From 134e4e8a5212c96e8b18cc12290b901800fc9159 Mon Sep 17 00:00:00 2001 From: slowe <299787+slowe@users.noreply.github.com> Date: Wed, 13 Sep 2023 18:51:12 +0100 Subject: [PATCH] Add active travel data --- pipelines/transport/active-travel.pl | 90 +++ raw-data/lookup-LAD22CD-PCON22CD.json | 1 + src/_data/geojson/LA_2022_BGC.geojson | 376 ++++++++++++ src/_data/sources/transport/active-travel.csv | 534 ++++++++++++++++++ src/themes/transport/active-travel.njk | 327 +++++++++++ 5 files changed, 1328 insertions(+) create mode 100644 pipelines/transport/active-travel.pl create mode 100644 raw-data/lookup-LAD22CD-PCON22CD.json create mode 100644 src/_data/geojson/LA_2022_BGC.geojson create mode 100644 src/_data/sources/transport/active-travel.csv create mode 100644 src/themes/transport/active-travel.njk diff --git a/pipelines/transport/active-travel.pl b/pipelines/transport/active-travel.pl new file mode 100644 index 0000000..fb55ad0 --- /dev/null +++ b/pipelines/transport/active-travel.pl @@ -0,0 +1,90 @@ +#!/usr/bin/perl + +use lib "./../lib/"; # Custom functions +use Data::Dumper; +use JSON::XS; +use OpenInnovations::GeoJSON; +require "lib.pl"; + +my $outputfile = "../../src/_data/sources/transport/active-travel.csv"; +my $lookupfile = "../../raw-data/lookup-LAD22CD-PCON22CD.json"; +my $datafile = "../../raw-data/cw0307-all-walking-and-cycling-data-in-tables-cw0301-to-cw0303.csv"; +@columns = ( + {'name'=>'onepm_cycall','title'=>'Cycle once a month'}, + {'name'=>'onepw_cycall','title'=>'Cycle once a week'}, + {'name'=>'threepw_cycall','title'=>'Cycle three times a week'}, + {'name'=>'fivepw_cycall','title'=>'Cycle five times a week'}, + {'name'=>'onepm_walkall','title'=>'Walk once a month'}, + {'name'=>'onepw_walkall','title'=>'Walk once a week'}, + {'name'=>'threepw_walkall','title'=>'Walk three times a week'}, + {'name'=>'fivepw_walkall','title'=>'Walk five times a week'} +); + +$lookup = LoadJSON($lookupfile); +@rows = LoadCSV($datafile,{'startrow'=>3}); + +#print Dumper $lookup; +$data = {}; +$years = {}; +for($r = 0; $r < @rows; $r++){ + $lad = $rows[$r]->{'Geography_code'}; + $year = $rows[$r]->{'Year'}; + if(!$years->{$year}){ $years->{$year} = 1; } + if($lookup->{$lad}){ + #print "LAD: $lad ($year)\n"; + @people = (); + + # Work out the number of people from the percentage and the `Weighted_sample` + for($c = 0; $c < @columns; $c++){ + #print "\t$rows[$r]->{$columns[$c]} * $rows[$r]->{'Weighted_sample'}\n"; + $people[$c] = $rows[$r]->{'Weighted_sample'}*$rows[$r]->{$columns[$c]{'name'}}/100; + } + #print Dumper @people; + + $n = 0; + foreach $pcon (keys(%{$lookup->{$lad}})){ + if(!$data->{$pcon}){ $data->{$pcon} = {}; } + for($c = 0; $c < @columns; $c++){ + $col = $columns[$c]{'name'}; + if(!$data->{$pcon}{$col}){ $data->{$pcon}{$col} = {}; } + if(!$data->{$pcon}{$col}{$year}){ $data->{$pcon}{$col}{$year} = {'n'=>0,'sample'=>0}; } + # Add the constituency fraction * sample size * % / 100 + $data->{$pcon}{$col}{$year}{'n'} += $lookup->{$lad}{$pcon} * $rows[$r]->{'Weighted_sample'} * $rows[$r]->{$col}/100; + $data->{$pcon}{$col}{$year}{'sample'} += $lookup->{$lad}{$pcon} * $rows[$r]->{'Weighted_sample'}; + } + + # Add the people to the + #print "\t$pcon: $lookup->{$lad}{$pcon}\n"; + } + } +} + + +open(FILE,">",$outputfile); +print FILE "PCON22CD"; +for($c = 0; $c < @columns; $c++){ + $col = $columns[$c]{'title'}; + foreach $y (sort(keys(%{$years}))){ + print FILE ",".$col." ".$y; + } +} +print FILE "\n"; +foreach $pcon (sort(keys(%{$data}))){ + print FILE $pcon; + for($c = 0; $c < @columns; $c++){ + $col = $columns[$c]{'name'}; + foreach $year (sort(keys(%{$years}))){ + $f = 0; + if($data->{$pcon}{$col}{$year}{'sample'} > 0){ + $f = $data->{$pcon}{$col}{$year}{'n'} / $data->{$pcon}{$col}{$year}{'sample'}; + }else{ + warning("Bad sample size for $pcon / $col / $y: $data->{$pcon}{$col}{$year}{'sample'}\n"); + } + print FILE ",".sprintf("%0.1f",$f*100); + } + } + print FILE "\n"; +} +close(FILE); + + diff --git a/raw-data/lookup-LAD22CD-PCON22CD.json b/raw-data/lookup-LAD22CD-PCON22CD.json new file mode 100644 index 0000000..c5c6fac --- /dev/null +++ b/raw-data/lookup-LAD22CD-PCON22CD.json @@ -0,0 +1 @@ +{"E06000001":{"E14000733":1},"E06000002":{"E14000819":0.54,"E14000820":0.458},"E06000003":{"E14000820":0.703,"E14000891":0.297},"E06000004":{"E14000970":0.588,"E14000971":0.411},"E06000005":{"E14000658":0.152,"E14000915":0.847},"E06000006":{"E14000725":0.642,"E14001024":0.356},"E06000007":{"E14001017":0.505,"E14001018":0.493},"E06000008":{"E14000570":0.294,"E14000902":0.705},"E06000009":{"E14000572":0.42,"E14000573":0.579},"E06000010":{"E14000771":0.402,"E14000772":0.346,"E14000773":0.251},"E06000011":{"E14000556":0.322,"E14000596":0.058,"E14000683":0.438,"E14000724":0.18,"E14000773":0.002},"E06000012":{"E14000643":0.853,"E14000716":0.146},"E06000013":{"E14000596":0.587,"E14000643":0.197,"E14000914":0.215},"E06000014":{"E14001061":0.086,"E14001062":0.913},"E06000015":{"E14000662":0.378,"E14000663":0.4,"E14000814":0.221},"E06000016":{"E14000782":0.317,"E14000783":0.288,"E14000784":0.393},"E06000017":{"E14000909":1},"E06000018":{"E14000865":0.25,"E14000866":0.312,"E14000867":0.436},"E06000019":{"E14000743":0.332,"E14000847":0.667},"E06000020":{"E14000989":0.174,"E14000992":0.825},"E06000021":{"E14000972":0.323,"E14000973":0.324,"E14000974":0.351},"E06000022":{"E14000547":0.082,"E14000846":0.917},"E06000023":{"E14000599":0.216,"E14000600":0.401,"E14000601":0.224,"E14000602":0.157},"E06000024":{"E14000850":0.609,"E14001038":0.391},"E06000025":{"E14000702":0.162,"E14000774":0.087,"E14000994":0.75},"E06000026":{"E14000879":0.409,"E14000880":0.264,"E14000950":0.327},"E06000027":{"E14000999":0.569,"E14001001":0.431},"E06000030":{"E14000851":0.461,"E14000947":0.537},"E06000031":{"E14000855":0.49,"E14000878":0.509},"E06000032":{"E14000800":0.432,"E14000801":0.567},"E06000033":{"E14000899":0.53,"E14000957":0.47},"E06000034":{"E14000933":0.585,"E14000995":0.415},"E06000035":{"E14000626":0.075,"E14000711":0.157,"E14000898":0.768},"E06000036":{"E14000586":0.413,"E14001042":0.586},"E06000037":{"E14000830":0.847,"E14000890":0.043,"E14001048":0.11},"E06000038":{"E14000889":0.481,"E14000890":0.517},"E06000039":{"E14000930":0.826,"E14001042":0.173},"E06000040":{"E14000803":0.604,"E14001042":0.395},"E06000041":{"E14000586":0.161,"E14000803":0.354,"E14000889":0.045,"E14001048":0.439},"E06000042":{"E14000821":0.741,"E14000822":0.258},"E06000043":{"E14000597":0.36,"E14000598":0.35,"E14000755":0.289},"E06000044":{"E14000883":0.666,"E14000884":0.333},"E06000045":{"E14000901":0.151,"E14000955":0.407,"E14000956":0.441},"E06000046":{"E14000762":1},"E06000047":{"E14000569":0.413,"E14000641":0.084,"E14000677":0.053,"E14000840":0.047,"E14000856":0.314,"E14000915":0.089},"E06000049":{"E14000646":0.181,"E14000653":0.117,"E14000686":0.252,"E14000802":0.258,"E14000987":0.191},"E06000050":{"E14000640":0.145,"E14000686":0.454,"E14000688":0.134,"E14000987":0.116,"E14001024":0.15},"E06000051":{"E14000799":0.486,"E14000849":0.292,"E14000926":0.188,"E14000992":0.033},"E06000052":{"E14000616":0.079,"E14000837":0.337,"E14000938":0.203,"E14000961":0.112,"E14000964":0.145,"E14001003":0.125},"E06000053":{"E14000964":1},"E06000054":{"E14000635":0.051,"E14000665":0.314,"E14000860":0.219,"E14000912":0.188,"E14000954":0.226},"E06000055":{"E14000552":0.071,"E14000813":0.156,"E14000841":0.772},"E06000056":{"E14000801":0.044,"E14000813":0.535,"E14000841":0.244,"E14000949":0.177},"E06000057":{"E14000554":0.474,"E14000575":0.014,"E14000746":0.485,"E14001014":0.027},"E06000058":{"E14000584":0.158,"E14000585":0.168,"E14000638":0.311,"E14000815":0.171,"E14000881":0.192},"E06000059":{"E14000638":0.023,"E14000815":0.059,"E14000839":0.353,"E14000936":0.149,"E14001031":0.414},"E06000060":{"E14000538":0.118,"E14000550":0.113,"E14000608":0.554,"E14000631":0.125,"E14001056":0.089},"E06000061":{"E14000648":0.561,"E14000660":0.034,"E14000769":0.237,"E14001025":0.168},"E06000062":{"E14000660":0.518,"E14000861":0.016,"E14000862":0.024,"E14000942":0.442},"E07000008":{"E14000617":0.887,"E14000934":0.112},"E07000009":{"E14000842":0.273,"E14000937":0.727},"E07000010":{"E14000842":1},"E07000011":{"E14000757":0.367,"E14000855":0.633},"E07000012":{"E14000934":0.692,"E14000937":0.307},"E07000026":{"E14000647":0.355,"E14000877":0.107,"E14001053":0.538},"E07000027":{"E14000543":1},"E07000028":{"E14000620":0.203,"E14000877":0.797},"E07000029":{"E14000647":1},"E07000030":{"E14000877":1},"E07000031":{"E14000543":0.131,"E14001037":0.869},"E07000032":{"E14000533":0.469,"E14000664":0.435,"E14000814":0.095},"E07000033":{"E14000577":1},"E07000034":{"E14000632":0.716,"E14000843":0.284},"E07000035":{"E14000664":1},"E07000036":{"E14000695":0.546,"E14000814":0.452},"E07000037":{"E14000748":1},"E07000038":{"E14000577":0.239,"E14000843":0.759},"E07000039":{"E14000935":0.998},"E07000040":{"E14000623":0.036,"E14000678":0.398,"E14000996":0.566},"E07000041":{"E14000623":0.002,"E14000678":0.193,"E14000698":0.805},"E07000042":{"E14000623":0.515,"E14000996":0.485},"E07000043":{"E14000838":1},"E07000044":{"E14000950":0.388,"E14001001":0.611},"E07000045":{"E14000623":0.698,"E14000835":0.302},"E07000046":{"E14001000":1},"E07000047":{"E14000623":0.382,"E14001000":0.618},"E07000061":{"E14000684":1},"E07000062":{"E14000735":1},"E07000063":{"E14000597":0.034,"E14000786":0.965},"E07000064":{"E14000557":0.712,"E14000735":0.288},"E07000065":{"E14000557":0.197,"E14000684":0.013,"E14000786":0.106,"E14001023":0.683},"E07000066":{"E14000544":0.547,"E14000888":0.126,"E14000933":0.327},"E07000067":{"E14000590":0.764,"E14001045":0.236},"E07000068":{"E14000594":1},"E07000069":{"E14000622":1},"E07000070":{"E14000628":0.124,"E14000806":0.425,"E14000910":0.45},"E07000071":{"E14000644":0.137,"E14000734":0.562,"E14001045":0.3},"E07000072":{"E14000594":0.482,"E14000693":0.372,"E14000729":0.145},"E07000073":{"E14000729":1},"E07000074":{"E14000806":0.642,"E14001045":0.358},"E07000075":{"E14000888":0.576,"E14000899":0.424},"E07000076":{"E14000642":0.39,"E14000734":0.61},"E07000077":{"E14000910":1},"E07000078":{"E14000630":0.798,"E14000990":0.201},"E07000079":{"E14000991":1},"E07000080":{"E14000705":1},"E07000081":{"E14000712":0.929,"E14000990":0.07},"E07000082":{"E14000980":0.836,"E14000991":0.163},"E07000083":{"E14000705":0.139,"E14000990":0.86},"E07000084":{"E14000545":0.093,"E14000844":0.316,"E14000857":0.591},"E07000085":{"E14000680":0.901,"E14000811":0.099},"E07000086":{"E14000685":0.909,"E14001041":0.09},"E07000087":{"E14000699":0.85,"E14000713":0.148},"E07000088":{"E14000713":1},"E07000089":{"E14000530":0.065,"E14000844":0.935},"E07000090":{"E14000736":0.853,"E14000811":0.147},"E07000091":{"E14000827":0.526,"E14000828":0.473},"E07000092":{"E14000530":0.998},"E07000093":{"E14000857":0.342,"E14000901":0.657},"E07000094":{"E14000811":0.519,"E14001041":0.48},"E07000095":{"E14000606":0.998},"E07000096":{"E14000739":0.491,"E14000951":0.508},"E07000098":{"E14000745":1},"E07000099":{"E14000749":0.412,"E14000845":0.521,"E14000968":0.066},"E07000102":{"E14000951":0.739,"E14000960":0.085,"E14001021":0.175},"E07000103":{"E14001021":0.998},"E07000105":{"E14000536":0.867,"E14000704":0.133},"E07000106":{"E14000619":0.805,"E14000852":0.195},"E07000107":{"E14000659":1},"E07000108":{"E14000670":0.679,"E14000948":0.321},"E07000109":{"E14000715":1},"E07000110":{"E14000700":0.643,"E14000804":0.357},"E07000111":{"E14000659":0.035,"E14000918":0.674,"E14000997":0.29},"E07000112":{"E14000704":1},"E07000113":{"E14000700":0.362,"E14000927":0.638},"E07000114":{"E14000852":0.74,"E14000948":0.26},"E07000115":{"E14000626":0.196,"E14000997":0.803},"E07000116":{"E14000804":0.251,"E14001004":0.748},"E07000117":{"E14000609":1},"E07000118":{"E14000637":0.764,"E14000943":0.235},"E07000119":{"E14000706":1},"E07000120":{"E14000758":1},"E07000121":{"E14000776":0.569,"E14000825":0.431},"E07000122":{"E14000875":1},"E07000123":{"E14000706":0.058,"E14000885":0.186,"E14001057":0.756},"E07000124":{"E14000894":1},"E07000125":{"E14000758":0.125,"E14000902":0.874},"E07000126":{"E14000894":0.424,"E14000943":0.575},"E07000127":{"E14000943":0.244,"E14001033":0.755},"E07000128":{"E14000572":0.03,"E14000776":0.408,"E14001057":0.562},"E07000129":{"E14000625":0.113,"E14000940":0.886},"E07000130":{"E14000625":0.532,"E14000797":0.467},"E07000131":{"E14000728":0.306,"E14000909":0.409,"E14000940":0.285},"E07000132":{"E14000583":0.971,"E14000625":0.028},"E07000133":{"E14000909":1},"E07000134":{"E14000858":1},"E07000135":{"E14000728":0.997,"E14000940":0.002},"E07000136":{"E14000582":1},"E07000137":{"E14000582":0.194,"E14000707":0.026,"E14000798":0.78},"E07000138":{"E14000792":1},"E07000139":{"E14000792":0.031,"E14000929":0.969},"E07000140":{"E14000939":1},"E07000141":{"E14000714":0.727,"E14000929":0.242,"E14000939":0.03},"E07000142":{},"E07000143":{"E14000816":0.495,"E14000952":0.505},"E07000144":{"E14000603":0.956,"E14000863":0.043},"E07000145":{"E14000717":1},"E07000146":{"E14000859":0.547,"E14000952":0.452},"E07000147":{"E14000603":0.244,"E14000848":0.756},"E07000148":{"E14000863":0.308,"E14000864":0.69},"E07000149":{"E14000816":0.126,"E14000864":0.002,"E14000941":0.871},"E07000163":{"E14000928":1},"E07000164":{"E14000895":0.579,"E14000993":0.421},"E07000165":{"E14000730":0.113,"E14000917":0.187,"E14000928":0.699},"E07000166":{"E14000895":1},"E07000167":{"E14000993":1},"E07000168":{"E14000913":0.904,"E14000993":0.096},"E07000169":{"E14000917":1},"E07000170":{"E14000535":0.852,"E14000924":0.147},"E07000171":{"E14000546":0.751,"E14000829":0.248},"E07000172":{"E14000535":0.178,"E14000607":0.82},"E07000173":{"E14000710":0.317,"E14000924":0.682},"E07000174":{"E14000810":1},"E07000175":{"E14000829":0.678,"E14000924":0.321},"E07000176":{"E14000829":0.244,"E14000908":0.755},"E07000177":{"E14000539":0.787,"E14000742":0.165,"E14000874":0.047},"E07000178":{"E14000873":0.67,"E14000874":0.329},"E07000179":{"E14000742":0.864,"E14001015":0.135},"E07000180":{"E14000874":0.148,"E14001015":0.851},"E07000181":{"E14001046":1},"E07000187":{"E14000932":0.531,"E14001026":0.469},"E07000188":{"E14000595":0.629,"E14001026":0.371},"E07000189":{"E14000932":0.582,"E14001060":0.418},"E07000192":{"E14000618":0.998},"E07000193":{"E14000610":0.623,"E14000791":0.376},"E07000194":{"E14000791":0.551,"E14000986":0.449},"E07000195":{"E14000834":0.384,"E14000966":0.026,"E14000973":0.056,"E14000975":0.532},"E07000196":{"E14000945":0.671,"E14000965":0.328},"E07000197":{"E14000965":0.263,"E14000975":0.736},"E07000198":{"E14000966":0.881,"E14000975":0.118},"E07000199":{"E14000986":1},"E07000200":{"E14000946":1},"E07000202":{"E14000624":0.203,"E14000761":0.796},"E07000203":{"E14000613":0.394,"E14000624":0.606},"E07000207":{"E14000697":0.835,"E14000907":0.164},"E07000208":{"E14000694":0.998},"E07000209":{"E14000719":0.368,"E14000824":0.452,"E14000983":0.048,"E14001047":0.131},"E07000210":{"E14000694":0.045,"E14000824":0.954},"E07000211":{"E14000681":0.087,"E14000694":0.047,"E14000893":0.865},"E07000212":{"E14000907":0.998},"E07000213":{"E14000959":0.998},"E07000214":{"E14000983":0.998},"E07000215":{"E14000681":1},"E07000216":{"E14000719":0.257,"E14000953":0.742},"E07000217":{"E14001047":0.998},"E07000218":{"E14000854":0.872,"E14000868":0.127},"E07000219":{"E14000854":0.231,"E14000868":0.594,"E14000905":0.174},"E07000220":{"E14000767":0.341,"E14000905":0.658},"E07000221":{"E14000767":0.314,"E14000977":0.685},"E07000222":{"E14000767":0.681,"E14001019":0.318},"E07000223":{"E14000682":1},"E07000224":{"E14000534":0.671,"E14000576":0.277,"E14001055":0.051},"E07000225":{"E14000534":0.21,"E14000633":0.79},"E07000226":{"E14000652":0.997,"E14000753":0.002},"E07000227":{"E14000534":0.513,"E14000753":0.487},"E07000228":{"E14000534":0.179,"E14000753":0.257,"E14000817":0.563},"E07000229":{"E14000682":0.412,"E14001055":0.588},"E07000234":{"E14000605":0.998},"E07000235":{"E14001035":1},"E07000236":{"E14000892":0.998},"E07000237":{"E14001052":0.998},"E07000238":{"E14000818":0.664,"E14000892":0.142,"E14001035":0.193},"E07000239":{"E14001058":0.998},"E07000240":{"E14000749":0.629,"E14000960":0.37},"E07000241":{"E14000606":0.119,"E14001027":0.88},"E07000242":{"E14000744":0.329,"E14000845":0.644,"E14000968":0.026},"E07000243":{"E14000968":1},"E07000244":{"E14000624":0.206,"E14000981":0.597,"E14001022":0.196},"E07000245":{"E14000613":0.154,"E14000946":0.055,"E14001034":0.79},"E07000246":{"E14000595":0.611,"E14000988":0.389},"E08000001":{"E14000578":0.257,"E14000579":0.263,"E14000580":0.479},"E08000002":{"E14000611":0.512,"E14000612":0.486},"E08000003":{"E14000571":0.193,"E14000807":0.246,"E14000808":0.149,"E14000809":0.167,"E14001059":0.244},"E08000004":{"E14000537":0.05,"E14000870":0.733,"E14000871":0.216},"E08000005":{"E14000747":0.458,"E14000897":0.54},"E08000006":{"E14000571":0.06,"E14000911":0.326,"E14001054":0.613},"E08000007":{"E14000627":0.312,"E14000661":0.051,"E14000738":0.462,"E14000969":0.173},"E08000008":{"E14000537":0.2,"E14000661":0.186,"E14000967":0.612},"E08000009":{"E14000532":0.479,"E14000979":0.441,"E14001059":0.078},"E08000010":{"E14000580":0.025,"E14000785":0.356,"E14000805":0.296,"E14001039":0.321},"E08000011":{"E14000708":0.239,"E14000775":0.625,"E14000963":0.134},"E08000012":{"E14000708":0.271,"E14000793":0.215,"E14000794":0.177,"E14000795":0.153,"E14000796":0.184},"E08000013":{"E14000962":0.614,"E14000963":0.385},"E08000014":{"E14000581":0.165,"E14000916":0.536,"E14000958":0.298},"E08000015":{"E14000559":0.156,"E14001010":0.145,"E14001043":0.401,"E14001044":0.299},"E08000016":{"E14000541":0.147,"E14000542":0.264,"E14000876":0.542,"E14001028":0.047},"E08000017":{"E14000667":0.441,"E14000668":0.107,"E14000669":0.451},"E08000018":{"E14000903":0.581,"E14000904":0.157,"E14001028":0.26},"E08000019":{"E14000876":0.314,"E14000919":0.055,"E14000920":0.12,"E14000921":0.074,"E14000922":0.368,"E14000923":0.069},"E08000021":{"E14000831":0.21,"E14000832":0.168,"E14000833":0.622},"E08000022":{"E14000853":0.536,"E14001006":0.463},"E08000023":{"E14000765":0.618,"E14000944":0.382},"E08000024":{"E14000754":0.479,"E14000982":0.211,"E14001020":0.31},"E08000025":{"E14000560":0.106,"E14000561":0.082,"E14000562":0.074,"E14000563":0.076,"E14000564":0.096,"E14000565":0.091,"E14000566":0.093,"E14000567":0.082,"E14000568":0.084,"E14000985":0.215},"E08000026":{"E14000649":0.276,"E14000650":0.39,"E14000651":0.333},"E08000027":{"E14000671":0.235,"E14000672":0.259,"E14000722":0.192,"E14000976":0.279,"E14001050":0.033},"E08000028":{"E14000722":0.127,"E14001016":0.226,"E14001029":0.325,"E14001030":0.321},"E08000029":{"E14000812":0.815,"E14000931":0.183},"E08000030":{"E14000531":0.423,"E14001011":0.258,"E14001012":0.317},"E08000031":{"E14001049":0.356,"E14001050":0.31,"E14001051":0.332},"E08000032":{"E14000587":0.078,"E14000588":0.118,"E14000589":0.096,"E14000766":0.448,"E14000925":0.259},"E08000033":{"E14000614":0.841,"E14000723":0.158},"E08000034":{"E14000548":0.134,"E14000645":0.441,"E14000666":0.308,"E14000756":0.115},"E08000035":{"E14000689":0.445,"E14000777":0.074,"E14000778":0.061,"E14000779":0.071,"E14000780":0.113,"E14000781":0.055,"E14000826":0.08,"E14000886":0.099},"E08000036":{"E14000740":0.443,"E14000826":0.072,"E14000836":0.255,"E14001009":0.23},"E08000037":{"E14000574":0.774,"E14000709":0.173,"E14000765":0.052},"E09000001":{"E14000639":0.997,"E14000764":0.002},"E09000002":{"E14000540":0.565,"E14000657":0.433},"E09000003":{"E14000636":0.398,"E14000703":0.24,"E14000741":0.361},"E09000004":{"E14000558":0.357,"E14000696":0.238,"E14000869":0.404},"E09000005":{"E14000591":0.422,"E14000592":0.48,"E14000727":0.096},"E09000006":{"E14000551":0.229,"E14000604":0.195,"E14000788":0.05,"E14000872":0.524},"E09000007":{"E14000727":0.393,"E14000750":0.603},"E09000008":{"E14000654":0.296,"E14000655":0.203,"E14000656":0.499},"E09000009":{"E14000674":0.322,"E14000675":0.418,"E14000676":0.258},"E09000010":{"E14000687":0.24,"E14000691":0.453,"E14000692":0.306},"E09000011":{"E14000690":0.455,"E14000696":0.188,"E14000718":0.355},"E09000012":{"E14000720":0.475,"E14000721":0.523},"E09000013":{"E14000629":0.312,"E14000726":0.686},"E09000014":{"E14000752":0.554,"E14001002":0.443},"E09000015":{"E14000731":0.469,"E14000732":0.353,"E14000906":0.176},"E09000016":{"E14000657":0.225,"E14000751":0.512,"E14000900":0.261},"E09000017":{"E14000737":0.389,"E14000906":0.351,"E14001007":0.259},"E09000018":{"E14000593":0.466,"E14000701":0.532},"E09000019":{"E14000763":0.494,"E14000764":0.502},"E09000020":{"E14000629":0.261,"E14000768":0.735},"E09000021":{"E14000770":0.759,"E14000896":0.238},"E09000022":{"E14000673":0.29,"E14000978":0.389,"E14001008":0.319},"E09000023":{"E14000787":0.418,"E14000788":0.236,"E14000789":0.342},"E09000024":{"E14000823":0.436,"E14001040":0.562},"E09000025":{"E14000679":0.521,"E14001032":0.478},"E09000026":{"E14000634":0.081,"E14000759":0.513,"E14000760":0.278,"E14000790":0.127},"E09000027":{"E14000896":0.492,"E14001005":0.507},"E09000028":{"E14000553":0.361,"E14000615":0.394,"E14000673":0.244},"E09000029":{"E14000621":0.58,"E14000984":0.418},"E09000030":{"E14000555":0.462,"E14000882":0.535},"E09000031":{"E14000634":0.373,"E14000790":0.209,"E14001013":0.416},"E09000032":{"E14000549":0.299,"E14000887":0.371,"E14000998":0.327},"E09000033":{"E14000639":0.628,"E14001036":0.371},"N09000001":{"N06000002":0.022,"N06000005":0.008,"N06000010":0.002,"N06000014":0.967},"N09000002":{"N06000007":0.018,"N06000009":0.076,"N06000011":0.466,"N06000015":0.105,"N06000017":0.333},"N09000003":{"N06000001":0.234,"N06000002":0.247,"N06000003":0.216,"N06000004":0.282,"N06000009":0.016,"N06000013":0.002,"N06000014":0.003},"N09000004":{"N06000005":0.079,"N06000006":0.54,"N06000012":0.379},"N09000005":{"N06000006":0.162,"N06000008":0.147,"N06000018":0.688},"N09000006":{"N06000007":0.623,"N06000018":0.376},"N09000007":{"N06000001":0.044,"N06000003":0.029,"N06000004":0.013,"N06000009":0.685,"N06000014":0.156,"N06000015":0.002,"N06000016":0.07,"N06000017":0.002},"N09000008":{"N06000005":0.402,"N06000012":0.596},"N09000009":{"N06000007":0.309,"N06000010":0.688,"N06000018":0.002},"N09000010":{"N06000009":0.004,"N06000011":0.244,"N06000015":0.65,"N06000016":0.099},"N09000011":{"N06000013":0.201,"N06000016":0.795},"S12000005":{"S14000050":1},"S12000006":{"S14000013":0.621,"S14000014":0.379},"S12000008":{"S14000006":0.447,"S14000040":0.552},"S12000010":{"S14000020":1},"S12000011":{"S14000021":1},"S12000013":{"S14000027":1},"S12000014":{"S14000028":0.587,"S14000043":0.413},"S12000017":{"S14000009":0.33,"S14000039":0.188,"S14000055":0.482},"S12000018":{"S14000038":1},"S12000019":{"S14000045":1},"S12000020":{"S14000046":1},"S12000021":{"S14000010":0.077,"S14000048":0.923},"S12000023":{"S14000051":1},"S12000026":{"S14000008":0.81,"S14000014":0.19},"S12000027":{"S14000051":0.998},"S12000028":{"S14000006":0.866,"S14000010":0.134},"S12000029":{"S14000014":0.536,"S14000019":0.23,"S14000042":0.205,"S14000056":0.029},"S12000030":{"S14000057":1},"S12000033":{"S14000001":0.255,"S14000002":0.443,"S14000037":0.301},"S12000034":{"S14000007":0.252,"S14000037":0.231,"S14000058":0.517},"S12000035":{"S14000005":1},"S12000036":{"S14000022":0.098,"S14000023":0.076,"S14000024":0.109,"S14000025":0.343,"S14000026":0.374},"S12000038":{"S14000052":0.472,"S14000053":0.527},"S12000039":{"S14000059":1},"S12000040":{"S14000043":0.367,"S14000044":0.633},"S12000041":{"S14000004":0.903,"S14000015":0.058,"S14000016":0.039},"S12000042":{"S14000015":0.45,"S14000016":0.55},"S12000045":{"S14000012":0.512,"S14000018":0.487},"S12000047":{"S14000017":0.172,"S14000036":0.134,"S14000041":0.112,"S14000049":0.582},"S12000048":{"S14000050":0.288,"S14000054":0.711},"S12000049":{"S14000029":0.116,"S14000030":0.22,"S14000031":0.096,"S14000032":0.159,"S14000033":0.103,"S14000034":0.153,"S14000035":0.15},"S12000050":{"S14000003":0.486,"S14000011":0.176,"S14000012":0.214,"S14000047":0.123},"W06000001":{"W07000041":1},"W06000002":{"W07000057":0.161,"W07000061":0.839},"W06000003":{"W07000058":0.534,"W07000059":0.465},"W06000004":{"W07000059":0.477,"W07000060":0.258,"W07000062":0.265},"W06000005":{"W07000042":0.647,"W07000043":0.353},"W06000006":{"W07000044":0.205,"W07000062":0.795},"W06000008":{"W07000064":1},"W06000009":{"W07000065":0.729,"W07000066":0.271},"W06000010":{"W07000045":0.099,"W07000066":0.245,"W07000067":0.656},"W06000011":{"W07000046":0.784,"W07000047":0.087,"W07000048":0.129},"W06000012":{"W07000049":0.401,"W07000069":0.599},"W06000013":{"W07000073":0.338,"W07000074":0.662},"W06000014":{"W07000078":0.951,"W07000080":0.049},"W06000015":{"W07000050":0.118,"W07000051":0.299,"W07000079":0.357,"W07000080":0.224},"W06000016":{"W07000052":0.235,"W07000070":0.43,"W07000074":0.087,"W07000075":0.247},"W06000018":{"W07000071":0.183,"W07000076":0.413,"W07000077":0.404},"W06000019":{"W07000072":1},"W06000020":{"W07000053":0.93,"W07000054":0.069},"W06000021":{"W07000054":0.966,"W07000055":0.034},"W06000022":{"W07000055":0.493,"W07000056":0.506},"W06000023":{"W07000063":0.42,"W07000068":0.58},"W06000024":{"W07000068":0.008,"W07000071":0.991}} \ No newline at end of file diff --git a/src/_data/geojson/LA_2022_BGC.geojson b/src/_data/geojson/LA_2022_BGC.geojson new file mode 100644 index 0000000..77a0525 --- /dev/null +++ b/src/_data/geojson/LA_2022_BGC.geojson @@ -0,0 +1,376 @@ +{"type":"FeatureCollection", "features": [ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.240965,54.723177],[-1.24402,54.721578],[-1.245797,54.722293],[-1.247614,54.72241],[-1.248766,54.720733],[-1.251865,54.719623],[-1.253736,54.720368],[-1.255414,54.721575],[-1.257445,54.725547],[-1.258562,54.726055],[-1.26058,54.72573],[-1.263223,54.726462],[-1.26471,54.725982],[-1.267405,54.726865],[-1.268225,54.726091],[-1.270252,54.727169],[-1.27251,54.725413],[-1.274906,54.725215],[-1.277939,54.723795],[-1.281216,54.72301],[-1.285534,54.720421],[-1.290298,54.718399],[-1.292194,54.718591],[-1.29491,54.71941],[-1.299319,54.719133],[-1.30178,54.718226],[-1.303672,54.718507],[-1.305521,54.717522],[-1.30462,54.716645],[-1.305518,54.715216],[-1.303625,54.713111],[-1.304137,54.712645],[-1.302739,54.711747],[-1.301561,54.710204],[-1.302019,54.709022],[-1.301327,54.708101],[-1.303811,54.707664],[-1.303215,54.70567],[-1.304217,54.705643],[-1.30412,54.704334],[-1.306232,54.703807],[-1.307782,54.702782],[-1.309316,54.702488],[-1.309352,54.701564],[-1.31385,54.701227],[-1.312835,54.698731],[-1.314246,54.697954],[-1.312696,54.695913],[-1.315377,54.694579],[-1.319387,54.693302],[-1.319495,54.691289],[-1.325982,54.691165],[-1.327555,54.691382],[-1.329825,54.689553],[-1.332189,54.6902],[-1.333024,54.692022],[-1.344476,54.691127],[-1.344658,54.690819],[-1.338673,54.68947],[-1.334441,54.689047],[-1.332129,54.686854],[-1.3309,54.681244],[-1.33185,54.681188],[-1.331918,54.677456],[-1.333457,54.677209],[-1.332393,54.675452],[-1.333039,54.672653],[-1.334324,54.671225],[-1.335708,54.671302],[-1.338088,54.669574],[-1.340202,54.669273],[-1.340714,54.668755],[-1.34353,54.668621],[-1.342271,54.666114],[-1.343529,54.66515],[-1.346047,54.664471],[-1.346644,54.663004],[-1.347852,54.662421],[-1.346425,54.661506],[-1.346321,54.659291],[-1.343145,54.657528],[-1.343524,54.655556],[-1.341502,54.65337],[-1.341895,54.652168],[-1.341223,54.650243],[-1.344043,54.650707],[-1.349897,54.650723],[-1.349798,54.648581],[-1.352727,54.64897],[-1.355838,54.648299],[-1.358036,54.648576],[-1.359305,54.649467],[-1.36267,54.649164],[-1.364881,54.648424],[-1.366526,54.64883],[-1.368967,54.647813],[-1.374514,54.646559],[-1.378905,54.64618],[-1.383764,54.646243],[-1.382695,54.644395],[-1.380899,54.643917],[-1.379553,54.643274],[-1.3745,54.643739],[-1.367832,54.643471],[-1.362385,54.640615],[-1.356827,54.638376],[-1.354768,54.63807],[-1.349896,54.638809],[-1.342536,54.636672],[-1.339718,54.636247],[-1.337399,54.634752],[-1.335061,54.631324],[-1.331904,54.633792],[-1.329509,54.636528],[-1.329071,54.638576],[-1.329449,54.643097],[-1.328097,54.644446],[-1.326306,54.645103],[-1.321984,54.644542],[-1.31871,54.645208],[-1.316365,54.645235],[-1.315143,54.644096],[-1.315259,54.643446],[-1.31143,54.641858],[-1.311788,54.640876],[-1.308406,54.638726],[-1.30698,54.63695],[-1.304415,54.636673],[-1.302746,54.635754],[-1.298219,54.635511],[-1.298812,54.633465],[-1.298589,54.630545],[-1.299014,54.627982],[-1.296199,54.628028],[-1.292482,54.628747],[-1.291135,54.626992],[-1.286315,54.628194],[-1.286047,54.627665],[-1.279875,54.628246],[-1.276112,54.627255],[-1.273882,54.625996],[-1.271947,54.625345],[-1.268971,54.626393],[-1.267659,54.626063],[-1.266887,54.624144],[-1.263954,54.624283],[-1.262136,54.624919],[-1.25985,54.6246],[-1.258761,54.626449],[-1.256258,54.625626],[-1.25769,54.624114],[-1.256718,54.623351],[-1.255321,54.623382],[-1.254144,54.624104],[-1.252507,54.623931],[-1.250635,54.625296],[-1.249491,54.625256],[-1.247406,54.625953],[-1.245769,54.626087],[-1.242788,54.625488],[-1.242516,54.625434],[-1.240391,54.625509],[-1.238673,54.62649],[-1.237669,54.626465],[-1.239041,54.627902],[-1.236051,54.628789],[-1.234123,54.62905],[-1.233151,54.62827],[-1.233176,54.628151],[-1.231959,54.625826],[-1.23087,54.626436],[-1.22909,54.626347],[-1.226953,54.627064],[-1.224845,54.626161],[-1.223139,54.626571],[-1.222262,54.625809],[-1.22439,54.625472],[-1.224741,54.625409],[-1.223702,54.624006],[-1.222392,54.624919],[-1.220692,54.625312],[-1.219418,54.624617],[-1.219908,54.623935],[-1.218728,54.62329],[-1.215894,54.623621],[-1.212851,54.622097],[-1.20986,54.621901],[-1.203864,54.622876],[-1.200652,54.622944],[-1.192324,54.630288],[-1.189924,54.631202],[-1.190568,54.631744],[-1.18825,54.632605],[-1.181905,54.633299],[-1.176317,54.632998],[-1.174067,54.633349],[-1.168514,54.633138],[-1.167371,54.632608],[-1.16552,54.633539],[-1.167112,54.634281],[-1.167943,54.633224],[-1.173154,54.633493],[-1.170159,54.635592],[-1.169562,54.636921],[-1.168324,54.637821],[-1.167643,54.639088],[-1.168853,54.643936],[-1.167553,54.646275],[-1.164392,54.64688],[-1.162783,54.646458],[-1.161006,54.646736],[-1.159041,54.647889],[-1.164102,54.647306],[-1.169357,54.650322],[-1.175884,54.65342],[-1.184563,54.660455],[-1.187476,54.664234],[-1.187964,54.665851],[-1.190905,54.670752],[-1.194804,54.674032],[-1.196884,54.676459],[-1.19832,54.678611],[-1.198295,54.679545],[-1.199134,54.680733],[-1.198643,54.687217],[-1.196608,54.688644],[-1.197875,54.689022],[-1.197854,54.691855],[-1.195654,54.692599],[-1.190305,54.693995],[-1.190695,54.695235],[-1.196256,54.698584],[-1.192964,54.700595],[-1.188832,54.698276],[-1.185872,54.697506],[-1.186634,54.696309],[-1.190208,54.696783],[-1.186963,54.695136],[-1.185163,54.695062],[-1.183527,54.694505],[-1.181614,54.693229],[-1.178405,54.693998],[-1.175349,54.69654],[-1.177919,54.69922],[-1.18342,54.701099],[-1.187654,54.701832],[-1.194508,54.704149],[-1.202442,54.706153],[-1.210034,54.708882],[-1.214115,54.710697],[-1.217844,54.711552],[-1.218785,54.712256],[-1.224899,54.714764],[-1.233504,54.71889],[-1.240965,54.723177]]]},"properties":{"LAD22CD":"E06000001","LAD22NM":"Hartlepool","BNG_E":447160,"BNG_N":531474,"LONG":-1.27018,"LAT":54.67614,"GlobalID":"dbfb122d-054d-421a-a5b5-39cec8bd2b81"},"id":1}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.197514,54.5821],[-1.202449,54.580379],[-1.202218,54.579067],[-1.200948,54.577693],[-1.198687,54.578053],[-1.194335,54.579865],[-1.197514,54.5821]]],[[[-1.201027,54.577681],[-1.202236,54.578939],[-1.202757,54.580217],[-1.209616,54.579889],[-1.212093,54.580274],[-1.219512,54.578924],[-1.219872,54.580227],[-1.218057,54.5802],[-1.215353,54.580617],[-1.215309,54.5811],[-1.223157,54.582875],[-1.224065,54.58266],[-1.226707,54.583551],[-1.228648,54.583643],[-1.237417,54.586306],[-1.245932,54.590206],[-1.247817,54.590593],[-1.251569,54.590703],[-1.254365,54.589864],[-1.255901,54.588966],[-1.256745,54.587833],[-1.260437,54.5717],[-1.262494,54.569449],[-1.265881,54.567904],[-1.269147,54.567052],[-1.277915,54.566174],[-1.281886,54.56514],[-1.280952,54.56421],[-1.280532,54.563749],[-1.278093,54.560877],[-1.275505,54.558863],[-1.271119,54.557224],[-1.270632,54.55615],[-1.271288,54.554522],[-1.271967,54.55356],[-1.274079,54.552044],[-1.274926,54.551871],[-1.275456,54.551752],[-1.276205,54.54871],[-1.276983,54.547293],[-1.278873,54.545244],[-1.278786,54.542415],[-1.28196,54.538659],[-1.283963,54.538119],[-1.285432,54.53625],[-1.284653,54.532898],[-1.284701,54.530503],[-1.285074,54.530297],[-1.283021,54.526566],[-1.28206,54.52411],[-1.282764,54.522966],[-1.28194,54.522478],[-1.28075,54.520558],[-1.282002,54.519718],[-1.28225,54.51838],[-1.279293,54.517812],[-1.277579,54.516558],[-1.276816,54.51657],[-1.274267,54.514904],[-1.272803,54.515098],[-1.269943,54.514614],[-1.267267,54.514446],[-1.266243,54.513567],[-1.263863,54.512545],[-1.259066,54.512673],[-1.256375,54.511402],[-1.256303,54.512395],[-1.251239,54.513117],[-1.250645,54.512002],[-1.248787,54.511969],[-1.246781,54.511297],[-1.245238,54.511557],[-1.242168,54.511576],[-1.238689,54.511303],[-1.237779,54.510666],[-1.234866,54.510316],[-1.233405,54.510569],[-1.230605,54.511882],[-1.227612,54.511996],[-1.220136,54.510941],[-1.219065,54.510166],[-1.213845,54.510005],[-1.208453,54.508878],[-1.207289,54.508146],[-1.203786,54.506894],[-1.202146,54.506953],[-1.19668,54.506185],[-1.195485,54.506632],[-1.189725,54.506293],[-1.185094,54.507285],[-1.181163,54.505772],[-1.179379,54.505999],[-1.176144,54.504314],[-1.174209,54.503839],[-1.172727,54.502881],[-1.170653,54.502348],[-1.168972,54.503534],[-1.166033,54.503109],[-1.165369,54.503547],[-1.163113,54.503542],[-1.158296,54.502373],[-1.152668,54.501912],[-1.148059,54.501125],[-1.146694,54.501372],[-1.146197,54.502822],[-1.144078,54.503819],[-1.142862,54.504802],[-1.14112,54.507767],[-1.139468,54.509267],[-1.137369,54.514995],[-1.139959,54.515808],[-1.142499,54.515957],[-1.14733,54.515264],[-1.148245,54.514401],[-1.15322,54.516129],[-1.155949,54.516291],[-1.15974,54.515836],[-1.16154,54.518471],[-1.161818,54.520197],[-1.164995,54.521943],[-1.162553,54.523545],[-1.161567,54.52506],[-1.164362,54.525676],[-1.167805,54.526965],[-1.180814,54.533526],[-1.191433,54.539318],[-1.198809,54.544247],[-1.195683,54.545204],[-1.190684,54.547903],[-1.185951,54.549099],[-1.182034,54.549552],[-1.179193,54.550213],[-1.176827,54.551576],[-1.173554,54.552839],[-1.166663,54.554053],[-1.168881,54.55644],[-1.170729,54.557416],[-1.172299,54.559306],[-1.175865,54.561223],[-1.175829,54.5638],[-1.176467,54.564977],[-1.176429,54.566531],[-1.177745,54.568474],[-1.183554,54.569222],[-1.184851,54.569795],[-1.186571,54.572659],[-1.190309,54.574876],[-1.193622,54.574425],[-1.194214,54.57432],[-1.200375,54.576979],[-1.201027,54.577681]]]]},"properties":{"LAD22CD":"E06000002","LAD22NM":"Middlesbrough","BNG_E":451141,"BNG_N":516887,"LONG":-1.21099,"LAT":54.54467,"GlobalID":"db730d2b-fbab-40b4-9a4c-6447a3c001b2"},"id":2}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.150301,54.632207],[-1.14941,54.634682],[-1.151294,54.634584],[-1.150301,54.632207]]],[[[-0.793381,54.559124],[-0.792819,54.559564],[-0.790679,54.559627],[-0.79174,54.560739],[-0.792837,54.560607],[-0.796866,54.558941],[-0.799447,54.559838],[-0.800514,54.559722],[-0.801945,54.558786],[-0.803789,54.558653],[-0.80621,54.558951],[-0.80893,54.558597],[-0.810251,54.559371],[-0.812085,54.559475],[-0.817938,54.561174],[-0.824154,54.561907],[-0.826175,54.562861],[-0.829812,54.565822],[-0.834004,54.566792],[-0.834705,54.56736],[-0.841028,54.568599],[-0.842131,54.56963],[-0.84488,54.570364],[-0.846819,54.570273],[-0.853434,54.57178],[-0.863267,54.571548],[-0.865966,54.570933],[-0.867554,54.570939],[-0.86922,54.570179],[-0.872478,54.569499],[-0.878375,54.56993],[-0.880749,54.570334],[-0.88424,54.57148],[-0.895531,54.57113],[-0.897963,54.571281],[-0.900896,54.574044],[-0.901484,54.573868],[-0.904955,54.575041],[-0.908759,54.577127],[-0.912572,54.579754],[-0.917113,54.581488],[-0.917441,54.582824],[-0.920088,54.584779],[-0.926656,54.586771],[-0.934302,54.587337],[-0.936743,54.588574],[-0.94105,54.589232],[-0.942993,54.589078],[-0.950082,54.586603],[-0.95411,54.586037],[-0.956471,54.58527],[-0.961063,54.584901],[-0.969453,54.586159],[-0.984426,54.589435],[-1.0018,54.593585],[-1.01685,54.598558],[-1.022877,54.600332],[-1.036685,54.605979],[-1.039533,54.60735],[-1.043243,54.609757],[-1.051254,54.615883],[-1.053957,54.616861],[-1.065139,54.619352],[-1.071263,54.621227],[-1.074113,54.621377],[-1.083442,54.620654],[-1.088825,54.621135],[-1.101178,54.623974],[-1.112781,54.627709],[-1.120387,54.63112],[-1.126987,54.634986],[-1.131548,54.636548],[-1.134833,54.638594],[-1.136135,54.640223],[-1.136417,54.642083],[-1.135346,54.643864],[-1.138122,54.644419],[-1.137301,54.646725],[-1.138297,54.646774],[-1.139043,54.644894],[-1.140093,54.644054],[-1.140549,54.639625],[-1.141311,54.6383],[-1.141095,54.637095],[-1.140167,54.636074],[-1.141077,54.635175],[-1.138282,54.633516],[-1.137544,54.632269],[-1.136279,54.63166],[-1.135461,54.629615],[-1.139807,54.628124],[-1.144679,54.627608],[-1.149623,54.628255],[-1.15226,54.629553],[-1.15398,54.629198],[-1.151988,54.627858],[-1.153349,54.625485],[-1.152508,54.621987],[-1.150766,54.620487],[-1.150841,54.615136],[-1.135369,54.609539],[-1.132657,54.609012],[-1.132663,54.608227],[-1.150559,54.614389],[-1.149576,54.612452],[-1.151749,54.611779],[-1.153236,54.609001],[-1.154193,54.608896],[-1.157534,54.605417],[-1.149612,54.600333],[-1.146958,54.599492],[-1.148053,54.598653],[-1.151707,54.599501],[-1.160189,54.6045],[-1.160216,54.604163],[-1.163458,54.602295],[-1.167731,54.599566],[-1.169466,54.598854],[-1.181284,54.591144],[-1.182482,54.590966],[-1.186623,54.588462],[-1.190374,54.585723],[-1.191726,54.585387],[-1.19608,54.582695],[-1.197514,54.5821],[-1.194335,54.579865],[-1.198687,54.578053],[-1.200948,54.577693],[-1.200287,54.576941],[-1.19652,54.575323],[-1.193622,54.574425],[-1.190309,54.574876],[-1.186571,54.572659],[-1.184851,54.569795],[-1.183554,54.569222],[-1.177745,54.568474],[-1.176429,54.566531],[-1.176467,54.564977],[-1.175829,54.5638],[-1.175865,54.561223],[-1.172299,54.559306],[-1.170729,54.557416],[-1.168881,54.55644],[-1.166663,54.554053],[-1.173554,54.552839],[-1.176827,54.551576],[-1.179193,54.550213],[-1.182034,54.549552],[-1.185951,54.549099],[-1.190684,54.547903],[-1.195683,54.545204],[-1.198809,54.544247],[-1.191433,54.539318],[-1.180814,54.533526],[-1.167805,54.526965],[-1.164362,54.525676],[-1.161567,54.52506],[-1.162553,54.523545],[-1.164995,54.521943],[-1.161818,54.520197],[-1.16154,54.518471],[-1.15974,54.515836],[-1.155949,54.516291],[-1.15322,54.516129],[-1.148245,54.514401],[-1.14733,54.515264],[-1.142499,54.515957],[-1.139959,54.515808],[-1.137369,54.514995],[-1.139468,54.509267],[-1.14112,54.507767],[-1.142862,54.504802],[-1.144078,54.503819],[-1.146197,54.502822],[-1.130853,54.500037],[-1.126654,54.498721],[-1.122812,54.49899],[-1.11838,54.498199],[-1.114324,54.498964],[-1.113201,54.500347],[-1.112267,54.500797],[-1.111638,54.502039],[-1.111783,54.504374],[-1.106187,54.505701],[-1.094524,54.50676],[-1.087252,54.503355],[-1.078198,54.503822],[-1.073813,54.502619],[-1.067927,54.500448],[-1.064801,54.498519],[-1.060019,54.500332],[-1.05774,54.498995],[-1.051079,54.496421],[-1.049135,54.496418],[-1.046711,54.495964],[-1.044607,54.496012],[-1.042881,54.49527],[-1.039505,54.495119],[-1.036852,54.494044],[-1.023801,54.502045],[-1.003401,54.503012],[-0.987387,54.500858],[-0.967829,54.497268],[-0.952952,54.488036],[-0.943988,54.488689],[-0.932611,54.491455],[-0.929035,54.491638],[-0.925397,54.491078],[-0.922947,54.491017],[-0.916366,54.492224],[-0.901416,54.494202],[-0.895786,54.495603],[-0.894213,54.496912],[-0.880825,54.497047],[-0.880645,54.496471],[-0.877173,54.494962],[-0.876337,54.495389],[-0.875781,54.491165],[-0.866979,54.489241],[-0.863494,54.489083],[-0.856262,54.487849],[-0.848531,54.487973],[-0.844139,54.48955],[-0.843942,54.491225],[-0.845059,54.492637],[-0.848615,54.495532],[-0.853321,54.502714],[-0.852347,54.505629],[-0.852327,54.510377],[-0.850207,54.511461],[-0.85129,54.513684],[-0.852236,54.51761],[-0.849948,54.519955],[-0.85065,54.523425],[-0.849928,54.524969],[-0.850701,54.526339],[-0.848647,54.530004],[-0.844596,54.53348],[-0.843902,54.534799],[-0.842154,54.53602],[-0.841873,54.537373],[-0.838666,54.5398],[-0.836662,54.542633],[-0.834801,54.543356],[-0.832498,54.545219],[-0.830851,54.545536],[-0.829772,54.546821],[-0.828002,54.547364],[-0.826985,54.548575],[-0.825275,54.549073],[-0.821844,54.549077],[-0.8204,54.549362],[-0.818921,54.550703],[-0.815676,54.552507],[-0.814734,54.551686],[-0.813066,54.552042],[-0.810528,54.551219],[-0.8096,54.551713],[-0.80812,54.551241],[-0.806465,54.551432],[-0.804925,54.550895],[-0.800581,54.551838],[-0.797252,54.554146],[-0.798787,54.555618],[-0.795547,54.554874],[-0.7961,54.556615],[-0.794265,54.557502],[-0.793967,54.558586],[-0.793939,54.558687],[-0.793381,54.559124]]]]},"properties":{"LAD22CD":"E06000003","LAD22NM":"Redcar and Cleveland","BNG_E":464361,"BNG_N":519597,"LONG":-1.00608,"LAT":54.56752,"GlobalID":"31821567-9194-434e-bbeb-cc2ca8c3042e"},"id":3}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.224941,54.625919],[-1.224437,54.626178],[-1.224609,54.626141],[-1.224718,54.626089],[-1.224941,54.625919]]],[[[-1.250635,54.625296],[-1.252507,54.623931],[-1.254144,54.624104],[-1.255321,54.623382],[-1.256718,54.623351],[-1.25769,54.624114],[-1.256258,54.625626],[-1.258761,54.626449],[-1.25985,54.6246],[-1.262136,54.624919],[-1.263954,54.624283],[-1.266887,54.624144],[-1.267659,54.626063],[-1.268971,54.626393],[-1.271947,54.625345],[-1.273882,54.625996],[-1.276112,54.627255],[-1.279875,54.628246],[-1.286047,54.627665],[-1.286315,54.628194],[-1.291135,54.626992],[-1.292482,54.628747],[-1.296199,54.628028],[-1.299014,54.627982],[-1.298589,54.630545],[-1.298812,54.633465],[-1.298219,54.635511],[-1.302746,54.635754],[-1.304415,54.636673],[-1.30698,54.63695],[-1.308406,54.638726],[-1.311788,54.640876],[-1.31143,54.641858],[-1.315259,54.643446],[-1.315143,54.644096],[-1.316365,54.645235],[-1.31871,54.645208],[-1.321984,54.644542],[-1.326306,54.645103],[-1.328097,54.644446],[-1.329449,54.643097],[-1.329071,54.638576],[-1.329509,54.636528],[-1.331904,54.633792],[-1.335061,54.631324],[-1.337399,54.634752],[-1.339718,54.636247],[-1.342536,54.636672],[-1.349896,54.638809],[-1.354768,54.63807],[-1.356827,54.638376],[-1.362385,54.640615],[-1.367832,54.643471],[-1.3745,54.643739],[-1.379553,54.643274],[-1.380899,54.643917],[-1.384527,54.643124],[-1.387688,54.641388],[-1.387704,54.640123],[-1.39043,54.63921],[-1.390102,54.637757],[-1.390803,54.636588],[-1.38897,54.634911],[-1.388524,54.633535],[-1.387198,54.63274],[-1.389508,54.631346],[-1.39312,54.632037],[-1.393381,54.631521],[-1.39551,54.631098],[-1.394235,54.628882],[-1.396748,54.628332],[-1.399129,54.626979],[-1.400436,54.627714],[-1.401599,54.626359],[-1.399158,54.624129],[-1.402875,54.622434],[-1.40478,54.624046],[-1.406647,54.62262],[-1.408188,54.622064],[-1.406452,54.620822],[-1.408085,54.620089],[-1.40981,54.618468],[-1.412823,54.616592],[-1.416949,54.615033],[-1.417967,54.614319],[-1.426128,54.611499],[-1.426703,54.612434],[-1.428394,54.613184],[-1.427961,54.614412],[-1.429971,54.615294],[-1.431462,54.614736],[-1.432591,54.613723],[-1.436653,54.614175],[-1.437101,54.613026],[-1.439286,54.612483],[-1.439827,54.611161],[-1.443427,54.610336],[-1.448522,54.610983],[-1.450946,54.609841],[-1.452219,54.608765],[-1.451952,54.607674],[-1.452641,54.607054],[-1.451333,54.606249],[-1.450786,54.604699],[-1.448675,54.603245],[-1.447264,54.603082],[-1.445495,54.602029],[-1.444131,54.60046],[-1.445167,54.599548],[-1.443186,54.598509],[-1.442192,54.597471],[-1.43976,54.59664],[-1.439585,54.595689],[-1.438356,54.59508],[-1.435817,54.595713],[-1.43354,54.595128],[-1.431369,54.59536],[-1.42961,54.59662],[-1.429187,54.597779],[-1.429843,54.598329],[-1.429499,54.600616],[-1.426039,54.602711],[-1.423327,54.603127],[-1.42183,54.602253],[-1.421973,54.600505],[-1.419502,54.599637],[-1.417042,54.599378],[-1.416203,54.597958],[-1.414697,54.597303],[-1.414462,54.596303],[-1.411205,54.594944],[-1.411292,54.594439],[-1.40815,54.594401],[-1.407292,54.593728],[-1.408984,54.589923],[-1.413084,54.588238],[-1.413222,54.586215],[-1.414513,54.583534],[-1.414985,54.580878],[-1.416151,54.578049],[-1.415962,54.576704],[-1.416808,54.57583],[-1.416771,54.573883],[-1.414132,54.571269],[-1.416294,54.570439],[-1.414755,54.569053],[-1.414677,54.567878],[-1.411356,54.564816],[-1.416466,54.563358],[-1.422377,54.563356],[-1.42708,54.562775],[-1.435905,54.560112],[-1.43544,54.559242],[-1.43934,54.557505],[-1.446756,54.555668],[-1.445665,54.553913],[-1.443721,54.547445],[-1.44366,54.545602],[-1.442582,54.543087],[-1.443839,54.542434],[-1.444183,54.540748],[-1.445093,54.540079],[-1.445308,54.538851],[-1.44699,54.537218],[-1.445539,54.535435],[-1.443839,54.534538],[-1.445917,54.533662],[-1.449053,54.534026],[-1.449608,54.532968],[-1.446349,54.530657],[-1.444739,54.526987],[-1.443188,54.527644],[-1.4388,54.527661],[-1.438031,54.527138],[-1.436001,54.527574],[-1.434402,54.526919],[-1.43143,54.523623],[-1.429923,54.523703],[-1.42641,54.522132],[-1.424866,54.522277],[-1.422523,54.520902],[-1.421486,54.519638],[-1.421265,54.517645],[-1.421923,54.516203],[-1.423123,54.515274],[-1.423419,54.513982],[-1.428659,54.513064],[-1.425545,54.505882],[-1.425162,54.50065],[-1.426632,54.498293],[-1.427797,54.497494],[-1.429311,54.495275],[-1.433323,54.494236],[-1.433217,54.493519],[-1.435382,54.492711],[-1.434824,54.492153],[-1.43635,54.490991],[-1.433124,54.489292],[-1.434905,54.487493],[-1.432252,54.486519],[-1.426986,54.485234],[-1.426832,54.483999],[-1.428001,54.48299],[-1.433204,54.480941],[-1.433115,54.480104],[-1.43065,54.479163],[-1.423139,54.47888],[-1.417887,54.477086],[-1.412787,54.477195],[-1.409974,54.478333],[-1.408332,54.481395],[-1.408113,54.484621],[-1.408851,54.48728],[-1.410189,54.489686],[-1.409347,54.491514],[-1.407089,54.49353],[-1.405059,54.49416],[-1.402374,54.494269],[-1.399216,54.492892],[-1.397942,54.491105],[-1.398399,54.487633],[-1.397274,54.486539],[-1.39505,54.48568],[-1.389861,54.486699],[-1.384572,54.486852],[-1.383065,54.487286],[-1.382103,54.48858],[-1.38297,54.491591],[-1.381011,54.494029],[-1.379751,54.492621],[-1.377504,54.491242],[-1.375761,54.490635],[-1.373731,54.48838],[-1.371976,54.488001],[-1.370287,54.486111],[-1.371931,54.48482],[-1.374384,54.484233],[-1.37478,54.482467],[-1.374941,54.479534],[-1.373849,54.474439],[-1.372562,54.472307],[-1.368953,54.469949],[-1.364417,54.465952],[-1.361824,54.467809],[-1.361264,54.468711],[-1.357337,54.471418],[-1.356491,54.472926],[-1.353045,54.472419],[-1.350917,54.473416],[-1.349808,54.472727],[-1.346348,54.472667],[-1.343826,54.471059],[-1.344904,54.470114],[-1.344128,54.469543],[-1.343752,54.468231],[-1.342509,54.468129],[-1.343935,54.466229],[-1.343629,54.464155],[-1.324131,54.470925],[-1.323517,54.471433],[-1.318313,54.472199],[-1.316913,54.47298],[-1.315565,54.475325],[-1.313116,54.477277],[-1.310799,54.477517],[-1.308805,54.476488],[-1.306655,54.477828],[-1.303187,54.478429],[-1.302063,54.477966],[-1.303091,54.475915],[-1.300338,54.47585],[-1.299151,54.476576],[-1.296949,54.479501],[-1.294596,54.479339],[-1.293545,54.47961],[-1.291591,54.483445],[-1.291049,54.482181],[-1.288611,54.481805],[-1.28671,54.482735],[-1.286658,54.483957],[-1.287702,54.484843],[-1.287827,54.486364],[-1.289592,54.487986],[-1.285497,54.487827],[-1.284015,54.489283],[-1.281061,54.49042],[-1.278867,54.490261],[-1.2777,54.489746],[-1.276268,54.490733],[-1.274519,54.491082],[-1.272827,54.490279],[-1.273105,54.489276],[-1.270955,54.489135],[-1.2693,54.488308],[-1.268023,54.488555],[-1.265637,54.488172],[-1.264239,54.487568],[-1.26019,54.487802],[-1.257403,54.487322],[-1.256667,54.491174],[-1.257226,54.493208],[-1.254777,54.495251],[-1.254553,54.496607],[-1.253329,54.497281],[-1.253718,54.498804],[-1.255177,54.499469],[-1.256675,54.501108],[-1.251643,54.501406],[-1.248499,54.501184],[-1.246096,54.502188],[-1.244749,54.501359],[-1.242321,54.501658],[-1.238513,54.506232],[-1.23438,54.506142],[-1.234866,54.510316],[-1.237779,54.510666],[-1.238689,54.511303],[-1.242168,54.511576],[-1.245238,54.511557],[-1.246781,54.511297],[-1.248787,54.511969],[-1.250645,54.512002],[-1.251239,54.513117],[-1.256303,54.512395],[-1.256375,54.511402],[-1.259066,54.512673],[-1.263863,54.512545],[-1.266243,54.513567],[-1.267267,54.514446],[-1.269943,54.514614],[-1.272803,54.515098],[-1.274267,54.514904],[-1.276816,54.51657],[-1.277579,54.516558],[-1.279293,54.517812],[-1.28225,54.51838],[-1.282002,54.519718],[-1.28075,54.520558],[-1.28194,54.522478],[-1.282764,54.522966],[-1.28206,54.52411],[-1.283021,54.526566],[-1.285074,54.530297],[-1.284701,54.530503],[-1.284653,54.532898],[-1.285432,54.53625],[-1.283963,54.538119],[-1.28196,54.538659],[-1.278786,54.542415],[-1.278873,54.545244],[-1.276983,54.547293],[-1.277197,54.547826],[-1.276905,54.548147],[-1.276304,54.548811],[-1.275617,54.551768],[-1.273903,54.552338],[-1.273881,54.552366],[-1.273308,54.552865],[-1.272131,54.553475],[-1.271146,54.554945],[-1.270873,54.555758],[-1.271544,54.557312],[-1.275454,54.55867],[-1.278027,54.56053],[-1.280764,54.563947],[-1.282749,54.564756],[-1.285915,54.563978],[-1.286223,54.56479],[-1.278485,54.566794],[-1.277806,54.56722],[-1.27106,54.567704],[-1.266901,54.568736],[-1.264074,54.57008],[-1.262296,54.572041],[-1.265295,54.575276],[-1.26489,54.575362],[-1.262156,54.573027],[-1.258791,54.588595],[-1.257397,54.59023],[-1.251905,54.592568],[-1.248073,54.592743],[-1.245736,54.591978],[-1.246353,54.593695],[-1.245379,54.59387],[-1.243058,54.591014],[-1.240349,54.589903],[-1.238825,54.588979],[-1.236155,54.587917],[-1.236145,54.587457],[-1.230755,54.585738],[-1.22787,54.585266],[-1.227059,54.585455],[-1.223564,54.584899],[-1.212984,54.58226],[-1.209262,54.58206],[-1.204929,54.582542],[-1.201646,54.583349],[-1.197139,54.585668],[-1.193109,54.589254],[-1.186896,54.593397],[-1.185176,54.593304],[-1.180126,54.596475],[-1.172648,54.601505],[-1.167431,54.604806],[-1.167434,54.607575],[-1.165677,54.610172],[-1.161278,54.610165],[-1.160529,54.610387],[-1.159241,54.612903],[-1.15875,54.617805],[-1.16004,54.618709],[-1.162053,54.622611],[-1.166008,54.620047],[-1.167124,54.619759],[-1.170945,54.620937],[-1.172118,54.62193],[-1.169809,54.624615],[-1.165353,54.628023],[-1.16636,54.628958],[-1.170783,54.629735],[-1.168559,54.628021],[-1.166847,54.628429],[-1.165807,54.628015],[-1.168772,54.625473],[-1.169249,54.625774],[-1.172663,54.62227],[-1.172807,54.621552],[-1.200504,54.62176],[-1.201264,54.622404],[-1.204979,54.62224],[-1.206969,54.62153],[-1.215637,54.621513],[-1.215626,54.622777],[-1.218909,54.62273],[-1.220585,54.623381],[-1.221111,54.624876],[-1.223105,54.623513],[-1.224048,54.623557],[-1.225833,54.625235],[-1.22586,54.625238],[-1.226667,54.625339],[-1.226956,54.626713],[-1.22873,54.626104],[-1.229905,54.625104],[-1.230014,54.625115],[-1.230394,54.626157],[-1.232129,54.625559],[-1.234178,54.628805],[-1.238793,54.627913],[-1.237187,54.626429],[-1.238697,54.626433],[-1.240263,54.625416],[-1.243856,54.625424],[-1.245714,54.62602],[-1.247399,54.62589],[-1.249416,54.625192],[-1.250635,54.625296]]]]},"properties":{"LAD22CD":"E06000004","LAD22NM":"Stockton-on-Tees","BNG_E":444940,"BNG_N":518183,"LONG":-1.30664,"LAT":54.55691,"GlobalID":"90a305d8-b2dd-41dc-9894-ba1c6059e961"},"id":4}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.438356,54.59508],[-1.440003,54.594472],[-1.439636,54.593563],[-1.442405,54.59277],[-1.443401,54.590624],[-1.446859,54.591152],[-1.451706,54.590828],[-1.453312,54.594049],[-1.454143,54.594412],[-1.45608,54.599221],[-1.459049,54.598429],[-1.459169,54.597282],[-1.460248,54.596824],[-1.463592,54.599437],[-1.468688,54.600559],[-1.470394,54.600459],[-1.472128,54.598975],[-1.48074,54.599388],[-1.483412,54.599212],[-1.484688,54.599683],[-1.488172,54.599284],[-1.492443,54.597268],[-1.497318,54.595675],[-1.501497,54.595612],[-1.506467,54.596072],[-1.509949,54.594821],[-1.52177,54.596557],[-1.521952,54.596067],[-1.526403,54.596486],[-1.537522,54.594466],[-1.541889,54.593067],[-1.548258,54.59173],[-1.552505,54.591318],[-1.556534,54.591514],[-1.558645,54.592117],[-1.558194,54.590875],[-1.560819,54.590284],[-1.561683,54.589639],[-1.56173,54.588512],[-1.562557,54.587076],[-1.562262,54.585971],[-1.560209,54.586251],[-1.558005,54.585454],[-1.554625,54.583317],[-1.553159,54.583402],[-1.552824,54.582342],[-1.555668,54.581718],[-1.56131,54.58223],[-1.561835,54.58177],[-1.56468,54.580812],[-1.566636,54.580627],[-1.569809,54.581238],[-1.571457,54.580733],[-1.576266,54.580198],[-1.577031,54.581377],[-1.57886,54.582126],[-1.581506,54.58192],[-1.583374,54.580948],[-1.584367,54.582061],[-1.5851,54.584048],[-1.585163,54.588213],[-1.582865,54.589475],[-1.590861,54.590214],[-1.593409,54.595077],[-1.590368,54.594957],[-1.589876,54.597749],[-1.591366,54.599654],[-1.592949,54.604549],[-1.590653,54.605582],[-1.584073,54.607268],[-1.583771,54.607504],[-1.584193,54.610486],[-1.586528,54.610422],[-1.597577,54.608017],[-1.600489,54.606652],[-1.603965,54.605597],[-1.605235,54.604772],[-1.606218,54.60344],[-1.607727,54.60427],[-1.608439,54.605334],[-1.605662,54.60673],[-1.606945,54.612477],[-1.605251,54.612449],[-1.605777,54.6146],[-1.606561,54.614729],[-1.606764,54.61754],[-1.610318,54.617443],[-1.612126,54.618127],[-1.613687,54.617958],[-1.614046,54.618811],[-1.616829,54.618804],[-1.618506,54.619168],[-1.623886,54.618926],[-1.623861,54.618623],[-1.631396,54.618457],[-1.631501,54.616132],[-1.63324,54.616128],[-1.637672,54.616704],[-1.638001,54.617204],[-1.640777,54.617401],[-1.641629,54.619366],[-1.649741,54.617957],[-1.651774,54.616903],[-1.653227,54.616955],[-1.65704,54.615473],[-1.662283,54.615857],[-1.663188,54.615536],[-1.672195,54.617085],[-1.672903,54.617438],[-1.678747,54.617831],[-1.682422,54.617771],[-1.681056,54.608766],[-1.68198,54.608119],[-1.680658,54.606329],[-1.68061,54.597833],[-1.679312,54.585973],[-1.683911,54.585955],[-1.694028,54.586894],[-1.693865,54.585094],[-1.699043,54.584566],[-1.700033,54.584176],[-1.70017,54.582249],[-1.702848,54.581573],[-1.703077,54.579854],[-1.704072,54.578082],[-1.705695,54.578348],[-1.708985,54.574142],[-1.705468,54.573766],[-1.70448,54.572162],[-1.708255,54.569064],[-1.708028,54.567903],[-1.709667,54.565815],[-1.709282,54.563179],[-1.707438,54.563161],[-1.705554,54.561846],[-1.70588,54.560627],[-1.703311,54.558696],[-1.701795,54.558263],[-1.698735,54.558206],[-1.696588,54.557817],[-1.694694,54.556638],[-1.691207,54.556245],[-1.691328,54.555312],[-1.693997,54.55529],[-1.697563,54.555712],[-1.699147,54.554073],[-1.700486,54.554062],[-1.701206,54.552949],[-1.699394,54.552043],[-1.701165,54.549906],[-1.703934,54.550717],[-1.705274,54.549172],[-1.7046,54.548378],[-1.704522,54.54627],[-1.703771,54.544936],[-1.700871,54.544352],[-1.69834,54.544209],[-1.698741,54.543301],[-1.698519,54.540802],[-1.696927,54.536006],[-1.689532,54.535386],[-1.68363,54.53348],[-1.682259,54.533339],[-1.679295,54.533635],[-1.677412,54.534494],[-1.672213,54.535402],[-1.665278,54.53559],[-1.660641,54.5352],[-1.657937,54.534589],[-1.65558,54.532977],[-1.654979,54.530419],[-1.656918,54.528209],[-1.657034,54.526383],[-1.65633,54.525533],[-1.652974,54.524196],[-1.650519,54.524093],[-1.645318,54.524401],[-1.640047,54.525673],[-1.635557,54.525857],[-1.633774,54.525364],[-1.632137,54.52385],[-1.631724,54.522877],[-1.63268,54.520702],[-1.632931,54.518704],[-1.634686,54.517644],[-1.639396,54.517831],[-1.640199,54.51718],[-1.639327,54.516415],[-1.633329,54.514111],[-1.627839,54.513832],[-1.623578,54.514649],[-1.619532,54.515999],[-1.614296,54.519542],[-1.612107,54.519992],[-1.609521,54.519908],[-1.603955,54.519365],[-1.600623,54.517098],[-1.601064,54.514813],[-1.603656,54.512153],[-1.602759,54.510614],[-1.60135,54.510581],[-1.595656,54.512222],[-1.589715,54.512074],[-1.58319,54.513077],[-1.581069,54.512846],[-1.579527,54.511627],[-1.579564,54.51109],[-1.581305,54.509489],[-1.584325,54.507971],[-1.587514,54.506772],[-1.591357,54.505853],[-1.591948,54.505303],[-1.591623,54.504004],[-1.589276,54.503616],[-1.581129,54.505328],[-1.579215,54.505188],[-1.578745,54.503883],[-1.579995,54.500943],[-1.583437,54.498059],[-1.582981,54.497101],[-1.580305,54.496309],[-1.576999,54.494404],[-1.575006,54.492626],[-1.573304,54.49016],[-1.568083,54.488692],[-1.563039,54.486808],[-1.556663,54.485595],[-1.555195,54.484978],[-1.554281,54.482924],[-1.554099,54.479601],[-1.551129,54.4745],[-1.545673,54.471238],[-1.54275,54.471164],[-1.534474,54.469303],[-1.53272,54.469149],[-1.527403,54.469965],[-1.522417,54.470185],[-1.519833,54.471047],[-1.519456,54.472372],[-1.520547,54.473473],[-1.524474,54.474643],[-1.528597,54.474781],[-1.530151,54.475751],[-1.530273,54.477799],[-1.531293,54.480721],[-1.530613,54.48353],[-1.528837,54.484814],[-1.526409,54.485224],[-1.523671,54.484913],[-1.518075,54.485036],[-1.515939,54.484573],[-1.512935,54.482925],[-1.512001,54.481155],[-1.512204,54.48014],[-1.514373,54.477907],[-1.51431,54.476574],[-1.513129,54.475347],[-1.511341,54.475012],[-1.509742,54.475545],[-1.506869,54.478486],[-1.506231,54.481568],[-1.505247,54.48242],[-1.501355,54.48433],[-1.496894,54.485825],[-1.494315,54.486355],[-1.491522,54.486091],[-1.490484,54.484818],[-1.491319,54.483281],[-1.493239,54.481423],[-1.499349,54.478096],[-1.499588,54.477156],[-1.498354,54.474992],[-1.494613,54.474028],[-1.490714,54.473974],[-1.487026,54.472994],[-1.483932,54.473428],[-1.47909,54.475322],[-1.477625,54.475012],[-1.475373,54.473845],[-1.474589,54.472789],[-1.473963,54.467893],[-1.472888,54.466586],[-1.467981,54.463151],[-1.467845,54.460843],[-1.468853,54.459347],[-1.472206,54.457457],[-1.472052,54.4556],[-1.471061,54.454717],[-1.466989,54.453292],[-1.463101,54.451378],[-1.460527,54.451165],[-1.45615,54.452449],[-1.454809,54.453787],[-1.455446,54.455532],[-1.457375,54.457102],[-1.460966,54.458745],[-1.461922,54.459585],[-1.462792,54.461392],[-1.46197,54.462898],[-1.455271,54.464873],[-1.453414,54.466015],[-1.454396,54.467149],[-1.459432,54.468838],[-1.460191,54.47131],[-1.463423,54.473041],[-1.463799,54.473551],[-1.461373,54.478407],[-1.457585,54.481483],[-1.458114,54.482314],[-1.461344,54.484707],[-1.461828,54.485951],[-1.461252,54.487623],[-1.458408,54.491254],[-1.458474,54.492839],[-1.459386,54.494582],[-1.461144,54.495878],[-1.463597,54.496522],[-1.467066,54.496539],[-1.472041,54.495927],[-1.474594,54.496829],[-1.47556,54.498108],[-1.475191,54.499912],[-1.47419,54.500984],[-1.472839,54.501556],[-1.467353,54.502527],[-1.462114,54.504245],[-1.459984,54.50427],[-1.457798,54.503648],[-1.456504,54.50281],[-1.451898,54.497359],[-1.446511,54.494425],[-1.442892,54.490915],[-1.434905,54.487493],[-1.433124,54.489292],[-1.43635,54.490991],[-1.434824,54.492153],[-1.435382,54.492711],[-1.433217,54.493519],[-1.433323,54.494236],[-1.429311,54.495275],[-1.427797,54.497494],[-1.426632,54.498293],[-1.425162,54.50065],[-1.425545,54.505882],[-1.428659,54.513064],[-1.423419,54.513982],[-1.423123,54.515274],[-1.421923,54.516203],[-1.421265,54.517645],[-1.421486,54.519638],[-1.422523,54.520902],[-1.424866,54.522277],[-1.42641,54.522132],[-1.429923,54.523703],[-1.43143,54.523623],[-1.434402,54.526919],[-1.436001,54.527574],[-1.438031,54.527138],[-1.4388,54.527661],[-1.443188,54.527644],[-1.444739,54.526987],[-1.446349,54.530657],[-1.449608,54.532968],[-1.449053,54.534026],[-1.445917,54.533662],[-1.443839,54.534538],[-1.445539,54.535435],[-1.44699,54.537218],[-1.445308,54.538851],[-1.445093,54.540079],[-1.444183,54.540748],[-1.443839,54.542434],[-1.442582,54.543087],[-1.44366,54.545602],[-1.443721,54.547445],[-1.445665,54.553913],[-1.446756,54.555668],[-1.43934,54.557505],[-1.43544,54.559242],[-1.435905,54.560112],[-1.42708,54.562775],[-1.422377,54.563356],[-1.416466,54.563358],[-1.411356,54.564816],[-1.414677,54.567878],[-1.414755,54.569053],[-1.416294,54.570439],[-1.414132,54.571269],[-1.416771,54.573883],[-1.416808,54.57583],[-1.415962,54.576704],[-1.416151,54.578049],[-1.414985,54.580878],[-1.414513,54.583534],[-1.413222,54.586215],[-1.413084,54.588238],[-1.408984,54.589923],[-1.407292,54.593728],[-1.40815,54.594401],[-1.411292,54.594439],[-1.411205,54.594944],[-1.414462,54.596303],[-1.414697,54.597303],[-1.416203,54.597958],[-1.417042,54.599378],[-1.419502,54.599637],[-1.421973,54.600505],[-1.42183,54.602253],[-1.423327,54.603127],[-1.426039,54.602711],[-1.429499,54.600616],[-1.429843,54.598329],[-1.429187,54.597779],[-1.42961,54.59662],[-1.431369,54.59536],[-1.43354,54.595128],[-1.435817,54.595713],[-1.438356,54.59508]]]},"properties":{"LAD22CD":"E06000005","LAD22NM":"Darlington","BNG_E":428029,"BNG_N":515648,"LONG":-1.56835,"LAT":54.53534,"GlobalID":"fa958550-3039-4707-8f84-30b0cd5a6738"},"id":5}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.595223,53.322454],[-2.596303,53.323254],[-2.596541,53.324671],[-2.598639,53.325056],[-2.601084,53.32461],[-2.602561,53.325161],[-2.604061,53.32638],[-2.607579,53.327245],[-2.609667,53.330103],[-2.610392,53.330405],[-2.614936,53.328857],[-2.617499,53.329588],[-2.619808,53.331914],[-2.615699,53.334714],[-2.611557,53.340907],[-2.610377,53.341571],[-2.60709,53.342341],[-2.606607,53.342996],[-2.60715,53.344429],[-2.609573,53.346274],[-2.613638,53.347099],[-2.615273,53.346761],[-2.619177,53.346926],[-2.622244,53.347413],[-2.624153,53.346081],[-2.627713,53.346579],[-2.628448,53.345652],[-2.631468,53.346034],[-2.630991,53.348336],[-2.628569,53.35255],[-2.629517,53.352718],[-2.629107,53.354152],[-2.626934,53.354192],[-2.627682,53.355306],[-2.626881,53.358741],[-2.630622,53.36405],[-2.64218,53.361741],[-2.674641,53.353664],[-2.675208,53.354454],[-2.680341,53.354679],[-2.685181,53.355879],[-2.693043,53.356692],[-2.697854,53.356851],[-2.699516,53.356683],[-2.70148,53.355673],[-2.702381,53.354645],[-2.704657,53.35328],[-2.708659,53.349981],[-2.712925,53.348011],[-2.714014,53.347922],[-2.716273,53.346204],[-2.718663,53.344931],[-2.721979,53.344508],[-2.743352,53.345342],[-2.753773,53.343447],[-2.755899,53.342026],[-2.76,53.336703],[-2.759531,53.335989],[-2.760444,53.334546],[-2.76223,53.332579],[-2.763237,53.330235],[-2.763378,53.32755],[-2.759906,53.322304],[-2.757475,53.319949],[-2.753641,53.317094],[-2.752438,53.315514],[-2.752432,53.31476],[-2.74736,53.312415],[-2.742919,53.309279],[-2.740819,53.308208],[-2.739292,53.30687],[-2.736525,53.306633],[-2.73448,53.307168],[-2.732888,53.310572],[-2.730652,53.311983],[-2.728152,53.31241],[-2.724149,53.312461],[-2.723526,53.31314],[-2.715704,53.311871],[-2.707756,53.309574],[-2.700799,53.305806],[-2.69211,53.311054],[-2.68758,53.313375],[-2.68725,53.314034],[-2.685353,53.315332],[-2.678165,53.31416],[-2.648797,53.308223],[-2.645881,53.307333],[-2.641557,53.305035],[-2.644437,53.308629],[-2.645062,53.310135],[-2.639847,53.309388],[-2.638865,53.310097],[-2.635724,53.307949],[-2.632509,53.307521],[-2.624123,53.309398],[-2.624715,53.31178],[-2.622734,53.312014],[-2.617801,53.316135],[-2.619834,53.316871],[-2.617471,53.3176],[-2.617869,53.318204],[-2.621024,53.31922],[-2.619935,53.320321],[-2.616844,53.320648],[-2.613518,53.318916],[-2.610071,53.31803],[-2.609358,53.315012],[-2.608283,53.314794],[-2.607999,53.313863],[-2.60653,53.314026],[-2.606414,53.314826],[-2.604717,53.315516],[-2.603573,53.317972],[-2.602363,53.318499],[-2.599368,53.318675],[-2.596743,53.319375],[-2.595254,53.320146],[-2.595223,53.322454]]],[[[-2.690633,53.385388],[-2.701076,53.386846],[-2.705042,53.386746],[-2.705081,53.387932],[-2.710344,53.38929],[-2.710222,53.389941],[-2.712804,53.390626],[-2.71612,53.39688],[-2.71659,53.399045],[-2.720314,53.399987],[-2.728936,53.399671],[-2.740373,53.40142],[-2.743864,53.402553],[-2.745175,53.402097],[-2.746265,53.398963],[-2.745321,53.397195],[-2.743396,53.395285],[-2.745287,53.394571],[-2.750648,53.393788],[-2.75005,53.392383],[-2.747106,53.392393],[-2.748142,53.388501],[-2.74923,53.388312],[-2.751426,53.387057],[-2.752597,53.385924],[-2.760271,53.384336],[-2.757775,53.382879],[-2.757654,53.380738],[-2.758659,53.380997],[-2.760581,53.382346],[-2.764525,53.382699],[-2.767593,53.383778],[-2.769311,53.383889],[-2.772078,53.382964],[-2.773165,53.381057],[-2.775622,53.380727],[-2.777052,53.379679],[-2.778542,53.377398],[-2.778889,53.375658],[-2.779739,53.375571],[-2.781283,53.371692],[-2.78229,53.370412],[-2.780248,53.369932],[-2.781912,53.367491],[-2.780915,53.366212],[-2.784564,53.361931],[-2.784828,53.360717],[-2.787302,53.35629],[-2.800901,53.355898],[-2.809065,53.355081],[-2.811948,53.352889],[-2.81622,53.350341],[-2.816954,53.348811],[-2.818804,53.348001],[-2.818977,53.34529],[-2.819869,53.343678],[-2.818,53.342981],[-2.819841,53.341201],[-2.82021,53.340407],[-2.822329,53.340694],[-2.823483,53.337388],[-2.827327,53.337873],[-2.831066,53.337772],[-2.832457,53.337289],[-2.831531,53.335127],[-2.826654,53.331661],[-2.824416,53.332891],[-2.821526,53.333317],[-2.819055,53.332978],[-2.80535,53.327903],[-2.803514,53.327636],[-2.797647,53.324487],[-2.794661,53.322242],[-2.789807,53.322356],[-2.785583,53.32346],[-2.783127,53.324714],[-2.779097,53.327408],[-2.777708,53.329234],[-2.777467,53.330317],[-2.778399,53.332424],[-2.777245,53.335564],[-2.776192,53.337266],[-2.772659,53.340607],[-2.770479,53.343998],[-2.76898,53.345558],[-2.764455,53.348124],[-2.759134,53.349607],[-2.758638,53.349548],[-2.750391,53.350551],[-2.747484,53.350645],[-2.741187,53.349714],[-2.736694,53.347837],[-2.734309,53.347775],[-2.732748,53.348076],[-2.73123,53.349972],[-2.732012,53.352292],[-2.729049,53.353085],[-2.728465,53.35452],[-2.726448,53.355097],[-2.723133,53.35566],[-2.718872,53.355283],[-2.715293,53.356464],[-2.708887,53.359665],[-2.704973,53.361116],[-2.700118,53.362327],[-2.693379,53.361816],[-2.693489,53.364607],[-2.697202,53.368545],[-2.697725,53.379313],[-2.697356,53.381552],[-2.696067,53.383201],[-2.693961,53.384317],[-2.690633,53.385388]]]]},"properties":{"LAD22CD":"E06000006","LAD22NM":"Halton","BNG_E":354246,"BNG_N":382146,"LONG":-2.68853,"LAT":53.33424,"GlobalID":"f263037d-8ad7-475c-a18f-56b6ace3744c"},"id":6}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.449378,53.415891],[-2.449362,53.416755],[-2.450751,53.417386],[-2.451275,53.418674],[-2.449188,53.420535],[-2.448995,53.422875],[-2.450315,53.42408],[-2.451544,53.426709],[-2.454068,53.428276],[-2.455129,53.429984],[-2.45926,53.433159],[-2.461724,53.436369],[-2.463321,53.437016],[-2.466339,53.437036],[-2.470799,53.43891],[-2.474102,53.439383],[-2.478154,53.443417],[-2.478265,53.444318],[-2.476043,53.44746],[-2.475987,53.448238],[-2.478774,53.450047],[-2.482826,53.453868],[-2.486106,53.455191],[-2.486894,53.458141],[-2.489608,53.459581],[-2.489714,53.460282],[-2.489863,53.462218],[-2.49227,53.465154],[-2.491124,53.467537],[-2.491087,53.469025],[-2.491677,53.469886],[-2.491398,53.472146],[-2.490439,53.473147],[-2.489146,53.475848],[-2.492742,53.479377],[-2.496335,53.480929],[-2.502705,53.479727],[-2.550485,53.468062],[-2.552639,53.467813],[-2.549076,53.461486],[-2.57039,53.458475],[-2.570552,53.456724],[-2.573748,53.451199],[-2.574631,53.447995],[-2.576743,53.446057],[-2.582314,53.441159],[-2.584597,53.440393],[-2.585296,53.439807],[-2.591597,53.446548],[-2.598685,53.450414],[-2.596659,53.448179],[-2.59589,53.44533],[-2.596231,53.442666],[-2.597051,53.442561],[-2.598897,53.443397],[-2.600606,53.443514],[-2.602486,53.442431],[-2.606344,53.442822],[-2.611423,53.442275],[-2.612087,53.441688],[-2.616055,53.440706],[-2.61801,53.438668],[-2.620299,53.437833],[-2.621018,53.437047],[-2.625433,53.436526],[-2.627463,53.434413],[-2.630043,53.435145],[-2.632089,53.43794],[-2.63141,53.44015],[-2.632408,53.44166],[-2.639535,53.444423],[-2.641891,53.443892],[-2.645657,53.444305],[-2.646057,53.44536],[-2.647983,53.446654],[-2.649378,53.446362],[-2.651096,53.447728],[-2.65236,53.448164],[-2.654743,53.448118],[-2.657916,53.447446],[-2.658787,53.4477],[-2.659946,53.448981],[-2.663874,53.449491],[-2.665132,53.449162],[-2.668495,53.450001],[-2.670661,53.449926],[-2.672604,53.450991],[-2.673475,53.45266],[-2.674462,53.452915],[-2.677167,53.452754],[-2.678613,53.450578],[-2.677504,53.449415],[-2.677354,53.448065],[-2.678223,53.446328],[-2.67869,53.444273],[-2.680278,53.444718],[-2.681338,53.442577],[-2.679829,53.442229],[-2.682168,53.439234],[-2.678879,53.439696],[-2.678844,53.439123],[-2.670292,53.441301],[-2.668772,53.441044],[-2.668845,53.439395],[-2.671837,53.437868],[-2.671683,53.43594],[-2.674182,53.43529],[-2.676046,53.435455],[-2.675268,53.432965],[-2.672725,53.432037],[-2.670319,53.43229],[-2.666442,53.431843],[-2.664819,53.431302],[-2.663853,53.429667],[-2.663784,53.428461],[-2.665674,53.427855],[-2.666567,53.426359],[-2.670063,53.424176],[-2.67232,53.422025],[-2.6718,53.418897],[-2.667094,53.418646],[-2.666856,53.416264],[-2.670745,53.415255],[-2.671877,53.415287],[-2.672136,53.411807],[-2.673025,53.41008],[-2.672927,53.407873],[-2.672356,53.407762],[-2.671377,53.400174],[-2.673109,53.399742],[-2.673795,53.398388],[-2.674816,53.398013],[-2.676611,53.393547],[-2.676034,53.389868],[-2.676317,53.387619],[-2.690633,53.385388],[-2.693961,53.384317],[-2.696067,53.383201],[-2.697356,53.381552],[-2.697725,53.379313],[-2.697202,53.368545],[-2.693489,53.364607],[-2.693379,53.361816],[-2.688784,53.360517],[-2.685443,53.359158],[-2.679272,53.357029],[-2.6768,53.356684],[-2.674489,53.356763],[-2.672046,53.358426],[-2.670305,53.362165],[-2.668963,53.363726],[-2.664669,53.370019],[-2.661144,53.373313],[-2.658603,53.374701],[-2.6543,53.375817],[-2.652066,53.375603],[-2.646998,53.373948],[-2.645574,53.373965],[-2.642152,53.376998],[-2.640582,53.377958],[-2.637356,53.378571],[-2.63574,53.378221],[-2.625618,53.375429],[-2.623195,53.375344],[-2.620779,53.376991],[-2.611775,53.385476],[-2.610186,53.386557],[-2.607811,53.387113],[-2.606134,53.38657],[-2.605677,53.385287],[-2.608057,53.382961],[-2.608648,53.381708],[-2.607336,53.376976],[-2.60578,53.37508],[-2.602005,53.374065],[-2.599406,53.374569],[-2.598215,53.375503],[-2.593242,53.383256],[-2.593,53.384923],[-2.591459,53.386032],[-2.590019,53.38619],[-2.586272,53.385052],[-2.579812,53.384642],[-2.578234,53.384773],[-2.577053,53.38405],[-2.577971,53.383478],[-2.581587,53.384483],[-2.586091,53.384681],[-2.587813,53.384955],[-2.59004,53.385844],[-2.591278,53.385672],[-2.59241,53.38472],[-2.592649,53.383197],[-2.598474,53.374582],[-2.60062,53.373592],[-2.602605,53.373528],[-2.604436,53.373984],[-2.606958,53.375127],[-2.608013,53.376702],[-2.609502,53.381071],[-2.609142,53.382785],[-2.606505,53.385538],[-2.607693,53.386742],[-2.610418,53.385758],[-2.614766,53.380652],[-2.618978,53.376638],[-2.621517,53.374996],[-2.623121,53.374397],[-2.624671,53.374428],[-2.632836,53.37613],[-2.638194,53.377617],[-2.63884,53.377167],[-2.639867,53.374283],[-2.642328,53.372462],[-2.646911,53.372229],[-2.652066,53.374016],[-2.654662,53.374418],[-2.656769,53.374099],[-2.659331,53.37282],[-2.663978,53.367249],[-2.665186,53.36415],[-2.664761,53.362056],[-2.666142,53.357699],[-2.669048,53.355982],[-2.675208,53.354454],[-2.674641,53.353664],[-2.64218,53.361741],[-2.630622,53.36405],[-2.626881,53.358741],[-2.627682,53.355306],[-2.626934,53.354192],[-2.629107,53.354152],[-2.629517,53.352718],[-2.628569,53.35255],[-2.630991,53.348336],[-2.631468,53.346034],[-2.628448,53.345652],[-2.627713,53.346579],[-2.624153,53.346081],[-2.622244,53.347413],[-2.619177,53.346926],[-2.615273,53.346761],[-2.613638,53.347099],[-2.609573,53.346274],[-2.60715,53.344429],[-2.606607,53.342996],[-2.60709,53.342341],[-2.610377,53.341571],[-2.611557,53.340907],[-2.615699,53.334714],[-2.619808,53.331914],[-2.617499,53.329588],[-2.614936,53.328857],[-2.610392,53.330405],[-2.609667,53.330103],[-2.607579,53.327245],[-2.604061,53.32638],[-2.602561,53.325161],[-2.601084,53.32461],[-2.598639,53.325056],[-2.596541,53.324671],[-2.596303,53.323254],[-2.595223,53.322454],[-2.592586,53.32245],[-2.592739,53.324742],[-2.590091,53.325889],[-2.588501,53.325955],[-2.588335,53.32743],[-2.586345,53.328741],[-2.586284,53.329395],[-2.581555,53.328366],[-2.580232,53.328608],[-2.578363,53.326018],[-2.576816,53.326116],[-2.575396,53.325677],[-2.569403,53.325241],[-2.567848,53.325404],[-2.566492,53.324194],[-2.563088,53.32308],[-2.560167,53.323931],[-2.558838,53.325712],[-2.557367,53.326111],[-2.553928,53.328727],[-2.551665,53.332374],[-2.548281,53.331031],[-2.544529,53.330525],[-2.543006,53.332467],[-2.541266,53.333448],[-2.539453,53.33639],[-2.538234,53.335953],[-2.518393,53.34239],[-2.52105,53.3479],[-2.51956,53.347955],[-2.516695,53.348912],[-2.515461,53.349681],[-2.513096,53.352539],[-2.511177,53.352837],[-2.509902,53.353682],[-2.508897,53.353631],[-2.506985,53.355246],[-2.503094,53.356126],[-2.502752,53.357544],[-2.499694,53.359095],[-2.497824,53.359409],[-2.497695,53.360565],[-2.496594,53.361695],[-2.49283,53.362694],[-2.492101,53.364796],[-2.489783,53.365656],[-2.489647,53.366856],[-2.487235,53.366879],[-2.486021,53.367642],[-2.480726,53.367604],[-2.479084,53.367151],[-2.47718,53.366099],[-2.475041,53.366019],[-2.471713,53.364888],[-2.467086,53.363689],[-2.464996,53.363531],[-2.463239,53.364472],[-2.460953,53.364184],[-2.458842,53.368286],[-2.450923,53.367077],[-2.450457,53.366551],[-2.447158,53.365886],[-2.43988,53.366663],[-2.439663,53.370542],[-2.437739,53.370245],[-2.436483,53.370954],[-2.435549,53.372678],[-2.434603,53.372158],[-2.432778,53.374032],[-2.431277,53.37339],[-2.427489,53.375911],[-2.428724,53.376406],[-2.425507,53.379691],[-2.42647,53.382794],[-2.426219,53.384518],[-2.426827,53.384719],[-2.425381,53.386723],[-2.42659,53.387461],[-2.428362,53.388426],[-2.429778,53.388397],[-2.431997,53.387715],[-2.43334,53.388237],[-2.433871,53.389453],[-2.436995,53.389257],[-2.438787,53.390099],[-2.438575,53.39157],[-2.441655,53.391003],[-2.442793,53.391971],[-2.445482,53.392185],[-2.44527,53.392861],[-2.448439,53.3948],[-2.450828,53.394916],[-2.454496,53.393907],[-2.455435,53.394272],[-2.458254,53.393898],[-2.459948,53.394316],[-2.460863,53.393953],[-2.463258,53.394727],[-2.464081,53.39417],[-2.465906,53.39482],[-2.466281,53.394074],[-2.468189,53.393863],[-2.468173,53.393058],[-2.471044,53.392338],[-2.472647,53.392709],[-2.473645,53.393737],[-2.475713,53.394204],[-2.478456,53.396218],[-2.471733,53.397751],[-2.465977,53.400748],[-2.462102,53.403852],[-2.456257,53.410824],[-2.453682,53.413213],[-2.45078,53.4153],[-2.449378,53.415891]]]},"properties":{"LAD22CD":"E06000007","LAD22NM":"Warrington","BNG_E":362744,"BNG_N":388456,"LONG":-2.56167,"LAT":53.39163,"GlobalID":"a8888e4f-d5f8-4ed7-b195-77a9dbdd9d7f"},"id":7}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.465808,53.780813],[-2.467048,53.781483],[-2.469716,53.781791],[-2.473707,53.779899],[-2.477088,53.781048],[-2.477954,53.779943],[-2.478885,53.777666],[-2.480183,53.775957],[-2.480827,53.773992],[-2.484342,53.772795],[-2.486694,53.772794],[-2.491213,53.771051],[-2.494762,53.770158],[-2.498958,53.76862],[-2.50199,53.768898],[-2.504691,53.769717],[-2.507663,53.769599],[-2.509413,53.769216],[-2.511255,53.76673],[-2.514836,53.766204],[-2.515597,53.764715],[-2.518696,53.763915],[-2.51981,53.762357],[-2.520771,53.762203],[-2.52325,53.760408],[-2.525745,53.759666],[-2.528779,53.759476],[-2.531501,53.759597],[-2.532346,53.758687],[-2.53634,53.759086],[-2.536568,53.759562],[-2.539461,53.759947],[-2.54385,53.759248],[-2.545724,53.759428],[-2.549255,53.758082],[-2.549805,53.757165],[-2.551298,53.756388],[-2.552162,53.755175],[-2.552009,53.753015],[-2.552825,53.752113],[-2.55265,53.751216],[-2.556252,53.749046],[-2.558136,53.749085],[-2.559166,53.747554],[-2.561602,53.746901],[-2.562468,53.746118],[-2.561752,53.744737],[-2.564661,53.743647],[-2.564591,53.742459],[-2.562866,53.741544],[-2.563538,53.74077],[-2.563616,53.739266],[-2.561605,53.737858],[-2.560729,53.73778],[-2.559361,53.735163],[-2.557155,53.734612],[-2.557073,53.732618],[-2.556494,53.732305],[-2.556537,53.730828],[-2.555858,53.728996],[-2.556892,53.727435],[-2.555182,53.725268],[-2.550745,53.726544],[-2.546311,53.724976],[-2.546684,53.723263],[-2.547333,53.722446],[-2.546424,53.721284],[-2.543772,53.721319],[-2.5408,53.71967],[-2.541425,53.718853],[-2.5399,53.718123],[-2.539897,53.716559],[-2.538972,53.713375],[-2.54091,53.712058],[-2.54166,53.711011],[-2.543261,53.709896],[-2.541577,53.707973],[-2.542778,53.706633],[-2.542211,53.705185],[-2.540248,53.703552],[-2.539793,53.702192],[-2.537464,53.701074],[-2.536414,53.699364],[-2.535293,53.698266],[-2.532717,53.697363],[-2.531932,53.696443],[-2.529058,53.696021],[-2.526465,53.695026],[-2.523384,53.695486],[-2.521161,53.694506],[-2.520153,53.694453],[-2.515676,53.692382],[-2.516004,53.690831],[-2.51534,53.690018],[-2.516587,53.688983],[-2.516996,53.687458],[-2.51793,53.68667],[-2.517401,53.684903],[-2.518452,53.682761],[-2.517773,53.681176],[-2.518346,53.677655],[-2.519171,53.676287],[-2.520529,53.675352],[-2.524587,53.675095],[-2.526225,53.673575],[-2.526472,53.671188],[-2.528342,53.669411],[-2.529159,53.667208],[-2.532344,53.664902],[-2.528937,53.660281],[-2.528622,53.656257],[-2.526613,53.655101],[-2.525296,53.653706],[-2.525064,53.652515],[-2.523563,53.650834],[-2.52227,53.648178],[-2.521494,53.645433],[-2.522143,53.644211],[-2.524021,53.642592],[-2.524573,53.641287],[-2.520062,53.630482],[-2.518331,53.630282],[-2.514829,53.629239],[-2.511323,53.626995],[-2.507931,53.625404],[-2.494827,53.622143],[-2.479196,53.617036],[-2.472993,53.616632],[-2.470443,53.619891],[-2.467083,53.620969],[-2.46602,53.621699],[-2.463409,53.622004],[-2.4597,53.620043],[-2.457524,53.620985],[-2.453781,53.621974],[-2.453179,53.622777],[-2.455265,53.624129],[-2.456483,53.623946],[-2.458289,53.624631],[-2.456817,53.625729],[-2.45622,53.626807],[-2.454917,53.626927],[-2.453404,53.627959],[-2.450644,53.627805],[-2.44925,53.63112],[-2.448392,53.631862],[-2.44968,53.633378],[-2.449242,53.63558],[-2.447968,53.636636],[-2.448878,53.639058],[-2.450271,53.641432],[-2.448846,53.642071],[-2.446743,53.641448],[-2.443078,53.64241],[-2.442286,53.643783],[-2.438725,53.646045],[-2.432652,53.641382],[-2.430654,53.638462],[-2.426144,53.63501],[-2.425883,53.628203],[-2.426355,53.626516],[-2.421697,53.623836],[-2.419928,53.62361],[-2.416243,53.623695],[-2.413832,53.624686],[-2.409822,53.625395],[-2.404444,53.625058],[-2.403542,53.624406],[-2.40121,53.624599],[-2.400012,53.62828],[-2.400794,53.629063],[-2.398729,53.631705],[-2.397846,53.632208],[-2.385949,53.633015],[-2.385016,53.631819],[-2.383831,53.631286],[-2.379132,53.63087],[-2.376644,53.631142],[-2.376289,53.631813],[-2.370921,53.632015],[-2.370221,53.633263],[-2.368559,53.635078],[-2.368334,53.636574],[-2.370106,53.638086],[-2.372495,53.642294],[-2.370475,53.644712],[-2.369208,53.6451],[-2.367055,53.645062],[-2.366678,53.646788],[-2.367068,53.647611],[-2.36614,53.65065],[-2.365456,53.652029],[-2.362969,53.654916],[-2.362641,53.655989],[-2.368972,53.663319],[-2.371236,53.667081],[-2.374059,53.671389],[-2.375935,53.675642],[-2.375707,53.681837],[-2.374424,53.687254],[-2.380893,53.688582],[-2.383155,53.68858],[-2.384795,53.688241],[-2.391206,53.688564],[-2.398348,53.69156],[-2.400287,53.692595],[-2.401343,53.695087],[-2.403135,53.696423],[-2.40301,53.696942],[-2.405507,53.698983],[-2.408607,53.70314],[-2.410989,53.705137],[-2.413068,53.704693],[-2.414015,53.705005],[-2.419966,53.708321],[-2.419654,53.709844],[-2.418346,53.711424],[-2.425872,53.714695],[-2.43269,53.718923],[-2.432296,53.720373],[-2.433553,53.727623],[-2.439762,53.733374],[-2.439962,53.739014],[-2.440829,53.740171],[-2.440967,53.741645],[-2.44183,53.742397],[-2.441282,53.743414],[-2.441988,53.745229],[-2.440901,53.746722],[-2.43937,53.747832],[-2.440683,53.750415],[-2.441928,53.751996],[-2.444835,53.753128],[-2.444642,53.753594],[-2.446189,53.755104],[-2.44817,53.756056],[-2.451043,53.755989],[-2.451146,53.757355],[-2.452005,53.75954],[-2.451967,53.761579],[-2.451125,53.762822],[-2.448914,53.7644],[-2.448061,53.765905],[-2.446317,53.76659],[-2.452335,53.769647],[-2.453604,53.771096],[-2.453126,53.77166],[-2.453533,53.772993],[-2.455497,53.774032],[-2.459473,53.777273],[-2.460792,53.778047],[-2.462801,53.778572],[-2.465808,53.780813]]]},"properties":{"LAD22CD":"E06000008","LAD22NM":"Blackburn with Darwen","BNG_E":369490,"BNG_N":422806,"LONG":-2.4636,"LAT":53.7008,"GlobalID":"e6f4eb89-b7ab-4246-b803-269b7746a9ec"},"id":8}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.010653,53.826194],[-3.010044,53.826443],[-3.013774,53.829206],[-3.012114,53.829511],[-3.010832,53.830524],[-3.008807,53.830378],[-3.007202,53.832901],[-3.00764,53.834042],[-3.009849,53.835046],[-3.010191,53.836473],[-3.012607,53.83778],[-3.013278,53.839026],[-3.015556,53.840711],[-3.017335,53.840383],[-3.017357,53.839323],[-3.016489,53.837516],[-3.019111,53.83709],[-3.01936,53.838942],[-3.019999,53.839009],[-3.020465,53.840769],[-3.015238,53.842771],[-3.017814,53.845201],[-3.01863,53.847026],[-3.017375,53.847622],[-3.018017,53.848271],[-3.015225,53.84902],[-3.014312,53.850567],[-3.020057,53.859331],[-3.021725,53.860449],[-3.02262,53.86172],[-3.022773,53.864322],[-3.021422,53.865505],[-3.019752,53.868598],[-3.026897,53.869241],[-3.027143,53.870166],[-3.031322,53.87472],[-3.036847,53.875079],[-3.047761,53.875583],[-3.048369,53.872347],[-3.048077,53.870451],[-3.049105,53.865995],[-3.051341,53.857184],[-3.054251,53.849878],[-3.055729,53.841209],[-3.055755,53.839237],[-3.056656,53.838435],[-3.055798,53.837519],[-3.055902,53.833751],[-3.056534,53.832063],[-3.056474,53.828749],[-3.056061,53.822402],[-3.057134,53.821217],[-3.056659,53.819165],[-3.057351,53.815951],[-3.056648,53.814753],[-3.056349,53.812583],[-3.05686,53.811379],[-3.056303,53.808379],[-3.056781,53.807222],[-3.056071,53.806156],[-3.056087,53.804542],[-3.056826,53.802678],[-3.0563,53.801483],[-3.056481,53.799663],[-3.057241,53.798507],[-3.056797,53.797413],[-3.058632,53.794223],[-3.058412,53.793267],[-3.059033,53.791064],[-3.058812,53.784095],[-3.058103,53.778644],[-3.057413,53.776473],[-3.039772,53.779606],[-3.032765,53.780749],[-3.028801,53.773117],[-3.015797,53.775149],[-3.015467,53.774581],[-2.996478,53.774504],[-3.00069,53.780618],[-3.006122,53.787991],[-3.003988,53.787816],[-3.003887,53.791342],[-3.00308,53.791122],[-3.00133,53.792078],[-3.002204,53.792753],[-2.9995,53.793515],[-2.999346,53.794265],[-2.990561,53.793665],[-2.983357,53.793803],[-2.984826,53.795123],[-2.986913,53.79866],[-2.989538,53.800463],[-2.986675,53.802185],[-2.992309,53.80821],[-2.99398,53.81218],[-2.993544,53.812912],[-2.994814,53.815],[-2.993303,53.815903],[-2.995647,53.818764],[-2.998223,53.818998],[-2.998541,53.8204],[-2.99998,53.820062],[-3.00223,53.821921],[-3.002764,53.823183],[-3.006137,53.824378],[-3.010097,53.824857],[-3.011667,53.82559],[-3.010653,53.826194]]]},"properties":{"LAD22CD":"E06000009","LAD22NM":"Blackpool","BNG_E":332819,"BNG_N":436635,"LONG":-3.02199,"LAT":53.82164,"GlobalID":"febe4951-3fe1-433b-8c72-8179f5f2a6b1"},"id":9}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.419207,53.719581],[-0.416046,53.719917],[-0.414409,53.72061],[-0.397305,53.723142],[-0.3962,53.72221],[-0.384618,53.724341],[-0.365994,53.728646],[-0.3654,53.72915],[-0.363457,53.72935],[-0.339729,53.735854],[-0.338427,53.737127],[-0.336743,53.73705],[-0.336956,53.737971],[-0.334941,53.737792],[-0.332632,53.738292],[-0.331038,53.739874],[-0.330795,53.741582],[-0.328635,53.744765],[-0.328961,53.746142],[-0.330237,53.747776],[-0.332507,53.749985],[-0.333196,53.751773],[-0.33238,53.752397],[-0.329018,53.753292],[-0.329599,53.755862],[-0.331063,53.756741],[-0.334438,53.757126],[-0.336617,53.759319],[-0.3364,53.760274],[-0.334096,53.763193],[-0.332511,53.764484],[-0.329531,53.764456],[-0.328166,53.765049],[-0.328345,53.76601],[-0.330548,53.767922],[-0.331002,53.769625],[-0.333179,53.770788],[-0.337297,53.770327],[-0.340221,53.770983],[-0.342181,53.772706],[-0.341579,53.774695],[-0.342403,53.775301],[-0.344087,53.775427],[-0.346985,53.774991],[-0.348405,53.77545],[-0.34966,53.778439],[-0.34777,53.780284],[-0.348491,53.781842],[-0.351769,53.783068],[-0.351958,53.783581],[-0.351272,53.784598],[-0.348407,53.785552],[-0.348104,53.786967],[-0.350741,53.788453],[-0.353795,53.788902],[-0.356438,53.789975],[-0.359653,53.792042],[-0.359615,53.793362],[-0.365009,53.792287],[-0.392213,53.791134],[-0.389934,53.779603],[-0.390542,53.779674],[-0.389733,53.776575],[-0.388087,53.776397],[-0.387407,53.770742],[-0.38811,53.769345],[-0.390114,53.76849],[-0.39421,53.767514],[-0.398267,53.767597],[-0.400941,53.765776],[-0.403625,53.764898],[-0.407936,53.762693],[-0.408573,53.760588],[-0.418204,53.760632],[-0.421187,53.753774],[-0.42119,53.752231],[-0.422342,53.750561],[-0.401939,53.749987],[-0.402055,53.748145],[-0.407648,53.746568],[-0.410936,53.746355],[-0.409993,53.744263],[-0.410677,53.744181],[-0.411501,53.742466],[-0.413591,53.740418],[-0.415665,53.738774],[-0.417146,53.735864],[-0.419733,53.735355],[-0.419808,53.734345],[-0.422128,53.731775],[-0.42258,53.730464],[-0.422097,53.727385],[-0.421094,53.724856],[-0.420175,53.723899],[-0.420729,53.72314],[-0.419207,53.719581]]],[[[-0.246956,53.740666],[-0.247339,53.74182],[-0.246923,53.742908],[-0.245568,53.743786],[-0.244882,53.744964],[-0.246242,53.746693],[-0.244644,53.748127],[-0.245612,53.749649],[-0.242629,53.751016],[-0.241404,53.754909],[-0.244583,53.756332],[-0.24548,53.759471],[-0.249893,53.759632],[-0.251534,53.760557],[-0.250934,53.762],[-0.254201,53.763501],[-0.253366,53.764554],[-0.254727,53.766382],[-0.254365,53.770019],[-0.252143,53.770003],[-0.25212,53.772371],[-0.254503,53.772609],[-0.254278,53.773803],[-0.253252,53.77396],[-0.252792,53.775335],[-0.252325,53.781328],[-0.25812,53.78117],[-0.257506,53.781809],[-0.257736,53.783269],[-0.262915,53.78297],[-0.265659,53.782354],[-0.268326,53.785046],[-0.272732,53.782637],[-0.274049,53.783428],[-0.27825,53.78206],[-0.290675,53.790814],[-0.303885,53.79847],[-0.316135,53.81327],[-0.324297,53.812167],[-0.333879,53.81135],[-0.338148,53.810607],[-0.338631,53.810969],[-0.346084,53.810625],[-0.345745,53.809747],[-0.348764,53.809508],[-0.348594,53.808901],[-0.353664,53.808527],[-0.354924,53.806766],[-0.356752,53.805602],[-0.358469,53.805157],[-0.361824,53.804975],[-0.365059,53.803429],[-0.365222,53.803273],[-0.365541,53.802291],[-0.365264,53.800526],[-0.364764,53.798185],[-0.363343,53.795802],[-0.360502,53.795306],[-0.359017,53.794529],[-0.359591,53.792749],[-0.359321,53.792098],[-0.354686,53.789425],[-0.350532,53.788611],[-0.347795,53.786947],[-0.348069,53.785527],[-0.35098,53.784531],[-0.351678,53.783636],[-0.350994,53.782899],[-0.348037,53.781862],[-0.34731,53.780576],[-0.349284,53.778575],[-0.348118,53.775582],[-0.34708,53.77522],[-0.343678,53.77565],[-0.341802,53.775278],[-0.34125,53.774557],[-0.341911,53.773353],[-0.340942,53.771755],[-0.339043,53.770803],[-0.336431,53.770507],[-0.333355,53.77096],[-0.332153,53.770754],[-0.330443,53.769487],[-0.329964,53.767714],[-0.32801,53.766075],[-0.327805,53.764986],[-0.328818,53.764318],[-0.331718,53.764366],[-0.33282,53.76409],[-0.336121,53.759884],[-0.336003,53.758895],[-0.334126,53.75738],[-0.330827,53.756857],[-0.32894,53.755487],[-0.328552,53.753795],[-0.329148,53.752854],[-0.332328,53.752107],[-0.332696,53.751447],[-0.332176,53.75008],[-0.328455,53.74661],[-0.327872,53.744841],[-0.329512,53.742146],[-0.329791,53.740354],[-0.330407,53.74017],[-0.331216,53.738313],[-0.319606,53.740049],[-0.319888,53.740931],[-0.317983,53.741272],[-0.317652,53.740576],[-0.310392,53.741597],[-0.305971,53.742045],[-0.305827,53.740833],[-0.299464,53.741022],[-0.297241,53.742853],[-0.295119,53.742438],[-0.287193,53.742174],[-0.278487,53.741004],[-0.273181,53.740898],[-0.273254,53.740056],[-0.265725,53.738057],[-0.259831,53.736129],[-0.252005,53.732772],[-0.250146,53.733307],[-0.245129,53.736564],[-0.243002,53.738824],[-0.244161,53.739612],[-0.246715,53.74009],[-0.246822,53.740276],[-0.246842,53.740323],[-0.246956,53.740666]]]]},"properties":{"LAD22CD":"E06000010","LAD22NM":"Kingston upon Hull, City of","BNG_E":511894,"BNG_N":431650,"LONG":-0.30382,"LAT":53.7692,"GlobalID":"86fd0ecf-dd73-4afd-b305-f2da2074f466"},"id":10}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.698532,53.684675],[-0.700162,53.68743],[-0.700738,53.690026],[-0.700332,53.695042],[-0.699898,53.696157],[-0.698497,53.697654],[-0.699976,53.698866],[-0.703147,53.699845],[-0.704941,53.700814],[-0.708143,53.701266],[-0.712492,53.702335],[-0.719649,53.703461],[-0.726505,53.70416],[-0.730588,53.704328],[-0.738019,53.704082],[-0.746257,53.703323],[-0.749266,53.702485],[-0.753894,53.70027],[-0.766862,53.695996],[-0.771662,53.694861],[-0.775043,53.694703],[-0.778147,53.695195],[-0.781271,53.695317],[-0.784367,53.696054],[-0.790661,53.698779],[-0.793653,53.700562],[-0.79901,53.702919],[-0.805942,53.704395],[-0.811885,53.704345],[-0.819512,53.702376],[-0.825094,53.700183],[-0.829177,53.697728],[-0.833875,53.693458],[-0.837486,53.690771],[-0.843817,53.686957],[-0.846384,53.68558],[-0.850336,53.684779],[-0.852967,53.684827],[-0.856428,53.685771],[-0.858297,53.687067],[-0.863512,53.692326],[-0.865597,53.695328],[-0.866746,53.69625],[-0.868544,53.696535],[-0.885451,53.694377],[-0.94608,53.679339],[-0.991012,53.673584],[-0.989984,53.65898],[-0.957796,53.658526],[-0.947626,53.658662],[-0.946845,53.659142],[-0.939876,53.65758],[-0.922174,53.652521],[-0.865339,53.637708],[-0.848264,53.633037],[-0.841217,53.635507],[-0.833528,53.640787],[-0.829622,53.641898],[-0.829153,53.643236],[-0.82716,53.642737],[-0.820884,53.643872],[-0.820094,53.645162],[-0.816579,53.644836],[-0.81418,53.643407],[-0.805806,53.646356],[-0.804226,53.647713],[-0.80325,53.650981],[-0.801542,53.652726],[-0.799789,53.653976],[-0.793502,53.657283],[-0.788744,53.65921],[-0.781219,53.660608],[-0.778306,53.661439],[-0.772136,53.664075],[-0.769896,53.66164],[-0.771147,53.660041],[-0.774471,53.657895],[-0.7745,53.656209],[-0.753243,53.662699],[-0.758979,53.664367],[-0.754934,53.666406],[-0.746214,53.668914],[-0.746608,53.669612],[-0.730544,53.673481],[-0.723191,53.673729],[-0.722703,53.676597],[-0.723631,53.677913],[-0.721769,53.679361],[-0.719437,53.679472],[-0.717999,53.679988],[-0.717694,53.678242],[-0.715175,53.678309],[-0.713842,53.677438],[-0.709013,53.677249],[-0.704818,53.677833],[-0.702381,53.677487],[-0.703315,53.679404],[-0.704736,53.680656],[-0.704311,53.681509],[-0.701038,53.683923],[-0.698532,53.684675]]],[[[-0.860702,53.72376],[-0.859695,53.724177],[-0.85931,53.725297],[-0.861736,53.726261],[-0.864309,53.72352],[-0.860702,53.72376]]],[[[-0.990984,53.661064],[-0.991673,53.671367],[-0.992237,53.672749],[-0.991612,53.673987],[-0.94611,53.679842],[-0.894117,53.692767],[-0.885917,53.694688],[-0.869599,53.697081],[-0.86693,53.697814],[-0.866588,53.701294],[-0.864082,53.7038],[-0.859481,53.705765],[-0.851205,53.707317],[-0.847184,53.70859],[-0.844933,53.710205],[-0.844106,53.711715],[-0.844131,53.716745],[-0.844859,53.719794],[-0.846984,53.725318],[-0.850233,53.728901],[-0.85422,53.730713],[-0.856364,53.730712],[-0.857632,53.73018],[-0.857898,53.729045],[-0.857135,53.726482],[-0.857591,53.724353],[-0.860742,53.722159],[-0.866079,53.721722],[-0.877843,53.722798],[-0.884147,53.725508],[-0.887978,53.726507],[-0.893673,53.726897],[-0.896208,53.726367],[-0.897993,53.726373],[-0.905142,53.727086],[-0.90574,53.726356],[-0.903422,53.72218],[-0.902997,53.719567],[-0.9037,53.71789],[-0.905442,53.71669],[-0.907403,53.716641],[-0.910347,53.717979],[-0.912757,53.718431],[-0.919416,53.718636],[-0.923619,53.718458],[-0.928635,53.717176],[-0.934647,53.716212],[-0.940444,53.713222],[-0.944216,53.712343],[-0.949285,53.712668],[-0.951016,53.713067],[-0.954292,53.714466],[-0.957368,53.714714],[-0.958487,53.713811],[-0.958554,53.710044],[-0.960889,53.70779],[-0.960223,53.706888],[-0.957465,53.70556],[-0.958234,53.704392],[-0.960982,53.703947],[-0.962271,53.703018],[-0.962031,53.701267],[-0.962534,53.700546],[-0.964043,53.700255],[-0.966656,53.700446],[-0.968481,53.700973],[-0.970416,53.702171],[-0.970314,53.703118],[-0.967698,53.703736],[-0.966675,53.704552],[-0.966663,53.70567],[-0.967952,53.706538],[-0.974726,53.705932],[-0.98042,53.704831],[-0.982323,53.704016],[-0.983088,53.702763],[-0.982019,53.699127],[-0.979623,53.697464],[-0.980579,53.696711],[-0.985942,53.697396],[-0.994544,53.697239],[-0.998812,53.698606],[-1.000949,53.698692],[-1.002531,53.698382],[-1.004032,53.696208],[-1.006831,53.695108],[-1.011541,53.69679],[-1.013782,53.696832],[-1.018927,53.697812],[-1.022123,53.697876],[-1.033934,53.696279],[-1.036238,53.695276],[-1.037677,53.693927],[-1.039023,53.69369],[-1.040381,53.694254],[-1.040859,53.695489],[-1.040924,53.695597],[-1.042982,53.697121],[-1.044999,53.698212],[-1.048038,53.698412],[-1.05223,53.696616],[-1.053942,53.69681],[-1.053984,53.697486],[-1.053987,53.697559],[-1.054214,53.701369],[-1.059498,53.704727],[-1.061458,53.706524],[-1.063129,53.706574],[-1.067087,53.70434],[-1.068958,53.703992],[-1.069607,53.702889],[-1.074934,53.703996],[-1.075896,53.701452],[-1.078161,53.697758],[-1.076358,53.696752],[-1.085018,53.686959],[-1.080685,53.685274],[-1.081068,53.684592],[-1.087318,53.683317],[-1.093148,53.678194],[-1.097483,53.675292],[-1.100214,53.674383],[-1.101769,53.674393],[-1.10336,53.669499],[-1.091392,53.668625],[-1.087009,53.666603],[-1.088773,53.664477],[-1.085639,53.662393],[-1.082691,53.662044],[-1.078802,53.660458],[-1.075383,53.660566],[-1.071061,53.660022],[-1.07119,53.657905],[-1.067902,53.657276],[-1.063284,53.65748],[-1.061876,53.659214],[-1.059205,53.659121],[-1.059625,53.65839],[-1.057545,53.65763],[-1.051003,53.657557],[-1.048663,53.656057],[-1.046346,53.656719],[-1.04449,53.65676],[-1.041287,53.656035],[-1.038786,53.654813],[-1.037223,53.654496],[-1.033339,53.65521],[-1.029362,53.65497],[-1.023451,53.656975],[-1.018999,53.657977],[-1.009975,53.658778],[-0.99881,53.658689],[-0.990984,53.661064]]],[[[-0.250146,53.733307],[-0.248741,53.733421],[-0.245129,53.736564],[-0.250146,53.733307]]],[[[-0.212573,54.157692],[-0.216928,54.148348],[-0.22141,54.142041],[-0.221309,54.138864],[-0.222685,54.137041],[-0.226555,54.136437],[-0.229066,54.135727],[-0.229844,54.134302],[-0.229747,54.13244],[-0.237225,54.137249],[-0.245204,54.137129],[-0.252097,54.1388],[-0.26542,54.140558],[-0.269069,54.138333],[-0.272781,54.139268],[-0.276452,54.139599],[-0.283117,54.139782],[-0.288223,54.139409],[-0.290566,54.139756],[-0.291564,54.138758],[-0.300008,54.136734],[-0.304083,54.13627],[-0.307661,54.137901],[-0.311673,54.142744],[-0.313766,54.146403],[-0.322653,54.145276],[-0.323299,54.147492],[-0.323101,54.149264],[-0.323842,54.150297],[-0.328807,54.149068],[-0.335283,54.149674],[-0.336947,54.149563],[-0.342493,54.148532],[-0.346397,54.146873],[-0.350753,54.149773],[-0.355277,54.149607],[-0.360038,54.15312],[-0.363946,54.153158],[-0.374928,54.154113],[-0.375007,54.156224],[-0.373318,54.156275],[-0.374526,54.162564],[-0.38071,54.170361],[-0.382869,54.171914],[-0.388,54.174551],[-0.390747,54.176521],[-0.396416,54.175272],[-0.403258,54.174723],[-0.404077,54.175849],[-0.408271,54.175835],[-0.408553,54.175365],[-0.411918,54.174747],[-0.41825,54.174063],[-0.418109,54.17122],[-0.422538,54.171265],[-0.422645,54.1701],[-0.424557,54.169575],[-0.422927,54.166315],[-0.433169,54.164073],[-0.433114,54.160623],[-0.430931,54.158151],[-0.43266,54.157521],[-0.427094,54.137443],[-0.430653,54.136641],[-0.438529,54.133111],[-0.443725,54.131688],[-0.452122,54.127986],[-0.45854,54.125974],[-0.453704,54.120707],[-0.454703,54.119969],[-0.454351,54.116762],[-0.459439,54.11533],[-0.45868,54.114033],[-0.468326,54.111251],[-0.465943,54.107633],[-0.489851,54.100885],[-0.494011,54.099185],[-0.49689,54.097232],[-0.502884,54.094095],[-0.513276,54.090291],[-0.519925,54.086987],[-0.524617,54.085475],[-0.525106,54.086552],[-0.526311,54.08738],[-0.527928,54.089339],[-0.534031,54.08718],[-0.535833,54.08767],[-0.541817,54.091528],[-0.545521,54.09106],[-0.550629,54.092684],[-0.556676,54.092714],[-0.563137,54.094],[-0.566467,54.090306],[-0.583959,54.088479],[-0.591005,54.087062],[-0.592292,54.086263],[-0.594105,54.084215],[-0.598748,54.082207],[-0.602738,54.079074],[-0.605857,54.077799],[-0.607985,54.074837],[-0.6097,54.07327],[-0.615524,54.070494],[-0.618457,54.06983],[-0.621516,54.069669],[-0.627749,54.070194],[-0.627463,54.068833],[-0.632197,54.068755],[-0.642923,54.066558],[-0.648114,54.066012],[-0.653676,54.064997],[-0.660317,54.0631],[-0.656494,54.061074],[-0.656231,54.061313],[-0.652431,54.059845],[-0.644654,54.055113],[-0.653655,54.045956],[-0.656299,54.045452],[-0.655739,54.044232],[-0.658018,54.043645],[-0.657974,54.042167],[-0.656319,54.04064],[-0.658929,54.038387],[-0.659485,54.03717],[-0.664261,54.037654],[-0.669732,54.037427],[-0.670574,54.037987],[-0.674247,54.038178],[-0.678502,54.03725],[-0.680475,54.035904],[-0.680244,54.034523],[-0.680899,54.033522],[-0.682674,54.033759],[-0.684336,54.032887],[-0.687301,54.030444],[-0.687753,54.028844],[-0.687219,54.026079],[-0.688226,54.025156],[-0.688484,54.024011],[-0.687509,54.023205],[-0.684146,54.022647],[-0.683824,54.020996],[-0.681802,54.01982],[-0.679112,54.019008],[-0.678416,54.018239],[-0.679418,54.015986],[-0.683072,54.012468],[-0.681592,54.011241],[-0.681799,54.010355],[-0.683682,54.008764],[-0.687955,54.008293],[-0.688242,54.008015],[-0.6986,54.007119],[-0.704903,54.006072],[-0.708665,54.008073],[-0.70937,54.00898],[-0.709645,54.010467],[-0.710746,54.011171],[-0.71329,54.011066],[-0.715062,54.010488],[-0.71806,54.010106],[-0.719262,54.010704],[-0.719698,54.012322],[-0.726198,54.012271],[-0.727838,54.012715],[-0.730489,54.012701],[-0.730592,54.02173],[-0.732272,54.026557],[-0.734257,54.030259],[-0.744652,54.027567],[-0.749437,54.026959],[-0.752608,54.026098],[-0.761565,54.025005],[-0.766344,54.023692],[-0.769706,54.023485],[-0.775092,54.023827],[-0.778837,54.023552],[-0.779959,54.02304],[-0.79297,54.020597],[-0.793971,54.019953],[-0.795548,54.01996],[-0.799248,54.019052],[-0.800302,54.019984],[-0.798988,54.024091],[-0.803254,54.02397],[-0.803322,54.023355],[-0.808476,54.022369],[-0.81567,54.021773],[-0.820366,54.020873],[-0.823515,54.02083],[-0.826993,54.021272],[-0.836541,54.021267],[-0.837002,54.021905],[-0.842404,54.021104],[-0.84303,54.021611],[-0.845344,54.020003],[-0.848618,54.018556],[-0.855723,54.017629],[-0.859732,54.016395],[-0.86349,54.017335],[-0.868807,54.017106],[-0.870408,54.016705],[-0.875083,54.017611],[-0.876321,54.017626],[-0.878761,54.016883],[-0.877243,54.014926],[-0.877669,54.013557],[-0.880511,54.011996],[-0.886702,54.010527],[-0.888556,54.009515],[-0.889921,54.007071],[-0.890879,54.003098],[-0.892473,54.001615],[-0.893535,53.999768],[-0.894885,53.999094],[-0.897417,53.998532],[-0.898812,53.998777],[-0.899959,53.999726],[-0.901345,53.998813],[-0.903702,53.998707],[-0.907491,53.997548],[-0.909555,53.996326],[-0.911897,53.995448],[-0.911936,53.992894],[-0.913247,53.992055],[-0.915247,53.993147],[-0.920615,53.991952],[-0.925295,53.991518],[-0.920314,53.990094],[-0.923638,53.988393],[-0.924978,53.986257],[-0.927826,53.984024],[-0.927047,53.980514],[-0.928224,53.978542],[-0.928778,53.976102],[-0.930749,53.974487],[-0.931296,53.972417],[-0.933789,53.970508],[-0.934111,53.968672],[-0.933421,53.967357],[-0.931322,53.965866],[-0.9283,53.964317],[-0.925154,53.963957],[-0.923866,53.963371],[-0.922283,53.962041],[-0.921212,53.960422],[-0.922157,53.956651],[-0.927657,53.952667],[-0.927609,53.951697],[-0.925707,53.95038],[-0.92496,53.948757],[-0.925502,53.947811],[-0.927098,53.946559],[-0.926529,53.944679],[-0.928459,53.943444],[-0.92786,53.941906],[-0.925075,53.940771],[-0.925838,53.939248],[-0.926184,53.936961],[-0.925579,53.935903],[-0.923784,53.935399],[-0.923886,53.934266],[-0.92642,53.933115],[-0.927727,53.930859],[-0.928833,53.930017],[-0.928711,53.929053],[-0.925261,53.926988],[-0.923244,53.92526],[-0.921928,53.922766],[-0.921678,53.921235],[-0.923372,53.92034],[-0.926739,53.921083],[-0.92836,53.920459],[-0.927797,53.918311],[-0.928902,53.917859],[-0.930979,53.917794],[-0.931895,53.916302],[-0.930783,53.91473],[-0.931732,53.913796],[-0.934135,53.914138],[-0.934825,53.913588],[-0.932188,53.912049],[-0.932051,53.908764],[-0.933204,53.90826],[-0.936878,53.908305],[-0.938314,53.90789],[-0.938934,53.905897],[-0.941044,53.904164],[-0.939975,53.9026],[-0.940673,53.901104],[-0.939986,53.899389],[-0.941343,53.897869],[-0.946028,53.895822],[-0.948721,53.895008],[-0.949515,53.893846],[-0.948275,53.893072],[-0.944694,53.892048],[-0.934134,53.890258],[-0.930284,53.890635],[-0.925834,53.890406],[-0.922923,53.890735],[-0.920844,53.89062],[-0.919679,53.889303],[-0.920537,53.888418],[-0.923596,53.887727],[-0.922934,53.885373],[-0.924403,53.883727],[-0.924659,53.882714],[-0.923518,53.880766],[-0.922687,53.879474],[-0.924898,53.878031],[-0.929759,53.876545],[-0.938174,53.875748],[-0.940746,53.874073],[-0.940784,53.872947],[-0.938726,53.869055],[-0.939052,53.867735],[-0.940598,53.866456],[-0.944647,53.865516],[-0.946139,53.864769],[-0.947411,53.863541],[-0.948132,53.862116],[-0.948056,53.861096],[-0.944972,53.857542],[-0.941997,53.854813],[-0.945275,53.852567],[-0.946315,53.851175],[-0.946353,53.850024],[-0.944995,53.848243],[-0.945627,53.84665],[-0.947025,53.844802],[-0.946542,53.842003],[-0.9435,53.835286],[-0.940272,53.83259],[-0.940558,53.823451],[-0.939084,53.822557],[-0.933209,53.820686],[-0.930262,53.820837],[-0.927267,53.819533],[-0.924222,53.816062],[-0.922347,53.817018],[-0.920086,53.815977],[-0.921773,53.814044],[-0.924845,53.81236],[-0.928098,53.809216],[-0.929552,53.80541],[-0.930429,53.804685],[-0.932886,53.803842],[-0.934499,53.801777],[-0.934233,53.801092],[-0.931072,53.798273],[-0.928547,53.79768],[-0.928047,53.797158],[-0.931176,53.791306],[-0.933496,53.789978],[-0.93411,53.788381],[-0.934279,53.784689],[-0.936687,53.779872],[-0.935434,53.776992],[-0.932535,53.774441],[-0.930321,53.774299],[-0.929438,53.773782],[-0.928354,53.770296],[-0.928306,53.765463],[-0.929924,53.763227],[-0.932093,53.76219],[-0.934266,53.761634],[-0.936332,53.759965],[-0.939746,53.758154],[-0.944565,53.756702],[-0.951579,53.753769],[-0.9567,53.752889],[-0.964191,53.750634],[-0.972785,53.750403],[-0.973166,53.750159],[-0.966059,53.748691],[-0.963628,53.747618],[-0.962551,53.746737],[-0.960916,53.742926],[-0.961066,53.736715],[-0.9527,53.736534],[-0.945339,53.733863],[-0.935871,53.732503],[-0.925809,53.732411],[-0.91578,53.733703],[-0.9112,53.733393],[-0.909877,53.732814],[-0.909019,53.73103],[-0.910971,53.728453],[-0.907977,53.727806],[-0.903196,53.728285],[-0.898661,53.727967],[-0.894002,53.727862],[-0.89162,53.72825],[-0.887158,53.72828],[-0.872279,53.724011],[-0.868481,53.726273],[-0.862614,53.730469],[-0.858251,53.732114],[-0.855977,53.732447],[-0.854556,53.732028],[-0.852816,53.732141],[-0.848845,53.730894],[-0.848207,53.72993],[-0.845587,53.728353],[-0.844851,53.726742],[-0.843559,53.725915],[-0.841737,53.723521],[-0.840153,53.715818],[-0.840859,53.711725],[-0.841778,53.709493],[-0.842746,53.708407],[-0.847998,53.705474],[-0.850255,53.704776],[-0.857444,53.703663],[-0.861314,53.702618],[-0.86311,53.701701],[-0.86377,53.700581],[-0.863747,53.698895],[-0.862722,53.696267],[-0.859091,53.69151],[-0.85616,53.688577],[-0.854215,53.687206],[-0.851693,53.686452],[-0.848571,53.687164],[-0.843566,53.69003],[-0.838075,53.694014],[-0.831874,53.699429],[-0.825563,53.702937],[-0.824968,53.703562],[-0.819718,53.705386],[-0.816192,53.70574],[-0.813163,53.70676],[-0.809672,53.707197],[-0.805207,53.707044],[-0.802184,53.706109],[-0.799714,53.705972],[-0.794888,53.704617],[-0.786951,53.700042],[-0.78076,53.697549],[-0.777347,53.697453],[-0.774925,53.697678],[-0.771197,53.698517],[-0.764164,53.700755],[-0.758975,53.702696],[-0.756989,53.703108],[-0.748679,53.706046],[-0.742601,53.706755],[-0.738021,53.706971],[-0.732995,53.707408],[-0.728433,53.70739],[-0.721808,53.706689],[-0.716008,53.706515],[-0.70852,53.705013],[-0.702258,53.703871],[-0.700124,53.70376],[-0.69598,53.704362],[-0.69187,53.705546],[-0.68728,53.707881],[-0.681618,53.713203],[-0.680548,53.713741],[-0.679524,53.715926],[-0.67602,53.719113],[-0.675526,53.719779],[-0.672996,53.72134],[-0.670575,53.722108],[-0.652944,53.724666],[-0.646743,53.725716],[-0.637008,53.727729],[-0.627295,53.729641],[-0.618396,53.730587],[-0.61665,53.731176],[-0.601668,53.729905],[-0.589504,53.728012],[-0.58373,53.725488],[-0.582792,53.72401],[-0.575087,53.719405],[-0.573625,53.71802],[-0.568301,53.715036],[-0.559201,53.711639],[-0.556555,53.710368],[-0.553163,53.709549],[-0.545436,53.708782],[-0.535293,53.70915],[-0.525893,53.710302],[-0.514822,53.712249],[-0.486747,53.716479],[-0.473387,53.717276],[-0.463218,53.716933],[-0.4586,53.716179],[-0.450899,53.714178],[-0.447639,53.713909],[-0.434254,53.71627],[-0.433444,53.716878],[-0.431844,53.716711],[-0.419207,53.719581],[-0.420729,53.72314],[-0.420175,53.723899],[-0.421094,53.724856],[-0.422097,53.727385],[-0.42258,53.730464],[-0.422128,53.731775],[-0.419808,53.734345],[-0.419733,53.735355],[-0.417146,53.735864],[-0.415665,53.738774],[-0.413591,53.740418],[-0.411501,53.742466],[-0.410677,53.744181],[-0.409993,53.744263],[-0.410936,53.746355],[-0.407648,53.746568],[-0.402055,53.748145],[-0.401939,53.749987],[-0.422342,53.750561],[-0.42119,53.752231],[-0.421187,53.753774],[-0.418204,53.760632],[-0.408573,53.760588],[-0.407936,53.762693],[-0.403625,53.764898],[-0.400941,53.765776],[-0.398267,53.767597],[-0.39421,53.767514],[-0.390114,53.76849],[-0.38811,53.769345],[-0.387407,53.770742],[-0.388087,53.776397],[-0.389733,53.776575],[-0.390542,53.779674],[-0.389934,53.779603],[-0.392213,53.791134],[-0.365009,53.792287],[-0.359615,53.793362],[-0.359348,53.794491],[-0.360465,53.795037],[-0.363378,53.795458],[-0.364644,53.797102],[-0.365344,53.798631],[-0.365937,53.802628],[-0.365671,53.803361],[-0.361985,53.805147],[-0.357771,53.805483],[-0.355095,53.806975],[-0.35378,53.808987],[-0.35382,53.811577],[-0.354537,53.814544],[-0.358467,53.817502],[-0.361996,53.817726],[-0.364025,53.818551],[-0.369172,53.824303],[-0.370493,53.824639],[-0.37689,53.824967],[-0.381729,53.827298],[-0.381966,53.829064],[-0.380558,53.831622],[-0.381187,53.834655],[-0.38336,53.836245],[-0.383887,53.838024],[-0.385201,53.83917],[-0.386616,53.839562],[-0.39027,53.839425],[-0.394706,53.839799],[-0.399726,53.843395],[-0.39971,53.845579],[-0.396298,53.848444],[-0.395774,53.850222],[-0.393198,53.854216],[-0.39351,53.856366],[-0.396033,53.859351],[-0.400098,53.866486],[-0.399421,53.869578],[-0.399475,53.871904],[-0.398532,53.87374],[-0.399474,53.875817],[-0.399435,53.877768],[-0.401875,53.878497],[-0.403638,53.880113],[-0.406034,53.880563],[-0.408099,53.882153],[-0.407298,53.884703],[-0.402717,53.884064],[-0.397467,53.884478],[-0.395417,53.885253],[-0.394378,53.887945],[-0.396314,53.892065],[-0.395862,53.895796],[-0.393935,53.898556],[-0.392451,53.899498],[-0.385085,53.900949],[-0.382601,53.901852],[-0.381716,53.903794],[-0.384525,53.906005],[-0.384847,53.909296],[-0.382641,53.910794],[-0.387717,53.912161],[-0.38967,53.915068],[-0.393463,53.918868],[-0.404966,53.922657],[-0.404876,53.922746],[-0.393432,53.919012],[-0.388682,53.914125],[-0.387627,53.912255],[-0.382389,53.910963],[-0.38029,53.912131],[-0.376108,53.913698],[-0.372843,53.913146],[-0.370695,53.912279],[-0.366977,53.913566],[-0.366871,53.914208],[-0.368682,53.917719],[-0.368113,53.917841],[-0.366493,53.91388],[-0.366937,53.913334],[-0.371078,53.912091],[-0.372944,53.912958],[-0.376066,53.913454],[-0.380187,53.911924],[-0.38376,53.909804],[-0.384251,53.909151],[-0.384214,53.906077],[-0.38143,53.903927],[-0.382547,53.901476],[-0.392288,53.899347],[-0.393667,53.898523],[-0.395454,53.896089],[-0.396031,53.891993],[-0.394674,53.88979],[-0.394109,53.888125],[-0.394997,53.885317],[-0.39742,53.884323],[-0.403261,53.88391],[-0.407059,53.884581],[-0.407879,53.88243],[-0.406076,53.880746],[-0.403495,53.880252],[-0.401752,53.878646],[-0.399165,53.877819],[-0.399139,53.875785],[-0.398249,53.873696],[-0.399201,53.871876],[-0.399133,53.869351],[-0.399862,53.866505],[-0.396884,53.860948],[-0.393296,53.856386],[-0.393021,53.853885],[-0.395414,53.850418],[-0.396134,53.848283],[-0.399252,53.84573],[-0.399589,53.843662],[-0.394199,53.839927],[-0.390671,53.839591],[-0.386203,53.839706],[-0.384611,53.839051],[-0.383522,53.837884],[-0.383194,53.836362],[-0.380933,53.834785],[-0.380283,53.831576],[-0.381777,53.828425],[-0.381361,53.827316],[-0.376947,53.825177],[-0.370022,53.824761],[-0.36793,53.823656],[-0.36639,53.821264],[-0.363898,53.818701],[-0.362123,53.817935],[-0.359254,53.817852],[-0.357976,53.817454],[-0.354158,53.814428],[-0.353522,53.811565],[-0.353664,53.808527],[-0.348594,53.808901],[-0.348764,53.809508],[-0.345745,53.809747],[-0.346084,53.810625],[-0.338631,53.810969],[-0.338148,53.810607],[-0.333879,53.81135],[-0.324297,53.812167],[-0.316135,53.81327],[-0.303885,53.79847],[-0.290675,53.790814],[-0.27825,53.78206],[-0.274049,53.783428],[-0.272732,53.782637],[-0.268326,53.785046],[-0.265659,53.782354],[-0.262915,53.78297],[-0.257736,53.783269],[-0.257506,53.781809],[-0.25812,53.78117],[-0.252325,53.781328],[-0.252792,53.775335],[-0.253252,53.77396],[-0.254278,53.773803],[-0.254503,53.772609],[-0.25212,53.772371],[-0.252143,53.770003],[-0.254365,53.770019],[-0.254727,53.766382],[-0.253366,53.764554],[-0.254201,53.763501],[-0.250934,53.762],[-0.251534,53.760557],[-0.249893,53.759632],[-0.24548,53.759471],[-0.244583,53.756332],[-0.241404,53.754909],[-0.242629,53.751016],[-0.245612,53.749649],[-0.244644,53.748127],[-0.246242,53.746693],[-0.244882,53.744964],[-0.245568,53.743786],[-0.246923,53.742908],[-0.247339,53.74182],[-0.246956,53.740666],[-0.246663,53.740242],[-0.244603,53.739797],[-0.243986,53.739685],[-0.242972,53.739089],[-0.242802,53.738598],[-0.243134,53.738312],[-0.244334,53.737164],[-0.245076,53.735222],[-0.243074,53.729465],[-0.236246,53.728382],[-0.234948,53.728495],[-0.233415,53.729448],[-0.231906,53.728806],[-0.234614,53.727322],[-0.23693,53.726597],[-0.234772,53.72349],[-0.235354,53.722703],[-0.235743,53.719956],[-0.233248,53.717322],[-0.229729,53.711102],[-0.227347,53.709506],[-0.226397,53.710267],[-0.226626,53.711226],[-0.224492,53.711198],[-0.223397,53.711725],[-0.223292,53.712963],[-0.221964,53.712877],[-0.214019,53.708867],[-0.215045,53.70754],[-0.214717,53.70712],[-0.206408,53.703687],[-0.202228,53.70099],[-0.197382,53.697034],[-0.198937,53.697337],[-0.20152,53.697016],[-0.200913,53.695507],[-0.199241,53.693986],[-0.193504,53.690644],[-0.189276,53.688914],[-0.184822,53.686857],[-0.181544,53.684744],[-0.180774,53.684017],[-0.177016,53.682364],[-0.175019,53.680786],[-0.172645,53.67943],[-0.1717,53.678239],[-0.169594,53.676576],[-0.168487,53.676437],[-0.167847,53.674626],[-0.161758,53.671447],[-0.151388,53.663356],[-0.146832,53.659975],[-0.137837,53.654311],[-0.133716,53.651378],[-0.132399,53.651254],[-0.131314,53.652513],[-0.130258,53.652301],[-0.131756,53.650719],[-0.1299,53.648977],[-0.124618,53.645892],[-0.116329,53.641789],[-0.113421,53.639736],[-0.113493,53.63946],[-0.103431,53.635285],[-0.094703,53.633298],[-0.087489,53.63251],[-0.082869,53.631492],[-0.078715,53.630911],[-0.065112,53.6298],[-0.058899,53.629601],[-0.053896,53.629079],[-0.052468,53.630637],[-0.049657,53.63211],[-0.042736,53.633183],[-0.032106,53.635715],[-0.030436,53.636409],[-0.027986,53.636646],[-0.02617,53.637256],[-0.015255,53.639368],[-0.012977,53.640213],[-0.008374,53.641219],[0.001345,53.64282],[0.016021,53.644438],[0.017506,53.645105],[0.019511,53.64522],[0.02177,53.647058],[0.022762,53.647103],[0.030042,53.649264],[0.035009,53.649156],[0.04144,53.647516],[0.045792,53.646736],[0.056838,53.645057],[0.064685,53.644227],[0.06651,53.643618],[0.068383,53.643527],[0.07023,53.642849],[0.071152,53.643046],[0.079544,53.641007],[0.089451,53.637831],[0.094996,53.635468],[0.098145,53.634723],[0.105534,53.632175],[0.114356,53.627738],[0.121232,53.6236],[0.124006,53.623612],[0.125002,53.623284],[0.129496,53.61967],[0.132643,53.617864],[0.134681,53.615983],[0.136277,53.615587],[0.139664,53.613521],[0.140574,53.613313],[0.145639,53.607767],[0.145842,53.601028],[0.144121,53.598152],[0.141775,53.595508],[0.139601,53.593587],[0.135014,53.590459],[0.132612,53.590552],[0.130467,53.588855],[0.126616,53.586748],[0.125342,53.585057],[0.123387,53.584145],[0.120784,53.581606],[0.119065,53.58089],[0.116535,53.578679],[0.114487,53.577594],[0.110344,53.576608],[0.107383,53.575028],[0.106375,53.574123],[0.106437,53.571902],[0.107407,53.571352],[0.109402,53.571378],[0.110824,53.572037],[0.116843,53.576873],[0.126286,53.583333],[0.137179,53.589887],[0.140299,53.592551],[0.146167,53.599474],[0.146682,53.600447],[0.146877,53.604081],[0.146607,53.608591],[0.14168,53.619834],[0.141255,53.622676],[0.134474,53.632132],[0.128925,53.64559],[0.124176,53.65301],[0.117601,53.661191],[0.094219,53.682097],[0.077121,53.694682],[0.065926,53.703391],[0.063519,53.705669],[0.045874,53.719211],[0.045321,53.720624],[0.043073,53.724053],[0.041119,53.726248],[0.031872,53.734189],[0.026363,53.738639],[0.013786,53.747462],[0.000037,53.758513],[-0.016674,53.772648],[-0.030697,53.783417],[-0.044321,53.794993],[-0.052163,53.802682],[-0.063484,53.81217],[-0.066641,53.815565],[-0.077695,53.824947],[-0.080896,53.828317],[-0.092296,53.838154],[-0.097402,53.84305],[-0.101863,53.846479],[-0.108533,53.851818],[-0.117678,53.859948],[-0.130388,53.872129],[-0.133126,53.875366],[-0.132914,53.877054],[-0.144062,53.887563],[-0.153647,53.898374],[-0.15709,53.903562],[-0.157032,53.904568],[-0.156024,53.904868],[-0.156435,53.906561],[-0.159608,53.911708],[-0.160794,53.915338],[-0.162591,53.918138],[-0.162914,53.91941],[-0.172698,53.931344],[-0.175682,53.937164],[-0.18329,53.949422],[-0.189123,53.960056],[-0.205455,53.990063],[-0.206728,53.993773],[-0.210885,54.002006],[-0.213086,54.007459],[-0.213646,54.009346],[-0.212946,54.010528],[-0.214993,54.016055],[-0.214169,54.017191],[-0.215667,54.021793],[-0.216429,54.027823],[-0.215839,54.038488],[-0.213079,54.054291],[-0.208894,54.063908],[-0.205106,54.069429],[-0.199881,54.074795],[-0.197344,54.078472],[-0.192445,54.080896],[-0.191138,54.081341],[-0.187282,54.081138],[-0.184732,54.084605],[-0.17328,54.094953],[-0.169234,54.097658],[-0.164907,54.099566],[-0.162178,54.100186],[-0.15348,54.101306],[-0.149766,54.102279],[-0.146763,54.102584],[-0.142286,54.10401],[-0.140431,54.104318],[-0.137478,54.104007],[-0.130423,54.104087],[-0.121597,54.103632],[-0.116951,54.104554],[-0.114799,54.103516],[-0.112828,54.103332],[-0.104781,54.104089],[-0.100497,54.105574],[-0.095156,54.106512],[-0.091852,54.10741],[-0.085509,54.109823],[-0.08182,54.110777],[-0.080844,54.111599],[-0.07888,54.112271],[-0.077221,54.114254],[-0.077354,54.114834],[-0.076282,54.11624],[-0.076935,54.11715],[-0.07999,54.117675],[-0.082316,54.117583],[-0.08294,54.118528],[-0.081763,54.119023],[-0.083305,54.119824],[-0.082889,54.121572],[-0.083229,54.122559],[-0.085544,54.123623],[-0.087804,54.123894],[-0.087708,54.124541],[-0.090033,54.124708],[-0.090952,54.125454],[-0.09239,54.125616],[-0.093903,54.126617],[-0.094617,54.12826],[-0.096023,54.127256],[-0.098622,54.128809],[-0.099605,54.1301],[-0.101527,54.130169],[-0.102891,54.131215],[-0.104605,54.131014],[-0.104749,54.129631],[-0.106081,54.12952],[-0.107684,54.132064],[-0.110666,54.132554],[-0.112056,54.132053],[-0.112948,54.131017],[-0.115068,54.131723],[-0.115758,54.132761],[-0.119,54.133586],[-0.121389,54.13308],[-0.122636,54.134036],[-0.129322,54.135329],[-0.136872,54.137872],[-0.138742,54.139031],[-0.144302,54.141093],[-0.148124,54.142983],[-0.151719,54.143953],[-0.156713,54.144438],[-0.157229,54.145766],[-0.159878,54.145659],[-0.16168,54.146261],[-0.164138,54.148353],[-0.166973,54.149434],[-0.168172,54.149597],[-0.170653,54.150953],[-0.173677,54.151614],[-0.178897,54.152288],[-0.181255,54.153066],[-0.187127,54.154034],[-0.189913,54.154888],[-0.195351,54.155227],[-0.202396,54.156479],[-0.212573,54.157692]]]]},"properties":{"LAD22CD":"E06000011","LAD22NM":"East Riding of Yorkshire","BNG_E":488056,"BNG_N":443597,"LONG":-0.66195,"LAT":53.88112,"GlobalID":"5d7d4694-9768-496e-9066-24808c9b8fcb"},"id":11}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.017618,53.525512],[0.016035,53.527592],[0.016886,53.528411],[0.013247,53.530564],[0.008815,53.534841],[0.00724,53.537649],[0.002886,53.54226],[0.003385,53.543278],[0.000709,53.545579],[-0.005459,53.552751],[-0.008448,53.555612],[-0.009199,53.554882],[-0.007924,53.551456],[-0.004647,53.548472],[-0.007257,53.549514],[-0.010022,53.549637],[-0.010095,53.550355],[-0.012347,53.551967],[-0.014234,53.551254],[-0.015038,53.551509],[-0.022009,53.556208],[-0.022199,53.556816],[-0.027745,53.561899],[-0.029922,53.564309],[-0.034306,53.567362],[-0.036258,53.56756],[-0.042611,53.57049],[-0.044408,53.572001],[-0.061215,53.582194],[-0.063289,53.582789],[-0.06683,53.582687],[-0.067514,53.583608],[-0.070663,53.583203],[-0.072234,53.583804],[-0.079273,53.576956],[-0.080007,53.577353],[-0.081206,53.579128],[-0.083305,53.580329],[-0.088822,53.58127],[-0.091372,53.581373],[-0.093275,53.581051],[-0.094527,53.581623],[-0.095212,53.582919],[-0.099519,53.584227],[-0.111528,53.590027],[-0.126796,53.599587],[-0.128673,53.600651],[-0.130627,53.600577],[-0.134175,53.604479],[-0.138234,53.607196],[-0.141684,53.608073],[-0.143434,53.608824],[-0.151956,53.614505],[-0.152795,53.615415],[-0.16128,53.619103],[-0.162195,53.619862],[-0.163671,53.619798],[-0.165082,53.621358],[-0.171039,53.62349],[-0.174395,53.624439],[-0.175227,53.625269],[-0.188133,53.630979],[-0.201844,53.637116],[-0.202212,53.6381],[-0.200394,53.639403],[-0.200729,53.63997],[-0.214207,53.632988],[-0.220397,53.630364],[-0.222161,53.629135],[-0.232617,53.624003],[-0.233485,53.623848],[-0.235998,53.624577],[-0.237604,53.624657],[-0.237964,53.623667],[-0.241004,53.62329],[-0.243257,53.623328],[-0.250958,53.622993],[-0.252992,53.62229],[-0.253929,53.621471],[-0.261084,53.620334],[-0.261969,53.61973],[-0.263846,53.619349],[-0.267365,53.617958],[-0.27161,53.617904],[-0.274054,53.617439],[-0.279242,53.617189],[-0.280087,53.617389],[-0.282432,53.616476],[-0.285007,53.615885],[-0.288571,53.613889],[-0.292115,53.613267],[-0.290418,53.610632],[-0.287076,53.611797],[-0.285477,53.609283],[-0.281195,53.606263],[-0.282955,53.605201],[-0.283039,53.604497],[-0.278605,53.603493],[-0.275232,53.602328],[-0.269813,53.598618],[-0.268296,53.599407],[-0.261586,53.595726],[-0.259361,53.59697],[-0.254474,53.592488],[-0.250721,53.593835],[-0.248476,53.593664],[-0.248871,53.591979],[-0.250429,53.590727],[-0.249956,53.589883],[-0.251149,53.588283],[-0.249044,53.5869],[-0.252081,53.585006],[-0.250477,53.584474],[-0.247186,53.58684],[-0.243327,53.585775],[-0.24207,53.587047],[-0.24085,53.586646],[-0.239164,53.588162],[-0.235235,53.58557],[-0.234895,53.584666],[-0.233398,53.58289],[-0.231349,53.581093],[-0.231477,53.579582],[-0.227245,53.576136],[-0.228139,53.57535],[-0.227155,53.574751],[-0.228339,53.573497],[-0.223972,53.572177],[-0.225103,53.570275],[-0.222559,53.568017],[-0.219868,53.56945],[-0.217486,53.568452],[-0.213266,53.570092],[-0.21071,53.569451],[-0.209453,53.56962],[-0.207517,53.57084],[-0.206301,53.570235],[-0.20464,53.571615],[-0.202942,53.571456],[-0.200789,53.570394],[-0.200197,53.570926],[-0.198496,53.570117],[-0.195186,53.571619],[-0.191692,53.568465],[-0.18753,53.563613],[-0.189748,53.562722],[-0.190518,53.561882],[-0.189884,53.561012],[-0.192069,53.559701],[-0.194871,53.557514],[-0.202718,53.549882],[-0.202062,53.549549],[-0.20457,53.547907],[-0.208495,53.544436],[-0.209197,53.54319],[-0.212144,53.541055],[-0.214225,53.538946],[-0.216257,53.536058],[-0.216766,53.536008],[-0.21988,53.53261],[-0.215373,53.532375],[-0.21059,53.531706],[-0.21098,53.530494],[-0.212368,53.529352],[-0.212644,53.528181],[-0.213622,53.527484],[-0.213624,53.526359],[-0.211394,53.52167],[-0.210035,53.520672],[-0.206855,53.516714],[-0.206742,53.515573],[-0.205322,53.51416],[-0.204624,53.511756],[-0.204087,53.511767],[-0.204293,53.506495],[-0.205477,53.50477],[-0.207509,53.502931],[-0.205985,53.501122],[-0.205266,53.497046],[-0.206471,53.496767],[-0.207544,53.49497],[-0.20823,53.491935],[-0.210605,53.486288],[-0.202397,53.486647],[-0.19956,53.485644],[-0.196929,53.485166],[-0.194334,53.483778],[-0.191112,53.483918],[-0.189351,53.484784],[-0.188588,53.482951],[-0.186927,53.482038],[-0.187812,53.48042],[-0.184432,53.479332],[-0.185162,53.477183],[-0.182504,53.476125],[-0.18229,53.471683],[-0.183276,53.469377],[-0.181805,53.468649],[-0.177522,53.46867],[-0.17698,53.46803],[-0.168738,53.467415],[-0.166973,53.467659],[-0.166382,53.466833],[-0.159471,53.468018],[-0.159226,53.466856],[-0.158045,53.465122],[-0.15368,53.465678],[-0.15721,53.462929],[-0.156062,53.461736],[-0.156852,53.460968],[-0.158508,53.461584],[-0.156968,53.459146],[-0.156463,53.457456],[-0.155058,53.457214],[-0.154615,53.455731],[-0.151966,53.452374],[-0.152549,53.452241],[-0.149228,53.4467],[-0.14867,53.446808],[-0.147204,53.444134],[-0.144501,53.440903],[-0.139026,53.441496],[-0.137918,53.439961],[-0.134248,53.440738],[-0.134025,53.439032],[-0.131879,53.435939],[-0.127651,53.435768],[-0.122786,53.437346],[-0.120778,53.435665],[-0.120344,53.433565],[-0.112079,53.43795],[-0.110571,53.440021],[-0.091715,53.447005],[-0.089752,53.447105],[-0.086947,53.449643],[-0.08221,53.451151],[-0.082979,53.452768],[-0.085828,53.455542],[-0.094983,53.461362],[-0.102922,53.465656],[-0.107821,53.469863],[-0.089804,53.477682],[-0.092715,53.47965],[-0.094127,53.481266],[-0.093684,53.482208],[-0.0922,53.482852],[-0.095489,53.485989],[-0.092908,53.486026],[-0.089819,53.485301],[-0.087367,53.485899],[-0.082696,53.488184],[-0.081905,53.487773],[-0.079066,53.48942],[-0.075262,53.489336],[-0.073394,53.495305],[-0.072985,53.498532],[-0.068672,53.511399],[-0.068415,53.513317],[-0.067486,53.514115],[-0.067626,53.51596],[-0.067096,53.516838],[-0.065046,53.51874],[-0.060545,53.519749],[-0.058038,53.519976],[-0.056115,53.519575],[-0.054914,53.51984],[-0.050434,53.519852],[-0.048916,53.519476],[-0.046614,53.520099],[-0.043861,53.518394],[-0.04237,53.51629],[-0.041635,53.516228],[-0.0396,53.513117],[-0.037931,53.51393],[-0.03544,53.514215],[-0.033106,53.515389],[-0.032785,53.5165],[-0.028639,53.517338],[-0.027364,53.517011],[-0.024792,53.517095],[-0.023968,53.51671],[-0.022475,53.517553],[-0.019548,53.517975],[-0.01743,53.515067],[-0.014579,53.515405],[-0.013511,53.516625],[-0.007435,53.516798],[0.005366,53.519675],[0.007619,53.520736],[0.009474,53.520958],[0.011945,53.52207],[0.012453,53.523372],[0.017618,53.525512]]]},"properties":{"LAD22CD":"E06000012","LAD22NM":"North East Lincolnshire","BNG_E":523465,"BNG_N":404564,"LONG":-0.13911,"LAT":53.52327,"GlobalID":"befff526-803b-43ce-94e8-3f0e21fa398c"},"id":12}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.798112,53.455233],[-0.79429,53.457158],[-0.78743,53.461393],[-0.785108,53.46333],[-0.784763,53.464423],[-0.786205,53.473272],[-0.785736,53.475299],[-0.784521,53.47699],[-0.782745,53.478036],[-0.78071,53.478598],[-0.777146,53.478966],[-0.773551,53.478785],[-0.772077,53.479426],[-0.771725,53.481041],[-0.772088,53.482653],[-0.773083,53.484073],[-0.775236,53.485799],[-0.776244,53.488735],[-0.774489,53.491203],[-0.769262,53.494427],[-0.769211,53.497969],[-0.768335,53.49944],[-0.765717,53.500748],[-0.762545,53.501284],[-0.753793,53.500696],[-0.752895,53.500838],[-0.749006,53.505592],[-0.745126,53.508997],[-0.743452,53.511226],[-0.741731,53.517225],[-0.73919,53.523098],[-0.738576,53.526208],[-0.739543,53.528601],[-0.742848,53.53311],[-0.743625,53.53538],[-0.743504,53.537246],[-0.742265,53.539534],[-0.739541,53.542809],[-0.738849,53.54622],[-0.740043,53.549111],[-0.744818,53.55337],[-0.747157,53.556271],[-0.748286,53.558992],[-0.748981,53.563221],[-0.748488,53.567852],[-0.747353,53.571211],[-0.746331,53.572776],[-0.743903,53.574802],[-0.740267,53.576359],[-0.73507,53.579317],[-0.733218,53.581005],[-0.731614,53.584117],[-0.732093,53.586134],[-0.737114,53.589667],[-0.739315,53.591661],[-0.739757,53.592655],[-0.738022,53.599012],[-0.733192,53.604839],[-0.728514,53.608176],[-0.725132,53.609255],[-0.72297,53.609219],[-0.71679,53.608168],[-0.712767,53.607793],[-0.708534,53.608162],[-0.703586,53.610234],[-0.701901,53.611496],[-0.700835,53.613079],[-0.700896,53.615102],[-0.702993,53.617296],[-0.709344,53.620736],[-0.71254,53.62371],[-0.714658,53.627616],[-0.715044,53.633218],[-0.714569,53.641997],[-0.712908,53.645093],[-0.711693,53.646524],[-0.709215,53.648249],[-0.70078,53.652137],[-0.698852,53.654042],[-0.697233,53.656213],[-0.695142,53.660855],[-0.695162,53.662241],[-0.693543,53.664531],[-0.689746,53.673044],[-0.689543,53.677151],[-0.691054,53.678338],[-0.695565,53.680588],[-0.698532,53.684675],[-0.701038,53.683923],[-0.704311,53.681509],[-0.704736,53.680656],[-0.703315,53.679404],[-0.702381,53.677487],[-0.704818,53.677833],[-0.709013,53.677249],[-0.713842,53.677438],[-0.715175,53.678309],[-0.717694,53.678242],[-0.717999,53.679988],[-0.719437,53.679472],[-0.721769,53.679361],[-0.723631,53.677913],[-0.722703,53.676597],[-0.723191,53.673729],[-0.730544,53.673481],[-0.746608,53.669612],[-0.746214,53.668914],[-0.754934,53.666406],[-0.758979,53.664367],[-0.753243,53.662699],[-0.7745,53.656209],[-0.774471,53.657895],[-0.771147,53.660041],[-0.769896,53.66164],[-0.772136,53.664075],[-0.778306,53.661439],[-0.781219,53.660608],[-0.788744,53.65921],[-0.793502,53.657283],[-0.799789,53.653976],[-0.801542,53.652726],[-0.80325,53.650981],[-0.804226,53.647713],[-0.805806,53.646356],[-0.81418,53.643407],[-0.816579,53.644836],[-0.820094,53.645162],[-0.820884,53.643872],[-0.82716,53.642737],[-0.829153,53.643236],[-0.829622,53.641898],[-0.833528,53.640787],[-0.841217,53.635507],[-0.848264,53.633037],[-0.865339,53.637708],[-0.881359,53.61696],[-0.887393,53.609958],[-0.886666,53.609358],[-0.886897,53.601027],[-0.897927,53.583277],[-0.896238,53.582917],[-0.901118,53.568724],[-0.890995,53.566559],[-0.89186,53.565308],[-0.89431,53.565578],[-0.900303,53.555659],[-0.900505,53.549627],[-0.901266,53.547908],[-0.899834,53.544478],[-0.895594,53.54206],[-0.892271,53.537616],[-0.897313,53.532964],[-0.900436,53.532623],[-0.908195,53.533668],[-0.925261,53.532601],[-0.934329,53.530045],[-0.943716,53.530643],[-0.946544,53.527342],[-0.946059,53.527189],[-0.948474,53.520373],[-0.947917,53.519516],[-0.950009,53.513657],[-0.932094,53.510672],[-0.935775,53.502814],[-0.935565,53.502516],[-0.900471,53.475156],[-0.902175,53.473732],[-0.912092,53.469953],[-0.920247,53.465508],[-0.92046,53.464483],[-0.916249,53.460296],[-0.914817,53.460871],[-0.912645,53.46046],[-0.910043,53.461037],[-0.900612,53.461049],[-0.89659,53.461892],[-0.889989,53.461811],[-0.886352,53.462139],[-0.873736,53.461478],[-0.871919,53.466311],[-0.818446,53.459558],[-0.813542,53.458465],[-0.80544,53.457199],[-0.798112,53.455233]]],[[[-0.555487,53.690517],[-0.557939,53.690218],[-0.5586,53.689487],[-0.557055,53.688309],[-0.547126,53.684546],[-0.547126,53.683876],[-0.543573,53.682877],[-0.536742,53.681989],[-0.535831,53.681272],[-0.530444,53.68127],[-0.530122,53.682146],[-0.523327,53.683573],[-0.520771,53.685219],[-0.521114,53.686832],[-0.522772,53.684901],[-0.534412,53.687041],[-0.534719,53.688039],[-0.535899,53.688335],[-0.539269,53.688361],[-0.546409,53.689934],[-0.555487,53.690517]]],[[[-0.200729,53.63997],[-0.203166,53.642026],[-0.20544,53.643348],[-0.207682,53.643862],[-0.210911,53.643209],[-0.218843,53.648865],[-0.219615,53.649929],[-0.225315,53.654463],[-0.227289,53.657061],[-0.231025,53.660801],[-0.232437,53.663188],[-0.234175,53.664216],[-0.236592,53.666467],[-0.23852,53.666539],[-0.241781,53.668127],[-0.244298,53.670058],[-0.248095,53.673892],[-0.252454,53.677538],[-0.263151,53.690521],[-0.265793,53.690184],[-0.263959,53.691764],[-0.266475,53.695432],[-0.267073,53.695597],[-0.273151,53.702581],[-0.275587,53.705125],[-0.282199,53.710127],[-0.289332,53.713186],[-0.29415,53.714141],[-0.295781,53.713854],[-0.2998,53.714397],[-0.306303,53.713589],[-0.307235,53.713074],[-0.311651,53.71252],[-0.318042,53.712181],[-0.319573,53.711735],[-0.320501,53.712143],[-0.32722,53.711435],[-0.331027,53.711517],[-0.336129,53.710444],[-0.352731,53.707169],[-0.35686,53.706807],[-0.357682,53.706448],[-0.362108,53.705598],[-0.360782,53.704077],[-0.361561,53.703874],[-0.362557,53.705471],[-0.366141,53.704467],[-0.372833,53.703215],[-0.383807,53.702019],[-0.387073,53.701897],[-0.388529,53.70136],[-0.394362,53.700313],[-0.40653,53.698508],[-0.413507,53.698054],[-0.414575,53.698125],[-0.442571,53.697331],[-0.470576,53.698225],[-0.475268,53.697125],[-0.478408,53.694956],[-0.479159,53.694799],[-0.48104,53.693165],[-0.482281,53.692911],[-0.484777,53.6914],[-0.49074,53.688921],[-0.491906,53.687837],[-0.497355,53.683826],[-0.503402,53.680856],[-0.509016,53.679592],[-0.517646,53.678426],[-0.525794,53.678252],[-0.530622,53.678702],[-0.536244,53.678334],[-0.542795,53.678542],[-0.548711,53.679625],[-0.557885,53.682617],[-0.560947,53.684074],[-0.566122,53.687937],[-0.567265,53.687405],[-0.568599,53.688261],[-0.575,53.690784],[-0.577205,53.691956],[-0.578563,53.693367],[-0.579878,53.693616],[-0.583503,53.695402],[-0.584327,53.696182],[-0.587672,53.696953],[-0.592211,53.699443],[-0.595633,53.702123],[-0.600512,53.707044],[-0.601287,53.707265],[-0.605849,53.712011],[-0.607842,53.713103],[-0.611423,53.714603],[-0.6184,53.713814],[-0.631504,53.711148],[-0.639504,53.710169],[-0.646562,53.707581],[-0.646722,53.707739],[-0.653932,53.706035],[-0.658395,53.704174],[-0.667302,53.702505],[-0.670029,53.702356],[-0.670535,53.701994],[-0.686228,53.698349],[-0.691396,53.696777],[-0.693893,53.695445],[-0.695158,53.693729],[-0.694942,53.692325],[-0.693136,53.689501],[-0.687512,53.683861],[-0.685232,53.679799],[-0.68457,53.675197],[-0.685113,53.67224],[-0.689558,53.663278],[-0.691056,53.658721],[-0.692338,53.657441],[-0.695036,53.653074],[-0.696679,53.651456],[-0.699771,53.649351],[-0.708053,53.645304],[-0.710314,53.64334],[-0.711643,53.640869],[-0.711163,53.62881],[-0.710307,53.625647],[-0.707597,53.622686],[-0.700654,53.618338],[-0.698532,53.615873],[-0.698107,53.614188],[-0.699232,53.610456],[-0.701804,53.608599],[-0.705757,53.606886],[-0.714658,53.606087],[-0.723116,53.607537],[-0.726281,53.607375],[-0.727523,53.606848],[-0.729363,53.605361],[-0.73525,53.598457],[-0.736725,53.596022],[-0.737111,53.593002],[-0.735929,53.591157],[-0.731248,53.587997],[-0.730299,53.586945],[-0.729255,53.584652],[-0.730175,53.581651],[-0.732466,53.579068],[-0.734882,53.577374],[-0.742049,53.573966],[-0.744051,53.572501],[-0.745119,53.571179],[-0.746126,53.566627],[-0.746122,53.560468],[-0.745129,53.557103],[-0.74243,53.553836],[-0.739552,53.551226],[-0.738225,53.549346],[-0.736926,53.545414],[-0.737485,53.5425],[-0.740955,53.538528],[-0.741804,53.536468],[-0.741201,53.53357],[-0.737996,53.529333],[-0.736911,53.527162],[-0.737272,53.523593],[-0.738568,53.519881],[-0.730118,53.519427],[-0.726356,53.518937],[-0.713887,53.516846],[-0.701578,53.514183],[-0.699938,53.51461],[-0.699758,53.515385],[-0.698121,53.515531],[-0.697722,53.516149],[-0.695442,53.516293],[-0.692195,53.515939],[-0.691012,53.516214],[-0.688883,53.515758],[-0.687355,53.516389],[-0.686456,53.516013],[-0.684712,53.51412],[-0.681666,53.514595],[-0.680747,53.513542],[-0.678646,53.513708],[-0.676129,53.513024],[-0.675707,53.512525],[-0.65835,53.51386],[-0.644252,53.513248],[-0.624491,53.512839],[-0.628193,53.506823],[-0.625771,53.498673],[-0.625727,53.495581],[-0.628644,53.490766],[-0.628451,53.488781],[-0.631294,53.488312],[-0.630134,53.485994],[-0.634059,53.485399],[-0.631994,53.481354],[-0.632411,53.480107],[-0.634337,53.480013],[-0.632599,53.475399],[-0.633542,53.474964],[-0.632548,53.473827],[-0.634438,53.47303],[-0.6348,53.472385],[-0.633472,53.471245],[-0.633347,53.470403],[-0.634807,53.469552],[-0.629028,53.465054],[-0.62665,53.462061],[-0.627161,53.460404],[-0.629753,53.458219],[-0.621673,53.457821],[-0.613403,53.456951],[-0.59948,53.456402],[-0.597171,53.456735],[-0.584484,53.456864],[-0.566053,53.458125],[-0.551791,53.45952],[-0.55171,53.460814],[-0.529713,53.463815],[-0.512698,53.467781],[-0.508779,53.467759],[-0.50532,53.468194],[-0.500033,53.469622],[-0.483552,53.472419],[-0.47175,53.474873],[-0.473564,53.476643],[-0.481508,53.478373],[-0.486161,53.479908],[-0.48778,53.482968],[-0.487689,53.483823],[-0.488644,53.485088],[-0.487449,53.48606],[-0.487222,53.488746],[-0.485008,53.490348],[-0.483183,53.493449],[-0.480687,53.496245],[-0.482404,53.500387],[-0.483788,53.501563],[-0.485147,53.503589],[-0.486496,53.504532],[-0.488384,53.50486],[-0.48132,53.506967],[-0.478565,53.508394],[-0.475839,53.508979],[-0.47069,53.509117],[-0.466968,53.509719],[-0.46156,53.509978],[-0.452369,53.508711],[-0.449973,53.508673],[-0.447549,53.50917],[-0.444037,53.509392],[-0.439009,53.510917],[-0.427322,53.512248],[-0.425015,53.512729],[-0.421603,53.514039],[-0.419471,53.514187],[-0.417669,53.514699],[-0.415531,53.514692],[-0.413482,53.515525],[-0.405075,53.517617],[-0.406857,53.520167],[-0.405827,53.522241],[-0.406172,53.524505],[-0.408513,53.527292],[-0.40949,53.52912],[-0.407825,53.530108],[-0.408145,53.532109],[-0.412003,53.534553],[-0.41235,53.535257],[-0.4144,53.535842],[-0.418287,53.534808],[-0.421863,53.534448],[-0.427399,53.540948],[-0.427687,53.544258],[-0.429301,53.545098],[-0.430665,53.546337],[-0.433728,53.545864],[-0.437044,53.545955],[-0.439324,53.546425],[-0.442588,53.546239],[-0.446405,53.544574],[-0.450341,53.544043],[-0.45068,53.543148],[-0.454179,53.542962],[-0.463418,53.540846],[-0.473931,53.539087],[-0.481367,53.538245],[-0.501258,53.537462],[-0.499761,53.53892],[-0.496583,53.540113],[-0.494071,53.5418],[-0.491874,53.543962],[-0.49092,53.545874],[-0.483636,53.54528],[-0.481103,53.545828],[-0.476532,53.545913],[-0.474859,53.54814],[-0.473045,53.548824],[-0.467019,53.548961],[-0.466713,53.549731],[-0.467156,53.553685],[-0.466507,53.55539],[-0.465672,53.556023],[-0.46273,53.555959],[-0.460906,53.557324],[-0.460855,53.558045],[-0.457658,53.558868],[-0.452383,53.559442],[-0.450776,53.557966],[-0.44942,53.561284],[-0.447675,53.562685],[-0.445091,53.563837],[-0.442526,53.566264],[-0.441962,53.567631],[-0.440354,53.568778],[-0.439408,53.570293],[-0.434095,53.572818],[-0.429001,53.574525],[-0.428193,53.572603],[-0.424328,53.569652],[-0.419669,53.563773],[-0.408843,53.562119],[-0.400108,53.56142],[-0.388349,53.559751],[-0.373232,53.558962],[-0.368755,53.55933],[-0.368372,53.558981],[-0.362802,53.558625],[-0.359893,53.557832],[-0.356324,53.556053],[-0.34938,53.555809],[-0.347934,53.556059],[-0.345855,53.557959],[-0.348659,53.559513],[-0.335939,53.558627],[-0.330404,53.566258],[-0.329867,53.566325],[-0.328783,53.568539],[-0.326808,53.571136],[-0.322833,53.57535],[-0.323607,53.576042],[-0.320015,53.578962],[-0.320947,53.579571],[-0.317621,53.580958],[-0.314286,53.583952],[-0.314395,53.585579],[-0.312442,53.585758],[-0.312875,53.587072],[-0.312297,53.587731],[-0.310331,53.588341],[-0.310868,53.590155],[-0.306981,53.590261],[-0.303424,53.59079],[-0.304578,53.593861],[-0.303377,53.594485],[-0.300822,53.595136],[-0.300754,53.59554],[-0.304053,53.600546],[-0.303131,53.602894],[-0.305094,53.604727],[-0.305008,53.605815],[-0.306192,53.607393],[-0.305755,53.607994],[-0.30681,53.609576],[-0.308555,53.614329],[-0.3063,53.61406],[-0.300931,53.616388],[-0.298238,53.612562],[-0.29229,53.613536],[-0.292115,53.613267],[-0.288571,53.613889],[-0.285007,53.615885],[-0.282432,53.616476],[-0.280087,53.617389],[-0.279242,53.617189],[-0.274054,53.617439],[-0.27161,53.617904],[-0.267365,53.617958],[-0.263846,53.619349],[-0.261969,53.61973],[-0.261084,53.620334],[-0.253929,53.621471],[-0.252992,53.62229],[-0.250958,53.622993],[-0.243257,53.623328],[-0.241004,53.62329],[-0.237964,53.623667],[-0.237604,53.624657],[-0.235998,53.624577],[-0.233485,53.623848],[-0.232617,53.624003],[-0.222161,53.629135],[-0.220397,53.630364],[-0.214207,53.632988],[-0.200729,53.63997]]]]},"properties":{"LAD22CD":"E06000013","LAD22NM":"North Lincolnshire","BNG_E":497800,"BNG_N":410993,"LONG":-0.52407,"LAT":53.58643,"GlobalID":"18d57a52-a418-42e6-aa9e-74a2c7587826"},"id":13}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.925295,53.991518],[-0.927779,53.990829],[-0.932572,53.990106],[-0.934077,53.989238],[-0.935747,53.989661],[-0.944362,53.989128],[-0.953263,53.986507],[-0.956577,53.985071],[-0.95768,53.983958],[-0.962242,53.984517],[-0.967045,53.985919],[-0.970081,53.984822],[-0.972693,53.984588],[-0.973379,53.984888],[-0.976312,53.982085],[-0.979243,53.983041],[-0.980354,53.98233],[-0.984658,53.981548],[-0.991059,53.981923],[-0.99318,53.98277],[-0.994837,53.983064],[-0.995818,53.983981],[-0.994083,53.984444],[-0.994715,53.985326],[-0.992746,53.985849],[-0.990649,53.987602],[-0.988031,53.989012],[-0.98125,53.991154],[-0.983155,53.993307],[-0.978836,53.994527],[-0.979057,53.995971],[-0.97192,53.99671],[-0.972808,54.001875],[-0.973845,54.003689],[-0.975369,54.004732],[-0.980149,54.003244],[-0.979996,54.002848],[-0.984499,54.002231],[-0.984704,54.00255],[-0.980841,54.003949],[-0.979349,54.005311],[-0.979811,54.007482],[-0.981301,54.009146],[-0.982754,54.01003],[-0.976941,54.015774],[-0.979422,54.01742],[-0.971766,54.020391],[-0.966873,54.022967],[-0.970688,54.023084],[-0.970188,54.025901],[-0.971194,54.027641],[-0.973583,54.029369],[-0.975795,54.030103],[-0.982243,54.030904],[-0.981318,54.033826],[-0.982312,54.039484],[-0.984593,54.038828],[-0.985509,54.039593],[-0.988287,54.040646],[-0.989273,54.041706],[-0.992375,54.041711],[-0.99325,54.042224],[-0.992942,54.043748],[-0.993829,54.045544],[-0.994971,54.046174],[-0.993849,54.04725],[-0.996016,54.048146],[-0.996575,54.049049],[-0.998154,54.049326],[-0.998668,54.050373],[-1.000922,54.051518],[-1.000681,54.051977],[-1.002078,54.053757],[-1.002085,54.055263],[-1.00443,54.055567],[-1.006209,54.053853],[-1.008021,54.053274],[-1.012435,54.051308],[-1.014378,54.049322],[-1.024462,54.052036],[-1.028464,54.052764],[-1.03586,54.053615],[-1.047458,54.054442],[-1.059712,54.056883],[-1.059712,54.056607],[-1.058421,54.052444],[-1.058966,54.049688],[-1.058734,54.047845],[-1.062171,54.050138],[-1.071142,54.048821],[-1.08379,54.047605],[-1.089007,54.048099],[-1.091758,54.047322],[-1.09308,54.046176],[-1.094278,54.046626],[-1.096112,54.040452],[-1.099457,54.041549],[-1.101077,54.040964],[-1.099778,54.039414],[-1.099781,54.037689],[-1.107075,54.037402],[-1.111584,54.036068],[-1.114903,54.03584],[-1.115444,54.03459],[-1.116973,54.03359],[-1.12017,54.029025],[-1.127585,54.031031],[-1.140797,54.029859],[-1.140636,54.02779],[-1.14205,54.027207],[-1.143889,54.025665],[-1.144814,54.025509],[-1.145098,54.022898],[-1.142381,54.018953],[-1.147915,54.016133],[-1.148069,54.015712],[-1.145923,54.013311],[-1.143749,54.012655],[-1.142876,54.010788],[-1.1441,54.008222],[-1.147183,54.006634],[-1.148559,54.004846],[-1.149091,54.002947],[-1.148394,54.001665],[-1.147371,54.00162],[-1.146864,54.000582],[-1.145093,53.999926],[-1.143788,53.998792],[-1.142264,53.998535],[-1.140571,53.997361],[-1.140995,53.996019],[-1.1394,53.995226],[-1.139586,53.994057],[-1.138916,53.992622],[-1.136998,53.991083],[-1.139382,53.990786],[-1.14357,53.989545],[-1.147217,53.989015],[-1.15002,53.988896],[-1.151913,53.989178],[-1.158935,53.992858],[-1.161346,53.994644],[-1.167193,53.996313],[-1.171369,54.000567],[-1.172967,54.00151],[-1.17551,54.002197],[-1.176019,54.000846],[-1.1786,54.000091],[-1.178828,53.999161],[-1.180766,53.998991],[-1.182256,54.000527],[-1.184393,54.000972],[-1.18857,54.002483],[-1.189293,54.001647],[-1.190993,54.001275],[-1.191929,53.999924],[-1.189404,53.99802],[-1.186633,53.998162],[-1.185561,53.99722],[-1.184163,53.997063],[-1.183283,53.996216],[-1.183162,53.994856],[-1.181632,53.992684],[-1.180622,53.989817],[-1.182103,53.985345],[-1.185751,53.983789],[-1.19222,53.984192],[-1.195041,53.985313],[-1.197294,53.986859],[-1.197539,53.988384],[-1.200182,53.989032],[-1.201993,53.988213],[-1.202256,53.987129],[-1.203395,53.986667],[-1.204871,53.986832],[-1.207178,53.986545],[-1.210835,53.985457],[-1.21329,53.985241],[-1.21652,53.98559],[-1.217458,53.984416],[-1.217353,53.983269],[-1.219117,53.982746],[-1.221606,53.980415],[-1.222345,53.978887],[-1.222387,53.976515],[-1.223706,53.974829],[-1.221608,53.972668],[-1.221477,53.970475],[-1.220893,53.969167],[-1.219187,53.96722],[-1.217486,53.965997],[-1.21982,53.96377],[-1.219839,53.962506],[-1.216047,53.959666],[-1.213037,53.956665],[-1.211832,53.954202],[-1.208998,53.951252],[-1.207382,53.94551],[-1.204133,53.943489],[-1.203443,53.942101],[-1.202682,53.938988],[-1.201799,53.93829],[-1.199897,53.934547],[-1.200151,53.932387],[-1.197735,53.929326],[-1.197993,53.928659],[-1.200074,53.928466],[-1.200115,53.926473],[-1.199495,53.925351],[-1.19761,53.923887],[-1.196055,53.923505],[-1.195638,53.92238],[-1.191133,53.922582],[-1.186711,53.918443],[-1.185709,53.916063],[-1.179305,53.916898],[-1.177383,53.914333],[-1.176409,53.913969],[-1.17307,53.911281],[-1.170596,53.908821],[-1.164916,53.910576],[-1.164529,53.90917],[-1.162202,53.905537],[-1.16152,53.902584],[-1.160123,53.900432],[-1.155782,53.897348],[-1.154323,53.896676],[-1.154396,53.895929],[-1.152329,53.895738],[-1.150237,53.894994],[-1.150006,53.89364],[-1.146767,53.894611],[-1.143561,53.89249],[-1.141569,53.892644],[-1.138817,53.894178],[-1.136819,53.895943],[-1.134815,53.894744],[-1.134317,53.892564],[-1.133356,53.891056],[-1.129115,53.888983],[-1.125241,53.885608],[-1.124984,53.882676],[-1.121052,53.882649],[-1.118652,53.881416],[-1.117437,53.880361],[-1.115605,53.879684],[-1.111966,53.879062],[-1.10899,53.87736],[-1.10535,53.875836],[-1.101929,53.876172],[-1.100634,53.876768],[-1.100234,53.880358],[-1.099581,53.881071],[-1.097229,53.88209],[-1.095827,53.884196],[-1.096346,53.886575],[-1.09362,53.889442],[-1.094539,53.891144],[-1.098299,53.892832],[-1.097541,53.89305],[-1.093471,53.890967],[-1.093011,53.890209],[-1.093396,53.888797],[-1.095578,53.88661],[-1.095331,53.884559],[-1.093708,53.884451],[-1.0912,53.885816],[-1.090051,53.884931],[-1.087472,53.884298],[-1.085781,53.88246],[-1.083989,53.882228],[-1.081303,53.882513],[-1.079302,53.883512],[-1.077671,53.883592],[-1.077281,53.882471],[-1.076303,53.88221],[-1.073232,53.879842],[-1.071111,53.879781],[-1.068551,53.879087],[-1.06496,53.874586],[-1.061156,53.875805],[-1.056808,53.876431],[-1.053475,53.877319],[-1.051151,53.878819],[-1.04652,53.880826],[-1.036065,53.883187],[-1.029402,53.885027],[-1.02708,53.886395],[-1.023748,53.886416],[-1.021543,53.888372],[-1.018208,53.888486],[-1.008205,53.889995],[-1.003005,53.886205],[-0.998544,53.880967],[-0.992833,53.875211],[-0.986908,53.877142],[-0.980939,53.878383],[-0.967709,53.882838],[-0.963669,53.882897],[-0.957503,53.88431],[-0.948027,53.884867],[-0.948249,53.886093],[-0.945155,53.886963],[-0.944072,53.888122],[-0.941584,53.887519],[-0.939591,53.887898],[-0.938612,53.887541],[-0.93817,53.885832],[-0.935603,53.884245],[-0.934521,53.882943],[-0.934453,53.881349],[-0.934974,53.880019],[-0.932678,53.879497],[-0.93047,53.879528],[-0.929801,53.881306],[-0.928584,53.88226],[-0.926835,53.882562],[-0.925385,53.880751],[-0.923518,53.880766],[-0.924659,53.882714],[-0.924403,53.883727],[-0.922934,53.885373],[-0.923596,53.887727],[-0.920537,53.888418],[-0.919679,53.889303],[-0.920844,53.89062],[-0.922923,53.890735],[-0.925834,53.890406],[-0.930284,53.890635],[-0.934134,53.890258],[-0.944694,53.892048],[-0.948275,53.893072],[-0.949515,53.893846],[-0.948721,53.895008],[-0.946028,53.895822],[-0.941343,53.897869],[-0.939986,53.899389],[-0.940673,53.901104],[-0.939975,53.9026],[-0.941044,53.904164],[-0.938934,53.905897],[-0.938314,53.90789],[-0.936878,53.908305],[-0.933204,53.90826],[-0.932051,53.908764],[-0.932188,53.912049],[-0.934825,53.913588],[-0.934135,53.914138],[-0.931732,53.913796],[-0.930783,53.91473],[-0.931895,53.916302],[-0.930979,53.917794],[-0.928902,53.917859],[-0.927797,53.918311],[-0.92836,53.920459],[-0.926739,53.921083],[-0.923372,53.92034],[-0.921678,53.921235],[-0.921928,53.922766],[-0.923244,53.92526],[-0.925261,53.926988],[-0.928711,53.929053],[-0.928833,53.930017],[-0.927727,53.930859],[-0.92642,53.933115],[-0.923886,53.934266],[-0.923784,53.935399],[-0.925579,53.935903],[-0.926184,53.936961],[-0.925838,53.939248],[-0.925075,53.940771],[-0.92786,53.941906],[-0.928459,53.943444],[-0.926529,53.944679],[-0.927098,53.946559],[-0.925502,53.947811],[-0.92496,53.948757],[-0.925707,53.95038],[-0.927609,53.951697],[-0.927657,53.952667],[-0.922157,53.956651],[-0.921212,53.960422],[-0.922283,53.962041],[-0.923866,53.963371],[-0.925154,53.963957],[-0.9283,53.964317],[-0.931322,53.965866],[-0.933421,53.967357],[-0.934111,53.968672],[-0.933789,53.970508],[-0.931296,53.972417],[-0.930749,53.974487],[-0.928778,53.976102],[-0.928224,53.978542],[-0.927047,53.980514],[-0.927826,53.984024],[-0.924978,53.986257],[-0.923638,53.988393],[-0.920314,53.990094],[-0.925295,53.991518]]]},"properties":{"LAD22CD":"E06000014","LAD22NM":"York","BNG_E":460864,"BNG_N":452589,"LONG":-1.07375,"LAT":53.96582,"GlobalID":"5453a4c5-1a45-4b79-86fd-a4e66e01d6b8"},"id":14}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.474631,52.965928],[-1.476666,52.964338],[-1.478493,52.964643],[-1.481158,52.968154],[-1.483622,52.967273],[-1.485185,52.966231],[-1.490691,52.966194],[-1.492266,52.966378],[-1.495406,52.965879],[-1.4954,52.965036],[-1.496432,52.963223],[-1.494412,52.960179],[-1.495314,52.960075],[-1.496866,52.958586],[-1.497976,52.956832],[-1.497801,52.956005],[-1.503427,52.955638],[-1.506609,52.954205],[-1.507644,52.954331],[-1.507604,52.951282],[-1.505904,52.948327],[-1.508334,52.947818],[-1.507921,52.946977],[-1.51067,52.946334],[-1.50915,52.94571],[-1.50777,52.943727],[-1.508065,52.942461],[-1.507816,52.940919],[-1.506606,52.939865],[-1.508029,52.937452],[-1.510973,52.938148],[-1.511885,52.935239],[-1.519874,52.933296],[-1.521262,52.932385],[-1.525458,52.932993],[-1.527007,52.932417],[-1.537798,52.924905],[-1.539645,52.924449],[-1.544069,52.924208],[-1.549609,52.922825],[-1.552876,52.922578],[-1.551875,52.920545],[-1.551703,52.918457],[-1.551068,52.917053],[-1.556852,52.914679],[-1.556439,52.913527],[-1.554037,52.909209],[-1.554652,52.908552],[-1.55389,52.906264],[-1.55511,52.906051],[-1.551153,52.901844],[-1.549994,52.90222],[-1.547477,52.899614],[-1.544975,52.90033],[-1.544219,52.898776],[-1.542434,52.896773],[-1.543072,52.896395],[-1.542433,52.895152],[-1.541083,52.894092],[-1.539638,52.893942],[-1.541667,52.892131],[-1.541691,52.88954],[-1.540371,52.889556],[-1.538671,52.88855],[-1.534354,52.888437],[-1.533946,52.888037],[-1.53066,52.888983],[-1.528417,52.890216],[-1.526372,52.890911],[-1.524743,52.890636],[-1.52426,52.888847],[-1.523198,52.887341],[-1.51583,52.886458],[-1.514612,52.884706],[-1.503112,52.884845],[-1.502779,52.882557],[-1.502004,52.881602],[-1.499495,52.882704],[-1.499143,52.881211],[-1.499995,52.879019],[-1.49989,52.877264],[-1.496714,52.876849],[-1.496659,52.875838],[-1.493595,52.873635],[-1.495191,52.870378],[-1.493667,52.869741],[-1.490357,52.869337],[-1.483827,52.870337],[-1.484422,52.871232],[-1.467662,52.870536],[-1.467165,52.872923],[-1.463758,52.872486],[-1.452903,52.868324],[-1.450652,52.866982],[-1.449908,52.866949],[-1.4471,52.864506],[-1.44485,52.863204],[-1.444878,52.862153],[-1.446227,52.861309],[-1.443562,52.861117],[-1.437907,52.862835],[-1.427681,52.863941],[-1.427955,52.864756],[-1.423568,52.865078],[-1.424996,52.868877],[-1.427528,52.868839],[-1.429778,52.87021],[-1.425821,52.872184],[-1.425182,52.872968],[-1.425407,52.873934],[-1.416465,52.875699],[-1.420093,52.878272],[-1.41959,52.87863],[-1.420556,52.879892],[-1.420377,52.881917],[-1.418913,52.884546],[-1.416736,52.884814],[-1.413779,52.884257],[-1.411662,52.884245],[-1.411006,52.884796],[-1.409864,52.888293],[-1.409283,52.889339],[-1.407588,52.889691],[-1.407898,52.891502],[-1.40592,52.894532],[-1.405826,52.895469],[-1.403107,52.895612],[-1.403491,52.896941],[-1.402772,52.900462],[-1.400335,52.901394],[-1.39364,52.901855],[-1.388263,52.901468],[-1.39111,52.904247],[-1.390645,52.906247],[-1.391771,52.907408],[-1.388912,52.909695],[-1.387793,52.911432],[-1.388155,52.918069],[-1.389374,52.920025],[-1.389608,52.92274],[-1.387095,52.922368],[-1.386299,52.923873],[-1.383933,52.923816],[-1.383075,52.925932],[-1.386548,52.926679],[-1.39083,52.928098],[-1.396465,52.928549],[-1.397163,52.92992],[-1.401003,52.930556],[-1.403574,52.932235],[-1.404842,52.931688],[-1.407871,52.931085],[-1.410358,52.931036],[-1.416162,52.931355],[-1.417456,52.931718],[-1.419254,52.931429],[-1.420224,52.931926],[-1.423568,52.935693],[-1.422898,52.938532],[-1.416431,52.945761],[-1.409281,52.950323],[-1.420254,52.950718],[-1.424059,52.950308],[-1.428428,52.950306],[-1.431614,52.950619],[-1.434034,52.951309],[-1.441081,52.949504],[-1.445064,52.949201],[-1.449939,52.948117],[-1.450471,52.948877],[-1.452749,52.947461],[-1.45299,52.948357],[-1.45689,52.948746],[-1.457788,52.94825],[-1.45976,52.948787],[-1.459347,52.949434],[-1.468552,52.950662],[-1.467354,52.953026],[-1.466008,52.954013],[-1.467595,52.955689],[-1.466178,52.95787],[-1.467827,52.959784],[-1.467843,52.960663],[-1.466509,52.962269],[-1.467642,52.964821],[-1.468252,52.965081],[-1.471641,52.964815],[-1.474631,52.965928]]]},"properties":{"LAD22CD":"E06000015","LAD22NM":"Derby","BNG_E":435609,"BNG_N":335375,"LONG":-1.47189,"LAT":52.91464,"GlobalID":"0f6d1967-52c0-4726-886d-a7c8a26bffde"},"id":15}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.048613,52.654996],[-1.058945,52.656426],[-1.059114,52.657251],[-1.056745,52.663832],[-1.058677,52.66348],[-1.059764,52.663853],[-1.062195,52.663854],[-1.066621,52.665747],[-1.067866,52.666861],[-1.074926,52.667987],[-1.075079,52.669626],[-1.085735,52.669243],[-1.089312,52.670281],[-1.090551,52.668539],[-1.097821,52.670082],[-1.105234,52.671865],[-1.105488,52.671539],[-1.109148,52.672798],[-1.110127,52.671457],[-1.114653,52.672708],[-1.118812,52.673186],[-1.11977,52.671802],[-1.12101,52.671826],[-1.120752,52.670604],[-1.121416,52.66959],[-1.125896,52.667474],[-1.128252,52.665111],[-1.129089,52.66539],[-1.129359,52.66915],[-1.12986,52.669527],[-1.13298,52.669766],[-1.13303,52.673158],[-1.135194,52.673221],[-1.135467,52.675418],[-1.137713,52.67538],[-1.136687,52.679917],[-1.143263,52.687157],[-1.147519,52.690662],[-1.151126,52.688504],[-1.152376,52.688438],[-1.154239,52.689659],[-1.15701,52.691043],[-1.157252,52.691523],[-1.161034,52.690548],[-1.163064,52.687948],[-1.165024,52.688813],[-1.166576,52.686607],[-1.170737,52.683562],[-1.172975,52.682663],[-1.173715,52.681214],[-1.173027,52.679786],[-1.175052,52.678329],[-1.176958,52.678499],[-1.177988,52.678107],[-1.178192,52.676834],[-1.179086,52.676398],[-1.177979,52.675392],[-1.177892,52.674079],[-1.178949,52.673207],[-1.177957,52.67148],[-1.180231,52.669365],[-1.179013,52.669102],[-1.177501,52.667625],[-1.177088,52.665999],[-1.177512,52.665238],[-1.176725,52.664306],[-1.185289,52.660644],[-1.184538,52.659546],[-1.184124,52.657556],[-1.184597,52.653347],[-1.18292,52.653016],[-1.184063,52.649583],[-1.187575,52.647151],[-1.186991,52.64559],[-1.189696,52.64251],[-1.190656,52.640394],[-1.195995,52.641084],[-1.198068,52.641732],[-1.198856,52.640294],[-1.2009,52.639844],[-1.201509,52.641136],[-1.202958,52.641368],[-1.205891,52.642672],[-1.209005,52.642092],[-1.209742,52.641695],[-1.211018,52.639429],[-1.214348,52.636936],[-1.213084,52.63615],[-1.215981,52.634534],[-1.214856,52.633336],[-1.210548,52.630854],[-1.208747,52.630582],[-1.205396,52.628816],[-1.201244,52.627332],[-1.200141,52.626677],[-1.196102,52.625687],[-1.188957,52.623051],[-1.187254,52.621637],[-1.185997,52.621754],[-1.184597,52.620714],[-1.178588,52.618309],[-1.174307,52.617822],[-1.172066,52.615784],[-1.167913,52.61427],[-1.166679,52.613291],[-1.165559,52.613081],[-1.165894,52.611697],[-1.164979,52.610179],[-1.164048,52.609453],[-1.167384,52.608266],[-1.171045,52.605818],[-1.16537,52.603047],[-1.166102,52.60219],[-1.167985,52.601426],[-1.17009,52.598349],[-1.171502,52.598723],[-1.172641,52.597306],[-1.170091,52.595906],[-1.170861,52.594841],[-1.170399,52.593909],[-1.171452,52.593432],[-1.174051,52.593702],[-1.174158,52.592848],[-1.172405,52.592819],[-1.172125,52.591826],[-1.169188,52.591588],[-1.16846,52.592765],[-1.16081,52.5923],[-1.159267,52.59124],[-1.15789,52.590822],[-1.158813,52.588903],[-1.157152,52.588629],[-1.156944,52.587236],[-1.155606,52.587153],[-1.155934,52.585993],[-1.158008,52.585755],[-1.158215,52.584184],[-1.160661,52.584322],[-1.160942,52.582531],[-1.1589,52.582661],[-1.159329,52.581666],[-1.153099,52.580669],[-1.149496,52.581024],[-1.147376,52.585302],[-1.146287,52.586597],[-1.145989,52.588136],[-1.143619,52.588025],[-1.14086,52.587693],[-1.141266,52.590003],[-1.138207,52.589466],[-1.136068,52.589425],[-1.130852,52.589963],[-1.12967,52.591531],[-1.128023,52.590989],[-1.126606,52.591055],[-1.126442,52.592924],[-1.126798,52.595644],[-1.121927,52.595823],[-1.120786,52.595525],[-1.120171,52.597544],[-1.11794,52.597016],[-1.112887,52.596951],[-1.109852,52.597365],[-1.10944,52.596386],[-1.107443,52.595655],[-1.10479,52.59639],[-1.103902,52.597991],[-1.101922,52.59931],[-1.101627,52.602242],[-1.100206,52.602446],[-1.09882,52.603263],[-1.096974,52.606274],[-1.093593,52.608688],[-1.093382,52.610287],[-1.094847,52.610266],[-1.098303,52.61109],[-1.097102,52.613744],[-1.096634,52.616379],[-1.093234,52.616166],[-1.086225,52.615022],[-1.083914,52.615063],[-1.084009,52.615924],[-1.082173,52.615712],[-1.082424,52.614934],[-1.077022,52.61434],[-1.074338,52.613445],[-1.073225,52.614596],[-1.07154,52.617507],[-1.07049,52.618067],[-1.066355,52.61957],[-1.063487,52.619372],[-1.060136,52.621543],[-1.058055,52.62368],[-1.057286,52.623651],[-1.055245,52.624838],[-1.053268,52.627533],[-1.055384,52.628353],[-1.056038,52.629011],[-1.055695,52.630312],[-1.056042,52.632611],[-1.053132,52.633153],[-1.053123,52.634487],[-1.046962,52.63462],[-1.048137,52.635361],[-1.047654,52.638152],[-1.047434,52.642355],[-1.049489,52.642617],[-1.051316,52.643232],[-1.051795,52.644044],[-1.051019,52.648104],[-1.048019,52.648189],[-1.048195,52.652044],[-1.048837,52.653585],[-1.048613,52.654996]]]},"properties":{"LAD22CD":"E06000016","LAD22NM":"Leicester","BNG_E":458946,"BNG_N":304594,"LONG":-1.1304,"LAT":52.63592,"GlobalID":"877a8f4c-d1e4-453b-8349-c9f608fdd0bb"},"id":16}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.495026,52.640236],[-0.499333,52.642511],[-0.5044,52.64624],[-0.503875,52.646801],[-0.504374,52.647981],[-0.506462,52.648199],[-0.507429,52.648907],[-0.512551,52.654758],[-0.511845,52.656341],[-0.514077,52.656787],[-0.523586,52.665234],[-0.521829,52.665387],[-0.52063,52.666503],[-0.519018,52.666526],[-0.506675,52.659526],[-0.506379,52.660423],[-0.50198,52.660686],[-0.496868,52.660419],[-0.493866,52.660717],[-0.494712,52.664632],[-0.490609,52.665033],[-0.490268,52.664422],[-0.481456,52.665836],[-0.48041,52.666568],[-0.476562,52.667061],[-0.46607,52.668863],[-0.462596,52.669179],[-0.459451,52.669101],[-0.459485,52.669563],[-0.456191,52.670393],[-0.454171,52.672692],[-0.451305,52.673947],[-0.449316,52.675282],[-0.446352,52.678614],[-0.441328,52.680491],[-0.440237,52.681764],[-0.438468,52.682955],[-0.434055,52.683705],[-0.434888,52.684733],[-0.434366,52.685683],[-0.433178,52.685483],[-0.432213,52.68803],[-0.432521,52.69073],[-0.430856,52.692007],[-0.430545,52.693928],[-0.428921,52.698064],[-0.428366,52.701243],[-0.428697,52.702662],[-0.429727,52.703289],[-0.430443,52.705422],[-0.433498,52.705848],[-0.435741,52.707038],[-0.436335,52.706785],[-0.444722,52.706173],[-0.443958,52.708025],[-0.450533,52.708034],[-0.451092,52.70958],[-0.453229,52.70927],[-0.457084,52.709682],[-0.459465,52.708406],[-0.460875,52.708108],[-0.463645,52.708494],[-0.465546,52.710289],[-0.467897,52.709782],[-0.470282,52.709775],[-0.480217,52.710971],[-0.48308,52.710658],[-0.489595,52.711057],[-0.493242,52.710284],[-0.494531,52.709653],[-0.495744,52.710806],[-0.499844,52.712112],[-0.502463,52.712151],[-0.504537,52.713349],[-0.505721,52.713605],[-0.506962,52.715956],[-0.509862,52.715354],[-0.511004,52.717713],[-0.510655,52.718919],[-0.512641,52.71968],[-0.516494,52.720253],[-0.519186,52.721014],[-0.525004,52.720977],[-0.533045,52.721583],[-0.538748,52.72311],[-0.542434,52.723281],[-0.542823,52.726052],[-0.540315,52.728773],[-0.538812,52.734055],[-0.539974,52.738402],[-0.544714,52.739612],[-0.547954,52.741039],[-0.553262,52.742542],[-0.560034,52.745472],[-0.560864,52.745593],[-0.566111,52.744988],[-0.569012,52.746618],[-0.569507,52.747532],[-0.571451,52.747874],[-0.5715,52.750498],[-0.572637,52.753109],[-0.580509,52.752878],[-0.583448,52.753877],[-0.589566,52.753775],[-0.593909,52.7519],[-0.59771,52.750993],[-0.605444,52.750493],[-0.608594,52.759713],[-0.611773,52.759824],[-0.615496,52.759329],[-0.62305,52.758953],[-0.627687,52.757694],[-0.628148,52.757974],[-0.639572,52.757173],[-0.645078,52.757274],[-0.656929,52.756673],[-0.662598,52.755494],[-0.664102,52.75671],[-0.6649,52.756478],[-0.674087,52.756943],[-0.674515,52.757956],[-0.684429,52.75648],[-0.684077,52.754869],[-0.684351,52.75311],[-0.690041,52.752004],[-0.696967,52.74922],[-0.696157,52.746529],[-0.699938,52.746613],[-0.701708,52.746063],[-0.70428,52.74616],[-0.707545,52.745594],[-0.718197,52.744798],[-0.717702,52.741976],[-0.720364,52.74163],[-0.72021,52.740962],[-0.723736,52.740398],[-0.728881,52.740038],[-0.729069,52.739412],[-0.733811,52.739757],[-0.742971,52.738373],[-0.745141,52.738409],[-0.751515,52.736736],[-0.753319,52.736575],[-0.754621,52.73774],[-0.754857,52.738958],[-0.756678,52.738531],[-0.757978,52.739736],[-0.760023,52.738652],[-0.761596,52.738822],[-0.762708,52.738312],[-0.764726,52.739194],[-0.764125,52.74054],[-0.767827,52.742991],[-0.770411,52.742913],[-0.770212,52.743628],[-0.772715,52.743797],[-0.773734,52.744188],[-0.775543,52.743536],[-0.776485,52.743934],[-0.778162,52.742477],[-0.779744,52.741799],[-0.780673,52.740575],[-0.783589,52.740388],[-0.787085,52.740955],[-0.789143,52.740024],[-0.793254,52.739491],[-0.794245,52.73798],[-0.79563,52.737013],[-0.801192,52.736743],[-0.803285,52.733969],[-0.805631,52.731623],[-0.810138,52.730031],[-0.812906,52.729476],[-0.813573,52.728964],[-0.813716,52.72748],[-0.815172,52.725805],[-0.816623,52.724649],[-0.818397,52.722642],[-0.817737,52.721562],[-0.818599,52.719585],[-0.820902,52.717638],[-0.821753,52.715678],[-0.815187,52.714973],[-0.814573,52.713495],[-0.813213,52.713471],[-0.813166,52.712296],[-0.800235,52.707798],[-0.803368,52.704649],[-0.802428,52.703265],[-0.799498,52.703506],[-0.797483,52.704061],[-0.796342,52.703627],[-0.795538,52.701548],[-0.796371,52.699986],[-0.795744,52.69685],[-0.793107,52.696172],[-0.790075,52.694384],[-0.786045,52.694741],[-0.785548,52.692849],[-0.786782,52.687202],[-0.785055,52.684713],[-0.783846,52.68195],[-0.783992,52.677],[-0.784235,52.675083],[-0.783223,52.672473],[-0.782116,52.670476],[-0.782195,52.66914],[-0.783366,52.667878],[-0.784537,52.667299],[-0.79014,52.667185],[-0.791125,52.66516],[-0.793593,52.663376],[-0.794519,52.660889],[-0.792918,52.659683],[-0.793876,52.659112],[-0.794888,52.656976],[-0.797408,52.657647],[-0.798815,52.657152],[-0.80158,52.651895],[-0.804375,52.649462],[-0.805498,52.64763],[-0.807078,52.647695],[-0.807399,52.646818],[-0.808693,52.646126],[-0.809708,52.644296],[-0.808748,52.64204],[-0.809901,52.640303],[-0.807984,52.639223],[-0.80413,52.640439],[-0.801752,52.63884],[-0.802017,52.637775],[-0.804437,52.634883],[-0.804464,52.632272],[-0.805142,52.631729],[-0.808793,52.630354],[-0.809923,52.629441],[-0.809852,52.627321],[-0.810958,52.625984],[-0.805637,52.621795],[-0.806017,52.620456],[-0.807924,52.620405],[-0.808932,52.619813],[-0.809842,52.617014],[-0.809527,52.615673],[-0.810916,52.614942],[-0.811321,52.614098],[-0.81478,52.611963],[-0.817454,52.611797],[-0.818827,52.610657],[-0.819984,52.607312],[-0.820003,52.605963],[-0.818826,52.604594],[-0.818545,52.602887],[-0.818983,52.600111],[-0.820951,52.596455],[-0.817474,52.5956],[-0.815962,52.594129],[-0.813298,52.594498],[-0.812061,52.594175],[-0.811773,52.595371],[-0.810098,52.59484],[-0.807584,52.596375],[-0.805285,52.596042],[-0.80238,52.596465],[-0.800833,52.59706],[-0.798518,52.597155],[-0.797179,52.596606],[-0.794815,52.596526],[-0.792436,52.597614],[-0.791235,52.596818],[-0.787053,52.596248],[-0.783958,52.593964],[-0.78378,52.59246],[-0.782323,52.59215],[-0.782325,52.59116],[-0.779105,52.590214],[-0.778889,52.589284],[-0.777459,52.589034],[-0.77515,52.58704],[-0.773908,52.584375],[-0.771223,52.584418],[-0.76803,52.582181],[-0.7671,52.582854],[-0.765949,52.581732],[-0.764753,52.579563],[-0.763404,52.578771],[-0.763693,52.577396],[-0.762502,52.574462],[-0.763008,52.572129],[-0.762476,52.571605],[-0.763829,52.570397],[-0.762538,52.569263],[-0.761092,52.568925],[-0.761427,52.568103],[-0.760028,52.566895],[-0.759894,52.564906],[-0.755722,52.565117],[-0.752294,52.562999],[-0.751737,52.56177],[-0.750089,52.560389],[-0.749966,52.559246],[-0.747279,52.557946],[-0.745087,52.555383],[-0.744918,52.554324],[-0.743453,52.553331],[-0.742397,52.551782],[-0.741083,52.551815],[-0.740899,52.550244],[-0.739554,52.549847],[-0.738937,52.547499],[-0.740424,52.546396],[-0.741535,52.544979],[-0.742667,52.544435],[-0.743724,52.543093],[-0.743396,52.541153],[-0.741631,52.540751],[-0.742207,52.539486],[-0.739692,52.539412],[-0.738013,52.538667],[-0.737175,52.537231],[-0.733358,52.536472],[-0.731294,52.536777],[-0.728541,52.535821],[-0.729807,52.534491],[-0.729848,52.533491],[-0.727635,52.531754],[-0.724769,52.53063],[-0.722555,52.526779],[-0.720905,52.525861],[-0.719727,52.526181],[-0.717683,52.525512],[-0.71683,52.525891],[-0.714386,52.524888],[-0.713659,52.524964],[-0.711917,52.526046],[-0.710022,52.526581],[-0.70956,52.527738],[-0.707987,52.527913],[-0.707832,52.528568],[-0.708895,52.529814],[-0.706737,52.530161],[-0.704654,52.531127],[-0.704864,52.531654],[-0.702818,52.532251],[-0.702882,52.533183],[-0.701439,52.533552],[-0.700275,52.535741],[-0.700544,52.537346],[-0.699188,52.537734],[-0.697952,52.539365],[-0.696237,52.540097],[-0.698271,52.54098],[-0.699237,52.542261],[-0.696967,52.54214],[-0.697714,52.543857],[-0.696753,52.54421],[-0.698028,52.545307],[-0.696622,52.546327],[-0.693965,52.545366],[-0.691984,52.545544],[-0.687618,52.547],[-0.687201,52.547855],[-0.68587,52.548637],[-0.685977,52.549558],[-0.6836,52.552358],[-0.68183,52.551667],[-0.679734,52.553437],[-0.682306,52.553596],[-0.677563,52.558292],[-0.674865,52.558638],[-0.674319,52.559345],[-0.672663,52.559031],[-0.672644,52.560413],[-0.67383,52.560812],[-0.670469,52.562577],[-0.671287,52.564106],[-0.668941,52.564762],[-0.668539,52.565372],[-0.666277,52.566353],[-0.664115,52.56679],[-0.661931,52.567729],[-0.660913,52.568946],[-0.658616,52.568402],[-0.654513,52.570366],[-0.651587,52.570074],[-0.647956,52.571175],[-0.646697,52.572577],[-0.646896,52.573773],[-0.642993,52.573674],[-0.641655,52.572938],[-0.64062,52.571711],[-0.63895,52.571512],[-0.636273,52.572736],[-0.633426,52.573677],[-0.633452,52.574713],[-0.632509,52.576339],[-0.628103,52.576547],[-0.62781,52.578232],[-0.626028,52.578074],[-0.624835,52.57917],[-0.621678,52.579817],[-0.619989,52.579715],[-0.618849,52.58132],[-0.616499,52.582287],[-0.617204,52.583312],[-0.614119,52.58409],[-0.612714,52.583927],[-0.608481,52.584727],[-0.607355,52.585883],[-0.605492,52.586487],[-0.605138,52.587508],[-0.603808,52.587728],[-0.603019,52.588591],[-0.59797,52.588766],[-0.596766,52.588365],[-0.594114,52.588304],[-0.591925,52.587229],[-0.588934,52.586777],[-0.586973,52.587429],[-0.585287,52.58847],[-0.583298,52.591289],[-0.582791,52.593277],[-0.584495,52.593409],[-0.583697,52.59507],[-0.581473,52.595883],[-0.579012,52.59541],[-0.577548,52.593302],[-0.577955,52.591813],[-0.579185,52.590445],[-0.578765,52.588832],[-0.577004,52.587172],[-0.575569,52.586454],[-0.571904,52.585803],[-0.569943,52.58609],[-0.568565,52.585706],[-0.567769,52.586322],[-0.565283,52.586388],[-0.564475,52.585934],[-0.562519,52.586275],[-0.561624,52.587075],[-0.560642,52.588944],[-0.561057,52.591062],[-0.561757,52.5922],[-0.559925,52.593637],[-0.558118,52.594484],[-0.555033,52.594736],[-0.553177,52.594575],[-0.547162,52.593289],[-0.545177,52.593497],[-0.544174,52.592888],[-0.542681,52.594754],[-0.543568,52.59615],[-0.549008,52.598359],[-0.549228,52.599251],[-0.552329,52.600019],[-0.552939,52.601349],[-0.552103,52.602255],[-0.551405,52.604311],[-0.547559,52.606956],[-0.548476,52.60822],[-0.54847,52.609906],[-0.550131,52.612251],[-0.544933,52.614594],[-0.542937,52.614973],[-0.543024,52.61604],[-0.541541,52.616644],[-0.540633,52.617527],[-0.539057,52.617876],[-0.538885,52.618795],[-0.539554,52.619728],[-0.538063,52.621124],[-0.539118,52.623144],[-0.541158,52.62462],[-0.540261,52.625966],[-0.53851,52.627028],[-0.538114,52.627924],[-0.535638,52.627084],[-0.534087,52.628847],[-0.535639,52.629353],[-0.534985,52.630454],[-0.533844,52.630543],[-0.533512,52.631446],[-0.530893,52.632098],[-0.528853,52.631994],[-0.523631,52.634887],[-0.520754,52.637505],[-0.520831,52.638881],[-0.521434,52.639535],[-0.521068,52.640727],[-0.520054,52.641452],[-0.518279,52.641743],[-0.516872,52.642457],[-0.515886,52.642042],[-0.514674,52.643135],[-0.513453,52.642635],[-0.511328,52.643179],[-0.509035,52.642418],[-0.506939,52.64104],[-0.504012,52.640101],[-0.502265,52.6405],[-0.499164,52.639294],[-0.497083,52.640075],[-0.495026,52.640236]]]},"properties":{"LAD22CD":"E06000017","LAD22NM":"Rutland","BNG_E":492992,"BNG_N":308655,"LONG":-0.6263,"LAT":52.66765,"GlobalID":"20f99bb5-8a76-43cf-aae7-2170e7815976"},"id":17}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.086115,52.94857],[-1.088107,52.951583],[-1.089729,52.952544],[-1.091873,52.953164],[-1.092852,52.954405],[-1.092162,52.954836],[-1.096876,52.955521],[-1.094581,52.956724],[-1.096938,52.958038],[-1.101496,52.958938],[-1.102074,52.962494],[-1.103886,52.962124],[-1.104058,52.964083],[-1.109471,52.964153],[-1.112202,52.965283],[-1.114642,52.964624],[-1.120107,52.967825],[-1.119751,52.969369],[-1.120496,52.97457],[-1.121321,52.974908],[-1.125838,52.980611],[-1.125669,52.981607],[-1.123725,52.983466],[-1.126396,52.984792],[-1.132817,52.986515],[-1.136201,52.986523],[-1.13982,52.985947],[-1.142489,52.986288],[-1.140171,52.989538],[-1.140038,52.992592],[-1.138255,52.994844],[-1.140489,52.994802],[-1.141321,52.996577],[-1.146093,52.998378],[-1.148203,52.997242],[-1.149077,52.997677],[-1.152384,52.99664],[-1.153443,52.997437],[-1.150149,52.999079],[-1.1497,53.000243],[-1.147863,53.001107],[-1.147316,53.002796],[-1.143513,53.006501],[-1.146396,53.008248],[-1.147509,53.007286],[-1.150738,53.008371],[-1.151536,53.007657],[-1.154253,53.008253],[-1.154637,53.009518],[-1.158507,53.009642],[-1.157984,53.01062],[-1.162149,53.010664],[-1.162276,53.011632],[-1.165288,53.010422],[-1.166656,53.010194],[-1.167773,53.014273],[-1.170791,53.013966],[-1.184482,53.014446],[-1.183156,53.016761],[-1.182746,53.018569],[-1.184035,53.017607],[-1.184526,53.016386],[-1.185984,53.017402],[-1.188312,53.017962],[-1.189205,53.017316],[-1.195185,53.015451],[-1.198021,53.015975],[-1.199946,53.016813],[-1.201032,53.017885],[-1.203022,53.018335],[-1.206405,53.018691],[-1.209883,53.018143],[-1.211058,53.015001],[-1.212976,53.012688],[-1.222386,53.00838],[-1.224741,53.008614],[-1.225148,53.008096],[-1.222878,53.007367],[-1.221179,53.00743],[-1.218701,53.006485],[-1.220002,53.005372],[-1.220597,53.003406],[-1.216391,53.000417],[-1.213938,52.997396],[-1.217923,52.994067],[-1.219107,52.991499],[-1.212127,52.99036],[-1.208418,52.988827],[-1.203406,52.987543],[-1.210527,52.986163],[-1.213164,52.984744],[-1.213875,52.983719],[-1.215052,52.983144],[-1.217937,52.983984],[-1.22253,52.986027],[-1.224093,52.984162],[-1.222011,52.983325],[-1.223696,52.981682],[-1.224863,52.982247],[-1.226082,52.981169],[-1.235058,52.982546],[-1.239381,52.982654],[-1.242131,52.983588],[-1.245461,52.98522],[-1.246839,52.984543],[-1.246506,52.98311],[-1.244888,52.981186],[-1.243757,52.978803],[-1.242608,52.977826],[-1.240865,52.978044],[-1.239854,52.977603],[-1.239818,52.976501],[-1.236799,52.971502],[-1.235076,52.971476],[-1.231979,52.967643],[-1.237824,52.966465],[-1.239167,52.965398],[-1.239542,52.964014],[-1.241921,52.962151],[-1.242952,52.960805],[-1.243351,52.959468],[-1.245723,52.955908],[-1.246823,52.953099],[-1.245791,52.95094],[-1.244719,52.949523],[-1.241842,52.947671],[-1.23787,52.945758],[-1.235658,52.945284],[-1.234193,52.943536],[-1.234281,52.942078],[-1.231401,52.942274],[-1.226897,52.941083],[-1.22634,52.942419],[-1.224259,52.942464],[-1.222792,52.941406],[-1.22103,52.940805],[-1.218085,52.940593],[-1.216222,52.937189],[-1.214715,52.936084],[-1.215292,52.933992],[-1.209347,52.933308],[-1.20889,52.933999],[-1.20605,52.932767],[-1.205108,52.933397],[-1.202639,52.932022],[-1.200465,52.930254],[-1.198997,52.93123],[-1.196631,52.929649],[-1.19742,52.929121],[-1.182301,52.917336],[-1.187532,52.914788],[-1.191127,52.91363],[-1.197564,52.909963],[-1.199009,52.909479],[-1.205709,52.912442],[-1.208297,52.912648],[-1.210505,52.91227],[-1.212079,52.911485],[-1.213356,52.91018],[-1.21392,52.904415],[-1.21415,52.903308],[-1.2175,52.900651],[-1.216573,52.900165],[-1.213233,52.900744],[-1.211302,52.902612],[-1.202813,52.899163],[-1.198922,52.897758],[-1.195884,52.897247],[-1.195457,52.897858],[-1.19123,52.896636],[-1.192047,52.895058],[-1.178204,52.891311],[-1.178809,52.889887],[-1.176813,52.889029],[-1.174927,52.889658],[-1.173554,52.891731],[-1.173844,52.892153],[-1.171935,52.893383],[-1.170076,52.895854],[-1.170291,52.896692],[-1.168718,52.897862],[-1.167058,52.898136],[-1.165865,52.899107],[-1.163378,52.899584],[-1.162682,52.900274],[-1.158604,52.900062],[-1.158663,52.905534],[-1.16001,52.90969],[-1.159015,52.909848],[-1.158893,52.912791],[-1.155495,52.930493],[-1.154159,52.934198],[-1.152289,52.937026],[-1.150353,52.935841],[-1.148,52.932985],[-1.146394,52.932175],[-1.143802,52.931877],[-1.141884,52.93199],[-1.140062,52.932494],[-1.139253,52.933259],[-1.137593,52.937319],[-1.134613,52.940769],[-1.131596,52.942859],[-1.129576,52.943266],[-1.126245,52.943406],[-1.121388,52.942715],[-1.118032,52.943105],[-1.111957,52.944584],[-1.109162,52.944466],[-1.10394,52.942344],[-1.099677,52.941975],[-1.097594,52.94259],[-1.095331,52.944436],[-1.090067,52.94712],[-1.086115,52.94857]]]},"properties":{"LAD22CD":"E06000018","LAD22NM":"Nottingham","BNG_E":456082,"BNG_N":339969,"LONG":-1.16667,"LAT":52.95419,"GlobalID":"f882deb8-80d6-4f7b-8837-80e6e1738fb0"},"id":18}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.618035,52.306957],[-2.619104,52.307383],[-2.620695,52.307042],[-2.623091,52.308468],[-2.622613,52.309072],[-2.624844,52.311046],[-2.625493,52.312253],[-2.628074,52.313435],[-2.626761,52.314679],[-2.625629,52.315004],[-2.626322,52.316038],[-2.625568,52.316928],[-2.626135,52.317629],[-2.624537,52.318345],[-2.623526,52.319533],[-2.624411,52.319928],[-2.623935,52.321394],[-2.625868,52.321497],[-2.627972,52.320761],[-2.629401,52.320714],[-2.631014,52.322119],[-2.630689,52.322677],[-2.633574,52.324573],[-2.635093,52.32421],[-2.6369,52.324481],[-2.637206,52.32515],[-2.636458,52.326479],[-2.636933,52.327086],[-2.636225,52.328327],[-2.638945,52.32809],[-2.641015,52.328643],[-2.640656,52.331544],[-2.641015,52.332848],[-2.643557,52.333827],[-2.645863,52.333292],[-2.647649,52.331697],[-2.64944,52.332389],[-2.651252,52.332177],[-2.653175,52.333028],[-2.655595,52.333139],[-2.659849,52.334763],[-2.655967,52.337839],[-2.658514,52.338568],[-2.660288,52.341365],[-2.662325,52.340967],[-2.662877,52.341532],[-2.666066,52.342301],[-2.668085,52.341632],[-2.669676,52.341559],[-2.670207,52.339741],[-2.673497,52.337705],[-2.674379,52.335925],[-2.675658,52.334541],[-2.676225,52.333017],[-2.678534,52.329517],[-2.685275,52.324406],[-2.686069,52.319512],[-2.689286,52.316202],[-2.688125,52.314927],[-2.686223,52.314794],[-2.684387,52.315614],[-2.679945,52.3152],[-2.681027,52.313512],[-2.679811,52.312023],[-2.681464,52.311221],[-2.684531,52.311289],[-2.688498,52.310473],[-2.689044,52.310736],[-2.692912,52.310305],[-2.702949,52.31001],[-2.706331,52.310279],[-2.710851,52.308909],[-2.712394,52.308137],[-2.714124,52.308857],[-2.715397,52.310692],[-2.719347,52.312698],[-2.719827,52.316735],[-2.721738,52.317478],[-2.724668,52.319848],[-2.726156,52.32031],[-2.730809,52.320199],[-2.731097,52.319684],[-2.737172,52.319476],[-2.738108,52.320292],[-2.737999,52.321302],[-2.738722,52.322089],[-2.741802,52.322811],[-2.743307,52.323626],[-2.744011,52.325041],[-2.745915,52.326655],[-2.749489,52.327347],[-2.751448,52.326966],[-2.753379,52.327395],[-2.755687,52.328675],[-2.758517,52.32927],[-2.759847,52.330224],[-2.76322,52.331702],[-2.765231,52.333454],[-2.766987,52.336113],[-2.758504,52.334473],[-2.757064,52.336106],[-2.755635,52.336544],[-2.753337,52.335993],[-2.752147,52.335144],[-2.74838,52.334902],[-2.748345,52.335846],[-2.746568,52.336503],[-2.745553,52.337656],[-2.745514,52.338654],[-2.744103,52.338819],[-2.743208,52.339725],[-2.740977,52.340922],[-2.739903,52.340973],[-2.73788,52.342796],[-2.73804,52.344736],[-2.739046,52.345295],[-2.739766,52.346582],[-2.73862,52.347532],[-2.74118,52.349722],[-2.738859,52.349636],[-2.738545,52.350895],[-2.736059,52.352282],[-2.735526,52.353331],[-2.733778,52.354249],[-2.732767,52.355532],[-2.735899,52.356091],[-2.738255,52.356063],[-2.741679,52.356796],[-2.742567,52.357476],[-2.743094,52.35913],[-2.748618,52.359023],[-2.752118,52.359261],[-2.758848,52.358872],[-2.761443,52.359468],[-2.76685,52.359498],[-2.770186,52.358784],[-2.774804,52.358334],[-2.776773,52.358424],[-2.778539,52.358054],[-2.781831,52.358213],[-2.78304,52.358663],[-2.786118,52.35754],[-2.788868,52.357982],[-2.790906,52.357843],[-2.79242,52.356864],[-2.795399,52.359265],[-2.795445,52.361242],[-2.793662,52.362716],[-2.793602,52.363736],[-2.792126,52.36511],[-2.793657,52.367869],[-2.793395,52.368415],[-2.794228,52.371024],[-2.792803,52.372589],[-2.792112,52.374534],[-2.79693,52.3736],[-2.798651,52.37266],[-2.801126,52.373912],[-2.803471,52.374262],[-2.807389,52.375968],[-2.806995,52.377786],[-2.808005,52.378227],[-2.809214,52.37968],[-2.809076,52.383877],[-2.807497,52.385191],[-2.805438,52.386101],[-2.805433,52.388252],[-2.807654,52.388651],[-2.810379,52.387968],[-2.812309,52.389038],[-2.813937,52.389237],[-2.814587,52.390025],[-2.817284,52.390525],[-2.818223,52.39123],[-2.823254,52.39135],[-2.826203,52.39108],[-2.828462,52.391202],[-2.832463,52.391948],[-2.840742,52.392348],[-2.849781,52.395094],[-2.852244,52.395437],[-2.855442,52.395298],[-2.856804,52.394181],[-2.858075,52.393705],[-2.863786,52.388714],[-2.874093,52.386598],[-2.874651,52.386919],[-2.87786,52.386223],[-2.879595,52.386716],[-2.883279,52.386688],[-2.885596,52.385792],[-2.888457,52.385154],[-2.88873,52.383915],[-2.887823,52.382855],[-2.887844,52.381668],[-2.886983,52.381191],[-2.887265,52.380059],[-2.886506,52.378511],[-2.889155,52.37689],[-2.891755,52.376233],[-2.891103,52.375531],[-2.891301,52.374533],[-2.893135,52.374088],[-2.895324,52.374365],[-2.892808,52.379157],[-2.89444,52.380082],[-2.897826,52.379786],[-2.898205,52.38152],[-2.899165,52.381602],[-2.902464,52.382951],[-2.903336,52.384209],[-2.905341,52.385096],[-2.905425,52.385783],[-2.913288,52.386252],[-2.915983,52.385811],[-2.917685,52.386288],[-2.919556,52.384541],[-2.916254,52.383774],[-2.915521,52.382873],[-2.914007,52.382133],[-2.91538,52.381015],[-2.9164,52.380897],[-2.919731,52.378382],[-2.920361,52.376909],[-2.922124,52.377012],[-2.922311,52.375147],[-2.916776,52.374423],[-2.914693,52.373816],[-2.913515,52.372514],[-2.910346,52.372124],[-2.908491,52.370186],[-2.903119,52.370056],[-2.902113,52.369612],[-2.900805,52.36727],[-2.902382,52.367081],[-2.903082,52.367573],[-2.907153,52.368344],[-2.910647,52.368062],[-2.911705,52.368596],[-2.915184,52.368847],[-2.917465,52.367759],[-2.920385,52.368294],[-2.924068,52.367145],[-2.926144,52.366995],[-2.928093,52.366099],[-2.930553,52.362811],[-2.931155,52.362879],[-2.933928,52.361738],[-2.934646,52.362206],[-2.936667,52.362234],[-2.938889,52.361058],[-2.93536,52.358735],[-2.934649,52.35769],[-2.931895,52.35629],[-2.930656,52.354993],[-2.931387,52.353292],[-2.934243,52.354083],[-2.934556,52.353113],[-2.936172,52.352935],[-2.93563,52.351438],[-2.933149,52.350052],[-2.944368,52.349999],[-2.947483,52.349247],[-2.948909,52.349409],[-2.952913,52.34878],[-2.954652,52.349155],[-2.956136,52.34588],[-2.95633,52.344293],[-2.960675,52.339188],[-2.961651,52.335936],[-2.966818,52.33238],[-2.967268,52.330642],[-2.966801,52.329449],[-2.968914,52.328968],[-2.972131,52.329312],[-2.974297,52.328164],[-2.977938,52.327986],[-2.979146,52.327348],[-2.98153,52.326802],[-2.983168,52.325168],[-2.986027,52.323469],[-2.989583,52.323958],[-2.990463,52.324669],[-2.997147,52.324528],[-3.000866,52.321766],[-3.002116,52.319998],[-3.001584,52.317816],[-3.00375,52.311336],[-3.003469,52.309178],[-3.001271,52.306422],[-3.000637,52.304566],[-3.001321,52.299944],[-3.003791,52.297725],[-3.005376,52.294263],[-3.004705,52.291966],[-3.005603,52.290648],[-3.008168,52.290288],[-3.009901,52.288782],[-3.011963,52.288089],[-3.010716,52.286131],[-3.00975,52.285862],[-3.009369,52.282851],[-3.011301,52.279963],[-3.012618,52.279407],[-3.011661,52.277407],[-3.009544,52.277015],[-3.007902,52.277229],[-3.00735,52.276265],[-3.00517,52.276369],[-3.003303,52.275461],[-2.999454,52.274863],[-2.999496,52.275325],[-2.995545,52.274588],[-2.99463,52.273398],[-2.992727,52.272811],[-2.990293,52.273673],[-2.988524,52.272973],[-2.986745,52.27355],[-2.98381,52.272933],[-2.983324,52.273217],[-2.979326,52.273093],[-2.977339,52.273651],[-2.97422,52.273515],[-2.970352,52.273773],[-2.966761,52.273756],[-2.964928,52.274357],[-2.963297,52.273728],[-2.963408,52.272619],[-2.961311,52.272607],[-2.958768,52.27211],[-2.954494,52.27162],[-2.951457,52.270841],[-2.950881,52.270034],[-2.951959,52.269467],[-2.955642,52.27025],[-2.957377,52.269932],[-2.960698,52.268822],[-2.965039,52.268125],[-2.963822,52.264237],[-2.965598,52.26201],[-2.969072,52.26158],[-2.969945,52.261127],[-2.971772,52.261254],[-2.972707,52.260747],[-2.977503,52.259773],[-2.977058,52.260932],[-2.978575,52.262362],[-2.982799,52.262061],[-2.984772,52.262309],[-2.987284,52.261476],[-2.988078,52.260877],[-2.989869,52.260507],[-2.992759,52.261109],[-2.992927,52.261618],[-2.996114,52.261482],[-2.99872,52.264169],[-3.001615,52.263998],[-3.005502,52.264272],[-3.009271,52.263474],[-3.011374,52.262455],[-3.013664,52.261888],[-3.017008,52.261512],[-3.019545,52.260404],[-3.023565,52.259304],[-3.025008,52.258288],[-3.02893,52.258013],[-3.031911,52.257491],[-3.033684,52.256927],[-3.036171,52.25666],[-3.037139,52.256066],[-3.038845,52.253615],[-3.044153,52.25359],[-3.045599,52.253072],[-3.047475,52.250413],[-3.048318,52.250234],[-3.047261,52.24861],[-3.045166,52.247279],[-3.045285,52.246823],[-3.049936,52.245036],[-3.045599,52.245516],[-3.043679,52.245542],[-3.042857,52.244132],[-3.043071,52.242756],[-3.043822,52.241536],[-3.045524,52.240786],[-3.044147,52.239306],[-3.045424,52.238771],[-3.047805,52.23846],[-3.049159,52.238903],[-3.055247,52.237623],[-3.058684,52.236082],[-3.059959,52.236375],[-3.063259,52.236296],[-3.066053,52.23582],[-3.067728,52.236767],[-3.070905,52.235964],[-3.073121,52.235792],[-3.074002,52.2342],[-3.070373,52.229238],[-3.072079,52.228696],[-3.071291,52.227449],[-3.071665,52.225847],[-3.073181,52.223747],[-3.072133,52.222853],[-3.075806,52.219673],[-3.077225,52.219098],[-3.078011,52.216045],[-3.072211,52.215009],[-3.072092,52.213087],[-3.073526,52.213509],[-3.076794,52.213315],[-3.080935,52.210727],[-3.083652,52.210152],[-3.0857,52.208855],[-3.087072,52.207305],[-3.088468,52.206512],[-3.090932,52.205778],[-3.094144,52.203751],[-3.100052,52.202219],[-3.100617,52.201404],[-3.099901,52.199239],[-3.098869,52.198084],[-3.097845,52.197673],[-3.096335,52.194722],[-3.095642,52.189747],[-3.097105,52.186749],[-3.097378,52.184353],[-3.095859,52.183708],[-3.094651,52.183742],[-3.096403,52.181466],[-3.096698,52.180473],[-3.100566,52.17833],[-3.10141,52.177266],[-3.106888,52.176398],[-3.109063,52.175003],[-3.11249,52.173623],[-3.11246,52.170231],[-3.121995,52.166917],[-3.122431,52.16342],[-3.119444,52.162691],[-3.117755,52.161542],[-3.116931,52.160447],[-3.113387,52.1602],[-3.112067,52.159002],[-3.109647,52.159193],[-3.106391,52.158471],[-3.105259,52.157163],[-3.103487,52.156921],[-3.101683,52.157392],[-3.099784,52.156245],[-3.098896,52.154734],[-3.0979,52.15514],[-3.094385,52.155212],[-3.092793,52.156313],[-3.093123,52.156917],[-3.090079,52.157304],[-3.089825,52.158583],[-3.087055,52.160413],[-3.085739,52.160575],[-3.085664,52.161958],[-3.084035,52.163167],[-3.080913,52.162568],[-3.079427,52.161378],[-3.074439,52.160058],[-3.073639,52.15922],[-3.071572,52.15819],[-3.072538,52.155773],[-3.078279,52.152211],[-3.0833,52.148345],[-3.09369,52.144306],[-3.095388,52.143936],[-3.097993,52.143861],[-3.106714,52.141856],[-3.115355,52.13918],[-3.119155,52.138795],[-3.124046,52.138758],[-3.128847,52.137816],[-3.13191,52.13804],[-3.135873,52.137908],[-3.134137,52.133578],[-3.135776,52.133268],[-3.137205,52.131319],[-3.14123,52.129923],[-3.141921,52.127867],[-3.139771,52.126733],[-3.139448,52.125977],[-3.137046,52.123942],[-3.136815,52.12332],[-3.133867,52.123073],[-3.130944,52.124285],[-3.128062,52.12457],[-3.123549,52.121861],[-3.121824,52.121607],[-3.117473,52.122031],[-3.115032,52.121578],[-3.112626,52.120189],[-3.10972,52.119685],[-3.106717,52.11874],[-3.105859,52.11691],[-3.104985,52.116728],[-3.107329,52.115122],[-3.107907,52.11409],[-3.107419,52.112198],[-3.104708,52.107399],[-3.104666,52.106351],[-3.105466,52.105386],[-3.107971,52.104727],[-3.113015,52.104563],[-3.117202,52.104033],[-3.119766,52.104373],[-3.121401,52.103998],[-3.122715,52.103158],[-3.121087,52.094101],[-3.119543,52.091675],[-3.11886,52.088728],[-3.122916,52.082306],[-3.125332,52.079844],[-3.125896,52.078311],[-3.123821,52.077806],[-3.122269,52.076417],[-3.121199,52.076124],[-3.121724,52.074819],[-3.12072,52.074488],[-3.119565,52.072698],[-3.120156,52.071858],[-3.118333,52.070164],[-3.118607,52.068454],[-3.116413,52.065833],[-3.111577,52.064942],[-3.110828,52.063903],[-3.108006,52.062098],[-3.108137,52.061223],[-3.107017,52.059969],[-3.10426,52.058732],[-3.101416,52.058275],[-3.099866,52.057174],[-3.097713,52.054837],[-3.096808,52.054915],[-3.096115,52.053786],[-3.094941,52.052934],[-3.090781,52.050825],[-3.09075,52.050157],[-3.092942,52.048708],[-3.092813,52.047479],[-3.086492,52.041143],[-3.086287,52.040194],[-3.086932,52.039163],[-3.08953,52.03627],[-3.090868,52.035376],[-3.092355,52.033189],[-3.092833,52.031526],[-3.092762,52.028977],[-3.099199,52.022686],[-3.094347,52.018716],[-3.086897,52.013911],[-3.086114,52.009981],[-3.084088,52.004108],[-3.082219,52.002398],[-3.078902,51.997629],[-3.075631,51.995862],[-3.072502,51.992164],[-3.069425,51.989489],[-3.068612,51.987091],[-3.068544,51.984453],[-3.067368,51.983143],[-3.062646,51.980061],[-3.059558,51.978622],[-3.059367,51.977971],[-3.057444,51.976484],[-3.05696,51.975228],[-3.052149,51.972945],[-3.051415,51.972092],[-3.042211,51.968115],[-3.039609,51.966481],[-3.038324,51.965142],[-3.036746,51.961626],[-3.035335,51.959741],[-3.030208,51.95883],[-3.025945,51.957282],[-3.022372,51.95287],[-3.022152,51.950854],[-3.021624,51.950035],[-3.013163,51.944955],[-3.010835,51.940868],[-3.008523,51.938081],[-3.008585,51.936276],[-3.010119,51.933477],[-3.010037,51.93044],[-3.008123,51.927131],[-3.002355,51.924049],[-2.999243,51.923458],[-2.987129,51.925766],[-2.983662,51.92573],[-2.981226,51.926612],[-2.980604,51.927684],[-2.979291,51.926991],[-2.976666,51.92749],[-2.976167,51.926015],[-2.974514,51.925109],[-2.975031,51.924229],[-2.973988,51.922591],[-2.974107,51.921249],[-2.976206,51.92119],[-2.974953,51.918603],[-2.973355,51.917914],[-2.973776,51.916622],[-2.972778,51.914652],[-2.971403,51.913915],[-2.973872,51.911528],[-2.973921,51.910483],[-2.975368,51.909517],[-2.972895,51.908968],[-2.972449,51.907919],[-2.972827,51.906018],[-2.971798,51.904965],[-2.97082,51.905513],[-2.968427,51.904539],[-2.966537,51.905073],[-2.964945,51.904776],[-2.960782,51.906746],[-2.9579,51.906856],[-2.953852,51.906116],[-2.952489,51.906227],[-2.950801,51.90744],[-2.950366,51.90855],[-2.948729,51.909404],[-2.946805,51.908641],[-2.944827,51.909476],[-2.94364,51.909242],[-2.941908,51.909631],[-2.93888,51.911883],[-2.935642,51.912613],[-2.933925,51.915051],[-2.93089,51.914909],[-2.928043,51.913892],[-2.920264,51.917431],[-2.916244,51.917692],[-2.915571,51.918786],[-2.912927,51.920111],[-2.911816,51.919555],[-2.908249,51.921094],[-2.908244,51.921687],[-2.906334,51.922639],[-2.905098,51.9245],[-2.904136,51.925182],[-2.902903,51.925151],[-2.900887,51.925909],[-2.89822,51.925247],[-2.896947,51.925464],[-2.894306,51.925153],[-2.892437,51.925371],[-2.891023,51.926526],[-2.887049,51.928163],[-2.889114,51.931904],[-2.888657,51.933462],[-2.885154,51.934177],[-2.882699,51.934342],[-2.877958,51.933838],[-2.875423,51.933089],[-2.873886,51.931074],[-2.87189,51.930274],[-2.871341,51.927628],[-2.869908,51.926792],[-2.868498,51.926607],[-2.866705,51.926904],[-2.865166,51.926636],[-2.859337,51.927729],[-2.857985,51.927185],[-2.857083,51.925542],[-2.855438,51.925001],[-2.854249,51.923723],[-2.848087,51.923652],[-2.84656,51.923254],[-2.845108,51.922213],[-2.84522,51.921482],[-2.846453,51.92072],[-2.846452,51.919899],[-2.848393,51.919924],[-2.851094,51.918854],[-2.860669,51.917752],[-2.863334,51.917176],[-2.863785,51.915966],[-2.861872,51.913979],[-2.860057,51.913853],[-2.858339,51.914945],[-2.855448,51.914445],[-2.855348,51.913401],[-2.854114,51.913302],[-2.853711,51.915735],[-2.851224,51.91601],[-2.848568,51.915869],[-2.848131,51.916813],[-2.846387,51.916523],[-2.846521,51.915656],[-2.84515,51.915222],[-2.844287,51.917135],[-2.84202,51.917754],[-2.840382,51.915962],[-2.840157,51.914745],[-2.837102,51.913829],[-2.837392,51.911573],[-2.836989,51.910177],[-2.836056,51.909614],[-2.836905,51.908348],[-2.836102,51.907272],[-2.836103,51.906051],[-2.834362,51.906136],[-2.832597,51.905181],[-2.825533,51.905012],[-2.821133,51.905432],[-2.819408,51.903809],[-2.81784,51.903868],[-2.816656,51.902066],[-2.81674,51.900962],[-2.815806,51.899089],[-2.8139,51.897786],[-2.808671,51.896228],[-2.805365,51.895566],[-2.802935,51.894135],[-2.801896,51.892601],[-2.801974,51.890472],[-2.799067,51.890418],[-2.796932,51.888389],[-2.793669,51.888199],[-2.791553,51.886507],[-2.78747,51.884991],[-2.785185,51.884767],[-2.784837,51.8843],[-2.779445,51.884073],[-2.776795,51.881668],[-2.775717,51.882117],[-2.769339,51.880276],[-2.770234,51.879625],[-2.770892,51.878165],[-2.772723,51.876795],[-2.774147,51.874451],[-2.776912,51.873217],[-2.777294,51.871888],[-2.776656,51.870642],[-2.777478,51.869614],[-2.779087,51.868816],[-2.778799,51.865859],[-2.7761,51.863684],[-2.772311,51.862204],[-2.769508,51.862359],[-2.768717,51.86057],[-2.767207,51.860163],[-2.766378,51.858797],[-2.764911,51.858034],[-2.764277,51.857129],[-2.76452,51.856121],[-2.763418,51.855653],[-2.762367,51.853632],[-2.761008,51.853128],[-2.760411,51.851573],[-2.757699,51.849394],[-2.757642,51.847449],[-2.75688,51.845906],[-2.754469,51.845912],[-2.751454,51.845351],[-2.751036,51.844991],[-2.746326,51.8446],[-2.74391,51.843166],[-2.742836,51.841752],[-2.741485,51.842567],[-2.740263,51.841316],[-2.741822,51.838578],[-2.7409,51.838645],[-2.738844,51.836619],[-2.735538,51.839442],[-2.73345,51.840009],[-2.731543,51.841392],[-2.729756,51.840214],[-2.727581,51.840142],[-2.725783,51.843799],[-2.719605,51.848919],[-2.717737,51.847551],[-2.71859,51.846882],[-2.718201,51.845496],[-2.7186,51.844499],[-2.716102,51.840735],[-2.712661,51.839534],[-2.710223,51.839069],[-2.706738,51.83971],[-2.707144,51.843044],[-2.705113,51.845696],[-2.703397,51.844571],[-2.699616,51.843479],[-2.697337,51.844798],[-2.695527,51.84209],[-2.693425,51.837701],[-2.693061,51.835855],[-2.693366,51.833873],[-2.687003,51.833056],[-2.686199,51.83605],[-2.686772,51.836379],[-2.682857,51.838456],[-2.682616,51.837765],[-2.679596,51.837553],[-2.676821,51.83635],[-2.671529,51.836248],[-2.666198,51.835624],[-2.660142,51.833699],[-2.658195,51.83271],[-2.65761,51.83153],[-2.657914,51.828169],[-2.656857,51.826881],[-2.653877,51.826085],[-2.650401,51.826125],[-2.648384,51.826808],[-2.647241,51.827848],[-2.643415,51.834645],[-2.641048,51.836601],[-2.640476,51.83623],[-2.638384,51.837556],[-2.636307,51.839491],[-2.635643,51.841136],[-2.635726,51.842866],[-2.632929,51.84031],[-2.630224,51.83889],[-2.628817,51.839144],[-2.625467,51.838964],[-2.624467,51.839491],[-2.621594,51.843325],[-2.615399,51.84547],[-2.609434,51.846797],[-2.606401,51.852026],[-2.604443,51.854662],[-2.601217,51.856216],[-2.59954,51.856531],[-2.596186,51.85622],[-2.593065,51.855209],[-2.591619,51.854192],[-2.588946,51.851351],[-2.586198,51.849785],[-2.58211,51.849728],[-2.580524,51.850437],[-2.578822,51.851849],[-2.578806,51.85321],[-2.579518,51.854381],[-2.583103,51.858234],[-2.585219,51.85993],[-2.580641,51.861671],[-2.577703,51.861434],[-2.5761,51.86255],[-2.57307,51.86249],[-2.569349,51.863016],[-2.568135,51.86261],[-2.564001,51.863412],[-2.561657,51.864292],[-2.55878,51.863875],[-2.556398,51.862912],[-2.553797,51.863156],[-2.550089,51.862775],[-2.548277,51.862036],[-2.546706,51.860791],[-2.544,51.860244],[-2.534052,51.860396],[-2.531624,51.860772],[-2.531122,51.863021],[-2.526771,51.862983],[-2.522566,51.864821],[-2.52185,51.866177],[-2.520113,51.86807],[-2.519346,51.870874],[-2.517943,51.873395],[-2.513274,51.880105],[-2.508625,51.885169],[-2.506686,51.885374],[-2.505431,51.886116],[-2.503546,51.886642],[-2.501868,51.886312],[-2.500639,51.884363],[-2.501179,51.881987],[-2.498188,51.881987],[-2.494656,51.88424],[-2.493861,51.880003],[-2.488813,51.880532],[-2.487795,51.880418],[-2.486729,51.884716],[-2.485044,51.884931],[-2.482394,51.885886],[-2.480013,51.885825],[-2.477879,51.884962],[-2.473408,51.885554],[-2.47374,51.887347],[-2.471439,51.889209],[-2.468651,51.890777],[-2.467819,51.892013],[-2.465214,51.892991],[-2.462523,51.892917],[-2.456162,51.893416],[-2.44983,51.894404],[-2.448921,51.89481],[-2.44601,51.893995],[-2.443669,51.895787],[-2.439656,51.897074],[-2.440836,51.898524],[-2.443172,51.898453],[-2.444303,51.898921],[-2.443786,51.900858],[-2.44238,51.901899],[-2.440154,51.902442],[-2.442208,51.904004],[-2.442469,51.905032],[-2.444057,51.905839],[-2.441755,51.907193],[-2.443041,51.908505],[-2.44249,51.908893],[-2.444432,51.90982],[-2.443132,51.911966],[-2.444476,51.913778],[-2.44769,51.915663],[-2.448258,51.918721],[-2.449325,51.919121],[-2.451578,51.91875],[-2.452226,51.919238],[-2.455023,51.919348],[-2.459927,51.923433],[-2.461294,51.925054],[-2.466043,51.927974],[-2.466206,51.931425],[-2.467879,51.93738],[-2.465831,51.937272],[-2.465433,51.938005],[-2.463584,51.938569],[-2.463385,51.939269],[-2.464271,51.940251],[-2.464942,51.942764],[-2.463729,51.943642],[-2.464862,51.944589],[-2.465458,51.946766],[-2.464481,51.948501],[-2.466028,51.950359],[-2.465487,51.951696],[-2.467819,51.95195],[-2.470526,51.953117],[-2.472224,51.955455],[-2.473729,51.956538],[-2.474598,51.955745],[-2.475759,51.956331],[-2.479238,51.955727],[-2.481096,51.956106],[-2.482439,51.95567],[-2.483884,51.956774],[-2.486108,51.95742],[-2.487521,51.956874],[-2.490188,51.954979],[-2.493117,51.957351],[-2.49752,51.958788],[-2.496625,51.960325],[-2.500907,51.960609],[-2.499873,51.961539],[-2.499946,51.962562],[-2.49903,51.963718],[-2.497567,51.963794],[-2.495762,51.964422],[-2.493382,51.963893],[-2.492437,51.966732],[-2.493013,51.968608],[-2.493918,51.970239],[-2.495131,51.97112],[-2.496501,51.976114],[-2.496359,51.977513],[-2.494913,51.981075],[-2.493128,51.981772],[-2.491303,51.981913],[-2.49115,51.983404],[-2.490323,51.983508],[-2.489686,51.986247],[-2.488638,51.987408],[-2.486769,51.988025],[-2.482603,51.988224],[-2.481643,51.989501],[-2.480249,51.990524],[-2.480027,51.991351],[-2.477117,51.992775],[-2.474871,51.992814],[-2.472208,51.994383],[-2.47098,51.994777],[-2.475416,51.997506],[-2.475144,51.998204],[-2.476938,51.99926],[-2.477647,52.000151],[-2.485497,52.000332],[-2.487287,52.00341],[-2.49157,52.006509],[-2.492111,52.008295],[-2.491253,52.010491],[-2.489562,52.011292],[-2.487634,52.011481],[-2.487131,52.012298],[-2.484622,52.01254],[-2.480366,52.016061],[-2.477416,52.019867],[-2.478932,52.02253],[-2.473864,52.023819],[-2.471187,52.023808],[-2.470753,52.02329],[-2.468488,52.02378],[-2.466205,52.023723],[-2.46408,52.023274],[-2.462571,52.020319],[-2.463633,52.018833],[-2.462503,52.017352],[-2.462481,52.016248],[-2.463505,52.015605],[-2.463542,52.014411],[-2.461981,52.014485],[-2.460272,52.015645],[-2.456089,52.014799],[-2.447736,52.015769],[-2.446019,52.015272],[-2.44408,52.015735],[-2.443452,52.015114],[-2.44058,52.014462],[-2.437824,52.014337],[-2.436116,52.014574],[-2.435163,52.013066],[-2.433724,52.012268],[-2.435585,52.01047],[-2.434104,52.009553],[-2.433635,52.007871],[-2.433823,52.006846],[-2.435658,52.005591],[-2.435537,52.003633],[-2.435948,52.002438],[-2.435719,51.999386],[-2.435006,51.998961],[-2.435642,51.997941],[-2.437153,51.997532],[-2.436608,51.996843],[-2.432405,51.996015],[-2.427139,51.995801],[-2.422822,51.994341],[-2.421013,51.994241],[-2.418072,51.994594],[-2.41623,51.994162],[-2.413196,51.99409],[-2.402975,51.996135],[-2.399019,51.996146],[-2.399424,51.999325],[-2.396778,52.001074],[-2.395102,52.003732],[-2.394899,52.004689],[-2.395565,52.005745],[-2.394882,52.006755],[-2.394703,52.009868],[-2.394075,52.011791],[-2.392892,52.012959],[-2.386983,52.012167],[-2.379954,52.013848],[-2.375334,52.01599],[-2.368673,52.017294],[-2.365198,52.017482],[-2.363424,52.018096],[-2.361473,52.018183],[-2.357024,52.01922],[-2.356249,52.019685],[-2.35441,52.019681],[-2.352621,52.020361],[-2.351379,52.021359],[-2.350823,52.022471],[-2.35205,52.024863],[-2.350649,52.029961],[-2.350268,52.030804],[-2.348163,52.031954],[-2.347533,52.033282],[-2.347985,52.03582],[-2.349919,52.036516],[-2.348514,52.037966],[-2.348237,52.041176],[-2.348953,52.048019],[-2.348595,52.048911],[-2.346951,52.049926],[-2.347393,52.053022],[-2.350082,52.053719],[-2.350211,52.054773],[-2.351548,52.056375],[-2.350855,52.057371],[-2.349687,52.057871],[-2.347455,52.061606],[-2.344377,52.061129],[-2.343214,52.062593],[-2.341464,52.063943],[-2.339425,52.068924],[-2.339261,52.069712],[-2.339911,52.071616],[-2.339195,52.074528],[-2.34005,52.075899],[-2.340504,52.078541],[-2.338473,52.080547],[-2.338729,52.082537],[-2.338089,52.086454],[-2.338504,52.087909],[-2.337963,52.089885],[-2.338502,52.092429],[-2.338298,52.095449],[-2.340371,52.096515],[-2.341106,52.0957],[-2.342988,52.095355],[-2.349118,52.095646],[-2.349586,52.099441],[-2.350438,52.100107],[-2.352148,52.103486],[-2.350129,52.104156],[-2.34999,52.106088],[-2.351588,52.109725],[-2.353658,52.112967],[-2.352631,52.114193],[-2.354537,52.119384],[-2.355603,52.121855],[-2.355393,52.12307],[-2.356204,52.12416],[-2.35609,52.127083],[-2.355548,52.128217],[-2.354448,52.12872],[-2.352771,52.128518],[-2.350536,52.129122],[-2.344608,52.132591],[-2.348363,52.136701],[-2.348547,52.138164],[-2.350173,52.140895],[-2.351835,52.142832],[-2.351402,52.144624],[-2.356454,52.14847],[-2.358722,52.151896],[-2.362525,52.151144],[-2.365231,52.151003],[-2.366527,52.151528],[-2.369695,52.152119],[-2.371584,52.152095],[-2.372672,52.152632],[-2.375423,52.152818],[-2.37693,52.153604],[-2.377927,52.154653],[-2.379321,52.155112],[-2.381291,52.154225],[-2.384489,52.15381],[-2.386361,52.152608],[-2.388056,52.152049],[-2.388627,52.150612],[-2.389886,52.150948],[-2.390423,52.150004],[-2.391743,52.149176],[-2.392381,52.147644],[-2.393972,52.146749],[-2.395339,52.146976],[-2.396958,52.147889],[-2.400189,52.148257],[-2.401857,52.148087],[-2.406796,52.145942],[-2.409646,52.145972],[-2.412395,52.145377],[-2.415195,52.14524],[-2.415485,52.145879],[-2.417672,52.147557],[-2.421317,52.149619],[-2.422371,52.151497],[-2.424706,52.153559],[-2.425077,52.154471],[-2.423218,52.155538],[-2.424918,52.157137],[-2.426993,52.15837],[-2.427285,52.160815],[-2.426464,52.161477],[-2.431073,52.165189],[-2.432884,52.167257],[-2.435175,52.168217],[-2.434621,52.169827],[-2.435423,52.171004],[-2.432996,52.172033],[-2.430663,52.171867],[-2.429067,52.172337],[-2.426292,52.17253],[-2.422011,52.172413],[-2.422798,52.174744],[-2.425462,52.177017],[-2.423246,52.17987],[-2.420303,52.180445],[-2.418956,52.181663],[-2.41665,52.182171],[-2.415068,52.183262],[-2.41611,52.185202],[-2.418129,52.185938],[-2.417896,52.186576],[-2.419147,52.187972],[-2.417693,52.189449],[-2.414636,52.190214],[-2.413738,52.191923],[-2.411101,52.193288],[-2.410343,52.195458],[-2.408711,52.196365],[-2.409062,52.199509],[-2.40832,52.200594],[-2.408543,52.20154],[-2.406938,52.203205],[-2.404905,52.202761],[-2.403219,52.201774],[-2.40048,52.201717],[-2.400384,52.2023],[-2.402217,52.20531],[-2.402659,52.20715],[-2.39917,52.206933],[-2.397322,52.205775],[-2.396095,52.205686],[-2.395195,52.206893],[-2.393477,52.207661],[-2.392443,52.209391],[-2.392894,52.210328],[-2.39701,52.212352],[-2.399853,52.214518],[-2.401579,52.215401],[-2.401553,52.217389],[-2.403559,52.219589],[-2.404041,52.221248],[-2.402969,52.221774],[-2.400728,52.221372],[-2.397648,52.221677],[-2.397335,52.222319],[-2.398357,52.223833],[-2.396509,52.224764],[-2.393773,52.224249],[-2.389586,52.222074],[-2.388053,52.221888],[-2.386456,52.222233],[-2.385302,52.222993],[-2.384247,52.224592],[-2.3844,52.225235],[-2.385911,52.226451],[-2.38743,52.22634],[-2.389398,52.22734],[-2.388926,52.22935],[-2.390292,52.230352],[-2.392068,52.230325],[-2.393288,52.231001],[-2.395241,52.231034],[-2.396479,52.231475],[-2.399404,52.231833],[-2.402092,52.23106],[-2.405311,52.231263],[-2.406903,52.230787],[-2.409373,52.230643],[-2.411344,52.231454],[-2.414209,52.231723],[-2.41673,52.233767],[-2.420027,52.235271],[-2.423065,52.23726],[-2.426292,52.236123],[-2.433232,52.237043],[-2.434619,52.236954],[-2.437144,52.237615],[-2.441799,52.236017],[-2.444083,52.235634],[-2.445188,52.236378],[-2.450531,52.236232],[-2.450902,52.236714],[-2.456011,52.235742],[-2.462214,52.235041],[-2.464858,52.234374],[-2.466503,52.237642],[-2.471219,52.240529],[-2.474702,52.241359],[-2.473649,52.250725],[-2.47259,52.252821],[-2.468099,52.256038],[-2.467681,52.255952],[-2.465087,52.25772],[-2.461834,52.258736],[-2.459764,52.260666],[-2.456927,52.261196],[-2.455126,52.262685],[-2.4529,52.263222],[-2.449831,52.263332],[-2.441671,52.265388],[-2.440477,52.266316],[-2.437877,52.266654],[-2.436928,52.26817],[-2.43707,52.268829],[-2.434338,52.269004],[-2.430767,52.270432],[-2.427996,52.27061],[-2.429838,52.271457],[-2.430621,52.272768],[-2.432155,52.273075],[-2.434385,52.275346],[-2.434103,52.275781],[-2.438181,52.276259],[-2.438449,52.277099],[-2.440189,52.277444],[-2.440239,52.278755],[-2.441762,52.278399],[-2.4441,52.278565],[-2.448154,52.280648],[-2.451263,52.282811],[-2.451403,52.285083],[-2.455836,52.284844],[-2.463576,52.285192],[-2.465309,52.284104],[-2.467456,52.283327],[-2.472212,52.285588],[-2.475961,52.285637],[-2.483382,52.284375],[-2.483605,52.283587],[-2.485016,52.282319],[-2.487033,52.281337],[-2.489167,52.280955],[-2.492007,52.278176],[-2.4937,52.278372],[-2.495667,52.277606],[-2.497232,52.277387],[-2.500774,52.277755],[-2.503113,52.27745],[-2.503562,52.275544],[-2.50423,52.275155],[-2.504067,52.272279],[-2.50098,52.269226],[-2.499336,52.268597],[-2.496302,52.266669],[-2.493598,52.264035],[-2.493355,52.263],[-2.49468,52.261301],[-2.495651,52.256941],[-2.50136,52.257436],[-2.506763,52.256625],[-2.510179,52.256459],[-2.513638,52.255739],[-2.515518,52.256007],[-2.518391,52.254274],[-2.520998,52.252113],[-2.522441,52.251728],[-2.523394,52.249374],[-2.525139,52.248847],[-2.52582,52.248097],[-2.527432,52.249215],[-2.528868,52.249676],[-2.529416,52.250719],[-2.528994,52.251697],[-2.531673,52.253277],[-2.534132,52.25129],[-2.535814,52.250767],[-2.539016,52.251529],[-2.538978,52.252607],[-2.541088,52.253021],[-2.54795,52.249698],[-2.552501,52.251281],[-2.552701,52.252363],[-2.554592,52.251997],[-2.559649,52.251945],[-2.567371,52.250141],[-2.569163,52.250833],[-2.569985,52.252816],[-2.574206,52.252731],[-2.574573,52.249625],[-2.576141,52.247753],[-2.580655,52.248305],[-2.585439,52.248298],[-2.587304,52.247763],[-2.588678,52.246275],[-2.589664,52.245802],[-2.592832,52.245282],[-2.596468,52.244258],[-2.599843,52.243798],[-2.601914,52.243858],[-2.604374,52.242822],[-2.608529,52.243762],[-2.610252,52.243701],[-2.610656,52.242599],[-2.614908,52.2418],[-2.616272,52.243348],[-2.620472,52.242043],[-2.621595,52.242],[-2.628871,52.240349],[-2.630515,52.243706],[-2.631461,52.243786],[-2.634266,52.247231],[-2.632843,52.247689],[-2.633245,52.249688],[-2.634233,52.250755],[-2.631106,52.252938],[-2.63136,52.254198],[-2.63088,52.257453],[-2.627878,52.260204],[-2.628294,52.26116],[-2.623007,52.262235],[-2.616264,52.264691],[-2.614395,52.265716],[-2.612494,52.267792],[-2.609952,52.269305],[-2.610627,52.271244],[-2.607814,52.273028],[-2.606731,52.275665],[-2.604386,52.275495],[-2.601661,52.276488],[-2.599106,52.276086],[-2.596449,52.276593],[-2.596934,52.278188],[-2.599554,52.279848],[-2.597507,52.280346],[-2.597931,52.281618],[-2.600439,52.281825],[-2.598967,52.283542],[-2.600525,52.284942],[-2.604307,52.286621],[-2.612607,52.28676],[-2.614441,52.286459],[-2.616611,52.285315],[-2.616549,52.28283],[-2.618449,52.282228],[-2.620636,52.282855],[-2.623202,52.284565],[-2.623436,52.287047],[-2.624888,52.287581],[-2.626257,52.288897],[-2.629455,52.287278],[-2.631689,52.287071],[-2.635375,52.286077],[-2.639877,52.286375],[-2.642219,52.288141],[-2.644159,52.29021],[-2.644532,52.292219],[-2.644221,52.29375],[-2.648199,52.293932],[-2.652419,52.295247],[-2.655974,52.299133],[-2.657208,52.299216],[-2.65944,52.300192],[-2.661053,52.300395],[-2.663206,52.303937],[-2.661621,52.304833],[-2.659401,52.305365],[-2.658371,52.304997],[-2.654018,52.305272],[-2.652908,52.305806],[-2.647555,52.305281],[-2.645378,52.306199],[-2.643226,52.308178],[-2.63876,52.307696],[-2.637257,52.308148],[-2.636325,52.308953],[-2.633833,52.307396],[-2.633338,52.306069],[-2.631656,52.305686],[-2.629717,52.306658],[-2.626929,52.306128],[-2.623115,52.306463],[-2.619074,52.305632],[-2.618035,52.306957]]]},"properties":{"LAD22CD":"E06000019","LAD22NM":"Herefordshire, County of","BNG_E":349434,"BNG_N":242834,"LONG":-2.73931,"LAT":52.08154,"GlobalID":"0981d94f-a902-46d0-9839-d2a845bb83ab"},"id":19}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.416347,52.827006],[-2.420094,52.825745],[-2.422391,52.825393],[-2.423805,52.823968],[-2.427433,52.822869],[-2.428224,52.825066],[-2.428084,52.827475],[-2.427577,52.828378],[-2.430209,52.828154],[-2.432661,52.827054],[-2.434882,52.824638],[-2.436503,52.823615],[-2.438664,52.824297],[-2.440473,52.820772],[-2.443334,52.82146],[-2.446463,52.821812],[-2.456138,52.821695],[-2.459649,52.822006],[-2.462707,52.821928],[-2.469101,52.823044],[-2.470254,52.821749],[-2.47163,52.821696],[-2.472947,52.820753],[-2.472573,52.820064],[-2.470773,52.819256],[-2.468633,52.811545],[-2.466411,52.808697],[-2.461637,52.803759],[-2.461399,52.800167],[-2.457746,52.79853],[-2.459371,52.796795],[-2.460926,52.795939],[-2.46136,52.795002],[-2.463198,52.79447],[-2.463471,52.792746],[-2.461752,52.791536],[-2.459563,52.79119],[-2.458267,52.788111],[-2.456838,52.786417],[-2.457426,52.78564],[-2.456959,52.784356],[-2.457605,52.783406],[-2.45965,52.783299],[-2.460663,52.78393],[-2.462917,52.784461],[-2.464319,52.784416],[-2.467515,52.783648],[-2.470951,52.784289],[-2.473508,52.781815],[-2.472632,52.780454],[-2.475557,52.781203],[-2.476358,52.780962],[-2.479817,52.782216],[-2.483029,52.780571],[-2.485421,52.780254],[-2.488213,52.780612],[-2.488411,52.781535],[-2.487121,52.782449],[-2.489402,52.783292],[-2.489956,52.783922],[-2.486914,52.785379],[-2.484401,52.787805],[-2.478728,52.797868],[-2.477121,52.799379],[-2.478478,52.801528],[-2.483581,52.800017],[-2.486768,52.799836],[-2.488875,52.800915],[-2.488573,52.802065],[-2.486507,52.805246],[-2.490002,52.804516],[-2.490247,52.802248],[-2.492405,52.802349],[-2.49895,52.800776],[-2.498799,52.800417],[-2.501254,52.799286],[-2.501598,52.797365],[-2.503028,52.796604],[-2.507308,52.796733],[-2.509968,52.7984],[-2.511722,52.798511],[-2.514507,52.796191],[-2.516141,52.795556],[-2.518,52.79587],[-2.521126,52.799039],[-2.523254,52.797705],[-2.524493,52.795671],[-2.525545,52.795095],[-2.525351,52.793623],[-2.526413,52.792568],[-2.527112,52.790641],[-2.528166,52.790123],[-2.529415,52.787112],[-2.53234,52.785711],[-2.533406,52.786175],[-2.536371,52.785899],[-2.537515,52.785109],[-2.538888,52.786082],[-2.53785,52.787558],[-2.538241,52.78879],[-2.53748,52.789911],[-2.535945,52.790808],[-2.53408,52.792393],[-2.53345,52.793422],[-2.53381,52.794119],[-2.536293,52.794894],[-2.537894,52.793962],[-2.540026,52.793821],[-2.542321,52.79583],[-2.543921,52.796492],[-2.544061,52.797127],[-2.547302,52.797397],[-2.549109,52.801182],[-2.55099,52.801374],[-2.551396,52.802335],[-2.552943,52.802933],[-2.554898,52.802158],[-2.554972,52.800883],[-2.557008,52.800771],[-2.5594,52.799184],[-2.561315,52.799039],[-2.562764,52.799517],[-2.565813,52.799713],[-2.56775,52.801834],[-2.570537,52.803004],[-2.571067,52.804514],[-2.56942,52.805068],[-2.573836,52.80629],[-2.577012,52.806404],[-2.577173,52.805415],[-2.581242,52.806027],[-2.582786,52.805625],[-2.586562,52.80271],[-2.589008,52.801646],[-2.590285,52.800684],[-2.590633,52.799594],[-2.592509,52.799233],[-2.591839,52.798519],[-2.595346,52.797626],[-2.598007,52.797969],[-2.593689,52.795741],[-2.592565,52.793561],[-2.593361,52.791813],[-2.594369,52.791027],[-2.593697,52.790105],[-2.593373,52.788331],[-2.594226,52.784189],[-2.592696,52.781718],[-2.589838,52.77946],[-2.590317,52.778123],[-2.591249,52.778132],[-2.592245,52.77685],[-2.597749,52.778397],[-2.598878,52.778456],[-2.603025,52.777103],[-2.605852,52.777818],[-2.607029,52.777727],[-2.615131,52.7752],[-2.617601,52.775271],[-2.61945,52.776318],[-2.621003,52.776522],[-2.622648,52.773455],[-2.625615,52.771987],[-2.626382,52.769404],[-2.627536,52.768642],[-2.629245,52.766114],[-2.628704,52.765279],[-2.628587,52.76291],[-2.632513,52.760474],[-2.632331,52.759591],[-2.635256,52.75903],[-2.636702,52.761958],[-2.635818,52.762637],[-2.636519,52.763931],[-2.640462,52.765128],[-2.641233,52.766559],[-2.643129,52.767085],[-2.649463,52.764854],[-2.648979,52.763906],[-2.654733,52.762424],[-2.656542,52.761294],[-2.658118,52.762322],[-2.663416,52.760441],[-2.662441,52.758254],[-2.661032,52.757455],[-2.660954,52.756433],[-2.662129,52.75534],[-2.661656,52.754708],[-2.663726,52.752706],[-2.66191,52.750573],[-2.663362,52.74997],[-2.665649,52.751503],[-2.667362,52.750198],[-2.66551,52.745918],[-2.663873,52.745318],[-2.664136,52.744658],[-2.662706,52.743778],[-2.659581,52.743876],[-2.660695,52.742215],[-2.663733,52.740044],[-2.66439,52.738293],[-2.664121,52.736292],[-2.661428,52.734861],[-2.660396,52.733336],[-2.660258,52.731644],[-2.658866,52.731655],[-2.658277,52.730711],[-2.654033,52.730657],[-2.644608,52.729241],[-2.641465,52.727575],[-2.636032,52.726536],[-2.632025,52.726804],[-2.630234,52.726261],[-2.627851,52.724707],[-2.626987,52.721558],[-2.626189,52.720595],[-2.624284,52.719503],[-2.621871,52.720866],[-2.618918,52.721878],[-2.615123,52.718954],[-2.613436,52.719534],[-2.60998,52.71942],[-2.607468,52.72004],[-2.606233,52.719543],[-2.603269,52.719167],[-2.601966,52.719687],[-2.598935,52.718373],[-2.59742,52.718251],[-2.597727,52.717334],[-2.596939,52.714472],[-2.597843,52.713927],[-2.599504,52.714113],[-2.602075,52.713012],[-2.602254,52.712339],[-2.604951,52.709733],[-2.60413,52.708442],[-2.605992,52.707578],[-2.605422,52.70678],[-2.609206,52.705689],[-2.610883,52.704723],[-2.613942,52.704384],[-2.619329,52.704479],[-2.624323,52.703417],[-2.623489,52.703027],[-2.623379,52.700702],[-2.62255,52.699032],[-2.620212,52.697997],[-2.61716,52.698383],[-2.612717,52.696799],[-2.608882,52.694129],[-2.608276,52.692914],[-2.60838,52.691824],[-2.603331,52.689358],[-2.601252,52.689404],[-2.597737,52.689976],[-2.596671,52.690567],[-2.594892,52.687817],[-2.591829,52.686226],[-2.588562,52.683749],[-2.586792,52.684166],[-2.582733,52.682066],[-2.581949,52.682153],[-2.578839,52.680996],[-2.57719,52.680742],[-2.576314,52.679736],[-2.575298,52.680065],[-2.574342,52.679119],[-2.568175,52.676973],[-2.562686,52.674136],[-2.555648,52.671098],[-2.549413,52.666288],[-2.55161,52.664856],[-2.553739,52.664482],[-2.554785,52.662681],[-2.554219,52.661553],[-2.554209,52.660023],[-2.546689,52.658073],[-2.54632,52.656479],[-2.548317,52.655275],[-2.546745,52.654413],[-2.544982,52.652874],[-2.541675,52.652671],[-2.535054,52.650568],[-2.530053,52.649482],[-2.527097,52.647153],[-2.523806,52.646263],[-2.519169,52.643516],[-2.51783,52.643222],[-2.516664,52.642037],[-2.514911,52.641072],[-2.512736,52.640662],[-2.510146,52.638406],[-2.510729,52.636568],[-2.508658,52.635072],[-2.505624,52.632392],[-2.500855,52.62969],[-2.501774,52.629019],[-2.496209,52.629038],[-2.492061,52.628109],[-2.489369,52.626332],[-2.486453,52.625133],[-2.486468,52.623875],[-2.483619,52.625097],[-2.48132,52.624788],[-2.478639,52.623442],[-2.476044,52.623009],[-2.47452,52.623795],[-2.47239,52.623604],[-2.472028,52.621934],[-2.469716,52.622468],[-2.466354,52.624091],[-2.464563,52.623796],[-2.457816,52.620581],[-2.454826,52.618559],[-2.451018,52.616979],[-2.444251,52.615036],[-2.442003,52.615739],[-2.438041,52.614608],[-2.437677,52.615355],[-2.43577,52.615552],[-2.434047,52.618221],[-2.43706,52.61935],[-2.435593,52.622261],[-2.436635,52.627094],[-2.428699,52.629701],[-2.424064,52.632143],[-2.42066,52.633394],[-2.418295,52.633775],[-2.41945,52.636215],[-2.418918,52.639428],[-2.418466,52.639902],[-2.416467,52.644901],[-2.418755,52.645797],[-2.419925,52.647567],[-2.417579,52.650348],[-2.419029,52.662892],[-2.409939,52.671647],[-2.408031,52.678985],[-2.40689,52.681164],[-2.405438,52.681603],[-2.403422,52.682762],[-2.401964,52.682496],[-2.401211,52.684535],[-2.402325,52.686674],[-2.401393,52.689362],[-2.403548,52.69044],[-2.405242,52.694864],[-2.401525,52.694949],[-2.403592,52.698802],[-2.403578,52.701378],[-2.40242,52.703064],[-2.402501,52.703905],[-2.401033,52.704633],[-2.392759,52.711489],[-2.393105,52.713542],[-2.39276,52.71432],[-2.387151,52.717706],[-2.385191,52.720081],[-2.382597,52.722078],[-2.381006,52.724332],[-2.380494,52.726904],[-2.379496,52.728634],[-2.379666,52.729629],[-2.378863,52.730634],[-2.379487,52.732044],[-2.37907,52.735358],[-2.376811,52.739328],[-2.375073,52.740809],[-2.370966,52.740248],[-2.368822,52.740464],[-2.370045,52.739033],[-2.371874,52.738528],[-2.368454,52.735269],[-2.367295,52.733163],[-2.362948,52.733737],[-2.357929,52.731213],[-2.352454,52.730863],[-2.343617,52.731168],[-2.336384,52.733046],[-2.335511,52.730626],[-2.333605,52.730615],[-2.330071,52.729462],[-2.328666,52.73035],[-2.325171,52.731249],[-2.323165,52.731198],[-2.321456,52.730529],[-2.31969,52.730598],[-2.319077,52.731295],[-2.317574,52.731693],[-2.315576,52.732947],[-2.315635,52.735094],[-2.315004,52.736352],[-2.316718,52.737976],[-2.31568,52.738303],[-2.314069,52.737314],[-2.313047,52.737921],[-2.313009,52.7394],[-2.312201,52.740863],[-2.316084,52.744549],[-2.315208,52.745482],[-2.316921,52.745939],[-2.317798,52.746727],[-2.321325,52.748176],[-2.321633,52.749895],[-2.323705,52.750669],[-2.324633,52.751514],[-2.326818,52.751222],[-2.330476,52.751617],[-2.330855,52.753025],[-2.329054,52.754462],[-2.329317,52.755984],[-2.330058,52.756207],[-2.330134,52.757979],[-2.334942,52.758863],[-2.342441,52.762091],[-2.344027,52.763909],[-2.343967,52.765028],[-2.345233,52.766309],[-2.348245,52.766429],[-2.349967,52.766198],[-2.352731,52.768908],[-2.354392,52.771597],[-2.357569,52.772198],[-2.359032,52.773873],[-2.363243,52.775167],[-2.365069,52.776738],[-2.36635,52.77712],[-2.36883,52.777276],[-2.367236,52.77836],[-2.366827,52.779563],[-2.367236,52.781722],[-2.365858,52.783201],[-2.367192,52.783826],[-2.368403,52.783601],[-2.37193,52.784249],[-2.377298,52.783671],[-2.37893,52.784133],[-2.378812,52.785953],[-2.380217,52.786567],[-2.381098,52.78878],[-2.383268,52.788537],[-2.385,52.789523],[-2.384746,52.790433],[-2.38359,52.791152],[-2.381683,52.790669],[-2.380875,52.791113],[-2.380901,52.792371],[-2.382171,52.79323],[-2.380651,52.794726],[-2.375325,52.793909],[-2.373131,52.793944],[-2.371414,52.795285],[-2.372124,52.798292],[-2.370919,52.800332],[-2.373874,52.801774],[-2.375062,52.803098],[-2.376452,52.803629],[-2.376451,52.804778],[-2.377497,52.80601],[-2.377653,52.807147],[-2.37598,52.808072],[-2.375904,52.809238],[-2.377118,52.81031],[-2.378707,52.810844],[-2.377655,52.811643],[-2.397754,52.820014],[-2.416347,52.827006]]]},"properties":{"LAD22CD":"E06000020","LAD22NM":"Telford and Wrekin","BNG_E":367035,"BNG_N":313057,"LONG":-2.48941,"LAT":52.71417,"GlobalID":"a00a55cb-6346-4740-aec2-119ea61a53d2"},"id":20}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.181207,53.089797],[-2.181789,53.08938],[-2.18495,53.090134],[-2.188911,53.090085],[-2.192178,53.090687],[-2.194054,53.091414],[-2.196052,53.09176],[-2.196779,53.092396],[-2.198615,53.092719],[-2.200388,53.0917],[-2.199586,53.089469],[-2.201544,53.08903],[-2.201992,53.088004],[-2.201371,53.0867],[-2.205124,53.086742],[-2.207137,53.087048],[-2.210052,53.08562],[-2.211518,53.08674],[-2.214034,53.085681],[-2.215879,53.08531],[-2.21664,53.084646],[-2.216795,53.082686],[-2.220717,53.082162],[-2.221645,53.081024],[-2.224846,53.079484],[-2.226594,53.078977],[-2.227388,53.079539],[-2.23008,53.077742],[-2.231419,53.078026],[-2.234066,53.075622],[-2.234895,53.075903],[-2.236066,53.074766],[-2.237442,53.074337],[-2.238762,53.073339],[-2.237615,53.07241],[-2.238508,53.071171],[-2.237032,53.06955],[-2.236642,53.06788],[-2.233511,53.066218],[-2.23414,53.064393],[-2.23279,53.063719],[-2.230543,53.063422],[-2.227918,53.063731],[-2.221992,53.049875],[-2.219166,53.043738],[-2.209652,53.036264],[-2.206574,53.031554],[-2.204965,53.02314],[-2.202553,53.020024],[-2.20833,53.016716],[-2.213655,53.015964],[-2.215487,53.015305],[-2.21517,53.012454],[-2.215651,53.010881],[-2.214586,53.009463],[-2.213025,53.009756],[-2.211496,53.007035],[-2.214537,53.00614],[-2.217782,53.003988],[-2.215959,53.00246],[-2.216103,53.001432],[-2.213218,52.996484],[-2.213446,52.994473],[-2.212402,52.993347],[-2.213197,52.992477],[-2.211891,52.988647],[-2.212465,52.988184],[-2.211535,52.987159],[-2.210314,52.986906],[-2.210346,52.984779],[-2.20885,52.984045],[-2.208419,52.983204],[-2.206414,52.982866],[-2.204341,52.981398],[-2.208037,52.980637],[-2.212514,52.980579],[-2.212213,52.979656],[-2.209846,52.977407],[-2.208746,52.973838],[-2.207169,52.971775],[-2.205418,52.972223],[-2.204689,52.969923],[-2.202225,52.968658],[-2.200438,52.968414],[-2.198722,52.966598],[-2.195376,52.964224],[-2.194237,52.960807],[-2.194291,52.958051],[-2.193208,52.955692],[-2.191774,52.953894],[-2.191799,52.951557],[-2.191254,52.950086],[-2.185998,52.951006],[-2.184602,52.949416],[-2.182093,52.947607],[-2.182924,52.94717],[-2.181609,52.946206],[-2.178606,52.948087],[-2.175727,52.947762],[-2.174538,52.947232],[-2.174345,52.94949],[-2.176162,52.95311],[-2.175647,52.953838],[-2.172213,52.954946],[-2.17112,52.951729],[-2.166893,52.952934],[-2.162595,52.953365],[-2.161854,52.954712],[-2.162426,52.956428],[-2.161813,52.957891],[-2.159856,52.959065],[-2.159589,52.961102],[-2.158325,52.961145],[-2.158167,52.963149],[-2.1595,52.963619],[-2.154169,52.964326],[-2.153772,52.963559],[-2.150986,52.96412],[-2.151371,52.964902],[-2.149842,52.965281],[-2.151482,52.968669],[-2.151493,52.971194],[-2.149028,52.972835],[-2.148012,52.974411],[-2.145711,52.976111],[-2.139364,52.973698],[-2.136651,52.973498],[-2.133981,52.97381],[-2.131357,52.971542],[-2.130403,52.971176],[-2.128955,52.969273],[-2.127922,52.965005],[-2.121657,52.956086],[-2.115118,52.956474],[-2.110184,52.957859],[-2.109143,52.959462],[-2.109597,52.962359],[-2.106114,52.962158],[-2.103008,52.963412],[-2.100741,52.960978],[-2.099993,52.960744],[-2.08681,52.96499],[-2.084432,52.965408],[-2.084506,52.966231],[-2.081219,52.966906],[-2.081447,52.968275],[-2.08446,52.970187],[-2.088128,52.973852],[-2.085874,52.973501],[-2.084211,52.975026],[-2.082593,52.974893],[-2.079458,52.974019],[-2.079239,52.9745],[-2.080776,52.975486],[-2.079654,52.975829],[-2.080998,52.977918],[-2.08225,52.977114],[-2.084937,52.978483],[-2.083362,52.979991],[-2.084693,52.981239],[-2.089912,52.9837],[-2.089825,52.984829],[-2.091771,52.985335],[-2.091521,52.988211],[-2.090303,52.988621],[-2.08976,52.989799],[-2.088292,52.990568],[-2.089219,52.991496],[-2.087733,52.993547],[-2.088599,52.995029],[-2.088039,52.996008],[-2.08846,52.996958],[-2.091652,52.998849],[-2.095077,52.998758],[-2.095708,52.997666],[-2.096987,52.997277],[-2.098456,52.997559],[-2.101272,52.995638],[-2.104948,52.997694],[-2.107865,53.002615],[-2.107185,53.003549],[-2.107253,53.004853],[-2.103429,53.007005],[-2.104107,53.007489],[-2.102628,53.008975],[-2.104019,53.010087],[-2.103467,53.010858],[-2.10836,53.012679],[-2.10948,53.013617],[-2.111925,53.013895],[-2.114953,53.013892],[-2.11596,53.014762],[-2.114638,53.016043],[-2.11852,53.018394],[-2.120488,53.018696],[-2.121503,53.018012],[-2.122496,53.01915],[-2.121129,53.019283],[-2.120968,53.020294],[-2.123738,53.021638],[-2.122249,53.022606],[-2.119537,53.026153],[-2.118803,53.026445],[-2.119678,53.027668],[-2.121293,53.027456],[-2.122197,53.028342],[-2.12325,53.027865],[-2.124355,53.029927],[-2.12373,53.031577],[-2.12502,53.033041],[-2.12702,53.033722],[-2.129167,53.035617],[-2.127412,53.035941],[-2.125951,53.037317],[-2.126931,53.037816],[-2.126508,53.040136],[-2.131776,53.047336],[-2.129323,53.048238],[-2.127182,53.048098],[-2.123897,53.048444],[-2.119583,53.047625],[-2.117255,53.047589],[-2.116583,53.048033],[-2.119819,53.049636],[-2.121428,53.051289],[-2.123991,53.052631],[-2.127437,53.053739],[-2.127366,53.059416],[-2.1254,53.064579],[-2.12784,53.065595],[-2.134641,53.06491],[-2.137408,53.065417],[-2.139158,53.065245],[-2.140513,53.067489],[-2.140462,53.068783],[-2.142434,53.068438],[-2.145031,53.068503],[-2.14661,53.069121],[-2.148023,53.070367],[-2.151249,53.069532],[-2.153411,53.069412],[-2.155059,53.069908],[-2.155352,53.07054],[-2.157502,53.070771],[-2.161148,53.07012],[-2.162611,53.072238],[-2.163863,53.075857],[-2.163671,53.076794],[-2.165511,53.079327],[-2.166305,53.082435],[-2.167346,53.083249],[-2.168995,53.085244],[-2.169298,53.086925],[-2.172104,53.088894],[-2.1717,53.089447],[-2.17427,53.090254],[-2.175553,53.089915],[-2.177626,53.091189],[-2.179089,53.091464],[-2.181207,53.089797]]]},"properties":{"LAD22CD":"E06000021","LAD22NM":"Stoke-on-Trent","BNG_E":389438,"BNG_N":346652,"LONG":-2.15888,"LAT":53.01707,"GlobalID":"d64b818f-6468-4e50-b14d-8748058fb0e0"},"id":21}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.294616,51.428802],[-2.298819,51.428798],[-2.301654,51.426321],[-2.301467,51.4259],[-2.30363,51.425097],[-2.30765,51.42469],[-2.309866,51.423083],[-2.312616,51.422446],[-2.313784,51.423177],[-2.31316,51.426572],[-2.314234,51.427638],[-2.31385,51.428911],[-2.317684,51.430269],[-2.318151,51.431014],[-2.321103,51.432599],[-2.322149,51.432789],[-2.323487,51.434469],[-2.324156,51.434716],[-2.325029,51.436991],[-2.328616,51.437041],[-2.331854,51.437793],[-2.332528,51.437528],[-2.336072,51.437381],[-2.339398,51.438157],[-2.342037,51.439403],[-2.34695,51.438553],[-2.350633,51.438377],[-2.351794,51.438739],[-2.353838,51.437348],[-2.354993,51.437202],[-2.35767,51.435838],[-2.358835,51.435786],[-2.361043,51.436551],[-2.361475,51.437403],[-2.367219,51.437054],[-2.373232,51.434422],[-2.375899,51.433757],[-2.377254,51.432831],[-2.38034,51.434102],[-2.386042,51.431986],[-2.396699,51.432025],[-2.397188,51.43125],[-2.39907,51.432057],[-2.403099,51.431595],[-2.403163,51.430637],[-2.405773,51.428645],[-2.410596,51.426227],[-2.412944,51.425841],[-2.414764,51.426329],[-2.416364,51.426072],[-2.418177,51.425229],[-2.422922,51.42385],[-2.42424,51.42372],[-2.427634,51.424212],[-2.430146,51.424169],[-2.431383,51.423723],[-2.438444,51.423169],[-2.441298,51.422491],[-2.442796,51.422751],[-2.444456,51.422349],[-2.444106,51.421044],[-2.441525,51.419291],[-2.443428,51.418336],[-2.445874,51.418945],[-2.446655,51.417988],[-2.450639,51.417331],[-2.454696,51.41844],[-2.455837,51.418495],[-2.457513,51.417852],[-2.458456,51.41681],[-2.460934,51.416662],[-2.464308,51.417319],[-2.469645,51.415932],[-2.472181,51.416987],[-2.473501,51.418071],[-2.47636,51.418497],[-2.48104,51.421584],[-2.48306,51.421429],[-2.484864,51.420715],[-2.486423,51.420584],[-2.490009,51.417669],[-2.492896,51.418345],[-2.492565,51.421458],[-2.490319,51.424042],[-2.488643,51.425235],[-2.488435,51.42648],[-2.49151,51.42894],[-2.494252,51.429414],[-2.496139,51.42867],[-2.498606,51.428633],[-2.502493,51.427126],[-2.503975,51.426027],[-2.505722,51.425662],[-2.507986,51.424641],[-2.508469,51.425009],[-2.508056,51.426594],[-2.508288,51.4279],[-2.510463,51.428782],[-2.521941,51.431447],[-2.524002,51.432549],[-2.526291,51.434777],[-2.526723,51.433836],[-2.525464,51.432939],[-2.527389,51.431498],[-2.523748,51.429917],[-2.52384,51.428272],[-2.523032,51.42563],[-2.526838,51.425736],[-2.529297,51.42471],[-2.531313,51.423308],[-2.531221,51.422416],[-2.529254,51.421279],[-2.529462,51.420915],[-2.532606,51.419365],[-2.534455,51.417489],[-2.5343,51.414443],[-2.535512,51.412706],[-2.536925,51.412026],[-2.536007,51.411137],[-2.538599,51.410705],[-2.542316,51.408748],[-2.543345,51.407408],[-2.545427,51.408639],[-2.549016,51.409285],[-2.552908,51.409092],[-2.553147,51.409612],[-2.555866,51.409275],[-2.556086,51.411275],[-2.559671,51.411243],[-2.560875,51.411721],[-2.561839,51.409933],[-2.563137,51.408601],[-2.563179,51.407472],[-2.564347,51.407043],[-2.565377,51.406012],[-2.564726,51.405134],[-2.566846,51.404737],[-2.56759,51.404013],[-2.5671,51.402511],[-2.570754,51.399369],[-2.571991,51.400427],[-2.573445,51.400868],[-2.574048,51.400288],[-2.576347,51.401124],[-2.578103,51.399362],[-2.58201,51.400893],[-2.583004,51.399684],[-2.585182,51.400128],[-2.587776,51.398595],[-2.589929,51.398168],[-2.590133,51.397545],[-2.589869,51.396691],[-2.587272,51.395147],[-2.590576,51.394257],[-2.592659,51.396042],[-2.593952,51.395641],[-2.591856,51.393869],[-2.594898,51.393483],[-2.597083,51.393594],[-2.597791,51.393089],[-2.599692,51.393147],[-2.599914,51.393682],[-2.603362,51.393954],[-2.604431,51.393113],[-2.60372,51.391011],[-2.604189,51.389988],[-2.607763,51.390793],[-2.608354,51.390502],[-2.607403,51.388991],[-2.609678,51.389002],[-2.611661,51.389622],[-2.612162,51.388627],[-2.614506,51.388729],[-2.614087,51.390098],[-2.614983,51.391316],[-2.617122,51.390437],[-2.618826,51.390438],[-2.620813,51.389724],[-2.622704,51.389409],[-2.623146,51.388372],[-2.621797,51.387951],[-2.622387,51.386559],[-2.62065,51.386065],[-2.61918,51.386164],[-2.615656,51.385385],[-2.613737,51.385415],[-2.613621,51.384112],[-2.615476,51.38326],[-2.614658,51.382176],[-2.613022,51.38252],[-2.61246,51.381765],[-2.61456,51.380708],[-2.616618,51.381851],[-2.617079,51.381058],[-2.618907,51.381476],[-2.618343,51.382188],[-2.620851,51.383661],[-2.622168,51.383962],[-2.623,51.385541],[-2.626954,51.387134],[-2.628369,51.385443],[-2.62966,51.385165],[-2.628928,51.383672],[-2.630292,51.382518],[-2.628184,51.382106],[-2.627326,51.380523],[-2.629932,51.380393],[-2.631235,51.380688],[-2.631648,51.379766],[-2.631114,51.378912],[-2.631465,51.377771],[-2.633823,51.378159],[-2.629795,51.375449],[-2.63216,51.374396],[-2.634057,51.375188],[-2.634558,51.374305],[-2.636492,51.374841],[-2.63767,51.374375],[-2.638626,51.373245],[-2.64124,51.374459],[-2.642961,51.374854],[-2.646311,51.373003],[-2.647791,51.371543],[-2.649214,51.36932],[-2.649881,51.368948],[-2.650527,51.365798],[-2.649609,51.362354],[-2.650174,51.360344],[-2.650127,51.355707],[-2.649531,51.354297],[-2.650553,51.353737],[-2.651489,51.352299],[-2.651868,51.350578],[-2.651884,51.346244],[-2.651178,51.345044],[-2.652527,51.343891],[-2.65444,51.343423],[-2.655166,51.342593],[-2.657227,51.342369],[-2.659402,51.341446],[-2.660741,51.343086],[-2.663423,51.34273],[-2.669747,51.343166],[-2.67092,51.340947],[-2.673029,51.341244],[-2.673373,51.343156],[-2.676535,51.341969],[-2.676963,51.345689],[-2.675433,51.345758],[-2.676452,51.343559],[-2.674159,51.343474],[-2.673112,51.345519],[-2.671206,51.345241],[-2.670993,51.346573],[-2.673651,51.347173],[-2.67408,51.346696],[-2.676546,51.347589],[-2.677135,51.348597],[-2.675506,51.350025],[-2.676348,51.351406],[-2.677527,51.352219],[-2.677979,51.353546],[-2.673114,51.353839],[-2.673478,51.354891],[-2.674669,51.355904],[-2.670922,51.356943],[-2.669496,51.356947],[-2.668407,51.358989],[-2.668752,51.360784],[-2.669544,51.361819],[-2.673601,51.361594],[-2.676318,51.361943],[-2.677826,51.361557],[-2.677191,51.360597],[-2.679704,51.360125],[-2.680229,51.361635],[-2.680095,51.363016],[-2.680866,51.364348],[-2.680795,51.366308],[-2.681475,51.367147],[-2.682343,51.369551],[-2.685414,51.368798],[-2.68661,51.37477],[-2.687824,51.377707],[-2.689559,51.38015],[-2.694194,51.379857],[-2.693988,51.377897],[-2.695284,51.376128],[-2.694968,51.375446],[-2.695573,51.36957],[-2.696754,51.367444],[-2.69499,51.367078],[-2.694259,51.366052],[-2.694169,51.364049],[-2.696694,51.362437],[-2.695714,51.360066],[-2.694702,51.359509],[-2.693013,51.357169],[-2.69179,51.356212],[-2.689931,51.352862],[-2.690501,51.349528],[-2.691944,51.348888],[-2.694873,51.344378],[-2.699283,51.3431],[-2.701735,51.343987],[-2.704055,51.343524],[-2.705133,51.342002],[-2.707536,51.340758],[-2.707275,51.339964],[-2.707892,51.337803],[-2.705769,51.337737],[-2.703163,51.336752],[-2.701616,51.336513],[-2.699948,51.335678],[-2.698845,51.335827],[-2.694138,51.333404],[-2.692667,51.332189],[-2.687182,51.330358],[-2.693548,51.321944],[-2.69336,51.32166],[-2.695128,51.318523],[-2.694879,51.318094],[-2.691074,51.317539],[-2.686397,51.316099],[-2.685887,51.315134],[-2.683075,51.31442],[-2.678914,51.312796],[-2.676459,51.311572],[-2.676423,51.310989],[-2.674494,51.31046],[-2.673009,51.311795],[-2.670459,51.311235],[-2.666607,51.309183],[-2.666981,51.30787],[-2.663416,51.30718],[-2.662485,51.30656],[-2.664889,51.305348],[-2.665814,51.303364],[-2.666795,51.302445],[-2.662885,51.302948],[-2.659991,51.302592],[-2.653663,51.300646],[-2.652222,51.299787],[-2.650733,51.299697],[-2.648978,51.2989],[-2.646823,51.298382],[-2.644669,51.297031],[-2.643892,51.297094],[-2.641044,51.2955],[-2.638699,51.294823],[-2.64035,51.293307],[-2.639701,51.29131],[-2.638581,51.289986],[-2.637235,51.289088],[-2.638295,51.288278],[-2.635725,51.287298],[-2.635045,51.286262],[-2.633448,51.285859],[-2.631977,51.284595],[-2.630202,51.284257],[-2.629981,51.283557],[-2.624985,51.28248],[-2.624699,51.285385],[-2.621043,51.28434],[-2.618453,51.286225],[-2.612995,51.284148],[-2.608787,51.285827],[-2.606958,51.287273],[-2.603927,51.287761],[-2.600338,51.288987],[-2.598615,51.290605],[-2.596542,51.290767],[-2.594878,51.292359],[-2.59532,51.293095],[-2.594592,51.295121],[-2.595466,51.296186],[-2.591634,51.296534],[-2.588463,51.29519],[-2.587755,51.294213],[-2.585897,51.293334],[-2.580185,51.29314],[-2.574499,51.294885],[-2.571251,51.295136],[-2.567223,51.297645],[-2.562669,51.298809],[-2.559399,51.302037],[-2.557824,51.302661],[-2.552803,51.301317],[-2.554165,51.298686],[-2.5514,51.298275],[-2.551131,51.299531],[-2.550013,51.300516],[-2.541507,51.298472],[-2.540463,51.297872],[-2.539236,51.296244],[-2.534565,51.295487],[-2.531725,51.294016],[-2.528004,51.293161],[-2.524902,51.292937],[-2.523213,51.293574],[-2.521635,51.293524],[-2.513619,51.292737],[-2.512556,51.292255],[-2.509377,51.292018],[-2.506379,51.291134],[-2.506224,51.290014],[-2.5033,51.290041],[-2.500491,51.290985],[-2.499553,51.29058],[-2.497418,51.290883],[-2.496969,51.290204],[-2.496538,51.287449],[-2.496971,51.286302],[-2.500436,51.284605],[-2.49985,51.28402],[-2.500125,51.282743],[-2.506356,51.278991],[-2.499809,51.276787],[-2.495948,51.275903],[-2.494832,51.276647],[-2.492771,51.276122],[-2.493509,51.275471],[-2.490601,51.274424],[-2.489945,51.274797],[-2.487908,51.274123],[-2.487162,51.275135],[-2.485002,51.274204],[-2.482664,51.274148],[-2.478001,51.273097],[-2.473754,51.277967],[-2.472303,51.277053],[-2.461584,51.274194],[-2.455875,51.273733],[-2.453287,51.273845],[-2.451723,51.274251],[-2.452405,51.277114],[-2.44997,51.277423],[-2.44746,51.277123],[-2.444312,51.277411],[-2.446015,51.280836],[-2.442498,51.28204],[-2.442409,51.282755],[-2.439073,51.283839],[-2.439047,51.285186],[-2.435615,51.285698],[-2.434544,51.285452],[-2.4326,51.286041],[-2.430064,51.284643],[-2.429955,51.286776],[-2.427709,51.286719],[-2.422055,51.287501],[-2.42099,51.289012],[-2.421369,51.291058],[-2.417391,51.292134],[-2.417766,51.293666],[-2.42026,51.296621],[-2.419542,51.297241],[-2.416198,51.298737],[-2.415367,51.298476],[-2.414035,51.299564],[-2.412738,51.299802],[-2.411646,51.301305],[-2.410145,51.300863],[-2.40696,51.300897],[-2.404366,51.302021],[-2.400918,51.3048],[-2.399827,51.304889],[-2.397467,51.303052],[-2.393664,51.297543],[-2.392316,51.296421],[-2.391892,51.295371],[-2.389626,51.294611],[-2.387181,51.294643],[-2.384881,51.295592],[-2.384157,51.296317],[-2.385184,51.296965],[-2.383145,51.299054],[-2.381575,51.300085],[-2.379716,51.3006],[-2.377623,51.300576],[-2.374271,51.301108],[-2.369257,51.301013],[-2.362886,51.302939],[-2.359616,51.304436],[-2.357607,51.304968],[-2.354478,51.30691],[-2.353867,51.3067],[-2.350483,51.307022],[-2.34867,51.308138],[-2.340556,51.309456],[-2.339051,51.309892],[-2.337349,51.307687],[-2.332521,51.308443],[-2.330385,51.309256],[-2.328577,51.310799],[-2.326156,51.311873],[-2.324731,51.313004],[-2.324818,51.31356],[-2.320183,51.314948],[-2.319538,51.314422],[-2.316381,51.316344],[-2.312281,51.317574],[-2.310729,51.318805],[-2.305356,51.319442],[-2.303928,51.320117],[-2.299219,51.321295],[-2.297937,51.322368],[-2.294094,51.322752],[-2.29116,51.323813],[-2.289091,51.325272],[-2.288624,51.326837],[-2.287242,51.328424],[-2.288439,51.329771],[-2.290586,51.33062],[-2.295079,51.330983],[-2.300117,51.332239],[-2.300972,51.333962],[-2.299552,51.336114],[-2.298594,51.336185],[-2.296121,51.337207],[-2.295554,51.337881],[-2.296902,51.338708],[-2.295018,51.340142],[-2.296409,51.342662],[-2.297943,51.343192],[-2.299864,51.342724],[-2.302139,51.341722],[-2.303158,51.340927],[-2.305917,51.341635],[-2.308528,51.33975],[-2.310636,51.340346],[-2.311467,51.341207],[-2.316462,51.34373],[-2.320454,51.346809],[-2.324048,51.34776],[-2.32757,51.347148],[-2.329072,51.347411],[-2.333451,51.346199],[-2.338597,51.346229],[-2.341138,51.344563],[-2.343589,51.344951],[-2.344309,51.345457],[-2.342713,51.347275],[-2.342318,51.348353],[-2.340591,51.348554],[-2.33915,51.350126],[-2.33743,51.351429],[-2.335568,51.35151],[-2.333845,51.351988],[-2.33268,51.35169],[-2.328314,51.35418],[-2.325405,51.354307],[-2.323711,51.355556],[-2.322983,51.356657],[-2.321326,51.357122],[-2.320765,51.356525],[-2.318725,51.35646],[-2.316722,51.356931],[-2.31478,51.356888],[-2.312619,51.357519],[-2.311729,51.356963],[-2.310215,51.357535],[-2.310766,51.361325],[-2.309423,51.36345],[-2.307519,51.364997],[-2.302976,51.362857],[-2.299798,51.362138],[-2.296815,51.363908],[-2.294043,51.366774],[-2.292057,51.36957],[-2.291091,51.371869],[-2.290289,51.372621],[-2.290796,51.375567],[-2.291663,51.377022],[-2.291518,51.378008],[-2.292543,51.378462],[-2.2937,51.381097],[-2.297494,51.384919],[-2.296283,51.387428],[-2.295822,51.390533],[-2.296771,51.394922],[-2.293852,51.395613],[-2.291651,51.395486],[-2.290169,51.396025],[-2.287357,51.396041],[-2.284437,51.396911],[-2.284531,51.397943],[-2.286586,51.400577],[-2.287357,51.402688],[-2.290862,51.405712],[-2.288803,51.406585],[-2.288119,51.407522],[-2.285385,51.407972],[-2.284087,51.409398],[-2.282048,51.410275],[-2.282362,51.412724],[-2.280816,51.412886],[-2.278541,51.415882],[-2.280499,51.417754],[-2.280731,51.418885],[-2.282393,51.421404],[-2.284742,51.423425],[-2.286497,51.423406],[-2.287256,51.424076],[-2.290717,51.42545],[-2.292985,51.426071],[-2.29535,51.426252],[-2.294616,51.428802]]]},"properties":{"LAD22CD":"E06000022","LAD22NM":"Bath and North East Somerset","BNG_E":366217,"BNG_N":161999,"LONG":-2.48654,"LAT":51.35604,"GlobalID":"45a6dd36-9618-411f-a63e-79fc4cf6f81b"},"id":22}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.668697,51.4813],[-2.670454,51.48124],[-2.673124,51.480301],[-2.676227,51.479711],[-2.678222,51.480003],[-2.676245,51.479677],[-2.673139,51.48025],[-2.67051,51.481182],[-2.668697,51.4813]]],[[[-2.687006,51.483491],[-2.694443,51.489009],[-2.69614,51.489947],[-2.694531,51.48897],[-2.687565,51.48377],[-2.687006,51.483491]]],[[[-2.756577,51.492567],[-2.754507,51.49232],[-2.753376,51.491736],[-2.754447,51.492348],[-2.756577,51.492567]]],[[[-2.758734,51.495121],[-2.770282,51.494763],[-2.767155,51.49471],[-2.758734,51.495121]]],[[[-2.705053,51.494265],[-2.70582,51.494818],[-2.711647,51.496518],[-2.713048,51.49822],[-2.716496,51.500605],[-2.718209,51.50138],[-2.717566,51.500327],[-2.712796,51.497666],[-2.71169,51.496477],[-2.705924,51.494805],[-2.705053,51.494265]]],[[[-2.510463,51.428782],[-2.510701,51.429269],[-2.513437,51.429631],[-2.516991,51.430816],[-2.521664,51.431718],[-2.523543,51.432606],[-2.525355,51.434124],[-2.527044,51.43625],[-2.526449,51.442557],[-2.526752,51.443865],[-2.528322,51.444955],[-2.53078,51.445593],[-2.536632,51.444589],[-2.538046,51.444794],[-2.539254,51.445569],[-2.539119,51.446333],[-2.537681,51.447013],[-2.535607,51.44734],[-2.534768,51.44653],[-2.531666,51.446442],[-2.529931,51.448232],[-2.525129,51.448972],[-2.522278,51.449803],[-2.518937,51.452611],[-2.519177,51.453733],[-2.518463,51.455657],[-2.519215,51.457573],[-2.518463,51.459078],[-2.516229,51.46],[-2.515363,51.459931],[-2.514259,51.461437],[-2.512246,51.462333],[-2.511347,51.465208],[-2.513252,51.465661],[-2.512285,51.468606],[-2.512924,51.469051],[-2.512613,51.470398],[-2.511506,51.470234],[-2.510836,51.471595],[-2.511478,51.474832],[-2.51524,51.481466],[-2.515128,51.481758],[-2.516712,51.485155],[-2.511393,51.48929],[-2.510999,51.489986],[-2.515966,51.492573],[-2.515865,51.493867],[-2.518037,51.492985],[-2.523341,51.49244],[-2.52533,51.493226],[-2.527473,51.492654],[-2.527939,51.493824],[-2.527754,51.494922],[-2.529229,51.496183],[-2.530278,51.496408],[-2.531742,51.495697],[-2.53433,51.496745],[-2.537704,51.497073],[-2.538952,51.495003],[-2.541744,51.495741],[-2.542538,51.49455],[-2.542166,51.492952],[-2.551602,51.492233],[-2.555348,51.492686],[-2.556156,51.494061],[-2.554662,51.496348],[-2.560077,51.496442],[-2.562241,51.495293],[-2.564789,51.495516],[-2.565339,51.496185],[-2.565065,51.497581],[-2.565973,51.498288],[-2.569088,51.499549],[-2.569928,51.499246],[-2.573096,51.500402],[-2.578118,51.500957],[-2.579834,51.500711],[-2.581715,51.50119],[-2.584519,51.502641],[-2.585628,51.501844],[-2.585245,51.501156],[-2.58815,51.501235],[-2.587691,51.503453],[-2.587864,51.504941],[-2.588545,51.50561],[-2.588021,51.50773],[-2.590503,51.508405],[-2.591223,51.509682],[-2.589228,51.511536],[-2.585852,51.512671],[-2.583087,51.512944],[-2.582004,51.514627],[-2.580989,51.517409],[-2.58799,51.517063],[-2.594267,51.51584],[-2.602453,51.513783],[-2.611134,51.513448],[-2.621094,51.514866],[-2.622726,51.51452],[-2.627512,51.51457],[-2.630879,51.513701],[-2.638514,51.512062],[-2.647162,51.512166],[-2.651508,51.512844],[-2.654486,51.513724],[-2.654494,51.514962],[-2.653205,51.516089],[-2.653744,51.518609],[-2.651666,51.51993],[-2.651403,51.520704],[-2.653654,51.523117],[-2.658095,51.526773],[-2.66013,51.527647],[-2.665425,51.530966],[-2.664614,51.531532],[-2.665728,51.533679],[-2.663739,51.534868],[-2.664478,51.536013],[-2.663689,51.536996],[-2.673814,51.544431],[-2.678847,51.539087],[-2.679326,51.538039],[-2.681019,51.536279],[-2.681076,51.535715],[-2.682567,51.534799],[-2.686539,51.530879],[-2.687072,51.529387],[-2.687983,51.529421],[-2.695215,51.522456],[-2.695392,51.522462],[-2.698873,51.519191],[-2.700293,51.517344],[-2.702168,51.516203],[-2.702863,51.515329],[-2.705622,51.515097],[-2.706727,51.514707],[-2.71011,51.512568],[-2.71263,51.509833],[-2.715575,51.507302],[-2.7137,51.505928],[-2.714558,51.505211],[-2.710629,51.502818],[-2.710089,51.502218],[-2.709561,51.498701],[-2.708726,51.497731],[-2.702485,51.495847],[-2.698892,51.494312],[-2.697464,51.494179],[-2.69663,51.492775],[-2.692387,51.489968],[-2.685781,51.484579],[-2.679745,51.481248],[-2.677643,51.480726],[-2.674162,51.480998],[-2.671846,51.481861],[-2.667897,51.48401],[-2.666048,51.487038],[-2.66373,51.487863],[-2.661912,51.487862],[-2.659665,51.487123],[-2.656136,51.484073],[-2.652218,51.481567],[-2.65078,51.479798],[-2.649413,51.477041],[-2.64981,51.475042],[-2.64869,51.473706],[-2.643896,51.47077],[-2.635833,51.468959],[-2.632912,51.467392],[-2.630035,51.460723],[-2.630272,51.459187],[-2.629908,51.457751],[-2.627079,51.454758],[-2.626584,51.452553],[-2.625181,51.450362],[-2.623992,51.44956],[-2.624266,51.448294],[-2.623743,51.447421],[-2.620896,51.446108],[-2.617437,51.445897],[-2.60738,51.446773],[-2.604441,51.446737],[-2.598685,51.445945],[-2.593294,51.44619],[-2.587806,51.44537],[-2.585584,51.445782],[-2.582137,51.447659],[-2.580625,51.448251],[-2.578358,51.448296],[-2.576867,51.447283],[-2.577192,51.444974],[-2.576696,51.444162],[-2.571066,51.44321],[-2.5668,51.444519],[-2.566695,51.444167],[-2.570846,51.44284],[-2.573251,51.443111],[-2.57717,51.444024],[-2.577816,51.44473],[-2.577394,51.44718],[-2.578405,51.447777],[-2.580114,51.447993],[-2.581673,51.447506],[-2.584798,51.445722],[-2.587524,51.445003],[-2.592645,51.445767],[-2.597893,51.445536],[-2.605546,51.446469],[-2.619213,51.445366],[-2.621587,51.445607],[-2.625103,51.447445],[-2.626217,51.450369],[-2.627776,51.452535],[-2.628361,51.454655],[-2.631219,51.457741],[-2.631551,51.46144],[-2.63391,51.466609],[-2.636806,51.468256],[-2.641519,51.469167],[-2.645595,51.47038],[-2.649506,51.473148],[-2.651173,51.473912],[-2.65158,51.478054],[-2.652564,51.479793],[-2.656784,51.48296],[-2.657264,51.483012],[-2.660783,51.486305],[-2.663504,51.486941],[-2.664904,51.48628],[-2.665903,51.483851],[-2.667332,51.482974],[-2.667312,51.482003],[-2.668603,51.481322],[-2.668125,51.481438],[-2.667144,51.482112],[-2.667209,51.482983],[-2.66548,51.484032],[-2.664567,51.48599],[-2.663624,51.486609],[-2.661475,51.486383],[-2.65887,51.484069],[-2.653984,51.480554],[-2.652623,51.479205],[-2.651814,51.477509],[-2.651134,51.473658],[-2.650434,51.47352],[-2.648734,51.472047],[-2.646103,51.470504],[-2.641476,51.469069],[-2.637198,51.468232],[-2.634368,51.466802],[-2.63178,51.46154],[-2.631566,51.459864],[-2.632093,51.458692],[-2.631851,51.457737],[-2.628684,51.454889],[-2.627936,51.452628],[-2.625802,51.448755],[-2.626425,51.448351],[-2.627005,51.446668],[-2.62966,51.446136],[-2.633085,51.447236],[-2.636844,51.444268],[-2.636631,51.443216],[-2.637972,51.441977],[-2.639896,51.441358],[-2.640086,51.440441],[-2.63635,51.439545],[-2.634234,51.439277],[-2.630376,51.439611],[-2.629525,51.437372],[-2.633498,51.435808],[-2.633469,51.43027],[-2.634037,51.425842],[-2.637087,51.4232],[-2.636317,51.422143],[-2.634605,51.421049],[-2.632464,51.420346],[-2.630612,51.418707],[-2.632525,51.417566],[-2.631281,51.416042],[-2.628744,51.416001],[-2.629786,51.414722],[-2.631122,51.411664],[-2.632354,51.410316],[-2.630885,51.410115],[-2.631692,51.408499],[-2.633269,51.407474],[-2.635465,51.406976],[-2.634897,51.406008],[-2.633153,51.405284],[-2.633252,51.403442],[-2.630468,51.402111],[-2.627955,51.40186],[-2.625805,51.403154],[-2.625931,51.403818],[-2.621926,51.404317],[-2.61966,51.404383],[-2.619099,51.403913],[-2.619158,51.401943],[-2.617468,51.402397],[-2.612344,51.402266],[-2.611602,51.401173],[-2.60722,51.400979],[-2.606501,51.401393],[-2.604872,51.400442],[-2.604294,51.399376],[-2.602789,51.39882],[-2.600997,51.399531],[-2.600937,51.400222],[-2.597049,51.400155],[-2.597567,51.399011],[-2.595735,51.397929],[-2.59258,51.397282],[-2.590133,51.397545],[-2.589929,51.398168],[-2.587776,51.398595],[-2.585182,51.400128],[-2.583004,51.399684],[-2.58201,51.400893],[-2.578103,51.399362],[-2.576347,51.401124],[-2.574048,51.400288],[-2.573445,51.400868],[-2.571991,51.400427],[-2.570754,51.399369],[-2.5671,51.402511],[-2.56759,51.404013],[-2.566846,51.404737],[-2.564726,51.405134],[-2.565377,51.406012],[-2.564347,51.407043],[-2.563179,51.407472],[-2.563137,51.408601],[-2.561839,51.409933],[-2.560875,51.411721],[-2.559671,51.411243],[-2.556086,51.411275],[-2.555866,51.409275],[-2.553147,51.409612],[-2.552908,51.409092],[-2.549016,51.409285],[-2.545427,51.408639],[-2.543345,51.407408],[-2.542316,51.408748],[-2.538599,51.410705],[-2.536007,51.411137],[-2.536925,51.412026],[-2.535512,51.412706],[-2.5343,51.414443],[-2.534455,51.417489],[-2.532606,51.419365],[-2.529462,51.420915],[-2.529254,51.421279],[-2.531221,51.422416],[-2.531313,51.423308],[-2.529297,51.42471],[-2.526838,51.425736],[-2.523032,51.42563],[-2.52384,51.428272],[-2.523748,51.429917],[-2.527389,51.431498],[-2.525464,51.432939],[-2.526723,51.433836],[-2.526291,51.434777],[-2.524002,51.432549],[-2.521941,51.431447],[-2.510463,51.428782]]]]},"properties":{"LAD22CD":"E06000023","LAD22NM":"Bristol, City of","BNG_E":359990,"BNG_N":174846,"LONG":-2.57742,"LAT":51.47115,"GlobalID":"00b28892-3dff-41f9-a41b-102156e89f73"},"id":23}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.104188,51.338812],[-3.103028,51.339474],[-3.103746,51.340688],[-3.106019,51.341429],[-3.108261,51.341392],[-3.113573,51.340481],[-3.115061,51.339616],[-3.113055,51.338561],[-3.111677,51.338208],[-3.104188,51.338812]]],[[[-2.753376,51.491736],[-2.754507,51.49232],[-2.756577,51.492567],[-2.755946,51.493802],[-2.756996,51.494299],[-2.758734,51.495121],[-2.767155,51.49471],[-2.770282,51.494763],[-2.773226,51.494671],[-2.773584,51.494491],[-2.772619,51.493715],[-2.774212,51.492033],[-2.777,51.491145],[-2.777891,51.489504],[-2.78045,51.488441],[-2.781773,51.488211],[-2.784138,51.487064],[-2.791237,51.486547],[-2.795345,51.485728],[-2.797139,51.486045],[-2.799866,51.485198],[-2.802949,51.482681],[-2.804625,51.481689],[-2.806082,51.48127],[-2.808145,51.479631],[-2.809365,51.479375],[-2.810255,51.477769],[-2.811835,51.477346],[-2.813832,51.475677],[-2.815284,51.475209],[-2.817226,51.473306],[-2.818154,51.472792],[-2.819299,51.470525],[-2.821422,51.469331],[-2.823538,51.467619],[-2.823646,51.467124],[-2.829875,51.465516],[-2.831806,51.464242],[-2.837372,51.461713],[-2.838543,51.460518],[-2.841751,51.458764],[-2.84338,51.458259],[-2.845828,51.456837],[-2.849074,51.455405],[-2.852772,51.452861],[-2.85207,51.45173],[-2.85383,51.450106],[-2.857275,51.448124],[-2.860121,51.445679],[-2.862076,51.443376],[-2.861558,51.442582],[-2.861798,51.440785],[-2.863604,51.439933],[-2.865789,51.438379],[-2.86671,51.436666],[-2.87013,51.435807],[-2.872249,51.434531],[-2.879163,51.431855],[-2.879234,51.431191],[-2.876665,51.43032],[-2.875558,51.42778],[-2.877292,51.428005],[-2.880324,51.427605],[-2.881789,51.426123],[-2.882817,51.425603],[-2.885084,51.419012],[-2.887963,51.414495],[-2.889355,51.413266],[-2.890842,51.412504],[-2.893932,51.409566],[-2.893901,51.408506],[-2.895831,51.406631],[-2.907005,51.399758],[-2.909601,51.398797],[-2.912958,51.395941],[-2.912454,51.395312],[-2.909498,51.394731],[-2.90686,51.393283],[-2.905421,51.393315],[-2.903766,51.392258],[-2.900022,51.392027],[-2.901311,51.391189],[-2.90545,51.391692],[-2.906862,51.392569],[-2.908386,51.392769],[-2.910251,51.394131],[-2.913858,51.394898],[-2.913935,51.395348],[-2.917313,51.395866],[-2.919726,51.395789],[-2.92935,51.394514],[-2.935093,51.395334],[-2.936003,51.393707],[-2.93525,51.39246],[-2.938047,51.392848],[-2.937991,51.394355],[-2.936721,51.396463],[-2.937272,51.398093],[-2.939762,51.398164],[-2.943966,51.397226],[-2.947937,51.395953],[-2.951464,51.39447],[-2.951602,51.393818],[-2.954002,51.393324],[-2.954392,51.392783],[-2.957867,51.392011],[-2.958691,51.392656],[-2.960633,51.392281],[-2.965034,51.392275],[-2.968137,51.391035],[-2.97211,51.390101],[-2.97193,51.389626],[-2.977683,51.388545],[-2.972951,51.388204],[-2.972285,51.387714],[-2.970283,51.387677],[-2.968905,51.386448],[-2.967163,51.385638],[-2.967395,51.384514],[-2.966885,51.383637],[-2.963705,51.383262],[-2.962482,51.382394],[-2.962196,51.375213],[-2.964593,51.372175],[-2.966956,51.364],[-2.969154,51.362998],[-2.971312,51.362438],[-2.974853,51.362049],[-2.978701,51.361109],[-2.984586,51.360255],[-2.986156,51.359475],[-2.991544,51.358449],[-2.992409,51.357643],[-2.994197,51.357046],[-2.994905,51.355603],[-2.993943,51.354073],[-2.992132,51.353565],[-2.988768,51.353206],[-2.988539,51.352001],[-2.99004,51.351771],[-2.990008,51.351082],[-2.98624,51.351889],[-2.984881,51.351574],[-2.983313,51.35067],[-2.982809,51.349637],[-2.982892,51.346731],[-2.986059,51.334534],[-2.988658,51.327832],[-2.992474,51.320661],[-2.99224,51.318958],[-2.990795,51.317385],[-2.98659,51.31514],[-2.985887,51.314579],[-2.985142,51.312775],[-2.985342,51.311883],[-2.987012,51.309667],[-2.989739,51.307982],[-2.992257,51.307613],[-2.99426,51.30625],[-2.994095,51.302883],[-2.993146,51.30102],[-2.990874,51.299433],[-2.988074,51.29852],[-2.985683,51.298212],[-2.983351,51.29829],[-2.981305,51.29758],[-2.977212,51.297384],[-2.973715,51.295705],[-2.970122,51.296089],[-2.964361,51.29785],[-2.962296,51.299938],[-2.963032,51.302663],[-2.962602,51.304611],[-2.960983,51.304846],[-2.953714,51.304497],[-2.952123,51.303233],[-2.950708,51.302725],[-2.939023,51.302591],[-2.936429,51.303014],[-2.933765,51.301939],[-2.931649,51.299093],[-2.927921,51.297985],[-2.925294,51.298552],[-2.924166,51.298431],[-2.919211,51.295733],[-2.917957,51.294638],[-2.914652,51.294238],[-2.91317,51.293648],[-2.897104,51.290615],[-2.893526,51.29505],[-2.888124,51.304902],[-2.886797,51.305052],[-2.88492,51.306665],[-2.882232,51.304659],[-2.881434,51.303532],[-2.880306,51.303901],[-2.87919,51.303063],[-2.877146,51.300063],[-2.867946,51.302206],[-2.864379,51.300134],[-2.856549,51.300126],[-2.853161,51.299476],[-2.830295,51.30071],[-2.821754,51.301105],[-2.820652,51.300841],[-2.810237,51.301424],[-2.809964,51.305572],[-2.810773,51.30729],[-2.812192,51.308934],[-2.812068,51.310711],[-2.810316,51.311328],[-2.807107,51.311965],[-2.807673,51.312839],[-2.807809,51.314882],[-2.810149,51.315594],[-2.810515,51.317161],[-2.811882,51.317284],[-2.81272,51.318308],[-2.814904,51.318804],[-2.817931,51.319059],[-2.818473,51.322756],[-2.818912,51.324075],[-2.818673,51.326365],[-2.812312,51.327205],[-2.807997,51.326228],[-2.80647,51.326148],[-2.801965,51.326542],[-2.799786,51.326154],[-2.798467,51.326968],[-2.797213,51.325849],[-2.795237,51.325318],[-2.791215,51.325144],[-2.789328,51.324664],[-2.786525,51.324811],[-2.785418,51.324195],[-2.778668,51.323565],[-2.773316,51.323414],[-2.768321,51.323698],[-2.76516,51.322445],[-2.764644,51.322577],[-2.761482,51.322112],[-2.754806,51.324548],[-2.75479,51.322864],[-2.755353,51.321393],[-2.753941,51.319775],[-2.752852,51.32012],[-2.748988,51.319124],[-2.747759,51.319775],[-2.744586,51.319281],[-2.739392,51.319815],[-2.733024,51.318383],[-2.73256,51.318804],[-2.729814,51.318058],[-2.728063,51.317226],[-2.725406,51.318359],[-2.721449,51.319471],[-2.720926,51.321527],[-2.716841,51.316801],[-2.708623,51.317177],[-2.703142,51.317076],[-2.699532,51.316846],[-2.696854,51.31614],[-2.696392,51.31757],[-2.694879,51.318094],[-2.695128,51.318523],[-2.69336,51.32166],[-2.693548,51.321944],[-2.687182,51.330358],[-2.692667,51.332189],[-2.694138,51.333404],[-2.698845,51.335827],[-2.699948,51.335678],[-2.701616,51.336513],[-2.703163,51.336752],[-2.705769,51.337737],[-2.707892,51.337803],[-2.707275,51.339964],[-2.707536,51.340758],[-2.705133,51.342002],[-2.704055,51.343524],[-2.701735,51.343987],[-2.699283,51.3431],[-2.694873,51.344378],[-2.691944,51.348888],[-2.690501,51.349528],[-2.689931,51.352862],[-2.69179,51.356212],[-2.693013,51.357169],[-2.694702,51.359509],[-2.695714,51.360066],[-2.696694,51.362437],[-2.694169,51.364049],[-2.694259,51.366052],[-2.69499,51.367078],[-2.696754,51.367444],[-2.695573,51.36957],[-2.694968,51.375446],[-2.695284,51.376128],[-2.693988,51.377897],[-2.694194,51.379857],[-2.689559,51.38015],[-2.687824,51.377707],[-2.68661,51.37477],[-2.685414,51.368798],[-2.682343,51.369551],[-2.681475,51.367147],[-2.680795,51.366308],[-2.680866,51.364348],[-2.680095,51.363016],[-2.680229,51.361635],[-2.679704,51.360125],[-2.677191,51.360597],[-2.677826,51.361557],[-2.676318,51.361943],[-2.673601,51.361594],[-2.669544,51.361819],[-2.668752,51.360784],[-2.668407,51.358989],[-2.669496,51.356947],[-2.670922,51.356943],[-2.674669,51.355904],[-2.673478,51.354891],[-2.673114,51.353839],[-2.677979,51.353546],[-2.677527,51.352219],[-2.676348,51.351406],[-2.675506,51.350025],[-2.677135,51.348597],[-2.676546,51.347589],[-2.67408,51.346696],[-2.673651,51.347173],[-2.670993,51.346573],[-2.671206,51.345241],[-2.673112,51.345519],[-2.674159,51.343474],[-2.676452,51.343559],[-2.675433,51.345758],[-2.676963,51.345689],[-2.676535,51.341969],[-2.673373,51.343156],[-2.673029,51.341244],[-2.67092,51.340947],[-2.669747,51.343166],[-2.663423,51.34273],[-2.660741,51.343086],[-2.659402,51.341446],[-2.657227,51.342369],[-2.655166,51.342593],[-2.65444,51.343423],[-2.652527,51.343891],[-2.651178,51.345044],[-2.651884,51.346244],[-2.651868,51.350578],[-2.651489,51.352299],[-2.650553,51.353737],[-2.649531,51.354297],[-2.650127,51.355707],[-2.650174,51.360344],[-2.649609,51.362354],[-2.650527,51.365798],[-2.649881,51.368948],[-2.649214,51.36932],[-2.647791,51.371543],[-2.646311,51.373003],[-2.642961,51.374854],[-2.64124,51.374459],[-2.638626,51.373245],[-2.63767,51.374375],[-2.636492,51.374841],[-2.634558,51.374305],[-2.634057,51.375188],[-2.63216,51.374396],[-2.629795,51.375449],[-2.633823,51.378159],[-2.631465,51.377771],[-2.631114,51.378912],[-2.631648,51.379766],[-2.631235,51.380688],[-2.629932,51.380393],[-2.627326,51.380523],[-2.628184,51.382106],[-2.630292,51.382518],[-2.628928,51.383672],[-2.62966,51.385165],[-2.628369,51.385443],[-2.626954,51.387134],[-2.623,51.385541],[-2.622168,51.383962],[-2.620851,51.383661],[-2.618343,51.382188],[-2.618907,51.381476],[-2.617079,51.381058],[-2.616618,51.381851],[-2.61456,51.380708],[-2.61246,51.381765],[-2.613022,51.38252],[-2.614658,51.382176],[-2.615476,51.38326],[-2.613621,51.384112],[-2.613737,51.385415],[-2.615656,51.385385],[-2.61918,51.386164],[-2.62065,51.386065],[-2.622387,51.386559],[-2.621797,51.387951],[-2.623146,51.388372],[-2.622704,51.389409],[-2.620813,51.389724],[-2.618826,51.390438],[-2.617122,51.390437],[-2.614983,51.391316],[-2.614087,51.390098],[-2.614506,51.388729],[-2.612162,51.388627],[-2.611661,51.389622],[-2.609678,51.389002],[-2.607403,51.388991],[-2.608354,51.390502],[-2.607763,51.390793],[-2.604189,51.389988],[-2.60372,51.391011],[-2.604431,51.393113],[-2.603362,51.393954],[-2.599914,51.393682],[-2.599692,51.393147],[-2.597791,51.393089],[-2.597083,51.393594],[-2.594898,51.393483],[-2.591856,51.393869],[-2.593952,51.395641],[-2.592659,51.396042],[-2.590576,51.394257],[-2.587272,51.395147],[-2.589869,51.396691],[-2.590133,51.397545],[-2.59258,51.397282],[-2.595735,51.397929],[-2.597567,51.399011],[-2.597049,51.400155],[-2.600937,51.400222],[-2.600997,51.399531],[-2.602789,51.39882],[-2.604294,51.399376],[-2.604872,51.400442],[-2.606501,51.401393],[-2.60722,51.400979],[-2.611602,51.401173],[-2.612344,51.402266],[-2.617468,51.402397],[-2.619158,51.401943],[-2.619099,51.403913],[-2.61966,51.404383],[-2.621926,51.404317],[-2.625931,51.403818],[-2.625805,51.403154],[-2.627955,51.40186],[-2.630468,51.402111],[-2.633252,51.403442],[-2.633153,51.405284],[-2.634897,51.406008],[-2.635465,51.406976],[-2.633269,51.407474],[-2.631692,51.408499],[-2.630885,51.410115],[-2.632354,51.410316],[-2.631122,51.411664],[-2.629786,51.414722],[-2.628744,51.416001],[-2.631281,51.416042],[-2.632525,51.417566],[-2.630612,51.418707],[-2.632464,51.420346],[-2.634605,51.421049],[-2.636317,51.422143],[-2.637087,51.4232],[-2.634037,51.425842],[-2.633469,51.43027],[-2.633498,51.435808],[-2.629525,51.437372],[-2.630376,51.439611],[-2.634234,51.439277],[-2.63635,51.439545],[-2.640086,51.440441],[-2.639896,51.441358],[-2.637972,51.441977],[-2.636631,51.443216],[-2.636844,51.444268],[-2.633085,51.447236],[-2.62966,51.446136],[-2.627005,51.446668],[-2.626425,51.448351],[-2.625802,51.448755],[-2.627936,51.452628],[-2.628684,51.454889],[-2.631851,51.457737],[-2.632093,51.458692],[-2.631566,51.459864],[-2.63178,51.46154],[-2.634368,51.466802],[-2.637198,51.468232],[-2.641476,51.469069],[-2.646103,51.470504],[-2.648734,51.472047],[-2.650434,51.47352],[-2.651134,51.473658],[-2.651814,51.477509],[-2.652623,51.479205],[-2.653984,51.480554],[-2.65887,51.484069],[-2.661475,51.486383],[-2.663624,51.486609],[-2.664567,51.48599],[-2.66548,51.484032],[-2.667209,51.482983],[-2.667144,51.482112],[-2.668125,51.481438],[-2.668603,51.481322],[-2.668697,51.4813],[-2.67051,51.481182],[-2.673139,51.48025],[-2.676245,51.479677],[-2.678222,51.480003],[-2.679704,51.480247],[-2.681509,51.480878],[-2.683565,51.481813],[-2.684745,51.480937],[-2.684549,51.482204],[-2.685414,51.482694],[-2.686771,51.483373],[-2.687006,51.483491],[-2.687565,51.48377],[-2.694531,51.48897],[-2.69614,51.489947],[-2.697611,51.49096],[-2.698729,51.491724],[-2.700114,51.492651],[-2.701157,51.492772],[-2.701134,51.492938],[-2.701096,51.493217],[-2.703474,51.494134],[-2.703816,51.494317],[-2.703823,51.494322],[-2.705053,51.494265],[-2.705924,51.494805],[-2.71169,51.496477],[-2.712796,51.497666],[-2.717566,51.500327],[-2.718209,51.50138],[-2.722791,51.501596],[-2.726652,51.500457],[-2.727451,51.499671],[-2.730553,51.501811],[-2.729454,51.502488],[-2.730527,51.50224],[-2.73075,51.501799],[-2.729837,51.501052],[-2.726914,51.49927],[-2.727277,51.498966],[-2.727898,51.499097],[-2.727262,51.498647],[-2.727365,51.498417],[-2.727691,51.498043],[-2.729119,51.497362],[-2.730853,51.496535],[-2.730735,51.496351],[-2.730456,51.496043],[-2.730964,51.496465],[-2.731582,51.495499],[-2.731886,51.495865],[-2.731939,51.495929],[-2.732492,51.495601],[-2.732897,51.494742],[-2.732894,51.494827],[-2.732877,51.49528],[-2.73342,51.494072],[-2.734296,51.494256],[-2.734202,51.493937],[-2.735438,51.492915],[-2.732599,51.492538],[-2.732297,51.492798],[-2.732534,51.49247],[-2.73511,51.492624],[-2.735959,51.493009],[-2.735934,51.493995],[-2.736694,51.494054],[-2.741659,51.493191],[-2.745931,51.492824],[-2.751238,51.492952],[-2.752624,51.493019],[-2.752403,51.492482],[-2.753178,51.491634],[-2.753376,51.491736]]]]},"properties":{"LAD22CD":"E06000024","LAD22NM":"North Somerset","BNG_E":347614,"BNG_N":166718,"LONG":-2.75438,"LAT":51.39706,"GlobalID":"fe777a52-5eb3-413d-abe2-f206103dfdc3"},"id":24}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.687983,51.529421],[-2.695392,51.522462],[-2.695215,51.522456],[-2.687983,51.529421]]],[[[-2.673814,51.544431],[-2.663689,51.536996],[-2.664478,51.536013],[-2.663739,51.534868],[-2.665728,51.533679],[-2.664614,51.531532],[-2.665425,51.530966],[-2.66013,51.527647],[-2.658095,51.526773],[-2.653654,51.523117],[-2.651403,51.520704],[-2.651666,51.51993],[-2.653744,51.518609],[-2.653205,51.516089],[-2.654494,51.514962],[-2.654486,51.513724],[-2.651508,51.512844],[-2.647162,51.512166],[-2.638514,51.512062],[-2.630879,51.513701],[-2.627512,51.51457],[-2.622726,51.51452],[-2.621094,51.514866],[-2.611134,51.513448],[-2.602453,51.513783],[-2.594267,51.51584],[-2.58799,51.517063],[-2.580989,51.517409],[-2.582004,51.514627],[-2.583087,51.512944],[-2.585852,51.512671],[-2.589228,51.511536],[-2.591223,51.509682],[-2.590503,51.508405],[-2.588021,51.50773],[-2.588545,51.50561],[-2.587864,51.504941],[-2.587691,51.503453],[-2.58815,51.501235],[-2.585245,51.501156],[-2.585628,51.501844],[-2.584519,51.502641],[-2.581715,51.50119],[-2.579834,51.500711],[-2.578118,51.500957],[-2.573096,51.500402],[-2.569928,51.499246],[-2.569088,51.499549],[-2.565973,51.498288],[-2.565065,51.497581],[-2.565339,51.496185],[-2.564789,51.495516],[-2.562241,51.495293],[-2.560077,51.496442],[-2.554662,51.496348],[-2.556156,51.494061],[-2.555348,51.492686],[-2.551602,51.492233],[-2.542166,51.492952],[-2.542538,51.49455],[-2.541744,51.495741],[-2.538952,51.495003],[-2.537704,51.497073],[-2.53433,51.496745],[-2.531742,51.495697],[-2.530278,51.496408],[-2.529229,51.496183],[-2.527754,51.494922],[-2.527939,51.493824],[-2.527473,51.492654],[-2.52533,51.493226],[-2.523341,51.49244],[-2.518037,51.492985],[-2.515865,51.493867],[-2.515966,51.492573],[-2.510999,51.489986],[-2.511393,51.48929],[-2.516712,51.485155],[-2.515128,51.481758],[-2.51524,51.481466],[-2.511478,51.474832],[-2.510836,51.471595],[-2.511506,51.470234],[-2.512613,51.470398],[-2.512924,51.469051],[-2.512285,51.468606],[-2.513252,51.465661],[-2.511347,51.465208],[-2.512246,51.462333],[-2.514259,51.461437],[-2.515363,51.459931],[-2.516229,51.46],[-2.518463,51.459078],[-2.519215,51.457573],[-2.518463,51.455657],[-2.519177,51.453733],[-2.518937,51.452611],[-2.522278,51.449803],[-2.525129,51.448972],[-2.529931,51.448232],[-2.531666,51.446442],[-2.534768,51.44653],[-2.535607,51.44734],[-2.537681,51.447013],[-2.539119,51.446333],[-2.539254,51.445569],[-2.538046,51.444794],[-2.536632,51.444589],[-2.53078,51.445593],[-2.528322,51.444955],[-2.526752,51.443865],[-2.526449,51.442557],[-2.527044,51.43625],[-2.525355,51.434124],[-2.523543,51.432606],[-2.521664,51.431718],[-2.516991,51.430816],[-2.513437,51.429631],[-2.510701,51.429269],[-2.510463,51.428782],[-2.508288,51.4279],[-2.508056,51.426594],[-2.508469,51.425009],[-2.507986,51.424641],[-2.505722,51.425662],[-2.503975,51.426027],[-2.502493,51.427126],[-2.498606,51.428633],[-2.496139,51.42867],[-2.494252,51.429414],[-2.49151,51.42894],[-2.488435,51.42648],[-2.488643,51.425235],[-2.490319,51.424042],[-2.492565,51.421458],[-2.492896,51.418345],[-2.490009,51.417669],[-2.486423,51.420584],[-2.484864,51.420715],[-2.48306,51.421429],[-2.48104,51.421584],[-2.47636,51.418497],[-2.473501,51.418071],[-2.472181,51.416987],[-2.469645,51.415932],[-2.464308,51.417319],[-2.460934,51.416662],[-2.458456,51.41681],[-2.457513,51.417852],[-2.455837,51.418495],[-2.454696,51.41844],[-2.450639,51.417331],[-2.446655,51.417988],[-2.445874,51.418945],[-2.443428,51.418336],[-2.441525,51.419291],[-2.444106,51.421044],[-2.444456,51.422349],[-2.442796,51.422751],[-2.441298,51.422491],[-2.438444,51.423169],[-2.431383,51.423723],[-2.430146,51.424169],[-2.427634,51.424212],[-2.42424,51.42372],[-2.422922,51.42385],[-2.418177,51.425229],[-2.416364,51.426072],[-2.414764,51.426329],[-2.412944,51.425841],[-2.410596,51.426227],[-2.405773,51.428645],[-2.403163,51.430637],[-2.403099,51.431595],[-2.39907,51.432057],[-2.397188,51.43125],[-2.396699,51.432025],[-2.386042,51.431986],[-2.38034,51.434102],[-2.377254,51.432831],[-2.375899,51.433757],[-2.373232,51.434422],[-2.367219,51.437054],[-2.361475,51.437403],[-2.361043,51.436551],[-2.358835,51.435786],[-2.35767,51.435838],[-2.354993,51.437202],[-2.353838,51.437348],[-2.351794,51.438739],[-2.350633,51.438377],[-2.34695,51.438553],[-2.342037,51.439403],[-2.339398,51.438157],[-2.336072,51.437381],[-2.332528,51.437528],[-2.331854,51.437793],[-2.328616,51.437041],[-2.325029,51.436991],[-2.324156,51.434716],[-2.323487,51.434469],[-2.322149,51.432789],[-2.321103,51.432599],[-2.318151,51.431014],[-2.317684,51.430269],[-2.31385,51.428911],[-2.314234,51.427638],[-2.31316,51.426572],[-2.313784,51.423177],[-2.312616,51.422446],[-2.309866,51.423083],[-2.30765,51.42469],[-2.30363,51.425097],[-2.301467,51.4259],[-2.301654,51.426321],[-2.298819,51.428798],[-2.294616,51.428802],[-2.288945,51.446421],[-2.28804,51.454563],[-2.286749,51.457042],[-2.287754,51.45687],[-2.289244,51.457651],[-2.293336,51.457784],[-2.295743,51.45859],[-2.294594,51.463848],[-2.294581,51.466785],[-2.29282,51.467458],[-2.293401,51.46865],[-2.291616,51.472967],[-2.291245,51.475573],[-2.29034,51.477075],[-2.288851,51.47815],[-2.289633,51.478833],[-2.290586,51.485352],[-2.291337,51.486628],[-2.293699,51.486905],[-2.29558,51.487794],[-2.297464,51.487828],[-2.300511,51.487277],[-2.301781,51.486355],[-2.304225,51.485841],[-2.304402,51.486357],[-2.310425,51.488157],[-2.311423,51.487373],[-2.313645,51.490476],[-2.31703,51.492437],[-2.319213,51.49457],[-2.324325,51.497509],[-2.32164,51.498255],[-2.311889,51.502864],[-2.306044,51.503799],[-2.297453,51.506215],[-2.296285,51.506765],[-2.297117,51.508007],[-2.296269,51.508813],[-2.296383,51.509745],[-2.286932,51.512936],[-2.281294,51.51563],[-2.277563,51.516862],[-2.270397,51.518365],[-2.263719,51.518559],[-2.262691,51.51963],[-2.255809,51.522078],[-2.255784,51.522957],[-2.25475,51.52404],[-2.254926,51.525665],[-2.252388,51.526874],[-2.252109,51.528138],[-2.253533,51.528744],[-2.257664,51.528415],[-2.260006,51.530369],[-2.260539,51.532082],[-2.260257,51.533952],[-2.261862,51.534505],[-2.263362,51.534392],[-2.264069,51.535398],[-2.265659,51.535426],[-2.266502,51.536262],[-2.264816,51.537586],[-2.262213,51.541661],[-2.261722,51.544741],[-2.264245,51.545652],[-2.268369,51.549692],[-2.266809,51.551354],[-2.267554,51.552212],[-2.26703,51.553322],[-2.267801,51.553874],[-2.268404,51.555744],[-2.267686,51.558163],[-2.268102,51.558788],[-2.267406,51.562885],[-2.266062,51.564319],[-2.266499,51.564655],[-2.264437,51.566828],[-2.264135,51.567974],[-2.2603,51.569901],[-2.263423,51.571305],[-2.26643,51.571749],[-2.268803,51.572449],[-2.273993,51.572359],[-2.273951,51.574382],[-2.272559,51.57759],[-2.274474,51.578911],[-2.276562,51.579896],[-2.278669,51.577803],[-2.282746,51.578517],[-2.281278,51.579622],[-2.282049,51.580701],[-2.280717,51.581044],[-2.282072,51.582268],[-2.284933,51.583242],[-2.287278,51.583157],[-2.286551,51.584471],[-2.284594,51.584151],[-2.283503,51.584963],[-2.286008,51.585534],[-2.287672,51.586583],[-2.290528,51.587414],[-2.291005,51.58693],[-2.293425,51.587702],[-2.294086,51.588574],[-2.2927,51.589964],[-2.290448,51.590968],[-2.2893,51.592361],[-2.289854,51.593204],[-2.291637,51.593696],[-2.29439,51.594796],[-2.29655,51.594995],[-2.296438,51.593802],[-2.297885,51.592387],[-2.301013,51.591601],[-2.304001,51.592763],[-2.305598,51.59299],[-2.306102,51.591977],[-2.308148,51.591628],[-2.308253,51.592865],[-2.31657,51.589834],[-2.319668,51.592659],[-2.319847,51.593915],[-2.32265,51.593676],[-2.323825,51.593188],[-2.326749,51.59281],[-2.328402,51.593183],[-2.331069,51.591604],[-2.331179,51.592504],[-2.330376,51.593205],[-2.33127,51.595486],[-2.333293,51.595477],[-2.334176,51.596633],[-2.335048,51.59649],[-2.335253,51.594254],[-2.338256,51.595321],[-2.339479,51.594134],[-2.343366,51.595197],[-2.34402,51.596499],[-2.347192,51.597413],[-2.349865,51.597262],[-2.352786,51.596696],[-2.354053,51.599389],[-2.355096,51.600099],[-2.356829,51.600514],[-2.357539,51.601566],[-2.359858,51.601004],[-2.362944,51.601236],[-2.362232,51.602711],[-2.365582,51.603735],[-2.366581,51.603056],[-2.366762,51.600976],[-2.367782,51.599767],[-2.370079,51.598559],[-2.370577,51.597614],[-2.373573,51.597481],[-2.375758,51.597962],[-2.38,51.596423],[-2.385157,51.596788],[-2.386827,51.597229],[-2.388089,51.596932],[-2.39187,51.597382],[-2.3931,51.597076],[-2.394775,51.597452],[-2.394489,51.599106],[-2.396479,51.600342],[-2.394906,51.601759],[-2.39449,51.603143],[-2.395428,51.605125],[-2.394165,51.609607],[-2.393187,51.610621],[-2.39057,51.611579],[-2.390771,51.613028],[-2.39184,51.613399],[-2.391249,51.614348],[-2.391594,51.615348],[-2.390003,51.616394],[-2.389301,51.618104],[-2.389928,51.618468],[-2.38885,51.622243],[-2.388441,51.624451],[-2.389509,51.624792],[-2.38891,51.62754],[-2.392969,51.630053],[-2.393656,51.631743],[-2.395009,51.631817],[-2.395306,51.632621],[-2.3975,51.633037],[-2.400457,51.634428],[-2.400475,51.635143],[-2.397442,51.635988],[-2.392635,51.636148],[-2.389992,51.636443],[-2.388182,51.637175],[-2.386116,51.637612],[-2.385351,51.638671],[-2.385989,51.639943],[-2.388441,51.640146],[-2.390164,51.640716],[-2.392569,51.639077],[-2.394815,51.638621],[-2.397143,51.639554],[-2.394784,51.64212],[-2.396566,51.642807],[-2.395834,51.643612],[-2.398836,51.64581],[-2.4011,51.644664],[-2.402738,51.642498],[-2.404132,51.642859],[-2.404783,51.641363],[-2.406422,51.64167],[-2.407217,51.641199],[-2.410184,51.641877],[-2.411534,51.642791],[-2.412381,51.642714],[-2.413918,51.644061],[-2.41532,51.644626],[-2.416736,51.643311],[-2.420215,51.644617],[-2.421284,51.64548],[-2.424116,51.645836],[-2.427229,51.647244],[-2.430834,51.646562],[-2.432011,51.646992],[-2.431702,51.648565],[-2.432177,51.649086],[-2.434304,51.649197],[-2.435506,51.649889],[-2.437063,51.649539],[-2.437706,51.650105],[-2.439556,51.649899],[-2.441934,51.652217],[-2.442984,51.652492],[-2.444803,51.651112],[-2.445656,51.649334],[-2.449207,51.64979],[-2.45252,51.651371],[-2.4558,51.651833],[-2.458779,51.651281],[-2.460442,51.652602],[-2.462748,51.651978],[-2.463714,51.650977],[-2.46579,51.651045],[-2.470335,51.647474],[-2.474718,51.646565],[-2.482152,51.646409],[-2.485572,51.64507],[-2.487262,51.644689],[-2.490676,51.644834],[-2.49005,51.645699],[-2.487948,51.646511],[-2.48497,51.648419],[-2.48935,51.648881],[-2.491845,51.649665],[-2.493034,51.651901],[-2.491404,51.653753],[-2.491702,51.655925],[-2.492705,51.657779],[-2.491802,51.660359],[-2.491679,51.662859],[-2.489816,51.663385],[-2.490836,51.664316],[-2.49254,51.664168],[-2.495195,51.664642],[-2.496424,51.664421],[-2.498638,51.66499],[-2.501674,51.664736],[-2.501364,51.665368],[-2.505351,51.666218],[-2.509006,51.666001],[-2.509862,51.667914],[-2.517492,51.670701],[-2.519773,51.671253],[-2.533813,51.676541],[-2.534733,51.67731],[-2.542182,51.673891],[-2.548867,51.670934],[-2.553691,51.669353],[-2.558532,51.666336],[-2.565496,51.658682],[-2.569106,51.655547],[-2.573746,51.648607],[-2.57374,51.646424],[-2.575909,51.641912],[-2.578871,51.638247],[-2.579964,51.634077],[-2.578919,51.633035],[-2.580854,51.633078],[-2.584178,51.62906],[-2.584028,51.628382],[-2.585718,51.627747],[-2.591361,51.622945],[-2.598059,51.618388],[-2.604183,51.614866],[-2.608446,51.613143],[-2.61034,51.611786],[-2.613631,51.610312],[-2.622225,51.607081],[-2.625872,51.605933],[-2.62779,51.605646],[-2.630291,51.601501],[-2.633995,51.597969],[-2.635802,51.595503],[-2.635244,51.593944],[-2.636314,51.59392],[-2.639923,51.589484],[-2.643582,51.585968],[-2.649458,51.581583],[-2.65288,51.579473],[-2.654149,51.578017],[-2.657853,51.575636],[-2.660793,51.574825],[-2.661203,51.574318],[-2.66335,51.573708],[-2.663937,51.573037],[-2.665403,51.569832],[-2.665405,51.568946],[-2.666634,51.568745],[-2.666701,51.567602],[-2.666043,51.566476],[-2.667119,51.56294],[-2.667479,51.559012],[-2.667101,51.558275],[-2.668062,51.554008],[-2.671014,51.547843],[-2.672552,51.545693],[-2.673814,51.544431]]]]},"properties":{"LAD22CD":"E06000025","LAD22NM":"South Gloucestershire","BNG_E":367559,"BNG_N":183198,"LONG":-2.46922,"LAT":51.54673,"GlobalID":"40a3324f-fe10-41f3-9b1e-86938438a38c"},"id":25}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.154508,50.356103],[-4.153323,50.354565],[-4.151719,50.354786],[-4.15198,50.355744],[-4.154508,50.356103]]],[[[-4.123058,50.346709],[-4.119349,50.345141],[-4.116349,50.345586],[-4.114676,50.344374],[-4.10725,50.345585],[-4.104663,50.345689],[-4.101953,50.345108],[-4.099959,50.344277],[-4.094255,50.34325],[-4.093277,50.343381],[-4.09076,50.341719],[-4.089588,50.341334],[-4.088644,50.342961],[-4.085784,50.343369],[-4.082915,50.344973],[-4.081391,50.346603],[-4.079418,50.350154],[-4.072342,50.352709],[-4.071687,50.353487],[-4.065364,50.355376],[-4.064138,50.35605],[-4.061925,50.356671],[-4.06094,50.355874],[-4.059688,50.356733],[-4.058174,50.356126],[-4.05758,50.357204],[-4.057796,50.358335],[-4.053828,50.357449],[-4.050196,50.358049],[-4.051593,50.360482],[-4.049703,50.361141],[-4.050948,50.36226],[-4.049761,50.363081],[-4.055088,50.368256],[-4.05432,50.369792],[-4.050586,50.374677],[-4.0502,50.377471],[-4.047554,50.377655],[-4.040558,50.377132],[-4.034999,50.377205],[-4.030881,50.37782],[-4.027062,50.379032],[-4.024551,50.380977],[-4.025318,50.381785],[-4.025735,50.383314],[-4.019634,50.387465],[-4.020931,50.388748],[-4.021519,50.390668],[-4.02117,50.391777],[-4.028902,50.39221],[-4.027815,50.394002],[-4.03155,50.39429],[-4.030412,50.397079],[-4.034694,50.397487],[-4.037591,50.397344],[-4.041146,50.39778],[-4.039478,50.40075],[-4.03965,50.40142],[-4.044253,50.40109],[-4.046605,50.401978],[-4.048698,50.402106],[-4.048928,50.40163],[-4.052511,50.402508],[-4.052609,50.401472],[-4.055339,50.401126],[-4.055467,50.401978],[-4.056747,50.402581],[-4.059815,50.401154],[-4.063544,50.401067],[-4.07151,50.40185],[-4.072183,50.403831],[-4.072539,50.407137],[-4.074604,50.408186],[-4.077784,50.408586],[-4.078962,50.409642],[-4.077604,50.410483],[-4.07697,50.411694],[-4.077762,50.412981],[-4.077287,50.413568],[-4.080549,50.415358],[-4.08102,50.416503],[-4.079111,50.41889],[-4.080567,50.419828],[-4.082395,50.422268],[-4.082584,50.424552],[-4.084731,50.425826],[-4.087233,50.425828],[-4.088586,50.426663],[-4.090558,50.427129],[-4.09318,50.427057],[-4.094206,50.427819],[-4.097931,50.428645],[-4.098881,50.429738],[-4.101243,50.4304],[-4.10415,50.430123],[-4.106203,50.430332],[-4.107301,50.431254],[-4.109541,50.432095],[-4.108296,50.432598],[-4.108765,50.433799],[-4.106708,50.434868],[-4.107712,50.435557],[-4.106699,50.436971],[-4.106514,50.438562],[-4.109112,50.43847],[-4.110217,50.442198],[-4.112742,50.4434],[-4.113488,50.444154],[-4.116135,50.442993],[-4.116922,50.443388],[-4.11848,50.442345],[-4.122676,50.440818],[-4.125119,50.438402],[-4.124396,50.436094],[-4.124879,50.43571],[-4.131965,50.433671],[-4.135664,50.432928],[-4.138074,50.432914],[-4.13937,50.433368],[-4.141623,50.433271],[-4.144615,50.432318],[-4.146575,50.431102],[-4.148649,50.432955],[-4.150745,50.433001],[-4.151122,50.436635],[-4.155856,50.436427],[-4.15629,50.43375],[-4.159955,50.431345],[-4.165304,50.429998],[-4.16472,50.428587],[-4.163464,50.427606],[-4.162747,50.427375],[-4.165169,50.425435],[-4.165201,50.425401],[-4.166068,50.424283],[-4.168938,50.422945],[-4.170787,50.422433],[-4.173531,50.422276],[-4.174534,50.422546],[-4.175771,50.421948],[-4.177873,50.42217],[-4.181568,50.423317],[-4.184428,50.423288],[-4.185839,50.421666],[-4.186137,50.423637],[-4.188557,50.423903],[-4.190244,50.42468],[-4.192324,50.424684],[-4.192821,50.424038],[-4.192248,50.422666],[-4.193474,50.421655],[-4.197663,50.411877],[-4.199121,50.410554],[-4.199089,50.409942],[-4.201256,50.406884],[-4.200661,50.405657],[-4.202229,50.40479],[-4.201902,50.402309],[-4.201172,50.40148],[-4.203111,50.40116],[-4.205338,50.399532],[-4.202976,50.396497],[-4.197587,50.394808],[-4.196235,50.393977],[-4.195633,50.393012],[-4.194282,50.392136],[-4.187741,50.393376],[-4.187912,50.394149],[-4.185697,50.394793],[-4.184812,50.392467],[-4.191825,50.390945],[-4.192917,50.390076],[-4.190206,50.388565],[-4.188258,50.3838],[-4.184179,50.384336],[-4.183701,50.382747],[-4.185994,50.382144],[-4.18622,50.381691],[-4.185315,50.380135],[-4.184398,50.376931],[-4.183862,50.376254],[-4.184204,50.374493],[-4.184145,50.372185],[-4.185151,50.370486],[-4.185472,50.367206],[-4.180605,50.365018],[-4.178094,50.364863],[-4.172568,50.365586],[-4.170277,50.365197],[-4.168456,50.364131],[-4.166905,50.364829],[-4.16727,50.366332],[-4.166561,50.367932],[-4.163781,50.36945],[-4.163296,50.369035],[-4.165769,50.367674],[-4.166258,50.366739],[-4.163267,50.366281],[-4.163704,50.364836],[-4.162536,50.364201],[-4.164902,50.362431],[-4.16715,50.361792],[-4.167402,50.359855],[-4.165722,50.359636],[-4.164066,50.35894],[-4.162229,50.361064],[-4.161194,50.36135],[-4.157568,50.361086],[-4.156728,50.361328],[-4.155468,50.362988],[-4.157277,50.364574],[-4.155596,50.36522],[-4.156432,50.366003],[-4.156267,50.367152],[-4.154381,50.367547],[-4.151836,50.364481],[-4.151542,50.363341],[-4.149461,50.362297],[-4.148437,50.362327],[-4.145791,50.36427],[-4.143708,50.363939],[-4.142028,50.36286],[-4.141352,50.363821],[-4.13917,50.363207],[-4.134821,50.363038],[-4.133538,50.363342],[-4.134483,50.364491],[-4.133725,50.366108],[-4.131666,50.366514],[-4.129866,50.366082],[-4.130615,50.365119],[-4.129809,50.36424],[-4.126394,50.364735],[-4.124056,50.363949],[-4.123049,50.362202],[-4.120594,50.361356],[-4.115704,50.361786],[-4.115095,50.362728],[-4.113942,50.362533],[-4.112497,50.364019],[-4.111942,50.365353],[-4.109866,50.368193],[-4.109549,50.369273],[-4.110585,50.370833],[-4.11073,50.372678],[-4.109093,50.373075],[-4.107324,50.376673],[-4.10443,50.379885],[-4.100173,50.383565],[-4.090916,50.386017],[-4.088446,50.387344],[-4.084789,50.386492],[-4.086827,50.385564],[-4.088582,50.383186],[-4.089372,50.382805],[-4.092753,50.382247],[-4.099352,50.379709],[-4.099878,50.378143],[-4.103918,50.370527],[-4.107561,50.368709],[-4.107902,50.367531],[-4.101749,50.366172],[-4.101696,50.365547],[-4.105976,50.366811],[-4.108917,50.366516],[-4.108889,50.365117],[-4.11035,50.36335],[-4.110118,50.361377],[-4.112436,50.359435],[-4.112339,50.357447],[-4.110525,50.357165],[-4.10904,50.358006],[-4.106651,50.358589],[-4.105318,50.357279],[-4.105388,50.356507],[-4.112052,50.354918],[-4.11392,50.354961],[-4.112762,50.356344],[-4.11327,50.358593],[-4.113943,50.359372],[-4.115559,50.359301],[-4.116272,50.360315],[-4.118079,50.359745],[-4.11765,50.358835],[-4.120468,50.35783],[-4.124025,50.357953],[-4.125585,50.358544],[-4.12613,50.359538],[-4.128263,50.360731],[-4.130363,50.360607],[-4.131838,50.359361],[-4.13074,50.358723],[-4.128605,50.358659],[-4.127087,50.358046],[-4.124562,50.355383],[-4.125727,50.354747],[-4.124463,50.353047],[-4.122816,50.352231],[-4.122697,50.351279],[-4.121665,50.350553],[-4.12155,50.348629],[-4.123058,50.346709]]]]},"properties":{"LAD22CD":"E06000026","LAD22NM":"Plymouth","BNG_E":249945,"BNG_N":58255,"LONG":-4.11297,"LAT":50.40494,"GlobalID":"a5444b29-6484-4c16-9423-c2b8506948fb"},"id":26}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.509135,50.51658],[-3.513816,50.516539],[-3.516545,50.518502],[-3.517264,50.517367],[-3.520905,50.517684],[-3.519995,50.511043],[-3.522926,50.509945],[-3.524865,50.508705],[-3.526901,50.508005],[-3.529013,50.506801],[-3.529952,50.504587],[-3.532772,50.50525],[-3.53318,50.504634],[-3.535127,50.505142],[-3.536634,50.505937],[-3.538476,50.504395],[-3.539143,50.504535],[-3.539024,50.502173],[-3.541285,50.500763],[-3.542259,50.498837],[-3.543276,50.498968],[-3.543798,50.497347],[-3.551572,50.494889],[-3.553691,50.495093],[-3.556369,50.494805],[-3.558409,50.495026],[-3.561075,50.494463],[-3.562834,50.493333],[-3.562097,50.491493],[-3.562389,50.488477],[-3.564774,50.486967],[-3.567251,50.487915],[-3.567508,50.489413],[-3.570194,50.490444],[-3.570321,50.489293],[-3.57124,50.488253],[-3.572947,50.487462],[-3.574104,50.487667],[-3.574921,50.486856],[-3.575635,50.484539],[-3.576652,50.483163],[-3.579217,50.482198],[-3.580846,50.480321],[-3.584471,50.47924],[-3.58425,50.477723],[-3.583575,50.476701],[-3.584131,50.475816],[-3.583568,50.473348],[-3.582606,50.47192],[-3.582802,50.469011],[-3.586639,50.464758],[-3.590508,50.462306],[-3.591484,50.459651],[-3.588922,50.459799],[-3.58828,50.457215],[-3.586984,50.456988],[-3.586945,50.456164],[-3.587988,50.455344],[-3.586783,50.453695],[-3.586885,50.45223],[-3.588426,50.451964],[-3.588662,50.450612],[-3.592182,50.450218],[-3.591963,50.4491],[-3.594262,50.448513],[-3.597079,50.448967],[-3.599593,50.44798],[-3.602957,50.447965],[-3.606053,50.4473],[-3.607157,50.446717],[-3.612776,50.446967],[-3.615074,50.44554],[-3.615481,50.444506],[-3.619306,50.442388],[-3.623563,50.441307],[-3.625075,50.441286],[-3.624589,50.44024],[-3.625286,50.438877],[-3.625354,50.436804],[-3.627127,50.434783],[-3.628412,50.434324],[-3.628062,50.43359],[-3.628043,50.425989],[-3.624139,50.42496],[-3.623476,50.424335],[-3.623842,50.422686],[-3.619413,50.423157],[-3.618751,50.422669],[-3.616693,50.423095],[-3.614042,50.422821],[-3.614462,50.419084],[-3.613839,50.417665],[-3.613911,50.415483],[-3.611613,50.413761],[-3.609858,50.413931],[-3.607251,50.413302],[-3.607364,50.412724],[-3.604483,50.412221],[-3.603756,50.411215],[-3.602368,50.411049],[-3.600275,50.410174],[-3.599047,50.409269],[-3.597534,50.410134],[-3.596317,50.409814],[-3.594183,50.409977],[-3.591415,50.408615],[-3.589441,50.409186],[-3.587708,50.410556],[-3.585345,50.410608],[-3.582549,50.410186],[-3.581986,50.411174],[-3.579851,50.410205],[-3.580142,50.409418],[-3.577989,50.408429],[-3.577598,50.406972],[-3.578879,50.404153],[-3.576389,50.403709],[-3.575374,50.402763],[-3.573617,50.40217],[-3.576053,50.400502],[-3.575348,50.39911],[-3.575527,50.397182],[-3.573786,50.396716],[-3.572976,50.395896],[-3.574746,50.395015],[-3.57188,50.394739],[-3.569186,50.393876],[-3.569837,50.392959],[-3.569413,50.392148],[-3.565801,50.391579],[-3.564641,50.392153],[-3.563133,50.390356],[-3.561239,50.386098],[-3.559994,50.384918],[-3.55951,50.382279],[-3.558903,50.381963],[-3.557164,50.379578],[-3.555338,50.378116],[-3.548506,50.376126],[-3.544256,50.373483],[-3.543729,50.37398],[-3.54167,50.374519],[-3.541215,50.375384],[-3.539089,50.375344],[-3.535438,50.376083],[-3.533922,50.37731],[-3.52964,50.37824],[-3.528502,50.378255],[-3.526085,50.377648],[-3.520742,50.378146],[-3.51849,50.378856],[-3.515523,50.379297],[-3.514859,50.378827],[-3.509247,50.379537],[-3.507661,50.37914],[-3.506289,50.379892],[-3.502094,50.380131],[-3.501501,50.380586],[-3.498757,50.380667],[-3.496445,50.381426],[-3.497595,50.382423],[-3.497982,50.384017],[-3.499092,50.384294],[-3.502068,50.384131],[-3.503171,50.384609],[-3.503815,50.386566],[-3.503418,50.388585],[-3.502104,50.389552],[-3.499519,50.389717],[-3.496432,50.391793],[-3.49281,50.391546],[-3.492578,50.392853],[-3.490126,50.394257],[-3.488652,50.394373],[-3.4896,50.395834],[-3.489206,50.396872],[-3.488044,50.397958],[-3.48475,50.397965],[-3.482364,50.399013],[-3.483693,50.400421],[-3.48684,50.400896],[-3.488627,50.40036],[-3.492707,50.401273],[-3.495785,50.401003],[-3.498632,50.401469],[-3.500833,50.400908],[-3.501186,50.400349],[-3.505689,50.399465],[-3.508056,50.398321],[-3.509017,50.39747],[-3.510855,50.397142],[-3.511799,50.395908],[-3.513061,50.396524],[-3.512284,50.397745],[-3.516455,50.40124],[-3.51952,50.403171],[-3.520452,50.403177],[-3.521371,50.402098],[-3.524221,50.402768],[-3.523085,50.403364],[-3.527524,50.404272],[-3.528316,50.404777],[-3.532285,50.404817],[-3.534576,50.404454],[-3.536722,50.404536],[-3.537466,50.403847],[-3.540276,50.403469],[-3.541417,50.402838],[-3.544675,50.402091],[-3.546262,50.402944],[-3.545957,50.403761],[-3.546817,50.40437],[-3.547071,50.4056],[-3.548809,50.406458],[-3.551208,50.406447],[-3.552535,50.405447],[-3.554012,50.40584],[-3.555261,50.406762],[-3.556196,50.408712],[-3.555432,50.410825],[-3.554396,50.411972],[-3.554809,50.413032],[-3.554586,50.414369],[-3.556252,50.414556],[-3.556892,50.416235],[-3.55574,50.418464],[-3.557489,50.419201],[-3.55928,50.420758],[-3.5595,50.426454],[-3.559105,50.427685],[-3.557809,50.428105],[-3.554497,50.428259],[-3.553141,50.429227],[-3.554011,50.43064],[-3.553523,50.431441],[-3.557338,50.431642],[-3.557732,50.432668],[-3.559127,50.433155],[-3.559119,50.435498],[-3.557858,50.439982],[-3.557201,50.441034],[-3.557226,50.442535],[-3.555066,50.446249],[-3.553714,50.447303],[-3.553188,50.449306],[-3.552003,50.451152],[-3.55029,50.452161],[-3.54912,50.452321],[-3.54672,50.452005],[-3.544862,50.452576],[-3.543894,50.453685],[-3.545178,50.454208],[-3.545119,50.45592],[-3.543032,50.457498],[-3.541851,50.458009],[-3.540188,50.460488],[-3.535451,50.462711],[-3.533569,50.463068],[-3.530695,50.461174],[-3.528476,50.460391],[-3.526392,50.460144],[-3.525375,50.459038],[-3.525138,50.457551],[-3.523176,50.457518],[-3.519108,50.454695],[-3.517167,50.454491],[-3.515934,50.453763],[-3.513439,50.454328],[-3.512836,50.455548],[-3.510602,50.455014],[-3.510536,50.456087],[-3.509112,50.457282],[-3.504152,50.459596],[-3.5008,50.459925],[-3.499539,50.459159],[-3.498015,50.458945],[-3.494401,50.459209],[-3.493712,50.458623],[-3.491295,50.458124],[-3.488723,50.459421],[-3.487817,50.460602],[-3.485647,50.460834],[-3.484464,50.459833],[-3.483426,50.460354],[-3.482927,50.46165],[-3.480668,50.463404],[-3.481645,50.464136],[-3.483012,50.46316],[-3.485489,50.463402],[-3.48672,50.46308],[-3.488851,50.463737],[-3.490046,50.464447],[-3.491101,50.466231],[-3.490336,50.467802],[-3.490381,50.469124],[-3.492029,50.47035],[-3.493101,50.46992],[-3.494769,50.470039],[-3.496467,50.471412],[-3.497895,50.470868],[-3.499479,50.471099],[-3.501091,50.471826],[-3.500783,50.472428],[-3.502098,50.473183],[-3.500935,50.474907],[-3.497375,50.475745],[-3.501554,50.477449],[-3.503347,50.477581],[-3.505387,50.478972],[-3.508461,50.47939],[-3.509655,50.479119],[-3.512062,50.479651],[-3.514799,50.481689],[-3.514635,50.485163],[-3.512825,50.486029],[-3.513339,50.487342],[-3.514398,50.487371],[-3.514569,50.48861],[-3.513466,50.492308],[-3.513422,50.494867],[-3.515316,50.496139],[-3.513177,50.496946],[-3.514322,50.497623],[-3.512744,50.498645],[-3.512439,50.500175],[-3.51293,50.501377],[-3.512268,50.502757],[-3.513071,50.503293],[-3.5127,50.504533],[-3.513308,50.506193],[-3.510988,50.507578],[-3.511915,50.509692],[-3.511223,50.5117],[-3.509667,50.512244],[-3.51021,50.514145],[-3.508606,50.515344],[-3.509135,50.51658]]]},"properties":{"LAD22CD":"E06000027","LAD22NM":"Torbay","BNG_E":289730,"BNG_N":64613,"LONG":-3.55523,"LAT":50.47092,"GlobalID":"f0be02e5-fab0-4fd2-b47e-1a2510bdfc4d"},"id":27}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.683059,51.69011],[-1.684146,51.691191],[-1.686931,51.691278],[-1.688549,51.692192],[-1.691434,51.692175],[-1.693647,51.692713],[-1.696831,51.692042],[-1.697682,51.690866],[-1.698233,51.689258],[-1.699064,51.688872],[-1.698993,51.687642],[-1.700576,51.6878],[-1.700652,51.686473],[-1.703725,51.685954],[-1.706012,51.684695],[-1.706132,51.68337],[-1.707434,51.683381],[-1.709661,51.681657],[-1.709794,51.680095],[-1.708844,51.679494],[-1.709381,51.677911],[-1.710245,51.677325],[-1.709578,51.676281],[-1.711274,51.674879],[-1.711055,51.671793],[-1.712904,51.671887],[-1.717464,51.670971],[-1.720856,51.668846],[-1.72223,51.66974],[-1.724737,51.668149],[-1.726558,51.667896],[-1.727554,51.66721],[-1.728577,51.66777],[-1.731646,51.667451],[-1.735473,51.667678],[-1.737345,51.667292],[-1.739213,51.667426],[-1.741654,51.666053],[-1.742084,51.665433],[-1.744681,51.664746],[-1.744882,51.664103],[-1.749175,51.662975],[-1.750999,51.663241],[-1.754562,51.662599],[-1.757894,51.663168],[-1.760101,51.663026],[-1.761457,51.662453],[-1.76632,51.662684],[-1.768188,51.663797],[-1.768469,51.66562],[-1.770275,51.66797],[-1.772937,51.66792],[-1.774549,51.668272],[-1.776989,51.669391],[-1.778023,51.669113],[-1.781483,51.669074],[-1.784497,51.667797],[-1.788617,51.667002],[-1.791067,51.664628],[-1.791979,51.663387],[-1.794151,51.663272],[-1.796176,51.662466],[-1.799081,51.662505],[-1.798693,51.661546],[-1.797297,51.660903],[-1.79509,51.657062],[-1.796227,51.656547],[-1.795919,51.654127],[-1.794672,51.651368],[-1.794938,51.650752],[-1.793413,51.648842],[-1.793569,51.647935],[-1.790484,51.641378],[-1.788975,51.636824],[-1.789939,51.634808],[-1.788584,51.632714],[-1.806377,51.632719],[-1.807441,51.63039],[-1.814316,51.624507],[-1.820189,51.627749],[-1.821264,51.626958],[-1.828283,51.625098],[-1.829223,51.624083],[-1.830584,51.62371],[-1.830934,51.621312],[-1.831867,51.621242],[-1.834264,51.619758],[-1.835351,51.619659],[-1.835951,51.617932],[-1.836967,51.616976],[-1.83901,51.616693],[-1.839903,51.615824],[-1.83972,51.614436],[-1.841086,51.61407],[-1.842378,51.612117],[-1.841037,51.609833],[-1.841609,51.606953],[-1.840994,51.606675],[-1.84219,51.605211],[-1.842077,51.604016],[-1.840338,51.602281],[-1.840953,51.60147],[-1.839855,51.599919],[-1.836848,51.598677],[-1.834664,51.598787],[-1.834062,51.59773],[-1.832687,51.597531],[-1.831857,51.596729],[-1.83246,51.595629],[-1.831853,51.595111],[-1.832801,51.594267],[-1.833031,51.593138],[-1.832393,51.592336],[-1.833129,51.591184],[-1.835355,51.591071],[-1.835159,51.590218],[-1.836961,51.589786],[-1.837562,51.587242],[-1.835562,51.585505],[-1.832174,51.585197],[-1.826482,51.58377],[-1.823625,51.584464],[-1.822604,51.583855],[-1.823166,51.583014],[-1.824893,51.581876],[-1.826336,51.579437],[-1.830837,51.58175],[-1.832623,51.580791],[-1.838477,51.580029],[-1.837575,51.578812],[-1.839863,51.578217],[-1.840931,51.57885],[-1.843146,51.578659],[-1.842968,51.57706],[-1.844116,51.57572],[-1.844702,51.574012],[-1.84403,51.572028],[-1.844349,51.570213],[-1.846794,51.569636],[-1.850078,51.568098],[-1.849845,51.567352],[-1.847028,51.566282],[-1.846585,51.564843],[-1.845398,51.564102],[-1.84568,51.562649],[-1.845189,51.561718],[-1.851785,51.562295],[-1.853554,51.562996],[-1.854778,51.562671],[-1.857585,51.56331],[-1.860104,51.565244],[-1.860985,51.564459],[-1.860565,51.563627],[-1.862191,51.560028],[-1.862621,51.559563],[-1.860148,51.558983],[-1.849616,51.553628],[-1.849277,51.553309],[-1.853789,51.550492],[-1.851597,51.548996],[-1.850525,51.546766],[-1.853824,51.546302],[-1.849053,51.544411],[-1.844377,51.543445],[-1.844036,51.541789],[-1.844578,51.540767],[-1.843928,51.538477],[-1.840886,51.5315],[-1.838165,51.531702],[-1.837302,51.529792],[-1.839956,51.529374],[-1.838791,51.526193],[-1.836908,51.524015],[-1.836661,51.521663],[-1.835379,51.519438],[-1.83262,51.518441],[-1.83008,51.51544],[-1.829856,51.513684],[-1.830796,51.511143],[-1.834717,51.511538],[-1.837016,51.51095],[-1.837575,51.512931],[-1.837152,51.514144],[-1.837786,51.515744],[-1.840322,51.518442],[-1.842584,51.519796],[-1.842135,51.520414],[-1.843826,51.521656],[-1.842726,51.522885],[-1.840548,51.524122],[-1.841853,51.524901],[-1.842177,51.526265],[-1.846906,51.524283],[-1.842883,51.518201],[-1.844265,51.517219],[-1.842632,51.516862],[-1.841506,51.515704],[-1.844689,51.515014],[-1.844143,51.513836],[-1.844012,51.51224],[-1.841153,51.510603],[-1.841344,51.509534],[-1.839568,51.506803],[-1.839224,51.504982],[-1.83982,51.504777],[-1.837585,51.500837],[-1.834364,51.501065],[-1.833958,51.501795],[-1.831858,51.501248],[-1.828351,51.505071],[-1.824552,51.503713],[-1.823022,51.504757],[-1.813451,51.507042],[-1.812919,51.505272],[-1.813582,51.501251],[-1.811395,51.499525],[-1.813047,51.496536],[-1.809477,51.494035],[-1.806487,51.491052],[-1.80379,51.489362],[-1.802561,51.487767],[-1.797797,51.484446],[-1.795585,51.485757],[-1.793192,51.486167],[-1.788755,51.485121],[-1.783605,51.485192],[-1.779687,51.484348],[-1.774331,51.482455],[-1.774718,51.484539],[-1.766516,51.486076],[-1.762683,51.485857],[-1.758159,51.486235],[-1.750775,51.485643],[-1.746308,51.485647],[-1.743688,51.486687],[-1.740062,51.48678],[-1.731076,51.488177],[-1.726299,51.488506],[-1.715737,51.488383],[-1.719082,51.500706],[-1.711753,51.501182],[-1.705111,51.501979],[-1.696639,51.503605],[-1.696155,51.503174],[-1.677768,51.503953],[-1.675277,51.504485],[-1.667741,51.505279],[-1.662249,51.506885],[-1.658153,51.507611],[-1.649879,51.508299],[-1.642121,51.510885],[-1.637227,51.51359],[-1.634293,51.512941],[-1.632724,51.514995],[-1.633557,51.515519],[-1.631886,51.516374],[-1.628465,51.517365],[-1.624297,51.515122],[-1.623574,51.5142],[-1.619499,51.515241],[-1.619939,51.516657],[-1.615255,51.517357],[-1.610891,51.516894],[-1.607145,51.517414],[-1.60693,51.51709],[-1.602812,51.518295],[-1.603384,51.520336],[-1.604491,51.520492],[-1.604798,51.522721],[-1.607892,51.527493],[-1.608273,51.528874],[-1.612823,51.534131],[-1.61375,51.53651],[-1.615443,51.536722],[-1.615344,51.538104],[-1.617787,51.539184],[-1.622262,51.542354],[-1.623593,51.543617],[-1.623004,51.544218],[-1.625385,51.54554],[-1.624804,51.546051],[-1.626888,51.547567],[-1.629225,51.549661],[-1.630777,51.552076],[-1.63198,51.553133],[-1.633037,51.552538],[-1.638912,51.55892],[-1.638668,51.55932],[-1.643787,51.564075],[-1.646375,51.568657],[-1.646099,51.570088],[-1.647692,51.571952],[-1.652117,51.574194],[-1.655045,51.576506],[-1.658315,51.574199],[-1.662423,51.573563],[-1.673242,51.570606],[-1.67654,51.569439],[-1.678172,51.570191],[-1.679293,51.571454],[-1.68144,51.572143],[-1.681685,51.572755],[-1.684704,51.573818],[-1.685419,51.575988],[-1.68831,51.578815],[-1.689137,51.581956],[-1.691111,51.583524],[-1.689019,51.586171],[-1.687367,51.586709],[-1.686971,51.587346],[-1.685373,51.587597],[-1.684953,51.588675],[-1.685744,51.58956],[-1.684757,51.590327],[-1.685504,51.590971],[-1.685045,51.591829],[-1.685669,51.59247],[-1.685432,51.593681],[-1.68758,51.594685],[-1.687819,51.597363],[-1.688445,51.59853],[-1.687299,51.600141],[-1.689668,51.601647],[-1.690617,51.60545],[-1.688277,51.606587],[-1.685257,51.608622],[-1.682497,51.609456],[-1.681759,51.611753],[-1.682661,51.612519],[-1.68132,51.613562],[-1.679223,51.6138],[-1.674955,51.611751],[-1.672455,51.612892],[-1.671817,51.613568],[-1.67002,51.614067],[-1.669392,51.615176],[-1.66701,51.616264],[-1.667074,51.617907],[-1.669692,51.618889],[-1.672303,51.620295],[-1.673111,51.622604],[-1.670804,51.625082],[-1.668878,51.626018],[-1.669125,51.627545],[-1.665171,51.630056],[-1.662825,51.631218],[-1.659955,51.634991],[-1.663308,51.63993],[-1.66459,51.640375],[-1.670592,51.64081],[-1.672441,51.641503],[-1.674249,51.641181],[-1.674868,51.642179],[-1.67729,51.643143],[-1.678057,51.644318],[-1.67975,51.64482],[-1.679999,51.646632],[-1.681431,51.647402],[-1.681815,51.648616],[-1.682617,51.648825],[-1.68321,51.650111],[-1.684906,51.650988],[-1.686274,51.652382],[-1.691617,51.652658],[-1.692697,51.653391],[-1.688929,51.655693],[-1.688495,51.656788],[-1.689219,51.657356],[-1.689155,51.6596],[-1.689572,51.661113],[-1.69098,51.662338],[-1.690623,51.663784],[-1.694209,51.66642],[-1.694099,51.66876],[-1.695837,51.668764],[-1.697734,51.66961],[-1.699022,51.669513],[-1.700189,51.670742],[-1.700157,51.672271],[-1.699022,51.673124],[-1.69848,51.674219],[-1.698743,51.676472],[-1.697769,51.677466],[-1.695564,51.678053],[-1.694886,51.678575],[-1.695196,51.679785],[-1.696357,51.680134],[-1.696848,51.681018],[-1.696518,51.682116],[-1.695033,51.683219],[-1.693281,51.683879],[-1.693013,51.685717],[-1.691173,51.686684],[-1.691104,51.687307],[-1.688727,51.687563],[-1.686508,51.689293],[-1.683911,51.688804],[-1.683059,51.69011]]]},"properties":{"LAD22CD":"E06000030","LAD22NM":"Swindon","BNG_E":418551,"BNG_N":186564,"LONG":-1.73367,"LAT":51.57763,"GlobalID":"df4741e3-daee-4c75-a879-4ec1c8153bba"},"id":28}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.031271,52.661533],[-0.032103,52.665361],[-0.04031,52.667142],[-0.044926,52.66919],[-0.05949,52.674687],[-0.063785,52.675224],[-0.065446,52.671996],[-0.066973,52.672034],[-0.069672,52.671406],[-0.072008,52.672072],[-0.074611,52.672074],[-0.080315,52.670546],[-0.087837,52.66678],[-0.090431,52.666685],[-0.094322,52.668179],[-0.096682,52.67006],[-0.099435,52.670392],[-0.102196,52.672206],[-0.112995,52.667976],[-0.11551,52.666476],[-0.117415,52.664764],[-0.126535,52.659995],[-0.12982,52.659212],[-0.133024,52.656958],[-0.137017,52.65554],[-0.139502,52.654862],[-0.141062,52.651507],[-0.18002,52.660561],[-0.190418,52.65247],[-0.192868,52.652438],[-0.195566,52.655375],[-0.196478,52.6555],[-0.199818,52.660864],[-0.200591,52.66144],[-0.203075,52.665105],[-0.205519,52.666832],[-0.206038,52.668073],[-0.209654,52.66699],[-0.212502,52.666679],[-0.218171,52.667064],[-0.224499,52.665464],[-0.230075,52.663645],[-0.238349,52.66021],[-0.23885,52.660524],[-0.249099,52.656415],[-0.256103,52.6534],[-0.258665,52.651645],[-0.261238,52.651484],[-0.263577,52.652507],[-0.263794,52.653897],[-0.266198,52.654702],[-0.267483,52.655854],[-0.268961,52.65635],[-0.270336,52.659442],[-0.273075,52.659479],[-0.274879,52.660704],[-0.276207,52.662652],[-0.277788,52.663301],[-0.278876,52.664621],[-0.279084,52.666004],[-0.282262,52.667171],[-0.28685,52.66803],[-0.28842,52.669782],[-0.289503,52.670345],[-0.291664,52.670373],[-0.293396,52.669457],[-0.294554,52.669346],[-0.297309,52.670601],[-0.309972,52.673478],[-0.320524,52.675104],[-0.320737,52.673671],[-0.322875,52.674196],[-0.32755,52.674212],[-0.330237,52.673476],[-0.331516,52.674341],[-0.333114,52.674837],[-0.335037,52.674866],[-0.336246,52.674116],[-0.336044,52.671535],[-0.337091,52.670488],[-0.336244,52.668639],[-0.337537,52.668243],[-0.339952,52.666066],[-0.341313,52.665389],[-0.342713,52.665932],[-0.34426,52.665425],[-0.344803,52.664202],[-0.346544,52.663124],[-0.349445,52.66313],[-0.350148,52.661644],[-0.352415,52.661747],[-0.356756,52.659947],[-0.359424,52.66003],[-0.360955,52.659565],[-0.363816,52.660267],[-0.367644,52.659593],[-0.370043,52.658915],[-0.373097,52.657402],[-0.374925,52.657918],[-0.376583,52.656931],[-0.377266,52.655663],[-0.378868,52.656162],[-0.380323,52.655597],[-0.382555,52.656063],[-0.389103,52.653966],[-0.393178,52.654082],[-0.395712,52.653337],[-0.395964,52.652567],[-0.39846,52.6511],[-0.399962,52.649603],[-0.401152,52.649552],[-0.405681,52.648046],[-0.407651,52.648123],[-0.410412,52.64779],[-0.413185,52.648362],[-0.416652,52.647546],[-0.4175,52.646773],[-0.420815,52.646865],[-0.423315,52.648052],[-0.425036,52.647591],[-0.425367,52.648508],[-0.427268,52.648575],[-0.428217,52.649079],[-0.430236,52.648993],[-0.43209,52.648285],[-0.435273,52.650225],[-0.437372,52.649812],[-0.440282,52.651409],[-0.440832,52.652284],[-0.447412,52.653118],[-0.449018,52.653059],[-0.450476,52.654128],[-0.452695,52.654278],[-0.453036,52.649245],[-0.456047,52.650009],[-0.45897,52.650225],[-0.467636,52.649899],[-0.475832,52.648715],[-0.474514,52.646685],[-0.475958,52.645447],[-0.475245,52.645058],[-0.48345,52.645427],[-0.48432,52.646129],[-0.485558,52.645314],[-0.485048,52.644448],[-0.486149,52.643587],[-0.488343,52.643757],[-0.490739,52.642339],[-0.491488,52.641476],[-0.494774,52.640314],[-0.493904,52.64007],[-0.492196,52.636873],[-0.491114,52.636368],[-0.490805,52.63537],[-0.48806,52.632505],[-0.486108,52.634422],[-0.485153,52.632836],[-0.476761,52.630564],[-0.475311,52.628901],[-0.473504,52.628234],[-0.47096,52.623768],[-0.471063,52.621364],[-0.472095,52.621285],[-0.470961,52.617953],[-0.474791,52.61691],[-0.473729,52.614433],[-0.47722,52.614677],[-0.479637,52.61445],[-0.481024,52.602787],[-0.48544,52.60218],[-0.48533,52.600155],[-0.485849,52.598931],[-0.488629,52.596909],[-0.490707,52.590534],[-0.49415,52.589703],[-0.494541,52.588673],[-0.497652,52.586851],[-0.49236,52.581672],[-0.489423,52.580554],[-0.485332,52.579981],[-0.478834,52.577439],[-0.480736,52.576956],[-0.481455,52.576304],[-0.478815,52.573645],[-0.475387,52.574371],[-0.471146,52.574627],[-0.461006,52.576025],[-0.447693,52.578684],[-0.435395,52.580506],[-0.425028,52.582413],[-0.424633,52.581493],[-0.419983,52.581355],[-0.418177,52.579734],[-0.415382,52.578743],[-0.414705,52.580287],[-0.413682,52.581097],[-0.40888,52.582658],[-0.40387,52.583234],[-0.401343,52.583056],[-0.398683,52.583296],[-0.39684,52.582998],[-0.393022,52.580871],[-0.391375,52.578524],[-0.389885,52.577483],[-0.389384,52.576238],[-0.387688,52.574469],[-0.389238,52.573448],[-0.388926,52.572792],[-0.389596,52.571575],[-0.388375,52.568858],[-0.385304,52.567148],[-0.384008,52.566907],[-0.381291,52.567684],[-0.380571,52.567078],[-0.379125,52.567199],[-0.375744,52.56628],[-0.373132,52.566321],[-0.372741,52.564677],[-0.370806,52.564152],[-0.369641,52.563096],[-0.367384,52.562765],[-0.362916,52.563331],[-0.361163,52.564343],[-0.356837,52.565],[-0.348478,52.56437],[-0.346067,52.562771],[-0.345208,52.561232],[-0.343948,52.560806],[-0.341154,52.558017],[-0.340632,52.557165],[-0.34063,52.555651],[-0.337316,52.553648],[-0.335996,52.553602],[-0.332363,52.552401],[-0.327244,52.552912],[-0.325459,52.552889],[-0.323677,52.551518],[-0.326677,52.550792],[-0.326737,52.54963],[-0.325925,52.548649],[-0.332736,52.546545],[-0.320684,52.535785],[-0.317822,52.534346],[-0.317596,52.533476],[-0.314428,52.530109],[-0.305107,52.521469],[-0.296297,52.51432],[-0.294117,52.511628],[-0.29329,52.506889],[-0.28781,52.508751],[-0.285761,52.506563],[-0.284638,52.506113],[-0.282351,52.507176],[-0.27961,52.509294],[-0.275517,52.511085],[-0.272962,52.512783],[-0.270829,52.515606],[-0.271008,52.516785],[-0.274346,52.517108],[-0.274048,52.518964],[-0.270487,52.518628],[-0.27032,52.520463],[-0.269295,52.520825],[-0.263206,52.521923],[-0.256796,52.522606],[-0.255882,52.521096],[-0.252915,52.522286],[-0.246715,52.523769],[-0.244781,52.522999],[-0.242446,52.524722],[-0.243075,52.529642],[-0.240468,52.529678],[-0.238267,52.529099],[-0.237276,52.530434],[-0.231727,52.534477],[-0.23518,52.53601],[-0.234732,52.53694],[-0.236657,52.538235],[-0.234995,52.539707],[-0.234975,52.541135],[-0.23556,52.542444],[-0.234837,52.543667],[-0.228675,52.543666],[-0.22865,52.542867],[-0.223124,52.542441],[-0.223032,52.541013],[-0.219465,52.540296],[-0.219668,52.5399],[-0.217664,52.537923],[-0.216475,52.540341],[-0.214144,52.541791],[-0.212358,52.5423],[-0.208517,52.542321],[-0.20522,52.542896],[-0.202756,52.542554],[-0.201493,52.543591],[-0.200399,52.545216],[-0.195701,52.54486],[-0.18785,52.541863],[-0.186631,52.54271],[-0.185628,52.544937],[-0.190619,52.547667],[-0.191031,52.550339],[-0.197874,52.550806],[-0.195056,52.554452],[-0.188516,52.559884],[-0.187635,52.560448],[-0.189188,52.562936],[-0.189879,52.565443],[-0.181696,52.566503],[-0.18698,52.568507],[-0.176967,52.569808],[-0.166014,52.569573],[-0.121183,52.577255],[-0.119702,52.577506],[-0.08619,52.582881],[-0.083515,52.582817],[-0.081687,52.583503],[-0.081275,52.583668],[-0.027861,52.591976],[-0.021942,52.592712],[-0.01704,52.593592],[-0.012837,52.594345],[-0.01625,52.598387],[-0.025047,52.632369],[-0.031271,52.661533]]]},"properties":{"LAD22CD":"E06000031","LAD22NM":"Peterborough","BNG_E":517372,"BNG_N":300777,"LONG":-0.26874,"LAT":52.59214,"GlobalID":"418bee7e-952e-4f57-b786-3e492a7970df"},"id":29}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.385616,51.91568],[-0.387219,51.915944],[-0.393008,51.914412],[-0.393734,51.915462],[-0.40122,51.913053],[-0.402437,51.909703],[-0.40756,51.910692],[-0.414759,51.911531],[-0.418339,51.912778],[-0.419065,51.912304],[-0.420924,51.915253],[-0.421176,51.917516],[-0.422365,51.92052],[-0.421682,51.925681],[-0.426039,51.926689],[-0.431555,51.926948],[-0.437816,51.927747],[-0.438715,51.927026],[-0.438483,51.926054],[-0.441361,51.926177],[-0.446504,51.925583],[-0.4503,51.924731],[-0.456461,51.924586],[-0.458691,51.923951],[-0.462388,51.923598],[-0.465829,51.924104],[-0.470441,51.924171],[-0.475752,51.923685],[-0.482278,51.922349],[-0.485702,51.922701],[-0.486572,51.922148],[-0.478497,51.917331],[-0.481562,51.912884],[-0.482276,51.907795],[-0.490748,51.905236],[-0.491521,51.906326],[-0.494047,51.906075],[-0.497659,51.904004],[-0.505923,51.900612],[-0.499808,51.897831],[-0.484844,51.891306],[-0.483941,51.8883],[-0.479031,51.888515],[-0.466621,51.888165],[-0.455275,51.882287],[-0.449403,51.878348],[-0.44165,51.872122],[-0.4327,51.862423],[-0.425666,51.857127],[-0.42305,51.854621],[-0.42107,51.854895],[-0.416018,51.859309],[-0.414417,51.859035],[-0.414926,51.860772],[-0.416126,51.861995],[-0.412543,51.862868],[-0.410819,51.861783],[-0.409122,51.861495],[-0.405293,51.864375],[-0.403506,51.86645],[-0.400894,51.868652],[-0.397597,51.869668],[-0.39586,51.870581],[-0.393185,51.869727],[-0.391468,51.870129],[-0.388523,51.871867],[-0.386993,51.871213],[-0.380326,51.870186],[-0.37866,51.87016],[-0.377444,51.870838],[-0.376025,51.869874],[-0.369756,51.868115],[-0.365784,51.870762],[-0.368299,51.87306],[-0.362871,51.874024],[-0.358009,51.873197],[-0.354834,51.874015],[-0.354126,51.87554],[-0.350793,51.876122],[-0.349899,51.878708],[-0.352995,51.87891],[-0.351979,51.879601],[-0.354646,51.884547],[-0.355132,51.885111],[-0.357694,51.886444],[-0.35909,51.889107],[-0.365135,51.894378],[-0.371937,51.894723],[-0.373909,51.895314],[-0.37749,51.898433],[-0.3776,51.900505],[-0.37839,51.901646],[-0.37864,51.90404],[-0.384922,51.911209],[-0.385746,51.914568],[-0.385616,51.91568]]]},"properties":{"LAD22CD":"E06000032","LAD22NM":"Luton","BNG_E":508606,"BNG_N":222559,"LONG":-0.42319,"LAT":51.89102,"GlobalID":"40816bff-6bc7-454c-929a-76d10cefde5c"},"id":30}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.640503,51.536381],[0.639016,51.53588],[0.635954,51.534195],[0.634532,51.534087],[0.633497,51.534618],[0.628688,51.53362],[0.627293,51.532661],[0.629135,51.53164],[0.631739,51.531687],[0.635369,51.532081],[0.640214,51.533427],[0.64072,51.534645],[0.640503,51.536381]]],[[[0.627001,51.532479],[0.628664,51.533705],[0.632328,51.534515],[0.633978,51.534726],[0.635415,51.534569],[0.636507,51.534831],[0.636653,51.535474],[0.639981,51.536315],[0.639709,51.536946],[0.640998,51.537334],[0.641135,51.535932],[0.642404,51.535815],[0.643245,51.536698],[0.64498,51.536998],[0.646024,51.538063],[0.645828,51.539222],[0.643741,51.539175],[0.640063,51.537745],[0.635846,51.537258],[0.633906,51.537489],[0.632959,51.538138],[0.629619,51.538198],[0.627588,51.537736],[0.624538,51.536372],[0.627427,51.534584],[0.627915,51.533847],[0.627001,51.532479]]],[[[0.820834,51.540863],[0.819168,51.542207],[0.814869,51.543732],[0.810868,51.540132],[0.807959,51.540955],[0.798427,51.541678],[0.794375,51.542339],[0.788986,51.542447],[0.787657,51.545164],[0.78747,51.546932],[0.786804,51.546935],[0.78669,51.552943],[0.775269,51.551969],[0.769861,51.551783],[0.769555,51.552396],[0.76116,51.552965],[0.761028,51.553294],[0.757687,51.554127],[0.753154,51.554867],[0.753382,51.557522],[0.752092,51.558362],[0.749072,51.559361],[0.74379,51.559876],[0.741747,51.559898],[0.741077,51.559243],[0.737573,51.559487],[0.737378,51.560022],[0.735364,51.560137],[0.730538,51.559443],[0.730471,51.5605],[0.72284,51.56041],[0.718391,51.560946],[0.719056,51.562675],[0.715806,51.562806],[0.715811,51.563171],[0.70794,51.564288],[0.708587,51.566435],[0.707234,51.566666],[0.70566,51.567495],[0.704177,51.566762],[0.687167,51.568213],[0.685035,51.568898],[0.683788,51.568604],[0.680763,51.569512],[0.675419,51.570145],[0.675333,51.572868],[0.667833,51.572208],[0.667717,51.572694],[0.66295,51.572446],[0.660119,51.573102],[0.651309,51.573497],[0.646581,51.574298],[0.638951,51.576801],[0.637802,51.576262],[0.635679,51.57447],[0.634646,51.574941],[0.632077,51.570529],[0.631589,51.569931],[0.634119,51.569484],[0.635141,51.567953],[0.633115,51.565482],[0.634392,51.565263],[0.634677,51.561802],[0.635575,51.56065],[0.633137,51.559094],[0.631685,51.557645],[0.629364,51.556386],[0.628483,51.555402],[0.627015,51.555401],[0.62553,51.553664],[0.627191,51.551197],[0.62516,51.549268],[0.62416,51.547657],[0.624785,51.543787],[0.62296,51.540468],[0.624739,51.540409],[0.623997,51.539033],[0.625818,51.538138],[0.625908,51.538153],[0.626968,51.538174],[0.631643,51.538625],[0.633242,51.539236],[0.636565,51.539227],[0.643154,51.541107],[0.644331,51.540763],[0.648158,51.540494],[0.651911,51.539217],[0.65225,51.539435],[0.659033,51.538719],[0.665158,51.538841],[0.67072,51.538148],[0.680499,51.535816],[0.687915,51.535391],[0.692852,51.534942],[0.702745,51.533141],[0.711402,51.533167],[0.713036,51.532978],[0.714227,51.532277],[0.718215,51.532058],[0.719435,51.532675],[0.720514,51.532519],[0.731564,51.530062],[0.736507,51.529588],[0.744067,51.529931],[0.75081,51.529529],[0.757077,51.528419],[0.76826,51.525509],[0.776548,51.52267],[0.782095,51.521336],[0.787402,51.521859],[0.79979,51.529774],[0.807498,51.534061],[0.808738,51.534396],[0.810908,51.535946],[0.813855,51.536697],[0.813839,51.537222],[0.815826,51.538139],[0.816837,51.539128],[0.820834,51.540863]]]]},"properties":{"LAD22CD":"E06000033","LAD22NM":"Southend-on-Sea","BNG_E":587777,"BNG_N":186837,"LONG":0.706923,"LAT":51.54917,"GlobalID":"35475aba-1a9c-4632-95e7-7be560f43967"},"id":31}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.540167,51.517653],[0.53969,51.518545],[0.537407,51.518544],[0.534209,51.51765],[0.531943,51.51625],[0.536816,51.516466],[0.540167,51.517653]]],[[[0.509275,51.535522],[0.507532,51.533233],[0.507851,51.531188],[0.509223,51.530782],[0.512074,51.530794],[0.51308,51.531983],[0.511561,51.534016],[0.509275,51.535522]]],[[[0.496607,51.538701],[0.49178,51.540053],[0.490148,51.541293],[0.491536,51.542636],[0.491588,51.54358],[0.490446,51.544042],[0.488196,51.543113],[0.487056,51.543223],[0.487942,51.545003],[0.485493,51.545851],[0.485728,51.547121],[0.484841,51.547876],[0.481668,51.548607],[0.48031,51.54791],[0.477592,51.547191],[0.475067,51.547093],[0.474336,51.546403],[0.469841,51.547112],[0.466764,51.546726],[0.466949,51.547354],[0.465256,51.549863],[0.461617,51.553697],[0.459157,51.552264],[0.457726,51.552774],[0.452354,51.551933],[0.450106,51.55117],[0.44694,51.55089],[0.446014,51.551176],[0.445827,51.549304],[0.44347,51.548966],[0.44422,51.547702],[0.442932,51.547374],[0.443801,51.546414],[0.439937,51.545114],[0.439058,51.546425],[0.437533,51.546159],[0.436556,51.546539],[0.43581,51.549191],[0.43535,51.54952],[0.431001,51.549723],[0.429935,51.548816],[0.4304,51.546005],[0.427691,51.545131],[0.426449,51.54844],[0.424826,51.54809],[0.424939,51.550063],[0.42662,51.551876],[0.42445,51.552812],[0.423839,51.551984],[0.418879,51.550561],[0.418011,51.551082],[0.421083,51.552966],[0.418679,51.556617],[0.417397,51.557133],[0.414581,51.557488],[0.411371,51.557299],[0.408519,51.557523],[0.402309,51.558509],[0.399187,51.558235],[0.398618,51.557787],[0.393532,51.557655],[0.392125,51.562569],[0.391809,51.567212],[0.389622,51.56646],[0.385891,51.565724],[0.382605,51.565824],[0.379232,51.565736],[0.343784,51.567821],[0.313008,51.565942],[0.313035,51.565818],[0.315295,51.557835],[0.3165,51.557686],[0.318435,51.55678],[0.318897,51.555191],[0.322053,51.554199],[0.322306,51.552782],[0.325157,51.553058],[0.327816,51.550995],[0.327979,51.548561],[0.329468,51.546564],[0.331445,51.545943],[0.333902,51.542494],[0.333333,51.541262],[0.334024,51.540504],[0.331429,51.540045],[0.33159,51.540797],[0.322441,51.540518],[0.310527,51.539652],[0.31004,51.539292],[0.300723,51.538756],[0.300859,51.538135],[0.297205,51.537662],[0.297755,51.535319],[0.29044,51.53466],[0.288075,51.534554],[0.281762,51.533942],[0.27634,51.532928],[0.270706,51.533093],[0.265347,51.53215],[0.265387,51.524956],[0.266751,51.524513],[0.266638,51.522956],[0.265009,51.522901],[0.264035,51.521084],[0.263683,51.51787],[0.260303,51.518371],[0.258928,51.517764],[0.253834,51.517886],[0.252333,51.52479],[0.251536,51.525971],[0.250852,51.528819],[0.248965,51.528674],[0.248291,51.527551],[0.246324,51.526532],[0.24709,51.525092],[0.245837,51.523516],[0.242858,51.524392],[0.241038,51.522606],[0.240724,51.521207],[0.244299,51.520472],[0.244906,51.518759],[0.243936,51.518337],[0.240195,51.519351],[0.237176,51.519334],[0.241142,51.513743],[0.239974,51.513053],[0.240307,51.510755],[0.241502,51.510621],[0.241919,51.50796],[0.239847,51.507279],[0.233441,51.50667],[0.228956,51.506804],[0.226603,51.506567],[0.226021,51.50588],[0.226614,51.504489],[0.229965,51.499366],[0.227907,51.49886],[0.224361,51.497326],[0.223606,51.497907],[0.221654,51.497811],[0.217026,51.496583],[0.215487,51.49662],[0.214157,51.49604],[0.213074,51.495022],[0.211932,51.491044],[0.210693,51.490185],[0.215572,51.489597],[0.216987,51.488769],[0.222172,51.487199],[0.226163,51.485539],[0.22722,51.485493],[0.230446,51.482524],[0.238303,51.478014],[0.241287,51.47582],[0.247118,51.472788],[0.249494,51.472344],[0.255495,51.470493],[0.256932,51.46952],[0.260693,51.468342],[0.262356,51.468313],[0.264174,51.467715],[0.266389,51.466408],[0.270952,51.465582],[0.271867,51.464659],[0.274573,51.464397],[0.278886,51.462852],[0.281446,51.461393],[0.283193,51.463042],[0.284795,51.463761],[0.287987,51.467132],[0.289348,51.467736],[0.291869,51.469767],[0.297864,51.472011],[0.29778,51.472202],[0.308593,51.474412],[0.31007,51.473949],[0.314613,51.473896],[0.315534,51.47407],[0.322266,51.4725],[0.32539,51.471603],[0.32624,51.470571],[0.328162,51.469343],[0.333815,51.46407],[0.33357,51.463043],[0.332334,51.461773],[0.334739,51.456682],[0.335539,51.456834],[0.338629,51.455817],[0.338745,51.453882],[0.340863,51.452334],[0.345714,51.451632],[0.352741,51.451274],[0.35823,51.451354],[0.358997,51.451118],[0.36572,51.451261],[0.366263,51.451816],[0.368358,51.452283],[0.370138,51.452291],[0.370318,51.451647],[0.377664,51.451939],[0.380408,51.45274],[0.381655,51.45261],[0.388423,51.452918],[0.39367,51.452804],[0.394863,51.453497],[0.398398,51.453679],[0.403601,51.45372],[0.413236,51.455901],[0.415295,51.455805],[0.429039,51.459482],[0.430344,51.459239],[0.434336,51.462011],[0.435516,51.464752],[0.435467,51.46622],[0.437561,51.473118],[0.438259,51.474104],[0.439748,51.480849],[0.438868,51.481916],[0.439985,51.482924],[0.439632,51.486286],[0.441033,51.490755],[0.440035,51.491846],[0.441706,51.49284],[0.442444,51.494245],[0.444658,51.49598],[0.445584,51.498117],[0.445317,51.499324],[0.443569,51.501152],[0.440715,51.502166],[0.441112,51.503176],[0.44429,51.504676],[0.449137,51.504772],[0.451958,51.505394],[0.452935,51.504968],[0.457666,51.505803],[0.458659,51.50663],[0.460543,51.507106],[0.462475,51.505869],[0.465185,51.505526],[0.46711,51.503869],[0.467646,51.503867],[0.468592,51.501173],[0.487221,51.503268],[0.487387,51.502646],[0.505166,51.504653],[0.504965,51.50557],[0.508477,51.505329],[0.518132,51.508947],[0.520158,51.509915],[0.522621,51.507904],[0.531427,51.50854],[0.533571,51.509034],[0.533777,51.509978],[0.536701,51.510538],[0.54125,51.512578],[0.540915,51.513673],[0.538946,51.514414],[0.532211,51.514106],[0.529222,51.514431],[0.52386,51.515408],[0.521688,51.516237],[0.519736,51.517879],[0.518729,51.519456],[0.518495,51.521583],[0.519007,51.523279],[0.517875,51.525618],[0.518463,51.526029],[0.517507,51.527284],[0.515652,51.528312],[0.508555,51.530262],[0.506759,51.53132],[0.505964,51.533015],[0.506522,51.534149],[0.507815,51.535475],[0.507381,51.536707],[0.504951,51.536778],[0.503894,51.536129],[0.502288,51.533428],[0.503003,51.531455],[0.502225,51.530786],[0.501573,51.533345],[0.503281,51.536226],[0.504915,51.537225],[0.506888,51.537352],[0.506244,51.538251],[0.503738,51.538802],[0.500859,51.537781],[0.498504,51.538279],[0.497444,51.537693],[0.496607,51.538701]]]]},"properties":{"LAD22CD":"E06000034","LAD22NM":"Thurrock","BNG_E":562123,"BNG_N":181590,"LONG":0.334861,"LAT":51.50998,"GlobalID":"b1b5b346-682b-4304-9121-319162e50c7d"},"id":32}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.589056,51.391887],[0.589636,51.39235],[0.588809,51.393622],[0.58651,51.392937],[0.586015,51.391896],[0.589056,51.391887]]],[[[0.61357,51.400211],[0.613935,51.400953],[0.612204,51.401309],[0.608114,51.401544],[0.60602,51.402023],[0.602027,51.402343],[0.599848,51.402131],[0.599001,51.401026],[0.5966,51.400155],[0.595128,51.400216],[0.595037,51.399412],[0.596067,51.398869],[0.596681,51.396692],[0.598294,51.396686],[0.598708,51.395033],[0.601103,51.394201],[0.603388,51.393833],[0.604609,51.394238],[0.605362,51.395318],[0.607558,51.396653],[0.60741,51.397291],[0.611561,51.399737],[0.61254,51.39833],[0.61485,51.397587],[0.61357,51.400211]]],[[[0.610467,51.406438],[0.608571,51.406754],[0.608199,51.405868],[0.609367,51.405352],[0.611112,51.405212],[0.610467,51.406438]]],[[[0.570667,51.40784],[0.566181,51.407634],[0.563679,51.407968],[0.562852,51.407052],[0.560827,51.406057],[0.560884,51.404708],[0.560246,51.40323],[0.56152,51.402233],[0.563561,51.402168],[0.569143,51.402865],[0.577528,51.403022],[0.5813,51.402426],[0.582572,51.403134],[0.581032,51.405121],[0.579461,51.404881],[0.580037,51.4062],[0.579465,51.406883],[0.577526,51.405474],[0.574611,51.405014],[0.572778,51.405469],[0.570667,51.40784]]],[[[0.597244,51.407367],[0.596057,51.407347],[0.595427,51.406562],[0.596895,51.405976],[0.59905,51.40637],[0.597244,51.407367]]],[[[0.617837,51.407513],[0.615628,51.407188],[0.613756,51.407518],[0.608434,51.407175],[0.612776,51.406098],[0.614354,51.406682],[0.61717,51.40675],[0.617837,51.407513]]],[[[0.626955,51.374731],[0.625097,51.375964],[0.623697,51.376425],[0.62322,51.377917],[0.623851,51.379489],[0.625245,51.38024],[0.624854,51.381198],[0.6281,51.382208],[0.628121,51.38276],[0.63041,51.384348],[0.633327,51.384509],[0.635656,51.38702],[0.634545,51.389068],[0.63166,51.388223],[0.626548,51.38826],[0.625416,51.387584],[0.624198,51.387702],[0.621694,51.386974],[0.621596,51.383671],[0.621961,51.382599],[0.620688,51.381815],[0.618508,51.379536],[0.61637,51.377978],[0.615483,51.378707],[0.613979,51.378488],[0.611835,51.378925],[0.612051,51.379432],[0.609887,51.38077],[0.608255,51.38035],[0.605018,51.381406],[0.602372,51.383417],[0.601361,51.383483],[0.600092,51.384519],[0.598882,51.384697],[0.598763,51.385774],[0.596689,51.386901],[0.596838,51.388057],[0.600269,51.389473],[0.602763,51.389448],[0.602097,51.390635],[0.600429,51.389683],[0.597824,51.389211],[0.596684,51.388398],[0.596347,51.387422],[0.594641,51.38654],[0.593413,51.387358],[0.592586,51.388534],[0.592904,51.390257],[0.58768,51.39091],[0.586376,51.39081],[0.585534,51.39003],[0.58238,51.390268],[0.580248,51.391],[0.577349,51.390549],[0.576376,51.391838],[0.574493,51.392826],[0.572247,51.392636],[0.572135,51.39213],[0.568703,51.393723],[0.567969,51.394559],[0.565332,51.395127],[0.563681,51.396097],[0.56172,51.396027],[0.561909,51.397919],[0.559697,51.397985],[0.558714,51.396261],[0.557521,51.396536],[0.557579,51.397459],[0.556286,51.398595],[0.555009,51.397264],[0.55428,51.397479],[0.555581,51.398914],[0.552656,51.399409],[0.553292,51.400416],[0.548385,51.407422],[0.544063,51.409139],[0.539889,51.41003],[0.537244,51.410257],[0.535205,51.409543],[0.533543,51.408089],[0.532508,51.406619],[0.531124,51.402478],[0.52888,51.399252],[0.526058,51.395947],[0.523938,51.38968],[0.522845,51.387672],[0.52342,51.386562],[0.522582,51.3851],[0.521656,51.38466],[0.517328,51.383724],[0.515452,51.384084],[0.513916,51.385162],[0.510856,51.38668],[0.511186,51.388728],[0.510517,51.38907],[0.510368,51.391019],[0.50962,51.393502],[0.508646,51.394217],[0.505386,51.393477],[0.501618,51.391697],[0.500651,51.390456],[0.49629,51.387432],[0.496818,51.386888],[0.496721,51.384578],[0.494643,51.382515],[0.491626,51.380291],[0.490527,51.380174],[0.488865,51.378856],[0.485203,51.378478],[0.482129,51.378719],[0.480387,51.377371],[0.481146,51.376219],[0.476523,51.37458],[0.467694,51.373401],[0.46395,51.370796],[0.457082,51.36808],[0.457648,51.367624],[0.460915,51.366638],[0.468053,51.363557],[0.470392,51.362227],[0.472766,51.361815],[0.475681,51.360222],[0.475993,51.360551],[0.479126,51.358427],[0.479658,51.357443],[0.481808,51.357683],[0.487648,51.35601],[0.489,51.35521],[0.489485,51.354346],[0.491247,51.354022],[0.49407,51.352654],[0.503092,51.354667],[0.503146,51.353134],[0.501989,51.35143],[0.503097,51.349251],[0.502218,51.348804],[0.505842,51.342942],[0.507574,51.343299],[0.51116,51.340913],[0.514137,51.341127],[0.51667,51.339666],[0.519332,51.339935],[0.520357,51.338231],[0.521736,51.337465],[0.522257,51.336418],[0.523791,51.33588],[0.525641,51.334717],[0.53293,51.337164],[0.538664,51.332742],[0.538681,51.331756],[0.540139,51.330255],[0.544003,51.327896],[0.545347,51.328571],[0.54592,51.329564],[0.548924,51.33091],[0.553972,51.331629],[0.554763,51.332223],[0.554451,51.333764],[0.55671,51.336534],[0.563457,51.338743],[0.565659,51.33779],[0.569641,51.337012],[0.571944,51.33561],[0.573444,51.336918],[0.575435,51.337561],[0.577778,51.336427],[0.580287,51.335944],[0.581137,51.335215],[0.583397,51.334663],[0.58611,51.334762],[0.58647,51.335088],[0.594361,51.333228],[0.596811,51.333339],[0.596941,51.332708],[0.599766,51.332529],[0.601403,51.333301],[0.60203,51.334625],[0.603878,51.336257],[0.60801,51.334644],[0.610949,51.336474],[0.612052,51.337941],[0.611322,51.339318],[0.613723,51.341118],[0.617934,51.347394],[0.618163,51.348642],[0.620033,51.349709],[0.622085,51.349689],[0.625327,51.355175],[0.628569,51.359371],[0.629299,51.35922],[0.634908,51.36637],[0.628382,51.368368],[0.626267,51.368251],[0.623292,51.369223],[0.625834,51.37141],[0.625738,51.373465],[0.626955,51.374731]]],[[[0.633851,51.423827],[0.631338,51.424159],[0.630257,51.422822],[0.631098,51.422162],[0.629884,51.421052],[0.632314,51.420382],[0.634681,51.42042],[0.635368,51.419647],[0.636899,51.419351],[0.638028,51.417873],[0.638914,51.421267],[0.635094,51.422884],[0.633851,51.423827]]],[[[0.638316,51.427599],[0.637939,51.429047],[0.636622,51.429429],[0.635339,51.428582],[0.634974,51.427701],[0.633584,51.427195],[0.635488,51.426446],[0.637398,51.426573],[0.638316,51.427599]]],[[[0.672908,51.438059],[0.670887,51.438152],[0.670835,51.437085],[0.672908,51.438059]]],[[[0.629291,51.440651],[0.628245,51.441118],[0.626192,51.438543],[0.627165,51.437617],[0.628805,51.437798],[0.629614,51.438752],[0.629855,51.440026],[0.629291,51.440651]]],[[[0.66133,51.441699],[0.660342,51.441173],[0.66526,51.43928],[0.663258,51.440828],[0.662134,51.440715],[0.66133,51.441699]]],[[[0.670578,51.442015],[0.670843,51.440374],[0.672262,51.440358],[0.670578,51.442015]]],[[[0.654531,51.442061],[0.652564,51.441474],[0.650974,51.439413],[0.654808,51.439085],[0.652955,51.440249],[0.654182,51.44139],[0.655939,51.441179],[0.655742,51.442282],[0.654531,51.442061]]],[[[0.646581,51.443405],[0.64388,51.442731],[0.645619,51.441499],[0.647533,51.441692],[0.649025,51.441209],[0.649909,51.440215],[0.651084,51.441788],[0.648797,51.442034],[0.646581,51.443405]]],[[[0.640554,51.444345],[0.638724,51.444762],[0.637508,51.444081],[0.638711,51.443164],[0.638764,51.442421],[0.640781,51.44226],[0.641021,51.443668],[0.640554,51.444345]]],[[[0.660425,51.447448],[0.658562,51.447935],[0.657538,51.447716],[0.657033,51.446178],[0.657446,51.444991],[0.656995,51.443827],[0.659084,51.444179],[0.660726,51.443927],[0.661253,51.44658],[0.660425,51.447448]]],[[[0.453464,51.340633],[0.451442,51.342653],[0.452108,51.344122],[0.452006,51.345041],[0.450947,51.345917],[0.448534,51.346784],[0.448008,51.347404],[0.448778,51.348784],[0.449741,51.34937],[0.455282,51.350749],[0.455918,51.352106],[0.454745,51.353255],[0.454376,51.354628],[0.453515,51.355771],[0.449433,51.358019],[0.448227,51.359461],[0.448568,51.36147],[0.448217,51.363832],[0.448593,51.365166],[0.449806,51.366634],[0.456597,51.370174],[0.458915,51.371017],[0.461946,51.373055],[0.463231,51.373488],[0.464668,51.374623],[0.467876,51.375731],[0.473028,51.376388],[0.476079,51.379313],[0.48106,51.381467],[0.485718,51.382191],[0.48734,51.381789],[0.490003,51.38206],[0.491661,51.38421],[0.49049,51.386147],[0.49019,51.388043],[0.491468,51.389831],[0.492711,51.390136],[0.492847,51.391112],[0.494873,51.391471],[0.49608,51.392299],[0.49857,51.392256],[0.499739,51.392923],[0.50165,51.394886],[0.50146,51.395355],[0.503791,51.397157],[0.50869,51.396518],[0.511003,51.394639],[0.514888,51.388856],[0.517586,51.387049],[0.519009,51.386986],[0.521162,51.391142],[0.521291,51.393348],[0.520558,51.394263],[0.521071,51.395849],[0.522175,51.396304],[0.522993,51.398025],[0.520774,51.399375],[0.522933,51.399773],[0.52415,51.401193],[0.526196,51.402622],[0.526317,51.405382],[0.528843,51.409831],[0.530663,51.411773],[0.532457,51.412675],[0.534535,51.413314],[0.537892,51.413618],[0.54585,51.412056],[0.549018,51.412335],[0.555296,51.412325],[0.559596,51.411268],[0.562451,51.411241],[0.562547,51.410622],[0.561248,51.409801],[0.563548,51.409551],[0.563982,51.411144],[0.566023,51.411329],[0.568466,51.413324],[0.571331,51.413046],[0.57378,51.413496],[0.57549,51.415473],[0.578512,51.415991],[0.580109,51.415811],[0.583472,51.4159],[0.584782,51.415568],[0.586502,51.416417],[0.589522,51.415245],[0.591789,51.414728],[0.594293,51.415206],[0.597181,51.416388],[0.600023,51.415887],[0.607,51.416529],[0.610877,51.417402],[0.612871,51.419175],[0.61556,51.420454],[0.620624,51.421816],[0.622381,51.423591],[0.623322,51.424095],[0.622119,51.425282],[0.623237,51.426145],[0.620125,51.426962],[0.621129,51.427609],[0.618477,51.427976],[0.617808,51.427732],[0.615777,51.425313],[0.615256,51.424169],[0.612101,51.422955],[0.609844,51.421401],[0.606051,51.420173],[0.605398,51.421087],[0.608463,51.42171],[0.610101,51.422617],[0.610324,51.425116],[0.612614,51.427941],[0.612029,51.428696],[0.612331,51.42965],[0.614424,51.429428],[0.616215,51.4313],[0.618767,51.4324],[0.617819,51.433528],[0.618643,51.434174],[0.617958,51.435576],[0.618957,51.436532],[0.618998,51.437461],[0.622558,51.438164],[0.624538,51.437884],[0.626147,51.438508],[0.628823,51.442937],[0.630834,51.443522],[0.633852,51.442713],[0.633369,51.444889],[0.635542,51.445117],[0.640001,51.44492],[0.641557,51.444381],[0.643646,51.444243],[0.648106,51.445186],[0.651278,51.446765],[0.653008,51.446549],[0.65481,51.448849],[0.656064,51.449225],[0.659299,51.448976],[0.662336,51.447687],[0.663754,51.446073],[0.66267,51.4441],[0.663365,51.443629],[0.665659,51.444083],[0.66725,51.443979],[0.668683,51.445633],[0.670035,51.445979],[0.670232,51.447139],[0.671949,51.447258],[0.67089,51.445636],[0.669079,51.444815],[0.669452,51.443122],[0.670337,51.44267],[0.672527,51.440132],[0.67564,51.43991],[0.676742,51.4387],[0.676935,51.436939],[0.674905,51.43595],[0.673477,51.434773],[0.673845,51.434183],[0.675717,51.433489],[0.677839,51.433178],[0.68783,51.433504],[0.690693,51.433003],[0.694219,51.433637],[0.698239,51.433721],[0.699808,51.433216],[0.705373,51.433862],[0.707135,51.435217],[0.708797,51.43565],[0.710337,51.434831],[0.713361,51.435656],[0.717641,51.437786],[0.721351,51.441527],[0.72164,51.442947],[0.723281,51.443569],[0.723505,51.44671],[0.72273,51.453798],[0.721742,51.457913],[0.720508,51.459763],[0.718394,51.460473],[0.717246,51.461563],[0.711965,51.464429],[0.703034,51.471348],[0.699631,51.472745],[0.698801,51.472474],[0.694573,51.472381],[0.693348,51.472978],[0.687011,51.474402],[0.686062,51.475087],[0.680928,51.474505],[0.678525,51.47472],[0.675877,51.473131],[0.671291,51.472177],[0.671686,51.470778],[0.672814,51.469143],[0.674735,51.467932],[0.676609,51.467467],[0.679563,51.467359],[0.685765,51.465198],[0.686762,51.463672],[0.689789,51.461476],[0.688317,51.460999],[0.687599,51.46219],[0.683492,51.46542],[0.679875,51.466227],[0.676742,51.466453],[0.673562,51.467454],[0.670394,51.470262],[0.670494,51.472473],[0.671208,51.473565],[0.670127,51.473826],[0.669695,51.474999],[0.666016,51.475508],[0.663307,51.475276],[0.661539,51.475949],[0.660828,51.477287],[0.659953,51.477669],[0.650514,51.476677],[0.646087,51.478823],[0.642065,51.478967],[0.635094,51.478068],[0.6313,51.478067],[0.629391,51.477677],[0.627899,51.477863],[0.624458,51.47735],[0.621116,51.47604],[0.618025,51.475876],[0.615242,51.475111],[0.613077,51.475941],[0.611453,51.477896],[0.611711,51.478791],[0.60143,51.481403],[0.599424,51.4811],[0.591792,51.483175],[0.590246,51.483036],[0.587858,51.484038],[0.585684,51.484402],[0.585016,51.483799],[0.584972,51.481068],[0.582192,51.480816],[0.58106,51.481013],[0.579389,51.480363],[0.576044,51.48343],[0.574349,51.484294],[0.566066,51.484067],[0.560045,51.484698],[0.558402,51.484096],[0.558512,51.482717],[0.555193,51.482115],[0.554109,51.481669],[0.552937,51.482422],[0.553662,51.483515],[0.553606,51.484939],[0.546869,51.487054],[0.543888,51.486853],[0.536635,51.485588],[0.530663,51.485144],[0.525977,51.484214],[0.521616,51.484796],[0.515912,51.484871],[0.513967,51.485624],[0.509762,51.485307],[0.492618,51.486591],[0.488897,51.487207],[0.483579,51.487251],[0.480251,51.486868],[0.468462,51.482658],[0.467037,51.479427],[0.464086,51.477325],[0.461299,51.473108],[0.461409,51.472053],[0.459361,51.470118],[0.458122,51.466958],[0.458358,51.466472],[0.462179,51.466497],[0.466789,51.465912],[0.467012,51.464038],[0.465439,51.464695],[0.460458,51.465058],[0.458329,51.466033],[0.455869,51.465097],[0.454345,51.46342],[0.45568,51.462323],[0.456132,51.461035],[0.457483,51.460837],[0.458612,51.459154],[0.457246,51.45701],[0.459257,51.455542],[0.460735,51.455985],[0.462115,51.45455],[0.467645,51.454292],[0.468752,51.451203],[0.475765,51.446767],[0.477321,51.446247],[0.478911,51.446377],[0.482789,51.44492],[0.484364,51.44475],[0.486091,51.443498],[0.48796,51.443285],[0.487917,51.440377],[0.490973,51.438677],[0.489759,51.437579],[0.486357,51.436026],[0.488856,51.434942],[0.488364,51.430527],[0.489386,51.430031],[0.489211,51.42703],[0.489619,51.425933],[0.491196,51.424775],[0.48856,51.419443],[0.489235,51.415326],[0.488283,51.414207],[0.483679,51.412749],[0.480904,51.414797],[0.47514,51.412947],[0.475506,51.408646],[0.477616,51.407186],[0.474636,51.406229],[0.468211,51.403171],[0.469453,51.399704],[0.467957,51.399521],[0.467687,51.398301],[0.456717,51.39859],[0.451853,51.398321],[0.453915,51.397034],[0.456709,51.394284],[0.453322,51.391379],[0.452002,51.39145],[0.44795,51.390362],[0.447144,51.388958],[0.434641,51.388881],[0.431109,51.388033],[0.431145,51.38638],[0.430186,51.383666],[0.424966,51.376581],[0.423414,51.376146],[0.420937,51.3761],[0.419677,51.375592],[0.419195,51.374565],[0.417905,51.373326],[0.418432,51.372643],[0.412539,51.363992],[0.407194,51.359824],[0.404733,51.356504],[0.403457,51.356455],[0.401283,51.352955],[0.400965,51.349933],[0.397346,51.345776],[0.399919,51.344457],[0.403963,51.344892],[0.40543,51.345455],[0.407091,51.346655],[0.406714,51.347762],[0.408715,51.347776],[0.411003,51.348211],[0.416639,51.347519],[0.418594,51.347912],[0.420885,51.347262],[0.426654,51.346914],[0.431291,51.345001],[0.445261,51.341856],[0.452094,51.340612],[0.453464,51.340633]]]]},"properties":{"LAD22CD":"E06000035","LAD22NM":"Medway","BNG_E":578207,"BNG_N":175198,"LONG":0.563174,"LAT":51.44772,"GlobalID":"dcbe23cf-6f47-48e5-9a7f-e8acf54d23da"},"id":33}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.667634,51.384571],[-0.671388,51.385781],[-0.673163,51.388741],[-0.679433,51.393052],[-0.686611,51.40296],[-0.69215,51.406906],[-0.696541,51.41091],[-0.696117,51.413024],[-0.693667,51.415015],[-0.690083,51.418872],[-0.684781,51.42163],[-0.680579,51.425351],[-0.678773,51.428466],[-0.678978,51.429949],[-0.676261,51.431583],[-0.667949,51.430748],[-0.663096,51.426016],[-0.657988,51.423927],[-0.653862,51.423951],[-0.64916,51.421225],[-0.64321,51.418897],[-0.641071,51.417069],[-0.640441,51.415794],[-0.638327,51.414655],[-0.635322,51.414168],[-0.631309,51.414455],[-0.631292,51.416826],[-0.632072,51.41921],[-0.63123,51.422861],[-0.637146,51.428005],[-0.630553,51.442192],[-0.64195,51.441006],[-0.650799,51.441767],[-0.653869,51.441368],[-0.661982,51.444319],[-0.658224,51.449316],[-0.658259,51.453082],[-0.656756,51.461494],[-0.660972,51.461853],[-0.662646,51.462549],[-0.665016,51.462466],[-0.668902,51.459683],[-0.672746,51.457849],[-0.679777,51.46301],[-0.682288,51.463384],[-0.688866,51.46696],[-0.705709,51.467738],[-0.710133,51.467472],[-0.710476,51.466395],[-0.714418,51.467144],[-0.7204,51.459904],[-0.723307,51.457711],[-0.724526,51.456139],[-0.740771,51.458831],[-0.745893,51.458805],[-0.752753,51.462227],[-0.757329,51.459025],[-0.760746,51.459105],[-0.762942,51.4597],[-0.764628,51.459723],[-0.769803,51.46341],[-0.77014,51.465195],[-0.769642,51.467759],[-0.77516,51.468385],[-0.775652,51.468722],[-0.782565,51.46869],[-0.783767,51.464576],[-0.783874,51.460774],[-0.785705,51.457788],[-0.788083,51.454309],[-0.789809,51.452499],[-0.792782,51.451418],[-0.795952,51.449525],[-0.797035,51.447615],[-0.799348,51.446135],[-0.800063,51.444853],[-0.80002,51.441182],[-0.79971,51.438947],[-0.798051,51.435726],[-0.798533,51.432828],[-0.797885,51.424691],[-0.798712,51.421421],[-0.798692,51.419529],[-0.796676,51.414459],[-0.795739,51.413226],[-0.793231,51.411394],[-0.792506,51.40885],[-0.794614,51.408555],[-0.798083,51.409185],[-0.801972,51.409063],[-0.801475,51.405095],[-0.798955,51.400135],[-0.797832,51.395653],[-0.795766,51.392354],[-0.793125,51.384608],[-0.78884,51.371751],[-0.80959,51.370908],[-0.813571,51.370318],[-0.814533,51.369533],[-0.826982,51.364016],[-0.828277,51.362816],[-0.829133,51.360973],[-0.832472,51.357848],[-0.83421,51.35539],[-0.834376,51.3545],[-0.837349,51.352871],[-0.836026,51.352619],[-0.832055,51.35297],[-0.828125,51.352864],[-0.826389,51.352287],[-0.824797,51.350075],[-0.819049,51.34883],[-0.818769,51.34785],[-0.816119,51.34715],[-0.815777,51.346361],[-0.813957,51.3454],[-0.815383,51.344171],[-0.815098,51.342342],[-0.81408,51.341565],[-0.809468,51.341039],[-0.807036,51.341084],[-0.804681,51.341656],[-0.804152,51.341353],[-0.798902,51.341506],[-0.798315,51.341782],[-0.794929,51.34096],[-0.793186,51.339973],[-0.789978,51.339802],[-0.789063,51.339191],[-0.78708,51.339185],[-0.783324,51.337432],[-0.782782,51.33569],[-0.78014,51.334785],[-0.778003,51.333374],[-0.776588,51.333171],[-0.775466,51.331959],[-0.77268,51.332843],[-0.768969,51.335486],[-0.764662,51.33703],[-0.761432,51.340409],[-0.758193,51.340568],[-0.759435,51.34347],[-0.756974,51.344245],[-0.754086,51.346271],[-0.752357,51.348539],[-0.749752,51.349934],[-0.748053,51.352348],[-0.744326,51.354569],[-0.739611,51.359125],[-0.737725,51.362317],[-0.735336,51.36501],[-0.731853,51.366431],[-0.724294,51.368461],[-0.710485,51.37067],[-0.697007,51.374395],[-0.667634,51.384571]]]},"properties":{"LAD22CD":"E06000036","LAD22NM":"Bracknell Forest","BNG_E":488169,"BNG_N":168792,"LONG":-0.73363,"LAT":51.4113,"GlobalID":"4ec6bb06-73fa-4cd8-80da-26b3073d3b3f"},"id":34}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.226792,51.535158],[-1.229942,51.534614],[-1.233838,51.536294],[-1.240165,51.537658],[-1.245317,51.53775],[-1.256457,51.537018],[-1.260656,51.53779],[-1.267893,51.542168],[-1.2702,51.54462],[-1.280325,51.546755],[-1.283757,51.548623],[-1.285522,51.548331],[-1.286537,51.551574],[-1.287561,51.552846],[-1.289505,51.552312],[-1.294192,51.553847],[-1.297139,51.552879],[-1.297452,51.553407],[-1.302132,51.555141],[-1.303375,51.556589],[-1.306084,51.556897],[-1.307864,51.556796],[-1.309383,51.557179],[-1.315307,51.557265],[-1.320407,51.558939],[-1.326298,51.559582],[-1.328721,51.563712],[-1.333134,51.560377],[-1.334785,51.554872],[-1.336443,51.552834],[-1.337002,51.550892],[-1.338071,51.549305],[-1.3383,51.547511],[-1.337952,51.545777],[-1.34125,51.544057],[-1.343988,51.543378],[-1.34683,51.544013],[-1.350361,51.546884],[-1.358781,51.546606],[-1.361172,51.547984],[-1.363177,51.550044],[-1.365511,51.551143],[-1.367321,51.552467],[-1.369015,51.552208],[-1.372832,51.550575],[-1.377951,51.549687],[-1.376961,51.545779],[-1.380699,51.542259],[-1.383779,51.540426],[-1.388904,51.53989],[-1.39246,51.540424],[-1.395851,51.540345],[-1.398215,51.543423],[-1.400287,51.544765],[-1.404328,51.546309],[-1.404858,51.547235],[-1.409885,51.544702],[-1.413788,51.54208],[-1.416211,51.539649],[-1.418023,51.538975],[-1.419337,51.537724],[-1.422769,51.535765],[-1.425647,51.54201],[-1.426591,51.545599],[-1.430993,51.542585],[-1.437134,51.540008],[-1.439649,51.539565],[-1.447832,51.536427],[-1.454928,51.535378],[-1.456757,51.535458],[-1.461841,51.536478],[-1.464787,51.537949],[-1.4648,51.534788],[-1.462988,51.530191],[-1.470745,51.528607],[-1.470711,51.530009],[-1.476252,51.530781],[-1.477071,51.532647],[-1.485857,51.534079],[-1.488017,51.536244],[-1.487583,51.538893],[-1.486032,51.540566],[-1.489564,51.542811],[-1.495889,51.545662],[-1.501229,51.546695],[-1.504741,51.546659],[-1.508943,51.549064],[-1.512939,51.55076],[-1.514593,51.551159],[-1.51668,51.551185],[-1.521307,51.550896],[-1.530719,51.548096],[-1.530184,51.54693],[-1.530959,51.546069],[-1.532313,51.547192],[-1.534784,51.548385],[-1.540273,51.549517],[-1.540243,51.550952],[-1.541453,51.552059],[-1.542955,51.552325],[-1.547075,51.551397],[-1.547401,51.553083],[-1.555001,51.55337],[-1.556371,51.553006],[-1.561051,51.550294],[-1.566103,51.545562],[-1.569588,51.547544],[-1.570008,51.54738],[-1.570238,51.544512],[-1.56936,51.543283],[-1.576682,51.539062],[-1.581187,51.536995],[-1.581517,51.534467],[-1.583341,51.528316],[-1.585141,51.525667],[-1.584708,51.524912],[-1.585419,51.523642],[-1.587087,51.516049],[-1.588064,51.513503],[-1.587274,51.511139],[-1.587012,51.507124],[-1.585765,51.502118],[-1.582615,51.500885],[-1.582062,51.499461],[-1.582645,51.498113],[-1.583522,51.497693],[-1.582267,51.495776],[-1.583406,51.495845],[-1.582291,51.494112],[-1.579332,51.4912],[-1.576775,51.489309],[-1.573598,51.48724],[-1.570449,51.486274],[-1.567824,51.481513],[-1.567643,51.479844],[-1.566882,51.478532],[-1.566831,51.47693],[-1.562729,51.476813],[-1.561144,51.475803],[-1.560715,51.47221],[-1.559526,51.469739],[-1.557379,51.468015],[-1.550941,51.465484],[-1.549611,51.462229],[-1.54839,51.460656],[-1.545756,51.458991],[-1.542181,51.45775],[-1.538741,51.457356],[-1.534598,51.456126],[-1.529029,51.455512],[-1.52885,51.453992],[-1.524903,51.450272],[-1.523991,51.447481],[-1.524439,51.442887],[-1.523986,51.441338],[-1.532063,51.429555],[-1.528266,51.427965],[-1.526955,51.425785],[-1.525289,51.425018],[-1.526619,51.42393],[-1.531686,51.425129],[-1.532845,51.42562],[-1.539625,51.426112],[-1.543523,51.42476],[-1.544415,51.423539],[-1.545963,51.422752],[-1.549442,51.422381],[-1.553113,51.421276],[-1.553663,51.422406],[-1.556287,51.421597],[-1.558462,51.421677],[-1.558232,51.420513],[-1.560318,51.420394],[-1.563391,51.421012],[-1.565119,51.422043],[-1.566889,51.421041],[-1.571165,51.416465],[-1.57092,51.415308],[-1.569616,51.4147],[-1.566796,51.414367],[-1.565418,51.413299],[-1.563491,51.413229],[-1.562478,51.411269],[-1.562275,51.408237],[-1.560545,51.408553],[-1.559937,51.408125],[-1.557834,51.409085],[-1.555628,51.409408],[-1.554331,51.410308],[-1.552988,51.410044],[-1.553349,51.408474],[-1.554299,51.407635],[-1.55369,51.406677],[-1.554152,51.403482],[-1.553561,51.401543],[-1.556208,51.398136],[-1.556262,51.396526],[-1.555603,51.395584],[-1.553317,51.394738],[-1.54901,51.394718],[-1.548755,51.393018],[-1.547111,51.39326],[-1.547331,51.391174],[-1.546469,51.390541],[-1.544269,51.390138],[-1.542624,51.390456],[-1.542331,51.389625],[-1.537718,51.388322],[-1.53868,51.387049],[-1.538332,51.385537],[-1.535665,51.384077],[-1.534668,51.384329],[-1.533301,51.38336],[-1.528871,51.38139],[-1.52689,51.379948],[-1.527635,51.378821],[-1.523944,51.378099],[-1.523236,51.378617],[-1.520601,51.379284],[-1.516961,51.37878],[-1.515436,51.377581],[-1.514179,51.376099],[-1.513406,51.372045],[-1.510019,51.371904],[-1.509435,51.371088],[-1.504011,51.369831],[-1.502539,51.368858],[-1.499385,51.369026],[-1.495449,51.369664],[-1.495152,51.367723],[-1.499313,51.363278],[-1.499337,51.361452],[-1.500023,51.360698],[-1.499658,51.358483],[-1.500609,51.356268],[-1.500058,51.355579],[-1.497409,51.354593],[-1.49502,51.352763],[-1.491358,51.352051],[-1.489406,51.350397],[-1.486812,51.349427],[-1.485712,51.347683],[-1.486555,51.345321],[-1.490155,51.342022],[-1.493024,51.33799],[-1.497538,51.333227],[-1.497638,51.33119],[-1.498299,51.329376],[-1.495394,51.328961],[-1.490704,51.329744],[-1.488442,51.330466],[-1.4844,51.331037],[-1.465522,51.33238],[-1.460637,51.332435],[-1.458209,51.332982],[-1.455613,51.332499],[-1.453583,51.332804],[-1.450804,51.332674],[-1.429693,51.33653],[-1.433121,51.340145],[-1.433462,51.341131],[-1.436732,51.343157],[-1.441169,51.346564],[-1.444936,51.348118],[-1.444223,51.349129],[-1.443613,51.351972],[-1.44411,51.354928],[-1.440512,51.355539],[-1.432231,51.355798],[-1.428439,51.35669],[-1.426729,51.36009],[-1.422349,51.362857],[-1.421586,51.364407],[-1.419072,51.366668],[-1.417568,51.370688],[-1.41563,51.371883],[-1.411068,51.372852],[-1.409467,51.372317],[-1.407103,51.372708],[-1.406115,51.372236],[-1.40194,51.372137],[-1.401424,51.371535],[-1.399565,51.371614],[-1.396609,51.371262],[-1.393515,51.370471],[-1.390789,51.370582],[-1.387836,51.370272],[-1.385248,51.369414],[-1.382737,51.369127],[-1.380464,51.368291],[-1.377869,51.367779],[-1.376147,51.368313],[-1.373578,51.367811],[-1.371902,51.368418],[-1.368639,51.367955],[-1.366273,51.368581],[-1.363785,51.368646],[-1.361755,51.367833],[-1.359587,51.367474],[-1.357399,51.367964],[-1.355523,51.367951],[-1.35288,51.367262],[-1.351833,51.367821],[-1.350453,51.367217],[-1.348746,51.367229],[-1.3454,51.368852],[-1.342927,51.369122],[-1.340805,51.369027],[-1.338312,51.368575],[-1.337319,51.369418],[-1.334286,51.369413],[-1.332705,51.370463],[-1.328234,51.371786],[-1.326448,51.371681],[-1.324724,51.372556],[-1.322399,51.371644],[-1.320627,51.372656],[-1.315141,51.37309],[-1.314576,51.372725],[-1.312059,51.373033],[-1.310945,51.372215],[-1.307205,51.371253],[-1.303924,51.371182],[-1.30334,51.370832],[-1.300871,51.370995],[-1.296774,51.370428],[-1.293287,51.371055],[-1.291642,51.370036],[-1.289904,51.369544],[-1.286811,51.367825],[-1.284595,51.367999],[-1.282941,51.367638],[-1.281434,51.368351],[-1.278242,51.368815],[-1.276017,51.367347],[-1.27341,51.367521],[-1.270929,51.368435],[-1.269663,51.369431],[-1.269803,51.370377],[-1.267808,51.370321],[-1.265444,51.370814],[-1.262995,51.370136],[-1.262803,51.368575],[-1.262187,51.368379],[-1.260576,51.369584],[-1.259071,51.370167],[-1.259192,51.371422],[-1.257381,51.372114],[-1.256571,51.371827],[-1.254524,51.372077],[-1.250371,51.371629],[-1.248556,51.371826],[-1.246449,51.369531],[-1.246147,51.368407],[-1.242033,51.366905],[-1.241579,51.366222],[-1.238039,51.366832],[-1.235913,51.367571],[-1.233313,51.367133],[-1.228553,51.368281],[-1.225073,51.369504],[-1.223895,51.369185],[-1.222588,51.369754],[-1.221796,51.367785],[-1.220624,51.367517],[-1.219657,51.366344],[-1.218309,51.365863],[-1.216052,51.365907],[-1.21356,51.36635],[-1.212544,51.366079],[-1.210819,51.367145],[-1.20988,51.366683],[-1.206697,51.366959],[-1.204949,51.366449],[-1.202083,51.36619],[-1.200975,51.365822],[-1.19993,51.364691],[-1.194797,51.363742],[-1.189282,51.363323],[-1.186067,51.362106],[-1.176894,51.357324],[-1.169622,51.360726],[-1.146858,51.359368],[-1.144131,51.357263],[-1.13859,51.357191],[-1.131316,51.358028],[-1.124767,51.3581],[-1.12466,51.359712],[-1.123744,51.361257],[-1.120144,51.360541],[-1.119243,51.359897],[-1.115791,51.360466],[-1.11539,51.36255],[-1.116418,51.364774],[-1.116138,51.366455],[-1.117515,51.36809],[-1.115457,51.374215],[-1.100219,51.379426],[-1.098799,51.380109],[-1.097518,51.381726],[-1.086619,51.383916],[-1.08278,51.381727],[-1.075347,51.379496],[-1.079991,51.374635],[-1.077863,51.374567],[-1.07252,51.375283],[-1.069211,51.373224],[-1.068936,51.373491],[-1.065767,51.372327],[-1.062594,51.369822],[-1.063062,51.369067],[-1.062118,51.367663],[-1.060151,51.368184],[-1.059151,51.367517],[-1.059157,51.366297],[-1.058528,51.365742],[-1.055799,51.36504],[-1.055396,51.363575],[-1.053082,51.362325],[-1.051525,51.362633],[-1.050246,51.359972],[-1.050016,51.358148],[-1.022647,51.359073],[-1.011123,51.35917],[-1.008568,51.35943],[-1.004686,51.360527],[-1.002306,51.360288],[-1.000223,51.362668],[-0.999262,51.361559],[-0.996317,51.36228],[-0.992867,51.362568],[-0.992906,51.361454],[-0.990768,51.362568],[-0.988846,51.362915],[-0.987568,51.361968],[-0.986124,51.362848],[-0.986229,51.36368],[-0.988008,51.364413],[-0.990528,51.364008],[-0.991438,51.365154],[-0.991789,51.36667],[-0.990466,51.36795],[-0.990879,51.368534],[-0.989096,51.37044],[-0.987676,51.371062],[-0.985264,51.370689],[-0.983435,51.371441],[-0.983607,51.37335],[-0.9817,51.375627],[-0.984236,51.376732],[-0.983716,51.377159],[-0.985382,51.378581],[-0.99024,51.381524],[-0.992634,51.384036],[-0.996807,51.385967],[-1.001023,51.389026],[-1.007041,51.391437],[-1.011884,51.392867],[-1.009824,51.396567],[-1.009099,51.398825],[-1.004021,51.40377],[-1.003504,51.40513],[-1.003909,51.40633],[-1.003507,51.407913],[-1.00112,51.409345],[-0.999142,51.412251],[-0.999783,51.412667],[-1.000199,51.414292],[-1.001396,51.414326],[-1.000235,51.415784],[-0.997881,51.417034],[-0.998244,51.417498],[-0.998016,51.419463],[-0.999958,51.420175],[-0.999204,51.421927],[-1.000315,51.422431],[-0.999555,51.4249],[-1.002767,51.426067],[-1.001148,51.426382],[-1.000757,51.42985],[-1.001997,51.431579],[-1.003817,51.432624],[-1.00371,51.433893],[-1.007824,51.433796],[-1.0081,51.435085],[-1.009714,51.4342],[-1.01302,51.43456],[-1.01356,51.43554],[-1.015812,51.435348],[-1.019563,51.435819],[-1.021623,51.435709],[-1.021855,51.440517],[-1.02345,51.444317],[-1.026561,51.443978],[-1.025982,51.445185],[-1.026718,51.445907],[-1.03011,51.447284],[-1.030235,51.449433],[-1.033983,51.452728],[-1.038079,51.452786],[-1.046792,51.450172],[-1.049185,51.451411],[-1.0492,51.453729],[-1.047991,51.453774],[-1.047076,51.454846],[-1.047869,51.455255],[-1.046721,51.456213],[-1.052975,51.46037],[-1.049775,51.462101],[-1.048454,51.462434],[-1.047884,51.464627],[-1.044316,51.465275],[-1.044211,51.467035],[-1.043465,51.46721],[-1.041471,51.470313],[-1.038994,51.471532],[-1.038446,51.472314],[-1.036693,51.473393],[-1.03592,51.47442],[-1.036558,51.475227],[-1.038494,51.476185],[-1.038979,51.476868],[-1.038684,51.479691],[-1.037329,51.482137],[-1.037397,51.483822],[-1.039509,51.485176],[-1.039682,51.486559],[-1.040744,51.487599],[-1.043594,51.489381],[-1.048677,51.490783],[-1.05135,51.49186],[-1.055423,51.492037],[-1.059709,51.491789],[-1.071148,51.489741],[-1.073045,51.489512],[-1.07727,51.487865],[-1.082644,51.487079],[-1.088362,51.485753],[-1.100228,51.488876],[-1.102777,51.490171],[-1.104365,51.492331],[-1.108031,51.500719],[-1.106969,51.501096],[-1.109027,51.504854],[-1.111384,51.507911],[-1.112895,51.509401],[-1.114785,51.510482],[-1.117948,51.51163],[-1.119464,51.511857],[-1.127647,51.511897],[-1.133697,51.511287],[-1.138674,51.514175],[-1.141064,51.515188],[-1.142053,51.516195],[-1.143265,51.519771],[-1.142536,51.520827],[-1.144038,51.522029],[-1.143536,51.523454],[-1.138896,51.526984],[-1.137733,51.528893],[-1.134664,51.532801],[-1.134446,51.533722],[-1.134679,51.536519],[-1.136315,51.539978],[-1.140375,51.542911],[-1.146937,51.540612],[-1.152674,51.539392],[-1.154652,51.538725],[-1.156038,51.537867],[-1.160157,51.536602],[-1.159375,51.534926],[-1.160798,51.53459],[-1.165992,51.533947],[-1.172761,51.533763],[-1.175181,51.533407],[-1.180337,51.531951],[-1.19057,51.529988],[-1.20465,51.528394],[-1.205004,51.530344],[-1.205975,51.531836],[-1.20539,51.533385],[-1.204202,51.534276],[-1.203232,51.536724],[-1.204644,51.537604],[-1.206129,51.53753],[-1.210135,51.536442],[-1.214945,51.536091],[-1.216578,51.536228],[-1.218859,51.536938],[-1.221438,51.536152],[-1.226792,51.535158]]]},"properties":{"LAD22CD":"E06000037","LAD22NM":"West Berkshire","BNG_E":450575,"BNG_N":172095,"LONG":-1.27364,"LAT":51.44559,"GlobalID":"7b845276-d211-44f5-87dc-f4612578fbe0"},"id":35}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.949168,51.459513],[-0.955453,51.461256],[-0.954394,51.462631],[-0.954363,51.464526],[-0.955184,51.465334],[-0.951561,51.465702],[-0.949441,51.464931],[-0.949246,51.46614],[-0.947182,51.466653],[-0.949222,51.470132],[-0.94653,51.471517],[-0.947323,51.472942],[-0.941137,51.474978],[-0.944912,51.479224],[-0.945568,51.481694],[-0.944501,51.481953],[-0.948036,51.485212],[-0.947011,51.486062],[-0.949175,51.486994],[-0.94981,51.486468],[-0.953903,51.488608],[-0.957481,51.493078],[-0.961805,51.493092],[-0.965095,51.492079],[-0.9646,51.491471],[-0.969188,51.490204],[-0.97175,51.487581],[-0.974321,51.486751],[-0.976084,51.488348],[-0.97765,51.488407],[-0.978632,51.487314],[-0.978613,51.485626],[-0.980084,51.485704],[-0.982263,51.485039],[-0.984121,51.484963],[-0.986937,51.48574],[-0.989029,51.485732],[-0.991489,51.485208],[-0.993375,51.486296],[-0.993837,51.485191],[-0.997084,51.484362],[-0.998399,51.484305],[-0.997834,51.482377],[-0.998051,51.481721],[-0.999976,51.481464],[-1.000619,51.480839],[-0.998712,51.480299],[-0.998181,51.47755],[-0.999816,51.475232],[-1.000803,51.474621],[-1.003265,51.474433],[-1.003807,51.473313],[-1.006929,51.473422],[-1.005963,51.472593],[-1.007939,51.471572],[-1.0075,51.46783],[-1.011207,51.467162],[-1.013564,51.466292],[-1.018205,51.466585],[-1.021772,51.467996],[-1.026595,51.470724],[-1.036558,51.475227],[-1.03592,51.47442],[-1.036693,51.473393],[-1.038446,51.472314],[-1.038994,51.471532],[-1.041471,51.470313],[-1.043465,51.46721],[-1.044211,51.467035],[-1.044316,51.465275],[-1.047884,51.464627],[-1.048454,51.462434],[-1.049775,51.462101],[-1.052975,51.46037],[-1.046721,51.456213],[-1.047869,51.455255],[-1.047076,51.454846],[-1.047991,51.453774],[-1.0492,51.453729],[-1.049185,51.451411],[-1.046792,51.450172],[-1.038079,51.452786],[-1.033983,51.452728],[-1.030235,51.449433],[-1.03011,51.447284],[-1.026718,51.445907],[-1.025982,51.445185],[-1.026561,51.443978],[-1.02345,51.444317],[-1.021855,51.440517],[-1.021623,51.435709],[-1.019563,51.435819],[-1.015812,51.435348],[-1.01356,51.43554],[-1.01302,51.43456],[-1.009714,51.4342],[-1.0081,51.435085],[-1.007824,51.433796],[-1.00371,51.433893],[-1.003817,51.432624],[-1.001997,51.431579],[-1.000757,51.42985],[-1.001148,51.426382],[-1.001269,51.425679],[-0.998655,51.424821],[-0.996615,51.421672],[-0.996269,51.419594],[-0.99316,51.419462],[-0.991442,51.420473],[-0.987706,51.420796],[-0.984792,51.42198],[-0.984458,51.421338],[-0.981342,51.420624],[-0.983368,51.418859],[-0.980996,51.417211],[-0.979792,51.414556],[-0.979893,51.413026],[-0.978769,51.412481],[-0.973638,51.412549],[-0.9737,51.409781],[-0.970463,51.410253],[-0.96473,51.411759],[-0.961921,51.412349],[-0.962127,51.413938],[-0.959879,51.414276],[-0.96029,51.415081],[-0.956919,51.419477],[-0.957151,51.419858],[-0.951213,51.423158],[-0.949146,51.423808],[-0.946208,51.427099],[-0.943434,51.429292],[-0.943955,51.430077],[-0.943518,51.436155],[-0.943707,51.438439],[-0.946399,51.438142],[-0.946414,51.439164],[-0.948135,51.439288],[-0.947888,51.44109],[-0.946623,51.441043],[-0.946304,51.442326],[-0.944627,51.442906],[-0.944695,51.445217],[-0.944255,51.44627],[-0.941788,51.445975],[-0.937391,51.444419],[-0.934812,51.443002],[-0.933914,51.441905],[-0.932389,51.44096],[-0.930717,51.442226],[-0.928475,51.445162],[-0.931548,51.447664],[-0.934986,51.451915],[-0.93785,51.454022],[-0.943605,51.456466],[-0.950019,51.457839],[-0.949168,51.459513]]]},"properties":{"LAD22CD":"E06000038","LAD22NM":"Reading","BNG_E":470226,"BNG_N":173154,"LONG":-0.99071,"LAT":51.45302,"GlobalID":"e9a749ab-7c26-42da-ac3f-7a1003a14a6a"},"id":36}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.490025,51.494748],[-0.496077,51.494999],[-0.500539,51.49482],[-0.5009,51.495353],[-0.50881,51.493925],[-0.514145,51.493333],[-0.53182,51.493394],[-0.528752,51.497069],[-0.527861,51.49882],[-0.527979,51.501587],[-0.528908,51.501511],[-0.527408,51.505669],[-0.526185,51.50742],[-0.526348,51.508999],[-0.528854,51.510088],[-0.552993,51.509099],[-0.563971,51.5102],[-0.566656,51.510621],[-0.568646,51.511364],[-0.566668,51.514501],[-0.568969,51.517721],[-0.565045,51.520692],[-0.565381,51.521272],[-0.567503,51.521455],[-0.571062,51.523362],[-0.571775,51.52428],[-0.572436,51.527412],[-0.574546,51.528562],[-0.575095,51.5293],[-0.572837,51.529704],[-0.569932,51.529731],[-0.567593,51.530561],[-0.567256,51.532981],[-0.569181,51.532991],[-0.572754,51.533937],[-0.575979,51.53391],[-0.578363,51.530463],[-0.579229,51.528125],[-0.580868,51.525712],[-0.580992,51.523074],[-0.588412,51.523175],[-0.589868,51.522677],[-0.589851,51.524108],[-0.594985,51.524233],[-0.594666,51.525724],[-0.596472,51.525837],[-0.596222,51.52793],[-0.6022,51.528844],[-0.605982,51.529958],[-0.606404,51.532139],[-0.608434,51.53204],[-0.610536,51.531502],[-0.611811,51.533021],[-0.613376,51.5328],[-0.614562,51.53424],[-0.616512,51.53394],[-0.616824,51.534724],[-0.619636,51.535469],[-0.618955,51.536822],[-0.619703,51.53788],[-0.623771,51.537771],[-0.630536,51.538895],[-0.635367,51.537859],[-0.636792,51.537952],[-0.639723,51.537133],[-0.641857,51.537092],[-0.644763,51.536242],[-0.645178,51.534302],[-0.647991,51.532587],[-0.652762,51.529937],[-0.659945,51.528447],[-0.660142,51.525456],[-0.659573,51.520706],[-0.65888,51.519369],[-0.656811,51.518852],[-0.654979,51.518808],[-0.653241,51.515077],[-0.653961,51.511042],[-0.653039,51.510791],[-0.653968,51.508277],[-0.655415,51.508303],[-0.655602,51.506813],[-0.658952,51.507138],[-0.659271,51.504902],[-0.653921,51.504226],[-0.654344,51.501623],[-0.653465,51.500507],[-0.647858,51.500825],[-0.644932,51.50224],[-0.642971,51.502693],[-0.642212,51.500627],[-0.639034,51.500711],[-0.637078,51.500217],[-0.634647,51.500485],[-0.633132,51.502291],[-0.631067,51.503571],[-0.627898,51.504396],[-0.624694,51.504207],[-0.622159,51.503595],[-0.616107,51.501262],[-0.610717,51.49839],[-0.608947,51.498029],[-0.607716,51.497251],[-0.606668,51.498189],[-0.604326,51.497536],[-0.600499,51.502274],[-0.597718,51.500676],[-0.592614,51.498513],[-0.591033,51.497328],[-0.58961,51.499399],[-0.57606,51.495625],[-0.575361,51.494952],[-0.571677,51.493437],[-0.570273,51.493363],[-0.568375,51.492244],[-0.565569,51.491342],[-0.564781,51.491612],[-0.560551,51.497212],[-0.552544,51.494846],[-0.554124,51.491281],[-0.547138,51.489925],[-0.546961,51.490415],[-0.541857,51.488748],[-0.541292,51.489274],[-0.53811,51.488306],[-0.536809,51.487192],[-0.534362,51.486787],[-0.532734,51.483537],[-0.526978,51.480168],[-0.524244,51.47951],[-0.525345,51.476884],[-0.524683,51.474911],[-0.525507,51.474576],[-0.52371,51.472448],[-0.524359,51.471528],[-0.521221,51.471448],[-0.518729,51.47079],[-0.517137,51.469884],[-0.515661,51.468269],[-0.513583,51.468418],[-0.511183,51.469277],[-0.509702,51.469176],[-0.507671,51.470117],[-0.505942,51.472479],[-0.503495,51.48052],[-0.501955,51.482858],[-0.4987,51.48608],[-0.499676,51.486834],[-0.497978,51.488882],[-0.49863,51.489261],[-0.494942,51.491317],[-0.494831,51.492658],[-0.491445,51.493064],[-0.490025,51.494748]]]},"properties":{"LAD22CD":"E06000039","LAD22NM":"Slough","BNG_E":498920,"BNG_N":179246,"LONG":-0.57617,"LAT":51.5035,"GlobalID":"7a647042-cc1f-4000-aed8-0b9f824e8a82"},"id":37}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.642212,51.500627],[-0.644447,51.496485],[-0.641074,51.496497],[-0.638134,51.496014],[-0.637674,51.495426],[-0.635707,51.495007],[-0.633828,51.492695],[-0.638104,51.491855],[-0.64036,51.490302],[-0.646075,51.49013],[-0.647226,51.489466],[-0.648219,51.488232],[-0.650779,51.485792],[-0.651936,51.485471],[-0.654759,51.487066],[-0.659058,51.487104],[-0.662284,51.487926],[-0.66578,51.488353],[-0.668191,51.489172],[-0.669979,51.490079],[-0.673501,51.492718],[-0.678499,51.494564],[-0.679365,51.497135],[-0.682407,51.501252],[-0.682834,51.503448],[-0.686284,51.507173],[-0.688467,51.508472],[-0.690884,51.509194],[-0.693306,51.510342],[-0.695258,51.510344],[-0.699025,51.50963],[-0.701839,51.510367],[-0.703165,51.511107],[-0.703566,51.512625],[-0.701603,51.518593],[-0.701505,51.521172],[-0.702052,51.523948],[-0.699995,51.529074],[-0.699722,51.531251],[-0.697692,51.534783],[-0.698092,51.536827],[-0.697807,51.53779],[-0.696402,51.540023],[-0.693635,51.542608],[-0.692678,51.544025],[-0.69127,51.548676],[-0.691203,51.556819],[-0.69219,51.559324],[-0.694177,51.562175],[-0.694529,51.563184],[-0.696238,51.56508],[-0.698813,51.565591],[-0.701524,51.565655],[-0.703368,51.56285],[-0.705468,51.562246],[-0.708485,51.56312],[-0.711202,51.564324],[-0.712192,51.565495],[-0.711445,51.568675],[-0.712262,51.572232],[-0.715048,51.576034],[-0.716906,51.577195],[-0.718946,51.577692],[-0.722923,51.577829],[-0.727864,51.577243],[-0.73376,51.574925],[-0.737731,51.573846],[-0.740634,51.571871],[-0.745132,51.570719],[-0.748832,51.56841],[-0.753864,51.566537],[-0.757461,51.564818],[-0.760313,51.565867],[-0.763063,51.566423],[-0.768518,51.565844],[-0.77021,51.566713],[-0.770924,51.5679],[-0.774155,51.567013],[-0.775874,51.566253],[-0.77712,51.564972],[-0.779353,51.560156],[-0.782517,51.556169],[-0.78679,51.553824],[-0.790975,51.552838],[-0.792964,51.551359],[-0.794471,51.551158],[-0.803268,51.551916],[-0.807128,51.552761],[-0.810515,51.552697],[-0.81692,51.550988],[-0.824151,51.550485],[-0.826353,51.549181],[-0.827883,51.546394],[-0.828886,51.54563],[-0.831363,51.545718],[-0.83273,51.545336],[-0.834301,51.545763],[-0.835747,51.546742],[-0.838464,51.546805],[-0.840923,51.545143],[-0.842744,51.544759],[-0.843117,51.541832],[-0.846193,51.535989],[-0.845955,51.53458],[-0.846925,51.533051],[-0.849535,51.531827],[-0.850466,51.530692],[-0.852293,51.529476],[-0.853908,51.526073],[-0.850073,51.524484],[-0.847641,51.522249],[-0.839265,51.515875],[-0.836186,51.512751],[-0.833952,51.512942],[-0.828319,51.512379],[-0.824057,51.512479],[-0.822021,51.510648],[-0.818824,51.508914],[-0.81739,51.507238],[-0.81766,51.506748],[-0.817092,51.502847],[-0.818741,51.498019],[-0.817067,51.496432],[-0.819729,51.495767],[-0.819989,51.497112],[-0.82094,51.497177],[-0.822146,51.494269],[-0.825296,51.491978],[-0.827159,51.48948],[-0.829149,51.487828],[-0.829357,51.487198],[-0.82817,51.48423],[-0.826399,51.482506],[-0.826703,51.481498],[-0.826207,51.479796],[-0.824155,51.477904],[-0.823688,51.475949],[-0.82199,51.474119],[-0.821784,51.472602],[-0.824626,51.470067],[-0.825179,51.465671],[-0.830053,51.464511],[-0.833755,51.464099],[-0.828291,51.462044],[-0.826611,51.455446],[-0.818086,51.443191],[-0.812834,51.442424],[-0.80853,51.442552],[-0.806069,51.441378],[-0.80002,51.441182],[-0.800063,51.444853],[-0.799348,51.446135],[-0.797035,51.447615],[-0.795952,51.449525],[-0.792782,51.451418],[-0.789809,51.452499],[-0.788083,51.454309],[-0.785705,51.457788],[-0.783874,51.460774],[-0.783767,51.464576],[-0.782565,51.46869],[-0.775652,51.468722],[-0.77516,51.468385],[-0.769642,51.467759],[-0.77014,51.465195],[-0.769803,51.46341],[-0.764628,51.459723],[-0.762942,51.4597],[-0.760746,51.459105],[-0.757329,51.459025],[-0.752753,51.462227],[-0.745893,51.458805],[-0.740771,51.458831],[-0.724526,51.456139],[-0.723307,51.457711],[-0.7204,51.459904],[-0.714418,51.467144],[-0.710476,51.466395],[-0.710133,51.467472],[-0.705709,51.467738],[-0.688866,51.46696],[-0.682288,51.463384],[-0.679777,51.46301],[-0.672746,51.457849],[-0.668902,51.459683],[-0.665016,51.462466],[-0.662646,51.462549],[-0.660972,51.461853],[-0.656756,51.461494],[-0.658259,51.453082],[-0.658224,51.449316],[-0.661982,51.444319],[-0.653869,51.441368],[-0.650799,51.441767],[-0.64195,51.441006],[-0.630553,51.442192],[-0.637146,51.428005],[-0.63123,51.422861],[-0.632072,51.41921],[-0.631292,51.416826],[-0.631309,51.414455],[-0.635322,51.414168],[-0.638327,51.414655],[-0.640441,51.415794],[-0.641071,51.417069],[-0.64321,51.418897],[-0.64916,51.421225],[-0.653862,51.423951],[-0.657988,51.423927],[-0.663096,51.426016],[-0.667949,51.430748],[-0.676261,51.431583],[-0.678978,51.429949],[-0.678773,51.428466],[-0.680579,51.425351],[-0.684781,51.42163],[-0.690083,51.418872],[-0.693667,51.415015],[-0.696117,51.413024],[-0.696541,51.41091],[-0.69215,51.406906],[-0.686611,51.40296],[-0.679433,51.393052],[-0.673163,51.388741],[-0.671388,51.385781],[-0.667634,51.384571],[-0.664347,51.385739],[-0.658169,51.386281],[-0.655301,51.387246],[-0.652376,51.38679],[-0.650738,51.385663],[-0.647037,51.385932],[-0.646679,51.385384],[-0.640461,51.387372],[-0.638522,51.386658],[-0.636184,51.385188],[-0.632507,51.384304],[-0.628218,51.384235],[-0.625931,51.382873],[-0.624939,51.382883],[-0.620923,51.385172],[-0.61925,51.384992],[-0.618045,51.38338],[-0.616344,51.38354],[-0.617194,51.385817],[-0.618842,51.387463],[-0.620516,51.388475],[-0.623495,51.389543],[-0.621819,51.390039],[-0.618007,51.392056],[-0.618495,51.392388],[-0.619635,51.392824],[-0.61542,51.396376],[-0.616587,51.397014],[-0.615609,51.397648],[-0.617212,51.398759],[-0.618369,51.399026],[-0.614385,51.403093],[-0.611296,51.408709],[-0.606683,51.414111],[-0.605155,51.41736],[-0.604956,51.421381],[-0.605125,51.431312],[-0.594142,51.439314],[-0.59422,51.441468],[-0.593022,51.441824],[-0.591053,51.441142],[-0.588366,51.442368],[-0.585379,51.442366],[-0.584503,51.443657],[-0.579676,51.444747],[-0.571675,51.451008],[-0.56782,51.45008],[-0.564945,51.448038],[-0.563142,51.445751],[-0.559292,51.444346],[-0.55662,51.442],[-0.555567,51.441486],[-0.554052,51.441515],[-0.551818,51.4435],[-0.550445,51.443473],[-0.548185,51.441872],[-0.538363,51.439011],[-0.5346,51.437412],[-0.531406,51.43643],[-0.527582,51.435692],[-0.522765,51.4353],[-0.524532,51.435929],[-0.525232,51.437564],[-0.524069,51.438827],[-0.52454,51.43988],[-0.527729,51.44089],[-0.530131,51.440977],[-0.531437,51.441713],[-0.530641,51.443773],[-0.531063,51.44489],[-0.529406,51.445496],[-0.526732,51.44751],[-0.540577,51.457095],[-0.540478,51.458385],[-0.536951,51.459608],[-0.535302,51.460512],[-0.532072,51.464491],[-0.529646,51.469294],[-0.52996,51.470168],[-0.524359,51.471528],[-0.52371,51.472448],[-0.525507,51.474576],[-0.524683,51.474911],[-0.525345,51.476884],[-0.524244,51.47951],[-0.526978,51.480168],[-0.532734,51.483537],[-0.534362,51.486787],[-0.536809,51.487192],[-0.53811,51.488306],[-0.541292,51.489274],[-0.541857,51.488748],[-0.546961,51.490415],[-0.547138,51.489925],[-0.554124,51.491281],[-0.552544,51.494846],[-0.560551,51.497212],[-0.564781,51.491612],[-0.565569,51.491342],[-0.568375,51.492244],[-0.570273,51.493363],[-0.571677,51.493437],[-0.575361,51.494952],[-0.57606,51.495625],[-0.58961,51.499399],[-0.591033,51.497328],[-0.592614,51.498513],[-0.597718,51.500676],[-0.600499,51.502274],[-0.604326,51.497536],[-0.606668,51.498189],[-0.607716,51.497251],[-0.608947,51.498029],[-0.610717,51.49839],[-0.616107,51.501262],[-0.622159,51.503595],[-0.624694,51.504207],[-0.627898,51.504396],[-0.631067,51.503571],[-0.633132,51.502291],[-0.634647,51.500485],[-0.637078,51.500217],[-0.639034,51.500711],[-0.642212,51.500627]]]},"properties":{"LAD22CD":"E06000040","LAD22NM":"Windsor and Maidenhead","BNG_E":492079,"BNG_N":176541,"LONG":-0.67541,"LAT":51.48034,"GlobalID":"1dda92cb-8ed7-4597-8ab8-3d221969332b"},"id":38}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.842744,51.544759],[-0.847047,51.545201],[-0.856261,51.548706],[-0.85753,51.548813],[-0.859761,51.548368],[-0.862525,51.54902],[-0.863634,51.549941],[-0.864966,51.553181],[-0.86793,51.556202],[-0.871155,51.557666],[-0.872748,51.560311],[-0.8756,51.561739],[-0.879723,51.562128],[-0.881399,51.562015],[-0.883479,51.56144],[-0.88737,51.559471],[-0.889581,51.55697],[-0.890382,51.554858],[-0.893637,51.549312],[-0.896882,51.544863],[-0.900127,51.540263],[-0.900294,51.537149],[-0.899805,51.536199],[-0.895793,51.533799],[-0.892619,51.532709],[-0.887998,51.530131],[-0.883907,51.527158],[-0.878796,51.523728],[-0.878218,51.523018],[-0.878497,51.518136],[-0.880524,51.516367],[-0.880263,51.515126],[-0.880796,51.513274],[-0.880209,51.511612],[-0.879478,51.511088],[-0.874469,51.509325],[-0.872253,51.508093],[-0.871113,51.507021],[-0.871067,51.505588],[-0.870025,51.504391],[-0.870605,51.503162],[-0.871486,51.502561],[-0.881908,51.501469],[-0.885686,51.50017],[-0.887249,51.499958],[-0.889739,51.498781],[-0.894002,51.496471],[-0.89386,51.494842],[-0.895284,51.493921],[-0.893447,51.492538],[-0.894267,51.492044],[-0.896385,51.491816],[-0.896627,51.489938],[-0.898262,51.488313],[-0.897652,51.487045],[-0.901868,51.485339],[-0.905809,51.485063],[-0.908186,51.483961],[-0.910211,51.482148],[-0.910586,51.479474],[-0.910079,51.477755],[-0.910608,51.476831],[-0.91334,51.475963],[-0.914573,51.474787],[-0.91687,51.474375],[-0.919277,51.472719],[-0.920451,51.471306],[-0.921698,51.467931],[-0.923668,51.46719],[-0.926867,51.467285],[-0.929807,51.46778],[-0.930642,51.46764],[-0.932661,51.465794],[-0.942348,51.460594],[-0.945989,51.459504],[-0.949168,51.459513],[-0.950019,51.457839],[-0.943605,51.456466],[-0.93785,51.454022],[-0.934986,51.451915],[-0.931548,51.447664],[-0.928475,51.445162],[-0.930717,51.442226],[-0.932389,51.44096],[-0.933914,51.441905],[-0.934812,51.443002],[-0.937391,51.444419],[-0.941788,51.445975],[-0.944255,51.44627],[-0.944695,51.445217],[-0.944627,51.442906],[-0.946304,51.442326],[-0.946623,51.441043],[-0.947888,51.44109],[-0.948135,51.439288],[-0.946414,51.439164],[-0.946399,51.438142],[-0.943707,51.438439],[-0.943518,51.436155],[-0.943955,51.430077],[-0.943434,51.429292],[-0.946208,51.427099],[-0.949146,51.423808],[-0.951213,51.423158],[-0.957151,51.419858],[-0.956919,51.419477],[-0.96029,51.415081],[-0.959879,51.414276],[-0.962127,51.413938],[-0.961921,51.412349],[-0.96473,51.411759],[-0.970463,51.410253],[-0.9737,51.409781],[-0.973638,51.412549],[-0.978769,51.412481],[-0.979893,51.413026],[-0.979792,51.414556],[-0.980996,51.417211],[-0.983368,51.418859],[-0.981342,51.420624],[-0.984458,51.421338],[-0.984792,51.42198],[-0.987706,51.420796],[-0.991442,51.420473],[-0.99316,51.419462],[-0.996269,51.419594],[-0.996615,51.421672],[-0.998655,51.424821],[-1.001269,51.425679],[-1.001148,51.426382],[-1.002767,51.426067],[-0.999555,51.4249],[-1.000315,51.422431],[-0.999204,51.421927],[-0.999958,51.420175],[-0.998016,51.419463],[-0.998244,51.417498],[-0.997881,51.417034],[-1.000235,51.415784],[-1.001396,51.414326],[-1.000199,51.414292],[-0.999783,51.412667],[-0.999142,51.412251],[-1.00112,51.409345],[-1.003507,51.407913],[-1.003909,51.40633],[-1.003504,51.40513],[-1.004021,51.40377],[-1.009099,51.398825],[-1.009824,51.396567],[-1.011884,51.392867],[-1.007041,51.391437],[-1.001023,51.389026],[-0.996807,51.385967],[-0.992634,51.384036],[-0.99024,51.381524],[-0.985382,51.378581],[-0.983716,51.377159],[-0.984236,51.376732],[-0.9817,51.375627],[-0.983607,51.37335],[-0.983435,51.371441],[-0.985264,51.370689],[-0.987676,51.371062],[-0.989096,51.37044],[-0.990879,51.368534],[-0.990466,51.36795],[-0.991789,51.36667],[-0.991438,51.365154],[-0.990528,51.364008],[-0.988008,51.364413],[-0.986229,51.36368],[-0.986124,51.362848],[-0.985483,51.362026],[-0.987922,51.360717],[-0.98674,51.359856],[-0.982708,51.359822],[-0.977423,51.360639],[-0.975503,51.360168],[-0.972364,51.359938],[-0.952242,51.362734],[-0.94138,51.363898],[-0.939154,51.363172],[-0.93705,51.363884],[-0.936675,51.36598],[-0.935737,51.36546],[-0.931905,51.364544],[-0.930695,51.364445],[-0.928512,51.365255],[-0.926967,51.365171],[-0.925058,51.365911],[-0.923767,51.366011],[-0.918303,51.364907],[-0.917623,51.36358],[-0.91781,51.362229],[-0.915122,51.360786],[-0.910062,51.360931],[-0.908934,51.36016],[-0.903613,51.358129],[-0.901492,51.358984],[-0.899767,51.358989],[-0.897455,51.357914],[-0.897174,51.357282],[-0.895374,51.357178],[-0.892753,51.356342],[-0.889652,51.356902],[-0.888148,51.35629],[-0.885853,51.354693],[-0.884527,51.355546],[-0.883001,51.355566],[-0.881782,51.353827],[-0.879332,51.353916],[-0.879171,51.353158],[-0.877856,51.352591],[-0.873234,51.3523],[-0.871719,51.352703],[-0.868103,51.354744],[-0.865809,51.353854],[-0.864766,51.354267],[-0.859115,51.354191],[-0.85744,51.353846],[-0.854209,51.353896],[-0.853597,51.354253],[-0.851406,51.354033],[-0.85009,51.353054],[-0.847702,51.35253],[-0.845849,51.352708],[-0.844579,51.35224],[-0.841846,51.352082],[-0.841123,51.352734],[-0.837349,51.352871],[-0.834376,51.3545],[-0.83421,51.35539],[-0.832472,51.357848],[-0.829133,51.360973],[-0.828277,51.362816],[-0.826982,51.364016],[-0.814533,51.369533],[-0.813571,51.370318],[-0.80959,51.370908],[-0.78884,51.371751],[-0.793125,51.384608],[-0.795766,51.392354],[-0.797832,51.395653],[-0.798955,51.400135],[-0.801475,51.405095],[-0.801972,51.409063],[-0.798083,51.409185],[-0.794614,51.408555],[-0.792506,51.40885],[-0.793231,51.411394],[-0.795739,51.413226],[-0.796676,51.414459],[-0.798692,51.419529],[-0.798712,51.421421],[-0.797885,51.424691],[-0.798533,51.432828],[-0.798051,51.435726],[-0.79971,51.438947],[-0.80002,51.441182],[-0.806069,51.441378],[-0.80853,51.442552],[-0.812834,51.442424],[-0.818086,51.443191],[-0.826611,51.455446],[-0.828291,51.462044],[-0.833755,51.464099],[-0.830053,51.464511],[-0.825179,51.465671],[-0.824626,51.470067],[-0.821784,51.472602],[-0.82199,51.474119],[-0.823688,51.475949],[-0.824155,51.477904],[-0.826207,51.479796],[-0.826703,51.481498],[-0.826399,51.482506],[-0.82817,51.48423],[-0.829357,51.487198],[-0.829149,51.487828],[-0.827159,51.48948],[-0.825296,51.491978],[-0.822146,51.494269],[-0.82094,51.497177],[-0.819989,51.497112],[-0.819729,51.495767],[-0.817067,51.496432],[-0.818741,51.498019],[-0.817092,51.502847],[-0.81766,51.506748],[-0.81739,51.507238],[-0.818824,51.508914],[-0.822021,51.510648],[-0.824057,51.512479],[-0.828319,51.512379],[-0.833952,51.512942],[-0.836186,51.512751],[-0.839265,51.515875],[-0.847641,51.522249],[-0.850073,51.524484],[-0.853908,51.526073],[-0.852293,51.529476],[-0.850466,51.530692],[-0.849535,51.531827],[-0.846925,51.533051],[-0.845955,51.53458],[-0.846193,51.535989],[-0.843117,51.541832],[-0.842744,51.544759]]]},"properties":{"LAD22CD":"E06000041","LAD22NM":"Wokingham","BNG_E":476624,"BNG_N":169902,"LONG":-0.89935,"LAT":51.42296,"GlobalID":"405a87e7-9662-4872-b5d9-a9f8deddb30a"},"id":39}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.668136,52.195034],[-0.673425,52.196067],[-0.675256,52.195804],[-0.680023,52.196141],[-0.681236,52.195724],[-0.684654,52.196336],[-0.68663,52.195814],[-0.69408,52.195266],[-0.696339,52.194304],[-0.701672,52.193308],[-0.705456,52.191571],[-0.705044,52.190787],[-0.708662,52.188791],[-0.711619,52.188187],[-0.716028,52.185441],[-0.719008,52.182565],[-0.720738,52.181902],[-0.725489,52.180876],[-0.72926,52.179473],[-0.734731,52.1735],[-0.737431,52.173668],[-0.738751,52.172236],[-0.73895,52.171178],[-0.742539,52.170955],[-0.744795,52.17028],[-0.746066,52.168872],[-0.749735,52.166877],[-0.750657,52.167639],[-0.756811,52.16745],[-0.759848,52.165704],[-0.760977,52.164007],[-0.762048,52.163446],[-0.762747,52.16498],[-0.762717,52.166312],[-0.764141,52.167799],[-0.765332,52.171099],[-0.77359,52.168888],[-0.777975,52.168732],[-0.779515,52.16559],[-0.783194,52.165925],[-0.783096,52.164188],[-0.780313,52.163357],[-0.783413,52.160276],[-0.784187,52.158676],[-0.786403,52.156536],[-0.787715,52.154241],[-0.79047,52.152101],[-0.792091,52.151329],[-0.793563,52.152283],[-0.794097,52.154047],[-0.796853,52.153404],[-0.798917,52.155368],[-0.799708,52.157064],[-0.801957,52.158679],[-0.802673,52.15755],[-0.805553,52.157375],[-0.807588,52.156979],[-0.806948,52.15282],[-0.807247,52.151594],[-0.80928,52.150013],[-0.809183,52.148492],[-0.810697,52.147646],[-0.812807,52.14571],[-0.812685,52.144352],[-0.813552,52.143773],[-0.814041,52.142472],[-0.816545,52.143525],[-0.831967,52.143683],[-0.831363,52.141294],[-0.828632,52.135697],[-0.828205,52.132611],[-0.832111,52.131253],[-0.835768,52.132843],[-0.838229,52.130714],[-0.846739,52.12941],[-0.851265,52.129344],[-0.85294,52.130338],[-0.853529,52.131674],[-0.865993,52.130165],[-0.868637,52.130089],[-0.868984,52.130626],[-0.878864,52.126139],[-0.880721,52.126332],[-0.880615,52.125402],[-0.879654,52.124178],[-0.880816,52.12349],[-0.880022,52.122373],[-0.880767,52.12175],[-0.880683,52.120191],[-0.88179,52.119854],[-0.881957,52.118191],[-0.883705,52.116569],[-0.886263,52.11564],[-0.887303,52.11453],[-0.885676,52.113382],[-0.883676,52.11357],[-0.88153,52.11267],[-0.880378,52.113047],[-0.878461,52.11251],[-0.876501,52.112944],[-0.875262,52.112204],[-0.872966,52.112665],[-0.869804,52.110456],[-0.868618,52.108441],[-0.870243,52.107748],[-0.86902,52.107071],[-0.869794,52.106427],[-0.869863,52.105097],[-0.86527,52.102938],[-0.866022,52.101952],[-0.868777,52.101089],[-0.868624,52.099633],[-0.864846,52.099256],[-0.863522,52.098404],[-0.861329,52.09785],[-0.860293,52.09801],[-0.857918,52.097508],[-0.856375,52.095046],[-0.856034,52.093109],[-0.851681,52.092038],[-0.850079,52.092415],[-0.846713,52.091509],[-0.846785,52.090787],[-0.845929,52.089032],[-0.845096,52.08644],[-0.843711,52.085706],[-0.843805,52.084899],[-0.841292,52.084089],[-0.839207,52.082835],[-0.837443,52.082293],[-0.83678,52.080593],[-0.835249,52.07981],[-0.835246,52.077621],[-0.83603,52.076814],[-0.836026,52.075063],[-0.834937,52.074326],[-0.834071,52.072746],[-0.832535,52.072045],[-0.832793,52.069316],[-0.834193,52.068316],[-0.835588,52.066419],[-0.839501,52.063828],[-0.842759,52.063134],[-0.845233,52.062973],[-0.85064,52.064683],[-0.855241,52.063972],[-0.857359,52.064091],[-0.85927,52.063158],[-0.862679,52.060934],[-0.863017,52.060272],[-0.860626,52.058718],[-0.85987,52.056226],[-0.860973,52.055449],[-0.860403,52.054525],[-0.858,52.053225],[-0.855629,52.053175],[-0.853284,52.052248],[-0.852445,52.050841],[-0.852901,52.049997],[-0.855705,52.047949],[-0.855586,52.04735],[-0.857883,52.046026],[-0.859423,52.044602],[-0.862595,52.045261],[-0.863231,52.046019],[-0.864793,52.045784],[-0.865707,52.046683],[-0.867734,52.046221],[-0.869704,52.04483],[-0.87179,52.041846],[-0.871326,52.040252],[-0.869509,52.040387],[-0.866951,52.040098],[-0.867091,52.038616],[-0.861145,52.03575],[-0.859112,52.034428],[-0.858014,52.033041],[-0.855911,52.031662],[-0.856888,52.03056],[-0.851879,52.028013],[-0.852349,52.027445],[-0.849509,52.026004],[-0.847453,52.025574],[-0.846972,52.024634],[-0.844878,52.022682],[-0.839131,52.021166],[-0.835321,52.018869],[-0.831814,52.018142],[-0.829174,52.016033],[-0.827208,52.01521],[-0.824933,52.014828],[-0.819818,52.012286],[-0.819301,52.011664],[-0.819338,52.007318],[-0.817997,52.006072],[-0.816329,52.005434],[-0.813797,52.005532],[-0.812243,52.006016],[-0.807789,51.999918],[-0.806293,51.995749],[-0.804512,51.98616],[-0.803504,51.985504],[-0.799474,51.986969],[-0.794118,51.987126],[-0.78924,51.987948],[-0.782824,51.98852],[-0.776278,51.988625],[-0.771206,51.982912],[-0.761997,51.985558],[-0.757806,51.983007],[-0.755436,51.980648],[-0.748193,51.977015],[-0.743647,51.975247],[-0.747555,51.973557],[-0.740379,51.969863],[-0.73308,51.971944],[-0.73047,51.97235],[-0.729757,51.973017],[-0.723729,51.975288],[-0.713942,51.97787],[-0.712734,51.978904],[-0.71449,51.980999],[-0.717093,51.981485],[-0.71787,51.982416],[-0.715229,51.984948],[-0.715488,51.985608],[-0.713817,51.987719],[-0.713384,51.989816],[-0.70932,51.988343],[-0.703751,51.988023],[-0.701571,51.986962],[-0.701569,51.985482],[-0.700031,51.985413],[-0.700041,51.984414],[-0.69615,51.982206],[-0.693136,51.982454],[-0.687959,51.980634],[-0.682237,51.979602],[-0.67825,51.978182],[-0.677326,51.976722],[-0.670791,51.976568],[-0.670449,51.977898],[-0.66864,51.977647],[-0.666048,51.976064],[-0.652979,51.969229],[-0.652236,51.970337],[-0.649857,51.971269],[-0.647472,51.971585],[-0.645681,51.972228],[-0.648077,51.974405],[-0.649077,51.976216],[-0.651289,51.977617],[-0.656173,51.982026],[-0.655792,51.98377],[-0.656285,51.984361],[-0.655102,51.985175],[-0.655971,51.986738],[-0.655465,51.9882],[-0.657791,51.989816],[-0.660626,51.9908],[-0.659324,51.993043],[-0.660119,51.994682],[-0.66024,51.996691],[-0.66169,51.999736],[-0.659385,52.000037],[-0.658753,52.001737],[-0.656616,52.003983],[-0.656285,52.005394],[-0.650657,52.00967],[-0.649413,52.010265],[-0.645352,52.010324],[-0.643477,52.010855],[-0.6451,52.013647],[-0.648343,52.015206],[-0.649115,52.014847],[-0.65063,52.016997],[-0.651024,52.018486],[-0.64752,52.019001],[-0.645852,52.021684],[-0.640329,52.023661],[-0.641488,52.024764],[-0.640832,52.025318],[-0.643012,52.025898],[-0.643164,52.026832],[-0.642536,52.028089],[-0.643894,52.028269],[-0.642248,52.030294],[-0.644816,52.031218],[-0.643405,52.032559],[-0.643264,52.034662],[-0.643871,52.035535],[-0.643053,52.037253],[-0.668976,52.048717],[-0.667644,52.050395],[-0.665762,52.051568],[-0.663327,52.052529],[-0.662131,52.054351],[-0.661242,52.053958],[-0.659133,52.056963],[-0.658052,52.056776],[-0.656852,52.058006],[-0.654383,52.059496],[-0.653417,52.06174],[-0.651008,52.064144],[-0.648328,52.065803],[-0.643701,52.066673],[-0.641584,52.067721],[-0.638586,52.071698],[-0.638537,52.073126],[-0.636447,52.077088],[-0.635367,52.078183],[-0.632426,52.079749],[-0.631358,52.080975],[-0.62816,52.082144],[-0.62582,52.084457],[-0.623384,52.083742],[-0.621156,52.084342],[-0.618581,52.085616],[-0.616506,52.088218],[-0.615173,52.088947],[-0.611209,52.09011],[-0.609711,52.091041],[-0.608396,52.09114],[-0.605791,52.092119],[-0.607274,52.094561],[-0.605979,52.095482],[-0.604531,52.095824],[-0.603959,52.099124],[-0.602536,52.100135],[-0.598106,52.101034],[-0.596751,52.101685],[-0.601872,52.105027],[-0.600353,52.106142],[-0.59862,52.106875],[-0.597137,52.108567],[-0.593252,52.110487],[-0.591811,52.110692],[-0.593055,52.112264],[-0.595731,52.113578],[-0.59783,52.115613],[-0.598017,52.116516],[-0.597159,52.117458],[-0.596927,52.119222],[-0.597808,52.121951],[-0.59901,52.123595],[-0.598912,52.125731],[-0.602122,52.128932],[-0.604016,52.130231],[-0.60725,52.133869],[-0.614151,52.133897],[-0.617631,52.133045],[-0.619284,52.133066],[-0.622886,52.134302],[-0.627141,52.135283],[-0.62893,52.136937],[-0.630124,52.137407],[-0.634623,52.137972],[-0.635452,52.139254],[-0.635598,52.141203],[-0.634362,52.142392],[-0.636391,52.143772],[-0.637923,52.146129],[-0.636033,52.14751],[-0.640782,52.152772],[-0.635411,52.153225],[-0.630671,52.154924],[-0.629605,52.159519],[-0.630135,52.161927],[-0.631302,52.164058],[-0.633555,52.166156],[-0.63449,52.166573],[-0.634907,52.168133],[-0.633265,52.170133],[-0.631173,52.171824],[-0.628255,52.172536],[-0.627723,52.17619],[-0.629317,52.178714],[-0.627447,52.181545],[-0.630293,52.181781],[-0.63951,52.183435],[-0.639779,52.184507],[-0.63914,52.186688],[-0.640858,52.187167],[-0.64316,52.188845],[-0.651,52.189965],[-0.655584,52.1896],[-0.657448,52.189775],[-0.659336,52.191026],[-0.661307,52.191774],[-0.665991,52.192731],[-0.667945,52.194073],[-0.668136,52.195034]]]},"properties":{"LAD22CD":"E06000042","LAD22NM":"Milton Keynes","BNG_E":486408,"BNG_N":242308,"LONG":-0.7407,"LAT":52.07241,"GlobalID":"97509eab-2564-4381-be36-960afac47beb"},"id":40}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.13501,50.886634],[-0.137141,50.884579],[-0.142406,50.88429],[-0.142095,50.885818],[-0.144612,50.88698],[-0.152526,50.885444],[-0.153176,50.884902],[-0.152973,50.879862],[-0.155459,50.879777],[-0.159437,50.8803],[-0.161661,50.880965],[-0.168126,50.880748],[-0.168466,50.881914],[-0.167631,50.884802],[-0.168173,50.885587],[-0.165865,50.892332],[-0.168612,50.892368],[-0.169333,50.889933],[-0.177814,50.890472],[-0.180783,50.888352],[-0.182423,50.888325],[-0.181303,50.88365],[-0.181861,50.880905],[-0.185073,50.876585],[-0.186271,50.875674],[-0.187725,50.875586],[-0.189748,50.874416],[-0.187735,50.86857],[-0.189219,50.869028],[-0.194371,50.869645],[-0.197354,50.869551],[-0.198988,50.870121],[-0.200921,50.874914],[-0.202637,50.875857],[-0.205402,50.870087],[-0.209257,50.870505],[-0.213882,50.870465],[-0.214147,50.875179],[-0.224555,50.876292],[-0.224647,50.877239],[-0.225523,50.878068],[-0.22672,50.878181],[-0.232671,50.875939],[-0.23382,50.875158],[-0.237551,50.87179],[-0.238754,50.869719],[-0.239238,50.867886],[-0.239798,50.866048],[-0.240576,50.865202],[-0.244971,50.863809],[-0.244717,50.863435],[-0.241505,50.862876],[-0.239753,50.861952],[-0.238994,50.858722],[-0.236382,50.857522],[-0.235383,50.852412],[-0.234334,50.85111],[-0.230616,50.848318],[-0.229325,50.845734],[-0.228404,50.845634],[-0.227645,50.844406],[-0.225966,50.842931],[-0.222906,50.839089],[-0.217571,50.832917],[-0.216666,50.832962],[-0.216585,50.830682],[-0.215295,50.830369],[-0.216046,50.827585],[-0.208437,50.826688],[-0.205175,50.82616],[-0.203829,50.826497],[-0.191739,50.825569],[-0.174768,50.823818],[-0.172186,50.823763],[-0.16687,50.823133],[-0.156973,50.8218],[-0.139315,50.818534],[-0.13703,50.818511],[-0.13607,50.818835],[-0.123932,50.81638],[-0.113137,50.814119],[-0.107542,50.81272],[-0.10781,50.811577],[-0.104491,50.811289],[-0.103712,50.812217],[-0.094078,50.810699],[-0.09208,50.811779],[-0.088065,50.810931],[-0.086895,50.810337],[-0.085483,50.810266],[-0.079927,50.808484],[-0.073603,50.806889],[-0.070418,50.805879],[-0.064822,50.804387],[-0.05919,50.802325],[-0.05738,50.802065],[-0.056434,50.801476],[-0.050045,50.801533],[-0.045108,50.800535],[-0.043714,50.799744],[-0.042332,50.800067],[-0.038577,50.799083],[-0.037097,50.800928],[-0.034391,50.802464],[-0.031766,50.804546],[-0.028199,50.808284],[-0.020624,50.812889],[-0.016003,50.814875],[-0.016586,50.816274],[-0.019303,50.819649],[-0.020429,50.82183],[-0.02634,50.818017],[-0.030229,50.817349],[-0.031003,50.817415],[-0.03327,50.8188],[-0.039685,50.82153],[-0.042162,50.821456],[-0.045969,50.821825],[-0.045115,50.8234],[-0.042458,50.824253],[-0.039104,50.828633],[-0.038856,50.834676],[-0.038076,50.836413],[-0.038992,50.837872],[-0.036232,50.83958],[-0.036843,50.841239],[-0.042591,50.842723],[-0.043457,50.844285],[-0.045586,50.844968],[-0.048825,50.844385],[-0.053589,50.844288],[-0.058361,50.842879],[-0.060354,50.841968],[-0.062621,50.841527],[-0.073442,50.841245],[-0.072389,50.844042],[-0.070779,50.845819],[-0.072498,50.848331],[-0.078832,50.853805],[-0.080015,50.860932],[-0.08167,50.860687],[-0.082804,50.863072],[-0.083236,50.863173],[-0.084134,50.86692],[-0.082873,50.867453],[-0.08464,50.868983],[-0.086102,50.871073],[-0.084928,50.87312],[-0.09436,50.876781],[-0.094801,50.876538],[-0.097519,50.877945],[-0.098476,50.8775],[-0.097963,50.876542],[-0.104463,50.874604],[-0.103495,50.872774],[-0.104915,50.872343],[-0.111361,50.873155],[-0.115313,50.874228],[-0.1218,50.873428],[-0.122234,50.876123],[-0.1243,50.876186],[-0.12421,50.877975],[-0.127042,50.878151],[-0.129503,50.878724],[-0.135284,50.878105],[-0.135824,50.880749],[-0.135538,50.885141],[-0.13501,50.886634]]]},"properties":{"LAD22CD":"E06000043","LAD22NM":"Brighton and Hove","BNG_E":530279,"BNG_N":106850,"LONG":-0.15079,"LAT":50.8465,"GlobalID":"c2d0de07-a6ce-45ca-936e-e376dd6a66dc"},"id":41}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.09638,50.814149],[-1.093851,50.815028],[-1.09261,50.815111],[-1.094284,50.819246],[-1.095526,50.820427],[-1.096497,50.820638],[-1.09871,50.819817],[-1.099683,50.818058],[-1.100173,50.81554],[-1.101165,50.814767],[-1.101475,50.813592],[-1.09638,50.814149]]],[[[-1.052181,50.832774],[-1.054808,50.833441],[-1.058103,50.83483],[-1.06142,50.835573],[-1.06675,50.836196],[-1.071163,50.836373],[-1.071461,50.836687],[-1.076284,50.836904],[-1.078387,50.836108],[-1.078852,50.832966],[-1.080351,50.832114],[-1.081229,50.830949],[-1.083489,50.830096],[-1.083839,50.829159],[-1.083298,50.8278],[-1.083922,50.825422],[-1.084469,50.82482],[-1.086052,50.82501],[-1.086141,50.826025],[-1.088291,50.826688],[-1.089969,50.826395],[-1.091959,50.827726],[-1.093284,50.82802],[-1.094777,50.827042],[-1.100223,50.826687],[-1.099577,50.824856],[-1.096891,50.822834],[-1.093861,50.823111],[-1.092458,50.819365],[-1.090809,50.816782],[-1.091144,50.814732],[-1.09464,50.81224],[-1.094376,50.811182],[-1.091999,50.811201],[-1.090517,50.811641],[-1.091321,50.80904],[-1.094089,50.8085],[-1.094685,50.808845],[-1.104003,50.810469],[-1.106216,50.808853],[-1.10575,50.807368],[-1.103897,50.807314],[-1.103715,50.805729],[-1.106177,50.805965],[-1.106186,50.803963],[-1.107905,50.804],[-1.107733,50.80692],[-1.111521,50.806902],[-1.111736,50.801448],[-1.111244,50.798549],[-1.109005,50.799336],[-1.105875,50.797051],[-1.108832,50.796497],[-1.107163,50.794496],[-1.108365,50.793939],[-1.107805,50.792374],[-1.109324,50.792647],[-1.109707,50.791663],[-1.108924,50.790438],[-1.102215,50.786721],[-1.100741,50.785215],[-1.093965,50.780681],[-1.092475,50.779192],[-1.089542,50.777826],[-1.088086,50.777605],[-1.085312,50.778049],[-1.078695,50.778405],[-1.062265,50.780914],[-1.050267,50.783612],[-1.032026,50.78682],[-1.030438,50.787365],[-1.028863,50.78936],[-1.029518,50.7916],[-1.0293,50.794015],[-1.031627,50.79217],[-1.035686,50.790428],[-1.037143,50.791141],[-1.039794,50.790097],[-1.041753,50.78959],[-1.043786,50.78975],[-1.042467,50.791846],[-1.040221,50.79377],[-1.038363,50.794601],[-1.03817,50.795961],[-1.04186,50.804309],[-1.042205,50.807011],[-1.040513,50.810715],[-1.040693,50.811676],[-1.042441,50.813896],[-1.04235,50.816945],[-1.043024,50.818728],[-1.0412,50.822605],[-1.041934,50.823718],[-1.041272,50.824282],[-1.042175,50.825806],[-1.044622,50.826273],[-1.044187,50.831646],[-1.044887,50.83088],[-1.047581,50.831761],[-1.048623,50.832407],[-1.052181,50.832774]]],[[[-1.054075,50.856538],[-1.054346,50.855087],[-1.062186,50.855452],[-1.062129,50.857638],[-1.065188,50.857635],[-1.066186,50.858474],[-1.067839,50.858183],[-1.070983,50.8587],[-1.071403,50.85653],[-1.075528,50.856378],[-1.084231,50.857225],[-1.094062,50.8593],[-1.099155,50.858861],[-1.099882,50.857153],[-1.113011,50.858335],[-1.115848,50.858272],[-1.115924,50.854754],[-1.116824,50.854515],[-1.116725,50.851523],[-1.117631,50.851485],[-1.117705,50.844439],[-1.117006,50.843036],[-1.116573,50.843844],[-1.114631,50.843917],[-1.112972,50.843148],[-1.112407,50.844177],[-1.114097,50.844709],[-1.114721,50.845501],[-1.113769,50.846795],[-1.105605,50.846788],[-1.10299,50.846219],[-1.102525,50.845827],[-1.106391,50.839124],[-1.106307,50.837894],[-1.099288,50.83449],[-1.094716,50.831264],[-1.089462,50.830715],[-1.089779,50.828992],[-1.087975,50.828648],[-1.087219,50.830675],[-1.081688,50.835862],[-1.080411,50.836674],[-1.078408,50.837271],[-1.074704,50.837256],[-1.074262,50.836946],[-1.071029,50.836902],[-1.061781,50.835955],[-1.058518,50.835262],[-1.05429,50.833886],[-1.051937,50.833473],[-1.044426,50.834057],[-1.043406,50.833771],[-1.041154,50.834467],[-1.038734,50.834634],[-1.036311,50.835426],[-1.034891,50.829359],[-1.031656,50.82878],[-1.03012,50.827385],[-1.027906,50.827627],[-1.027514,50.826813],[-1.024092,50.826377],[-1.02456,50.827058],[-1.02299,50.830353],[-1.024586,50.831672],[-1.023972,50.833092],[-1.023125,50.833877],[-1.022184,50.835099],[-1.022165,50.836618],[-1.020908,50.838612],[-1.020637,50.83904],[-1.020634,50.839073],[-1.022352,50.841815],[-1.023441,50.846048],[-1.024821,50.845947],[-1.025138,50.847721],[-1.02385,50.847923],[-1.02452,50.84979],[-1.02252,50.850383],[-1.022629,50.852073],[-1.023105,50.852773],[-1.037544,50.852944],[-1.046971,50.853926],[-1.046796,50.855056],[-1.049768,50.85527],[-1.052248,50.856514],[-1.054075,50.856538]]]]},"properties":{"LAD22CD":"E06000044","LAD22NM":"Portsmouth","BNG_E":465619,"BNG_N":101352,"LONG":-1.07006,"LAT":50.808,"GlobalID":"e24c5f8e-3ca8-4973-8771-510829bd8a3b"},"id":42}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.379892,50.947518],[-1.381554,50.946069],[-1.385215,50.946073],[-1.387645,50.946382],[-1.389822,50.945939],[-1.390832,50.946535],[-1.391288,50.948111],[-1.392862,50.949382],[-1.398105,50.949456],[-1.400129,50.950486],[-1.401357,50.95039],[-1.403919,50.952353],[-1.403405,50.954201],[-1.402532,50.955247],[-1.404687,50.955276],[-1.40614,50.956127],[-1.406495,50.954716],[-1.409247,50.951714],[-1.409611,50.949759],[-1.411926,50.950367],[-1.414267,50.949337],[-1.415128,50.950836],[-1.416366,50.950846],[-1.417184,50.95173],[-1.421038,50.951677],[-1.42195,50.950946],[-1.423784,50.94723],[-1.429771,50.94737],[-1.434617,50.948929],[-1.435717,50.948992],[-1.439654,50.948318],[-1.441294,50.947056],[-1.446607,50.948259],[-1.449261,50.948995],[-1.449546,50.949911],[-1.451773,50.949131],[-1.44996,50.947178],[-1.451008,50.944327],[-1.452436,50.943596],[-1.455956,50.946068],[-1.459424,50.943197],[-1.46366,50.939933],[-1.465115,50.937942],[-1.464847,50.936012],[-1.464109,50.935106],[-1.466211,50.934709],[-1.47015,50.931587],[-1.471561,50.931615],[-1.471875,50.930021],[-1.47436,50.929516],[-1.474121,50.92894],[-1.476996,50.928853],[-1.475527,50.928201],[-1.477326,50.92527],[-1.476523,50.923291],[-1.475037,50.922378],[-1.474028,50.920372],[-1.471603,50.918099],[-1.471189,50.918153],[-1.466763,50.910938],[-1.450936,50.904066],[-1.447056,50.903792],[-1.442795,50.908267],[-1.441139,50.907861],[-1.443224,50.91104],[-1.442471,50.911031],[-1.440758,50.908298],[-1.439757,50.908219],[-1.410858,50.898637],[-1.41135,50.897916],[-1.407066,50.896407],[-1.403496,50.895556],[-1.401842,50.892662],[-1.400884,50.892537],[-1.401361,50.89115],[-1.400778,50.890295],[-1.399021,50.894568],[-1.397963,50.893025],[-1.399041,50.888706],[-1.395309,50.883125],[-1.393254,50.883029],[-1.392868,50.887339],[-1.393582,50.888259],[-1.394646,50.888393],[-1.396653,50.890233],[-1.396407,50.892549],[-1.393441,50.891177],[-1.393463,50.888987],[-1.392677,50.888427],[-1.389862,50.892985],[-1.388389,50.894191],[-1.392696,50.894293],[-1.392486,50.895962],[-1.391111,50.896731],[-1.388437,50.896674],[-1.387184,50.89743],[-1.387116,50.899836],[-1.387844,50.901125],[-1.389906,50.901643],[-1.389114,50.902359],[-1.388288,50.905079],[-1.38707,50.90677],[-1.382857,50.909031],[-1.377729,50.910155],[-1.37811,50.912459],[-1.379982,50.912761],[-1.380975,50.913401],[-1.386783,50.913683],[-1.389577,50.915053],[-1.390993,50.916185],[-1.3902,50.91822],[-1.389175,50.919153],[-1.387316,50.919822],[-1.387105,50.920486],[-1.384049,50.921157],[-1.383668,50.920851],[-1.381194,50.921887],[-1.380018,50.922699],[-1.379399,50.924549],[-1.380954,50.926853],[-1.381326,50.929341],[-1.380455,50.930798],[-1.380929,50.932457],[-1.379651,50.933622],[-1.378799,50.933139],[-1.380216,50.932092],[-1.37919,50.931388],[-1.379139,50.930508],[-1.380154,50.929311],[-1.379795,50.927595],[-1.377201,50.924221],[-1.377384,50.923103],[-1.376914,50.921848],[-1.378548,50.920727],[-1.382693,50.91913],[-1.38706,50.918138],[-1.387662,50.916933],[-1.38514,50.915395],[-1.384029,50.916409],[-1.381343,50.916173],[-1.377695,50.914839],[-1.3778,50.916547],[-1.375233,50.915595],[-1.373018,50.914006],[-1.371704,50.91196],[-1.372031,50.910689],[-1.373118,50.909812],[-1.376965,50.908124],[-1.38136,50.90663],[-1.382421,50.906495],[-1.383984,50.903999],[-1.384939,50.903437],[-1.383591,50.901143],[-1.382871,50.897808],[-1.384062,50.894327],[-1.384308,50.892421],[-1.384102,50.89068],[-1.383183,50.889495],[-1.378885,50.887407],[-1.375873,50.886797],[-1.371227,50.885054],[-1.368485,50.88326],[-1.364952,50.879915],[-1.363616,50.881278],[-1.362695,50.881658],[-1.360136,50.884195],[-1.358238,50.885168],[-1.354934,50.88569],[-1.35103,50.886829],[-1.349385,50.888589],[-1.346943,50.889424],[-1.343325,50.891362],[-1.341583,50.894156],[-1.336144,50.895323],[-1.335093,50.896292],[-1.335048,50.897365],[-1.321978,50.900953],[-1.324024,50.90441],[-1.327876,50.904453],[-1.327704,50.905548],[-1.32872,50.90667],[-1.32464,50.908435],[-1.329043,50.913307],[-1.329006,50.914362],[-1.329822,50.915614],[-1.332689,50.918458],[-1.333357,50.919883],[-1.33531,50.920999],[-1.336635,50.920487],[-1.338499,50.921484],[-1.337733,50.922475],[-1.339489,50.923713],[-1.344505,50.922849],[-1.347749,50.924754],[-1.350133,50.925794],[-1.351138,50.926666],[-1.353133,50.926155],[-1.354907,50.928774],[-1.357934,50.930731],[-1.356965,50.93285],[-1.352771,50.935357],[-1.354577,50.936857],[-1.356628,50.937686],[-1.358998,50.937957],[-1.356953,50.939469],[-1.354569,50.940544],[-1.35469,50.941022],[-1.366918,50.946868],[-1.369819,50.947082],[-1.370973,50.946052],[-1.376818,50.947211],[-1.379892,50.947518]]]},"properties":{"LAD22CD":"E06000045","LAD22NM":"Southampton","BNG_E":442303,"BNG_N":113700,"LONG":-1.39952,"LAT":50.9212,"GlobalID":"a1f6a54c-c1bc-47a4-a780-8031029e4894"},"id":43}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.308164,50.76719],[-1.313869,50.767327],[-1.320173,50.765323],[-1.322848,50.763643],[-1.323961,50.762537],[-1.324661,50.760723],[-1.328073,50.757927],[-1.3329,50.756398],[-1.33485,50.755491],[-1.337744,50.755259],[-1.340597,50.753326],[-1.342538,50.752602],[-1.345211,50.750495],[-1.345045,50.748673],[-1.347272,50.743409],[-1.348581,50.741919],[-1.349874,50.741051],[-1.351265,50.740716],[-1.353297,50.73909],[-1.358991,50.738122],[-1.363896,50.737898],[-1.36551,50.737186],[-1.36981,50.73611],[-1.379238,50.734175],[-1.380589,50.733032],[-1.381851,50.732556],[-1.389385,50.731694],[-1.391857,50.73048],[-1.397421,50.728708],[-1.402539,50.727853],[-1.404068,50.726666],[-1.403005,50.726383],[-1.401317,50.727336],[-1.400292,50.72657],[-1.398387,50.726679],[-1.396876,50.726293],[-1.397361,50.724881],[-1.399469,50.725391],[-1.399261,50.724085],[-1.393751,50.723238],[-1.389872,50.723453],[-1.388616,50.723181],[-1.38769,50.722354],[-1.389803,50.721801],[-1.390247,50.720364],[-1.392912,50.719056],[-1.392803,50.717742],[-1.390129,50.717543],[-1.389355,50.716653],[-1.380377,50.717124],[-1.379568,50.716307],[-1.382681,50.716345],[-1.38444,50.715448],[-1.386733,50.715583],[-1.38722,50.716177],[-1.389613,50.716113],[-1.394955,50.716977],[-1.399064,50.717204],[-1.400442,50.717673],[-1.402553,50.717517],[-1.405339,50.717791],[-1.406729,50.717145],[-1.407943,50.718484],[-1.409382,50.717835],[-1.409876,50.716615],[-1.409337,50.715093],[-1.407048,50.714422],[-1.406107,50.713614],[-1.403465,50.712531],[-1.404376,50.712156],[-1.409661,50.713586],[-1.411903,50.714477],[-1.412381,50.713986],[-1.41172,50.711525],[-1.413006,50.710173],[-1.413085,50.708178],[-1.413757,50.70724],[-1.414445,50.710659],[-1.414191,50.711934],[-1.412975,50.713222],[-1.414437,50.713488],[-1.414797,50.714353],[-1.416878,50.712362],[-1.420585,50.711764],[-1.424997,50.709237],[-1.426342,50.709162],[-1.425168,50.710739],[-1.423012,50.71149],[-1.42246,50.712375],[-1.420513,50.712772],[-1.418819,50.712702],[-1.417369,50.713103],[-1.41742,50.713912],[-1.416238,50.714625],[-1.415502,50.716903],[-1.413952,50.71759],[-1.412986,50.718624],[-1.413951,50.719364],[-1.41584,50.719565],[-1.418229,50.71886],[-1.418118,50.720187],[-1.416343,50.720181],[-1.412911,50.721216],[-1.414291,50.722653],[-1.417556,50.723129],[-1.419285,50.723605],[-1.421356,50.72488],[-1.416144,50.724412],[-1.413872,50.72394],[-1.413342,50.724631],[-1.425681,50.726757],[-1.429119,50.726026],[-1.430594,50.725169],[-1.434443,50.723913],[-1.440711,50.722546],[-1.445946,50.719732],[-1.449144,50.719217],[-1.450337,50.718407],[-1.452784,50.71744],[-1.45661,50.716338],[-1.459712,50.7142],[-1.469464,50.709556],[-1.470824,50.709396],[-1.472358,50.70977],[-1.474736,50.708809],[-1.476393,50.708905],[-1.479133,50.708541],[-1.486898,50.706682],[-1.500141,50.706796],[-1.501151,50.705676],[-1.503518,50.705116],[-1.500258,50.703033],[-1.498343,50.703335],[-1.49676,50.702719],[-1.496585,50.700935],[-1.498992,50.701665],[-1.50135,50.700967],[-1.500668,50.699814],[-1.49883,50.699146],[-1.49883,50.697286],[-1.50312,50.694794],[-1.505641,50.693617],[-1.503803,50.691522],[-1.504133,50.690557],[-1.503064,50.690013],[-1.502875,50.687882],[-1.502359,50.686313],[-1.505156,50.685046],[-1.507041,50.683103],[-1.508794,50.683353],[-1.507324,50.685505],[-1.504708,50.685685],[-1.503224,50.686691],[-1.504504,50.688563],[-1.503994,50.689549],[-1.505088,50.69056],[-1.504928,50.691673],[-1.506464,50.693365],[-1.505723,50.694257],[-1.501943,50.69617],[-1.499835,50.697954],[-1.502042,50.699757],[-1.502876,50.703033],[-1.504461,50.701795],[-1.506125,50.702704],[-1.506184,50.704508],[-1.508867,50.705106],[-1.509671,50.705815],[-1.5154,50.706986],[-1.522125,50.707109],[-1.526799,50.704337],[-1.529864,50.703462],[-1.533419,50.700675],[-1.534485,50.70071],[-1.533893,50.697529],[-1.533334,50.697003],[-1.5341,50.693514],[-1.535408,50.691677],[-1.538243,50.689586],[-1.539476,50.689136],[-1.54179,50.688913],[-1.543133,50.687685],[-1.542996,50.686847],[-1.544746,50.682197],[-1.546916,50.679348],[-1.549098,50.677801],[-1.551088,50.677327],[-1.553529,50.677277],[-1.557421,50.676174],[-1.560477,50.67614],[-1.56306,50.675631],[-1.566429,50.674593],[-1.567418,50.673927],[-1.569623,50.673397],[-1.570241,50.672466],[-1.568982,50.666959],[-1.569608,50.665386],[-1.576659,50.663757],[-1.577167,50.663905],[-1.586543,50.663125],[-1.579037,50.661092],[-1.578902,50.660148],[-1.572049,50.660671],[-1.569659,50.66124],[-1.569137,50.661005],[-1.566182,50.662083],[-1.561449,50.663098],[-1.554862,50.663146],[-1.548713,50.663619],[-1.53988,50.665735],[-1.532426,50.666792],[-1.528662,50.667039],[-1.527144,50.667577],[-1.52351,50.667941],[-1.514616,50.66821],[-1.513483,50.668376],[-1.512879,50.669341],[-1.511036,50.670003],[-1.509019,50.669805],[-1.507384,50.668845],[-1.505718,50.668325],[-1.493633,50.668392],[-1.485183,50.666948],[-1.482688,50.666002],[-1.476748,50.662443],[-1.467902,50.655811],[-1.464749,50.652465],[-1.461254,50.652042],[-1.457834,50.650792],[-1.452674,50.646413],[-1.447148,50.643462],[-1.442596,50.642226],[-1.432724,50.640283],[-1.425544,50.637816],[-1.418636,50.636294],[-1.410054,50.634867],[-1.406905,50.633756],[-1.39737,50.629314],[-1.390422,50.627585],[-1.382606,50.623656],[-1.37486,50.618794],[-1.371035,50.616787],[-1.365715,50.613292],[-1.363669,50.611047],[-1.361966,50.60996],[-1.355557,50.608857],[-1.352979,50.608089],[-1.339481,50.601799],[-1.324575,50.5928],[-1.318643,50.589932],[-1.308554,50.580571],[-1.308599,50.578641],[-1.30794,50.577433],[-1.304653,50.577121],[-1.304072,50.576169],[-1.302454,50.575567],[-1.299026,50.575014],[-1.295117,50.574927],[-1.291607,50.575497],[-1.287974,50.576515],[-1.286202,50.577598],[-1.280755,50.577058],[-1.277786,50.578632],[-1.274229,50.579056],[-1.271402,50.579744],[-1.269002,50.57958],[-1.264073,50.579887],[-1.263313,50.580149],[-1.259811,50.57939],[-1.254977,50.580065],[-1.251887,50.581118],[-1.249885,50.580882],[-1.247115,50.582238],[-1.244678,50.582168],[-1.24194,50.582797],[-1.240062,50.584257],[-1.236421,50.585382],[-1.235404,50.586071],[-1.233445,50.58608],[-1.231622,50.586906],[-1.229861,50.586918],[-1.225309,50.588567],[-1.222643,50.58856],[-1.2211,50.589483],[-1.215914,50.591182],[-1.213392,50.591584],[-1.209953,50.593054],[-1.204159,50.59302],[-1.202038,50.592725],[-1.198862,50.593867],[-1.197822,50.593861],[-1.196004,50.595102],[-1.194628,50.595182],[-1.19014,50.596397],[-1.187314,50.596741],[-1.1854,50.597245],[-1.183631,50.598392],[-1.182606,50.598395],[-1.179269,50.600928],[-1.175264,50.606893],[-1.175553,50.608405],[-1.177134,50.610544],[-1.175656,50.612396],[-1.1731,50.614391],[-1.172546,50.615432],[-1.1735,50.61946],[-1.174601,50.62086],[-1.174789,50.622683],[-1.173531,50.626333],[-1.171498,50.629768],[-1.170972,50.631431],[-1.169053,50.633317],[-1.170014,50.634182],[-1.168628,50.635949],[-1.16901,50.636864],[-1.168504,50.640352],[-1.166045,50.643974],[-1.160451,50.649339],[-1.151897,50.654362],[-1.14302,50.658535],[-1.137644,50.660617],[-1.132597,50.662103],[-1.124316,50.66402],[-1.114592,50.665595],[-1.111772,50.665778],[-1.103209,50.664967],[-1.098545,50.664969],[-1.097032,50.665933],[-1.095354,50.667599],[-1.096983,50.668019],[-1.097604,50.668741],[-1.097145,50.669943],[-1.095349,50.671606],[-1.09196,50.673241],[-1.08769,50.674594],[-1.086257,50.675773],[-1.085392,50.677253],[-1.077126,50.680656],[-1.073501,50.681372],[-1.070129,50.683521],[-1.069598,50.685949],[-1.070673,50.687928],[-1.077359,50.692064],[-1.079133,50.692672],[-1.082422,50.694457],[-1.093564,50.695779],[-1.094685,50.694754],[-1.093025,50.693717],[-1.093554,50.692991],[-1.096484,50.690985],[-1.09848,50.690428],[-1.102389,50.692395],[-1.108292,50.693503],[-1.106107,50.697205],[-1.102187,50.699651],[-1.101719,50.698492],[-1.102928,50.697953],[-1.100952,50.69641],[-1.100772,50.695454],[-1.098469,50.694662],[-1.096143,50.694231],[-1.097913,50.696491],[-1.0991,50.701342],[-1.098085,50.702788],[-1.097945,50.706155],[-1.100535,50.706458],[-1.101514,50.707258],[-1.103191,50.712431],[-1.105205,50.71307],[-1.10614,50.713932],[-1.106958,50.717128],[-1.10794,50.718198],[-1.108237,50.720117],[-1.109708,50.721563],[-1.11138,50.721937],[-1.114434,50.721973],[-1.11827,50.723206],[-1.120222,50.723263],[-1.130503,50.726811],[-1.13473,50.726701],[-1.13685,50.727044],[-1.143754,50.729043],[-1.148059,50.730958],[-1.150185,50.731338],[-1.15224,50.732616],[-1.153604,50.732904],[-1.153485,50.731632],[-1.155136,50.732046],[-1.155254,50.73291],[-1.157455,50.733546],[-1.160168,50.733152],[-1.162793,50.733534],[-1.1645,50.732831],[-1.168706,50.733024],[-1.178961,50.734184],[-1.181452,50.733322],[-1.18376,50.733],[-1.186449,50.733497],[-1.192512,50.732737],[-1.19711,50.733644],[-1.202079,50.733955],[-1.204299,50.73457],[-1.210971,50.73503],[-1.212613,50.733997],[-1.215937,50.733895],[-1.217348,50.73433],[-1.217424,50.732049],[-1.218251,50.730831],[-1.223006,50.727975],[-1.224231,50.727607],[-1.22482,50.72678],[-1.224727,50.725076],[-1.226667,50.726799],[-1.226345,50.727505],[-1.222588,50.730612],[-1.222282,50.731171],[-1.220327,50.731922],[-1.219668,50.733233],[-1.219845,50.734373],[-1.21752,50.735938],[-1.215758,50.735604],[-1.214136,50.736717],[-1.213953,50.738037],[-1.215954,50.738645],[-1.220322,50.738993],[-1.230916,50.742876],[-1.234915,50.743276],[-1.23767,50.743051],[-1.240492,50.740859],[-1.240745,50.739726],[-1.241847,50.738639],[-1.242286,50.741417],[-1.241314,50.742298],[-1.240214,50.742066],[-1.2387,50.742494],[-1.240209,50.743393],[-1.241836,50.746053],[-1.246402,50.749567],[-1.247318,50.751464],[-1.248738,50.752365],[-1.255283,50.753922],[-1.256616,50.755069],[-1.258578,50.757379],[-1.259744,50.759267],[-1.261197,50.760487],[-1.264711,50.761874],[-1.267028,50.763441],[-1.271457,50.765509],[-1.273928,50.76605],[-1.277336,50.766303],[-1.288348,50.76299],[-1.289302,50.761088],[-1.290563,50.760494],[-1.290199,50.759842],[-1.290844,50.757695],[-1.29098,50.755363],[-1.290456,50.754363],[-1.291137,50.753182],[-1.290443,50.750013],[-1.288799,50.747727],[-1.289287,50.746891],[-1.288175,50.745464],[-1.286256,50.743866],[-1.286259,50.740518],[-1.285599,50.740041],[-1.284323,50.738015],[-1.282282,50.736845],[-1.282147,50.736057],[-1.280715,50.733138],[-1.27716,50.731519],[-1.278509,50.726082],[-1.280154,50.724978],[-1.281047,50.723835],[-1.282378,50.722982],[-1.28475,50.718629],[-1.284934,50.717361],[-1.28581,50.716089],[-1.285603,50.714916],[-1.286661,50.714523],[-1.287437,50.713022],[-1.289122,50.708381],[-1.29104,50.706786],[-1.291278,50.705903],[-1.290325,50.703417],[-1.290874,50.703301],[-1.292239,50.705478],[-1.291993,50.707103],[-1.289694,50.710662],[-1.289982,50.711383],[-1.289261,50.71352],[-1.28958,50.714979],[-1.288311,50.71581],[-1.287471,50.717252],[-1.286926,50.719343],[-1.28483,50.722366],[-1.284647,50.724413],[-1.2835,50.726442],[-1.28366,50.727101],[-1.285225,50.727473],[-1.283587,50.728308],[-1.283792,50.730786],[-1.285635,50.733911],[-1.287604,50.736514],[-1.290142,50.738544],[-1.289557,50.739657],[-1.289358,50.74165],[-1.290153,50.743816],[-1.291542,50.745946],[-1.292855,50.746154],[-1.292333,50.747314],[-1.293564,50.750677],[-1.294499,50.753842],[-1.292932,50.756224],[-1.292273,50.75806],[-1.292739,50.758963],[-1.294058,50.759801],[-1.295499,50.760049],[-1.29652,50.762663],[-1.297146,50.762866],[-1.297974,50.764853],[-1.299437,50.766015],[-1.30159,50.766696],[-1.308164,50.76719]]]},"properties":{"LAD22CD":"E06000046","LAD22NM":"Isle of Wight","BNG_E":447183,"BNG_N":85949,"LONG":-1.33366,"LAT":50.67129,"GlobalID":"11463889-2674-4993-ae06-ea7e5726eca8"},"id":44}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.559411,54.882037],[-1.562011,54.88084],[-1.568071,54.880472],[-1.57148,54.879372],[-1.575912,54.878954],[-1.575877,54.878298],[-1.57991,54.87777],[-1.582716,54.888835],[-1.584041,54.89165],[-1.58397,54.892821],[-1.586293,54.894163],[-1.588194,54.894457],[-1.588536,54.895467],[-1.589707,54.896237],[-1.591821,54.899794],[-1.593649,54.900859],[-1.594165,54.902019],[-1.597703,54.901583],[-1.600711,54.899841],[-1.600948,54.898725],[-1.605164,54.898222],[-1.607102,54.898407],[-1.606894,54.897077],[-1.610261,54.895346],[-1.611915,54.895287],[-1.61649,54.891077],[-1.618319,54.890134],[-1.618985,54.888715],[-1.618744,54.887059],[-1.621201,54.887476],[-1.622261,54.886715],[-1.623572,54.887368],[-1.627411,54.886447],[-1.629083,54.88476],[-1.631116,54.884833],[-1.631536,54.883996],[-1.634973,54.88254],[-1.636599,54.881019],[-1.639195,54.88069],[-1.639973,54.8798],[-1.64369,54.878804],[-1.64543,54.878811],[-1.64901,54.879559],[-1.650982,54.879667],[-1.650655,54.880744],[-1.64762,54.880951],[-1.646346,54.881395],[-1.646719,54.882728],[-1.647753,54.884162],[-1.64798,54.885485],[-1.646593,54.885591],[-1.646621,54.888396],[-1.647349,54.888602],[-1.64848,54.891736],[-1.650012,54.893626],[-1.65351,54.893006],[-1.655854,54.892143],[-1.656497,54.890765],[-1.659951,54.890664],[-1.659308,54.893168],[-1.66138,54.894275],[-1.663045,54.895943],[-1.665559,54.895211],[-1.669232,54.895651],[-1.675255,54.897942],[-1.67659,54.899103],[-1.678134,54.899845],[-1.677974,54.901775],[-1.676844,54.903437],[-1.674778,54.90956],[-1.676353,54.909422],[-1.681951,54.907797],[-1.683477,54.908539],[-1.687655,54.907917],[-1.68955,54.906517],[-1.689158,54.905761],[-1.690769,54.904614],[-1.690573,54.902666],[-1.693391,54.903222],[-1.693998,54.904118],[-1.695657,54.904727],[-1.69757,54.906234],[-1.6967,54.906643],[-1.698487,54.908067],[-1.698765,54.908872],[-1.700578,54.909286],[-1.710389,54.909137],[-1.713297,54.908829],[-1.716416,54.907751],[-1.717018,54.908436],[-1.719206,54.908009],[-1.721204,54.908239],[-1.72306,54.910133],[-1.724908,54.9088],[-1.725862,54.909714],[-1.727636,54.910399],[-1.728032,54.911504],[-1.727713,54.912783],[-1.730985,54.916436],[-1.734161,54.918169],[-1.737591,54.9187],[-1.739626,54.916839],[-1.742403,54.917375],[-1.746218,54.916508],[-1.748312,54.91767],[-1.750572,54.91742],[-1.751861,54.91654],[-1.755432,54.912657],[-1.757086,54.911576],[-1.759875,54.910791],[-1.76022,54.90907],[-1.76207,54.908304],[-1.765359,54.908555],[-1.766396,54.909563],[-1.768245,54.908923],[-1.768108,54.906921],[-1.769252,54.906715],[-1.772703,54.907855],[-1.776419,54.909972],[-1.781757,54.911543],[-1.782464,54.910037],[-1.785813,54.909119],[-1.791109,54.908737],[-1.791106,54.908018],[-1.794009,54.905187],[-1.794101,54.903949],[-1.796222,54.9037],[-1.798826,54.905664],[-1.800073,54.9061],[-1.80277,54.904582],[-1.804617,54.904556],[-1.805759,54.905227],[-1.805806,54.906245],[-1.807384,54.907249],[-1.810496,54.906649],[-1.814817,54.90534],[-1.81665,54.905348],[-1.819256,54.90592],[-1.820641,54.905778],[-1.821498,54.905433],[-1.825255,54.905793],[-1.827697,54.905494],[-1.830513,54.901599],[-1.834687,54.899026],[-1.839119,54.897314],[-1.843564,54.897242],[-1.845449,54.896903],[-1.845875,54.896075],[-1.844507,54.892698],[-1.845638,54.891044],[-1.847475,54.889782],[-1.848621,54.889767],[-1.854029,54.891319],[-1.855079,54.890291],[-1.85516,54.889042],[-1.851345,54.886331],[-1.850964,54.884689],[-1.852347,54.884255],[-1.85227,54.883089],[-1.853265,54.880205],[-1.857766,54.879353],[-1.860049,54.878034],[-1.859909,54.87271],[-1.860829,54.871145],[-1.859779,54.869205],[-1.861278,54.866431],[-1.864939,54.864386],[-1.866454,54.86407],[-1.869671,54.861558],[-1.869725,54.860304],[-1.870559,54.859556],[-1.868724,54.857677],[-1.867414,54.856907],[-1.866601,54.855386],[-1.866901,54.85388],[-1.869472,54.852822],[-1.869459,54.85188],[-1.87041,54.850673],[-1.877017,54.84811],[-1.87798,54.847146],[-1.881382,54.846591],[-1.881856,54.846816],[-1.884537,54.845769],[-1.887564,54.843604],[-1.889443,54.843989],[-1.894055,54.843676],[-1.895999,54.845835],[-1.898368,54.845162],[-1.898222,54.8441],[-1.899353,54.84292],[-1.9044,54.842171],[-1.906037,54.841449],[-1.907152,54.840312],[-1.908739,54.839493],[-1.910048,54.839359],[-1.913051,54.839811],[-1.914073,54.839503],[-1.914821,54.837922],[-1.911319,54.837475],[-1.91168,54.836033],[-1.913682,54.835769],[-1.913037,54.834832],[-1.913535,54.834044],[-1.915433,54.833963],[-1.917692,54.834916],[-1.917001,54.836761],[-1.920051,54.837427],[-1.920869,54.838],[-1.918366,54.83938],[-1.918113,54.840751],[-1.919885,54.840939],[-1.923967,54.840163],[-1.927134,54.841166],[-1.925593,54.842156],[-1.920987,54.842452],[-1.920634,54.844105],[-1.9218,54.845971],[-1.921377,54.848442],[-1.922633,54.84987],[-1.926167,54.84884],[-1.931815,54.850834],[-1.930669,54.851794],[-1.93129,54.853454],[-1.932734,54.854193],[-1.935108,54.853873],[-1.933014,54.85271],[-1.93577,54.851997],[-1.939137,54.851773],[-1.940423,54.852912],[-1.944348,54.852267],[-1.947432,54.85351],[-1.949342,54.852988],[-1.952444,54.854252],[-1.953841,54.855153],[-1.959412,54.856158],[-1.962775,54.85778],[-1.964202,54.859439],[-1.967833,54.859473],[-1.970822,54.860566],[-1.972465,54.860243],[-1.97279,54.861092],[-1.974508,54.861677],[-1.973201,54.86244],[-1.972226,54.862013],[-1.970693,54.863489],[-1.973456,54.865282],[-1.977772,54.866707],[-1.980237,54.868183],[-1.982788,54.868618],[-1.986447,54.868255],[-1.9882,54.869373],[-1.990364,54.870036],[-1.995362,54.870039],[-2.000048,54.869295],[-2.001419,54.868563],[-2.004236,54.86811],[-2.006001,54.868556],[-2.008303,54.867813],[-2.008923,54.867218],[-2.011769,54.866711],[-2.012383,54.865569],[-2.012075,54.864474],[-2.014177,54.863957],[-2.014458,54.863449],[-2.01683,54.862562],[-2.019031,54.862405],[-2.023137,54.858571],[-2.025184,54.85899],[-2.027353,54.857902],[-2.027514,54.856374],[-2.030223,54.8548],[-2.033046,54.854177],[-2.036001,54.852777],[-2.035972,54.851161],[-2.038227,54.849725],[-2.039657,54.848241],[-2.043479,54.84825],[-2.045275,54.847797],[-2.047718,54.847885],[-2.049637,54.847517],[-2.052925,54.847433],[-2.054866,54.847023],[-2.057249,54.846019],[-2.059252,54.845814],[-2.061526,54.844618],[-2.066003,54.844168],[-2.068045,54.844777],[-2.06851,54.843485],[-2.070097,54.843036],[-2.074226,54.840737],[-2.07635,54.840262],[-2.077397,54.839541],[-2.081234,54.839258],[-2.082575,54.838169],[-2.087251,54.837905],[-2.088522,54.837099],[-2.090448,54.837701],[-2.092157,54.837516],[-2.093563,54.836865],[-2.097451,54.83678],[-2.099082,54.837409],[-2.100196,54.837146],[-2.101466,54.837708],[-2.102865,54.839841],[-2.104889,54.839914],[-2.108669,54.840698],[-2.111522,54.840036],[-2.113968,54.840334],[-2.116353,54.841222],[-2.118298,54.840883],[-2.119826,54.841326],[-2.120766,54.840813],[-2.124949,54.84166],[-2.128645,54.841849],[-2.129153,54.842499],[-2.131007,54.842704],[-2.133437,54.842137],[-2.134818,54.842852],[-2.138162,54.842369],[-2.139789,54.841871],[-2.139087,54.838407],[-2.13974,54.834481],[-2.14147,54.8332],[-2.141831,54.831869],[-2.143442,54.830089],[-2.143131,54.826959],[-2.151292,54.822815],[-2.157161,54.820476],[-2.16087,54.818533],[-2.164265,54.815828],[-2.16635,54.813889],[-2.16947,54.80361],[-2.171675,54.804035],[-2.173852,54.806027],[-2.177416,54.806821],[-2.182297,54.807171],[-2.186831,54.80625],[-2.198601,54.806736],[-2.19931,54.805717],[-2.198624,54.804555],[-2.201521,54.799927],[-2.203797,54.797799],[-2.206859,54.793958],[-2.209402,54.792243],[-2.212438,54.78813],[-2.214462,54.786667],[-2.215057,54.783853],[-2.218907,54.782377],[-2.219537,54.782997],[-2.226698,54.782951],[-2.234064,54.784165],[-2.235521,54.786797],[-2.248663,54.78796],[-2.251294,54.789776],[-2.256283,54.791193],[-2.260583,54.791533],[-2.260211,54.792582],[-2.263176,54.79251],[-2.266912,54.794744],[-2.268726,54.794567],[-2.272198,54.795751],[-2.27709,54.796249],[-2.280671,54.797979],[-2.282678,54.798252],[-2.28598,54.796873],[-2.286081,54.79623],[-2.290095,54.795935],[-2.292986,54.793165],[-2.29554,54.793582],[-2.29877,54.793001],[-2.300555,54.793329],[-2.302559,54.792333],[-2.305152,54.792212],[-2.305873,54.791782],[-2.30794,54.79213],[-2.308801,54.790879],[-2.31209,54.791015],[-2.313671,54.790218],[-2.312991,54.787337],[-2.31401,54.785173],[-2.313,54.782586],[-2.313924,54.781113],[-2.311677,54.778071],[-2.311682,54.77542],[-2.308929,54.774491],[-2.308487,54.773543],[-2.310018,54.772661],[-2.309905,54.771906],[-2.314669,54.770358],[-2.31757,54.768743],[-2.317557,54.76811],[-2.320906,54.765675],[-2.322479,54.763971],[-2.323224,54.7598],[-2.322231,54.759422],[-2.322433,54.757805],[-2.321128,54.756659],[-2.320823,54.755004],[-2.322591,54.753303],[-2.322814,54.75207],[-2.326927,54.747297],[-2.326712,54.745418],[-2.327596,54.743283],[-2.3264,54.740983],[-2.32746,54.740162],[-2.327883,54.739063],[-2.326892,54.737906],[-2.328587,54.737011],[-2.329455,54.735682],[-2.330928,54.735161],[-2.331919,54.733457],[-2.331948,54.731283],[-2.330636,54.730345],[-2.330665,54.728992],[-2.32961,54.727553],[-2.325747,54.726629],[-2.330213,54.723128],[-2.334419,54.720492],[-2.33757,54.719561],[-2.337454,54.717254],[-2.339044,54.716563],[-2.34139,54.716668],[-2.342208,54.715529],[-2.341388,54.714812],[-2.341965,54.713937],[-2.341706,54.712469],[-2.342252,54.711567],[-2.34115,54.710619],[-2.344086,54.709878],[-2.345033,54.709176],[-2.344015,54.707684],[-2.342546,54.707059],[-2.34146,54.705998],[-2.342772,54.705193],[-2.343379,54.703302],[-2.344382,54.701772],[-2.346364,54.700862],[-2.349563,54.701179],[-2.352257,54.699941],[-2.353465,54.69794],[-2.355489,54.69792],[-2.353928,54.695874],[-2.352258,54.694487],[-2.352518,54.69376],[-2.354169,54.692876],[-2.353904,54.691426],[-2.351173,54.690719],[-2.350483,54.69003],[-2.351783,54.687466],[-2.351594,54.685736],[-2.350204,54.685411],[-2.349078,54.683963],[-2.346796,54.68394],[-2.343509,54.682218],[-2.341665,54.678852],[-2.339864,54.678133],[-2.335617,54.675328],[-2.330516,54.674567],[-2.329263,54.6747],[-2.327107,54.673667],[-2.326414,54.672694],[-2.327779,54.671636],[-2.32757,54.670873],[-2.325018,54.670168],[-2.3225,54.669017],[-2.318985,54.669431],[-2.316364,54.668765],[-2.313438,54.669344],[-2.308356,54.669507],[-2.306154,54.670155],[-2.303317,54.66963],[-2.302753,54.669063],[-2.303835,54.667505],[-2.302216,54.666251],[-2.2982,54.665518],[-2.292875,54.663885],[-2.292767,54.661164],[-2.291344,54.658362],[-2.292097,54.655867],[-2.289973,54.654978],[-2.289314,54.651649],[-2.287979,54.65048],[-2.292901,54.64985],[-2.294091,54.649389],[-2.296812,54.646819],[-2.29897,54.645624],[-2.300045,54.644581],[-2.302191,54.643713],[-2.30286,54.642782],[-2.305788,54.642762],[-2.306925,54.642275],[-2.309083,54.639715],[-2.311146,54.637627],[-2.314185,54.637014],[-2.317064,54.635415],[-2.319975,54.634441],[-2.323814,54.632],[-2.324938,54.63165],[-2.308758,54.611883],[-2.304515,54.596198],[-2.270937,54.582199],[-2.262282,54.574229],[-2.245962,54.565063],[-2.209488,54.551713],[-2.210143,54.543658],[-2.197531,54.532704],[-2.182286,54.535855],[-2.172398,54.532444],[-2.171172,54.529003],[-2.174025,54.524409],[-2.174493,54.521727],[-2.168705,54.519652],[-2.162394,54.503943],[-2.16647,54.489908],[-2.158997,54.47203],[-2.161697,54.464732],[-2.170213,54.458199],[-2.167327,54.457704],[-2.164792,54.456523],[-2.159873,54.456511],[-2.159268,54.455483],[-2.155373,54.457008],[-2.150121,54.459963],[-2.14149,54.460928],[-2.138887,54.461653],[-2.13605,54.46145],[-2.126563,54.462101],[-2.12301,54.461521],[-2.116596,54.462263],[-2.114305,54.464194],[-2.108591,54.464375],[-2.101799,54.465359],[-2.094753,54.467298],[-2.086397,54.468393],[-2.081625,54.469874],[-2.075741,54.473137],[-2.071174,54.474264],[-2.069919,54.475664],[-2.067705,54.477051],[-2.063176,54.478881],[-2.063104,54.479612],[-2.061289,54.480558],[-2.059207,54.481155],[-2.053073,54.480714],[-2.050467,54.481405],[-2.048613,54.482592],[-2.043199,54.483599],[-2.04473,54.475186],[-2.036958,54.474295],[-2.029568,54.472955],[-2.014646,54.471557],[-1.996765,54.466903],[-1.98654,54.46156],[-1.98554,54.459925],[-1.980051,54.460215],[-1.976125,54.459729],[-1.971111,54.454814],[-1.971752,54.453965],[-1.97006,54.451522],[-1.968442,54.451808],[-1.965971,54.451617],[-1.960503,54.452163],[-1.958515,54.452988],[-1.956556,54.453248],[-1.955424,54.45386],[-1.953782,54.453461],[-1.95162,54.45344],[-1.949231,54.454269],[-1.946996,54.454306],[-1.942543,54.453395],[-1.934025,54.45732],[-1.928326,54.456493],[-1.913183,54.461995],[-1.89343,54.466898],[-1.88547,54.472902],[-1.877603,54.47805],[-1.867255,54.482117],[-1.85913,54.481858],[-1.85853,54.482786],[-1.860831,54.486377],[-1.860045,54.487047],[-1.859217,54.489083],[-1.859316,54.492639],[-1.857719,54.493659],[-1.858603,54.496646],[-1.85867,54.499028],[-1.857801,54.50354],[-1.855373,54.503514],[-1.852768,54.503987],[-1.850977,54.503566],[-1.848217,54.503663],[-1.845974,54.504716],[-1.844283,54.505105],[-1.839433,54.508437],[-1.836473,54.508022],[-1.832302,54.505172],[-1.831564,54.503651],[-1.831854,54.502648],[-1.827787,54.502929],[-1.827227,54.501363],[-1.826449,54.500669],[-1.824388,54.500154],[-1.82455,54.497896],[-1.822719,54.496363],[-1.822444,54.495178],[-1.820277,54.49427],[-1.817519,54.493639],[-1.813078,54.491411],[-1.802734,54.487837],[-1.801569,54.487677],[-1.792977,54.484492],[-1.79109,54.489429],[-1.789022,54.491793],[-1.790268,54.492895],[-1.786887,54.498891],[-1.787177,54.501039],[-1.785057,54.501386],[-1.785133,54.502802],[-1.783935,54.503376],[-1.783912,54.505035],[-1.782488,54.505804],[-1.782175,54.507013],[-1.777879,54.506405],[-1.776132,54.506728],[-1.77759,54.515683],[-1.777351,54.519377],[-1.776351,54.51911],[-1.776859,54.525361],[-1.781559,54.526834],[-1.780323,54.528817],[-1.779697,54.531873],[-1.773291,54.532824],[-1.769724,54.532845],[-1.767205,54.532286],[-1.764608,54.529828],[-1.761214,54.528952],[-1.754015,54.52865],[-1.751742,54.530173],[-1.750832,54.529631],[-1.747537,54.529291],[-1.743135,54.529761],[-1.739,54.528438],[-1.733092,54.527736],[-1.732559,54.529459],[-1.731366,54.530682],[-1.727305,54.530485],[-1.724799,54.535996],[-1.724478,54.537774],[-1.722831,54.539695],[-1.722857,54.540979],[-1.723885,54.541593],[-1.721311,54.542302],[-1.719419,54.542239],[-1.71788,54.540957],[-1.714666,54.53949],[-1.705215,54.536897],[-1.696927,54.536006],[-1.698519,54.540802],[-1.698741,54.543301],[-1.69834,54.544209],[-1.700871,54.544352],[-1.703771,54.544936],[-1.704522,54.54627],[-1.7046,54.548378],[-1.705274,54.549172],[-1.703934,54.550717],[-1.701165,54.549906],[-1.699394,54.552043],[-1.701206,54.552949],[-1.700486,54.554062],[-1.699147,54.554073],[-1.697563,54.555712],[-1.693997,54.55529],[-1.691328,54.555312],[-1.691207,54.556245],[-1.694694,54.556638],[-1.696588,54.557817],[-1.698735,54.558206],[-1.701795,54.558263],[-1.703311,54.558696],[-1.70588,54.560627],[-1.705554,54.561846],[-1.707438,54.563161],[-1.709282,54.563179],[-1.709667,54.565815],[-1.708028,54.567903],[-1.708255,54.569064],[-1.70448,54.572162],[-1.705468,54.573766],[-1.708985,54.574142],[-1.705695,54.578348],[-1.704072,54.578082],[-1.703077,54.579854],[-1.702848,54.581573],[-1.70017,54.582249],[-1.700033,54.584176],[-1.699043,54.584566],[-1.693865,54.585094],[-1.694028,54.586894],[-1.683911,54.585955],[-1.679312,54.585973],[-1.68061,54.597833],[-1.680658,54.606329],[-1.68198,54.608119],[-1.681056,54.608766],[-1.682422,54.617771],[-1.678747,54.617831],[-1.672903,54.617438],[-1.672195,54.617085],[-1.663188,54.615536],[-1.662283,54.615857],[-1.65704,54.615473],[-1.653227,54.616955],[-1.651774,54.616903],[-1.649741,54.617957],[-1.641629,54.619366],[-1.640777,54.617401],[-1.638001,54.617204],[-1.637672,54.616704],[-1.63324,54.616128],[-1.631501,54.616132],[-1.631396,54.618457],[-1.623861,54.618623],[-1.623886,54.618926],[-1.618506,54.619168],[-1.616829,54.618804],[-1.614046,54.618811],[-1.613687,54.617958],[-1.612126,54.618127],[-1.610318,54.617443],[-1.606764,54.61754],[-1.606561,54.614729],[-1.605777,54.6146],[-1.605251,54.612449],[-1.606945,54.612477],[-1.605662,54.60673],[-1.608439,54.605334],[-1.607727,54.60427],[-1.606218,54.60344],[-1.605235,54.604772],[-1.603965,54.605597],[-1.600489,54.606652],[-1.597577,54.608017],[-1.586528,54.610422],[-1.584193,54.610486],[-1.583771,54.607504],[-1.584073,54.607268],[-1.590653,54.605582],[-1.592949,54.604549],[-1.591366,54.599654],[-1.589876,54.597749],[-1.590368,54.594957],[-1.593409,54.595077],[-1.590861,54.590214],[-1.582865,54.589475],[-1.585163,54.588213],[-1.5851,54.584048],[-1.584367,54.582061],[-1.583374,54.580948],[-1.581506,54.58192],[-1.57886,54.582126],[-1.577031,54.581377],[-1.576266,54.580198],[-1.571457,54.580733],[-1.569809,54.581238],[-1.566636,54.580627],[-1.56468,54.580812],[-1.561835,54.58177],[-1.56131,54.58223],[-1.555668,54.581718],[-1.552824,54.582342],[-1.553159,54.583402],[-1.554625,54.583317],[-1.558005,54.585454],[-1.560209,54.586251],[-1.562262,54.585971],[-1.562557,54.587076],[-1.56173,54.588512],[-1.561683,54.589639],[-1.560819,54.590284],[-1.558194,54.590875],[-1.558645,54.592117],[-1.556534,54.591514],[-1.552505,54.591318],[-1.548258,54.59173],[-1.541889,54.593067],[-1.537522,54.594466],[-1.526403,54.596486],[-1.521952,54.596067],[-1.52177,54.596557],[-1.509949,54.594821],[-1.506467,54.596072],[-1.501497,54.595612],[-1.497318,54.595675],[-1.492443,54.597268],[-1.488172,54.599284],[-1.484688,54.599683],[-1.483412,54.599212],[-1.48074,54.599388],[-1.472128,54.598975],[-1.470394,54.600459],[-1.468688,54.600559],[-1.463592,54.599437],[-1.460248,54.596824],[-1.459169,54.597282],[-1.459049,54.598429],[-1.45608,54.599221],[-1.454143,54.594412],[-1.453312,54.594049],[-1.451706,54.590828],[-1.446859,54.591152],[-1.443401,54.590624],[-1.442405,54.59277],[-1.439636,54.593563],[-1.440003,54.594472],[-1.438356,54.59508],[-1.439585,54.595689],[-1.43976,54.59664],[-1.442192,54.597471],[-1.443186,54.598509],[-1.445167,54.599548],[-1.444131,54.60046],[-1.445495,54.602029],[-1.447264,54.603082],[-1.448675,54.603245],[-1.450786,54.604699],[-1.451333,54.606249],[-1.452641,54.607054],[-1.451952,54.607674],[-1.452219,54.608765],[-1.450946,54.609841],[-1.448522,54.610983],[-1.443427,54.610336],[-1.439827,54.611161],[-1.439286,54.612483],[-1.437101,54.613026],[-1.436653,54.614175],[-1.432591,54.613723],[-1.431462,54.614736],[-1.429971,54.615294],[-1.427961,54.614412],[-1.428394,54.613184],[-1.426703,54.612434],[-1.426128,54.611499],[-1.417967,54.614319],[-1.416949,54.615033],[-1.412823,54.616592],[-1.40981,54.618468],[-1.408085,54.620089],[-1.406452,54.620822],[-1.408188,54.622064],[-1.406647,54.62262],[-1.40478,54.624046],[-1.402875,54.622434],[-1.399158,54.624129],[-1.401599,54.626359],[-1.400436,54.627714],[-1.399129,54.626979],[-1.396748,54.628332],[-1.394235,54.628882],[-1.39551,54.631098],[-1.393381,54.631521],[-1.39312,54.632037],[-1.389508,54.631346],[-1.387198,54.63274],[-1.388524,54.633535],[-1.38897,54.634911],[-1.390803,54.636588],[-1.390102,54.637757],[-1.39043,54.63921],[-1.387704,54.640123],[-1.387688,54.641388],[-1.384527,54.643124],[-1.380899,54.643917],[-1.382695,54.644395],[-1.383764,54.646243],[-1.378905,54.64618],[-1.374514,54.646559],[-1.368967,54.647813],[-1.366526,54.64883],[-1.364881,54.648424],[-1.36267,54.649164],[-1.359305,54.649467],[-1.358036,54.648576],[-1.355838,54.648299],[-1.352727,54.64897],[-1.349798,54.648581],[-1.349897,54.650723],[-1.344043,54.650707],[-1.341223,54.650243],[-1.341895,54.652168],[-1.341502,54.65337],[-1.343524,54.655556],[-1.343145,54.657528],[-1.346321,54.659291],[-1.346425,54.661506],[-1.347852,54.662421],[-1.346644,54.663004],[-1.346047,54.664471],[-1.343529,54.66515],[-1.342271,54.666114],[-1.34353,54.668621],[-1.340714,54.668755],[-1.340202,54.669273],[-1.338088,54.669574],[-1.335708,54.671302],[-1.334324,54.671225],[-1.333039,54.672653],[-1.332393,54.675452],[-1.333457,54.677209],[-1.331918,54.677456],[-1.33185,54.681188],[-1.3309,54.681244],[-1.332129,54.686854],[-1.334441,54.689047],[-1.338673,54.68947],[-1.344658,54.690819],[-1.344476,54.691127],[-1.333024,54.692022],[-1.332189,54.6902],[-1.329825,54.689553],[-1.327555,54.691382],[-1.325982,54.691165],[-1.319495,54.691289],[-1.319387,54.693302],[-1.315377,54.694579],[-1.312696,54.695913],[-1.314246,54.697954],[-1.312835,54.698731],[-1.31385,54.701227],[-1.309352,54.701564],[-1.309316,54.702488],[-1.307782,54.702782],[-1.306232,54.703807],[-1.30412,54.704334],[-1.304217,54.705643],[-1.303215,54.70567],[-1.303811,54.707664],[-1.301327,54.708101],[-1.302019,54.709022],[-1.301561,54.710204],[-1.302739,54.711747],[-1.304137,54.712645],[-1.303625,54.713111],[-1.305518,54.715216],[-1.30462,54.716645],[-1.305521,54.717522],[-1.303672,54.718507],[-1.30178,54.718226],[-1.299319,54.719133],[-1.29491,54.71941],[-1.292194,54.718591],[-1.290298,54.718399],[-1.285534,54.720421],[-1.281216,54.72301],[-1.277939,54.723795],[-1.274906,54.725215],[-1.27251,54.725413],[-1.270252,54.727169],[-1.268225,54.726091],[-1.267405,54.726865],[-1.26471,54.725982],[-1.263223,54.726462],[-1.26058,54.72573],[-1.258562,54.726055],[-1.257445,54.725547],[-1.255414,54.721575],[-1.253736,54.720368],[-1.251865,54.719623],[-1.248766,54.720733],[-1.247614,54.72241],[-1.245797,54.722293],[-1.24402,54.721578],[-1.240965,54.723177],[-1.249116,54.727582],[-1.255512,54.732276],[-1.258431,54.735219],[-1.266388,54.740871],[-1.266975,54.741534],[-1.266447,54.743426],[-1.269683,54.745598],[-1.270532,54.746588],[-1.277407,54.750494],[-1.280505,54.753257],[-1.285279,54.755618],[-1.292274,54.760975],[-1.299568,54.768525],[-1.301504,54.770875],[-1.301758,54.77267],[-1.302694,54.77306],[-1.30407,54.774619],[-1.305033,54.776386],[-1.309614,54.781982],[-1.309697,54.783196],[-1.308441,54.786568],[-1.310781,54.790155],[-1.310615,54.792371],[-1.311658,54.794934],[-1.310247,54.798521],[-1.311681,54.801218],[-1.311444,54.802227],[-1.313016,54.809855],[-1.312632,54.811789],[-1.316608,54.816159],[-1.319747,54.821546],[-1.31972,54.824442],[-1.323093,54.82991],[-1.324846,54.831403],[-1.325815,54.833058],[-1.324569,54.834849],[-1.326175,54.837282],[-1.328887,54.837806],[-1.325725,54.838436],[-1.327464,54.839239],[-1.328597,54.838738],[-1.33065,54.839554],[-1.332056,54.841641],[-1.33387,54.842359],[-1.336036,54.844146],[-1.342123,54.850664],[-1.34546,54.854957],[-1.347285,54.858407],[-1.347565,54.860589],[-1.34944,54.860073],[-1.352357,54.860619],[-1.354078,54.860278],[-1.355787,54.858981],[-1.360181,54.857833],[-1.363928,54.858225],[-1.368866,54.857626],[-1.373817,54.853963],[-1.376733,54.851091],[-1.378569,54.849995],[-1.381664,54.84716],[-1.383919,54.848146],[-1.387158,54.846559],[-1.392536,54.845685],[-1.393412,54.846228],[-1.396463,54.845866],[-1.397294,54.846447],[-1.400005,54.846613],[-1.40475,54.845505],[-1.40751,54.845729],[-1.409187,54.845188],[-1.41358,54.844862],[-1.411911,54.843127],[-1.412007,54.841901],[-1.416704,54.840926],[-1.419181,54.839802],[-1.421537,54.839476],[-1.421608,54.838092],[-1.420703,54.833669],[-1.416496,54.830637],[-1.416051,54.82943],[-1.416822,54.828745],[-1.415509,54.82743],[-1.415666,54.826346],[-1.414214,54.825901],[-1.413125,54.824559],[-1.41326,54.822153],[-1.414369,54.821234],[-1.414374,54.819388],[-1.415839,54.818451],[-1.417849,54.818215],[-1.419218,54.814205],[-1.421725,54.813287],[-1.421563,54.812126],[-1.423894,54.80541],[-1.42268,54.804021],[-1.422548,54.803173],[-1.42433,54.803089],[-1.429326,54.801025],[-1.430229,54.801559],[-1.437531,54.800527],[-1.440708,54.799689],[-1.441312,54.800534],[-1.440256,54.801525],[-1.442877,54.801976],[-1.444022,54.80247],[-1.448267,54.801007],[-1.454602,54.800022],[-1.456033,54.800915],[-1.460175,54.801694],[-1.468028,54.800307],[-1.47235,54.799948],[-1.477878,54.800073],[-1.48005,54.799764],[-1.481906,54.799058],[-1.485093,54.799682],[-1.490727,54.799304],[-1.493509,54.799998],[-1.494331,54.80117],[-1.491099,54.804315],[-1.485024,54.808488],[-1.481856,54.809651],[-1.48433,54.810467],[-1.485338,54.811981],[-1.487504,54.812683],[-1.494306,54.816012],[-1.492301,54.817831],[-1.492394,54.818617],[-1.49029,54.820182],[-1.49374,54.823472],[-1.497509,54.822628],[-1.497813,54.823613],[-1.50428,54.83123],[-1.502892,54.834445],[-1.503319,54.83663],[-1.506223,54.846237],[-1.507055,54.847015],[-1.507802,54.851389],[-1.510271,54.860105],[-1.510311,54.863109],[-1.50959,54.866035],[-1.508316,54.868936],[-1.50667,54.871141],[-1.513813,54.874796],[-1.516667,54.874973],[-1.517154,54.875723],[-1.519208,54.87595],[-1.518417,54.872873],[-1.519023,54.872004],[-1.52427,54.871599],[-1.526629,54.871069],[-1.535147,54.865971],[-1.535393,54.866261],[-1.529314,54.8696],[-1.527175,54.871184],[-1.524435,54.871898],[-1.519135,54.872414],[-1.519959,54.876017],[-1.522913,54.876217],[-1.525641,54.877606],[-1.52737,54.87699],[-1.530013,54.877122],[-1.531782,54.878188],[-1.532853,54.877854],[-1.533375,54.87645],[-1.536154,54.874739],[-1.537481,54.874387],[-1.538959,54.875453],[-1.541569,54.873459],[-1.553164,54.875958],[-1.56181,54.875717],[-1.562428,54.87776],[-1.560366,54.879904],[-1.559411,54.882037]]]},"properties":{"LAD22CD":"E06000047","LAD22NM":"County Durham","BNG_E":410381,"BNG_N":532242,"LONG":-1.8405,"LAT":54.68513,"GlobalID":"8025fcdd-b7db-4425-95dc-469becd052d2"},"id":45}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.313998,53.357425],[-2.313941,53.358358],[-2.315196,53.359052],[-2.317952,53.359119],[-2.319855,53.358598],[-2.321266,53.359471],[-2.322722,53.359192],[-2.323424,53.358267],[-2.324399,53.36138],[-2.326538,53.361385],[-2.327939,53.360458],[-2.330921,53.361906],[-2.329596,53.363125],[-2.329897,53.363938],[-2.331756,53.363936],[-2.332905,53.365492],[-2.335145,53.365908],[-2.337226,53.366822],[-2.338591,53.366222],[-2.340084,53.367373],[-2.340952,53.367479],[-2.343693,53.366556],[-2.347763,53.367842],[-2.348074,53.366225],[-2.349006,53.365898],[-2.350975,53.366522],[-2.35208,53.368111],[-2.356587,53.368548],[-2.357337,53.368366],[-2.357083,53.366894],[-2.360108,53.36687],[-2.360416,53.3656],[-2.359275,53.364355],[-2.361923,53.364041],[-2.363307,53.364546],[-2.364006,53.363314],[-2.365027,53.363106],[-2.366911,53.364455],[-2.370368,53.364485],[-2.373353,53.365637],[-2.375657,53.365324],[-2.377949,53.366004],[-2.378171,53.366819],[-2.382239,53.370265],[-2.383413,53.369973],[-2.386381,53.3703],[-2.387125,53.371091],[-2.390279,53.370701],[-2.390637,53.371863],[-2.393047,53.372477],[-2.396165,53.374488],[-2.400698,53.375221],[-2.400865,53.376001],[-2.399458,53.376495],[-2.400095,53.377306],[-2.407121,53.379824],[-2.408485,53.382088],[-2.407895,53.382657],[-2.410597,53.383866],[-2.41262,53.384001],[-2.414434,53.384534],[-2.417146,53.384719],[-2.418563,53.386174],[-2.420346,53.386707],[-2.422447,53.386353],[-2.423274,53.387218],[-2.42659,53.387461],[-2.425381,53.386723],[-2.426827,53.384719],[-2.426219,53.384518],[-2.42647,53.382794],[-2.425507,53.379691],[-2.428724,53.376406],[-2.427489,53.375911],[-2.431277,53.37339],[-2.432778,53.374032],[-2.434603,53.372158],[-2.435549,53.372678],[-2.436483,53.370954],[-2.437739,53.370245],[-2.439663,53.370542],[-2.43988,53.366663],[-2.447158,53.365886],[-2.450457,53.366551],[-2.450923,53.367077],[-2.458842,53.368286],[-2.460953,53.364184],[-2.463239,53.364472],[-2.464996,53.363531],[-2.467086,53.363689],[-2.471713,53.364888],[-2.475041,53.366019],[-2.47718,53.366099],[-2.479084,53.367151],[-2.480726,53.367604],[-2.486021,53.367642],[-2.487235,53.366879],[-2.489647,53.366856],[-2.489783,53.365656],[-2.492101,53.364796],[-2.49283,53.362694],[-2.496594,53.361695],[-2.497695,53.360565],[-2.497824,53.359409],[-2.499694,53.359095],[-2.502752,53.357544],[-2.503094,53.356126],[-2.506985,53.355246],[-2.508897,53.353631],[-2.509902,53.353682],[-2.511177,53.352837],[-2.513096,53.352539],[-2.515461,53.349681],[-2.516695,53.348912],[-2.51956,53.347955],[-2.52105,53.3479],[-2.518393,53.34239],[-2.515989,53.342769],[-2.514076,53.342703],[-2.512427,53.342116],[-2.508453,53.342994],[-2.503347,53.342099],[-2.50161,53.343425],[-2.49708,53.344699],[-2.495642,53.344394],[-2.493968,53.343299],[-2.495049,53.341693],[-2.494353,53.340714],[-2.497883,53.337691],[-2.503154,53.331577],[-2.504456,53.326844],[-2.50968,53.324494],[-2.512278,53.321346],[-2.510953,53.320968],[-2.50675,53.318337],[-2.504276,53.314315],[-2.502909,53.313383],[-2.504921,53.312746],[-2.505685,53.311831],[-2.505219,53.309702],[-2.502688,53.306877],[-2.502602,53.305178],[-2.500917,53.304405],[-2.500657,53.301679],[-2.501696,53.298644],[-2.498252,53.299809],[-2.497591,53.299341],[-2.497054,53.296006],[-2.497778,53.294827],[-2.497491,53.293313],[-2.498137,53.291753],[-2.498006,53.289909],[-2.495649,53.290487],[-2.489698,53.290992],[-2.485077,53.290824],[-2.478922,53.289828],[-2.47199,53.287314],[-2.472426,53.28665],[-2.469999,53.285721],[-2.464457,53.287279],[-2.453171,53.284551],[-2.452307,53.283749],[-2.447998,53.281724],[-2.446891,53.280114],[-2.448581,53.278412],[-2.450483,53.278171],[-2.450081,53.277168],[-2.448837,53.276241],[-2.448254,53.275113],[-2.446837,53.274363],[-2.446488,53.272293],[-2.445222,53.272616],[-2.44409,53.270472],[-2.439615,53.269221],[-2.435459,53.269329],[-2.433669,53.268628],[-2.432566,53.266971],[-2.430866,53.265431],[-2.428523,53.264701],[-2.426411,53.263308],[-2.427219,53.261565],[-2.424877,53.261021],[-2.422885,53.260069],[-2.417179,53.264792],[-2.414796,53.264623],[-2.413973,53.266963],[-2.414677,53.267905],[-2.41245,53.267795],[-2.411574,53.268264],[-2.409311,53.268161],[-2.407643,53.267155],[-2.403537,53.266874],[-2.400002,53.265331],[-2.397222,53.2661],[-2.396696,53.266924],[-2.394115,53.266754],[-2.391436,53.265442],[-2.391784,53.26465],[-2.390345,53.264174],[-2.389412,53.265108],[-2.388249,53.264967],[-2.388234,53.261335],[-2.386221,53.261017],[-2.385566,53.262842],[-2.387442,53.262611],[-2.386862,53.264099],[-2.382953,53.262564],[-2.3793,53.263095],[-2.379314,53.260492],[-2.381609,53.259264],[-2.381538,53.25784],[-2.380568,53.25688],[-2.377266,53.255648],[-2.375761,53.25582],[-2.372665,53.254372],[-2.3704,53.25448],[-2.369989,53.253409],[-2.367142,53.252093],[-2.367261,53.251116],[-2.364629,53.250577],[-2.365062,53.249885],[-2.364153,53.248501],[-2.362477,53.248547],[-2.359243,53.249182],[-2.356505,53.249413],[-2.355939,53.248757],[-2.353088,53.24833],[-2.349629,53.249088],[-2.349011,53.248674],[-2.35075,53.245934],[-2.350145,53.243767],[-2.346353,53.240937],[-2.35265,53.236952],[-2.353708,53.235972],[-2.359131,53.233361],[-2.359509,53.230582],[-2.3638,53.223571],[-2.367963,53.22332],[-2.377647,53.227152],[-2.380932,53.227814],[-2.38574,53.230385],[-2.396289,53.234362],[-2.398826,53.232102],[-2.396713,53.231103],[-2.398859,53.228276],[-2.402492,53.229726],[-2.402822,53.229296],[-2.40094,53.228306],[-2.401504,53.227905],[-2.399038,53.226764],[-2.39954,53.22595],[-2.397878,53.225228],[-2.399648,53.224026],[-2.401172,53.221759],[-2.403079,53.221152],[-2.406827,53.22129],[-2.407998,53.220877],[-2.409725,53.221045],[-2.411472,53.220755],[-2.4129,53.22116],[-2.414182,53.2193],[-2.412322,53.212582],[-2.409194,53.212755],[-2.408831,53.211805],[-2.408648,53.209097],[-2.410161,53.205696],[-2.407436,53.204732],[-2.406399,53.204024],[-2.403528,53.204237],[-2.402972,53.20336],[-2.400889,53.203283],[-2.399533,53.203914],[-2.398548,53.205276],[-2.396772,53.204899],[-2.39603,53.206093],[-2.395033,53.2061],[-2.393469,53.204907],[-2.392997,53.203188],[-2.392375,53.202783],[-2.39192,53.200128],[-2.390521,53.198096],[-2.389862,53.196086],[-2.388048,53.195928],[-2.386751,53.196785],[-2.381927,53.196235],[-2.379537,53.196449],[-2.377253,53.19576],[-2.37256,53.195551],[-2.372677,53.194228],[-2.37191,53.192669],[-2.372425,53.192377],[-2.371153,53.19044],[-2.37334,53.189456],[-2.37563,53.189159],[-2.376923,53.187262],[-2.372823,53.186449],[-2.373609,53.18517],[-2.370849,53.184535],[-2.370162,53.183675],[-2.368693,53.183037],[-2.372321,53.178741],[-2.373663,53.178754],[-2.374728,53.176546],[-2.377814,53.173817],[-2.376866,53.173068],[-2.378202,53.172082],[-2.381988,53.173351],[-2.383177,53.173484],[-2.384615,53.174575],[-2.387001,53.175515],[-2.390028,53.178017],[-2.391252,53.17832],[-2.39211,53.179915],[-2.393291,53.179923],[-2.396255,53.178857],[-2.398057,53.177213],[-2.398758,53.174618],[-2.399302,53.174529],[-2.397942,53.172298],[-2.40658,53.174137],[-2.405562,53.174782],[-2.410358,53.178114],[-2.412642,53.180877],[-2.41301,53.181967],[-2.412701,53.183775],[-2.413753,53.183938],[-2.416322,53.187892],[-2.417391,53.188839],[-2.420705,53.190201],[-2.421909,53.191117],[-2.427032,53.192951],[-2.425899,53.193742],[-2.426383,53.195037],[-2.428938,53.194959],[-2.429427,53.196557],[-2.430664,53.197965],[-2.434517,53.196675],[-2.435355,53.197776],[-2.43671,53.197385],[-2.437841,53.198239],[-2.438656,53.200088],[-2.440606,53.200397],[-2.443123,53.201363],[-2.445842,53.201219],[-2.447937,53.199933],[-2.451194,53.199459],[-2.452762,53.200627],[-2.454581,53.200967],[-2.454388,53.201667],[-2.456931,53.201849],[-2.459753,53.201477],[-2.460396,53.200004],[-2.460256,53.199081],[-2.458515,53.198668],[-2.458395,53.196815],[-2.45949,53.196194],[-2.46036,53.194648],[-2.460462,53.192901],[-2.458354,53.191535],[-2.456354,53.189872],[-2.456784,53.188739],[-2.456416,53.187328],[-2.457575,53.186393],[-2.457486,53.18505],[-2.456115,53.183621],[-2.456787,53.181806],[-2.45624,53.1788],[-2.457333,53.176617],[-2.453585,53.17431],[-2.450987,53.173821],[-2.449779,53.17301],[-2.448242,53.173072],[-2.447886,53.172128],[-2.445193,53.171689],[-2.443478,53.170838],[-2.441985,53.168807],[-2.442359,53.167814],[-2.442006,53.166179],[-2.442193,53.163766],[-2.44345,53.16293],[-2.444498,53.161278],[-2.443268,53.16068],[-2.443848,53.159868],[-2.44647,53.159869],[-2.451863,53.160894],[-2.45466,53.160938],[-2.455828,53.160472],[-2.457324,53.156435],[-2.459106,53.156213],[-2.461969,53.156568],[-2.464301,53.153157],[-2.469074,53.152762],[-2.472059,53.154534],[-2.474609,53.154625],[-2.476352,53.155215],[-2.477688,53.156488],[-2.48033,53.157224],[-2.483801,53.15951],[-2.48618,53.160157],[-2.484538,53.162172],[-2.485025,53.162738],[-2.487032,53.163412],[-2.490568,53.16352],[-2.492568,53.162921],[-2.494867,53.163414],[-2.496451,53.164089],[-2.498031,53.164237],[-2.4991,53.163682],[-2.501695,53.16371],[-2.500835,53.161428],[-2.502418,53.159863],[-2.504026,53.160048],[-2.507555,53.158997],[-2.508331,53.159461],[-2.510755,53.15943],[-2.512365,53.158904],[-2.516819,53.158973],[-2.518183,53.160124],[-2.519988,53.160093],[-2.522999,53.159159],[-2.522607,53.157689],[-2.522836,53.155353],[-2.523939,53.1544],[-2.526866,53.152839],[-2.528603,53.152439],[-2.532755,53.152203],[-2.542251,53.149761],[-2.548013,53.151407],[-2.550745,53.153183],[-2.551941,53.154517],[-2.553563,53.155584],[-2.553846,53.157125],[-2.555963,53.157987],[-2.5585,53.159616],[-2.55706,53.160338],[-2.559681,53.161883],[-2.561821,53.16267],[-2.565,53.162057],[-2.568108,53.162424],[-2.572403,53.163472],[-2.574146,53.161405],[-2.576671,53.161981],[-2.57883,53.160035],[-2.580345,53.159142],[-2.580868,53.15802],[-2.582856,53.157729],[-2.583581,53.155498],[-2.586185,53.156537],[-2.586684,53.157333],[-2.589012,53.157083],[-2.591645,53.157244],[-2.593546,53.158309],[-2.596505,53.158872],[-2.597127,53.155311],[-2.595792,53.152724],[-2.593414,53.150851],[-2.592252,53.149031],[-2.588798,53.146584],[-2.590784,53.146004],[-2.590645,53.145098],[-2.59434,53.144518],[-2.596824,53.144747],[-2.59861,53.146212],[-2.600217,53.146524],[-2.604334,53.145102],[-2.605624,53.145832],[-2.605836,53.146703],[-2.607686,53.147999],[-2.608201,53.149187],[-2.609373,53.150013],[-2.611686,53.150559],[-2.612749,53.150324],[-2.619152,53.150146],[-2.62035,53.150273],[-2.620851,53.151218],[-2.62318,53.151432],[-2.625284,53.150847],[-2.629068,53.148673],[-2.630002,53.146292],[-2.632049,53.145511],[-2.633995,53.143223],[-2.636591,53.142039],[-2.638259,53.141884],[-2.640035,53.141007],[-2.643344,53.135224],[-2.642178,53.134522],[-2.640293,53.134136],[-2.63962,53.133568],[-2.640528,53.132107],[-2.640429,53.129064],[-2.641264,53.128421],[-2.649962,53.129225],[-2.652428,53.130347],[-2.656244,53.13003],[-2.658309,53.130775],[-2.65973,53.130716],[-2.659693,53.129348],[-2.660638,53.127506],[-2.660517,53.125092],[-2.662437,53.121349],[-2.663764,53.120582],[-2.66694,53.120185],[-2.668768,53.118828],[-2.670727,53.117966],[-2.670041,53.117049],[-2.671145,53.11587],[-2.673797,53.115944],[-2.674437,53.115145],[-2.678502,53.115959],[-2.681978,53.116022],[-2.683639,53.117121],[-2.687479,53.117235],[-2.690488,53.118668],[-2.696629,53.119968],[-2.699653,53.119787],[-2.703671,53.117425],[-2.706054,53.118509],[-2.707108,53.117106],[-2.708567,53.116217],[-2.709204,53.114351],[-2.710048,53.113437],[-2.71,53.11178],[-2.708422,53.110267],[-2.707566,53.107813],[-2.706451,53.106614],[-2.708216,53.105548],[-2.709058,53.098651],[-2.711737,53.096415],[-2.711364,53.093642],[-2.713142,53.093014],[-2.71758,53.093528],[-2.722295,53.092194],[-2.724922,53.092319],[-2.730333,53.091528],[-2.731739,53.091809],[-2.732885,53.090083],[-2.735615,53.088724],[-2.73493,53.086553],[-2.74178,53.081861],[-2.744439,53.082292],[-2.745466,53.082157],[-2.74516,53.080663],[-2.746744,53.078876],[-2.748651,53.077952],[-2.750743,53.076519],[-2.751102,53.074423],[-2.749927,53.071706],[-2.751264,53.071418],[-2.752929,53.069226],[-2.743258,53.065795],[-2.741074,53.064523],[-2.74188,53.063482],[-2.739678,53.062424],[-2.740169,53.061357],[-2.737256,53.060999],[-2.737554,53.060459],[-2.735925,53.059778],[-2.734724,53.05868],[-2.732423,53.057684],[-2.734534,53.056605],[-2.734699,53.055084],[-2.730482,53.053521],[-2.729005,53.051636],[-2.726492,53.051125],[-2.723263,53.04884],[-2.722129,53.049004],[-2.719121,53.046141],[-2.71825,53.045564],[-2.716201,53.047625],[-2.710461,53.048212],[-2.709228,53.050165],[-2.709581,53.052245],[-2.707237,53.052937],[-2.704555,53.053157],[-2.704895,53.053937],[-2.702411,53.054321],[-2.700141,53.053117],[-2.693859,53.051842],[-2.691409,53.050049],[-2.689196,53.049311],[-2.68226,53.045322],[-2.668817,53.038654],[-2.671448,53.036422],[-2.672314,53.034025],[-2.677213,53.033278],[-2.678771,53.032659],[-2.678279,53.03146],[-2.67896,53.030945],[-2.678374,53.027995],[-2.679619,53.02562],[-2.682481,53.024901],[-2.683189,53.023495],[-2.685018,53.021713],[-2.682543,53.020242],[-2.678321,53.015011],[-2.680133,53.01521],[-2.688555,53.012486],[-2.690342,53.007808],[-2.69372,53.002771],[-2.696098,53.000769],[-2.699293,52.995439],[-2.696697,52.994863],[-2.69447,52.993942],[-2.694415,52.993344],[-2.691839,52.990505],[-2.688776,52.989936],[-2.686443,52.988244],[-2.687079,52.98683],[-2.680903,52.986111],[-2.679676,52.986565],[-2.676186,52.986495],[-2.674662,52.985663],[-2.671575,52.987123],[-2.668118,52.98774],[-2.668102,52.988211],[-2.664379,52.989016],[-2.660807,52.991451],[-2.658299,52.992056],[-2.657686,52.991614],[-2.655428,52.993138],[-2.654419,52.993323],[-2.652357,52.994994],[-2.648611,52.995261],[-2.644529,52.995013],[-2.642805,52.993481],[-2.637371,52.994851],[-2.636372,52.996511],[-2.635075,52.996734],[-2.634069,52.995992],[-2.632651,52.996671],[-2.630923,52.995883],[-2.628028,52.995169],[-2.628237,52.992511],[-2.627592,52.990967],[-2.625756,52.989182],[-2.62194,52.986742],[-2.618968,52.986611],[-2.614985,52.987766],[-2.607734,52.988362],[-2.6067,52.987273],[-2.607142,52.98674],[-2.605466,52.985432],[-2.603699,52.981797],[-2.605684,52.979398],[-2.604205,52.978983],[-2.600625,52.978791],[-2.598109,52.979067],[-2.595926,52.979699],[-2.594889,52.979607],[-2.596703,52.977868],[-2.599156,52.976702],[-2.59963,52.975433],[-2.598894,52.975113],[-2.5954,52.97593],[-2.592756,52.974169],[-2.596623,52.973476],[-2.598447,52.971718],[-2.596891,52.96956],[-2.597033,52.968574],[-2.596028,52.967669],[-2.596332,52.966529],[-2.595802,52.96554],[-2.597694,52.963006],[-2.595882,52.962162],[-2.594918,52.960993],[-2.592649,52.960897],[-2.591328,52.960411],[-2.590653,52.959284],[-2.589067,52.958938],[-2.588479,52.957023],[-2.586203,52.955314],[-2.58443,52.955589],[-2.583625,52.95628],[-2.578144,52.955729],[-2.576658,52.956177],[-2.574891,52.957381],[-2.574934,52.958333],[-2.573565,52.958509],[-2.573089,52.959239],[-2.570293,52.959743],[-2.571521,52.96076],[-2.573247,52.961463],[-2.573797,52.962323],[-2.572103,52.962858],[-2.571256,52.962147],[-2.568844,52.961962],[-2.568117,52.963096],[-2.566513,52.963949],[-2.564356,52.963533],[-2.561671,52.964244],[-2.559111,52.962222],[-2.557615,52.962176],[-2.555873,52.959027],[-2.553698,52.957466],[-2.550474,52.956665],[-2.547947,52.95706],[-2.546355,52.956838],[-2.541015,52.952746],[-2.539151,52.95193],[-2.535061,52.948087],[-2.532034,52.947286],[-2.529516,52.947165],[-2.529302,52.949415],[-2.526865,52.951168],[-2.527482,52.951803],[-2.525357,52.953684],[-2.523281,52.954355],[-2.524267,52.955916],[-2.523589,52.956204],[-2.522764,52.958868],[-2.523495,52.960879],[-2.523058,52.963123],[-2.523986,52.966027],[-2.522315,52.968209],[-2.52323,52.970329],[-2.522567,52.972054],[-2.52155,52.972985],[-2.522198,52.973742],[-2.52132,52.974302],[-2.519626,52.973281],[-2.517015,52.972328],[-2.514316,52.971924],[-2.511769,52.96994],[-2.511098,52.96686],[-2.509415,52.965956],[-2.506539,52.965837],[-2.500814,52.967253],[-2.499023,52.968435],[-2.495678,52.968488],[-2.491701,52.967684],[-2.490679,52.966298],[-2.490788,52.965047],[-2.487716,52.965126],[-2.486875,52.962938],[-2.484679,52.961259],[-2.484056,52.960133],[-2.481153,52.958818],[-2.480081,52.959976],[-2.477676,52.960795],[-2.477828,52.961711],[-2.47595,52.961945],[-2.475084,52.962489],[-2.472551,52.962169],[-2.470433,52.96149],[-2.463858,52.964054],[-2.461956,52.963721],[-2.460169,52.963964],[-2.459814,52.964596],[-2.452875,52.965402],[-2.451172,52.966199],[-2.450257,52.966052],[-2.449228,52.967119],[-2.44669,52.968115],[-2.442958,52.970739],[-2.441823,52.970011],[-2.438756,52.969286],[-2.434614,52.969521],[-2.434469,52.971704],[-2.435394,52.973038],[-2.436276,52.973391],[-2.435661,52.975159],[-2.43421,52.976217],[-2.434532,52.977148],[-2.436031,52.977816],[-2.434224,52.978877],[-2.434091,52.979661],[-2.43499,52.980818],[-2.436681,52.982099],[-2.435685,52.98295],[-2.438491,52.984615],[-2.438169,52.985568],[-2.435368,52.986709],[-2.433598,52.986651],[-2.432358,52.987067],[-2.431639,52.986064],[-2.428884,52.98578],[-2.425475,52.986398],[-2.423787,52.986342],[-2.421022,52.987169],[-2.420553,52.987828],[-2.418889,52.988483],[-2.417539,52.987897],[-2.416202,52.988197],[-2.41223,52.988259],[-2.410862,52.987925],[-2.408322,52.989764],[-2.405227,52.990801],[-2.404475,52.991654],[-2.405581,52.992468],[-2.405057,52.994235],[-2.407254,52.995191],[-2.406987,52.995917],[-2.404801,52.995716],[-2.403325,52.995102],[-2.400802,52.995456],[-2.397485,52.994998],[-2.391197,52.996478],[-2.389735,52.995392],[-2.389082,52.996169],[-2.385525,52.996664],[-2.384249,52.99795],[-2.382741,52.997903],[-2.380794,52.998411],[-2.380805,52.999722],[-2.379992,53.000808],[-2.380148,53.002092],[-2.380978,53.004051],[-2.380806,53.005202],[-2.381791,53.006909],[-2.383045,53.007787],[-2.380998,53.008548],[-2.378314,53.010388],[-2.376358,53.010183],[-2.374706,53.010602],[-2.373301,53.011689],[-2.373095,53.013264],[-2.370468,53.014576],[-2.377519,53.019957],[-2.38144,53.023826],[-2.381292,53.024153],[-2.384228,53.026168],[-2.379785,53.027591],[-2.381308,53.030565],[-2.382637,53.031537],[-2.384161,53.031812],[-2.386171,53.033564],[-2.384287,53.033896],[-2.383845,53.036595],[-2.384552,53.038448],[-2.383867,53.040817],[-2.382536,53.042888],[-2.382476,53.044222],[-2.383529,53.045554],[-2.382159,53.04585],[-2.38358,53.047429],[-2.383278,53.04851],[-2.380728,53.04966],[-2.382193,53.05116],[-2.381249,53.052551],[-2.377462,53.052607],[-2.376201,53.052971],[-2.37506,53.054531],[-2.373619,53.054204],[-2.370293,53.054811],[-2.366601,53.054553],[-2.361719,53.055097],[-2.361501,53.054105],[-2.359429,53.05474],[-2.357579,53.054718],[-2.35668,53.058215],[-2.353735,53.058849],[-2.351646,53.05729],[-2.350001,53.057067],[-2.348595,53.055826],[-2.346552,53.056979],[-2.344482,53.059047],[-2.341448,53.059996],[-2.339095,53.06317],[-2.338848,53.064421],[-2.336253,53.06634],[-2.335875,53.067407],[-2.331799,53.069601],[-2.330515,53.07086],[-2.329961,53.073177],[-2.328825,53.074038],[-2.329501,53.075284],[-2.32901,53.07658],[-2.32371,53.077656],[-2.322408,53.078991],[-2.31842,53.081216],[-2.314959,53.081038],[-2.309647,53.08246],[-2.306251,53.082538],[-2.303397,53.082961],[-2.301893,53.08206],[-2.301469,53.081215],[-2.299804,53.081392],[-2.296738,53.080983],[-2.295767,53.080397],[-2.295442,53.079253],[-2.294461,53.078296],[-2.29195,53.078961],[-2.290657,53.078904],[-2.288486,53.079759],[-2.285026,53.079735],[-2.278497,53.080913],[-2.275289,53.082189],[-2.274498,53.083854],[-2.277106,53.085905],[-2.271112,53.086731],[-2.269367,53.087549],[-2.268733,53.088479],[-2.267037,53.088147],[-2.260978,53.089009],[-2.258102,53.090224],[-2.255899,53.090674],[-2.253427,53.093071],[-2.253249,53.093977],[-2.250675,53.093089],[-2.249088,53.091635],[-2.249673,53.090716],[-2.247606,53.089829],[-2.246509,53.090217],[-2.246378,53.091611],[-2.243461,53.093834],[-2.242571,53.095151],[-2.240519,53.096555],[-2.238995,53.098273],[-2.238921,53.100019],[-2.237952,53.101047],[-2.233999,53.10294],[-2.231953,53.10311],[-2.230354,53.103767],[-2.227016,53.104128],[-2.224696,53.103605],[-2.223074,53.103795],[-2.222867,53.106043],[-2.22192,53.106837],[-2.22243,53.107622],[-2.218724,53.109022],[-2.217044,53.109997],[-2.2165,53.11155],[-2.21286,53.114303],[-2.212908,53.11505],[-2.211315,53.115824],[-2.202646,53.121632],[-2.19351,53.129621],[-2.186534,53.135977],[-2.180094,53.142563],[-2.176581,53.145531],[-2.174368,53.146522],[-2.172409,53.148021],[-2.171669,53.147404],[-2.169289,53.148206],[-2.168059,53.14816],[-2.16386,53.151372],[-2.159543,53.152906],[-2.158612,53.154136],[-2.155655,53.156519],[-2.154757,53.15927],[-2.152156,53.159765],[-2.15101,53.159656],[-2.148634,53.158334],[-2.147051,53.158493],[-2.145423,53.157321],[-2.141411,53.156652],[-2.144496,53.171338],[-2.144509,53.174707],[-2.143521,53.175438],[-2.144298,53.176921],[-2.142647,53.177793],[-2.142385,53.179111],[-2.141361,53.179806],[-2.142271,53.181144],[-2.142174,53.182245],[-2.140165,53.183896],[-2.138221,53.184017],[-2.134608,53.183346],[-2.133464,53.182815],[-2.129855,53.17842],[-2.130033,53.176724],[-2.129348,53.175502],[-2.12787,53.174629],[-2.125249,53.175122],[-2.124982,53.173976],[-2.123512,53.173501],[-2.121649,53.174399],[-2.119768,53.174711],[-2.119306,53.172868],[-2.117869,53.171803],[-2.116323,53.171774],[-2.115097,53.172617],[-2.113924,53.171942],[-2.115851,53.171259],[-2.115364,53.169517],[-2.111788,53.168624],[-2.110776,53.169426],[-2.10874,53.168361],[-2.103751,53.169862],[-2.101736,53.168905],[-2.098625,53.17039],[-2.097665,53.171555],[-2.09577,53.171191],[-2.094611,53.172599],[-2.092729,53.172918],[-2.090702,53.172291],[-2.089143,53.17077],[-2.087237,53.169854],[-2.085566,53.170298],[-2.082932,53.170139],[-2.082096,53.170957],[-2.079534,53.171059],[-2.07805,53.170443],[-2.075579,53.171232],[-2.069408,53.172139],[-2.070403,53.173117],[-2.069318,53.174076],[-2.067481,53.174926],[-2.06326,53.174862],[-2.058243,53.176321],[-2.056863,53.177667],[-2.058223,53.178707],[-2.058412,53.179662],[-2.059597,53.179969],[-2.059215,53.180901],[-2.05702,53.181615],[-2.05633,53.182855],[-2.054252,53.183139],[-2.05229,53.183959],[-2.053412,53.185274],[-2.054818,53.185688],[-2.054986,53.186487],[-2.052205,53.187771],[-2.049581,53.190357],[-2.048281,53.190956],[-2.047558,53.192167],[-2.046418,53.192682],[-2.043854,53.192581],[-2.042775,53.192858],[-2.040438,53.192506],[-2.038337,53.193664],[-2.036366,53.193133],[-2.034485,53.193158],[-2.033686,53.193652],[-2.031563,53.193251],[-2.028555,53.193354],[-2.023857,53.191517],[-2.021323,53.189828],[-2.018179,53.189053],[-2.016384,53.189312],[-2.011155,53.19189],[-2.010075,53.192775],[-2.007011,53.192378],[-2.004987,53.193403],[-2.001666,53.193055],[-2.000078,53.193853],[-2.000335,53.194624],[-1.998806,53.196047],[-1.998756,53.197041],[-1.996776,53.197568],[-1.996442,53.198724],[-1.99468,53.199722],[-1.994271,53.200673],[-1.994536,53.203302],[-1.993032,53.206436],[-1.99291,53.207583],[-1.990801,53.208274],[-1.99041,53.209605],[-1.989001,53.209925],[-1.988547,53.211211],[-1.987214,53.211968],[-1.987408,53.213586],[-1.988001,53.214585],[-1.98964,53.215789],[-1.989454,53.218072],[-1.989973,53.219389],[-1.989112,53.219551],[-1.99013,53.220998],[-1.990265,53.222999],[-1.988147,53.224104],[-1.987768,53.22486],[-1.985934,53.225765],[-1.98495,53.225556],[-1.982242,53.22628],[-1.979324,53.226746],[-1.977686,53.227595],[-1.976065,53.22753],[-1.974929,53.228499],[-1.974859,53.231061],[-1.978012,53.232417],[-1.979091,53.233328],[-1.981883,53.238579],[-1.983693,53.238641],[-1.987728,53.240195],[-1.990985,53.241011],[-1.999731,53.245049],[-1.999207,53.246376],[-2.00186,53.248518],[-2.001033,53.253885],[-2.000333,53.255439],[-2.009482,53.260652],[-2.007732,53.264524],[-2.005407,53.267589],[-2.005197,53.26904],[-2.006161,53.271404],[-2.006636,53.271574],[-2.007399,53.275913],[-2.008132,53.276712],[-2.009279,53.280067],[-2.008275,53.283477],[-2.008171,53.289433],[-2.009641,53.289436],[-2.008654,53.294656],[-2.0087,53.300182],[-2.009329,53.302314],[-2.008667,53.304506],[-2.004334,53.311157],[-2.004202,53.314611],[-2.003178,53.316947],[-2.001551,53.318922],[-2.003731,53.321663],[-2.006052,53.321668],[-2.010266,53.322897],[-2.011554,53.325954],[-2.011114,53.326657],[-2.011797,53.327597],[-2.01081,53.329786],[-2.009283,53.331389],[-2.01365,53.33242],[-2.013394,53.335665],[-2.014319,53.340058],[-2.010139,53.341902],[-2.00466,53.34601],[-2.007839,53.347766],[-2.007705,53.349287],[-2.008425,53.351103],[-2.006704,53.351655],[-2.007267,53.35347],[-2.006785,53.354572],[-2.008938,53.355279],[-2.010432,53.355255],[-2.010911,53.356604],[-2.010682,53.358259],[-2.008998,53.362011],[-2.010468,53.36258],[-2.011873,53.361629],[-2.016335,53.363464],[-2.017395,53.365554],[-2.020157,53.366044],[-2.021817,53.366757],[-2.023483,53.366353],[-2.023579,53.365513],[-2.024929,53.364113],[-2.027129,53.363767],[-2.028587,53.364613],[-2.030034,53.366177],[-2.031729,53.365729],[-2.032135,53.366447],[-2.034087,53.367753],[-2.031059,53.370262],[-2.030957,53.371515],[-2.032632,53.372034],[-2.038421,53.371892],[-2.038854,53.372986],[-2.040564,53.374088],[-2.041107,53.3727],[-2.043022,53.371716],[-2.043953,53.37063],[-2.046669,53.369369],[-2.04863,53.369443],[-2.050113,53.369083],[-2.051988,53.367399],[-2.055321,53.366891],[-2.056253,53.364309],[-2.056961,53.36373],[-2.056337,53.362413],[-2.05826,53.36127],[-2.059677,53.35891],[-2.061164,53.358438],[-2.063463,53.358836],[-2.06504,53.357724],[-2.068078,53.357394],[-2.068929,53.358036],[-2.071178,53.357564],[-2.072121,53.35794],[-2.075626,53.357774],[-2.078036,53.358469],[-2.078553,53.358149],[-2.081368,53.359178],[-2.083758,53.359554],[-2.083867,53.360135],[-2.087,53.361606],[-2.090792,53.364076],[-2.092737,53.364491],[-2.094952,53.366036],[-2.098941,53.366292],[-2.101014,53.365871],[-2.103929,53.366082],[-2.105623,53.365186],[-2.107439,53.364774],[-2.114405,53.36464],[-2.119414,53.364205],[-2.120706,53.363878],[-2.123196,53.361947],[-2.124471,53.362347],[-2.128149,53.364615],[-2.129221,53.364963],[-2.133377,53.364986],[-2.136513,53.366994],[-2.137714,53.366611],[-2.139481,53.364615],[-2.139693,53.362901],[-2.139228,53.361581],[-2.139871,53.360155],[-2.139169,53.357767],[-2.138197,53.356891],[-2.140327,53.355052],[-2.142533,53.35419],[-2.145734,53.351728],[-2.147166,53.351129],[-2.147092,53.350473],[-2.149661,53.349633],[-2.151191,53.348133],[-2.147718,53.34483],[-2.144099,53.342871],[-2.146665,53.340612],[-2.150009,53.338297],[-2.151034,53.336119],[-2.151323,53.332925],[-2.151765,53.332209],[-2.152536,53.328553],[-2.154165,53.327795],[-2.155914,53.328054],[-2.158442,53.328936],[-2.160136,53.32765],[-2.163265,53.328143],[-2.165988,53.329178],[-2.166137,53.329679],[-2.16889,53.330546],[-2.169146,53.331185],[-2.173879,53.331408],[-2.176061,53.331066],[-2.178474,53.331258],[-2.179982,53.331063],[-2.182169,53.331751],[-2.18305,53.332504],[-2.184877,53.332691],[-2.189108,53.335269],[-2.190494,53.337644],[-2.194163,53.33865],[-2.192809,53.339846],[-2.192699,53.341032],[-2.190732,53.342127],[-2.182753,53.343129],[-2.180977,53.344044],[-2.184829,53.346992],[-2.185302,53.346948],[-2.188015,53.348737],[-2.185492,53.352011],[-2.185441,53.35266],[-2.189082,53.352791],[-2.192573,53.354057],[-2.201871,53.355428],[-2.201937,53.354809],[-2.208292,53.354997],[-2.20741,53.356799],[-2.210666,53.357285],[-2.21454,53.356719],[-2.214632,53.357935],[-2.216218,53.358131],[-2.216142,53.358867],[-2.219552,53.35849],[-2.22031,53.359428],[-2.223046,53.3598],[-2.224625,53.35938],[-2.228763,53.359356],[-2.232982,53.358795],[-2.232811,53.360271],[-2.237593,53.359253],[-2.24079,53.359574],[-2.244144,53.359779],[-2.244193,53.361044],[-2.245205,53.361139],[-2.249592,53.360592],[-2.254099,53.360854],[-2.256447,53.360677],[-2.258937,53.359461],[-2.258041,53.357044],[-2.261103,53.356141],[-2.264612,53.353978],[-2.264194,53.352979],[-2.266848,53.351711],[-2.267077,53.350573],[-2.271808,53.350699],[-2.273344,53.350376],[-2.27837,53.348612],[-2.280646,53.345968],[-2.284636,53.346508],[-2.286706,53.345528],[-2.285867,53.345019],[-2.287934,53.343086],[-2.290054,53.342292],[-2.291279,53.34302],[-2.295817,53.343044],[-2.296727,53.342056],[-2.29786,53.341901],[-2.301328,53.340122],[-2.302836,53.340993],[-2.297459,53.343809],[-2.298145,53.344443],[-2.296454,53.344948],[-2.296712,53.346047],[-2.298318,53.346732],[-2.29693,53.348584],[-2.298885,53.34902],[-2.29917,53.350033],[-2.301451,53.349053],[-2.301436,53.350412],[-2.303582,53.350723],[-2.304524,53.352255],[-2.305621,53.353146],[-2.307905,53.353533],[-2.309233,53.354371],[-2.312221,53.354773],[-2.312745,53.3561],[-2.314301,53.356732],[-2.313998,53.357425]]]},"properties":{"LAD22CD":"E06000049","LAD22NM":"Cheshire East","BNG_E":380510,"BNG_N":363462,"LONG":-2.29299,"LAT":53.16793,"GlobalID":"a01a40b9-6ce7-4950-923a-883bb2597e3f"},"id":46}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.083094,53.25581],[-3.083877,53.257041],[-3.085566,53.256643],[-3.083094,53.25581]]],[[[-3.113212,53.294875],[-3.110007,53.294832],[-3.1093,53.296072],[-3.109363,53.297045],[-3.113212,53.294875]]],[[[-2.699293,52.995439],[-2.696098,53.000769],[-2.69372,53.002771],[-2.690342,53.007808],[-2.688555,53.012486],[-2.680133,53.01521],[-2.678321,53.015011],[-2.682543,53.020242],[-2.685018,53.021713],[-2.683189,53.023495],[-2.682481,53.024901],[-2.679619,53.02562],[-2.678374,53.027995],[-2.67896,53.030945],[-2.678279,53.03146],[-2.678771,53.032659],[-2.677213,53.033278],[-2.672314,53.034025],[-2.671448,53.036422],[-2.668817,53.038654],[-2.68226,53.045322],[-2.689196,53.049311],[-2.691409,53.050049],[-2.693859,53.051842],[-2.700141,53.053117],[-2.702411,53.054321],[-2.704895,53.053937],[-2.704555,53.053157],[-2.707237,53.052937],[-2.709581,53.052245],[-2.709228,53.050165],[-2.710461,53.048212],[-2.716201,53.047625],[-2.71825,53.045564],[-2.719121,53.046141],[-2.722129,53.049004],[-2.723263,53.04884],[-2.726492,53.051125],[-2.729005,53.051636],[-2.730482,53.053521],[-2.734699,53.055084],[-2.734534,53.056605],[-2.732423,53.057684],[-2.734724,53.05868],[-2.735925,53.059778],[-2.737554,53.060459],[-2.737256,53.060999],[-2.740169,53.061357],[-2.739678,53.062424],[-2.74188,53.063482],[-2.741074,53.064523],[-2.743258,53.065795],[-2.752929,53.069226],[-2.751264,53.071418],[-2.749927,53.071706],[-2.751102,53.074423],[-2.750743,53.076519],[-2.748651,53.077952],[-2.746744,53.078876],[-2.74516,53.080663],[-2.745466,53.082157],[-2.744439,53.082292],[-2.74178,53.081861],[-2.73493,53.086553],[-2.735615,53.088724],[-2.732885,53.090083],[-2.731739,53.091809],[-2.730333,53.091528],[-2.724922,53.092319],[-2.722295,53.092194],[-2.71758,53.093528],[-2.713142,53.093014],[-2.711364,53.093642],[-2.711737,53.096415],[-2.709058,53.098651],[-2.708216,53.105548],[-2.706451,53.106614],[-2.707566,53.107813],[-2.708422,53.110267],[-2.71,53.11178],[-2.710048,53.113437],[-2.709204,53.114351],[-2.708567,53.116217],[-2.707108,53.117106],[-2.706054,53.118509],[-2.703671,53.117425],[-2.699653,53.119787],[-2.696629,53.119968],[-2.690488,53.118668],[-2.687479,53.117235],[-2.683639,53.117121],[-2.681978,53.116022],[-2.678502,53.115959],[-2.674437,53.115145],[-2.673797,53.115944],[-2.671145,53.11587],[-2.670041,53.117049],[-2.670727,53.117966],[-2.668768,53.118828],[-2.66694,53.120185],[-2.663764,53.120582],[-2.662437,53.121349],[-2.660517,53.125092],[-2.660638,53.127506],[-2.659693,53.129348],[-2.65973,53.130716],[-2.658309,53.130775],[-2.656244,53.13003],[-2.652428,53.130347],[-2.649962,53.129225],[-2.641264,53.128421],[-2.640429,53.129064],[-2.640528,53.132107],[-2.63962,53.133568],[-2.640293,53.134136],[-2.642178,53.134522],[-2.643344,53.135224],[-2.640035,53.141007],[-2.638259,53.141884],[-2.636591,53.142039],[-2.633995,53.143223],[-2.632049,53.145511],[-2.630002,53.146292],[-2.629068,53.148673],[-2.625284,53.150847],[-2.62318,53.151432],[-2.620851,53.151218],[-2.62035,53.150273],[-2.619152,53.150146],[-2.612749,53.150324],[-2.611686,53.150559],[-2.609373,53.150013],[-2.608201,53.149187],[-2.607686,53.147999],[-2.605836,53.146703],[-2.605624,53.145832],[-2.604334,53.145102],[-2.600217,53.146524],[-2.59861,53.146212],[-2.596824,53.144747],[-2.59434,53.144518],[-2.590645,53.145098],[-2.590784,53.146004],[-2.588798,53.146584],[-2.592252,53.149031],[-2.593414,53.150851],[-2.595792,53.152724],[-2.597127,53.155311],[-2.596505,53.158872],[-2.593546,53.158309],[-2.591645,53.157244],[-2.589012,53.157083],[-2.586684,53.157333],[-2.586185,53.156537],[-2.583581,53.155498],[-2.582856,53.157729],[-2.580868,53.15802],[-2.580345,53.159142],[-2.57883,53.160035],[-2.576671,53.161981],[-2.574146,53.161405],[-2.572403,53.163472],[-2.568108,53.162424],[-2.565,53.162057],[-2.561821,53.16267],[-2.559681,53.161883],[-2.55706,53.160338],[-2.5585,53.159616],[-2.555963,53.157987],[-2.553846,53.157125],[-2.553563,53.155584],[-2.551941,53.154517],[-2.550745,53.153183],[-2.548013,53.151407],[-2.542251,53.149761],[-2.532755,53.152203],[-2.528603,53.152439],[-2.526866,53.152839],[-2.523939,53.1544],[-2.522836,53.155353],[-2.522607,53.157689],[-2.522999,53.159159],[-2.519988,53.160093],[-2.518183,53.160124],[-2.516819,53.158973],[-2.512365,53.158904],[-2.510755,53.15943],[-2.508331,53.159461],[-2.507555,53.158997],[-2.504026,53.160048],[-2.502418,53.159863],[-2.500835,53.161428],[-2.501695,53.16371],[-2.4991,53.163682],[-2.498031,53.164237],[-2.496451,53.164089],[-2.494867,53.163414],[-2.492568,53.162921],[-2.490568,53.16352],[-2.487032,53.163412],[-2.485025,53.162738],[-2.484538,53.162172],[-2.48618,53.160157],[-2.483801,53.15951],[-2.48033,53.157224],[-2.477688,53.156488],[-2.476352,53.155215],[-2.474609,53.154625],[-2.472059,53.154534],[-2.469074,53.152762],[-2.464301,53.153157],[-2.461969,53.156568],[-2.459106,53.156213],[-2.457324,53.156435],[-2.455828,53.160472],[-2.45466,53.160938],[-2.451863,53.160894],[-2.44647,53.159869],[-2.443848,53.159868],[-2.443268,53.16068],[-2.444498,53.161278],[-2.44345,53.16293],[-2.442193,53.163766],[-2.442006,53.166179],[-2.442359,53.167814],[-2.441985,53.168807],[-2.443478,53.170838],[-2.445193,53.171689],[-2.447886,53.172128],[-2.448242,53.173072],[-2.449779,53.17301],[-2.450987,53.173821],[-2.453585,53.17431],[-2.457333,53.176617],[-2.45624,53.1788],[-2.456787,53.181806],[-2.456115,53.183621],[-2.457486,53.18505],[-2.457575,53.186393],[-2.456416,53.187328],[-2.456784,53.188739],[-2.456354,53.189872],[-2.458354,53.191535],[-2.460462,53.192901],[-2.46036,53.194648],[-2.45949,53.196194],[-2.458395,53.196815],[-2.458515,53.198668],[-2.460256,53.199081],[-2.460396,53.200004],[-2.459753,53.201477],[-2.456931,53.201849],[-2.454388,53.201667],[-2.454581,53.200967],[-2.452762,53.200627],[-2.451194,53.199459],[-2.447937,53.199933],[-2.445842,53.201219],[-2.443123,53.201363],[-2.440606,53.200397],[-2.438656,53.200088],[-2.437841,53.198239],[-2.43671,53.197385],[-2.435355,53.197776],[-2.434517,53.196675],[-2.430664,53.197965],[-2.429427,53.196557],[-2.428938,53.194959],[-2.426383,53.195037],[-2.425899,53.193742],[-2.427032,53.192951],[-2.421909,53.191117],[-2.420705,53.190201],[-2.417391,53.188839],[-2.416322,53.187892],[-2.413753,53.183938],[-2.412701,53.183775],[-2.41301,53.181967],[-2.412642,53.180877],[-2.410358,53.178114],[-2.405562,53.174782],[-2.40658,53.174137],[-2.397942,53.172298],[-2.399302,53.174529],[-2.398758,53.174618],[-2.398057,53.177213],[-2.396255,53.178857],[-2.393291,53.179923],[-2.39211,53.179915],[-2.391252,53.17832],[-2.390028,53.178017],[-2.387001,53.175515],[-2.384615,53.174575],[-2.383177,53.173484],[-2.381988,53.173351],[-2.378202,53.172082],[-2.376866,53.173068],[-2.377814,53.173817],[-2.374728,53.176546],[-2.373663,53.178754],[-2.372321,53.178741],[-2.368693,53.183037],[-2.370162,53.183675],[-2.370849,53.184535],[-2.373609,53.18517],[-2.372823,53.186449],[-2.376923,53.187262],[-2.37563,53.189159],[-2.37334,53.189456],[-2.371153,53.19044],[-2.372425,53.192377],[-2.37191,53.192669],[-2.372677,53.194228],[-2.37256,53.195551],[-2.377253,53.19576],[-2.379537,53.196449],[-2.381927,53.196235],[-2.386751,53.196785],[-2.388048,53.195928],[-2.389862,53.196086],[-2.390521,53.198096],[-2.39192,53.200128],[-2.392375,53.202783],[-2.392997,53.203188],[-2.393469,53.204907],[-2.395033,53.2061],[-2.39603,53.206093],[-2.396772,53.204899],[-2.398548,53.205276],[-2.399533,53.203914],[-2.400889,53.203283],[-2.402972,53.20336],[-2.403528,53.204237],[-2.406399,53.204024],[-2.407436,53.204732],[-2.410161,53.205696],[-2.408648,53.209097],[-2.408831,53.211805],[-2.409194,53.212755],[-2.412322,53.212582],[-2.414182,53.2193],[-2.4129,53.22116],[-2.411472,53.220755],[-2.409725,53.221045],[-2.407998,53.220877],[-2.406827,53.22129],[-2.403079,53.221152],[-2.401172,53.221759],[-2.399648,53.224026],[-2.397878,53.225228],[-2.39954,53.22595],[-2.399038,53.226764],[-2.401504,53.227905],[-2.40094,53.228306],[-2.402822,53.229296],[-2.402492,53.229726],[-2.398859,53.228276],[-2.396713,53.231103],[-2.398826,53.232102],[-2.396289,53.234362],[-2.38574,53.230385],[-2.380932,53.227814],[-2.377647,53.227152],[-2.367963,53.22332],[-2.3638,53.223571],[-2.359509,53.230582],[-2.359131,53.233361],[-2.353708,53.235972],[-2.35265,53.236952],[-2.346353,53.240937],[-2.350145,53.243767],[-2.35075,53.245934],[-2.349011,53.248674],[-2.349629,53.249088],[-2.353088,53.24833],[-2.355939,53.248757],[-2.356505,53.249413],[-2.359243,53.249182],[-2.362477,53.248547],[-2.364153,53.248501],[-2.365062,53.249885],[-2.364629,53.250577],[-2.367261,53.251116],[-2.367142,53.252093],[-2.369989,53.253409],[-2.3704,53.25448],[-2.372665,53.254372],[-2.375761,53.25582],[-2.377266,53.255648],[-2.380568,53.25688],[-2.381538,53.25784],[-2.381609,53.259264],[-2.379314,53.260492],[-2.3793,53.263095],[-2.382953,53.262564],[-2.386862,53.264099],[-2.387442,53.262611],[-2.385566,53.262842],[-2.386221,53.261017],[-2.388234,53.261335],[-2.388249,53.264967],[-2.389412,53.265108],[-2.390345,53.264174],[-2.391784,53.26465],[-2.391436,53.265442],[-2.394115,53.266754],[-2.396696,53.266924],[-2.397222,53.2661],[-2.400002,53.265331],[-2.403537,53.266874],[-2.407643,53.267155],[-2.409311,53.268161],[-2.411574,53.268264],[-2.41245,53.267795],[-2.414677,53.267905],[-2.413973,53.266963],[-2.414796,53.264623],[-2.417179,53.264792],[-2.422885,53.260069],[-2.424877,53.261021],[-2.427219,53.261565],[-2.426411,53.263308],[-2.428523,53.264701],[-2.430866,53.265431],[-2.432566,53.266971],[-2.433669,53.268628],[-2.435459,53.269329],[-2.439615,53.269221],[-2.44409,53.270472],[-2.445222,53.272616],[-2.446488,53.272293],[-2.446837,53.274363],[-2.448254,53.275113],[-2.448837,53.276241],[-2.450081,53.277168],[-2.450483,53.278171],[-2.448581,53.278412],[-2.446891,53.280114],[-2.447998,53.281724],[-2.452307,53.283749],[-2.453171,53.284551],[-2.464457,53.287279],[-2.469999,53.285721],[-2.472426,53.28665],[-2.47199,53.287314],[-2.478922,53.289828],[-2.485077,53.290824],[-2.489698,53.290992],[-2.495649,53.290487],[-2.498006,53.289909],[-2.498137,53.291753],[-2.497491,53.293313],[-2.497778,53.294827],[-2.497054,53.296006],[-2.497591,53.299341],[-2.498252,53.299809],[-2.501696,53.298644],[-2.500657,53.301679],[-2.500917,53.304405],[-2.502602,53.305178],[-2.502688,53.306877],[-2.505219,53.309702],[-2.505685,53.311831],[-2.504921,53.312746],[-2.502909,53.313383],[-2.504276,53.314315],[-2.50675,53.318337],[-2.510953,53.320968],[-2.512278,53.321346],[-2.50968,53.324494],[-2.504456,53.326844],[-2.503154,53.331577],[-2.497883,53.337691],[-2.494353,53.340714],[-2.495049,53.341693],[-2.493968,53.343299],[-2.495642,53.344394],[-2.49708,53.344699],[-2.50161,53.343425],[-2.503347,53.342099],[-2.508453,53.342994],[-2.512427,53.342116],[-2.514076,53.342703],[-2.515989,53.342769],[-2.518393,53.34239],[-2.538234,53.335953],[-2.539453,53.33639],[-2.541266,53.333448],[-2.543006,53.332467],[-2.544529,53.330525],[-2.548281,53.331031],[-2.551665,53.332374],[-2.553928,53.328727],[-2.557367,53.326111],[-2.558838,53.325712],[-2.560167,53.323931],[-2.563088,53.32308],[-2.566492,53.324194],[-2.567848,53.325404],[-2.569403,53.325241],[-2.575396,53.325677],[-2.576816,53.326116],[-2.578363,53.326018],[-2.580232,53.328608],[-2.581555,53.328366],[-2.586284,53.329395],[-2.586345,53.328741],[-2.588335,53.32743],[-2.588501,53.325955],[-2.590091,53.325889],[-2.592739,53.324742],[-2.592586,53.32245],[-2.595223,53.322454],[-2.595254,53.320146],[-2.596743,53.319375],[-2.599368,53.318675],[-2.602363,53.318499],[-2.603573,53.317972],[-2.604717,53.315516],[-2.606414,53.314826],[-2.60653,53.314026],[-2.607999,53.313863],[-2.608283,53.314794],[-2.609358,53.315012],[-2.610071,53.31803],[-2.613518,53.318916],[-2.616844,53.320648],[-2.619935,53.320321],[-2.621024,53.31922],[-2.617869,53.318204],[-2.617471,53.3176],[-2.619834,53.316871],[-2.617801,53.316135],[-2.622734,53.312014],[-2.624715,53.31178],[-2.624123,53.309398],[-2.632509,53.307521],[-2.635724,53.307949],[-2.638865,53.310097],[-2.639847,53.309388],[-2.645062,53.310135],[-2.644437,53.308629],[-2.641557,53.305035],[-2.645881,53.307333],[-2.648797,53.308223],[-2.678165,53.31416],[-2.685353,53.315332],[-2.68725,53.314034],[-2.68758,53.313375],[-2.69211,53.311054],[-2.700799,53.305806],[-2.707756,53.309574],[-2.715704,53.311871],[-2.723526,53.31314],[-2.724149,53.312461],[-2.728152,53.31241],[-2.730652,53.311983],[-2.732888,53.310572],[-2.73448,53.307168],[-2.736525,53.306633],[-2.739292,53.30687],[-2.740819,53.308208],[-2.742919,53.309279],[-2.74736,53.312415],[-2.752432,53.31476],[-2.752392,53.313604],[-2.754653,53.311809],[-2.755892,53.311285],[-2.761382,53.31007],[-2.785847,53.297633],[-2.78875,53.296733],[-2.800417,53.298971],[-2.807091,53.303109],[-2.813391,53.304898],[-2.815474,53.306048],[-2.82177,53.307282],[-2.83056,53.308178],[-2.835656,53.308305],[-2.843652,53.307452],[-2.846384,53.306944],[-2.847947,53.305624],[-2.847195,53.304119],[-2.848119,53.301897],[-2.840026,53.299373],[-2.839601,53.298737],[-2.841177,53.298148],[-2.848981,53.296797],[-2.853962,53.295278],[-2.855071,53.293852],[-2.854191,53.293115],[-2.851969,53.293078],[-2.854927,53.291528],[-2.855568,53.292022],[-2.861046,53.292763],[-2.870649,53.290933],[-2.876192,53.290651],[-2.879194,53.290925],[-2.8858,53.292811],[-2.887577,53.293656],[-2.88832,53.29521],[-2.896259,53.296629],[-2.900866,53.296924],[-2.901576,53.296514],[-2.905855,53.301143],[-2.907696,53.30149],[-2.911357,53.304175],[-2.914778,53.305661],[-2.917708,53.306092],[-2.920016,53.305322],[-2.928781,53.308283],[-2.931603,53.306069],[-2.939552,53.310416],[-2.946587,53.305526],[-2.949382,53.303169],[-2.951623,53.303876],[-2.954685,53.304254],[-2.958276,53.304119],[-2.960026,53.303321],[-2.961499,53.303806],[-2.96533,53.302991],[-2.969073,53.30184],[-2.971268,53.302025],[-2.974134,53.30321],[-2.979528,53.304275],[-2.980164,53.304659],[-2.984738,53.305325],[-2.992738,53.307109],[-2.995334,53.305621],[-3.002181,53.30256],[-3.005374,53.301413],[-3.011238,53.300134],[-3.012837,53.298971],[-3.018553,53.300007],[-3.021268,53.29901],[-3.022002,53.29844],[-3.023984,53.299385],[-3.02614,53.297749],[-3.030509,53.299229],[-3.031355,53.29853],[-3.036597,53.300985],[-3.036577,53.3024],[-3.038475,53.30515],[-3.039245,53.305442],[-3.041657,53.305199],[-3.042315,53.306526],[-3.045861,53.307357],[-3.048164,53.309612],[-3.048391,53.310961],[-3.05121,53.310672],[-3.059659,53.309004],[-3.064253,53.312197],[-3.068272,53.314195],[-3.074166,53.316381],[-3.076391,53.314448],[-3.078141,53.315068],[-3.080394,53.313246],[-3.080976,53.31192],[-3.083081,53.310786],[-3.091292,53.30723],[-3.109194,53.29714],[-3.109234,53.295504],[-3.108737,53.29488],[-3.112076,53.294128],[-3.114093,53.294378],[-3.116347,53.293107],[-3.116604,53.292962],[-3.117043,53.292714],[-3.117089,53.292688],[-3.118311,53.292],[-3.118433,53.291931],[-3.123055,53.289324],[-3.122898,53.288294],[-3.120268,53.288577],[-3.11968,53.28798],[-3.120088,53.286617],[-3.118228,53.284835],[-3.117769,53.283854],[-3.116117,53.283448],[-3.114705,53.283952],[-3.109613,53.28258],[-3.108559,53.283091],[-3.108148,53.284922],[-3.105558,53.285302],[-3.106633,53.283824],[-3.106484,53.282978],[-3.10745,53.28191],[-3.098633,53.279927],[-3.09671,53.280429],[-3.095857,53.282728],[-3.095044,53.281221],[-3.095653,53.280265],[-3.098264,53.279355],[-3.100829,53.279461],[-3.102944,53.279047],[-3.105068,53.280408],[-3.106903,53.280515],[-3.108588,53.27987],[-3.108273,53.278436],[-3.104445,53.278961],[-3.101276,53.278629],[-3.100488,53.279086],[-3.097022,53.279124],[-3.092041,53.277938],[-3.089957,53.278567],[-3.089858,53.279616],[-3.088021,53.279677],[-3.090205,53.278055],[-3.095129,53.277213],[-3.097439,53.278359],[-3.10094,53.278094],[-3.104118,53.278268],[-3.104699,53.277753],[-3.110101,53.276725],[-3.10947,53.274657],[-3.108301,53.273658],[-3.105318,53.27314],[-3.104705,53.273308],[-3.102773,53.271522],[-3.099758,53.271568],[-3.101893,53.270567],[-3.106126,53.271224],[-3.107222,53.271957],[-3.10168,53.267246],[-3.101655,53.267224],[-3.097444,53.263643],[-3.095433,53.262175],[-3.095396,53.262148],[-3.094447,53.261457],[-3.094347,53.261384],[-3.092604,53.260226],[-3.092545,53.260196],[-3.091393,53.259595],[-3.091123,53.259454],[-3.085956,53.256774],[-3.083848,53.257159],[-3.082686,53.255673],[-3.080523,53.254944],[-3.074425,53.253707],[-3.069137,53.253005],[-3.048671,53.252209],[-3.036063,53.251806],[-3.025905,53.248456],[-3.016423,53.244122],[-2.992559,53.233015],[-2.984912,53.228471],[-2.977837,53.225394],[-2.966163,53.21869],[-2.94951,53.21128],[-2.943676,53.204026],[-2.937566,53.197859],[-2.935653,53.196491],[-2.929238,53.194291],[-2.925163,53.191046],[-2.922299,53.189293],[-2.920492,53.182914],[-2.905791,53.193637],[-2.902427,53.19247],[-2.902439,53.189867],[-2.904171,53.187276],[-2.904261,53.18626],[-2.902956,53.184658],[-2.900791,53.183774],[-2.893141,53.184043],[-2.891999,53.184349],[-2.889699,53.185868],[-2.888293,53.185179],[-2.892746,53.1834],[-2.900164,53.182956],[-2.902479,53.183516],[-2.903736,53.184218],[-2.905045,53.185823],[-2.905082,53.187233],[-2.903735,53.189458],[-2.903258,53.191252],[-2.903903,53.192458],[-2.90538,53.193047],[-2.919487,53.182476],[-2.920387,53.182219],[-2.920319,53.179431],[-2.920956,53.177086],[-2.922851,53.175291],[-2.92659,53.173357],[-2.92784,53.171411],[-2.933907,53.169389],[-2.944041,53.165248],[-2.946553,53.167112],[-2.948907,53.166007],[-2.951026,53.165953],[-2.953479,53.165351],[-2.956358,53.163777],[-2.96122,53.16275],[-2.962841,53.161994],[-2.966263,53.159865],[-2.96837,53.160589],[-2.970926,53.160782],[-2.975198,53.157423],[-2.978913,53.157185],[-2.981492,53.156292],[-2.983756,53.157607],[-2.98464,53.158595],[-2.986666,53.157973],[-2.988124,53.156928],[-2.989957,53.157542],[-2.990507,53.156955],[-2.992274,53.156665],[-2.99306,53.154925],[-2.995088,53.154196],[-2.992929,53.153288],[-2.990426,53.153055],[-2.987699,53.152096],[-2.986397,53.150395],[-2.986404,53.149464],[-2.984984,53.148794],[-2.984565,53.14778],[-2.98265,53.148862],[-2.980364,53.149377],[-2.979498,53.150622],[-2.963813,53.132757],[-2.960159,53.132483],[-2.958171,53.130409],[-2.955585,53.129943],[-2.95235,53.128592],[-2.947998,53.127812],[-2.946906,53.12727],[-2.945011,53.123193],[-2.94498,53.122278],[-2.942371,53.121392],[-2.940403,53.122393],[-2.937645,53.120854],[-2.93441,53.121486],[-2.931925,53.120094],[-2.929043,53.120329],[-2.928559,53.119826],[-2.923967,53.118582],[-2.923138,53.118103],[-2.920836,53.118424],[-2.921305,53.117294],[-2.919962,53.116802],[-2.919725,53.116071],[-2.917098,53.115261],[-2.917297,53.114794],[-2.91438,53.114334],[-2.913795,53.113671],[-2.910233,53.112639],[-2.909406,53.113098],[-2.906785,53.112808],[-2.906059,53.112253],[-2.903392,53.111798],[-2.899416,53.114046],[-2.897002,53.113994],[-2.895181,53.115015],[-2.895122,53.116492],[-2.892063,53.11797],[-2.891704,53.118749],[-2.888034,53.119821],[-2.887973,53.120713],[-2.8865,53.121384],[-2.885237,53.120443],[-2.884094,53.120651],[-2.882118,53.121779],[-2.880942,53.121375],[-2.88162,53.118256],[-2.884026,53.113771],[-2.883879,53.111343],[-2.886588,53.110859],[-2.887806,53.109274],[-2.889902,53.108938],[-2.891716,53.109395],[-2.89163,53.107611],[-2.89308,53.105791],[-2.89338,53.104177],[-2.887951,53.105757],[-2.887304,53.104422],[-2.890351,53.099668],[-2.893487,53.096242],[-2.896791,53.095215],[-2.89782,53.096415],[-2.897555,53.09704],[-2.895303,53.097016],[-2.893954,53.098108],[-2.894838,53.098814],[-2.897139,53.099006],[-2.8994,53.097925],[-2.899149,53.094116],[-2.901447,53.093455],[-2.902161,53.092808],[-2.901854,53.091672],[-2.900944,53.090834],[-2.89579,53.091856],[-2.893576,53.091552],[-2.891915,53.090001],[-2.89182,53.088222],[-2.891051,53.087511],[-2.879913,53.08358],[-2.875722,53.081522],[-2.87725,53.079198],[-2.879273,53.077874],[-2.87952,53.076251],[-2.881255,53.075535],[-2.881751,53.074594],[-2.880799,53.073955],[-2.87583,53.073582],[-2.875633,53.072339],[-2.878048,53.070681],[-2.878199,53.069491],[-2.876214,53.06898],[-2.872319,53.070331],[-2.869358,53.069744],[-2.867686,53.066919],[-2.865509,53.066021],[-2.870201,53.064799],[-2.869627,53.063767],[-2.866683,53.063253],[-2.863922,53.063262],[-2.861513,53.060774],[-2.862419,53.060114],[-2.864678,53.060783],[-2.865801,53.060709],[-2.868293,53.059554],[-2.86968,53.05994],[-2.872563,53.058708],[-2.871764,53.057484],[-2.870287,53.056858],[-2.86798,53.056901],[-2.865676,53.058748],[-2.862408,53.058525],[-2.860886,53.057325],[-2.862423,53.056573],[-2.865599,53.057272],[-2.867093,53.056741],[-2.86688,53.055166],[-2.860201,53.054769],[-2.859236,53.054165],[-2.859789,53.052727],[-2.861036,53.052049],[-2.862924,53.053337],[-2.866091,53.052736],[-2.866046,53.051552],[-2.867669,53.051314],[-2.86854,53.050612],[-2.867674,53.049628],[-2.865909,53.050273],[-2.864827,53.051838],[-2.863008,53.051634],[-2.863476,53.049611],[-2.863119,53.048623],[-2.865339,53.047965],[-2.868486,53.04593],[-2.870118,53.045361],[-2.869299,53.044533],[-2.864998,53.045561],[-2.866396,53.044433],[-2.866262,53.043637],[-2.864185,53.043323],[-2.86251,53.044204],[-2.861601,53.043825],[-2.861287,53.042563],[-2.866704,53.040563],[-2.861873,53.038604],[-2.858946,53.038941],[-2.858199,53.038063],[-2.855715,53.037256],[-2.856643,53.035983],[-2.855512,53.034539],[-2.856135,53.032982],[-2.859285,53.030546],[-2.859185,53.029942],[-2.860496,53.028554],[-2.860388,53.026428],[-2.859714,53.025687],[-2.861044,53.022849],[-2.858736,53.020769],[-2.858702,53.0199],[-2.851627,53.016988],[-2.85028,53.018058],[-2.847765,53.019038],[-2.846223,53.018848],[-2.844062,53.017668],[-2.844279,53.016494],[-2.843527,53.015395],[-2.841251,53.014315],[-2.838522,53.010946],[-2.838735,53.010179],[-2.840759,53.01042],[-2.840621,53.007223],[-2.839868,53.006948],[-2.838469,53.005228],[-2.838042,53.003041],[-2.836198,53.001578],[-2.836172,53.000632],[-2.834898,52.998658],[-2.835996,52.99715],[-2.832204,52.996548],[-2.829311,52.995384],[-2.827862,52.994373],[-2.824287,52.993362],[-2.822517,52.993513],[-2.820757,52.994426],[-2.815222,52.993115],[-2.810146,52.992755],[-2.810237,52.991756],[-2.807156,52.991886],[-2.803712,52.991458],[-2.8039,52.989996],[-2.801043,52.990944],[-2.799383,52.989684],[-2.798137,52.989473],[-2.797226,52.991292],[-2.795219,52.991309],[-2.794503,52.990766],[-2.792365,52.990914],[-2.792031,52.992054],[-2.794254,52.992878],[-2.790967,52.995303],[-2.789324,52.995776],[-2.787691,52.995301],[-2.786139,52.994124],[-2.785002,52.994189],[-2.784416,52.995041],[-2.781946,52.996283],[-2.781587,52.994222],[-2.779736,52.993382],[-2.778418,52.994096],[-2.773528,52.994709],[-2.772611,52.993922],[-2.770427,52.993968],[-2.766857,52.994675],[-2.764411,52.993548],[-2.763791,52.992765],[-2.761014,52.990962],[-2.761686,52.989452],[-2.761601,52.987486],[-2.75994,52.98642],[-2.758532,52.98613],[-2.753718,52.986156],[-2.750775,52.986878],[-2.748167,52.986632],[-2.745733,52.987128],[-2.743742,52.987147],[-2.740229,52.985677],[-2.73727,52.984734],[-2.733384,52.984292],[-2.728908,52.984427],[-2.726841,52.983273],[-2.725105,52.982944],[-2.720301,52.984004],[-2.716573,52.984053],[-2.715143,52.985046],[-2.711879,52.986084],[-2.704566,52.990417],[-2.700767,52.993274],[-2.699293,52.995439]]]]},"properties":{"LAD22CD":"E06000050","LAD22NM":"Cheshire West and Chester","BNG_E":353097,"BNG_N":363145,"LONG":-2.70298,"LAT":53.16336,"GlobalID":"b6cf2ef9-dcd5-4200-a692-6e01782e9b01"},"id":47}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.380794,52.998411],[-2.382741,52.997903],[-2.384249,52.99795],[-2.385525,52.996664],[-2.389082,52.996169],[-2.389735,52.995392],[-2.391197,52.996478],[-2.397485,52.994998],[-2.400802,52.995456],[-2.403325,52.995102],[-2.404801,52.995716],[-2.406987,52.995917],[-2.407254,52.995191],[-2.405057,52.994235],[-2.405581,52.992468],[-2.404475,52.991654],[-2.405227,52.990801],[-2.408322,52.989764],[-2.410862,52.987925],[-2.41223,52.988259],[-2.416202,52.988197],[-2.417539,52.987897],[-2.418889,52.988483],[-2.420553,52.987828],[-2.421022,52.987169],[-2.423787,52.986342],[-2.425475,52.986398],[-2.428884,52.98578],[-2.431639,52.986064],[-2.432358,52.987067],[-2.433598,52.986651],[-2.435368,52.986709],[-2.438169,52.985568],[-2.438491,52.984615],[-2.435685,52.98295],[-2.436681,52.982099],[-2.43499,52.980818],[-2.434091,52.979661],[-2.434224,52.978877],[-2.436031,52.977816],[-2.434532,52.977148],[-2.43421,52.976217],[-2.435661,52.975159],[-2.436276,52.973391],[-2.435394,52.973038],[-2.434469,52.971704],[-2.434614,52.969521],[-2.438756,52.969286],[-2.441823,52.970011],[-2.442958,52.970739],[-2.44669,52.968115],[-2.449228,52.967119],[-2.450257,52.966052],[-2.451172,52.966199],[-2.452875,52.965402],[-2.459814,52.964596],[-2.460169,52.963964],[-2.461956,52.963721],[-2.463858,52.964054],[-2.470433,52.96149],[-2.472551,52.962169],[-2.475084,52.962489],[-2.47595,52.961945],[-2.477828,52.961711],[-2.477676,52.960795],[-2.480081,52.959976],[-2.481153,52.958818],[-2.484056,52.960133],[-2.484679,52.961259],[-2.486875,52.962938],[-2.487716,52.965126],[-2.490788,52.965047],[-2.490679,52.966298],[-2.491701,52.967684],[-2.495678,52.968488],[-2.499023,52.968435],[-2.500814,52.967253],[-2.506539,52.965837],[-2.509415,52.965956],[-2.511098,52.96686],[-2.511769,52.96994],[-2.514316,52.971924],[-2.517015,52.972328],[-2.519626,52.973281],[-2.52132,52.974302],[-2.522198,52.973742],[-2.52155,52.972985],[-2.522567,52.972054],[-2.52323,52.970329],[-2.522315,52.968209],[-2.523986,52.966027],[-2.523058,52.963123],[-2.523495,52.960879],[-2.522764,52.958868],[-2.523589,52.956204],[-2.524267,52.955916],[-2.523281,52.954355],[-2.525357,52.953684],[-2.527482,52.951803],[-2.526865,52.951168],[-2.529302,52.949415],[-2.529516,52.947165],[-2.532034,52.947286],[-2.535061,52.948087],[-2.539151,52.95193],[-2.541015,52.952746],[-2.546355,52.956838],[-2.547947,52.95706],[-2.550474,52.956665],[-2.553698,52.957466],[-2.555873,52.959027],[-2.557615,52.962176],[-2.559111,52.962222],[-2.561671,52.964244],[-2.564356,52.963533],[-2.566513,52.963949],[-2.568117,52.963096],[-2.568844,52.961962],[-2.571256,52.962147],[-2.572103,52.962858],[-2.573797,52.962323],[-2.573247,52.961463],[-2.571521,52.96076],[-2.570293,52.959743],[-2.573089,52.959239],[-2.573565,52.958509],[-2.574934,52.958333],[-2.574891,52.957381],[-2.576658,52.956177],[-2.578144,52.955729],[-2.583625,52.95628],[-2.58443,52.955589],[-2.586203,52.955314],[-2.588479,52.957023],[-2.589067,52.958938],[-2.590653,52.959284],[-2.591328,52.960411],[-2.592649,52.960897],[-2.594918,52.960993],[-2.595882,52.962162],[-2.597694,52.963006],[-2.595802,52.96554],[-2.596332,52.966529],[-2.596028,52.967669],[-2.597033,52.968574],[-2.596891,52.96956],[-2.598447,52.971718],[-2.596623,52.973476],[-2.592756,52.974169],[-2.5954,52.97593],[-2.598894,52.975113],[-2.59963,52.975433],[-2.599156,52.976702],[-2.596703,52.977868],[-2.594889,52.979607],[-2.595926,52.979699],[-2.598109,52.979067],[-2.600625,52.978791],[-2.604205,52.978983],[-2.605684,52.979398],[-2.603699,52.981797],[-2.605466,52.985432],[-2.607142,52.98674],[-2.6067,52.987273],[-2.607734,52.988362],[-2.614985,52.987766],[-2.618968,52.986611],[-2.62194,52.986742],[-2.625756,52.989182],[-2.627592,52.990967],[-2.628237,52.992511],[-2.628028,52.995169],[-2.630923,52.995883],[-2.632651,52.996671],[-2.634069,52.995992],[-2.635075,52.996734],[-2.636372,52.996511],[-2.637371,52.994851],[-2.642805,52.993481],[-2.644529,52.995013],[-2.648611,52.995261],[-2.652357,52.994994],[-2.654419,52.993323],[-2.655428,52.993138],[-2.657686,52.991614],[-2.658299,52.992056],[-2.660807,52.991451],[-2.664379,52.989016],[-2.668102,52.988211],[-2.668118,52.98774],[-2.671575,52.987123],[-2.674662,52.985663],[-2.676186,52.986495],[-2.679676,52.986565],[-2.680903,52.986111],[-2.687079,52.98683],[-2.686443,52.988244],[-2.688776,52.989936],[-2.691839,52.990505],[-2.694415,52.993344],[-2.69447,52.993942],[-2.696697,52.994863],[-2.699293,52.995439],[-2.700767,52.993274],[-2.704566,52.990417],[-2.711879,52.986084],[-2.715143,52.985046],[-2.716573,52.984053],[-2.720301,52.984004],[-2.725105,52.982944],[-2.726841,52.983273],[-2.726588,52.981778],[-2.727992,52.980137],[-2.729577,52.979723],[-2.729305,52.978731],[-2.73208,52.976955],[-2.73175,52.975597],[-2.730728,52.974851],[-2.73254,52.972813],[-2.733287,52.97154],[-2.735294,52.969946],[-2.732884,52.96755],[-2.728065,52.966776],[-2.726691,52.964775],[-2.726823,52.963396],[-2.728088,52.961952],[-2.727396,52.95932],[-2.726679,52.958555],[-2.724697,52.957819],[-2.724176,52.956458],[-2.727875,52.953626],[-2.727177,52.949051],[-2.728163,52.946992],[-2.726059,52.945729],[-2.725605,52.940542],[-2.727014,52.939801],[-2.726516,52.937968],[-2.727054,52.93431],[-2.725919,52.929976],[-2.726688,52.927729],[-2.728542,52.925178],[-2.744573,52.924437],[-2.755327,52.924628],[-2.77211,52.914266],[-2.778518,52.909976],[-2.781387,52.909238],[-2.781661,52.9087],[-2.793188,52.901221],[-2.792732,52.8994],[-2.794261,52.897344],[-2.798848,52.895759],[-2.800467,52.895515],[-2.800469,52.896658],[-2.80144,52.896763],[-2.801994,52.899904],[-2.804285,52.903262],[-2.807254,52.906582],[-2.810243,52.90766],[-2.812976,52.909563],[-2.812312,52.912677],[-2.812386,52.914157],[-2.813026,52.914941],[-2.817957,52.917645],[-2.819096,52.91888],[-2.821229,52.919138],[-2.824038,52.922838],[-2.834769,52.929828],[-2.834446,52.930904],[-2.835534,52.931092],[-2.835873,52.932157],[-2.838496,52.932184],[-2.839048,52.933495],[-2.839794,52.933741],[-2.841852,52.938048],[-2.840613,52.939074],[-2.840219,52.941921],[-2.841015,52.942624],[-2.843197,52.942193],[-2.849074,52.944919],[-2.853077,52.943889],[-2.854839,52.943725],[-2.860392,52.944344],[-2.861282,52.944676],[-2.863784,52.944622],[-2.864282,52.945008],[-2.866856,52.945385],[-2.869801,52.944771],[-2.871571,52.945262],[-2.883662,52.946669],[-2.886047,52.94838],[-2.887432,52.95253],[-2.890308,52.950455],[-2.893169,52.951192],[-2.896476,52.95092],[-2.898292,52.950275],[-2.900864,52.948197],[-2.901388,52.946571],[-2.902937,52.9444],[-2.904937,52.943978],[-2.908188,52.942085],[-2.910912,52.942387],[-2.914158,52.942412],[-2.91885,52.943567],[-2.920278,52.943395],[-2.924637,52.942344],[-2.927446,52.941882],[-2.927286,52.938794],[-2.928889,52.938679],[-2.93001,52.939386],[-2.931439,52.939577],[-2.932465,52.940574],[-2.934326,52.941083],[-2.934965,52.941806],[-2.937236,52.942586],[-2.940706,52.943376],[-2.943286,52.944815],[-2.948606,52.946037],[-2.948827,52.946772],[-2.950852,52.946921],[-2.951465,52.947594],[-2.955732,52.949115],[-2.956818,52.950009],[-2.959814,52.95117],[-2.960123,52.95236],[-2.962401,52.953619],[-2.962709,52.955742],[-2.964058,52.956388],[-2.965661,52.956112],[-2.966224,52.957385],[-2.96727,52.958345],[-2.968935,52.959055],[-2.971549,52.959035],[-2.972828,52.960462],[-2.971187,52.962],[-2.969467,52.962844],[-2.968487,52.964176],[-2.97477,52.968952],[-2.977404,52.967265],[-2.979494,52.965211],[-2.979863,52.96194],[-2.982023,52.959198],[-2.985925,52.958707],[-2.988383,52.959026],[-2.990395,52.959788],[-2.993799,52.95812],[-2.99754,52.958334],[-3.003544,52.957952],[-3.005066,52.957068],[-3.008614,52.956591],[-3.009856,52.956036],[-3.011395,52.952002],[-3.01325,52.948726],[-3.014519,52.948215],[-3.017049,52.948697],[-3.016911,52.947117],[-3.018373,52.947066],[-3.02007,52.945959],[-3.019227,52.945033],[-3.021156,52.944603],[-3.020907,52.943296],[-3.021983,52.943258],[-3.024028,52.942361],[-3.023023,52.940698],[-3.025595,52.93824],[-3.025629,52.937316],[-3.023874,52.936458],[-3.026502,52.936042],[-3.02845,52.936714],[-3.029236,52.935547],[-3.028996,52.93436],[-3.031076,52.933798],[-3.031406,52.931394],[-3.033848,52.930408],[-3.034875,52.929571],[-3.040839,52.927936],[-3.043386,52.928276],[-3.04564,52.929145],[-3.046711,52.928024],[-3.047964,52.927869],[-3.052181,52.929337],[-3.054846,52.92903],[-3.056418,52.928026],[-3.059922,52.929279],[-3.061514,52.929108],[-3.063049,52.926901],[-3.063874,52.926349],[-3.066014,52.926276],[-3.070194,52.92679],[-3.073017,52.925999],[-3.076513,52.925479],[-3.078374,52.925954],[-3.080775,52.926136],[-3.082553,52.926689],[-3.084357,52.926591],[-3.085742,52.928518],[-3.088289,52.929385],[-3.090844,52.929252],[-3.094232,52.929681],[-3.095953,52.930282],[-3.099734,52.928007],[-3.101793,52.926142],[-3.103141,52.924022],[-3.105859,52.921522],[-3.108278,52.920291],[-3.109577,52.918444],[-3.112912,52.911497],[-3.113304,52.9092],[-3.112755,52.906367],[-3.114696,52.904532],[-3.116894,52.899693],[-3.113813,52.895329],[-3.115335,52.894606],[-3.121869,52.895447],[-3.12333,52.895377],[-3.124624,52.894751],[-3.126656,52.894347],[-3.130281,52.894339],[-3.133226,52.89514],[-3.137518,52.894917],[-3.144695,52.892997],[-3.147505,52.890175],[-3.145756,52.889259],[-3.141403,52.888048],[-3.140273,52.887283],[-3.138313,52.887072],[-3.136187,52.886216],[-3.136606,52.884903],[-3.140127,52.885588],[-3.142754,52.885062],[-3.14417,52.885182],[-3.147042,52.884697],[-3.148305,52.881234],[-3.151092,52.88075],[-3.152487,52.879809],[-3.152417,52.878748],[-3.149824,52.876967],[-3.145381,52.875368],[-3.141826,52.873437],[-3.139757,52.873579],[-3.137212,52.872173],[-3.13618,52.870698],[-3.134425,52.869827],[-3.130636,52.869663],[-3.129056,52.869261],[-3.127713,52.867103],[-3.134419,52.861797],[-3.138878,52.861361],[-3.142342,52.860102],[-3.144563,52.857565],[-3.146276,52.856817],[-3.147644,52.855732],[-3.150726,52.855591],[-3.154002,52.854284],[-3.154122,52.853307],[-3.155789,52.853103],[-3.158192,52.850445],[-3.159737,52.850321],[-3.16128,52.849304],[-3.161437,52.848025],[-3.163015,52.847491],[-3.158501,52.846625],[-3.155099,52.844943],[-3.154609,52.844103],[-3.151261,52.842565],[-3.152255,52.840298],[-3.15533,52.838754],[-3.15548,52.837411],[-3.156479,52.837014],[-3.154169,52.833155],[-3.154066,52.832126],[-3.155587,52.831485],[-3.155104,52.830727],[-3.156677,52.830046],[-3.158197,52.829959],[-3.159165,52.828952],[-3.159542,52.827624],[-3.161409,52.82557],[-3.163806,52.824058],[-3.1649,52.8229],[-3.165368,52.821392],[-3.167888,52.819267],[-3.167693,52.817262],[-3.16604,52.815313],[-3.165464,52.812046],[-3.167318,52.810297],[-3.168357,52.808225],[-3.168205,52.807328],[-3.166922,52.807121],[-3.166222,52.805824],[-3.162492,52.803661],[-3.16142,52.80359],[-3.158322,52.807228],[-3.156266,52.808015],[-3.154301,52.807488],[-3.15319,52.806369],[-3.153567,52.803671],[-3.154121,52.802521],[-3.15713,52.800489],[-3.159139,52.799688],[-3.161915,52.799253],[-3.161083,52.796048],[-3.158425,52.793488],[-3.156459,52.793582],[-3.15183,52.79299],[-3.151074,52.792553],[-3.147998,52.792091],[-3.146769,52.79124],[-3.146275,52.789268],[-3.14456,52.788512],[-3.143637,52.789903],[-3.141622,52.78992],[-3.134626,52.788524],[-3.13129,52.787561],[-3.127128,52.787399],[-3.125789,52.786956],[-3.12253,52.787575],[-3.11891,52.787224],[-3.11953,52.785513],[-3.118287,52.783582],[-3.116171,52.784265],[-3.115926,52.785401],[-3.113762,52.786549],[-3.112189,52.785766],[-3.109748,52.786687],[-3.109708,52.788231],[-3.107272,52.789695],[-3.107527,52.790717],[-3.108466,52.791417],[-3.106101,52.792955],[-3.102397,52.792611],[-3.097731,52.791374],[-3.096463,52.792425],[-3.093462,52.793686],[-3.090958,52.796031],[-3.086632,52.795593],[-3.085588,52.793362],[-3.085738,52.790304],[-3.089022,52.788129],[-3.091178,52.787458],[-3.091694,52.786752],[-3.08778,52.779847],[-3.08882,52.777539],[-3.085231,52.777314],[-3.083933,52.777882],[-3.080649,52.777441],[-3.080512,52.77606],[-3.077858,52.773756],[-3.079959,52.772949],[-3.079516,52.771514],[-3.074246,52.769617],[-3.071575,52.770163],[-3.070357,52.771618],[-3.070661,52.772766],[-3.069556,52.774222],[-3.066796,52.773785],[-3.064872,52.771657],[-3.06285,52.771183],[-3.064116,52.769648],[-3.062611,52.769075],[-3.06117,52.769311],[-3.061317,52.770732],[-3.058933,52.771286],[-3.059003,52.772078],[-3.057926,52.773685],[-3.053907,52.773564],[-3.050101,52.772288],[-3.04779,52.772643],[-3.04767,52.771968],[-3.049642,52.771649],[-3.052742,52.77045],[-3.053128,52.769353],[-3.051542,52.768566],[-3.049849,52.769469],[-3.048932,52.768941],[-3.047593,52.767279],[-3.045804,52.767501],[-3.045139,52.768942],[-3.043425,52.769506],[-3.040336,52.76909],[-3.039578,52.770225],[-3.038035,52.769983],[-3.037577,52.769197],[-3.036104,52.769003],[-3.035366,52.767689],[-3.032646,52.767256],[-3.033118,52.766539],[-3.034865,52.766208],[-3.036943,52.76528],[-3.035575,52.764073],[-3.033546,52.764221],[-3.03299,52.765883],[-3.030584,52.766191],[-3.028843,52.765828],[-3.02716,52.766998],[-3.025726,52.766749],[-3.026235,52.765026],[-3.023734,52.76417],[-3.022041,52.764448],[-3.021498,52.765591],[-3.019789,52.766192],[-3.018731,52.767499],[-3.0172,52.767664],[-3.016453,52.766207],[-3.013121,52.764408],[-3.012274,52.762875],[-3.010614,52.761551],[-3.011255,52.759997],[-3.010837,52.758449],[-3.012961,52.756753],[-3.013302,52.755626],[-3.014486,52.754214],[-3.01436,52.752994],[-3.017205,52.753381],[-3.020375,52.753007],[-3.021891,52.752379],[-3.02113,52.751556],[-3.01797,52.750618],[-3.016643,52.748531],[-3.015383,52.748134],[-3.013615,52.749649],[-3.009769,52.750347],[-3.008075,52.748933],[-3.008115,52.747746],[-3.00562,52.747693],[-3.004676,52.746701],[-3.002408,52.746324],[-2.999795,52.744737],[-2.997671,52.743936],[-2.994894,52.744427],[-2.991993,52.743756],[-2.990583,52.742195],[-2.993106,52.740582],[-2.992319,52.739397],[-2.99354,52.738376],[-2.995027,52.739037],[-2.996801,52.738952],[-2.997383,52.738355],[-2.996562,52.73611],[-2.994011,52.735531],[-2.99103,52.733718],[-2.987068,52.733368],[-2.981483,52.733564],[-2.977095,52.734374],[-2.973653,52.735735],[-2.970758,52.734838],[-2.969428,52.733362],[-2.969049,52.731972],[-2.965066,52.732268],[-2.966633,52.729123],[-2.9655,52.72832],[-2.966742,52.727025],[-2.966698,52.725646],[-2.961722,52.725565],[-2.96222,52.72464],[-2.9611,52.7207],[-2.962344,52.719886],[-2.961433,52.718734],[-2.9611,52.716387],[-2.961549,52.715674],[-2.962923,52.715479],[-2.9656,52.714408],[-2.967403,52.714285],[-2.978103,52.715357],[-2.977252,52.717017],[-2.977411,52.719667],[-2.977134,52.720422],[-2.975418,52.721649],[-2.97612,52.724607],[-2.977492,52.725671],[-2.977592,52.726592],[-2.982158,52.72576],[-2.984684,52.723477],[-2.984935,52.722852],[-2.987401,52.722282],[-2.989206,52.722634],[-2.993012,52.722058],[-2.996864,52.721769],[-2.997574,52.720856],[-3.000555,52.720275],[-3.003049,52.720908],[-3.005434,52.7205],[-3.008367,52.722119],[-3.011559,52.720629],[-3.01838,52.721266],[-3.018121,52.722211],[-3.018872,52.72433],[-3.020357,52.725102],[-3.021477,52.724245],[-3.020305,52.721724],[-3.020432,52.72115],[-3.02215,52.719888],[-3.02355,52.719749],[-3.02368,52.718468],[-3.025338,52.716512],[-3.025374,52.714741],[-3.023558,52.712054],[-3.02175,52.710633],[-3.022208,52.708635],[-3.022989,52.707581],[-3.022486,52.706668],[-3.025393,52.705159],[-3.025913,52.703457],[-3.027093,52.702929],[-3.029377,52.702693],[-3.030191,52.701989],[-3.030654,52.700611],[-3.032123,52.69989],[-3.032119,52.6966],[-3.032986,52.696017],[-3.033523,52.694217],[-3.034224,52.693441],[-3.036024,52.69254],[-3.037776,52.692897],[-3.038945,52.692362],[-3.041356,52.692744],[-3.047048,52.691266],[-3.046638,52.690083],[-3.043492,52.687938],[-3.042674,52.686819],[-3.043315,52.683928],[-3.042082,52.681497],[-3.042692,52.680895],[-3.042578,52.679375],[-3.045657,52.675464],[-3.041909,52.675766],[-3.03858,52.675373],[-3.043077,52.672113],[-3.042636,52.670715],[-3.043033,52.66751],[-3.04471,52.665616],[-3.046159,52.665105],[-3.046744,52.664261],[-3.048711,52.663061],[-3.049385,52.661212],[-3.048646,52.660176],[-3.048634,52.65756],[-3.047613,52.657036],[-3.045445,52.656763],[-3.044936,52.655908],[-3.047313,52.654433],[-3.049877,52.654689],[-3.050598,52.652851],[-3.052221,52.651177],[-3.05132,52.649455],[-3.051116,52.647366],[-3.055069,52.647202],[-3.056279,52.647555],[-3.058174,52.64745],[-3.059686,52.64685],[-3.060466,52.645834],[-3.061715,52.64541],[-3.06763,52.645486],[-3.069885,52.645796],[-3.073367,52.644156],[-3.076455,52.643468],[-3.081713,52.641183],[-3.083566,52.641292],[-3.081277,52.639372],[-3.079358,52.639706],[-3.076321,52.63941],[-3.074242,52.638735],[-3.072422,52.637395],[-3.069576,52.637496],[-3.068021,52.636041],[-3.063731,52.63416],[-3.059801,52.630721],[-3.064557,52.629985],[-3.067824,52.630536],[-3.069887,52.629158],[-3.072287,52.628723],[-3.074947,52.627034],[-3.072058,52.626095],[-3.079618,52.623395],[-3.0809,52.622439],[-3.083341,52.618556],[-3.082677,52.618228],[-3.083092,52.616912],[-3.082043,52.616347],[-3.082601,52.615633],[-3.086276,52.613951],[-3.088116,52.61277],[-3.088141,52.612141],[-3.093623,52.609339],[-3.09161,52.607099],[-3.091234,52.605627],[-3.089286,52.603332],[-3.089727,52.601597],[-3.089528,52.599525],[-3.092502,52.598844],[-3.094058,52.597994],[-3.09567,52.59903],[-3.096881,52.598894],[-3.098264,52.597919],[-3.099201,52.597956],[-3.100977,52.596404],[-3.102057,52.594915],[-3.105534,52.594916],[-3.109803,52.590246],[-3.112352,52.590716],[-3.113809,52.588748],[-3.117338,52.586376],[-3.119236,52.585837],[-3.120389,52.586781],[-3.123224,52.587128],[-3.123939,52.587613],[-3.126006,52.587012],[-3.127152,52.586008],[-3.129088,52.586538],[-3.130441,52.585844],[-3.133072,52.585822],[-3.134442,52.58492],[-3.136028,52.586071],[-3.13835,52.585869],[-3.139359,52.585122],[-3.137435,52.58392],[-3.136313,52.584255],[-3.134981,52.58368],[-3.136284,52.582773],[-3.138586,52.582932],[-3.138272,52.578272],[-3.137771,52.577628],[-3.138129,52.576303],[-3.137708,52.573834],[-3.134527,52.571957],[-3.131538,52.568131],[-3.128988,52.567337],[-3.128369,52.566203],[-3.12736,52.56605],[-3.126152,52.563845],[-3.117208,52.551518],[-3.111496,52.541364],[-3.112552,52.540697],[-3.113918,52.540613],[-3.116385,52.539197],[-3.116975,52.538385],[-3.118778,52.538546],[-3.121464,52.537448],[-3.125815,52.536998],[-3.128035,52.536154],[-3.13008,52.53673],[-3.132566,52.535842],[-3.132989,52.535289],[-3.135481,52.534925],[-3.137169,52.533937],[-3.136419,52.531597],[-3.135135,52.530526],[-3.134936,52.528421],[-3.131492,52.527014],[-3.129611,52.527433],[-3.128868,52.528152],[-3.126867,52.528383],[-3.122554,52.527799],[-3.119867,52.528465],[-3.113999,52.529064],[-3.112102,52.528794],[-3.110252,52.529469],[-3.108683,52.529167],[-3.10582,52.530275],[-3.102994,52.530822],[-3.100148,52.530769],[-3.097927,52.532628],[-3.096123,52.532134],[-3.09428,52.533343],[-3.093221,52.532962],[-3.091118,52.5332],[-3.090162,52.533887],[-3.088774,52.533671],[-3.08537,52.535185],[-3.083757,52.535516],[-3.082618,52.536224],[-3.08255,52.53723],[-3.080751,52.539144],[-3.083198,52.539601],[-3.083516,52.541471],[-3.086266,52.541914],[-3.087919,52.54257],[-3.09056,52.542748],[-3.093943,52.544902],[-3.092966,52.547234],[-3.090557,52.548563],[-3.0861,52.54874],[-3.087276,52.551331],[-3.080672,52.551884],[-3.074569,52.553725],[-3.071307,52.554023],[-3.070961,52.555278],[-3.069238,52.554971],[-3.065004,52.556829],[-3.062907,52.556438],[-3.060547,52.555319],[-3.059817,52.555561],[-3.05807,52.557892],[-3.057004,52.558591],[-3.054071,52.558825],[-3.049915,52.560692],[-3.049754,52.563116],[-3.047284,52.563699],[-3.043878,52.568128],[-3.041267,52.568923],[-3.0394,52.570315],[-3.036452,52.571804],[-3.034775,52.572165],[-3.028336,52.572878],[-3.020451,52.574614],[-3.01862,52.5745],[-3.016844,52.575165],[-3.01444,52.575497],[-3.009818,52.574462],[-3.008011,52.574373],[-3.006484,52.573849],[-3.002947,52.570092],[-3.003141,52.5693],[-3.001631,52.568875],[-3.000566,52.567981],[-3.000916,52.567431],[-3.00016,52.565644],[-2.998578,52.565243],[-2.997604,52.563844],[-2.999445,52.558981],[-2.997909,52.55806],[-2.998018,52.556471],[-2.999375,52.555586],[-2.998665,52.554453],[-2.996503,52.553235],[-2.994307,52.553048],[-2.994722,52.551301],[-2.995642,52.550698],[-2.996239,52.549314],[-2.997765,52.548066],[-2.998373,52.546375],[-2.998202,52.54534],[-2.998837,52.543387],[-2.999782,52.542134],[-2.999967,52.540419],[-3.001657,52.538531],[-3.002028,52.53663],[-3.003878,52.533575],[-3.003759,52.532392],[-3.001814,52.531992],[-3.003395,52.530953],[-3.004209,52.529562],[-3.005075,52.529461],[-3.002111,52.525899],[-3.002318,52.525015],[-3.000906,52.52411],[-3.001474,52.522535],[-3.00374,52.521419],[-3.003874,52.519833],[-3.005731,52.519964],[-3.006775,52.520593],[-3.008315,52.520575],[-3.010629,52.520061],[-3.011292,52.521375],[-3.013106,52.522131],[-3.013961,52.521751],[-3.016113,52.521785],[-3.016635,52.522284],[-3.020325,52.523152],[-3.021407,52.522571],[-3.02301,52.522634],[-3.024375,52.523569],[-3.026047,52.523866],[-3.029233,52.523513],[-3.032379,52.523731],[-3.030796,52.519522],[-3.032014,52.519117],[-3.032672,52.5176],[-3.033473,52.517322],[-3.034352,52.515148],[-3.035387,52.514857],[-3.036711,52.513277],[-3.035968,52.512867],[-3.036364,52.511423],[-3.032183,52.509757],[-3.032111,52.509284],[-3.03428,52.506374],[-3.034576,52.505017],[-3.033478,52.5038],[-3.030775,52.50307],[-3.029202,52.501268],[-3.040394,52.500644],[-3.040261,52.500177],[-3.044269,52.500138],[-3.044662,52.499279],[-3.046365,52.499062],[-3.055789,52.499973],[-3.059527,52.499601],[-3.063173,52.499851],[-3.075765,52.499405],[-3.080285,52.498781],[-3.082471,52.498859],[-3.085023,52.498538],[-3.089958,52.499182],[-3.093662,52.499054],[-3.098541,52.499749],[-3.108124,52.499301],[-3.111547,52.498851],[-3.113547,52.498248],[-3.11489,52.497004],[-3.117176,52.49591],[-3.117839,52.494746],[-3.120768,52.494486],[-3.124873,52.492837],[-3.128259,52.492074],[-3.140386,52.491667],[-3.142552,52.490848],[-3.145329,52.488548],[-3.148291,52.487421],[-3.157528,52.485178],[-3.171016,52.478728],[-3.178699,52.474414],[-3.180592,52.473836],[-3.19443,52.476403],[-3.19724,52.475989],[-3.196851,52.474612],[-3.202002,52.472805],[-3.204001,52.471332],[-3.206008,52.470378],[-3.208165,52.469955],[-3.211244,52.468247],[-3.211977,52.468164],[-3.213671,52.466375],[-3.215887,52.465552],[-3.216881,52.462712],[-3.217602,52.462393],[-3.218314,52.460888],[-3.219683,52.460038],[-3.222988,52.457151],[-3.230294,52.453758],[-3.231659,52.452941],[-3.233427,52.451163],[-3.234268,52.448639],[-3.233457,52.446136],[-3.234287,52.444772],[-3.235072,52.444924],[-3.235541,52.442498],[-3.234829,52.441308],[-3.232542,52.440001],[-3.230722,52.439964],[-3.22832,52.439512],[-3.229666,52.438394],[-3.228814,52.436508],[-3.230137,52.435246],[-3.229513,52.43398],[-3.230379,52.433474],[-3.230188,52.432169],[-3.230836,52.431829],[-3.230685,52.430486],[-3.22557,52.429176],[-3.223886,52.427431],[-3.222255,52.426779],[-3.220865,52.425015],[-3.219238,52.422034],[-3.219545,52.421253],[-3.215682,52.420349],[-3.214078,52.420473],[-3.213748,52.419742],[-3.211715,52.418978],[-3.210032,52.419177],[-3.207527,52.418719],[-3.205436,52.417893],[-3.198985,52.416942],[-3.198009,52.415788],[-3.194609,52.414491],[-3.191581,52.414561],[-3.190157,52.413483],[-3.188066,52.413006],[-3.188404,52.412175],[-3.186332,52.411719],[-3.178837,52.409397],[-3.177197,52.408369],[-3.172945,52.406531],[-3.171574,52.405416],[-3.171639,52.403979],[-3.170142,52.403005],[-3.166917,52.402489],[-3.16507,52.40168],[-3.1645,52.400681],[-3.160582,52.399929],[-3.15921,52.398053],[-3.160424,52.396116],[-3.160315,52.395124],[-3.161985,52.39375],[-3.16153,52.392156],[-3.160808,52.391367],[-3.158238,52.391546],[-3.15677,52.389799],[-3.155683,52.389649],[-3.154447,52.387715],[-3.152231,52.387365],[-3.1491,52.388138],[-3.147712,52.387379],[-3.141247,52.386871],[-3.134645,52.385159],[-3.133621,52.385383],[-3.130533,52.384503],[-3.127973,52.383417],[-3.127109,52.381403],[-3.126154,52.380541],[-3.122464,52.379069],[-3.120213,52.377481],[-3.118708,52.37764],[-3.110607,52.377193],[-3.107273,52.374673],[-3.10563,52.373917],[-3.103878,52.37364],[-3.103061,52.372261],[-3.101688,52.371122],[-3.102213,52.37056],[-3.100759,52.3678],[-3.099004,52.368493],[-3.09761,52.367958],[-3.09759,52.366841],[-3.095232,52.365574],[-3.094026,52.363961],[-3.091741,52.362502],[-3.087055,52.360992],[-3.08534,52.360728],[-3.08346,52.359487],[-3.077082,52.358167],[-3.074189,52.357416],[-3.070544,52.355977],[-3.070558,52.355024],[-3.067702,52.353822],[-3.065301,52.353344],[-3.065214,52.350066],[-3.059929,52.348009],[-3.057627,52.347612],[-3.052038,52.347734],[-3.049344,52.346925],[-3.046554,52.346535],[-3.041326,52.344339],[-3.036831,52.3448],[-3.035986,52.345296],[-3.0319,52.345667],[-3.026476,52.346829],[-3.021805,52.346537],[-3.013226,52.348259],[-3.010463,52.34917],[-3.010224,52.349548],[-3.005848,52.349056],[-3.004244,52.349218],[-3.002725,52.349946],[-3.00339,52.350989],[-2.998212,52.351926],[-2.995478,52.351718],[-2.993453,52.350659],[-2.99241,52.351538],[-2.990866,52.351673],[-2.989425,52.35069],[-2.987476,52.351407],[-2.985343,52.351099],[-2.983435,52.353303],[-2.981938,52.352134],[-2.978932,52.352767],[-2.978372,52.35387],[-2.976426,52.353927],[-2.974503,52.354701],[-2.972652,52.354152],[-2.971703,52.352363],[-2.97053,52.351357],[-2.96889,52.351923],[-2.963389,52.351427],[-2.961629,52.350618],[-2.961123,52.349618],[-2.959019,52.3491],[-2.957552,52.349692],[-2.954652,52.349155],[-2.952913,52.34878],[-2.948909,52.349409],[-2.947483,52.349247],[-2.944368,52.349999],[-2.933149,52.350052],[-2.93563,52.351438],[-2.936172,52.352935],[-2.934556,52.353113],[-2.934243,52.354083],[-2.931387,52.353292],[-2.930656,52.354993],[-2.931895,52.35629],[-2.934649,52.35769],[-2.93536,52.358735],[-2.938889,52.361058],[-2.936667,52.362234],[-2.934646,52.362206],[-2.933928,52.361738],[-2.931155,52.362879],[-2.930553,52.362811],[-2.928093,52.366099],[-2.926144,52.366995],[-2.924068,52.367145],[-2.920385,52.368294],[-2.917465,52.367759],[-2.915184,52.368847],[-2.911705,52.368596],[-2.910647,52.368062],[-2.907153,52.368344],[-2.903082,52.367573],[-2.902382,52.367081],[-2.900805,52.36727],[-2.902113,52.369612],[-2.903119,52.370056],[-2.908491,52.370186],[-2.910346,52.372124],[-2.913515,52.372514],[-2.914693,52.373816],[-2.916776,52.374423],[-2.922311,52.375147],[-2.922124,52.377012],[-2.920361,52.376909],[-2.919731,52.378382],[-2.9164,52.380897],[-2.91538,52.381015],[-2.914007,52.382133],[-2.915521,52.382873],[-2.916254,52.383774],[-2.919556,52.384541],[-2.917685,52.386288],[-2.915983,52.385811],[-2.913288,52.386252],[-2.905425,52.385783],[-2.905341,52.385096],[-2.903336,52.384209],[-2.902464,52.382951],[-2.899165,52.381602],[-2.898205,52.38152],[-2.897826,52.379786],[-2.89444,52.380082],[-2.892808,52.379157],[-2.895324,52.374365],[-2.893135,52.374088],[-2.891301,52.374533],[-2.891103,52.375531],[-2.891755,52.376233],[-2.889155,52.37689],[-2.886506,52.378511],[-2.887265,52.380059],[-2.886983,52.381191],[-2.887844,52.381668],[-2.887823,52.382855],[-2.88873,52.383915],[-2.888457,52.385154],[-2.885596,52.385792],[-2.883279,52.386688],[-2.879595,52.386716],[-2.87786,52.386223],[-2.874651,52.386919],[-2.874093,52.386598],[-2.863786,52.388714],[-2.858075,52.393705],[-2.856804,52.394181],[-2.855442,52.395298],[-2.852244,52.395437],[-2.849781,52.395094],[-2.840742,52.392348],[-2.832463,52.391948],[-2.828462,52.391202],[-2.826203,52.39108],[-2.823254,52.39135],[-2.818223,52.39123],[-2.817284,52.390525],[-2.814587,52.390025],[-2.813937,52.389237],[-2.812309,52.389038],[-2.810379,52.387968],[-2.807654,52.388651],[-2.805433,52.388252],[-2.805438,52.386101],[-2.807497,52.385191],[-2.809076,52.383877],[-2.809214,52.37968],[-2.808005,52.378227],[-2.806995,52.377786],[-2.807389,52.375968],[-2.803471,52.374262],[-2.801126,52.373912],[-2.798651,52.37266],[-2.79693,52.3736],[-2.792112,52.374534],[-2.792803,52.372589],[-2.794228,52.371024],[-2.793395,52.368415],[-2.793657,52.367869],[-2.792126,52.36511],[-2.793602,52.363736],[-2.793662,52.362716],[-2.795445,52.361242],[-2.795399,52.359265],[-2.79242,52.356864],[-2.790906,52.357843],[-2.788868,52.357982],[-2.786118,52.35754],[-2.78304,52.358663],[-2.781831,52.358213],[-2.778539,52.358054],[-2.776773,52.358424],[-2.774804,52.358334],[-2.770186,52.358784],[-2.76685,52.359498],[-2.761443,52.359468],[-2.758848,52.358872],[-2.752118,52.359261],[-2.748618,52.359023],[-2.743094,52.35913],[-2.742567,52.357476],[-2.741679,52.356796],[-2.738255,52.356063],[-2.735899,52.356091],[-2.732767,52.355532],[-2.733778,52.354249],[-2.735526,52.353331],[-2.736059,52.352282],[-2.738545,52.350895],[-2.738859,52.349636],[-2.74118,52.349722],[-2.73862,52.347532],[-2.739766,52.346582],[-2.739046,52.345295],[-2.73804,52.344736],[-2.73788,52.342796],[-2.739903,52.340973],[-2.740977,52.340922],[-2.743208,52.339725],[-2.744103,52.338819],[-2.745514,52.338654],[-2.745553,52.337656],[-2.746568,52.336503],[-2.748345,52.335846],[-2.74838,52.334902],[-2.752147,52.335144],[-2.753337,52.335993],[-2.755635,52.336544],[-2.757064,52.336106],[-2.758504,52.334473],[-2.766987,52.336113],[-2.765231,52.333454],[-2.76322,52.331702],[-2.759847,52.330224],[-2.758517,52.32927],[-2.755687,52.328675],[-2.753379,52.327395],[-2.751448,52.326966],[-2.749489,52.327347],[-2.745915,52.326655],[-2.744011,52.325041],[-2.743307,52.323626],[-2.741802,52.322811],[-2.738722,52.322089],[-2.737999,52.321302],[-2.738108,52.320292],[-2.737172,52.319476],[-2.731097,52.319684],[-2.730809,52.320199],[-2.726156,52.32031],[-2.724668,52.319848],[-2.721738,52.317478],[-2.719827,52.316735],[-2.719347,52.312698],[-2.715397,52.310692],[-2.714124,52.308857],[-2.712394,52.308137],[-2.710851,52.308909],[-2.706331,52.310279],[-2.702949,52.31001],[-2.692912,52.310305],[-2.689044,52.310736],[-2.688498,52.310473],[-2.684531,52.311289],[-2.681464,52.311221],[-2.679811,52.312023],[-2.681027,52.313512],[-2.679945,52.3152],[-2.684387,52.315614],[-2.686223,52.314794],[-2.688125,52.314927],[-2.689286,52.316202],[-2.686069,52.319512],[-2.685275,52.324406],[-2.678534,52.329517],[-2.676225,52.333017],[-2.675658,52.334541],[-2.674379,52.335925],[-2.673497,52.337705],[-2.670207,52.339741],[-2.669676,52.341559],[-2.668085,52.341632],[-2.666066,52.342301],[-2.662877,52.341532],[-2.662325,52.340967],[-2.660288,52.341365],[-2.658514,52.338568],[-2.655967,52.337839],[-2.659849,52.334763],[-2.655595,52.333139],[-2.653175,52.333028],[-2.651252,52.332177],[-2.64944,52.332389],[-2.647649,52.331697],[-2.645863,52.333292],[-2.643557,52.333827],[-2.641015,52.332848],[-2.640656,52.331544],[-2.641015,52.328643],[-2.638945,52.32809],[-2.636225,52.328327],[-2.636933,52.327086],[-2.636458,52.326479],[-2.637206,52.32515],[-2.6369,52.324481],[-2.635093,52.32421],[-2.633574,52.324573],[-2.630689,52.322677],[-2.631014,52.322119],[-2.629401,52.320714],[-2.627972,52.320761],[-2.625868,52.321497],[-2.623935,52.321394],[-2.624411,52.319928],[-2.623526,52.319533],[-2.624537,52.318345],[-2.626135,52.317629],[-2.625568,52.316928],[-2.626322,52.316038],[-2.625629,52.315004],[-2.626761,52.314679],[-2.628074,52.313435],[-2.625493,52.312253],[-2.624844,52.311046],[-2.622613,52.309072],[-2.623091,52.308468],[-2.620695,52.307042],[-2.619104,52.307383],[-2.618035,52.306957],[-2.617679,52.30763],[-2.616056,52.307983],[-2.614639,52.307645],[-2.613029,52.306633],[-2.610002,52.306281],[-2.605812,52.307639],[-2.602792,52.309375],[-2.600526,52.310198],[-2.595089,52.313886],[-2.589804,52.313192],[-2.587239,52.313524],[-2.584501,52.313172],[-2.582425,52.315069],[-2.579991,52.316524],[-2.578509,52.316899],[-2.576483,52.316736],[-2.574853,52.317576],[-2.573381,52.317188],[-2.570427,52.315123],[-2.567632,52.314356],[-2.566742,52.313334],[-2.564839,52.312671],[-2.563877,52.311535],[-2.562492,52.312329],[-2.563467,52.31389],[-2.562278,52.314477],[-2.561942,52.315386],[-2.562766,52.317224],[-2.563928,52.317495],[-2.564736,52.318857],[-2.564153,52.320279],[-2.562777,52.321429],[-2.563948,52.32289],[-2.562701,52.323701],[-2.562645,52.324569],[-2.56122,52.325951],[-2.561905,52.327218],[-2.56087,52.329834],[-2.562358,52.331872],[-2.562219,52.333108],[-2.560603,52.333456],[-2.559355,52.334292],[-2.557009,52.335043],[-2.555505,52.334369],[-2.554313,52.334734],[-2.55122,52.337086],[-2.549326,52.337205],[-2.548379,52.338581],[-2.546778,52.33982],[-2.540966,52.34189],[-2.538994,52.343144],[-2.53915,52.344139],[-2.53561,52.344317],[-2.5337,52.343676],[-2.531467,52.343379],[-2.529715,52.342635],[-2.526816,52.342491],[-2.523964,52.341852],[-2.521907,52.341848],[-2.517782,52.338622],[-2.516392,52.337984],[-2.51213,52.33711],[-2.511343,52.336256],[-2.50862,52.334751],[-2.50841,52.333257],[-2.509074,52.332438],[-2.510628,52.332553],[-2.513911,52.330771],[-2.513205,52.329214],[-2.509982,52.32951],[-2.507835,52.329053],[-2.506999,52.328279],[-2.505734,52.328073],[-2.502945,52.329],[-2.498041,52.329077],[-2.495236,52.329682],[-2.494373,52.329314],[-2.490191,52.329459],[-2.488051,52.330629],[-2.482792,52.331174],[-2.479858,52.332597],[-2.480112,52.333828],[-2.481012,52.334413],[-2.48107,52.335855],[-2.478382,52.337938],[-2.478221,52.338422],[-2.479658,52.340211],[-2.482103,52.341624],[-2.484355,52.34456],[-2.482843,52.348924],[-2.481631,52.349518],[-2.481792,52.35112],[-2.483481,52.352194],[-2.483793,52.353184],[-2.487724,52.354312],[-2.488327,52.355398],[-2.485153,52.356231],[-2.486099,52.358354],[-2.486743,52.358893],[-2.48389,52.360492],[-2.482515,52.360037],[-2.479885,52.360273],[-2.475578,52.359739],[-2.47418,52.360613],[-2.474513,52.36152],[-2.473449,52.362005],[-2.473425,52.362838],[-2.476223,52.365629],[-2.47477,52.367145],[-2.472735,52.36597],[-2.469547,52.366396],[-2.469826,52.365519],[-2.467749,52.364552],[-2.463903,52.365134],[-2.462858,52.366997],[-2.460877,52.367559],[-2.458366,52.367221],[-2.457653,52.367824],[-2.456181,52.367403],[-2.454988,52.367899],[-2.451393,52.36751],[-2.4491,52.367657],[-2.446994,52.367179],[-2.44069,52.366999],[-2.437851,52.366427],[-2.435343,52.36628],[-2.431185,52.367166],[-2.429212,52.366852],[-2.426337,52.365832],[-2.424485,52.366385],[-2.42284,52.366279],[-2.421923,52.367305],[-2.420221,52.368058],[-2.418128,52.368037],[-2.416126,52.368526],[-2.414924,52.368255],[-2.413348,52.368646],[-2.412091,52.369551],[-2.410397,52.370019],[-2.410397,52.371466],[-2.409624,52.37261],[-2.41032,52.3741],[-2.411656,52.375549],[-2.412942,52.376088],[-2.413073,52.376793],[-2.414798,52.377891],[-2.415159,52.378984],[-2.414728,52.381242],[-2.413375,52.381999],[-2.412391,52.383672],[-2.411001,52.385057],[-2.411114,52.386123],[-2.410474,52.387153],[-2.408624,52.387018],[-2.407246,52.38616],[-2.407425,52.385267],[-2.406839,52.383956],[-2.405379,52.383065],[-2.401375,52.382579],[-2.393594,52.384371],[-2.392462,52.383718],[-2.39204,52.382598],[-2.390673,52.381528],[-2.38918,52.382102],[-2.389297,52.383214],[-2.387442,52.384488],[-2.382644,52.384136],[-2.377912,52.383151],[-2.375639,52.384732],[-2.374486,52.384742],[-2.371668,52.385854],[-2.367352,52.388063],[-2.363052,52.388153],[-2.361263,52.387009],[-2.360033,52.386775],[-2.355823,52.388175],[-2.354533,52.388908],[-2.352633,52.388937],[-2.350637,52.387728],[-2.350146,52.385725],[-2.34923,52.385552],[-2.346577,52.385997],[-2.343524,52.385941],[-2.34207,52.384832],[-2.339546,52.384405],[-2.337236,52.38552],[-2.335533,52.385347],[-2.333593,52.388205],[-2.334037,52.388782],[-2.342182,52.393178],[-2.343432,52.393089],[-2.345972,52.393816],[-2.347391,52.393697],[-2.351572,52.395963],[-2.357155,52.397862],[-2.361313,52.398985],[-2.364266,52.399246],[-2.369961,52.401505],[-2.372946,52.401964],[-2.368894,52.404147],[-2.366021,52.407817],[-2.365936,52.409191],[-2.367223,52.41051],[-2.366672,52.412121],[-2.367648,52.414406],[-2.366493,52.41649],[-2.364681,52.41778],[-2.365929,52.419153],[-2.36518,52.421776],[-2.366559,52.423045],[-2.363934,52.424539],[-2.363829,52.425964],[-2.362766,52.425777],[-2.364156,52.431939],[-2.363298,52.437158],[-2.363528,52.439426],[-2.360937,52.439744],[-2.359726,52.439563],[-2.355352,52.439821],[-2.352776,52.438697],[-2.350781,52.438306],[-2.345109,52.439333],[-2.343939,52.438805],[-2.342742,52.437593],[-2.340617,52.437044],[-2.338776,52.435826],[-2.337068,52.436644],[-2.333119,52.435355],[-2.329115,52.437447],[-2.325956,52.438301],[-2.325186,52.437497],[-2.321551,52.436219],[-2.31175,52.437531],[-2.310143,52.437883],[-2.310169,52.440854],[-2.309597,52.441827],[-2.306814,52.443898],[-2.30697,52.444967],[-2.306185,52.445946],[-2.304111,52.446442],[-2.303328,52.44753],[-2.30097,52.447963],[-2.295936,52.450557],[-2.293777,52.451218],[-2.287383,52.455317],[-2.290997,52.456746],[-2.290731,52.458496],[-2.289061,52.459325],[-2.288899,52.460641],[-2.289884,52.462691],[-2.291152,52.46406],[-2.291239,52.465501],[-2.292692,52.467677],[-2.294771,52.469543],[-2.294586,52.470675],[-2.29563,52.473892],[-2.303969,52.481486],[-2.306277,52.482732],[-2.307248,52.482489],[-2.309021,52.483157],[-2.310175,52.484995],[-2.31041,52.486192],[-2.311664,52.486709],[-2.312749,52.489209],[-2.308667,52.494496],[-2.307695,52.495149],[-2.307837,52.498356],[-2.306444,52.499856],[-2.30208,52.501297],[-2.298421,52.503286],[-2.296295,52.505654],[-2.296087,52.506808],[-2.293067,52.50951],[-2.293243,52.509987],[-2.29139,52.51168],[-2.288301,52.512895],[-2.286254,52.514162],[-2.281417,52.515537],[-2.273228,52.519199],[-2.27066,52.51995],[-2.261592,52.523562],[-2.260943,52.524102],[-2.261135,52.526818],[-2.263297,52.527532],[-2.269216,52.530689],[-2.264228,52.537008],[-2.261541,52.539061],[-2.256405,52.541796],[-2.260437,52.544376],[-2.262541,52.546707],[-2.26573,52.549313],[-2.267931,52.550151],[-2.276507,52.552028],[-2.281409,52.552523],[-2.282477,52.553396],[-2.279045,52.553192],[-2.278589,52.554388],[-2.274214,52.557406],[-2.271665,52.558712],[-2.26995,52.560246],[-2.268706,52.560468],[-2.267212,52.561491],[-2.26381,52.562587],[-2.260836,52.563158],[-2.261786,52.563824],[-2.26177,52.566355],[-2.263381,52.568016],[-2.262007,52.5687],[-2.262803,52.57031],[-2.270288,52.575569],[-2.273991,52.579809],[-2.278121,52.581795],[-2.278093,52.582958],[-2.281052,52.584296],[-2.289501,52.585584],[-2.294421,52.584953],[-2.294098,52.587269],[-2.296055,52.588314],[-2.30013,52.58881],[-2.300684,52.590232],[-2.298839,52.591918],[-2.301016,52.593243],[-2.302341,52.593364],[-2.306988,52.591441],[-2.308546,52.591094],[-2.318004,52.593466],[-2.322025,52.593636],[-2.323349,52.597717],[-2.325071,52.59915],[-2.325475,52.600099],[-2.323924,52.602977],[-2.32416,52.609613],[-2.323628,52.61014],[-2.323351,52.611957],[-2.3238,52.612953],[-2.320972,52.614608],[-2.315809,52.61469],[-2.313462,52.614055],[-2.311004,52.611063],[-2.309601,52.607401],[-2.297733,52.607008],[-2.290656,52.607795],[-2.283387,52.606002],[-2.279306,52.605814],[-2.274122,52.607628],[-2.270859,52.609648],[-2.268001,52.610232],[-2.263059,52.610675],[-2.257318,52.609796],[-2.255804,52.609983],[-2.255566,52.611014],[-2.253151,52.614007],[-2.252058,52.61695],[-2.250511,52.618256],[-2.250901,52.619835],[-2.250118,52.621857],[-2.248957,52.622776],[-2.247793,52.625456],[-2.246527,52.62681],[-2.246001,52.628271],[-2.243607,52.630042],[-2.243676,52.63105],[-2.240859,52.633342],[-2.238803,52.634051],[-2.236887,52.636067],[-2.236478,52.63873],[-2.235557,52.639855],[-2.234767,52.643233],[-2.232895,52.647694],[-2.235484,52.648498],[-2.236566,52.650591],[-2.23747,52.65109],[-2.235579,52.652632],[-2.234794,52.655873],[-2.23737,52.655902],[-2.242199,52.656507],[-2.247688,52.65666],[-2.246375,52.657915],[-2.238917,52.661905],[-2.238716,52.663701],[-2.239774,52.664941],[-2.239487,52.666814],[-2.240343,52.668966],[-2.240224,52.671624],[-2.242544,52.673115],[-2.243845,52.675916],[-2.244221,52.677883],[-2.243705,52.679933],[-2.244685,52.680991],[-2.24668,52.681057],[-2.24773,52.683074],[-2.250072,52.682896],[-2.251788,52.681741],[-2.257438,52.681876],[-2.261457,52.682882],[-2.264203,52.682684],[-2.266692,52.681343],[-2.273677,52.679776],[-2.277579,52.680995],[-2.280563,52.681545],[-2.287178,52.681245],[-2.292062,52.682182],[-2.29571,52.683267],[-2.303041,52.682953],[-2.303879,52.684191],[-2.304184,52.685878],[-2.307695,52.690568],[-2.307995,52.693332],[-2.313206,52.693704],[-2.31358,52.695409],[-2.319908,52.695398],[-2.320657,52.697808],[-2.322974,52.700793],[-2.32333,52.70248],[-2.324834,52.705336],[-2.323634,52.706145],[-2.321845,52.709046],[-2.319006,52.711036],[-2.317058,52.713312],[-2.308604,52.720746],[-2.314679,52.724555],[-2.316453,52.728218],[-2.315778,52.730576],[-2.314876,52.731554],[-2.315576,52.732947],[-2.317574,52.731693],[-2.319077,52.731295],[-2.31969,52.730598],[-2.321456,52.730529],[-2.323165,52.731198],[-2.325171,52.731249],[-2.328666,52.73035],[-2.330071,52.729462],[-2.333605,52.730615],[-2.335511,52.730626],[-2.336384,52.733046],[-2.343617,52.731168],[-2.352454,52.730863],[-2.357929,52.731213],[-2.362948,52.733737],[-2.367295,52.733163],[-2.368454,52.735269],[-2.371874,52.738528],[-2.370045,52.739033],[-2.368822,52.740464],[-2.370966,52.740248],[-2.375073,52.740809],[-2.376811,52.739328],[-2.37907,52.735358],[-2.379487,52.732044],[-2.378863,52.730634],[-2.379666,52.729629],[-2.379496,52.728634],[-2.380494,52.726904],[-2.381006,52.724332],[-2.382597,52.722078],[-2.385191,52.720081],[-2.387151,52.717706],[-2.39276,52.71432],[-2.393105,52.713542],[-2.392759,52.711489],[-2.401033,52.704633],[-2.402501,52.703905],[-2.40242,52.703064],[-2.403578,52.701378],[-2.403592,52.698802],[-2.401525,52.694949],[-2.405242,52.694864],[-2.403548,52.69044],[-2.401393,52.689362],[-2.402325,52.686674],[-2.401211,52.684535],[-2.401964,52.682496],[-2.403422,52.682762],[-2.405438,52.681603],[-2.40689,52.681164],[-2.408031,52.678985],[-2.409939,52.671647],[-2.419029,52.662892],[-2.417579,52.650348],[-2.419925,52.647567],[-2.418755,52.645797],[-2.416467,52.644901],[-2.418466,52.639902],[-2.418918,52.639428],[-2.41945,52.636215],[-2.418295,52.633775],[-2.42066,52.633394],[-2.424064,52.632143],[-2.428699,52.629701],[-2.436635,52.627094],[-2.435593,52.622261],[-2.43706,52.61935],[-2.434047,52.618221],[-2.43577,52.615552],[-2.437677,52.615355],[-2.438041,52.614608],[-2.442003,52.615739],[-2.444251,52.615036],[-2.451018,52.616979],[-2.454826,52.618559],[-2.457816,52.620581],[-2.464563,52.623796],[-2.466354,52.624091],[-2.469716,52.622468],[-2.472028,52.621934],[-2.47239,52.623604],[-2.47452,52.623795],[-2.476044,52.623009],[-2.478639,52.623442],[-2.48132,52.624788],[-2.483619,52.625097],[-2.486468,52.623875],[-2.486453,52.625133],[-2.489369,52.626332],[-2.492061,52.628109],[-2.496209,52.629038],[-2.501774,52.629019],[-2.500855,52.62969],[-2.505624,52.632392],[-2.508658,52.635072],[-2.510729,52.636568],[-2.510146,52.638406],[-2.512736,52.640662],[-2.514911,52.641072],[-2.516664,52.642037],[-2.51783,52.643222],[-2.519169,52.643516],[-2.523806,52.646263],[-2.527097,52.647153],[-2.530053,52.649482],[-2.535054,52.650568],[-2.541675,52.652671],[-2.544982,52.652874],[-2.546745,52.654413],[-2.548317,52.655275],[-2.54632,52.656479],[-2.546689,52.658073],[-2.554209,52.660023],[-2.554219,52.661553],[-2.554785,52.662681],[-2.553739,52.664482],[-2.55161,52.664856],[-2.549413,52.666288],[-2.555648,52.671098],[-2.562686,52.674136],[-2.568175,52.676973],[-2.574342,52.679119],[-2.575298,52.680065],[-2.576314,52.679736],[-2.57719,52.680742],[-2.578839,52.680996],[-2.581949,52.682153],[-2.582733,52.682066],[-2.586792,52.684166],[-2.588562,52.683749],[-2.591829,52.686226],[-2.594892,52.687817],[-2.596671,52.690567],[-2.597737,52.689976],[-2.601252,52.689404],[-2.603331,52.689358],[-2.60838,52.691824],[-2.608276,52.692914],[-2.608882,52.694129],[-2.612717,52.696799],[-2.61716,52.698383],[-2.620212,52.697997],[-2.62255,52.699032],[-2.623379,52.700702],[-2.623489,52.703027],[-2.624323,52.703417],[-2.619329,52.704479],[-2.613942,52.704384],[-2.610883,52.704723],[-2.609206,52.705689],[-2.605422,52.70678],[-2.605992,52.707578],[-2.60413,52.708442],[-2.604951,52.709733],[-2.602254,52.712339],[-2.602075,52.713012],[-2.599504,52.714113],[-2.597843,52.713927],[-2.596939,52.714472],[-2.597727,52.717334],[-2.59742,52.718251],[-2.598935,52.718373],[-2.601966,52.719687],[-2.603269,52.719167],[-2.606233,52.719543],[-2.607468,52.72004],[-2.60998,52.71942],[-2.613436,52.719534],[-2.615123,52.718954],[-2.618918,52.721878],[-2.621871,52.720866],[-2.624284,52.719503],[-2.626189,52.720595],[-2.626987,52.721558],[-2.627851,52.724707],[-2.630234,52.726261],[-2.632025,52.726804],[-2.636032,52.726536],[-2.641465,52.727575],[-2.644608,52.729241],[-2.654033,52.730657],[-2.658277,52.730711],[-2.658866,52.731655],[-2.660258,52.731644],[-2.660396,52.733336],[-2.661428,52.734861],[-2.664121,52.736292],[-2.66439,52.738293],[-2.663733,52.740044],[-2.660695,52.742215],[-2.659581,52.743876],[-2.662706,52.743778],[-2.664136,52.744658],[-2.663873,52.745318],[-2.66551,52.745918],[-2.667362,52.750198],[-2.665649,52.751503],[-2.663362,52.74997],[-2.66191,52.750573],[-2.663726,52.752706],[-2.661656,52.754708],[-2.662129,52.75534],[-2.660954,52.756433],[-2.661032,52.757455],[-2.662441,52.758254],[-2.663416,52.760441],[-2.658118,52.762322],[-2.656542,52.761294],[-2.654733,52.762424],[-2.648979,52.763906],[-2.649463,52.764854],[-2.643129,52.767085],[-2.641233,52.766559],[-2.640462,52.765128],[-2.636519,52.763931],[-2.635818,52.762637],[-2.636702,52.761958],[-2.635256,52.75903],[-2.632331,52.759591],[-2.632513,52.760474],[-2.628587,52.76291],[-2.628704,52.765279],[-2.629245,52.766114],[-2.627536,52.768642],[-2.626382,52.769404],[-2.625615,52.771987],[-2.622648,52.773455],[-2.621003,52.776522],[-2.61945,52.776318],[-2.617601,52.775271],[-2.615131,52.7752],[-2.607029,52.777727],[-2.605852,52.777818],[-2.603025,52.777103],[-2.598878,52.778456],[-2.597749,52.778397],[-2.592245,52.77685],[-2.591249,52.778132],[-2.590317,52.778123],[-2.589838,52.77946],[-2.592696,52.781718],[-2.594226,52.784189],[-2.593373,52.788331],[-2.593697,52.790105],[-2.594369,52.791027],[-2.593361,52.791813],[-2.592565,52.793561],[-2.593689,52.795741],[-2.598007,52.797969],[-2.595346,52.797626],[-2.591839,52.798519],[-2.592509,52.799233],[-2.590633,52.799594],[-2.590285,52.800684],[-2.589008,52.801646],[-2.586562,52.80271],[-2.582786,52.805625],[-2.581242,52.806027],[-2.577173,52.805415],[-2.577012,52.806404],[-2.573836,52.80629],[-2.56942,52.805068],[-2.571067,52.804514],[-2.570537,52.803004],[-2.56775,52.801834],[-2.565813,52.799713],[-2.562764,52.799517],[-2.561315,52.799039],[-2.5594,52.799184],[-2.557008,52.800771],[-2.554972,52.800883],[-2.554898,52.802158],[-2.552943,52.802933],[-2.551396,52.802335],[-2.55099,52.801374],[-2.549109,52.801182],[-2.547302,52.797397],[-2.544061,52.797127],[-2.543921,52.796492],[-2.542321,52.79583],[-2.540026,52.793821],[-2.537894,52.793962],[-2.536293,52.794894],[-2.53381,52.794119],[-2.53345,52.793422],[-2.53408,52.792393],[-2.535945,52.790808],[-2.53748,52.789911],[-2.538241,52.78879],[-2.53785,52.787558],[-2.538888,52.786082],[-2.537515,52.785109],[-2.536371,52.785899],[-2.533406,52.786175],[-2.53234,52.785711],[-2.529415,52.787112],[-2.528166,52.790123],[-2.527112,52.790641],[-2.526413,52.792568],[-2.525351,52.793623],[-2.525545,52.795095],[-2.524493,52.795671],[-2.523254,52.797705],[-2.521126,52.799039],[-2.518,52.79587],[-2.516141,52.795556],[-2.514507,52.796191],[-2.511722,52.798511],[-2.509968,52.7984],[-2.507308,52.796733],[-2.503028,52.796604],[-2.501598,52.797365],[-2.501254,52.799286],[-2.498799,52.800417],[-2.49895,52.800776],[-2.492405,52.802349],[-2.490247,52.802248],[-2.490002,52.804516],[-2.486507,52.805246],[-2.488573,52.802065],[-2.488875,52.800915],[-2.486768,52.799836],[-2.483581,52.800017],[-2.478478,52.801528],[-2.477121,52.799379],[-2.478728,52.797868],[-2.484401,52.787805],[-2.486914,52.785379],[-2.489956,52.783922],[-2.489402,52.783292],[-2.487121,52.782449],[-2.488411,52.781535],[-2.488213,52.780612],[-2.485421,52.780254],[-2.483029,52.780571],[-2.479817,52.782216],[-2.476358,52.780962],[-2.475557,52.781203],[-2.472632,52.780454],[-2.473508,52.781815],[-2.470951,52.784289],[-2.467515,52.783648],[-2.464319,52.784416],[-2.462917,52.784461],[-2.460663,52.78393],[-2.45965,52.783299],[-2.457605,52.783406],[-2.456959,52.784356],[-2.457426,52.78564],[-2.456838,52.786417],[-2.458267,52.788111],[-2.459563,52.79119],[-2.461752,52.791536],[-2.463471,52.792746],[-2.463198,52.79447],[-2.46136,52.795002],[-2.460926,52.795939],[-2.459371,52.796795],[-2.457746,52.79853],[-2.461399,52.800167],[-2.461637,52.803759],[-2.466411,52.808697],[-2.468633,52.811545],[-2.470773,52.819256],[-2.472573,52.820064],[-2.472947,52.820753],[-2.47163,52.821696],[-2.470254,52.821749],[-2.469101,52.823044],[-2.462707,52.821928],[-2.459649,52.822006],[-2.456138,52.821695],[-2.446463,52.821812],[-2.443334,52.82146],[-2.440473,52.820772],[-2.438664,52.824297],[-2.436503,52.823615],[-2.434882,52.824638],[-2.432661,52.827054],[-2.430209,52.828154],[-2.427577,52.828378],[-2.428084,52.827475],[-2.428224,52.825066],[-2.427433,52.822869],[-2.423805,52.823968],[-2.422391,52.825393],[-2.420094,52.825745],[-2.416347,52.827006],[-2.415542,52.827711],[-2.415337,52.82914],[-2.413782,52.829607],[-2.412718,52.831047],[-2.409704,52.832567],[-2.409344,52.83359],[-2.407656,52.834605],[-2.403609,52.834854],[-2.400875,52.833731],[-2.397091,52.833854],[-2.395735,52.834421],[-2.393756,52.83662],[-2.394068,52.837913],[-2.393521,52.838697],[-2.394269,52.841042],[-2.393191,52.842404],[-2.392528,52.845621],[-2.39276,52.846911],[-2.391433,52.849926],[-2.389779,52.851807],[-2.389725,52.854548],[-2.388371,52.855785],[-2.389333,52.857224],[-2.386739,52.859972],[-2.388202,52.861221],[-2.388496,52.862234],[-2.382223,52.865756],[-2.381156,52.867063],[-2.380545,52.873133],[-2.382404,52.875699],[-2.382512,52.87661],[-2.381179,52.880021],[-2.379481,52.880894],[-2.378945,52.881669],[-2.379166,52.88351],[-2.376871,52.884554],[-2.377586,52.887638],[-2.375379,52.891473],[-2.378938,52.891721],[-2.380266,52.891082],[-2.382637,52.891112],[-2.384428,52.89036],[-2.386603,52.888574],[-2.390473,52.889067],[-2.392235,52.888616],[-2.393994,52.888592],[-2.396032,52.88955],[-2.398982,52.888714],[-2.400554,52.888831],[-2.40308,52.887946],[-2.40541,52.888219],[-2.407443,52.88759],[-2.411858,52.88789],[-2.41481,52.884944],[-2.416577,52.885856],[-2.419291,52.886742],[-2.420339,52.885223],[-2.424083,52.883671],[-2.425851,52.882002],[-2.428038,52.88225],[-2.431547,52.881713],[-2.435608,52.881833],[-2.43835,52.881266],[-2.440412,52.881227],[-2.44202,52.880668],[-2.444861,52.874859],[-2.446142,52.874008],[-2.449069,52.874946],[-2.451436,52.878173],[-2.454852,52.877492],[-2.455911,52.879536],[-2.45732,52.879943],[-2.457684,52.880846],[-2.456173,52.884332],[-2.457193,52.886178],[-2.462389,52.889006],[-2.465244,52.892162],[-2.468231,52.897059],[-2.469788,52.903873],[-2.470841,52.905869],[-2.468784,52.906316],[-2.467139,52.907086],[-2.466053,52.907067],[-2.463921,52.908048],[-2.462043,52.908395],[-2.460855,52.909384],[-2.459585,52.913355],[-2.456824,52.914107],[-2.455713,52.915501],[-2.455592,52.916607],[-2.456748,52.917866],[-2.455993,52.918767],[-2.456458,52.919886],[-2.457577,52.920197],[-2.457507,52.921437],[-2.456255,52.922922],[-2.455835,52.925683],[-2.453383,52.92591],[-2.450648,52.925088],[-2.450219,52.925866],[-2.450478,52.927588],[-2.448884,52.928359],[-2.446883,52.928628],[-2.445902,52.930448],[-2.445492,52.932002],[-2.444105,52.932661],[-2.443563,52.934196],[-2.441015,52.936923],[-2.439424,52.940484],[-2.437286,52.941771],[-2.43771,52.942612],[-2.437123,52.943599],[-2.433909,52.94449],[-2.432279,52.945595],[-2.42938,52.94635],[-2.428356,52.947113],[-2.427682,52.948917],[-2.425269,52.949998],[-2.420663,52.948872],[-2.418952,52.949606],[-2.418178,52.94893],[-2.416686,52.94907],[-2.416071,52.948433],[-2.414043,52.947686],[-2.413542,52.946602],[-2.410356,52.947247],[-2.408584,52.946872],[-2.404894,52.94835],[-2.404662,52.948984],[-2.405604,52.950606],[-2.405307,52.953218],[-2.407027,52.955746],[-2.407176,52.957877],[-2.408285,52.958868],[-2.410362,52.959268],[-2.413795,52.960831],[-2.412899,52.96174],[-2.410768,52.96111],[-2.410585,52.962347],[-2.405986,52.962346],[-2.40282,52.961614],[-2.402875,52.961247],[-2.399154,52.960631],[-2.397952,52.957392],[-2.393767,52.950579],[-2.391776,52.952132],[-2.387271,52.952699],[-2.386164,52.953273],[-2.386275,52.954366],[-2.38475,52.959822],[-2.38258,52.961685],[-2.380902,52.96228],[-2.379003,52.963906],[-2.377142,52.964935],[-2.379097,52.967868],[-2.379132,52.969276],[-2.382832,52.970658],[-2.381808,52.971509],[-2.379718,52.976065],[-2.379068,52.975215],[-2.376383,52.974766],[-2.374377,52.975645],[-2.373622,52.976452],[-2.370737,52.977466],[-2.368731,52.979359],[-2.370269,52.982162],[-2.371536,52.982953],[-2.373508,52.983568],[-2.375077,52.986243],[-2.375984,52.98653],[-2.377573,52.989388],[-2.378661,52.989847],[-2.379807,52.991066],[-2.378817,52.991992],[-2.378621,52.992951],[-2.376698,52.993676],[-2.376251,52.9945],[-2.377285,52.995646],[-2.376609,52.997644],[-2.377991,52.998257],[-2.379876,52.998045],[-2.380794,52.998411]]]},"properties":{"LAD22CD":"E06000051","LAD22NM":"Shropshire","BNG_E":350227,"BNG_N":302960,"LONG":-2.73667,"LAT":52.62212,"GlobalID":"4cf05787-3e16-466a-8371-6a49ab8d9e49"},"id":48}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.266107,50.01264],[-5.268606,50.012159],[-5.267216,50.011555],[-5.266107,50.01264]]],[[[-5.478098,50.119561],[-5.480294,50.116414],[-5.479008,50.115447],[-5.476152,50.116177],[-5.475401,50.117056],[-5.475652,50.118071],[-5.477132,50.118668],[-5.478098,50.119561]]],[[[-4.448527,50.337122],[-4.450507,50.338948],[-4.453144,50.337419],[-4.453255,50.336897],[-4.450092,50.335689],[-4.448527,50.337122]]],[[[-4.285163,50.388604],[-4.287556,50.388429],[-4.288566,50.387189],[-4.287421,50.386028],[-4.284707,50.384456],[-4.283975,50.385605],[-4.282908,50.38593],[-4.284199,50.387084],[-4.285163,50.388604]]],[[[-4.248006,50.389621],[-4.247438,50.388097],[-4.246039,50.387633],[-4.245645,50.388947],[-4.247089,50.389775],[-4.248006,50.389621]]],[[[-5.063711,50.427689],[-5.066361,50.427261],[-5.065197,50.426329],[-5.062464,50.426185],[-5.061845,50.427241],[-5.063711,50.427689]]],[[[-4.852231,50.531025],[-4.854605,50.530334],[-4.851355,50.528806],[-4.849856,50.529756],[-4.852088,50.530597],[-4.852231,50.531025]]],[[[-4.998756,50.572237],[-4.998058,50.571404],[-4.995361,50.571639],[-4.995917,50.572293],[-4.998756,50.572237]]],[[[-4.335227,50.646541],[-4.335372,50.647323],[-4.334647,50.649107],[-4.335745,50.651181],[-4.33544,50.652466],[-4.336846,50.652649],[-4.336919,50.654236],[-4.335533,50.655708],[-4.337432,50.656556],[-4.339586,50.658575],[-4.338849,50.661261],[-4.342184,50.661452],[-4.34446,50.662842],[-4.345212,50.664799],[-4.345872,50.668037],[-4.345548,50.669177],[-4.344517,50.670321],[-4.344413,50.671273],[-4.346767,50.672447],[-4.347063,50.672913],[-4.345432,50.674532],[-4.344432,50.676567],[-4.34532,50.677844],[-4.34542,50.679975],[-4.346827,50.68024],[-4.346195,50.682028],[-4.34857,50.68311],[-4.348516,50.685104],[-4.349237,50.685966],[-4.348652,50.68892],[-4.350217,50.690899],[-4.352766,50.691113],[-4.353555,50.692617],[-4.352332,50.693318],[-4.354425,50.694478],[-4.358756,50.695467],[-4.359725,50.696236],[-4.360778,50.695777],[-4.364337,50.697793],[-4.366788,50.697773],[-4.366321,50.700855],[-4.369341,50.702341],[-4.368457,50.703429],[-4.36709,50.70392],[-4.368704,50.705737],[-4.368488,50.706545],[-4.367301,50.707318],[-4.368864,50.709235],[-4.367863,50.709398],[-4.366722,50.711184],[-4.365061,50.712014],[-4.365556,50.713241],[-4.36372,50.714377],[-4.36395,50.715344],[-4.363569,50.717049],[-4.362684,50.718213],[-4.361586,50.718767],[-4.364804,50.720499],[-4.364263,50.721231],[-4.368089,50.723319],[-4.369035,50.723246],[-4.369772,50.724659],[-4.369924,50.726104],[-4.371042,50.727113],[-4.370977,50.727952],[-4.372316,50.729287],[-4.372317,50.731651],[-4.371225,50.733406],[-4.373416,50.734808],[-4.373894,50.737725],[-4.375317,50.738879],[-4.377464,50.739548],[-4.379476,50.740993],[-4.378944,50.742553],[-4.37942,50.744147],[-4.381633,50.744898],[-4.382239,50.746055],[-4.383549,50.74659],[-4.384996,50.74775],[-4.384272,50.748795],[-4.384109,50.750889],[-4.383506,50.751624],[-4.384101,50.752705],[-4.382104,50.753593],[-4.38081,50.755633],[-4.381772,50.756158],[-4.381646,50.757261],[-4.385371,50.758261],[-4.387777,50.757715],[-4.386616,50.763927],[-4.387387,50.765059],[-4.384912,50.765385],[-4.384182,50.767515],[-4.381317,50.768628],[-4.38021,50.769479],[-4.381819,50.770542],[-4.384005,50.771488],[-4.385198,50.772918],[-4.386778,50.773929],[-4.38904,50.774785],[-4.393506,50.778248],[-4.403247,50.776216],[-4.412997,50.775199],[-4.414417,50.774396],[-4.413451,50.771765],[-4.411515,50.769897],[-4.409875,50.769723],[-4.410184,50.768827],[-4.409278,50.768174],[-4.410027,50.766784],[-4.408723,50.762417],[-4.409574,50.762578],[-4.410898,50.763757],[-4.41308,50.763693],[-4.414211,50.764597],[-4.416544,50.764213],[-4.416469,50.764878],[-4.419343,50.765084],[-4.421952,50.764267],[-4.423905,50.76497],[-4.426959,50.767021],[-4.428187,50.767473],[-4.427211,50.768287],[-4.427726,50.768971],[-4.431618,50.768814],[-4.434046,50.770106],[-4.434865,50.772005],[-4.436263,50.772292],[-4.436261,50.773007],[-4.438803,50.774314],[-4.440132,50.775502],[-4.442046,50.775245],[-4.443374,50.776229],[-4.444838,50.776139],[-4.445857,50.776651],[-4.446515,50.77913],[-4.446236,50.780759],[-4.447378,50.782041],[-4.448617,50.782517],[-4.448636,50.783843],[-4.450089,50.78454],[-4.45133,50.785654],[-4.453876,50.784283],[-4.456433,50.783693],[-4.462977,50.784024],[-4.46789,50.7851],[-4.473105,50.784977],[-4.474856,50.785389],[-4.476358,50.787636],[-4.475694,50.78912],[-4.480084,50.790772],[-4.482307,50.790953],[-4.484009,50.791441],[-4.48645,50.790979],[-4.488778,50.791116],[-4.492744,50.79221],[-4.493272,50.793321],[-4.489697,50.795222],[-4.489954,50.796317],[-4.484588,50.796388],[-4.483827,50.796071],[-4.474443,50.797317],[-4.475751,50.798882],[-4.476839,50.799443],[-4.472743,50.800269],[-4.474607,50.801789],[-4.472413,50.802252],[-4.469981,50.801135],[-4.463412,50.80173],[-4.46192,50.802608],[-4.458471,50.803797],[-4.454106,50.804163],[-4.451753,50.804804],[-4.452955,50.805843],[-4.450241,50.807388],[-4.449207,50.807385],[-4.446045,50.809321],[-4.444749,50.811352],[-4.44596,50.813297],[-4.444556,50.814667],[-4.444726,50.815249],[-4.443127,50.816483],[-4.441219,50.818417],[-4.442369,50.819774],[-4.441119,50.822194],[-4.438561,50.823068],[-4.43895,50.824642],[-4.440161,50.824765],[-4.441545,50.826352],[-4.442971,50.826108],[-4.444158,50.827725],[-4.443433,50.828282],[-4.444299,50.829785],[-4.443796,50.830911],[-4.442545,50.83228],[-4.442585,50.833675],[-4.443514,50.834552],[-4.441921,50.839108],[-4.442407,50.839846],[-4.441209,50.841351],[-4.441031,50.843042],[-4.439734,50.843419],[-4.441497,50.844649],[-4.442235,50.846958],[-4.440724,50.847912],[-4.440883,50.849008],[-4.440025,50.84962],[-4.440095,50.850678],[-4.439298,50.851354],[-4.436415,50.852705],[-4.43738,50.85408],[-4.43728,50.856146],[-4.433652,50.859558],[-4.432913,50.861932],[-4.433657,50.865513],[-4.423425,50.866441],[-4.420959,50.866086],[-4.420924,50.866646],[-4.423028,50.867954],[-4.425044,50.871372],[-4.427152,50.872174],[-4.42652,50.873063],[-4.427588,50.874712],[-4.429138,50.875885],[-4.429967,50.877669],[-4.431688,50.878634],[-4.431858,50.879758],[-4.434061,50.881181],[-4.437864,50.882564],[-4.439793,50.88631],[-4.440021,50.888166],[-4.442628,50.889484],[-4.444978,50.890235],[-4.446249,50.891168],[-4.446592,50.89357],[-4.445908,50.894374],[-4.446899,50.896003],[-4.446386,50.898258],[-4.446822,50.900875],[-4.450673,50.903488],[-4.449957,50.905854],[-4.453793,50.906584],[-4.456954,50.907557],[-4.458554,50.9076],[-4.458618,50.908453],[-4.45967,50.909248],[-4.459961,50.910749],[-4.462683,50.91349],[-4.463448,50.915248],[-4.463243,50.917589],[-4.46218,50.919396],[-4.460528,50.920573],[-4.458734,50.923013],[-4.458278,50.924142],[-4.458216,50.926757],[-4.456194,50.928993],[-4.458255,50.929335],[-4.460081,50.93018],[-4.464656,50.93102],[-4.47125,50.931268],[-4.481103,50.930272],[-4.486813,50.929345],[-4.48915,50.929319],[-4.49038,50.928989],[-4.496877,50.928692],[-4.498081,50.928418],[-4.49926,50.927469],[-4.500202,50.92769],[-4.502234,50.927359],[-4.504719,50.927723],[-4.509591,50.927376],[-4.510818,50.927905],[-4.514338,50.927961],[-4.517502,50.926809],[-4.519877,50.927266],[-4.524437,50.927362],[-4.530544,50.92666],[-4.533069,50.927133],[-4.533783,50.926739],[-4.537224,50.92767],[-4.537937,50.92819],[-4.53967,50.928299],[-4.540867,50.928865],[-4.542915,50.928536],[-4.543775,50.929123],[-4.545626,50.928087],[-4.546366,50.928278],[-4.549432,50.927303],[-4.551682,50.926179],[-4.552264,50.924006],[-4.554664,50.922707],[-4.555942,50.921467],[-4.557877,50.920638],[-4.558014,50.919962],[-4.556646,50.919308],[-4.557005,50.91848],[-4.559987,50.917132],[-4.562211,50.916976],[-4.562644,50.915506],[-4.563887,50.914783],[-4.562542,50.91419],[-4.562826,50.913088],[-4.564378,50.912383],[-4.564229,50.911319],[-4.565278,50.910985],[-4.564701,50.909434],[-4.563501,50.908374],[-4.565602,50.907464],[-4.565065,50.906729],[-4.565847,50.904986],[-4.568774,50.904684],[-4.569916,50.903748],[-4.567543,50.903291],[-4.566437,50.902762],[-4.564075,50.900986],[-4.564017,50.899938],[-4.564918,50.898863],[-4.563442,50.895641],[-4.564022,50.894969],[-4.56372,50.89392],[-4.56106,50.891877],[-4.56261,50.888999],[-4.562733,50.887794],[-4.566783,50.886465],[-4.566764,50.885481],[-4.564437,50.884192],[-4.56319,50.882618],[-4.56111,50.881375],[-4.559604,50.878963],[-4.561201,50.877357],[-4.561539,50.876164],[-4.560847,50.875699],[-4.558898,50.875938],[-4.558084,50.875186],[-4.558803,50.874018],[-4.559004,50.871951],[-4.558459,50.871239],[-4.559099,50.869736],[-4.557617,50.867938],[-4.557246,50.866279],[-4.557116,50.862936],[-4.556409,50.860778],[-4.556599,50.85726],[-4.55618,50.854695],[-4.556593,50.853401],[-4.556106,50.852761],[-4.556767,50.851267],[-4.558124,50.850861],[-4.556213,50.849982],[-4.555141,50.848677],[-4.555591,50.84469],[-4.556661,50.842663],[-4.555979,50.840501],[-4.556628,50.839307],[-4.555593,50.838481],[-4.555996,50.837517],[-4.554,50.836256],[-4.554418,50.834513],[-4.553792,50.832146],[-4.552267,50.831883],[-4.551839,50.8309],[-4.552529,50.829406],[-4.555207,50.829991],[-4.55746,50.82929],[-4.556686,50.827089],[-4.557427,50.825963],[-4.55872,50.82504],[-4.556567,50.822485],[-4.55727,50.821092],[-4.556622,50.818946],[-4.556988,50.817878],[-4.556187,50.817199],[-4.55692,50.815458],[-4.556473,50.813908],[-4.557112,50.812583],[-4.556756,50.811578],[-4.557679,50.810636],[-4.556808,50.809647],[-4.557367,50.807467],[-4.559676,50.806176],[-4.56016,50.8052],[-4.558311,50.804358],[-4.55878,50.803092],[-4.558263,50.801837],[-4.558741,50.801115],[-4.560312,50.801027],[-4.559563,50.799801],[-4.557839,50.799441],[-4.556956,50.798583],[-4.556836,50.79669],[-4.557366,50.795559],[-4.557021,50.79387],[-4.558255,50.788152],[-4.559759,50.785223],[-4.561268,50.78383],[-4.561264,50.782673],[-4.561944,50.781332],[-4.56612,50.779317],[-4.567436,50.777613],[-4.572906,50.776616],[-4.575061,50.772835],[-4.576057,50.772041],[-4.577723,50.771609],[-4.580916,50.77175],[-4.583686,50.77105],[-4.584588,50.769971],[-4.587709,50.768792],[-4.59028,50.766237],[-4.593905,50.765901],[-4.596672,50.764923],[-4.599165,50.764494],[-4.603718,50.764347],[-4.605942,50.763325],[-4.610444,50.762197],[-4.613828,50.760328],[-4.61498,50.759233],[-4.615114,50.757316],[-4.619217,50.75652],[-4.617344,50.756062],[-4.617293,50.755151],[-4.618611,50.754052],[-4.617845,50.753001],[-4.619888,50.751335],[-4.621393,50.751078],[-4.624421,50.749897],[-4.628769,50.750333],[-4.63109,50.750249],[-4.634615,50.749088],[-4.634342,50.748072],[-4.636125,50.748246],[-4.634283,50.746444],[-4.63602,50.746368],[-4.636882,50.745657],[-4.639764,50.745667],[-4.638308,50.744045],[-4.636256,50.743525],[-4.633955,50.742396],[-4.634523,50.74096],[-4.637424,50.740849],[-4.637322,50.739843],[-4.641484,50.738114],[-4.644083,50.738283],[-4.646671,50.738963],[-4.646989,50.739421],[-4.651283,50.739417],[-4.653878,50.739838],[-4.653949,50.738517],[-4.651752,50.738323],[-4.650403,50.737518],[-4.651945,50.73662],[-4.652183,50.735756],[-4.649461,50.731834],[-4.650218,50.730631],[-4.649406,50.728953],[-4.649876,50.726875],[-4.65306,50.724034],[-4.654188,50.723411],[-4.653004,50.72154],[-4.654906,50.718676],[-4.654576,50.716267],[-4.656059,50.715043],[-4.659967,50.714756],[-4.658803,50.713865],[-4.660668,50.7126],[-4.666134,50.711717],[-4.667449,50.710933],[-4.667187,50.709921],[-4.665535,50.708867],[-4.667144,50.708495],[-4.668123,50.70668],[-4.671323,50.706378],[-4.673032,50.706971],[-4.676374,50.706564],[-4.677335,50.705923],[-4.679505,50.705463],[-4.681216,50.704373],[-4.682167,50.702166],[-4.683587,50.701742],[-4.683835,50.700427],[-4.685402,50.69963],[-4.684643,50.697322],[-4.680096,50.696904],[-4.680246,50.695994],[-4.682605,50.695594],[-4.684356,50.694878],[-4.686279,50.695835],[-4.690822,50.695225],[-4.692853,50.694514],[-4.694127,50.694914],[-4.695217,50.693418],[-4.696525,50.694474],[-4.698466,50.694392],[-4.700022,50.692885],[-4.699225,50.691965],[-4.700375,50.690971],[-4.701567,50.690666],[-4.70536,50.690633],[-4.706105,50.689256],[-4.703667,50.68856],[-4.703516,50.68754],[-4.706154,50.68605],[-4.710032,50.686087],[-4.71072,50.68541],[-4.713348,50.685394],[-4.71485,50.684154],[-4.717591,50.68343],[-4.718817,50.683615],[-4.720063,50.684608],[-4.723121,50.685233],[-4.724608,50.684273],[-4.726074,50.68402],[-4.726117,50.682377],[-4.727974,50.681477],[-4.726946,50.680826],[-4.727775,50.68019],[-4.728837,50.678303],[-4.728924,50.676442],[-4.73081,50.674958],[-4.73146,50.674965],[-4.732179,50.67295],[-4.735051,50.671503],[-4.735868,50.672161],[-4.738222,50.672057],[-4.739096,50.673131],[-4.738981,50.673868],[-4.741589,50.674137],[-4.74018,50.676334],[-4.742181,50.676724],[-4.744048,50.676424],[-4.7467,50.675032],[-4.745473,50.673697],[-4.744055,50.673605],[-4.743947,50.672565],[-4.745314,50.672186],[-4.74718,50.671007],[-4.74976,50.671973],[-4.753311,50.670685],[-4.75558,50.67112],[-4.755658,50.671979],[-4.757776,50.67173],[-4.757978,50.67061],[-4.757454,50.669694],[-4.759285,50.668048],[-4.759737,50.6697],[-4.761983,50.670888],[-4.764393,50.669874],[-4.764763,50.668898],[-4.763503,50.667231],[-4.761726,50.667172],[-4.760137,50.667683],[-4.760689,50.665107],[-4.762762,50.663509],[-4.763683,50.661424],[-4.764647,50.661128],[-4.766136,50.659683],[-4.765785,50.658957],[-4.764229,50.659042],[-4.765568,50.657286],[-4.766954,50.656433],[-4.766632,50.654862],[-4.765961,50.654662],[-4.762259,50.655004],[-4.762441,50.65404],[-4.758718,50.65285],[-4.759952,50.651424],[-4.760702,50.649495],[-4.760308,50.648809],[-4.760266,50.646857],[-4.761757,50.64509],[-4.761482,50.644535],[-4.763418,50.644078],[-4.763859,50.642664],[-4.765921,50.643447],[-4.767054,50.643085],[-4.767944,50.641614],[-4.766919,50.640428],[-4.767958,50.639527],[-4.768612,50.637995],[-4.767891,50.635401],[-4.769138,50.634495],[-4.769026,50.6336],[-4.770358,50.633057],[-4.77132,50.631929],[-4.771187,50.630413],[-4.770482,50.629871],[-4.773047,50.628362],[-4.772037,50.627936],[-4.771054,50.626465],[-4.770181,50.626002],[-4.771161,50.624649],[-4.770442,50.622372],[-4.772529,50.621271],[-4.774272,50.618717],[-4.775124,50.618729],[-4.776219,50.616949],[-4.778739,50.615036],[-4.778255,50.614194],[-4.779952,50.613952],[-4.782113,50.611856],[-4.782138,50.609838],[-4.783036,50.608783],[-4.785213,50.608348],[-4.784784,50.606925],[-4.786082,50.605989],[-4.787378,50.605711],[-4.788301,50.604841],[-4.790117,50.604563],[-4.789888,50.603757],[-4.7883,50.602895],[-4.789626,50.602106],[-4.790691,50.602363],[-4.793536,50.601718],[-4.792838,50.600922],[-4.793371,50.600072],[-4.795919,50.598234],[-4.798224,50.597521],[-4.801624,50.597797],[-4.803426,50.597533],[-4.804928,50.596637],[-4.806551,50.597269],[-4.808704,50.59709],[-4.810544,50.596235],[-4.812634,50.595897],[-4.815178,50.596583],[-4.817501,50.596055],[-4.821286,50.594317],[-4.821025,50.595628],[-4.823036,50.59535],[-4.824891,50.59474],[-4.822925,50.593413],[-4.823485,50.593003],[-4.825314,50.594033],[-4.826986,50.594246],[-4.827106,50.594917],[-4.830297,50.595705],[-4.832716,50.595011],[-4.832884,50.594448],[-4.832028,50.592853],[-4.832439,50.592136],[-4.834855,50.593261],[-4.835192,50.595759],[-4.837311,50.596032],[-4.839271,50.594884],[-4.840059,50.594855],[-4.841118,50.593402],[-4.842011,50.594429],[-4.843584,50.594319],[-4.844216,50.595718],[-4.846711,50.595457],[-4.847603,50.59688],[-4.846724,50.597783],[-4.849357,50.598799],[-4.850602,50.598361],[-4.850654,50.597077],[-4.85346,50.596601],[-4.854081,50.596791],[-4.856034,50.595717],[-4.857531,50.595326],[-4.856876,50.594234],[-4.860043,50.59316],[-4.864447,50.593264],[-4.864909,50.594206],[-4.867665,50.594283],[-4.868799,50.595332],[-4.869986,50.59537],[-4.871902,50.593874],[-4.872078,50.592373],[-4.870917,50.591474],[-4.871779,50.590517],[-4.868888,50.59027],[-4.867525,50.588975],[-4.872763,50.590442],[-4.873939,50.589798],[-4.873665,50.58871],[-4.875514,50.587205],[-4.878787,50.586675],[-4.879267,50.586201],[-4.881258,50.586439],[-4.882229,50.584823],[-4.881273,50.58313],[-4.883018,50.583195],[-4.884384,50.582742],[-4.886212,50.582873],[-4.888751,50.582484],[-4.890306,50.583855],[-4.894663,50.584795],[-4.896539,50.585841],[-4.899872,50.584052],[-4.899989,50.584616],[-4.902705,50.585351],[-4.904292,50.584894],[-4.90688,50.584856],[-4.90829,50.584507],[-4.909271,50.585157],[-4.910107,50.587958],[-4.912932,50.588115],[-4.91432,50.588539],[-4.915779,50.588236],[-4.916685,50.588791],[-4.916069,50.589631],[-4.9169,50.590544],[-4.918957,50.591732],[-4.918658,50.594508],[-4.921453,50.594001],[-4.922337,50.594596],[-4.924633,50.594134],[-4.923602,50.593276],[-4.921138,50.59251],[-4.923876,50.590752],[-4.925143,50.590788],[-4.926675,50.589765],[-4.930832,50.58845],[-4.932897,50.588933],[-4.934335,50.588243],[-4.935418,50.586738],[-4.930276,50.584862],[-4.927624,50.583586],[-4.926141,50.58357],[-4.925095,50.582305],[-4.9223,50.580498],[-4.920614,50.580004],[-4.918234,50.580257],[-4.917949,50.579687],[-4.919315,50.578622],[-4.917256,50.577458],[-4.91582,50.575952],[-4.917501,50.574531],[-4.922094,50.574116],[-4.922107,50.573225],[-4.923488,50.573097],[-4.924238,50.571911],[-4.925166,50.571634],[-4.925357,50.569955],[-4.927122,50.569341],[-4.926666,50.568478],[-4.928315,50.566909],[-4.929443,50.566386],[-4.929687,50.565453],[-4.931444,50.564811],[-4.930425,50.563145],[-4.928875,50.562282],[-4.926413,50.561739],[-4.926013,50.56109],[-4.926898,50.558543],[-4.927865,50.558166],[-4.929074,50.556474],[-4.928157,50.555173],[-4.930526,50.552837],[-4.931433,50.551356],[-4.931031,50.550641],[-4.927431,50.548539],[-4.926641,50.547645],[-4.926517,50.545507],[-4.924642,50.5444],[-4.919127,50.54369],[-4.917528,50.543351],[-4.914858,50.543359],[-4.913556,50.541614],[-4.915595,50.541144],[-4.916734,50.5403],[-4.915583,50.538194],[-4.914248,50.537072],[-4.906739,50.535326],[-4.904663,50.532936],[-4.90187,50.531416],[-4.898782,50.530777],[-4.894564,50.531342],[-4.891919,50.532351],[-4.890194,50.533399],[-4.889947,50.53428],[-4.890538,50.536139],[-4.88993,50.536256],[-4.886402,50.534505],[-4.883598,50.534576],[-4.879929,50.534137],[-4.879684,50.534931],[-4.877852,50.534438],[-4.874125,50.534539],[-4.873579,50.534763],[-4.870988,50.533756],[-4.869865,50.53361],[-4.867287,50.534038],[-4.865147,50.533911],[-4.862848,50.535521],[-4.861129,50.536074],[-4.859514,50.535548],[-4.859017,50.534482],[-4.856435,50.534284],[-4.855569,50.533329],[-4.852744,50.531658],[-4.850924,50.531458],[-4.849539,50.532549],[-4.848376,50.532281],[-4.849202,50.531151],[-4.848562,50.530602],[-4.848013,50.527512],[-4.848134,50.52678],[-4.846318,50.525356],[-4.840543,50.5221],[-4.836536,50.518877],[-4.831627,50.515707],[-4.832251,50.515426],[-4.835065,50.516585],[-4.840829,50.52134],[-4.845583,50.523604],[-4.848975,50.525428],[-4.850036,50.526574],[-4.852588,50.528056],[-4.854801,50.528803],[-4.859237,50.529158],[-4.862338,50.529805],[-4.863836,50.529222],[-4.868413,50.529497],[-4.87036,50.5299],[-4.873102,50.529342],[-4.875709,50.52962],[-4.877663,50.530309],[-4.885259,50.530178],[-4.891158,50.528862],[-4.895434,50.526666],[-4.897186,50.52609],[-4.897491,50.525488],[-4.896676,50.523466],[-4.89681,50.520916],[-4.89972,50.526215],[-4.905974,50.52751],[-4.908521,50.52847],[-4.910869,50.527792],[-4.909519,50.530063],[-4.910369,50.530554],[-4.919599,50.53147],[-4.923374,50.531061],[-4.924731,50.531176],[-4.926298,50.530288],[-4.927766,50.527136],[-4.929246,50.526426],[-4.929141,50.524379],[-4.931685,50.525324],[-4.93489,50.525848],[-4.935478,50.52502],[-4.937723,50.524655],[-4.937434,50.523314],[-4.937856,50.522197],[-4.938948,50.521215],[-4.938433,50.517525],[-4.938824,50.517245],[-4.937706,50.51355],[-4.939932,50.516782],[-4.940072,50.520451],[-4.940728,50.521252],[-4.938687,50.525145],[-4.937317,50.526313],[-4.935666,50.527145],[-4.936467,50.527943],[-4.932396,50.527991],[-4.930932,50.529907],[-4.93438,50.532659],[-4.934779,50.533859],[-4.933812,50.535471],[-4.93426,50.537897],[-4.935019,50.538622],[-4.935823,50.541039],[-4.937572,50.542107],[-4.935367,50.543835],[-4.93516,50.545415],[-4.934027,50.547064],[-4.935172,50.549062],[-4.937905,50.551617],[-4.938741,50.55332],[-4.940811,50.554344],[-4.941904,50.554358],[-4.947947,50.555715],[-4.949594,50.556562],[-4.948874,50.557284],[-4.94874,50.558754],[-4.947946,50.559831],[-4.94792,50.561162],[-4.94686,50.563052],[-4.947026,50.564372],[-4.944793,50.568523],[-4.946064,50.569038],[-4.948439,50.568727],[-4.949737,50.569385],[-4.952244,50.569246],[-4.953674,50.568612],[-4.954024,50.567877],[-4.956474,50.566677],[-4.955814,50.564057],[-4.954566,50.562935],[-4.956687,50.562882],[-4.959223,50.561357],[-4.961482,50.560406],[-4.962308,50.559337],[-4.963845,50.55915],[-4.965747,50.558205],[-4.969704,50.558765],[-4.970996,50.557583],[-4.972175,50.55768],[-4.973631,50.55426],[-4.975263,50.553539],[-4.974038,50.552378],[-4.976419,50.551966],[-4.976526,50.54945],[-4.979989,50.548624],[-4.981121,50.54763],[-4.978368,50.546685],[-4.978558,50.545559],[-4.979472,50.545275],[-4.981024,50.543867],[-4.983299,50.543646],[-4.983502,50.542343],[-4.987559,50.542251],[-4.98871,50.543492],[-4.989572,50.543724],[-4.992869,50.542796],[-4.995119,50.541757],[-4.995162,50.540672],[-4.996546,50.54028],[-4.99859,50.540309],[-5.001981,50.540836],[-5.003226,50.541397],[-5.004343,50.544231],[-5.003405,50.544992],[-5.004374,50.545469],[-5.003573,50.546526],[-5.00606,50.546356],[-5.009203,50.545415],[-5.011366,50.545098],[-5.013621,50.545283],[-5.015155,50.544097],[-5.017057,50.544933],[-5.019173,50.545239],[-5.021966,50.548502],[-5.022287,50.549851],[-5.024354,50.550213],[-5.025312,50.551434],[-5.027815,50.551487],[-5.030105,50.550566],[-5.032724,50.55046],[-5.036755,50.549106],[-5.035126,50.547737],[-5.036418,50.546462],[-5.038529,50.546565],[-5.039997,50.545654],[-5.039818,50.545112],[-5.03812,50.544594],[-5.035723,50.544918],[-5.033927,50.544209],[-5.033297,50.542816],[-5.030744,50.542489],[-5.030009,50.541756],[-5.026409,50.541709],[-5.025493,50.541005],[-5.025338,50.539512],[-5.024229,50.538661],[-5.024928,50.537406],[-5.022978,50.535411],[-5.022807,50.532303],[-5.024343,50.530744],[-5.026539,50.529442],[-5.025155,50.52876],[-5.025338,50.528012],[-5.022698,50.526616],[-5.023501,50.525462],[-5.026287,50.526236],[-5.029269,50.524779],[-5.029627,50.522818],[-5.028657,50.521918],[-5.030097,50.520267],[-5.027739,50.519405],[-5.027013,50.516086],[-5.029763,50.514943],[-5.027388,50.514566],[-5.026803,50.514038],[-5.029178,50.51333],[-5.029504,50.512779],[-5.028338,50.51124],[-5.024219,50.509791],[-5.02425,50.508675],[-5.025649,50.508731],[-5.028444,50.509597],[-5.030655,50.50873],[-5.033164,50.508778],[-5.0349,50.507306],[-5.034054,50.506574],[-5.034915,50.505868],[-5.03438,50.503918],[-5.036709,50.504547],[-5.038027,50.503246],[-5.039809,50.503771],[-5.040432,50.502401],[-5.042689,50.502518],[-5.041972,50.501016],[-5.042433,50.499728],[-5.041316,50.498913],[-5.043698,50.498778],[-5.044502,50.497466],[-5.046807,50.497827],[-5.04532,50.49641],[-5.041013,50.496334],[-5.040099,50.496672],[-5.038597,50.495868],[-5.038114,50.494832],[-5.034867,50.493757],[-5.034677,50.492632],[-5.03669,50.491147],[-5.034278,50.489521],[-5.033214,50.489199],[-5.03312,50.488197],[-5.034491,50.487131],[-5.033025,50.486082],[-5.034192,50.485786],[-5.03505,50.484322],[-5.033717,50.483711],[-5.034054,50.482193],[-5.035549,50.480277],[-5.037197,50.478864],[-5.037314,50.47786],[-5.036127,50.476929],[-5.038428,50.475666],[-5.039732,50.474159],[-5.037642,50.472418],[-5.036365,50.472297],[-5.035852,50.471307],[-5.0347,50.471186],[-5.032477,50.469393],[-5.031949,50.467315],[-5.033342,50.465603],[-5.035312,50.466687],[-5.037696,50.466213],[-5.038842,50.465085],[-5.041294,50.465515],[-5.042481,50.464152],[-5.042285,50.461939],[-5.039443,50.460581],[-5.038183,50.460321],[-5.039025,50.459001],[-5.041904,50.459429],[-5.043178,50.458614],[-5.042238,50.457743],[-5.040456,50.457312],[-5.042003,50.455918],[-5.039634,50.454333],[-5.039401,50.451938],[-5.040339,50.449833],[-5.040715,50.447932],[-5.041837,50.4467],[-5.041802,50.44598],[-5.043788,50.442229],[-5.045761,50.441082],[-5.046949,50.439577],[-5.048357,50.43859],[-5.048151,50.436644],[-5.04913,50.436133],[-5.050523,50.43402],[-5.052782,50.434014],[-5.052748,50.4323],[-5.053452,50.431258],[-5.055496,50.42956],[-5.055459,50.427844],[-5.057339,50.427225],[-5.059587,50.42768],[-5.06064,50.42637],[-5.058873,50.425759],[-5.056506,50.425528],[-5.059133,50.424116],[-5.062894,50.424468],[-5.063535,50.424862],[-5.066318,50.424764],[-5.065736,50.423157],[-5.064849,50.422743],[-5.065472,50.421706],[-5.06747,50.421635],[-5.067799,50.420631],[-5.069859,50.420448],[-5.071485,50.418935],[-5.074763,50.417003],[-5.078783,50.415523],[-5.081302,50.41601],[-5.082326,50.415182],[-5.085379,50.415112],[-5.086945,50.416636],[-5.088504,50.417394],[-5.086648,50.418063],[-5.087731,50.420631],[-5.089746,50.420553],[-5.091415,50.420123],[-5.093959,50.42072],[-5.097128,50.423192],[-5.097873,50.425554],[-5.101355,50.425466],[-5.099983,50.423929],[-5.098218,50.423714],[-5.097741,50.422495],[-5.099062,50.42196],[-5.099441,50.421077],[-5.097936,50.41959],[-5.098581,50.41793],[-5.101332,50.413996],[-5.102435,50.413114],[-5.105914,50.412816],[-5.109855,50.413712],[-5.112743,50.413776],[-5.114494,50.412881],[-5.114036,50.412336],[-5.117666,50.41193],[-5.123366,50.413009],[-5.12472,50.41282],[-5.125735,50.412052],[-5.124485,50.410714],[-5.12127,50.409678],[-5.11897,50.409209],[-5.116472,50.40938],[-5.113857,50.40878],[-5.111908,50.409408],[-5.109464,50.409777],[-5.108417,50.409494],[-5.105179,50.409424],[-5.103548,50.4088],[-5.101498,50.408701],[-5.099926,50.408246],[-5.093395,50.407773],[-5.090237,50.406555],[-5.088154,50.406561],[-5.086458,50.406229],[-5.085878,50.403649],[-5.088032,50.40364],[-5.09094,50.404799],[-5.092004,50.404822],[-5.094648,50.405946],[-5.096995,50.406418],[-5.098347,50.406379],[-5.10041,50.405354],[-5.10079,50.407084],[-5.102096,50.407936],[-5.106173,50.408104],[-5.109233,50.408889],[-5.112337,50.408214],[-5.115896,50.408288],[-5.12259,50.404916],[-5.126243,50.404445],[-5.130414,50.405444],[-5.132932,50.407559],[-5.133476,50.408381],[-5.135268,50.408239],[-5.137789,50.406729],[-5.136975,50.40537],[-5.137235,50.40441],[-5.1382,50.403933],[-5.136088,50.40263],[-5.136986,50.402345],[-5.141206,50.403494],[-5.144206,50.405451],[-5.146245,50.405347],[-5.147984,50.404649],[-5.148297,50.403969],[-5.14707,50.402941],[-5.148587,50.401559],[-5.148902,50.400568],[-5.146808,50.400155],[-5.147011,50.398684],[-5.144766,50.398192],[-5.144078,50.396474],[-5.142693,50.395409],[-5.147059,50.390104],[-5.149171,50.390148],[-5.150357,50.389414],[-5.151921,50.389573],[-5.15282,50.389021],[-5.157101,50.389774],[-5.156098,50.388252],[-5.156087,50.387193],[-5.153666,50.386317],[-5.153853,50.385262],[-5.151809,50.38348],[-5.151864,50.382508],[-5.150869,50.381357],[-5.154185,50.38005],[-5.155905,50.38023],[-5.155852,50.379107],[-5.154196,50.378813],[-5.153552,50.37815],[-5.149543,50.377291],[-5.146485,50.375265],[-5.14865,50.369407],[-5.151728,50.357713],[-5.153297,50.356063],[-5.153232,50.354928],[-5.154323,50.353046],[-5.153714,50.351885],[-5.155066,50.34888],[-5.155138,50.347627],[-5.154181,50.347268],[-5.155316,50.346147],[-5.157685,50.347375],[-5.160657,50.346527],[-5.161933,50.346518],[-5.16303,50.34522],[-5.165963,50.344278],[-5.167716,50.344398],[-5.168186,50.343348],[-5.171314,50.34092],[-5.173506,50.340685],[-5.174578,50.341128],[-5.176056,50.340675],[-5.177524,50.340966],[-5.180038,50.340669],[-5.181981,50.340001],[-5.180611,50.338491],[-5.179928,50.336278],[-5.180984,50.335472],[-5.181199,50.334247],[-5.183152,50.333188],[-5.185325,50.333278],[-5.188029,50.332973],[-5.189336,50.332217],[-5.188348,50.329876],[-5.18992,50.329171],[-5.189682,50.327976],[-5.191458,50.327768],[-5.191984,50.325924],[-5.193169,50.326579],[-5.195328,50.326302],[-5.194753,50.325649],[-5.195853,50.324586],[-5.196468,50.32292],[-5.19847,50.32215],[-5.200733,50.320103],[-5.201911,50.319836],[-5.203274,50.320385],[-5.204598,50.322115],[-5.206253,50.321233],[-5.207505,50.321527],[-5.208451,50.321057],[-5.209769,50.321316],[-5.214641,50.321135],[-5.2184,50.321182],[-5.220848,50.32241],[-5.223037,50.321513],[-5.22522,50.321057],[-5.225921,50.320329],[-5.228636,50.319511],[-5.229744,50.319578],[-5.231236,50.318987],[-5.23367,50.319294],[-5.234829,50.317937],[-5.234125,50.31619],[-5.235376,50.315262],[-5.234333,50.313714],[-5.234421,50.312244],[-5.233946,50.308884],[-5.234258,50.306161],[-5.233813,50.304785],[-5.235353,50.302844],[-5.235796,50.301686],[-5.23486,50.300482],[-5.236663,50.30045],[-5.238338,50.298154],[-5.23781,50.296834],[-5.238884,50.295377],[-5.240333,50.294719],[-5.240313,50.293786],[-5.241795,50.293193],[-5.241298,50.292331],[-5.241716,50.291021],[-5.243165,50.290327],[-5.242357,50.288647],[-5.243696,50.286872],[-5.245703,50.286669],[-5.24551,50.285869],[-5.247037,50.284246],[-5.249621,50.28331],[-5.251668,50.281745],[-5.253256,50.281498],[-5.254042,50.281901],[-5.257111,50.280701],[-5.258537,50.280634],[-5.260612,50.279814],[-5.26151,50.279087],[-5.25996,50.278283],[-5.260034,50.277256],[-5.262698,50.275855],[-5.263989,50.274841],[-5.265289,50.275395],[-5.268431,50.274934],[-5.271064,50.275063],[-5.273167,50.274379],[-5.273978,50.27488],[-5.278034,50.273916],[-5.279207,50.27332],[-5.279483,50.272493],[-5.278016,50.271956],[-5.280401,50.271325],[-5.282768,50.269957],[-5.283035,50.268897],[-5.287726,50.267575],[-5.285048,50.266885],[-5.284701,50.265827],[-5.285495,50.264847],[-5.287409,50.264644],[-5.289028,50.263858],[-5.290652,50.264569],[-5.292202,50.264229],[-5.291182,50.263196],[-5.291985,50.262072],[-5.296041,50.26105],[-5.297186,50.261799],[-5.298766,50.261626],[-5.300737,50.262838],[-5.303241,50.261893],[-5.302347,50.26093],[-5.304164,50.259308],[-5.305474,50.259804],[-5.309013,50.258035],[-5.310983,50.256637],[-5.309887,50.254957],[-5.311785,50.254999],[-5.312844,50.252705],[-5.314227,50.251767],[-5.313845,50.250885],[-5.315674,50.249418],[-5.320184,50.249142],[-5.320043,50.247726],[-5.323011,50.246604],[-5.323013,50.245908],[-5.324808,50.244265],[-5.327809,50.24388],[-5.328384,50.242756],[-5.332124,50.241663],[-5.333646,50.241669],[-5.33535,50.239927],[-5.336612,50.23998],[-5.338128,50.239336],[-5.339549,50.239343],[-5.340855,50.2385],[-5.342742,50.237999],[-5.345694,50.238022],[-5.347878,50.23911],[-5.350286,50.238819],[-5.351498,50.240273],[-5.352851,50.240462],[-5.357905,50.239892],[-5.358603,50.238722],[-5.360063,50.238852],[-5.362909,50.237715],[-5.364714,50.238153],[-5.366472,50.238045],[-5.368377,50.236166],[-5.370055,50.236786],[-5.372315,50.236798],[-5.373999,50.237509],[-5.373719,50.238598],[-5.376358,50.240381],[-5.377303,50.243127],[-5.378102,50.244071],[-5.380282,50.243644],[-5.382299,50.242082],[-5.382869,50.241066],[-5.384403,50.240954],[-5.384619,50.239729],[-5.385801,50.23994],[-5.386886,50.24089],[-5.389452,50.239726],[-5.390742,50.240514],[-5.391955,50.240468],[-5.394108,50.241046],[-5.395835,50.239815],[-5.394662,50.239008],[-5.395185,50.238318],[-5.394609,50.237083],[-5.392911,50.23606],[-5.392249,50.234145],[-5.39142,50.233235],[-5.391652,50.231271],[-5.390945,50.229834],[-5.393625,50.225574],[-5.394499,50.224822],[-5.396079,50.224523],[-5.395958,50.223587],[-5.397033,50.221609],[-5.400456,50.217399],[-5.40198,50.215808],[-5.412688,50.20752],[-5.418224,50.204006],[-5.423969,50.200994],[-5.427862,50.199461],[-5.42866,50.198438],[-5.430089,50.197569],[-5.430656,50.195899],[-5.433057,50.194557],[-5.434421,50.191871],[-5.433535,50.191137],[-5.430169,50.190536],[-5.42577,50.189455],[-5.422526,50.188852],[-5.419535,50.190768],[-5.413439,50.193283],[-5.412137,50.193535],[-5.410787,50.193012],[-5.41089,50.192073],[-5.409734,50.191498],[-5.415414,50.190554],[-5.419729,50.188467],[-5.422909,50.188224],[-5.424894,50.188819],[-5.422193,50.186296],[-5.421621,50.184556],[-5.424795,50.187991],[-5.425061,50.187553],[-5.424293,50.185828],[-5.426321,50.184327],[-5.429736,50.183049],[-5.430248,50.182379],[-5.433009,50.183299],[-5.432467,50.184175],[-5.428499,50.186419],[-5.427079,50.186907],[-5.427281,50.188176],[-5.429046,50.188512],[-5.429086,50.186176],[-5.432491,50.184297],[-5.433109,50.183153],[-5.430658,50.182185],[-5.430476,50.180552],[-5.431183,50.178735],[-5.433766,50.177111],[-5.437034,50.176213],[-5.440588,50.176719],[-5.441003,50.178554],[-5.438153,50.180401],[-5.437051,50.181498],[-5.43575,50.1853],[-5.433829,50.186138],[-5.430787,50.186718],[-5.431422,50.187834],[-5.433401,50.189117],[-5.434884,50.190599],[-5.436808,50.193524],[-5.438128,50.193764],[-5.439696,50.194632],[-5.44313,50.195119],[-5.453465,50.195306],[-5.455093,50.196312],[-5.454951,50.197345],[-5.456316,50.198225],[-5.460352,50.197729],[-5.465383,50.198765],[-5.469165,50.199866],[-5.469915,50.201694],[-5.468975,50.203872],[-5.469417,50.206367],[-5.471126,50.20758],[-5.473932,50.207819],[-5.47728,50.210196],[-5.477124,50.211067],[-5.47848,50.211385],[-5.479718,50.213092],[-5.479471,50.214797],[-5.476618,50.214986],[-5.476197,50.215945],[-5.474998,50.216634],[-5.47627,50.217444],[-5.475378,50.218145],[-5.475673,50.218861],[-5.478097,50.219228],[-5.480099,50.218313],[-5.479841,50.216595],[-5.484338,50.215036],[-5.486811,50.215047],[-5.488996,50.216862],[-5.490107,50.216343],[-5.493332,50.216859],[-5.495003,50.218199],[-5.495499,50.219433],[-5.498321,50.219874],[-5.500641,50.218956],[-5.50082,50.218097],[-5.503605,50.218138],[-5.507115,50.217374],[-5.509168,50.218206],[-5.509648,50.216827],[-5.511272,50.21595],[-5.514255,50.215531],[-5.51569,50.215617],[-5.516875,50.217063],[-5.518463,50.21729],[-5.520153,50.21701],[-5.520901,50.214976],[-5.523558,50.214722],[-5.527047,50.213876],[-5.528528,50.2142],[-5.530393,50.213452],[-5.533236,50.214097],[-5.534163,50.215135],[-5.535471,50.2155],[-5.536952,50.215239],[-5.538784,50.216244],[-5.539732,50.214588],[-5.541816,50.213996],[-5.541675,50.212812],[-5.543286,50.211589],[-5.546839,50.212213],[-5.550061,50.210949],[-5.551146,50.209469],[-5.553606,50.20974],[-5.5549,50.209377],[-5.555414,50.208262],[-5.554516,50.205746],[-5.555168,50.204207],[-5.557214,50.203747],[-5.559458,50.204473],[-5.560635,50.203227],[-5.561778,50.202717],[-5.562386,50.201639],[-5.563889,50.201451],[-5.565407,50.199611],[-5.568231,50.199571],[-5.569631,50.198312],[-5.571703,50.198298],[-5.572371,50.199388],[-5.574901,50.201136],[-5.576446,50.199889],[-5.578052,50.199141],[-5.578703,50.197961],[-5.576919,50.195688],[-5.577414,50.194997],[-5.579789,50.195482],[-5.581507,50.194227],[-5.585055,50.195526],[-5.585726,50.193685],[-5.585403,50.192153],[-5.58465,50.191425],[-5.585475,50.190837],[-5.587619,50.191879],[-5.58992,50.191274],[-5.589626,50.190559],[-5.591645,50.189011],[-5.592678,50.189463],[-5.59562,50.188646],[-5.596579,50.189992],[-5.597598,50.190123],[-5.598453,50.192896],[-5.600666,50.193339],[-5.599677,50.192036],[-5.599827,50.191277],[-5.598605,50.190471],[-5.601312,50.189703],[-5.601823,50.188628],[-5.603369,50.188677],[-5.603057,50.187068],[-5.604256,50.186613],[-5.604918,50.185529],[-5.606774,50.185639],[-5.607533,50.186306],[-5.609109,50.184769],[-5.607316,50.182663],[-5.606944,50.181083],[-5.60843,50.180685],[-5.610332,50.181661],[-5.61487,50.181863],[-5.614888,50.181099],[-5.616185,50.17974],[-5.616269,50.17896],[-5.618566,50.178781],[-5.618484,50.177655],[-5.621316,50.177378],[-5.621475,50.176774],[-5.619625,50.173902],[-5.621299,50.174278],[-5.622433,50.173153],[-5.624475,50.172852],[-5.624423,50.172004],[-5.625487,50.171655],[-5.624751,50.170472],[-5.626074,50.169132],[-5.630425,50.167946],[-5.633765,50.167932],[-5.634826,50.168362],[-5.636389,50.168074],[-5.636376,50.167394],[-5.638655,50.167644],[-5.639972,50.16731],[-5.642746,50.168117],[-5.643656,50.167868],[-5.645238,50.168861],[-5.64638,50.167952],[-5.648499,50.168203],[-5.648978,50.16768],[-5.651264,50.168203],[-5.65483,50.16653],[-5.656277,50.166207],[-5.656077,50.164584],[-5.657925,50.163796],[-5.66032,50.164018],[-5.662384,50.165388],[-5.664863,50.165418],[-5.666741,50.165905],[-5.668125,50.165309],[-5.668823,50.166087],[-5.67154,50.166784],[-5.67306,50.166244],[-5.673517,50.165198],[-5.67202,50.163933],[-5.67313,50.162209],[-5.674312,50.161303],[-5.675703,50.161133],[-5.675816,50.160241],[-5.67737,50.160123],[-5.679593,50.159084],[-5.679109,50.158343],[-5.680563,50.157272],[-5.680853,50.155882],[-5.683583,50.155281],[-5.684181,50.154173],[-5.685592,50.153403],[-5.685982,50.152517],[-5.689542,50.152076],[-5.690478,50.150516],[-5.691886,50.150328],[-5.691614,50.149165],[-5.692523,50.148747],[-5.691553,50.147431],[-5.693641,50.146962],[-5.694131,50.145648],[-5.694142,50.143812],[-5.692382,50.142159],[-5.692489,50.14139],[-5.694013,50.141342],[-5.693412,50.139891],[-5.693857,50.138958],[-5.69339,50.138066],[-5.69584,50.136641],[-5.697462,50.136528],[-5.698828,50.13707],[-5.701374,50.136111],[-5.701515,50.13523],[-5.703529,50.135361],[-5.704886,50.134852],[-5.704031,50.133098],[-5.703124,50.132271],[-5.703413,50.131473],[-5.702072,50.130289],[-5.703634,50.128395],[-5.704266,50.128128],[-5.707827,50.128938],[-5.710176,50.12736],[-5.709333,50.126596],[-5.705833,50.12602],[-5.706214,50.124969],[-5.705042,50.122839],[-5.705445,50.122392],[-5.703378,50.121478],[-5.701439,50.119796],[-5.700184,50.117712],[-5.700772,50.115986],[-5.699428,50.114974],[-5.700751,50.112629],[-5.698449,50.111749],[-5.697352,50.110835],[-5.69789,50.109488],[-5.698883,50.108447],[-5.698326,50.106488],[-5.697082,50.104997],[-5.696723,50.103077],[-5.697382,50.101516],[-5.696982,50.100308],[-5.697532,50.099401],[-5.696995,50.097997],[-5.695887,50.097702],[-5.694219,50.09599],[-5.694611,50.094445],[-5.69158,50.094148],[-5.689216,50.092346],[-5.688587,50.090382],[-5.688961,50.088479],[-5.690976,50.086976],[-5.692661,50.082836],[-5.694795,50.080463],[-5.698759,50.078283],[-5.7019,50.077869],[-5.706719,50.078068],[-5.708815,50.077672],[-5.709601,50.07668],[-5.709547,50.075198],[-5.708244,50.073691],[-5.708952,50.073177],[-5.70947,50.071226],[-5.711198,50.069976],[-5.7133,50.069657],[-5.714506,50.068629],[-5.716252,50.069269],[-5.716188,50.067762],[-5.715214,50.067393],[-5.715812,50.065233],[-5.714016,50.063728],[-5.71476,50.063014],[-5.712641,50.062091],[-5.712202,50.061311],[-5.709508,50.060608],[-5.710765,50.058554],[-5.710639,50.058112],[-5.706756,50.057529],[-5.705523,50.056574],[-5.706251,50.055741],[-5.705657,50.054972],[-5.701514,50.05512],[-5.700288,50.056119],[-5.698422,50.055259],[-5.695738,50.054933],[-5.692577,50.054014],[-5.694022,50.053258],[-5.694059,50.051255],[-5.695386,50.049599],[-5.693446,50.050092],[-5.692388,50.049405],[-5.690697,50.049529],[-5.688371,50.048533],[-5.688603,50.046821],[-5.689459,50.045362],[-5.690717,50.044636],[-5.688293,50.043034],[-5.687176,50.042918],[-5.687331,50.041916],[-5.686598,50.040749],[-5.684872,50.040127],[-5.683477,50.040177],[-5.681844,50.039262],[-5.682698,50.038394],[-5.684582,50.037921],[-5.681402,50.036435],[-5.679233,50.034971],[-5.676668,50.035662],[-5.672919,50.034668],[-5.672061,50.035977],[-5.672243,50.037265],[-5.66991,50.036151],[-5.669679,50.037448],[-5.666512,50.037442],[-5.665772,50.038028],[-5.664021,50.038335],[-5.661947,50.037986],[-5.660748,50.0387],[-5.659784,50.038566],[-5.658432,50.039447],[-5.654341,50.037848],[-5.652747,50.038274],[-5.65324,50.039799],[-5.651812,50.039703],[-5.650833,50.040528],[-5.650973,50.042517],[-5.648622,50.043742],[-5.645592,50.043282],[-5.645044,50.043921],[-5.642714,50.044564],[-5.639258,50.04338],[-5.6374,50.041466],[-5.637639,50.040882],[-5.636382,50.040036],[-5.635091,50.040875],[-5.635806,50.041565],[-5.634464,50.042275],[-5.634336,50.044038],[-5.633029,50.044123],[-5.630872,50.042981],[-5.630319,50.044043],[-5.62853,50.044081],[-5.62786,50.045641],[-5.629292,50.047467],[-5.628641,50.047613],[-5.62565,50.047024],[-5.625893,50.048436],[-5.625065,50.049571],[-5.623445,50.050022],[-5.622371,50.049554],[-5.620701,50.04963],[-5.619141,50.051218],[-5.615773,50.048823],[-5.614735,50.049434],[-5.61146,50.049442],[-5.607647,50.048253],[-5.605499,50.048864],[-5.600955,50.051892],[-5.59905,50.052202],[-5.59727,50.052009],[-5.596143,50.052649],[-5.594136,50.052616],[-5.592415,50.052029],[-5.590313,50.050907],[-5.58749,50.05136],[-5.586564,50.051955],[-5.584685,50.052358],[-5.58438,50.053319],[-5.581855,50.05256],[-5.5786,50.05232],[-5.57781,50.05169],[-5.576462,50.052078],[-5.575726,50.053087],[-5.574372,50.053176],[-5.573214,50.053913],[-5.572781,50.054885],[-5.570355,50.055294],[-5.569038,50.055019],[-5.568194,50.0562],[-5.566272,50.057547],[-5.563717,50.058247],[-5.563542,50.059653],[-5.564375,50.061745],[-5.563116,50.062538],[-5.560612,50.062204],[-5.558098,50.061136],[-5.556409,50.061213],[-5.554589,50.059821],[-5.552573,50.060952],[-5.552165,50.061915],[-5.550828,50.062592],[-5.549939,50.064365],[-5.548826,50.064844],[-5.548714,50.066487],[-5.547529,50.067088],[-5.546729,50.068291],[-5.545358,50.068339],[-5.545293,50.069314],[-5.542593,50.070238],[-5.541926,50.071541],[-5.541713,50.073078],[-5.540721,50.074922],[-5.539482,50.075807],[-5.539846,50.076878],[-5.539488,50.078284],[-5.538574,50.078408],[-5.538163,50.080128],[-5.538878,50.081581],[-5.539142,50.083138],[-5.535637,50.084515],[-5.53565,50.085484],[-5.533292,50.088511],[-5.533819,50.089369],[-5.53814,50.09292],[-5.538702,50.094515],[-5.538512,50.095936],[-5.53967,50.097525],[-5.543034,50.099531],[-5.543865,50.101954],[-5.545684,50.101337],[-5.546666,50.102168],[-5.549338,50.103199],[-5.54811,50.1043],[-5.548767,50.104816],[-5.54851,50.106629],[-5.54785,50.107917],[-5.545586,50.109707],[-5.537393,50.113918],[-5.53263,50.115232],[-5.531178,50.114152],[-5.530846,50.115705],[-5.529459,50.116457],[-5.530446,50.117626],[-5.53175,50.117249],[-5.533667,50.117538],[-5.533262,50.119326],[-5.530948,50.119942],[-5.531266,50.121782],[-5.530471,50.123406],[-5.528159,50.125094],[-5.524662,50.125985],[-5.517646,50.126602],[-5.495925,50.128711],[-5.483902,50.127552],[-5.480703,50.126636],[-5.479845,50.125889],[-5.475712,50.123527],[-5.473327,50.122898],[-5.471799,50.122926],[-5.46841,50.123519],[-5.464175,50.123322],[-5.462587,50.122988],[-5.460557,50.122005],[-5.458949,50.119362],[-5.454714,50.118345],[-5.454023,50.117892],[-5.453277,50.11501],[-5.453749,50.113815],[-5.451161,50.113694],[-5.450394,50.112137],[-5.449089,50.112456],[-5.447298,50.111156],[-5.444599,50.112677],[-5.440728,50.111786],[-5.439381,50.110679],[-5.436965,50.109583],[-5.436933,50.109092],[-5.434522,50.108409],[-5.434019,50.107892],[-5.434844,50.106852],[-5.433374,50.105844],[-5.431241,50.105173],[-5.429154,50.105455],[-5.427992,50.104269],[-5.428746,50.103638],[-5.427703,50.102955],[-5.428134,50.102239],[-5.426751,50.100972],[-5.428288,50.099288],[-5.429398,50.097536],[-5.428707,50.097124],[-5.426042,50.098997],[-5.424127,50.098978],[-5.423248,50.098498],[-5.421002,50.099888],[-5.419167,50.0994],[-5.418719,50.101156],[-5.417217,50.101074],[-5.416495,50.100064],[-5.415406,50.099906],[-5.414818,50.101043],[-5.415572,50.102038],[-5.413082,50.103907],[-5.408863,50.104537],[-5.407734,50.104036],[-5.405826,50.104117],[-5.403668,50.102716],[-5.401334,50.101809],[-5.400078,50.101819],[-5.39879,50.100893],[-5.395762,50.101436],[-5.395259,50.103068],[-5.393884,50.103513],[-5.391631,50.103477],[-5.384307,50.101597],[-5.374851,50.097651],[-5.374863,50.09677],[-5.372558,50.095273],[-5.372402,50.093877],[-5.371664,50.093154],[-5.369022,50.09328],[-5.367791,50.093795],[-5.366267,50.093649],[-5.365385,50.092217],[-5.364326,50.091384],[-5.363248,50.089703],[-5.36178,50.088895],[-5.359116,50.089501],[-5.357777,50.089221],[-5.35631,50.090463],[-5.353335,50.090305],[-5.352114,50.091226],[-5.351136,50.090906],[-5.348894,50.092116],[-5.347866,50.091696],[-5.34631,50.092291],[-5.343706,50.091654],[-5.341818,50.091932],[-5.340681,50.091659],[-5.339116,50.091972],[-5.336492,50.091031],[-5.334911,50.091372],[-5.332188,50.090451],[-5.331883,50.08941],[-5.328803,50.088162],[-5.327675,50.08742],[-5.327159,50.085433],[-5.325152,50.084658],[-5.323648,50.08462],[-5.322262,50.082793],[-5.318091,50.082678],[-5.316539,50.083282],[-5.317744,50.084793],[-5.316305,50.085223],[-5.315796,50.082946],[-5.317154,50.082116],[-5.313629,50.080923],[-5.310559,50.079156],[-5.309226,50.078761],[-5.308051,50.077641],[-5.296929,50.07033],[-5.290266,50.066057],[-5.28967,50.065087],[-5.288645,50.064657],[-5.286518,50.062613],[-5.285962,50.062516],[-5.283158,50.060133],[-5.278365,50.054897],[-5.278912,50.053382],[-5.276952,50.052082],[-5.277865,50.051192],[-5.27675,50.050295],[-5.275591,50.050246],[-5.275755,50.048226],[-5.27698,50.04772],[-5.278492,50.046389],[-5.278906,50.045495],[-5.281112,50.044423],[-5.281631,50.043359],[-5.280067,50.04341],[-5.280047,50.04186],[-5.278174,50.042072],[-5.276925,50.041566],[-5.27459,50.041883],[-5.271564,50.041127],[-5.270014,50.039777],[-5.271373,50.03847],[-5.269789,50.0379],[-5.268157,50.038417],[-5.266462,50.037485],[-5.267036,50.036556],[-5.266225,50.035915],[-5.266957,50.035019],[-5.265815,50.034195],[-5.263131,50.034133],[-5.262034,50.034385],[-5.261244,50.033343],[-5.262931,50.032287],[-5.265817,50.031445],[-5.26559,50.029922],[-5.264963,50.028948],[-5.261484,50.025984],[-5.261111,50.025293],[-5.259487,50.024712],[-5.25762,50.024508],[-5.256299,50.023606],[-5.255915,50.021714],[-5.257356,50.02087],[-5.258779,50.019109],[-5.259523,50.016565],[-5.259405,50.015939],[-5.258005,50.015412],[-5.257743,50.01437],[-5.259199,50.012676],[-5.261487,50.011909],[-5.261615,50.010537],[-5.262289,50.009537],[-5.26373,50.009086],[-5.264311,50.007184],[-5.268191,50.005927],[-5.267881,50.005549],[-5.267859,50.002793],[-5.266352,50.002834],[-5.266817,50.001795],[-5.265701,50.0015],[-5.266839,50.000462],[-5.265632,49.999919],[-5.265363,49.998914],[-5.264438,49.99821],[-5.261775,49.997462],[-5.260468,49.996673],[-5.258319,49.996604],[-5.256334,49.997383],[-5.25453,49.996641],[-5.254836,49.995092],[-5.252653,49.994064],[-5.251355,49.991369],[-5.255137,49.988905],[-5.255077,49.988281],[-5.250932,49.98697],[-5.249402,49.985891],[-5.247965,49.985997],[-5.244833,49.984914],[-5.244941,49.9842],[-5.247259,49.983045],[-5.245571,49.982159],[-5.24774,49.981321],[-5.246648,49.979568],[-5.246628,49.978317],[-5.245329,49.977591],[-5.246897,49.977025],[-5.245629,49.975505],[-5.244754,49.975976],[-5.243642,49.975148],[-5.241953,49.97465],[-5.241852,49.975883],[-5.239462,49.975625],[-5.235569,49.975981],[-5.231657,49.974448],[-5.230237,49.975351],[-5.228863,49.973708],[-5.226089,49.973087],[-5.225841,49.972423],[-5.223927,49.972452],[-5.220642,49.971932],[-5.218835,49.970916],[-5.217175,49.969127],[-5.217628,49.968011],[-5.215952,49.966801],[-5.216551,49.965183],[-5.215902,49.964305],[-5.216914,49.963603],[-5.216149,49.962806],[-5.216126,49.961391],[-5.215562,49.960236],[-5.215905,49.959533],[-5.212795,49.959228],[-5.210096,49.960013],[-5.206973,49.959303],[-5.206609,49.958695],[-5.204573,49.959155],[-5.202626,49.959091],[-5.198912,49.95965],[-5.199838,49.960225],[-5.199953,49.961464],[-5.197527,49.962985],[-5.19693,49.963951],[-5.191894,49.962495],[-5.190825,49.9617],[-5.185609,49.963094],[-5.185161,49.963872],[-5.186664,49.965138],[-5.185468,49.966044],[-5.184445,49.965998],[-5.183828,49.967246],[-5.185144,49.967997],[-5.185078,49.969411],[-5.187103,49.969354],[-5.18737,49.970801],[-5.188381,49.971387],[-5.188256,49.97335],[-5.188579,49.974121],[-5.187132,49.974436],[-5.18565,49.976102],[-5.186004,49.977533],[-5.185453,49.978179],[-5.186179,49.979357],[-5.185476,49.980337],[-5.182324,49.980482],[-5.180657,49.981444],[-5.180022,49.98252],[-5.180027,49.984577],[-5.179058,49.98531],[-5.180126,49.986185],[-5.179479,49.98733],[-5.177724,49.986746],[-5.174649,49.988616],[-5.172829,49.989074],[-5.17257,49.990848],[-5.170332,49.991],[-5.170202,49.991754],[-5.171549,49.993716],[-5.171272,49.994574],[-5.172002,49.995378],[-5.171959,49.997274],[-5.170672,49.99875],[-5.169684,49.998651],[-5.169057,50.000717],[-5.166699,50.003708],[-5.163265,50.005709],[-5.161349,50.006293],[-5.159404,50.006075],[-5.158241,50.006957],[-5.155074,50.007694],[-5.153698,50.007026],[-5.148598,50.007208],[-5.145416,50.007964],[-5.142704,50.007899],[-5.141725,50.007535],[-5.137906,50.008198],[-5.135396,50.007489],[-5.134548,50.006233],[-5.132957,50.005622],[-5.133241,50.007942],[-5.130317,50.008249],[-5.129334,50.008731],[-5.127861,50.008637],[-5.127287,50.007884],[-5.125646,50.00748],[-5.124183,50.008505],[-5.121511,50.008927],[-5.120449,50.008336],[-5.120292,50.00751],[-5.119164,50.006705],[-5.117446,50.006278],[-5.115438,50.006536],[-5.114916,50.004894],[-5.114064,50.003996],[-5.112387,50.003209],[-5.109702,50.002927],[-5.108933,50.003883],[-5.107159,50.004869],[-5.104457,50.00496],[-5.10131,50.004248],[-5.100285,50.00535],[-5.099726,50.007721],[-5.098059,50.008431],[-5.097289,50.011413],[-5.097627,50.012576],[-5.097136,50.01401],[-5.095803,50.015624],[-5.094302,50.015984],[-5.092078,50.015193],[-5.091526,50.01638],[-5.09305,50.01661],[-5.094741,50.017934],[-5.09606,50.020874],[-5.093606,50.021691],[-5.095986,50.023288],[-5.097117,50.023362],[-5.097488,50.024812],[-5.096804,50.026367],[-5.093946,50.028363],[-5.091661,50.029462],[-5.091534,50.029902],[-5.089394,50.031332],[-5.085559,50.032198],[-5.083447,50.031892],[-5.078945,50.032848],[-5.077363,50.033939],[-5.070358,50.034594],[-5.06874,50.03523],[-5.068121,50.03639],[-5.069444,50.037537],[-5.069641,50.039955],[-5.068493,50.041574],[-5.066961,50.041813],[-5.067105,50.042719],[-5.065643,50.043793],[-5.066897,50.046416],[-5.066296,50.048194],[-5.065011,50.049183],[-5.064519,50.050282],[-5.061083,50.050979],[-5.060012,50.050769],[-5.058375,50.052667],[-5.058284,50.05365],[-5.060009,50.055099],[-5.061334,50.055356],[-5.063046,50.054939],[-5.064009,50.055266],[-5.064258,50.056669],[-5.061548,50.058168],[-5.062103,50.059936],[-5.061466,50.060408],[-5.062756,50.06207],[-5.065373,50.062543],[-5.06651,50.063988],[-5.066631,50.065408],[-5.06746,50.067056],[-5.069501,50.067905],[-5.071429,50.068034],[-5.073842,50.067535],[-5.074344,50.067794],[-5.077482,50.067862],[-5.079054,50.0683],[-5.079694,50.069367],[-5.07886,50.07026],[-5.079435,50.072813],[-5.078808,50.074436],[-5.079385,50.075159],[-5.079091,50.076801],[-5.076725,50.077826],[-5.07724,50.079343],[-5.07513,50.082156],[-5.077065,50.083312],[-5.077377,50.08387],[-5.075999,50.085581],[-5.077422,50.085767],[-5.078986,50.084574],[-5.079234,50.083636],[-5.081024,50.083042],[-5.0853,50.084023],[-5.087367,50.085652],[-5.09027,50.086128],[-5.095945,50.085166],[-5.096601,50.085551],[-5.099128,50.085362],[-5.099399,50.086538],[-5.10113,50.087248],[-5.102007,50.086768],[-5.107495,50.084789],[-5.109212,50.083632],[-5.111924,50.083655],[-5.114109,50.084037],[-5.117028,50.082092],[-5.117903,50.082281],[-5.11624,50.083731],[-5.115826,50.084563],[-5.114632,50.0848],[-5.112925,50.084381],[-5.110285,50.084495],[-5.108822,50.08586],[-5.107247,50.086556],[-5.10412,50.08725],[-5.10325,50.087205],[-5.102615,50.088593],[-5.10164,50.089185],[-5.099264,50.088528],[-5.097986,50.088571],[-5.094829,50.087889],[-5.093003,50.08812],[-5.092569,50.088834],[-5.093058,50.090274],[-5.093931,50.090586],[-5.095864,50.090293],[-5.098693,50.090473],[-5.100231,50.091157],[-5.10088,50.092153],[-5.103595,50.093364],[-5.104324,50.0944],[-5.106282,50.094514],[-5.109042,50.09347],[-5.111505,50.094666],[-5.113323,50.095108],[-5.114359,50.094672],[-5.115988,50.094977],[-5.118278,50.096211],[-5.124776,50.0961],[-5.128539,50.094882],[-5.129785,50.093925],[-5.132066,50.092892],[-5.135576,50.09329],[-5.133916,50.094883],[-5.135336,50.095381],[-5.138226,50.094227],[-5.138261,50.095873],[-5.139924,50.096555],[-5.143621,50.095816],[-5.147776,50.095314],[-5.150967,50.094116],[-5.150601,50.092213],[-5.149636,50.091445],[-5.150547,50.090504],[-5.152062,50.091839],[-5.152344,50.092753],[-5.154816,50.093189],[-5.156172,50.092215],[-5.159204,50.091818],[-5.160458,50.091377],[-5.163157,50.091855],[-5.170605,50.090555],[-5.173833,50.088546],[-5.175339,50.088591],[-5.17749,50.089367],[-5.178764,50.087216],[-5.179789,50.087493],[-5.17878,50.089594],[-5.184808,50.087993],[-5.18574,50.087539],[-5.18638,50.085873],[-5.189298,50.085121],[-5.190981,50.08377],[-5.196429,50.081452],[-5.194062,50.08369],[-5.192207,50.084358],[-5.191068,50.085555],[-5.188874,50.086846],[-5.189039,50.087559],[-5.192089,50.088296],[-5.194628,50.089283],[-5.200391,50.088756],[-5.200301,50.08961],[-5.20291,50.089577],[-5.204005,50.090089],[-5.204201,50.091106],[-5.206481,50.093119],[-5.211149,50.093904],[-5.208481,50.09457],[-5.207105,50.094556],[-5.206709,50.095397],[-5.203513,50.09146],[-5.199493,50.091787],[-5.197332,50.089948],[-5.195875,50.089782],[-5.192286,50.090555],[-5.190454,50.089903],[-5.187077,50.089469],[-5.185583,50.089846],[-5.184158,50.089573],[-5.181387,50.089923],[-5.178577,50.090858],[-5.175983,50.090829],[-5.174684,50.09031],[-5.171889,50.091648],[-5.165935,50.093463],[-5.163893,50.093484],[-5.16189,50.093865],[-5.159169,50.09378],[-5.158999,50.094727],[-5.164287,50.095156],[-5.166248,50.096446],[-5.166553,50.100202],[-5.164995,50.101472],[-5.167893,50.102357],[-5.170365,50.105915],[-5.169265,50.105549],[-5.166591,50.102709],[-5.165346,50.102323],[-5.162896,50.103933],[-5.162773,50.105732],[-5.161477,50.107512],[-5.161563,50.109521],[-5.16394,50.112113],[-5.162559,50.112169],[-5.159728,50.109437],[-5.159375,50.107977],[-5.161423,50.104951],[-5.161328,50.10366],[-5.16323,50.10191],[-5.163339,50.100872],[-5.164558,50.100068],[-5.164567,50.097737],[-5.163174,50.096728],[-5.158258,50.096554],[-5.155956,50.096917],[-5.153844,50.098328],[-5.151722,50.09908],[-5.149886,50.098972],[-5.147362,50.097814],[-5.145593,50.097951],[-5.143632,50.098878],[-5.140753,50.102507],[-5.141619,50.104198],[-5.141523,50.105374],[-5.139934,50.107457],[-5.136253,50.109733],[-5.134264,50.109449],[-5.130339,50.110194],[-5.131877,50.108983],[-5.13487,50.108507],[-5.139494,50.10591],[-5.140145,50.104136],[-5.139665,50.103624],[-5.137867,50.103449],[-5.139283,50.100427],[-5.136423,50.100412],[-5.135213,50.100739],[-5.133237,50.099954],[-5.130226,50.099631],[-5.128205,50.100283],[-5.127587,50.099833],[-5.124133,50.099087],[-5.121639,50.100143],[-5.121558,50.101102],[-5.12023,50.102172],[-5.118235,50.102445],[-5.11579,50.103772],[-5.113981,50.103005],[-5.111291,50.10402],[-5.10764,50.10304],[-5.106297,50.102309],[-5.104754,50.102416],[-5.104053,50.10134],[-5.103088,50.10098],[-5.10215,50.099782],[-5.099446,50.099751],[-5.098443,50.100146],[-5.096097,50.102143],[-5.093629,50.102981],[-5.091446,50.102953],[-5.085456,50.109295],[-5.083535,50.109109],[-5.081769,50.109395],[-5.081765,50.11067],[-5.084488,50.111434],[-5.08637,50.111275],[-5.087596,50.112705],[-5.088883,50.11354],[-5.090382,50.113732],[-5.091263,50.1144],[-5.090912,50.117862],[-5.091362,50.118896],[-5.088942,50.120389],[-5.089308,50.121418],[-5.090334,50.122074],[-5.090238,50.123277],[-5.089249,50.123718],[-5.090604,50.124585],[-5.093074,50.124619],[-5.093693,50.126069],[-5.090387,50.126778],[-5.088572,50.126629],[-5.087741,50.127318],[-5.086126,50.127607],[-5.081524,50.129607],[-5.082041,50.130611],[-5.080108,50.131896],[-5.07931,50.132865],[-5.07693,50.133015],[-5.072956,50.134335],[-5.074078,50.135608],[-5.075121,50.135413],[-5.076266,50.137007],[-5.076943,50.137219],[-5.076903,50.140074],[-5.075704,50.14088],[-5.074266,50.140618],[-5.071489,50.141477],[-5.069427,50.14275],[-5.068318,50.144161],[-5.067143,50.144753],[-5.061196,50.14615],[-5.057648,50.147755],[-5.055955,50.148184],[-5.053172,50.148424],[-5.051614,50.14799],[-5.050649,50.147216],[-5.04997,50.14588],[-5.047932,50.144563],[-5.046137,50.144616],[-5.042904,50.143468],[-5.041876,50.143916],[-5.043745,50.145781],[-5.043544,50.146964],[-5.044959,50.149614],[-5.047429,50.150231],[-5.047252,50.151659],[-5.050161,50.153266],[-5.052235,50.153154],[-5.052893,50.153503],[-5.055927,50.153637],[-5.056123,50.155358],[-5.055069,50.155619],[-5.054478,50.156929],[-5.056749,50.156647],[-5.056575,50.153827],[-5.060016,50.15348],[-5.058629,50.151631],[-5.060543,50.151318],[-5.06236,50.151559],[-5.063773,50.152409],[-5.064606,50.151903],[-5.067091,50.153632],[-5.068377,50.155219],[-5.070367,50.156144],[-5.07084,50.157055],[-5.073608,50.15879],[-5.07407,50.161102],[-5.076701,50.162618],[-5.077128,50.163262],[-5.079754,50.164408],[-5.08275,50.164088],[-5.083261,50.163034],[-5.08523,50.162708],[-5.087994,50.164989],[-5.089431,50.165188],[-5.091345,50.166162],[-5.097112,50.166864],[-5.097196,50.16745],[-5.100343,50.169275],[-5.099025,50.169662],[-5.096496,50.168283],[-5.093823,50.167545],[-5.09181,50.168694],[-5.092142,50.169661],[-5.090608,50.17004],[-5.090082,50.168882],[-5.086757,50.168112],[-5.084529,50.166896],[-5.079916,50.168043],[-5.079641,50.166961],[-5.078747,50.166803],[-5.076523,50.167464],[-5.075192,50.16729],[-5.074755,50.165598],[-5.07176,50.165032],[-5.069694,50.162929],[-5.069069,50.161884],[-5.064689,50.162317],[-5.063938,50.162038],[-5.060064,50.162451],[-5.058618,50.162174],[-5.057515,50.161355],[-5.056352,50.161211],[-5.053618,50.162329],[-5.052396,50.163586],[-5.046428,50.168734],[-5.045543,50.170714],[-5.045754,50.172273],[-5.044634,50.174085],[-5.045524,50.175717],[-5.048647,50.176501],[-5.050407,50.177294],[-5.053324,50.177111],[-5.055213,50.177955],[-5.057643,50.177927],[-5.058414,50.177293],[-5.061683,50.177642],[-5.06335,50.178337],[-5.064944,50.178337],[-5.068994,50.179],[-5.070234,50.179529],[-5.072127,50.181033],[-5.075227,50.182494],[-5.074902,50.183714],[-5.071892,50.182538],[-5.069135,50.18213],[-5.065508,50.179537],[-5.063454,50.179304],[-5.060741,50.178441],[-5.057944,50.178897],[-5.055297,50.179713],[-5.054467,50.180253],[-5.054097,50.181636],[-5.054903,50.184806],[-5.054607,50.186558],[-5.05655,50.19027],[-5.058264,50.190455],[-5.060452,50.191263],[-5.06273,50.192704],[-5.063452,50.1945],[-5.064276,50.195051],[-5.063432,50.196186],[-5.066114,50.196831],[-5.069202,50.198741],[-5.070668,50.198878],[-5.072328,50.199722],[-5.073825,50.199845],[-5.07392,50.201616],[-5.07571,50.202731],[-5.075456,50.204682],[-5.076233,50.205568],[-5.079189,50.206446],[-5.082682,50.206178],[-5.088111,50.2071],[-5.093049,50.206461],[-5.095001,50.207078],[-5.097145,50.208289],[-5.090739,50.207264],[-5.096069,50.208807],[-5.094787,50.209516],[-5.088354,50.20922],[-5.08489,50.208517],[-5.084939,50.209323],[-5.083021,50.209809],[-5.081811,50.209435],[-5.081019,50.208392],[-5.076772,50.207993],[-5.074827,50.208409],[-5.0701,50.205672],[-5.067991,50.206865],[-5.067574,50.209423],[-5.066588,50.209372],[-5.066301,50.208192],[-5.065014,50.206829],[-5.064925,50.202687],[-5.063319,50.202167],[-5.061257,50.200534],[-5.058736,50.19944],[-5.057851,50.198285],[-5.057995,50.196793],[-5.059094,50.194708],[-5.059997,50.193927],[-5.05911,50.193238],[-5.055895,50.195269],[-5.055004,50.197919],[-5.053781,50.198653],[-5.0533,50.199973],[-5.051735,50.200859],[-5.050172,50.202357],[-5.048289,50.202923],[-5.044733,50.202977],[-5.043923,50.20331],[-5.045571,50.205082],[-5.047721,50.206294],[-5.047435,50.207832],[-5.046019,50.207067],[-5.045199,50.205817],[-5.043079,50.2043],[-5.040466,50.204671],[-5.0384,50.206389],[-5.037909,50.20782],[-5.036798,50.208464],[-5.036052,50.209701],[-5.036551,50.21146],[-5.038977,50.212664],[-5.033209,50.212367],[-5.032534,50.211801],[-5.032665,50.209899],[-5.03063,50.208797],[-5.02841,50.209916],[-5.02742,50.211212],[-5.02837,50.212816],[-5.028614,50.21444],[-5.027852,50.217263],[-5.028143,50.221024],[-5.029596,50.222147],[-5.030625,50.222403],[-5.0335,50.222056],[-5.034746,50.221328],[-5.037298,50.220494],[-5.03943,50.221052],[-5.041776,50.221036],[-5.030975,50.223569],[-5.032259,50.224836],[-5.034118,50.224767],[-5.035808,50.226711],[-5.039616,50.228392],[-5.043633,50.227111],[-5.043689,50.227609],[-5.040477,50.229262],[-5.038325,50.229319],[-5.037658,50.228338],[-5.036265,50.22773],[-5.032877,50.22795],[-5.03422,50.226515],[-5.030635,50.22531],[-5.027813,50.223569],[-5.02521,50.224933],[-5.024124,50.224777],[-5.020715,50.225584],[-5.01829,50.22565],[-5.017859,50.226504],[-5.018777,50.229121],[-5.018717,50.230224],[-5.01936,50.231382],[-5.020822,50.232626],[-5.021803,50.232809],[-5.020893,50.235119],[-5.01953,50.237026],[-5.016125,50.240044],[-5.017065,50.241693],[-5.02275,50.242977],[-5.027197,50.241256],[-5.029372,50.238984],[-5.031215,50.238167],[-5.031847,50.239791],[-5.03041,50.240406],[-5.029871,50.241701],[-5.032715,50.242957],[-5.035687,50.243803],[-5.035249,50.246004],[-5.03722,50.246247],[-5.040208,50.245953],[-5.042655,50.246894],[-5.050491,50.24827],[-5.046538,50.249005],[-5.043445,50.247888],[-5.040116,50.248058],[-5.03924,50.249151],[-5.041294,50.252229],[-5.042618,50.252618],[-5.044044,50.254238],[-5.046973,50.258708],[-5.046206,50.260115],[-5.047275,50.26165],[-5.047005,50.263019],[-5.044672,50.257602],[-5.043353,50.256419],[-5.040255,50.254641],[-5.041256,50.253063],[-5.0408,50.252271],[-5.038354,50.249969],[-5.036436,50.249625],[-5.03445,50.249665],[-5.033364,50.249056],[-5.031744,50.246327],[-5.029535,50.244532],[-5.029256,50.243565],[-5.027968,50.242972],[-5.026769,50.243145],[-5.024169,50.244868],[-5.023076,50.246605],[-5.021028,50.247805],[-5.019836,50.248105],[-5.016214,50.250189],[-5.013676,50.250446],[-5.011546,50.251419],[-5.011997,50.252809],[-5.013986,50.255206],[-5.015438,50.255673],[-5.013782,50.256933],[-5.013532,50.258127],[-5.012037,50.260533],[-5.010608,50.261818],[-5.010387,50.263181],[-5.009339,50.265108],[-5.008003,50.26611],[-5.007199,50.267537],[-5.004872,50.268495],[-5.003747,50.269684],[-5.004493,50.271116],[-5.002994,50.2735],[-5.000114,50.274736],[-4.997259,50.276675],[-4.996972,50.275806],[-5.000979,50.273718],[-5.002491,50.27109],[-5.001989,50.268603],[-5.004499,50.266703],[-5.005737,50.266362],[-5.006113,50.2638],[-5.008312,50.260542],[-5.008843,50.258913],[-5.010075,50.257772],[-5.010565,50.256391],[-5.01059,50.254842],[-5.008747,50.25323],[-5.008658,50.251854],[-5.009765,50.250096],[-5.017217,50.247182],[-5.019729,50.246615],[-5.021779,50.245054],[-5.020369,50.244692],[-5.017343,50.244658],[-5.013376,50.242677],[-5.012154,50.240843],[-5.012686,50.239452],[-5.01425,50.237417],[-5.015198,50.23663],[-5.016367,50.234341],[-5.016053,50.231783],[-5.015047,50.230908],[-5.013497,50.230293],[-5.014788,50.228922],[-5.01484,50.22786],[-5.014003,50.227438],[-5.011143,50.228848],[-5.00724,50.228595],[-5.005795,50.228095],[-5.003547,50.225675],[-5.001311,50.226624],[-5.001927,50.225121],[-4.999694,50.22524],[-4.998966,50.225742],[-4.995809,50.226514],[-4.994327,50.226117],[-4.99202,50.226374],[-4.986482,50.228508],[-4.984795,50.228766],[-4.985717,50.231654],[-4.984219,50.232887],[-4.982244,50.233667],[-4.979542,50.234252],[-4.976158,50.234],[-4.974951,50.234373],[-4.974763,50.235226],[-4.976923,50.235603],[-4.977177,50.237196],[-4.974889,50.236071],[-4.972253,50.235855],[-4.971185,50.236176],[-4.968418,50.238813],[-4.966736,50.23946],[-4.965786,50.239137],[-4.966002,50.237531],[-4.965576,50.236457],[-4.967122,50.234736],[-4.967131,50.233434],[-4.965777,50.232326],[-4.969324,50.232129],[-4.970815,50.230972],[-4.971932,50.230833],[-4.976153,50.231453],[-4.977332,50.232382],[-4.978836,50.232627],[-4.982765,50.232312],[-4.98327,50.231718],[-4.981855,50.229497],[-4.979629,50.229194],[-4.977314,50.229479],[-4.975435,50.229202],[-4.972372,50.229652],[-4.970896,50.228167],[-4.97099,50.226919],[-4.975315,50.226852],[-4.976764,50.227562],[-4.97923,50.22709],[-4.97879,50.225206],[-4.979127,50.224318],[-4.978281,50.223698],[-4.979488,50.22294],[-4.980253,50.22376],[-4.980247,50.225184],[-4.980916,50.226226],[-4.982088,50.226708],[-4.984675,50.225766],[-4.986658,50.225924],[-4.988644,50.225215],[-4.992828,50.224635],[-4.991323,50.222898],[-4.992359,50.222699],[-4.994339,50.224735],[-4.997125,50.223657],[-4.998973,50.223389],[-5.004428,50.223381],[-5.006418,50.222441],[-5.006056,50.224096],[-5.008573,50.226809],[-5.009268,50.227093],[-5.013068,50.22506],[-5.016755,50.222587],[-5.020406,50.222172],[-5.022818,50.222685],[-5.024543,50.220653],[-5.0246,50.218919],[-5.025535,50.21733],[-5.024691,50.216449],[-5.025171,50.214463],[-5.024431,50.211264],[-5.024474,50.209935],[-5.025566,50.208365],[-5.027313,50.207114],[-5.029083,50.206552],[-5.0306,50.20538],[-5.032877,50.20535],[-5.034176,50.204629],[-5.034906,50.203285],[-5.03151,50.200314],[-5.029161,50.194379],[-5.029361,50.192854],[-5.028423,50.19184],[-5.027805,50.186114],[-5.025685,50.182294],[-5.024367,50.181918],[-5.020621,50.183762],[-5.01717,50.184389],[-5.015465,50.187745],[-5.013943,50.187728],[-5.01529,50.184294],[-5.014281,50.183994],[-5.015434,50.182313],[-5.01673,50.183217],[-5.01765,50.182538],[-5.020524,50.181292],[-5.019837,50.180511],[-5.019872,50.176534],[-5.022125,50.175264],[-5.023159,50.17346],[-5.023054,50.172723],[-5.021491,50.171297],[-5.023387,50.168113],[-5.023009,50.167411],[-5.023766,50.166481],[-5.024172,50.164311],[-5.025342,50.162931],[-5.027445,50.161462],[-5.028212,50.15848],[-5.026154,50.156103],[-5.023805,50.154751],[-5.022257,50.15538],[-5.021034,50.156666],[-5.019688,50.157353],[-5.017307,50.157244],[-5.015273,50.157974],[-5.013769,50.159159],[-5.01058,50.158537],[-5.00858,50.157062],[-5.006175,50.156382],[-5.004806,50.157123],[-5.004219,50.158583],[-5.004842,50.159035],[-5.005974,50.161584],[-5.003103,50.163101],[-5.001658,50.165712],[-5.003629,50.16752],[-5.005038,50.169183],[-5.00414,50.17008],[-5.005935,50.170755],[-5.002059,50.171056],[-4.999877,50.170861],[-4.998929,50.171223],[-4.996571,50.173591],[-4.997965,50.174415],[-4.998589,50.175786],[-4.997301,50.177936],[-4.9969,50.179213],[-4.997309,50.180895],[-4.99648,50.18194],[-4.997684,50.183196],[-4.999472,50.183258],[-4.999449,50.183896],[-4.997905,50.1857],[-4.997162,50.185201],[-4.998464,50.183829],[-4.996893,50.18364],[-4.99541,50.182045],[-4.996195,50.180623],[-4.994988,50.179228],[-4.995249,50.178229],[-4.996542,50.176609],[-4.996378,50.175238],[-4.993789,50.1769],[-4.990665,50.177648],[-4.989189,50.177604],[-4.993343,50.17561],[-4.993093,50.174407],[-4.994576,50.172418],[-4.996015,50.171856],[-4.995654,50.170923],[-4.997476,50.169614],[-4.999085,50.169339],[-5.001642,50.169616],[-5.001527,50.167647],[-4.999106,50.166869],[-4.99673,50.166711],[-4.99454,50.168093],[-4.993553,50.167418],[-4.99605,50.165424],[-4.997119,50.163851],[-4.993556,50.16167],[-4.991008,50.162196],[-4.987984,50.161762],[-4.988564,50.160967],[-4.99103,50.161385],[-4.993392,50.160731],[-4.997272,50.161726],[-4.998852,50.161659],[-5.000044,50.159508],[-4.999293,50.157999],[-5.000324,50.156705],[-5.000718,50.155447],[-5.003976,50.153283],[-5.004413,50.151552],[-5.007166,50.150696],[-5.008581,50.15117],[-5.009044,50.152131],[-5.007906,50.15289],[-5.009524,50.154036],[-5.011112,50.15361],[-5.013124,50.15155],[-5.017558,50.149367],[-5.017766,50.148116],[-5.016268,50.148003],[-5.016492,50.146015],[-5.015246,50.145739],[-5.014282,50.144776],[-5.016157,50.141156],[-5.013883,50.140631],[-5.012691,50.141347],[-5.0108,50.139533],[-5.009608,50.139297],[-5.00763,50.140094],[-5.005798,50.141311],[-5.004836,50.143142],[-5.003595,50.142997],[-4.999575,50.145105],[-4.99766,50.146682],[-4.996016,50.148631],[-4.991125,50.15027],[-4.990324,50.149869],[-4.98801,50.150543],[-4.987255,50.149637],[-4.985277,50.15056],[-4.984571,50.149869],[-4.98197,50.151806],[-4.982732,50.153381],[-4.984022,50.153549],[-4.983758,50.155094],[-4.984588,50.155959],[-4.983895,50.157791],[-4.98153,50.159703],[-4.97991,50.160297],[-4.97888,50.160168],[-4.97643,50.162492],[-4.972507,50.164667],[-4.97357,50.166071],[-4.973652,50.170714],[-4.974114,50.171339],[-4.973961,50.172767],[-4.97259,50.175512],[-4.972515,50.176394],[-4.970972,50.178047],[-4.971482,50.17887],[-4.973718,50.179005],[-4.974679,50.17984],[-4.974661,50.182434],[-4.973518,50.18468],[-4.973603,50.185648],[-4.972222,50.186309],[-4.970657,50.186423],[-4.970163,50.185867],[-4.968225,50.185614],[-4.967782,50.187273],[-4.968833,50.189486],[-4.968453,50.191165],[-4.96867,50.192098],[-4.965171,50.194908],[-4.963682,50.195871],[-4.962285,50.19603],[-4.962705,50.197675],[-4.961056,50.198732],[-4.957703,50.201671],[-4.957572,50.2022],[-4.953272,50.203913],[-4.949687,50.204922],[-4.948664,50.20565],[-4.938357,50.20711],[-4.933738,50.207093],[-4.931969,50.206408],[-4.931506,50.205603],[-4.929141,50.204784],[-4.925663,50.202785],[-4.92528,50.201925],[-4.923543,50.202225],[-4.923085,50.199861],[-4.9222,50.199033],[-4.92236,50.196436],[-4.921949,50.195486],[-4.918793,50.196143],[-4.918342,50.196608],[-4.915989,50.197174],[-4.913147,50.199694],[-4.910844,50.200176],[-4.91119,50.200979],[-4.910275,50.201501],[-4.910125,50.203599],[-4.910619,50.205397],[-4.908349,50.206212],[-4.904819,50.204998],[-4.903335,50.206267],[-4.90248,50.207634],[-4.902551,50.208945],[-4.903896,50.208867],[-4.904788,50.209564],[-4.903339,50.210852],[-4.90367,50.211732],[-4.899842,50.21426],[-4.896828,50.213141],[-4.895354,50.213218],[-4.894602,50.214393],[-4.893505,50.214661],[-4.893642,50.215985],[-4.892816,50.217118],[-4.890088,50.218485],[-4.88879,50.218245],[-4.887596,50.219281],[-4.886524,50.22083],[-4.885149,50.220931],[-4.885179,50.222079],[-4.883013,50.224126],[-4.880539,50.223655],[-4.877494,50.224661],[-4.876177,50.224644],[-4.875704,50.227149],[-4.873924,50.228686],[-4.874129,50.230467],[-4.871884,50.2319],[-4.870645,50.231626],[-4.868616,50.233008],[-4.865303,50.233973],[-4.865961,50.234773],[-4.864377,50.235058],[-4.862961,50.235955],[-4.861894,50.23589],[-4.861454,50.234868],[-4.858923,50.235191],[-4.856871,50.234575],[-4.855279,50.235251],[-4.853668,50.235391],[-4.84739,50.234876],[-4.846218,50.235155],[-4.84482,50.234827],[-4.844514,50.236723],[-4.841453,50.236892],[-4.840359,50.235272],[-4.839381,50.235068],[-4.840133,50.233374],[-4.838538,50.23205],[-4.836054,50.232894],[-4.834531,50.232691],[-4.833642,50.233293],[-4.831328,50.232871],[-4.829782,50.230543],[-4.828069,50.230327],[-4.825385,50.231031],[-4.823586,50.230672],[-4.82265,50.231305],[-4.819582,50.231672],[-4.813271,50.229832],[-4.812212,50.227032],[-4.812519,50.224673],[-4.810527,50.224786],[-4.810443,50.222975],[-4.808491,50.223134],[-4.808338,50.221846],[-4.807588,50.221035],[-4.805322,50.220775],[-4.804721,50.219462],[-4.802516,50.218754],[-4.800193,50.219401],[-4.798503,50.219515],[-4.797066,50.22187],[-4.797794,50.222802],[-4.797631,50.224142],[-4.799086,50.226659],[-4.798263,50.2302],[-4.794931,50.232587],[-4.792568,50.233566],[-4.78683,50.235064],[-4.784289,50.234836],[-4.783586,50.235335],[-4.783256,50.236656],[-4.780923,50.23741],[-4.78419,50.238406],[-4.784906,50.239786],[-4.787002,50.240316],[-4.788163,50.241063],[-4.788119,50.242153],[-4.786311,50.242957],[-4.785127,50.244369],[-4.785546,50.245571],[-4.780822,50.248925],[-4.778119,50.249937],[-4.777637,50.250532],[-4.774992,50.251005],[-4.772946,50.2507],[-4.771574,50.251563],[-4.768628,50.252775],[-4.768014,50.254219],[-4.770797,50.25499],[-4.770812,50.255896],[-4.768645,50.256095],[-4.770361,50.257011],[-4.771289,50.258159],[-4.774012,50.257873],[-4.774698,50.25849],[-4.776968,50.258882],[-4.780901,50.259964],[-4.782803,50.261489],[-4.784871,50.26134],[-4.785522,50.262609],[-4.78413,50.263657],[-4.784225,50.265703],[-4.782037,50.266801],[-4.783205,50.268202],[-4.786673,50.268978],[-4.786782,50.27019],[-4.784748,50.270239],[-4.782907,50.271763],[-4.784631,50.273437],[-4.783937,50.275088],[-4.779806,50.27838],[-4.778328,50.279303],[-4.781079,50.28048],[-4.781128,50.280978],[-4.783253,50.281658],[-4.782577,50.283051],[-4.784365,50.284617],[-4.782414,50.287695],[-4.780659,50.289149],[-4.780717,50.290011],[-4.778793,50.290481],[-4.774142,50.292238],[-4.77342,50.292679],[-4.773715,50.294399],[-4.772708,50.295269],[-4.77101,50.295528],[-4.770438,50.296325],[-4.766775,50.297729],[-4.767644,50.298596],[-4.765652,50.299822],[-4.762821,50.300711],[-4.761844,50.300436],[-4.761254,50.299468],[-4.759373,50.298459],[-4.758157,50.299675],[-4.756465,50.300307],[-4.755705,50.298905],[-4.754022,50.297896],[-4.752538,50.298738],[-4.752684,50.299248],[-4.754971,50.300779],[-4.755675,50.301595],[-4.755211,50.303624],[-4.754019,50.305949],[-4.755461,50.30725],[-4.758066,50.307261],[-4.761083,50.308319],[-4.76343,50.310218],[-4.763246,50.311671],[-4.7651,50.312942],[-4.764296,50.313738],[-4.764725,50.31462],[-4.763605,50.315583],[-4.765277,50.316091],[-4.766162,50.319581],[-4.766916,50.320829],[-4.766061,50.3218],[-4.76681,50.322207],[-4.766143,50.323351],[-4.764958,50.324288],[-4.762012,50.324261],[-4.763264,50.326111],[-4.763069,50.326539],[-4.759795,50.3287],[-4.75686,50.329116],[-4.756848,50.33107],[-4.755902,50.330981],[-4.752497,50.332212],[-4.750428,50.331536],[-4.748926,50.332311],[-4.746726,50.331721],[-4.744658,50.332325],[-4.743029,50.33338],[-4.743232,50.333814],[-4.739755,50.335317],[-4.737254,50.334931],[-4.735769,50.335709],[-4.733414,50.336232],[-4.718573,50.338321],[-4.717573,50.338261],[-4.71127,50.339494],[-4.708858,50.34044],[-4.706211,50.340466],[-4.705186,50.341102],[-4.704461,50.342259],[-4.705696,50.343245],[-4.704605,50.343748],[-4.704297,50.344601],[-4.701106,50.343729],[-4.700289,50.344505],[-4.702417,50.346395],[-4.702509,50.346914],[-4.697757,50.347834],[-4.695375,50.347691],[-4.689806,50.346454],[-4.69029,50.344799],[-4.688944,50.343638],[-4.689583,50.342194],[-4.688185,50.341374],[-4.686263,50.340976],[-4.685116,50.339409],[-4.681976,50.338332],[-4.681461,50.337762],[-4.681979,50.33673],[-4.683112,50.335998],[-4.682161,50.3346],[-4.682634,50.333126],[-4.682147,50.332264],[-4.682918,50.330886],[-4.682162,50.330201],[-4.682953,50.325758],[-4.681977,50.324929],[-4.682599,50.323935],[-4.68208,50.322605],[-4.684826,50.320123],[-4.681283,50.319514],[-4.681137,50.31828],[-4.679007,50.318537],[-4.676647,50.317922],[-4.675163,50.314763],[-4.671245,50.314121],[-4.671202,50.315207],[-4.670391,50.316108],[-4.668821,50.316348],[-4.669797,50.317389],[-4.669202,50.318575],[-4.66948,50.319976],[-4.667553,50.322175],[-4.667615,50.323079],[-4.665254,50.323611],[-4.663445,50.322125],[-4.659538,50.322591],[-4.659051,50.3232],[-4.656585,50.322969],[-4.654487,50.323177],[-4.653126,50.32369],[-4.65172,50.326931],[-4.648861,50.32725],[-4.646608,50.326968],[-4.644912,50.328167],[-4.645713,50.329164],[-4.642904,50.329992],[-4.641228,50.331769],[-4.639136,50.332485],[-4.637387,50.333704],[-4.63417,50.334929],[-4.63197,50.338814],[-4.633639,50.339926],[-4.632974,50.342084],[-4.631231,50.344067],[-4.631148,50.344633],[-4.633117,50.345401],[-4.635786,50.345668],[-4.637627,50.346672],[-4.637934,50.347682],[-4.637087,50.351173],[-4.637642,50.352414],[-4.639207,50.353837],[-4.639411,50.35661],[-4.638747,50.360167],[-4.64102,50.363126],[-4.64037,50.365144],[-4.639041,50.366668],[-4.638927,50.370324],[-4.639553,50.371383],[-4.643624,50.372794],[-4.647937,50.376372],[-4.648974,50.376342],[-4.652419,50.37531],[-4.652765,50.375884],[-4.649698,50.377065],[-4.650138,50.37753],[-4.653842,50.378688],[-4.65561,50.379945],[-4.65636,50.38091],[-4.657546,50.384235],[-4.660498,50.386619],[-4.662771,50.38992],[-4.662906,50.391954],[-4.662276,50.39252],[-4.662564,50.39614],[-4.664405,50.397132],[-4.663523,50.398017],[-4.665328,50.398205],[-4.665092,50.399127],[-4.667527,50.399765],[-4.668961,50.401237],[-4.668183,50.401946],[-4.668827,50.403087],[-4.668223,50.404061],[-4.669145,50.405369],[-4.666629,50.407838],[-4.666268,50.407458],[-4.66891,50.405312],[-4.667964,50.404174],[-4.668471,50.402883],[-4.667878,50.401882],[-4.668663,50.401109],[-4.666788,50.399667],[-4.664704,50.399124],[-4.663464,50.398263],[-4.663199,50.397806],[-4.663963,50.397186],[-4.662339,50.396663],[-4.661694,50.393137],[-4.661954,50.391112],[-4.66081,50.388797],[-4.659298,50.387932],[-4.656166,50.385039],[-4.653965,50.383806],[-4.653376,50.382365],[-4.650879,50.381916],[-4.647316,50.380386],[-4.637941,50.373082],[-4.636123,50.373978],[-4.636246,50.376295],[-4.635175,50.379199],[-4.633488,50.380692],[-4.630978,50.380972],[-4.627688,50.380872],[-4.625882,50.381252],[-4.623508,50.382488],[-4.618337,50.383935],[-4.618568,50.383113],[-4.622442,50.381726],[-4.625293,50.381095],[-4.625894,50.380479],[-4.631508,50.380545],[-4.633508,50.379355],[-4.634168,50.378299],[-4.633611,50.374409],[-4.635407,50.370323],[-4.63377,50.367341],[-4.633526,50.365503],[-4.633974,50.363587],[-4.635868,50.361472],[-4.635982,50.360102],[-4.630985,50.358718],[-4.627846,50.358218],[-4.623803,50.359721],[-4.62246,50.359865],[-4.620407,50.359437],[-4.616836,50.3581],[-4.613121,50.358073],[-4.610931,50.358974],[-4.609065,50.358645],[-4.614632,50.357391],[-4.617538,50.357608],[-4.620466,50.358694],[-4.622379,50.358905],[-4.624496,50.357758],[-4.62792,50.357223],[-4.634073,50.358362],[-4.635777,50.358301],[-4.636521,50.355958],[-4.634461,50.349998],[-4.634686,50.348981],[-4.636001,50.347254],[-4.635232,50.346921],[-4.632282,50.346934],[-4.63084,50.346566],[-4.627391,50.347932],[-4.627805,50.346818],[-4.62915,50.345862],[-4.628769,50.343479],[-4.631426,50.341361],[-4.631151,50.340356],[-4.629668,50.338251],[-4.629659,50.334578],[-4.625907,50.334435],[-4.623992,50.335405],[-4.62247,50.335777],[-4.617152,50.335438],[-4.61343,50.337479],[-4.611991,50.337159],[-4.61398,50.336069],[-4.615167,50.335787],[-4.616068,50.334656],[-4.61731,50.334129],[-4.62248,50.334296],[-4.62341,50.333594],[-4.629909,50.332462],[-4.631573,50.330579],[-4.634286,50.329093],[-4.63597,50.329032],[-4.637666,50.329836],[-4.639752,50.328265],[-4.638648,50.326203],[-4.636473,50.326094],[-4.635187,50.324791],[-4.633987,50.325048],[-4.633085,50.324337],[-4.630798,50.324242],[-4.62917,50.324808],[-4.628409,50.3243],[-4.624532,50.324045],[-4.623791,50.32464],[-4.619671,50.323961],[-4.617302,50.324278],[-4.615017,50.325005],[-4.614251,50.326366],[-4.612681,50.327633],[-4.609454,50.32873],[-4.603471,50.328678],[-4.603449,50.327913],[-4.601317,50.326983],[-4.602455,50.325855],[-4.602309,50.324515],[-4.600615,50.323852],[-4.598564,50.324096],[-4.597089,50.324668],[-4.597164,50.326687],[-4.594563,50.327464],[-4.59037,50.330036],[-4.588965,50.330589],[-4.587495,50.332117],[-4.586253,50.331848],[-4.584131,50.332271],[-4.582656,50.331029],[-4.578492,50.33257],[-4.577322,50.331424],[-4.574123,50.330375],[-4.572722,50.330649],[-4.571638,50.329821],[-4.569989,50.329551],[-4.569181,50.328936],[-4.566465,50.328568],[-4.563671,50.327926],[-4.562065,50.328149],[-4.560913,50.327356],[-4.558853,50.327752],[-4.557914,50.326427],[-4.555673,50.326115],[-4.555437,50.325592],[-4.551508,50.325653],[-4.552257,50.324909],[-4.551459,50.324313],[-4.547614,50.324059],[-4.546917,50.324745],[-4.545025,50.324745],[-4.543096,50.324121],[-4.539575,50.324567],[-4.538958,50.323722],[-4.535491,50.324814],[-4.532036,50.324857],[-4.527644,50.326065],[-4.527342,50.326775],[-4.524716,50.327442],[-4.52273,50.327603],[-4.518996,50.328305],[-4.516889,50.329315],[-4.516115,50.330216],[-4.516737,50.3316],[-4.514015,50.330461],[-4.51223,50.330018],[-4.510321,50.330529],[-4.506814,50.33041],[-4.505861,50.33082],[-4.503819,50.330935],[-4.501836,50.330626],[-4.501171,50.331644],[-4.49975,50.332129],[-4.499286,50.333463],[-4.499968,50.3347],[-4.498102,50.336748],[-4.493597,50.337141],[-4.492358,50.336607],[-4.491571,50.335379],[-4.48865,50.335215],[-4.485527,50.335705],[-4.484622,50.334958],[-4.482321,50.334193],[-4.481807,50.334473],[-4.479238,50.333458],[-4.476403,50.333407],[-4.47448,50.332921],[-4.473048,50.333085],[-4.472028,50.334146],[-4.471884,50.336108],[-4.473167,50.336963],[-4.4731,50.338548],[-4.470822,50.339399],[-4.46599,50.340818],[-4.463152,50.341315],[-4.460136,50.341341],[-4.458578,50.342385],[-4.457673,50.343902],[-4.452457,50.344866],[-4.450834,50.347657],[-4.450589,50.349449],[-4.451204,50.350453],[-4.453936,50.351247],[-4.455871,50.353059],[-4.457158,50.358152],[-4.459256,50.358718],[-4.463898,50.357808],[-4.465044,50.358125],[-4.468336,50.360011],[-4.469172,50.361281],[-4.46932,50.362621],[-4.479205,50.36238],[-4.477356,50.363254],[-4.469177,50.363624],[-4.467752,50.362842],[-4.467204,50.360778],[-4.464256,50.358955],[-4.462069,50.35875],[-4.459601,50.359311],[-4.459487,50.3605],[-4.458264,50.362399],[-4.459319,50.365237],[-4.459074,50.366289],[-4.460571,50.367377],[-4.460119,50.368128],[-4.462264,50.372829],[-4.465492,50.374159],[-4.466795,50.375628],[-4.4661,50.376742],[-4.464603,50.377664],[-4.464831,50.375368],[-4.463969,50.374647],[-4.461546,50.373742],[-4.460234,50.37221],[-4.459205,50.369704],[-4.457215,50.366478],[-4.457409,50.364614],[-4.45638,50.362082],[-4.456804,50.360068],[-4.455688,50.358368],[-4.454572,50.352729],[-4.452965,50.351556],[-4.451836,50.352591],[-4.449201,50.352993],[-4.448354,50.3542],[-4.446304,50.354926],[-4.442968,50.357784],[-4.441323,50.35872],[-4.438211,50.35978],[-4.436436,50.361065],[-4.432437,50.360843],[-4.427464,50.361826],[-4.422247,50.361763],[-4.418167,50.362134],[-4.416176,50.362823],[-4.410224,50.364147],[-4.401662,50.363617],[-4.39292,50.363227],[-4.387308,50.364377],[-4.379384,50.362379],[-4.367048,50.360286],[-4.361753,50.360178],[-4.357918,50.361423],[-4.355344,50.361777],[-4.351997,50.361473],[-4.351614,50.361145],[-4.344388,50.360735],[-4.338254,50.359489],[-4.336778,50.359636],[-4.336075,50.360328],[-4.333529,50.361339],[-4.332141,50.362316],[-4.329839,50.361817],[-4.326377,50.361985],[-4.32346,50.361453],[-4.320912,50.361575],[-4.31997,50.361104],[-4.317582,50.361932],[-4.316345,50.361966],[-4.314574,50.361168],[-4.308151,50.361397],[-4.305796,50.360388],[-4.303884,50.360659],[-4.301372,50.360173],[-4.300354,50.359497],[-4.299026,50.359879],[-4.297392,50.359589],[-4.296476,50.358744],[-4.291857,50.358757],[-4.289809,50.357651],[-4.282619,50.356837],[-4.280241,50.355818],[-4.279714,50.355946],[-4.277114,50.354865],[-4.270495,50.352567],[-4.268063,50.350772],[-4.266551,50.349986],[-4.264178,50.349793],[-4.263995,50.349226],[-4.260557,50.348379],[-4.258871,50.34719],[-4.256391,50.346917],[-4.25453,50.345738],[-4.253083,50.345548],[-4.251727,50.344215],[-4.250583,50.344463],[-4.248176,50.342902],[-4.244689,50.342059],[-4.241521,50.339988],[-4.236131,50.3375],[-4.234118,50.33637],[-4.233014,50.335319],[-4.22917,50.333504],[-4.227528,50.332321],[-4.225888,50.330432],[-4.224314,50.329766],[-4.22315,50.328538],[-4.222083,50.328111],[-4.220417,50.326142],[-4.219524,50.324606],[-4.220485,50.323046],[-4.219652,50.322488],[-4.22212,50.321658],[-4.227276,50.319096],[-4.223186,50.316583],[-4.223677,50.315166],[-4.226865,50.313703],[-4.224782,50.312532],[-4.224245,50.311606],[-4.222632,50.311353],[-4.221113,50.312311],[-4.220832,50.313552],[-4.221355,50.314661],[-4.219727,50.31455],[-4.218899,50.315149],[-4.216838,50.315311],[-4.216251,50.315894],[-4.213346,50.317519],[-4.210499,50.318337],[-4.206563,50.318577],[-4.205095,50.318112],[-4.202834,50.318548],[-4.200361,50.318104],[-4.196818,50.318109],[-4.195854,50.318383],[-4.19359,50.318167],[-4.191549,50.317604],[-4.188403,50.317731],[-4.189052,50.318771],[-4.188832,50.320081],[-4.190081,50.321007],[-4.188935,50.321611],[-4.189515,50.323567],[-4.190428,50.324358],[-4.194561,50.326337],[-4.197418,50.32738],[-4.200916,50.329545],[-4.201375,50.331311],[-4.200343,50.331843],[-4.201272,50.332872],[-4.199957,50.334247],[-4.198609,50.334684],[-4.195839,50.336532],[-4.192724,50.338174],[-4.191336,50.339415],[-4.188077,50.340888],[-4.185973,50.341228],[-4.180817,50.341395],[-4.180433,50.342083],[-4.176762,50.343186],[-4.17378,50.343508],[-4.17128,50.343238],[-4.17117,50.343699],[-4.167371,50.345651],[-4.166696,50.346558],[-4.16639,50.348607],[-4.167267,50.350047],[-4.166653,50.351488],[-4.16787,50.352086],[-4.16854,50.353058],[-4.171118,50.353995],[-4.171442,50.35472],[-4.173037,50.355607],[-4.172573,50.356889],[-4.171426,50.358113],[-4.171708,50.3589],[-4.173989,50.359222],[-4.17439,50.360557],[-4.177123,50.361088],[-4.18056,50.360235],[-4.183033,50.357105],[-4.184263,50.356642],[-4.186518,50.356591],[-4.186948,50.355487],[-4.190038,50.355154],[-4.191139,50.354348],[-4.193356,50.353687],[-4.192944,50.35219],[-4.191032,50.351461],[-4.195341,50.349806],[-4.197068,50.349775],[-4.197722,50.349277],[-4.200211,50.348845],[-4.201,50.348207],[-4.204095,50.346884],[-4.205126,50.347305],[-4.207616,50.346907],[-4.208512,50.347399],[-4.206793,50.348376],[-4.209807,50.349429],[-4.210136,50.350465],[-4.208368,50.351033],[-4.206566,50.350545],[-4.205291,50.349002],[-4.203941,50.348812],[-4.203106,50.349371],[-4.203332,50.350395],[-4.202687,50.351458],[-4.201315,50.352567],[-4.199119,50.352432],[-4.197344,50.353243],[-4.196592,50.355188],[-4.197471,50.3555],[-4.196532,50.358601],[-4.19682,50.359414],[-4.198206,50.359806],[-4.202103,50.360041],[-4.202915,50.360811],[-4.2063,50.361721],[-4.208472,50.361494],[-4.207721,50.360703],[-4.208513,50.359544],[-4.212291,50.359047],[-4.212085,50.357235],[-4.212647,50.355989],[-4.211802,50.354959],[-4.213535,50.354192],[-4.215662,50.357391],[-4.215908,50.359015],[-4.218204,50.359701],[-4.224001,50.358753],[-4.221737,50.359957],[-4.21865,50.360743],[-4.217434,50.362209],[-4.220679,50.362733],[-4.222039,50.363384],[-4.226789,50.362977],[-4.231246,50.363764],[-4.23583,50.363761],[-4.236024,50.365493],[-4.234468,50.365352],[-4.232279,50.366001],[-4.230333,50.365428],[-4.228822,50.366318],[-4.227312,50.366253],[-4.222889,50.367875],[-4.22197,50.368867],[-4.220193,50.368599],[-4.220061,50.367316],[-4.218341,50.367576],[-4.214012,50.369283],[-4.211342,50.369784],[-4.207893,50.369915],[-4.2068,50.37197],[-4.204878,50.371607],[-4.201328,50.370263],[-4.199498,50.370215],[-4.197918,50.371062],[-4.194784,50.371857],[-4.19477,50.373636],[-4.192878,50.374614],[-4.193007,50.375851],[-4.197477,50.377053],[-4.196512,50.378321],[-4.202361,50.379038],[-4.202537,50.380754],[-4.199027,50.381267],[-4.197924,50.381894],[-4.198827,50.383227],[-4.203368,50.383873],[-4.205277,50.385111],[-4.209532,50.385895],[-4.207999,50.387288],[-4.20578,50.387364],[-4.204244,50.386939],[-4.202128,50.387108],[-4.202214,50.388383],[-4.205955,50.389076],[-4.206831,50.389955],[-4.209152,50.391137],[-4.210098,50.392216],[-4.213011,50.392718],[-4.218514,50.391989],[-4.219904,50.391124],[-4.221678,50.391415],[-4.223248,50.390353],[-4.226144,50.389347],[-4.228388,50.389435],[-4.230323,50.390482],[-4.231892,50.38992],[-4.23545,50.387448],[-4.235081,50.384684],[-4.234236,50.384203],[-4.237419,50.383179],[-4.23756,50.382023],[-4.239745,50.380106],[-4.243657,50.378872],[-4.245047,50.377232],[-4.249326,50.377317],[-4.249511,50.376345],[-4.249141,50.374505],[-4.25053,50.374695],[-4.2512,50.375801],[-4.255364,50.376316],[-4.25552,50.375779],[-4.258172,50.375437],[-4.258119,50.376738],[-4.259969,50.376716],[-4.262864,50.376137],[-4.266171,50.374767],[-4.267056,50.373541],[-4.266392,50.37288],[-4.267516,50.372231],[-4.271971,50.372247],[-4.273696,50.371742],[-4.278128,50.371296],[-4.279175,50.371916],[-4.275336,50.372586],[-4.274098,50.372287],[-4.270565,50.3735],[-4.268736,50.373428],[-4.268158,50.375266],[-4.270816,50.375171],[-4.272669,50.374234],[-4.275797,50.373939],[-4.277507,50.374567],[-4.279296,50.376225],[-4.279821,50.377683],[-4.284182,50.379848],[-4.285012,50.381265],[-4.286928,50.38276],[-4.29139,50.384199],[-4.295159,50.386768],[-4.295753,50.386071],[-4.295847,50.384037],[-4.297332,50.382979],[-4.299311,50.383414],[-4.301445,50.382715],[-4.30219,50.381337],[-4.304433,50.380445],[-4.304283,50.378168],[-4.304969,50.376948],[-4.306131,50.376979],[-4.305128,50.378639],[-4.305025,50.380974],[-4.302776,50.381318],[-4.302513,50.381967],[-4.30072,50.383455],[-4.299163,50.383646],[-4.297603,50.383238],[-4.296154,50.384486],[-4.296461,50.386173],[-4.295611,50.387388],[-4.300922,50.388638],[-4.303371,50.387525],[-4.304888,50.387756],[-4.30686,50.389221],[-4.307429,50.390062],[-4.309754,50.39022],[-4.311098,50.389403],[-4.312831,50.389929],[-4.314753,50.390014],[-4.31691,50.3892],[-4.318739,50.389998],[-4.319973,50.389559],[-4.325045,50.388859],[-4.322984,50.389922],[-4.321113,50.389881],[-4.319029,50.39046],[-4.31684,50.389527],[-4.31538,50.390366],[-4.312904,50.390325],[-4.311037,50.389981],[-4.308835,50.390701],[-4.306882,50.390217],[-4.304929,50.388307],[-4.303288,50.388114],[-4.303061,50.389239],[-4.302152,50.390143],[-4.303672,50.392361],[-4.302355,50.395773],[-4.301543,50.396698],[-4.302448,50.39767],[-4.304482,50.398135],[-4.305094,50.398793],[-4.306578,50.398896],[-4.306939,50.401161],[-4.306039,50.403039],[-4.302413,50.404359],[-4.305759,50.401607],[-4.304997,50.399997],[-4.302144,50.399912],[-4.300397,50.399491],[-4.299381,50.397056],[-4.29981,50.395762],[-4.301617,50.393894],[-4.30172,50.392635],[-4.300463,50.391039],[-4.29446,50.389515],[-4.293586,50.389072],[-4.291736,50.392143],[-4.291628,50.394093],[-4.290446,50.394813],[-4.288453,50.394876],[-4.286152,50.395854],[-4.28292,50.397743],[-4.282035,50.398682],[-4.280789,50.401339],[-4.281506,50.403313],[-4.281375,50.404813],[-4.279131,50.406815],[-4.27858,50.408119],[-4.278934,50.409277],[-4.277773,50.411117],[-4.277869,50.407447],[-4.279923,50.404989],[-4.280497,50.402904],[-4.279866,50.400685],[-4.280666,50.398529],[-4.281778,50.397818],[-4.282943,50.396058],[-4.286861,50.394517],[-4.289908,50.392477],[-4.290316,50.390397],[-4.289109,50.387955],[-4.287318,50.389078],[-4.285145,50.389004],[-4.284222,50.388513],[-4.283791,50.387073],[-4.281787,50.38607],[-4.283572,50.385179],[-4.284283,50.384148],[-4.282705,50.381544],[-4.277955,50.3788],[-4.276258,50.377006],[-4.273336,50.37681],[-4.27171,50.377689],[-4.271477,50.379],[-4.270644,50.379603],[-4.270496,50.384779],[-4.268374,50.38689],[-4.266411,50.387209],[-4.263204,50.386136],[-4.262153,50.386264],[-4.260143,50.385491],[-4.25818,50.385136],[-4.254062,50.38324],[-4.253489,50.384243],[-4.248381,50.385058],[-4.245379,50.386937],[-4.246005,50.387562],[-4.249577,50.388748],[-4.251589,50.388972],[-4.251967,50.388203],[-4.25319,50.387837],[-4.257851,50.388311],[-4.255693,50.38949],[-4.253644,50.388965],[-4.247784,50.390617],[-4.249429,50.390756],[-4.252072,50.393219],[-4.249883,50.3931],[-4.247235,50.390642],[-4.243747,50.389213],[-4.241615,50.389767],[-4.242435,50.390723],[-4.24212,50.391548],[-4.239944,50.392584],[-4.236828,50.393403],[-4.234898,50.393447],[-4.233061,50.393957],[-4.232125,50.39479],[-4.233039,50.395614],[-4.235357,50.396351],[-4.233876,50.397387],[-4.234684,50.397836],[-4.233525,50.399991],[-4.232434,50.397264],[-4.230209,50.396955],[-4.230549,50.39615],[-4.229593,50.395271],[-4.229991,50.393757],[-4.227302,50.393297],[-4.226196,50.393708],[-4.225199,50.394806],[-4.225641,50.396114],[-4.221407,50.397535],[-4.217712,50.39751],[-4.215222,50.398841],[-4.211875,50.399324],[-4.210182,50.402433],[-4.210125,50.403788],[-4.212668,50.404272],[-4.213537,50.404806],[-4.208875,50.405247],[-4.206859,50.40605],[-4.205829,50.408047],[-4.207105,50.410856],[-4.207809,50.410988],[-4.210539,50.4135],[-4.211649,50.413927],[-4.211533,50.417747],[-4.210952,50.418193],[-4.210684,50.42013],[-4.211505,50.420939],[-4.211116,50.421992],[-4.211334,50.424051],[-4.209874,50.42536],[-4.211599,50.426297],[-4.212528,50.426194],[-4.214484,50.426777],[-4.216688,50.426048],[-4.21803,50.425941],[-4.218839,50.425054],[-4.221807,50.424862],[-4.223005,50.42435],[-4.224742,50.424275],[-4.225916,50.424848],[-4.228413,50.424775],[-4.229686,50.425222],[-4.224538,50.425685],[-4.224439,50.42702],[-4.22819,50.428064],[-4.228324,50.42959],[-4.226885,50.429972],[-4.227142,50.432713],[-4.228091,50.435082],[-4.228599,50.435494],[-4.230698,50.435345],[-4.232762,50.436267],[-4.232577,50.436919],[-4.230126,50.436149],[-4.227563,50.436139],[-4.226369,50.435556],[-4.225835,50.433786],[-4.224993,50.433344],[-4.225593,50.432448],[-4.225948,50.429881],[-4.225173,50.428381],[-4.223718,50.427742],[-4.222848,50.426672],[-4.220908,50.428081],[-4.219113,50.4281],[-4.218624,50.42911],[-4.217037,50.428929],[-4.216147,50.428322],[-4.214278,50.429731],[-4.206751,50.429553],[-4.205711,50.429191],[-4.203772,50.429959],[-4.203761,50.43078],[-4.202594,50.431373],[-4.20308,50.432602],[-4.202015,50.433303],[-4.201524,50.434444],[-4.199313,50.435719],[-4.200551,50.43795],[-4.205805,50.440536],[-4.205707,50.441578],[-4.203168,50.442235],[-4.204787,50.443408],[-4.207035,50.44371],[-4.209869,50.445681],[-4.209346,50.448784],[-4.210665,50.45034],[-4.210813,50.4525],[-4.212751,50.45281],[-4.211387,50.454024],[-4.211647,50.45621],[-4.213315,50.459301],[-4.215264,50.461172],[-4.216935,50.46379],[-4.217757,50.464434],[-4.220679,50.463861],[-4.222912,50.462646],[-4.224448,50.461106],[-4.223981,50.458752],[-4.228357,50.455339],[-4.230591,50.45501],[-4.233885,50.456095],[-4.23488,50.455826],[-4.237906,50.457764],[-4.239895,50.460728],[-4.240431,50.462622],[-4.239783,50.463454],[-4.239622,50.464959],[-4.238603,50.466365],[-4.235904,50.468404],[-4.229788,50.471364],[-4.226283,50.472495],[-4.219227,50.475465],[-4.218494,50.476861],[-4.218702,50.478374],[-4.218789,50.483574],[-4.220496,50.484953],[-4.222394,50.48584],[-4.224331,50.488813],[-4.224782,50.489895],[-4.221265,50.49281],[-4.220921,50.494056],[-4.221816,50.496741],[-4.220223,50.49852],[-4.218129,50.49844],[-4.209829,50.496896],[-4.206572,50.495648],[-4.20396,50.492897],[-4.200489,50.492454],[-4.195573,50.493493],[-4.194811,50.493979],[-4.194178,50.495589],[-4.195516,50.498277],[-4.193212,50.499156],[-4.18945,50.498696],[-4.185833,50.499893],[-4.182484,50.500218],[-4.181106,50.501149],[-4.180568,50.502637],[-4.180978,50.503692],[-4.183932,50.50749],[-4.185513,50.508164],[-4.187724,50.50791],[-4.191091,50.506824],[-4.193221,50.503147],[-4.193987,50.502634],[-4.19968,50.502359],[-4.202912,50.502972],[-4.203472,50.505148],[-4.202797,50.508016],[-4.202026,50.513273],[-4.203524,50.513493],[-4.20879,50.513049],[-4.209934,50.514226],[-4.20954,50.515715],[-4.208079,50.516551],[-4.206432,50.518069],[-4.206251,50.520148],[-4.207252,50.521913],[-4.211039,50.525327],[-4.212119,50.528837],[-4.211399,50.530016],[-4.207026,50.532757],[-4.208202,50.533755],[-4.209922,50.533522],[-4.213295,50.534529],[-4.214505,50.534568],[-4.218925,50.532039],[-4.225552,50.529714],[-4.226743,50.529759],[-4.229287,50.530812],[-4.232296,50.531017],[-4.233985,50.531707],[-4.236807,50.534172],[-4.240167,50.541419],[-4.241492,50.542689],[-4.244169,50.543517],[-4.248157,50.54393],[-4.25342,50.543644],[-4.254737,50.54254],[-4.255565,50.54037],[-4.257831,50.538935],[-4.263502,50.536005],[-4.26877,50.535271],[-4.271623,50.536683],[-4.271433,50.538622],[-4.267037,50.542422],[-4.263992,50.543538],[-4.261143,50.543876],[-4.260033,50.544544],[-4.259285,50.545847],[-4.259955,50.547721],[-4.259596,50.551143],[-4.261456,50.554661],[-4.263764,50.557369],[-4.265992,50.558859],[-4.272493,50.561636],[-4.273427,50.562494],[-4.273567,50.564797],[-4.274431,50.56593],[-4.279516,50.569173],[-4.279344,50.570852],[-4.277859,50.574782],[-4.269724,50.578977],[-4.269804,50.579878],[-4.27115,50.582214],[-4.272533,50.58286],[-4.281167,50.584019],[-4.285257,50.584822],[-4.286555,50.583985],[-4.285877,50.582342],[-4.282328,50.57893],[-4.281897,50.577149],[-4.282489,50.576389],[-4.285212,50.575036],[-4.286561,50.575098],[-4.288863,50.576373],[-4.289487,50.577431],[-4.289565,50.58148],[-4.290274,50.583049],[-4.291328,50.583858],[-4.294751,50.584379],[-4.298374,50.583701],[-4.305241,50.579041],[-4.306607,50.578573],[-4.308063,50.578944],[-4.308333,50.581851],[-4.311219,50.58487],[-4.312173,50.589497],[-4.311168,50.591898],[-4.307497,50.593493],[-4.306314,50.594765],[-4.306896,50.599897],[-4.308454,50.602695],[-4.307155,50.604246],[-4.303429,50.61153],[-4.303729,50.612204],[-4.306389,50.6141],[-4.305775,50.615825],[-4.307488,50.618422],[-4.307405,50.620056],[-4.30616,50.62089],[-4.302153,50.625234],[-4.301766,50.626729],[-4.302634,50.629646],[-4.301947,50.631228],[-4.300201,50.632396],[-4.300107,50.633409],[-4.301875,50.635317],[-4.303892,50.636137],[-4.306596,50.636082],[-4.308802,50.635669],[-4.310533,50.636416],[-4.311602,50.637448],[-4.313909,50.636118],[-4.319573,50.636001],[-4.325899,50.637884],[-4.325238,50.64023],[-4.32804,50.640753],[-4.329856,50.64023],[-4.332825,50.640805],[-4.333677,50.641438],[-4.333324,50.643568],[-4.335227,50.646541]]]]},"properties":{"LAD22CD":"E06000052","LAD22NM":"Cornwall","BNG_E":212497,"BNG_N":64493,"LONG":-4.64254,"LAT":50.45022,"GlobalID":"03194673-0e49-4cad-a440-f8292afc55ae"},"id":49}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.399769,49.870159],[-6.400208,49.870864],[-6.402766,49.870255],[-6.402243,49.869798],[-6.399769,49.870159]]],[[[-6.349131,49.898198],[-6.350292,49.897335],[-6.349369,49.89643],[-6.350435,49.895442],[-6.349526,49.893705],[-6.350688,49.893507],[-6.351019,49.892438],[-6.353787,49.890806],[-6.352893,49.889497],[-6.35301,49.888855],[-6.351701,49.888281],[-6.348601,49.888308],[-6.347252,49.889792],[-6.345935,49.890018],[-6.344521,49.887545],[-6.341942,49.885498],[-6.343367,49.884923],[-6.343539,49.883997],[-6.342799,49.883258],[-6.341261,49.882914],[-6.339733,49.883353],[-6.338124,49.884554],[-6.339798,49.884743],[-6.339909,49.885704],[-6.337452,49.886365],[-6.336031,49.886277],[-6.335852,49.88844],[-6.336726,49.888875],[-6.33696,49.890007],[-6.339378,49.891134],[-6.33786,49.891739],[-6.338415,49.893367],[-6.335957,49.894052],[-6.334251,49.893673],[-6.334194,49.892415],[-6.333444,49.891531],[-6.331578,49.890284],[-6.330886,49.889032],[-6.329239,49.889143],[-6.328672,49.890377],[-6.327512,49.891274],[-6.326972,49.892582],[-6.327841,49.893062],[-6.329375,49.893029],[-6.330037,49.89414],[-6.328251,49.895004],[-6.331172,49.896255],[-6.331961,49.897132],[-6.335058,49.898153],[-6.336189,49.897431],[-6.338227,49.897589],[-6.338112,49.896672],[-6.336281,49.895939],[-6.33637,49.894679],[-6.33747,49.894101],[-6.34065,49.895328],[-6.341988,49.897169],[-6.34426,49.894965],[-6.346559,49.895776],[-6.347075,49.897039],[-6.349131,49.898198]]],[[[-6.373052,49.898822],[-6.373385,49.899421],[-6.375462,49.89831],[-6.374719,49.897529],[-6.375145,49.8965],[-6.376072,49.89618],[-6.378275,49.896396],[-6.376284,49.89503],[-6.374259,49.894754],[-6.37244,49.89518],[-6.371483,49.894934],[-6.370063,49.895684],[-6.369113,49.894765],[-6.369965,49.892875],[-6.368256,49.89153],[-6.36679,49.891979],[-6.365709,49.893106],[-6.367615,49.89408],[-6.369563,49.89683],[-6.371961,49.896857],[-6.372263,49.898472],[-6.373052,49.898822]]],[[[-6.361791,49.931162],[-6.360902,49.932206],[-6.361757,49.932722],[-6.362889,49.93154],[-6.361791,49.931162]]],[[[-6.299024,49.937469],[-6.299621,49.937354],[-6.300437,49.935477],[-6.302921,49.934556],[-6.304361,49.934391],[-6.305724,49.934961],[-6.308133,49.934243],[-6.309209,49.933554],[-6.308864,49.931876],[-6.30971,49.93121],[-6.309286,49.930392],[-6.312715,49.928029],[-6.313826,49.927615],[-6.311619,49.924561],[-6.309064,49.923533],[-6.308356,49.921693],[-6.309286,49.920738],[-6.308281,49.920033],[-6.307898,49.917963],[-6.30963,49.916323],[-6.310948,49.916953],[-6.312051,49.916673],[-6.312374,49.915709],[-6.314539,49.915193],[-6.316532,49.915179],[-6.317331,49.916419],[-6.319497,49.916234],[-6.321855,49.917219],[-6.322604,49.916426],[-6.324148,49.915962],[-6.324779,49.914683],[-6.327605,49.91254],[-6.327222,49.911589],[-6.325514,49.910166],[-6.323511,49.909174],[-6.322565,49.907713],[-6.321392,49.908481],[-6.317693,49.908657],[-6.318285,49.909957],[-6.318038,49.912563],[-6.317457,49.913259],[-6.315283,49.913616],[-6.312812,49.913226],[-6.311035,49.911928],[-6.31054,49.909711],[-6.308152,49.908454],[-6.308107,49.907349],[-6.306071,49.906098],[-6.306648,49.905152],[-6.305725,49.904266],[-6.3021,49.90349],[-6.302154,49.904957],[-6.30098,49.905132],[-6.300141,49.906027],[-6.302504,49.908165],[-6.302299,49.90945],[-6.303355,49.910083],[-6.303428,49.911004],[-6.3018,49.912089],[-6.300773,49.91212],[-6.299784,49.910995],[-6.297872,49.910533],[-6.296882,49.911635],[-6.294455,49.911245],[-6.292794,49.910392],[-6.291202,49.910693],[-6.287865,49.910023],[-6.287347,49.911197],[-6.284361,49.91148],[-6.283936,49.914826],[-6.285752,49.915276],[-6.286541,49.91663],[-6.285286,49.917275],[-6.283567,49.916998],[-6.282974,49.915827],[-6.280324,49.915498],[-6.278288,49.916502],[-6.278496,49.91732],[-6.277561,49.918088],[-6.278541,49.919537],[-6.276769,49.920252],[-6.276034,49.922384],[-6.278372,49.922884],[-6.278584,49.924124],[-6.277589,49.924876],[-6.278243,49.925905],[-6.279332,49.926478],[-6.281036,49.926525],[-6.281222,49.928516],[-6.276841,49.928524],[-6.278123,49.929573],[-6.280362,49.928934],[-6.282014,49.929018],[-6.281844,49.930827],[-6.283448,49.930836],[-6.285233,49.930205],[-6.286852,49.930918],[-6.288265,49.930893],[-6.287786,49.933394],[-6.290028,49.934187],[-6.291776,49.935542],[-6.293452,49.93548],[-6.295515,49.936198],[-6.296293,49.936996],[-6.2979,49.936836],[-6.299024,49.937469]]],[[[-6.349432,49.928311],[-6.348629,49.93002],[-6.349453,49.931818],[-6.352035,49.933591],[-6.351583,49.935618],[-6.350228,49.937295],[-6.352072,49.937566],[-6.353258,49.938403],[-6.355055,49.937847],[-6.355901,49.936661],[-6.354759,49.934781],[-6.353654,49.933764],[-6.354241,49.932285],[-6.355627,49.931957],[-6.357628,49.930292],[-6.3548,49.929778],[-6.354212,49.92865],[-6.350694,49.928113],[-6.349432,49.928311]]],[[[-6.244745,49.945649],[-6.246165,49.946091],[-6.248129,49.945459],[-6.245512,49.944372],[-6.244745,49.945649]]],[[[-6.275815,49.946137],[-6.276889,49.946662],[-6.277968,49.945369],[-6.276322,49.94535],[-6.275815,49.946137]]],[[[-6.263929,49.946771],[-6.265941,49.94681],[-6.267168,49.946465],[-6.267368,49.945534],[-6.264714,49.942621],[-6.263231,49.941863],[-6.262342,49.943361],[-6.263026,49.944357],[-6.265197,49.944234],[-6.266289,49.944789],[-6.266374,49.946158],[-6.264439,49.946211],[-6.263929,49.946771]]],[[[-6.248334,49.949899],[-6.249489,49.949827],[-6.249589,49.948836],[-6.247928,49.948629],[-6.248334,49.949899]]],[[[-6.267797,49.948427],[-6.267391,49.949608],[-6.270064,49.949909],[-6.269951,49.949011],[-6.267797,49.948427]]],[[[-6.255764,49.951101],[-6.256726,49.952452],[-6.25846,49.95371],[-6.260818,49.953926],[-6.260927,49.954832],[-6.262182,49.955606],[-6.261346,49.952637],[-6.258289,49.95133],[-6.257612,49.950078],[-6.254243,49.948429],[-6.253644,49.948526],[-6.252567,49.950113],[-6.255764,49.951101]]],[[[-6.36828,49.954428],[-6.369777,49.955482],[-6.371521,49.953735],[-6.370581,49.952457],[-6.368809,49.952557],[-6.36828,49.954428]]],[[[-6.330121,49.966829],[-6.332376,49.966987],[-6.333593,49.966508],[-6.332569,49.965525],[-6.329374,49.965342],[-6.328954,49.966271],[-6.330121,49.966829]]],[[[-6.358394,49.966734],[-6.360414,49.96657],[-6.361214,49.964916],[-6.35987,49.964147],[-6.360217,49.963019],[-6.356991,49.96214],[-6.356449,49.961407],[-6.357704,49.959495],[-6.360507,49.957632],[-6.360984,49.955826],[-6.362328,49.955094],[-6.361451,49.954554],[-6.35983,49.955357],[-6.358415,49.954472],[-6.358396,49.953636],[-6.360228,49.952691],[-6.360965,49.953259],[-6.363593,49.953607],[-6.364553,49.951152],[-6.362768,49.951075],[-6.361069,49.951543],[-6.358362,49.950678],[-6.356549,49.949604],[-6.356511,49.948319],[-6.35735,49.947393],[-6.359963,49.947968],[-6.361094,49.947604],[-6.362245,49.946241],[-6.359211,49.946393],[-6.357128,49.944914],[-6.356603,49.945562],[-6.352645,49.944529],[-6.350133,49.945809],[-6.349658,49.946649],[-6.350047,49.948512],[-6.351616,49.949157],[-6.352242,49.950105],[-6.351596,49.951206],[-6.349472,49.952507],[-6.350495,49.953744],[-6.348023,49.955732],[-6.349323,49.95774],[-6.351353,49.958019],[-6.351367,49.95911],[-6.353047,49.960734],[-6.353436,49.96165],[-6.35698,49.963134],[-6.358115,49.963236],[-6.359396,49.964049],[-6.359655,49.965201],[-6.358666,49.965623],[-6.358394,49.966734]]],[[[-6.348519,49.968019],[-6.350488,49.967193],[-6.349722,49.966704],[-6.351925,49.965055],[-6.35042,49.964561],[-6.35076,49.963495],[-6.349638,49.962567],[-6.34803,49.962098],[-6.347013,49.960505],[-6.345878,49.959992],[-6.346172,49.95898],[-6.345105,49.958583],[-6.344234,49.957432],[-6.341278,49.955898],[-6.340218,49.95654],[-6.339119,49.955919],[-6.338364,49.954013],[-6.339298,49.952668],[-6.340554,49.951752],[-6.338185,49.948937],[-6.339132,49.947735],[-6.339049,49.946593],[-6.336591,49.946],[-6.335492,49.945194],[-6.333076,49.940783],[-6.333025,49.939278],[-6.330952,49.940528],[-6.331111,49.941938],[-6.328294,49.943513],[-6.3237,49.944429],[-6.320494,49.94426],[-6.322613,49.945868],[-6.322755,49.946713],[-6.321338,49.95057],[-6.319141,49.953372],[-6.32101,49.953513],[-6.322853,49.955348],[-6.322788,49.956631],[-6.32448,49.956858],[-6.325327,49.957956],[-6.3263,49.958196],[-6.327189,49.959267],[-6.32866,49.958621],[-6.331257,49.958551],[-6.33249,49.95898],[-6.333532,49.961138],[-6.333369,49.96221],[-6.334266,49.963814],[-6.337114,49.963535],[-6.337763,49.962617],[-6.339484,49.962679],[-6.341445,49.963865],[-6.341393,49.965161],[-6.340377,49.966031],[-6.341934,49.966829],[-6.342623,49.967938],[-6.3442,49.968121],[-6.346728,49.967658],[-6.348519,49.968019]]],[[[-6.315414,49.970157],[-6.31528,49.968717],[-6.313536,49.966998],[-6.31205,49.967152],[-6.310523,49.966678],[-6.309925,49.965809],[-6.310649,49.964959],[-6.309484,49.964569],[-6.307747,49.965596],[-6.309008,49.966374],[-6.310102,49.967723],[-6.309469,49.96943],[-6.311664,49.969722],[-6.313059,49.968935],[-6.314168,49.970082],[-6.315414,49.970157]]],[[[-6.297168,49.974076],[-6.299313,49.971461],[-6.297694,49.970977],[-6.298497,49.969506],[-6.299789,49.969536],[-6.302326,49.970197],[-6.302803,49.969763],[-6.30279,49.96796],[-6.304927,49.966663],[-6.304258,49.9659],[-6.304311,49.964054],[-6.296005,49.96402],[-6.294453,49.96351],[-6.294152,49.962717],[-6.290093,49.961893],[-6.287345,49.960529],[-6.286887,49.959307],[-6.285278,49.958271],[-6.285515,49.957619],[-6.284406,49.95619],[-6.281764,49.956429],[-6.280695,49.95736],[-6.281174,49.958182],[-6.277991,49.959273],[-6.273767,49.959321],[-6.270679,49.958506],[-6.268868,49.959461],[-6.268086,49.960958],[-6.26558,49.961013],[-6.264063,49.962266],[-6.26162,49.962914],[-6.26287,49.965677],[-6.26386,49.965977],[-6.26406,49.966985],[-6.265856,49.967603],[-6.267275,49.967552],[-6.268323,49.96684],[-6.268781,49.965388],[-6.268438,49.96472],[-6.269658,49.96415],[-6.272734,49.96445],[-6.272659,49.965657],[-6.274372,49.965626],[-6.274781,49.964608],[-6.276569,49.964583],[-6.278005,49.963929],[-6.279605,49.964409],[-6.279986,49.965775],[-6.281179,49.966348],[-6.282488,49.966007],[-6.283433,49.965188],[-6.284658,49.965538],[-6.286482,49.965332],[-6.289063,49.966526],[-6.292263,49.97015],[-6.292604,49.970945],[-6.291908,49.971872],[-6.292947,49.973566],[-6.295186,49.9741],[-6.297168,49.974076]]],[[[-6.324791,49.974851],[-6.326787,49.974867],[-6.328161,49.974052],[-6.327724,49.972857],[-6.328075,49.970537],[-6.327141,49.970155],[-6.325839,49.970685],[-6.32313,49.970826],[-6.321924,49.972194],[-6.320227,49.97328],[-6.32236,49.973414],[-6.324791,49.974851]]],[[[-6.294607,49.98012],[-6.295964,49.979526],[-6.294822,49.977486],[-6.292838,49.978112],[-6.291623,49.977781],[-6.291063,49.976478],[-6.290821,49.974374],[-6.288395,49.975816],[-6.288917,49.976572],[-6.288137,49.977961],[-6.289925,49.97789],[-6.291098,49.97858],[-6.291581,49.979661],[-6.292701,49.980648],[-6.294607,49.98012]]],[[[-6.321758,49.979559],[-6.322585,49.979962],[-6.323958,49.979442],[-6.324213,49.978004],[-6.322601,49.97752],[-6.321314,49.978197],[-6.321758,49.979559]]]]},"properties":{"LAD22CD":"E06000053","LAD22NM":"Isles of Scilly","BNG_E":91327,"BNG_N":11447,"LONG":-6.30217,"LAT":49.92332,"GlobalID":"8325cf10-bbec-426a-a0d1-ee619d59e210"},"id":50}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.788617,51.667002],[-1.790689,51.668603],[-1.792063,51.670361],[-1.795437,51.672794],[-1.794439,51.676772],[-1.796611,51.677084],[-1.799357,51.68084],[-1.801236,51.685499],[-1.802462,51.685359],[-1.803661,51.68825],[-1.80616,51.69054],[-1.807211,51.692514],[-1.806667,51.692814],[-1.811173,51.697482],[-1.807492,51.699155],[-1.811941,51.702049],[-1.811943,51.703146],[-1.818488,51.70231],[-1.819286,51.699577],[-1.819309,51.698156],[-1.818699,51.696873],[-1.819367,51.696011],[-1.819367,51.694261],[-1.815195,51.688615],[-1.81349,51.687742],[-1.812472,51.686],[-1.815404,51.681931],[-1.816042,51.680637],[-1.817096,51.679622],[-1.820378,51.678],[-1.821671,51.676856],[-1.821361,51.675976],[-1.822959,51.67459],[-1.823009,51.67313],[-1.820964,51.67278],[-1.82109,51.672036],[-1.819897,51.670992],[-1.818445,51.670552],[-1.817871,51.669224],[-1.81676,51.667938],[-1.816539,51.664863],[-1.815198,51.663529],[-1.816211,51.662947],[-1.819537,51.662782],[-1.834471,51.65752],[-1.840368,51.656193],[-1.846447,51.656544],[-1.850484,51.656285],[-1.851146,51.657881],[-1.85305,51.659934],[-1.853286,51.661093],[-1.855015,51.662192],[-1.857345,51.662213],[-1.860533,51.664821],[-1.860726,51.666702],[-1.860142,51.668484],[-1.862852,51.669992],[-1.86484,51.670635],[-1.865491,51.673462],[-1.866342,51.674417],[-1.868746,51.675137],[-1.868706,51.675813],[-1.872454,51.678759],[-1.873884,51.68259],[-1.878647,51.681875],[-1.882254,51.680609],[-1.882933,51.680858],[-1.889067,51.678296],[-1.893289,51.676939],[-1.895051,51.677013],[-1.899013,51.679686],[-1.899757,51.677824],[-1.898443,51.676795],[-1.896839,51.674209],[-1.89677,51.672799],[-1.894701,51.670511],[-1.893895,51.670193],[-1.891907,51.668417],[-1.891763,51.666913],[-1.888461,51.665809],[-1.889194,51.664917],[-1.88671,51.65944],[-1.878625,51.654215],[-1.876326,51.653085],[-1.877297,51.651981],[-1.880757,51.652335],[-1.881537,51.651426],[-1.884267,51.6499],[-1.888398,51.648859],[-1.892277,51.651191],[-1.895102,51.652364],[-1.895743,51.653093],[-1.903903,51.656028],[-1.905585,51.65551],[-1.908761,51.656416],[-1.908906,51.655189],[-1.914043,51.655639],[-1.920905,51.657244],[-1.921704,51.65865],[-1.926765,51.660253],[-1.925571,51.661081],[-1.928663,51.661537],[-1.938919,51.667845],[-1.939055,51.669172],[-1.942455,51.670009],[-1.944222,51.669986],[-1.947312,51.669115],[-1.94949,51.667409],[-1.951831,51.667253],[-1.952423,51.665472],[-1.954797,51.66533],[-1.954605,51.662548],[-1.958631,51.661102],[-1.957886,51.659682],[-1.963057,51.658656],[-1.962332,51.656728],[-1.961175,51.656885],[-1.950519,51.636963],[-1.954342,51.637894],[-1.957147,51.637865],[-1.959919,51.638883],[-1.964683,51.638745],[-1.968741,51.63996],[-1.970942,51.639683],[-1.971882,51.63916],[-1.974438,51.638887],[-1.975801,51.638159],[-1.977327,51.638091],[-1.976478,51.643347],[-1.980098,51.642898],[-1.983006,51.643485],[-1.984778,51.643184],[-1.985776,51.643887],[-1.986514,51.645626],[-1.987605,51.646411],[-1.991264,51.647471],[-1.991191,51.649072],[-1.992184,51.649807],[-1.993727,51.649673],[-1.995308,51.651364],[-1.997347,51.651254],[-2.001909,51.649121],[-2.003211,51.648979],[-2.006239,51.649304],[-2.010503,51.648867],[-2.012898,51.650648],[-2.015592,51.650515],[-2.019925,51.652432],[-2.020859,51.653605],[-2.021047,51.655121],[-2.024437,51.654287],[-2.025323,51.655223],[-2.027996,51.656756],[-2.031817,51.658318],[-2.03366,51.658455],[-2.040783,51.661844],[-2.046201,51.665454],[-2.047086,51.666934],[-2.053399,51.669713],[-2.054675,51.671388],[-2.057174,51.672443],[-2.073412,51.659499],[-2.10663,51.632092],[-2.113615,51.62638],[-2.117484,51.622598],[-2.12074,51.62053],[-2.134519,51.607915],[-2.152538,51.590342],[-2.15439,51.591468],[-2.156455,51.591959],[-2.158063,51.593491],[-2.162196,51.593508],[-2.16772,51.594561],[-2.167889,51.59496],[-2.170925,51.59577],[-2.174718,51.596166],[-2.176682,51.597491],[-2.177415,51.597325],[-2.179491,51.600046],[-2.182776,51.59923],[-2.181063,51.596508],[-2.183744,51.595861],[-2.183319,51.594947],[-2.190013,51.592503],[-2.192071,51.594263],[-2.192443,51.595813],[-2.194275,51.595516],[-2.200622,51.596191],[-2.206553,51.595949],[-2.206003,51.598233],[-2.205954,51.601294],[-2.207427,51.603401],[-2.210813,51.60296],[-2.212734,51.601228],[-2.217954,51.59918],[-2.222945,51.59611],[-2.226048,51.595199],[-2.23063,51.595072],[-2.236103,51.593858],[-2.241867,51.592107],[-2.241115,51.589703],[-2.242684,51.587969],[-2.244656,51.5836],[-2.245117,51.581409],[-2.250623,51.582049],[-2.251842,51.583214],[-2.256796,51.582809],[-2.264267,51.582988],[-2.269587,51.581851],[-2.271307,51.578543],[-2.272559,51.57759],[-2.273951,51.574382],[-2.273993,51.572359],[-2.268803,51.572449],[-2.26643,51.571749],[-2.263423,51.571305],[-2.2603,51.569901],[-2.264135,51.567974],[-2.264437,51.566828],[-2.266499,51.564655],[-2.266062,51.564319],[-2.267406,51.562885],[-2.268102,51.558788],[-2.267686,51.558163],[-2.268404,51.555744],[-2.267801,51.553874],[-2.26703,51.553322],[-2.267554,51.552212],[-2.266809,51.551354],[-2.268369,51.549692],[-2.264245,51.545652],[-2.261722,51.544741],[-2.262213,51.541661],[-2.264816,51.537586],[-2.266502,51.536262],[-2.265659,51.535426],[-2.264069,51.535398],[-2.263362,51.534392],[-2.261862,51.534505],[-2.260257,51.533952],[-2.260539,51.532082],[-2.260006,51.530369],[-2.257664,51.528415],[-2.253533,51.528744],[-2.252109,51.528138],[-2.252388,51.526874],[-2.254926,51.525665],[-2.25475,51.52404],[-2.255784,51.522957],[-2.255809,51.522078],[-2.262691,51.51963],[-2.263719,51.518559],[-2.270397,51.518365],[-2.277563,51.516862],[-2.281294,51.51563],[-2.286932,51.512936],[-2.296383,51.509745],[-2.296269,51.508813],[-2.297117,51.508007],[-2.296285,51.506765],[-2.297453,51.506215],[-2.306044,51.503799],[-2.311889,51.502864],[-2.32164,51.498255],[-2.324325,51.497509],[-2.319213,51.49457],[-2.31703,51.492437],[-2.313645,51.490476],[-2.311423,51.487373],[-2.310425,51.488157],[-2.304402,51.486357],[-2.304225,51.485841],[-2.301781,51.486355],[-2.300511,51.487277],[-2.297464,51.487828],[-2.29558,51.487794],[-2.293699,51.486905],[-2.291337,51.486628],[-2.290586,51.485352],[-2.289633,51.478833],[-2.288851,51.47815],[-2.29034,51.477075],[-2.291245,51.475573],[-2.291616,51.472967],[-2.293401,51.46865],[-2.29282,51.467458],[-2.294581,51.466785],[-2.294594,51.463848],[-2.295743,51.45859],[-2.293336,51.457784],[-2.289244,51.457651],[-2.287754,51.45687],[-2.286749,51.457042],[-2.28804,51.454563],[-2.288945,51.446421],[-2.294616,51.428802],[-2.29535,51.426252],[-2.292985,51.426071],[-2.290717,51.42545],[-2.287256,51.424076],[-2.286497,51.423406],[-2.284742,51.423425],[-2.282393,51.421404],[-2.280731,51.418885],[-2.280499,51.417754],[-2.278541,51.415882],[-2.280816,51.412886],[-2.282362,51.412724],[-2.282048,51.410275],[-2.284087,51.409398],[-2.285385,51.407972],[-2.288119,51.407522],[-2.288803,51.406585],[-2.290862,51.405712],[-2.287357,51.402688],[-2.286586,51.400577],[-2.284531,51.397943],[-2.284437,51.396911],[-2.287357,51.396041],[-2.290169,51.396025],[-2.291651,51.395486],[-2.293852,51.395613],[-2.296771,51.394922],[-2.295822,51.390533],[-2.296283,51.387428],[-2.297494,51.384919],[-2.2937,51.381097],[-2.292543,51.378462],[-2.291518,51.378008],[-2.291663,51.377022],[-2.290796,51.375567],[-2.290289,51.372621],[-2.291091,51.371869],[-2.292057,51.36957],[-2.294043,51.366774],[-2.296815,51.363908],[-2.299798,51.362138],[-2.302976,51.362857],[-2.307519,51.364997],[-2.309423,51.36345],[-2.310766,51.361325],[-2.310215,51.357535],[-2.311729,51.356963],[-2.312619,51.357519],[-2.31478,51.356888],[-2.316722,51.356931],[-2.318725,51.35646],[-2.320765,51.356525],[-2.321326,51.357122],[-2.322983,51.356657],[-2.323711,51.355556],[-2.325405,51.354307],[-2.328314,51.35418],[-2.33268,51.35169],[-2.333845,51.351988],[-2.335568,51.35151],[-2.33743,51.351429],[-2.33915,51.350126],[-2.340591,51.348554],[-2.342318,51.348353],[-2.342713,51.347275],[-2.344309,51.345457],[-2.343589,51.344951],[-2.341138,51.344563],[-2.338597,51.346229],[-2.333451,51.346199],[-2.329072,51.347411],[-2.32757,51.347148],[-2.324048,51.34776],[-2.320454,51.346809],[-2.316462,51.34373],[-2.311467,51.341207],[-2.310636,51.340346],[-2.308528,51.33975],[-2.305917,51.341635],[-2.303158,51.340927],[-2.302139,51.341722],[-2.299864,51.342724],[-2.297943,51.343192],[-2.296409,51.342662],[-2.295018,51.340142],[-2.296902,51.338708],[-2.295554,51.337881],[-2.296121,51.337207],[-2.298594,51.336185],[-2.299552,51.336114],[-2.300972,51.333962],[-2.300117,51.332239],[-2.295079,51.330983],[-2.290586,51.33062],[-2.288439,51.329771],[-2.287242,51.328424],[-2.288624,51.326837],[-2.289091,51.325272],[-2.285162,51.324455],[-2.282158,51.325308],[-2.281265,51.324036],[-2.279267,51.324714],[-2.277747,51.325704],[-2.274938,51.325035],[-2.275103,51.324614],[-2.273095,51.322879],[-2.275209,51.322187],[-2.272331,51.3185],[-2.275137,51.31903],[-2.274709,51.317743],[-2.273123,51.316909],[-2.271955,51.314254],[-2.273664,51.312846],[-2.275804,51.312366],[-2.276653,51.310527],[-2.279212,51.310331],[-2.281557,51.310914],[-2.283277,51.310772],[-2.285068,51.309457],[-2.283545,51.307783],[-2.281262,51.30723],[-2.281091,51.306621],[-2.278378,51.305488],[-2.278592,51.304969],[-2.276779,51.303933],[-2.278111,51.302556],[-2.278794,51.300956],[-2.27982,51.300307],[-2.279863,51.299307],[-2.281492,51.29867],[-2.280178,51.297097],[-2.279497,51.29552],[-2.279973,51.29223],[-2.277478,51.29321],[-2.275834,51.293495],[-2.272964,51.294896],[-2.269848,51.294641],[-2.268344,51.295064],[-2.267235,51.295955],[-2.265474,51.29624],[-2.26299,51.295165],[-2.265287,51.292859],[-2.260982,51.290708],[-2.257438,51.291684],[-2.255584,51.289425],[-2.253497,51.289835],[-2.251059,51.285255],[-2.250617,51.282806],[-2.247806,51.279212],[-2.247166,51.277234],[-2.247396,51.275399],[-2.245172,51.272521],[-2.244712,51.267525],[-2.245124,51.264197],[-2.244431,51.263119],[-2.247966,51.261437],[-2.24792,51.260803],[-2.249583,51.258966],[-2.24812,51.258172],[-2.247807,51.256479],[-2.245341,51.253876],[-2.248153,51.251038],[-2.252861,51.247352],[-2.252432,51.246372],[-2.254997,51.243326],[-2.257855,51.241698],[-2.260789,51.239121],[-2.26196,51.235975],[-2.263764,51.234373],[-2.26267,51.233607],[-2.263805,51.231038],[-2.267024,51.226362],[-2.267964,51.224002],[-2.268126,51.222406],[-2.267619,51.221056],[-2.269011,51.220433],[-2.269761,51.218953],[-2.269387,51.21768],[-2.266701,51.216609],[-2.266664,51.215534],[-2.269179,51.213457],[-2.269472,51.212612],[-2.271319,51.210955],[-2.272037,51.209575],[-2.27325,51.209396],[-2.272939,51.208455],[-2.276457,51.205642],[-2.278635,51.201795],[-2.280166,51.201244],[-2.280355,51.199331],[-2.281338,51.197455],[-2.284533,51.197348],[-2.284049,51.19566],[-2.28493,51.194639],[-2.284819,51.19308],[-2.288408,51.192182],[-2.289054,51.19116],[-2.288124,51.189505],[-2.288496,51.188001],[-2.291012,51.188271],[-2.291571,51.185758],[-2.293059,51.183912],[-2.297784,51.180035],[-2.297315,51.178226],[-2.298465,51.175322],[-2.303865,51.172765],[-2.30566,51.170693],[-2.308885,51.169341],[-2.311227,51.167145],[-2.31273,51.163024],[-2.315317,51.160917],[-2.316277,51.160578],[-2.316992,51.159351],[-2.319527,51.158255],[-2.322414,51.154087],[-2.32887,51.14846],[-2.332287,51.144958],[-2.330906,51.140926],[-2.332174,51.137984],[-2.341397,51.135334],[-2.345859,51.133369],[-2.346305,51.130511],[-2.344032,51.12869],[-2.343187,51.127441],[-2.344539,51.124678],[-2.34653,51.123707],[-2.349309,51.122992],[-2.35081,51.123223],[-2.352539,51.122811],[-2.356786,51.120331],[-2.357656,51.120808],[-2.361143,51.120213],[-2.361657,51.119754],[-2.363707,51.119467],[-2.364528,51.118879],[-2.36559,51.11499],[-2.362883,51.115775],[-2.363452,51.113383],[-2.362615,51.112497],[-2.360778,51.108838],[-2.362172,51.10691],[-2.362292,51.105335],[-2.363452,51.104304],[-2.362835,51.103433],[-2.36253,51.101624],[-2.36087,51.099017],[-2.360112,51.099306],[-2.354408,51.096448],[-2.353509,51.094542],[-2.347051,51.088236],[-2.345324,51.088313],[-2.341614,51.087825],[-2.3394,51.08707],[-2.339018,51.086449],[-2.335706,51.086659],[-2.330492,51.085311],[-2.329141,51.085259],[-2.328806,51.083582],[-2.327531,51.082541],[-2.327379,51.08007],[-2.325853,51.079676],[-2.320546,51.080991],[-2.316806,51.079843],[-2.3133,51.079884],[-2.31088,51.080262],[-2.309472,51.079151],[-2.306434,51.079557],[-2.30335,51.079262],[-2.300212,51.078546],[-2.298681,51.078487],[-2.293266,51.076939],[-2.291269,51.077075],[-2.283113,51.075146],[-2.26862,51.068741],[-2.25131,51.070837],[-2.247646,51.072206],[-2.244696,51.072311],[-2.240165,51.069906],[-2.238826,51.067874],[-2.236839,51.066729],[-2.228892,51.060785],[-2.227779,51.060304],[-2.225808,51.057582],[-2.223269,51.056562],[-2.217994,51.055178],[-2.217072,51.053611],[-2.215114,51.051737],[-2.21244,51.050112],[-2.210615,51.047182],[-2.207217,51.045814],[-2.205323,51.042794],[-2.201435,51.043249],[-2.201532,51.042768],[-2.198125,51.041654],[-2.195171,51.039658],[-2.191996,51.036247],[-2.190549,51.032121],[-2.189183,51.030522],[-2.18934,51.029496],[-2.190289,51.028506],[-2.190138,51.026552],[-2.188837,51.02527],[-2.188604,51.018532],[-2.185992,51.018152],[-2.183822,51.017482],[-2.185177,51.015775],[-2.178761,51.014133],[-2.176388,51.012818],[-2.176324,51.01152],[-2.178101,51.008261],[-2.176415,51.006658],[-2.176088,51.005403],[-2.17297,51.002155],[-2.172566,51.001073],[-2.169306,51.000661],[-2.167082,50.998083],[-2.164436,50.996085],[-2.163583,50.996167],[-2.163614,50.994412],[-2.161527,50.994129],[-2.161842,50.993475],[-2.159638,50.992782],[-2.152523,50.989158],[-2.148147,50.986278],[-2.143577,50.984965],[-2.138397,50.982287],[-2.131692,50.979771],[-2.126854,50.978739],[-2.122344,50.978604],[-2.121967,50.978168],[-2.119765,50.978191],[-2.122455,50.973758],[-2.122974,50.971874],[-2.123157,50.969468],[-2.120652,50.969408],[-2.120879,50.965715],[-2.121523,50.964015],[-2.120671,50.961539],[-2.119462,50.95968],[-2.115642,50.957503],[-2.112464,50.95657],[-2.110521,50.955489],[-2.105557,50.950009],[-2.103959,50.948917],[-2.102655,50.94657],[-2.102861,50.945608],[-2.101792,50.944985],[-2.100254,50.94507],[-2.094146,50.949135],[-2.090916,50.949508],[-2.089219,50.950156],[-2.08737,50.949951],[-2.08527,50.949245],[-2.083884,50.950968],[-2.082864,50.951338],[-2.068313,50.951194],[-2.064862,50.953962],[-2.064273,50.957185],[-2.062532,50.959061],[-2.062373,50.959887],[-2.059318,50.959789],[-2.058427,50.96134],[-2.059405,50.962813],[-2.058328,50.963643],[-2.05332,50.966234],[-2.051078,50.966152],[-2.041226,50.968068],[-2.037208,50.97197],[-2.034454,50.972425],[-2.032854,50.971852],[-2.028967,50.971179],[-2.023724,50.972511],[-2.021949,50.972615],[-2.02028,50.972227],[-2.01742,50.972158],[-2.014872,50.973149],[-2.014011,50.973889],[-2.0123,50.974166],[-2.00972,50.975258],[-2.007061,50.975448],[-2.00498,50.974633],[-2.000668,50.974781],[-1.999049,50.975265],[-1.994036,50.975728],[-1.99122,50.977144],[-1.990286,50.978504],[-1.989229,50.978861],[-1.989791,50.98156],[-1.9869,50.982375],[-1.985886,50.983268],[-1.98521,50.984756],[-1.983382,50.984434],[-1.980422,50.984921],[-1.979473,50.985574],[-1.977372,50.985769],[-1.975248,50.98691],[-1.972979,50.987533],[-1.971989,50.989523],[-1.968056,50.990572],[-1.965358,50.992037],[-1.962637,50.991853],[-1.956825,50.989832],[-1.953926,50.988071],[-1.949936,50.982311],[-1.936576,50.991518],[-1.935528,50.992757],[-1.927876,50.997697],[-1.923743,50.997318],[-1.920335,50.997423],[-1.912308,50.999356],[-1.903298,50.999339],[-1.898017,50.998623],[-1.895343,50.999231],[-1.892467,50.999618],[-1.891573,50.999444],[-1.888795,50.999969],[-1.886742,50.999528],[-1.885281,51.00025],[-1.883309,51.002172],[-1.879231,51.003948],[-1.875431,51.004699],[-1.874649,51.003566],[-1.874633,50.995852],[-1.8751,50.991736],[-1.874237,50.987684],[-1.873984,50.984441],[-1.869338,50.988912],[-1.866828,50.990822],[-1.862049,50.996641],[-1.855891,51.001583],[-1.85368,51.004469],[-1.852804,51.005028],[-1.842272,51.008468],[-1.835813,51.009422],[-1.827413,50.997273],[-1.821545,50.992991],[-1.819856,50.990258],[-1.815422,50.985923],[-1.807584,50.992045],[-1.805671,50.99163],[-1.800314,50.991395],[-1.796013,50.9902],[-1.790952,50.990086],[-1.787946,50.988145],[-1.783834,50.986899],[-1.775611,50.985161],[-1.775355,50.984712],[-1.769986,50.983828],[-1.76984,50.983495],[-1.765638,50.982938],[-1.75432,50.980448],[-1.754402,50.977892],[-1.747102,50.977941],[-1.743935,50.977822],[-1.742946,50.977114],[-1.739805,50.976617],[-1.733715,50.976438],[-1.729899,50.977313],[-1.726188,50.977344],[-1.724021,50.97695],[-1.719618,50.97678],[-1.716505,50.974174],[-1.709634,50.97123],[-1.701027,50.962725],[-1.689299,50.954637],[-1.685712,50.952919],[-1.676882,50.949667],[-1.669182,50.947233],[-1.6673,50.94703],[-1.66166,50.945278],[-1.65185,50.94717],[-1.649648,50.948506],[-1.646376,50.949465],[-1.641715,50.952496],[-1.641098,50.953161],[-1.640378,50.955447],[-1.634965,50.959242],[-1.628491,50.957125],[-1.623399,50.954637],[-1.619751,50.958567],[-1.616748,50.962545],[-1.616064,50.965044],[-1.614662,50.966101],[-1.613427,50.968081],[-1.61218,50.971247],[-1.610791,50.972034],[-1.608689,50.972283],[-1.607729,50.973674],[-1.604963,50.975203],[-1.605139,50.976904],[-1.602923,50.978517],[-1.60449,50.979328],[-1.607582,50.979965],[-1.610834,50.979979],[-1.614419,50.979495],[-1.617053,50.98165],[-1.619642,50.982996],[-1.620159,50.984249],[-1.619295,50.984912],[-1.618954,50.987366],[-1.620426,50.988599],[-1.625213,50.990331],[-1.624923,50.991153],[-1.625803,50.993912],[-1.627449,50.995847],[-1.627361,50.996989],[-1.62838,50.997664],[-1.628805,50.999095],[-1.627158,51.000038],[-1.626258,51.001033],[-1.624407,51.001157],[-1.623816,51.001815],[-1.620202,51.003413],[-1.617231,51.004182],[-1.61437,51.003375],[-1.610733,51.001709],[-1.606783,51.001621],[-1.605198,51.002521],[-1.609656,51.00592],[-1.61493,51.006656],[-1.610452,51.006869],[-1.610291,51.008163],[-1.608624,51.00827],[-1.605014,51.007005],[-1.600576,51.007136],[-1.597524,51.008055],[-1.59765,51.010715],[-1.59952,51.01254],[-1.60313,51.014196],[-1.604935,51.016032],[-1.605368,51.017258],[-1.605652,51.020021],[-1.603017,51.020752],[-1.600584,51.022175],[-1.599397,51.023729],[-1.602849,51.025504],[-1.608408,51.026299],[-1.611447,51.027282],[-1.613543,51.028414],[-1.614641,51.029958],[-1.619288,51.031633],[-1.619457,51.033059],[-1.62244,51.033107],[-1.62885,51.032518],[-1.632376,51.03278],[-1.632072,51.036014],[-1.63496,51.040887],[-1.634003,51.042059],[-1.633585,51.04656],[-1.632428,51.047657],[-1.632823,51.049167],[-1.630094,51.065415],[-1.62781,51.068734],[-1.628077,51.072333],[-1.628958,51.074066],[-1.629147,51.075569],[-1.627729,51.078011],[-1.628998,51.081177],[-1.631132,51.082152],[-1.634091,51.085464],[-1.637311,51.092165],[-1.636188,51.092415],[-1.636009,51.093422],[-1.633993,51.096414],[-1.630988,51.09958],[-1.629264,51.100601],[-1.626957,51.102864],[-1.626803,51.104017],[-1.628435,51.106048],[-1.628341,51.107647],[-1.629788,51.109167],[-1.630931,51.111154],[-1.630835,51.112824],[-1.628841,51.114028],[-1.62625,51.117338],[-1.627245,51.118297],[-1.632742,51.120929],[-1.640582,51.125383],[-1.656278,51.127199],[-1.662976,51.127192],[-1.663023,51.129649],[-1.661298,51.133874],[-1.659486,51.135622],[-1.658722,51.137532],[-1.658331,51.139596],[-1.658962,51.141537],[-1.659758,51.142143],[-1.654613,51.151995],[-1.654009,51.156184],[-1.65704,51.159306],[-1.666851,51.169941],[-1.670368,51.17679],[-1.672368,51.178544],[-1.669272,51.181832],[-1.670164,51.183919],[-1.669494,51.184273],[-1.668836,51.190772],[-1.670554,51.190613],[-1.676979,51.193401],[-1.682712,51.197007],[-1.6857,51.199323],[-1.692793,51.20305],[-1.694097,51.204043],[-1.691147,51.207335],[-1.690943,51.209495],[-1.689788,51.214769],[-1.686888,51.215151],[-1.68439,51.214925],[-1.673707,51.215833],[-1.672726,51.21726],[-1.666772,51.217444],[-1.666736,51.216964],[-1.662135,51.217783],[-1.659846,51.218391],[-1.66006,51.218898],[-1.653497,51.220468],[-1.650195,51.219979],[-1.637466,51.217587],[-1.633541,51.217516],[-1.632842,51.219408],[-1.631339,51.221601],[-1.631133,51.223798],[-1.628438,51.226098],[-1.625485,51.231797],[-1.62324,51.233373],[-1.622137,51.234674],[-1.621413,51.23632],[-1.621216,51.238439],[-1.619755,51.239862],[-1.619336,51.241218],[-1.616483,51.241948],[-1.615052,51.241417],[-1.613557,51.241442],[-1.610393,51.24298],[-1.611109,51.245608],[-1.607369,51.24961],[-1.606522,51.251922],[-1.603706,51.251848],[-1.600732,51.250716],[-1.600186,51.253524],[-1.592751,51.253008],[-1.588057,51.253155],[-1.585349,51.253992],[-1.584233,51.254717],[-1.581938,51.254708],[-1.577636,51.255631],[-1.574007,51.254605],[-1.572397,51.254929],[-1.566961,51.252979],[-1.562826,51.251939],[-1.556883,51.249211],[-1.551195,51.248826],[-1.548915,51.248019],[-1.545886,51.245241],[-1.544266,51.245054],[-1.541972,51.245973],[-1.539715,51.247365],[-1.535955,51.248619],[-1.532997,51.25341],[-1.531235,51.255436],[-1.531278,51.257671],[-1.52982,51.260514],[-1.53057,51.262617],[-1.534368,51.261808],[-1.536444,51.2618],[-1.537348,51.260886],[-1.540513,51.260833],[-1.53911,51.267086],[-1.537119,51.270762],[-1.537094,51.273709],[-1.537463,51.273819],[-1.536886,51.276762],[-1.535917,51.277304],[-1.5368,51.278233],[-1.542754,51.280174],[-1.542584,51.281251],[-1.536671,51.285239],[-1.534511,51.287092],[-1.531427,51.286554],[-1.528883,51.286478],[-1.522808,51.287058],[-1.522751,51.290056],[-1.524147,51.293161],[-1.522828,51.294102],[-1.519906,51.295316],[-1.519812,51.2969],[-1.521281,51.297586],[-1.52266,51.297142],[-1.525491,51.297155],[-1.526463,51.297664],[-1.525826,51.299204],[-1.528023,51.299808],[-1.526289,51.303756],[-1.526464,51.3048],[-1.525225,51.307067],[-1.527102,51.30828],[-1.526971,51.311404],[-1.527758,51.31289],[-1.530037,51.315008],[-1.533562,51.316224],[-1.532535,51.320606],[-1.531881,51.328128],[-1.531079,51.329194],[-1.528848,51.330197],[-1.527118,51.33158],[-1.528464,51.334075],[-1.527507,51.338466],[-1.526635,51.338304],[-1.522683,51.338637],[-1.521276,51.338436],[-1.51682,51.338959],[-1.516282,51.339355],[-1.514139,51.337006],[-1.512589,51.336138],[-1.511421,51.334993],[-1.509312,51.334346],[-1.502166,51.331083],[-1.499763,51.330336],[-1.498299,51.329376],[-1.497638,51.33119],[-1.497538,51.333227],[-1.493024,51.33799],[-1.490155,51.342022],[-1.486555,51.345321],[-1.485712,51.347683],[-1.486812,51.349427],[-1.489406,51.350397],[-1.491358,51.352051],[-1.49502,51.352763],[-1.497409,51.354593],[-1.500058,51.355579],[-1.500609,51.356268],[-1.499658,51.358483],[-1.500023,51.360698],[-1.499337,51.361452],[-1.499313,51.363278],[-1.495152,51.367723],[-1.495449,51.369664],[-1.499385,51.369026],[-1.502539,51.368858],[-1.504011,51.369831],[-1.509435,51.371088],[-1.510019,51.371904],[-1.513406,51.372045],[-1.514179,51.376099],[-1.515436,51.377581],[-1.516961,51.37878],[-1.520601,51.379284],[-1.523236,51.378617],[-1.523944,51.378099],[-1.527635,51.378821],[-1.52689,51.379948],[-1.528871,51.38139],[-1.533301,51.38336],[-1.534668,51.384329],[-1.535665,51.384077],[-1.538332,51.385537],[-1.53868,51.387049],[-1.537718,51.388322],[-1.542331,51.389625],[-1.542624,51.390456],[-1.544269,51.390138],[-1.546469,51.390541],[-1.547331,51.391174],[-1.547111,51.39326],[-1.548755,51.393018],[-1.54901,51.394718],[-1.553317,51.394738],[-1.555603,51.395584],[-1.556262,51.396526],[-1.556208,51.398136],[-1.553561,51.401543],[-1.554152,51.403482],[-1.55369,51.406677],[-1.554299,51.407635],[-1.553349,51.408474],[-1.552988,51.410044],[-1.554331,51.410308],[-1.555628,51.409408],[-1.557834,51.409085],[-1.559937,51.408125],[-1.560545,51.408553],[-1.562275,51.408237],[-1.562478,51.411269],[-1.563491,51.413229],[-1.565418,51.413299],[-1.566796,51.414367],[-1.569616,51.4147],[-1.57092,51.415308],[-1.571165,51.416465],[-1.566889,51.421041],[-1.565119,51.422043],[-1.563391,51.421012],[-1.560318,51.420394],[-1.558232,51.420513],[-1.558462,51.421677],[-1.556287,51.421597],[-1.553663,51.422406],[-1.553113,51.421276],[-1.549442,51.422381],[-1.545963,51.422752],[-1.544415,51.423539],[-1.543523,51.42476],[-1.539625,51.426112],[-1.532845,51.42562],[-1.531686,51.425129],[-1.526619,51.42393],[-1.525289,51.425018],[-1.526955,51.425785],[-1.528266,51.427965],[-1.532063,51.429555],[-1.523986,51.441338],[-1.524439,51.442887],[-1.523991,51.447481],[-1.524903,51.450272],[-1.52885,51.453992],[-1.529029,51.455512],[-1.534598,51.456126],[-1.538741,51.457356],[-1.542181,51.45775],[-1.545756,51.458991],[-1.54839,51.460656],[-1.549611,51.462229],[-1.550941,51.465484],[-1.557379,51.468015],[-1.559526,51.469739],[-1.560715,51.47221],[-1.561144,51.475803],[-1.562729,51.476813],[-1.566831,51.47693],[-1.566882,51.478532],[-1.567643,51.479844],[-1.567824,51.481513],[-1.570449,51.486274],[-1.573598,51.48724],[-1.576775,51.489309],[-1.579332,51.4912],[-1.582291,51.494112],[-1.583406,51.495845],[-1.582267,51.495776],[-1.583522,51.497693],[-1.582645,51.498113],[-1.582062,51.499461],[-1.582615,51.500885],[-1.585765,51.502118],[-1.587012,51.507124],[-1.587274,51.511139],[-1.588064,51.513503],[-1.587087,51.516049],[-1.585419,51.523642],[-1.584708,51.524912],[-1.587914,51.52486],[-1.5891,51.524491],[-1.590032,51.521739],[-1.592099,51.521485],[-1.594042,51.519779],[-1.59806,51.518697],[-1.602812,51.518295],[-1.60693,51.51709],[-1.607145,51.517414],[-1.610891,51.516894],[-1.615255,51.517357],[-1.619939,51.516657],[-1.619499,51.515241],[-1.623574,51.5142],[-1.624297,51.515122],[-1.628465,51.517365],[-1.631886,51.516374],[-1.633557,51.515519],[-1.632724,51.514995],[-1.634293,51.512941],[-1.637227,51.51359],[-1.642121,51.510885],[-1.649879,51.508299],[-1.658153,51.507611],[-1.662249,51.506885],[-1.667741,51.505279],[-1.675277,51.504485],[-1.677768,51.503953],[-1.696155,51.503174],[-1.696639,51.503605],[-1.705111,51.501979],[-1.711753,51.501182],[-1.719082,51.500706],[-1.715737,51.488383],[-1.726299,51.488506],[-1.731076,51.488177],[-1.740062,51.48678],[-1.743688,51.486687],[-1.746308,51.485647],[-1.750775,51.485643],[-1.758159,51.486235],[-1.762683,51.485857],[-1.766516,51.486076],[-1.774718,51.484539],[-1.774331,51.482455],[-1.779687,51.484348],[-1.783605,51.485192],[-1.788755,51.485121],[-1.793192,51.486167],[-1.795585,51.485757],[-1.797797,51.484446],[-1.802561,51.487767],[-1.80379,51.489362],[-1.806487,51.491052],[-1.809477,51.494035],[-1.813047,51.496536],[-1.811395,51.499525],[-1.813582,51.501251],[-1.812919,51.505272],[-1.813451,51.507042],[-1.823022,51.504757],[-1.824552,51.503713],[-1.828351,51.505071],[-1.831858,51.501248],[-1.833958,51.501795],[-1.834364,51.501065],[-1.837585,51.500837],[-1.83982,51.504777],[-1.839224,51.504982],[-1.839568,51.506803],[-1.841344,51.509534],[-1.841153,51.510603],[-1.844012,51.51224],[-1.844143,51.513836],[-1.844689,51.515014],[-1.841506,51.515704],[-1.842632,51.516862],[-1.844265,51.517219],[-1.842883,51.518201],[-1.846906,51.524283],[-1.842177,51.526265],[-1.841853,51.524901],[-1.840548,51.524122],[-1.842726,51.522885],[-1.843826,51.521656],[-1.842135,51.520414],[-1.842584,51.519796],[-1.840322,51.518442],[-1.837786,51.515744],[-1.837152,51.514144],[-1.837575,51.512931],[-1.837016,51.51095],[-1.834717,51.511538],[-1.830796,51.511143],[-1.829856,51.513684],[-1.83008,51.51544],[-1.83262,51.518441],[-1.835379,51.519438],[-1.836661,51.521663],[-1.836908,51.524015],[-1.838791,51.526193],[-1.839956,51.529374],[-1.837302,51.529792],[-1.838165,51.531702],[-1.840886,51.5315],[-1.843928,51.538477],[-1.844578,51.540767],[-1.844036,51.541789],[-1.844377,51.543445],[-1.849053,51.544411],[-1.853824,51.546302],[-1.850525,51.546766],[-1.851597,51.548996],[-1.853789,51.550492],[-1.849277,51.553309],[-1.849616,51.553628],[-1.860148,51.558983],[-1.862621,51.559563],[-1.862191,51.560028],[-1.860565,51.563627],[-1.860985,51.564459],[-1.860104,51.565244],[-1.857585,51.56331],[-1.854778,51.562671],[-1.853554,51.562996],[-1.851785,51.562295],[-1.845189,51.561718],[-1.84568,51.562649],[-1.845398,51.564102],[-1.846585,51.564843],[-1.847028,51.566282],[-1.849845,51.567352],[-1.850078,51.568098],[-1.846794,51.569636],[-1.844349,51.570213],[-1.84403,51.572028],[-1.844702,51.574012],[-1.844116,51.57572],[-1.842968,51.57706],[-1.843146,51.578659],[-1.840931,51.57885],[-1.839863,51.578217],[-1.837575,51.578812],[-1.838477,51.580029],[-1.832623,51.580791],[-1.830837,51.58175],[-1.826336,51.579437],[-1.824893,51.581876],[-1.823166,51.583014],[-1.822604,51.583855],[-1.823625,51.584464],[-1.826482,51.58377],[-1.832174,51.585197],[-1.835562,51.585505],[-1.837562,51.587242],[-1.836961,51.589786],[-1.835159,51.590218],[-1.835355,51.591071],[-1.833129,51.591184],[-1.832393,51.592336],[-1.833031,51.593138],[-1.832801,51.594267],[-1.831853,51.595111],[-1.83246,51.595629],[-1.831857,51.596729],[-1.832687,51.597531],[-1.834062,51.59773],[-1.834664,51.598787],[-1.836848,51.598677],[-1.839855,51.599919],[-1.840953,51.60147],[-1.840338,51.602281],[-1.842077,51.604016],[-1.84219,51.605211],[-1.840994,51.606675],[-1.841609,51.606953],[-1.841037,51.609833],[-1.842378,51.612117],[-1.841086,51.61407],[-1.83972,51.614436],[-1.839903,51.615824],[-1.83901,51.616693],[-1.836967,51.616976],[-1.835951,51.617932],[-1.835351,51.619659],[-1.834264,51.619758],[-1.831867,51.621242],[-1.830934,51.621312],[-1.830584,51.62371],[-1.829223,51.624083],[-1.828283,51.625098],[-1.821264,51.626958],[-1.820189,51.627749],[-1.814316,51.624507],[-1.807441,51.63039],[-1.806377,51.632719],[-1.788584,51.632714],[-1.789939,51.634808],[-1.788975,51.636824],[-1.790484,51.641378],[-1.793569,51.647935],[-1.793413,51.648842],[-1.794938,51.650752],[-1.794672,51.651368],[-1.795919,51.654127],[-1.796227,51.656547],[-1.79509,51.657062],[-1.797297,51.660903],[-1.798693,51.661546],[-1.799081,51.662505],[-1.796176,51.662466],[-1.794151,51.663272],[-1.791979,51.663387],[-1.791067,51.664628],[-1.788617,51.667002]]]},"properties":{"LAD22CD":"E06000054","LAD22NM":"Wiltshire","BNG_E":405209,"BNG_N":158863,"LONG":-1.92661,"LAT":51.32883,"GlobalID":"def4bf2c-3147-4c19-bacb-e94639c6df8d"},"id":51}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.249785,52.184371],[-0.247045,52.183754],[-0.244002,52.182685],[-0.240723,52.190193],[-0.24206,52.190377],[-0.244285,52.191498],[-0.246221,52.191861],[-0.247856,52.192852],[-0.249525,52.194722],[-0.251617,52.195561],[-0.251958,52.19652],[-0.25451,52.199479],[-0.256522,52.202833],[-0.260568,52.203639],[-0.261184,52.20415],[-0.260447,52.20542],[-0.264912,52.205721],[-0.264073,52.206364],[-0.261845,52.209867],[-0.266208,52.209569],[-0.274205,52.20872],[-0.280312,52.20843],[-0.288431,52.207378],[-0.290192,52.20768],[-0.292968,52.207646],[-0.294357,52.208354],[-0.295579,52.210443],[-0.296285,52.210487],[-0.299391,52.216044],[-0.299965,52.218058],[-0.299,52.221257],[-0.293759,52.228439],[-0.286631,52.234848],[-0.285728,52.236244],[-0.285694,52.237401],[-0.288003,52.238319],[-0.291614,52.239236],[-0.293209,52.240516],[-0.295826,52.240493],[-0.298521,52.240989],[-0.307723,52.239877],[-0.310595,52.239932],[-0.313688,52.238999],[-0.31438,52.240299],[-0.315898,52.241515],[-0.319997,52.242708],[-0.323076,52.243125],[-0.324918,52.242867],[-0.327122,52.243005],[-0.32928,52.242552],[-0.334494,52.242921],[-0.337985,52.242208],[-0.340215,52.242255],[-0.343469,52.241874],[-0.343218,52.241412],[-0.344012,52.238491],[-0.343053,52.237439],[-0.34332,52.236442],[-0.342653,52.235361],[-0.344126,52.235156],[-0.340355,52.230935],[-0.341011,52.230647],[-0.345809,52.230634],[-0.348872,52.231224],[-0.349918,52.230826],[-0.352383,52.231702],[-0.353738,52.233353],[-0.355324,52.23422],[-0.359038,52.234735],[-0.362737,52.234066],[-0.368773,52.234648],[-0.374376,52.232998],[-0.37335,52.234023],[-0.373748,52.236992],[-0.375284,52.238649],[-0.374688,52.239118],[-0.37528,52.242923],[-0.377222,52.24804],[-0.378346,52.252792],[-0.378459,52.265295],[-0.381803,52.265784],[-0.382341,52.271126],[-0.381153,52.272062],[-0.381014,52.273135],[-0.37843,52.273011],[-0.376809,52.274029],[-0.375246,52.274005],[-0.373983,52.272997],[-0.372175,52.2735],[-0.3725,52.275488],[-0.374766,52.276277],[-0.374319,52.277326],[-0.375514,52.277994],[-0.375898,52.279313],[-0.37501,52.280469],[-0.376222,52.281173],[-0.380573,52.282667],[-0.384638,52.281324],[-0.386675,52.281905],[-0.392955,52.282366],[-0.396004,52.281093],[-0.39898,52.278729],[-0.401311,52.280066],[-0.402731,52.282106],[-0.401986,52.283209],[-0.402861,52.283726],[-0.403583,52.285296],[-0.406908,52.287476],[-0.408821,52.286768],[-0.410159,52.284497],[-0.41166,52.284789],[-0.413654,52.284504],[-0.41491,52.284771],[-0.416285,52.284271],[-0.41901,52.284251],[-0.419111,52.28475],[-0.421768,52.284947],[-0.423019,52.287873],[-0.422157,52.288672],[-0.422643,52.289376],[-0.424893,52.289295],[-0.42691,52.290188],[-0.426985,52.290763],[-0.431184,52.292015],[-0.432228,52.293013],[-0.43127,52.294449],[-0.432075,52.294623],[-0.432302,52.295999],[-0.435761,52.296657],[-0.43578,52.298864],[-0.433903,52.302355],[-0.434075,52.305694],[-0.433051,52.308258],[-0.433507,52.311858],[-0.435375,52.312168],[-0.436089,52.314471],[-0.440209,52.315383],[-0.441517,52.315212],[-0.442296,52.31417],[-0.444184,52.314232],[-0.447132,52.315742],[-0.457712,52.320091],[-0.460728,52.32187],[-0.465366,52.322953],[-0.474151,52.319752],[-0.476262,52.318064],[-0.478133,52.319282],[-0.481881,52.320762],[-0.48714,52.321083],[-0.506655,52.319914],[-0.51684,52.317651],[-0.51983,52.317693],[-0.519797,52.316622],[-0.514051,52.314697],[-0.516866,52.312952],[-0.540605,52.291492],[-0.54197,52.289942],[-0.541964,52.288855],[-0.538692,52.285819],[-0.538147,52.284824],[-0.534096,52.281355],[-0.534461,52.279545],[-0.534165,52.277615],[-0.532524,52.272539],[-0.53119,52.270402],[-0.536432,52.268208],[-0.539325,52.266095],[-0.537738,52.262856],[-0.537625,52.261651],[-0.539899,52.257306],[-0.541312,52.256317],[-0.542879,52.255974],[-0.54452,52.256127],[-0.546144,52.256727],[-0.549969,52.256465],[-0.552326,52.256921],[-0.554738,52.25818],[-0.558046,52.25635],[-0.565693,52.253468],[-0.571583,52.258247],[-0.579354,52.266435],[-0.580884,52.265232],[-0.588111,52.270778],[-0.586336,52.272831],[-0.588974,52.274069],[-0.596102,52.276047],[-0.600307,52.277888],[-0.602894,52.278751],[-0.607621,52.278857],[-0.610617,52.279498],[-0.611075,52.278532],[-0.620057,52.276923],[-0.626978,52.274877],[-0.626922,52.273381],[-0.631413,52.270048],[-0.635475,52.271932],[-0.637663,52.272401],[-0.639908,52.272442],[-0.6469,52.27118],[-0.65108,52.269055],[-0.653656,52.268289],[-0.652761,52.266588],[-0.650034,52.256778],[-0.64979,52.254107],[-0.648968,52.252713],[-0.645495,52.242461],[-0.643085,52.238544],[-0.643448,52.235859],[-0.642729,52.233325],[-0.639655,52.228951],[-0.637332,52.227318],[-0.643619,52.223362],[-0.648634,52.220876],[-0.652365,52.217263],[-0.653575,52.215239],[-0.658498,52.210084],[-0.661461,52.208126],[-0.668664,52.197731],[-0.668136,52.195034],[-0.667945,52.194073],[-0.665991,52.192731],[-0.661307,52.191774],[-0.659336,52.191026],[-0.657448,52.189775],[-0.655584,52.1896],[-0.651,52.189965],[-0.64316,52.188845],[-0.640858,52.187167],[-0.63914,52.186688],[-0.639779,52.184507],[-0.63951,52.183435],[-0.630293,52.181781],[-0.627447,52.181545],[-0.629317,52.178714],[-0.627723,52.17619],[-0.628255,52.172536],[-0.631173,52.171824],[-0.633265,52.170133],[-0.634907,52.168133],[-0.63449,52.166573],[-0.633555,52.166156],[-0.631302,52.164058],[-0.630135,52.161927],[-0.629605,52.159519],[-0.630671,52.154924],[-0.635411,52.153225],[-0.640782,52.152772],[-0.636033,52.14751],[-0.637923,52.146129],[-0.636391,52.143772],[-0.634362,52.142392],[-0.635598,52.141203],[-0.635452,52.139254],[-0.634623,52.137972],[-0.630124,52.137407],[-0.62893,52.136937],[-0.627141,52.135283],[-0.622886,52.134302],[-0.619284,52.133066],[-0.617631,52.133045],[-0.614151,52.133897],[-0.60725,52.133869],[-0.604016,52.130231],[-0.602122,52.128932],[-0.598912,52.125731],[-0.59901,52.123595],[-0.597808,52.121951],[-0.596927,52.119222],[-0.597159,52.117458],[-0.598017,52.116516],[-0.59783,52.115613],[-0.595731,52.113578],[-0.593055,52.112264],[-0.591811,52.110692],[-0.590481,52.108773],[-0.586757,52.107056],[-0.583233,52.104549],[-0.586501,52.101483],[-0.587578,52.101094],[-0.588366,52.098449],[-0.589186,52.097499],[-0.585646,52.096711],[-0.583829,52.097324],[-0.582075,52.098414],[-0.580088,52.095113],[-0.578297,52.094114],[-0.574953,52.094338],[-0.572755,52.093457],[-0.570667,52.094938],[-0.56688,52.09439],[-0.561804,52.092325],[-0.558661,52.089698],[-0.557926,52.087626],[-0.55571,52.085285],[-0.550086,52.080705],[-0.5458,52.081585],[-0.545247,52.081212],[-0.543363,52.081881],[-0.541586,52.081883],[-0.535603,52.077966],[-0.531861,52.075943],[-0.530783,52.07592],[-0.522356,52.069406],[-0.518809,52.068571],[-0.517613,52.06738],[-0.518939,52.065704],[-0.517571,52.064851],[-0.516942,52.063842],[-0.517896,52.060331],[-0.514911,52.058979],[-0.511518,52.059559],[-0.51029,52.058714],[-0.510771,52.055429],[-0.508515,52.054543],[-0.506682,52.056501],[-0.504489,52.056781],[-0.505048,52.05899],[-0.50441,52.060028],[-0.503725,52.063021],[-0.502414,52.063744],[-0.499591,52.067708],[-0.504757,52.070129],[-0.504474,52.070728],[-0.502385,52.072167],[-0.499614,52.075611],[-0.492682,52.079247],[-0.486123,52.08388],[-0.485336,52.083208],[-0.483121,52.08448],[-0.482342,52.084243],[-0.480387,52.085228],[-0.478782,52.085512],[-0.476199,52.087029],[-0.47534,52.086701],[-0.471527,52.088009],[-0.467892,52.084394],[-0.46404,52.079612],[-0.461908,52.079142],[-0.459316,52.077715],[-0.45876,52.077015],[-0.45857,52.074012],[-0.457753,52.072836],[-0.453257,52.070693],[-0.447652,52.067181],[-0.440033,52.063287],[-0.437744,52.065479],[-0.435607,52.066056],[-0.434078,52.066938],[-0.429863,52.067773],[-0.422281,52.067403],[-0.416506,52.068683],[-0.405422,52.068806],[-0.398564,52.07033],[-0.397017,52.071003],[-0.39534,52.071053],[-0.394716,52.072481],[-0.39336,52.073332],[-0.389649,52.074573],[-0.384903,52.075574],[-0.385347,52.077401],[-0.387512,52.079567],[-0.388492,52.079788],[-0.389149,52.08088],[-0.385088,52.083826],[-0.383887,52.085769],[-0.382292,52.084245],[-0.376909,52.08774],[-0.378513,52.090312],[-0.381362,52.093139],[-0.381188,52.093565],[-0.374588,52.097189],[-0.3714,52.094569],[-0.366694,52.096818],[-0.36548,52.097654],[-0.367813,52.099286],[-0.364405,52.100685],[-0.359218,52.103546],[-0.356109,52.107729],[-0.353015,52.106364],[-0.351757,52.108097],[-0.351777,52.110436],[-0.348442,52.112289],[-0.344804,52.115956],[-0.344661,52.118375],[-0.346362,52.120597],[-0.346781,52.122861],[-0.349524,52.126788],[-0.34975,52.12794],[-0.355509,52.134517],[-0.355365,52.134978],[-0.362034,52.14292],[-0.361082,52.144168],[-0.357799,52.146004],[-0.355285,52.145502],[-0.34915,52.14533],[-0.345695,52.147326],[-0.343426,52.150856],[-0.335069,52.156097],[-0.333735,52.157632],[-0.33403,52.159056],[-0.332245,52.161362],[-0.330065,52.165342],[-0.327352,52.166004],[-0.326035,52.166921],[-0.324415,52.166598],[-0.321844,52.167077],[-0.321265,52.168838],[-0.316962,52.16747],[-0.31533,52.16769],[-0.313812,52.167244],[-0.310782,52.167128],[-0.308366,52.166494],[-0.307451,52.165464],[-0.306026,52.165559],[-0.304816,52.166449],[-0.303416,52.168196],[-0.303853,52.169082],[-0.302822,52.171724],[-0.303178,52.173718],[-0.301678,52.178225],[-0.297866,52.181091],[-0.294048,52.182895],[-0.289117,52.190926],[-0.286402,52.190765],[-0.281772,52.189354],[-0.281103,52.18955],[-0.27556,52.188601],[-0.272509,52.187528],[-0.267569,52.187301],[-0.266324,52.186953],[-0.25625,52.185818],[-0.254208,52.185819],[-0.249785,52.184371]]]},"properties":{"LAD22CD":"E06000055","LAD22NM":"Bedford","BNG_E":505721,"BNG_N":256463,"LONG":-0.45463,"LAT":52.19628,"GlobalID":"e4713462-22c4-464c-a57c-e5e1710963be"},"id":52}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.249785,52.184371],[-0.254208,52.185819],[-0.25625,52.185818],[-0.266324,52.186953],[-0.267569,52.187301],[-0.272509,52.187528],[-0.27556,52.188601],[-0.281103,52.18955],[-0.281772,52.189354],[-0.286402,52.190765],[-0.289117,52.190926],[-0.294048,52.182895],[-0.297866,52.181091],[-0.301678,52.178225],[-0.303178,52.173718],[-0.302822,52.171724],[-0.303853,52.169082],[-0.303416,52.168196],[-0.304816,52.166449],[-0.306026,52.165559],[-0.307451,52.165464],[-0.308366,52.166494],[-0.310782,52.167128],[-0.313812,52.167244],[-0.31533,52.16769],[-0.316962,52.16747],[-0.321265,52.168838],[-0.321844,52.167077],[-0.324415,52.166598],[-0.326035,52.166921],[-0.327352,52.166004],[-0.330065,52.165342],[-0.332245,52.161362],[-0.33403,52.159056],[-0.333735,52.157632],[-0.335069,52.156097],[-0.343426,52.150856],[-0.345695,52.147326],[-0.34915,52.14533],[-0.355285,52.145502],[-0.357799,52.146004],[-0.361082,52.144168],[-0.362034,52.14292],[-0.355365,52.134978],[-0.355509,52.134517],[-0.34975,52.12794],[-0.349524,52.126788],[-0.346781,52.122861],[-0.346362,52.120597],[-0.344661,52.118375],[-0.344804,52.115956],[-0.348442,52.112289],[-0.351777,52.110436],[-0.351757,52.108097],[-0.353015,52.106364],[-0.356109,52.107729],[-0.359218,52.103546],[-0.364405,52.100685],[-0.367813,52.099286],[-0.36548,52.097654],[-0.366694,52.096818],[-0.3714,52.094569],[-0.374588,52.097189],[-0.381188,52.093565],[-0.381362,52.093139],[-0.378513,52.090312],[-0.376909,52.08774],[-0.382292,52.084245],[-0.383887,52.085769],[-0.385088,52.083826],[-0.389149,52.08088],[-0.388492,52.079788],[-0.387512,52.079567],[-0.385347,52.077401],[-0.384903,52.075574],[-0.389649,52.074573],[-0.39336,52.073332],[-0.394716,52.072481],[-0.39534,52.071053],[-0.397017,52.071003],[-0.398564,52.07033],[-0.405422,52.068806],[-0.416506,52.068683],[-0.422281,52.067403],[-0.429863,52.067773],[-0.434078,52.066938],[-0.435607,52.066056],[-0.437744,52.065479],[-0.440033,52.063287],[-0.447652,52.067181],[-0.453257,52.070693],[-0.457753,52.072836],[-0.45857,52.074012],[-0.45876,52.077015],[-0.459316,52.077715],[-0.461908,52.079142],[-0.46404,52.079612],[-0.467892,52.084394],[-0.471527,52.088009],[-0.47534,52.086701],[-0.476199,52.087029],[-0.478782,52.085512],[-0.480387,52.085228],[-0.482342,52.084243],[-0.483121,52.08448],[-0.485336,52.083208],[-0.486123,52.08388],[-0.492682,52.079247],[-0.499614,52.075611],[-0.502385,52.072167],[-0.504474,52.070728],[-0.504757,52.070129],[-0.499591,52.067708],[-0.502414,52.063744],[-0.503725,52.063021],[-0.50441,52.060028],[-0.505048,52.05899],[-0.504489,52.056781],[-0.506682,52.056501],[-0.508515,52.054543],[-0.510771,52.055429],[-0.51029,52.058714],[-0.511518,52.059559],[-0.514911,52.058979],[-0.517896,52.060331],[-0.516942,52.063842],[-0.517571,52.064851],[-0.518939,52.065704],[-0.517613,52.06738],[-0.518809,52.068571],[-0.522356,52.069406],[-0.530783,52.07592],[-0.531861,52.075943],[-0.535603,52.077966],[-0.541586,52.081883],[-0.543363,52.081881],[-0.545247,52.081212],[-0.5458,52.081585],[-0.550086,52.080705],[-0.55571,52.085285],[-0.557926,52.087626],[-0.558661,52.089698],[-0.561804,52.092325],[-0.56688,52.09439],[-0.570667,52.094938],[-0.572755,52.093457],[-0.574953,52.094338],[-0.578297,52.094114],[-0.580088,52.095113],[-0.582075,52.098414],[-0.583829,52.097324],[-0.585646,52.096711],[-0.589186,52.097499],[-0.588366,52.098449],[-0.587578,52.101094],[-0.586501,52.101483],[-0.583233,52.104549],[-0.586757,52.107056],[-0.590481,52.108773],[-0.591811,52.110692],[-0.593252,52.110487],[-0.597137,52.108567],[-0.59862,52.106875],[-0.600353,52.106142],[-0.601872,52.105027],[-0.596751,52.101685],[-0.598106,52.101034],[-0.602536,52.100135],[-0.603959,52.099124],[-0.604531,52.095824],[-0.605979,52.095482],[-0.607274,52.094561],[-0.605791,52.092119],[-0.608396,52.09114],[-0.609711,52.091041],[-0.611209,52.09011],[-0.615173,52.088947],[-0.616506,52.088218],[-0.618581,52.085616],[-0.621156,52.084342],[-0.623384,52.083742],[-0.62582,52.084457],[-0.62816,52.082144],[-0.631358,52.080975],[-0.632426,52.079749],[-0.635367,52.078183],[-0.636447,52.077088],[-0.638537,52.073126],[-0.638586,52.071698],[-0.641584,52.067721],[-0.643701,52.066673],[-0.648328,52.065803],[-0.651008,52.064144],[-0.653417,52.06174],[-0.654383,52.059496],[-0.656852,52.058006],[-0.658052,52.056776],[-0.659133,52.056963],[-0.661242,52.053958],[-0.662131,52.054351],[-0.663327,52.052529],[-0.665762,52.051568],[-0.667644,52.050395],[-0.668976,52.048717],[-0.643053,52.037253],[-0.643871,52.035535],[-0.643264,52.034662],[-0.643405,52.032559],[-0.644816,52.031218],[-0.642248,52.030294],[-0.643894,52.028269],[-0.642536,52.028089],[-0.643164,52.026832],[-0.643012,52.025898],[-0.640832,52.025318],[-0.641488,52.024764],[-0.640329,52.023661],[-0.645852,52.021684],[-0.64752,52.019001],[-0.651024,52.018486],[-0.65063,52.016997],[-0.649115,52.014847],[-0.648343,52.015206],[-0.6451,52.013647],[-0.643477,52.010855],[-0.645352,52.010324],[-0.649413,52.010265],[-0.650657,52.00967],[-0.656285,52.005394],[-0.656616,52.003983],[-0.658753,52.001737],[-0.659385,52.000037],[-0.66169,51.999736],[-0.66024,51.996691],[-0.660119,51.994682],[-0.659324,51.993043],[-0.660626,51.9908],[-0.657791,51.989816],[-0.655465,51.9882],[-0.655971,51.986738],[-0.655102,51.985175],[-0.656285,51.984361],[-0.655792,51.98377],[-0.656173,51.982026],[-0.651289,51.977617],[-0.649077,51.976216],[-0.648077,51.974405],[-0.645681,51.972228],[-0.647472,51.971585],[-0.649857,51.971269],[-0.652236,51.970337],[-0.652979,51.969229],[-0.651234,51.968281],[-0.653487,51.967185],[-0.653651,51.963913],[-0.655495,51.961202],[-0.655268,51.960606],[-0.659488,51.959763],[-0.660272,51.957853],[-0.662103,51.955573],[-0.664079,51.956562],[-0.665611,51.955638],[-0.665371,51.955025],[-0.667533,51.954517],[-0.671645,51.956221],[-0.672748,51.954249],[-0.672505,51.9528],[-0.673138,51.952353],[-0.671511,51.950838],[-0.671125,51.949667],[-0.669672,51.948673],[-0.670562,51.947303],[-0.672687,51.946059],[-0.672087,51.94518],[-0.670626,51.944745],[-0.670346,51.94382],[-0.671594,51.943377],[-0.673856,51.943205],[-0.673968,51.944343],[-0.674832,51.945095],[-0.678667,51.944439],[-0.682346,51.942737],[-0.682047,51.939863],[-0.6811,51.938663],[-0.681581,51.937638],[-0.680286,51.936361],[-0.680319,51.935502],[-0.681579,51.935142],[-0.682958,51.935844],[-0.688831,51.929148],[-0.691464,51.927055],[-0.690292,51.925432],[-0.69262,51.920577],[-0.695844,51.917108],[-0.698516,51.913147],[-0.702157,51.909119],[-0.696301,51.904082],[-0.695766,51.901828],[-0.694459,51.900729],[-0.69222,51.900162],[-0.682683,51.900279],[-0.678423,51.901523],[-0.673707,51.901547],[-0.672321,51.900175],[-0.671211,51.900002],[-0.66882,51.897853],[-0.667955,51.897803],[-0.667254,51.896629],[-0.665338,51.896414],[-0.662877,51.895531],[-0.662536,51.89598],[-0.659513,51.894249],[-0.658951,51.893073],[-0.660319,51.892219],[-0.659507,51.89056],[-0.657908,51.890418],[-0.657463,51.889806],[-0.655267,51.888701],[-0.654827,51.88789],[-0.65198,51.88679],[-0.64829,51.886192],[-0.64799,51.885615],[-0.642243,51.884294],[-0.638024,51.883065],[-0.637351,51.882604],[-0.629085,51.882469],[-0.628424,51.88212],[-0.623022,51.884518],[-0.620089,51.885485],[-0.612561,51.877558],[-0.608971,51.875564],[-0.58686,51.870539],[-0.583564,51.870324],[-0.582482,51.867803],[-0.57975,51.866374],[-0.577267,51.865993],[-0.57558,51.8645],[-0.573862,51.862474],[-0.573497,51.860849],[-0.569248,51.858071],[-0.571441,51.855036],[-0.570732,51.854586],[-0.569268,51.851764],[-0.567443,51.85104],[-0.56414,51.851603],[-0.563856,51.850991],[-0.56682,51.850808],[-0.565367,51.848366],[-0.561987,51.845556],[-0.557344,51.845109],[-0.556226,51.844726],[-0.555927,51.843311],[-0.553309,51.841664],[-0.551046,51.839614],[-0.548246,51.835892],[-0.546894,51.835228],[-0.545297,51.835051],[-0.541692,51.832847],[-0.537629,51.831411],[-0.539698,51.828177],[-0.541456,51.827002],[-0.542158,51.825527],[-0.543651,51.824518],[-0.54619,51.82577],[-0.548992,51.827986],[-0.550046,51.82811],[-0.553629,51.826713],[-0.548499,51.824158],[-0.544852,51.82065],[-0.541685,51.818445],[-0.543711,51.816984],[-0.54318,51.815463],[-0.536926,51.814125],[-0.532509,51.80892],[-0.530435,51.809451],[-0.529449,51.808288],[-0.5241,51.805811],[-0.521976,51.805489],[-0.520814,51.80577],[-0.519729,51.805095],[-0.517515,51.808456],[-0.510697,51.811107],[-0.506368,51.813966],[-0.502283,51.815459],[-0.503968,51.816581],[-0.504276,51.817697],[-0.500876,51.819394],[-0.502486,51.820577],[-0.501594,51.821487],[-0.503347,51.822444],[-0.508811,51.824048],[-0.509773,51.825101],[-0.511193,51.825894],[-0.507969,51.826461],[-0.506017,51.8273],[-0.505425,51.831662],[-0.501818,51.836795],[-0.496732,51.837325],[-0.49398,51.835634],[-0.491882,51.835278],[-0.492062,51.838353],[-0.490933,51.842819],[-0.479571,51.842144],[-0.471196,51.845468],[-0.47698,51.850166],[-0.478299,51.853136],[-0.474785,51.853904],[-0.469683,51.855898],[-0.468249,51.85306],[-0.465867,51.850807],[-0.464105,51.850147],[-0.461183,51.852614],[-0.457875,51.850599],[-0.454063,51.853033],[-0.447525,51.847602],[-0.438987,51.851835],[-0.432725,51.848126],[-0.431654,51.848887],[-0.425235,51.846721],[-0.424848,51.849444],[-0.421631,51.849551],[-0.419331,51.848745],[-0.41393,51.8465],[-0.411985,51.846174],[-0.409176,51.84295],[-0.404859,51.840607],[-0.398,51.837183],[-0.39274,51.835572],[-0.380838,51.831103],[-0.373959,51.829191],[-0.373229,51.829269],[-0.370766,51.830567],[-0.36873,51.831083],[-0.36854,51.832868],[-0.367526,51.835105],[-0.36495,51.837917],[-0.364058,51.841183],[-0.363303,51.842105],[-0.358967,51.841408],[-0.357672,51.840016],[-0.356031,51.840513],[-0.352858,51.842154],[-0.344305,51.845376],[-0.342039,51.846641],[-0.342277,51.847394],[-0.341455,51.848337],[-0.339486,51.849606],[-0.340946,51.850575],[-0.342173,51.853014],[-0.347085,51.855486],[-0.349525,51.857183],[-0.350323,51.860839],[-0.353745,51.864331],[-0.355216,51.867255],[-0.353884,51.870556],[-0.354834,51.874015],[-0.358009,51.873197],[-0.362871,51.874024],[-0.368299,51.87306],[-0.365784,51.870762],[-0.369756,51.868115],[-0.376025,51.869874],[-0.377444,51.870838],[-0.37866,51.87016],[-0.380326,51.870186],[-0.386993,51.871213],[-0.388523,51.871867],[-0.391468,51.870129],[-0.393185,51.869727],[-0.39586,51.870581],[-0.397597,51.869668],[-0.400894,51.868652],[-0.403506,51.86645],[-0.405293,51.864375],[-0.409122,51.861495],[-0.410819,51.861783],[-0.412543,51.862868],[-0.416126,51.861995],[-0.414926,51.860772],[-0.414417,51.859035],[-0.416018,51.859309],[-0.42107,51.854895],[-0.42305,51.854621],[-0.425666,51.857127],[-0.4327,51.862423],[-0.44165,51.872122],[-0.449403,51.878348],[-0.455275,51.882287],[-0.466621,51.888165],[-0.479031,51.888515],[-0.483941,51.8883],[-0.484844,51.891306],[-0.499808,51.897831],[-0.505923,51.900612],[-0.497659,51.904004],[-0.494047,51.906075],[-0.491521,51.906326],[-0.490748,51.905236],[-0.482276,51.907795],[-0.481562,51.912884],[-0.478497,51.917331],[-0.486572,51.922148],[-0.485702,51.922701],[-0.482278,51.922349],[-0.475752,51.923685],[-0.470441,51.924171],[-0.465829,51.924104],[-0.462388,51.923598],[-0.458691,51.923951],[-0.456461,51.924586],[-0.4503,51.924731],[-0.446504,51.925583],[-0.441361,51.926177],[-0.438483,51.926054],[-0.438715,51.927026],[-0.437816,51.927747],[-0.431555,51.926948],[-0.426039,51.926689],[-0.421682,51.925681],[-0.422365,51.92052],[-0.421176,51.917516],[-0.420924,51.915253],[-0.419065,51.912304],[-0.418339,51.912778],[-0.414759,51.911531],[-0.40756,51.910692],[-0.402437,51.909703],[-0.40122,51.913053],[-0.393734,51.915462],[-0.393008,51.914412],[-0.387219,51.915944],[-0.385616,51.91568],[-0.385209,51.916813],[-0.383551,51.918272],[-0.384774,51.919469],[-0.387777,51.921406],[-0.389358,51.924793],[-0.389214,51.925781],[-0.40251,51.930207],[-0.405607,51.932454],[-0.402482,51.93341],[-0.403779,51.935859],[-0.403426,51.935997],[-0.405444,51.938429],[-0.4063,51.941294],[-0.405824,51.943431],[-0.403936,51.947882],[-0.402116,51.948952],[-0.403477,51.950512],[-0.402901,51.950953],[-0.403329,51.953616],[-0.402811,51.954998],[-0.403989,51.955341],[-0.403706,51.956144],[-0.401669,51.956372],[-0.402212,51.960524],[-0.401284,51.960589],[-0.400222,51.964879],[-0.398882,51.964929],[-0.398944,51.967437],[-0.394776,51.967371],[-0.393069,51.970521],[-0.393325,51.971806],[-0.391748,51.973514],[-0.39113,51.975489],[-0.391304,51.977021],[-0.388567,51.978619],[-0.386644,51.979461],[-0.384846,51.978304],[-0.380687,51.979432],[-0.37963,51.977957],[-0.379535,51.976591],[-0.378721,51.975886],[-0.378903,51.97365],[-0.378206,51.971636],[-0.379247,51.967318],[-0.380423,51.96538],[-0.37951,51.963412],[-0.379374,51.958138],[-0.379807,51.957065],[-0.38177,51.955297],[-0.382986,51.953452],[-0.382912,51.951414],[-0.381556,51.950609],[-0.374213,51.948686],[-0.374105,51.947769],[-0.372583,51.948019],[-0.36987,51.949439],[-0.366088,51.950674],[-0.363305,51.952864],[-0.353888,51.95716],[-0.350226,51.957578],[-0.351166,51.961999],[-0.349174,51.963737],[-0.351223,51.964613],[-0.350765,51.965368],[-0.351729,51.966229],[-0.349086,51.970042],[-0.349264,51.97117],[-0.351926,51.973768],[-0.353936,51.974192],[-0.3595,51.973928],[-0.361759,51.974388],[-0.363733,51.975209],[-0.363335,51.976123],[-0.365736,51.977516],[-0.365887,51.97871],[-0.366961,51.97905],[-0.367948,51.980088],[-0.367158,51.983761],[-0.361288,51.985383],[-0.358722,51.985546],[-0.356111,51.98525],[-0.353008,51.98393],[-0.352345,51.983395],[-0.347096,51.983843],[-0.345735,51.98323],[-0.341492,51.982606],[-0.338676,51.982755],[-0.334412,51.983879],[-0.331778,51.983964],[-0.321871,51.982559],[-0.318201,51.982591],[-0.314886,51.981871],[-0.311556,51.98211],[-0.310394,51.98265],[-0.30849,51.986941],[-0.306816,51.989069],[-0.304798,51.990444],[-0.300703,51.99223],[-0.295326,51.995404],[-0.300054,52.000781],[-0.296089,52.002192],[-0.294409,52.002042],[-0.292046,52.001058],[-0.290508,52.000772],[-0.287663,52.001505],[-0.283894,52.00182],[-0.28193,52.000976],[-0.28401,51.999377],[-0.282954,51.998722],[-0.283594,51.997381],[-0.282599,51.996053],[-0.27891,51.994697],[-0.277106,51.993624],[-0.275623,51.991844],[-0.275793,51.990956],[-0.274445,51.989625],[-0.272282,51.988136],[-0.273838,51.986659],[-0.273739,51.985335],[-0.274669,51.984282],[-0.274108,51.983043],[-0.273186,51.982415],[-0.273901,51.98121],[-0.271666,51.981501],[-0.270626,51.979622],[-0.267407,51.980325],[-0.262829,51.979609],[-0.260255,51.979705],[-0.259283,51.983159],[-0.258297,51.983113],[-0.257449,51.985386],[-0.247889,51.985173],[-0.245743,51.988921],[-0.244959,51.993114],[-0.244079,51.999023],[-0.237601,51.999058],[-0.238523,51.998157],[-0.236868,51.997947],[-0.232055,52.000538],[-0.229182,52.002942],[-0.227632,52.002987],[-0.224749,52.003927],[-0.223195,52.005078],[-0.221771,52.004675],[-0.220724,52.005755],[-0.219366,52.005409],[-0.218398,52.006328],[-0.217119,52.005997],[-0.213498,52.008451],[-0.2039,52.008745],[-0.201256,52.009825],[-0.206045,52.016114],[-0.207533,52.020241],[-0.212823,52.026568],[-0.219494,52.036741],[-0.211966,52.042845],[-0.211181,52.044533],[-0.209009,52.047301],[-0.199184,52.056665],[-0.199138,52.05725],[-0.197094,52.05901],[-0.197724,52.059501],[-0.195636,52.060972],[-0.194983,52.062415],[-0.180546,52.06135],[-0.175188,52.060771],[-0.17262,52.06021],[-0.17162,52.063361],[-0.167956,52.068872],[-0.166354,52.070623],[-0.164462,52.074599],[-0.164558,52.076298],[-0.164166,52.077035],[-0.160544,52.0797],[-0.157332,52.080523],[-0.156239,52.080963],[-0.156668,52.082137],[-0.156242,52.083373],[-0.154806,52.084253],[-0.154088,52.086135],[-0.14956,52.08982],[-0.1491,52.091236],[-0.149748,52.092171],[-0.148589,52.093463],[-0.149138,52.095117],[-0.148488,52.095443],[-0.150335,52.097014],[-0.147485,52.098845],[-0.148504,52.099664],[-0.147169,52.100396],[-0.148469,52.101532],[-0.146937,52.102986],[-0.147826,52.103801],[-0.146233,52.105987],[-0.147666,52.107117],[-0.145897,52.107895],[-0.147049,52.109027],[-0.14547,52.109842],[-0.146972,52.111112],[-0.145765,52.111721],[-0.14786,52.114195],[-0.145793,52.115619],[-0.143932,52.117736],[-0.145605,52.11789],[-0.144134,52.129788],[-0.144445,52.138204],[-0.148359,52.138941],[-0.149835,52.138941],[-0.151344,52.141563],[-0.150514,52.143619],[-0.152706,52.14316],[-0.154404,52.14441],[-0.156466,52.143972],[-0.159673,52.144068],[-0.160088,52.143023],[-0.162657,52.143061],[-0.163946,52.142392],[-0.163751,52.140128],[-0.166106,52.139892],[-0.169133,52.14026],[-0.171535,52.139503],[-0.174475,52.140328],[-0.176025,52.139762],[-0.181679,52.13976],[-0.190783,52.141468],[-0.197978,52.141941],[-0.203417,52.143356],[-0.204138,52.143979],[-0.207779,52.144537],[-0.20932,52.143843],[-0.213607,52.143379],[-0.21721,52.144078],[-0.219168,52.143893],[-0.232208,52.144786],[-0.234804,52.144727],[-0.227373,52.148023],[-0.224804,52.149744],[-0.222623,52.153151],[-0.219522,52.156838],[-0.218375,52.157919],[-0.216624,52.158736],[-0.219758,52.161542],[-0.221214,52.160976],[-0.223604,52.162253],[-0.223232,52.162656],[-0.226096,52.164938],[-0.228863,52.166243],[-0.240118,52.170233],[-0.251077,52.172508],[-0.253543,52.172568],[-0.254845,52.173397],[-0.257391,52.174292],[-0.260694,52.176401],[-0.257229,52.177679],[-0.257714,52.178148],[-0.253448,52.180858],[-0.249785,52.184371]]]},"properties":{"LAD22CD":"E06000056","LAD22NM":"Central Bedfordshire","BNG_E":504615,"BNG_N":234492,"LONG":-0.47754,"LAT":51.99903,"GlobalID":"d86ab726-fd92-4f48-9c6a-ef83154c182e"},"id":53}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.536989,55.335974],[-1.537881,55.336804],[-1.540214,55.33642],[-1.54076,55.334764],[-1.540351,55.333547],[-1.53766,55.333002],[-1.536793,55.333693],[-1.536989,55.335974]]],[[[-1.641981,55.616388],[-1.643679,55.617123],[-1.644518,55.616321],[-1.642453,55.615764],[-1.641981,55.616388]]],[[[-1.648183,55.617754],[-1.6499,55.61726],[-1.648326,55.616068],[-1.647337,55.616851],[-1.648183,55.617754]]],[[[-1.655008,55.617383],[-1.656285,55.617547],[-1.658626,55.617078],[-1.655398,55.615021],[-1.653878,55.615198],[-1.652168,55.61609],[-1.655008,55.617383]]],[[[-1.624406,55.631847],[-1.626085,55.631857],[-1.624862,55.630561],[-1.625202,55.629339],[-1.623157,55.629766],[-1.622052,55.631285],[-1.624406,55.631847]]],[[[-1.62795,55.63515],[-1.627464,55.634007],[-1.623541,55.632505],[-1.623186,55.63368],[-1.625306,55.634714],[-1.626888,55.63458],[-1.62795,55.63515]]],[[[-1.619753,55.639029],[-1.620912,55.640041],[-1.62236,55.638848],[-1.619753,55.639029]]],[[[-1.628272,55.638556],[-1.628692,55.640203],[-1.630781,55.640368],[-1.631019,55.639192],[-1.629203,55.638367],[-1.628272,55.638556]]],[[[-1.846247,55.692761],[-1.845136,55.693723],[-1.843125,55.693904],[-1.850827,55.696632],[-1.857601,55.697715],[-1.863339,55.697897],[-1.865196,55.696559],[-1.865093,55.695364],[-1.862151,55.694753],[-1.859041,55.692964],[-1.857815,55.691649],[-1.857538,55.683801],[-1.856147,55.68134],[-1.854282,55.680155],[-1.851858,55.680218],[-1.849355,55.678811],[-1.847551,55.678487],[-1.845751,55.67741],[-1.843825,55.677538],[-1.843145,55.678441],[-1.841616,55.677967],[-1.838869,55.679244],[-1.838088,55.680717],[-1.836542,55.680695],[-1.836315,55.681971],[-1.832283,55.682675],[-1.830787,55.68331],[-1.828904,55.683241],[-1.827412,55.682675],[-1.826439,55.682997],[-1.822657,55.682316],[-1.819755,55.682476],[-1.815478,55.682157],[-1.813259,55.681092],[-1.809968,55.680369],[-1.807584,55.678957],[-1.805783,55.677149],[-1.805194,55.675552],[-1.807081,55.673839],[-1.806828,55.671753],[-1.802653,55.66827],[-1.800363,55.667853],[-1.796306,55.668469],[-1.79542,55.669966],[-1.793579,55.670555],[-1.787949,55.668467],[-1.782717,55.668742],[-1.780102,55.667682],[-1.778366,55.668357],[-1.780501,55.671634],[-1.781287,55.674498],[-1.780821,55.675521],[-1.781727,55.676797],[-1.780597,55.677921],[-1.779749,55.680516],[-1.78005,55.682482],[-1.779124,55.68369],[-1.778973,55.68516],[-1.779709,55.686052],[-1.781259,55.686277],[-1.783489,55.685514],[-1.784523,55.684788],[-1.787999,55.685026],[-1.79086,55.68566],[-1.79214,55.686269],[-1.791856,55.689285],[-1.793389,55.68801],[-1.795276,55.687898],[-1.797593,55.687232],[-1.800526,55.688344],[-1.801429,55.689463],[-1.805883,55.687744],[-1.807893,55.687563],[-1.809269,55.686806],[-1.817859,55.686805],[-1.827775,55.688542],[-1.836484,55.691644],[-1.842773,55.693221],[-1.844705,55.692449],[-1.846247,55.692761]]],[[[-2.07376,55.761223],[-2.071351,55.760627],[-2.06421,55.760256],[-2.066499,55.7611],[-2.072088,55.760916],[-2.07376,55.761223]]],[[[-1.461796,55.074317],[-1.463634,55.076812],[-1.463884,55.079629],[-1.465084,55.079829],[-1.468442,55.079634],[-1.469263,55.080095],[-1.470789,55.082856],[-1.469949,55.083719],[-1.47005,55.084854],[-1.472383,55.085596],[-1.474224,55.085307],[-1.476131,55.085672],[-1.478711,55.087147],[-1.485953,55.092675],[-1.488893,55.09536],[-1.494604,55.10241],[-1.497774,55.108142],[-1.498477,55.11265],[-1.497534,55.116061],[-1.495594,55.118272],[-1.497705,55.117765],[-1.49858,55.120392],[-1.497502,55.121807],[-1.49677,55.123815],[-1.497375,55.125145],[-1.500383,55.127918],[-1.510274,55.131497],[-1.511493,55.132478],[-1.516682,55.134474],[-1.517811,55.135309],[-1.519739,55.135784],[-1.526817,55.136455],[-1.52871,55.136465],[-1.534755,55.1351],[-1.537172,55.134414],[-1.537898,55.134664],[-1.542365,55.133927],[-1.544682,55.133799],[-1.548316,55.13452],[-1.551953,55.133294],[-1.554356,55.133336],[-1.563962,55.134324],[-1.558334,55.134584],[-1.554352,55.134207],[-1.548622,55.135829],[-1.545557,55.13501],[-1.543659,55.136149],[-1.540785,55.136199],[-1.533943,55.137596],[-1.535857,55.138342],[-1.538131,55.13977],[-1.54053,55.141744],[-1.541794,55.14234],[-1.543493,55.142338],[-1.545997,55.141557],[-1.549669,55.142781],[-1.552118,55.142868],[-1.552587,55.144306],[-1.553676,55.144948],[-1.559548,55.146331],[-1.557498,55.146867],[-1.556023,55.145946],[-1.553482,55.145197],[-1.551289,55.143586],[-1.550205,55.143669],[-1.54625,55.142351],[-1.543802,55.143132],[-1.541107,55.143223],[-1.537197,55.140733],[-1.535316,55.140127],[-1.534562,55.139354],[-1.53171,55.139158],[-1.530202,55.139839],[-1.524266,55.141323],[-1.523022,55.141234],[-1.521566,55.142059],[-1.519267,55.14263],[-1.517422,55.14021],[-1.518214,55.139593],[-1.517729,55.13848],[-1.515595,55.136181],[-1.513276,55.135212],[-1.511292,55.135123],[-1.509574,55.134065],[-1.507406,55.133452],[-1.504117,55.13056],[-1.501821,55.129956],[-1.498527,55.12848],[-1.498665,55.129606],[-1.506347,55.134071],[-1.516042,55.143292],[-1.520985,55.149365],[-1.524673,55.157938],[-1.526141,55.159971],[-1.529518,55.161808],[-1.530254,55.161407],[-1.53335,55.161607],[-1.536783,55.161109],[-1.540004,55.161167],[-1.54029,55.162036],[-1.532118,55.163301],[-1.527498,55.163044],[-1.528034,55.161862],[-1.525157,55.162639],[-1.524039,55.165365],[-1.521347,55.168745],[-1.521035,55.17027],[-1.516981,55.172192],[-1.513901,55.174236],[-1.514632,55.1757],[-1.51401,55.177632],[-1.514744,55.179293],[-1.512806,55.181583],[-1.511815,55.183571],[-1.510104,55.184596],[-1.508217,55.185216],[-1.506047,55.185129],[-1.504758,55.184425],[-1.502544,55.184444],[-1.501414,55.185371],[-1.500148,55.18521],[-1.502161,55.187962],[-1.503448,55.188887],[-1.505357,55.192491],[-1.505142,55.194295],[-1.502361,55.196963],[-1.503932,55.197661],[-1.507316,55.198559],[-1.510398,55.198788],[-1.516033,55.202862],[-1.517048,55.203935],[-1.516749,55.204961],[-1.519386,55.206827],[-1.520897,55.207376],[-1.523204,55.209957],[-1.526394,55.214403],[-1.527831,55.217428],[-1.527695,55.220157],[-1.528794,55.222069],[-1.528259,55.22555],[-1.527463,55.226432],[-1.52518,55.226932],[-1.526682,55.228197],[-1.530247,55.229909],[-1.535579,55.234687],[-1.538208,55.235737],[-1.541442,55.238032],[-1.54398,55.238684],[-1.545974,55.23971],[-1.55296,55.2458],[-1.559771,55.253729],[-1.563436,55.259138],[-1.566517,55.265305],[-1.570277,55.275527],[-1.571176,55.286023],[-1.569927,55.291553],[-1.567807,55.294888],[-1.563423,55.299081],[-1.561375,55.30167],[-1.558091,55.307049],[-1.555929,55.308852],[-1.55216,55.310166],[-1.550153,55.311361],[-1.54993,55.312268],[-1.550737,55.315976],[-1.549402,55.31994],[-1.549278,55.321965],[-1.551755,55.324014],[-1.560954,55.328579],[-1.563152,55.331124],[-1.563694,55.332352],[-1.566436,55.333088],[-1.567531,55.334435],[-1.570184,55.335222],[-1.570268,55.336884],[-1.572064,55.33742],[-1.573357,55.33648],[-1.576156,55.337273],[-1.580057,55.336253],[-1.581783,55.33656],[-1.583253,55.335483],[-1.586852,55.336069],[-1.586979,55.336926],[-1.58883,55.33764],[-1.593466,55.338724],[-1.599387,55.341619],[-1.60887,55.344224],[-1.609347,55.345069],[-1.608053,55.347869],[-1.607348,55.348097],[-1.607995,55.344615],[-1.59849,55.342319],[-1.592489,55.339774],[-1.591966,55.340826],[-1.595258,55.342872],[-1.596509,55.34649],[-1.595432,55.346375],[-1.595605,55.345076],[-1.594183,55.343367],[-1.590999,55.341198],[-1.589146,55.341078],[-1.584899,55.339561],[-1.584002,55.338802],[-1.582167,55.338314],[-1.580827,55.339259],[-1.570883,55.339765],[-1.576674,55.33991],[-1.579973,55.339612],[-1.588026,55.34544],[-1.595048,55.352128],[-1.599775,55.358293],[-1.601276,55.360933],[-1.601621,55.362477],[-1.600838,55.36388],[-1.602623,55.36497],[-1.604191,55.36794],[-1.606138,55.373867],[-1.60779,55.38098],[-1.609166,55.384256],[-1.610654,55.384677],[-1.613985,55.384293],[-1.61475,55.383519],[-1.616237,55.384335],[-1.618583,55.384865],[-1.620632,55.385967],[-1.620517,55.386804],[-1.622345,55.387594],[-1.62312,55.388732],[-1.622461,55.390146],[-1.621477,55.390563],[-1.619594,55.389818],[-1.618725,55.389998],[-1.619631,55.39368],[-1.617245,55.391995],[-1.616934,55.390953],[-1.617592,55.388017],[-1.617272,55.386996],[-1.616187,55.386757],[-1.612011,55.384923],[-1.607973,55.386982],[-1.601902,55.391927],[-1.596762,55.394394],[-1.595556,55.396923],[-1.594173,55.398389],[-1.594033,55.400599],[-1.592601,55.402767],[-1.58811,55.405811],[-1.585435,55.406381],[-1.582913,55.405921],[-1.58039,55.406713],[-1.578811,55.408909],[-1.578731,55.409824],[-1.579946,55.413032],[-1.58176,55.4157],[-1.581882,55.41805],[-1.580069,55.420989],[-1.580362,55.424458],[-1.578339,55.426778],[-1.577547,55.428861],[-1.575713,55.430211],[-1.575698,55.431865],[-1.576859,55.43277],[-1.578418,55.432259],[-1.5808,55.432563],[-1.582905,55.43324],[-1.584757,55.4334],[-1.587329,55.434235],[-1.588023,55.436013],[-1.591245,55.437504],[-1.591067,55.438836],[-1.593365,55.440349],[-1.591847,55.442271],[-1.590325,55.442539],[-1.589523,55.44463],[-1.586958,55.446819],[-1.587507,55.448089],[-1.586441,55.449365],[-1.588254,55.451543],[-1.588361,55.452689],[-1.589909,55.453676],[-1.592269,55.454517],[-1.591812,55.455433],[-1.593113,55.45721],[-1.593176,55.458175],[-1.591569,55.459973],[-1.591025,55.461407],[-1.58916,55.461372],[-1.588651,55.461936],[-1.58944,55.464328],[-1.590215,55.46556],[-1.590414,55.467595],[-1.591402,55.468259],[-1.592162,55.470184],[-1.591278,55.471365],[-1.591929,55.472635],[-1.593453,55.473086],[-1.592389,55.474576],[-1.592871,55.474975],[-1.59227,55.477235],[-1.592125,55.479416],[-1.592684,55.481264],[-1.593968,55.482882],[-1.593957,55.484272],[-1.592883,55.485281],[-1.591655,55.485201],[-1.59176,55.489451],[-1.592332,55.489949],[-1.592135,55.492295],[-1.593975,55.491353],[-1.595495,55.491276],[-1.598752,55.492287],[-1.602199,55.494464],[-1.608168,55.494462],[-1.610875,55.495401],[-1.612874,55.49678],[-1.615165,55.499166],[-1.616902,55.502513],[-1.616554,55.504477],[-1.613794,55.507831],[-1.613442,55.509823],[-1.617724,55.512984],[-1.618356,55.514545],[-1.617846,55.515381],[-1.610764,55.520207],[-1.610656,55.521778],[-1.617158,55.52196],[-1.618988,55.522566],[-1.620259,55.524622],[-1.618445,55.526432],[-1.62374,55.526668],[-1.626199,55.527846],[-1.630263,55.531074],[-1.633133,55.533939],[-1.636538,55.539269],[-1.637474,55.540254],[-1.637256,55.541406],[-1.635994,55.54321],[-1.63444,55.548053],[-1.63236,55.550279],[-1.630921,55.55101],[-1.627562,55.551553],[-1.625635,55.550771],[-1.625705,55.550002],[-1.619777,55.551611],[-1.622744,55.551499],[-1.623481,55.552257],[-1.628188,55.5544],[-1.628214,55.556411],[-1.626562,55.557701],[-1.630026,55.557648],[-1.632007,55.559284],[-1.633189,55.559614],[-1.635466,55.563141],[-1.637961,55.565063],[-1.640211,55.566152],[-1.642045,55.568523],[-1.644613,55.570889],[-1.645551,55.574145],[-1.643941,55.576193],[-1.641233,55.576274],[-1.639652,55.576738],[-1.640156,55.5775],[-1.639599,55.578405],[-1.643671,55.579267],[-1.645263,55.580399],[-1.646078,55.581588],[-1.648914,55.582157],[-1.650641,55.581926],[-1.652843,55.582864],[-1.654558,55.583126],[-1.661078,55.585319],[-1.664709,55.586012],[-1.666337,55.587159],[-1.668571,55.589752],[-1.67381,55.59404],[-1.67722,55.595288],[-1.679883,55.598132],[-1.683012,55.599296],[-1.685331,55.600717],[-1.687841,55.601381],[-1.691964,55.606119],[-1.694845,55.607189],[-1.704417,55.609835],[-1.716792,55.612423],[-1.719392,55.61344],[-1.720809,55.614769],[-1.72261,55.615595],[-1.722617,55.616792],[-1.725465,55.616571],[-1.727922,55.617603],[-1.729914,55.617617],[-1.73266,55.616882],[-1.736127,55.617432],[-1.740683,55.618816],[-1.743575,55.619186],[-1.746497,55.618504],[-1.746219,55.616311],[-1.749159,55.614263],[-1.756324,55.61322],[-1.756388,55.612393],[-1.758323,55.611525],[-1.759265,55.61027],[-1.758525,55.609043],[-1.758977,55.608209],[-1.764219,55.604537],[-1.768063,55.60426],[-1.768841,55.603033],[-1.770377,55.603408],[-1.769101,55.605095],[-1.769767,55.606275],[-1.77115,55.607097],[-1.771894,55.608713],[-1.773203,55.609272],[-1.774636,55.610885],[-1.774817,55.612089],[-1.776989,55.612462],[-1.778816,55.61488],[-1.782995,55.615552],[-1.783952,55.616296],[-1.778226,55.616904],[-1.776565,55.616441],[-1.770326,55.617159],[-1.770705,55.618151],[-1.768862,55.619394],[-1.765903,55.620297],[-1.762479,55.620671],[-1.758064,55.620615],[-1.756412,55.619404],[-1.754832,55.61951],[-1.754518,55.623397],[-1.755509,55.625016],[-1.757699,55.627164],[-1.760638,55.629071],[-1.767838,55.63276],[-1.774953,55.638092],[-1.778736,55.641423],[-1.781975,55.644945],[-1.785301,55.650269],[-1.788022,55.656514],[-1.793924,55.658949],[-1.7951,55.65748],[-1.793568,55.656535],[-1.791525,55.656361],[-1.789934,55.653276],[-1.790124,55.650612],[-1.79148,55.650213],[-1.79257,55.648811],[-1.793756,55.648185],[-1.796916,55.643294],[-1.798367,55.642254],[-1.799514,55.640725],[-1.800565,55.637664],[-1.802139,55.636667],[-1.804935,55.635782],[-1.806061,55.635013],[-1.810031,55.634083],[-1.812578,55.633905],[-1.81483,55.634536],[-1.818254,55.636508],[-1.827627,55.638301],[-1.83077,55.638564],[-1.836371,55.641615],[-1.841477,55.643021],[-1.842107,55.644341],[-1.84098,55.645589],[-1.84406,55.648575],[-1.846108,55.651442],[-1.848738,55.653037],[-1.852986,55.653521],[-1.857123,55.656215],[-1.858153,55.658088],[-1.860304,55.659338],[-1.860306,55.660175],[-1.861763,55.66195],[-1.863428,55.662892],[-1.863775,55.664457],[-1.866781,55.665734],[-1.864891,55.666435],[-1.866683,55.669992],[-1.870683,55.672693],[-1.870718,55.673534],[-1.868858,55.673344],[-1.870905,55.676054],[-1.872723,55.678015],[-1.872103,55.680954],[-1.874159,55.683932],[-1.875524,55.686924],[-1.877298,55.688747],[-1.876355,55.690235],[-1.87782,55.693038],[-1.876182,55.693206],[-1.875421,55.694142],[-1.872937,55.694543],[-1.871219,55.695786],[-1.869396,55.696049],[-1.869334,55.696801],[-1.870443,55.697841],[-1.872107,55.69796],[-1.873431,55.696969],[-1.875401,55.696838],[-1.877681,55.697099],[-1.880691,55.697956],[-1.880808,55.698482],[-1.876114,55.698537],[-1.875923,55.699562],[-1.87959,55.701006],[-1.892881,55.704257],[-1.904061,55.707407],[-1.911476,55.708716],[-1.912865,55.709832],[-1.917272,55.711663],[-1.928658,55.715584],[-1.936851,55.719278],[-1.941434,55.721684],[-1.941674,55.722223],[-1.944178,55.723775],[-1.94404,55.7242],[-1.946418,55.725398],[-1.946571,55.726458],[-1.949637,55.727424],[-1.951877,55.728895],[-1.954819,55.729954],[-1.956347,55.731256],[-1.960753,55.733214],[-1.961737,55.734435],[-1.962306,55.736747],[-1.963293,55.738305],[-1.966402,55.739848],[-1.970211,55.740892],[-1.971811,55.741785],[-1.973963,55.745552],[-1.975969,55.746139],[-1.979269,55.748431],[-1.980232,55.749599],[-1.983308,55.750956],[-1.98877,55.755708],[-1.992454,55.761256],[-1.993926,55.76171],[-1.996541,55.760827],[-1.998534,55.760692],[-2.00175,55.760964],[-2.003808,55.761838],[-2.006627,55.763719],[-2.007094,55.764679],[-2.008808,55.764587],[-2.009493,55.765633],[-2.007663,55.766054],[-2.010076,55.76717],[-2.011009,55.769496],[-2.013801,55.771413],[-2.015077,55.771692],[-2.017688,55.771465],[-2.021544,55.770618],[-2.028399,55.768253],[-2.029386,55.768878],[-2.025236,55.770881],[-2.025197,55.771275],[-2.02953,55.770687],[-2.031643,55.769761],[-2.033568,55.766465],[-2.034005,55.764369],[-2.038213,55.760097],[-2.040756,55.759071],[-2.047789,55.757718],[-2.053185,55.757569],[-2.055429,55.757221],[-2.065675,55.759309],[-2.075305,55.759939],[-2.086513,55.761589],[-2.092111,55.762154],[-2.097903,55.762074],[-2.102456,55.761291],[-2.106293,55.760048],[-2.108504,55.758355],[-2.1088,55.757396],[-2.107539,55.755605],[-2.10512,55.75122],[-2.106012,55.748159],[-2.107666,55.747282],[-2.113668,55.748154],[-2.116124,55.746559],[-2.117626,55.744518],[-2.118011,55.742767],[-2.116717,55.740772],[-2.116665,55.739313],[-2.117307,55.738426],[-2.119485,55.737628],[-2.12535,55.737058],[-2.130559,55.738575],[-2.131806,55.739314],[-2.13655,55.740384],[-2.138383,55.740474],[-2.143265,55.739585],[-2.146052,55.738442],[-2.148745,55.736487],[-2.149884,55.73482],[-2.149858,55.733236],[-2.148067,55.729505],[-2.14775,55.727197],[-2.14915,55.724588],[-2.151752,55.722506],[-2.153576,55.722196],[-2.156141,55.722218],[-2.158813,55.722838],[-2.161582,55.722898],[-2.168856,55.722241],[-2.173537,55.720698],[-2.176997,55.718375],[-2.177054,55.71652],[-2.175747,55.714373],[-2.1725,55.710803],[-2.166999,55.707826],[-2.166565,55.706944],[-2.167231,55.706035],[-2.170578,55.704912],[-2.180598,55.703274],[-2.184055,55.701593],[-2.186408,55.699807],[-2.186752,55.698439],[-2.188236,55.696705],[-2.189815,55.695973],[-2.191196,55.696318],[-2.192171,55.695573],[-2.195313,55.69091],[-2.197805,55.688327],[-2.198925,55.687679],[-2.204105,55.686763],[-2.207606,55.684396],[-2.209198,55.680858],[-2.218659,55.675907],[-2.219725,55.673742],[-2.219572,55.672229],[-2.217966,55.669643],[-2.217041,55.666871],[-2.217526,55.665292],[-2.218453,55.66426],[-2.220896,55.663472],[-2.226924,55.663124],[-2.229978,55.662439],[-2.232145,55.661021],[-2.233921,55.65813],[-2.237004,55.656308],[-2.244445,55.653263],[-2.246424,55.653014],[-2.248174,55.652353],[-2.247829,55.650592],[-2.242494,55.647685],[-2.240224,55.646969],[-2.235378,55.646405],[-2.231918,55.645145],[-2.231588,55.643834],[-2.232557,55.642521],[-2.2348,55.640812],[-2.237194,55.640274],[-2.24242,55.640049],[-2.242791,55.639692],[-2.245726,55.639519],[-2.248625,55.639981],[-2.249768,55.641564],[-2.252335,55.642641],[-2.251449,55.643218],[-2.256018,55.644526],[-2.25981,55.644574],[-2.273091,55.642699],[-2.282973,55.642922],[-2.28918,55.643381],[-2.29287,55.645304],[-2.29895,55.647126],[-2.30579,55.647044],[-2.310338,55.646062],[-2.313151,55.644764],[-2.314773,55.643585],[-2.316035,55.643238],[-2.319369,55.643147],[-2.322589,55.643558],[-2.324702,55.643167],[-2.325583,55.642131],[-2.326027,55.639866],[-2.325595,55.638327],[-2.326252,55.637021],[-2.327767,55.636042],[-2.335047,55.634491],[-2.335247,55.632021],[-2.332162,55.629764],[-2.329805,55.629145],[-2.32815,55.627409],[-2.324311,55.626166],[-2.321615,55.6262],[-2.319816,55.627722],[-2.315895,55.62825],[-2.314999,55.627884],[-2.31084,55.628913],[-2.308626,55.628876],[-2.308935,55.622479],[-2.316094,55.620458],[-2.307286,55.611104],[-2.30595,55.612084],[-2.295135,55.608622],[-2.295504,55.608334],[-2.293885,55.604555],[-2.292269,55.604622],[-2.289232,55.603774],[-2.290321,55.602838],[-2.287752,55.601048],[-2.288955,55.598363],[-2.288136,55.598144],[-2.285936,55.596544],[-2.288607,55.594942],[-2.287848,55.592865],[-2.288114,55.591538],[-2.290374,55.589609],[-2.292392,55.585799],[-2.288536,55.58005],[-2.285432,55.57772],[-2.280148,55.57732],[-2.276479,55.575689],[-2.270055,55.570109],[-2.264619,55.566919],[-2.259805,55.565058],[-2.259867,55.563693],[-2.257505,55.562567],[-2.253076,55.561391],[-2.247854,55.556731],[-2.244052,55.556817],[-2.240307,55.555627],[-2.240769,55.552684],[-2.235173,55.548335],[-2.234093,55.546559],[-2.232249,55.54483],[-2.233223,55.543145],[-2.232963,55.541779],[-2.233824,55.540828],[-2.233217,55.529613],[-2.227603,55.528408],[-2.224284,55.522788],[-2.226628,55.519514],[-2.228846,55.509519],[-2.227995,55.508005],[-2.226541,55.507098],[-2.220582,55.506315],[-2.219453,55.505733],[-2.216921,55.502816],[-2.211941,55.499424],[-2.208761,55.495727],[-2.208804,55.494677],[-2.207032,55.494071],[-2.205295,55.491493],[-2.202649,55.489541],[-2.202233,55.488243],[-2.206063,55.482888],[-2.206355,55.48156],[-2.205375,55.480175],[-2.203373,55.478604],[-2.201592,55.475516],[-2.200954,55.475016],[-2.195492,55.475321],[-2.189471,55.473961],[-2.173724,55.472271],[-2.168495,55.469062],[-2.165521,55.468382],[-2.166536,55.467468],[-2.184414,55.464085],[-2.189638,55.461166],[-2.188426,55.456439],[-2.190035,55.454308],[-2.192265,55.452551],[-2.193529,55.449799],[-2.1933,55.447214],[-2.19422,55.445258],[-2.198346,55.442132],[-2.201742,55.440685],[-2.203793,55.43857],[-2.205624,55.437539],[-2.221136,55.433142],[-2.223082,55.432235],[-2.223352,55.431333],[-2.228201,55.430351],[-2.229956,55.430577],[-2.231282,55.428429],[-2.233813,55.429239],[-2.236635,55.430962],[-2.242544,55.432146],[-2.253762,55.431897],[-2.256716,55.432258],[-2.258592,55.432185],[-2.260611,55.432934],[-2.262243,55.428558],[-2.264473,55.428771],[-2.268295,55.430002],[-2.270647,55.429593],[-2.271738,55.428786],[-2.273893,55.425981],[-2.277966,55.426397],[-2.281773,55.424909],[-2.28385,55.422887],[-2.294514,55.420465],[-2.293804,55.418519],[-2.295935,55.414922],[-2.30095,55.413613],[-2.301786,55.413661],[-2.304252,55.412725],[-2.306687,55.411248],[-2.31019,55.410167],[-2.312545,55.409855],[-2.313254,55.406789],[-2.315957,55.407327],[-2.319695,55.407562],[-2.320695,55.408196],[-2.322848,55.40761],[-2.32735,55.407965],[-2.329102,55.408521],[-2.330724,55.409677],[-2.332367,55.409911],[-2.333823,55.408761],[-2.335629,55.408208],[-2.332999,55.404322],[-2.333531,55.402425],[-2.336438,55.401887],[-2.337667,55.401192],[-2.340304,55.401243],[-2.341898,55.400407],[-2.343192,55.400345],[-2.34473,55.399446],[-2.343371,55.397415],[-2.335513,55.392565],[-2.33494,55.390011],[-2.335831,55.386159],[-2.334863,55.385569],[-2.334742,55.383155],[-2.332541,55.381955],[-2.330021,55.381242],[-2.330578,55.380464],[-2.332301,55.380038],[-2.336476,55.377901],[-2.337241,55.376733],[-2.346233,55.373061],[-2.343329,55.370721],[-2.338973,55.368828],[-2.338458,55.367807],[-2.340102,55.36609],[-2.34209,55.365222],[-2.345048,55.364561],[-2.347149,55.364611],[-2.351369,55.363195],[-2.354944,55.362537],[-2.35839,55.359987],[-2.361542,55.359102],[-2.364199,55.358761],[-2.365456,55.357621],[-2.369887,55.355705],[-2.372798,55.355069],[-2.37496,55.353784],[-2.378961,55.350533],[-2.378912,55.349169],[-2.381129,55.349141],[-2.38479,55.348303],[-2.39027,55.34793],[-2.392979,55.347447],[-2.399522,55.348274],[-2.400062,55.348695],[-2.39957,55.35075],[-2.400856,55.353487],[-2.402184,55.354406],[-2.408667,55.35743],[-2.411288,55.358066],[-2.412367,55.357771],[-2.414997,55.358922],[-2.419883,55.359034],[-2.421876,55.358617],[-2.42435,55.358592],[-2.426367,55.358138],[-2.429231,55.356435],[-2.436904,55.358305],[-2.439297,55.359453],[-2.440355,55.359139],[-2.444406,55.359183],[-2.45179,55.35648],[-2.45668,55.355281],[-2.457054,55.35461],[-2.461224,55.353209],[-2.463314,55.353624],[-2.467538,55.352757],[-2.471316,55.353788],[-2.473439,55.354735],[-2.475186,55.354768],[-2.481366,55.353668],[-2.488519,55.351834],[-2.495021,55.347491],[-2.496177,55.346515],[-2.498809,55.342102],[-2.502254,55.34022],[-2.501988,55.3372],[-2.504356,55.335345],[-2.506886,55.333955],[-2.509259,55.331647],[-2.513712,55.329625],[-2.516322,55.326831],[-2.517699,55.324665],[-2.52027,55.323047],[-2.525109,55.321809],[-2.530769,55.322709],[-2.536554,55.320953],[-2.543105,55.319592],[-2.5443,55.318263],[-2.548728,55.317245],[-2.550425,55.315786],[-2.559041,55.317835],[-2.559427,55.317227],[-2.559181,55.315138],[-2.557271,55.313293],[-2.557095,55.311713],[-2.559666,55.309846],[-2.560095,55.30875],[-2.563304,55.307631],[-2.565213,55.305935],[-2.566347,55.30332],[-2.570753,55.301408],[-2.573705,55.300786],[-2.573361,55.296886],[-2.57578,55.29609],[-2.578647,55.294412],[-2.582987,55.293492],[-2.590291,55.291406],[-2.594199,55.289851],[-2.598492,55.287109],[-2.602479,55.285571],[-2.605196,55.285374],[-2.609238,55.283248],[-2.611013,55.280926],[-2.613377,55.279255],[-2.613709,55.278347],[-2.617023,55.277126],[-2.618421,55.274989],[-2.620292,55.273763],[-2.622137,55.273087],[-2.623333,55.271964],[-2.623281,55.269761],[-2.628191,55.267933],[-2.626307,55.264542],[-2.62684,55.263316],[-2.626656,55.262221],[-2.635386,55.261142],[-2.640973,55.260986],[-2.645408,55.260071],[-2.646771,55.260044],[-2.64435,55.258218],[-2.640417,55.256463],[-2.638119,55.255906],[-2.632386,55.253363],[-2.629497,55.251317],[-2.624089,55.249495],[-2.620624,55.249116],[-2.617622,55.248309],[-2.615344,55.248264],[-2.612013,55.247687],[-2.611451,55.247134],[-2.614836,55.24563],[-2.61784,55.247202],[-2.620201,55.247215],[-2.622154,55.246166],[-2.624232,55.246387],[-2.626141,55.245667],[-2.630229,55.244791],[-2.630063,55.244109],[-2.631304,55.241927],[-2.631418,55.240031],[-2.632974,55.239857],[-2.631526,55.238584],[-2.632211,55.236644],[-2.633552,55.235569],[-2.633246,55.23434],[-2.634909,55.230413],[-2.635806,55.229766],[-2.634657,55.225465],[-2.631414,55.223698],[-2.638967,55.222682],[-2.641294,55.22114],[-2.643211,55.221061],[-2.64807,55.219867],[-2.659991,55.219884],[-2.666815,55.22158],[-2.668842,55.219682],[-2.683332,55.20189],[-2.682674,55.199727],[-2.68125,55.198602],[-2.682319,55.196813],[-2.685108,55.195556],[-2.686245,55.194046],[-2.684765,55.192879],[-2.6856,55.192554],[-2.686149,55.19079],[-2.687394,55.189649],[-2.68979,55.188984],[-2.677378,55.177721],[-2.674556,55.175891],[-2.674271,55.173709],[-2.676443,55.173035],[-2.677693,55.171724],[-2.677358,55.171248],[-2.679548,55.16965],[-2.679919,55.16886],[-2.682924,55.167494],[-2.683254,55.16663],[-2.676097,55.15841],[-2.676079,55.157896],[-2.677768,55.156581],[-2.677325,55.155488],[-2.67489,55.155471],[-2.673265,55.151781],[-2.672532,55.150855],[-2.671267,55.150535],[-2.668579,55.147311],[-2.666389,55.147464],[-2.662591,55.146991],[-2.661625,55.146365],[-2.659905,55.144288],[-2.659325,55.142976],[-2.659774,55.142108],[-2.65694,55.136132],[-2.65545,55.135694],[-2.648618,55.132394],[-2.647125,55.131062],[-2.64537,55.131055],[-2.635711,55.129614],[-2.632639,55.127757],[-2.62569,55.127543],[-2.624351,55.128968],[-2.621273,55.129216],[-2.61564,55.127495],[-2.610765,55.126708],[-2.610239,55.126355],[-2.606154,55.126147],[-2.602733,55.124696],[-2.598903,55.124576],[-2.600927,55.123788],[-2.601594,55.122609],[-2.600986,55.119675],[-2.600399,55.118913],[-2.600471,55.117162],[-2.599613,55.115681],[-2.594834,55.114069],[-2.593437,55.112833],[-2.594265,55.110855],[-2.593279,55.110047],[-2.594082,55.10908],[-2.594325,55.107619],[-2.592903,55.106965],[-2.592295,55.106052],[-2.592088,55.104242],[-2.590436,55.103704],[-2.589341,55.103959],[-2.585419,55.102736],[-2.583337,55.101684],[-2.582635,55.100516],[-2.583326,55.099025],[-2.582819,55.098085],[-2.580664,55.096687],[-2.577435,55.096742],[-2.576678,55.095852],[-2.572459,55.09763],[-2.570201,55.097233],[-2.568426,55.096261],[-2.568975,55.094394],[-2.566782,55.093703],[-2.566706,55.091966],[-2.563396,55.091265],[-2.56118,55.090304],[-2.560751,55.08944],[-2.558295,55.08881],[-2.558902,55.087396],[-2.562793,55.084376],[-2.562137,55.083462],[-2.560817,55.083971],[-2.558792,55.083781],[-2.556972,55.082123],[-2.555189,55.082761],[-2.552654,55.081256],[-2.550838,55.080881],[-2.550456,55.0817],[-2.548662,55.082686],[-2.546813,55.082977],[-2.545766,55.083778],[-2.544028,55.083386],[-2.540168,55.084302],[-2.53686,55.082944],[-2.532257,55.082761],[-2.530471,55.085187],[-2.527173,55.085072],[-2.526389,55.083962],[-2.524951,55.085482],[-2.518095,55.084957],[-2.51677,55.086051],[-2.516971,55.088618],[-2.516468,55.089115],[-2.513207,55.089208],[-2.511567,55.088867],[-2.50896,55.08972],[-2.506935,55.08915],[-2.504886,55.090382],[-2.502251,55.090719],[-2.500629,55.090191],[-2.49905,55.0878],[-2.498292,55.0873],[-2.49533,55.086469],[-2.491888,55.086307],[-2.4907,55.085859],[-2.4897,55.084146],[-2.486341,55.083045],[-2.486084,55.081585],[-2.486639,55.081102],[-2.490123,55.080776],[-2.491105,55.082272],[-2.493517,55.082221],[-2.494733,55.081822],[-2.496312,55.080309],[-2.497053,55.077417],[-2.499479,55.076775],[-2.501234,55.075225],[-2.50105,55.074601],[-2.499236,55.073499],[-2.494035,55.071663],[-2.493353,55.070866],[-2.493264,55.069062],[-2.4922,55.068154],[-2.493798,55.065959],[-2.49759,55.065658],[-2.497883,55.064735],[-2.500749,55.064289],[-2.503474,55.063143],[-2.503509,55.062079],[-2.501321,55.062466],[-2.500028,55.062116],[-2.500552,55.061221],[-2.502266,55.061276],[-2.501891,55.059849],[-2.502021,55.057726],[-2.499752,55.056147],[-2.497826,55.056625],[-2.494853,55.054463],[-2.495446,55.053332],[-2.49407,55.05316],[-2.492186,55.054204],[-2.490846,55.053377],[-2.493148,55.052117],[-2.494342,55.050715],[-2.487566,55.047864],[-2.4872,55.04728],[-2.488122,55.046218],[-2.484894,55.045157],[-2.482957,55.043701],[-2.482343,55.041491],[-2.48305,55.040019],[-2.49344,55.037167],[-2.497072,55.036881],[-2.503044,55.037088],[-2.505666,55.036748],[-2.506547,55.035595],[-2.505762,55.034832],[-2.503826,55.034267],[-2.504479,55.033191],[-2.508923,55.03442],[-2.50863,55.036005],[-2.510992,55.035902],[-2.510765,55.034884],[-2.512562,55.033794],[-2.514716,55.034498],[-2.515792,55.033593],[-2.517608,55.033429],[-2.519105,55.03282],[-2.521659,55.032517],[-2.524498,55.032933],[-2.525911,55.032363],[-2.527709,55.032276],[-2.527077,55.030264],[-2.527622,55.0291],[-2.529186,55.028962],[-2.531975,55.030372],[-2.532988,55.029947],[-2.533256,55.028688],[-2.534061,55.028265],[-2.539573,55.028877],[-2.540899,55.027317],[-2.544483,55.026805],[-2.54637,55.025243],[-2.545902,55.024351],[-2.546689,55.023566],[-2.55043,55.022225],[-2.55262,55.021042],[-2.554749,55.020896],[-2.555829,55.019892],[-2.556981,55.019656],[-2.558753,55.020891],[-2.560933,55.020403],[-2.565042,55.020111],[-2.568175,55.018349],[-2.567899,55.017253],[-2.571399,55.017051],[-2.573187,55.016115],[-2.571781,55.014233],[-2.574812,55.011173],[-2.573975,55.009631],[-2.571868,55.008389],[-2.573468,55.007285],[-2.572643,55.006347],[-2.570803,55.007062],[-2.570807,55.005849],[-2.573499,55.004767],[-2.574181,55.0037],[-2.572943,55.003277],[-2.570198,55.003933],[-2.568432,55.003457],[-2.567714,55.002747],[-2.569095,55.001237],[-2.568615,54.999934],[-2.570471,54.998736],[-2.570482,54.996945],[-2.571969,54.99561],[-2.572862,54.992872],[-2.574434,54.991667],[-2.573031,54.990338],[-2.573311,54.987638],[-2.575785,54.984923],[-2.576979,54.984696],[-2.578559,54.983415],[-2.581936,54.982277],[-2.585773,54.982393],[-2.58663,54.982034],[-2.588572,54.980187],[-2.588468,54.979711],[-2.589966,54.977701],[-2.590231,54.976476],[-2.591592,54.974151],[-2.594243,54.973635],[-2.600346,54.973662],[-2.601429,54.97134],[-2.598885,54.967764],[-2.599085,54.966854],[-2.598111,54.965867],[-2.598799,54.965261],[-2.596868,54.96467],[-2.595569,54.963481],[-2.58884,54.962905],[-2.58653,54.963063],[-2.578421,54.960811],[-2.571434,54.960017],[-2.568427,54.958291],[-2.571286,54.94837],[-2.56765,54.940856],[-2.564937,54.940327],[-2.563442,54.937443],[-2.560191,54.934096],[-2.554411,54.933556],[-2.55199,54.932074],[-2.550368,54.929978],[-2.548297,54.929832],[-2.546084,54.930505],[-2.545273,54.929172],[-2.546249,54.927156],[-2.547614,54.926219],[-2.551656,54.925565],[-2.55359,54.924619],[-2.559406,54.924431],[-2.560255,54.923884],[-2.558979,54.9231],[-2.558097,54.921298],[-2.55984,54.920115],[-2.566221,54.919238],[-2.566604,54.913696],[-2.567566,54.909003],[-2.574862,54.899745],[-2.574805,54.898421],[-2.576414,54.896717],[-2.579693,54.894864],[-2.581907,54.894213],[-2.585073,54.892207],[-2.588166,54.891125],[-2.59117,54.888999],[-2.592532,54.888961],[-2.594386,54.887739],[-2.596063,54.887624],[-2.59719,54.886975],[-2.60455,54.88545],[-2.605454,54.884306],[-2.598962,54.879862],[-2.593165,54.875272],[-2.590247,54.873784],[-2.590372,54.872913],[-2.588596,54.869536],[-2.583631,54.865594],[-2.581199,54.864236],[-2.577431,54.859574],[-2.575841,54.856665],[-2.573353,54.853546],[-2.581783,54.84789],[-2.582671,54.845867],[-2.577952,54.836454],[-2.572591,54.831442],[-2.567849,54.823575],[-2.558307,54.816725],[-2.543266,54.812124],[-2.536217,54.807671],[-2.533672,54.806702],[-2.530652,54.805999],[-2.523442,54.806045],[-2.519474,54.807847],[-2.51557,54.808298],[-2.514975,54.808639],[-2.510983,54.808709],[-2.507662,54.809718],[-2.50355,54.810138],[-2.502148,54.810596],[-2.49828,54.81003],[-2.495357,54.810342],[-2.48816,54.814409],[-2.486149,54.815075],[-2.48196,54.816969],[-2.481479,54.818009],[-2.478947,54.81921],[-2.4779,54.820407],[-2.476275,54.820902],[-2.475916,54.821833],[-2.474147,54.822464],[-2.473349,54.823765],[-2.468771,54.826107],[-2.465075,54.82965],[-2.463176,54.830551],[-2.46331,54.831729],[-2.461239,54.832899],[-2.460602,54.834172],[-2.457986,54.833214],[-2.455953,54.831476],[-2.453891,54.832097],[-2.452239,54.832013],[-2.450464,54.832706],[-2.449006,54.834242],[-2.446971,54.835101],[-2.444819,54.835123],[-2.443255,54.835798],[-2.441905,54.835645],[-2.440401,54.836784],[-2.438527,54.837021],[-2.438273,54.837871],[-2.433687,54.839641],[-2.43001,54.840176],[-2.427615,54.841164],[-2.422676,54.84287],[-2.420532,54.844538],[-2.419887,54.845821],[-2.417548,54.847703],[-2.417098,54.849129],[-2.414743,54.850677],[-2.411653,54.85645],[-2.401623,54.851484],[-2.398299,54.844165],[-2.392727,54.834515],[-2.391832,54.833436],[-2.389604,54.831949],[-2.386738,54.831635],[-2.382326,54.830656],[-2.380926,54.830095],[-2.37267,54.82738],[-2.373999,54.826037],[-2.371352,54.825062],[-2.370161,54.823321],[-2.370327,54.822488],[-2.369145,54.821844],[-2.369831,54.820966],[-2.359926,54.816693],[-2.355789,54.813903],[-2.35261,54.810704],[-2.35165,54.810592],[-2.348569,54.808347],[-2.348429,54.807079],[-2.345532,54.806295],[-2.343609,54.806209],[-2.341678,54.806898],[-2.338328,54.806793],[-2.336555,54.806371],[-2.334,54.804922],[-2.331622,54.804642],[-2.327385,54.805332],[-2.327376,54.802996],[-2.323389,54.79675],[-2.323284,54.795009],[-2.318447,54.793189],[-2.314811,54.792575],[-2.31209,54.791015],[-2.308801,54.790879],[-2.30794,54.79213],[-2.305873,54.791782],[-2.305152,54.792212],[-2.302559,54.792333],[-2.300555,54.793329],[-2.29877,54.793001],[-2.29554,54.793582],[-2.292986,54.793165],[-2.290095,54.795935],[-2.286081,54.79623],[-2.28598,54.796873],[-2.282678,54.798252],[-2.280671,54.797979],[-2.27709,54.796249],[-2.272198,54.795751],[-2.268726,54.794567],[-2.266912,54.794744],[-2.263176,54.79251],[-2.260211,54.792582],[-2.260583,54.791533],[-2.256283,54.791193],[-2.251294,54.789776],[-2.248663,54.78796],[-2.235521,54.786797],[-2.234064,54.784165],[-2.226698,54.782951],[-2.219537,54.782997],[-2.218907,54.782377],[-2.215057,54.783853],[-2.214462,54.786667],[-2.212438,54.78813],[-2.209402,54.792243],[-2.206859,54.793958],[-2.203797,54.797799],[-2.201521,54.799927],[-2.198624,54.804555],[-2.19931,54.805717],[-2.198601,54.806736],[-2.186831,54.80625],[-2.182297,54.807171],[-2.177416,54.806821],[-2.173852,54.806027],[-2.171675,54.804035],[-2.16947,54.80361],[-2.16635,54.813889],[-2.164265,54.815828],[-2.16087,54.818533],[-2.157161,54.820476],[-2.151292,54.822815],[-2.143131,54.826959],[-2.143442,54.830089],[-2.141831,54.831869],[-2.14147,54.8332],[-2.13974,54.834481],[-2.139087,54.838407],[-2.139789,54.841871],[-2.138162,54.842369],[-2.134818,54.842852],[-2.133437,54.842137],[-2.131007,54.842704],[-2.129153,54.842499],[-2.128645,54.841849],[-2.124949,54.84166],[-2.120766,54.840813],[-2.119826,54.841326],[-2.118298,54.840883],[-2.116353,54.841222],[-2.113968,54.840334],[-2.111522,54.840036],[-2.108669,54.840698],[-2.104889,54.839914],[-2.102865,54.839841],[-2.101466,54.837708],[-2.100196,54.837146],[-2.099082,54.837409],[-2.097451,54.83678],[-2.093563,54.836865],[-2.092157,54.837516],[-2.090448,54.837701],[-2.088522,54.837099],[-2.087251,54.837905],[-2.082575,54.838169],[-2.081234,54.839258],[-2.077397,54.839541],[-2.07635,54.840262],[-2.074226,54.840737],[-2.070097,54.843036],[-2.06851,54.843485],[-2.068045,54.844777],[-2.066003,54.844168],[-2.061526,54.844618],[-2.059252,54.845814],[-2.057249,54.846019],[-2.054866,54.847023],[-2.052925,54.847433],[-2.049637,54.847517],[-2.047718,54.847885],[-2.045275,54.847797],[-2.043479,54.84825],[-2.039657,54.848241],[-2.038227,54.849725],[-2.035972,54.851161],[-2.036001,54.852777],[-2.033046,54.854177],[-2.030223,54.8548],[-2.027514,54.856374],[-2.027353,54.857902],[-2.025184,54.85899],[-2.023137,54.858571],[-2.019031,54.862405],[-2.01683,54.862562],[-2.014458,54.863449],[-2.014177,54.863957],[-2.012075,54.864474],[-2.012383,54.865569],[-2.011769,54.866711],[-2.008923,54.867218],[-2.008303,54.867813],[-2.006001,54.868556],[-2.004236,54.86811],[-2.001419,54.868563],[-2.000048,54.869295],[-1.995362,54.870039],[-1.990364,54.870036],[-1.9882,54.869373],[-1.986447,54.868255],[-1.982788,54.868618],[-1.980237,54.868183],[-1.977772,54.866707],[-1.973456,54.865282],[-1.970693,54.863489],[-1.972226,54.862013],[-1.973201,54.86244],[-1.974508,54.861677],[-1.97279,54.861092],[-1.972465,54.860243],[-1.970822,54.860566],[-1.967833,54.859473],[-1.964202,54.859439],[-1.962775,54.85778],[-1.959412,54.856158],[-1.953841,54.855153],[-1.952444,54.854252],[-1.949342,54.852988],[-1.947432,54.85351],[-1.944348,54.852267],[-1.940423,54.852912],[-1.939137,54.851773],[-1.93577,54.851997],[-1.933014,54.85271],[-1.935108,54.853873],[-1.932734,54.854193],[-1.93129,54.853454],[-1.930669,54.851794],[-1.931815,54.850834],[-1.926167,54.84884],[-1.922633,54.84987],[-1.921377,54.848442],[-1.9218,54.845971],[-1.920634,54.844105],[-1.920987,54.842452],[-1.925593,54.842156],[-1.927134,54.841166],[-1.923967,54.840163],[-1.919885,54.840939],[-1.918113,54.840751],[-1.918366,54.83938],[-1.920869,54.838],[-1.920051,54.837427],[-1.917001,54.836761],[-1.917692,54.834916],[-1.915433,54.833963],[-1.913535,54.834044],[-1.913037,54.834832],[-1.913682,54.835769],[-1.91168,54.836033],[-1.911319,54.837475],[-1.914821,54.837922],[-1.914073,54.839503],[-1.913051,54.839811],[-1.910048,54.839359],[-1.908739,54.839493],[-1.907152,54.840312],[-1.906037,54.841449],[-1.9044,54.842171],[-1.899353,54.84292],[-1.898222,54.8441],[-1.898368,54.845162],[-1.895999,54.845835],[-1.894055,54.843676],[-1.889443,54.843989],[-1.887564,54.843604],[-1.884537,54.845769],[-1.881856,54.846816],[-1.881382,54.846591],[-1.87798,54.847146],[-1.877017,54.84811],[-1.87041,54.850673],[-1.869459,54.85188],[-1.869472,54.852822],[-1.866901,54.85388],[-1.866601,54.855386],[-1.867414,54.856907],[-1.868724,54.857677],[-1.870559,54.859556],[-1.869725,54.860304],[-1.869671,54.861558],[-1.866454,54.86407],[-1.864939,54.864386],[-1.861278,54.866431],[-1.859779,54.869205],[-1.860829,54.871145],[-1.859909,54.87271],[-1.860049,54.878034],[-1.857766,54.879353],[-1.853265,54.880205],[-1.85227,54.883089],[-1.852347,54.884255],[-1.850964,54.884689],[-1.851345,54.886331],[-1.85516,54.889042],[-1.855079,54.890291],[-1.854029,54.891319],[-1.848621,54.889767],[-1.847475,54.889782],[-1.845638,54.891044],[-1.844507,54.892698],[-1.845875,54.896075],[-1.845449,54.896903],[-1.843564,54.897242],[-1.839119,54.897314],[-1.834687,54.899026],[-1.830513,54.901599],[-1.827697,54.905494],[-1.825255,54.905793],[-1.821498,54.905433],[-1.820641,54.905778],[-1.822071,54.906096],[-1.823597,54.90801],[-1.826797,54.909607],[-1.82664,54.910094],[-1.831189,54.910622],[-1.833969,54.911569],[-1.836365,54.912077],[-1.839672,54.913147],[-1.842379,54.913331],[-1.844988,54.914214],[-1.8489,54.914478],[-1.850445,54.915202],[-1.851952,54.91745],[-1.851893,54.918751],[-1.848532,54.920935],[-1.846741,54.922715],[-1.844366,54.925902],[-1.843997,54.927045],[-1.841604,54.927991],[-1.841149,54.929725],[-1.833497,54.9305],[-1.827105,54.930202],[-1.827288,54.931213],[-1.825626,54.933668],[-1.826521,54.934193],[-1.827166,54.936569],[-1.825687,54.937594],[-1.824477,54.939392],[-1.825152,54.940956],[-1.827076,54.941669],[-1.8312,54.944856],[-1.829775,54.945837],[-1.829607,54.946694],[-1.831173,54.947804],[-1.832202,54.949134],[-1.832039,54.949731],[-1.833774,54.951243],[-1.832889,54.953316],[-1.831276,54.954743],[-1.828764,54.955393],[-1.827147,54.955257],[-1.825294,54.955691],[-1.824362,54.955131],[-1.822923,54.955747],[-1.822533,54.956496],[-1.824079,54.959206],[-1.822771,54.960357],[-1.824427,54.962441],[-1.823269,54.962819],[-1.822454,54.963838],[-1.822009,54.965638],[-1.820056,54.966376],[-1.819005,54.966154],[-1.81504,54.967927],[-1.815969,54.968851],[-1.81395,54.969327],[-1.812347,54.97108],[-1.812559,54.972011],[-1.811664,54.972738],[-1.813045,54.97471],[-1.812808,54.976286],[-1.807831,54.97749],[-1.803713,54.978118],[-1.80267,54.978762],[-1.799323,54.979822],[-1.7963,54.981685],[-1.792755,54.9833],[-1.788515,54.984267],[-1.784892,54.984255],[-1.782483,54.984445],[-1.774065,54.981816],[-1.769681,54.981373],[-1.772621,54.987613],[-1.774265,54.988392],[-1.775685,54.98963],[-1.775021,54.994976],[-1.773576,54.996158],[-1.774174,55.002703],[-1.773843,55.004139],[-1.759563,55.003019],[-1.756564,55.003263],[-1.756911,55.010375],[-1.756344,55.015944],[-1.751058,55.015614],[-1.750245,55.024021],[-1.742678,55.024079],[-1.740033,55.024581],[-1.740091,55.025508],[-1.739288,55.026834],[-1.737982,55.026983],[-1.739179,55.028376],[-1.739321,55.029595],[-1.735103,55.029558],[-1.732329,55.029998],[-1.731902,55.031689],[-1.728694,55.032227],[-1.726929,55.033165],[-1.724987,55.033149],[-1.721622,55.03364],[-1.721621,55.03407],[-1.714448,55.034024],[-1.716944,55.038626],[-1.711159,55.039489],[-1.711578,55.041239],[-1.70862,55.04135],[-1.707355,55.042081],[-1.703721,55.042303],[-1.700794,55.042906],[-1.700211,55.043626],[-1.695025,55.042915],[-1.693982,55.046114],[-1.695096,55.048646],[-1.694681,55.049455],[-1.695567,55.050646],[-1.696874,55.051225],[-1.698028,55.052395],[-1.710576,55.052793],[-1.713774,55.065463],[-1.704068,55.065847],[-1.704714,55.068612],[-1.70458,55.070929],[-1.701015,55.070866],[-1.700939,55.071218],[-1.696819,55.070845],[-1.696724,55.070532],[-1.691297,55.069701],[-1.690564,55.070418],[-1.69104,55.072719],[-1.685834,55.073488],[-1.679717,55.075042],[-1.661847,55.078412],[-1.647681,55.079389],[-1.645574,55.076831],[-1.641807,55.070751],[-1.639757,55.069166],[-1.637889,55.064769],[-1.636271,55.065206],[-1.633961,55.065121],[-1.632902,55.065902],[-1.631069,55.065138],[-1.621367,55.066452],[-1.61504,55.064691],[-1.611882,55.064223],[-1.610708,55.064428],[-1.607476,55.064263],[-1.605622,55.065114],[-1.603671,55.064746],[-1.60107,55.065128],[-1.599141,55.064276],[-1.595632,55.063625],[-1.594935,55.064087],[-1.592115,55.064225],[-1.589861,55.064027],[-1.588525,55.06341],[-1.584275,55.062435],[-1.581431,55.063006],[-1.57854,55.063081],[-1.577166,55.05926],[-1.576854,55.056606],[-1.57508,55.05562],[-1.572346,55.055837],[-1.57065,55.055244],[-1.566497,55.054559],[-1.559765,55.054478],[-1.556297,55.054157],[-1.550586,55.05607],[-1.547549,55.056671],[-1.54513,55.057872],[-1.542862,55.058427],[-1.541046,55.059809],[-1.540684,55.061184],[-1.53988,55.061583],[-1.532394,55.054126],[-1.526162,55.05395],[-1.526149,55.054514],[-1.51993,55.054771],[-1.515085,55.054128],[-1.515341,55.055029],[-1.510274,55.055052],[-1.508822,55.048039],[-1.504726,55.049259],[-1.502932,55.050343],[-1.502164,55.050242],[-1.49623,55.052107],[-1.492938,55.053828],[-1.49298,55.0544],[-1.490553,55.054452],[-1.487767,55.053587],[-1.487372,55.055868],[-1.492298,55.066014],[-1.488461,55.065571],[-1.486642,55.066042],[-1.483629,55.06616],[-1.482272,55.066975],[-1.479645,55.067209],[-1.477475,55.070329],[-1.474264,55.071325],[-1.474137,55.072357],[-1.470717,55.074486],[-1.467372,55.074935],[-1.466646,55.07441],[-1.464072,55.074629],[-1.461796,55.074317]]],[[[-2.085745,55.762745],[-2.071335,55.760988],[-2.066609,55.761224],[-2.054722,55.758243],[-2.045623,55.759175],[-2.049344,55.761177],[-2.044885,55.760069],[-2.040756,55.760584],[-2.038994,55.761292],[-2.037969,55.762284],[-2.036359,55.765853],[-2.036052,55.770192],[-2.033969,55.771315],[-2.027181,55.772437],[-2.02331,55.773874],[-2.018041,55.774625],[-2.014681,55.774513],[-2.011181,55.77254],[-2.004916,55.76754],[-2.004242,55.765481],[-2.001715,55.765581],[-1.998246,55.76714],[-1.992737,55.767594],[-1.991245,55.765877],[-1.99098,55.768005],[-1.993643,55.772148],[-1.993041,55.773749],[-1.996205,55.775496],[-1.99744,55.776745],[-1.996858,55.778182],[-1.994714,55.779669],[-1.99944,55.780566],[-2.001357,55.782481],[-1.999721,55.782961],[-1.999469,55.784774],[-1.999942,55.785965],[-2.004132,55.787504],[-2.004984,55.787446],[-2.00634,55.789344],[-2.008455,55.790624],[-2.010805,55.79064],[-2.01296,55.791773],[-2.01382,55.793061],[-2.016353,55.794012],[-2.016705,55.79539],[-2.019017,55.796753],[-2.020583,55.798746],[-2.024123,55.801877],[-2.025851,55.802683],[-2.028388,55.803003],[-2.031141,55.804184],[-2.031758,55.805446],[-2.029684,55.807402],[-2.031896,55.809634],[-2.034416,55.811115],[-2.041734,55.80781],[-2.041855,55.807282],[-2.045613,55.805322],[-2.052637,55.802511],[-2.055938,55.802924],[-2.060042,55.802577],[-2.062242,55.802733],[-2.064951,55.801836],[-2.067154,55.800247],[-2.067097,55.798514],[-2.072529,55.797075],[-2.076974,55.794117],[-2.079312,55.793707],[-2.081972,55.793887],[-2.084571,55.792876],[-2.086123,55.793045],[-2.088281,55.790213],[-2.088552,55.786766],[-2.088242,55.785589],[-2.086268,55.784085],[-2.085852,55.782573],[-2.086824,55.778099],[-2.086557,55.774955],[-2.087512,55.772179],[-2.087394,55.770801],[-2.085726,55.768059],[-2.085512,55.765972],[-2.086133,55.765331],[-2.085745,55.762745]]]]},"properties":{"LAD22CD":"E06000057","LAD22NM":"Northumberland","BNG_E":395322,"BNG_N":600700,"LONG":-2.07523,"LAT":55.30038,"GlobalID":"54bba6f3-55ea-48d2-8c90-e3ce124da8ea"},"id":54}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.000307,50.730328],[-2.002754,50.729659],[-2.003142,50.728628],[-2.002722,50.727447],[-2.001504,50.726765],[-1.999352,50.727294],[-1.999913,50.728269],[-2.002205,50.72888],[-2.00185,50.729641],[-2.000307,50.730328]]],[[[-1.998475,50.734428],[-2.00136,50.734503],[-2.002218,50.734236],[-2.003723,50.731209],[-2.00145,50.730829],[-1.999144,50.731672],[-1.99816,50.732874],[-1.998475,50.734428]]],[[[-1.771545,50.734962],[-1.772025,50.736487],[-1.773703,50.735275],[-1.773882,50.7347],[-1.772385,50.733677],[-1.771124,50.733652],[-1.771545,50.734962]]],[[[-1.803905,50.795965],[-1.80592,50.796246],[-1.807555,50.797792],[-1.811199,50.795749],[-1.813451,50.79606],[-1.816807,50.797619],[-1.819663,50.798206],[-1.83385,50.800042],[-1.837886,50.801868],[-1.840595,50.8044],[-1.842243,50.805431],[-1.845233,50.809606],[-1.856618,50.804886],[-1.857697,50.805816],[-1.861363,50.806781],[-1.864599,50.80662],[-1.86586,50.803085],[-1.864384,50.796987],[-1.865357,50.787747],[-1.865325,50.773922],[-1.868198,50.771969],[-1.871727,50.768183],[-1.872856,50.766009],[-1.872901,50.764805],[-1.874747,50.763876],[-1.874229,50.765613],[-1.877838,50.769731],[-1.880996,50.770651],[-1.882062,50.771771],[-1.885553,50.772397],[-1.887357,50.773554],[-1.887822,50.774772],[-1.886731,50.775774],[-1.890187,50.778181],[-1.892831,50.779265],[-1.893893,50.780091],[-1.89635,50.780295],[-1.898393,50.77921],[-1.898604,50.778472],[-1.900849,50.778717],[-1.901936,50.77769],[-1.905986,50.777367],[-1.907621,50.776647],[-1.908907,50.775438],[-1.91079,50.775133],[-1.912732,50.775429],[-1.913145,50.773971],[-1.915036,50.773424],[-1.916983,50.774632],[-1.918688,50.773568],[-1.919977,50.773876],[-1.919187,50.775189],[-1.921595,50.776226],[-1.920916,50.777836],[-1.918894,50.779357],[-1.918612,50.780618],[-1.9197,50.7825],[-1.919133,50.783609],[-1.920926,50.783983],[-1.922403,50.783347],[-1.924235,50.783296],[-1.925511,50.781564],[-1.926999,50.780798],[-1.932065,50.780027],[-1.935052,50.782024],[-1.936999,50.782672],[-1.937501,50.783566],[-1.936973,50.785289],[-1.939024,50.786535],[-1.937439,50.787505],[-1.93633,50.788945],[-1.935203,50.794101],[-1.936161,50.797209],[-1.937991,50.798353],[-1.940878,50.798809],[-1.941614,50.798221],[-1.942405,50.796452],[-1.945415,50.794848],[-1.950739,50.79067],[-1.955193,50.790337],[-1.958327,50.789294],[-1.963854,50.790807],[-1.966136,50.790815],[-1.968994,50.79239],[-1.978363,50.792507],[-1.979072,50.791437],[-1.98017,50.790931],[-1.98143,50.791762],[-1.983625,50.790943],[-1.984832,50.791456],[-1.988239,50.790886],[-1.991096,50.791406],[-1.991568,50.79107],[-1.993991,50.792362],[-1.997166,50.792839],[-2.005875,50.790926],[-2.004867,50.790203],[-1.999566,50.789605],[-1.999133,50.788128],[-2.000467,50.785348],[-2.001199,50.784809],[-2.006075,50.782768],[-2.007961,50.78242],[-2.009321,50.782589],[-2.010257,50.773788],[-2.012706,50.748501],[-2.013529,50.737054],[-2.01624,50.736695],[-2.016615,50.736335],[-2.022522,50.736566],[-2.02219,50.73485],[-2.024679,50.729401],[-2.027464,50.729282],[-2.028094,50.728343],[-2.032425,50.727098],[-2.034038,50.725967],[-2.036793,50.726009],[-2.036788,50.725006],[-2.035212,50.723519],[-2.035014,50.722581],[-2.036368,50.721463],[-2.039242,50.720302],[-2.039764,50.718852],[-2.036917,50.717157],[-2.0297,50.715198],[-2.027367,50.715057],[-2.024961,50.713643],[-2.023928,50.713547],[-2.021733,50.71262],[-2.018023,50.711819],[-2.016952,50.711215],[-2.012483,50.710365],[-2.008131,50.710383],[-2.004713,50.70981],[-2.002004,50.710864],[-2.000176,50.711008],[-1.999207,50.710239],[-1.99723,50.709902],[-1.997248,50.708467],[-1.994829,50.707373],[-1.988707,50.707437],[-1.989041,50.708505],[-1.986375,50.709039],[-1.98648,50.710472],[-1.987118,50.711159],[-1.991407,50.711756],[-1.993193,50.712231],[-1.994469,50.713159],[-1.995,50.714149],[-1.993694,50.715835],[-1.994048,50.716789],[-1.995303,50.717345],[-1.998839,50.718127],[-2.000606,50.718223],[-2.003153,50.717745],[-2.00351,50.718718],[-2.005698,50.719008],[-2.00607,50.720787],[-2.00354,50.720908],[-2.003086,50.722354],[-2.005826,50.722961],[-2.008363,50.724387],[-2.008431,50.725534],[-2.007414,50.726089],[-2.007582,50.726922],[-2.009436,50.727779],[-2.010978,50.72952],[-2.010538,50.731972],[-2.009013,50.732277],[-2.008752,50.733176],[-2.006953,50.733802],[-2.007195,50.734843],[-2.005227,50.734524],[-2.002477,50.734796],[-2.00169,50.735205],[-1.999665,50.734963],[-1.997084,50.735382],[-1.994366,50.734713],[-1.992407,50.733494],[-1.991568,50.731635],[-1.992101,50.730803],[-1.992522,50.723944],[-1.990973,50.722637],[-1.987327,50.722096],[-1.984934,50.720737],[-1.984351,50.719164],[-1.986408,50.719439],[-1.9896,50.718834],[-1.989185,50.717938],[-1.99289,50.71422],[-1.992969,50.713408],[-1.991896,50.712544],[-1.98999,50.712129],[-1.982066,50.711682],[-1.976857,50.711859],[-1.972844,50.710526],[-1.969149,50.71225],[-1.966485,50.71533],[-1.963085,50.715728],[-1.958336,50.715632],[-1.956606,50.71425],[-1.956829,50.713548],[-1.959897,50.713049],[-1.960491,50.712044],[-1.953446,50.708117],[-1.953986,50.709227],[-1.953637,50.710905],[-1.95301,50.711617],[-1.951185,50.711922],[-1.949194,50.711149],[-1.948018,50.708791],[-1.95089,50.706234],[-1.948019,50.70673],[-1.94687,50.706355],[-1.945784,50.704824],[-1.940755,50.701078],[-1.936275,50.700582],[-1.933997,50.699147],[-1.9317,50.695011],[-1.933053,50.692891],[-1.93869,50.69012],[-1.940513,50.688785],[-1.946244,50.688235],[-1.947094,50.688583],[-1.949029,50.687867],[-1.950971,50.686645],[-1.951745,50.685312],[-1.948829,50.683347],[-1.947004,50.682674],[-1.945443,50.683439],[-1.941226,50.684675],[-1.941157,50.685305],[-1.938755,50.686709],[-1.937191,50.688301],[-1.935642,50.689096],[-1.933579,50.691426],[-1.923057,50.698752],[-1.913046,50.704296],[-1.905997,50.706777],[-1.90574,50.707195],[-1.902054,50.708323],[-1.899811,50.709498],[-1.890461,50.712438],[-1.879165,50.71482],[-1.865132,50.717248],[-1.855254,50.718046],[-1.84773,50.719137],[-1.843816,50.719432],[-1.816285,50.720589],[-1.802489,50.719915],[-1.793711,50.718778],[-1.780189,50.717667],[-1.767007,50.716205],[-1.754196,50.713361],[-1.748921,50.711663],[-1.748773,50.712364],[-1.745127,50.714075],[-1.745063,50.715078],[-1.742119,50.718493],[-1.739482,50.724435],[-1.74279,50.722273],[-1.742874,50.72016],[-1.743832,50.718504],[-1.74465,50.717973],[-1.749363,50.71803],[-1.751615,50.718605],[-1.753831,50.718325],[-1.756376,50.718451],[-1.759323,50.717689],[-1.761379,50.718043],[-1.762925,50.719049],[-1.763523,50.720711],[-1.766919,50.72186],[-1.768361,50.723698],[-1.768695,50.724981],[-1.767752,50.725275],[-1.768129,50.726323],[-1.769456,50.727259],[-1.772282,50.728209],[-1.773908,50.72968],[-1.776251,50.729938],[-1.779147,50.72896],[-1.780444,50.72887],[-1.781682,50.729612],[-1.784135,50.729986],[-1.786874,50.729217],[-1.789646,50.729421],[-1.789282,50.730101],[-1.787093,50.729649],[-1.786037,50.730405],[-1.783288,50.730461],[-1.779871,50.729852],[-1.77626,50.730731],[-1.773856,50.730241],[-1.770369,50.730359],[-1.770002,50.730758],[-1.773087,50.733138],[-1.774137,50.734818],[-1.772466,50.736951],[-1.771468,50.736645],[-1.770513,50.734857],[-1.769863,50.732823],[-1.769227,50.732515],[-1.76928,50.730337],[-1.771359,50.729864],[-1.771099,50.728232],[-1.768878,50.727743],[-1.767325,50.728583],[-1.766082,50.728458],[-1.766417,50.726217],[-1.766252,50.724802],[-1.764009,50.723375],[-1.761807,50.723096],[-1.759168,50.723987],[-1.759165,50.725253],[-1.756479,50.72735],[-1.757945,50.728462],[-1.756977,50.730392],[-1.755316,50.729401],[-1.753685,50.726984],[-1.750609,50.725845],[-1.745781,50.727062],[-1.74552,50.727933],[-1.741536,50.727063],[-1.740829,50.726367],[-1.741841,50.725542],[-1.742591,50.724203],[-1.742339,50.723525],[-1.739285,50.725481],[-1.735778,50.726994],[-1.734016,50.728994],[-1.729406,50.732115],[-1.725657,50.733635],[-1.722123,50.734535],[-1.715695,50.735566],[-1.707515,50.736457],[-1.697901,50.736357],[-1.696663,50.736823],[-1.694471,50.736697],[-1.692497,50.7373],[-1.692536,50.737398],[-1.691978,50.739412],[-1.690821,50.740604],[-1.684636,50.743822],[-1.682806,50.746611],[-1.681675,50.750151],[-1.681819,50.751848],[-1.690614,50.751606],[-1.703921,50.752562],[-1.712704,50.752495],[-1.714985,50.752026],[-1.71797,50.75217],[-1.727035,50.751015],[-1.744169,50.747455],[-1.742333,50.749249],[-1.743574,50.750008],[-1.743597,50.752715],[-1.744354,50.753608],[-1.744656,50.756073],[-1.742016,50.756668],[-1.741414,50.758687],[-1.741684,50.760339],[-1.740118,50.760964],[-1.739877,50.762773],[-1.73896,50.763271],[-1.73968,50.765348],[-1.741241,50.767207],[-1.744786,50.773117],[-1.746387,50.773404],[-1.74829,50.775141],[-1.74569,50.776256],[-1.749059,50.77951],[-1.752077,50.778846],[-1.756558,50.77842],[-1.767576,50.772912],[-1.768021,50.773305],[-1.770118,50.772549],[-1.769936,50.771316],[-1.768882,50.769783],[-1.773162,50.76819],[-1.7756,50.766992],[-1.776065,50.766353],[-1.779048,50.767366],[-1.781277,50.766669],[-1.782254,50.765021],[-1.783425,50.764649],[-1.78501,50.764951],[-1.788277,50.766869],[-1.788834,50.767833],[-1.787243,50.770491],[-1.789558,50.769947],[-1.7905,50.771658],[-1.789543,50.772233],[-1.788166,50.77449],[-1.789957,50.774559],[-1.790749,50.776213],[-1.788729,50.776943],[-1.787868,50.778855],[-1.790981,50.780332],[-1.792124,50.782666],[-1.794345,50.782209],[-1.795716,50.783358],[-1.797523,50.783836],[-1.797321,50.78452],[-1.795836,50.785455],[-1.796215,50.786354],[-1.798588,50.785853],[-1.800804,50.787421],[-1.802616,50.790809],[-1.801255,50.791117],[-1.800965,50.791885],[-1.804266,50.791371],[-1.805967,50.792021],[-1.805605,50.792525],[-1.803513,50.791946],[-1.803564,50.792964],[-1.800868,50.794118],[-1.801445,50.794616],[-1.803957,50.794818],[-1.803905,50.795965]]]]},"properties":{"LAD22CD":"E06000058","LAD22NM":"Bournemouth, Christchurch and Poole","BNG_E":410815,"BNG_N":94066,"LONG":-1.84807,"LAT":50.74609,"GlobalID":"15ac45a0-7e2a-4202-b7a0-bd12b67d4232"},"id":55}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.431239,50.571629],[-2.437611,50.570011],[-2.433826,50.57005],[-2.431239,50.571629]]],[[[-1.995401,50.680944],[-1.995175,50.678872],[-1.993985,50.677741],[-1.991557,50.677769],[-1.990052,50.678427],[-1.990722,50.680752],[-1.994381,50.680684],[-1.995401,50.680944]]],[[[-1.98101,50.68363],[-1.981199,50.684666],[-1.982672,50.684234],[-1.988607,50.684098],[-1.989492,50.683543],[-1.989643,50.682505],[-1.988256,50.681795],[-1.985697,50.682116],[-1.982901,50.681969],[-1.981004,50.682936],[-1.98101,50.68363]]],[[[-2.024835,50.692037],[-2.026219,50.691554],[-2.025724,50.689805],[-2.024183,50.69079],[-2.024835,50.692037]]],[[[-2.019331,50.694066],[-2.021026,50.693396],[-2.019132,50.690976],[-2.0194,50.688993],[-2.020292,50.688007],[-2.018133,50.684745],[-2.017532,50.68456],[-2.01454,50.68536],[-2.01402,50.687217],[-2.014283,50.688042],[-2.01659,50.689206],[-2.015577,50.689953],[-2.015554,50.691338],[-2.017334,50.691886],[-2.018616,50.693775],[-2.019331,50.694066]]],[[[-1.969776,50.695698],[-1.97463,50.697394],[-1.979307,50.696544],[-1.983789,50.694641],[-1.985444,50.694723],[-1.987256,50.692689],[-1.988038,50.69245],[-1.985057,50.688378],[-1.983523,50.687079],[-1.975369,50.68729],[-1.9689,50.686253],[-1.961585,50.686282],[-1.960415,50.686532],[-1.956174,50.688863],[-1.955901,50.690912],[-1.95624,50.691963],[-1.958361,50.695044],[-1.960958,50.695243],[-1.965261,50.694823],[-1.969776,50.695698]]],[[[-2.028751,50.698308],[-2.030711,50.69875],[-2.030939,50.697298],[-2.029542,50.697193],[-2.028751,50.698308]]],[[[-1.956825,50.989832],[-1.962637,50.991853],[-1.965358,50.992037],[-1.968056,50.990572],[-1.971989,50.989523],[-1.972979,50.987533],[-1.975248,50.98691],[-1.977372,50.985769],[-1.979473,50.985574],[-1.980422,50.984921],[-1.983382,50.984434],[-1.98521,50.984756],[-1.985886,50.983268],[-1.9869,50.982375],[-1.989791,50.98156],[-1.989229,50.978861],[-1.990286,50.978504],[-1.99122,50.977144],[-1.994036,50.975728],[-1.999049,50.975265],[-2.000668,50.974781],[-2.00498,50.974633],[-2.007061,50.975448],[-2.00972,50.975258],[-2.0123,50.974166],[-2.014011,50.973889],[-2.014872,50.973149],[-2.01742,50.972158],[-2.02028,50.972227],[-2.021949,50.972615],[-2.023724,50.972511],[-2.028967,50.971179],[-2.032854,50.971852],[-2.034454,50.972425],[-2.037208,50.97197],[-2.041226,50.968068],[-2.051078,50.966152],[-2.05332,50.966234],[-2.058328,50.963643],[-2.059405,50.962813],[-2.058427,50.96134],[-2.059318,50.959789],[-2.062373,50.959887],[-2.062532,50.959061],[-2.064273,50.957185],[-2.064862,50.953962],[-2.068313,50.951194],[-2.082864,50.951338],[-2.083884,50.950968],[-2.08527,50.949245],[-2.08737,50.949951],[-2.089219,50.950156],[-2.090916,50.949508],[-2.094146,50.949135],[-2.100254,50.94507],[-2.101792,50.944985],[-2.102861,50.945608],[-2.102655,50.94657],[-2.103959,50.948917],[-2.105557,50.950009],[-2.110521,50.955489],[-2.112464,50.95657],[-2.115642,50.957503],[-2.119462,50.95968],[-2.120671,50.961539],[-2.121523,50.964015],[-2.120879,50.965715],[-2.120652,50.969408],[-2.123157,50.969468],[-2.122974,50.971874],[-2.122455,50.973758],[-2.119765,50.978191],[-2.121967,50.978168],[-2.122344,50.978604],[-2.126854,50.978739],[-2.131692,50.979771],[-2.138397,50.982287],[-2.143577,50.984965],[-2.148147,50.986278],[-2.152523,50.989158],[-2.159638,50.992782],[-2.161842,50.993475],[-2.161527,50.994129],[-2.163614,50.994412],[-2.163583,50.996167],[-2.164436,50.996085],[-2.167082,50.998083],[-2.169306,51.000661],[-2.172566,51.001073],[-2.17297,51.002155],[-2.176088,51.005403],[-2.176415,51.006658],[-2.178101,51.008261],[-2.176324,51.01152],[-2.176388,51.012818],[-2.178761,51.014133],[-2.185177,51.015775],[-2.183822,51.017482],[-2.185992,51.018152],[-2.188604,51.018532],[-2.188837,51.02527],[-2.190138,51.026552],[-2.190289,51.028506],[-2.18934,51.029496],[-2.189183,51.030522],[-2.190549,51.032121],[-2.191996,51.036247],[-2.195171,51.039658],[-2.198125,51.041654],[-2.201532,51.042768],[-2.201435,51.043249],[-2.205323,51.042794],[-2.207217,51.045814],[-2.210615,51.047182],[-2.21244,51.050112],[-2.215114,51.051737],[-2.217072,51.053611],[-2.217994,51.055178],[-2.223269,51.056562],[-2.225808,51.057582],[-2.227779,51.060304],[-2.228892,51.060785],[-2.236839,51.066729],[-2.238826,51.067874],[-2.240165,51.069906],[-2.244696,51.072311],[-2.247646,51.072206],[-2.25131,51.070837],[-2.26862,51.068741],[-2.283113,51.075146],[-2.291269,51.077075],[-2.293266,51.076939],[-2.298681,51.078487],[-2.300212,51.078546],[-2.30335,51.079262],[-2.306434,51.079557],[-2.309472,51.079151],[-2.31088,51.080262],[-2.3133,51.079884],[-2.316806,51.079843],[-2.320546,51.080991],[-2.325853,51.079676],[-2.326533,51.07891],[-2.328472,51.078016],[-2.329957,51.076712],[-2.334372,51.075262],[-2.337743,51.074604],[-2.342184,51.075018],[-2.34367,51.07464],[-2.347087,51.072685],[-2.347639,51.071801],[-2.349117,51.070727],[-2.349978,51.068801],[-2.349403,51.066314],[-2.349457,51.064118],[-2.349939,51.063658],[-2.349256,51.061243],[-2.346509,51.058579],[-2.344482,51.05548],[-2.342195,51.056068],[-2.340109,51.056063],[-2.33317,51.051479],[-2.332538,51.049525],[-2.333314,51.046738],[-2.331448,51.044375],[-2.330367,51.043795],[-2.32963,51.042192],[-2.330015,51.041345],[-2.332308,51.03971],[-2.335419,51.039611],[-2.337728,51.036993],[-2.338921,51.036913],[-2.341536,51.035481],[-2.342755,51.035221],[-2.34341,51.033359],[-2.344254,51.032519],[-2.347292,51.031814],[-2.347528,51.031247],[-2.349346,51.030505],[-2.35182,51.028655],[-2.360674,51.025175],[-2.360459,51.023408],[-2.361564,51.023018],[-2.363478,51.019986],[-2.367249,51.017779],[-2.369097,51.015925],[-2.369147,51.014276],[-2.371162,51.01346],[-2.378047,51.011714],[-2.378158,51.011115],[-2.375914,51.01085],[-2.376473,51.009202],[-2.379549,51.006527],[-2.379688,51.005217],[-2.381349,51.004922],[-2.381756,51.001946],[-2.38091,51.001185],[-2.380946,50.996711],[-2.378877,50.994776],[-2.377841,50.992671],[-2.37776,50.991413],[-2.374632,50.990457],[-2.372297,50.99048],[-2.370607,50.991752],[-2.368684,50.991758],[-2.367542,50.991248],[-2.365998,50.991431],[-2.364874,50.990419],[-2.361236,50.991266],[-2.35495,50.990897],[-2.354842,50.990224],[-2.352692,50.989927],[-2.351483,50.987878],[-2.350385,50.988117],[-2.346983,50.985262],[-2.345851,50.984733],[-2.344021,50.984839],[-2.344631,50.983493],[-2.343876,50.982295],[-2.344931,50.98032],[-2.344135,50.979756],[-2.344557,50.978829],[-2.345916,50.979041],[-2.351183,50.978582],[-2.353207,50.977884],[-2.358262,50.977418],[-2.362557,50.976564],[-2.365565,50.975501],[-2.374783,50.973226],[-2.381073,50.972811],[-2.383542,50.972359],[-2.392738,50.969242],[-2.397037,50.968402],[-2.403139,50.965174],[-2.414928,50.960583],[-2.416213,50.961657],[-2.418347,50.962328],[-2.419442,50.963646],[-2.419597,50.965169],[-2.421344,50.967165],[-2.424949,50.97027],[-2.427992,50.971387],[-2.431138,50.970677],[-2.431767,50.971337],[-2.433894,50.970228],[-2.436662,50.969332],[-2.441361,50.968395],[-2.441453,50.968643],[-2.447178,50.96785],[-2.44485,50.963986],[-2.444757,50.963061],[-2.442271,50.962523],[-2.443666,50.961248],[-2.442376,50.960796],[-2.443478,50.958463],[-2.444755,50.958082],[-2.445735,50.955851],[-2.448605,50.952913],[-2.452486,50.950274],[-2.455365,50.949267],[-2.458664,50.949747],[-2.460421,50.951129],[-2.457906,50.952788],[-2.45903,50.953522],[-2.458644,50.954288],[-2.461446,50.95631],[-2.463809,50.955346],[-2.466818,50.959811],[-2.470242,50.959151],[-2.473026,50.95803],[-2.474742,50.957952],[-2.475453,50.960002],[-2.476416,50.960764],[-2.474578,50.962508],[-2.475921,50.963586],[-2.480195,50.965865],[-2.485087,50.971143],[-2.48778,50.973113],[-2.490345,50.972772],[-2.490484,50.974164],[-2.488218,50.974452],[-2.488333,50.975756],[-2.492141,50.978517],[-2.497176,50.987353],[-2.502281,50.993798],[-2.508534,50.994658],[-2.512812,50.993984],[-2.516192,50.994508],[-2.518141,50.993335],[-2.520102,50.99401],[-2.523516,50.99225],[-2.526531,50.991925],[-2.526467,50.992597],[-2.529363,50.992642],[-2.535562,50.994022],[-2.535855,50.996856],[-2.535167,50.999373],[-2.547435,50.999542],[-2.546922,50.997252],[-2.547292,50.996418],[-2.548536,50.995986],[-2.55149,50.996345],[-2.551925,50.993698],[-2.547376,50.99221],[-2.544725,50.991666],[-2.545428,50.989808],[-2.545424,50.98508],[-2.548092,50.984852],[-2.550218,50.983802],[-2.553333,50.982827],[-2.555129,50.981423],[-2.556207,50.979535],[-2.560102,50.978695],[-2.562372,50.977711],[-2.569105,50.98537],[-2.574631,50.986694],[-2.57435,50.985093],[-2.574939,50.983318],[-2.576875,50.982306],[-2.578336,50.982151],[-2.580824,50.981347],[-2.583181,50.978864],[-2.584257,50.978891],[-2.586728,50.977805],[-2.586024,50.976869],[-2.589292,50.97692],[-2.59155,50.978761],[-2.595845,50.98134],[-2.60114,50.978012],[-2.603418,50.976283],[-2.60198,50.974935],[-2.598977,50.97455],[-2.598058,50.973613],[-2.598961,50.972618],[-2.59853,50.971577],[-2.599583,50.970761],[-2.599883,50.967402],[-2.597257,50.965747],[-2.597356,50.964814],[-2.595998,50.964622],[-2.59491,50.962228],[-2.595416,50.960892],[-2.596634,50.961209],[-2.598123,50.960568],[-2.598732,50.958567],[-2.598149,50.957751],[-2.599555,50.954352],[-2.598556,50.953013],[-2.598659,50.950594],[-2.597989,50.950159],[-2.599204,50.949259],[-2.5982,50.948574],[-2.599263,50.947656],[-2.601633,50.947431],[-2.601753,50.9468],[-2.604473,50.94597],[-2.605575,50.945332],[-2.606751,50.945893],[-2.607504,50.945137],[-2.607285,50.944073],[-2.608591,50.943695],[-2.608847,50.942008],[-2.612086,50.940069],[-2.613972,50.940308],[-2.614052,50.941361],[-2.615733,50.941205],[-2.615859,50.939593],[-2.614597,50.93815],[-2.612785,50.937255],[-2.607861,50.935626],[-2.606268,50.934674],[-2.604629,50.932557],[-2.604033,50.930976],[-2.604473,50.927725],[-2.6052,50.9266],[-2.606594,50.925831],[-2.609781,50.925301],[-2.613409,50.923553],[-2.614805,50.923257],[-2.615189,50.922435],[-2.614531,50.921135],[-2.616046,50.919242],[-2.615305,50.917646],[-2.615626,50.916653],[-2.616994,50.915672],[-2.617336,50.912361],[-2.620024,50.911492],[-2.620434,50.91002],[-2.622098,50.910108],[-2.6224,50.908754],[-2.624028,50.907992],[-2.621793,50.905121],[-2.619909,50.904642],[-2.618872,50.90325],[-2.619662,50.902339],[-2.618698,50.901361],[-2.617633,50.901556],[-2.617521,50.90008],[-2.616205,50.899493],[-2.615528,50.897269],[-2.616382,50.896747],[-2.614535,50.893759],[-2.614846,50.893279],[-2.61256,50.892188],[-2.610301,50.892358],[-2.609438,50.890905],[-2.610365,50.890158],[-2.610153,50.888937],[-2.611611,50.88651],[-2.612319,50.884791],[-2.614505,50.883709],[-2.616101,50.881634],[-2.617895,50.880999],[-2.620522,50.881263],[-2.623007,50.880322],[-2.62413,50.879259],[-2.627181,50.879895],[-2.627961,50.886306],[-2.630788,50.885802],[-2.6376,50.886958],[-2.640768,50.886976],[-2.642513,50.886702],[-2.643025,50.887238],[-2.647105,50.888352],[-2.646153,50.887376],[-2.64736,50.885407],[-2.646835,50.884153],[-2.649577,50.884134],[-2.65042,50.883308],[-2.658427,50.886604],[-2.660612,50.887105],[-2.661413,50.886366],[-2.664459,50.885097],[-2.666318,50.883572],[-2.668862,50.882445],[-2.671793,50.880582],[-2.678966,50.87748],[-2.680565,50.877123],[-2.684629,50.877002],[-2.695727,50.875991],[-2.696504,50.875479],[-2.695685,50.874681],[-2.697135,50.873478],[-2.699578,50.872823],[-2.702903,50.873268],[-2.704204,50.872518],[-2.707145,50.869766],[-2.711211,50.87006],[-2.711761,50.870897],[-2.71439,50.871144],[-2.713809,50.866328],[-2.714421,50.865467],[-2.714556,50.863894],[-2.717997,50.864025],[-2.721386,50.864931],[-2.723092,50.866191],[-2.72499,50.865406],[-2.729912,50.864704],[-2.733146,50.864957],[-2.737066,50.864233],[-2.73824,50.864672],[-2.750937,50.863838],[-2.753365,50.864142],[-2.754335,50.864677],[-2.755162,50.866397],[-2.757499,50.866903],[-2.759917,50.865981],[-2.760957,50.863183],[-2.760969,50.861291],[-2.761688,50.8608],[-2.767397,50.860698],[-2.771699,50.860268],[-2.775413,50.860683],[-2.780062,50.860319],[-2.782286,50.859697],[-2.784081,50.856839],[-2.7862,50.854513],[-2.787538,50.853751],[-2.792528,50.852857],[-2.793721,50.853398],[-2.795075,50.854654],[-2.799053,50.855449],[-2.802904,50.857242],[-2.807842,50.858679],[-2.807052,50.858936],[-2.80559,50.861893],[-2.807664,50.862771],[-2.808069,50.863631],[-2.810152,50.862568],[-2.811508,50.863354],[-2.812937,50.862108],[-2.812375,50.861234],[-2.816104,50.85685],[-2.820385,50.853984],[-2.822166,50.853464],[-2.823142,50.852491],[-2.82442,50.852059],[-2.825777,50.850884],[-2.827083,50.850627],[-2.828958,50.8517],[-2.829377,50.8506],[-2.828582,50.848745],[-2.829641,50.848557],[-2.831445,50.849397],[-2.837158,50.848755],[-2.838848,50.84806],[-2.842846,50.847346],[-2.84316,50.848773],[-2.845196,50.851594],[-2.850691,50.850758],[-2.852577,50.849371],[-2.854974,50.849597],[-2.857999,50.850407],[-2.860326,50.849777],[-2.861927,50.848957],[-2.864369,50.848493],[-2.866729,50.84929],[-2.869603,50.848885],[-2.871169,50.848249],[-2.873361,50.849467],[-2.874323,50.848881],[-2.876259,50.849252],[-2.878893,50.848364],[-2.877876,50.847462],[-2.879055,50.846449],[-2.880583,50.846724],[-2.880857,50.847955],[-2.882866,50.848332],[-2.882604,50.849268],[-2.884887,50.849682],[-2.886244,50.85059],[-2.890093,50.849654],[-2.890314,50.849032],[-2.892471,50.848371],[-2.892459,50.847745],[-2.894345,50.847298],[-2.89501,50.846695],[-2.897344,50.847543],[-2.898515,50.8468],[-2.901035,50.846578],[-2.90308,50.843792],[-2.906472,50.843711],[-2.910223,50.844793],[-2.912127,50.844103],[-2.913261,50.842442],[-2.914257,50.842007],[-2.916493,50.841773],[-2.919243,50.841822],[-2.920747,50.840614],[-2.922349,50.840072],[-2.928622,50.839863],[-2.930071,50.840959],[-2.930269,50.839111],[-2.932832,50.838804],[-2.93249,50.838191],[-2.934554,50.837648],[-2.934382,50.836474],[-2.938026,50.835128],[-2.939716,50.836412],[-2.941683,50.835896],[-2.943019,50.834791],[-2.94426,50.833234],[-2.944644,50.832026],[-2.943874,50.830202],[-2.944099,50.82917],[-2.946032,50.828839],[-2.946131,50.826155],[-2.947323,50.826045],[-2.948039,50.825294],[-2.947369,50.823691],[-2.94944,50.822468],[-2.951483,50.82288],[-2.952974,50.822298],[-2.954321,50.821172],[-2.955509,50.820183],[-2.956837,50.820491],[-2.958171,50.819987],[-2.958626,50.817759],[-2.959989,50.816397],[-2.958324,50.815809],[-2.956614,50.815857],[-2.952733,50.815065],[-2.950916,50.814985],[-2.947961,50.815426],[-2.944122,50.813399],[-2.942589,50.811936],[-2.941506,50.811725],[-2.938402,50.809835],[-2.936736,50.810081],[-2.934462,50.809182],[-2.929779,50.809072],[-2.928957,50.808424],[-2.924899,50.808291],[-2.922722,50.807594],[-2.921916,50.806914],[-2.920171,50.806676],[-2.918557,50.805631],[-2.917615,50.805919],[-2.915307,50.805293],[-2.912086,50.805246],[-2.911296,50.804624],[-2.907349,50.804672],[-2.905433,50.805267],[-2.902609,50.804618],[-2.89981,50.80517],[-2.897189,50.804523],[-2.895719,50.804949],[-2.892868,50.804794],[-2.89156,50.803776],[-2.89023,50.803449],[-2.890416,50.802566],[-2.889809,50.800679],[-2.888755,50.799721],[-2.888814,50.798406],[-2.887029,50.796178],[-2.886684,50.794703],[-2.889315,50.793926],[-2.887762,50.793441],[-2.88704,50.792523],[-2.89058,50.790517],[-2.893745,50.789859],[-2.895639,50.787539],[-2.897457,50.78614],[-2.913556,50.78449],[-2.918728,50.783624],[-2.929653,50.782432],[-2.932717,50.781483],[-2.940955,50.777451],[-2.948899,50.772025],[-2.954334,50.76771],[-2.955946,50.764971],[-2.956039,50.763642],[-2.95306,50.762171],[-2.952591,50.761382],[-2.949613,50.760918],[-2.939423,50.757112],[-2.935063,50.754266],[-2.936512,50.752993],[-2.939683,50.751839],[-2.940573,50.749893],[-2.940586,50.748637],[-2.938249,50.745965],[-2.937863,50.744097],[-2.940634,50.742703],[-2.945655,50.737819],[-2.946585,50.737293],[-2.946619,50.735846],[-2.947779,50.73378],[-2.949602,50.732347],[-2.953068,50.728497],[-2.952603,50.724594],[-2.948733,50.721263],[-2.948705,50.719774],[-2.947497,50.718274],[-2.939841,50.719545],[-2.937677,50.72125],[-2.937481,50.722354],[-2.93543,50.723412],[-2.932902,50.724019],[-2.930953,50.724971],[-2.929224,50.726945],[-2.928276,50.728617],[-2.921532,50.731433],[-2.913913,50.732793],[-2.911754,50.733784],[-2.894441,50.732791],[-2.879948,50.730762],[-2.862763,50.727677],[-2.846835,50.723813],[-2.839268,50.722995],[-2.836567,50.723894],[-2.828299,50.722802],[-2.818365,50.720582],[-2.812441,50.718033],[-2.810361,50.717869],[-2.805114,50.718952],[-2.801684,50.717945],[-2.798937,50.717657],[-2.795004,50.71823],[-2.79371,50.718169],[-2.780261,50.715035],[-2.772426,50.712721],[-2.770772,50.711797],[-2.765451,50.710648],[-2.762995,50.710993],[-2.763877,50.709268],[-2.762675,50.709429],[-2.760296,50.708826],[-2.739673,50.702515],[-2.735019,50.700302],[-2.730901,50.698785],[-2.724507,50.696839],[-2.678443,50.68028],[-2.640448,50.665242],[-2.628953,50.660401],[-2.600556,50.647505],[-2.571317,50.633141],[-2.544628,50.619295],[-2.534658,50.613787],[-2.531224,50.61199],[-2.525351,50.608643],[-2.517388,50.604239],[-2.504031,50.596532],[-2.492773,50.589905],[-2.468992,50.574463],[-2.45402,50.564015],[-2.449224,50.560132],[-2.448236,50.55857],[-2.447984,50.557196],[-2.449819,50.555484],[-2.451385,50.552471],[-2.452207,50.551725],[-2.451655,50.549427],[-2.452081,50.547518],[-2.452681,50.546589],[-2.45524,50.544528],[-2.456425,50.542427],[-2.456145,50.541434],[-2.454403,50.540316],[-2.453661,50.538858],[-2.454403,50.537475],[-2.454531,50.535883],[-2.45604,50.531313],[-2.45546,50.525738],[-2.456665,50.523773],[-2.457811,50.523019],[-2.458882,50.521557],[-2.4599,50.519326],[-2.460113,50.516563],[-2.459443,50.51628],[-2.459323,50.514206],[-2.456603,50.513111],[-2.455079,50.514686],[-2.452997,50.515283],[-2.452573,50.516197],[-2.450725,50.516575],[-2.448891,50.518001],[-2.444053,50.519759],[-2.442644,50.520559],[-2.44231,50.522435],[-2.441526,50.523579],[-2.43939,50.524817],[-2.437958,50.526423],[-2.437519,50.52952],[-2.43706,50.530344],[-2.433373,50.53272],[-2.429653,50.535837],[-2.428333,50.537909],[-2.425154,50.538612],[-2.420165,50.541201],[-2.418176,50.542905],[-2.417618,50.547146],[-2.417224,50.548189],[-2.415688,50.549136],[-2.41581,50.551071],[-2.41719,50.552287],[-2.418094,50.554208],[-2.419304,50.555102],[-2.421529,50.558301],[-2.421368,50.559129],[-2.42501,50.563375],[-2.428632,50.566239],[-2.428544,50.567745],[-2.430707,50.567642],[-2.434969,50.568162],[-2.437405,50.568297],[-2.437446,50.568895],[-2.440895,50.570025],[-2.441178,50.568772],[-2.447147,50.568401],[-2.451053,50.569861],[-2.451311,50.570531],[-2.452971,50.57121],[-2.453517,50.570499],[-2.456022,50.571663],[-2.457654,50.571045],[-2.460504,50.57101],[-2.464418,50.574349],[-2.466177,50.577291],[-2.468706,50.580339],[-2.469411,50.582105],[-2.471548,50.582613],[-2.471041,50.581077],[-2.469802,50.579615],[-2.470593,50.579166],[-2.472962,50.579682],[-2.481231,50.585205],[-2.486238,50.587848],[-2.488471,50.589591],[-2.491885,50.591418],[-2.492805,50.592368],[-2.496738,50.594186],[-2.501391,50.597365],[-2.502586,50.597574],[-2.516207,50.605185],[-2.522134,50.608862],[-2.523936,50.609662],[-2.525894,50.611159],[-2.527909,50.611765],[-2.528727,50.612611],[-2.53517,50.615671],[-2.537296,50.617147],[-2.545162,50.62107],[-2.54981,50.62363],[-2.552022,50.624428],[-2.553565,50.625572],[-2.556753,50.626875],[-2.557827,50.627965],[-2.560905,50.629105],[-2.566605,50.632659],[-2.573725,50.635579],[-2.577734,50.637913],[-2.586407,50.642157],[-2.611527,50.654062],[-2.607021,50.655081],[-2.606244,50.654462],[-2.603572,50.653659],[-2.600489,50.653722],[-2.599301,50.654197],[-2.597586,50.653522],[-2.597296,50.652523],[-2.598093,50.651459],[-2.600751,50.650813],[-2.598401,50.649087],[-2.591836,50.64664],[-2.588492,50.646064],[-2.587542,50.64522],[-2.586399,50.645114],[-2.58597,50.644192],[-2.582176,50.641932],[-2.578184,50.641032],[-2.576062,50.640067],[-2.574699,50.638985],[-2.571712,50.63842],[-2.570178,50.637571],[-2.5669,50.638016],[-2.560509,50.63801],[-2.559927,50.635972],[-2.560141,50.635208],[-2.558887,50.633313],[-2.558065,50.630836],[-2.555436,50.630331],[-2.551743,50.630655],[-2.549007,50.629949],[-2.545845,50.630354],[-2.546032,50.62834],[-2.546744,50.627636],[-2.549426,50.628246],[-2.551931,50.627356],[-2.548903,50.62488],[-2.547744,50.624666],[-2.546082,50.625892],[-2.544635,50.625193],[-2.544301,50.623392],[-2.542146,50.622924],[-2.540197,50.622063],[-2.539609,50.620704],[-2.538181,50.619762],[-2.53155,50.617417],[-2.524844,50.616858],[-2.524054,50.617735],[-2.521035,50.618108],[-2.517486,50.617865],[-2.51636,50.616689],[-2.516421,50.615365],[-2.51445,50.614329],[-2.514709,50.6114],[-2.512979,50.61013],[-2.51033,50.611629],[-2.508515,50.611272],[-2.50559,50.609862],[-2.505167,50.608641],[-2.507759,50.607696],[-2.506761,50.606084],[-2.5044,50.605107],[-2.501383,50.606848],[-2.501373,50.60532],[-2.500582,50.603978],[-2.499469,50.603458],[-2.496927,50.603324],[-2.495607,50.602819],[-2.495735,50.601788],[-2.498801,50.600205],[-2.499379,50.598972],[-2.498951,50.597516],[-2.497547,50.595685],[-2.494288,50.593844],[-2.493341,50.593714],[-2.490354,50.591919],[-2.487811,50.591093],[-2.485592,50.591664],[-2.484052,50.591117],[-2.484213,50.590155],[-2.48354,50.588871],[-2.481046,50.588667],[-2.477071,50.585731],[-2.474697,50.585438],[-2.471304,50.584326],[-2.469987,50.584989],[-2.469151,50.586783],[-2.4674,50.58847],[-2.466293,50.591843],[-2.464334,50.59327],[-2.464102,50.593912],[-2.460619,50.595007],[-2.460121,50.596595],[-2.459298,50.597548],[-2.452437,50.599797],[-2.451622,50.600558],[-2.449466,50.601183],[-2.432379,50.596237],[-2.43284,50.596633],[-2.448406,50.601086],[-2.449439,50.601851],[-2.450981,50.603782],[-2.450407,50.604729],[-2.444812,50.606206],[-2.443061,50.607426],[-2.443832,50.608064],[-2.450176,50.60736],[-2.451838,50.606467],[-2.452853,50.60642],[-2.455488,50.607117],[-2.45882,50.607046],[-2.459619,50.607634],[-2.458246,50.6119],[-2.456605,50.611911],[-2.45743,50.608343],[-2.456489,50.607477],[-2.453491,50.607081],[-2.449933,50.608227],[-2.445665,50.608584],[-2.444753,50.609252],[-2.446404,50.610287],[-2.45051,50.60864],[-2.452155,50.610933],[-2.45261,50.613261],[-2.451694,50.615602],[-2.449987,50.617924],[-2.445298,50.622972],[-2.44359,50.624093],[-2.440722,50.626534],[-2.431682,50.632407],[-2.426895,50.63473],[-2.423704,50.635811],[-2.419547,50.63644],[-2.418272,50.635336],[-2.415218,50.635108],[-2.411105,50.634094],[-2.410155,50.633121],[-2.40847,50.632986],[-2.407343,50.634208],[-2.403683,50.635182],[-2.395849,50.63659],[-2.393256,50.636646],[-2.3851,50.635637],[-2.379066,50.635441],[-2.376447,50.634368],[-2.375944,50.633874],[-2.37355,50.63351],[-2.372569,50.632945],[-2.366099,50.631328],[-2.365679,50.630956],[-2.358317,50.631514],[-2.355384,50.630903],[-2.351638,50.631187],[-2.349334,50.630889],[-2.343645,50.632021],[-2.338558,50.631944],[-2.334598,50.63101],[-2.333968,50.629713],[-2.332297,50.629041],[-2.330003,50.626939],[-2.327378,50.626404],[-2.323269,50.624797],[-2.319691,50.625698],[-2.31494,50.625359],[-2.313506,50.625702],[-2.310377,50.625761],[-2.303628,50.625194],[-2.298651,50.624327],[-2.291812,50.622867],[-2.290589,50.622901],[-2.281268,50.622498],[-2.277432,50.622024],[-2.275663,50.62105],[-2.272965,50.62213],[-2.271623,50.621536],[-2.269607,50.621649],[-2.265467,50.620756],[-2.260405,50.618259],[-2.259361,50.618438],[-2.256396,50.617852],[-2.253269,50.618005],[-2.249108,50.616935],[-2.249763,50.6179],[-2.249474,50.618782],[-2.248202,50.619341],[-2.246259,50.619423],[-2.244435,50.618842],[-2.243726,50.618035],[-2.245038,50.616763],[-2.244666,50.616359],[-2.237166,50.615998],[-2.228216,50.616105],[-2.227572,50.617136],[-2.224634,50.61668],[-2.223018,50.616963],[-2.223401,50.617766],[-2.2225,50.619017],[-2.220502,50.620131],[-2.216417,50.620693],[-2.213208,50.620687],[-2.209969,50.621127],[-2.208819,50.621983],[-2.207163,50.622374],[-2.205113,50.622178],[-2.204071,50.621518],[-2.198503,50.62298],[-2.193161,50.621749],[-2.187652,50.62002],[-2.184956,50.618365],[-2.184625,50.61681],[-2.186107,50.616424],[-2.186545,50.615227],[-2.185014,50.615059],[-2.184466,50.615948],[-2.179165,50.614654],[-2.173648,50.614716],[-2.171127,50.61432],[-2.170112,50.613868],[-2.165787,50.614779],[-2.162733,50.614685],[-2.157983,50.615464],[-2.15435,50.613992],[-2.151593,50.612138],[-2.150902,50.611379],[-2.149333,50.611266],[-2.1471,50.610149],[-2.146861,50.60866],[-2.146217,50.608501],[-2.144475,50.609484],[-2.143139,50.610788],[-2.139169,50.610539],[-2.137448,50.612149],[-2.13442,50.612622],[-2.131469,50.611498],[-2.129342,50.609975],[-2.129475,50.609222],[-2.131395,50.608273],[-2.131547,50.607653],[-2.127474,50.604426],[-2.120586,50.602418],[-2.114567,50.59907],[-2.112307,50.599039],[-2.105611,50.596994],[-2.103312,50.597127],[-2.098583,50.598176],[-2.090903,50.59706],[-2.083087,50.594757],[-2.080882,50.594796],[-2.079144,50.595329],[-2.077136,50.59547],[-2.075636,50.595065],[-2.07474,50.593137],[-2.072785,50.592293],[-2.070371,50.592837],[-2.067867,50.592485],[-2.066189,50.593681],[-2.064108,50.593584],[-2.062762,50.591866],[-2.064334,50.590079],[-2.064286,50.587622],[-2.063697,50.586253],[-2.062093,50.584499],[-2.061553,50.582869],[-2.061936,50.581366],[-2.057813,50.577263],[-2.056094,50.576523],[-2.05442,50.576582],[-2.052548,50.577596],[-2.047154,50.578615],[-2.043034,50.579138],[-2.039646,50.580179],[-2.038624,50.581488],[-2.037754,50.581608],[-2.033615,50.584148],[-2.032004,50.584372],[-2.028391,50.587956],[-2.026346,50.589002],[-2.024435,50.58891],[-2.022659,50.589396],[-2.020558,50.589228],[-2.017188,50.590029],[-2.012735,50.590797],[-2.009136,50.59084],[-2.006298,50.591683],[-2.004864,50.591453],[-2.00354,50.591817],[-1.998776,50.591259],[-1.991479,50.591015],[-1.990092,50.590453],[-1.987098,50.591076],[-1.984225,50.590509],[-1.98063,50.590724],[-1.979269,50.591064],[-1.975798,50.590853],[-1.968571,50.591537],[-1.964533,50.59147],[-1.960954,50.590995],[-1.959752,50.591158],[-1.958293,50.592082],[-1.957331,50.592116],[-1.955526,50.593412],[-1.95357,50.594246],[-1.951609,50.59432],[-1.950686,50.59521],[-1.952084,50.596187],[-1.953196,50.599071],[-1.952758,50.600886],[-1.950081,50.6048],[-1.944893,50.606796],[-1.943937,50.607517],[-1.949919,50.607496],[-1.950827,50.608226],[-1.952648,50.60744],[-1.955566,50.608296],[-1.95668,50.60952],[-1.957583,50.61218],[-1.957398,50.615706],[-1.952157,50.624053],[-1.947731,50.627314],[-1.943805,50.629187],[-1.936194,50.630654],[-1.933161,50.63091],[-1.931616,50.633155],[-1.931007,50.634545],[-1.929206,50.636605],[-1.927593,50.63741],[-1.927328,50.638364],[-1.926034,50.639407],[-1.9254,50.640773],[-1.92414,50.641594],[-1.925301,50.642057],[-1.927759,50.641769],[-1.930004,50.642148],[-1.930768,50.641657],[-1.932432,50.641963],[-1.936801,50.6412],[-1.939701,50.641144],[-1.940858,50.640744],[-1.944156,50.642664],[-1.946936,50.645282],[-1.948773,50.645443],[-1.949812,50.646139],[-1.95277,50.651212],[-1.952352,50.656018],[-1.94951,50.661496],[-1.944808,50.667276],[-1.941966,50.67008],[-1.94112,50.672069],[-1.941419,50.673902],[-1.944734,50.67481],[-1.945909,50.67547],[-1.948705,50.678363],[-1.949853,50.680196],[-1.950797,50.67875],[-1.952007,50.678217],[-1.952684,50.677059],[-1.954063,50.676222],[-1.954619,50.67483],[-1.957465,50.672702],[-1.958902,50.672713],[-1.959444,50.673651],[-1.961394,50.674672],[-1.961611,50.672147],[-1.963604,50.670428],[-1.964428,50.670267],[-1.966878,50.670851],[-1.968113,50.669382],[-1.97096,50.66926],[-1.96793,50.666706],[-1.967943,50.665969],[-1.969712,50.663818],[-1.96994,50.662043],[-1.971677,50.663944],[-1.973384,50.663575],[-1.97603,50.664441],[-1.973899,50.665029],[-1.974615,50.666058],[-1.975859,50.665906],[-1.979945,50.667014],[-1.981139,50.666572],[-1.982199,50.667274],[-1.983126,50.669398],[-1.985027,50.669744],[-1.982931,50.672553],[-1.982905,50.673477],[-1.981135,50.674369],[-1.980722,50.675208],[-1.979422,50.675622],[-1.979197,50.676616],[-1.980104,50.677218],[-1.981479,50.676866],[-1.988558,50.672734],[-1.991654,50.672703],[-1.99108,50.671104],[-1.993154,50.670031],[-1.993388,50.668871],[-1.992776,50.668049],[-1.993285,50.667259],[-1.995699,50.667146],[-1.996829,50.667793],[-1.997218,50.670248],[-2.000545,50.670167],[-2.00135,50.67096],[-2.001526,50.672483],[-2.000294,50.673085],[-1.999116,50.672819],[-1.996013,50.673756],[-1.997581,50.674279],[-1.99813,50.675216],[-2.001663,50.676028],[-2.00367,50.675351],[-2.005806,50.675574],[-2.008128,50.674791],[-2.00865,50.673264],[-2.009646,50.673398],[-2.010422,50.674792],[-2.009337,50.675653],[-2.00904,50.676926],[-2.007939,50.677584],[-2.005318,50.677871],[-2.007377,50.678877],[-2.007051,50.679758],[-2.00847,50.68043],[-2.008996,50.681498],[-2.011953,50.682734],[-2.013797,50.682259],[-2.014488,50.682771],[-2.017122,50.682188],[-2.018333,50.681445],[-2.019473,50.682011],[-2.021643,50.682102],[-2.021426,50.679893],[-2.022216,50.678106],[-2.023241,50.677571],[-2.025926,50.674745],[-2.025879,50.674223],[-2.0233,50.673221],[-2.023103,50.672806],[-2.024579,50.67082],[-2.025564,50.670985],[-2.024462,50.672359],[-2.024768,50.672968],[-2.02773,50.673386],[-2.028984,50.674389],[-2.032872,50.672343],[-2.029695,50.675737],[-2.028734,50.676157],[-2.026524,50.678289],[-2.027037,50.682215],[-2.026071,50.684384],[-2.028645,50.683],[-2.031359,50.68217],[-2.033491,50.679919],[-2.034871,50.679402],[-2.039192,50.678746],[-2.040916,50.678927],[-2.045942,50.678378],[-2.046203,50.679405],[-2.04464,50.68032],[-2.043292,50.680452],[-2.039881,50.679828],[-2.036838,50.680511],[-2.034485,50.682963],[-2.032317,50.683483],[-2.030434,50.684899],[-2.030441,50.685635],[-2.027367,50.686361],[-2.024722,50.687623],[-2.024905,50.688254],[-2.026864,50.689153],[-2.028548,50.6893],[-2.028596,50.690603],[-2.027246,50.6917],[-2.026172,50.691828],[-2.025772,50.693308],[-2.024723,50.694184],[-2.024818,50.695798],[-2.026047,50.696654],[-2.0273,50.698782],[-2.028414,50.697494],[-2.027525,50.697065],[-2.029135,50.696129],[-2.031531,50.697093],[-2.031802,50.698384],[-2.029886,50.699061],[-2.029426,50.701141],[-2.031301,50.700775],[-2.032025,50.701636],[-2.030436,50.703172],[-2.028071,50.703477],[-2.02521,50.70294],[-2.024803,50.701668],[-2.022688,50.701238],[-2.022111,50.700739],[-2.018487,50.700742],[-2.018108,50.701263],[-2.019275,50.70248],[-2.022243,50.703648],[-2.02357,50.704545],[-2.026087,50.70743],[-2.027551,50.707091],[-2.030589,50.707321],[-2.032465,50.707957],[-2.037178,50.707234],[-2.039571,50.707201],[-2.041466,50.706304],[-2.041955,50.704069],[-2.043137,50.702841],[-2.047756,50.701395],[-2.048646,50.700837],[-2.052171,50.700607],[-2.054455,50.699854],[-2.055387,50.699067],[-2.056707,50.696088],[-2.059065,50.693447],[-2.059315,50.690655],[-2.062676,50.689125],[-2.063205,50.688243],[-2.067888,50.687545],[-2.070308,50.686785],[-2.072554,50.687572],[-2.075572,50.687932],[-2.077882,50.686919],[-2.079748,50.686994],[-2.080738,50.687754],[-2.08328,50.690476],[-2.084149,50.690582],[-2.086017,50.689209],[-2.089197,50.689132],[-2.090727,50.688652],[-2.090672,50.687718],[-2.087974,50.68699],[-2.087099,50.686325],[-2.088194,50.684355],[-2.090606,50.68522],[-2.092558,50.685481],[-2.095791,50.684387],[-2.095142,50.682615],[-2.09524,50.681432],[-2.096814,50.680873],[-2.098033,50.679784],[-2.099097,50.679778],[-2.102183,50.682149],[-2.103659,50.682876],[-2.110669,50.68372],[-2.110395,50.684111],[-2.103798,50.683301],[-2.102062,50.68259],[-2.09941,50.680261],[-2.098581,50.679979],[-2.097298,50.681008],[-2.095534,50.681584],[-2.096076,50.68445],[-2.095493,50.684903],[-2.092204,50.685697],[-2.089042,50.684801],[-2.087976,50.684838],[-2.087494,50.686368],[-2.090837,50.687535],[-2.091183,50.688401],[-2.090592,50.689016],[-2.089145,50.689359],[-2.086259,50.689447],[-2.085319,50.690607],[-2.082833,50.690682],[-2.080316,50.688352],[-2.078815,50.688433],[-2.078339,50.689278],[-2.079123,50.693947],[-2.079812,50.694315],[-2.081692,50.694049],[-2.081635,50.694965],[-2.079628,50.696323],[-2.077151,50.69511],[-2.075832,50.697471],[-2.074635,50.698091],[-2.072531,50.697675],[-2.071089,50.698124],[-2.072472,50.699557],[-2.072999,50.701661],[-2.072418,50.70454],[-2.071799,50.705072],[-2.069837,50.704508],[-2.068011,50.704414],[-2.067203,50.705081],[-2.06483,50.705622],[-2.062896,50.706797],[-2.060905,50.706366],[-2.059809,50.705215],[-2.057617,50.705655],[-2.059305,50.706337],[-2.060996,50.70659],[-2.063406,50.707632],[-2.064901,50.707949],[-2.067623,50.707973],[-2.069389,50.708578],[-2.071153,50.708325],[-2.068946,50.710621],[-2.068944,50.71124],[-2.067461,50.711969],[-2.065388,50.713978],[-2.061529,50.716767],[-2.054726,50.717816],[-2.050968,50.717519],[-2.046172,50.716018],[-2.045253,50.718135],[-2.044417,50.718898],[-2.040813,50.720035],[-2.040754,50.720088],[-2.043241,50.719977],[-2.042149,50.722563],[-2.041431,50.723458],[-2.042196,50.724453],[-2.041814,50.725938],[-2.04275,50.726328],[-2.044942,50.72621],[-2.046129,50.725673],[-2.050187,50.725307],[-2.049702,50.726669],[-2.04833,50.727188],[-2.048054,50.728355],[-2.046252,50.730262],[-2.044134,50.730853],[-2.042508,50.731761],[-2.040818,50.729798],[-2.039248,50.729424],[-2.036976,50.73033],[-2.036204,50.73135],[-2.034593,50.729908],[-2.03579,50.728293],[-2.033555,50.728347],[-2.031753,50.729523],[-2.029422,50.729822],[-2.027464,50.729282],[-2.024679,50.729401],[-2.02219,50.73485],[-2.022522,50.736566],[-2.016615,50.736335],[-2.01624,50.736695],[-2.013529,50.737054],[-2.012706,50.748501],[-2.010257,50.773788],[-2.009321,50.782589],[-2.007961,50.78242],[-2.006075,50.782768],[-2.001199,50.784809],[-2.000467,50.785348],[-1.999133,50.788128],[-1.999566,50.789605],[-2.004867,50.790203],[-2.005875,50.790926],[-1.997166,50.792839],[-1.993991,50.792362],[-1.991568,50.79107],[-1.991096,50.791406],[-1.988239,50.790886],[-1.984832,50.791456],[-1.983625,50.790943],[-1.98143,50.791762],[-1.98017,50.790931],[-1.979072,50.791437],[-1.978363,50.792507],[-1.968994,50.79239],[-1.966136,50.790815],[-1.963854,50.790807],[-1.958327,50.789294],[-1.955193,50.790337],[-1.950739,50.79067],[-1.945415,50.794848],[-1.942405,50.796452],[-1.941614,50.798221],[-1.940878,50.798809],[-1.937991,50.798353],[-1.936161,50.797209],[-1.935203,50.794101],[-1.93633,50.788945],[-1.937439,50.787505],[-1.939024,50.786535],[-1.936973,50.785289],[-1.937501,50.783566],[-1.936999,50.782672],[-1.935052,50.782024],[-1.932065,50.780027],[-1.926999,50.780798],[-1.925511,50.781564],[-1.924235,50.783296],[-1.922403,50.783347],[-1.920926,50.783983],[-1.919133,50.783609],[-1.9197,50.7825],[-1.918612,50.780618],[-1.918894,50.779357],[-1.920916,50.777836],[-1.921595,50.776226],[-1.919187,50.775189],[-1.919977,50.773876],[-1.918688,50.773568],[-1.916983,50.774632],[-1.915036,50.773424],[-1.913145,50.773971],[-1.912732,50.775429],[-1.91079,50.775133],[-1.908907,50.775438],[-1.907621,50.776647],[-1.905986,50.777367],[-1.901936,50.77769],[-1.900849,50.778717],[-1.898604,50.778472],[-1.898393,50.77921],[-1.89635,50.780295],[-1.893893,50.780091],[-1.892831,50.779265],[-1.890187,50.778181],[-1.886731,50.775774],[-1.887822,50.774772],[-1.887357,50.773554],[-1.885553,50.772397],[-1.882062,50.771771],[-1.880996,50.770651],[-1.877838,50.769731],[-1.874229,50.765613],[-1.874747,50.763876],[-1.872901,50.764805],[-1.872856,50.766009],[-1.871727,50.768183],[-1.868198,50.771969],[-1.865325,50.773922],[-1.865357,50.787747],[-1.864384,50.796987],[-1.86586,50.803085],[-1.864599,50.80662],[-1.861363,50.806781],[-1.857697,50.805816],[-1.856618,50.804886],[-1.845233,50.809606],[-1.842243,50.805431],[-1.840595,50.8044],[-1.837886,50.801868],[-1.83385,50.800042],[-1.819663,50.798206],[-1.816807,50.797619],[-1.813451,50.79606],[-1.811199,50.795749],[-1.807555,50.797792],[-1.80592,50.796246],[-1.803905,50.795965],[-1.802156,50.796897],[-1.803443,50.797559],[-1.803492,50.798529],[-1.801933,50.798945],[-1.801374,50.799714],[-1.802349,50.800319],[-1.804034,50.799988],[-1.804795,50.800989],[-1.804007,50.802589],[-1.804282,50.803578],[-1.806964,50.803506],[-1.809736,50.804957],[-1.810576,50.805902],[-1.811664,50.806076],[-1.811832,50.80873],[-1.810539,50.808893],[-1.809939,50.80977],[-1.806761,50.810466],[-1.805733,50.811627],[-1.802874,50.813512],[-1.803492,50.814053],[-1.806425,50.815012],[-1.807274,50.8163],[-1.806593,50.817831],[-1.805258,50.818362],[-1.804026,50.819984],[-1.802048,50.820611],[-1.801669,50.822236],[-1.804039,50.82196],[-1.804846,50.823714],[-1.80458,50.82471],[-1.803239,50.825246],[-1.804624,50.82703],[-1.803635,50.830024],[-1.802928,50.830741],[-1.800563,50.831498],[-1.798954,50.831388],[-1.797145,50.830021],[-1.794118,50.831518],[-1.795771,50.831822],[-1.796655,50.833221],[-1.795502,50.833878],[-1.792067,50.833588],[-1.791628,50.835336],[-1.790615,50.836314],[-1.791392,50.836957],[-1.792941,50.83659],[-1.794406,50.836801],[-1.794545,50.837724],[-1.796789,50.838155],[-1.798565,50.838852],[-1.800006,50.839988],[-1.800323,50.841043],[-1.798669,50.840817],[-1.796996,50.841092],[-1.798077,50.841987],[-1.801873,50.84242],[-1.803359,50.844477],[-1.802745,50.845418],[-1.800219,50.84724],[-1.799943,50.848449],[-1.80237,50.849543],[-1.802884,50.850661],[-1.804805,50.851154],[-1.805839,50.853071],[-1.803911,50.853251],[-1.803247,50.853761],[-1.804756,50.854781],[-1.804003,50.856476],[-1.805435,50.857636],[-1.805087,50.85901],[-1.807175,50.860138],[-1.806413,50.861498],[-1.808028,50.86446],[-1.810958,50.864335],[-1.81279,50.864573],[-1.81375,50.863381],[-1.812924,50.862332],[-1.814746,50.862052],[-1.814833,50.858701],[-1.821236,50.856772],[-1.829519,50.855319],[-1.841632,50.858043],[-1.84602,50.858137],[-1.850944,50.858725],[-1.850564,50.860298],[-1.853209,50.862673],[-1.853539,50.86346],[-1.851665,50.864223],[-1.853539,50.866505],[-1.847832,50.869686],[-1.84848,50.873778],[-1.845272,50.877998],[-1.846122,50.87942],[-1.847711,50.880878],[-1.847977,50.882339],[-1.847492,50.883408],[-1.844491,50.885297],[-1.844043,50.886829],[-1.845099,50.888251],[-1.848556,50.889887],[-1.84489,50.893168],[-1.841707,50.89702],[-1.83987,50.89789],[-1.837239,50.897198],[-1.831474,50.897391],[-1.825576,50.896167],[-1.824953,50.895771],[-1.823899,50.898226],[-1.816542,50.903948],[-1.817273,50.905429],[-1.817569,50.907465],[-1.820407,50.912106],[-1.819159,50.9127],[-1.818611,50.914546],[-1.818844,50.916526],[-1.817481,50.917608],[-1.815034,50.920584],[-1.814467,50.922882],[-1.814774,50.923132],[-1.812604,50.925382],[-1.810793,50.926526],[-1.810658,50.927203],[-1.812784,50.92752],[-1.813927,50.927049],[-1.817465,50.92716],[-1.820748,50.926299],[-1.823599,50.926763],[-1.826301,50.92687],[-1.828272,50.927768],[-1.829741,50.927573],[-1.832623,50.929199],[-1.83538,50.929571],[-1.83539,50.930057],[-1.83875,50.930803],[-1.84032,50.931883],[-1.842014,50.93162],[-1.842659,50.93096],[-1.84605,50.93028],[-1.847146,50.929669],[-1.851057,50.928835],[-1.855958,50.926458],[-1.855748,50.924983],[-1.857466,50.923152],[-1.859093,50.922374],[-1.859905,50.921304],[-1.864632,50.918923],[-1.873644,50.917226],[-1.875008,50.919797],[-1.876118,50.920585],[-1.877871,50.923105],[-1.880382,50.924935],[-1.881579,50.926377],[-1.892554,50.931624],[-1.8969,50.934396],[-1.898567,50.935878],[-1.899087,50.938392],[-1.9026,50.940726],[-1.905382,50.943084],[-1.909184,50.945327],[-1.910577,50.949223],[-1.912443,50.951016],[-1.912484,50.952198],[-1.916106,50.953131],[-1.918741,50.956366],[-1.920986,50.961495],[-1.923923,50.962723],[-1.927184,50.963595],[-1.928402,50.964988],[-1.928685,50.966293],[-1.929889,50.967796],[-1.934864,50.969093],[-1.93922,50.969657],[-1.941258,50.971826],[-1.942079,50.973363],[-1.94483,50.975748],[-1.948133,50.976475],[-1.950798,50.97813],[-1.952521,50.978583],[-1.955466,50.978266],[-1.957225,50.983195],[-1.956825,50.989832]]]]},"properties":{"LAD22CD":"E06000059","LAD22NM":"Dorset","BNG_E":370871,"BNG_N":99796,"LONG":-2.41467,"LAT":50.79697,"GlobalID":"9467d597-6836-4f12-8484-d51d5954cbc2"},"id":56}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.871326,52.040252],[-0.872121,52.03977],[-0.87317,52.037366],[-0.872067,52.036244],[-0.876111,52.033505],[-0.876269,52.032495],[-0.877304,52.031032],[-0.877469,52.029972],[-0.880294,52.028694],[-0.883019,52.028241],[-0.887159,52.03011],[-0.889236,52.031521],[-0.890756,52.031166],[-0.89134,52.029901],[-0.893659,52.028768],[-0.895756,52.028217],[-0.897264,52.027286],[-0.898302,52.027473],[-0.899698,52.026388],[-0.900246,52.025019],[-0.903876,52.023704],[-0.904578,52.022334],[-0.90603,52.021221],[-0.908377,52.02224],[-0.911776,52.024972],[-0.912109,52.026586],[-0.914376,52.029843],[-0.922564,52.035351],[-0.924445,52.036194],[-0.927265,52.039405],[-0.928178,52.042222],[-0.930207,52.043127],[-0.929817,52.04505],[-0.930284,52.045741],[-0.930113,52.049542],[-0.931833,52.052182],[-0.931872,52.054027],[-0.933449,52.055083],[-0.935712,52.057918],[-0.936594,52.058189],[-0.93788,52.061202],[-0.933744,52.062636],[-0.93764,52.062856],[-0.939316,52.06216],[-0.941647,52.064273],[-0.940482,52.065047],[-0.942043,52.06659],[-0.940459,52.067427],[-0.941749,52.068774],[-0.944391,52.070032],[-0.94449,52.073185],[-0.940056,52.075842],[-0.945102,52.076885],[-0.947203,52.07918],[-0.950323,52.079865],[-0.951873,52.081534],[-0.959549,52.079283],[-0.960763,52.078644],[-0.962725,52.076359],[-0.965103,52.074839],[-0.967805,52.070911],[-0.970149,52.072368],[-0.972224,52.072333],[-0.973358,52.072723],[-0.975299,52.072496],[-0.977464,52.071676],[-0.981141,52.071343],[-0.982383,52.069972],[-0.98428,52.069717],[-0.989123,52.070833],[-0.991065,52.070907],[-0.993439,52.072123],[-0.993944,52.072832],[-0.995491,52.073237],[-0.998243,52.072581],[-1.002435,52.072732],[-1.004306,52.07341],[-1.005878,52.073403],[-1.007541,52.072095],[-1.0109,52.072001],[-1.012866,52.071599],[-1.013507,52.072867],[-1.016261,52.072644],[-1.020077,52.0733],[-1.021456,52.074959],[-1.023082,52.074938],[-1.026338,52.075429],[-1.028687,52.075024],[-1.042238,52.073876],[-1.040814,52.073187],[-1.031753,52.071168],[-1.029551,52.070106],[-1.028437,52.06788],[-1.026121,52.065722],[-1.026405,52.064417],[-1.027669,52.063734],[-1.030947,52.062897],[-1.033158,52.063523],[-1.034618,52.064549],[-1.037052,52.065245],[-1.038203,52.066089],[-1.040049,52.065924],[-1.048255,52.062847],[-1.049772,52.061394],[-1.051798,52.060717],[-1.052959,52.05966],[-1.057818,52.061033],[-1.062056,52.062736],[-1.064811,52.061543],[-1.068106,52.061053],[-1.070713,52.059556],[-1.071657,52.058135],[-1.076652,52.058851],[-1.077479,52.057879],[-1.080872,52.056773],[-1.0804,52.0561],[-1.081106,52.054471],[-1.082232,52.052885],[-1.083276,52.052361],[-1.085379,52.052186],[-1.0889,52.052377],[-1.090329,52.051414],[-1.092446,52.051127],[-1.096127,52.051351],[-1.098535,52.049886],[-1.09887,52.048641],[-1.103602,52.047761],[-1.106259,52.049081],[-1.110987,52.048204],[-1.11358,52.048098],[-1.117224,52.047345],[-1.11969,52.04649],[-1.122203,52.044954],[-1.123143,52.04163],[-1.125146,52.040582],[-1.126339,52.039353],[-1.125914,52.038742],[-1.127102,52.037976],[-1.126602,52.037189],[-1.129959,52.03351],[-1.130805,52.03339],[-1.13176,52.031967],[-1.132939,52.03174],[-1.132473,52.029689],[-1.133677,52.026595],[-1.13545,52.024272],[-1.136061,52.022467],[-1.13616,52.020066],[-1.128897,52.017921],[-1.121523,52.016968],[-1.120004,52.017146],[-1.118087,52.015426],[-1.115626,52.01561],[-1.115157,52.016515],[-1.11198,52.016592],[-1.11183,52.015677],[-1.11035,52.015687],[-1.107266,52.014667],[-1.10631,52.013448],[-1.105059,52.013411],[-1.103416,52.01272],[-1.100122,52.012534],[-1.099324,52.013632],[-1.096741,52.015094],[-1.094564,52.014316],[-1.093738,52.013366],[-1.094123,52.012225],[-1.091417,52.010329],[-1.090511,52.009338],[-1.089115,52.006693],[-1.088062,52.005782],[-1.086445,52.005882],[-1.085276,52.006612],[-1.082805,52.006613],[-1.080978,52.007259],[-1.080895,52.007822],[-1.078662,52.008597],[-1.075783,52.008312],[-1.075565,52.007514],[-1.073928,52.006322],[-1.069852,52.007229],[-1.067391,52.00822],[-1.06459,52.008614],[-1.063413,52.008407],[-1.060848,52.008611],[-1.058935,52.007917],[-1.058436,52.006726],[-1.059025,52.005218],[-1.057535,52.00323],[-1.053172,52.002536],[-1.057874,51.999417],[-1.062235,51.994837],[-1.078186,51.981057],[-1.079398,51.979706],[-1.078424,51.979379],[-1.07971,51.975943],[-1.082144,51.972818],[-1.084178,51.972344],[-1.083766,51.970327],[-1.08492,51.968474],[-1.085745,51.968443],[-1.087682,51.967006],[-1.088793,51.964808],[-1.091393,51.962653],[-1.093524,51.960169],[-1.095236,51.957123],[-1.088853,51.955626],[-1.089525,51.954017],[-1.086172,51.952352],[-1.083785,51.951881],[-1.081049,51.950248],[-1.078814,51.946698],[-1.080408,51.944714],[-1.078952,51.943366],[-1.07602,51.943296],[-1.072828,51.944797],[-1.070925,51.946131],[-1.070115,51.945841],[-1.066611,51.946862],[-1.064857,51.948228],[-1.063502,51.94825],[-1.059266,51.949301],[-1.055505,51.949038],[-1.054616,51.947959],[-1.054792,51.946532],[-1.055846,51.945964],[-1.055919,51.942599],[-1.0587,51.940072],[-1.059122,51.939137],[-1.060546,51.938176],[-1.062112,51.935137],[-1.064153,51.934639],[-1.070034,51.934205],[-1.077549,51.931643],[-1.075022,51.930691],[-1.078065,51.927476],[-1.08125,51.927561],[-1.082632,51.925682],[-1.082587,51.923039],[-1.085964,51.923148],[-1.086674,51.922646],[-1.086329,51.920402],[-1.085042,51.919869],[-1.083349,51.918169],[-1.081181,51.917441],[-1.079357,51.917222],[-1.080038,51.916127],[-1.082636,51.915813],[-1.082278,51.911937],[-1.085563,51.907462],[-1.086279,51.905319],[-1.085004,51.904624],[-1.08582,51.902882],[-1.085379,51.901903],[-1.085999,51.900865],[-1.084254,51.899545],[-1.08706,51.897447],[-1.091316,51.897542],[-1.092906,51.895686],[-1.093519,51.893937],[-1.090605,51.892968],[-1.090018,51.892358],[-1.08579,51.891127],[-1.078714,51.89014],[-1.075459,51.888298],[-1.073542,51.888102],[-1.070618,51.888834],[-1.069912,51.887513],[-1.068727,51.886437],[-1.069993,51.885463],[-1.069801,51.884304],[-1.070165,51.882063],[-1.07285,51.881082],[-1.074133,51.880023],[-1.076536,51.878776],[-1.076145,51.875455],[-1.074567,51.875562],[-1.071757,51.874871],[-1.069166,51.874645],[-1.064643,51.868697],[-1.065593,51.868188],[-1.064452,51.866348],[-1.065564,51.86601],[-1.066127,51.864889],[-1.064516,51.861071],[-1.064515,51.859992],[-1.06348,51.858582],[-1.064296,51.857648],[-1.06312,51.856322],[-1.0635,51.855522],[-1.063083,51.854322],[-1.066014,51.853233],[-1.066031,51.852817],[-1.061597,51.848629],[-1.063567,51.847793],[-1.062198,51.846545],[-1.061978,51.844127],[-1.055755,51.841819],[-1.051582,51.839869],[-1.048329,51.839602],[-1.048997,51.838989],[-1.059217,51.835421],[-1.061907,51.832384],[-1.066323,51.833175],[-1.067198,51.834479],[-1.068588,51.834636],[-1.071607,51.833943],[-1.072114,51.831277],[-1.073279,51.830264],[-1.075918,51.82935],[-1.07845,51.829255],[-1.080865,51.829552],[-1.086196,51.831324],[-1.087999,51.833474],[-1.089342,51.834054],[-1.092257,51.834488],[-1.097328,51.837444],[-1.100276,51.838506],[-1.102521,51.840287],[-1.108427,51.841339],[-1.112832,51.841442],[-1.117243,51.843843],[-1.121599,51.845342],[-1.124139,51.842592],[-1.12709,51.841178],[-1.12908,51.839136],[-1.132998,51.838289],[-1.140676,51.83469],[-1.133737,51.831758],[-1.130488,51.831105],[-1.130113,51.829726],[-1.127431,51.829071],[-1.126471,51.828528],[-1.123224,51.825322],[-1.123397,51.824579],[-1.119008,51.820765],[-1.117454,51.820424],[-1.114239,51.818252],[-1.110097,51.817305],[-1.113443,51.815876],[-1.116045,51.815205],[-1.117224,51.814221],[-1.117909,51.81109],[-1.120378,51.810252],[-1.122482,51.809928],[-1.124044,51.808049],[-1.12489,51.807511],[-1.120788,51.804328],[-1.119872,51.80023],[-1.117406,51.799167],[-1.121234,51.796874],[-1.123541,51.794181],[-1.120439,51.792963],[-1.119992,51.792293],[-1.122864,51.788531],[-1.122091,51.788395],[-1.121944,51.787081],[-1.115382,51.786899],[-1.110651,51.783832],[-1.105897,51.781941],[-1.106362,51.78163],[-1.097603,51.780453],[-1.09671,51.782235],[-1.08574,51.781304],[-1.082948,51.780296],[-1.079946,51.77747],[-1.082706,51.773511],[-1.080761,51.772878],[-1.080819,51.772161],[-1.078849,51.771266],[-1.079928,51.770138],[-1.079276,51.769406],[-1.081408,51.76713],[-1.082801,51.764115],[-1.082721,51.760483],[-1.083088,51.760394],[-1.080852,51.756554],[-1.077784,51.758501],[-1.075058,51.758587],[-1.072892,51.758323],[-1.068663,51.75601],[-1.068241,51.754887],[-1.066385,51.753625],[-1.064114,51.754038],[-1.058244,51.752333],[-1.056313,51.751976],[-1.054973,51.752181],[-1.05325,51.749724],[-1.050731,51.748333],[-1.04816,51.747625],[-1.047273,51.746546],[-1.045567,51.745911],[-1.045472,51.744599],[-1.044103,51.745076],[-1.043375,51.744558],[-1.039041,51.744705],[-1.038342,51.744065],[-1.036068,51.744078],[-1.034487,51.744636],[-1.031606,51.744379],[-1.030436,51.744929],[-1.029623,51.745959],[-1.030013,51.746595],[-1.029615,51.748901],[-1.030552,51.749174],[-1.03122,51.752139],[-1.03256,51.753132],[-1.032662,51.755786],[-1.031971,51.756995],[-1.029828,51.757881],[-1.028218,51.757027],[-1.027085,51.757262],[-1.025219,51.755808],[-1.023611,51.755519],[-1.012238,51.755994],[-1.007394,51.755939],[-1.007585,51.754928],[-1.003742,51.755038],[-0.999471,51.754507],[-0.997449,51.753409],[-0.993499,51.754745],[-0.992738,51.754081],[-0.990617,51.754087],[-0.989088,51.753141],[-0.986882,51.753169],[-0.98625,51.752062],[-0.983353,51.752425],[-0.980819,51.753379],[-0.981657,51.755869],[-0.980737,51.757098],[-0.981216,51.758038],[-0.980593,51.75927],[-0.980973,51.760408],[-0.979612,51.760718],[-0.97618,51.760108],[-0.975245,51.758873],[-0.973853,51.758017],[-0.971431,51.758101],[-0.969761,51.758803],[-0.96815,51.75859],[-0.962998,51.759164],[-0.961833,51.758609],[-0.960585,51.758743],[-0.954123,51.757847],[-0.949683,51.755939],[-0.946958,51.755512],[-0.944908,51.753639],[-0.942369,51.75297],[-0.940406,51.752873],[-0.935983,51.753445],[-0.933205,51.75234],[-0.932015,51.749186],[-0.928478,51.745936],[-0.924115,51.747715],[-0.92094,51.744619],[-0.920344,51.742713],[-0.920387,51.740517],[-0.918624,51.73868],[-0.91897,51.738235],[-0.916931,51.736883],[-0.914806,51.737882],[-0.912782,51.737028],[-0.909682,51.736777],[-0.908755,51.735103],[-0.906095,51.73336],[-0.905383,51.733312],[-0.903336,51.731066],[-0.900593,51.729361],[-0.901657,51.728146],[-0.8997,51.724999],[-0.897165,51.722849],[-0.895446,51.721851],[-0.893464,51.722046],[-0.89134,51.721471],[-0.889396,51.720143],[-0.887683,51.718343],[-0.887624,51.71367],[-0.888253,51.712374],[-0.888641,51.709005],[-0.889676,51.70812],[-0.888577,51.707361],[-0.887071,51.705211],[-0.887235,51.703325],[-0.889563,51.701257],[-0.889257,51.699901],[-0.890753,51.697284],[-0.894773,51.692522],[-0.893817,51.690453],[-0.892647,51.689054],[-0.885664,51.686762],[-0.881902,51.684588],[-0.879896,51.680865],[-0.881836,51.680542],[-0.886764,51.681391],[-0.891017,51.67865],[-0.892465,51.678288],[-0.893813,51.679108],[-0.895764,51.677309],[-0.897897,51.676401],[-0.895069,51.674665],[-0.892143,51.674779],[-0.888933,51.673956],[-0.884135,51.673775],[-0.881368,51.67242],[-0.878601,51.67002],[-0.877707,51.668385],[-0.883971,51.667727],[-0.894746,51.668254],[-0.897042,51.670019],[-0.901204,51.670987],[-0.904703,51.672202],[-0.907022,51.673423],[-0.910381,51.673849],[-0.915694,51.67246],[-0.917729,51.6724],[-0.918636,51.67123],[-0.924911,51.666907],[-0.924889,51.665427],[-0.927817,51.66558],[-0.929353,51.666282],[-0.930796,51.666094],[-0.932213,51.664868],[-0.929536,51.663359],[-0.928343,51.661056],[-0.926547,51.660014],[-0.925051,51.659694],[-0.923098,51.656997],[-0.923215,51.656461],[-0.925173,51.654999],[-0.927652,51.654686],[-0.927251,51.651444],[-0.929185,51.653777],[-0.929431,51.655749],[-0.931435,51.655309],[-0.931497,51.653165],[-0.933169,51.652602],[-0.939536,51.654293],[-0.939793,51.654033],[-0.946318,51.653784],[-0.948181,51.652111],[-0.944453,51.652161],[-0.944002,51.651174],[-0.944984,51.649791],[-0.949951,51.650929],[-0.948341,51.649445],[-0.945143,51.648334],[-0.944607,51.64655],[-0.941621,51.644194],[-0.940212,51.643632],[-0.937538,51.641649],[-0.934586,51.636699],[-0.9354,51.635658],[-0.938217,51.635114],[-0.940111,51.632768],[-0.942317,51.631775],[-0.943591,51.630502],[-0.948873,51.631366],[-0.95003,51.628907],[-0.949489,51.625604],[-0.950071,51.622741],[-0.949794,51.620678],[-0.947534,51.620405],[-0.945719,51.61848],[-0.939459,51.618528],[-0.938645,51.617787],[-0.940079,51.614175],[-0.943983,51.610777],[-0.944133,51.609389],[-0.942563,51.607476],[-0.943139,51.605016],[-0.942399,51.604521],[-0.939176,51.604325],[-0.936018,51.603345],[-0.936179,51.602275],[-0.933667,51.60166],[-0.931213,51.602364],[-0.929803,51.604139],[-0.92914,51.604324],[-0.923942,51.604211],[-0.921867,51.603678],[-0.920175,51.603611],[-0.917127,51.600027],[-0.916899,51.59929],[-0.919696,51.59592],[-0.92488,51.590888],[-0.928165,51.59069],[-0.928548,51.590085],[-0.933197,51.588637],[-0.934338,51.58863],[-0.941471,51.585507],[-0.941333,51.584445],[-0.939822,51.582143],[-0.939401,51.580184],[-0.94002,51.576308],[-0.938427,51.571156],[-0.936674,51.571449],[-0.934249,51.569984],[-0.930582,51.569157],[-0.930412,51.568565],[-0.92779,51.568114],[-0.928228,51.565952],[-0.924146,51.563525],[-0.921385,51.564649],[-0.919546,51.561886],[-0.918524,51.561497],[-0.9171,51.562573],[-0.915958,51.561735],[-0.913601,51.561734],[-0.910207,51.557774],[-0.90624,51.556813],[-0.901681,51.556166],[-0.902825,51.553029],[-0.902134,51.548862],[-0.903194,51.545878],[-0.898298,51.545293],[-0.896882,51.544863],[-0.893637,51.549312],[-0.890382,51.554858],[-0.889581,51.55697],[-0.88737,51.559471],[-0.883479,51.56144],[-0.881399,51.562015],[-0.879723,51.562128],[-0.8756,51.561739],[-0.872748,51.560311],[-0.871155,51.557666],[-0.86793,51.556202],[-0.864966,51.553181],[-0.863634,51.549941],[-0.862525,51.54902],[-0.859761,51.548368],[-0.85753,51.548813],[-0.856261,51.548706],[-0.847047,51.545201],[-0.842744,51.544759],[-0.840923,51.545143],[-0.838464,51.546805],[-0.835747,51.546742],[-0.834301,51.545763],[-0.83273,51.545336],[-0.831363,51.545718],[-0.828886,51.54563],[-0.827883,51.546394],[-0.826353,51.549181],[-0.824151,51.550485],[-0.81692,51.550988],[-0.810515,51.552697],[-0.807128,51.552761],[-0.803268,51.551916],[-0.794471,51.551158],[-0.792964,51.551359],[-0.790975,51.552838],[-0.78679,51.553824],[-0.782517,51.556169],[-0.779353,51.560156],[-0.77712,51.564972],[-0.775874,51.566253],[-0.774155,51.567013],[-0.770924,51.5679],[-0.77021,51.566713],[-0.768518,51.565844],[-0.763063,51.566423],[-0.760313,51.565867],[-0.757461,51.564818],[-0.753864,51.566537],[-0.748832,51.56841],[-0.745132,51.570719],[-0.740634,51.571871],[-0.737731,51.573846],[-0.73376,51.574925],[-0.727864,51.577243],[-0.722923,51.577829],[-0.718946,51.577692],[-0.716906,51.577195],[-0.715048,51.576034],[-0.712262,51.572232],[-0.711445,51.568675],[-0.712192,51.565495],[-0.711202,51.564324],[-0.708485,51.56312],[-0.705468,51.562246],[-0.703368,51.56285],[-0.701524,51.565655],[-0.698813,51.565591],[-0.696238,51.56508],[-0.694529,51.563184],[-0.694177,51.562175],[-0.69219,51.559324],[-0.691203,51.556819],[-0.69127,51.548676],[-0.692678,51.544025],[-0.693635,51.542608],[-0.696402,51.540023],[-0.697807,51.53779],[-0.698092,51.536827],[-0.697692,51.534783],[-0.699722,51.531251],[-0.699995,51.529074],[-0.702052,51.523948],[-0.701505,51.521172],[-0.701603,51.518593],[-0.703566,51.512625],[-0.703165,51.511107],[-0.701839,51.510367],[-0.699025,51.50963],[-0.695258,51.510344],[-0.693306,51.510342],[-0.690884,51.509194],[-0.688467,51.508472],[-0.686284,51.507173],[-0.682834,51.503448],[-0.682407,51.501252],[-0.679365,51.497135],[-0.678499,51.494564],[-0.673501,51.492718],[-0.669979,51.490079],[-0.668191,51.489172],[-0.66578,51.488353],[-0.662284,51.487926],[-0.659058,51.487104],[-0.654759,51.487066],[-0.651936,51.485471],[-0.650779,51.485792],[-0.648219,51.488232],[-0.647226,51.489466],[-0.646075,51.49013],[-0.64036,51.490302],[-0.638104,51.491855],[-0.633828,51.492695],[-0.635707,51.495007],[-0.637674,51.495426],[-0.638134,51.496014],[-0.641074,51.496497],[-0.644447,51.496485],[-0.642212,51.500627],[-0.642971,51.502693],[-0.644932,51.50224],[-0.647858,51.500825],[-0.653465,51.500507],[-0.654344,51.501623],[-0.653921,51.504226],[-0.659271,51.504902],[-0.658952,51.507138],[-0.655602,51.506813],[-0.655415,51.508303],[-0.653968,51.508277],[-0.653039,51.510791],[-0.653961,51.511042],[-0.653241,51.515077],[-0.654979,51.518808],[-0.656811,51.518852],[-0.65888,51.519369],[-0.659573,51.520706],[-0.660142,51.525456],[-0.659945,51.528447],[-0.652762,51.529937],[-0.647991,51.532587],[-0.645178,51.534302],[-0.644763,51.536242],[-0.641857,51.537092],[-0.639723,51.537133],[-0.636792,51.537952],[-0.635367,51.537859],[-0.630536,51.538895],[-0.623771,51.537771],[-0.619703,51.53788],[-0.618955,51.536822],[-0.619636,51.535469],[-0.616824,51.534724],[-0.616512,51.53394],[-0.614562,51.53424],[-0.613376,51.5328],[-0.611811,51.533021],[-0.610536,51.531502],[-0.608434,51.53204],[-0.606404,51.532139],[-0.605982,51.529958],[-0.6022,51.528844],[-0.596222,51.52793],[-0.596472,51.525837],[-0.594666,51.525724],[-0.594985,51.524233],[-0.589851,51.524108],[-0.589868,51.522677],[-0.588412,51.523175],[-0.580992,51.523074],[-0.580868,51.525712],[-0.579229,51.528125],[-0.578363,51.530463],[-0.575979,51.53391],[-0.572754,51.533937],[-0.569181,51.532991],[-0.567256,51.532981],[-0.567593,51.530561],[-0.569932,51.529731],[-0.572837,51.529704],[-0.575095,51.5293],[-0.574546,51.528562],[-0.572436,51.527412],[-0.571775,51.52428],[-0.571062,51.523362],[-0.567503,51.521455],[-0.565381,51.521272],[-0.565045,51.520692],[-0.568969,51.517721],[-0.566668,51.514501],[-0.568646,51.511364],[-0.566656,51.510621],[-0.563971,51.5102],[-0.552993,51.509099],[-0.528854,51.510088],[-0.526348,51.508999],[-0.526185,51.50742],[-0.527408,51.505669],[-0.528908,51.501511],[-0.527979,51.501587],[-0.527861,51.49882],[-0.528752,51.497069],[-0.53182,51.493394],[-0.514145,51.493333],[-0.50881,51.493925],[-0.5009,51.495353],[-0.500539,51.49482],[-0.496077,51.494999],[-0.490025,51.494748],[-0.488674,51.495969],[-0.488587,51.496769],[-0.489469,51.497576],[-0.488848,51.498566],[-0.489744,51.498967],[-0.488745,51.500207],[-0.486167,51.500911],[-0.486241,51.501825],[-0.485148,51.502607],[-0.485045,51.505075],[-0.483921,51.505625],[-0.483212,51.507238],[-0.483512,51.5081],[-0.485536,51.510028],[-0.489787,51.511527],[-0.489922,51.513414],[-0.489561,51.514078],[-0.4912,51.515257],[-0.49233,51.517077],[-0.491631,51.518897],[-0.490367,51.520169],[-0.491173,51.52128],[-0.490522,51.522483],[-0.490257,51.524585],[-0.49082,51.526444],[-0.489456,51.527619],[-0.488974,51.529089],[-0.489887,51.530437],[-0.490129,51.532071],[-0.491189,51.533273],[-0.490482,51.534157],[-0.493329,51.535837],[-0.49549,51.538429],[-0.493585,51.541005],[-0.491807,51.541573],[-0.492098,51.542448],[-0.490782,51.545042],[-0.491393,51.546078],[-0.489312,51.546383],[-0.489514,51.547181],[-0.488149,51.54743],[-0.486597,51.550034],[-0.484228,51.551455],[-0.482665,51.551522],[-0.478882,51.554836],[-0.47733,51.555272],[-0.476596,51.558031],[-0.477519,51.560282],[-0.480421,51.560814],[-0.480753,51.561781],[-0.482794,51.562822],[-0.482245,51.563915],[-0.483222,51.56514],[-0.482579,51.565726],[-0.484763,51.566871],[-0.484013,51.571196],[-0.485061,51.572299],[-0.485534,51.573841],[-0.484026,51.575127],[-0.488061,51.576458],[-0.489466,51.578155],[-0.488553,51.579619],[-0.489603,51.581772],[-0.494825,51.584777],[-0.494942,51.586547],[-0.495741,51.588116],[-0.49721,51.589339],[-0.497913,51.590961],[-0.499542,51.592143],[-0.498783,51.593076],[-0.498569,51.594444],[-0.499402,51.595315],[-0.499635,51.596703],[-0.500545,51.598522],[-0.500596,51.59969],[-0.503262,51.599865],[-0.511405,51.599663],[-0.517837,51.60025],[-0.519552,51.600973],[-0.520595,51.601844],[-0.522502,51.605062],[-0.524283,51.610204],[-0.526301,51.613778],[-0.528231,51.614698],[-0.530059,51.617151],[-0.531981,51.625512],[-0.534541,51.629901],[-0.53567,51.634815],[-0.535641,51.635809],[-0.534131,51.637151],[-0.539261,51.638039],[-0.538838,51.640448],[-0.537392,51.642907],[-0.534905,51.645632],[-0.531958,51.64768],[-0.530928,51.649133],[-0.536666,51.652369],[-0.534254,51.652953],[-0.536463,51.655491],[-0.536339,51.660364],[-0.533275,51.660922],[-0.532626,51.663007],[-0.524255,51.657937],[-0.522778,51.658398],[-0.522361,51.659346],[-0.522532,51.663569],[-0.520995,51.668045],[-0.517512,51.667055],[-0.514719,51.665453],[-0.514064,51.667046],[-0.512468,51.668601],[-0.51002,51.669881],[-0.507893,51.671959],[-0.505108,51.673077],[-0.507928,51.677979],[-0.509818,51.678688],[-0.510897,51.679817],[-0.513486,51.679877],[-0.515394,51.679435],[-0.516806,51.680203],[-0.518977,51.680264],[-0.521655,51.67984],[-0.522465,51.678813],[-0.524934,51.678721],[-0.524986,51.679976],[-0.524273,51.682113],[-0.527602,51.68168],[-0.531123,51.680683],[-0.532118,51.681778],[-0.534795,51.68169],[-0.535051,51.680901],[-0.536445,51.68086],[-0.538889,51.679834],[-0.539626,51.680269],[-0.546284,51.680437],[-0.546699,51.683033],[-0.548696,51.682671],[-0.54916,51.684867],[-0.548628,51.687011],[-0.547116,51.689214],[-0.5434,51.692785],[-0.542953,51.693765],[-0.543218,51.695136],[-0.544381,51.697249],[-0.546885,51.698636],[-0.546751,51.701325],[-0.547668,51.703181],[-0.548836,51.703649],[-0.552419,51.704038],[-0.555331,51.705533],[-0.557213,51.707077],[-0.558077,51.708479],[-0.563148,51.711682],[-0.56242,51.715871],[-0.5611,51.718079],[-0.558481,51.7193],[-0.55584,51.721822],[-0.550414,51.723043],[-0.550297,51.724397],[-0.551435,51.725168],[-0.553597,51.728411],[-0.551555,51.730041],[-0.550083,51.730575],[-0.554304,51.732337],[-0.553,51.733334],[-0.554525,51.734129],[-0.556002,51.733214],[-0.558349,51.734108],[-0.55954,51.733412],[-0.560647,51.734076],[-0.558442,51.735647],[-0.559245,51.737332],[-0.560314,51.737291],[-0.563446,51.735668],[-0.565583,51.736546],[-0.562955,51.738279],[-0.5637,51.739617],[-0.566209,51.738472],[-0.566818,51.739036],[-0.568399,51.737542],[-0.569246,51.737815],[-0.57037,51.736802],[-0.569934,51.735936],[-0.572763,51.735864],[-0.57617,51.737822],[-0.579432,51.741258],[-0.580812,51.743639],[-0.584145,51.746768],[-0.58638,51.752116],[-0.595269,51.751315],[-0.600867,51.751356],[-0.605152,51.749868],[-0.6091,51.749471],[-0.611117,51.748095],[-0.612936,51.747427],[-0.61354,51.748298],[-0.613767,51.750913],[-0.617286,51.75265],[-0.620202,51.752883],[-0.623227,51.75437],[-0.623709,51.753477],[-0.625529,51.754388],[-0.626219,51.753636],[-0.628488,51.7546],[-0.631041,51.753049],[-0.643666,51.754087],[-0.646911,51.756038],[-0.647785,51.757298],[-0.649212,51.757618],[-0.648593,51.758548],[-0.651315,51.759931],[-0.652454,51.759362],[-0.65935,51.763487],[-0.663608,51.764832],[-0.666683,51.765133],[-0.668726,51.765727],[-0.67347,51.768472],[-0.676,51.771257],[-0.676094,51.773285],[-0.677372,51.775869],[-0.676186,51.778464],[-0.677487,51.780945],[-0.679133,51.782074],[-0.679401,51.784755],[-0.6815,51.788059],[-0.690191,51.792339],[-0.683971,51.79379],[-0.68219,51.794584],[-0.684023,51.796273],[-0.68265,51.79721],[-0.688757,51.803113],[-0.692552,51.805802],[-0.69628,51.810155],[-0.699139,51.81197],[-0.701148,51.814863],[-0.709295,51.82054],[-0.711498,51.819106],[-0.711851,51.818328],[-0.714345,51.817309],[-0.719217,51.816138],[-0.721457,51.816684],[-0.723654,51.817773],[-0.728962,51.821762],[-0.730431,51.825176],[-0.731497,51.826543],[-0.737852,51.830948],[-0.736707,51.831897],[-0.737883,51.834045],[-0.7448,51.837617],[-0.745249,51.838376],[-0.745678,51.842094],[-0.744084,51.842461],[-0.74142,51.842566],[-0.736336,51.842406],[-0.734584,51.844111],[-0.732892,51.847591],[-0.731188,51.848971],[-0.727396,51.850362],[-0.725295,51.849799],[-0.722568,51.850045],[-0.722047,51.850822],[-0.721996,51.852483],[-0.722535,51.85425],[-0.720268,51.856147],[-0.715803,51.857486],[-0.714241,51.857355],[-0.710586,51.857779],[-0.708874,51.855793],[-0.707076,51.854414],[-0.703911,51.855866],[-0.701727,51.857532],[-0.699778,51.858012],[-0.696358,51.858134],[-0.69458,51.856431],[-0.692311,51.857045],[-0.688283,51.850607],[-0.686768,51.84924],[-0.691752,51.845081],[-0.693811,51.842508],[-0.695451,51.84111],[-0.692019,51.840297],[-0.690804,51.840425],[-0.690238,51.841266],[-0.687054,51.839115],[-0.683245,51.835474],[-0.681802,51.831813],[-0.679922,51.829585],[-0.679806,51.828806],[-0.678643,51.827337],[-0.678426,51.826069],[-0.676803,51.823957],[-0.672453,51.819668],[-0.669195,51.818555],[-0.668816,51.817194],[-0.667214,51.81581],[-0.664913,51.815524],[-0.662902,51.81624],[-0.659032,51.815436],[-0.656229,51.815853],[-0.651116,51.815258],[-0.647771,51.813606],[-0.644381,51.815762],[-0.641009,51.816392],[-0.63722,51.817938],[-0.634412,51.818611],[-0.63294,51.819946],[-0.627601,51.817303],[-0.62676,51.817245],[-0.625651,51.815873],[-0.624425,51.816255],[-0.621809,51.816038],[-0.620674,51.814922],[-0.618389,51.814532],[-0.615555,51.814959],[-0.614294,51.813484],[-0.61243,51.812928],[-0.611869,51.812045],[-0.606426,51.812351],[-0.603182,51.81329],[-0.597605,51.814283],[-0.594832,51.814023],[-0.594484,51.81115],[-0.591655,51.808136],[-0.581826,51.806905],[-0.581574,51.807587],[-0.577216,51.81178],[-0.57737,51.812098],[-0.574303,51.81625],[-0.576243,51.816937],[-0.575171,51.818817],[-0.572425,51.819433],[-0.571057,51.81897],[-0.567145,51.819805],[-0.566228,51.820942],[-0.562422,51.823734],[-0.560788,51.826382],[-0.558795,51.824662],[-0.557978,51.82554],[-0.561272,51.828876],[-0.560656,51.830083],[-0.557138,51.830967],[-0.555377,51.828391],[-0.553629,51.826713],[-0.550046,51.82811],[-0.548992,51.827986],[-0.54619,51.82577],[-0.543651,51.824518],[-0.542158,51.825527],[-0.541456,51.827002],[-0.539698,51.828177],[-0.537629,51.831411],[-0.541692,51.832847],[-0.545297,51.835051],[-0.546894,51.835228],[-0.548246,51.835892],[-0.551046,51.839614],[-0.553309,51.841664],[-0.555927,51.843311],[-0.556226,51.844726],[-0.557344,51.845109],[-0.561987,51.845556],[-0.565367,51.848366],[-0.56682,51.850808],[-0.563856,51.850991],[-0.56414,51.851603],[-0.567443,51.85104],[-0.569268,51.851764],[-0.570732,51.854586],[-0.571441,51.855036],[-0.569248,51.858071],[-0.573497,51.860849],[-0.573862,51.862474],[-0.57558,51.8645],[-0.577267,51.865993],[-0.57975,51.866374],[-0.582482,51.867803],[-0.583564,51.870324],[-0.58686,51.870539],[-0.608971,51.875564],[-0.612561,51.877558],[-0.620089,51.885485],[-0.623022,51.884518],[-0.628424,51.88212],[-0.629085,51.882469],[-0.637351,51.882604],[-0.638024,51.883065],[-0.642243,51.884294],[-0.64799,51.885615],[-0.64829,51.886192],[-0.65198,51.88679],[-0.654827,51.88789],[-0.655267,51.888701],[-0.657463,51.889806],[-0.657908,51.890418],[-0.659507,51.89056],[-0.660319,51.892219],[-0.658951,51.893073],[-0.659513,51.894249],[-0.662536,51.89598],[-0.662877,51.895531],[-0.665338,51.896414],[-0.667254,51.896629],[-0.667955,51.897803],[-0.66882,51.897853],[-0.671211,51.900002],[-0.672321,51.900175],[-0.673707,51.901547],[-0.678423,51.901523],[-0.682683,51.900279],[-0.69222,51.900162],[-0.694459,51.900729],[-0.695766,51.901828],[-0.696301,51.904082],[-0.702157,51.909119],[-0.698516,51.913147],[-0.695844,51.917108],[-0.69262,51.920577],[-0.690292,51.925432],[-0.691464,51.927055],[-0.688831,51.929148],[-0.682958,51.935844],[-0.681579,51.935142],[-0.680319,51.935502],[-0.680286,51.936361],[-0.681581,51.937638],[-0.6811,51.938663],[-0.682047,51.939863],[-0.682346,51.942737],[-0.678667,51.944439],[-0.674832,51.945095],[-0.673968,51.944343],[-0.673856,51.943205],[-0.671594,51.943377],[-0.670346,51.94382],[-0.670626,51.944745],[-0.672087,51.94518],[-0.672687,51.946059],[-0.670562,51.947303],[-0.669672,51.948673],[-0.671125,51.949667],[-0.671511,51.950838],[-0.673138,51.952353],[-0.672505,51.9528],[-0.672748,51.954249],[-0.671645,51.956221],[-0.667533,51.954517],[-0.665371,51.955025],[-0.665611,51.955638],[-0.664079,51.956562],[-0.662103,51.955573],[-0.660272,51.957853],[-0.659488,51.959763],[-0.655268,51.960606],[-0.655495,51.961202],[-0.653651,51.963913],[-0.653487,51.967185],[-0.651234,51.968281],[-0.652979,51.969229],[-0.666048,51.976064],[-0.66864,51.977647],[-0.670449,51.977898],[-0.670791,51.976568],[-0.677326,51.976722],[-0.67825,51.978182],[-0.682237,51.979602],[-0.687959,51.980634],[-0.693136,51.982454],[-0.69615,51.982206],[-0.700041,51.984414],[-0.700031,51.985413],[-0.701569,51.985482],[-0.701571,51.986962],[-0.703751,51.988023],[-0.70932,51.988343],[-0.713384,51.989816],[-0.713817,51.987719],[-0.715488,51.985608],[-0.715229,51.984948],[-0.71787,51.982416],[-0.717093,51.981485],[-0.71449,51.980999],[-0.712734,51.978904],[-0.713942,51.97787],[-0.723729,51.975288],[-0.729757,51.973017],[-0.73047,51.97235],[-0.73308,51.971944],[-0.740379,51.969863],[-0.747555,51.973557],[-0.743647,51.975247],[-0.748193,51.977015],[-0.755436,51.980648],[-0.757806,51.983007],[-0.761997,51.985558],[-0.771206,51.982912],[-0.776278,51.988625],[-0.782824,51.98852],[-0.78924,51.987948],[-0.794118,51.987126],[-0.799474,51.986969],[-0.803504,51.985504],[-0.804512,51.98616],[-0.806293,51.995749],[-0.807789,51.999918],[-0.812243,52.006016],[-0.813797,52.005532],[-0.816329,52.005434],[-0.817997,52.006072],[-0.819338,52.007318],[-0.819301,52.011664],[-0.819818,52.012286],[-0.824933,52.014828],[-0.827208,52.01521],[-0.829174,52.016033],[-0.831814,52.018142],[-0.835321,52.018869],[-0.839131,52.021166],[-0.844878,52.022682],[-0.846972,52.024634],[-0.847453,52.025574],[-0.849509,52.026004],[-0.852349,52.027445],[-0.851879,52.028013],[-0.856888,52.03056],[-0.855911,52.031662],[-0.858014,52.033041],[-0.859112,52.034428],[-0.861145,52.03575],[-0.867091,52.038616],[-0.866951,52.040098],[-0.869509,52.040387],[-0.871326,52.040252]]]},"properties":{"LAD22CD":"E06000060","LAD22NM":"Buckinghamshire","BNG_E":482506,"BNG_N":208561,"LONG":-0.80569,"LAT":51.76966,"GlobalID":"a348b6c3-7d10-438f-a975-23eb3bdd16e8"},"id":57}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.495026,52.640236],[-0.497083,52.640075],[-0.499164,52.639294],[-0.502265,52.6405],[-0.504012,52.640101],[-0.506939,52.64104],[-0.509035,52.642418],[-0.511328,52.643179],[-0.513453,52.642635],[-0.514674,52.643135],[-0.515886,52.642042],[-0.516872,52.642457],[-0.518279,52.641743],[-0.520054,52.641452],[-0.521068,52.640727],[-0.521434,52.639535],[-0.520831,52.638881],[-0.520754,52.637505],[-0.523631,52.634887],[-0.528853,52.631994],[-0.530893,52.632098],[-0.533512,52.631446],[-0.533844,52.630543],[-0.534985,52.630454],[-0.535639,52.629353],[-0.534087,52.628847],[-0.535638,52.627084],[-0.538114,52.627924],[-0.53851,52.627028],[-0.540261,52.625966],[-0.541158,52.62462],[-0.539118,52.623144],[-0.538063,52.621124],[-0.539554,52.619728],[-0.538885,52.618795],[-0.539057,52.617876],[-0.540633,52.617527],[-0.541541,52.616644],[-0.543024,52.61604],[-0.542937,52.614973],[-0.544933,52.614594],[-0.550131,52.612251],[-0.54847,52.609906],[-0.548476,52.60822],[-0.547559,52.606956],[-0.551405,52.604311],[-0.552103,52.602255],[-0.552939,52.601349],[-0.552329,52.600019],[-0.549228,52.599251],[-0.549008,52.598359],[-0.543568,52.59615],[-0.542681,52.594754],[-0.544174,52.592888],[-0.545177,52.593497],[-0.547162,52.593289],[-0.553177,52.594575],[-0.555033,52.594736],[-0.558118,52.594484],[-0.559925,52.593637],[-0.561757,52.5922],[-0.561057,52.591062],[-0.560642,52.588944],[-0.561624,52.587075],[-0.562519,52.586275],[-0.564475,52.585934],[-0.565283,52.586388],[-0.567769,52.586322],[-0.568565,52.585706],[-0.569943,52.58609],[-0.571904,52.585803],[-0.575569,52.586454],[-0.577004,52.587172],[-0.578765,52.588832],[-0.579185,52.590445],[-0.577955,52.591813],[-0.577548,52.593302],[-0.579012,52.59541],[-0.581473,52.595883],[-0.583697,52.59507],[-0.584495,52.593409],[-0.582791,52.593277],[-0.583298,52.591289],[-0.585287,52.58847],[-0.586973,52.587429],[-0.588934,52.586777],[-0.591925,52.587229],[-0.594114,52.588304],[-0.596766,52.588365],[-0.59797,52.588766],[-0.603019,52.588591],[-0.603808,52.587728],[-0.605138,52.587508],[-0.605492,52.586487],[-0.607355,52.585883],[-0.608481,52.584727],[-0.612714,52.583927],[-0.614119,52.58409],[-0.617204,52.583312],[-0.616499,52.582287],[-0.618849,52.58132],[-0.619989,52.579715],[-0.621678,52.579817],[-0.624835,52.57917],[-0.626028,52.578074],[-0.62781,52.578232],[-0.628103,52.576547],[-0.632509,52.576339],[-0.633452,52.574713],[-0.633426,52.573677],[-0.636273,52.572736],[-0.63895,52.571512],[-0.64062,52.571711],[-0.641655,52.572938],[-0.642993,52.573674],[-0.646896,52.573773],[-0.646697,52.572577],[-0.647956,52.571175],[-0.651587,52.570074],[-0.654513,52.570366],[-0.658616,52.568402],[-0.660913,52.568946],[-0.661931,52.567729],[-0.664115,52.56679],[-0.666277,52.566353],[-0.668539,52.565372],[-0.668941,52.564762],[-0.671287,52.564106],[-0.670469,52.562577],[-0.67383,52.560812],[-0.672644,52.560413],[-0.672663,52.559031],[-0.674319,52.559345],[-0.674865,52.558638],[-0.677563,52.558292],[-0.682306,52.553596],[-0.679734,52.553437],[-0.68183,52.551667],[-0.6836,52.552358],[-0.685977,52.549558],[-0.68587,52.548637],[-0.687201,52.547855],[-0.687618,52.547],[-0.691984,52.545544],[-0.693965,52.545366],[-0.696622,52.546327],[-0.698028,52.545307],[-0.696753,52.54421],[-0.697714,52.543857],[-0.696967,52.54214],[-0.699237,52.542261],[-0.698271,52.54098],[-0.696237,52.540097],[-0.697952,52.539365],[-0.699188,52.537734],[-0.700544,52.537346],[-0.700275,52.535741],[-0.701439,52.533552],[-0.702882,52.533183],[-0.702818,52.532251],[-0.704864,52.531654],[-0.704654,52.531127],[-0.706737,52.530161],[-0.708895,52.529814],[-0.707832,52.528568],[-0.707987,52.527913],[-0.70956,52.527738],[-0.710022,52.526581],[-0.711917,52.526046],[-0.713659,52.524964],[-0.713367,52.524534],[-0.715299,52.523194],[-0.723586,52.52237],[-0.726874,52.522754],[-0.730047,52.521916],[-0.730311,52.521261],[-0.733498,52.52059],[-0.739392,52.518634],[-0.739256,52.517454],[-0.742104,52.517059],[-0.744365,52.516211],[-0.746842,52.516866],[-0.747261,52.514831],[-0.74956,52.514506],[-0.751246,52.512176],[-0.754626,52.51187],[-0.756156,52.510995],[-0.758396,52.511278],[-0.761027,52.514186],[-0.766189,52.513355],[-0.766558,52.514413],[-0.767816,52.514244],[-0.770044,52.515389],[-0.772329,52.51607],[-0.774867,52.518276],[-0.775718,52.517306],[-0.777378,52.518004],[-0.779112,52.518107],[-0.780293,52.517022],[-0.781988,52.517235],[-0.783962,52.515587],[-0.786991,52.515515],[-0.788346,52.514745],[-0.788861,52.513689],[-0.793335,52.515427],[-0.795471,52.51528],[-0.796161,52.516365],[-0.798397,52.516871],[-0.80048,52.518052],[-0.801792,52.516642],[-0.803872,52.517196],[-0.806345,52.518495],[-0.808573,52.518456],[-0.808942,52.519252],[-0.810867,52.519367],[-0.811107,52.517853],[-0.812174,52.517394],[-0.812591,52.515952],[-0.814924,52.515541],[-0.816459,52.516433],[-0.818259,52.515549],[-0.820634,52.515746],[-0.820768,52.516671],[-0.822409,52.51799],[-0.824807,52.517795],[-0.825778,52.517127],[-0.827148,52.517212],[-0.826965,52.518387],[-0.828742,52.518624],[-0.831163,52.519487],[-0.833237,52.519311],[-0.833432,52.518382],[-0.834764,52.517886],[-0.83658,52.519273],[-0.838594,52.518364],[-0.840356,52.519103],[-0.839788,52.520146],[-0.841108,52.520555],[-0.842162,52.519532],[-0.845346,52.519367],[-0.84677,52.521252],[-0.847795,52.520481],[-0.850226,52.521666],[-0.851613,52.523126],[-0.851519,52.523642],[-0.857857,52.523913],[-0.858471,52.524511],[-0.858277,52.52562],[-0.859024,52.527094],[-0.861251,52.526779],[-0.8633,52.528333],[-0.863865,52.527091],[-0.865918,52.526797],[-0.868758,52.526981],[-0.868826,52.525887],[-0.870994,52.524752],[-0.871336,52.524148],[-0.870784,52.522359],[-0.871285,52.52097],[-0.872443,52.520707],[-0.871743,52.519431],[-0.872611,52.5184],[-0.873757,52.518512],[-0.874343,52.517572],[-0.878354,52.517293],[-0.877947,52.516218],[-0.880326,52.516208],[-0.882357,52.515122],[-0.883409,52.513808],[-0.88193,52.511989],[-0.881149,52.51232],[-0.879995,52.51019],[-0.881016,52.50926],[-0.880429,52.508729],[-0.881432,52.507697],[-0.880522,52.507022],[-0.880916,52.506182],[-0.880086,52.504455],[-0.881156,52.504444],[-0.882727,52.5034],[-0.882291,52.502003],[-0.880966,52.500463],[-0.87935,52.499846],[-0.879455,52.498408],[-0.880652,52.497133],[-0.881793,52.496882],[-0.88231,52.494682],[-0.882126,52.493166],[-0.883722,52.492263],[-0.888949,52.491808],[-0.892042,52.492213],[-0.895602,52.492044],[-0.89671,52.490642],[-0.895132,52.489553],[-0.895214,52.488101],[-0.897875,52.487414],[-0.897793,52.485612],[-0.893403,52.485393],[-0.891627,52.484924],[-0.890501,52.484127],[-0.887848,52.483765],[-0.888861,52.483005],[-0.884535,52.481307],[-0.885249,52.480272],[-0.885092,52.4787],[-0.88404,52.477328],[-0.882219,52.476185],[-0.882362,52.471406],[-0.884832,52.471518],[-0.886193,52.469345],[-0.889557,52.470441],[-0.892704,52.467223],[-0.895499,52.465503],[-0.897528,52.462496],[-0.898919,52.461144],[-0.901281,52.459756],[-0.900782,52.459138],[-0.901544,52.45811],[-0.904149,52.456431],[-0.904674,52.454931],[-0.905777,52.454578],[-0.905851,52.453328],[-0.905342,52.448384],[-0.90386,52.445505],[-0.904384,52.442171],[-0.898424,52.441532],[-0.893246,52.441554],[-0.87929,52.439174],[-0.872956,52.436778],[-0.86707,52.435293],[-0.864328,52.434225],[-0.868707,52.432856],[-0.870982,52.429303],[-0.873407,52.426578],[-0.875047,52.423533],[-0.876664,52.423553],[-0.878281,52.422943],[-0.882002,52.422623],[-0.88526,52.423643],[-0.886937,52.423354],[-0.886248,52.420854],[-0.887261,52.419592],[-0.888005,52.416321],[-0.888965,52.415214],[-0.888249,52.413745],[-0.888172,52.411728],[-0.889282,52.409556],[-0.889288,52.406305],[-0.890386,52.403695],[-0.890603,52.398686],[-0.887217,52.399123],[-0.885319,52.400336],[-0.880609,52.401545],[-0.877019,52.401737],[-0.873696,52.402674],[-0.866138,52.399667],[-0.861808,52.396179],[-0.857254,52.395314],[-0.854398,52.394112],[-0.850093,52.393311],[-0.849832,52.393686],[-0.84057,52.392847],[-0.839843,52.39114],[-0.833739,52.384261],[-0.831698,52.376857],[-0.829509,52.375087],[-0.826295,52.373575],[-0.819031,52.371556],[-0.81672,52.370308],[-0.805541,52.366394],[-0.805767,52.366199],[-0.799742,52.363883],[-0.795373,52.360749],[-0.793183,52.357842],[-0.791203,52.355967],[-0.790166,52.353512],[-0.788655,52.347307],[-0.787675,52.345359],[-0.786662,52.34441],[-0.785956,52.341839],[-0.786089,52.338643],[-0.78754,52.332855],[-0.786851,52.331363],[-0.78578,52.330617],[-0.789294,52.32919],[-0.790588,52.327578],[-0.792573,52.326176],[-0.792848,52.323797],[-0.794962,52.323049],[-0.805533,52.316934],[-0.809368,52.315179],[-0.814233,52.311524],[-0.817951,52.309596],[-0.816747,52.308573],[-0.817157,52.30799],[-0.815709,52.306791],[-0.815929,52.305856],[-0.814906,52.304458],[-0.814867,52.302782],[-0.814121,52.302279],[-0.813642,52.300288],[-0.812534,52.298649],[-0.810986,52.29536],[-0.808381,52.292874],[-0.805898,52.288255],[-0.805939,52.287311],[-0.807131,52.2863],[-0.807736,52.282935],[-0.807073,52.28153],[-0.807633,52.278441],[-0.809142,52.275328],[-0.808685,52.274097],[-0.807303,52.27219],[-0.80569,52.270841],[-0.802958,52.266701],[-0.803466,52.265865],[-0.80284,52.26413],[-0.803053,52.263456],[-0.801379,52.261357],[-0.801687,52.258557],[-0.801422,52.257299],[-0.801225,52.253525],[-0.801401,52.252651],[-0.795084,52.254081],[-0.791416,52.242241],[-0.7842,52.243529],[-0.781387,52.244569],[-0.779151,52.246514],[-0.775333,52.24601],[-0.774197,52.245289],[-0.769017,52.24587],[-0.767961,52.24684],[-0.76672,52.24618],[-0.765838,52.247462],[-0.762789,52.248745],[-0.760992,52.248367],[-0.759377,52.247508],[-0.753708,52.247872],[-0.748803,52.246031],[-0.744104,52.243583],[-0.741872,52.24399],[-0.736792,52.242733],[-0.727269,52.237933],[-0.726015,52.235371],[-0.724595,52.233903],[-0.724844,52.232855],[-0.723526,52.230422],[-0.720651,52.228323],[-0.720429,52.226911],[-0.717976,52.224913],[-0.717997,52.223481],[-0.715749,52.221509],[-0.714223,52.221441],[-0.716938,52.217936],[-0.7174,52.215779],[-0.716949,52.21329],[-0.71171,52.197356],[-0.707433,52.192993],[-0.705456,52.191571],[-0.701672,52.193308],[-0.696339,52.194304],[-0.69408,52.195266],[-0.68663,52.195814],[-0.684654,52.196336],[-0.681236,52.195724],[-0.680023,52.196141],[-0.675256,52.195804],[-0.673425,52.196067],[-0.668136,52.195034],[-0.668664,52.197731],[-0.661461,52.208126],[-0.658498,52.210084],[-0.653575,52.215239],[-0.652365,52.217263],[-0.648634,52.220876],[-0.643619,52.223362],[-0.637332,52.227318],[-0.639655,52.228951],[-0.642729,52.233325],[-0.643448,52.235859],[-0.643085,52.238544],[-0.645495,52.242461],[-0.648968,52.252713],[-0.64979,52.254107],[-0.650034,52.256778],[-0.652761,52.266588],[-0.653656,52.268289],[-0.65108,52.269055],[-0.6469,52.27118],[-0.639908,52.272442],[-0.637663,52.272401],[-0.635475,52.271932],[-0.631413,52.270048],[-0.626922,52.273381],[-0.626978,52.274877],[-0.620057,52.276923],[-0.611075,52.278532],[-0.610617,52.279498],[-0.607621,52.278857],[-0.602894,52.278751],[-0.600307,52.277888],[-0.596102,52.276047],[-0.588974,52.274069],[-0.586336,52.272831],[-0.588111,52.270778],[-0.580884,52.265232],[-0.579354,52.266435],[-0.571583,52.258247],[-0.565693,52.253468],[-0.558046,52.25635],[-0.554738,52.25818],[-0.552326,52.256921],[-0.549969,52.256465],[-0.546144,52.256727],[-0.54452,52.256127],[-0.542879,52.255974],[-0.541312,52.256317],[-0.539899,52.257306],[-0.537625,52.261651],[-0.537738,52.262856],[-0.539325,52.266095],[-0.536432,52.268208],[-0.53119,52.270402],[-0.532524,52.272539],[-0.534165,52.277615],[-0.534461,52.279545],[-0.534096,52.281355],[-0.538147,52.284824],[-0.538692,52.285819],[-0.541964,52.288855],[-0.54197,52.289942],[-0.540605,52.291492],[-0.516866,52.312952],[-0.514051,52.314697],[-0.519797,52.316622],[-0.51983,52.317693],[-0.51684,52.317651],[-0.506655,52.319914],[-0.48714,52.321083],[-0.481881,52.320762],[-0.478133,52.319282],[-0.476262,52.318064],[-0.474151,52.319752],[-0.465366,52.322953],[-0.46451,52.326102],[-0.464796,52.33031],[-0.46523,52.332614],[-0.467098,52.335286],[-0.466657,52.338928],[-0.467773,52.338441],[-0.472436,52.339574],[-0.483264,52.340903],[-0.480504,52.344431],[-0.478429,52.346349],[-0.477339,52.348409],[-0.478272,52.349336],[-0.480609,52.349815],[-0.484158,52.351778],[-0.484278,52.352387],[-0.488014,52.35371],[-0.492989,52.357455],[-0.496006,52.358388],[-0.498701,52.3601],[-0.499886,52.365201],[-0.499487,52.366993],[-0.49853,52.366839],[-0.492304,52.371714],[-0.488519,52.374024],[-0.490461,52.375103],[-0.495946,52.379516],[-0.494197,52.381203],[-0.489609,52.379226],[-0.486738,52.379031],[-0.485442,52.381322],[-0.484761,52.381631],[-0.478848,52.380154],[-0.477957,52.380738],[-0.475828,52.380121],[-0.474867,52.380267],[-0.469888,52.379896],[-0.468291,52.382894],[-0.464057,52.381602],[-0.462474,52.383045],[-0.456832,52.382329],[-0.456856,52.384094],[-0.454747,52.384573],[-0.454938,52.385702],[-0.450886,52.384752],[-0.448756,52.383729],[-0.446222,52.383213],[-0.443762,52.383857],[-0.439255,52.386314],[-0.436998,52.388187],[-0.43292,52.396329],[-0.43188,52.396379],[-0.424835,52.399629],[-0.422436,52.400126],[-0.421906,52.400912],[-0.415936,52.403805],[-0.420279,52.405066],[-0.419612,52.407325],[-0.418431,52.408151],[-0.417073,52.411599],[-0.413001,52.412601],[-0.410834,52.412794],[-0.40746,52.413493],[-0.400947,52.415464],[-0.397889,52.418329],[-0.392335,52.419938],[-0.389545,52.421766],[-0.38694,52.423885],[-0.379459,52.42796],[-0.372366,52.430445],[-0.36594,52.431665],[-0.362408,52.433531],[-0.364422,52.434049],[-0.366495,52.435036],[-0.367734,52.434496],[-0.369342,52.43494],[-0.370307,52.436848],[-0.371867,52.436843],[-0.371279,52.438059],[-0.370065,52.437884],[-0.36886,52.43962],[-0.370217,52.43993],[-0.368799,52.441209],[-0.36707,52.443804],[-0.363063,52.446585],[-0.363488,52.447106],[-0.36188,52.448227],[-0.361833,52.449003],[-0.363482,52.45061],[-0.360257,52.452505],[-0.35546,52.456158],[-0.354028,52.458035],[-0.353511,52.460275],[-0.35056,52.462927],[-0.349472,52.462164],[-0.344815,52.46584],[-0.341591,52.466943],[-0.343065,52.468498],[-0.342279,52.469104],[-0.348281,52.471256],[-0.349718,52.472888],[-0.348994,52.473563],[-0.347481,52.478013],[-0.349237,52.479294],[-0.350275,52.480733],[-0.350068,52.482548],[-0.352081,52.483545],[-0.353317,52.484771],[-0.354615,52.485102],[-0.356378,52.486716],[-0.356802,52.487799],[-0.359419,52.490211],[-0.358125,52.491055],[-0.357661,52.492122],[-0.358424,52.493003],[-0.358142,52.49389],[-0.35969,52.495872],[-0.359195,52.497341],[-0.357975,52.49821],[-0.357331,52.49996],[-0.356218,52.500422],[-0.354647,52.501878],[-0.353226,52.502334],[-0.352176,52.503325],[-0.354079,52.504832],[-0.354345,52.506495],[-0.355787,52.505923],[-0.358184,52.505788],[-0.362258,52.507375],[-0.368681,52.508786],[-0.371465,52.51035],[-0.373011,52.510802],[-0.375253,52.51093],[-0.377927,52.510658],[-0.380895,52.512775],[-0.383441,52.513799],[-0.387462,52.51618],[-0.386624,52.51673],[-0.390832,52.518719],[-0.390749,52.51944],[-0.394648,52.519807],[-0.396749,52.520616],[-0.398492,52.52088],[-0.400471,52.521877],[-0.404309,52.521692],[-0.40872,52.522518],[-0.411847,52.524753],[-0.413603,52.52568],[-0.413821,52.527443],[-0.413346,52.52843],[-0.412235,52.528778],[-0.411917,52.529747],[-0.410066,52.531202],[-0.40714,52.531477],[-0.404668,52.532307],[-0.404602,52.533582],[-0.402643,52.534912],[-0.401283,52.538685],[-0.40239,52.540705],[-0.402527,52.541876],[-0.403657,52.542815],[-0.403678,52.545163],[-0.402204,52.546808],[-0.402061,52.548322],[-0.403306,52.548925],[-0.411224,52.549954],[-0.41174,52.550808],[-0.414078,52.551546],[-0.415339,52.551553],[-0.416044,52.552715],[-0.416368,52.55566],[-0.417101,52.555886],[-0.419594,52.558962],[-0.416908,52.56075],[-0.416582,52.561975],[-0.415254,52.562123],[-0.413367,52.561504],[-0.411772,52.561799],[-0.40985,52.561624],[-0.408728,52.562144],[-0.407291,52.564055],[-0.40736,52.565821],[-0.411932,52.568906],[-0.414634,52.569518],[-0.415695,52.570104],[-0.414718,52.572289],[-0.415892,52.573384],[-0.415079,52.576006],[-0.415382,52.578743],[-0.418177,52.579734],[-0.419983,52.581355],[-0.424633,52.581493],[-0.425028,52.582413],[-0.435395,52.580506],[-0.447693,52.578684],[-0.461006,52.576025],[-0.471146,52.574627],[-0.475387,52.574371],[-0.478815,52.573645],[-0.481455,52.576304],[-0.480736,52.576956],[-0.478834,52.577439],[-0.485332,52.579981],[-0.489423,52.580554],[-0.49236,52.581672],[-0.497652,52.586851],[-0.494541,52.588673],[-0.49415,52.589703],[-0.490707,52.590534],[-0.488629,52.596909],[-0.485849,52.598931],[-0.48533,52.600155],[-0.48544,52.60218],[-0.481024,52.602787],[-0.479637,52.61445],[-0.47722,52.614677],[-0.473729,52.614433],[-0.474791,52.61691],[-0.470961,52.617953],[-0.472095,52.621285],[-0.471063,52.621364],[-0.47096,52.623768],[-0.473504,52.628234],[-0.475311,52.628901],[-0.476761,52.630564],[-0.485153,52.632836],[-0.486108,52.634422],[-0.48806,52.632505],[-0.490805,52.63537],[-0.491114,52.636368],[-0.492196,52.636873],[-0.493904,52.64007],[-0.494774,52.640314],[-0.495026,52.640236]]]},"properties":{"LAD22CD":"E06000061","LAD22NM":"North Northamptonshire","BNG_E":493590,"BNG_N":281718,"LONG":-0.62504,"LAT":52.42546,"GlobalID":"9fedaaae-774b-4893-8a8c-991601280bad"},"id":58}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.901281,52.459756],[-0.901544,52.460843],[-0.904578,52.462879],[-0.906584,52.463079],[-0.907724,52.461495],[-0.909885,52.461488],[-0.911257,52.463506],[-0.91423,52.46228],[-0.916746,52.462646],[-0.922309,52.464202],[-0.923792,52.464234],[-0.930232,52.465943],[-0.93614,52.466947],[-0.935853,52.467237],[-0.942192,52.467772],[-0.942645,52.470856],[-0.944214,52.470652],[-0.94386,52.472764],[-0.946446,52.473215],[-0.946464,52.475319],[-0.948571,52.475969],[-0.949376,52.476982],[-0.952408,52.477462],[-0.958887,52.475782],[-0.96431,52.476437],[-0.964664,52.47684],[-0.967849,52.47721],[-0.969234,52.476187],[-0.969252,52.475531],[-0.971424,52.474862],[-0.972797,52.473777],[-0.972085,52.472433],[-0.975012,52.471789],[-0.979323,52.470117],[-0.982127,52.470582],[-0.982723,52.4716],[-0.984211,52.471596],[-0.989301,52.470499],[-0.99084,52.469422],[-0.992331,52.469842],[-0.994977,52.469427],[-0.997914,52.471036],[-1.000693,52.47094],[-1.002827,52.466912],[-1.005637,52.465026],[-1.010911,52.46406],[-1.010833,52.463726],[-1.013795,52.462847],[-1.014706,52.462955],[-1.016773,52.461778],[-1.020359,52.461005],[-1.022698,52.460117],[-1.024647,52.458724],[-1.026903,52.458985],[-1.027741,52.458505],[-1.028722,52.456113],[-1.030406,52.454813],[-1.034649,52.453313],[-1.035782,52.452339],[-1.037853,52.45154],[-1.041123,52.44838],[-1.044511,52.445748],[-1.044099,52.444527],[-1.042778,52.443492],[-1.039684,52.443351],[-1.037219,52.444449],[-1.035134,52.443246],[-1.033828,52.440449],[-1.034274,52.436285],[-1.035016,52.435108],[-1.037643,52.433751],[-1.039249,52.430739],[-1.042276,52.430674],[-1.044928,52.429345],[-1.049497,52.42584],[-1.049994,52.425209],[-1.04986,52.422262],[-1.054883,52.421944],[-1.056144,52.42314],[-1.059762,52.423891],[-1.061359,52.424854],[-1.061054,52.426367],[-1.062066,52.427598],[-1.064454,52.428464],[-1.068114,52.428857],[-1.069234,52.430268],[-1.068501,52.431043],[-1.06995,52.432318],[-1.069325,52.433546],[-1.070899,52.433953],[-1.076644,52.434924],[-1.079392,52.436334],[-1.082786,52.436026],[-1.084382,52.436298],[-1.084633,52.435185],[-1.088753,52.432922],[-1.090031,52.433425],[-1.091876,52.432612],[-1.094596,52.430237],[-1.094048,52.42834],[-1.09336,52.427683],[-1.095559,52.426516],[-1.097538,52.425961],[-1.098205,52.425055],[-1.101179,52.425093],[-1.105503,52.42333],[-1.107082,52.422376],[-1.111913,52.421152],[-1.113561,52.421592],[-1.117991,52.420912],[-1.119614,52.418229],[-1.120757,52.417209],[-1.122782,52.418058],[-1.125704,52.417697],[-1.12927,52.416103],[-1.129069,52.41521],[-1.132381,52.413625],[-1.134392,52.412301],[-1.134911,52.411294],[-1.134813,52.409684],[-1.13664,52.407615],[-1.13629,52.406419],[-1.13815,52.405415],[-1.138609,52.404568],[-1.137926,52.403918],[-1.138823,52.403066],[-1.138536,52.402044],[-1.140301,52.401571],[-1.142269,52.399705],[-1.144502,52.398948],[-1.14526,52.399251],[-1.147842,52.398352],[-1.14947,52.397008],[-1.151967,52.399307],[-1.155066,52.399348],[-1.156583,52.400051],[-1.160374,52.399624],[-1.164337,52.398679],[-1.165172,52.398961],[-1.16665,52.397826],[-1.166276,52.396851],[-1.169349,52.395642],[-1.171255,52.396015],[-1.1752,52.394528],[-1.177268,52.394062],[-1.17799,52.392895],[-1.180451,52.393215],[-1.183992,52.392171],[-1.184574,52.392563],[-1.187772,52.393306],[-1.188047,52.395016],[-1.189382,52.396382],[-1.190386,52.395243],[-1.194065,52.396184],[-1.196342,52.395686],[-1.197941,52.395676],[-1.1991,52.396238],[-1.201613,52.396732],[-1.20265,52.396622],[-1.172127,52.361301],[-1.174691,52.360547],[-1.175019,52.356251],[-1.178193,52.355113],[-1.179235,52.354377],[-1.183818,52.354626],[-1.184243,52.353668],[-1.186616,52.354272],[-1.187825,52.353088],[-1.191495,52.351768],[-1.19241,52.351762],[-1.195641,52.353085],[-1.19698,52.35274],[-1.202306,52.35237],[-1.204205,52.35127],[-1.206182,52.350852],[-1.208138,52.349641],[-1.212108,52.348955],[-1.214087,52.34965],[-1.220262,52.349735],[-1.223782,52.348618],[-1.223919,52.347493],[-1.225899,52.346664],[-1.227536,52.346502],[-1.229822,52.347057],[-1.23339,52.346516],[-1.241333,52.342609],[-1.243546,52.341993],[-1.245574,52.341873],[-1.248577,52.340978],[-1.249256,52.339937],[-1.250744,52.339154],[-1.252983,52.338854],[-1.258016,52.337259],[-1.262444,52.334083],[-1.263075,52.33288],[-1.262454,52.33219],[-1.264198,52.330647],[-1.264422,52.329078],[-1.265267,52.328377],[-1.260894,52.327864],[-1.257279,52.325515],[-1.253396,52.32405],[-1.252364,52.324073],[-1.248781,52.3233],[-1.247636,52.321956],[-1.244729,52.321463],[-1.242079,52.321899],[-1.237036,52.32032],[-1.235079,52.320556],[-1.234217,52.320161],[-1.231311,52.320021],[-1.225891,52.318956],[-1.223099,52.318552],[-1.215161,52.316945],[-1.212992,52.315723],[-1.212013,52.316081],[-1.209234,52.315204],[-1.210491,52.313575],[-1.212179,52.310804],[-1.215558,52.308829],[-1.217159,52.307209],[-1.217537,52.305984],[-1.220907,52.305852],[-1.220902,52.303357],[-1.223882,52.302755],[-1.224795,52.301489],[-1.226416,52.30062],[-1.226492,52.298185],[-1.228956,52.297957],[-1.228859,52.295171],[-1.231831,52.294278],[-1.233783,52.290328],[-1.230749,52.28953],[-1.230951,52.288774],[-1.228699,52.288696],[-1.227672,52.289298],[-1.225417,52.288164],[-1.223482,52.286264],[-1.223834,52.285419],[-1.222817,52.284664],[-1.222543,52.282239],[-1.223371,52.281673],[-1.221173,52.279406],[-1.221773,52.278706],[-1.221691,52.276451],[-1.220024,52.276053],[-1.220961,52.273555],[-1.220132,52.27298],[-1.218774,52.271123],[-1.219336,52.270361],[-1.217005,52.268812],[-1.217591,52.267762],[-1.215732,52.266374],[-1.216556,52.26536],[-1.215885,52.264035],[-1.217081,52.262678],[-1.22063,52.260648],[-1.223709,52.259966],[-1.223941,52.258734],[-1.226545,52.257701],[-1.228012,52.255902],[-1.230165,52.2554],[-1.232459,52.254101],[-1.232999,52.253259],[-1.232058,52.251686],[-1.232369,52.251227],[-1.234704,52.250448],[-1.23516,52.249271],[-1.237767,52.248435],[-1.240568,52.247961],[-1.246682,52.2491],[-1.250483,52.248302],[-1.251746,52.248641],[-1.25448,52.247568],[-1.25807,52.244674],[-1.264799,52.241881],[-1.266152,52.24083],[-1.266769,52.239469],[-1.266065,52.238888],[-1.267621,52.237438],[-1.266353,52.236705],[-1.266891,52.235242],[-1.275373,52.238032],[-1.27997,52.238632],[-1.284644,52.238577],[-1.283972,52.237102],[-1.282714,52.23632],[-1.280147,52.233385],[-1.278618,52.230067],[-1.278432,52.228707],[-1.272594,52.227511],[-1.273511,52.226765],[-1.275676,52.226322],[-1.276908,52.225182],[-1.27636,52.223138],[-1.275276,52.222014],[-1.273782,52.221354],[-1.270956,52.219233],[-1.26774,52.217757],[-1.264153,52.216556],[-1.260917,52.215993],[-1.259862,52.211853],[-1.257308,52.208576],[-1.25736,52.205614],[-1.25478,52.198889],[-1.254982,52.197831],[-1.262539,52.195962],[-1.268003,52.196531],[-1.271424,52.196368],[-1.274075,52.1954],[-1.277573,52.195809],[-1.281138,52.195775],[-1.281195,52.191953],[-1.283644,52.191601],[-1.290788,52.192133],[-1.294894,52.191681],[-1.300595,52.191775],[-1.308859,52.189779],[-1.313135,52.190468],[-1.314387,52.188112],[-1.316161,52.18666],[-1.317447,52.184855],[-1.318195,52.183006],[-1.318191,52.181417],[-1.319946,52.181361],[-1.322813,52.181801],[-1.326509,52.178397],[-1.328639,52.17702],[-1.331482,52.174137],[-1.332333,52.172324],[-1.331116,52.171416],[-1.332292,52.17054],[-1.331591,52.169521],[-1.331897,52.168485],[-1.329939,52.167351],[-1.330075,52.166302],[-1.328666,52.165477],[-1.325309,52.162772],[-1.323896,52.162103],[-1.324381,52.160918],[-1.320875,52.159206],[-1.321287,52.158306],[-1.319376,52.157667],[-1.319907,52.156965],[-1.318269,52.155811],[-1.317748,52.153352],[-1.315964,52.152276],[-1.313256,52.151078],[-1.312383,52.1498],[-1.310778,52.1495],[-1.311754,52.147919],[-1.309411,52.147633],[-1.308617,52.146544],[-1.30643,52.145553],[-1.308679,52.144345],[-1.308433,52.143509],[-1.304911,52.141636],[-1.305375,52.141214],[-1.30196,52.139795],[-1.302111,52.139293],[-1.299342,52.138393],[-1.299168,52.137189],[-1.297922,52.137146],[-1.297685,52.135285],[-1.295094,52.134712],[-1.29555,52.133823],[-1.293413,52.133051],[-1.293625,52.132586],[-1.290633,52.129301],[-1.288525,52.127975],[-1.284145,52.124057],[-1.282201,52.122637],[-1.281557,52.122621],[-1.278357,52.118635],[-1.27683,52.117076],[-1.272663,52.114315],[-1.270216,52.113569],[-1.264822,52.110765],[-1.25992,52.108722],[-1.257036,52.106163],[-1.252928,52.103874],[-1.254004,52.102487],[-1.251848,52.102018],[-1.25184,52.101366],[-1.250025,52.100485],[-1.248798,52.099079],[-1.24796,52.095773],[-1.25588,52.095692],[-1.258145,52.096418],[-1.2622,52.096527],[-1.262474,52.096946],[-1.269665,52.098017],[-1.271576,52.097928],[-1.276197,52.096818],[-1.280677,52.094158],[-1.285157,52.093247],[-1.287125,52.092639],[-1.295146,52.09338],[-1.297765,52.09195],[-1.299827,52.091449],[-1.30391,52.091642],[-1.304382,52.092074],[-1.307963,52.092273],[-1.312178,52.090726],[-1.316826,52.089776],[-1.316729,52.08896],[-1.320825,52.087628],[-1.321261,52.086543],[-1.320612,52.085785],[-1.321346,52.08487],[-1.319475,52.083861],[-1.320542,52.082195],[-1.319506,52.080777],[-1.31816,52.079921],[-1.316615,52.079606],[-1.313103,52.079901],[-1.308763,52.079506],[-1.299361,52.080101],[-1.299616,52.078312],[-1.297509,52.078057],[-1.298904,52.075355],[-1.30189,52.075194],[-1.301991,52.073789],[-1.303925,52.073554],[-1.303488,52.071979],[-1.305471,52.072093],[-1.306903,52.070314],[-1.305369,52.070294],[-1.300067,52.069363],[-1.301253,52.066104],[-1.302176,52.065019],[-1.30381,52.064307],[-1.307769,52.064352],[-1.307647,52.06319],[-1.30846,52.062362],[-1.309086,52.060725],[-1.30738,52.05759],[-1.31292,52.051453],[-1.311335,52.050534],[-1.307396,52.04723],[-1.30615,52.046875],[-1.302214,52.046416],[-1.302339,52.045929],[-1.300132,52.045377],[-1.300136,52.043648],[-1.297578,52.042748],[-1.296447,52.040865],[-1.295286,52.040299],[-1.294599,52.037824],[-1.293303,52.034312],[-1.292069,52.032788],[-1.2917,52.030978],[-1.293459,52.02968],[-1.294313,52.028036],[-1.293439,52.027521],[-1.29019,52.027448],[-1.285317,52.026477],[-1.286083,52.025616],[-1.28383,52.025038],[-1.284455,52.023754],[-1.283582,52.023199],[-1.28442,52.020911],[-1.28296,52.019912],[-1.282831,52.019203],[-1.281112,52.018547],[-1.281674,52.017785],[-1.280211,52.017025],[-1.280633,52.016524],[-1.278164,52.014273],[-1.278632,52.011368],[-1.28003,52.011055],[-1.282157,52.011316],[-1.284521,52.010822],[-1.283713,52.00936],[-1.279775,52.008757],[-1.278552,52.008289],[-1.277614,52.007238],[-1.277066,52.005359],[-1.28036,52.003428],[-1.280835,52.001437],[-1.28162,52.000293],[-1.282704,52.000354],[-1.283706,51.998089],[-1.282416,51.996332],[-1.283499,51.99617],[-1.284671,51.994843],[-1.282335,51.993073],[-1.283878,51.991325],[-1.287329,51.989534],[-1.287376,51.987655],[-1.284451,51.982587],[-1.283447,51.982016],[-1.281576,51.979976],[-1.280865,51.982364],[-1.270245,51.982947],[-1.267653,51.982626],[-1.260916,51.980926],[-1.259418,51.981264],[-1.257261,51.982522],[-1.252787,51.98334],[-1.251172,51.984229],[-1.250151,51.985311],[-1.249008,51.985714],[-1.247379,51.985065],[-1.241612,51.986293],[-1.23929,51.984588],[-1.236354,51.983719],[-1.234442,51.983534],[-1.232095,51.98236],[-1.230381,51.982035],[-1.229701,51.981367],[-1.227109,51.981248],[-1.223644,51.980407],[-1.22104,51.980181],[-1.217223,51.980334],[-1.206898,51.978265],[-1.203535,51.978579],[-1.198001,51.977291],[-1.19626,51.977431],[-1.194395,51.97932],[-1.19069,51.981523],[-1.18834,51.981218],[-1.184726,51.981704],[-1.183003,51.981492],[-1.180108,51.981695],[-1.176688,51.982512],[-1.176055,51.982045],[-1.174361,51.983324],[-1.172183,51.985984],[-1.163824,51.993412],[-1.156651,51.992234],[-1.15611,51.993444],[-1.15148,51.99311],[-1.148723,51.995052],[-1.143907,51.997019],[-1.140173,51.997651],[-1.134329,51.997296],[-1.133743,51.999643],[-1.13153,52.003096],[-1.131253,52.004885],[-1.126967,52.006042],[-1.126328,52.007045],[-1.125345,52.007105],[-1.123131,52.011358],[-1.12143,52.012411],[-1.119826,52.01568],[-1.118087,52.015426],[-1.120004,52.017146],[-1.121523,52.016968],[-1.128897,52.017921],[-1.13616,52.020066],[-1.136061,52.022467],[-1.13545,52.024272],[-1.133677,52.026595],[-1.132473,52.029689],[-1.132939,52.03174],[-1.13176,52.031967],[-1.130805,52.03339],[-1.129959,52.03351],[-1.126602,52.037189],[-1.127102,52.037976],[-1.125914,52.038742],[-1.126339,52.039353],[-1.125146,52.040582],[-1.123143,52.04163],[-1.122203,52.044954],[-1.11969,52.04649],[-1.117224,52.047345],[-1.11358,52.048098],[-1.110987,52.048204],[-1.106259,52.049081],[-1.103602,52.047761],[-1.09887,52.048641],[-1.098535,52.049886],[-1.096127,52.051351],[-1.092446,52.051127],[-1.090329,52.051414],[-1.0889,52.052377],[-1.085379,52.052186],[-1.083276,52.052361],[-1.082232,52.052885],[-1.081106,52.054471],[-1.0804,52.0561],[-1.080872,52.056773],[-1.077479,52.057879],[-1.076652,52.058851],[-1.071657,52.058135],[-1.070713,52.059556],[-1.068106,52.061053],[-1.064811,52.061543],[-1.062056,52.062736],[-1.057818,52.061033],[-1.052959,52.05966],[-1.051798,52.060717],[-1.049772,52.061394],[-1.048255,52.062847],[-1.040049,52.065924],[-1.038203,52.066089],[-1.037052,52.065245],[-1.034618,52.064549],[-1.033158,52.063523],[-1.030947,52.062897],[-1.027669,52.063734],[-1.026405,52.064417],[-1.026121,52.065722],[-1.028437,52.06788],[-1.029551,52.070106],[-1.031753,52.071168],[-1.040814,52.073187],[-1.042238,52.073876],[-1.028687,52.075024],[-1.026338,52.075429],[-1.023082,52.074938],[-1.021456,52.074959],[-1.020077,52.0733],[-1.016261,52.072644],[-1.013507,52.072867],[-1.012866,52.071599],[-1.0109,52.072001],[-1.007541,52.072095],[-1.005878,52.073403],[-1.004306,52.07341],[-1.002435,52.072732],[-0.998243,52.072581],[-0.995491,52.073237],[-0.993944,52.072832],[-0.993439,52.072123],[-0.991065,52.070907],[-0.989123,52.070833],[-0.98428,52.069717],[-0.982383,52.069972],[-0.981141,52.071343],[-0.977464,52.071676],[-0.975299,52.072496],[-0.973358,52.072723],[-0.972224,52.072333],[-0.970149,52.072368],[-0.967805,52.070911],[-0.965103,52.074839],[-0.962725,52.076359],[-0.960763,52.078644],[-0.959549,52.079283],[-0.951873,52.081534],[-0.950323,52.079865],[-0.947203,52.07918],[-0.945102,52.076885],[-0.940056,52.075842],[-0.94449,52.073185],[-0.944391,52.070032],[-0.941749,52.068774],[-0.940459,52.067427],[-0.942043,52.06659],[-0.940482,52.065047],[-0.941647,52.064273],[-0.939316,52.06216],[-0.93764,52.062856],[-0.933744,52.062636],[-0.93788,52.061202],[-0.936594,52.058189],[-0.935712,52.057918],[-0.933449,52.055083],[-0.931872,52.054027],[-0.931833,52.052182],[-0.930113,52.049542],[-0.930284,52.045741],[-0.929817,52.04505],[-0.930207,52.043127],[-0.928178,52.042222],[-0.927265,52.039405],[-0.924445,52.036194],[-0.922564,52.035351],[-0.914376,52.029843],[-0.912109,52.026586],[-0.911776,52.024972],[-0.908377,52.02224],[-0.90603,52.021221],[-0.904578,52.022334],[-0.903876,52.023704],[-0.900246,52.025019],[-0.899698,52.026388],[-0.898302,52.027473],[-0.897264,52.027286],[-0.895756,52.028217],[-0.893659,52.028768],[-0.89134,52.029901],[-0.890756,52.031166],[-0.889236,52.031521],[-0.887159,52.03011],[-0.883019,52.028241],[-0.880294,52.028694],[-0.877469,52.029972],[-0.877304,52.031032],[-0.876269,52.032495],[-0.876111,52.033505],[-0.872067,52.036244],[-0.87317,52.037366],[-0.872121,52.03977],[-0.871326,52.040252],[-0.87179,52.041846],[-0.869704,52.04483],[-0.867734,52.046221],[-0.865707,52.046683],[-0.864793,52.045784],[-0.863231,52.046019],[-0.862595,52.045261],[-0.859423,52.044602],[-0.857883,52.046026],[-0.855586,52.04735],[-0.855705,52.047949],[-0.852901,52.049997],[-0.852445,52.050841],[-0.853284,52.052248],[-0.855629,52.053175],[-0.858,52.053225],[-0.860403,52.054525],[-0.860973,52.055449],[-0.85987,52.056226],[-0.860626,52.058718],[-0.863017,52.060272],[-0.862679,52.060934],[-0.85927,52.063158],[-0.857359,52.064091],[-0.855241,52.063972],[-0.85064,52.064683],[-0.845233,52.062973],[-0.842759,52.063134],[-0.839501,52.063828],[-0.835588,52.066419],[-0.834193,52.068316],[-0.832793,52.069316],[-0.832535,52.072045],[-0.834071,52.072746],[-0.834937,52.074326],[-0.836026,52.075063],[-0.83603,52.076814],[-0.835246,52.077621],[-0.835249,52.07981],[-0.83678,52.080593],[-0.837443,52.082293],[-0.839207,52.082835],[-0.841292,52.084089],[-0.843805,52.084899],[-0.843711,52.085706],[-0.845096,52.08644],[-0.845929,52.089032],[-0.846785,52.090787],[-0.846713,52.091509],[-0.850079,52.092415],[-0.851681,52.092038],[-0.856034,52.093109],[-0.856375,52.095046],[-0.857918,52.097508],[-0.860293,52.09801],[-0.861329,52.09785],[-0.863522,52.098404],[-0.864846,52.099256],[-0.868624,52.099633],[-0.868777,52.101089],[-0.866022,52.101952],[-0.86527,52.102938],[-0.869863,52.105097],[-0.869794,52.106427],[-0.86902,52.107071],[-0.870243,52.107748],[-0.868618,52.108441],[-0.869804,52.110456],[-0.872966,52.112665],[-0.875262,52.112204],[-0.876501,52.112944],[-0.878461,52.11251],[-0.880378,52.113047],[-0.88153,52.11267],[-0.883676,52.11357],[-0.885676,52.113382],[-0.887303,52.11453],[-0.886263,52.11564],[-0.883705,52.116569],[-0.881957,52.118191],[-0.88179,52.119854],[-0.880683,52.120191],[-0.880767,52.12175],[-0.880022,52.122373],[-0.880816,52.12349],[-0.879654,52.124178],[-0.880615,52.125402],[-0.880721,52.126332],[-0.878864,52.126139],[-0.868984,52.130626],[-0.868637,52.130089],[-0.865993,52.130165],[-0.853529,52.131674],[-0.85294,52.130338],[-0.851265,52.129344],[-0.846739,52.12941],[-0.838229,52.130714],[-0.835768,52.132843],[-0.832111,52.131253],[-0.828205,52.132611],[-0.828632,52.135697],[-0.831363,52.141294],[-0.831967,52.143683],[-0.816545,52.143525],[-0.814041,52.142472],[-0.813552,52.143773],[-0.812685,52.144352],[-0.812807,52.14571],[-0.810697,52.147646],[-0.809183,52.148492],[-0.80928,52.150013],[-0.807247,52.151594],[-0.806948,52.15282],[-0.807588,52.156979],[-0.805553,52.157375],[-0.802673,52.15755],[-0.801957,52.158679],[-0.799708,52.157064],[-0.798917,52.155368],[-0.796853,52.153404],[-0.794097,52.154047],[-0.793563,52.152283],[-0.792091,52.151329],[-0.79047,52.152101],[-0.787715,52.154241],[-0.786403,52.156536],[-0.784187,52.158676],[-0.783413,52.160276],[-0.780313,52.163357],[-0.783096,52.164188],[-0.783194,52.165925],[-0.779515,52.16559],[-0.777975,52.168732],[-0.77359,52.168888],[-0.765332,52.171099],[-0.764141,52.167799],[-0.762717,52.166312],[-0.762747,52.16498],[-0.762048,52.163446],[-0.760977,52.164007],[-0.759848,52.165704],[-0.756811,52.16745],[-0.750657,52.167639],[-0.749735,52.166877],[-0.746066,52.168872],[-0.744795,52.17028],[-0.742539,52.170955],[-0.73895,52.171178],[-0.738751,52.172236],[-0.737431,52.173668],[-0.734731,52.1735],[-0.72926,52.179473],[-0.725489,52.180876],[-0.720738,52.181902],[-0.719008,52.182565],[-0.716028,52.185441],[-0.711619,52.188187],[-0.708662,52.188791],[-0.705044,52.190787],[-0.705456,52.191571],[-0.707433,52.192993],[-0.71171,52.197356],[-0.716949,52.21329],[-0.7174,52.215779],[-0.716938,52.217936],[-0.714223,52.221441],[-0.715749,52.221509],[-0.717997,52.223481],[-0.717976,52.224913],[-0.720429,52.226911],[-0.720651,52.228323],[-0.723526,52.230422],[-0.724844,52.232855],[-0.724595,52.233903],[-0.726015,52.235371],[-0.727269,52.237933],[-0.736792,52.242733],[-0.741872,52.24399],[-0.744104,52.243583],[-0.748803,52.246031],[-0.753708,52.247872],[-0.759377,52.247508],[-0.760992,52.248367],[-0.762789,52.248745],[-0.765838,52.247462],[-0.76672,52.24618],[-0.767961,52.24684],[-0.769017,52.24587],[-0.774197,52.245289],[-0.775333,52.24601],[-0.779151,52.246514],[-0.781387,52.244569],[-0.7842,52.243529],[-0.791416,52.242241],[-0.795084,52.254081],[-0.801401,52.252651],[-0.801225,52.253525],[-0.801422,52.257299],[-0.801687,52.258557],[-0.801379,52.261357],[-0.803053,52.263456],[-0.80284,52.26413],[-0.803466,52.265865],[-0.802958,52.266701],[-0.80569,52.270841],[-0.807303,52.27219],[-0.808685,52.274097],[-0.809142,52.275328],[-0.807633,52.278441],[-0.807073,52.28153],[-0.807736,52.282935],[-0.807131,52.2863],[-0.805939,52.287311],[-0.805898,52.288255],[-0.808381,52.292874],[-0.810986,52.29536],[-0.812534,52.298649],[-0.813642,52.300288],[-0.814121,52.302279],[-0.814867,52.302782],[-0.814906,52.304458],[-0.815929,52.305856],[-0.815709,52.306791],[-0.817157,52.30799],[-0.816747,52.308573],[-0.817951,52.309596],[-0.814233,52.311524],[-0.809368,52.315179],[-0.805533,52.316934],[-0.794962,52.323049],[-0.792848,52.323797],[-0.792573,52.326176],[-0.790588,52.327578],[-0.789294,52.32919],[-0.78578,52.330617],[-0.786851,52.331363],[-0.78754,52.332855],[-0.786089,52.338643],[-0.785956,52.341839],[-0.786662,52.34441],[-0.787675,52.345359],[-0.788655,52.347307],[-0.790166,52.353512],[-0.791203,52.355967],[-0.793183,52.357842],[-0.795373,52.360749],[-0.799742,52.363883],[-0.805767,52.366199],[-0.805541,52.366394],[-0.81672,52.370308],[-0.819031,52.371556],[-0.826295,52.373575],[-0.829509,52.375087],[-0.831698,52.376857],[-0.833739,52.384261],[-0.839843,52.39114],[-0.84057,52.392847],[-0.849832,52.393686],[-0.850093,52.393311],[-0.854398,52.394112],[-0.857254,52.395314],[-0.861808,52.396179],[-0.866138,52.399667],[-0.873696,52.402674],[-0.877019,52.401737],[-0.880609,52.401545],[-0.885319,52.400336],[-0.887217,52.399123],[-0.890603,52.398686],[-0.890386,52.403695],[-0.889288,52.406305],[-0.889282,52.409556],[-0.888172,52.411728],[-0.888249,52.413745],[-0.888965,52.415214],[-0.888005,52.416321],[-0.887261,52.419592],[-0.886248,52.420854],[-0.886937,52.423354],[-0.88526,52.423643],[-0.882002,52.422623],[-0.878281,52.422943],[-0.876664,52.423553],[-0.875047,52.423533],[-0.873407,52.426578],[-0.870982,52.429303],[-0.868707,52.432856],[-0.864328,52.434225],[-0.86707,52.435293],[-0.872956,52.436778],[-0.87929,52.439174],[-0.893246,52.441554],[-0.898424,52.441532],[-0.904384,52.442171],[-0.90386,52.445505],[-0.905342,52.448384],[-0.905851,52.453328],[-0.905777,52.454578],[-0.904674,52.454931],[-0.904149,52.456431],[-0.901544,52.45811],[-0.900782,52.459138],[-0.901281,52.459756]]]},"properties":{"LAD22CD":"E06000062","LAD22NM":"West Northamptonshire","BNG_E":467187,"BNG_N":263879,"LONG":-1.01682,"LAT":52.26898,"GlobalID":"438ae807-e5f2-4e1d-bdcc-2e4080bbd22b"},"id":59}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.155281,52.23723],[0.151262,52.232867],[0.147667,52.22989],[0.12987,52.23565],[0.127606,52.233839],[0.125,52.2343],[0.118712,52.23132],[0.117406,52.228266],[0.11305,52.229073],[0.10783,52.230582],[0.101179,52.226974],[0.095515,52.224346],[0.093783,52.222573],[0.09251,52.223132],[0.089996,52.22109],[0.089405,52.221523],[0.087548,52.220934],[0.085634,52.219796],[0.08508,52.220046],[0.081543,52.218231],[0.075141,52.217111],[0.074971,52.216789],[0.068645,52.21611],[0.06864,52.214933],[0.071117,52.215126],[0.069801,52.212178],[0.074242,52.211535],[0.073665,52.209874],[0.073947,52.208381],[0.077328,52.207868],[0.077568,52.206056],[0.079037,52.205815],[0.078957,52.204353],[0.085534,52.203254],[0.084698,52.201495],[0.090536,52.200233],[0.09231,52.199499],[0.094891,52.199333],[0.09623,52.19756],[0.09757,52.197309],[0.097407,52.195088],[0.096384,52.192851],[0.096851,52.19208],[0.099723,52.191828],[0.100245,52.192431],[0.104057,52.191513],[0.104714,52.190656],[0.104749,52.189011],[0.102828,52.188134],[0.102027,52.186513],[0.099989,52.184944],[0.100445,52.182658],[0.099248,52.182204],[0.098132,52.180558],[0.099634,52.179335],[0.099496,52.176688],[0.101393,52.175859],[0.101313,52.173813],[0.099927,52.172763],[0.099287,52.171328],[0.106945,52.169893],[0.106092,52.168299],[0.10785,52.168326],[0.105827,52.166183],[0.104682,52.163427],[0.101101,52.160725],[0.103429,52.157942],[0.120578,52.164994],[0.126822,52.166754],[0.126814,52.167056],[0.130181,52.16807],[0.130588,52.167817],[0.141756,52.171005],[0.154927,52.164623],[0.159885,52.168448],[0.162629,52.172481],[0.171961,52.17124],[0.176416,52.170944],[0.181329,52.169491],[0.181706,52.170603],[0.181181,52.183065],[0.181719,52.185264],[0.181349,52.186881],[0.183118,52.186917],[0.183213,52.187848],[0.181022,52.187865],[0.182041,52.189965],[0.184552,52.191485],[0.181702,52.193128],[0.183501,52.195771],[0.181088,52.196546],[0.182686,52.198111],[0.180756,52.198911],[0.181504,52.199558],[0.179932,52.200322],[0.178934,52.201414],[0.179921,52.202251],[0.17741,52.203262],[0.178276,52.204076],[0.175749,52.205458],[0.173075,52.203959],[0.171235,52.20381],[0.167344,52.204148],[0.168591,52.205047],[0.170876,52.206013],[0.170301,52.207017],[0.170407,52.208889],[0.17301,52.213392],[0.173606,52.213267],[0.175201,52.215564],[0.175844,52.217241],[0.16548,52.217906],[0.164968,52.219272],[0.163828,52.219103],[0.15686,52.223318],[0.156172,52.224951],[0.154851,52.226487],[0.157323,52.227494],[0.160978,52.231008],[0.163462,52.230083],[0.164154,52.23077],[0.16665,52.230136],[0.16906,52.233551],[0.171336,52.232958],[0.171439,52.23384],[0.170092,52.234324],[0.169447,52.235249],[0.167339,52.235785],[0.166231,52.234255],[0.155281,52.23723]]]},"properties":{"LAD22CD":"E07000008","LAD22NM":"Cambridge","BNG_E":545420,"BNG_N":257901,"LONG":0.126436,"LAT":52.20017,"GlobalID":"6442858f-8178-4e4c-aee7-9d805d7f321c"},"id":60}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.245523,52.500555],[0.238788,52.509186],[0.236319,52.507291],[0.201632,52.480476],[0.200727,52.480869],[0.170716,52.457557],[0.171597,52.45715],[0.175937,52.460519],[0.177086,52.460978],[0.179317,52.45876],[0.155922,52.440577],[0.155344,52.440174],[0.151042,52.442264],[0.145138,52.437626],[0.14539,52.437483],[0.123841,52.42097],[0.118687,52.42346],[0.120838,52.431121],[0.129839,52.435729],[0.129143,52.436646],[0.126471,52.437855],[0.122068,52.435301],[0.120837,52.435488],[0.120114,52.434125],[0.116975,52.433062],[0.117065,52.431582],[0.116032,52.429855],[0.11511,52.42989],[0.113905,52.428167],[0.11387,52.427362],[0.111803,52.427888],[0.110636,52.427682],[0.107526,52.425635],[0.10619,52.425325],[0.088352,52.429692],[0.087208,52.42974],[0.084899,52.428097],[0.082386,52.427229],[0.081669,52.426593],[0.081108,52.424803],[0.082891,52.423615],[0.081419,52.422194],[0.079925,52.421326],[0.077918,52.42078],[0.07485,52.42145],[0.072874,52.421099],[0.070211,52.421487],[0.070173,52.420596],[0.062681,52.418005],[0.058773,52.415438],[0.055121,52.414401],[0.052534,52.414567],[0.050057,52.415118],[0.049101,52.416059],[0.049562,52.416746],[0.046716,52.4187],[0.045381,52.419102],[0.043646,52.418125],[0.04335,52.416415],[0.041687,52.413359],[0.045149,52.411986],[0.047967,52.411266],[0.052589,52.408837],[0.050172,52.407358],[0.050206,52.406647],[0.052035,52.405047],[0.052967,52.401611],[0.055131,52.400151],[0.05518,52.399278],[0.056199,52.397835],[0.05445,52.396564],[0.054376,52.395403],[0.046468,52.392244],[0.034421,52.38575],[0.036325,52.383638],[0.038832,52.382775],[0.041949,52.380689],[0.043707,52.375612],[0.045976,52.37181],[0.046747,52.368366],[0.047592,52.36773],[0.047897,52.366484],[0.049184,52.364487],[0.048665,52.363988],[0.0494,52.362871],[0.050479,52.359009],[0.051204,52.358329],[0.09322,52.390856],[0.100138,52.398755],[0.10849,52.405743],[0.115072,52.410659],[0.123796,52.415298],[0.140254,52.421503],[0.155091,52.432616],[0.245523,52.500555]]],[[[0.429344,52.436427],[0.427768,52.437222],[0.424556,52.442716],[0.42581,52.443742],[0.423778,52.444923],[0.423355,52.453705],[0.42838,52.4543],[0.426297,52.455078],[0.423931,52.456401],[0.416494,52.459461],[0.405908,52.463402],[0.404126,52.464552],[0.402089,52.465348],[0.400399,52.467291],[0.397969,52.468753],[0.396303,52.470902],[0.394436,52.472238],[0.391916,52.475529],[0.384276,52.477692],[0.380706,52.479539],[0.37916,52.482402],[0.377124,52.484276],[0.37602,52.486049],[0.373089,52.487775],[0.371735,52.491004],[0.367144,52.495943],[0.367062,52.501174],[0.364993,52.50087],[0.363989,52.499461],[0.362093,52.498933],[0.36109,52.499215],[0.359407,52.500839],[0.355221,52.500756],[0.352814,52.501484],[0.349758,52.501088],[0.3478,52.502149],[0.345033,52.501685],[0.341699,52.502908],[0.337934,52.505882],[0.330937,52.509136],[0.328765,52.509083],[0.323329,52.507722],[0.318305,52.507657],[0.317743,52.508739],[0.318394,52.50959],[0.318257,52.511897],[0.317293,52.513008],[0.315561,52.512697],[0.30936,52.513622],[0.289531,52.510721],[0.278634,52.508557],[0.268503,52.508977],[0.257304,52.507083],[0.256476,52.507714],[0.246041,52.499891],[0.24566,52.50038],[0.154084,52.431541],[0.140421,52.421382],[0.123911,52.415118],[0.115445,52.410677],[0.106573,52.403947],[0.100194,52.398486],[0.093507,52.390779],[0.049991,52.356839],[0.04708,52.355168],[0.046381,52.354671],[0.044176,52.35277],[0.049595,52.34949],[0.056681,52.346392],[0.059296,52.344188],[0.065264,52.341367],[0.073873,52.338441],[0.07659,52.337051],[0.08221,52.334863],[0.084528,52.334656],[0.08688,52.335646],[0.089494,52.334843],[0.091042,52.334914],[0.093555,52.334145],[0.096506,52.3313],[0.099744,52.331087],[0.102621,52.330292],[0.104797,52.328762],[0.107978,52.329309],[0.110287,52.328205],[0.115433,52.328373],[0.120033,52.328133],[0.123052,52.326935],[0.125917,52.326672],[0.128281,52.325405],[0.130578,52.325121],[0.134394,52.322895],[0.138452,52.321121],[0.140316,52.32067],[0.142854,52.32125],[0.142168,52.322664],[0.143177,52.324084],[0.147352,52.32414],[0.14905,52.325528],[0.151909,52.324637],[0.162576,52.324186],[0.16292,52.323477],[0.162155,52.322265],[0.162326,52.321526],[0.164427,52.320322],[0.166212,52.317943],[0.167569,52.317562],[0.169232,52.317803],[0.17079,52.319276],[0.175357,52.319833],[0.177693,52.321],[0.181601,52.321203],[0.189485,52.323096],[0.192714,52.323114],[0.195897,52.324181],[0.197289,52.32429],[0.20001,52.323407],[0.198605,52.318412],[0.203279,52.316899],[0.205885,52.316847],[0.238951,52.320325],[0.239875,52.321971],[0.238466,52.323714],[0.239315,52.32559],[0.243778,52.325361],[0.244455,52.324537],[0.248009,52.322821],[0.248505,52.321709],[0.247753,52.32049],[0.249024,52.319091],[0.250274,52.31921],[0.248032,52.311612],[0.247325,52.310545],[0.247257,52.309203],[0.246193,52.307044],[0.244778,52.305756],[0.245938,52.304067],[0.247103,52.303866],[0.246036,52.301166],[0.244057,52.299616],[0.243135,52.297357],[0.241241,52.295546],[0.241112,52.294557],[0.242003,52.292106],[0.241488,52.290936],[0.240468,52.290432],[0.236786,52.289933],[0.230313,52.286454],[0.229857,52.285892],[0.229705,52.283177],[0.228117,52.28116],[0.224193,52.278442],[0.222651,52.276374],[0.220464,52.274604],[0.218761,52.274235],[0.216372,52.274284],[0.215089,52.273881],[0.213973,52.271462],[0.21158,52.269918],[0.214602,52.26714],[0.216998,52.266077],[0.217926,52.265073],[0.220618,52.263541],[0.219359,52.262607],[0.218513,52.260429],[0.218764,52.259779],[0.21047,52.24946],[0.215278,52.24967],[0.218149,52.249222],[0.21776,52.248149],[0.219039,52.247094],[0.2208,52.243389],[0.222187,52.24289],[0.222031,52.241706],[0.226253,52.23973],[0.229498,52.236585],[0.228473,52.235835],[0.227689,52.234355],[0.225295,52.2317],[0.230438,52.228925],[0.231385,52.229696],[0.230896,52.230502],[0.232857,52.231489],[0.235006,52.228826],[0.23978,52.226024],[0.24256,52.22549],[0.244573,52.222763],[0.247884,52.221241],[0.249692,52.21925],[0.249277,52.218634],[0.254408,52.214523],[0.257321,52.213126],[0.260804,52.211985],[0.26899,52.208095],[0.273431,52.205497],[0.278159,52.204074],[0.278016,52.203564],[0.280627,52.202643],[0.28754,52.201186],[0.296722,52.196587],[0.304172,52.193633],[0.310991,52.190474],[0.310379,52.185727],[0.318112,52.181837],[0.321241,52.179772],[0.321939,52.17884],[0.32496,52.178912],[0.33066,52.17738],[0.334444,52.175745],[0.334277,52.17545],[0.338451,52.174402],[0.339873,52.173278],[0.341959,52.172374],[0.346798,52.171265],[0.351686,52.168701],[0.361664,52.167305],[0.364078,52.167963],[0.369023,52.167323],[0.370957,52.166341],[0.372716,52.166771],[0.377434,52.1666],[0.3761,52.164525],[0.376341,52.163233],[0.383672,52.161649],[0.387133,52.161985],[0.38891,52.161801],[0.391596,52.159126],[0.393961,52.159449],[0.394914,52.15797],[0.399185,52.158286],[0.402312,52.159418],[0.405447,52.159589],[0.406836,52.159133],[0.409171,52.156691],[0.409857,52.156424],[0.412582,52.15712],[0.417276,52.159307],[0.421838,52.160379],[0.426163,52.15992],[0.42712,52.160386],[0.43064,52.159497],[0.435916,52.159495],[0.438186,52.160721],[0.438279,52.163037],[0.437075,52.164202],[0.438706,52.165712],[0.441095,52.164981],[0.444361,52.164746],[0.443554,52.166458],[0.443304,52.168594],[0.444747,52.170942],[0.446597,52.171768],[0.448213,52.171983],[0.452191,52.173204],[0.454185,52.172732],[0.457142,52.171237],[0.46101,52.171416],[0.463703,52.170544],[0.468374,52.167736],[0.47019,52.164945],[0.47073,52.163259],[0.472457,52.163992],[0.474455,52.165858],[0.477241,52.167571],[0.478636,52.167605],[0.479264,52.165965],[0.481716,52.166301],[0.482436,52.165676],[0.48593,52.165165],[0.48745,52.164503],[0.48973,52.165663],[0.491333,52.165102],[0.492667,52.167417],[0.489789,52.168046],[0.488763,52.169154],[0.487465,52.169797],[0.48875,52.171603],[0.491257,52.171987],[0.491084,52.174291],[0.493221,52.175584],[0.493032,52.17619],[0.494171,52.178183],[0.493164,52.181066],[0.493964,52.181496],[0.494575,52.184153],[0.493847,52.184578],[0.495056,52.185517],[0.494623,52.186598],[0.494975,52.188733],[0.496821,52.189824],[0.49683,52.191314],[0.499161,52.192144],[0.500653,52.193294],[0.499772,52.194559],[0.502555,52.196027],[0.500692,52.197472],[0.501701,52.199032],[0.502133,52.203047],[0.502891,52.204003],[0.504073,52.204208],[0.50313,52.207036],[0.506699,52.208524],[0.507374,52.212352],[0.508673,52.212327],[0.50865,52.213981],[0.512821,52.213689],[0.512551,52.218241],[0.513241,52.222943],[0.513058,52.225178],[0.514484,52.226779],[0.513229,52.2281],[0.50736,52.230003],[0.50089,52.235539],[0.494931,52.239258],[0.492752,52.237989],[0.491754,52.238892],[0.490021,52.237713],[0.489327,52.238532],[0.486116,52.2365],[0.484164,52.234798],[0.4857,52.23406],[0.483003,52.232197],[0.480337,52.232682],[0.476128,52.233945],[0.477921,52.234527],[0.471857,52.240343],[0.470783,52.240975],[0.465112,52.240376],[0.459632,52.243819],[0.455561,52.247594],[0.453336,52.247555],[0.450421,52.243335],[0.449276,52.243667],[0.446056,52.243596],[0.446263,52.242942],[0.443404,52.242637],[0.434195,52.249503],[0.432273,52.251562],[0.42976,52.251502],[0.426965,52.253603],[0.414518,52.247861],[0.417361,52.246262],[0.420931,52.24271],[0.420676,52.241962],[0.421335,52.239691],[0.415272,52.238119],[0.411507,52.240117],[0.408809,52.239051],[0.39496,52.23068],[0.384648,52.234006],[0.371249,52.226556],[0.357423,52.234158],[0.342684,52.242343],[0.346313,52.243626],[0.35141,52.244702],[0.356665,52.246288],[0.356027,52.246819],[0.360893,52.249422],[0.358101,52.252508],[0.350765,52.258344],[0.342775,52.263476],[0.344752,52.264569],[0.340002,52.267688],[0.344057,52.269808],[0.342415,52.269954],[0.349068,52.273692],[0.355225,52.279322],[0.355459,52.279855],[0.352655,52.282317],[0.35065,52.28296],[0.353078,52.285085],[0.359222,52.289158],[0.358653,52.290234],[0.360634,52.293572],[0.35877,52.297358],[0.360736,52.297814],[0.368869,52.296521],[0.370978,52.294849],[0.37626,52.293562],[0.377869,52.291252],[0.378433,52.291814],[0.378727,52.293523],[0.382723,52.293266],[0.386302,52.28997],[0.385536,52.289644],[0.385944,52.285878],[0.385363,52.282998],[0.393438,52.281173],[0.395354,52.280455],[0.394663,52.278899],[0.403714,52.274495],[0.409547,52.269035],[0.419627,52.25976],[0.424206,52.255872],[0.425287,52.256256],[0.432644,52.258099],[0.453801,52.263694],[0.459545,52.265646],[0.494211,52.271989],[0.495801,52.273294],[0.498803,52.273021],[0.498679,52.27397],[0.49508,52.275797],[0.496872,52.27771],[0.496824,52.280251],[0.498081,52.281321],[0.497717,52.281893],[0.500164,52.282839],[0.498869,52.283787],[0.499104,52.284613],[0.501211,52.284865],[0.504769,52.284716],[0.504701,52.286365],[0.501349,52.289297],[0.496344,52.291179],[0.488396,52.296079],[0.485525,52.295278],[0.485431,52.297533],[0.483965,52.298245],[0.482501,52.299712],[0.481533,52.299734],[0.479144,52.301847],[0.477327,52.30196],[0.476508,52.30316],[0.47411,52.303983],[0.471469,52.304437],[0.471112,52.305513],[0.469356,52.307078],[0.46629,52.307925],[0.464554,52.307824],[0.462093,52.308815],[0.461407,52.310994],[0.460498,52.311665],[0.459013,52.314314],[0.458993,52.315482],[0.4575,52.316296],[0.447989,52.316913],[0.445654,52.317666],[0.442805,52.317157],[0.441134,52.316473],[0.43883,52.316816],[0.431376,52.315825],[0.429629,52.320052],[0.42909,52.32391],[0.424221,52.329216],[0.430251,52.331362],[0.431814,52.332566],[0.437642,52.335294],[0.436947,52.337118],[0.437773,52.337683],[0.437483,52.338652],[0.438335,52.340556],[0.440379,52.342088],[0.441583,52.344751],[0.441573,52.345905],[0.442508,52.34693],[0.442501,52.348832],[0.440854,52.349113],[0.4373,52.350601],[0.435444,52.352183],[0.432972,52.352222],[0.431369,52.352747],[0.429529,52.352851],[0.427521,52.353704],[0.425131,52.3521],[0.422642,52.352362],[0.420808,52.352022],[0.419558,52.352561],[0.419568,52.353654],[0.420532,52.355844],[0.418761,52.356708],[0.419225,52.357936],[0.415597,52.35979],[0.409956,52.360191],[0.407691,52.361512],[0.407328,52.363092],[0.400214,52.37295],[0.389106,52.387374],[0.384606,52.392252],[0.382085,52.396273],[0.374777,52.409729],[0.417654,52.42813],[0.425313,52.430327],[0.423207,52.433966],[0.425337,52.434143],[0.428,52.435072],[0.429344,52.436427]]]]},"properties":{"LAD22CD":"E07000009","LAD22NM":"East Cambridgeshire","BNG_E":555576,"BNG_N":275765,"LONG":0.283149,"LAT":52.35788,"GlobalID":"e8646922-762c-4bae-a84e-683029395751"},"id":61}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.119702,52.577506],[-0.117319,52.577802],[-0.08619,52.582881],[-0.119702,52.577506]]],[[[0.236319,52.507291],[0.213641,52.518473],[0.206123,52.519635],[0.215063,52.522454],[0.216646,52.520863],[0.219706,52.523147],[0.223173,52.521384],[0.224825,52.522424],[0.222387,52.52391],[0.225685,52.525942],[0.226282,52.525621],[0.230591,52.52791],[0.228823,52.53084],[0.225604,52.53257],[0.220292,52.528921],[0.21494,52.532052],[0.211055,52.530714],[0.208134,52.530087],[0.207687,52.53187],[0.205847,52.533851],[0.210084,52.535473],[0.209374,52.53611],[0.213145,52.538172],[0.203872,52.545405],[0.206321,52.544755],[0.208553,52.544639],[0.211236,52.545236],[0.214359,52.546969],[0.214625,52.549107],[0.213546,52.548932],[0.208943,52.54698],[0.206943,52.547243],[0.20514,52.547901],[0.204203,52.549459],[0.204708,52.554656],[0.205992,52.555868],[0.2116,52.555418],[0.214097,52.556199],[0.216972,52.558769],[0.217238,52.560594],[0.216525,52.561059],[0.214864,52.560831],[0.212309,52.561146],[0.209434,52.562872],[0.206736,52.56361],[0.205631,52.565569],[0.206823,52.56759],[0.213792,52.568567],[0.216124,52.569487],[0.218326,52.570964],[0.218486,52.572226],[0.218036,52.573408],[0.215278,52.57472],[0.21463,52.575522],[0.214604,52.577924],[0.21578,52.579446],[0.202611,52.580095],[0.199544,52.582758],[0.198087,52.586093],[0.198154,52.588788],[0.1972,52.58908],[0.199148,52.591792],[0.193852,52.592103],[0.193929,52.595404],[0.19516,52.595166],[0.191626,52.598889],[0.192559,52.599384],[0.191599,52.601517],[0.194629,52.601625],[0.195106,52.602266],[0.197067,52.602217],[0.198334,52.602772],[0.201519,52.603136],[0.201387,52.604606],[0.202641,52.605606],[0.203433,52.607641],[0.204878,52.609182],[0.204989,52.610966],[0.205614,52.611803],[0.209312,52.613535],[0.217386,52.614525],[0.216937,52.614983],[0.212539,52.616797],[0.210864,52.617928],[0.217062,52.621583],[0.2193,52.621812],[0.215209,52.624471],[0.203182,52.630226],[0.196575,52.632191],[0.192028,52.634266],[0.189718,52.635724],[0.188092,52.63848],[0.185674,52.640514],[0.183117,52.641657],[0.180497,52.641986],[0.179183,52.642474],[0.176188,52.64439],[0.173966,52.647201],[0.169925,52.650435],[0.169595,52.652756],[0.17834,52.652636],[0.176279,52.655691],[0.183842,52.655662],[0.183063,52.659089],[0.184138,52.660091],[0.183581,52.662919],[0.184411,52.667],[0.184429,52.672141],[0.181079,52.672099],[0.180836,52.673259],[0.182488,52.673406],[0.183367,52.674029],[0.184503,52.676339],[0.184716,52.677895],[0.180415,52.678085],[0.178378,52.678402],[0.174633,52.678402],[0.171931,52.678911],[0.169871,52.678657],[0.166388,52.68056],[0.162401,52.67948],[0.15976,52.679642],[0.159635,52.680465],[0.157144,52.679693],[0.157173,52.680683],[0.15486,52.680793],[0.154062,52.682166],[0.154069,52.679702],[0.153156,52.67782],[0.153103,52.675573],[0.157792,52.670772],[0.159501,52.667453],[0.159491,52.666648],[0.158211,52.664958],[0.155578,52.664572],[0.151807,52.663191],[0.151414,52.660817],[0.130419,52.642064],[0.122822,52.637985],[0.10545,52.632164],[0.096092,52.627963],[0.074898,52.616576],[0.064929,52.610895],[0.061895,52.606553],[0.039978,52.602215],[-0.012628,52.594113],[-0.023931,52.592074],[-0.027067,52.591797],[-0.081367,52.58336],[-0.083496,52.582562],[-0.087501,52.582521],[-0.11998,52.577229],[-0.121183,52.577255],[-0.166014,52.569573],[-0.176967,52.569808],[-0.18698,52.568507],[-0.181696,52.566503],[-0.189879,52.565443],[-0.189188,52.562936],[-0.187635,52.560448],[-0.188516,52.559884],[-0.195056,52.554452],[-0.197874,52.550806],[-0.191031,52.550339],[-0.190619,52.547667],[-0.185628,52.544937],[-0.186631,52.54271],[-0.18785,52.541863],[-0.190066,52.539679],[-0.188289,52.537081],[-0.185978,52.535617],[-0.18225,52.533984],[-0.17902,52.533708],[-0.176304,52.53237],[-0.17365,52.532118],[-0.170661,52.531284],[-0.167055,52.527662],[-0.160273,52.523251],[-0.15127,52.516201],[-0.147729,52.514223],[-0.143446,52.51118],[-0.129638,52.500939],[-0.114436,52.48904],[-0.104763,52.493817],[-0.105451,52.494663],[-0.102135,52.496414],[-0.104561,52.498255],[-0.097652,52.501705],[-0.090425,52.496212],[-0.070884,52.505892],[-0.069675,52.516859],[-0.057551,52.51216],[-0.054568,52.513396],[-0.048399,52.511016],[-0.04797,52.510538],[-0.05071,52.509064],[-0.051664,52.508118],[-0.052862,52.504466],[-0.05272,52.502024],[-0.051319,52.502449],[-0.045186,52.502695],[-0.040188,52.502403],[-0.038507,52.501845],[-0.039355,52.500238],[-0.039103,52.498314],[-0.040298,52.482734],[-0.040644,52.482585],[-0.0376,52.478515],[-0.041689,52.477016],[-0.039021,52.475926],[-0.038855,52.473286],[-0.031685,52.473048],[-0.018534,52.467629],[-0.009323,52.462181],[-0.008567,52.460477],[-0.008431,52.45869],[-0.00698,52.456771],[-0.002571,52.454642],[-0.00121,52.454275],[0.00191,52.454125],[0.007498,52.454837],[0.00881,52.454655],[0.011248,52.451773],[0.011302,52.44939],[0.012092,52.448365],[0.018189,52.444743],[0.021637,52.443533],[0.023173,52.442468],[0.02407,52.44052],[0.024165,52.438235],[0.023569,52.436562],[0.021964,52.435079],[0.02228,52.433849],[0.023916,52.432795],[0.032377,52.430247],[0.034143,52.428282],[0.034057,52.427269],[0.03065,52.424736],[0.029869,52.422969],[0.026373,52.420864],[0.019037,52.414307],[0.019403,52.413609],[0.023451,52.41083],[0.02291,52.40936],[0.023715,52.406775],[0.026903,52.405661],[0.026729,52.404275],[0.027347,52.400802],[0.028897,52.398668],[0.029053,52.394259],[0.02671,52.390657],[0.028221,52.389871],[0.030367,52.387793],[0.034421,52.38575],[0.046468,52.392244],[0.054376,52.395403],[0.05445,52.396564],[0.056199,52.397835],[0.05518,52.399278],[0.055131,52.400151],[0.052967,52.401611],[0.052035,52.405047],[0.050206,52.406647],[0.050172,52.407358],[0.052589,52.408837],[0.047967,52.411266],[0.045149,52.411986],[0.041687,52.413359],[0.04335,52.416415],[0.043646,52.418125],[0.045381,52.419102],[0.046716,52.4187],[0.049562,52.416746],[0.049101,52.416059],[0.050057,52.415118],[0.052534,52.414567],[0.055121,52.414401],[0.058773,52.415438],[0.062681,52.418005],[0.070173,52.420596],[0.070211,52.421487],[0.072874,52.421099],[0.07485,52.42145],[0.077918,52.42078],[0.079925,52.421326],[0.081419,52.422194],[0.082891,52.423615],[0.081108,52.424803],[0.081669,52.426593],[0.082386,52.427229],[0.084899,52.428097],[0.087208,52.42974],[0.088352,52.429692],[0.10619,52.425325],[0.107526,52.425635],[0.110636,52.427682],[0.111803,52.427888],[0.11387,52.427362],[0.113905,52.428167],[0.11511,52.42989],[0.116032,52.429855],[0.117065,52.431582],[0.116975,52.433062],[0.120114,52.434125],[0.120837,52.435488],[0.122068,52.435301],[0.126471,52.437855],[0.129143,52.436646],[0.129839,52.435729],[0.120838,52.431121],[0.118687,52.42346],[0.123841,52.42097],[0.14539,52.437483],[0.145138,52.437626],[0.151042,52.442264],[0.155344,52.440174],[0.155922,52.440577],[0.179317,52.45876],[0.177086,52.460978],[0.175937,52.460519],[0.171597,52.45715],[0.170716,52.457557],[0.200727,52.480869],[0.201632,52.480476],[0.236319,52.507291]]],[[[-0.012837,52.594345],[0.039483,52.602392],[0.061441,52.606704],[0.062416,52.607394],[0.063961,52.610412],[0.065459,52.611613],[0.093142,52.626891],[0.104677,52.632217],[0.123469,52.638561],[0.130501,52.642524],[0.139874,52.650785],[0.151251,52.661175],[0.15098,52.662946],[0.15283,52.663966],[0.158256,52.665325],[0.159172,52.666815],[0.157367,52.670569],[0.154942,52.673255],[0.152685,52.67516],[0.152044,52.676248],[0.15305,52.679728],[0.153812,52.685115],[0.154634,52.696264],[0.155637,52.702239],[0.155763,52.707713],[0.158502,52.712267],[0.166982,52.72431],[0.169926,52.73614],[0.171259,52.738262],[0.170153,52.738957],[0.170181,52.739894],[0.167046,52.739392],[0.152501,52.73814],[0.15083,52.738745],[0.148291,52.738638],[0.147613,52.739446],[0.144127,52.739029],[0.143683,52.74],[0.140653,52.739753],[0.137737,52.738916],[0.132975,52.739304],[0.130959,52.738388],[0.129047,52.738436],[0.119713,52.732877],[0.116796,52.732727],[0.115324,52.732301],[0.114144,52.731397],[0.113685,52.72999],[0.111105,52.729779],[0.10494,52.730504],[0.10254,52.729865],[0.100774,52.730419],[0.098789,52.73034],[0.094587,52.728448],[0.091649,52.725216],[0.090098,52.724032],[0.087548,52.72357],[0.082641,52.72456],[0.07604,52.724522],[0.072589,52.725551],[0.067973,52.726354],[0.063904,52.727436],[0.062307,52.725387],[0.059239,52.724724],[0.055137,52.72183],[0.048018,52.718785],[0.046263,52.715378],[0.044149,52.714382],[0.045108,52.711998],[0.044842,52.710863],[0.045461,52.705007],[0.045045,52.703238],[0.045235,52.701432],[0.044399,52.700683],[0.045907,52.697794],[0.044882,52.69579],[0.045231,52.69371],[0.044571,52.692482],[0.044981,52.691936],[0.04842,52.690105],[0.049338,52.688704],[0.049149,52.68693],[0.049624,52.68615],[0.048706,52.683501],[0.048998,52.681997],[0.048013,52.68105],[0.0215,52.664887],[-0.031271,52.661533],[-0.025047,52.632369],[-0.01625,52.598387],[-0.012837,52.594345]]]]},"properties":{"LAD22CD":"E07000010","LAD22NM":"Fenland","BNG_E":536361,"BNG_N":294959,"LONG":0.009016,"LAT":52.53544,"GlobalID":"5ed307ee-dd06-44ed-a1d3-5dc4cf5d8e6d"},"id":62}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.18785,52.541863],[-0.195701,52.54486],[-0.200399,52.545216],[-0.201493,52.543591],[-0.202756,52.542554],[-0.20522,52.542896],[-0.208517,52.542321],[-0.212358,52.5423],[-0.214144,52.541791],[-0.216475,52.540341],[-0.217664,52.537923],[-0.219668,52.5399],[-0.219465,52.540296],[-0.223032,52.541013],[-0.223124,52.542441],[-0.22865,52.542867],[-0.228675,52.543666],[-0.234837,52.543667],[-0.23556,52.542444],[-0.234975,52.541135],[-0.234995,52.539707],[-0.236657,52.538235],[-0.234732,52.53694],[-0.23518,52.53601],[-0.231727,52.534477],[-0.237276,52.530434],[-0.238267,52.529099],[-0.240468,52.529678],[-0.243075,52.529642],[-0.242446,52.524722],[-0.244781,52.522999],[-0.246715,52.523769],[-0.252915,52.522286],[-0.255882,52.521096],[-0.256796,52.522606],[-0.263206,52.521923],[-0.269295,52.520825],[-0.27032,52.520463],[-0.270487,52.518628],[-0.274048,52.518964],[-0.274346,52.517108],[-0.271008,52.516785],[-0.270829,52.515606],[-0.272962,52.512783],[-0.275517,52.511085],[-0.27961,52.509294],[-0.282351,52.507176],[-0.284638,52.506113],[-0.285761,52.506563],[-0.28781,52.508751],[-0.29329,52.506889],[-0.294117,52.511628],[-0.296297,52.51432],[-0.305107,52.521469],[-0.314428,52.530109],[-0.317596,52.533476],[-0.317822,52.534346],[-0.320684,52.535785],[-0.332736,52.546545],[-0.325925,52.548649],[-0.326737,52.54963],[-0.326677,52.550792],[-0.323677,52.551518],[-0.325459,52.552889],[-0.327244,52.552912],[-0.332363,52.552401],[-0.335996,52.553602],[-0.337316,52.553648],[-0.34063,52.555651],[-0.340632,52.557165],[-0.341154,52.558017],[-0.343948,52.560806],[-0.345208,52.561232],[-0.346067,52.562771],[-0.348478,52.56437],[-0.356837,52.565],[-0.361163,52.564343],[-0.362916,52.563331],[-0.367384,52.562765],[-0.369641,52.563096],[-0.370806,52.564152],[-0.372741,52.564677],[-0.373132,52.566321],[-0.375744,52.56628],[-0.379125,52.567199],[-0.380571,52.567078],[-0.381291,52.567684],[-0.384008,52.566907],[-0.385304,52.567148],[-0.388375,52.568858],[-0.389596,52.571575],[-0.388926,52.572792],[-0.389238,52.573448],[-0.387688,52.574469],[-0.389384,52.576238],[-0.389885,52.577483],[-0.391375,52.578524],[-0.393022,52.580871],[-0.39684,52.582998],[-0.398683,52.583296],[-0.401343,52.583056],[-0.40387,52.583234],[-0.40888,52.582658],[-0.413682,52.581097],[-0.414705,52.580287],[-0.415382,52.578743],[-0.415079,52.576006],[-0.415892,52.573384],[-0.414718,52.572289],[-0.415695,52.570104],[-0.414634,52.569518],[-0.411932,52.568906],[-0.40736,52.565821],[-0.407291,52.564055],[-0.408728,52.562144],[-0.40985,52.561624],[-0.411772,52.561799],[-0.413367,52.561504],[-0.415254,52.562123],[-0.416582,52.561975],[-0.416908,52.56075],[-0.419594,52.558962],[-0.417101,52.555886],[-0.416368,52.55566],[-0.416044,52.552715],[-0.415339,52.551553],[-0.414078,52.551546],[-0.41174,52.550808],[-0.411224,52.549954],[-0.403306,52.548925],[-0.402061,52.548322],[-0.402204,52.546808],[-0.403678,52.545163],[-0.403657,52.542815],[-0.402527,52.541876],[-0.40239,52.540705],[-0.401283,52.538685],[-0.402643,52.534912],[-0.404602,52.533582],[-0.404668,52.532307],[-0.40714,52.531477],[-0.410066,52.531202],[-0.411917,52.529747],[-0.412235,52.528778],[-0.413346,52.52843],[-0.413821,52.527443],[-0.413603,52.52568],[-0.411847,52.524753],[-0.40872,52.522518],[-0.404309,52.521692],[-0.400471,52.521877],[-0.398492,52.52088],[-0.396749,52.520616],[-0.394648,52.519807],[-0.390749,52.51944],[-0.390832,52.518719],[-0.386624,52.51673],[-0.387462,52.51618],[-0.383441,52.513799],[-0.380895,52.512775],[-0.377927,52.510658],[-0.375253,52.51093],[-0.373011,52.510802],[-0.371465,52.51035],[-0.368681,52.508786],[-0.362258,52.507375],[-0.358184,52.505788],[-0.355787,52.505923],[-0.354345,52.506495],[-0.354079,52.504832],[-0.352176,52.503325],[-0.353226,52.502334],[-0.354647,52.501878],[-0.356218,52.500422],[-0.357331,52.49996],[-0.357975,52.49821],[-0.359195,52.497341],[-0.35969,52.495872],[-0.358142,52.49389],[-0.358424,52.493003],[-0.357661,52.492122],[-0.358125,52.491055],[-0.359419,52.490211],[-0.356802,52.487799],[-0.356378,52.486716],[-0.354615,52.485102],[-0.353317,52.484771],[-0.352081,52.483545],[-0.350068,52.482548],[-0.350275,52.480733],[-0.349237,52.479294],[-0.347481,52.478013],[-0.348994,52.473563],[-0.349718,52.472888],[-0.348281,52.471256],[-0.342279,52.469104],[-0.343065,52.468498],[-0.341591,52.466943],[-0.344815,52.46584],[-0.349472,52.462164],[-0.35056,52.462927],[-0.353511,52.460275],[-0.354028,52.458035],[-0.35546,52.456158],[-0.360257,52.452505],[-0.363482,52.45061],[-0.361833,52.449003],[-0.36188,52.448227],[-0.363488,52.447106],[-0.363063,52.446585],[-0.36707,52.443804],[-0.368799,52.441209],[-0.370217,52.43993],[-0.36886,52.43962],[-0.370065,52.437884],[-0.371279,52.438059],[-0.371867,52.436843],[-0.370307,52.436848],[-0.369342,52.43494],[-0.367734,52.434496],[-0.366495,52.435036],[-0.364422,52.434049],[-0.362408,52.433531],[-0.36594,52.431665],[-0.372366,52.430445],[-0.379459,52.42796],[-0.38694,52.423885],[-0.389545,52.421766],[-0.392335,52.419938],[-0.397889,52.418329],[-0.400947,52.415464],[-0.40746,52.413493],[-0.410834,52.412794],[-0.413001,52.412601],[-0.417073,52.411599],[-0.418431,52.408151],[-0.419612,52.407325],[-0.420279,52.405066],[-0.415936,52.403805],[-0.421906,52.400912],[-0.422436,52.400126],[-0.424835,52.399629],[-0.43188,52.396379],[-0.43292,52.396329],[-0.436998,52.388187],[-0.439255,52.386314],[-0.443762,52.383857],[-0.446222,52.383213],[-0.448756,52.383729],[-0.450886,52.384752],[-0.454938,52.385702],[-0.454747,52.384573],[-0.456856,52.384094],[-0.456832,52.382329],[-0.462474,52.383045],[-0.464057,52.381602],[-0.468291,52.382894],[-0.469888,52.379896],[-0.474867,52.380267],[-0.475828,52.380121],[-0.477957,52.380738],[-0.478848,52.380154],[-0.484761,52.381631],[-0.485442,52.381322],[-0.486738,52.379031],[-0.489609,52.379226],[-0.494197,52.381203],[-0.495946,52.379516],[-0.490461,52.375103],[-0.488519,52.374024],[-0.492304,52.371714],[-0.49853,52.366839],[-0.499487,52.366993],[-0.499886,52.365201],[-0.498701,52.3601],[-0.496006,52.358388],[-0.492989,52.357455],[-0.488014,52.35371],[-0.484278,52.352387],[-0.484158,52.351778],[-0.480609,52.349815],[-0.478272,52.349336],[-0.477339,52.348409],[-0.478429,52.346349],[-0.480504,52.344431],[-0.483264,52.340903],[-0.472436,52.339574],[-0.467773,52.338441],[-0.466657,52.338928],[-0.467098,52.335286],[-0.46523,52.332614],[-0.464796,52.33031],[-0.46451,52.326102],[-0.465366,52.322953],[-0.460728,52.32187],[-0.457712,52.320091],[-0.447132,52.315742],[-0.444184,52.314232],[-0.442296,52.31417],[-0.441517,52.315212],[-0.440209,52.315383],[-0.436089,52.314471],[-0.435375,52.312168],[-0.433507,52.311858],[-0.433051,52.308258],[-0.434075,52.305694],[-0.433903,52.302355],[-0.43578,52.298864],[-0.435761,52.296657],[-0.432302,52.295999],[-0.432075,52.294623],[-0.43127,52.294449],[-0.432228,52.293013],[-0.431184,52.292015],[-0.426985,52.290763],[-0.42691,52.290188],[-0.424893,52.289295],[-0.422643,52.289376],[-0.422157,52.288672],[-0.423019,52.287873],[-0.421768,52.284947],[-0.419111,52.28475],[-0.41901,52.284251],[-0.416285,52.284271],[-0.41491,52.284771],[-0.413654,52.284504],[-0.41166,52.284789],[-0.410159,52.284497],[-0.408821,52.286768],[-0.406908,52.287476],[-0.403583,52.285296],[-0.402861,52.283726],[-0.401986,52.283209],[-0.402731,52.282106],[-0.401311,52.280066],[-0.39898,52.278729],[-0.396004,52.281093],[-0.392955,52.282366],[-0.386675,52.281905],[-0.384638,52.281324],[-0.380573,52.282667],[-0.376222,52.281173],[-0.37501,52.280469],[-0.375898,52.279313],[-0.375514,52.277994],[-0.374319,52.277326],[-0.374766,52.276277],[-0.3725,52.275488],[-0.372175,52.2735],[-0.373983,52.272997],[-0.375246,52.274005],[-0.376809,52.274029],[-0.37843,52.273011],[-0.381014,52.273135],[-0.381153,52.272062],[-0.382341,52.271126],[-0.381803,52.265784],[-0.378459,52.265295],[-0.378346,52.252792],[-0.377222,52.24804],[-0.37528,52.242923],[-0.374688,52.239118],[-0.375284,52.238649],[-0.373748,52.236992],[-0.37335,52.234023],[-0.374376,52.232998],[-0.368773,52.234648],[-0.362737,52.234066],[-0.359038,52.234735],[-0.355324,52.23422],[-0.353738,52.233353],[-0.352383,52.231702],[-0.349918,52.230826],[-0.348872,52.231224],[-0.345809,52.230634],[-0.341011,52.230647],[-0.340355,52.230935],[-0.344126,52.235156],[-0.342653,52.235361],[-0.34332,52.236442],[-0.343053,52.237439],[-0.344012,52.238491],[-0.343218,52.241412],[-0.343469,52.241874],[-0.340215,52.242255],[-0.337985,52.242208],[-0.334494,52.242921],[-0.32928,52.242552],[-0.327122,52.243005],[-0.324918,52.242867],[-0.323076,52.243125],[-0.319997,52.242708],[-0.315898,52.241515],[-0.31438,52.240299],[-0.313688,52.238999],[-0.310595,52.239932],[-0.307723,52.239877],[-0.298521,52.240989],[-0.295826,52.240493],[-0.293209,52.240516],[-0.291614,52.239236],[-0.288003,52.238319],[-0.285694,52.237401],[-0.285728,52.236244],[-0.286631,52.234848],[-0.293759,52.228439],[-0.299,52.221257],[-0.299965,52.218058],[-0.299391,52.216044],[-0.296285,52.210487],[-0.295579,52.210443],[-0.294357,52.208354],[-0.292968,52.207646],[-0.290192,52.20768],[-0.288431,52.207378],[-0.280312,52.20843],[-0.274205,52.20872],[-0.266208,52.209569],[-0.261845,52.209867],[-0.264073,52.206364],[-0.264912,52.205721],[-0.260447,52.20542],[-0.261184,52.20415],[-0.260568,52.203639],[-0.256522,52.202833],[-0.25451,52.199479],[-0.251958,52.19652],[-0.251617,52.195561],[-0.249525,52.194722],[-0.247856,52.192852],[-0.246221,52.191861],[-0.244285,52.191498],[-0.24206,52.190377],[-0.240723,52.190193],[-0.244002,52.182685],[-0.247045,52.183754],[-0.249785,52.184371],[-0.253448,52.180858],[-0.257714,52.178148],[-0.257229,52.177679],[-0.260694,52.176401],[-0.257391,52.174292],[-0.254845,52.173397],[-0.253543,52.172568],[-0.251077,52.172508],[-0.240118,52.170233],[-0.228863,52.166243],[-0.226096,52.164938],[-0.223232,52.162656],[-0.223604,52.162253],[-0.221214,52.160976],[-0.219758,52.161542],[-0.216624,52.158736],[-0.213431,52.15981],[-0.2111,52.161096],[-0.203491,52.162858],[-0.202258,52.163635],[-0.198115,52.164917],[-0.193475,52.167455],[-0.191855,52.166901],[-0.190489,52.168776],[-0.189534,52.169205],[-0.18689,52.167602],[-0.183753,52.16893],[-0.182043,52.167867],[-0.179546,52.167902],[-0.178757,52.167016],[-0.168655,52.167631],[-0.156191,52.167246],[-0.155604,52.169385],[-0.151581,52.169681],[-0.150536,52.171622],[-0.15172,52.172379],[-0.153388,52.174544],[-0.153284,52.175433],[-0.150225,52.177307],[-0.144935,52.182744],[-0.142221,52.183538],[-0.141013,52.183417],[-0.137799,52.184468],[-0.13385,52.183075],[-0.116049,52.179537],[-0.110961,52.178924],[-0.108911,52.179101],[-0.107932,52.179659],[-0.106078,52.179291],[-0.104282,52.180896],[-0.10054,52.182665],[-0.101219,52.185415],[-0.104519,52.193552],[-0.107104,52.193805],[-0.10665,52.195099],[-0.104413,52.197011],[-0.107258,52.197586],[-0.103949,52.200385],[-0.105716,52.201007],[-0.104642,52.202862],[-0.107127,52.202955],[-0.107231,52.205686],[-0.108127,52.206883],[-0.111476,52.207013],[-0.115076,52.208129],[-0.11685,52.208186],[-0.130465,52.207207],[-0.137231,52.207773],[-0.140245,52.207895],[-0.141103,52.209617],[-0.147,52.210231],[-0.152807,52.211997],[-0.156311,52.209072],[-0.159319,52.205706],[-0.166649,52.202536],[-0.168269,52.200813],[-0.17215,52.199281],[-0.173133,52.19769],[-0.175886,52.197256],[-0.175839,52.199562],[-0.17873,52.201629],[-0.183574,52.201989],[-0.189052,52.200579],[-0.191882,52.201369],[-0.19251,52.203322],[-0.195609,52.20449],[-0.193479,52.209586],[-0.191883,52.210932],[-0.189808,52.213921],[-0.18884,52.216557],[-0.188711,52.220841],[-0.187205,52.224983],[-0.187017,52.228794],[-0.182744,52.22869],[-0.180246,52.230223],[-0.175634,52.230481],[-0.171264,52.229284],[-0.165917,52.228601],[-0.162114,52.227571],[-0.158582,52.227151],[-0.155753,52.226456],[-0.15324,52.226136],[-0.152884,52.226529],[-0.149041,52.22595],[-0.150001,52.227871],[-0.148174,52.229163],[-0.147431,52.228861],[-0.144627,52.229409],[-0.140169,52.22915],[-0.140177,52.229884],[-0.137589,52.23014],[-0.137876,52.23139],[-0.136746,52.235832],[-0.134523,52.235679],[-0.134649,52.237289],[-0.13374,52.239515],[-0.133512,52.241037],[-0.132221,52.243262],[-0.13469,52.244454],[-0.139912,52.245502],[-0.141764,52.245436],[-0.143084,52.246475],[-0.147778,52.248474],[-0.148761,52.250149],[-0.14871,52.251687],[-0.151432,52.251901],[-0.15218,52.252926],[-0.155907,52.253756],[-0.157122,52.254308],[-0.162214,52.254542],[-0.170099,52.25586],[-0.173685,52.255779],[-0.177621,52.251293],[-0.180338,52.255058],[-0.180127,52.255771],[-0.182415,52.256128],[-0.184068,52.260301],[-0.183811,52.262091],[-0.182955,52.264248],[-0.180918,52.267102],[-0.179043,52.266627],[-0.177934,52.269971],[-0.179822,52.270468],[-0.175477,52.280217],[-0.170865,52.281713],[-0.163898,52.282221],[-0.159815,52.283364],[-0.148118,52.284606],[-0.142656,52.283192],[-0.138112,52.27665],[-0.123724,52.2571],[-0.12115,52.257339],[-0.120609,52.259807],[-0.118545,52.261047],[-0.118332,52.262276],[-0.114238,52.262019],[-0.114871,52.263893],[-0.113899,52.26417],[-0.114062,52.266193],[-0.111485,52.266212],[-0.111166,52.26894],[-0.109635,52.268777],[-0.10748,52.270431],[-0.107496,52.271781],[-0.106107,52.271798],[-0.106068,52.273035],[-0.101734,52.276903],[-0.102276,52.277668],[-0.098131,52.277934],[-0.097405,52.275598],[-0.095093,52.275305],[-0.09468,52.27462],[-0.092836,52.273832],[-0.085388,52.272502],[-0.084079,52.274304],[-0.082812,52.274245],[-0.082606,52.275285],[-0.0786,52.276938],[-0.075802,52.278685],[-0.076212,52.279255],[-0.070454,52.282639],[-0.067397,52.28542],[-0.066535,52.285146],[-0.064849,52.287358],[-0.063533,52.287755],[-0.062441,52.291053],[-0.060126,52.290407],[-0.057728,52.291756],[-0.057151,52.292779],[-0.059899,52.293974],[-0.054708,52.30079],[-0.051942,52.305734],[-0.049254,52.306802],[-0.047501,52.308206],[-0.046499,52.310333],[-0.047012,52.31339],[-0.046465,52.314659],[-0.04524,52.314522],[-0.042368,52.315127],[-0.038767,52.314279],[-0.037375,52.314241],[-0.034841,52.314929],[-0.032387,52.316513],[-0.031058,52.316796],[-0.022379,52.315225],[-0.016829,52.312681],[-0.015129,52.31258],[-0.011201,52.315313],[-0.007172,52.316999],[-0.005867,52.318907],[-0.004139,52.323473],[0.000165,52.328051],[0.003794,52.329805],[0.008248,52.334472],[0.008509,52.335365],[0.008287,52.335514],[0.009377,52.339104],[0.009001,52.341462],[0.01415,52.343956],[0.025952,52.351293],[0.02995,52.352296],[0.030615,52.352862],[0.034587,52.353671],[0.037559,52.353898],[0.040859,52.353101],[0.043416,52.352968],[0.051204,52.358329],[0.050479,52.359009],[0.0494,52.362871],[0.048665,52.363988],[0.049184,52.364487],[0.047897,52.366484],[0.047592,52.36773],[0.046747,52.368366],[0.045976,52.37181],[0.043707,52.375612],[0.041949,52.380689],[0.038832,52.382775],[0.036325,52.383638],[0.034421,52.38575],[0.030367,52.387793],[0.028221,52.389871],[0.02671,52.390657],[0.029053,52.394259],[0.028897,52.398668],[0.027347,52.400802],[0.026729,52.404275],[0.026903,52.405661],[0.023715,52.406775],[0.02291,52.40936],[0.023451,52.41083],[0.019403,52.413609],[0.019037,52.414307],[0.026373,52.420864],[0.029869,52.422969],[0.03065,52.424736],[0.034057,52.427269],[0.034143,52.428282],[0.032377,52.430247],[0.023916,52.432795],[0.02228,52.433849],[0.021964,52.435079],[0.023569,52.436562],[0.024165,52.438235],[0.02407,52.44052],[0.023173,52.442468],[0.021637,52.443533],[0.018189,52.444743],[0.012092,52.448365],[0.011302,52.44939],[0.011248,52.451773],[0.00881,52.454655],[0.007498,52.454837],[0.00191,52.454125],[-0.00121,52.454275],[-0.002571,52.454642],[-0.00698,52.456771],[-0.008431,52.45869],[-0.008567,52.460477],[-0.009323,52.462181],[-0.018534,52.467629],[-0.031685,52.473048],[-0.038855,52.473286],[-0.039021,52.475926],[-0.041689,52.477016],[-0.0376,52.478515],[-0.040644,52.482585],[-0.040298,52.482734],[-0.039103,52.498314],[-0.039355,52.500238],[-0.038507,52.501845],[-0.040188,52.502403],[-0.045186,52.502695],[-0.051319,52.502449],[-0.05272,52.502024],[-0.052862,52.504466],[-0.051664,52.508118],[-0.05071,52.509064],[-0.04797,52.510538],[-0.048399,52.511016],[-0.054568,52.513396],[-0.057551,52.51216],[-0.069675,52.516859],[-0.070884,52.505892],[-0.090425,52.496212],[-0.097652,52.501705],[-0.104561,52.498255],[-0.102135,52.496414],[-0.105451,52.494663],[-0.104763,52.493817],[-0.114436,52.48904],[-0.129638,52.500939],[-0.143446,52.51118],[-0.147729,52.514223],[-0.15127,52.516201],[-0.160273,52.523251],[-0.167055,52.527662],[-0.170661,52.531284],[-0.17365,52.532118],[-0.176304,52.53237],[-0.17902,52.533708],[-0.18225,52.533984],[-0.185978,52.535617],[-0.188289,52.537081],[-0.190066,52.539679],[-0.18785,52.541863]]]},"properties":{"LAD22CD":"E07000011","LAD22NM":"Huntingdonshire","BNG_E":521008,"BNG_N":274269,"LONG":-0.2247,"LAT":52.35315,"GlobalID":"2dd915d6-2f70-4c14-8798-dba202ccaf14"},"id":63}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.044176,52.35277],[0.043226,52.352302],[0.038622,52.353259],[0.035011,52.353318],[0.026488,52.351121],[0.014439,52.343777],[0.009684,52.341577],[0.009331,52.34098],[0.009827,52.338937],[0.009226,52.336034],[0.008509,52.335365],[0.008248,52.334472],[0.003794,52.329805],[0.000165,52.328051],[-0.004139,52.323473],[-0.005867,52.318907],[-0.007172,52.316999],[-0.011201,52.315313],[-0.015129,52.31258],[-0.016829,52.312681],[-0.022379,52.315225],[-0.031058,52.316796],[-0.032387,52.316513],[-0.034841,52.314929],[-0.037375,52.314241],[-0.038767,52.314279],[-0.042368,52.315127],[-0.04524,52.314522],[-0.046465,52.314659],[-0.047012,52.31339],[-0.046499,52.310333],[-0.047501,52.308206],[-0.049254,52.306802],[-0.051942,52.305734],[-0.054708,52.30079],[-0.059899,52.293974],[-0.057151,52.292779],[-0.057728,52.291756],[-0.060126,52.290407],[-0.062441,52.291053],[-0.063533,52.287755],[-0.064849,52.287358],[-0.066535,52.285146],[-0.067397,52.28542],[-0.070454,52.282639],[-0.076212,52.279255],[-0.075802,52.278685],[-0.0786,52.276938],[-0.082606,52.275285],[-0.082812,52.274245],[-0.084079,52.274304],[-0.085388,52.272502],[-0.092836,52.273832],[-0.09468,52.27462],[-0.095093,52.275305],[-0.097405,52.275598],[-0.098131,52.277934],[-0.102276,52.277668],[-0.101734,52.276903],[-0.106068,52.273035],[-0.106107,52.271798],[-0.107496,52.271781],[-0.10748,52.270431],[-0.109635,52.268777],[-0.111166,52.26894],[-0.111485,52.266212],[-0.114062,52.266193],[-0.113899,52.26417],[-0.114871,52.263893],[-0.114238,52.262019],[-0.118332,52.262276],[-0.118545,52.261047],[-0.120609,52.259807],[-0.12115,52.257339],[-0.123724,52.2571],[-0.138112,52.27665],[-0.142656,52.283192],[-0.148118,52.284606],[-0.159815,52.283364],[-0.163898,52.282221],[-0.170865,52.281713],[-0.175477,52.280217],[-0.179822,52.270468],[-0.177934,52.269971],[-0.179043,52.266627],[-0.180918,52.267102],[-0.182955,52.264248],[-0.183811,52.262091],[-0.184068,52.260301],[-0.182415,52.256128],[-0.180127,52.255771],[-0.180338,52.255058],[-0.177621,52.251293],[-0.173685,52.255779],[-0.170099,52.25586],[-0.162214,52.254542],[-0.157122,52.254308],[-0.155907,52.253756],[-0.15218,52.252926],[-0.151432,52.251901],[-0.14871,52.251687],[-0.148761,52.250149],[-0.147778,52.248474],[-0.143084,52.246475],[-0.141764,52.245436],[-0.139912,52.245502],[-0.13469,52.244454],[-0.132221,52.243262],[-0.133512,52.241037],[-0.13374,52.239515],[-0.134649,52.237289],[-0.134523,52.235679],[-0.136746,52.235832],[-0.137876,52.23139],[-0.137589,52.23014],[-0.140177,52.229884],[-0.140169,52.22915],[-0.144627,52.229409],[-0.147431,52.228861],[-0.148174,52.229163],[-0.150001,52.227871],[-0.149041,52.22595],[-0.152884,52.226529],[-0.15324,52.226136],[-0.155753,52.226456],[-0.158582,52.227151],[-0.162114,52.227571],[-0.165917,52.228601],[-0.171264,52.229284],[-0.175634,52.230481],[-0.180246,52.230223],[-0.182744,52.22869],[-0.187017,52.228794],[-0.187205,52.224983],[-0.188711,52.220841],[-0.18884,52.216557],[-0.189808,52.213921],[-0.191883,52.210932],[-0.193479,52.209586],[-0.195609,52.20449],[-0.19251,52.203322],[-0.191882,52.201369],[-0.189052,52.200579],[-0.183574,52.201989],[-0.17873,52.201629],[-0.175839,52.199562],[-0.175886,52.197256],[-0.173133,52.19769],[-0.17215,52.199281],[-0.168269,52.200813],[-0.166649,52.202536],[-0.159319,52.205706],[-0.156311,52.209072],[-0.152807,52.211997],[-0.147,52.210231],[-0.141103,52.209617],[-0.140245,52.207895],[-0.137231,52.207773],[-0.130465,52.207207],[-0.11685,52.208186],[-0.115076,52.208129],[-0.111476,52.207013],[-0.108127,52.206883],[-0.107231,52.205686],[-0.107127,52.202955],[-0.104642,52.202862],[-0.105716,52.201007],[-0.103949,52.200385],[-0.107258,52.197586],[-0.104413,52.197011],[-0.10665,52.195099],[-0.107104,52.193805],[-0.104519,52.193552],[-0.101219,52.185415],[-0.10054,52.182665],[-0.104282,52.180896],[-0.106078,52.179291],[-0.107932,52.179659],[-0.108911,52.179101],[-0.110961,52.178924],[-0.116049,52.179537],[-0.13385,52.183075],[-0.137799,52.184468],[-0.141013,52.183417],[-0.142221,52.183538],[-0.144935,52.182744],[-0.150225,52.177307],[-0.153284,52.175433],[-0.153388,52.174544],[-0.15172,52.172379],[-0.150536,52.171622],[-0.151581,52.169681],[-0.155604,52.169385],[-0.156191,52.167246],[-0.168655,52.167631],[-0.178757,52.167016],[-0.179546,52.167902],[-0.182043,52.167867],[-0.183753,52.16893],[-0.18689,52.167602],[-0.189534,52.169205],[-0.190489,52.168776],[-0.191855,52.166901],[-0.193475,52.167455],[-0.198115,52.164917],[-0.202258,52.163635],[-0.203491,52.162858],[-0.2111,52.161096],[-0.213431,52.15981],[-0.216624,52.158736],[-0.218375,52.157919],[-0.219522,52.156838],[-0.222623,52.153151],[-0.224804,52.149744],[-0.227373,52.148023],[-0.234804,52.144727],[-0.232208,52.144786],[-0.219168,52.143893],[-0.21721,52.144078],[-0.213607,52.143379],[-0.20932,52.143843],[-0.207779,52.144537],[-0.204138,52.143979],[-0.203417,52.143356],[-0.197978,52.141941],[-0.190783,52.141468],[-0.181679,52.13976],[-0.176025,52.139762],[-0.174475,52.140328],[-0.171535,52.139503],[-0.169133,52.14026],[-0.166106,52.139892],[-0.163751,52.140128],[-0.163946,52.142392],[-0.162657,52.143061],[-0.160088,52.143023],[-0.159673,52.144068],[-0.156466,52.143972],[-0.154404,52.14441],[-0.152706,52.14316],[-0.150514,52.143619],[-0.151344,52.141563],[-0.149835,52.138941],[-0.148359,52.138941],[-0.144445,52.138204],[-0.144134,52.129788],[-0.145605,52.11789],[-0.143932,52.117736],[-0.145793,52.115619],[-0.14786,52.114195],[-0.145765,52.111721],[-0.146972,52.111112],[-0.14547,52.109842],[-0.147049,52.109027],[-0.145897,52.107895],[-0.147666,52.107117],[-0.146233,52.105987],[-0.147826,52.103801],[-0.146937,52.102986],[-0.148469,52.101532],[-0.147169,52.100396],[-0.148504,52.099664],[-0.147485,52.098845],[-0.150335,52.097014],[-0.148488,52.095443],[-0.149138,52.095117],[-0.148589,52.093463],[-0.149748,52.092171],[-0.1491,52.091236],[-0.14956,52.08982],[-0.154088,52.086135],[-0.154806,52.084253],[-0.156242,52.083373],[-0.156668,52.082137],[-0.156239,52.080963],[-0.157332,52.080523],[-0.156364,52.076779],[-0.153491,52.076234],[-0.152111,52.075181],[-0.150014,52.074277],[-0.148084,52.071728],[-0.148606,52.070484],[-0.147506,52.069403],[-0.147927,52.067637],[-0.149015,52.066222],[-0.150656,52.065838],[-0.151885,52.064674],[-0.149934,52.061235],[-0.150211,52.05918],[-0.152059,52.057418],[-0.152641,52.055849],[-0.154946,52.054273],[-0.155121,52.053061],[-0.154531,52.052348],[-0.152139,52.051026],[-0.149026,52.050226],[-0.146035,52.047546],[-0.144576,52.04699],[-0.141674,52.047244],[-0.136721,52.04603],[-0.13373,52.046233],[-0.131303,52.043302],[-0.131573,52.04263],[-0.126829,52.036086],[-0.124677,52.034856],[-0.123747,52.033634],[-0.123102,52.029996],[-0.122339,52.029636],[-0.126568,52.020922],[-0.120999,52.019521],[-0.112403,52.026121],[-0.107694,52.028355],[-0.079089,52.037887],[-0.066755,52.042536],[-0.056871,52.045499],[-0.054212,52.046622],[-0.050972,52.049501],[-0.035725,52.058792],[-0.030631,52.061236],[-0.030146,52.061948],[-0.028798,52.061899],[-0.024413,52.063316],[-0.021972,52.063604],[-0.019281,52.063536],[-0.016272,52.063009],[-0.011577,52.060635],[-0.006135,52.056939],[-0.003669,52.053527],[-0.001383,52.051665],[0.002318,52.05015],[0.007186,52.049533],[0.01129,52.04966],[0.024856,52.051431],[0.033648,52.05183],[0.039849,52.053225],[0.040394,52.053136],[0.041569,52.049036],[0.041625,52.045266],[0.043364,52.041873],[0.043034,52.041501],[0.04764,52.03675],[0.049667,52.033835],[0.050456,52.028473],[0.052098,52.024631],[0.054397,52.022493],[0.058287,52.020564],[0.060167,52.018648],[0.058991,52.016374],[0.059042,52.014527],[0.062145,52.012012],[0.06245,52.010932],[0.063957,52.009611],[0.065096,52.007604],[0.068127,52.005789],[0.06977,52.006031],[0.070066,52.007359],[0.071461,52.008282],[0.076029,52.007199],[0.080625,52.008215],[0.082275,52.010053],[0.083106,52.011533],[0.083248,52.013584],[0.085423,52.01483],[0.085211,52.016212],[0.089542,52.019959],[0.092254,52.021654],[0.0908,52.02254],[0.091737,52.024964],[0.091196,52.025185],[0.0947,52.029028],[0.092979,52.030226],[0.093638,52.030662],[0.094195,52.032874],[0.09484,52.033754],[0.096341,52.034401],[0.101155,52.038857],[0.100464,52.041744],[0.101282,52.045012],[0.103047,52.047519],[0.105976,52.049739],[0.104971,52.057743],[0.105736,52.060261],[0.109538,52.059997],[0.114569,52.060601],[0.119077,52.059963],[0.12196,52.057387],[0.122898,52.057566],[0.124937,52.054126],[0.127593,52.051899],[0.128264,52.050002],[0.128135,52.047323],[0.130424,52.048439],[0.132566,52.048349],[0.136617,52.050005],[0.143046,52.050915],[0.151117,52.052852],[0.152634,52.050318],[0.160577,52.052099],[0.161424,52.049768],[0.160757,52.04844],[0.164697,52.048395],[0.166396,52.048191],[0.166364,52.051562],[0.167285,52.051764],[0.16757,52.055],[0.171215,52.055514],[0.174107,52.055581],[0.176285,52.056121],[0.176712,52.05693],[0.177997,52.057323],[0.181528,52.056686],[0.18185,52.056939],[0.186373,52.056661],[0.189922,52.060201],[0.188364,52.0609],[0.189916,52.0622],[0.186863,52.065678],[0.183194,52.073183],[0.184562,52.073854],[0.193591,52.07514],[0.19397,52.075481],[0.199277,52.085886],[0.200592,52.087397],[0.203459,52.092674],[0.20791,52.091721],[0.210143,52.09164],[0.213127,52.090436],[0.216536,52.08998],[0.224193,52.089252],[0.229182,52.0898],[0.231185,52.08971],[0.235208,52.089],[0.244113,52.083018],[0.24635,52.082057],[0.24752,52.079111],[0.251573,52.076786],[0.25234,52.078192],[0.25405,52.080042],[0.259728,52.082777],[0.261941,52.083434],[0.264806,52.084788],[0.268603,52.087254],[0.271967,52.090139],[0.275267,52.091122],[0.276229,52.092638],[0.286012,52.090408],[0.292129,52.088204],[0.302237,52.082706],[0.308702,52.080284],[0.310281,52.078863],[0.311065,52.076944],[0.312081,52.076551],[0.316769,52.076105],[0.321948,52.074302],[0.324674,52.072783],[0.324264,52.071928],[0.325714,52.071158],[0.325059,52.069921],[0.327331,52.068484],[0.328593,52.066841],[0.330005,52.065616],[0.331966,52.062827],[0.335633,52.06028],[0.337755,52.059717],[0.339593,52.057475],[0.341773,52.056291],[0.341349,52.05482],[0.344058,52.053235],[0.343307,52.052157],[0.343857,52.051013],[0.345959,52.049717],[0.35224,52.04697],[0.363324,52.044698],[0.363835,52.04362],[0.366215,52.041315],[0.367027,52.039741],[0.368575,52.039319],[0.371722,52.037369],[0.374587,52.037108],[0.377507,52.036334],[0.38084,52.036987],[0.386354,52.036075],[0.389695,52.036467],[0.387737,52.040795],[0.388189,52.043717],[0.386246,52.044235],[0.383094,52.045995],[0.379613,52.049563],[0.382297,52.051003],[0.39042,52.060288],[0.392471,52.061144],[0.396016,52.060719],[0.399015,52.063513],[0.400721,52.063289],[0.403569,52.0638],[0.404638,52.065502],[0.403326,52.066251],[0.406203,52.069175],[0.407092,52.070794],[0.401971,52.072487],[0.400893,52.073019],[0.400908,52.074032],[0.403679,52.075131],[0.401663,52.076432],[0.402996,52.078203],[0.400605,52.080125],[0.400236,52.081035],[0.401711,52.082595],[0.399508,52.084159],[0.397182,52.083012],[0.39418,52.084354],[0.393382,52.086508],[0.393874,52.08817],[0.39085,52.088483],[0.390833,52.089014],[0.392477,52.095019],[0.394667,52.09488],[0.394997,52.095968],[0.392372,52.096078],[0.389193,52.097138],[0.386864,52.097305],[0.388212,52.098263],[0.388688,52.099212],[0.38592,52.099555],[0.384004,52.100727],[0.382587,52.101148],[0.381804,52.102701],[0.383695,52.105409],[0.385231,52.106615],[0.385494,52.11034],[0.388581,52.113532],[0.388169,52.114403],[0.389323,52.116221],[0.38959,52.117471],[0.39834,52.118792],[0.395228,52.119674],[0.39488,52.121547],[0.396362,52.122359],[0.405795,52.122765],[0.408577,52.123705],[0.40919,52.124264],[0.409438,52.12583],[0.407732,52.126214],[0.40654,52.127882],[0.404706,52.129285],[0.406847,52.130884],[0.410002,52.134398],[0.411731,52.133961],[0.413746,52.134101],[0.417311,52.133108],[0.418283,52.134356],[0.419692,52.139439],[0.418584,52.142446],[0.418453,52.145536],[0.419689,52.146771],[0.419457,52.150632],[0.419788,52.152833],[0.420886,52.155639],[0.420477,52.156746],[0.417276,52.159307],[0.412582,52.15712],[0.409857,52.156424],[0.409171,52.156691],[0.406836,52.159133],[0.405447,52.159589],[0.402312,52.159418],[0.399185,52.158286],[0.394914,52.15797],[0.393961,52.159449],[0.391596,52.159126],[0.38891,52.161801],[0.387133,52.161985],[0.383672,52.161649],[0.376341,52.163233],[0.3761,52.164525],[0.377434,52.1666],[0.372716,52.166771],[0.370957,52.166341],[0.369023,52.167323],[0.364078,52.167963],[0.361664,52.167305],[0.351686,52.168701],[0.346798,52.171265],[0.341959,52.172374],[0.339873,52.173278],[0.338451,52.174402],[0.334277,52.17545],[0.334444,52.175745],[0.33066,52.17738],[0.32496,52.178912],[0.321939,52.17884],[0.321241,52.179772],[0.318112,52.181837],[0.310379,52.185727],[0.310991,52.190474],[0.304172,52.193633],[0.296722,52.196587],[0.28754,52.201186],[0.280627,52.202643],[0.278016,52.203564],[0.278159,52.204074],[0.273431,52.205497],[0.26899,52.208095],[0.260804,52.211985],[0.257321,52.213126],[0.254408,52.214523],[0.249277,52.218634],[0.249692,52.21925],[0.247884,52.221241],[0.244573,52.222763],[0.24256,52.22549],[0.23978,52.226024],[0.235006,52.228826],[0.232857,52.231489],[0.230896,52.230502],[0.231385,52.229696],[0.230438,52.228925],[0.225295,52.2317],[0.227689,52.234355],[0.228473,52.235835],[0.229498,52.236585],[0.226253,52.23973],[0.222031,52.241706],[0.222187,52.24289],[0.2208,52.243389],[0.219039,52.247094],[0.21776,52.248149],[0.218149,52.249222],[0.215278,52.24967],[0.21047,52.24946],[0.218764,52.259779],[0.218513,52.260429],[0.219359,52.262607],[0.220618,52.263541],[0.217926,52.265073],[0.216998,52.266077],[0.214602,52.26714],[0.21158,52.269918],[0.213973,52.271462],[0.215089,52.273881],[0.216372,52.274284],[0.218761,52.274235],[0.220464,52.274604],[0.222651,52.276374],[0.224193,52.278442],[0.228117,52.28116],[0.229705,52.283177],[0.229857,52.285892],[0.230313,52.286454],[0.236786,52.289933],[0.240468,52.290432],[0.241488,52.290936],[0.242003,52.292106],[0.241112,52.294557],[0.241241,52.295546],[0.243135,52.297357],[0.244057,52.299616],[0.246036,52.301166],[0.247103,52.303866],[0.245938,52.304067],[0.244778,52.305756],[0.246193,52.307044],[0.247257,52.309203],[0.247325,52.310545],[0.248032,52.311612],[0.250274,52.31921],[0.249024,52.319091],[0.247753,52.32049],[0.248505,52.321709],[0.248009,52.322821],[0.244455,52.324537],[0.243778,52.325361],[0.239315,52.32559],[0.238466,52.323714],[0.239875,52.321971],[0.238951,52.320325],[0.205885,52.316847],[0.203279,52.316899],[0.198605,52.318412],[0.20001,52.323407],[0.197289,52.32429],[0.195897,52.324181],[0.192714,52.323114],[0.189485,52.323096],[0.181601,52.321203],[0.177693,52.321],[0.175357,52.319833],[0.17079,52.319276],[0.169232,52.317803],[0.167569,52.317562],[0.166212,52.317943],[0.164427,52.320322],[0.162326,52.321526],[0.162155,52.322265],[0.16292,52.323477],[0.162576,52.324186],[0.151909,52.324637],[0.14905,52.325528],[0.147352,52.32414],[0.143177,52.324084],[0.142168,52.322664],[0.142854,52.32125],[0.140316,52.32067],[0.138452,52.321121],[0.134394,52.322895],[0.130578,52.325121],[0.128281,52.325405],[0.125917,52.326672],[0.123052,52.326935],[0.120033,52.328133],[0.115433,52.328373],[0.110287,52.328205],[0.107978,52.329309],[0.104797,52.328762],[0.102621,52.330292],[0.099744,52.331087],[0.096506,52.3313],[0.093555,52.334145],[0.091042,52.334914],[0.089494,52.334843],[0.08688,52.335646],[0.084528,52.334656],[0.08221,52.334863],[0.07659,52.337051],[0.073873,52.338441],[0.065264,52.341367],[0.059296,52.344188],[0.056681,52.346392],[0.049595,52.34949],[0.044176,52.35277]],[[0.155281,52.23723],[0.166231,52.234255],[0.167339,52.235785],[0.169447,52.235249],[0.170092,52.234324],[0.171439,52.23384],[0.171336,52.232958],[0.16906,52.233551],[0.16665,52.230136],[0.164154,52.23077],[0.163462,52.230083],[0.160978,52.231008],[0.157323,52.227494],[0.154851,52.226487],[0.156172,52.224951],[0.15686,52.223318],[0.163828,52.219103],[0.164968,52.219272],[0.16548,52.217906],[0.175844,52.217241],[0.175201,52.215564],[0.173606,52.213267],[0.17301,52.213392],[0.170407,52.208889],[0.170301,52.207017],[0.170876,52.206013],[0.168591,52.205047],[0.167344,52.204148],[0.171235,52.20381],[0.173075,52.203959],[0.175749,52.205458],[0.178276,52.204076],[0.17741,52.203262],[0.179921,52.202251],[0.178934,52.201414],[0.179932,52.200322],[0.181504,52.199558],[0.180756,52.198911],[0.182686,52.198111],[0.181088,52.196546],[0.183501,52.195771],[0.181702,52.193128],[0.184552,52.191485],[0.182041,52.189965],[0.181022,52.187865],[0.183213,52.187848],[0.183118,52.186917],[0.181349,52.186881],[0.181719,52.185264],[0.181181,52.183065],[0.181706,52.170603],[0.181329,52.169491],[0.176416,52.170944],[0.171961,52.17124],[0.162629,52.172481],[0.159885,52.168448],[0.154927,52.164623],[0.141756,52.171005],[0.130588,52.167817],[0.130181,52.16807],[0.126814,52.167056],[0.126822,52.166754],[0.120578,52.164994],[0.103429,52.157942],[0.101101,52.160725],[0.104682,52.163427],[0.105827,52.166183],[0.10785,52.168326],[0.106092,52.168299],[0.106945,52.169893],[0.099287,52.171328],[0.099927,52.172763],[0.101313,52.173813],[0.101393,52.175859],[0.099496,52.176688],[0.099634,52.179335],[0.098132,52.180558],[0.099248,52.182204],[0.100445,52.182658],[0.099989,52.184944],[0.102027,52.186513],[0.102828,52.188134],[0.104749,52.189011],[0.104714,52.190656],[0.104057,52.191513],[0.100245,52.192431],[0.099723,52.191828],[0.096851,52.19208],[0.096384,52.192851],[0.097407,52.195088],[0.09757,52.197309],[0.09623,52.19756],[0.094891,52.199333],[0.09231,52.199499],[0.090536,52.200233],[0.084698,52.201495],[0.085534,52.203254],[0.078957,52.204353],[0.079037,52.205815],[0.077568,52.206056],[0.077328,52.207868],[0.073947,52.208381],[0.073665,52.209874],[0.074242,52.211535],[0.069801,52.212178],[0.071117,52.215126],[0.06864,52.214933],[0.068645,52.21611],[0.074971,52.216789],[0.075141,52.217111],[0.081543,52.218231],[0.08508,52.220046],[0.085634,52.219796],[0.087548,52.220934],[0.089405,52.221523],[0.089996,52.22109],[0.09251,52.223132],[0.093783,52.222573],[0.095515,52.224346],[0.101179,52.226974],[0.10783,52.230582],[0.11305,52.229073],[0.117406,52.228266],[0.118712,52.23132],[0.125,52.2343],[0.127606,52.233839],[0.12987,52.23565],[0.147667,52.22989],[0.151262,52.232867],[0.155281,52.23723]]]},"properties":{"LAD22CD":"E07000012","LAD22NM":"South Cambridgeshire","BNG_E":543295,"BNG_N":247586,"LONG":0.091017,"LAT":52.10805,"GlobalID":"790b5d45-944d-4e62-901a-fb35e9d38488"},"id":64}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.118636,54.926106],[-3.118378,54.92718],[-3.124791,54.928223],[-3.134882,54.927508],[-3.140158,54.927896],[-3.142945,54.928723],[-3.144486,54.929771],[-3.145297,54.930947],[-3.151184,54.932021],[-3.154198,54.933297],[-3.155762,54.934771],[-3.155103,54.936253],[-3.156552,54.937587],[-3.169485,54.940708],[-3.173474,54.940895],[-3.178034,54.94195],[-3.181913,54.944513],[-3.184039,54.946617],[-3.184856,54.948486],[-3.185863,54.949592],[-3.187492,54.950274],[-3.197724,54.951997],[-3.201979,54.953396],[-3.211485,54.954315],[-3.217749,54.953264],[-3.222556,54.952055],[-3.228383,54.951614],[-3.230894,54.952103],[-3.231786,54.95042],[-3.232657,54.950318],[-3.236494,54.948433],[-3.241072,54.945933],[-3.243295,54.945155],[-3.249514,54.943961],[-3.253766,54.94399],[-3.256647,54.943408],[-3.265108,54.94312],[-3.27249,54.942095],[-3.281109,54.942429],[-3.285143,54.941556],[-3.291413,54.937342],[-3.298967,54.929243],[-3.302585,54.927933],[-3.304796,54.926178],[-3.308528,54.925401],[-3.313914,54.920784],[-3.315209,54.918316],[-3.313384,54.914654],[-3.309349,54.912076],[-3.303216,54.909197],[-3.300997,54.909607],[-3.297787,54.907386],[-3.292636,54.906617],[-3.285633,54.904435],[-3.276947,54.901341],[-3.272321,54.899569],[-3.269543,54.900089],[-3.266239,54.904468],[-3.260563,54.910488],[-3.257091,54.91185],[-3.253106,54.912552],[-3.248753,54.913779],[-3.246537,54.913609],[-3.245797,54.912431],[-3.244357,54.911693],[-3.238099,54.911404],[-3.234601,54.911615],[-3.233475,54.911387],[-3.229955,54.907523],[-3.227541,54.906004],[-3.224134,54.906653],[-3.222948,54.905982],[-3.222132,54.903906],[-3.220794,54.902305],[-3.215722,54.903854],[-3.213968,54.905296],[-3.212163,54.905073],[-3.211924,54.904183],[-3.209904,54.903891],[-3.207855,54.905692],[-3.205546,54.906181],[-3.209541,54.903621],[-3.211324,54.903435],[-3.213193,54.904513],[-3.216439,54.902824],[-3.220014,54.901823],[-3.222253,54.90195],[-3.223556,54.90386],[-3.225375,54.904282],[-3.229821,54.905813],[-3.233367,54.909271],[-3.239421,54.909186],[-3.24628,54.910312],[-3.247619,54.911433],[-3.248972,54.911682],[-3.252342,54.911234],[-3.255002,54.909723],[-3.255221,54.904825],[-3.255873,54.904269],[-3.253891,54.903048],[-3.252701,54.903395],[-3.252867,54.904357],[-3.251556,54.904784],[-3.251839,54.903011],[-3.253783,54.901481],[-3.255452,54.897639],[-3.257147,54.897345],[-3.259562,54.895821],[-3.259979,54.894566],[-3.26309,54.894233],[-3.262459,54.895115],[-3.266697,54.893774],[-3.270625,54.891718],[-3.272705,54.891457],[-3.274476,54.891935],[-3.27879,54.892159],[-3.283943,54.892903],[-3.286753,54.89203],[-3.28779,54.890195],[-3.287374,54.889437],[-3.284021,54.888722],[-3.283708,54.884274],[-3.282177,54.882869],[-3.281759,54.880413],[-3.279618,54.878886],[-3.279097,54.877247],[-3.279482,54.874361],[-3.28088,54.87173],[-3.283777,54.869215],[-3.284834,54.867415],[-3.284084,54.865204],[-3.281094,54.863747],[-3.280107,54.862194],[-3.280625,54.861487],[-3.28338,54.860341],[-3.284285,54.859122],[-3.285481,54.859172],[-3.282642,54.862249],[-3.285087,54.864293],[-3.286324,54.86762],[-3.286417,54.868834],[-3.284927,54.871206],[-3.282878,54.873375],[-3.282114,54.875998],[-3.28545,54.87822],[-3.286988,54.878799],[-3.290299,54.87908],[-3.293314,54.880373],[-3.29612,54.882418],[-3.30051,54.88472],[-3.301974,54.885234],[-3.305925,54.885871],[-3.308095,54.887012],[-3.311216,54.888116],[-3.315585,54.888969],[-3.317902,54.889234],[-3.324751,54.88907],[-3.328705,54.890112],[-3.329876,54.889658],[-3.334432,54.890596],[-3.336087,54.891223],[-3.336791,54.892132],[-3.338973,54.893674],[-3.340242,54.895683],[-3.340866,54.895806],[-3.344567,54.895029],[-3.347088,54.893789],[-3.347093,54.894896],[-3.341819,54.896568],[-3.340911,54.897223],[-3.33518,54.898631],[-3.335227,54.899169],[-3.338368,54.900315],[-3.341287,54.900305],[-3.345114,54.899674],[-3.350575,54.89771],[-3.354162,54.895731],[-3.357021,54.894802],[-3.358751,54.893805],[-3.366528,54.89167],[-3.367462,54.891073],[-3.376109,54.88429],[-3.377405,54.88351],[-3.386168,54.875024],[-3.393325,54.870439],[-3.396416,54.869861],[-3.39728,54.869437],[-3.394148,54.868542],[-3.394764,54.867805],[-3.397917,54.868604],[-3.399858,54.867415],[-3.401498,54.863377],[-3.403107,54.862755],[-3.404583,54.860568],[-3.405002,54.856356],[-3.406149,54.854956],[-3.40903,54.844065],[-3.410043,54.843172],[-3.410486,54.841639],[-3.414923,54.834178],[-3.419605,54.828368],[-3.425037,54.820588],[-3.426438,54.819701],[-3.427444,54.818381],[-3.430914,54.811067],[-3.435146,54.806246],[-3.437714,54.801998],[-3.438384,54.799749],[-3.437635,54.795612],[-3.433374,54.787381],[-3.431391,54.781214],[-3.431927,54.772558],[-3.434491,54.762373],[-3.436617,54.758866],[-3.441113,54.754688],[-3.44542,54.752173],[-3.451677,54.74812],[-3.456296,54.744042],[-3.461057,54.740574],[-3.465586,54.738244],[-3.471834,54.73615],[-3.478996,54.732382],[-3.483509,54.730662],[-3.485173,54.729674],[-3.490368,54.727818],[-3.495809,54.724234],[-3.498314,54.720719],[-3.498592,54.719642],[-3.502281,54.716245],[-3.504943,54.715576],[-3.507549,54.715966],[-3.507448,54.716935],[-3.509405,54.717406],[-3.510077,54.710939],[-3.511619,54.706321],[-3.513477,54.704306],[-3.514324,54.700723],[-3.515694,54.699119],[-3.519205,54.692689],[-3.526239,54.685806],[-3.529866,54.683514],[-3.533479,54.681868],[-3.53814,54.678801],[-3.543549,54.676577],[-3.547629,54.67387],[-3.550041,54.67036],[-3.553158,54.667408],[-3.558031,54.664054],[-3.56109,54.662418],[-3.561319,54.658103],[-3.562051,54.657151],[-3.563196,54.657153],[-3.563905,54.655282],[-3.56531,54.654276],[-3.566996,54.653827],[-3.568711,54.651179],[-3.567245,54.650669],[-3.568006,54.649739],[-3.563402,54.648143],[-3.560575,54.648564],[-3.555793,54.650396],[-3.553926,54.650628],[-3.551246,54.650284],[-3.547375,54.6487],[-3.553273,54.649952],[-3.556607,54.649123],[-3.558399,54.647929],[-3.559962,54.647567],[-3.56289,54.647424],[-3.558174,54.646015],[-3.561918,54.646304],[-3.564534,54.647031],[-3.566104,54.648477],[-3.567457,54.648896],[-3.571969,54.649],[-3.577776,54.651941],[-3.578783,54.651947],[-3.575874,54.646663],[-3.574595,54.63934],[-3.575519,54.63519],[-3.573174,54.631429],[-3.573542,54.630685],[-3.571875,54.628484],[-3.56978,54.62314],[-3.57084,54.619693],[-3.570694,54.618534],[-3.568968,54.615965],[-3.568171,54.612149],[-3.57128,54.611702],[-3.570254,54.609143],[-3.570547,54.607604],[-3.571846,54.606716],[-3.570733,54.602776],[-3.572555,54.600691],[-3.569536,54.599999],[-3.56006,54.598771],[-3.554227,54.596443],[-3.551629,54.597264],[-3.551133,54.599278],[-3.545971,54.60467],[-3.546333,54.607125],[-3.544382,54.607353],[-3.543677,54.606791],[-3.541811,54.606601],[-3.540627,54.605749],[-3.538717,54.605071],[-3.537494,54.604012],[-3.536965,54.602871],[-3.535397,54.60361],[-3.529697,54.603619],[-3.526662,54.603228],[-3.525235,54.603676],[-3.522028,54.605442],[-3.520069,54.605464],[-3.518852,54.604905],[-3.51604,54.604699],[-3.512764,54.605017],[-3.51113,54.604783],[-3.510104,54.603474],[-3.508212,54.602133],[-3.503805,54.601964],[-3.502315,54.600286],[-3.499933,54.599191],[-3.496463,54.599211],[-3.494751,54.59876],[-3.4923,54.599397],[-3.489127,54.59746],[-3.488443,54.596452],[-3.488688,54.595081],[-3.486993,54.592774],[-3.487348,54.591997],[-3.48705,54.587132],[-3.485331,54.584028],[-3.483594,54.58362],[-3.481582,54.582335],[-3.481128,54.581189],[-3.476302,54.582151],[-3.470233,54.582848],[-3.467028,54.582934],[-3.461999,54.583708],[-3.460338,54.58352],[-3.457072,54.582514],[-3.456616,54.581464],[-3.453552,54.582087],[-3.452861,54.581556],[-3.450522,54.581035],[-3.446219,54.58155],[-3.443607,54.582693],[-3.441533,54.586588],[-3.438922,54.588503],[-3.43917,54.589532],[-3.43719,54.592677],[-3.435974,54.592997],[-3.435959,54.594275],[-3.433246,54.596728],[-3.431235,54.596303],[-3.428673,54.594311],[-3.428871,54.593361],[-3.427137,54.592675],[-3.424919,54.592297],[-3.422582,54.591117],[-3.422215,54.59166],[-3.418951,54.590284],[-3.413656,54.589192],[-3.413426,54.588568],[-3.408199,54.586382],[-3.40747,54.586753],[-3.404555,54.58657],[-3.401866,54.587403],[-3.399452,54.58709],[-3.396977,54.587129],[-3.395498,54.586366],[-3.393405,54.586009],[-3.391794,54.58487],[-3.388988,54.580366],[-3.388508,54.578802],[-3.38603,54.576531],[-3.382398,54.577013],[-3.378281,54.575956],[-3.376146,54.573256],[-3.375814,54.571382],[-3.376179,54.569181],[-3.376886,54.568298],[-3.376066,54.567395],[-3.375714,54.565624],[-3.376931,54.564679],[-3.372391,54.561459],[-3.372603,54.559667],[-3.370025,54.558325],[-3.370882,54.555428],[-3.367699,54.554267],[-3.366711,54.55292],[-3.36485,54.551817],[-3.364371,54.550734],[-3.36433,54.548053],[-3.366153,54.544644],[-3.361356,54.543758],[-3.360085,54.537954],[-3.355348,54.53548],[-3.350478,54.533674],[-3.34004,54.535234],[-3.337334,54.534096],[-3.333202,54.531365],[-3.328434,54.530975],[-3.327206,54.529703],[-3.324736,54.530112],[-3.316459,54.527815],[-3.314658,54.52788],[-3.307276,54.530208],[-3.305784,54.530134],[-3.302579,54.528375],[-3.299834,54.5275],[-3.298645,54.527464],[-3.29895,54.524895],[-3.294764,54.523782],[-3.293121,54.522478],[-3.291077,54.52181],[-3.285545,54.521282],[-3.284586,54.520618],[-3.284585,54.519567],[-3.278304,54.517251],[-3.273576,54.516021],[-3.272232,54.515378],[-3.268426,54.515044],[-3.266424,54.514372],[-3.262026,54.511501],[-3.261332,54.510683],[-3.257841,54.508754],[-3.256762,54.508586],[-3.25444,54.509108],[-3.253296,54.50872],[-3.248937,54.508465],[-3.247337,54.507312],[-3.244301,54.507422],[-3.239913,54.506183],[-3.239911,54.50536],[-3.241038,54.50432],[-3.237581,54.503162],[-3.234195,54.501314],[-3.233157,54.500375],[-3.231126,54.500251],[-3.229747,54.501254],[-3.227699,54.502043],[-3.226241,54.501698],[-3.224716,54.502336],[-3.221316,54.499452],[-3.216878,54.496958],[-3.213625,54.496592],[-3.212156,54.493675],[-3.212802,54.491583],[-3.211237,54.488182],[-3.213749,54.485733],[-3.213554,54.484607],[-3.216331,54.483125],[-3.218462,54.482983],[-3.219321,54.482024],[-3.217418,54.481777],[-3.214974,54.480356],[-3.214773,54.479647],[-3.212713,54.478984],[-3.211974,54.477422],[-3.208177,54.475127],[-3.204949,54.47445],[-3.203216,54.474767],[-3.20004,54.473627],[-3.199112,54.472068],[-3.199469,54.47062],[-3.198063,54.470343],[-3.196436,54.468189],[-3.196757,54.465557],[-3.193119,54.463343],[-3.188872,54.462599],[-3.188259,54.462918],[-3.184361,54.462458],[-3.180612,54.459382],[-3.178999,54.457112],[-3.176586,54.455898],[-3.1749,54.454603],[-3.16714,54.454111],[-3.16551,54.455733],[-3.163764,54.455989],[-3.163688,54.457296],[-3.162297,54.458281],[-3.159167,54.457855],[-3.15644,54.458622],[-3.153825,54.460154],[-3.152883,54.461656],[-3.150034,54.462747],[-3.147539,54.465501],[-3.147146,54.467116],[-3.145558,54.468444],[-3.142472,54.469506],[-3.137743,54.470284],[-3.136444,54.470746],[-3.133596,54.465577],[-3.132213,54.464544],[-3.126167,54.4628],[-3.119426,54.460238],[-3.112573,54.461491],[-3.115705,54.466583],[-3.111334,54.470982],[-3.109479,54.474004],[-3.102893,54.472333],[-3.10068,54.472793],[-3.097753,54.471903],[-3.094877,54.47365],[-3.093817,54.474803],[-3.092227,54.479072],[-3.088808,54.482837],[-3.088265,54.483964],[-3.084383,54.485576],[-3.081706,54.484926],[-3.076215,54.489365],[-3.073381,54.490283],[-3.069978,54.490444],[-3.061986,54.492523],[-3.055753,54.492141],[-3.052235,54.491143],[-3.050803,54.492074],[-3.048304,54.496278],[-3.044478,54.495779],[-3.042291,54.495822],[-3.039571,54.496347],[-3.035875,54.497633],[-3.032959,54.498029],[-3.031442,54.497929],[-3.022869,54.499675],[-3.014835,54.499843],[-3.013666,54.500931],[-3.012414,54.505727],[-3.011389,54.507383],[-3.011755,54.508623],[-3.013394,54.508783],[-3.014896,54.509816],[-3.015833,54.513684],[-3.016984,54.514936],[-3.015233,54.518326],[-3.015774,54.520283],[-3.016634,54.521458],[-3.015432,54.523486],[-3.015314,54.525594],[-3.016234,54.526421],[-3.018651,54.527442],[-3.019311,54.528132],[-3.024385,54.529095],[-3.025761,54.530096],[-3.024839,54.532544],[-3.024823,54.534722],[-3.023262,54.538814],[-3.025054,54.541044],[-3.016581,54.547959],[-3.01959,54.551817],[-3.018412,54.553376],[-3.020362,54.558923],[-3.016777,54.56159],[-3.020955,54.564764],[-3.028794,54.566927],[-3.026604,54.56725],[-3.024022,54.568713],[-3.020533,54.571504],[-3.018282,54.574995],[-3.019498,54.575968],[-3.023904,54.574489],[-3.026964,54.57455],[-3.030307,54.575799],[-3.037065,54.580987],[-3.03115,54.582382],[-3.026022,54.58653],[-3.024609,54.586805],[-3.019832,54.588687],[-3.017377,54.588784],[-3.01438,54.590082],[-3.01277,54.591624],[-3.009601,54.593574],[-3.009219,54.594499],[-3.007491,54.595348],[-3.008962,54.595784],[-3.01058,54.597178],[-3.011504,54.599542],[-3.017759,54.600295],[-3.022889,54.60276],[-3.034342,54.602778],[-3.034029,54.603736],[-3.038969,54.608844],[-3.03822,54.610434],[-3.039115,54.612344],[-3.039849,54.612999],[-3.042187,54.612934],[-3.044707,54.614296],[-3.046527,54.614379],[-3.053255,54.613403],[-3.0551,54.614561],[-3.055714,54.614021],[-3.059084,54.613679],[-3.06187,54.612596],[-3.062722,54.612584],[-3.065585,54.614165],[-3.067705,54.614178],[-3.070748,54.613577],[-3.077794,54.610567],[-3.080347,54.612124],[-3.083841,54.612389],[-3.085936,54.612902],[-3.087566,54.615567],[-3.089629,54.615688],[-3.092404,54.617236],[-3.091921,54.618289],[-3.092219,54.619465],[-3.08961,54.622158],[-3.09006,54.623993],[-3.091308,54.625398],[-3.091992,54.627019],[-3.091391,54.627347],[-3.092086,54.628835],[-3.090774,54.631056],[-3.091387,54.632819],[-3.090698,54.634322],[-3.091974,54.637911],[-3.092038,54.640744],[-3.093279,54.641885],[-3.094295,54.64387],[-3.092241,54.649392],[-3.092492,54.654124],[-3.092045,54.657402],[-3.090866,54.658651],[-3.090062,54.660292],[-3.088108,54.661054],[-3.086365,54.662851],[-3.083897,54.663155],[-3.08326,54.664251],[-3.081488,54.664086],[-3.0777,54.666233],[-3.07528,54.66584],[-3.07454,54.666564],[-3.072896,54.666866],[-3.071756,54.667972],[-3.071188,54.669403],[-3.069644,54.670618],[-3.069303,54.671424],[-3.067722,54.671566],[-3.066176,54.672654],[-3.063515,54.673013],[-3.059529,54.675455],[-3.057807,54.677827],[-3.054605,54.679757],[-3.060123,54.682021],[-3.070429,54.684934],[-3.082691,54.685389],[-3.087191,54.686092],[-3.08192,54.695254],[-3.078949,54.694677],[-3.073628,54.69558],[-3.063799,54.700082],[-3.058158,54.699176],[-3.051972,54.699288],[-3.040729,54.697531],[-3.038877,54.697131],[-3.0337,54.69432],[-3.022859,54.693476],[-3.017657,54.693487],[-3.004778,54.695123],[-3.001072,54.694901],[-2.997199,54.695099],[-2.995769,54.694528],[-2.995333,54.695617],[-2.993789,54.695357],[-2.992275,54.696243],[-2.994053,54.697308],[-2.99355,54.698833],[-2.994528,54.699796],[-2.992874,54.701894],[-2.992605,54.704745],[-2.989825,54.707151],[-2.990412,54.708721],[-2.989119,54.710907],[-2.990741,54.711737],[-2.991231,54.712845],[-2.9898,54.713807],[-2.988825,54.715094],[-2.986779,54.714847],[-2.986583,54.715971],[-2.984763,54.716062],[-2.98443,54.717372],[-2.983338,54.718229],[-2.982999,54.719381],[-2.985275,54.719274],[-2.986312,54.720546],[-2.983925,54.720426],[-2.983646,54.720938],[-2.98653,54.722411],[-2.986693,54.723542],[-2.98881,54.724085],[-2.98864,54.726019],[-2.9901,54.727167],[-2.989613,54.727767],[-2.992668,54.728919],[-2.992566,54.730514],[-2.993264,54.731211],[-2.996718,54.731782],[-2.996615,54.733634],[-2.999717,54.733852],[-3.00212,54.733197],[-3.00351,54.733708],[-3.005055,54.733562],[-3.008182,54.734593],[-3.011983,54.734759],[-3.011739,54.736558],[-3.015711,54.737573],[-3.015693,54.738826],[-3.017475,54.739469],[-3.020834,54.739758],[-3.021512,54.740141],[-3.022003,54.741629],[-3.023546,54.742288],[-3.022833,54.743024],[-3.022874,54.744206],[-3.021853,54.745164],[-3.02216,54.74643],[-3.023898,54.746421],[-3.026021,54.747152],[-3.025693,54.74824],[-3.021668,54.748494],[-3.021936,54.749461],[-3.01989,54.74998],[-3.018562,54.750884],[-3.01566,54.751285],[-3.011119,54.75294],[-3.008387,54.752909],[-3.005483,54.75355],[-3.003243,54.754759],[-3.000882,54.755301],[-2.997732,54.759941],[-2.997772,54.762066],[-2.994596,54.759392],[-2.991404,54.761278],[-2.990373,54.763345],[-2.988121,54.765245],[-2.987354,54.764852],[-2.985726,54.766029],[-2.987702,54.766966],[-2.987043,54.768568],[-2.988606,54.770047],[-2.987966,54.770402],[-2.987726,54.771898],[-2.985448,54.774116],[-2.98569,54.774714],[-2.984438,54.776158],[-2.986398,54.777015],[-2.987142,54.778101],[-2.987056,54.779473],[-2.99025,54.780349],[-2.99121,54.781437],[-2.990788,54.782251],[-2.989115,54.782549],[-2.986482,54.784076],[-2.986768,54.785223],[-2.983069,54.786007],[-2.98751,54.789298],[-2.986146,54.791541],[-2.987774,54.792461],[-2.993248,54.792958],[-2.996017,54.792752],[-2.996298,54.791606],[-3.001535,54.790916],[-3.004798,54.790735],[-3.009321,54.791071],[-3.009912,54.792294],[-3.009357,54.793307],[-3.002886,54.798419],[-3.001763,54.800242],[-3.011985,54.803329],[-3.014211,54.800995],[-3.017292,54.801904],[-3.021045,54.798854],[-3.026771,54.801203],[-3.028075,54.802672],[-3.028026,54.804568],[-3.027489,54.805565],[-3.025944,54.806027],[-3.026164,54.806969],[-3.02547,54.807955],[-3.026084,54.809868],[-3.02599,54.810855],[-3.026856,54.811548],[-3.027802,54.813427],[-3.027112,54.814286],[-3.030133,54.814556],[-3.0299,54.81628],[-3.029076,54.817168],[-3.029915,54.817716],[-3.030848,54.819268],[-3.030306,54.821106],[-3.029249,54.821646],[-3.028749,54.823392],[-3.030355,54.824836],[-3.030734,54.826779],[-3.032507,54.828719],[-3.036082,54.828514],[-3.037601,54.829286],[-3.037625,54.830602],[-3.039745,54.831823],[-3.041582,54.832335],[-3.04235,54.833087],[-3.044398,54.832868],[-3.047458,54.833494],[-3.047992,54.835072],[-3.04463,54.835894],[-3.039021,54.836222],[-3.03574,54.836816],[-3.029019,54.839761],[-3.027687,54.840857],[-3.027017,54.842924],[-3.025736,54.844719],[-3.02095,54.847229],[-3.022149,54.849435],[-3.02271,54.852404],[-3.023273,54.85256],[-3.025601,54.851393],[-3.028272,54.85086],[-3.032185,54.852414],[-3.045689,54.853243],[-3.05365,54.854157],[-3.059543,54.855293],[-3.064562,54.855853],[-3.066209,54.85495],[-3.064026,54.859809],[-3.070543,54.86071],[-3.070061,54.861439],[-3.064579,54.861451],[-3.063681,54.862846],[-3.05805,54.862472],[-3.058076,54.863955],[-3.056259,54.864509],[-3.05446,54.867911],[-3.056504,54.870748],[-3.057493,54.870673],[-3.064862,54.872244],[-3.065802,54.872634],[-3.067725,54.874382],[-3.072367,54.876054],[-3.065801,54.879559],[-3.064253,54.880886],[-3.063688,54.882095],[-3.057174,54.886746],[-3.059279,54.887176],[-3.061314,54.888224],[-3.061444,54.889603],[-3.064115,54.889243],[-3.066114,54.888491],[-3.070879,54.889711],[-3.071833,54.895236],[-3.073539,54.899743],[-3.075409,54.900114],[-3.0783,54.90239],[-3.078356,54.90463],[-3.083835,54.904586],[-3.084665,54.903905],[-3.089693,54.903129],[-3.091829,54.903192],[-3.097209,54.904318],[-3.101283,54.904781],[-3.101576,54.906541],[-3.103873,54.906118],[-3.105474,54.908768],[-3.108836,54.908286],[-3.110534,54.906974],[-3.112749,54.907131],[-3.112536,54.905862],[-3.113642,54.904389],[-3.114938,54.904053],[-3.119878,54.90398],[-3.126362,54.905508],[-3.125473,54.906649],[-3.121499,54.908153],[-3.118517,54.910205],[-3.120597,54.912869],[-3.121697,54.915348],[-3.119941,54.916118],[-3.118851,54.917388],[-3.118678,54.918411],[-3.119959,54.918966],[-3.122283,54.922041],[-3.120356,54.92305],[-3.120442,54.92407],[-3.118681,54.924305],[-3.118954,54.925404],[-3.118935,54.925518],[-3.118912,54.925564],[-3.118636,54.926106]]]},"properties":{"LAD22CD":"E07000026","LAD22NM":"Allerdale","BNG_E":317520,"BNG_N":532997,"LONG":-3.2809,"LAT":54.68524,"GlobalID":"d164b45a-8994-43e7-a1d9-d53075290ff4"},"id":65}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.200532,54.064404],[-3.201777,54.065628],[-3.203446,54.065268],[-3.201105,54.064102],[-3.200532,54.064404]]],[[[-3.172684,54.062252],[-3.172292,54.064299],[-3.17409,54.065839],[-3.175865,54.065503],[-3.176895,54.063515],[-3.173734,54.061856],[-3.172684,54.062252]]],[[[-3.252151,54.150493],[-3.252024,54.151376],[-3.25374,54.152434],[-3.255267,54.152859],[-3.257206,54.152727],[-3.26233,54.150428],[-3.268245,54.149371],[-3.271414,54.148087],[-3.276005,54.143635],[-3.276648,54.142019],[-3.275527,54.13163],[-3.274801,54.12902],[-3.272266,54.123693],[-3.271344,54.119934],[-3.270923,54.117297],[-3.269434,54.115466],[-3.26846,54.112289],[-3.269433,54.111139],[-3.268383,54.109145],[-3.268954,54.10846],[-3.268554,54.107371],[-3.267436,54.106742],[-3.263999,54.102584],[-3.255218,54.091035],[-3.247094,54.082031],[-3.234946,54.070905],[-3.232212,54.069721],[-3.225055,54.063295],[-3.209913,54.047671],[-3.198696,54.044808],[-3.195552,54.044269],[-3.19234,54.045178],[-3.187192,54.045914],[-3.173161,54.047077],[-3.171376,54.049246],[-3.171538,54.052583],[-3.170701,54.054096],[-3.17101,54.054784],[-3.172829,54.055244],[-3.174243,54.054143],[-3.172765,54.051369],[-3.173584,54.048961],[-3.174851,54.048349],[-3.175728,54.049082],[-3.174317,54.050901],[-3.174983,54.052226],[-3.178588,54.055265],[-3.180307,54.053875],[-3.185032,54.051643],[-3.196021,54.048744],[-3.19872,54.049038],[-3.205494,54.052037],[-3.206763,54.053517],[-3.207112,54.055144],[-3.208117,54.056307],[-3.208051,54.057924],[-3.20745,54.05894],[-3.210727,54.061598],[-3.211034,54.063469],[-3.210266,54.065196],[-3.213377,54.066311],[-3.217023,54.06639],[-3.219017,54.065546],[-3.220064,54.065943],[-3.221409,54.067265],[-3.22337,54.067658],[-3.223292,54.068472],[-3.225792,54.070298],[-3.226816,54.071573],[-3.227134,54.073052],[-3.226269,54.07605],[-3.226469,54.078046],[-3.224642,54.078885],[-3.223512,54.080298],[-3.226828,54.083551],[-3.229665,54.083276],[-3.232754,54.083681],[-3.232534,54.084881],[-3.230487,54.084798],[-3.229019,54.08592],[-3.229038,54.087203],[-3.229893,54.08844],[-3.232183,54.088625],[-3.233102,54.087423],[-3.234761,54.086658],[-3.239206,54.087644],[-3.238926,54.088559],[-3.239735,54.090204],[-3.241907,54.091103],[-3.241821,54.092322],[-3.244878,54.093979],[-3.242777,54.094989],[-3.242988,54.09672],[-3.244091,54.097355],[-3.246012,54.097599],[-3.247477,54.097329],[-3.25041,54.098035],[-3.249074,54.098569],[-3.244348,54.098163],[-3.242937,54.098939],[-3.243005,54.100334],[-3.244571,54.101828],[-3.245184,54.103454],[-3.246191,54.108461],[-3.245494,54.109221],[-3.246693,54.111557],[-3.249725,54.113588],[-3.250846,54.115954],[-3.249964,54.120772],[-3.250834,54.125852],[-3.254296,54.130482],[-3.25457,54.131787],[-3.256256,54.134479],[-3.255948,54.134926],[-3.258841,54.136933],[-3.258907,54.137513],[-3.261164,54.137974],[-3.264412,54.141044],[-3.264218,54.142922],[-3.264868,54.144553],[-3.264464,54.1455],[-3.264987,54.146577],[-3.264451,54.147746],[-3.262353,54.148585],[-3.260555,54.148687],[-3.256525,54.150067],[-3.252151,54.150493]]],[[[-3.202491,54.21118],[-3.203595,54.212489],[-3.203461,54.213449],[-3.20278,54.214501],[-3.204964,54.214993],[-3.206328,54.211754],[-3.206223,54.209699],[-3.208044,54.208792],[-3.212246,54.208562],[-3.213079,54.207181],[-3.21233,54.206581],[-3.211866,54.204701],[-3.212453,54.201224],[-3.212046,54.199873],[-3.213278,54.198848],[-3.214641,54.196803],[-3.214555,54.19511],[-3.215896,54.192578],[-3.216514,54.18952],[-3.218451,54.187151],[-3.215757,54.187895],[-3.216176,54.186808],[-3.217971,54.186942],[-3.221594,54.188328],[-3.223075,54.187778],[-3.215174,54.184797],[-3.215609,54.181259],[-3.217157,54.17749],[-3.218402,54.176897],[-3.223316,54.173145],[-3.228447,54.171357],[-3.230172,54.171671],[-3.238439,54.171744],[-3.241272,54.172109],[-3.243915,54.171755],[-3.24639,54.171956],[-3.250619,54.170709],[-3.254606,54.170228],[-3.256535,54.168737],[-3.25769,54.165933],[-3.257191,54.163973],[-3.256212,54.162748],[-3.251917,54.159726],[-3.251596,54.158714],[-3.251955,54.157362],[-3.24962,54.154852],[-3.248226,54.154553],[-3.247124,54.154987],[-3.246183,54.15631],[-3.24648,54.156966],[-3.245406,54.157768],[-3.242237,54.157797],[-3.239279,54.157065],[-3.237596,54.155823],[-3.237057,54.153872],[-3.238114,54.151855],[-3.240133,54.150812],[-3.240684,54.14864],[-3.240041,54.144877],[-3.24061,54.144496],[-3.241232,54.141666],[-3.242681,54.140494],[-3.242651,54.139507],[-3.243521,54.138774],[-3.244234,54.136715],[-3.244006,54.133901],[-3.244763,54.13174],[-3.244509,54.129263],[-3.244042,54.128358],[-3.244867,54.126484],[-3.244182,54.125254],[-3.243957,54.123456],[-3.245135,54.118594],[-3.24487,54.116891],[-3.241489,54.112877],[-3.242653,54.111584],[-3.241786,54.110333],[-3.242101,54.109329],[-3.239254,54.10407],[-3.235413,54.101176],[-3.233464,54.101026],[-3.232159,54.099932],[-3.232721,54.099091],[-3.230657,54.098284],[-3.228984,54.095794],[-3.226368,54.093825],[-3.224208,54.094117],[-3.221695,54.093521],[-3.221191,54.092706],[-3.219396,54.093414],[-3.220097,54.094787],[-3.219023,54.095654],[-3.214786,54.098054],[-3.198554,54.102976],[-3.194206,54.104237],[-3.191051,54.102634],[-3.187872,54.099326],[-3.186065,54.096081],[-3.185128,54.095662],[-3.185634,54.093701],[-3.187902,54.092592],[-3.186859,54.090469],[-3.185778,54.090235],[-3.18216,54.088149],[-3.17776,54.086238],[-3.176022,54.085159],[-3.176233,54.08459],[-3.173689,54.083323],[-3.173425,54.082226],[-3.174896,54.076615],[-3.175933,54.075585],[-3.175573,54.073769],[-3.174039,54.073301],[-3.1729,54.074062],[-3.174479,54.076088],[-3.173465,54.079565],[-3.171428,54.079634],[-3.169285,54.078623],[-3.166526,54.076903],[-3.165811,54.074658],[-3.155843,54.069715],[-3.154768,54.068576],[-3.154022,54.066328],[-3.150744,54.06481],[-3.150108,54.065871],[-3.151684,54.067317],[-3.153114,54.067867],[-3.157881,54.071591],[-3.160816,54.073102],[-3.164624,54.074469],[-3.166399,54.076899],[-3.167998,54.078036],[-3.170271,54.079212],[-3.172068,54.080758],[-3.17219,54.082108],[-3.170736,54.082303],[-3.169428,54.083142],[-3.168004,54.082264],[-3.166922,54.082925],[-3.164896,54.083186],[-3.161205,54.086729],[-3.158807,54.087773],[-3.154537,54.09064],[-3.14914,54.093551],[-3.148577,54.094318],[-3.149111,54.09529],[-3.142582,54.097393],[-3.144776,54.099493],[-3.148668,54.102549],[-3.154085,54.103813],[-3.154639,54.104644],[-3.157321,54.10597],[-3.161322,54.107307],[-3.161705,54.108062],[-3.164925,54.109121],[-3.171533,54.112578],[-3.174868,54.114765],[-3.174264,54.116504],[-3.172519,54.117258],[-3.171678,54.118097],[-3.166867,54.119753],[-3.166448,54.121084],[-3.163461,54.121946],[-3.163084,54.125406],[-3.164028,54.127583],[-3.163988,54.128668],[-3.160962,54.134057],[-3.159634,54.134952],[-3.163657,54.135296],[-3.162795,54.137832],[-3.163954,54.139976],[-3.163135,54.144234],[-3.164349,54.147063],[-3.163464,54.14888],[-3.164761,54.154497],[-3.163329,54.156985],[-3.162908,54.158881],[-3.156511,54.158939],[-3.149436,54.15974],[-3.147906,54.163054],[-3.147328,54.163133],[-3.147017,54.165263],[-3.144695,54.165511],[-3.144045,54.166463],[-3.144557,54.170911],[-3.144921,54.172344],[-3.146446,54.173252],[-3.145276,54.173668],[-3.145697,54.174735],[-3.144837,54.176016],[-3.150174,54.177411],[-3.152362,54.178914],[-3.151888,54.180209],[-3.152203,54.182105],[-3.154749,54.184154],[-3.15828,54.192571],[-3.163082,54.191739],[-3.163768,54.192364],[-3.162684,54.194322],[-3.161407,54.194922],[-3.15886,54.19784],[-3.158729,54.198543],[-3.153344,54.203104],[-3.14953,54.207297],[-3.146603,54.213713],[-3.147627,54.218476],[-3.151956,54.216361],[-3.159436,54.211676],[-3.163483,54.207939],[-3.167646,54.203152],[-3.17729,54.203613],[-3.180161,54.203372],[-3.182535,54.20356],[-3.187468,54.205212],[-3.189236,54.206598],[-3.192147,54.207175],[-3.195183,54.208379],[-3.200522,54.208228],[-3.200145,54.208808],[-3.201082,54.209771],[-3.200843,54.211535],[-3.202491,54.21118]]]]},"properties":{"LAD22CD":"E07000027","LAD22NM":"Barrow-in-Furness","BNG_E":321741,"BNG_N":474165,"LONG":-3.1999,"LAT":54.15731,"GlobalID":"71fab592-2b55-43cb-80bb-16fafe91b468"},"id":66}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.001884,54.934715],[-2.999825,54.936024],[-3.00103,54.936929],[-3.0021,54.935684],[-3.001884,54.934715]]],[[[-3.118954,54.925404],[-3.118681,54.924305],[-3.120442,54.92407],[-3.120356,54.92305],[-3.122283,54.922041],[-3.119959,54.918966],[-3.118678,54.918411],[-3.118851,54.917388],[-3.119941,54.916118],[-3.121697,54.915348],[-3.120597,54.912869],[-3.118517,54.910205],[-3.121499,54.908153],[-3.125473,54.906649],[-3.126362,54.905508],[-3.119878,54.90398],[-3.114938,54.904053],[-3.113642,54.904389],[-3.112536,54.905862],[-3.112749,54.907131],[-3.110534,54.906974],[-3.108836,54.908286],[-3.105474,54.908768],[-3.103873,54.906118],[-3.101576,54.906541],[-3.101283,54.904781],[-3.097209,54.904318],[-3.091829,54.903192],[-3.089693,54.903129],[-3.084665,54.903905],[-3.083835,54.904586],[-3.078356,54.90463],[-3.0783,54.90239],[-3.075409,54.900114],[-3.073539,54.899743],[-3.071833,54.895236],[-3.070879,54.889711],[-3.066114,54.888491],[-3.064115,54.889243],[-3.061444,54.889603],[-3.061314,54.888224],[-3.059279,54.887176],[-3.057174,54.886746],[-3.063688,54.882095],[-3.064253,54.880886],[-3.065801,54.879559],[-3.072367,54.876054],[-3.067725,54.874382],[-3.065802,54.872634],[-3.064862,54.872244],[-3.057493,54.870673],[-3.056504,54.870748],[-3.05446,54.867911],[-3.056259,54.864509],[-3.058076,54.863955],[-3.05805,54.862472],[-3.063681,54.862846],[-3.064579,54.861451],[-3.070061,54.861439],[-3.070543,54.86071],[-3.064026,54.859809],[-3.066209,54.85495],[-3.064562,54.855853],[-3.059543,54.855293],[-3.05365,54.854157],[-3.045689,54.853243],[-3.032185,54.852414],[-3.028272,54.85086],[-3.025601,54.851393],[-3.023273,54.85256],[-3.02271,54.852404],[-3.022149,54.849435],[-3.02095,54.847229],[-3.025736,54.844719],[-3.027017,54.842924],[-3.027687,54.840857],[-3.029019,54.839761],[-3.03574,54.836816],[-3.039021,54.836222],[-3.04463,54.835894],[-3.047992,54.835072],[-3.047458,54.833494],[-3.044398,54.832868],[-3.04235,54.833087],[-3.041582,54.832335],[-3.039745,54.831823],[-3.037625,54.830602],[-3.037601,54.829286],[-3.036082,54.828514],[-3.032507,54.828719],[-3.030734,54.826779],[-3.030355,54.824836],[-3.028749,54.823392],[-3.029249,54.821646],[-3.030306,54.821106],[-3.030848,54.819268],[-3.029915,54.817716],[-3.029076,54.817168],[-3.0299,54.81628],[-3.030133,54.814556],[-3.027112,54.814286],[-3.027802,54.813427],[-3.026856,54.811548],[-3.02599,54.810855],[-3.026084,54.809868],[-3.02547,54.807955],[-3.026164,54.806969],[-3.025944,54.806027],[-3.027489,54.805565],[-3.028026,54.804568],[-3.028075,54.802672],[-3.026771,54.801203],[-3.021045,54.798854],[-3.017292,54.801904],[-3.014211,54.800995],[-3.011985,54.803329],[-3.001763,54.800242],[-3.002886,54.798419],[-3.009357,54.793307],[-3.009912,54.792294],[-3.009321,54.791071],[-3.004798,54.790735],[-3.001535,54.790916],[-2.996298,54.791606],[-2.996017,54.792752],[-2.993248,54.792958],[-2.987774,54.792461],[-2.986146,54.791541],[-2.98751,54.789298],[-2.983069,54.786007],[-2.986768,54.785223],[-2.986482,54.784076],[-2.989115,54.782549],[-2.990788,54.782251],[-2.99121,54.781437],[-2.99025,54.780349],[-2.987056,54.779473],[-2.987142,54.778101],[-2.986398,54.777015],[-2.984438,54.776158],[-2.978489,54.777785],[-2.97664,54.777414],[-2.973905,54.778311],[-2.969347,54.777144],[-2.967574,54.779895],[-2.964658,54.780256],[-2.962075,54.778622],[-2.952755,54.782853],[-2.951839,54.78384],[-2.949463,54.784072],[-2.947255,54.783451],[-2.944784,54.784044],[-2.943648,54.785229],[-2.942238,54.785889],[-2.942467,54.786916],[-2.931172,54.792158],[-2.934836,54.792957],[-2.928549,54.801237],[-2.919715,54.805985],[-2.921082,54.809207],[-2.904414,54.813019],[-2.904103,54.816282],[-2.904752,54.818773],[-2.906749,54.820826],[-2.90741,54.821958],[-2.905428,54.821971],[-2.9049,54.821387],[-2.893984,54.822517],[-2.893044,54.821677],[-2.890313,54.821268],[-2.888735,54.821571],[-2.884932,54.823329],[-2.8829,54.823194],[-2.878019,54.824763],[-2.877429,54.825852],[-2.875881,54.826894],[-2.874304,54.82675],[-2.873836,54.827925],[-2.871992,54.828593],[-2.872237,54.829636],[-2.870785,54.831827],[-2.872792,54.832085],[-2.873088,54.833065],[-2.871479,54.833488],[-2.870444,54.834916],[-2.869069,54.834725],[-2.866638,54.835703],[-2.864052,54.836067],[-2.863061,54.837254],[-2.861013,54.836639],[-2.858232,54.834802],[-2.856389,54.834261],[-2.855692,54.833429],[-2.845246,54.832947],[-2.838273,54.83417],[-2.838473,54.833041],[-2.837769,54.831745],[-2.834477,54.831024],[-2.833964,54.828869],[-2.834275,54.828358],[-2.832096,54.826775],[-2.829411,54.825476],[-2.825577,54.827738],[-2.821975,54.825068],[-2.817769,54.827537],[-2.814765,54.825302],[-2.811354,54.823449],[-2.799378,54.818718],[-2.796902,54.819022],[-2.7927,54.82043],[-2.783052,54.822285],[-2.77889,54.821867],[-2.773199,54.820523],[-2.767009,54.823305],[-2.759892,54.823713],[-2.757962,54.823514],[-2.756428,54.822858],[-2.754952,54.824995],[-2.754872,54.827061],[-2.753159,54.827359],[-2.751015,54.829055],[-2.748372,54.828985],[-2.746137,54.828094],[-2.74362,54.827846],[-2.741017,54.824265],[-2.737752,54.823578],[-2.736665,54.822817],[-2.736129,54.821397],[-2.732224,54.820151],[-2.729207,54.818656],[-2.7264,54.81915],[-2.724049,54.819066],[-2.721216,54.819621],[-2.720305,54.819259],[-2.716725,54.81911],[-2.71454,54.819941],[-2.70726,54.81877],[-2.705663,54.816363],[-2.689793,54.819191],[-2.690034,54.820638],[-2.693474,54.823016],[-2.696034,54.825914],[-2.697098,54.827961],[-2.700124,54.830521],[-2.701225,54.833605],[-2.699951,54.833678],[-2.693684,54.836513],[-2.691256,54.837141],[-2.687022,54.837304],[-2.68535,54.837568],[-2.68522,54.836066],[-2.68324,54.835048],[-2.680137,54.835317],[-2.679163,54.836089],[-2.676651,54.836996],[-2.675683,54.83834],[-2.674133,54.839667],[-2.67256,54.842447],[-2.668971,54.845042],[-2.659311,54.848511],[-2.65777,54.849453],[-2.65533,54.854769],[-2.652863,54.85359],[-2.649087,54.853107],[-2.647272,54.853754],[-2.646247,54.853443],[-2.640196,54.854144],[-2.638778,54.853801],[-2.635077,54.854614],[-2.631385,54.853982],[-2.62858,54.854518],[-2.627102,54.853845],[-2.625231,54.853825],[-2.624048,54.854322],[-2.622552,54.853554],[-2.620237,54.853218],[-2.617254,54.853116],[-2.616722,54.852788],[-2.613014,54.852665],[-2.611221,54.853361],[-2.609701,54.852912],[-2.608444,54.853265],[-2.604932,54.852879],[-2.603769,54.853344],[-2.601644,54.852921],[-2.600127,54.851978],[-2.597633,54.851964],[-2.597374,54.850963],[-2.595805,54.849778],[-2.589943,54.848695],[-2.588512,54.847666],[-2.582671,54.845867],[-2.581783,54.84789],[-2.573353,54.853546],[-2.575841,54.856665],[-2.577431,54.859574],[-2.581199,54.864236],[-2.583631,54.865594],[-2.588596,54.869536],[-2.590372,54.872913],[-2.590247,54.873784],[-2.593165,54.875272],[-2.598962,54.879862],[-2.605454,54.884306],[-2.60455,54.88545],[-2.59719,54.886975],[-2.596063,54.887624],[-2.594386,54.887739],[-2.592532,54.888961],[-2.59117,54.888999],[-2.588166,54.891125],[-2.585073,54.892207],[-2.581907,54.894213],[-2.579693,54.894864],[-2.576414,54.896717],[-2.574805,54.898421],[-2.574862,54.899745],[-2.567566,54.909003],[-2.566604,54.913696],[-2.566221,54.919238],[-2.55984,54.920115],[-2.558097,54.921298],[-2.558979,54.9231],[-2.560255,54.923884],[-2.559406,54.924431],[-2.55359,54.924619],[-2.551656,54.925565],[-2.547614,54.926219],[-2.546249,54.927156],[-2.545273,54.929172],[-2.546084,54.930505],[-2.548297,54.929832],[-2.550368,54.929978],[-2.55199,54.932074],[-2.554411,54.933556],[-2.560191,54.934096],[-2.563442,54.937443],[-2.564937,54.940327],[-2.56765,54.940856],[-2.571286,54.94837],[-2.568427,54.958291],[-2.571434,54.960017],[-2.578421,54.960811],[-2.58653,54.963063],[-2.58884,54.962905],[-2.595569,54.963481],[-2.596868,54.96467],[-2.598799,54.965261],[-2.598111,54.965867],[-2.599085,54.966854],[-2.598885,54.967764],[-2.601429,54.97134],[-2.600346,54.973662],[-2.594243,54.973635],[-2.591592,54.974151],[-2.590231,54.976476],[-2.589966,54.977701],[-2.588468,54.979711],[-2.588572,54.980187],[-2.58663,54.982034],[-2.585773,54.982393],[-2.581936,54.982277],[-2.578559,54.983415],[-2.576979,54.984696],[-2.575785,54.984923],[-2.573311,54.987638],[-2.573031,54.990338],[-2.574434,54.991667],[-2.572862,54.992872],[-2.571969,54.99561],[-2.570482,54.996945],[-2.570471,54.998736],[-2.568615,54.999934],[-2.569095,55.001237],[-2.567714,55.002747],[-2.568432,55.003457],[-2.570198,55.003933],[-2.572943,55.003277],[-2.574181,55.0037],[-2.573499,55.004767],[-2.570807,55.005849],[-2.570803,55.007062],[-2.572643,55.006347],[-2.573468,55.007285],[-2.571868,55.008389],[-2.573975,55.009631],[-2.574812,55.011173],[-2.571781,55.014233],[-2.573187,55.016115],[-2.571399,55.017051],[-2.567899,55.017253],[-2.568175,55.018349],[-2.565042,55.020111],[-2.560933,55.020403],[-2.558753,55.020891],[-2.556981,55.019656],[-2.555829,55.019892],[-2.554749,55.020896],[-2.55262,55.021042],[-2.55043,55.022225],[-2.546689,55.023566],[-2.545902,55.024351],[-2.54637,55.025243],[-2.544483,55.026805],[-2.540899,55.027317],[-2.539573,55.028877],[-2.534061,55.028265],[-2.533256,55.028688],[-2.532988,55.029947],[-2.531975,55.030372],[-2.529186,55.028962],[-2.527622,55.0291],[-2.527077,55.030264],[-2.527709,55.032276],[-2.525911,55.032363],[-2.524498,55.032933],[-2.521659,55.032517],[-2.519105,55.03282],[-2.517608,55.033429],[-2.515792,55.033593],[-2.514716,55.034498],[-2.512562,55.033794],[-2.510765,55.034884],[-2.510992,55.035902],[-2.50863,55.036005],[-2.508923,55.03442],[-2.504479,55.033191],[-2.503826,55.034267],[-2.505762,55.034832],[-2.506547,55.035595],[-2.505666,55.036748],[-2.503044,55.037088],[-2.497072,55.036881],[-2.49344,55.037167],[-2.48305,55.040019],[-2.482343,55.041491],[-2.482957,55.043701],[-2.484894,55.045157],[-2.488122,55.046218],[-2.4872,55.04728],[-2.487566,55.047864],[-2.494342,55.050715],[-2.493148,55.052117],[-2.490846,55.053377],[-2.492186,55.054204],[-2.49407,55.05316],[-2.495446,55.053332],[-2.494853,55.054463],[-2.497826,55.056625],[-2.499752,55.056147],[-2.502021,55.057726],[-2.501891,55.059849],[-2.502266,55.061276],[-2.500552,55.061221],[-2.500028,55.062116],[-2.501321,55.062466],[-2.503509,55.062079],[-2.503474,55.063143],[-2.500749,55.064289],[-2.497883,55.064735],[-2.49759,55.065658],[-2.493798,55.065959],[-2.4922,55.068154],[-2.493264,55.069062],[-2.493353,55.070866],[-2.494035,55.071663],[-2.499236,55.073499],[-2.50105,55.074601],[-2.501234,55.075225],[-2.499479,55.076775],[-2.497053,55.077417],[-2.496312,55.080309],[-2.494733,55.081822],[-2.493517,55.082221],[-2.491105,55.082272],[-2.490123,55.080776],[-2.486639,55.081102],[-2.486084,55.081585],[-2.486341,55.083045],[-2.4897,55.084146],[-2.4907,55.085859],[-2.491888,55.086307],[-2.49533,55.086469],[-2.498292,55.0873],[-2.49905,55.0878],[-2.500629,55.090191],[-2.502251,55.090719],[-2.504886,55.090382],[-2.506935,55.08915],[-2.50896,55.08972],[-2.511567,55.088867],[-2.513207,55.089208],[-2.516468,55.089115],[-2.516971,55.088618],[-2.51677,55.086051],[-2.518095,55.084957],[-2.524951,55.085482],[-2.526389,55.083962],[-2.527173,55.085072],[-2.530471,55.085187],[-2.532257,55.082761],[-2.53686,55.082944],[-2.540168,55.084302],[-2.544028,55.083386],[-2.545766,55.083778],[-2.546813,55.082977],[-2.548662,55.082686],[-2.550456,55.0817],[-2.550838,55.080881],[-2.552654,55.081256],[-2.555189,55.082761],[-2.556972,55.082123],[-2.558792,55.083781],[-2.560817,55.083971],[-2.562137,55.083462],[-2.562793,55.084376],[-2.558902,55.087396],[-2.558295,55.08881],[-2.560751,55.08944],[-2.56118,55.090304],[-2.563396,55.091265],[-2.566706,55.091966],[-2.566782,55.093703],[-2.568975,55.094394],[-2.568426,55.096261],[-2.570201,55.097233],[-2.572459,55.09763],[-2.576678,55.095852],[-2.577435,55.096742],[-2.580664,55.096687],[-2.582819,55.098085],[-2.583326,55.099025],[-2.582635,55.100516],[-2.583337,55.101684],[-2.585419,55.102736],[-2.589341,55.103959],[-2.590436,55.103704],[-2.592088,55.104242],[-2.592295,55.106052],[-2.592903,55.106965],[-2.594325,55.107619],[-2.594082,55.10908],[-2.593279,55.110047],[-2.594265,55.110855],[-2.593437,55.112833],[-2.594834,55.114069],[-2.599613,55.115681],[-2.600471,55.117162],[-2.600399,55.118913],[-2.600986,55.119675],[-2.601594,55.122609],[-2.600927,55.123788],[-2.598903,55.124576],[-2.602733,55.124696],[-2.606154,55.126147],[-2.610239,55.126355],[-2.610765,55.126708],[-2.61564,55.127495],[-2.621273,55.129216],[-2.624351,55.128968],[-2.62569,55.127543],[-2.632639,55.127757],[-2.635711,55.129614],[-2.64537,55.131055],[-2.647125,55.131062],[-2.648618,55.132394],[-2.65545,55.135694],[-2.65694,55.136132],[-2.659774,55.142108],[-2.659325,55.142976],[-2.659905,55.144288],[-2.661625,55.146365],[-2.662591,55.146991],[-2.666389,55.147464],[-2.668579,55.147311],[-2.671267,55.150535],[-2.672532,55.150855],[-2.673265,55.151781],[-2.67489,55.155471],[-2.677325,55.155488],[-2.677768,55.156581],[-2.676079,55.157896],[-2.676097,55.15841],[-2.683254,55.16663],[-2.682924,55.167494],[-2.679919,55.16886],[-2.679548,55.16965],[-2.677358,55.171248],[-2.677693,55.171724],[-2.676443,55.173035],[-2.674271,55.173709],[-2.674556,55.175891],[-2.677378,55.177721],[-2.68979,55.188984],[-2.689961,55.188315],[-2.692646,55.186377],[-2.693816,55.184467],[-2.696296,55.1823],[-2.696556,55.181222],[-2.699818,55.177928],[-2.699723,55.176952],[-2.701004,55.175361],[-2.702775,55.174424],[-2.703405,55.173211],[-2.705654,55.172263],[-2.706978,55.172407],[-2.711873,55.171842],[-2.713818,55.172119],[-2.714512,55.171688],[-2.719942,55.170418],[-2.720891,55.169631],[-2.722641,55.169427],[-2.72467,55.16869],[-2.729438,55.168298],[-2.733005,55.167083],[-2.734022,55.165823],[-2.73503,55.165626],[-2.734982,55.164556],[-2.737761,55.162747],[-2.739772,55.162738],[-2.741417,55.162151],[-2.740655,55.161381],[-2.742919,55.161049],[-2.743919,55.159726],[-2.745247,55.160233],[-2.746306,55.158219],[-2.748604,55.158215],[-2.748695,55.157398],[-2.750686,55.157302],[-2.752298,55.156722],[-2.754264,55.156512],[-2.754029,55.155804],[-2.757467,55.154854],[-2.760272,55.154801],[-2.761183,55.153469],[-2.765687,55.152564],[-2.766569,55.151587],[-2.769372,55.150632],[-2.770058,55.149931],[-2.774918,55.14929],[-2.774985,55.148122],[-2.779169,55.146884],[-2.780007,55.146202],[-2.781979,55.145698],[-2.784207,55.143481],[-2.784875,55.141775],[-2.789695,55.141716],[-2.79067,55.141147],[-2.790714,55.139867],[-2.792696,55.140294],[-2.793396,55.139606],[-2.794858,55.13969],[-2.796842,55.138866],[-2.799908,55.138387],[-2.80191,55.138862],[-2.804333,55.13752],[-2.807396,55.136983],[-2.809588,55.137108],[-2.812776,55.136166],[-2.813664,55.136984],[-2.815811,55.137817],[-2.818103,55.137391],[-2.819317,55.138449],[-2.823298,55.137913],[-2.825503,55.138314],[-2.825948,55.137298],[-2.82728,55.136188],[-2.832468,55.133143],[-2.833056,55.13245],[-2.832528,55.13111],[-2.829547,55.128653],[-2.826738,55.12696],[-2.827608,55.124837],[-2.83262,55.12147],[-2.835531,55.121336],[-2.840239,55.122519],[-2.84125,55.122498],[-2.842186,55.121052],[-2.8383,55.11842],[-2.837883,55.117613],[-2.83902,55.116863],[-2.841115,55.118058],[-2.843667,55.116731],[-2.846464,55.114357],[-2.846125,55.11326],[-2.844682,55.112414],[-2.8452,55.111491],[-2.848111,55.111583],[-2.850116,55.111052],[-2.852095,55.108487],[-2.858541,55.108349],[-2.862081,55.10791],[-2.863735,55.106699],[-2.867578,55.1071],[-2.870736,55.10634],[-2.871569,55.104902],[-2.871684,55.102899],[-2.872822,55.101878],[-2.871326,55.100281],[-2.874427,55.097508],[-2.87611,55.09656],[-2.876873,55.095199],[-2.878976,55.094803],[-2.884143,55.095447],[-2.886293,55.09481],[-2.885874,55.093504],[-2.882907,55.093365],[-2.882315,55.092949],[-2.883026,55.090778],[-2.886226,55.089315],[-2.885718,55.088652],[-2.883811,55.088162],[-2.884815,55.086867],[-2.886031,55.08667],[-2.889722,55.087167],[-2.89073,55.08825],[-2.893308,55.087852],[-2.893741,55.086395],[-2.892628,55.08502],[-2.896879,55.07795],[-2.899862,55.076989],[-2.904092,55.077178],[-2.90623,55.077578],[-2.910658,55.077113],[-2.912447,55.078928],[-2.915126,55.078934],[-2.917326,55.078028],[-2.916654,55.076143],[-2.917429,55.074982],[-2.920282,55.072966],[-2.926184,55.070565],[-2.929444,55.070348],[-2.932528,55.071192],[-2.934103,55.071241],[-2.937637,55.070392],[-2.940429,55.069128],[-2.942015,55.06809],[-2.942586,55.067162],[-2.943008,55.064158],[-2.941259,55.062218],[-2.93738,55.06066],[-2.936363,55.059955],[-2.937306,55.059114],[-2.939071,55.059248],[-2.943848,55.058142],[-2.947994,55.05554],[-2.950694,55.05548],[-2.955424,55.054621],[-2.95656,55.053481],[-2.958594,55.049295],[-2.964554,55.05007],[-2.972289,55.050236],[-3.000076,55.052466],[-3.021198,55.05489],[-3.027552,55.05528],[-3.034173,55.055416],[-3.039202,55.0552],[-3.043171,55.055661],[-3.043623,55.054973],[-3.048012,55.053073],[-3.050929,55.052804],[-3.051195,55.051266],[-3.053447,55.049507],[-3.05342,55.047284],[-3.051794,55.047531],[-3.050715,55.04883],[-3.049005,55.048435],[-3.046936,55.047371],[-3.043388,55.047374],[-3.043656,55.044752],[-3.040125,55.04479],[-3.038499,55.043696],[-3.04033,55.041466],[-3.038147,55.041345],[-3.036664,55.040409],[-3.035774,55.039317],[-3.034023,55.039004],[-3.032176,55.039869],[-3.031048,55.037984],[-3.027494,55.036696],[-3.025876,55.036487],[-3.026288,55.035053],[-3.028254,55.034153],[-3.030145,55.034081],[-3.031766,55.032863],[-3.032354,55.03084],[-3.034315,55.029908],[-3.034134,55.029182],[-3.032238,55.028312],[-3.03188,55.026167],[-3.030053,55.02548],[-3.030238,55.024646],[-3.034265,55.02408],[-3.034396,55.022951],[-3.036677,55.021923],[-3.03911,55.022858],[-3.040127,55.022635],[-3.042373,55.019569],[-3.040571,55.018702],[-3.041327,55.016077],[-3.042603,55.0147],[-3.041937,55.014102],[-3.045181,55.012652],[-3.04546,55.010662],[-3.047442,55.010751],[-3.048019,55.00938],[-3.049457,55.009395],[-3.049744,55.007698],[-3.048666,55.006781],[-3.047383,55.007035],[-3.04613,55.00793],[-3.044938,55.007659],[-3.045062,55.006051],[-3.046844,55.004724],[-3.046443,55.000591],[-3.045811,54.999549],[-3.044201,54.998439],[-3.049346,54.996959],[-3.052735,54.994556],[-3.052002,54.993232],[-3.054465,54.992565],[-3.057722,54.991571],[-3.057278,54.988717],[-3.055257,54.986779],[-3.053555,54.986832],[-3.050126,54.986461],[-3.047925,54.98553],[-3.045056,54.982408],[-3.045443,54.978467],[-3.044734,54.977983],[-3.042372,54.977533],[-3.040636,54.976636],[-3.039066,54.974742],[-3.039241,54.972933],[-3.041605,54.970104],[-3.04035,54.968801],[-3.036617,54.968609],[-3.035916,54.968976],[-3.027918,54.970202],[-3.009734,54.974738],[-3.008954,54.974289],[-3.020157,54.971142],[-3.032606,54.968127],[-3.037509,54.967297],[-3.040441,54.968101],[-3.042572,54.969484],[-3.042871,54.971391],[-3.041727,54.973748],[-3.041948,54.974492],[-3.045679,54.97557],[-3.048824,54.978808],[-3.047852,54.978704],[-3.047188,54.981303],[-3.048231,54.983389],[-3.05001,54.98411],[-3.05278,54.984538],[-3.056463,54.984567],[-3.060425,54.98502],[-3.061579,54.984791],[-3.064789,54.983286],[-3.067478,54.981292],[-3.072474,54.974973],[-3.071316,54.973908],[-3.074912,54.9736],[-3.083939,54.971494],[-3.085431,54.970338],[-3.085467,54.968625],[-3.084575,54.966591],[-3.085418,54.965167],[-3.086665,54.964645],[-3.089198,54.964794],[-3.089822,54.963645],[-3.091083,54.962588],[-3.093131,54.962531],[-3.0952,54.963217],[-3.099795,54.960797],[-3.101998,54.959142],[-3.104349,54.958093],[-3.111608,54.957628],[-3.111586,54.956683],[-3.107886,54.954166],[-3.107311,54.952792],[-3.108708,54.9529],[-3.111491,54.955135],[-3.115344,54.956974],[-3.117272,54.955911],[-3.117767,54.953922],[-3.116258,54.951575],[-3.11232,54.949565],[-3.109469,54.948448],[-3.106108,54.947975],[-3.104553,54.947426],[-3.096247,54.947091],[-3.098323,54.946612],[-3.101108,54.946567],[-3.104803,54.946115],[-3.109663,54.946522],[-3.110377,54.947041],[-3.109591,54.948082],[-3.116487,54.951561],[-3.118567,54.953822],[-3.119578,54.954321],[-3.127072,54.950916],[-3.126732,54.949386],[-3.12314,54.945902],[-3.117559,54.946195],[-3.116983,54.945708],[-3.121948,54.944539],[-3.125198,54.944048],[-3.124338,54.941623],[-3.120228,54.935856],[-3.117893,54.93356],[-3.11329,54.93228],[-3.109463,54.932023],[-3.104989,54.933256],[-3.103226,54.935025],[-3.101922,54.935513],[-3.097801,54.938656],[-3.094672,54.939096],[-3.093188,54.938801],[-3.089986,54.938828],[-3.089569,54.94038],[-3.086247,54.941192],[-3.084642,54.940094],[-3.083628,54.939947],[-3.079968,54.940838],[-3.07232,54.94477],[-3.073482,54.945954],[-3.076041,54.945883],[-3.075932,54.946692],[-3.073485,54.947668],[-3.069191,54.947576],[-3.065728,54.948167],[-3.063866,54.949027],[-3.059764,54.949372],[-3.0522,54.950265],[-3.047369,54.948992],[-3.040244,54.946172],[-3.038326,54.945726],[-3.028154,54.946099],[-3.026249,54.946285],[-3.022135,54.947292],[-3.015529,54.948128],[-3.013239,54.948067],[-3.008357,54.947089],[-3.00587,54.944963],[-3.005027,54.942901],[-3.002196,54.94023],[-3.001875,54.938746],[-2.999241,54.936324],[-2.999318,54.935152],[-3.005971,54.930588],[-3.006972,54.931165],[-3.003768,54.933684],[-3.003572,54.935971],[-3.002752,54.93804],[-3.004103,54.940173],[-3.005822,54.941528],[-3.006997,54.944612],[-3.007896,54.945747],[-3.009433,54.946472],[-3.012913,54.946994],[-3.016268,54.947129],[-3.019022,54.946826],[-3.0299,54.944423],[-3.035798,54.944231],[-3.040563,54.944704],[-3.048765,54.946393],[-3.054146,54.946279],[-3.056432,54.946016],[-3.058308,54.945246],[-3.061639,54.945327],[-3.062824,54.945014],[-3.065337,54.941357],[-3.067622,54.939366],[-3.072661,54.936933],[-3.084714,54.934386],[-3.085198,54.934051],[-3.096481,54.931796],[-3.102289,54.928586],[-3.107512,54.9272],[-3.11233,54.926729],[-3.118234,54.926897],[-3.118615,54.926148],[-3.118954,54.925404]]]]},"properties":{"LAD22CD":"E07000028","LAD22NM":"Carlisle","BNG_E":348576,"BNG_N":565154,"LONG":-2.80498,"LAT":54.97833,"GlobalID":"c307b3dd-b26e-466b-9d11-2df7563855cc"},"id":67}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.252026,54.218925],[-3.25438,54.218012],[-3.25358,54.217303],[-3.252026,54.218925]]],[[[-3.234836,54.2306],[-3.236714,54.230776],[-3.236712,54.229878],[-3.234234,54.229081],[-3.233723,54.229654],[-3.234836,54.2306]]],[[[-3.16714,54.454111],[-3.1749,54.454603],[-3.176586,54.455898],[-3.178999,54.457112],[-3.180612,54.459382],[-3.184361,54.462458],[-3.188259,54.462918],[-3.188872,54.462599],[-3.193119,54.463343],[-3.196757,54.465557],[-3.196436,54.468189],[-3.198063,54.470343],[-3.199469,54.47062],[-3.199112,54.472068],[-3.20004,54.473627],[-3.203216,54.474767],[-3.204949,54.47445],[-3.208177,54.475127],[-3.211974,54.477422],[-3.212713,54.478984],[-3.214773,54.479647],[-3.214974,54.480356],[-3.217418,54.481777],[-3.219321,54.482024],[-3.218462,54.482983],[-3.216331,54.483125],[-3.213554,54.484607],[-3.213749,54.485733],[-3.211237,54.488182],[-3.212802,54.491583],[-3.212156,54.493675],[-3.213625,54.496592],[-3.216878,54.496958],[-3.221316,54.499452],[-3.224716,54.502336],[-3.226241,54.501698],[-3.227699,54.502043],[-3.229747,54.501254],[-3.231126,54.500251],[-3.233157,54.500375],[-3.234195,54.501314],[-3.237581,54.503162],[-3.241038,54.50432],[-3.239911,54.50536],[-3.239913,54.506183],[-3.244301,54.507422],[-3.247337,54.507312],[-3.248937,54.508465],[-3.253296,54.50872],[-3.25444,54.509108],[-3.256762,54.508586],[-3.257841,54.508754],[-3.261332,54.510683],[-3.262026,54.511501],[-3.266424,54.514372],[-3.268426,54.515044],[-3.272232,54.515378],[-3.273576,54.516021],[-3.278304,54.517251],[-3.284585,54.519567],[-3.284586,54.520618],[-3.285545,54.521282],[-3.291077,54.52181],[-3.293121,54.522478],[-3.294764,54.523782],[-3.29895,54.524895],[-3.298645,54.527464],[-3.299834,54.5275],[-3.302579,54.528375],[-3.305784,54.530134],[-3.307276,54.530208],[-3.314658,54.52788],[-3.316459,54.527815],[-3.324736,54.530112],[-3.327206,54.529703],[-3.328434,54.530975],[-3.333202,54.531365],[-3.337334,54.534096],[-3.34004,54.535234],[-3.350478,54.533674],[-3.355348,54.53548],[-3.360085,54.537954],[-3.361356,54.543758],[-3.366153,54.544644],[-3.36433,54.548053],[-3.364371,54.550734],[-3.36485,54.551817],[-3.366711,54.55292],[-3.367699,54.554267],[-3.370882,54.555428],[-3.370025,54.558325],[-3.372603,54.559667],[-3.372391,54.561459],[-3.376931,54.564679],[-3.375714,54.565624],[-3.376066,54.567395],[-3.376886,54.568298],[-3.376179,54.569181],[-3.375814,54.571382],[-3.376146,54.573256],[-3.378281,54.575956],[-3.382398,54.577013],[-3.38603,54.576531],[-3.388508,54.578802],[-3.388988,54.580366],[-3.391794,54.58487],[-3.393405,54.586009],[-3.395498,54.586366],[-3.396977,54.587129],[-3.399452,54.58709],[-3.401866,54.587403],[-3.404555,54.58657],[-3.40747,54.586753],[-3.408199,54.586382],[-3.413426,54.588568],[-3.413656,54.589192],[-3.418951,54.590284],[-3.422215,54.59166],[-3.422582,54.591117],[-3.424919,54.592297],[-3.427137,54.592675],[-3.428871,54.593361],[-3.428673,54.594311],[-3.431235,54.596303],[-3.433246,54.596728],[-3.435959,54.594275],[-3.435974,54.592997],[-3.43719,54.592677],[-3.43917,54.589532],[-3.438922,54.588503],[-3.441533,54.586588],[-3.443607,54.582693],[-3.446219,54.58155],[-3.450522,54.581035],[-3.452861,54.581556],[-3.453552,54.582087],[-3.456616,54.581464],[-3.457072,54.582514],[-3.460338,54.58352],[-3.461999,54.583708],[-3.467028,54.582934],[-3.470233,54.582848],[-3.476302,54.582151],[-3.481128,54.581189],[-3.481582,54.582335],[-3.483594,54.58362],[-3.485331,54.584028],[-3.48705,54.587132],[-3.487348,54.591997],[-3.486993,54.592774],[-3.488688,54.595081],[-3.488443,54.596452],[-3.489127,54.59746],[-3.4923,54.599397],[-3.494751,54.59876],[-3.496463,54.599211],[-3.499933,54.599191],[-3.502315,54.600286],[-3.503805,54.601964],[-3.508212,54.602133],[-3.510104,54.603474],[-3.51113,54.604783],[-3.512764,54.605017],[-3.51604,54.604699],[-3.518852,54.604905],[-3.520069,54.605464],[-3.522028,54.605442],[-3.525235,54.603676],[-3.526662,54.603228],[-3.529697,54.603619],[-3.535397,54.60361],[-3.536965,54.602871],[-3.537494,54.604012],[-3.538717,54.605071],[-3.540627,54.605749],[-3.541811,54.606601],[-3.543677,54.606791],[-3.544382,54.607353],[-3.546333,54.607125],[-3.545971,54.60467],[-3.551133,54.599278],[-3.551629,54.597264],[-3.554227,54.596443],[-3.56006,54.598771],[-3.569536,54.599999],[-3.572555,54.600691],[-3.573833,54.600065],[-3.575861,54.598126],[-3.576774,54.595214],[-3.577972,54.594566],[-3.578381,54.593161],[-3.580397,54.592737],[-3.580756,54.591683],[-3.582261,54.591538],[-3.582938,54.590784],[-3.58214,54.589612],[-3.581753,54.586844],[-3.583398,54.583227],[-3.582692,54.582212],[-3.581916,54.575413],[-3.581318,54.574843],[-3.580349,54.572035],[-3.580918,54.571113],[-3.582938,54.570363],[-3.583816,54.568536],[-3.583396,54.565696],[-3.584414,54.564149],[-3.588946,54.56106],[-3.590302,54.559446],[-3.590145,54.554668],[-3.59111,54.552173],[-3.592547,54.552095],[-3.592912,54.550734],[-3.595623,54.549642],[-3.59866,54.550926],[-3.599009,54.549351],[-3.602557,54.542572],[-3.6033,54.542044],[-3.603113,54.540098],[-3.605941,54.532712],[-3.607251,54.530825],[-3.611689,54.527527],[-3.613279,54.525261],[-3.614882,54.524651],[-3.622708,54.522818],[-3.624453,54.521895],[-3.625538,54.520743],[-3.629791,54.520125],[-3.638509,54.517899],[-3.63979,54.514438],[-3.638936,54.512026],[-3.635946,54.507188],[-3.63353,54.504971],[-3.630372,54.504282],[-3.627107,54.502063],[-3.626227,54.500048],[-3.622841,54.495983],[-3.620899,54.492905],[-3.620859,54.492159],[-3.619606,54.490929],[-3.616785,54.489956],[-3.610778,54.490175],[-3.609572,54.491048],[-3.608132,54.490974],[-3.603659,54.488869],[-3.593294,54.482288],[-3.591049,54.480135],[-3.590296,54.478322],[-3.586205,54.475821],[-3.584754,54.473852],[-3.582302,54.472098],[-3.581143,54.469342],[-3.579666,54.468179],[-3.578431,54.465066],[-3.574964,54.462546],[-3.570292,54.459989],[-3.567851,54.458114],[-3.566999,54.456398],[-3.565987,54.456001],[-3.564226,54.454245],[-3.563556,54.451927],[-3.555316,54.447811],[-3.541964,54.438816],[-3.525744,54.425731],[-3.515795,54.418553],[-3.514071,54.416704],[-3.512467,54.415765],[-3.508314,54.412217],[-3.506942,54.412568],[-3.513152,54.417785],[-3.512557,54.417902],[-3.507643,54.413835],[-3.504761,54.410531],[-3.505431,54.409554],[-3.492533,54.401122],[-3.476385,54.386343],[-3.474535,54.383755],[-3.472629,54.379149],[-3.47243,54.377205],[-3.473326,54.375501],[-3.47177,54.375207],[-3.460876,54.364592],[-3.442289,54.350235],[-3.438679,54.346192],[-3.435296,54.343411],[-3.430399,54.341985],[-3.426772,54.343077],[-3.426018,54.343966],[-3.417409,54.348815],[-3.417997,54.349328],[-3.418447,54.351506],[-3.420736,54.353906],[-3.422848,54.353755],[-3.423236,54.353229],[-3.427938,54.353532],[-3.432131,54.354401],[-3.43659,54.356724],[-3.43911,54.357304],[-3.440606,54.358674],[-3.44141,54.36093],[-3.442368,54.361491],[-3.441749,54.363185],[-3.439622,54.364456],[-3.442202,54.367009],[-3.44342,54.369011],[-3.442443,54.369561],[-3.439912,54.366807],[-3.438125,54.366183],[-3.436619,54.365066],[-3.435921,54.363188],[-3.437636,54.361724],[-3.437918,54.3605],[-3.435869,54.359452],[-3.435031,54.358244],[-3.432692,54.356622],[-3.429851,54.355754],[-3.428371,54.356026],[-3.426737,54.35889],[-3.422524,54.359702],[-3.42032,54.359483],[-3.417965,54.358761],[-3.416197,54.357042],[-3.414813,54.356941],[-3.412698,54.358167],[-3.413504,54.359467],[-3.412875,54.361145],[-3.410855,54.363109],[-3.404215,54.362026],[-3.402979,54.364285],[-3.402273,54.363959],[-3.403983,54.361224],[-3.408482,54.360046],[-3.409743,54.359194],[-3.409971,54.357512],[-3.410758,54.356907],[-3.411916,54.353971],[-3.411652,54.352966],[-3.409432,54.352749],[-3.406604,54.351059],[-3.405203,54.348391],[-3.405861,54.34444],[-3.405389,54.343648],[-3.4058,54.342473],[-3.407032,54.341249],[-3.406527,54.340117],[-3.405018,54.33829],[-3.40403,54.339234],[-3.400381,54.339489],[-3.398003,54.340351],[-3.39195,54.341292],[-3.389492,54.342484],[-3.389401,54.344614],[-3.385558,54.347679],[-3.383892,54.350301],[-3.38041,54.351313],[-3.378259,54.350876],[-3.374953,54.349631],[-3.377071,54.34946],[-3.380615,54.350752],[-3.382941,54.349892],[-3.384108,54.347982],[-3.386463,54.345791],[-3.386754,54.342696],[-3.387888,54.341057],[-3.391711,54.339665],[-3.394633,54.337326],[-3.399186,54.335238],[-3.402971,54.335293],[-3.4088,54.336528],[-3.411226,54.337548],[-3.412057,54.339075],[-3.41039,54.340839],[-3.409829,54.342524],[-3.410894,54.345223],[-3.408947,54.348889],[-3.410004,54.350348],[-3.412318,54.349813],[-3.414341,54.345326],[-3.421407,54.341081],[-3.423238,54.339142],[-3.423686,54.336456],[-3.425076,54.332644],[-3.424913,54.328684],[-3.417571,54.314095],[-3.416128,54.309231],[-3.415803,54.305285],[-3.415956,54.301478],[-3.41748,54.297132],[-3.418552,54.296298],[-3.420932,54.295927],[-3.422693,54.293943],[-3.422147,54.291267],[-3.419926,54.287748],[-3.419879,54.28669],[-3.420934,54.285734],[-3.421031,54.284448],[-3.419671,54.283114],[-3.417159,54.279782],[-3.413569,54.276119],[-3.410946,54.273849],[-3.408883,54.271365],[-3.404721,54.267845],[-3.403731,54.264319],[-3.39409,54.25436],[-3.3927,54.253279],[-3.389176,54.251769],[-3.386571,54.249235],[-3.37929,54.244339],[-3.364929,54.231783],[-3.351143,54.218738],[-3.331015,54.197458],[-3.324171,54.191524],[-3.320025,54.189587],[-3.315881,54.188665],[-3.305234,54.188231],[-3.300207,54.18833],[-3.295599,54.189244],[-3.289918,54.190929],[-3.286473,54.195561],[-3.282806,54.196683],[-3.280572,54.196429],[-3.27591,54.192455],[-3.273582,54.191339],[-3.2689,54.190189],[-3.265446,54.190081],[-3.262607,54.190382],[-3.256308,54.192581],[-3.254234,54.191543],[-3.250609,54.194636],[-3.248243,54.195811],[-3.24538,54.199025],[-3.24512,54.200884],[-3.240395,54.203145],[-3.239977,54.204162],[-3.243952,54.205715],[-3.242909,54.206306],[-3.245193,54.208328],[-3.249852,54.209512],[-3.250159,54.210022],[-3.249312,54.212683],[-3.249405,54.213786],[-3.250747,54.214004],[-3.251499,54.215831],[-3.255403,54.215172],[-3.255348,54.216324],[-3.254424,54.218686],[-3.254696,54.219514],[-3.253025,54.21996],[-3.252329,54.220896],[-3.250994,54.219842],[-3.248687,54.222594],[-3.246429,54.223408],[-3.245084,54.225101],[-3.243444,54.225252],[-3.241062,54.226205],[-3.241429,54.226995],[-3.239555,54.227466],[-3.238574,54.226898],[-3.237252,54.22835],[-3.236253,54.227715],[-3.237619,54.225536],[-3.233137,54.228743],[-3.234585,54.228853],[-3.236662,54.229814],[-3.237554,54.229441],[-3.237056,54.230697],[-3.234423,54.232288],[-3.23177,54.233356],[-3.232511,54.235458],[-3.23174,54.236653],[-3.22823,54.237037],[-3.225581,54.240008],[-3.225058,54.243402],[-3.223881,54.247053],[-3.224598,54.247861],[-3.226522,54.247653],[-3.228343,54.249442],[-3.22445,54.249888],[-3.222949,54.251526],[-3.222851,54.252485],[-3.22385,54.254836],[-3.226783,54.255711],[-3.230632,54.257659],[-3.230892,54.259623],[-3.233035,54.259666],[-3.232656,54.260664],[-3.230436,54.260313],[-3.230975,54.261379],[-3.228104,54.264039],[-3.228493,54.265821],[-3.229964,54.266047],[-3.229001,54.267501],[-3.227765,54.268285],[-3.22749,54.269911],[-3.22658,54.271033],[-3.225848,54.273593],[-3.224508,54.275659],[-3.227822,54.277713],[-3.228207,54.278635],[-3.227934,54.280709],[-3.228395,54.28151],[-3.23329,54.283498],[-3.23508,54.285767],[-3.235226,54.287823],[-3.236433,54.289596],[-3.238058,54.290727],[-3.237228,54.292895],[-3.238166,54.294017],[-3.236935,54.296597],[-3.236948,54.298313],[-3.235384,54.300076],[-3.234483,54.302174],[-3.232718,54.303665],[-3.233047,54.304826],[-3.23233,54.306278],[-3.23391,54.30978],[-3.231139,54.311216],[-3.230923,54.31468],[-3.233539,54.316422],[-3.235385,54.316746],[-3.236996,54.316011],[-3.239507,54.31721],[-3.238462,54.318816],[-3.240351,54.321181],[-3.240655,54.322755],[-3.24187,54.323527],[-3.237945,54.325504],[-3.236373,54.327114],[-3.233604,54.328529],[-3.231195,54.330791],[-3.230112,54.33217],[-3.224568,54.332789],[-3.223489,54.333643],[-3.220481,54.334769],[-3.2193,54.335947],[-3.218407,54.336025],[-3.217572,54.337276],[-3.218503,54.338241],[-3.218054,54.339322],[-3.219818,54.339778],[-3.219519,54.341527],[-3.217598,54.34238],[-3.217518,54.343265],[-3.218565,54.344996],[-3.215962,54.344795],[-3.212378,54.34662],[-3.212109,54.348362],[-3.210057,54.349896],[-3.208945,54.351646],[-3.207085,54.352958],[-3.203326,54.352993],[-3.200149,54.354328],[-3.194599,54.354351],[-3.194596,54.35524],[-3.195974,54.356209],[-3.193308,54.359841],[-3.191576,54.36345],[-3.189731,54.364202],[-3.18859,54.366623],[-3.189136,54.368275],[-3.187494,54.369762],[-3.187074,54.370945],[-3.184925,54.372766],[-3.181998,54.374187],[-3.180965,54.375362],[-3.180618,54.380376],[-3.180064,54.381956],[-3.179084,54.38223],[-3.181529,54.384852],[-3.180073,54.385702],[-3.178346,54.385986],[-3.176715,54.387359],[-3.173261,54.388492],[-3.17252,54.389048],[-3.173301,54.391967],[-3.171574,54.393787],[-3.172735,54.395604],[-3.172077,54.397294],[-3.171258,54.397337],[-3.170758,54.39973],[-3.169085,54.400083],[-3.166657,54.401344],[-3.165265,54.40163],[-3.164411,54.403231],[-3.161161,54.405491],[-3.160587,54.406599],[-3.159326,54.407168],[-3.156264,54.407546],[-3.152781,54.407127],[-3.149652,54.407945],[-3.147978,54.407767],[-3.145453,54.408168],[-3.143663,54.408816],[-3.141086,54.409235],[-3.140404,54.409664],[-3.13693,54.409672],[-3.132939,54.410712],[-3.131459,54.411511],[-3.12891,54.411744],[-3.128388,54.41221],[-3.123843,54.413283],[-3.121819,54.414108],[-3.117855,54.414869],[-3.116258,54.414666],[-3.115532,54.416474],[-3.115466,54.417796],[-3.114144,54.41828],[-3.114279,54.420579],[-3.115076,54.421161],[-3.115291,54.422365],[-3.120535,54.423691],[-3.123996,54.427507],[-3.128736,54.421532],[-3.135978,54.421883],[-3.154141,54.42971],[-3.157019,54.430281],[-3.160345,54.433923],[-3.157914,54.434772],[-3.158078,54.438392],[-3.159532,54.439199],[-3.160157,54.441043],[-3.158592,54.442177],[-3.160601,54.443096],[-3.161117,54.447037],[-3.165209,54.447024],[-3.166279,54.447767],[-3.166543,54.45054],[-3.166176,54.451255],[-3.16714,54.454111]]]]},"properties":{"LAD22CD":"E07000029","LAD22NM":"Copeland","BNG_E":310871,"BNG_N":508739,"LONG":-3.37664,"LAT":54.46617,"GlobalID":"e75e7dfa-2e17-426d-a594-972e82eb8003"},"id":68}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.31209,54.791015],[-2.314811,54.792575],[-2.318447,54.793189],[-2.323284,54.795009],[-2.323389,54.79675],[-2.327376,54.802996],[-2.327385,54.805332],[-2.331622,54.804642],[-2.334,54.804922],[-2.336555,54.806371],[-2.338328,54.806793],[-2.341678,54.806898],[-2.343609,54.806209],[-2.345532,54.806295],[-2.348429,54.807079],[-2.348569,54.808347],[-2.35165,54.810592],[-2.35261,54.810704],[-2.355789,54.813903],[-2.359926,54.816693],[-2.369831,54.820966],[-2.369145,54.821844],[-2.370327,54.822488],[-2.370161,54.823321],[-2.371352,54.825062],[-2.373999,54.826037],[-2.37267,54.82738],[-2.380926,54.830095],[-2.382326,54.830656],[-2.386738,54.831635],[-2.389604,54.831949],[-2.391832,54.833436],[-2.392727,54.834515],[-2.398299,54.844165],[-2.401623,54.851484],[-2.411653,54.85645],[-2.414743,54.850677],[-2.417098,54.849129],[-2.417548,54.847703],[-2.419887,54.845821],[-2.420532,54.844538],[-2.422676,54.84287],[-2.427615,54.841164],[-2.43001,54.840176],[-2.433687,54.839641],[-2.438273,54.837871],[-2.438527,54.837021],[-2.440401,54.836784],[-2.441905,54.835645],[-2.443255,54.835798],[-2.444819,54.835123],[-2.446971,54.835101],[-2.449006,54.834242],[-2.450464,54.832706],[-2.452239,54.832013],[-2.453891,54.832097],[-2.455953,54.831476],[-2.457986,54.833214],[-2.460602,54.834172],[-2.461239,54.832899],[-2.46331,54.831729],[-2.463176,54.830551],[-2.465075,54.82965],[-2.468771,54.826107],[-2.473349,54.823765],[-2.474147,54.822464],[-2.475916,54.821833],[-2.476275,54.820902],[-2.4779,54.820407],[-2.478947,54.81921],[-2.481479,54.818009],[-2.48196,54.816969],[-2.486149,54.815075],[-2.48816,54.814409],[-2.495357,54.810342],[-2.49828,54.81003],[-2.502148,54.810596],[-2.50355,54.810138],[-2.507662,54.809718],[-2.510983,54.808709],[-2.514975,54.808639],[-2.51557,54.808298],[-2.519474,54.807847],[-2.523442,54.806045],[-2.530652,54.805999],[-2.533672,54.806702],[-2.536217,54.807671],[-2.543266,54.812124],[-2.558307,54.816725],[-2.567849,54.823575],[-2.572591,54.831442],[-2.577952,54.836454],[-2.582671,54.845867],[-2.588512,54.847666],[-2.589943,54.848695],[-2.595805,54.849778],[-2.597374,54.850963],[-2.597633,54.851964],[-2.600127,54.851978],[-2.601644,54.852921],[-2.603769,54.853344],[-2.604932,54.852879],[-2.608444,54.853265],[-2.609701,54.852912],[-2.611221,54.853361],[-2.613014,54.852665],[-2.616722,54.852788],[-2.617254,54.853116],[-2.620237,54.853218],[-2.622552,54.853554],[-2.624048,54.854322],[-2.625231,54.853825],[-2.627102,54.853845],[-2.62858,54.854518],[-2.631385,54.853982],[-2.635077,54.854614],[-2.638778,54.853801],[-2.640196,54.854144],[-2.646247,54.853443],[-2.647272,54.853754],[-2.649087,54.853107],[-2.652863,54.85359],[-2.65533,54.854769],[-2.65777,54.849453],[-2.659311,54.848511],[-2.668971,54.845042],[-2.67256,54.842447],[-2.674133,54.839667],[-2.675683,54.83834],[-2.676651,54.836996],[-2.679163,54.836089],[-2.680137,54.835317],[-2.68324,54.835048],[-2.68522,54.836066],[-2.68535,54.837568],[-2.687022,54.837304],[-2.691256,54.837141],[-2.693684,54.836513],[-2.699951,54.833678],[-2.701225,54.833605],[-2.700124,54.830521],[-2.697098,54.827961],[-2.696034,54.825914],[-2.693474,54.823016],[-2.690034,54.820638],[-2.689793,54.819191],[-2.705663,54.816363],[-2.70726,54.81877],[-2.71454,54.819941],[-2.716725,54.81911],[-2.720305,54.819259],[-2.721216,54.819621],[-2.724049,54.819066],[-2.7264,54.81915],[-2.729207,54.818656],[-2.732224,54.820151],[-2.736129,54.821397],[-2.736665,54.822817],[-2.737752,54.823578],[-2.741017,54.824265],[-2.74362,54.827846],[-2.746137,54.828094],[-2.748372,54.828985],[-2.751015,54.829055],[-2.753159,54.827359],[-2.754872,54.827061],[-2.754952,54.824995],[-2.756428,54.822858],[-2.757962,54.823514],[-2.759892,54.823713],[-2.767009,54.823305],[-2.773199,54.820523],[-2.77889,54.821867],[-2.783052,54.822285],[-2.7927,54.82043],[-2.796902,54.819022],[-2.799378,54.818718],[-2.811354,54.823449],[-2.814765,54.825302],[-2.817769,54.827537],[-2.821975,54.825068],[-2.825577,54.827738],[-2.829411,54.825476],[-2.832096,54.826775],[-2.834275,54.828358],[-2.833964,54.828869],[-2.834477,54.831024],[-2.837769,54.831745],[-2.838473,54.833041],[-2.838273,54.83417],[-2.845246,54.832947],[-2.855692,54.833429],[-2.856389,54.834261],[-2.858232,54.834802],[-2.861013,54.836639],[-2.863061,54.837254],[-2.864052,54.836067],[-2.866638,54.835703],[-2.869069,54.834725],[-2.870444,54.834916],[-2.871479,54.833488],[-2.873088,54.833065],[-2.872792,54.832085],[-2.870785,54.831827],[-2.872237,54.829636],[-2.871992,54.828593],[-2.873836,54.827925],[-2.874304,54.82675],[-2.875881,54.826894],[-2.877429,54.825852],[-2.878019,54.824763],[-2.8829,54.823194],[-2.884932,54.823329],[-2.888735,54.821571],[-2.890313,54.821268],[-2.893044,54.821677],[-2.893984,54.822517],[-2.9049,54.821387],[-2.905428,54.821971],[-2.90741,54.821958],[-2.906749,54.820826],[-2.904752,54.818773],[-2.904103,54.816282],[-2.904414,54.813019],[-2.921082,54.809207],[-2.919715,54.805985],[-2.928549,54.801237],[-2.934836,54.792957],[-2.931172,54.792158],[-2.942467,54.786916],[-2.942238,54.785889],[-2.943648,54.785229],[-2.944784,54.784044],[-2.947255,54.783451],[-2.949463,54.784072],[-2.951839,54.78384],[-2.952755,54.782853],[-2.962075,54.778622],[-2.964658,54.780256],[-2.967574,54.779895],[-2.969347,54.777144],[-2.973905,54.778311],[-2.97664,54.777414],[-2.978489,54.777785],[-2.984438,54.776158],[-2.98569,54.774714],[-2.985448,54.774116],[-2.987726,54.771898],[-2.987966,54.770402],[-2.988606,54.770047],[-2.987043,54.768568],[-2.987702,54.766966],[-2.985726,54.766029],[-2.987354,54.764852],[-2.988121,54.765245],[-2.990373,54.763345],[-2.991404,54.761278],[-2.994596,54.759392],[-2.997772,54.762066],[-2.997732,54.759941],[-3.000882,54.755301],[-3.003243,54.754759],[-3.005483,54.75355],[-3.008387,54.752909],[-3.011119,54.75294],[-3.01566,54.751285],[-3.018562,54.750884],[-3.01989,54.74998],[-3.021936,54.749461],[-3.021668,54.748494],[-3.025693,54.74824],[-3.026021,54.747152],[-3.023898,54.746421],[-3.02216,54.74643],[-3.021853,54.745164],[-3.022874,54.744206],[-3.022833,54.743024],[-3.023546,54.742288],[-3.022003,54.741629],[-3.021512,54.740141],[-3.020834,54.739758],[-3.017475,54.739469],[-3.015693,54.738826],[-3.015711,54.737573],[-3.011739,54.736558],[-3.011983,54.734759],[-3.008182,54.734593],[-3.005055,54.733562],[-3.00351,54.733708],[-3.00212,54.733197],[-2.999717,54.733852],[-2.996615,54.733634],[-2.996718,54.731782],[-2.993264,54.731211],[-2.992566,54.730514],[-2.992668,54.728919],[-2.989613,54.727767],[-2.9901,54.727167],[-2.98864,54.726019],[-2.98881,54.724085],[-2.986693,54.723542],[-2.98653,54.722411],[-2.983646,54.720938],[-2.983925,54.720426],[-2.986312,54.720546],[-2.985275,54.719274],[-2.982999,54.719381],[-2.983338,54.718229],[-2.98443,54.717372],[-2.984763,54.716062],[-2.986583,54.715971],[-2.986779,54.714847],[-2.988825,54.715094],[-2.9898,54.713807],[-2.991231,54.712845],[-2.990741,54.711737],[-2.989119,54.710907],[-2.990412,54.708721],[-2.989825,54.707151],[-2.992605,54.704745],[-2.992874,54.701894],[-2.994528,54.699796],[-2.99355,54.698833],[-2.994053,54.697308],[-2.992275,54.696243],[-2.993789,54.695357],[-2.995333,54.695617],[-2.995769,54.694528],[-2.997199,54.695099],[-3.001072,54.694901],[-3.004778,54.695123],[-3.017657,54.693487],[-3.022859,54.693476],[-3.0337,54.69432],[-3.038877,54.697131],[-3.040729,54.697531],[-3.051972,54.699288],[-3.058158,54.699176],[-3.063799,54.700082],[-3.073628,54.69558],[-3.078949,54.694677],[-3.08192,54.695254],[-3.087191,54.686092],[-3.082691,54.685389],[-3.070429,54.684934],[-3.060123,54.682021],[-3.054605,54.679757],[-3.057807,54.677827],[-3.059529,54.675455],[-3.063515,54.673013],[-3.066176,54.672654],[-3.067722,54.671566],[-3.069303,54.671424],[-3.069644,54.670618],[-3.071188,54.669403],[-3.071756,54.667972],[-3.072896,54.666866],[-3.07454,54.666564],[-3.07528,54.66584],[-3.0777,54.666233],[-3.081488,54.664086],[-3.08326,54.664251],[-3.083897,54.663155],[-3.086365,54.662851],[-3.088108,54.661054],[-3.090062,54.660292],[-3.090866,54.658651],[-3.092045,54.657402],[-3.092492,54.654124],[-3.092241,54.649392],[-3.094295,54.64387],[-3.093279,54.641885],[-3.092038,54.640744],[-3.091974,54.637911],[-3.090698,54.634322],[-3.091387,54.632819],[-3.090774,54.631056],[-3.092086,54.628835],[-3.091391,54.627347],[-3.091992,54.627019],[-3.091308,54.625398],[-3.09006,54.623993],[-3.08961,54.622158],[-3.092219,54.619465],[-3.091921,54.618289],[-3.092404,54.617236],[-3.089629,54.615688],[-3.087566,54.615567],[-3.085936,54.612902],[-3.083841,54.612389],[-3.080347,54.612124],[-3.077794,54.610567],[-3.070748,54.613577],[-3.067705,54.614178],[-3.065585,54.614165],[-3.062722,54.612584],[-3.06187,54.612596],[-3.059084,54.613679],[-3.055714,54.614021],[-3.0551,54.614561],[-3.053255,54.613403],[-3.046527,54.614379],[-3.044707,54.614296],[-3.042187,54.612934],[-3.039849,54.612999],[-3.039115,54.612344],[-3.03822,54.610434],[-3.038969,54.608844],[-3.034029,54.603736],[-3.034342,54.602778],[-3.022889,54.60276],[-3.017759,54.600295],[-3.011504,54.599542],[-3.01058,54.597178],[-3.008962,54.595784],[-3.007491,54.595348],[-3.009219,54.594499],[-3.009601,54.593574],[-3.01277,54.591624],[-3.01438,54.590082],[-3.017377,54.588784],[-3.019832,54.588687],[-3.024609,54.586805],[-3.026022,54.58653],[-3.03115,54.582382],[-3.037065,54.580987],[-3.030307,54.575799],[-3.026964,54.57455],[-3.023904,54.574489],[-3.019498,54.575968],[-3.018282,54.574995],[-3.020533,54.571504],[-3.024022,54.568713],[-3.026604,54.56725],[-3.028794,54.566927],[-3.020955,54.564764],[-3.016777,54.56159],[-3.020362,54.558923],[-3.018412,54.553376],[-3.01959,54.551817],[-3.016581,54.547959],[-3.025054,54.541044],[-3.023262,54.538814],[-3.024823,54.534722],[-3.024839,54.532544],[-3.025761,54.530096],[-3.024385,54.529095],[-3.019311,54.528132],[-3.018651,54.527442],[-3.016234,54.526421],[-3.015314,54.525594],[-3.015432,54.523486],[-3.016634,54.521458],[-3.015774,54.520283],[-3.015233,54.518326],[-3.016984,54.514936],[-3.015833,54.513684],[-3.014896,54.509816],[-3.013394,54.508783],[-3.011755,54.508623],[-3.011389,54.507383],[-3.012414,54.505727],[-3.013666,54.500931],[-3.014835,54.499843],[-3.015011,54.49806],[-3.014142,54.494876],[-3.010834,54.494606],[-3.00481,54.496954],[-2.996013,54.49755],[-2.992659,54.49727],[-2.990017,54.495758],[-2.987744,54.496181],[-2.984139,54.496267],[-2.980198,54.49585],[-2.979541,54.494202],[-2.977056,54.493261],[-2.975702,54.492282],[-2.974854,54.490706],[-2.972594,54.488455],[-2.967404,54.486303],[-2.966361,54.482232],[-2.962528,54.482335],[-2.955348,54.484532],[-2.949413,54.481903],[-2.948134,54.479704],[-2.947479,54.479681],[-2.946053,54.47747],[-2.946432,54.47711],[-2.945391,54.475586],[-2.943166,54.473542],[-2.941221,54.470892],[-2.938988,54.47002],[-2.936814,54.468539],[-2.933274,54.469953],[-2.931455,54.469873],[-2.925143,54.466184],[-2.922848,54.465216],[-2.919819,54.464779],[-2.91905,54.465156],[-2.917632,54.469553],[-2.916796,54.470772],[-2.912758,54.471815],[-2.909141,54.476939],[-2.907454,54.480327],[-2.906279,54.481348],[-2.902927,54.481849],[-2.899599,54.48128],[-2.900099,54.483096],[-2.898424,54.483113],[-2.894841,54.484483],[-2.893973,54.483955],[-2.89189,54.483705],[-2.889033,54.484556],[-2.883665,54.484957],[-2.881477,54.484434],[-2.879022,54.482797],[-2.879006,54.482126],[-2.877533,54.481155],[-2.875618,54.481101],[-2.872837,54.482201],[-2.865783,54.489212],[-2.865543,54.488127],[-2.862347,54.485974],[-2.859715,54.485298],[-2.854907,54.482939],[-2.853528,54.481025],[-2.852982,54.478492],[-2.846702,54.478569],[-2.84455,54.478308],[-2.841652,54.477513],[-2.840271,54.476472],[-2.838496,54.476154],[-2.835191,54.476356],[-2.830439,54.479053],[-2.827614,54.479931],[-2.820445,54.477094],[-2.817724,54.47429],[-2.815925,54.474612],[-2.810425,54.478308],[-2.806877,54.48206],[-2.795421,54.475268],[-2.796242,54.469929],[-2.793672,54.467532],[-2.789177,54.464982],[-2.786694,54.464989],[-2.784291,54.464213],[-2.776992,54.459873],[-2.771624,54.463229],[-2.752115,54.450074],[-2.748702,54.448958],[-2.747615,54.44708],[-2.74475,54.446827],[-2.741112,54.447755],[-2.738935,54.447342],[-2.737627,54.446234],[-2.73595,54.446165],[-2.73473,54.445306],[-2.734378,54.444138],[-2.73215,54.443857],[-2.730086,54.442146],[-2.728053,54.44182],[-2.724259,54.439856],[-2.721926,54.439668],[-2.720078,54.438932],[-2.719287,54.43944],[-2.715187,54.437247],[-2.7128,54.436884],[-2.707132,54.43496],[-2.704355,54.433561],[-2.705101,54.432762],[-2.703381,54.432057],[-2.701285,54.432064],[-2.69803,54.434032],[-2.695587,54.43489],[-2.694827,54.436547],[-2.69565,54.437215],[-2.698355,54.437989],[-2.698227,54.439714],[-2.699218,54.442523],[-2.697624,54.44307],[-2.697615,54.444379],[-2.696767,54.446098],[-2.694553,54.446915],[-2.690204,54.44502],[-2.689216,54.445755],[-2.687933,54.443463],[-2.687064,54.439892],[-2.68719,54.438031],[-2.690642,54.433533],[-2.691095,54.43162],[-2.690956,54.429143],[-2.689408,54.428937],[-2.688835,54.427905],[-2.686804,54.426665],[-2.685095,54.42632],[-2.682553,54.426377],[-2.678215,54.425879],[-2.676454,54.425008],[-2.675725,54.424072],[-2.674148,54.423878],[-2.671096,54.422817],[-2.669993,54.422777],[-2.66623,54.421476],[-2.665399,54.420582],[-2.665753,54.419866],[-2.662428,54.416496],[-2.660762,54.415421],[-2.66043,54.414236],[-2.657898,54.414381],[-2.65542,54.412904],[-2.652579,54.412667],[-2.651801,54.411338],[-2.646038,54.41078],[-2.643599,54.409285],[-2.643802,54.407056],[-2.641032,54.405679],[-2.640277,54.404346],[-2.638473,54.403992],[-2.636068,54.404257],[-2.635246,54.405203],[-2.633554,54.405239],[-2.631445,54.406936],[-2.62967,54.407645],[-2.625229,54.407556],[-2.617521,54.409115],[-2.615482,54.408667],[-2.614863,54.409388],[-2.611706,54.409249],[-2.611389,54.407969],[-2.610233,54.407487],[-2.607536,54.407542],[-2.605059,54.406823],[-2.603976,54.406929],[-2.603967,54.403528],[-2.601739,54.398956],[-2.599508,54.39957],[-2.597998,54.397106],[-2.593499,54.395294],[-2.590088,54.391746],[-2.586691,54.39039],[-2.585114,54.388356],[-2.583471,54.38765],[-2.579636,54.391025],[-2.575254,54.391985],[-2.57366,54.391851],[-2.571536,54.390635],[-2.56562,54.388944],[-2.559565,54.388436],[-2.556973,54.387844],[-2.556828,54.38725],[-2.554827,54.386739],[-2.552433,54.386962],[-2.5502,54.387521],[-2.549461,54.388374],[-2.547466,54.389098],[-2.546501,54.390222],[-2.544587,54.391455],[-2.543929,54.393091],[-2.538572,54.394224],[-2.537169,54.393995],[-2.536461,54.392595],[-2.537777,54.390868],[-2.537159,54.389531],[-2.536042,54.388446],[-2.535134,54.386123],[-2.533735,54.385362],[-2.531089,54.384567],[-2.531464,54.382664],[-2.533991,54.381084],[-2.526727,54.378122],[-2.526383,54.376868],[-2.525157,54.375516],[-2.523462,54.375357],[-2.5223,54.374285],[-2.521321,54.372488],[-2.522483,54.37187],[-2.521158,54.369931],[-2.519015,54.369773],[-2.513687,54.367934],[-2.508542,54.37024],[-2.50727,54.372193],[-2.507362,54.372917],[-2.504572,54.373613],[-2.499193,54.372694],[-2.496235,54.373988],[-2.495846,54.375204],[-2.491984,54.376226],[-2.48648,54.376556],[-2.483653,54.377352],[-2.474664,54.375579],[-2.472681,54.374532],[-2.472388,54.373535],[-2.470045,54.372044],[-2.468093,54.371354],[-2.462729,54.368384],[-2.457026,54.370215],[-2.456061,54.372338],[-2.45308,54.374494],[-2.450585,54.374825],[-2.448984,54.375822],[-2.443773,54.376028],[-2.442502,54.375373],[-2.441618,54.373521],[-2.438409,54.372542],[-2.438128,54.371292],[-2.434537,54.371136],[-2.431196,54.369955],[-2.429281,54.370162],[-2.427698,54.368515],[-2.425999,54.368047],[-2.425961,54.367334],[-2.423279,54.366826],[-2.420874,54.365845],[-2.418845,54.366049],[-2.416915,54.367112],[-2.415698,54.36703],[-2.412876,54.367606],[-2.41131,54.368547],[-2.407459,54.369545],[-2.406287,54.370253],[-2.402986,54.370241],[-2.402393,54.369899],[-2.399163,54.369961],[-2.396703,54.369522],[-2.392799,54.369557],[-2.382318,54.371315],[-2.380343,54.369644],[-2.379982,54.367585],[-2.3809,54.366753],[-2.375258,54.36148],[-2.373918,54.36069],[-2.372455,54.35867],[-2.367712,54.356071],[-2.366152,54.355037],[-2.36369,54.354766],[-2.360749,54.354948],[-2.356437,54.355931],[-2.355731,54.357208],[-2.352876,54.358329],[-2.344648,54.359628],[-2.342714,54.361651],[-2.338255,54.363832],[-2.334557,54.363817],[-2.332884,54.364555],[-2.329959,54.367126],[-2.32693,54.368123],[-2.326092,54.368096],[-2.324333,54.369173],[-2.323491,54.370535],[-2.322374,54.370881],[-2.318887,54.374364],[-2.318141,54.374621],[-2.317043,54.37631],[-2.297441,54.376899],[-2.292061,54.384202],[-2.293227,54.386813],[-2.293932,54.387432],[-2.291944,54.389321],[-2.291987,54.391486],[-2.295797,54.392587],[-2.298785,54.394771],[-2.301643,54.396203],[-2.305507,54.39712],[-2.306343,54.398757],[-2.304786,54.401899],[-2.307415,54.404305],[-2.305682,54.407585],[-2.306319,54.411261],[-2.307855,54.414286],[-2.308146,54.419794],[-2.307879,54.420823],[-2.305464,54.422622],[-2.303374,54.426277],[-2.299438,54.427044],[-2.29453,54.431272],[-2.291854,54.431463],[-2.292346,54.43267],[-2.291493,54.436061],[-2.292544,54.437506],[-2.292075,54.438497],[-2.292865,54.439307],[-2.284315,54.438439],[-2.280419,54.438942],[-2.274984,54.440656],[-2.271348,54.440916],[-2.270332,54.441905],[-2.265379,54.442926],[-2.267903,54.447234],[-2.267167,54.447184],[-2.262722,54.44866],[-2.259863,54.448521],[-2.256768,54.450165],[-2.253502,54.45054],[-2.249539,54.451943],[-2.247886,54.451492],[-2.24624,54.451782],[-2.244118,54.450068],[-2.242573,54.4498],[-2.238731,54.449878],[-2.235618,54.448231],[-2.19242,54.448606],[-2.189316,54.448978],[-2.186162,54.452035],[-2.183577,54.455821],[-2.182194,54.457296],[-2.179915,54.458463],[-2.177509,54.461626],[-2.170579,54.461141],[-2.171934,54.459467],[-2.170213,54.458199],[-2.161697,54.464732],[-2.158997,54.47203],[-2.16647,54.489908],[-2.162394,54.503943],[-2.168705,54.519652],[-2.174493,54.521727],[-2.174025,54.524409],[-2.171172,54.529003],[-2.172398,54.532444],[-2.182286,54.535855],[-2.197531,54.532704],[-2.210143,54.543658],[-2.209488,54.551713],[-2.245962,54.565063],[-2.262282,54.574229],[-2.270937,54.582199],[-2.304515,54.596198],[-2.308758,54.611883],[-2.324938,54.63165],[-2.323814,54.632],[-2.319975,54.634441],[-2.317064,54.635415],[-2.314185,54.637014],[-2.311146,54.637627],[-2.309083,54.639715],[-2.306925,54.642275],[-2.305788,54.642762],[-2.30286,54.642782],[-2.302191,54.643713],[-2.300045,54.644581],[-2.29897,54.645624],[-2.296812,54.646819],[-2.294091,54.649389],[-2.292901,54.64985],[-2.287979,54.65048],[-2.289314,54.651649],[-2.289973,54.654978],[-2.292097,54.655867],[-2.291344,54.658362],[-2.292767,54.661164],[-2.292875,54.663885],[-2.2982,54.665518],[-2.302216,54.666251],[-2.303835,54.667505],[-2.302753,54.669063],[-2.303317,54.66963],[-2.306154,54.670155],[-2.308356,54.669507],[-2.313438,54.669344],[-2.316364,54.668765],[-2.318985,54.669431],[-2.3225,54.669017],[-2.325018,54.670168],[-2.32757,54.670873],[-2.327779,54.671636],[-2.326414,54.672694],[-2.327107,54.673667],[-2.329263,54.6747],[-2.330516,54.674567],[-2.335617,54.675328],[-2.339864,54.678133],[-2.341665,54.678852],[-2.343509,54.682218],[-2.346796,54.68394],[-2.349078,54.683963],[-2.350204,54.685411],[-2.351594,54.685736],[-2.351783,54.687466],[-2.350483,54.69003],[-2.351173,54.690719],[-2.353904,54.691426],[-2.354169,54.692876],[-2.352518,54.69376],[-2.352258,54.694487],[-2.353928,54.695874],[-2.355489,54.69792],[-2.353465,54.69794],[-2.352257,54.699941],[-2.349563,54.701179],[-2.346364,54.700862],[-2.344382,54.701772],[-2.343379,54.703302],[-2.342772,54.705193],[-2.34146,54.705998],[-2.342546,54.707059],[-2.344015,54.707684],[-2.345033,54.709176],[-2.344086,54.709878],[-2.34115,54.710619],[-2.342252,54.711567],[-2.341706,54.712469],[-2.341965,54.713937],[-2.341388,54.714812],[-2.342208,54.715529],[-2.34139,54.716668],[-2.339044,54.716563],[-2.337454,54.717254],[-2.33757,54.719561],[-2.334419,54.720492],[-2.330213,54.723128],[-2.325747,54.726629],[-2.32961,54.727553],[-2.330665,54.728992],[-2.330636,54.730345],[-2.331948,54.731283],[-2.331919,54.733457],[-2.330928,54.735161],[-2.329455,54.735682],[-2.328587,54.737011],[-2.326892,54.737906],[-2.327883,54.739063],[-2.32746,54.740162],[-2.3264,54.740983],[-2.327596,54.743283],[-2.326712,54.745418],[-2.326927,54.747297],[-2.322814,54.75207],[-2.322591,54.753303],[-2.320823,54.755004],[-2.321128,54.756659],[-2.322433,54.757805],[-2.322231,54.759422],[-2.323224,54.7598],[-2.322479,54.763971],[-2.320906,54.765675],[-2.317557,54.76811],[-2.31757,54.768743],[-2.314669,54.770358],[-2.309905,54.771906],[-2.310018,54.772661],[-2.308487,54.773543],[-2.308929,54.774491],[-2.311682,54.77542],[-2.311677,54.778071],[-2.313924,54.781113],[-2.313,54.782586],[-2.31401,54.785173],[-2.312991,54.787337],[-2.313671,54.790218],[-2.31209,54.791015]]]},"properties":{"LAD22CD":"E07000030","LAD22NM":"Eden","BNG_E":359636,"BNG_N":526396,"LONG":-2.62678,"LAT":54.63107,"GlobalID":"e16a63f4-7a5d-4502-a465-9bf75f2d892e"},"id":69}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.034124,54.208855],[-3.032437,54.211315],[-3.032704,54.212415],[-3.034927,54.210987],[-3.036781,54.210003],[-3.036926,54.209717],[-3.036651,54.209349],[-3.037073,54.208598],[-3.039272,54.208276],[-3.039689,54.206527],[-3.0378,54.206274],[-3.034124,54.208855]]],[[[-3.014835,54.499843],[-3.022869,54.499675],[-3.031442,54.497929],[-3.032959,54.498029],[-3.035875,54.497633],[-3.039571,54.496347],[-3.042291,54.495822],[-3.044478,54.495779],[-3.048304,54.496278],[-3.050803,54.492074],[-3.052235,54.491143],[-3.055753,54.492141],[-3.061986,54.492523],[-3.069978,54.490444],[-3.073381,54.490283],[-3.076215,54.489365],[-3.081706,54.484926],[-3.084383,54.485576],[-3.088265,54.483964],[-3.088808,54.482837],[-3.092227,54.479072],[-3.093817,54.474803],[-3.094877,54.47365],[-3.097753,54.471903],[-3.10068,54.472793],[-3.102893,54.472333],[-3.109479,54.474004],[-3.111334,54.470982],[-3.115705,54.466583],[-3.112573,54.461491],[-3.119426,54.460238],[-3.126167,54.4628],[-3.132213,54.464544],[-3.133596,54.465577],[-3.136444,54.470746],[-3.137743,54.470284],[-3.142472,54.469506],[-3.145558,54.468444],[-3.147146,54.467116],[-3.147539,54.465501],[-3.150034,54.462747],[-3.152883,54.461656],[-3.153825,54.460154],[-3.15644,54.458622],[-3.159167,54.457855],[-3.162297,54.458281],[-3.163688,54.457296],[-3.163764,54.455989],[-3.16551,54.455733],[-3.16714,54.454111],[-3.166176,54.451255],[-3.166543,54.45054],[-3.166279,54.447767],[-3.165209,54.447024],[-3.161117,54.447037],[-3.160601,54.443096],[-3.158592,54.442177],[-3.160157,54.441043],[-3.159532,54.439199],[-3.158078,54.438392],[-3.157914,54.434772],[-3.160345,54.433923],[-3.157019,54.430281],[-3.154141,54.42971],[-3.135978,54.421883],[-3.128736,54.421532],[-3.123996,54.427507],[-3.120535,54.423691],[-3.115291,54.422365],[-3.115076,54.421161],[-3.114279,54.420579],[-3.114144,54.41828],[-3.115466,54.417796],[-3.115532,54.416474],[-3.116258,54.414666],[-3.117855,54.414869],[-3.121819,54.414108],[-3.123843,54.413283],[-3.128388,54.41221],[-3.12891,54.411744],[-3.131459,54.411511],[-3.132939,54.410712],[-3.13693,54.409672],[-3.140404,54.409664],[-3.141086,54.409235],[-3.143663,54.408816],[-3.145453,54.408168],[-3.147978,54.407767],[-3.149652,54.407945],[-3.152781,54.407127],[-3.156264,54.407546],[-3.159326,54.407168],[-3.160587,54.406599],[-3.161161,54.405491],[-3.164411,54.403231],[-3.165265,54.40163],[-3.166657,54.401344],[-3.169085,54.400083],[-3.170758,54.39973],[-3.171258,54.397337],[-3.172077,54.397294],[-3.172735,54.395604],[-3.171574,54.393787],[-3.173301,54.391967],[-3.17252,54.389048],[-3.173261,54.388492],[-3.176715,54.387359],[-3.178346,54.385986],[-3.180073,54.385702],[-3.181529,54.384852],[-3.179084,54.38223],[-3.180064,54.381956],[-3.180618,54.380376],[-3.180965,54.375362],[-3.181998,54.374187],[-3.184925,54.372766],[-3.187074,54.370945],[-3.187494,54.369762],[-3.189136,54.368275],[-3.18859,54.366623],[-3.189731,54.364202],[-3.191576,54.36345],[-3.193308,54.359841],[-3.195974,54.356209],[-3.194596,54.35524],[-3.194599,54.354351],[-3.200149,54.354328],[-3.203326,54.352993],[-3.207085,54.352958],[-3.208945,54.351646],[-3.210057,54.349896],[-3.212109,54.348362],[-3.212378,54.34662],[-3.215962,54.344795],[-3.218565,54.344996],[-3.217518,54.343265],[-3.217598,54.34238],[-3.219519,54.341527],[-3.219818,54.339778],[-3.218054,54.339322],[-3.218503,54.338241],[-3.217572,54.337276],[-3.218407,54.336025],[-3.2193,54.335947],[-3.220481,54.334769],[-3.223489,54.333643],[-3.224568,54.332789],[-3.230112,54.33217],[-3.231195,54.330791],[-3.233604,54.328529],[-3.236373,54.327114],[-3.237945,54.325504],[-3.24187,54.323527],[-3.240655,54.322755],[-3.240351,54.321181],[-3.238462,54.318816],[-3.239507,54.31721],[-3.236996,54.316011],[-3.235385,54.316746],[-3.233539,54.316422],[-3.230923,54.31468],[-3.231139,54.311216],[-3.23391,54.30978],[-3.23233,54.306278],[-3.233047,54.304826],[-3.232718,54.303665],[-3.234483,54.302174],[-3.235384,54.300076],[-3.236948,54.298313],[-3.236935,54.296597],[-3.238166,54.294017],[-3.237228,54.292895],[-3.238058,54.290727],[-3.236433,54.289596],[-3.235226,54.287823],[-3.23508,54.285767],[-3.23329,54.283498],[-3.228395,54.28151],[-3.227934,54.280709],[-3.228207,54.278635],[-3.227822,54.277713],[-3.223968,54.275604],[-3.225033,54.273263],[-3.225589,54.268615],[-3.22418,54.266469],[-3.223911,54.264791],[-3.226356,54.263389],[-3.227817,54.262101],[-3.227847,54.260398],[-3.223987,54.260168],[-3.221132,54.258605],[-3.219067,54.258812],[-3.217684,54.25853],[-3.213991,54.256489],[-3.214987,54.255053],[-3.214119,54.254761],[-3.211124,54.250446],[-3.212467,54.249324],[-3.212646,54.247531],[-3.211253,54.246615],[-3.209452,54.246433],[-3.208501,54.245421],[-3.207606,54.243651],[-3.206115,54.243062],[-3.201527,54.239417],[-3.200046,54.237739],[-3.199578,54.234927],[-3.198003,54.232825],[-3.197736,54.228903],[-3.195233,54.228908],[-3.194405,54.230381],[-3.192592,54.231528],[-3.191137,54.231831],[-3.191452,54.233103],[-3.189652,54.233494],[-3.190182,54.231232],[-3.191857,54.230369],[-3.192717,54.228236],[-3.194315,54.227155],[-3.195931,54.225387],[-3.196662,54.225116],[-3.197487,54.223606],[-3.197771,54.221642],[-3.19931,54.219323],[-3.200891,54.218633],[-3.203116,54.218546],[-3.204812,54.217717],[-3.205034,54.215164],[-3.202927,54.214762],[-3.202595,54.214371],[-3.203117,54.213712],[-3.202914,54.2127],[-3.203259,54.21228],[-3.203248,54.212254],[-3.202351,54.211444],[-3.202385,54.211379],[-3.202491,54.21118],[-3.200843,54.211535],[-3.201082,54.209771],[-3.200145,54.208808],[-3.200522,54.208228],[-3.195183,54.208379],[-3.192147,54.207175],[-3.189236,54.206598],[-3.187468,54.205212],[-3.182535,54.20356],[-3.180161,54.203372],[-3.17729,54.203613],[-3.167646,54.203152],[-3.163483,54.207939],[-3.159436,54.211676],[-3.151956,54.216361],[-3.147627,54.218476],[-3.146603,54.213713],[-3.14953,54.207297],[-3.153344,54.203104],[-3.158729,54.198543],[-3.15886,54.19784],[-3.161407,54.194922],[-3.162684,54.194322],[-3.163768,54.192364],[-3.163082,54.191739],[-3.15828,54.192571],[-3.154749,54.184154],[-3.152203,54.182105],[-3.151888,54.180209],[-3.152362,54.178914],[-3.150174,54.177411],[-3.144837,54.176016],[-3.145697,54.174735],[-3.145276,54.173668],[-3.146446,54.173252],[-3.144921,54.172344],[-3.144557,54.170911],[-3.144045,54.166463],[-3.144695,54.165511],[-3.147017,54.165263],[-3.147328,54.163133],[-3.147906,54.163054],[-3.149436,54.15974],[-3.156511,54.158939],[-3.162908,54.158881],[-3.163329,54.156985],[-3.164761,54.154497],[-3.163464,54.14888],[-3.164349,54.147063],[-3.163135,54.144234],[-3.163954,54.139976],[-3.162795,54.137832],[-3.163657,54.135296],[-3.159634,54.134952],[-3.160962,54.134057],[-3.163988,54.128668],[-3.164028,54.127583],[-3.163084,54.125406],[-3.163461,54.121946],[-3.166448,54.121084],[-3.166867,54.119753],[-3.171678,54.118097],[-3.172519,54.117258],[-3.174264,54.116504],[-3.174868,54.114765],[-3.171533,54.112578],[-3.164925,54.109121],[-3.161705,54.108062],[-3.161322,54.107307],[-3.157321,54.10597],[-3.154639,54.104644],[-3.154085,54.103813],[-3.148668,54.102549],[-3.144776,54.099493],[-3.142582,54.097393],[-3.149111,54.09529],[-3.148577,54.094318],[-3.14914,54.093551],[-3.141975,54.097157],[-3.140893,54.098052],[-3.131696,54.102083],[-3.130325,54.103542],[-3.13029,54.105395],[-3.127146,54.10746],[-3.122253,54.109479],[-3.121048,54.11119],[-3.120788,54.112531],[-3.115605,54.115374],[-3.107838,54.117766],[-3.1049,54.119743],[-3.103993,54.121195],[-3.104359,54.122741],[-3.101781,54.125094],[-3.100638,54.127974],[-3.09876,54.129184],[-3.094807,54.130975],[-3.092893,54.132433],[-3.090811,54.134749],[-3.087355,54.136562],[-3.087741,54.138165],[-3.0853,54.141301],[-3.08371,54.147003],[-3.079288,54.15049],[-3.078415,54.151809],[-3.077737,54.154172],[-3.07053,54.159124],[-3.0691,54.159433],[-3.06722,54.160413],[-3.060854,54.162043],[-3.060793,54.164189],[-3.059878,54.166568],[-3.060295,54.167761],[-3.060122,54.16959],[-3.058685,54.171791],[-3.060096,54.174355],[-3.060779,54.176928],[-3.062699,54.178478],[-3.0631,54.18296],[-3.062086,54.181873],[-3.061966,54.180435],[-3.05971,54.183946],[-3.056971,54.186913],[-3.055366,54.188056],[-3.0534,54.188421],[-3.053415,54.190457],[-3.054259,54.190895],[-3.054968,54.193533],[-3.054809,54.19543],[-3.05319,54.198856],[-3.050836,54.200373],[-3.049829,54.200581],[-3.044618,54.199429],[-3.044109,54.200741],[-3.042001,54.202243],[-3.040364,54.202807],[-3.039148,54.204325],[-3.039836,54.20502],[-3.040148,54.20665],[-3.039292,54.208465],[-3.037717,54.208613],[-3.037135,54.209807],[-3.036742,54.21007],[-3.034942,54.211013],[-3.032788,54.212652],[-3.03358,54.214271],[-3.034844,54.215227],[-3.040192,54.217438],[-3.043392,54.218185],[-3.045667,54.219135],[-3.047367,54.218102],[-3.049282,54.218009],[-3.051863,54.219479],[-3.053128,54.221001],[-3.05221,54.226253],[-3.052407,54.23122],[-3.05154,54.233044],[-3.049149,54.235415],[-3.048211,54.237181],[-3.047915,54.239423],[-3.046246,54.240568],[-3.040156,54.240213],[-3.037872,54.239797],[-3.036696,54.240525],[-3.036487,54.243048],[-3.035638,54.244343],[-3.034214,54.244873],[-3.031482,54.245221],[-3.029836,54.243524],[-3.028037,54.242834],[-3.027306,54.241609],[-3.028351,54.240566],[-3.031335,54.239377],[-3.031542,54.238791],[-3.029073,54.237409],[-3.026306,54.240295],[-3.024592,54.240505],[-3.022675,54.239377],[-3.017613,54.240939],[-3.017386,54.240632],[-3.021675,54.239151],[-3.022813,54.239104],[-3.025442,54.240156],[-3.028095,54.237109],[-3.03023,54.236887],[-3.031806,54.238417],[-3.031339,54.23998],[-3.028703,54.241367],[-3.030746,54.243078],[-3.033082,54.243807],[-3.033707,54.24317],[-3.033199,54.240849],[-3.034157,54.239623],[-3.036701,54.238845],[-3.038008,54.237474],[-3.043432,54.23725],[-3.045369,54.235866],[-3.047636,54.234961],[-3.048716,54.233276],[-3.047624,54.229312],[-3.046718,54.228267],[-3.046274,54.226752],[-3.042814,54.226573],[-3.035223,54.228247],[-3.033068,54.228044],[-3.031092,54.226805],[-3.031593,54.225386],[-3.029234,54.222271],[-3.028021,54.221328],[-3.027575,54.219267],[-3.023436,54.21697],[-3.023128,54.215763],[-3.021844,54.214551],[-3.022329,54.212007],[-3.020912,54.210579],[-3.019887,54.210782],[-3.01775,54.209939],[-3.017511,54.209001],[-3.015873,54.208148],[-3.014561,54.206766],[-3.014527,54.203883],[-3.016994,54.201655],[-3.018434,54.200969],[-3.020165,54.20072],[-3.022816,54.201022],[-3.024087,54.200102],[-3.025106,54.19822],[-3.027054,54.197738],[-3.034745,54.196295],[-3.030815,54.194881],[-3.029249,54.193891],[-3.029108,54.191634],[-3.027012,54.189641],[-3.022114,54.185738],[-3.020673,54.185457],[-3.020162,54.184507],[-3.018592,54.183852],[-3.016408,54.1822],[-3.011954,54.179361],[-3.009516,54.176157],[-3.009967,54.175211],[-3.008793,54.173876],[-3.006489,54.172249],[-3.004304,54.171938],[-3.00149,54.172258],[-2.999909,54.172918],[-2.997315,54.173392],[-2.996546,54.171483],[-2.996707,54.170676],[-2.999408,54.169644],[-3.002056,54.166699],[-3.001102,54.164122],[-3.001127,54.162421],[-3.002672,54.160677],[-3.002712,54.159986],[-3.00145,54.158123],[-3.001696,54.156691],[-2.999866,54.154764],[-2.995384,54.155113],[-2.993901,54.156239],[-2.992798,54.155507],[-2.990144,54.15479],[-2.988972,54.15404],[-2.986552,54.153657],[-2.984563,54.152983],[-2.980036,54.152479],[-2.973668,54.152844],[-2.967404,54.15267],[-2.966527,54.15323],[-2.964217,54.151508],[-2.959683,54.153146],[-2.955943,54.150572],[-2.954053,54.150664],[-2.950107,54.14921],[-2.947091,54.149325],[-2.944494,54.150312],[-2.942648,54.150107],[-2.940137,54.150589],[-2.939108,54.151232],[-2.936718,54.151055],[-2.933113,54.150128],[-2.931752,54.150841],[-2.927419,54.150007],[-2.92536,54.150292],[-2.923228,54.151893],[-2.922822,54.154531],[-2.919212,54.158013],[-2.918023,54.160231],[-2.914202,54.160624],[-2.911,54.16134],[-2.908959,54.163672],[-2.908328,54.164815],[-2.90886,54.166752],[-2.912294,54.167746],[-2.916213,54.166622],[-2.914755,54.169089],[-2.912262,54.169861],[-2.909885,54.169319],[-2.909868,54.170717],[-2.908043,54.171259],[-2.909074,54.173497],[-2.906733,54.175],[-2.904245,54.175564],[-2.903479,54.175323],[-2.900496,54.175455],[-2.898818,54.176786],[-2.900796,54.176718],[-2.903906,54.177921],[-2.90694,54.178497],[-2.907968,54.180486],[-2.909722,54.179538],[-2.910194,54.180342],[-2.90838,54.181424],[-2.905457,54.181181],[-2.904738,54.179476],[-2.903041,54.179103],[-2.898484,54.179787],[-2.897476,54.180816],[-2.899478,54.18108],[-2.8974,54.183772],[-2.898352,54.184172],[-2.898425,54.187103],[-2.899737,54.188414],[-2.90214,54.188891],[-2.901059,54.190128],[-2.897829,54.189837],[-2.896582,54.190415],[-2.894627,54.192794],[-2.891833,54.194351],[-2.89025,54.194329],[-2.888537,54.195122],[-2.886757,54.19485],[-2.88494,54.197427],[-2.882967,54.198258],[-2.880858,54.200401],[-2.878466,54.201228],[-2.874989,54.202076],[-2.868817,54.202464],[-2.863399,54.203214],[-2.860748,54.203255],[-2.854594,54.204582],[-2.843818,54.20568],[-2.84251,54.205591],[-2.841624,54.207787],[-2.835792,54.21628],[-2.841524,54.207133],[-2.836076,54.215074],[-2.831695,54.218769],[-2.82958,54.219801],[-2.836265,54.212838],[-2.835865,54.211753],[-2.833688,54.212432],[-2.822487,54.21382],[-2.817237,54.215101],[-2.812165,54.217773],[-2.811589,54.218976],[-2.810577,54.219618],[-2.809206,54.221324],[-2.8095,54.223205],[-2.808083,54.224944],[-2.804963,54.227665],[-2.804174,54.234421],[-2.802028,54.238708],[-2.799228,54.241573],[-2.79955,54.243089],[-2.800574,54.243746],[-2.802383,54.245774],[-2.804711,54.246258],[-2.80764,54.244489],[-2.809672,54.243806],[-2.812562,54.24365],[-2.814446,54.244395],[-2.815274,54.247316],[-2.814616,54.249397],[-2.811922,54.250628],[-2.807613,54.251346],[-2.807647,54.25051],[-2.810669,54.250257],[-2.81305,54.249716],[-2.814371,54.248236],[-2.81378,54.245295],[-2.810561,54.246257],[-2.805132,54.246964],[-2.802935,54.246874],[-2.800276,54.24592],[-2.796726,54.241388],[-2.79761,54.239297],[-2.797482,54.237476],[-2.796862,54.236655],[-2.797307,54.235681],[-2.799247,54.233447],[-2.798901,54.227444],[-2.803362,54.221629],[-2.805339,54.220147],[-2.802671,54.220235],[-2.799102,54.222319],[-2.798712,54.224433],[-2.799454,54.225451],[-2.798853,54.226087],[-2.795336,54.224473],[-2.794251,54.224597],[-2.793482,54.227055],[-2.791201,54.22704],[-2.791531,54.225652],[-2.793788,54.22413],[-2.796676,54.223487],[-2.802261,54.219817],[-2.80429,54.219903],[-2.807601,54.21869],[-2.811578,54.2135],[-2.814465,54.212217],[-2.816421,54.211796],[-2.82086,54.209755],[-2.821451,54.208782],[-2.823993,54.206517],[-2.824422,54.204749],[-2.825872,54.204034],[-2.830359,54.204177],[-2.831907,54.204632],[-2.834285,54.204784],[-2.833769,54.203714],[-2.836141,54.201575],[-2.840454,54.200374],[-2.844174,54.197991],[-2.849533,54.19654],[-2.852006,54.195544],[-2.853066,54.194617],[-2.856994,54.19341],[-2.859599,54.193836],[-2.861413,54.193507],[-2.864136,54.191997],[-2.864742,54.190654],[-2.864102,54.188617],[-2.864608,54.187853],[-2.864418,54.186299],[-2.864949,54.185176],[-2.864728,54.184079],[-2.863537,54.18255],[-2.86239,54.182165],[-2.85945,54.182233],[-2.852762,54.180571],[-2.850313,54.180362],[-2.848206,54.178931],[-2.845999,54.178455],[-2.843553,54.177254],[-2.841282,54.177032],[-2.839469,54.176289],[-2.83779,54.174908],[-2.837913,54.174226],[-2.837217,54.174172],[-2.828801,54.178967],[-2.823467,54.180067],[-2.82114,54.18103],[-2.818786,54.180845],[-2.815625,54.182114],[-2.814984,54.183329],[-2.813773,54.183917],[-2.813687,54.185768],[-2.814089,54.186724],[-2.815407,54.187302],[-2.816333,54.18981],[-2.811076,54.191961],[-2.809041,54.194016],[-2.806176,54.193818],[-2.805499,54.194901],[-2.804045,54.195656],[-2.802861,54.196865],[-2.800071,54.196426],[-2.79923,54.197732],[-2.796998,54.197018],[-2.795013,54.19701],[-2.794896,54.195779],[-2.788628,54.192851],[-2.786458,54.193101],[-2.784346,54.191692],[-2.780205,54.18955],[-2.777742,54.18948],[-2.776458,54.18868],[-2.774797,54.188416],[-2.771836,54.187336],[-2.769761,54.187346],[-2.769107,54.186183],[-2.768232,54.185964],[-2.753426,54.187734],[-2.750787,54.188743],[-2.749302,54.188955],[-2.748603,54.187039],[-2.746787,54.187001],[-2.744942,54.185923],[-2.743054,54.185503],[-2.738768,54.185068],[-2.734387,54.184111],[-2.734985,54.182324],[-2.736142,54.18113],[-2.735707,54.180082],[-2.736587,54.178232],[-2.736285,54.1769],[-2.736528,54.173981],[-2.735827,54.173214],[-2.736489,54.169027],[-2.727437,54.16792],[-2.727889,54.166811],[-2.723448,54.165941],[-2.717759,54.165401],[-2.71358,54.164481],[-2.708788,54.163861],[-2.705592,54.164871],[-2.701439,54.163376],[-2.696345,54.164015],[-2.693127,54.163242],[-2.69108,54.16458],[-2.687964,54.164647],[-2.679876,54.161135],[-2.67818,54.161507],[-2.675775,54.163759],[-2.675827,54.165061],[-2.67693,54.166496],[-2.677141,54.16752],[-2.676408,54.168257],[-2.676445,54.169313],[-2.675137,54.170206],[-2.672469,54.171038],[-2.672985,54.172579],[-2.672641,54.174747],[-2.671899,54.175011],[-2.6705,54.176583],[-2.666979,54.177833],[-2.666297,54.178487],[-2.664776,54.178507],[-2.662879,54.179739],[-2.661508,54.179627],[-2.659495,54.18024],[-2.657729,54.181631],[-2.65307,54.183222],[-2.647742,54.187282],[-2.644667,54.190904],[-2.641516,54.200386],[-2.639965,54.202045],[-2.631225,54.198903],[-2.629988,54.197786],[-2.627371,54.197367],[-2.624957,54.195569],[-2.611943,54.195203],[-2.605753,54.194354],[-2.604467,54.194966],[-2.598948,54.195226],[-2.595552,54.196082],[-2.590871,54.195883],[-2.591017,54.194928],[-2.587004,54.19448],[-2.585312,54.196338],[-2.583793,54.195236],[-2.580971,54.196008],[-2.578245,54.195455],[-2.576078,54.195595],[-2.57102,54.196821],[-2.56394,54.197616],[-2.563301,54.197917],[-2.557794,54.198669],[-2.550751,54.200293],[-2.545534,54.202997],[-2.543365,54.205683],[-2.540986,54.206245],[-2.539771,54.207402],[-2.5359,54.20948],[-2.532411,54.20913],[-2.528364,54.211714],[-2.52654,54.211802],[-2.525997,54.21285],[-2.52386,54.213714],[-2.522689,54.214586],[-2.520518,54.214875],[-2.52007,54.216447],[-2.515082,54.217706],[-2.512443,54.217864],[-2.51087,54.217667],[-2.499603,54.219555],[-2.49845,54.22049],[-2.494244,54.222332],[-2.493734,54.222994],[-2.490703,54.224802],[-2.479468,54.228249],[-2.478681,54.229295],[-2.475165,54.231252],[-2.473219,54.233737],[-2.472375,54.233721],[-2.464883,54.236221],[-2.459585,54.239568],[-2.45878,54.232485],[-2.459471,54.229525],[-2.460863,54.226716],[-2.441418,54.225739],[-2.437652,54.224204],[-2.435428,54.222877],[-2.433478,54.223261],[-2.431945,54.224195],[-2.429418,54.223567],[-2.426495,54.223711],[-2.424051,54.224449],[-2.414795,54.225962],[-2.411971,54.226687],[-2.409215,54.226625],[-2.40645,54.225929],[-2.405632,54.224915],[-2.403629,54.225583],[-2.401377,54.230423],[-2.400931,54.234043],[-2.39678,54.239381],[-2.385086,54.239149],[-2.373021,54.240099],[-2.372325,54.248235],[-2.362317,54.249753],[-2.360407,54.246649],[-2.35055,54.241367],[-2.348053,54.237807],[-2.342509,54.237467],[-2.337658,54.237599],[-2.335811,54.238064],[-2.33131,54.240601],[-2.328271,54.241886],[-2.325647,54.241438],[-2.325469,54.242801],[-2.322657,54.24546],[-2.323254,54.246994],[-2.322538,54.248149],[-2.322646,54.252914],[-2.322092,54.255021],[-2.319097,54.257156],[-2.32082,54.259933],[-2.318056,54.263589],[-2.318286,54.265899],[-2.316105,54.267847],[-2.315514,54.270285],[-2.319403,54.274471],[-2.321184,54.275123],[-2.321745,54.277346],[-2.323789,54.279316],[-2.324131,54.280179],[-2.321123,54.282229],[-2.321655,54.283135],[-2.319082,54.283825],[-2.317918,54.286712],[-2.317192,54.287166],[-2.319857,54.288968],[-2.324172,54.293605],[-2.32229,54.2952],[-2.32039,54.299044],[-2.320438,54.299994],[-2.324345,54.300775],[-2.324523,54.303184],[-2.321248,54.305406],[-2.320401,54.306771],[-2.323032,54.311083],[-2.320151,54.312085],[-2.318672,54.311291],[-2.317059,54.311993],[-2.314978,54.313586],[-2.309842,54.324315],[-2.312461,54.324916],[-2.313799,54.32568],[-2.314992,54.327124],[-2.318055,54.328097],[-2.320202,54.331751],[-2.32247,54.331531],[-2.328162,54.332153],[-2.334749,54.334945],[-2.33521,54.335847],[-2.334509,54.337882],[-2.335768,54.340435],[-2.340232,54.342706],[-2.347925,54.345144],[-2.348135,54.346777],[-2.353245,54.34842],[-2.357342,54.349351],[-2.359674,54.350267],[-2.361564,54.352431],[-2.367156,54.354933],[-2.367712,54.356071],[-2.372455,54.35867],[-2.373918,54.36069],[-2.375258,54.36148],[-2.3809,54.366753],[-2.379982,54.367585],[-2.380343,54.369644],[-2.382318,54.371315],[-2.392799,54.369557],[-2.396703,54.369522],[-2.399163,54.369961],[-2.402393,54.369899],[-2.402986,54.370241],[-2.406287,54.370253],[-2.407459,54.369545],[-2.41131,54.368547],[-2.412876,54.367606],[-2.415698,54.36703],[-2.416915,54.367112],[-2.418845,54.366049],[-2.420874,54.365845],[-2.423279,54.366826],[-2.425961,54.367334],[-2.425999,54.368047],[-2.427698,54.368515],[-2.429281,54.370162],[-2.431196,54.369955],[-2.434537,54.371136],[-2.438128,54.371292],[-2.438409,54.372542],[-2.441618,54.373521],[-2.442502,54.375373],[-2.443773,54.376028],[-2.448984,54.375822],[-2.450585,54.374825],[-2.45308,54.374494],[-2.456061,54.372338],[-2.457026,54.370215],[-2.462729,54.368384],[-2.468093,54.371354],[-2.470045,54.372044],[-2.472388,54.373535],[-2.472681,54.374532],[-2.474664,54.375579],[-2.483653,54.377352],[-2.48648,54.376556],[-2.491984,54.376226],[-2.495846,54.375204],[-2.496235,54.373988],[-2.499193,54.372694],[-2.504572,54.373613],[-2.507362,54.372917],[-2.50727,54.372193],[-2.508542,54.37024],[-2.513687,54.367934],[-2.519015,54.369773],[-2.521158,54.369931],[-2.522483,54.37187],[-2.521321,54.372488],[-2.5223,54.374285],[-2.523462,54.375357],[-2.525157,54.375516],[-2.526383,54.376868],[-2.526727,54.378122],[-2.533991,54.381084],[-2.531464,54.382664],[-2.531089,54.384567],[-2.533735,54.385362],[-2.535134,54.386123],[-2.536042,54.388446],[-2.537159,54.389531],[-2.537777,54.390868],[-2.536461,54.392595],[-2.537169,54.393995],[-2.538572,54.394224],[-2.543929,54.393091],[-2.544587,54.391455],[-2.546501,54.390222],[-2.547466,54.389098],[-2.549461,54.388374],[-2.5502,54.387521],[-2.552433,54.386962],[-2.554827,54.386739],[-2.556828,54.38725],[-2.556973,54.387844],[-2.559565,54.388436],[-2.56562,54.388944],[-2.571536,54.390635],[-2.57366,54.391851],[-2.575254,54.391985],[-2.579636,54.391025],[-2.583471,54.38765],[-2.585114,54.388356],[-2.586691,54.39039],[-2.590088,54.391746],[-2.593499,54.395294],[-2.597998,54.397106],[-2.599508,54.39957],[-2.601739,54.398956],[-2.603967,54.403528],[-2.603976,54.406929],[-2.605059,54.406823],[-2.607536,54.407542],[-2.610233,54.407487],[-2.611389,54.407969],[-2.611706,54.409249],[-2.614863,54.409388],[-2.615482,54.408667],[-2.617521,54.409115],[-2.625229,54.407556],[-2.62967,54.407645],[-2.631445,54.406936],[-2.633554,54.405239],[-2.635246,54.405203],[-2.636068,54.404257],[-2.638473,54.403992],[-2.640277,54.404346],[-2.641032,54.405679],[-2.643802,54.407056],[-2.643599,54.409285],[-2.646038,54.41078],[-2.651801,54.411338],[-2.652579,54.412667],[-2.65542,54.412904],[-2.657898,54.414381],[-2.66043,54.414236],[-2.660762,54.415421],[-2.662428,54.416496],[-2.665753,54.419866],[-2.665399,54.420582],[-2.66623,54.421476],[-2.669993,54.422777],[-2.671096,54.422817],[-2.674148,54.423878],[-2.675725,54.424072],[-2.676454,54.425008],[-2.678215,54.425879],[-2.682553,54.426377],[-2.685095,54.42632],[-2.686804,54.426665],[-2.688835,54.427905],[-2.689408,54.428937],[-2.690956,54.429143],[-2.691095,54.43162],[-2.690642,54.433533],[-2.68719,54.438031],[-2.687064,54.439892],[-2.687933,54.443463],[-2.689216,54.445755],[-2.690204,54.44502],[-2.694553,54.446915],[-2.696767,54.446098],[-2.697615,54.444379],[-2.697624,54.44307],[-2.699218,54.442523],[-2.698227,54.439714],[-2.698355,54.437989],[-2.69565,54.437215],[-2.694827,54.436547],[-2.695587,54.43489],[-2.69803,54.434032],[-2.701285,54.432064],[-2.703381,54.432057],[-2.705101,54.432762],[-2.704355,54.433561],[-2.707132,54.43496],[-2.7128,54.436884],[-2.715187,54.437247],[-2.719287,54.43944],[-2.720078,54.438932],[-2.721926,54.439668],[-2.724259,54.439856],[-2.728053,54.44182],[-2.730086,54.442146],[-2.73215,54.443857],[-2.734378,54.444138],[-2.73473,54.445306],[-2.73595,54.446165],[-2.737627,54.446234],[-2.738935,54.447342],[-2.741112,54.447755],[-2.74475,54.446827],[-2.747615,54.44708],[-2.748702,54.448958],[-2.752115,54.450074],[-2.771624,54.463229],[-2.776992,54.459873],[-2.784291,54.464213],[-2.786694,54.464989],[-2.789177,54.464982],[-2.793672,54.467532],[-2.796242,54.469929],[-2.795421,54.475268],[-2.806877,54.48206],[-2.810425,54.478308],[-2.815925,54.474612],[-2.817724,54.47429],[-2.820445,54.477094],[-2.827614,54.479931],[-2.830439,54.479053],[-2.835191,54.476356],[-2.838496,54.476154],[-2.840271,54.476472],[-2.841652,54.477513],[-2.84455,54.478308],[-2.846702,54.478569],[-2.852982,54.478492],[-2.853528,54.481025],[-2.854907,54.482939],[-2.859715,54.485298],[-2.862347,54.485974],[-2.865543,54.488127],[-2.865783,54.489212],[-2.872837,54.482201],[-2.875618,54.481101],[-2.877533,54.481155],[-2.879006,54.482126],[-2.879022,54.482797],[-2.881477,54.484434],[-2.883665,54.484957],[-2.889033,54.484556],[-2.89189,54.483705],[-2.893973,54.483955],[-2.894841,54.484483],[-2.898424,54.483113],[-2.900099,54.483096],[-2.899599,54.48128],[-2.902927,54.481849],[-2.906279,54.481348],[-2.907454,54.480327],[-2.909141,54.476939],[-2.912758,54.471815],[-2.916796,54.470772],[-2.917632,54.469553],[-2.91905,54.465156],[-2.919819,54.464779],[-2.922848,54.465216],[-2.925143,54.466184],[-2.931455,54.469873],[-2.933274,54.469953],[-2.936814,54.468539],[-2.938988,54.47002],[-2.941221,54.470892],[-2.943166,54.473542],[-2.945391,54.475586],[-2.946432,54.47711],[-2.946053,54.47747],[-2.947479,54.479681],[-2.948134,54.479704],[-2.949413,54.481903],[-2.955348,54.484532],[-2.962528,54.482335],[-2.966361,54.482232],[-2.967404,54.486303],[-2.972594,54.488455],[-2.974854,54.490706],[-2.975702,54.492282],[-2.977056,54.493261],[-2.979541,54.494202],[-2.980198,54.49585],[-2.984139,54.496267],[-2.987744,54.496181],[-2.990017,54.495758],[-2.992659,54.49727],[-2.996013,54.49755],[-3.00481,54.496954],[-3.010834,54.494606],[-3.014142,54.494876],[-3.015011,54.49806],[-3.014835,54.499843]]]]},"properties":{"LAD22CD":"E07000031","LAD22NM":"South Lakeland","BNG_E":349265,"BNG_N":489555,"LONG":-2.78108,"LAT":54.29908,"GlobalID":"295587f4-cdc9-463c-a685-0284faa85d33"},"id":70}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.495366,53.133965],[-1.497582,53.133328],[-1.496045,53.131006],[-1.498851,53.131164],[-1.500472,53.129136],[-1.500145,53.128284],[-1.505495,53.128129],[-1.510031,53.127354],[-1.510494,53.127835],[-1.512971,53.126731],[-1.51437,53.126561],[-1.515967,53.125291],[-1.520191,53.124034],[-1.522011,53.12098],[-1.523511,53.12043],[-1.522888,53.11974],[-1.523282,53.118802],[-1.522742,53.117834],[-1.5208,53.116328],[-1.520602,53.114487],[-1.522511,53.113861],[-1.522436,53.113289],[-1.523693,53.111758],[-1.526208,53.110793],[-1.526682,53.102711],[-1.527617,53.101717],[-1.530224,53.101126],[-1.531105,53.100481],[-1.529173,53.099035],[-1.528684,53.09814],[-1.529902,53.096839],[-1.529825,53.095478],[-1.527317,53.094761],[-1.523407,53.095648],[-1.520496,53.096602],[-1.517455,53.096519],[-1.514409,53.095131],[-1.51377,53.093684],[-1.512059,53.093365],[-1.512371,53.092687],[-1.514761,53.091613],[-1.516182,53.090476],[-1.519345,53.08624],[-1.523014,53.086715],[-1.526705,53.087683],[-1.529998,53.087337],[-1.530729,53.087584],[-1.533603,53.086944],[-1.534824,53.08589],[-1.538297,53.084277],[-1.538124,53.083607],[-1.538915,53.081897],[-1.542288,53.080437],[-1.54348,53.080225],[-1.542579,53.078557],[-1.545324,53.078572],[-1.549713,53.076927],[-1.5475,53.073846],[-1.549067,53.071856],[-1.551567,53.070981],[-1.553176,53.069444],[-1.555986,53.070004],[-1.558488,53.069497],[-1.560846,53.06837],[-1.563045,53.065941],[-1.564651,53.065635],[-1.569918,53.062369],[-1.572576,53.061341],[-1.575537,53.061028],[-1.576541,53.060049],[-1.57829,53.060132],[-1.578921,53.059577],[-1.578291,53.058029],[-1.58077,53.05787],[-1.581784,53.058174],[-1.583157,53.059935],[-1.585733,53.059524],[-1.588166,53.058437],[-1.588399,53.05739],[-1.591439,53.054734],[-1.592847,53.050831],[-1.593762,53.05011],[-1.59329,53.048594],[-1.591081,53.047271],[-1.586263,53.045559],[-1.584919,53.044467],[-1.583718,53.044318],[-1.580973,53.042297],[-1.582764,53.041072],[-1.584103,53.040651],[-1.585919,53.039303],[-1.589212,53.037811],[-1.59001,53.036533],[-1.592723,53.036223],[-1.59367,53.035109],[-1.593374,53.034401],[-1.59667,53.032781],[-1.597237,53.031701],[-1.598603,53.030612],[-1.596456,53.028814],[-1.596249,53.027789],[-1.594305,53.026979],[-1.593845,53.026148],[-1.590746,53.025404],[-1.590434,53.024895],[-1.587176,53.023503],[-1.585358,53.023256],[-1.587068,53.021183],[-1.584883,53.020389],[-1.581916,53.021626],[-1.577339,53.022296],[-1.57856,53.023569],[-1.574867,53.024343],[-1.574315,53.023732],[-1.57189,53.023837],[-1.570501,53.022609],[-1.567845,53.021457],[-1.571248,53.021018],[-1.572325,53.019588],[-1.576111,53.017685],[-1.57589,53.016335],[-1.574361,53.015259],[-1.566746,53.013697],[-1.566984,53.012906],[-1.569398,53.01247],[-1.571275,53.013611],[-1.578755,53.014687],[-1.578228,53.011816],[-1.579733,53.011101],[-1.57929,53.008984],[-1.577382,53.008107],[-1.576926,53.005473],[-1.57528,53.004641],[-1.576799,53.002063],[-1.580381,53.001747],[-1.582329,53.000499],[-1.585717,53.000605],[-1.58895,53.001162],[-1.591968,53.001073],[-1.595097,52.999693],[-1.599266,52.998424],[-1.600104,52.997356],[-1.599601,52.99557],[-1.601829,52.988299],[-1.601263,52.984312],[-1.598656,52.983399],[-1.597335,52.982566],[-1.595038,52.983022],[-1.593924,52.982442],[-1.592788,52.982791],[-1.589156,52.981472],[-1.58745,52.981514],[-1.584721,52.979835],[-1.58291,52.979745],[-1.57901,52.977629],[-1.577949,52.977595],[-1.576579,52.975697],[-1.57434,52.97514],[-1.571437,52.973995],[-1.573551,52.969881],[-1.572186,52.969233],[-1.571897,52.967557],[-1.573375,52.966434],[-1.576468,52.966232],[-1.57773,52.96534],[-1.577606,52.963742],[-1.580768,52.963068],[-1.580646,52.961842],[-1.58123,52.961068],[-1.583102,52.962357],[-1.584688,52.962274],[-1.585608,52.961034],[-1.588746,52.962051],[-1.596301,52.962064],[-1.599394,52.962588],[-1.605028,52.958185],[-1.606558,52.957182],[-1.608083,52.955131],[-1.604822,52.953792],[-1.603837,52.952752],[-1.602959,52.950861],[-1.60325,52.949296],[-1.604857,52.948696],[-1.605336,52.9479],[-1.607137,52.947172],[-1.6058,52.946393],[-1.60656,52.945659],[-1.608304,52.945048],[-1.60732,52.944349],[-1.610095,52.942609],[-1.608833,52.94187],[-1.610054,52.940855],[-1.607252,52.939743],[-1.60289,52.936701],[-1.601647,52.937772],[-1.597865,52.937775],[-1.596347,52.937337],[-1.594239,52.93761],[-1.58861,52.935027],[-1.585352,52.9358],[-1.584486,52.936499],[-1.582932,52.936711],[-1.579798,52.935961],[-1.578064,52.935002],[-1.574267,52.935899],[-1.572061,52.935638],[-1.570102,52.935795],[-1.567165,52.933069],[-1.563487,52.93398],[-1.562071,52.933918],[-1.558562,52.932996],[-1.554601,52.930473],[-1.551096,52.928924],[-1.549463,52.928582],[-1.549401,52.927927],[-1.54734,52.926691],[-1.545728,52.926637],[-1.544069,52.924208],[-1.539645,52.924449],[-1.537798,52.924905],[-1.527007,52.932417],[-1.525458,52.932993],[-1.521262,52.932385],[-1.519874,52.933296],[-1.511885,52.935239],[-1.510973,52.938148],[-1.508029,52.937452],[-1.506606,52.939865],[-1.507816,52.940919],[-1.508065,52.942461],[-1.50777,52.943727],[-1.50915,52.94571],[-1.51067,52.946334],[-1.507921,52.946977],[-1.508334,52.947818],[-1.505904,52.948327],[-1.507604,52.951282],[-1.507644,52.954331],[-1.506609,52.954205],[-1.503427,52.955638],[-1.497801,52.956005],[-1.497976,52.956832],[-1.496866,52.958586],[-1.495314,52.960075],[-1.494412,52.960179],[-1.496432,52.963223],[-1.4954,52.965036],[-1.495406,52.965879],[-1.492266,52.966378],[-1.490691,52.966194],[-1.485185,52.966231],[-1.483622,52.967273],[-1.481158,52.968154],[-1.478493,52.964643],[-1.476666,52.964338],[-1.474631,52.965928],[-1.47508,52.966985],[-1.474849,52.968433],[-1.471532,52.96973],[-1.47058,52.971584],[-1.473303,52.975677],[-1.476557,52.977185],[-1.478405,52.978769],[-1.479552,52.980553],[-1.479826,52.981987],[-1.478735,52.982552],[-1.473846,52.981741],[-1.469002,52.982534],[-1.463421,52.982889],[-1.460201,52.98388],[-1.457865,52.982446],[-1.455942,52.982603],[-1.453675,52.980943],[-1.451213,52.982132],[-1.44957,52.980742],[-1.444673,52.978849],[-1.43198,52.979277],[-1.429942,52.980108],[-1.424348,52.981397],[-1.420497,52.981051],[-1.418585,52.980106],[-1.416556,52.980521],[-1.414863,52.980482],[-1.409787,52.9796],[-1.409302,52.977015],[-1.402699,52.979571],[-1.395465,52.980767],[-1.394581,52.980612],[-1.393669,52.981706],[-1.386397,52.981654],[-1.385414,52.982297],[-1.384165,52.981595],[-1.385898,52.980194],[-1.38598,52.979134],[-1.378314,52.976571],[-1.375219,52.97423],[-1.371031,52.973087],[-1.370124,52.973653],[-1.369318,52.975888],[-1.367176,52.977324],[-1.361991,52.976714],[-1.358488,52.977707],[-1.355401,52.978014],[-1.351977,52.977862],[-1.350315,52.97819],[-1.347675,52.977973],[-1.342326,52.978893],[-1.339946,52.978222],[-1.337181,52.978508],[-1.336207,52.977949],[-1.333802,52.978349],[-1.332792,52.978143],[-1.330414,52.980896],[-1.328358,52.981622],[-1.328337,52.98394],[-1.329505,52.98545],[-1.331473,52.98699],[-1.328044,52.98736],[-1.326197,52.988624],[-1.323833,52.988308],[-1.324548,52.989557],[-1.323108,52.989832],[-1.322052,52.989344],[-1.322742,52.992107],[-1.324193,52.993707],[-1.322357,52.993958],[-1.318253,52.99676],[-1.316866,52.999237],[-1.313963,53.00132],[-1.309833,53.002037],[-1.307444,53.003655],[-1.31002,53.003401],[-1.312317,53.004597],[-1.313368,53.004573],[-1.313493,53.006616],[-1.314561,53.007221],[-1.315541,53.008483],[-1.319191,53.010216],[-1.319603,53.011769],[-1.318274,53.013797],[-1.320188,53.015511],[-1.318578,53.016148],[-1.321894,53.019972],[-1.32446,53.025873],[-1.325885,53.027384],[-1.327787,53.028407],[-1.329179,53.030748],[-1.33181,53.030922],[-1.331268,53.031825],[-1.333203,53.035413],[-1.332639,53.036391],[-1.332556,53.038227],[-1.33319,53.03969],[-1.334617,53.040631],[-1.334948,53.041702],[-1.333606,53.041734],[-1.333817,53.04294],[-1.333043,53.043397],[-1.332962,53.044589],[-1.334637,53.047295],[-1.333238,53.048169],[-1.334438,53.050244],[-1.335773,53.050743],[-1.336393,53.052173],[-1.335869,53.052966],[-1.337395,53.054719],[-1.337514,53.055787],[-1.340236,53.05968],[-1.341926,53.060513],[-1.34459,53.063282],[-1.344428,53.065543],[-1.343454,53.066846],[-1.344064,53.067795],[-1.343835,53.06873],[-1.342192,53.070963],[-1.338325,53.072709],[-1.335757,53.074586],[-1.33659,53.075687],[-1.335641,53.076263],[-1.335797,53.077175],[-1.334717,53.077572],[-1.334087,53.078947],[-1.333127,53.079317],[-1.332719,53.080335],[-1.331636,53.080988],[-1.339814,53.084197],[-1.341729,53.085668],[-1.343667,53.086583],[-1.344414,53.086204],[-1.350865,53.086572],[-1.352793,53.086147],[-1.357048,53.08835],[-1.359001,53.089867],[-1.360743,53.090402],[-1.361386,53.091836],[-1.362254,53.091806],[-1.365007,53.093259],[-1.364004,53.094529],[-1.364048,53.09592],[-1.365972,53.096674],[-1.366892,53.097704],[-1.369588,53.099039],[-1.368909,53.100083],[-1.370297,53.102433],[-1.372837,53.103777],[-1.372804,53.107167],[-1.37365,53.107856],[-1.377032,53.108668],[-1.378974,53.108822],[-1.384021,53.106982],[-1.38904,53.106432],[-1.391199,53.105227],[-1.392723,53.104883],[-1.397462,53.105334],[-1.400525,53.10622],[-1.402896,53.107308],[-1.407003,53.106893],[-1.407916,53.10746],[-1.410032,53.107402],[-1.409859,53.106381],[-1.413919,53.105465],[-1.417249,53.105653],[-1.419663,53.106565],[-1.420319,53.105512],[-1.422298,53.104565],[-1.423734,53.10336],[-1.425441,53.103968],[-1.427366,53.105469],[-1.428913,53.105713],[-1.430144,53.105325],[-1.432545,53.105897],[-1.434393,53.105703],[-1.437253,53.104941],[-1.44024,53.104608],[-1.443407,53.104504],[-1.448203,53.103667],[-1.450302,53.104474],[-1.450474,53.105537],[-1.45235,53.106459],[-1.455546,53.109616],[-1.457281,53.108837],[-1.460005,53.108311],[-1.461514,53.110171],[-1.465369,53.110801],[-1.464692,53.113978],[-1.463015,53.1142],[-1.463563,53.115007],[-1.467133,53.116033],[-1.469819,53.119744],[-1.471175,53.119776],[-1.474075,53.120701],[-1.480299,53.121487],[-1.486843,53.12293],[-1.488999,53.129999],[-1.490535,53.131557],[-1.493616,53.131253],[-1.495366,53.133965]]]},"properties":{"LAD22CD":"E07000032","LAD22NM":"Amber Valley","BNG_E":436166,"BNG_N":348084,"LONG":-1.46219,"LAT":53.02884,"GlobalID":"157f6817-ccb2-4e9a-af7a-8e923f2a8fae"},"id":71}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.282012,53.309463],[-1.284483,53.309657],[-1.28661,53.309015],[-1.291591,53.309224],[-1.303058,53.312876],[-1.304639,53.312949],[-1.307476,53.312521],[-1.309168,53.311868],[-1.312377,53.311371],[-1.313584,53.310913],[-1.318718,53.310399],[-1.321928,53.309039],[-1.321804,53.30854],[-1.318946,53.307055],[-1.317825,53.30581],[-1.316264,53.305117],[-1.316087,53.301805],[-1.313572,53.299719],[-1.310674,53.297948],[-1.313358,53.296767],[-1.320027,53.295165],[-1.324142,53.295109],[-1.324085,53.294094],[-1.322559,53.291591],[-1.318997,53.289159],[-1.321924,53.288929],[-1.320738,53.286975],[-1.318696,53.285506],[-1.316702,53.281657],[-1.309054,53.27539],[-1.307179,53.275417],[-1.305932,53.273627],[-1.305979,53.272621],[-1.304942,53.270291],[-1.303476,53.269488],[-1.301617,53.26698],[-1.302094,53.265346],[-1.301302,53.263892],[-1.302621,53.263266],[-1.309379,53.263442],[-1.316672,53.262506],[-1.321605,53.261026],[-1.322578,53.259787],[-1.323942,53.259157],[-1.331263,53.257232],[-1.326163,53.254406],[-1.323852,53.252629],[-1.322644,53.241222],[-1.319202,53.239582],[-1.31653,53.23763],[-1.311519,53.232377],[-1.311338,53.231716],[-1.313454,53.22923],[-1.314084,53.225899],[-1.313733,53.224992],[-1.314747,53.223909],[-1.313035,53.223827],[-1.312576,53.22164],[-1.313698,53.220526],[-1.314311,53.21919],[-1.311135,53.217287],[-1.310614,53.215936],[-1.312546,53.212283],[-1.311531,53.21201],[-1.310998,53.210099],[-1.312433,53.208696],[-1.313743,53.208473],[-1.314206,53.20578],[-1.313702,53.204904],[-1.31389,53.202586],[-1.311606,53.198868],[-1.314924,53.194782],[-1.315405,53.193341],[-1.316346,53.193111],[-1.317644,53.191199],[-1.3185,53.185923],[-1.321703,53.185578],[-1.327877,53.187965],[-1.329839,53.187725],[-1.330359,53.187204],[-1.334885,53.186986],[-1.335954,53.187457],[-1.338004,53.186862],[-1.344264,53.187973],[-1.345644,53.183438],[-1.351917,53.184448],[-1.352221,53.185506],[-1.353619,53.185359],[-1.354428,53.184417],[-1.356783,53.185475],[-1.361822,53.182641],[-1.363888,53.18234],[-1.364562,53.180555],[-1.367906,53.1801],[-1.369411,53.180831],[-1.37117,53.180653],[-1.373171,53.178664],[-1.374118,53.176851],[-1.376686,53.175058],[-1.377442,53.173735],[-1.376001,53.172543],[-1.373783,53.172376],[-1.372202,53.171478],[-1.366755,53.171036],[-1.36477,53.16808],[-1.364747,53.16735],[-1.362442,53.16641],[-1.360064,53.166428],[-1.358757,53.165695],[-1.358287,53.164181],[-1.356844,53.163552],[-1.354596,53.160647],[-1.35294,53.159213],[-1.352935,53.158127],[-1.353699,53.157332],[-1.353259,53.156004],[-1.35475,53.155357],[-1.355915,53.153833],[-1.355029,53.151646],[-1.357477,53.150499],[-1.360653,53.147666],[-1.362527,53.147],[-1.36253,53.143263],[-1.366263,53.142382],[-1.366626,53.141757],[-1.370995,53.139473],[-1.374193,53.139148],[-1.374703,53.138412],[-1.377195,53.13697],[-1.377725,53.135834],[-1.375892,53.134938],[-1.375536,53.134057],[-1.374197,53.133703],[-1.372776,53.131647],[-1.373388,53.130955],[-1.372716,53.129995],[-1.373387,53.129455],[-1.372701,53.128587],[-1.37488,53.12637],[-1.373297,53.125813],[-1.374812,53.124787],[-1.375138,53.123565],[-1.374881,53.121701],[-1.376539,53.120079],[-1.377311,53.118548],[-1.371708,53.110957],[-1.370908,53.109092],[-1.372149,53.108253],[-1.37365,53.107856],[-1.372804,53.107167],[-1.372837,53.103777],[-1.370297,53.102433],[-1.368909,53.100083],[-1.369588,53.099039],[-1.366892,53.097704],[-1.365972,53.096674],[-1.364048,53.09592],[-1.364004,53.094529],[-1.365007,53.093259],[-1.362254,53.091806],[-1.361386,53.091836],[-1.360743,53.090402],[-1.359001,53.089867],[-1.357048,53.08835],[-1.352793,53.086147],[-1.350865,53.086572],[-1.344414,53.086204],[-1.343667,53.086583],[-1.341729,53.085668],[-1.339814,53.084197],[-1.331636,53.080988],[-1.329679,53.082386],[-1.326139,53.083877],[-1.322307,53.084905],[-1.307773,53.086319],[-1.305884,53.086838],[-1.302561,53.088535],[-1.305359,53.090774],[-1.306102,53.091922],[-1.309131,53.094499],[-1.307087,53.095418],[-1.308491,53.095843],[-1.309252,53.09677],[-1.307395,53.099464],[-1.305992,53.100339],[-1.304024,53.100405],[-1.300729,53.10162],[-1.30142,53.104167],[-1.303609,53.103195],[-1.308801,53.107724],[-1.311833,53.108706],[-1.309689,53.111709],[-1.309674,53.113154],[-1.312293,53.11632],[-1.311057,53.116888],[-1.310994,53.118469],[-1.314248,53.124914],[-1.314812,53.125681],[-1.317857,53.127005],[-1.318712,53.128172],[-1.320157,53.128408],[-1.32178,53.13065],[-1.320181,53.132164],[-1.319283,53.13394],[-1.317693,53.135071],[-1.31498,53.135814],[-1.318815,53.139719],[-1.32026,53.142545],[-1.321671,53.144271],[-1.322301,53.148197],[-1.322236,53.151008],[-1.323155,53.153886],[-1.324595,53.154849],[-1.325584,53.156475],[-1.325473,53.157885],[-1.323457,53.159536],[-1.323447,53.162342],[-1.319081,53.163189],[-1.31655,53.165362],[-1.314393,53.164727],[-1.31257,53.163482],[-1.309631,53.163183],[-1.308063,53.163395],[-1.304527,53.165464],[-1.302626,53.163867],[-1.300712,53.164215],[-1.300836,53.16581],[-1.300263,53.168104],[-1.298921,53.167802],[-1.29752,53.168864],[-1.296648,53.170781],[-1.295962,53.171225],[-1.288758,53.171455],[-1.28791,53.170606],[-1.285398,53.169667],[-1.284698,53.168751],[-1.28196,53.167421],[-1.276573,53.167357],[-1.274913,53.168154],[-1.272467,53.167872],[-1.268695,53.167919],[-1.265777,53.167487],[-1.26513,53.166956],[-1.262346,53.166633],[-1.260343,53.16535],[-1.25993,53.164481],[-1.254678,53.164773],[-1.253396,53.165887],[-1.252904,53.166936],[-1.251692,53.167266],[-1.249848,53.168553],[-1.249071,53.169964],[-1.24949,53.170902],[-1.248235,53.171651],[-1.246309,53.172119],[-1.244607,53.173311],[-1.24527,53.175214],[-1.243671,53.176298],[-1.243333,53.177018],[-1.241689,53.178149],[-1.238766,53.17908],[-1.237419,53.179173],[-1.236203,53.178479],[-1.231651,53.178147],[-1.229125,53.178852],[-1.226734,53.178686],[-1.222595,53.18016],[-1.220948,53.179572],[-1.220465,53.178786],[-1.218398,53.178929],[-1.215661,53.180907],[-1.209401,53.181121],[-1.204292,53.182358],[-1.201192,53.182429],[-1.199271,53.182776],[-1.199299,53.183372],[-1.196936,53.184818],[-1.195305,53.187041],[-1.195055,53.189359],[-1.195817,53.192445],[-1.196737,53.193563],[-1.197316,53.19527],[-1.201535,53.198858],[-1.201438,53.203173],[-1.20097,53.20396],[-1.202842,53.208369],[-1.204738,53.208282],[-1.205543,53.209454],[-1.2056,53.210522],[-1.2082,53.211715],[-1.209027,53.212591],[-1.211044,53.215814],[-1.209425,53.217697],[-1.208992,53.224412],[-1.206207,53.227198],[-1.205762,53.230545],[-1.203265,53.231089],[-1.203483,53.233048],[-1.201997,53.235555],[-1.205091,53.236615],[-1.205785,53.237816],[-1.205187,53.238691],[-1.207157,53.239229],[-1.20873,53.240902],[-1.209973,53.240986],[-1.21246,53.245586],[-1.213027,53.247672],[-1.209393,53.2503],[-1.210349,53.251233],[-1.207836,53.253225],[-1.207054,53.25518],[-1.204504,53.257183],[-1.20269,53.257283],[-1.203754,53.258943],[-1.202617,53.261119],[-1.201114,53.261761],[-1.198193,53.262324],[-1.196087,53.263412],[-1.193878,53.263252],[-1.191352,53.264149],[-1.187747,53.264556],[-1.185342,53.264383],[-1.18298,53.264998],[-1.17918,53.264341],[-1.177285,53.265193],[-1.174797,53.265113],[-1.175553,53.266542],[-1.180205,53.26843],[-1.181542,53.270032],[-1.178246,53.273214],[-1.177338,53.273679],[-1.173299,53.274096],[-1.170719,53.276161],[-1.168335,53.276689],[-1.166488,53.277655],[-1.169278,53.278561],[-1.171017,53.279834],[-1.172079,53.280069],[-1.173991,53.281236],[-1.175763,53.28165],[-1.176004,53.282722],[-1.177532,53.284291],[-1.178304,53.286257],[-1.180117,53.287135],[-1.178699,53.288877],[-1.176397,53.28965],[-1.171563,53.294638],[-1.173818,53.296192],[-1.173778,53.297488],[-1.174853,53.299115],[-1.174175,53.302534],[-1.17572,53.303302],[-1.176676,53.30518],[-1.180957,53.306249],[-1.182141,53.305354],[-1.185552,53.304656],[-1.18722,53.303979],[-1.190633,53.306574],[-1.193675,53.308268],[-1.194959,53.308594],[-1.198286,53.310837],[-1.199741,53.311439],[-1.203027,53.307227],[-1.202108,53.306057],[-1.203239,53.304223],[-1.205708,53.30429],[-1.209808,53.30532],[-1.212501,53.305451],[-1.218737,53.304053],[-1.219878,53.304078],[-1.221819,53.305196],[-1.230441,53.308558],[-1.232305,53.308277],[-1.237197,53.306114],[-1.238735,53.304452],[-1.241549,53.302467],[-1.24333,53.301649],[-1.244944,53.301693],[-1.246166,53.302416],[-1.247882,53.302689],[-1.251033,53.301891],[-1.254294,53.301755],[-1.255016,53.30239],[-1.258176,53.303413],[-1.261314,53.303942],[-1.264148,53.305399],[-1.267813,53.305818],[-1.269448,53.307858],[-1.26964,53.309096],[-1.271549,53.309311],[-1.27411,53.310525],[-1.27643,53.309213],[-1.282012,53.309463]]]},"properties":{"LAD22CD":"E07000033","LAD22NM":"Bolsover","BNG_E":448666,"BNG_N":371548,"LONG":-1.27228,"LAT":53.23875,"GlobalID":"b2fdbe4a-deb6-4fc1-9b31-2506de92d6ad"},"id":72}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.316702,53.281657],[-1.322588,53.281376],[-1.333634,53.289758],[-1.337195,53.288366],[-1.337272,53.289572],[-1.33906,53.289862],[-1.339217,53.288761],[-1.341092,53.287493],[-1.342784,53.285661],[-1.348268,53.285658],[-1.34916,53.286594],[-1.35317,53.286499],[-1.358957,53.287749],[-1.360789,53.288679],[-1.366893,53.289184],[-1.368505,53.292069],[-1.36801,53.292985],[-1.369852,53.293697],[-1.371358,53.295641],[-1.371523,53.297316],[-1.374168,53.298427],[-1.377054,53.299044],[-1.377153,53.296849],[-1.380868,53.296606],[-1.38073,53.295494],[-1.385989,53.294895],[-1.386672,53.293753],[-1.386299,53.292285],[-1.387343,53.289878],[-1.38656,53.286946],[-1.387163,53.286105],[-1.391419,53.286472],[-1.391762,53.287139],[-1.396744,53.284562],[-1.396316,53.283423],[-1.399496,53.282459],[-1.399278,53.281972],[-1.401737,53.281574],[-1.402999,53.283351],[-1.407946,53.286274],[-1.40981,53.28674],[-1.414639,53.286816],[-1.415492,53.287635],[-1.417971,53.286272],[-1.418915,53.284895],[-1.421488,53.283425],[-1.423126,53.283461],[-1.423236,53.282715],[-1.43219,53.281874],[-1.436082,53.280854],[-1.438662,53.280625],[-1.439036,53.28021],[-1.441926,53.28207],[-1.443941,53.282704],[-1.447116,53.282854],[-1.447906,53.28315],[-1.451594,53.281931],[-1.454452,53.281379],[-1.455254,53.28176],[-1.457069,53.283745],[-1.458639,53.282972],[-1.459061,53.281111],[-1.460831,53.278054],[-1.464401,53.278456],[-1.465805,53.278076],[-1.464913,53.277205],[-1.465246,53.276001],[-1.464902,53.274938],[-1.466944,53.274635],[-1.466873,53.273931],[-1.465077,53.272225],[-1.465417,53.27031],[-1.462728,53.270351],[-1.4642,53.267999],[-1.466369,53.267927],[-1.467872,53.267491],[-1.470105,53.267629],[-1.472252,53.266389],[-1.47329,53.26618],[-1.479046,53.263511],[-1.478663,53.262818],[-1.475396,53.259494],[-1.473214,53.260059],[-1.471134,53.259413],[-1.472512,53.25829],[-1.470684,53.257272],[-1.472208,53.256534],[-1.473517,53.257238],[-1.476272,53.254704],[-1.475105,53.253437],[-1.478794,53.252294],[-1.478162,53.25099],[-1.475906,53.250811],[-1.473839,53.249817],[-1.474754,53.248753],[-1.479213,53.248238],[-1.480357,53.248714],[-1.481313,53.247859],[-1.481708,53.246484],[-1.480899,53.245127],[-1.479088,53.243515],[-1.478969,53.242502],[-1.477539,53.239714],[-1.475094,53.239818],[-1.471863,53.239493],[-1.471493,53.238868],[-1.471363,53.236183],[-1.471864,53.236112],[-1.471875,53.233415],[-1.478054,53.233736],[-1.480695,53.23323],[-1.483163,53.233314],[-1.483975,53.232483],[-1.482557,53.231019],[-1.484168,53.230711],[-1.484158,53.228976],[-1.483067,53.22899],[-1.482487,53.227007],[-1.481697,53.226098],[-1.477343,53.226275],[-1.475843,53.225084],[-1.478409,53.223722],[-1.478396,53.222321],[-1.475462,53.221635],[-1.470468,53.221357],[-1.468833,53.220646],[-1.467599,53.219516],[-1.461676,53.221649],[-1.460171,53.220323],[-1.459116,53.22065],[-1.457376,53.219638],[-1.452429,53.220727],[-1.450223,53.220839],[-1.447527,53.221414],[-1.44527,53.220001],[-1.444172,53.220751],[-1.44298,53.219805],[-1.441205,53.220631],[-1.439294,53.218785],[-1.440715,53.217106],[-1.440001,53.213593],[-1.437268,53.213151],[-1.433451,53.213819],[-1.42928,53.215429],[-1.427504,53.215361],[-1.422687,53.214377],[-1.420843,53.212442],[-1.41529,53.214706],[-1.411689,53.215559],[-1.409888,53.215145],[-1.408355,53.215556],[-1.405121,53.214662],[-1.405349,53.214316],[-1.401405,53.213751],[-1.399602,53.21517],[-1.400044,53.217081],[-1.401559,53.217833],[-1.395585,53.222718],[-1.39852,53.225234],[-1.397087,53.225441],[-1.396419,53.227087],[-1.399264,53.230574],[-1.400529,53.231348],[-1.401093,53.233578],[-1.400798,53.234282],[-1.398903,53.233878],[-1.393618,53.23401],[-1.394052,53.234986],[-1.391636,53.235613],[-1.391579,53.237194],[-1.390081,53.237881],[-1.389532,53.238869],[-1.387701,53.239458],[-1.383259,53.242021],[-1.382969,53.242655],[-1.380341,53.243796],[-1.377209,53.241161],[-1.37504,53.240875],[-1.371486,53.241207],[-1.370453,53.241933],[-1.366462,53.242731],[-1.3632,53.243907],[-1.363023,53.244318],[-1.359992,53.244684],[-1.356763,53.245741],[-1.353169,53.245848],[-1.350863,53.246389],[-1.349639,53.244836],[-1.349424,53.242924],[-1.34786,53.241799],[-1.347065,53.23954],[-1.343325,53.240422],[-1.33959,53.240081],[-1.338732,53.240464],[-1.338828,53.241505],[-1.336451,53.241858],[-1.33531,53.241291],[-1.33197,53.241591],[-1.332123,53.236696],[-1.326355,53.236099],[-1.319202,53.239582],[-1.322644,53.241222],[-1.323852,53.252629],[-1.326163,53.254406],[-1.331263,53.257232],[-1.323942,53.259157],[-1.322578,53.259787],[-1.321605,53.261026],[-1.316672,53.262506],[-1.309379,53.263442],[-1.302621,53.263266],[-1.301302,53.263892],[-1.302094,53.265346],[-1.301617,53.26698],[-1.303476,53.269488],[-1.304942,53.270291],[-1.305979,53.272621],[-1.305932,53.273627],[-1.307179,53.275417],[-1.309054,53.27539],[-1.316702,53.281657]]]},"properties":{"LAD22CD":"E07000034","LAD22NM":"Chesterfield","BNG_E":440049,"BNG_N":373359,"LONG":-1.40115,"LAT":53.25575,"GlobalID":"7e80c5e1-f4d9-45eb-9b86-1538689bb7e1"},"id":73}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.599093,53.311318],[-1.599198,53.314615],[-1.600674,53.315673],[-1.600606,53.316968],[-1.601525,53.318205],[-1.603888,53.319136],[-1.609202,53.322664],[-1.619434,53.318257],[-1.625494,53.316424],[-1.628232,53.316399],[-1.632727,53.320839],[-1.626839,53.325369],[-1.627919,53.325848],[-1.627266,53.328541],[-1.62643,53.329221],[-1.623575,53.330465],[-1.623704,53.331167],[-1.622086,53.331677],[-1.622113,53.333674],[-1.619512,53.335381],[-1.616798,53.336385],[-1.615736,53.33782],[-1.614372,53.338835],[-1.612141,53.341619],[-1.612303,53.343219],[-1.608812,53.343303],[-1.607644,53.342708],[-1.604248,53.342415],[-1.601576,53.342609],[-1.591465,53.344948],[-1.590548,53.345921],[-1.615628,53.350849],[-1.625604,53.352062],[-1.628349,53.353799],[-1.630592,53.356161],[-1.657877,53.364175],[-1.663951,53.366893],[-1.663913,53.369331],[-1.662708,53.373163],[-1.663292,53.374248],[-1.661777,53.376293],[-1.656022,53.381709],[-1.653531,53.384852],[-1.653818,53.391911],[-1.66186,53.391442],[-1.661807,53.389646],[-1.663757,53.380861],[-1.673312,53.369393],[-1.670158,53.365079],[-1.670874,53.357984],[-1.671929,53.354538],[-1.673169,53.352978],[-1.671627,53.351071],[-1.67107,53.349602],[-1.672281,53.348646],[-1.675103,53.344542],[-1.676998,53.342776],[-1.677055,53.342259],[-1.683186,53.337579],[-1.685618,53.336275],[-1.685536,53.335582],[-1.691338,53.336716],[-1.69526,53.335685],[-1.696867,53.334805],[-1.699023,53.332524],[-1.69955,53.331435],[-1.69912,53.330264],[-1.700449,53.323625],[-1.706244,53.325117],[-1.711692,53.32454],[-1.712559,53.322429],[-1.720466,53.31923],[-1.725483,53.318954],[-1.727588,53.319144],[-1.727482,53.326772],[-1.727278,53.32894],[-1.72498,53.33151],[-1.72927,53.333244],[-1.73529,53.334766],[-1.733168,53.335414],[-1.732338,53.336386],[-1.730641,53.337019],[-1.730206,53.33863],[-1.737186,53.336801],[-1.741107,53.336818],[-1.74361,53.336109],[-1.74569,53.336067],[-1.749353,53.334976],[-1.751216,53.335278],[-1.753786,53.337],[-1.755756,53.33604],[-1.757223,53.337149],[-1.7582,53.337231],[-1.759357,53.338227],[-1.761766,53.337951],[-1.765953,53.336279],[-1.766188,53.335358],[-1.769009,53.333052],[-1.781366,53.3271],[-1.784068,53.325433],[-1.787959,53.324013],[-1.79774,53.319245],[-1.802228,53.318302],[-1.806105,53.31703],[-1.808178,53.314266],[-1.811147,53.310938],[-1.812996,53.309807],[-1.813804,53.307973],[-1.816483,53.305849],[-1.822626,53.302812],[-1.822685,53.300883],[-1.824661,53.298868],[-1.822427,53.293966],[-1.823888,53.292234],[-1.823354,53.291289],[-1.821417,53.289757],[-1.816858,53.287023],[-1.817486,53.284797],[-1.817565,53.282644],[-1.816872,53.282012],[-1.812551,53.280328],[-1.811665,53.279197],[-1.811571,53.277767],[-1.809771,53.275362],[-1.804594,53.274152],[-1.803517,53.273219],[-1.801982,53.272909],[-1.799605,53.270426],[-1.800098,53.269442],[-1.798891,53.264589],[-1.796841,53.262786],[-1.798527,53.261505],[-1.798315,53.260313],[-1.795408,53.258754],[-1.794784,53.258874],[-1.791844,53.258062],[-1.790287,53.256412],[-1.794127,53.255153],[-1.795091,53.255108],[-1.798423,53.256055],[-1.802584,53.255764],[-1.805437,53.256232],[-1.807697,53.257974],[-1.81615,53.258098],[-1.817523,53.257066],[-1.816913,53.255673],[-1.813753,53.255193],[-1.813536,53.254614],[-1.816411,53.253867],[-1.820648,53.251994],[-1.825913,53.252073],[-1.830211,53.251198],[-1.83319,53.251497],[-1.834587,53.250129],[-1.837577,53.249212],[-1.840709,53.249645],[-1.841863,53.250485],[-1.844441,53.250384],[-1.846877,53.248987],[-1.846883,53.248053],[-1.844672,53.24695],[-1.844722,53.245748],[-1.848137,53.244765],[-1.851606,53.244449],[-1.853879,53.243279],[-1.854735,53.240801],[-1.85665,53.23892],[-1.85643,53.237547],[-1.858265,53.236277],[-1.857479,53.234318],[-1.858239,53.233231],[-1.861888,53.231087],[-1.866968,53.229953],[-1.869421,53.228675],[-1.874266,53.226847],[-1.871209,53.224714],[-1.869596,53.224235],[-1.865603,53.223897],[-1.860752,53.222319],[-1.853243,53.216578],[-1.850809,53.217474],[-1.844098,53.215099],[-1.836317,53.212806],[-1.831253,53.210649],[-1.831955,53.205693],[-1.827945,53.205524],[-1.827664,53.204031],[-1.831506,53.204289],[-1.831605,53.197588],[-1.842424,53.194762],[-1.841345,53.197161],[-1.847745,53.199089],[-1.853338,53.202708],[-1.855604,53.202971],[-1.862835,53.205299],[-1.872708,53.215658],[-1.874379,53.211057],[-1.873189,53.207273],[-1.876433,53.207654],[-1.878474,53.20696],[-1.877773,53.206323],[-1.878031,53.205219],[-1.876615,53.203397],[-1.881488,53.203611],[-1.882646,53.203305],[-1.884386,53.204938],[-1.882376,53.206265],[-1.881627,53.207446],[-1.883572,53.212272],[-1.885871,53.215711],[-1.885868,53.216907],[-1.888063,53.218281],[-1.892387,53.219192],[-1.895403,53.218603],[-1.893751,53.217837],[-1.897209,53.215926],[-1.894854,53.211986],[-1.897598,53.210453],[-1.90008,53.211859],[-1.900831,53.213616],[-1.907392,53.219138],[-1.90799,53.22026],[-1.91056,53.221035],[-1.912395,53.220635],[-1.917331,53.218379],[-1.917453,53.218035],[-1.912785,53.217208],[-1.910572,53.216449],[-1.908984,53.215281],[-1.911766,53.213242],[-1.911123,53.212132],[-1.908392,53.211732],[-1.905863,53.211747],[-1.900072,53.208364],[-1.90091,53.206671],[-1.900712,53.204627],[-1.902494,53.203955],[-1.901578,53.203139],[-1.900196,53.20336],[-1.898208,53.201044],[-1.898633,53.199957],[-1.894008,53.199619],[-1.893079,53.19906],[-1.889329,53.199087],[-1.888426,53.198404],[-1.887066,53.198329],[-1.884618,53.196728],[-1.882504,53.196587],[-1.879052,53.195983],[-1.876368,53.194953],[-1.875882,53.195508],[-1.871726,53.19387],[-1.87186,53.192906],[-1.87011,53.19148],[-1.86749,53.190912],[-1.866243,53.189672],[-1.865341,53.189858],[-1.862924,53.188499],[-1.860932,53.188502],[-1.859333,53.187675],[-1.859114,53.186603],[-1.855967,53.185553],[-1.854395,53.184382],[-1.852471,53.183893],[-1.851748,53.182835],[-1.849687,53.182075],[-1.846236,53.179634],[-1.846159,53.178537],[-1.843061,53.178129],[-1.840803,53.176948],[-1.839296,53.176926],[-1.836412,53.175289],[-1.835949,53.174339],[-1.832014,53.172815],[-1.833012,53.170545],[-1.829022,53.166749],[-1.826986,53.166398],[-1.826439,53.165342],[-1.824836,53.164843],[-1.825203,53.163993],[-1.823737,53.163645],[-1.822149,53.1621],[-1.820133,53.161268],[-1.818155,53.159786],[-1.816074,53.158636],[-1.816431,53.157902],[-1.815053,53.156225],[-1.81538,53.155118],[-1.812575,53.154375],[-1.812025,53.152744],[-1.812812,53.151641],[-1.816622,53.149978],[-1.817022,53.14926],[-1.816802,53.146551],[-1.818114,53.145295],[-1.817627,53.143439],[-1.818476,53.142328],[-1.819655,53.142532],[-1.821213,53.141418],[-1.820641,53.140544],[-1.821906,53.139631],[-1.822158,53.138063],[-1.821034,53.13761],[-1.821877,53.136704],[-1.820055,53.134698],[-1.819801,53.133961],[-1.817315,53.133371],[-1.816233,53.134173],[-1.815264,53.133422],[-1.81333,53.13313],[-1.814102,53.131935],[-1.812535,53.130283],[-1.810883,53.130128],[-1.810252,53.128063],[-1.809341,53.126949],[-1.809917,53.125766],[-1.809651,53.1238],[-1.807855,53.122963],[-1.80574,53.122414],[-1.805478,53.121674],[-1.801876,53.118184],[-1.800934,53.115158],[-1.800112,53.114603],[-1.797808,53.114055],[-1.795361,53.112639],[-1.793788,53.110487],[-1.788029,53.109221],[-1.786246,53.108003],[-1.786074,53.106816],[-1.787989,53.105442],[-1.784518,53.103951],[-1.783545,53.101661],[-1.784491,53.101507],[-1.786367,53.099811],[-1.782524,53.096616],[-1.783035,53.09597],[-1.785488,53.095016],[-1.783207,53.093793],[-1.78356,53.092737],[-1.787437,53.091925],[-1.788615,53.091395],[-1.790789,53.091783],[-1.792857,53.091025],[-1.792878,53.089832],[-1.794239,53.088394],[-1.793129,53.086659],[-1.791128,53.086437],[-1.791083,53.085025],[-1.791983,53.0837],[-1.788605,53.080905],[-1.788585,53.079246],[-1.79025,53.079046],[-1.791356,53.0782],[-1.790842,53.076774],[-1.789752,53.076401],[-1.79005,53.07538],[-1.789157,53.074801],[-1.788808,53.073233],[-1.78752,53.072381],[-1.786004,53.070436],[-1.785675,53.068181],[-1.784223,53.06672],[-1.784231,53.065116],[-1.785643,53.063112],[-1.783059,53.06137],[-1.778106,53.060458],[-1.775653,53.059355],[-1.777014,53.058223],[-1.779301,53.057629],[-1.782164,53.05613],[-1.781901,53.055406],[-1.783204,53.054432],[-1.784145,53.054708],[-1.784212,53.051891],[-1.78336,53.050634],[-1.784696,53.049931],[-1.780787,53.047922],[-1.779969,53.047079],[-1.778981,53.044844],[-1.779656,53.043587],[-1.778734,53.043014],[-1.774435,53.043459],[-1.772295,53.044239],[-1.768194,53.044038],[-1.767444,53.043484],[-1.766001,53.041113],[-1.760053,53.038917],[-1.759038,53.037552],[-1.759364,53.034668],[-1.761544,53.033399],[-1.759679,53.032961],[-1.757013,53.031379],[-1.757415,53.030163],[-1.757188,53.028796],[-1.758985,53.026979],[-1.762712,53.025157],[-1.763731,53.021428],[-1.762944,53.020568],[-1.758312,53.018242],[-1.757719,53.017144],[-1.758968,53.014692],[-1.762023,53.015185],[-1.763556,53.011393],[-1.76419,53.010465],[-1.766067,53.009236],[-1.76624,53.006995],[-1.765709,53.004962],[-1.764515,53.004141],[-1.764101,53.002754],[-1.764424,53.001771],[-1.76265,53.000596],[-1.76257,52.999669],[-1.767815,52.999529],[-1.771049,52.995856],[-1.773907,52.996327],[-1.777621,52.996385],[-1.779132,52.995827],[-1.780442,52.99483],[-1.784453,52.994778],[-1.785996,52.993604],[-1.785109,52.99286],[-1.7863,52.992401],[-1.787174,52.993073],[-1.789353,52.99276],[-1.789866,52.991633],[-1.787653,52.991557],[-1.787119,52.990806],[-1.788146,52.990008],[-1.787522,52.989426],[-1.78996,52.988959],[-1.79163,52.98829],[-1.792209,52.98961],[-1.794977,52.987718],[-1.796779,52.985104],[-1.79824,52.985539],[-1.798831,52.986336],[-1.802687,52.985388],[-1.80471,52.985518],[-1.804694,52.984603],[-1.80262,52.983881],[-1.801558,52.983103],[-1.803224,52.981351],[-1.806877,52.980215],[-1.815286,52.979458],[-1.821231,52.978493],[-1.823523,52.978739],[-1.826112,52.977487],[-1.828376,52.975314],[-1.828368,52.973909],[-1.829628,52.973059],[-1.830186,52.971346],[-1.829454,52.968378],[-1.827555,52.966434],[-1.828223,52.965512],[-1.828342,52.963979],[-1.825736,52.96232],[-1.82648,52.960438],[-1.828474,52.960939],[-1.829163,52.959226],[-1.829153,52.957932],[-1.830554,52.95709],[-1.831418,52.955766],[-1.834477,52.954918],[-1.834179,52.953936],[-1.832283,52.952216],[-1.830701,52.951502],[-1.828856,52.948771],[-1.828756,52.947766],[-1.829697,52.946828],[-1.829933,52.945542],[-1.832461,52.945951],[-1.835583,52.945265],[-1.836466,52.943439],[-1.83534,52.942446],[-1.832834,52.943674],[-1.832336,52.943144],[-1.833095,52.94127],[-1.835521,52.940716],[-1.837973,52.94158],[-1.839459,52.94138],[-1.840286,52.939707],[-1.843037,52.939558],[-1.845189,52.937355],[-1.846536,52.936844],[-1.847082,52.935838],[-1.849279,52.935607],[-1.850591,52.934007],[-1.850432,52.932689],[-1.848878,52.93237],[-1.850064,52.931014],[-1.852041,52.931884],[-1.854077,52.930859],[-1.854112,52.929469],[-1.852709,52.92892],[-1.853285,52.927467],[-1.854561,52.927565],[-1.855705,52.926741],[-1.854632,52.925524],[-1.85468,52.924091],[-1.856395,52.923686],[-1.855729,52.922679],[-1.855597,52.920825],[-1.854569,52.919975],[-1.85173,52.920294],[-1.849944,52.921075],[-1.847508,52.920151],[-1.848191,52.918807],[-1.848162,52.917236],[-1.848932,52.916172],[-1.847168,52.91533],[-1.847817,52.914426],[-1.847963,52.912988],[-1.843576,52.913417],[-1.842608,52.912989],[-1.84231,52.911405],[-1.843671,52.910444],[-1.846628,52.910661],[-1.847579,52.909965],[-1.847605,52.909009],[-1.845388,52.908939],[-1.844093,52.907213],[-1.842603,52.906549],[-1.840985,52.905059],[-1.838287,52.905348],[-1.83615,52.904195],[-1.836349,52.902344],[-1.835169,52.901701],[-1.833387,52.902125],[-1.832512,52.899106],[-1.829999,52.896588],[-1.830623,52.895986],[-1.833124,52.896103],[-1.834249,52.895511],[-1.833986,52.89452],[-1.832641,52.893321],[-1.834021,52.892867],[-1.835211,52.891357],[-1.833155,52.890884],[-1.833005,52.89005],[-1.834087,52.88955],[-1.832132,52.888674],[-1.832955,52.887452],[-1.832717,52.88683],[-1.829852,52.887326],[-1.827541,52.886596],[-1.82835,52.884591],[-1.825863,52.884084],[-1.823555,52.886086],[-1.822024,52.886039],[-1.82177,52.885269],[-1.823623,52.88288],[-1.822844,52.882511],[-1.818483,52.882608],[-1.815811,52.882079],[-1.813537,52.882474],[-1.811981,52.881859],[-1.812307,52.880683],[-1.811053,52.880653],[-1.804158,52.883007],[-1.802999,52.883912],[-1.802915,52.885764],[-1.801378,52.886173],[-1.794432,52.883868],[-1.793663,52.883211],[-1.792493,52.880707],[-1.791152,52.880283],[-1.788149,52.880017],[-1.786977,52.88081],[-1.785599,52.882917],[-1.78373,52.883964],[-1.782511,52.883792],[-1.780273,52.882408],[-1.777221,52.883815],[-1.775325,52.882257],[-1.776223,52.880558],[-1.774232,52.879259],[-1.770685,52.878977],[-1.768781,52.878014],[-1.764655,52.878562],[-1.758585,52.877221],[-1.756004,52.875171],[-1.754067,52.874551],[-1.751593,52.874252],[-1.750703,52.87371],[-1.750514,52.872693],[-1.752275,52.871078],[-1.751844,52.870173],[-1.752267,52.868808],[-1.750649,52.86893],[-1.747587,52.870579],[-1.746061,52.869993],[-1.746003,52.868693],[-1.744732,52.868722],[-1.744498,52.8703],[-1.744905,52.871847],[-1.742848,52.871702],[-1.74159,52.872459],[-1.742643,52.874696],[-1.738955,52.876024],[-1.737777,52.879776],[-1.737302,52.884961],[-1.737877,52.888275],[-1.737663,52.890659],[-1.736561,52.89522],[-1.742622,52.90271],[-1.74343,52.906001],[-1.746333,52.907022],[-1.748222,52.908154],[-1.746964,52.910442],[-1.748955,52.912493],[-1.739779,52.913397],[-1.736133,52.912555],[-1.731103,52.912323],[-1.729023,52.910475],[-1.725896,52.911231],[-1.724394,52.910784],[-1.722694,52.910839],[-1.720887,52.910334],[-1.718656,52.910265],[-1.718987,52.909422],[-1.714467,52.909586],[-1.713549,52.911739],[-1.711567,52.913538],[-1.710978,52.916221],[-1.711251,52.918385],[-1.710288,52.920436],[-1.708228,52.922005],[-1.705608,52.922699],[-1.705115,52.922433],[-1.701755,52.922867],[-1.699746,52.922127],[-1.695012,52.920871],[-1.691618,52.920558],[-1.683758,52.918321],[-1.682393,52.920282],[-1.680254,52.921122],[-1.678015,52.921544],[-1.676892,52.920818],[-1.674839,52.918102],[-1.674219,52.917863],[-1.674305,52.91632],[-1.670563,52.916765],[-1.668648,52.91123],[-1.669471,52.909417],[-1.668678,52.90883],[-1.668016,52.907168],[-1.665276,52.906335],[-1.664442,52.905625],[-1.66296,52.902455],[-1.658379,52.902736],[-1.657394,52.90419],[-1.6541,52.905746],[-1.65493,52.906245],[-1.652015,52.908382],[-1.652693,52.909159],[-1.653405,52.912083],[-1.655509,52.914544],[-1.656332,52.918393],[-1.654993,52.91831],[-1.653891,52.920547],[-1.653707,52.924366],[-1.652661,52.924472],[-1.652366,52.926686],[-1.65325,52.92671],[-1.65331,52.928282],[-1.65107,52.930545],[-1.650362,52.934547],[-1.649608,52.937251],[-1.648654,52.939677],[-1.64987,52.94182],[-1.650235,52.944567],[-1.64922,52.945109],[-1.647224,52.945333],[-1.641378,52.948162],[-1.639268,52.947705],[-1.636174,52.94789],[-1.633091,52.946603],[-1.628534,52.946735],[-1.627505,52.946286],[-1.624839,52.945935],[-1.623544,52.946265],[-1.620977,52.947818],[-1.619463,52.947469],[-1.616563,52.945874],[-1.613846,52.945203],[-1.612954,52.944293],[-1.609926,52.946037],[-1.607137,52.947172],[-1.605336,52.9479],[-1.604857,52.948696],[-1.60325,52.949296],[-1.602959,52.950861],[-1.603837,52.952752],[-1.604822,52.953792],[-1.608083,52.955131],[-1.606558,52.957182],[-1.605028,52.958185],[-1.599394,52.962588],[-1.596301,52.962064],[-1.588746,52.962051],[-1.585608,52.961034],[-1.584688,52.962274],[-1.583102,52.962357],[-1.58123,52.961068],[-1.580646,52.961842],[-1.580768,52.963068],[-1.577606,52.963742],[-1.57773,52.96534],[-1.576468,52.966232],[-1.573375,52.966434],[-1.571897,52.967557],[-1.572186,52.969233],[-1.573551,52.969881],[-1.571437,52.973995],[-1.57434,52.97514],[-1.576579,52.975697],[-1.577949,52.977595],[-1.57901,52.977629],[-1.58291,52.979745],[-1.584721,52.979835],[-1.58745,52.981514],[-1.589156,52.981472],[-1.592788,52.982791],[-1.593924,52.982442],[-1.595038,52.983022],[-1.597335,52.982566],[-1.598656,52.983399],[-1.601263,52.984312],[-1.601829,52.988299],[-1.599601,52.99557],[-1.600104,52.997356],[-1.599266,52.998424],[-1.595097,52.999693],[-1.591968,53.001073],[-1.58895,53.001162],[-1.585717,53.000605],[-1.582329,53.000499],[-1.580381,53.001747],[-1.576799,53.002063],[-1.57528,53.004641],[-1.576926,53.005473],[-1.577382,53.008107],[-1.57929,53.008984],[-1.579733,53.011101],[-1.578228,53.011816],[-1.578755,53.014687],[-1.571275,53.013611],[-1.569398,53.01247],[-1.566984,53.012906],[-1.566746,53.013697],[-1.574361,53.015259],[-1.57589,53.016335],[-1.576111,53.017685],[-1.572325,53.019588],[-1.571248,53.021018],[-1.567845,53.021457],[-1.570501,53.022609],[-1.57189,53.023837],[-1.574315,53.023732],[-1.574867,53.024343],[-1.57856,53.023569],[-1.577339,53.022296],[-1.581916,53.021626],[-1.584883,53.020389],[-1.587068,53.021183],[-1.585358,53.023256],[-1.587176,53.023503],[-1.590434,53.024895],[-1.590746,53.025404],[-1.593845,53.026148],[-1.594305,53.026979],[-1.596249,53.027789],[-1.596456,53.028814],[-1.598603,53.030612],[-1.597237,53.031701],[-1.59667,53.032781],[-1.593374,53.034401],[-1.59367,53.035109],[-1.592723,53.036223],[-1.59001,53.036533],[-1.589212,53.037811],[-1.585919,53.039303],[-1.584103,53.040651],[-1.582764,53.041072],[-1.580973,53.042297],[-1.583718,53.044318],[-1.584919,53.044467],[-1.586263,53.045559],[-1.591081,53.047271],[-1.59329,53.048594],[-1.593762,53.05011],[-1.592847,53.050831],[-1.591439,53.054734],[-1.588399,53.05739],[-1.588166,53.058437],[-1.585733,53.059524],[-1.583157,53.059935],[-1.581784,53.058174],[-1.58077,53.05787],[-1.578291,53.058029],[-1.578921,53.059577],[-1.57829,53.060132],[-1.576541,53.060049],[-1.575537,53.061028],[-1.572576,53.061341],[-1.569918,53.062369],[-1.564651,53.065635],[-1.563045,53.065941],[-1.560846,53.06837],[-1.558488,53.069497],[-1.555986,53.070004],[-1.553176,53.069444],[-1.551567,53.070981],[-1.549067,53.071856],[-1.5475,53.073846],[-1.549713,53.076927],[-1.545324,53.078572],[-1.542579,53.078557],[-1.54348,53.080225],[-1.542288,53.080437],[-1.538915,53.081897],[-1.538124,53.083607],[-1.538297,53.084277],[-1.534824,53.08589],[-1.533603,53.086944],[-1.530729,53.087584],[-1.529998,53.087337],[-1.526705,53.087683],[-1.523014,53.086715],[-1.519345,53.08624],[-1.516182,53.090476],[-1.514761,53.091613],[-1.512371,53.092687],[-1.512059,53.093365],[-1.51377,53.093684],[-1.514409,53.095131],[-1.517455,53.096519],[-1.520496,53.096602],[-1.523407,53.095648],[-1.527317,53.094761],[-1.529825,53.095478],[-1.529902,53.096839],[-1.528684,53.09814],[-1.529173,53.099035],[-1.531105,53.100481],[-1.530224,53.101126],[-1.527617,53.101717],[-1.526682,53.102711],[-1.526208,53.110793],[-1.523693,53.111758],[-1.522436,53.113289],[-1.522511,53.113861],[-1.520602,53.114487],[-1.5208,53.116328],[-1.522742,53.117834],[-1.523282,53.118802],[-1.522888,53.11974],[-1.523511,53.12043],[-1.522011,53.12098],[-1.520191,53.124034],[-1.515967,53.125291],[-1.51437,53.126561],[-1.512971,53.126731],[-1.510494,53.127835],[-1.510031,53.127354],[-1.505495,53.128129],[-1.500145,53.128284],[-1.500472,53.129136],[-1.498851,53.131164],[-1.496045,53.131006],[-1.497582,53.133328],[-1.495366,53.133965],[-1.508655,53.146313],[-1.509646,53.148735],[-1.509082,53.14924],[-1.509666,53.150992],[-1.515669,53.154022],[-1.517349,53.15647],[-1.539629,53.171396],[-1.547793,53.181996],[-1.551749,53.188538],[-1.552991,53.196287],[-1.548295,53.199918],[-1.529771,53.201091],[-1.517645,53.200769],[-1.515595,53.202632],[-1.516833,53.203624],[-1.51727,53.206052],[-1.518902,53.205782],[-1.521265,53.206468],[-1.5244,53.206464],[-1.525975,53.207504],[-1.52872,53.207457],[-1.531796,53.207882],[-1.535256,53.211088],[-1.537447,53.211533],[-1.54024,53.210726],[-1.542505,53.21187],[-1.553611,53.215781],[-1.56902,53.223129],[-1.568899,53.224933],[-1.567569,53.226363],[-1.565905,53.227218],[-1.56625,53.227941],[-1.56499,53.229738],[-1.565691,53.231272],[-1.567606,53.232856],[-1.567473,53.233734],[-1.569701,53.234255],[-1.570035,53.23552],[-1.570969,53.235881],[-1.571296,53.237494],[-1.570385,53.240834],[-1.568517,53.241901],[-1.567998,53.243164],[-1.56388,53.24512],[-1.562051,53.246684],[-1.559509,53.247542],[-1.55762,53.248836],[-1.557176,53.249561],[-1.56578,53.261428],[-1.570964,53.262923],[-1.575343,53.263074],[-1.578753,53.262657],[-1.582268,53.263235],[-1.584937,53.262697],[-1.584313,53.263994],[-1.582912,53.263926],[-1.583643,53.265671],[-1.582546,53.267164],[-1.583583,53.269689],[-1.58276,53.270285],[-1.583477,53.271304],[-1.586058,53.273601],[-1.586302,53.275341],[-1.589349,53.278039],[-1.589392,53.278739],[-1.587674,53.280863],[-1.584603,53.282486],[-1.583921,53.283247],[-1.582529,53.2832],[-1.580228,53.284956],[-1.578854,53.28698],[-1.58051,53.28877],[-1.582054,53.289346],[-1.584947,53.291136],[-1.597442,53.295757],[-1.5993,53.302363],[-1.598601,53.304916],[-1.597815,53.305402],[-1.598731,53.308075],[-1.599093,53.311318]]]},"properties":{"LAD22CD":"E07000035","LAD22NM":"Derbyshire Dales","BNG_E":419697,"BNG_N":358493,"LONG":-1.70711,"LAT":53.12326,"GlobalID":"9ef6b7cf-3c3e-4f60-8cee-eaa6c2b863d2"},"id":74}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.239706,52.892289],[-1.239623,52.894238],[-1.24104,52.895362],[-1.243038,52.896405],[-1.246213,52.897523],[-1.247513,52.899929],[-1.245117,52.902193],[-1.24763,52.90321],[-1.250799,52.90263],[-1.251334,52.902038],[-1.253403,52.902423],[-1.254007,52.901945],[-1.256475,52.901786],[-1.259639,52.903487],[-1.265249,52.905052],[-1.267617,52.905283],[-1.271686,52.905113],[-1.274412,52.905245],[-1.275376,52.905668],[-1.280535,52.908997],[-1.281936,52.910756],[-1.283535,52.916796],[-1.283524,52.918634],[-1.282822,52.919289],[-1.28252,52.921459],[-1.285196,52.924563],[-1.285777,52.926065],[-1.283644,52.927794],[-1.281576,52.92889],[-1.280614,52.93047],[-1.278211,52.932834],[-1.278377,52.934368],[-1.277842,52.93576],[-1.279159,52.936829],[-1.279046,52.938928],[-1.280475,52.939487],[-1.281225,52.941133],[-1.280266,52.941622],[-1.282901,52.945158],[-1.28126,52.947209],[-1.282142,52.947954],[-1.281031,52.949158],[-1.282404,52.950197],[-1.282414,52.951235],[-1.284149,52.952528],[-1.28575,52.952846],[-1.28643,52.953856],[-1.288224,52.954519],[-1.288996,52.95402],[-1.290653,52.954151],[-1.292501,52.955574],[-1.291692,52.95616],[-1.290563,52.959774],[-1.288607,52.961069],[-1.289417,52.966321],[-1.287729,52.967652],[-1.28775,52.969662],[-1.289623,52.969731],[-1.290674,52.970676],[-1.294987,52.979864],[-1.297471,52.984674],[-1.294579,52.98579],[-1.294679,52.986917],[-1.295477,52.987853],[-1.296708,52.987772],[-1.298056,52.988527],[-1.297763,52.989688],[-1.299237,52.989507],[-1.301235,52.99105],[-1.30037,52.993196],[-1.301054,52.994658],[-1.302341,52.995009],[-1.301739,52.995924],[-1.303137,52.99683],[-1.303608,52.998012],[-1.302355,52.998444],[-1.30284,53.000296],[-1.30455,53.001725],[-1.306339,53.002487],[-1.307444,53.003655],[-1.309833,53.002037],[-1.313963,53.00132],[-1.316866,52.999237],[-1.318253,52.99676],[-1.322357,52.993958],[-1.324193,52.993707],[-1.322742,52.992107],[-1.322052,52.989344],[-1.323108,52.989832],[-1.324548,52.989557],[-1.323833,52.988308],[-1.326197,52.988624],[-1.328044,52.98736],[-1.331473,52.98699],[-1.329505,52.98545],[-1.328337,52.98394],[-1.328358,52.981622],[-1.330414,52.980896],[-1.332792,52.978143],[-1.333802,52.978349],[-1.336207,52.977949],[-1.337181,52.978508],[-1.339946,52.978222],[-1.342326,52.978893],[-1.347675,52.977973],[-1.350315,52.97819],[-1.351977,52.977862],[-1.355401,52.978014],[-1.358488,52.977707],[-1.361991,52.976714],[-1.367176,52.977324],[-1.369318,52.975888],[-1.370124,52.973653],[-1.371031,52.973087],[-1.375219,52.97423],[-1.378314,52.976571],[-1.38598,52.979134],[-1.385898,52.980194],[-1.384165,52.981595],[-1.385414,52.982297],[-1.386397,52.981654],[-1.393669,52.981706],[-1.394581,52.980612],[-1.395465,52.980767],[-1.402699,52.979571],[-1.409302,52.977015],[-1.409787,52.9796],[-1.414863,52.980482],[-1.416556,52.980521],[-1.418585,52.980106],[-1.420497,52.981051],[-1.424348,52.981397],[-1.429942,52.980108],[-1.43198,52.979277],[-1.444673,52.978849],[-1.44957,52.980742],[-1.451213,52.982132],[-1.453675,52.980943],[-1.455942,52.982603],[-1.457865,52.982446],[-1.460201,52.98388],[-1.463421,52.982889],[-1.469002,52.982534],[-1.473846,52.981741],[-1.478735,52.982552],[-1.479826,52.981987],[-1.479552,52.980553],[-1.478405,52.978769],[-1.476557,52.977185],[-1.473303,52.975677],[-1.47058,52.971584],[-1.471532,52.96973],[-1.474849,52.968433],[-1.47508,52.966985],[-1.474631,52.965928],[-1.471641,52.964815],[-1.468252,52.965081],[-1.467642,52.964821],[-1.466509,52.962269],[-1.467843,52.960663],[-1.467827,52.959784],[-1.466178,52.95787],[-1.467595,52.955689],[-1.466008,52.954013],[-1.467354,52.953026],[-1.468552,52.950662],[-1.459347,52.949434],[-1.45976,52.948787],[-1.457788,52.94825],[-1.45689,52.948746],[-1.45299,52.948357],[-1.452749,52.947461],[-1.450471,52.948877],[-1.449939,52.948117],[-1.445064,52.949201],[-1.441081,52.949504],[-1.434034,52.951309],[-1.431614,52.950619],[-1.428428,52.950306],[-1.424059,52.950308],[-1.420254,52.950718],[-1.409281,52.950323],[-1.416431,52.945761],[-1.422898,52.938532],[-1.423568,52.935693],[-1.420224,52.931926],[-1.419254,52.931429],[-1.417456,52.931718],[-1.416162,52.931355],[-1.410358,52.931036],[-1.407871,52.931085],[-1.404842,52.931688],[-1.403574,52.932235],[-1.401003,52.930556],[-1.397163,52.92992],[-1.396465,52.928549],[-1.39083,52.928098],[-1.386548,52.926679],[-1.383075,52.925932],[-1.383933,52.923816],[-1.386299,52.923873],[-1.387095,52.922368],[-1.389608,52.92274],[-1.389374,52.920025],[-1.388155,52.918069],[-1.387793,52.911432],[-1.388912,52.909695],[-1.391771,52.907408],[-1.390645,52.906247],[-1.39111,52.904247],[-1.388263,52.901468],[-1.386506,52.901342],[-1.384716,52.90187],[-1.383099,52.901322],[-1.37818,52.901077],[-1.374286,52.898325],[-1.373185,52.895289],[-1.372266,52.894714],[-1.370825,52.89475],[-1.367611,52.895596],[-1.366284,52.89717],[-1.364735,52.896666],[-1.362393,52.896391],[-1.36152,52.894654],[-1.362797,52.892813],[-1.361418,52.892358],[-1.359288,52.893686],[-1.358534,52.895278],[-1.35618,52.894351],[-1.355326,52.893021],[-1.356345,52.891716],[-1.355987,52.89045],[-1.357043,52.889823],[-1.354834,52.889328],[-1.354364,52.888792],[-1.350301,52.889111],[-1.348698,52.888624],[-1.348276,52.887836],[-1.346452,52.887975],[-1.345405,52.888686],[-1.346537,52.890261],[-1.342755,52.889616],[-1.341075,52.890101],[-1.339298,52.889688],[-1.339054,52.888647],[-1.341646,52.887572],[-1.340977,52.886368],[-1.34179,52.885325],[-1.344018,52.885065],[-1.347204,52.885922],[-1.348113,52.885818],[-1.34686,52.882839],[-1.347487,52.882161],[-1.349801,52.881286],[-1.348539,52.880005],[-1.346302,52.879925],[-1.344966,52.880634],[-1.343467,52.880727],[-1.342634,52.879419],[-1.34044,52.879365],[-1.336133,52.878502],[-1.335224,52.876324],[-1.332819,52.876724],[-1.329973,52.878164],[-1.330164,52.875696],[-1.328671,52.874715],[-1.326914,52.874318],[-1.325731,52.875377],[-1.321972,52.876403],[-1.320167,52.875931],[-1.31954,52.875203],[-1.320595,52.873562],[-1.323749,52.873723],[-1.322824,52.872361],[-1.319307,52.872869],[-1.31616,52.873469],[-1.310683,52.873183],[-1.307802,52.874093],[-1.307459,52.875671],[-1.305995,52.87708],[-1.30233,52.875564],[-1.298893,52.875377],[-1.295936,52.874775],[-1.289487,52.872458],[-1.286002,52.872631],[-1.280606,52.875286],[-1.278428,52.875593],[-1.274653,52.87553],[-1.271475,52.874991],[-1.267889,52.873369],[-1.266104,52.873312],[-1.259909,52.875072],[-1.255829,52.878127],[-1.253611,52.879286],[-1.250252,52.879542],[-1.244827,52.878763],[-1.242616,52.879139],[-1.240056,52.880109],[-1.238448,52.881807],[-1.238986,52.883524],[-1.240688,52.884934],[-1.245238,52.887012],[-1.246245,52.888234],[-1.245857,52.890316],[-1.243859,52.89152],[-1.241282,52.892439],[-1.239706,52.892289]]]},"properties":{"LAD22CD":"E07000036","LAD22NM":"Erewash","BNG_E":443721,"BNG_N":338063,"LONG":-1.3509,"LAT":52.9382,"GlobalID":"52c65467-84ff-4854-b08c-90ae78138b1d"},"id":75}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.822229,53.521091],[-1.822747,53.521913],[-1.827151,53.523508],[-1.828929,53.523183],[-1.835265,53.520595],[-1.839535,53.519823],[-1.841821,53.519909],[-1.844244,53.521783],[-1.843991,53.522561],[-1.845684,53.524727],[-1.847036,53.525426],[-1.850625,53.526219],[-1.852379,53.527157],[-1.856647,53.53002],[-1.859536,53.53365],[-1.863429,53.534965],[-1.870647,53.539278],[-1.873493,53.54043],[-1.875854,53.54041],[-1.882687,53.539151],[-1.887046,53.535869],[-1.89411,53.533612],[-1.898356,53.537796],[-1.902114,53.538645],[-1.904275,53.53848],[-1.90889,53.538734],[-1.909621,53.538391],[-1.911891,53.538033],[-1.914254,53.536708],[-1.915776,53.532947],[-1.91739,53.532197],[-1.922445,53.530815],[-1.922605,53.526335],[-1.923477,53.522958],[-1.926781,53.520949],[-1.922694,53.518376],[-1.921862,53.517177],[-1.916767,53.514496],[-1.917499,53.513078],[-1.921973,53.509955],[-1.9244,53.509573],[-1.926077,53.508663],[-1.928778,53.508089],[-1.935502,53.505787],[-1.938248,53.506403],[-1.942428,53.50661],[-1.946889,53.504546],[-1.951333,53.504199],[-1.955673,53.504456],[-1.95742,53.505344],[-1.959474,53.505907],[-1.961259,53.507281],[-1.963386,53.509827],[-1.966938,53.507351],[-1.967439,53.506639],[-1.971319,53.504559],[-1.97272,53.502486],[-1.971975,53.500203],[-1.972493,53.499047],[-1.970777,53.495224],[-1.971223,53.493653],[-1.972198,53.492832],[-1.972263,53.491618],[-1.973431,53.490657],[-1.974631,53.487935],[-1.976647,53.486319],[-1.981465,53.485262],[-1.984668,53.483232],[-1.985705,53.481742],[-1.98782,53.48111],[-1.989311,53.475395],[-1.987373,53.472774],[-1.988163,53.472084],[-1.988531,53.470025],[-1.987614,53.469589],[-1.986731,53.467505],[-1.98421,53.466824],[-1.984008,53.466127],[-1.981533,53.464505],[-1.980913,53.46287],[-1.988161,53.460598],[-1.98743,53.458903],[-1.987659,53.456878],[-1.985562,53.455759],[-1.986901,53.454316],[-1.989448,53.454021],[-1.993148,53.452295],[-1.995034,53.450597],[-1.994765,53.446914],[-1.996391,53.445772],[-1.999377,53.44585],[-2.002532,53.444118],[-2.003764,53.442901],[-2.006608,53.442411],[-2.008306,53.441452],[-2.006416,53.440445],[-2.004692,53.438011],[-2.005433,53.437143],[-2.004216,53.435922],[-2.007173,53.435701],[-2.010043,53.437259],[-2.012298,53.439917],[-2.014721,53.439571],[-2.016565,53.438098],[-2.017849,53.438392],[-2.019519,53.435787],[-2.02245,53.434322],[-2.022755,53.433098],[-2.026735,53.432686],[-2.027322,53.431886],[-2.025765,53.430093],[-2.026256,53.429865],[-2.024146,53.427954],[-2.020475,53.426692],[-2.019725,53.425119],[-2.021284,53.422576],[-2.020996,53.42126],[-2.02344,53.421752],[-2.02371,53.420552],[-2.016676,53.419303],[-2.017019,53.418142],[-2.014769,53.417851],[-2.015225,53.416627],[-2.013697,53.41589],[-2.010649,53.416727],[-2.005093,53.415028],[-2.000254,53.415271],[-1.99233,53.415193],[-1.993965,53.413182],[-1.993301,53.411909],[-1.99399,53.409185],[-1.995149,53.407762],[-1.996184,53.404668],[-1.997387,53.403537],[-2.00177,53.396491],[-2.004481,53.393761],[-2.005176,53.392395],[-2.004643,53.386327],[-2.013062,53.384105],[-2.015113,53.380567],[-2.01698,53.381498],[-2.019715,53.380595],[-2.018593,53.380206],[-2.017084,53.377833],[-2.020944,53.377598],[-2.02063,53.376161],[-2.021996,53.375958],[-2.021472,53.375059],[-2.023417,53.374954],[-2.024068,53.374173],[-2.026209,53.373618],[-2.028037,53.373954],[-2.030691,53.375188],[-2.033783,53.375092],[-2.030835,53.372916],[-2.028624,53.370734],[-2.031059,53.370262],[-2.034087,53.367753],[-2.032135,53.366447],[-2.031729,53.365729],[-2.030034,53.366177],[-2.028587,53.364613],[-2.027129,53.363767],[-2.024929,53.364113],[-2.023579,53.365513],[-2.023483,53.366353],[-2.021817,53.366757],[-2.020157,53.366044],[-2.017395,53.365554],[-2.016335,53.363464],[-2.011873,53.361629],[-2.010468,53.36258],[-2.008998,53.362011],[-2.010682,53.358259],[-2.010911,53.356604],[-2.010432,53.355255],[-2.008938,53.355279],[-2.006785,53.354572],[-2.007267,53.35347],[-2.006704,53.351655],[-2.008425,53.351103],[-2.007705,53.349287],[-2.007839,53.347766],[-2.00466,53.34601],[-2.010139,53.341902],[-2.014319,53.340058],[-2.013394,53.335665],[-2.01365,53.33242],[-2.009283,53.331389],[-2.01081,53.329786],[-2.011797,53.327597],[-2.011114,53.326657],[-2.011554,53.325954],[-2.010266,53.322897],[-2.006052,53.321668],[-2.003731,53.321663],[-2.001551,53.318922],[-2.003178,53.316947],[-2.004202,53.314611],[-2.004334,53.311157],[-2.008667,53.304506],[-2.009329,53.302314],[-2.0087,53.300182],[-2.008654,53.294656],[-2.009641,53.289436],[-2.008171,53.289433],[-2.008275,53.283477],[-2.009279,53.280067],[-2.008132,53.276712],[-2.007399,53.275913],[-2.006636,53.271574],[-2.006161,53.271404],[-2.005197,53.26904],[-2.005407,53.267589],[-2.007732,53.264524],[-2.009482,53.260652],[-2.000333,53.255439],[-2.001033,53.253885],[-2.00186,53.248518],[-1.999207,53.246376],[-1.999731,53.245049],[-1.990985,53.241011],[-1.987728,53.240195],[-1.983693,53.238641],[-1.981883,53.238579],[-1.979091,53.233328],[-1.978012,53.232417],[-1.974859,53.231061],[-1.974929,53.228499],[-1.976065,53.22753],[-1.977686,53.227595],[-1.979324,53.226746],[-1.982242,53.22628],[-1.98495,53.225556],[-1.985934,53.225765],[-1.987768,53.22486],[-1.988147,53.224104],[-1.990265,53.222999],[-1.99013,53.220998],[-1.989112,53.219551],[-1.989973,53.219389],[-1.989454,53.218072],[-1.98964,53.215789],[-1.988001,53.214585],[-1.987408,53.213586],[-1.986345,53.214235],[-1.984041,53.214491],[-1.981218,53.215776],[-1.980767,53.216373],[-1.978187,53.216856],[-1.976291,53.218798],[-1.970773,53.220938],[-1.962365,53.226242],[-1.961032,53.219434],[-1.956707,53.213748],[-1.950726,53.211904],[-1.948806,53.211664],[-1.939286,53.212083],[-1.93555,53.211051],[-1.932785,53.209161],[-1.930528,53.208604],[-1.929786,53.207386],[-1.928446,53.206673],[-1.924955,53.205568],[-1.922968,53.203298],[-1.921756,53.202944],[-1.919122,53.203041],[-1.918121,53.203525],[-1.913407,53.201428],[-1.911451,53.199932],[-1.909208,53.198835],[-1.907461,53.198947],[-1.906703,53.198398],[-1.903747,53.199022],[-1.901737,53.198932],[-1.900903,53.199812],[-1.898633,53.199957],[-1.898208,53.201044],[-1.900196,53.20336],[-1.901578,53.203139],[-1.902494,53.203955],[-1.900712,53.204627],[-1.90091,53.206671],[-1.900072,53.208364],[-1.905863,53.211747],[-1.908392,53.211732],[-1.911123,53.212132],[-1.911766,53.213242],[-1.908984,53.215281],[-1.910572,53.216449],[-1.912785,53.217208],[-1.917453,53.218035],[-1.917331,53.218379],[-1.912395,53.220635],[-1.91056,53.221035],[-1.90799,53.22026],[-1.907392,53.219138],[-1.900831,53.213616],[-1.90008,53.211859],[-1.897598,53.210453],[-1.894854,53.211986],[-1.897209,53.215926],[-1.893751,53.217837],[-1.895403,53.218603],[-1.892387,53.219192],[-1.888063,53.218281],[-1.885868,53.216907],[-1.885871,53.215711],[-1.883572,53.212272],[-1.881627,53.207446],[-1.882376,53.206265],[-1.884386,53.204938],[-1.882646,53.203305],[-1.881488,53.203611],[-1.876615,53.203397],[-1.878031,53.205219],[-1.877773,53.206323],[-1.878474,53.20696],[-1.876433,53.207654],[-1.873189,53.207273],[-1.874379,53.211057],[-1.872708,53.215658],[-1.862835,53.205299],[-1.855604,53.202971],[-1.853338,53.202708],[-1.847745,53.199089],[-1.841345,53.197161],[-1.842424,53.194762],[-1.831605,53.197588],[-1.831506,53.204289],[-1.827664,53.204031],[-1.827945,53.205524],[-1.831955,53.205693],[-1.831253,53.210649],[-1.836317,53.212806],[-1.844098,53.215099],[-1.850809,53.217474],[-1.853243,53.216578],[-1.860752,53.222319],[-1.865603,53.223897],[-1.869596,53.224235],[-1.871209,53.224714],[-1.874266,53.226847],[-1.869421,53.228675],[-1.866968,53.229953],[-1.861888,53.231087],[-1.858239,53.233231],[-1.857479,53.234318],[-1.858265,53.236277],[-1.85643,53.237547],[-1.85665,53.23892],[-1.854735,53.240801],[-1.853879,53.243279],[-1.851606,53.244449],[-1.848137,53.244765],[-1.844722,53.245748],[-1.844672,53.24695],[-1.846883,53.248053],[-1.846877,53.248987],[-1.844441,53.250384],[-1.841863,53.250485],[-1.840709,53.249645],[-1.837577,53.249212],[-1.834587,53.250129],[-1.83319,53.251497],[-1.830211,53.251198],[-1.825913,53.252073],[-1.820648,53.251994],[-1.816411,53.253867],[-1.813536,53.254614],[-1.813753,53.255193],[-1.816913,53.255673],[-1.817523,53.257066],[-1.81615,53.258098],[-1.807697,53.257974],[-1.805437,53.256232],[-1.802584,53.255764],[-1.798423,53.256055],[-1.795091,53.255108],[-1.794127,53.255153],[-1.790287,53.256412],[-1.791844,53.258062],[-1.794784,53.258874],[-1.795408,53.258754],[-1.798315,53.260313],[-1.798527,53.261505],[-1.796841,53.262786],[-1.798891,53.264589],[-1.800098,53.269442],[-1.799605,53.270426],[-1.801982,53.272909],[-1.803517,53.273219],[-1.804594,53.274152],[-1.809771,53.275362],[-1.811571,53.277767],[-1.811665,53.279197],[-1.812551,53.280328],[-1.816872,53.282012],[-1.817565,53.282644],[-1.817486,53.284797],[-1.816858,53.287023],[-1.821417,53.289757],[-1.823354,53.291289],[-1.823888,53.292234],[-1.822427,53.293966],[-1.824661,53.298868],[-1.822685,53.300883],[-1.822626,53.302812],[-1.816483,53.305849],[-1.813804,53.307973],[-1.812996,53.309807],[-1.811147,53.310938],[-1.808178,53.314266],[-1.806105,53.31703],[-1.802228,53.318302],[-1.79774,53.319245],[-1.787959,53.324013],[-1.784068,53.325433],[-1.781366,53.3271],[-1.769009,53.333052],[-1.766188,53.335358],[-1.765953,53.336279],[-1.761766,53.337951],[-1.759357,53.338227],[-1.7582,53.337231],[-1.757223,53.337149],[-1.755756,53.33604],[-1.753786,53.337],[-1.751216,53.335278],[-1.749353,53.334976],[-1.74569,53.336067],[-1.74361,53.336109],[-1.741107,53.336818],[-1.737186,53.336801],[-1.730206,53.33863],[-1.730641,53.337019],[-1.732338,53.336386],[-1.733168,53.335414],[-1.73529,53.334766],[-1.72927,53.333244],[-1.72498,53.33151],[-1.727278,53.32894],[-1.727482,53.326772],[-1.727588,53.319144],[-1.725483,53.318954],[-1.720466,53.31923],[-1.712559,53.322429],[-1.711692,53.32454],[-1.706244,53.325117],[-1.700449,53.323625],[-1.69912,53.330264],[-1.69955,53.331435],[-1.699023,53.332524],[-1.696867,53.334805],[-1.69526,53.335685],[-1.691338,53.336716],[-1.685536,53.335582],[-1.685618,53.336275],[-1.683186,53.337579],[-1.677055,53.342259],[-1.676998,53.342776],[-1.675103,53.344542],[-1.672281,53.348646],[-1.67107,53.349602],[-1.671627,53.351071],[-1.673169,53.352978],[-1.671929,53.354538],[-1.670874,53.357984],[-1.670158,53.365079],[-1.673312,53.369393],[-1.663757,53.380861],[-1.661807,53.389646],[-1.66186,53.391442],[-1.653818,53.391911],[-1.654717,53.393027],[-1.659008,53.393495],[-1.665113,53.393535],[-1.668089,53.393071],[-1.67298,53.396943],[-1.681829,53.401781],[-1.694521,53.401161],[-1.704966,53.405056],[-1.703974,53.405814],[-1.704127,53.408285],[-1.703001,53.410663],[-1.703851,53.412633],[-1.703234,53.413722],[-1.703945,53.414909],[-1.708532,53.417339],[-1.710881,53.417512],[-1.714019,53.41907],[-1.71832,53.419427],[-1.723348,53.418916],[-1.725153,53.417638],[-1.729951,53.415986],[-1.732399,53.417184],[-1.735075,53.419692],[-1.739762,53.420988],[-1.745009,53.42529],[-1.746719,53.426165],[-1.746258,53.427783],[-1.744122,53.429573],[-1.744273,53.431297],[-1.744897,53.432419],[-1.748561,53.435602],[-1.749728,53.439119],[-1.749313,53.439873],[-1.747115,53.441001],[-1.745465,53.442689],[-1.743675,53.445014],[-1.743909,53.446392],[-1.744661,53.44731],[-1.744276,53.448447],[-1.74657,53.451273],[-1.746213,53.452071],[-1.747128,53.454277],[-1.746658,53.455502],[-1.748167,53.45733],[-1.747082,53.457938],[-1.746487,53.460714],[-1.745264,53.461992],[-1.747827,53.464063],[-1.752154,53.464924],[-1.753658,53.464852],[-1.755712,53.463923],[-1.758188,53.463891],[-1.759398,53.463561],[-1.76469,53.463952],[-1.768438,53.464767],[-1.769951,53.465727],[-1.770496,53.466933],[-1.772724,53.467018],[-1.7762,53.468326],[-1.77704,53.469875],[-1.77804,53.470454],[-1.77797,53.472479],[-1.779063,53.474221],[-1.780809,53.474969],[-1.785703,53.475719],[-1.786446,53.47535],[-1.790706,53.475691],[-1.792329,53.476681],[-1.794319,53.477259],[-1.795328,53.478403],[-1.796847,53.478928],[-1.798328,53.478675],[-1.801471,53.480992],[-1.801853,53.486549],[-1.80025,53.488107],[-1.800263,53.493355],[-1.797952,53.493386],[-1.795847,53.494286],[-1.795856,53.495266],[-1.795001,53.495919],[-1.795082,53.498191],[-1.795866,53.499493],[-1.796288,53.503153],[-1.799034,53.504666],[-1.80395,53.505073],[-1.80776,53.506099],[-1.810399,53.50634],[-1.800779,53.511379],[-1.806871,53.51209],[-1.809933,53.511893],[-1.8136,53.512098],[-1.819524,53.513428],[-1.820793,53.518507],[-1.822589,53.520018],[-1.822229,53.521091]]]},"properties":{"LAD22CD":"E07000037","LAD22NM":"High Peak","BNG_E":410474,"BNG_N":387660,"LONG":-1.84398,"LAT":53.38569,"GlobalID":"22b1ccc8-41aa-47d8-8ad0-feb494c9e465"},"id":76}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.324669,53.32881],[-1.327664,53.329129],[-1.328769,53.327696],[-1.328165,53.326806],[-1.332417,53.3235],[-1.332311,53.322057],[-1.334562,53.321018],[-1.334525,53.320334],[-1.336581,53.317965],[-1.336549,53.316604],[-1.337668,53.31587],[-1.34026,53.315535],[-1.341629,53.316081],[-1.340895,53.316988],[-1.343053,53.317904],[-1.347308,53.318551],[-1.347238,53.318869],[-1.353473,53.319109],[-1.361778,53.318486],[-1.362947,53.317565],[-1.361923,53.315772],[-1.362623,53.315036],[-1.364168,53.315204],[-1.36545,53.315877],[-1.371646,53.316081],[-1.37413,53.31725],[-1.377039,53.317424],[-1.380616,53.316994],[-1.383659,53.317827],[-1.386739,53.317632],[-1.387863,53.318402],[-1.389933,53.318511],[-1.392004,53.322649],[-1.390429,53.326077],[-1.391205,53.32829],[-1.390341,53.331021],[-1.390725,53.331641],[-1.38873,53.33318],[-1.38792,53.334522],[-1.386573,53.334885],[-1.388916,53.336233],[-1.390698,53.335981],[-1.406396,53.339399],[-1.407565,53.340096],[-1.406786,53.340851],[-1.408747,53.341965],[-1.411034,53.341992],[-1.413027,53.339617],[-1.41259,53.338811],[-1.41451,53.338335],[-1.416115,53.337013],[-1.420867,53.334568],[-1.42349,53.335941],[-1.427792,53.33615],[-1.433612,53.33769],[-1.436736,53.337449],[-1.440873,53.336371],[-1.442136,53.337384],[-1.443031,53.337262],[-1.450804,53.33157],[-1.453937,53.330717],[-1.45988,53.330689],[-1.456637,53.32939],[-1.458276,53.328729],[-1.459936,53.329704],[-1.461698,53.32845],[-1.460239,53.327246],[-1.458037,53.326412],[-1.456594,53.326302],[-1.45637,53.325112],[-1.45431,53.324279],[-1.455825,53.323474],[-1.455228,53.321869],[-1.45728,53.321764],[-1.457262,53.320714],[-1.459736,53.319736],[-1.461667,53.320212],[-1.463223,53.319788],[-1.467208,53.31801],[-1.467866,53.317158],[-1.469623,53.317188],[-1.476917,53.319284],[-1.479599,53.31933],[-1.47969,53.318721],[-1.4825,53.318884],[-1.484716,53.318749],[-1.491066,53.317379],[-1.493095,53.31673],[-1.500715,53.315902],[-1.502132,53.317582],[-1.510488,53.316046],[-1.515896,53.313406],[-1.516131,53.312601],[-1.517339,53.312206],[-1.519115,53.312295],[-1.521196,53.312855],[-1.521631,53.311735],[-1.524185,53.312457],[-1.52579,53.312102],[-1.526185,53.310403],[-1.528197,53.310326],[-1.529411,53.310925],[-1.532014,53.309896],[-1.531842,53.308751],[-1.533407,53.307652],[-1.533115,53.306225],[-1.536769,53.304749],[-1.539235,53.304533],[-1.541656,53.30467],[-1.542604,53.305289],[-1.546859,53.306648],[-1.549076,53.306983],[-1.550396,53.306227],[-1.553539,53.305896],[-1.554791,53.306091],[-1.556852,53.305467],[-1.561827,53.306602],[-1.559688,53.308244],[-1.559124,53.309741],[-1.556553,53.311444],[-1.555752,53.311549],[-1.55849,53.313716],[-1.560176,53.313696],[-1.561365,53.315821],[-1.56226,53.315796],[-1.564091,53.313632],[-1.566089,53.313569],[-1.5675,53.314762],[-1.570494,53.314366],[-1.573906,53.31338],[-1.573158,53.312772],[-1.580534,53.311738],[-1.58124,53.314307],[-1.583005,53.315722],[-1.581288,53.316427],[-1.578924,53.316695],[-1.584902,53.321588],[-1.586902,53.321404],[-1.586774,53.319927],[-1.590379,53.318298],[-1.599093,53.311318],[-1.598731,53.308075],[-1.597815,53.305402],[-1.598601,53.304916],[-1.5993,53.302363],[-1.597442,53.295757],[-1.584947,53.291136],[-1.582054,53.289346],[-1.58051,53.28877],[-1.578854,53.28698],[-1.580228,53.284956],[-1.582529,53.2832],[-1.583921,53.283247],[-1.584603,53.282486],[-1.587674,53.280863],[-1.589392,53.278739],[-1.589349,53.278039],[-1.586302,53.275341],[-1.586058,53.273601],[-1.583477,53.271304],[-1.58276,53.270285],[-1.583583,53.269689],[-1.582546,53.267164],[-1.583643,53.265671],[-1.582912,53.263926],[-1.584313,53.263994],[-1.584937,53.262697],[-1.582268,53.263235],[-1.578753,53.262657],[-1.575343,53.263074],[-1.570964,53.262923],[-1.56578,53.261428],[-1.557176,53.249561],[-1.55762,53.248836],[-1.559509,53.247542],[-1.562051,53.246684],[-1.56388,53.24512],[-1.567998,53.243164],[-1.568517,53.241901],[-1.570385,53.240834],[-1.571296,53.237494],[-1.570969,53.235881],[-1.570035,53.23552],[-1.569701,53.234255],[-1.567473,53.233734],[-1.567606,53.232856],[-1.565691,53.231272],[-1.56499,53.229738],[-1.56625,53.227941],[-1.565905,53.227218],[-1.567569,53.226363],[-1.568899,53.224933],[-1.56902,53.223129],[-1.553611,53.215781],[-1.542505,53.21187],[-1.54024,53.210726],[-1.537447,53.211533],[-1.535256,53.211088],[-1.531796,53.207882],[-1.52872,53.207457],[-1.525975,53.207504],[-1.5244,53.206464],[-1.521265,53.206468],[-1.518902,53.205782],[-1.51727,53.206052],[-1.516833,53.203624],[-1.515595,53.202632],[-1.517645,53.200769],[-1.529771,53.201091],[-1.548295,53.199918],[-1.552991,53.196287],[-1.551749,53.188538],[-1.547793,53.181996],[-1.539629,53.171396],[-1.517349,53.15647],[-1.515669,53.154022],[-1.509666,53.150992],[-1.509082,53.14924],[-1.509646,53.148735],[-1.508655,53.146313],[-1.495366,53.133965],[-1.493616,53.131253],[-1.490535,53.131557],[-1.488999,53.129999],[-1.486843,53.12293],[-1.480299,53.121487],[-1.474075,53.120701],[-1.471175,53.119776],[-1.469819,53.119744],[-1.467133,53.116033],[-1.463563,53.115007],[-1.463015,53.1142],[-1.464692,53.113978],[-1.465369,53.110801],[-1.461514,53.110171],[-1.460005,53.108311],[-1.457281,53.108837],[-1.455546,53.109616],[-1.45235,53.106459],[-1.450474,53.105537],[-1.450302,53.104474],[-1.448203,53.103667],[-1.443407,53.104504],[-1.44024,53.104608],[-1.437253,53.104941],[-1.434393,53.105703],[-1.432545,53.105897],[-1.430144,53.105325],[-1.428913,53.105713],[-1.427366,53.105469],[-1.425441,53.103968],[-1.423734,53.10336],[-1.422298,53.104565],[-1.420319,53.105512],[-1.419663,53.106565],[-1.417249,53.105653],[-1.413919,53.105465],[-1.409859,53.106381],[-1.410032,53.107402],[-1.407916,53.10746],[-1.407003,53.106893],[-1.402896,53.107308],[-1.400525,53.10622],[-1.397462,53.105334],[-1.392723,53.104883],[-1.391199,53.105227],[-1.38904,53.106432],[-1.384021,53.106982],[-1.378974,53.108822],[-1.377032,53.108668],[-1.37365,53.107856],[-1.372149,53.108253],[-1.370908,53.109092],[-1.371708,53.110957],[-1.377311,53.118548],[-1.376539,53.120079],[-1.374881,53.121701],[-1.375138,53.123565],[-1.374812,53.124787],[-1.373297,53.125813],[-1.37488,53.12637],[-1.372701,53.128587],[-1.373387,53.129455],[-1.372716,53.129995],[-1.373388,53.130955],[-1.372776,53.131647],[-1.374197,53.133703],[-1.375536,53.134057],[-1.375892,53.134938],[-1.377725,53.135834],[-1.377195,53.13697],[-1.374703,53.138412],[-1.374193,53.139148],[-1.370995,53.139473],[-1.366626,53.141757],[-1.366263,53.142382],[-1.36253,53.143263],[-1.362527,53.147],[-1.360653,53.147666],[-1.357477,53.150499],[-1.355029,53.151646],[-1.355915,53.153833],[-1.35475,53.155357],[-1.353259,53.156004],[-1.353699,53.157332],[-1.352935,53.158127],[-1.35294,53.159213],[-1.354596,53.160647],[-1.356844,53.163552],[-1.358287,53.164181],[-1.358757,53.165695],[-1.360064,53.166428],[-1.362442,53.16641],[-1.364747,53.16735],[-1.36477,53.16808],[-1.366755,53.171036],[-1.372202,53.171478],[-1.373783,53.172376],[-1.376001,53.172543],[-1.377442,53.173735],[-1.376686,53.175058],[-1.374118,53.176851],[-1.373171,53.178664],[-1.37117,53.180653],[-1.369411,53.180831],[-1.367906,53.1801],[-1.364562,53.180555],[-1.363888,53.18234],[-1.361822,53.182641],[-1.356783,53.185475],[-1.354428,53.184417],[-1.353619,53.185359],[-1.352221,53.185506],[-1.351917,53.184448],[-1.345644,53.183438],[-1.344264,53.187973],[-1.338004,53.186862],[-1.335954,53.187457],[-1.334885,53.186986],[-1.330359,53.187204],[-1.329839,53.187725],[-1.327877,53.187965],[-1.321703,53.185578],[-1.3185,53.185923],[-1.317644,53.191199],[-1.316346,53.193111],[-1.315405,53.193341],[-1.314924,53.194782],[-1.311606,53.198868],[-1.31389,53.202586],[-1.313702,53.204904],[-1.314206,53.20578],[-1.313743,53.208473],[-1.312433,53.208696],[-1.310998,53.210099],[-1.311531,53.21201],[-1.312546,53.212283],[-1.310614,53.215936],[-1.311135,53.217287],[-1.314311,53.21919],[-1.313698,53.220526],[-1.312576,53.22164],[-1.313035,53.223827],[-1.314747,53.223909],[-1.313733,53.224992],[-1.314084,53.225899],[-1.313454,53.22923],[-1.311338,53.231716],[-1.311519,53.232377],[-1.31653,53.23763],[-1.319202,53.239582],[-1.326355,53.236099],[-1.332123,53.236696],[-1.33197,53.241591],[-1.33531,53.241291],[-1.336451,53.241858],[-1.338828,53.241505],[-1.338732,53.240464],[-1.33959,53.240081],[-1.343325,53.240422],[-1.347065,53.23954],[-1.34786,53.241799],[-1.349424,53.242924],[-1.349639,53.244836],[-1.350863,53.246389],[-1.353169,53.245848],[-1.356763,53.245741],[-1.359992,53.244684],[-1.363023,53.244318],[-1.3632,53.243907],[-1.366462,53.242731],[-1.370453,53.241933],[-1.371486,53.241207],[-1.37504,53.240875],[-1.377209,53.241161],[-1.380341,53.243796],[-1.382969,53.242655],[-1.383259,53.242021],[-1.387701,53.239458],[-1.389532,53.238869],[-1.390081,53.237881],[-1.391579,53.237194],[-1.391636,53.235613],[-1.394052,53.234986],[-1.393618,53.23401],[-1.398903,53.233878],[-1.400798,53.234282],[-1.401093,53.233578],[-1.400529,53.231348],[-1.399264,53.230574],[-1.396419,53.227087],[-1.397087,53.225441],[-1.39852,53.225234],[-1.395585,53.222718],[-1.401559,53.217833],[-1.400044,53.217081],[-1.399602,53.21517],[-1.401405,53.213751],[-1.405349,53.214316],[-1.405121,53.214662],[-1.408355,53.215556],[-1.409888,53.215145],[-1.411689,53.215559],[-1.41529,53.214706],[-1.420843,53.212442],[-1.422687,53.214377],[-1.427504,53.215361],[-1.42928,53.215429],[-1.433451,53.213819],[-1.437268,53.213151],[-1.440001,53.213593],[-1.440715,53.217106],[-1.439294,53.218785],[-1.441205,53.220631],[-1.44298,53.219805],[-1.444172,53.220751],[-1.44527,53.220001],[-1.447527,53.221414],[-1.450223,53.220839],[-1.452429,53.220727],[-1.457376,53.219638],[-1.459116,53.22065],[-1.460171,53.220323],[-1.461676,53.221649],[-1.467599,53.219516],[-1.468833,53.220646],[-1.470468,53.221357],[-1.475462,53.221635],[-1.478396,53.222321],[-1.478409,53.223722],[-1.475843,53.225084],[-1.477343,53.226275],[-1.481697,53.226098],[-1.482487,53.227007],[-1.483067,53.22899],[-1.484158,53.228976],[-1.484168,53.230711],[-1.482557,53.231019],[-1.483975,53.232483],[-1.483163,53.233314],[-1.480695,53.23323],[-1.478054,53.233736],[-1.471875,53.233415],[-1.471864,53.236112],[-1.471363,53.236183],[-1.471493,53.238868],[-1.471863,53.239493],[-1.475094,53.239818],[-1.477539,53.239714],[-1.478969,53.242502],[-1.479088,53.243515],[-1.480899,53.245127],[-1.481708,53.246484],[-1.481313,53.247859],[-1.480357,53.248714],[-1.479213,53.248238],[-1.474754,53.248753],[-1.473839,53.249817],[-1.475906,53.250811],[-1.478162,53.25099],[-1.478794,53.252294],[-1.475105,53.253437],[-1.476272,53.254704],[-1.473517,53.257238],[-1.472208,53.256534],[-1.470684,53.257272],[-1.472512,53.25829],[-1.471134,53.259413],[-1.473214,53.260059],[-1.475396,53.259494],[-1.478663,53.262818],[-1.479046,53.263511],[-1.47329,53.26618],[-1.472252,53.266389],[-1.470105,53.267629],[-1.467872,53.267491],[-1.466369,53.267927],[-1.4642,53.267999],[-1.462728,53.270351],[-1.465417,53.27031],[-1.465077,53.272225],[-1.466873,53.273931],[-1.466944,53.274635],[-1.464902,53.274938],[-1.465246,53.276001],[-1.464913,53.277205],[-1.465805,53.278076],[-1.464401,53.278456],[-1.460831,53.278054],[-1.459061,53.281111],[-1.458639,53.282972],[-1.457069,53.283745],[-1.455254,53.28176],[-1.454452,53.281379],[-1.451594,53.281931],[-1.447906,53.28315],[-1.447116,53.282854],[-1.443941,53.282704],[-1.441926,53.28207],[-1.439036,53.28021],[-1.438662,53.280625],[-1.436082,53.280854],[-1.43219,53.281874],[-1.423236,53.282715],[-1.423126,53.283461],[-1.421488,53.283425],[-1.418915,53.284895],[-1.417971,53.286272],[-1.415492,53.287635],[-1.414639,53.286816],[-1.40981,53.28674],[-1.407946,53.286274],[-1.402999,53.283351],[-1.401737,53.281574],[-1.399278,53.281972],[-1.399496,53.282459],[-1.396316,53.283423],[-1.396744,53.284562],[-1.391762,53.287139],[-1.391419,53.286472],[-1.387163,53.286105],[-1.38656,53.286946],[-1.387343,53.289878],[-1.386299,53.292285],[-1.386672,53.293753],[-1.385989,53.294895],[-1.38073,53.295494],[-1.380868,53.296606],[-1.377153,53.296849],[-1.377054,53.299044],[-1.374168,53.298427],[-1.371523,53.297316],[-1.371358,53.295641],[-1.369852,53.293697],[-1.36801,53.292985],[-1.368505,53.292069],[-1.366893,53.289184],[-1.360789,53.288679],[-1.358957,53.287749],[-1.35317,53.286499],[-1.34916,53.286594],[-1.348268,53.285658],[-1.342784,53.285661],[-1.341092,53.287493],[-1.339217,53.288761],[-1.33906,53.289862],[-1.337272,53.289572],[-1.337195,53.288366],[-1.333634,53.289758],[-1.322588,53.281376],[-1.316702,53.281657],[-1.318696,53.285506],[-1.320738,53.286975],[-1.321924,53.288929],[-1.318997,53.289159],[-1.322559,53.291591],[-1.324085,53.294094],[-1.324142,53.295109],[-1.320027,53.295165],[-1.313358,53.296767],[-1.310674,53.297948],[-1.313572,53.299719],[-1.316087,53.301805],[-1.316264,53.305117],[-1.317825,53.30581],[-1.318946,53.307055],[-1.321804,53.30854],[-1.321928,53.309039],[-1.318718,53.310399],[-1.313584,53.310913],[-1.312377,53.311371],[-1.309168,53.311868],[-1.307476,53.312521],[-1.304639,53.312949],[-1.303058,53.312876],[-1.291591,53.309224],[-1.28661,53.309015],[-1.284483,53.309657],[-1.282012,53.309463],[-1.285308,53.311611],[-1.293665,53.313981],[-1.294735,53.315271],[-1.295687,53.319709],[-1.295159,53.321791],[-1.293948,53.322784],[-1.290109,53.32314],[-1.288589,53.326228],[-1.291231,53.327976],[-1.293232,53.328682],[-1.297097,53.330652],[-1.297392,53.331427],[-1.299072,53.332533],[-1.302209,53.332526],[-1.305973,53.33377],[-1.3123,53.334165],[-1.311494,53.332115],[-1.310508,53.331906],[-1.311439,53.330253],[-1.310537,53.329354],[-1.313006,53.329362],[-1.313678,53.327321],[-1.31837,53.326007],[-1.321613,53.3255],[-1.322298,53.327527],[-1.324757,53.327091],[-1.324669,53.32881]]]},"properties":{"LAD22CD":"E07000038","LAD22NM":"North East Derbyshire","BNG_E":437369,"BNG_N":362955,"LONG":-1.44253,"LAT":53.16243,"GlobalID":"ca6bc747-5e3a-47ae-956d-37cf785f82ea"},"id":77}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.607137,52.947172],[-1.609926,52.946037],[-1.612954,52.944293],[-1.613846,52.945203],[-1.616563,52.945874],[-1.619463,52.947469],[-1.620977,52.947818],[-1.623544,52.946265],[-1.624839,52.945935],[-1.627505,52.946286],[-1.628534,52.946735],[-1.633091,52.946603],[-1.636174,52.94789],[-1.639268,52.947705],[-1.641378,52.948162],[-1.647224,52.945333],[-1.64922,52.945109],[-1.650235,52.944567],[-1.64987,52.94182],[-1.648654,52.939677],[-1.649608,52.937251],[-1.650362,52.934547],[-1.65107,52.930545],[-1.65331,52.928282],[-1.65325,52.92671],[-1.652366,52.926686],[-1.652661,52.924472],[-1.653707,52.924366],[-1.653891,52.920547],[-1.654993,52.91831],[-1.656332,52.918393],[-1.655509,52.914544],[-1.653405,52.912083],[-1.652693,52.909159],[-1.652015,52.908382],[-1.65493,52.906245],[-1.6541,52.905746],[-1.657394,52.90419],[-1.658379,52.902736],[-1.66296,52.902455],[-1.664442,52.905625],[-1.665276,52.906335],[-1.668016,52.907168],[-1.668678,52.90883],[-1.669471,52.909417],[-1.668648,52.91123],[-1.670563,52.916765],[-1.674305,52.91632],[-1.674219,52.917863],[-1.674839,52.918102],[-1.676892,52.920818],[-1.678015,52.921544],[-1.680254,52.921122],[-1.682393,52.920282],[-1.683758,52.918321],[-1.691618,52.920558],[-1.695012,52.920871],[-1.699746,52.922127],[-1.701755,52.922867],[-1.705115,52.922433],[-1.705608,52.922699],[-1.708228,52.922005],[-1.710288,52.920436],[-1.711251,52.918385],[-1.710978,52.916221],[-1.711567,52.913538],[-1.713549,52.911739],[-1.714467,52.909586],[-1.718987,52.909422],[-1.718656,52.910265],[-1.720887,52.910334],[-1.722694,52.910839],[-1.724394,52.910784],[-1.725896,52.911231],[-1.729023,52.910475],[-1.731103,52.912323],[-1.736133,52.912555],[-1.739779,52.913397],[-1.748955,52.912493],[-1.746964,52.910442],[-1.748222,52.908154],[-1.746333,52.907022],[-1.74343,52.906001],[-1.742622,52.90271],[-1.736561,52.89522],[-1.737663,52.890659],[-1.737877,52.888275],[-1.737302,52.884961],[-1.737777,52.879776],[-1.738955,52.876024],[-1.742643,52.874696],[-1.74159,52.872459],[-1.742848,52.871702],[-1.744905,52.871847],[-1.744498,52.8703],[-1.744732,52.868722],[-1.746003,52.868693],[-1.747397,52.868201],[-1.749558,52.866774],[-1.746784,52.865958],[-1.743173,52.866228],[-1.7404,52.867665],[-1.739421,52.867212],[-1.739657,52.865303],[-1.739165,52.864807],[-1.735539,52.86507],[-1.734826,52.863856],[-1.731215,52.862817],[-1.729781,52.862731],[-1.727229,52.863208],[-1.725724,52.862308],[-1.726475,52.861492],[-1.728083,52.861389],[-1.727514,52.860437],[-1.725322,52.859663],[-1.722891,52.860308],[-1.722344,52.861522],[-1.721066,52.862061],[-1.717749,52.861984],[-1.718347,52.860901],[-1.716969,52.860786],[-1.71626,52.862062],[-1.714415,52.862799],[-1.715493,52.863523],[-1.71732,52.863469],[-1.717665,52.864521],[-1.716529,52.865418],[-1.714474,52.866015],[-1.712061,52.865921],[-1.710676,52.866462],[-1.708064,52.866109],[-1.705902,52.866734],[-1.703461,52.866394],[-1.70062,52.864307],[-1.700042,52.86328],[-1.70152,52.862223],[-1.703564,52.862851],[-1.703466,52.86125],[-1.700609,52.860584],[-1.698879,52.860766],[-1.699225,52.862111],[-1.697536,52.86289],[-1.694366,52.862806],[-1.691747,52.864211],[-1.689986,52.864435],[-1.687926,52.863929],[-1.687365,52.862808],[-1.684964,52.862329],[-1.682735,52.862779],[-1.679449,52.861502],[-1.674617,52.861134],[-1.672319,52.861389],[-1.670276,52.861229],[-1.668802,52.860148],[-1.664788,52.858371],[-1.662783,52.8582],[-1.658681,52.85679],[-1.654056,52.856984],[-1.645963,52.855822],[-1.642632,52.856327],[-1.641911,52.855753],[-1.639901,52.85543],[-1.636925,52.853284],[-1.635151,52.852984],[-1.630732,52.852794],[-1.629675,52.853784],[-1.626567,52.854365],[-1.626158,52.852708],[-1.628235,52.851862],[-1.625492,52.849781],[-1.622662,52.849504],[-1.622694,52.84794],[-1.620712,52.847413],[-1.617579,52.844765],[-1.614722,52.845132],[-1.612672,52.844597],[-1.6092,52.842959],[-1.607059,52.843371],[-1.604502,52.8422],[-1.602987,52.840878],[-1.602981,52.839838],[-1.601868,52.837232],[-1.600996,52.837083],[-1.599393,52.837871],[-1.597523,52.837335],[-1.59418,52.835182],[-1.592436,52.836393],[-1.591106,52.835444],[-1.591949,52.834613],[-1.591402,52.833431],[-1.591896,52.83227],[-1.589604,52.831005],[-1.587977,52.831537],[-1.586462,52.831417],[-1.585783,52.830754],[-1.588623,52.828946],[-1.590363,52.828616],[-1.593691,52.828735],[-1.597595,52.828413],[-1.600732,52.827408],[-1.602867,52.826301],[-1.604415,52.824883],[-1.605513,52.823206],[-1.607113,52.822029],[-1.6076,52.819473],[-1.610324,52.81705],[-1.61034,52.815617],[-1.607697,52.81486],[-1.60496,52.814667],[-1.600793,52.81275],[-1.598907,52.811482],[-1.596654,52.81098],[-1.593439,52.809091],[-1.591827,52.809491],[-1.590577,52.806916],[-1.589873,52.806372],[-1.590907,52.802492],[-1.588341,52.802381],[-1.588502,52.801708],[-1.590025,52.800782],[-1.588947,52.799822],[-1.595704,52.797115],[-1.59785,52.798344],[-1.60355,52.795455],[-1.600854,52.794194],[-1.601475,52.792842],[-1.604132,52.791268],[-1.60633,52.790732],[-1.611723,52.789863],[-1.614346,52.788274],[-1.612392,52.787519],[-1.613721,52.786155],[-1.609417,52.784454],[-1.611266,52.782778],[-1.610304,52.782257],[-1.61113,52.781404],[-1.612463,52.781218],[-1.61541,52.782052],[-1.615012,52.782496],[-1.617743,52.783875],[-1.61929,52.785168],[-1.622884,52.782168],[-1.623753,52.782449],[-1.626958,52.779772],[-1.638243,52.786728],[-1.641929,52.784586],[-1.644324,52.782499],[-1.648485,52.779849],[-1.64993,52.779482],[-1.65324,52.779715],[-1.656826,52.781063],[-1.658757,52.783493],[-1.66227,52.785149],[-1.664009,52.785486],[-1.665604,52.785163],[-1.669692,52.782335],[-1.67074,52.781071],[-1.669734,52.777816],[-1.670047,52.773595],[-1.67202,52.772418],[-1.676348,52.772319],[-1.678646,52.771963],[-1.682067,52.770192],[-1.683009,52.768212],[-1.68518,52.766414],[-1.685007,52.765354],[-1.683166,52.764273],[-1.683928,52.761619],[-1.685968,52.759013],[-1.687912,52.757405],[-1.690971,52.757004],[-1.692752,52.756308],[-1.696764,52.752861],[-1.696575,52.751911],[-1.693685,52.75079],[-1.69386,52.750165],[-1.695654,52.749085],[-1.696052,52.74802],[-1.695539,52.747022],[-1.692537,52.744835],[-1.693171,52.743815],[-1.696357,52.744257],[-1.697619,52.743763],[-1.697799,52.742272],[-1.697102,52.74036],[-1.699153,52.738991],[-1.699764,52.738051],[-1.697978,52.736053],[-1.697886,52.735382],[-1.702353,52.732588],[-1.704158,52.732079],[-1.70451,52.731058],[-1.703241,52.729487],[-1.701326,52.728434],[-1.696952,52.727195],[-1.694021,52.726868],[-1.687823,52.727286],[-1.68209,52.727016],[-1.677944,52.727504],[-1.675434,52.72686],[-1.675595,52.72487],[-1.671396,52.724283],[-1.66917,52.723583],[-1.663023,52.723645],[-1.662614,52.723005],[-1.656608,52.721748],[-1.655929,52.719843],[-1.656214,52.717798],[-1.655678,52.715951],[-1.659291,52.714083],[-1.658209,52.712608],[-1.657733,52.710579],[-1.655911,52.710455],[-1.656343,52.708571],[-1.654302,52.708209],[-1.654151,52.703058],[-1.655055,52.701981],[-1.654421,52.699979],[-1.65261,52.699547],[-1.649379,52.699639],[-1.648521,52.698353],[-1.644683,52.699355],[-1.642359,52.700417],[-1.640942,52.699656],[-1.638208,52.700242],[-1.637713,52.701362],[-1.63632,52.702368],[-1.633702,52.702004],[-1.632924,52.700882],[-1.630309,52.700056],[-1.629451,52.700307],[-1.626292,52.698918],[-1.625251,52.697423],[-1.623228,52.697525],[-1.622372,52.698632],[-1.620908,52.69947],[-1.618403,52.699802],[-1.615375,52.700707],[-1.612548,52.699942],[-1.612111,52.69913],[-1.609858,52.698917],[-1.607556,52.698354],[-1.607822,52.697361],[-1.606762,52.696744],[-1.604003,52.696723],[-1.601003,52.69746],[-1.599644,52.698348],[-1.598568,52.700437],[-1.597541,52.700422],[-1.596124,52.701489],[-1.59629,52.703067],[-1.594955,52.702747],[-1.593956,52.703722],[-1.591555,52.703655],[-1.591076,52.704669],[-1.592165,52.705052],[-1.591597,52.705974],[-1.588932,52.706353],[-1.585772,52.707494],[-1.583823,52.707891],[-1.582825,52.709055],[-1.579281,52.709567],[-1.578008,52.711411],[-1.574606,52.712039],[-1.571648,52.710618],[-1.569285,52.710387],[-1.568848,52.709802],[-1.566092,52.710255],[-1.565011,52.711192],[-1.56387,52.711197],[-1.562228,52.713133],[-1.560553,52.713726],[-1.560452,52.714291],[-1.558727,52.715554],[-1.558457,52.716577],[-1.556519,52.716666],[-1.555573,52.717628],[-1.552386,52.719332],[-1.55008,52.720278],[-1.549959,52.722146],[-1.550436,52.723112],[-1.549914,52.724244],[-1.550242,52.725619],[-1.548661,52.726367],[-1.547768,52.727266],[-1.546658,52.727306],[-1.545318,52.728237],[-1.545226,52.73103],[-1.544639,52.73169],[-1.545334,52.732921],[-1.550915,52.735409],[-1.553308,52.738314],[-1.554702,52.739388],[-1.556175,52.739814],[-1.556733,52.740529],[-1.557448,52.744903],[-1.560758,52.748109],[-1.560477,52.748644],[-1.562493,52.750587],[-1.560388,52.752116],[-1.558142,52.755532],[-1.557629,52.757161],[-1.554426,52.75842],[-1.554843,52.762021],[-1.552698,52.762097],[-1.552787,52.763333],[-1.547442,52.764134],[-1.544747,52.763061],[-1.54185,52.76056],[-1.53962,52.760086],[-1.537321,52.760473],[-1.534781,52.762006],[-1.532938,52.762572],[-1.529584,52.761094],[-1.526929,52.762315],[-1.525003,52.763984],[-1.525348,52.765528],[-1.522014,52.765891],[-1.517691,52.766971],[-1.511785,52.7674],[-1.503943,52.767462],[-1.502122,52.766663],[-1.498763,52.764278],[-1.496453,52.760351],[-1.493984,52.759047],[-1.492428,52.759452],[-1.488252,52.762513],[-1.487793,52.762345],[-1.479926,52.763859],[-1.478463,52.763688],[-1.47714,52.765971],[-1.473344,52.76549],[-1.471831,52.766249],[-1.468756,52.766791],[-1.468342,52.767386],[-1.466452,52.767972],[-1.463549,52.771045],[-1.462155,52.771376],[-1.46042,52.774672],[-1.460414,52.776229],[-1.457092,52.779091],[-1.45937,52.779805],[-1.461052,52.781738],[-1.458293,52.78281],[-1.458841,52.784437],[-1.460876,52.786026],[-1.462808,52.786793],[-1.457539,52.78859],[-1.454873,52.788987],[-1.452183,52.789964],[-1.44996,52.789858],[-1.448046,52.790287],[-1.446811,52.791505],[-1.445163,52.792369],[-1.442502,52.792905],[-1.44189,52.793533],[-1.443115,52.796618],[-1.441973,52.797082],[-1.441002,52.798724],[-1.441379,52.802067],[-1.436227,52.802595],[-1.433544,52.802095],[-1.430097,52.802081],[-1.42599,52.800613],[-1.424974,52.801323],[-1.417705,52.801615],[-1.417065,52.803056],[-1.414032,52.807076],[-1.411777,52.809173],[-1.410164,52.810132],[-1.408753,52.812344],[-1.404134,52.816644],[-1.405791,52.81736],[-1.405206,52.818694],[-1.403567,52.818484],[-1.402319,52.820131],[-1.399313,52.821839],[-1.397794,52.823523],[-1.396979,52.824907],[-1.395581,52.825608],[-1.392078,52.829524],[-1.387936,52.833098],[-1.389512,52.833586],[-1.391503,52.833562],[-1.393123,52.834049],[-1.394323,52.836773],[-1.387577,52.838909],[-1.388213,52.839403],[-1.385493,52.840705],[-1.38595,52.841149],[-1.384786,52.843105],[-1.383126,52.843634],[-1.382771,52.844724],[-1.381125,52.846049],[-1.379366,52.846624],[-1.372415,52.8479],[-1.369854,52.848739],[-1.366937,52.850203],[-1.365537,52.851573],[-1.363927,52.853937],[-1.360719,52.855371],[-1.358057,52.856088],[-1.355021,52.855956],[-1.353927,52.855019],[-1.353113,52.853439],[-1.351,52.853415],[-1.350495,52.854749],[-1.352095,52.856402],[-1.351895,52.857639],[-1.348261,52.859357],[-1.34747,52.861268],[-1.343404,52.862795],[-1.34346,52.863259],[-1.346416,52.865222],[-1.345925,52.866811],[-1.344863,52.867533],[-1.342604,52.867614],[-1.34121,52.866436],[-1.340387,52.865072],[-1.338882,52.864611],[-1.336971,52.865139],[-1.332795,52.867175],[-1.331049,52.867147],[-1.327906,52.865841],[-1.325333,52.865982],[-1.324343,52.866594],[-1.323104,52.868297],[-1.319328,52.869498],[-1.319047,52.87],[-1.319307,52.872869],[-1.322824,52.872361],[-1.323749,52.873723],[-1.320595,52.873562],[-1.31954,52.875203],[-1.320167,52.875931],[-1.321972,52.876403],[-1.325731,52.875377],[-1.326914,52.874318],[-1.328671,52.874715],[-1.330164,52.875696],[-1.329973,52.878164],[-1.332819,52.876724],[-1.335224,52.876324],[-1.336133,52.878502],[-1.34044,52.879365],[-1.342634,52.879419],[-1.343467,52.880727],[-1.344966,52.880634],[-1.346302,52.879925],[-1.348539,52.880005],[-1.349801,52.881286],[-1.347487,52.882161],[-1.34686,52.882839],[-1.348113,52.885818],[-1.347204,52.885922],[-1.344018,52.885065],[-1.34179,52.885325],[-1.340977,52.886368],[-1.341646,52.887572],[-1.339054,52.888647],[-1.339298,52.889688],[-1.341075,52.890101],[-1.342755,52.889616],[-1.346537,52.890261],[-1.345405,52.888686],[-1.346452,52.887975],[-1.348276,52.887836],[-1.348698,52.888624],[-1.350301,52.889111],[-1.354364,52.888792],[-1.354834,52.889328],[-1.357043,52.889823],[-1.355987,52.89045],[-1.356345,52.891716],[-1.355326,52.893021],[-1.35618,52.894351],[-1.358534,52.895278],[-1.359288,52.893686],[-1.361418,52.892358],[-1.362797,52.892813],[-1.36152,52.894654],[-1.362393,52.896391],[-1.364735,52.896666],[-1.366284,52.89717],[-1.367611,52.895596],[-1.370825,52.89475],[-1.372266,52.894714],[-1.373185,52.895289],[-1.374286,52.898325],[-1.37818,52.901077],[-1.383099,52.901322],[-1.384716,52.90187],[-1.386506,52.901342],[-1.388263,52.901468],[-1.39364,52.901855],[-1.400335,52.901394],[-1.402772,52.900462],[-1.403491,52.896941],[-1.403107,52.895612],[-1.405826,52.895469],[-1.40592,52.894532],[-1.407898,52.891502],[-1.407588,52.889691],[-1.409283,52.889339],[-1.409864,52.888293],[-1.411006,52.884796],[-1.411662,52.884245],[-1.413779,52.884257],[-1.416736,52.884814],[-1.418913,52.884546],[-1.420377,52.881917],[-1.420556,52.879892],[-1.41959,52.87863],[-1.420093,52.878272],[-1.416465,52.875699],[-1.425407,52.873934],[-1.425182,52.872968],[-1.425821,52.872184],[-1.429778,52.87021],[-1.427528,52.868839],[-1.424996,52.868877],[-1.423568,52.865078],[-1.427955,52.864756],[-1.427681,52.863941],[-1.437907,52.862835],[-1.443562,52.861117],[-1.446227,52.861309],[-1.444878,52.862153],[-1.44485,52.863204],[-1.4471,52.864506],[-1.449908,52.866949],[-1.450652,52.866982],[-1.452903,52.868324],[-1.463758,52.872486],[-1.467165,52.872923],[-1.467662,52.870536],[-1.484422,52.871232],[-1.483827,52.870337],[-1.490357,52.869337],[-1.493667,52.869741],[-1.495191,52.870378],[-1.493595,52.873635],[-1.496659,52.875838],[-1.496714,52.876849],[-1.49989,52.877264],[-1.499995,52.879019],[-1.499143,52.881211],[-1.499495,52.882704],[-1.502004,52.881602],[-1.502779,52.882557],[-1.503112,52.884845],[-1.514612,52.884706],[-1.51583,52.886458],[-1.523198,52.887341],[-1.52426,52.888847],[-1.524743,52.890636],[-1.526372,52.890911],[-1.528417,52.890216],[-1.53066,52.888983],[-1.533946,52.888037],[-1.534354,52.888437],[-1.538671,52.88855],[-1.540371,52.889556],[-1.541691,52.88954],[-1.541667,52.892131],[-1.539638,52.893942],[-1.541083,52.894092],[-1.542433,52.895152],[-1.543072,52.896395],[-1.542434,52.896773],[-1.544219,52.898776],[-1.544975,52.90033],[-1.547477,52.899614],[-1.549994,52.90222],[-1.551153,52.901844],[-1.55511,52.906051],[-1.55389,52.906264],[-1.554652,52.908552],[-1.554037,52.909209],[-1.556439,52.913527],[-1.556852,52.914679],[-1.551068,52.917053],[-1.551703,52.918457],[-1.551875,52.920545],[-1.552876,52.922578],[-1.549609,52.922825],[-1.544069,52.924208],[-1.545728,52.926637],[-1.54734,52.926691],[-1.549401,52.927927],[-1.549463,52.928582],[-1.551096,52.928924],[-1.554601,52.930473],[-1.558562,52.932996],[-1.562071,52.933918],[-1.563487,52.93398],[-1.567165,52.933069],[-1.570102,52.935795],[-1.572061,52.935638],[-1.574267,52.935899],[-1.578064,52.935002],[-1.579798,52.935961],[-1.582932,52.936711],[-1.584486,52.936499],[-1.585352,52.9358],[-1.58861,52.935027],[-1.594239,52.93761],[-1.596347,52.937337],[-1.597865,52.937775],[-1.601647,52.937772],[-1.60289,52.936701],[-1.607252,52.939743],[-1.610054,52.940855],[-1.608833,52.94187],[-1.610095,52.942609],[-1.60732,52.944349],[-1.608304,52.945048],[-1.60656,52.945659],[-1.6058,52.946393],[-1.607137,52.947172]]]},"properties":{"LAD22CD":"E07000039","LAD22NM":"South Derbyshire","BNG_E":431443,"BNG_N":325363,"LONG":-1.5348,"LAT":52.8249,"GlobalID":"2bb60476-06c8-4d3a-9cb1-224169adeb31"},"id":78}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.309658,50.633692],[-3.310309,50.633488],[-3.310339,50.631797],[-3.309239,50.631814],[-3.309658,50.633692]]],[[[-3.052399,50.908277],[-3.053112,50.908742],[-3.056219,50.908043],[-3.057197,50.908418],[-3.060071,50.908455],[-3.078088,50.905435],[-3.080546,50.905435],[-3.087893,50.906255],[-3.089851,50.906114],[-3.095451,50.904928],[-3.099475,50.904649],[-3.101471,50.904075],[-3.103569,50.90411],[-3.106997,50.902851],[-3.109587,50.902438],[-3.112053,50.902403],[-3.115871,50.900803],[-3.118291,50.899359],[-3.122079,50.89816],[-3.123265,50.899453],[-3.126341,50.90172],[-3.1311,50.897247],[-3.135126,50.895114],[-3.139626,50.891461],[-3.140145,50.892071],[-3.144186,50.891396],[-3.142429,50.889251],[-3.151207,50.886452],[-3.165246,50.884246],[-3.163648,50.882299],[-3.165829,50.881401],[-3.166675,50.880429],[-3.168463,50.880118],[-3.17056,50.878836],[-3.176156,50.877084],[-3.178111,50.878237],[-3.18121,50.877106],[-3.182147,50.876435],[-3.187691,50.877359],[-3.187529,50.8787],[-3.189601,50.878756],[-3.196862,50.877993],[-3.198325,50.877478],[-3.201003,50.878139],[-3.201718,50.877637],[-3.205108,50.877586],[-3.207233,50.877078],[-3.21108,50.878639],[-3.211988,50.879659],[-3.21409,50.880788],[-3.215318,50.882592],[-3.216077,50.882835],[-3.21808,50.884739],[-3.218209,50.886371],[-3.215632,50.886827],[-3.215816,50.887586],[-3.2183,50.887605],[-3.218687,50.888146],[-3.21806,50.889377],[-3.217587,50.89289],[-3.220556,50.89334],[-3.22191,50.893989],[-3.227163,50.894711],[-3.228635,50.894035],[-3.230371,50.894364],[-3.231438,50.895015],[-3.233045,50.89505],[-3.234035,50.894306],[-3.234849,50.892901],[-3.238797,50.890367],[-3.243647,50.889462],[-3.243115,50.888598],[-3.244221,50.887374],[-3.245869,50.887217],[-3.247174,50.887552],[-3.249161,50.886385],[-3.251813,50.883958],[-3.252782,50.881194],[-3.253528,50.880421],[-3.253199,50.879081],[-3.254142,50.878621],[-3.256736,50.878153],[-3.259021,50.876996],[-3.262497,50.873918],[-3.265377,50.872],[-3.268708,50.870475],[-3.27485,50.868177],[-3.278026,50.867857],[-3.282685,50.866302],[-3.283211,50.863478],[-3.279396,50.861073],[-3.276446,50.859696],[-3.275867,50.859087],[-3.276973,50.858048],[-3.28128,50.855813],[-3.284107,50.854706],[-3.289385,50.853928],[-3.291679,50.854431],[-3.29321,50.854149],[-3.297607,50.854715],[-3.30612,50.854431],[-3.312037,50.855505],[-3.318547,50.854785],[-3.319398,50.856053],[-3.319241,50.856952],[-3.321559,50.857523],[-3.325336,50.856981],[-3.328272,50.856786],[-3.331068,50.856081],[-3.330089,50.852696],[-3.33075,50.851645],[-3.332505,50.85202],[-3.339374,50.849649],[-3.34339,50.847574],[-3.343061,50.846192],[-3.348169,50.846736],[-3.348594,50.844334],[-3.34592,50.842852],[-3.344782,50.841656],[-3.342926,50.843039],[-3.341648,50.840509],[-3.34259,50.83738],[-3.342259,50.83628],[-3.340712,50.835412],[-3.341749,50.834133],[-3.343471,50.833083],[-3.344872,50.831226],[-3.342848,50.831001],[-3.342809,50.830433],[-3.341235,50.828381],[-3.342257,50.827728],[-3.343568,50.825834],[-3.350896,50.827292],[-3.353845,50.826445],[-3.357012,50.826903],[-3.355409,50.83149],[-3.355898,50.833905],[-3.362357,50.831777],[-3.364015,50.832544],[-3.36675,50.829325],[-3.367624,50.829534],[-3.367473,50.827232],[-3.368001,50.823564],[-3.366988,50.820534],[-3.361747,50.820994],[-3.35991,50.814841],[-3.359959,50.811877],[-3.362537,50.812144],[-3.363034,50.811652],[-3.366853,50.812216],[-3.368308,50.81087],[-3.373149,50.810984],[-3.376536,50.810135],[-3.380471,50.810193],[-3.380867,50.810736],[-3.383857,50.810219],[-3.387179,50.808765],[-3.388716,50.808789],[-3.391248,50.807926],[-3.394915,50.807794],[-3.397136,50.807394],[-3.399204,50.806639],[-3.401993,50.806531],[-3.405875,50.805048],[-3.410473,50.804605],[-3.41067,50.805412],[-3.412326,50.806677],[-3.413839,50.806879],[-3.416663,50.808471],[-3.417892,50.810459],[-3.419865,50.811472],[-3.424276,50.811557],[-3.426034,50.812402],[-3.427866,50.811585],[-3.429752,50.812042],[-3.431992,50.810774],[-3.433506,50.809305],[-3.434473,50.809449],[-3.436043,50.808076],[-3.437631,50.808043],[-3.438006,50.806548],[-3.4395,50.806015],[-3.439232,50.80524],[-3.440097,50.802331],[-3.44137,50.80259],[-3.444225,50.801172],[-3.444068,50.800556],[-3.446419,50.799774],[-3.449543,50.799953],[-3.451152,50.799659],[-3.451947,50.80013],[-3.454541,50.800536],[-3.456042,50.801672],[-3.456929,50.802873],[-3.45857,50.803352],[-3.46075,50.803343],[-3.463056,50.802278],[-3.464137,50.80098],[-3.466112,50.800882],[-3.465918,50.799379],[-3.466566,50.798741],[-3.468449,50.798162],[-3.467079,50.797378],[-3.468263,50.796845],[-3.46973,50.795525],[-3.471963,50.797115],[-3.472645,50.797144],[-3.476305,50.794968],[-3.478194,50.792679],[-3.479421,50.792995],[-3.480349,50.792469],[-3.481742,50.792672],[-3.483302,50.791987],[-3.483505,50.793841],[-3.482019,50.794475],[-3.480101,50.79447],[-3.47794,50.795643],[-3.477713,50.796373],[-3.479193,50.796832],[-3.48075,50.798439],[-3.480749,50.799367],[-3.490282,50.799961],[-3.493953,50.799423],[-3.502518,50.799045],[-3.502238,50.801042],[-3.502664,50.803933],[-3.500193,50.805952],[-3.498599,50.808818],[-3.497158,50.812285],[-3.496751,50.816955],[-3.49759,50.817768],[-3.499022,50.821406],[-3.499473,50.825115],[-3.505409,50.825634],[-3.506056,50.826751],[-3.507403,50.827281],[-3.508085,50.825139],[-3.506953,50.824045],[-3.50716,50.822356],[-3.505269,50.821749],[-3.50656,50.820555],[-3.509656,50.820448],[-3.510039,50.819381],[-3.509715,50.817399],[-3.510036,50.816618],[-3.509143,50.815802],[-3.507291,50.815276],[-3.505726,50.815551],[-3.504997,50.814391],[-3.507851,50.813821],[-3.507706,50.812221],[-3.512073,50.810979],[-3.512446,50.80785],[-3.511003,50.805019],[-3.51247,50.804691],[-3.514118,50.802162],[-3.517822,50.79898],[-3.518374,50.797424],[-3.521531,50.796451],[-3.526684,50.797534],[-3.526426,50.795415],[-3.524757,50.793676],[-3.523929,50.791958],[-3.523788,50.789195],[-3.524712,50.787003],[-3.528077,50.788883],[-3.533938,50.790868],[-3.536758,50.791604],[-3.541706,50.790902],[-3.55432,50.791622],[-3.56153,50.790993],[-3.572012,50.788534],[-3.570745,50.787042],[-3.570442,50.785515],[-3.569178,50.784153],[-3.568996,50.781006],[-3.567012,50.779487],[-3.564124,50.779399],[-3.563215,50.779042],[-3.563353,50.775005],[-3.559546,50.77513],[-3.557927,50.774765],[-3.555924,50.775076],[-3.553734,50.774487],[-3.552129,50.774778],[-3.550092,50.774564],[-3.547416,50.772983],[-3.552115,50.771186],[-3.551352,50.769645],[-3.551397,50.768674],[-3.550574,50.767441],[-3.55111,50.765235],[-3.558362,50.762332],[-3.559562,50.759833],[-3.556431,50.758891],[-3.556807,50.75795],[-3.559597,50.757655],[-3.561672,50.75836],[-3.570544,50.760237],[-3.57094,50.75822],[-3.569388,50.755717],[-3.573562,50.75565],[-3.576303,50.755072],[-3.576039,50.753957],[-3.573883,50.752652],[-3.578019,50.749767],[-3.580475,50.747143],[-3.584311,50.744976],[-3.585483,50.743874],[-3.583083,50.741559],[-3.579467,50.741836],[-3.573378,50.744114],[-3.569669,50.74501],[-3.567537,50.745532],[-3.564717,50.745405],[-3.559971,50.744692],[-3.555929,50.744836],[-3.552961,50.745463],[-3.552026,50.745131],[-3.551641,50.747644],[-3.550344,50.748795],[-3.548215,50.747303],[-3.547461,50.748975],[-3.544066,50.750917],[-3.542104,50.751794],[-3.537369,50.75313],[-3.536132,50.754189],[-3.534953,50.755949],[-3.530542,50.756974],[-3.529046,50.756558],[-3.528844,50.755472],[-3.526222,50.755304],[-3.526346,50.757657],[-3.525422,50.758369],[-3.524067,50.757658],[-3.522493,50.757563],[-3.515484,50.759189],[-3.514648,50.759545],[-3.513931,50.760788],[-3.512275,50.761099],[-3.50742,50.760607],[-3.506861,50.758658],[-3.505249,50.75718],[-3.504607,50.757332],[-3.502784,50.75577],[-3.502748,50.755271],[-3.498973,50.754307],[-3.496902,50.754403],[-3.492956,50.754034],[-3.489691,50.752941],[-3.484074,50.749895],[-3.481021,50.746987],[-3.478732,50.746827],[-3.475423,50.745908],[-3.474984,50.746278],[-3.469711,50.745381],[-3.467506,50.744296],[-3.466587,50.744318],[-3.464932,50.743347],[-3.465996,50.742072],[-3.462571,50.739302],[-3.460433,50.739198],[-3.462096,50.734109],[-3.462437,50.728816],[-3.462264,50.716997],[-3.463658,50.712576],[-3.468096,50.705769],[-3.471422,50.698814],[-3.470884,50.697766],[-3.468265,50.698729],[-3.46798,50.697782],[-3.466112,50.695494],[-3.463521,50.696129],[-3.462995,50.695332],[-3.460886,50.695619],[-3.460886,50.695201],[-3.461092,50.694899],[-3.461161,50.694227],[-3.460771,50.693406],[-3.460466,50.693246],[-3.458905,50.692637],[-3.46031,50.691364],[-3.460272,50.690795],[-3.460158,50.690168],[-3.459814,50.689985],[-3.458761,50.689679],[-3.458217,50.688675],[-3.459181,50.68713],[-3.459237,50.685674],[-3.458661,50.684679],[-3.458444,50.684526],[-3.457231,50.683837],[-3.456826,50.682894],[-3.456439,50.682336],[-3.456195,50.682241],[-3.455838,50.682294],[-3.454703,50.68393],[-3.451975,50.683744],[-3.450736,50.682169],[-3.451464,50.678987],[-3.452101,50.677499],[-3.451399,50.676961],[-3.45085,50.674451],[-3.449747,50.67281],[-3.446625,50.670728],[-3.446175,50.669657],[-3.444712,50.668904],[-3.43995,50.660463],[-3.435993,50.656051],[-3.434719,50.652377],[-3.433116,50.650149],[-3.433855,50.648459],[-3.432232,50.647829],[-3.432878,50.646068],[-3.430051,50.643848],[-3.424789,50.640608],[-3.423096,50.638848],[-3.421627,50.635073],[-3.417612,50.632094],[-3.415517,50.629191],[-3.41625,50.627408],[-3.415609,50.623984],[-3.416693,50.621286],[-3.418742,50.621013],[-3.419924,50.62158],[-3.42148,50.621419],[-3.42219,50.620437],[-3.420507,50.619705],[-3.424087,50.619599],[-3.426516,50.61805],[-3.425413,50.617375],[-3.424171,50.618492],[-3.42232,50.617846],[-3.422997,50.616634],[-3.415801,50.615822],[-3.413581,50.614972],[-3.409478,50.612354],[-3.407336,50.611632],[-3.401127,50.611318],[-3.399942,50.611078],[-3.398331,50.61005],[-3.393256,50.609867],[-3.388045,50.609051],[-3.387908,50.608175],[-3.385937,50.60734],[-3.385456,50.606751],[-3.381197,50.60755],[-3.376545,50.607895],[-3.373859,50.608676],[-3.369059,50.609509],[-3.363977,50.609772],[-3.362959,50.607813],[-3.35963,50.607487],[-3.35867,50.607011],[-3.3579,50.608654],[-3.357769,50.612389],[-3.359853,50.614037],[-3.35912,50.615557],[-3.35525,50.617893],[-3.349478,50.620289],[-3.334972,50.625229],[-3.324273,50.627913],[-3.314523,50.6294],[-3.3068,50.629574],[-3.311416,50.631606],[-3.310357,50.63288],[-3.310362,50.63486],[-3.30926,50.634508],[-3.310058,50.643986],[-3.309196,50.639036],[-3.309119,50.636366],[-3.308395,50.63468],[-3.308394,50.632694],[-3.307074,50.632031],[-3.305749,50.630124],[-3.303727,50.629807],[-3.302701,50.630793],[-3.300643,50.631512],[-3.30005,50.632639],[-3.296829,50.635015],[-3.294486,50.63585],[-3.292974,50.638836],[-3.289455,50.641],[-3.288889,50.640945],[-3.288792,50.643236],[-3.287432,50.644969],[-3.287337,50.64565],[-3.285962,50.6467],[-3.285071,50.648499],[-3.2853,50.652365],[-3.283749,50.654178],[-3.280102,50.655809],[-3.281107,50.656978],[-3.280577,50.657719],[-3.276342,50.661071],[-3.275995,50.662306],[-3.273552,50.662649],[-3.27114,50.664464],[-3.268884,50.664892],[-3.267137,50.666699],[-3.267533,50.667509],[-3.266718,50.669931],[-3.264241,50.671206],[-3.25841,50.673062],[-3.252609,50.674459],[-3.248449,50.675164],[-3.245642,50.675276],[-3.239974,50.677389],[-3.235463,50.678264],[-3.234092,50.678875],[-3.230353,50.679448],[-3.213453,50.681531],[-3.206949,50.682147],[-3.199149,50.682399],[-3.197663,50.683114],[-3.193132,50.684406],[-3.18473,50.684951],[-3.167015,50.684936],[-3.158759,50.686079],[-3.151228,50.685404],[-3.147074,50.685402],[-3.141146,50.685907],[-3.138684,50.686496],[-3.126545,50.686889],[-3.115274,50.686491],[-3.105284,50.685389],[-3.100336,50.68567],[-3.096021,50.685226],[-3.095551,50.68657],[-3.094552,50.687468],[-3.094706,50.689822],[-3.09277,50.690429],[-3.093044,50.692851],[-3.091928,50.695261],[-3.09047,50.695966],[-3.087538,50.696474],[-3.086315,50.698072],[-3.084582,50.698966],[-3.084494,50.70065],[-3.08244,50.701615],[-3.079039,50.702438],[-3.072784,50.70305],[-3.060908,50.703024],[-3.054867,50.702524],[-3.057973,50.703502],[-3.059473,50.703612],[-3.060796,50.705526],[-3.058725,50.716662],[-3.058888,50.718754],[-3.056197,50.721088],[-3.057578,50.722425],[-3.055149,50.723167],[-3.05481,50.722567],[-3.057138,50.7224],[-3.055654,50.720873],[-3.056928,50.719567],[-3.054501,50.718223],[-3.054774,50.716582],[-3.056151,50.714926],[-3.055978,50.713781],[-3.056558,50.711499],[-3.059071,50.705191],[-3.058153,50.70388],[-3.054829,50.702922],[-3.053604,50.701862],[-3.047392,50.701508],[-3.028803,50.698714],[-3.022628,50.698391],[-3.006689,50.700403],[-3.001667,50.702128],[-2.997732,50.704588],[-2.995009,50.705461],[-2.992149,50.705576],[-2.985694,50.704957],[-2.984517,50.704625],[-2.982007,50.705091],[-2.975776,50.708222],[-2.97256,50.708901],[-2.97085,50.709569],[-2.966811,50.712742],[-2.96456,50.713042],[-2.958259,50.713104],[-2.955066,50.713847],[-2.953172,50.714539],[-2.951746,50.715957],[-2.947497,50.718274],[-2.948705,50.719774],[-2.948733,50.721263],[-2.952603,50.724594],[-2.953068,50.728497],[-2.949602,50.732347],[-2.947779,50.73378],[-2.946619,50.735846],[-2.946585,50.737293],[-2.945655,50.737819],[-2.940634,50.742703],[-2.937863,50.744097],[-2.938249,50.745965],[-2.940586,50.748637],[-2.940573,50.749893],[-2.939683,50.751839],[-2.936512,50.752993],[-2.935063,50.754266],[-2.939423,50.757112],[-2.949613,50.760918],[-2.952591,50.761382],[-2.95306,50.762171],[-2.956039,50.763642],[-2.955946,50.764971],[-2.954334,50.76771],[-2.948899,50.772025],[-2.940955,50.777451],[-2.932717,50.781483],[-2.929653,50.782432],[-2.918728,50.783624],[-2.913556,50.78449],[-2.897457,50.78614],[-2.895639,50.787539],[-2.893745,50.789859],[-2.89058,50.790517],[-2.88704,50.792523],[-2.887762,50.793441],[-2.889315,50.793926],[-2.886684,50.794703],[-2.887029,50.796178],[-2.888814,50.798406],[-2.888755,50.799721],[-2.889809,50.800679],[-2.890416,50.802566],[-2.89023,50.803449],[-2.89156,50.803776],[-2.892868,50.804794],[-2.895719,50.804949],[-2.897189,50.804523],[-2.89981,50.80517],[-2.902609,50.804618],[-2.905433,50.805267],[-2.907349,50.804672],[-2.911296,50.804624],[-2.912086,50.805246],[-2.915307,50.805293],[-2.917615,50.805919],[-2.918557,50.805631],[-2.920171,50.806676],[-2.921916,50.806914],[-2.922722,50.807594],[-2.924899,50.808291],[-2.928957,50.808424],[-2.929779,50.809072],[-2.934462,50.809182],[-2.936736,50.810081],[-2.938402,50.809835],[-2.941506,50.811725],[-2.942589,50.811936],[-2.944122,50.813399],[-2.947961,50.815426],[-2.950916,50.814985],[-2.952733,50.815065],[-2.956614,50.815857],[-2.958324,50.815809],[-2.959989,50.816397],[-2.958626,50.817759],[-2.958171,50.819987],[-2.956837,50.820491],[-2.955509,50.820183],[-2.954321,50.821172],[-2.955935,50.823019],[-2.95767,50.824287],[-2.957556,50.824829],[-2.959048,50.826081],[-2.962929,50.827731],[-2.96169,50.829801],[-2.965579,50.831792],[-2.966327,50.833639],[-2.969828,50.834203],[-2.968538,50.840511],[-2.969405,50.841734],[-2.971185,50.842893],[-2.972424,50.844347],[-2.972572,50.84603],[-2.971003,50.847719],[-2.970103,50.849612],[-2.968056,50.851304],[-2.971155,50.851452],[-2.972054,50.851893],[-2.974636,50.852343],[-2.973849,50.85386],[-2.973588,50.855661],[-2.976959,50.855559],[-2.97984,50.854811],[-2.984364,50.854963],[-2.98759,50.855933],[-2.99056,50.855685],[-2.993471,50.854916],[-2.994444,50.855146],[-2.996264,50.854672],[-2.998552,50.850965],[-3.000487,50.851686],[-3.001644,50.851673],[-3.00364,50.853389],[-3.006238,50.853854],[-3.01145,50.857208],[-3.012599,50.856901],[-3.012931,50.855722],[-3.0141,50.855134],[-3.018491,50.855788],[-3.021105,50.855506],[-3.031819,50.851735],[-3.034785,50.850946],[-3.036806,50.851065],[-3.036084,50.852853],[-3.037089,50.854395],[-3.035734,50.85625],[-3.036366,50.858245],[-3.034592,50.859046],[-3.033309,50.861163],[-3.032632,50.861639],[-3.034727,50.862442],[-3.034595,50.864],[-3.036652,50.865182],[-3.036985,50.86678],[-3.038442,50.868315],[-3.039287,50.8687],[-3.042026,50.868855],[-3.043733,50.868104],[-3.045326,50.869576],[-3.046761,50.871379],[-3.051579,50.872765],[-3.054062,50.873043],[-3.05375,50.873636],[-3.05464,50.875761],[-3.053593,50.877681],[-3.053843,50.878392],[-3.05251,50.879004],[-3.051908,50.880222],[-3.051768,50.882657],[-3.053295,50.88342],[-3.052229,50.884891],[-3.0523,50.886025],[-3.053345,50.886795],[-3.053739,50.888578],[-3.055392,50.890187],[-3.05568,50.891133],[-3.055086,50.894588],[-3.053866,50.895458],[-3.054748,50.896503],[-3.053044,50.897684],[-3.053253,50.898672],[-3.051466,50.901713],[-3.050144,50.903007],[-3.050522,50.90458],[-3.050389,50.905986],[-3.051326,50.906323],[-3.052399,50.908277]]]]},"properties":{"LAD22CD":"E07000040","LAD22NM":"East Devon","BNG_E":313787,"BNG_N":96051,"LONG":-3.22364,"LAT":50.75761,"GlobalID":"4adae678-9a5d-406b-9956-15a7dfb16bfd"},"id":79}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.493818,50.694704],[-3.49516,50.694879],[-3.498337,50.696643],[-3.499046,50.696299],[-3.496623,50.694066],[-3.494236,50.693618],[-3.491753,50.693737],[-3.493818,50.694704]]],[[[-3.460886,50.695619],[-3.462995,50.695332],[-3.463521,50.696129],[-3.466112,50.695494],[-3.46798,50.697782],[-3.468265,50.698729],[-3.470884,50.697766],[-3.471422,50.698814],[-3.468096,50.705769],[-3.463658,50.712576],[-3.462264,50.716997],[-3.462437,50.728816],[-3.462096,50.734109],[-3.460433,50.739198],[-3.462571,50.739302],[-3.465996,50.742072],[-3.464932,50.743347],[-3.466587,50.744318],[-3.467506,50.744296],[-3.469711,50.745381],[-3.474984,50.746278],[-3.475423,50.745908],[-3.478732,50.746827],[-3.481021,50.746987],[-3.484074,50.749895],[-3.489691,50.752941],[-3.492956,50.754034],[-3.496902,50.754403],[-3.498973,50.754307],[-3.502748,50.755271],[-3.502784,50.75577],[-3.504607,50.757332],[-3.505249,50.75718],[-3.506861,50.758658],[-3.50742,50.760607],[-3.512275,50.761099],[-3.513931,50.760788],[-3.514648,50.759545],[-3.515484,50.759189],[-3.522493,50.757563],[-3.524067,50.757658],[-3.525422,50.758369],[-3.526346,50.757657],[-3.526222,50.755304],[-3.528844,50.755472],[-3.529046,50.756558],[-3.530542,50.756974],[-3.534953,50.755949],[-3.536132,50.754189],[-3.537369,50.75313],[-3.542104,50.751794],[-3.544066,50.750917],[-3.547461,50.748975],[-3.548215,50.747303],[-3.550344,50.748795],[-3.551641,50.747644],[-3.552026,50.745131],[-3.552961,50.745463],[-3.555929,50.744836],[-3.559971,50.744692],[-3.564717,50.745405],[-3.567537,50.745532],[-3.569669,50.74501],[-3.569025,50.740985],[-3.566987,50.740734],[-3.56602,50.739635],[-3.567369,50.737353],[-3.564433,50.735588],[-3.563829,50.733642],[-3.562736,50.732276],[-3.561662,50.731954],[-3.560576,50.730102],[-3.563061,50.728766],[-3.56602,50.729246],[-3.567641,50.728309],[-3.566895,50.727395],[-3.570218,50.727797],[-3.567851,50.726165],[-3.566684,50.72446],[-3.565736,50.723794],[-3.564627,50.717852],[-3.565571,50.716709],[-3.565749,50.715408],[-3.568678,50.715112],[-3.566893,50.714179],[-3.566201,50.711217],[-3.56299,50.709039],[-3.562745,50.706903],[-3.56005,50.706151],[-3.5507,50.704439],[-3.547668,50.703235],[-3.545481,50.70191],[-3.542999,50.699409],[-3.539092,50.692918],[-3.538142,50.693407],[-3.53371,50.692728],[-3.529388,50.692817],[-3.526832,50.69532],[-3.52509,50.69366],[-3.522818,50.692577],[-3.520899,50.692526],[-3.518779,50.693033],[-3.517749,50.692486],[-3.510871,50.692229],[-3.506782,50.691116],[-3.50541,50.691416],[-3.503261,50.692421],[-3.50177,50.694325],[-3.499579,50.694194],[-3.496028,50.692964],[-3.49435,50.692741],[-3.49363,50.692011],[-3.493888,50.690436],[-3.494801,50.68985],[-3.492728,50.688611],[-3.490237,50.688266],[-3.487823,50.688882],[-3.483888,50.688229],[-3.482544,50.687792],[-3.482341,50.68659],[-3.480808,50.686044],[-3.476929,50.683333],[-3.470467,50.681851],[-3.469828,50.682253],[-3.471076,50.682932],[-3.475421,50.683481],[-3.476951,50.684081],[-3.480502,50.687209],[-3.483218,50.688612],[-3.4818,50.689468],[-3.482451,50.689967],[-3.485157,50.689782],[-3.486525,50.689962],[-3.487869,50.690795],[-3.488973,50.69224],[-3.490635,50.693166],[-3.495637,50.693308],[-3.497658,50.693978],[-3.499819,50.695884],[-3.501667,50.698206],[-3.49826,50.696681],[-3.495138,50.695015],[-3.494024,50.694979],[-3.488859,50.692992],[-3.487744,50.69219],[-3.487051,50.691025],[-3.485982,50.690436],[-3.484337,50.690444],[-3.482573,50.691291],[-3.479467,50.690537],[-3.475182,50.688103],[-3.47315,50.687354],[-3.47196,50.684957],[-3.468806,50.683601],[-3.467786,50.683546],[-3.46473,50.680222],[-3.463956,50.680317],[-3.463345,50.677957],[-3.462454,50.67706],[-3.461323,50.677069],[-3.458994,50.675398],[-3.456369,50.674942],[-3.452951,50.678482],[-3.45177,50.680526],[-3.451517,50.682649],[-3.452419,50.683405],[-3.454393,50.683764],[-3.454982,50.682257],[-3.45666,50.682043],[-3.457529,50.683781],[-3.45956,50.684861],[-3.459461,50.686889],[-3.458815,50.687853],[-3.458519,50.688392],[-3.458856,50.68941],[-3.460339,50.6901],[-3.460525,50.691499],[-3.459248,50.69236],[-3.459121,50.692456],[-3.459535,50.69276],[-3.45998,50.692993],[-3.460808,50.693219],[-3.461293,50.693686],[-3.46123,50.695016],[-3.460886,50.695619]]]]},"properties":{"LAD22CD":"E07000041","LAD22NM":"Exeter","BNG_E":293239,"BNG_N":92005,"LONG":-3.51368,"LAT":50.71782,"GlobalID":"d2641fac-ff77-4425-8650-01b1d1ed0e1e"},"id":80}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.144186,50.891396],[-3.147923,50.891746],[-3.152877,50.893828],[-3.15392,50.895265],[-3.154134,50.898017],[-3.156156,50.900075],[-3.159364,50.900812],[-3.162962,50.900927],[-3.163892,50.900648],[-3.167756,50.900824],[-3.170397,50.900373],[-3.171856,50.90277],[-3.171478,50.905993],[-3.170556,50.90759],[-3.172737,50.907889],[-3.175832,50.907645],[-3.177526,50.908175],[-3.180462,50.908474],[-3.187963,50.910344],[-3.186242,50.913103],[-3.184289,50.914479],[-3.182881,50.916631],[-3.180226,50.918751],[-3.179166,50.920085],[-3.180299,50.922929],[-3.17755,50.923893],[-3.176225,50.923874],[-3.17528,50.924567],[-3.172438,50.925638],[-3.173475,50.926924],[-3.172874,50.928638],[-3.173557,50.930651],[-3.173073,50.931527],[-3.172461,50.935781],[-3.171319,50.936849],[-3.170205,50.939762],[-3.165227,50.944141],[-3.163946,50.945973],[-3.165371,50.946511],[-3.166479,50.947713],[-3.171828,50.947412],[-3.184543,50.948666],[-3.188919,50.948559],[-3.195783,50.947508],[-3.218347,50.943281],[-3.226303,50.943987],[-3.228073,50.943822],[-3.232515,50.944147],[-3.240262,50.942902],[-3.244329,50.942966],[-3.254831,50.941846],[-3.256706,50.943337],[-3.262138,50.944093],[-3.264294,50.946582],[-3.2725,50.949015],[-3.276504,50.95087],[-3.28441,50.953764],[-3.29007,50.955117],[-3.292461,50.954899],[-3.293848,50.955139],[-3.295629,50.956649],[-3.298283,50.958126],[-3.300095,50.958702],[-3.30156,50.960576],[-3.300278,50.961757],[-3.301819,50.963057],[-3.305468,50.964958],[-3.312153,50.9675],[-3.315757,50.969639],[-3.317666,50.970368],[-3.320314,50.970999],[-3.320412,50.972418],[-3.321372,50.972772],[-3.323458,50.974481],[-3.322843,50.975612],[-3.323673,50.976865],[-3.323178,50.977529],[-3.325882,50.979093],[-3.327155,50.979125],[-3.327841,50.979855],[-3.330835,50.981098],[-3.331342,50.981788],[-3.33367,50.982788],[-3.335217,50.982779],[-3.33941,50.981112],[-3.350761,50.980119],[-3.351544,50.97976],[-3.355299,50.979322],[-3.359817,50.978103],[-3.362274,50.978126],[-3.364643,50.978825],[-3.366172,50.978946],[-3.369158,50.978581],[-3.372452,50.977279],[-3.378664,50.977508],[-3.379235,50.980576],[-3.380468,50.982539],[-3.380471,50.984312],[-3.381301,50.986794],[-3.382996,50.989279],[-3.383073,50.991031],[-3.382656,50.991873],[-3.383428,50.994537],[-3.382101,50.995924],[-3.381684,50.997041],[-3.381911,50.998248],[-3.381419,50.999208],[-3.38241,51.004537],[-3.380868,51.006698],[-3.380488,51.008137],[-3.380141,51.011562],[-3.380846,51.013391],[-3.378897,51.015609],[-3.37908,51.01659],[-3.380488,51.018486],[-3.389904,51.019776],[-3.399779,51.019728],[-3.402927,51.020117],[-3.407535,51.019523],[-3.414174,51.019703],[-3.412965,51.021385],[-3.415769,51.023623],[-3.415998,51.024476],[-3.41506,51.027199],[-3.415702,51.027836],[-3.417821,51.028676],[-3.418748,51.029627],[-3.421304,51.030778],[-3.426815,51.031405],[-3.429273,51.030636],[-3.430852,51.030921],[-3.436782,51.030261],[-3.440231,51.029129],[-3.445447,51.028068],[-3.446407,51.027421],[-3.446436,51.025864],[-3.450492,51.025589],[-3.45431,51.026699],[-3.459752,51.025251],[-3.461839,51.025563],[-3.463689,51.025262],[-3.468526,51.02805],[-3.472459,51.029181],[-3.475339,51.02966],[-3.478346,51.031596],[-3.484264,51.03381],[-3.488526,51.032421],[-3.495592,51.031021],[-3.502962,51.030343],[-3.50505,51.029906],[-3.50975,51.027045],[-3.513096,51.025876],[-3.51485,51.02555],[-3.519563,51.025397],[-3.520493,51.024096],[-3.519371,51.022534],[-3.520991,51.020828],[-3.520319,51.018959],[-3.521739,51.017892],[-3.520565,51.016654],[-3.520701,51.015847],[-3.518882,51.014795],[-3.523032,51.012983],[-3.522621,51.010791],[-3.523236,51.0098],[-3.526277,51.009759],[-3.527325,51.007644],[-3.527042,51.006082],[-3.527564,51.005522],[-3.53505,51.003347],[-3.534388,51.00449],[-3.538368,51.004592],[-3.5415,51.004216],[-3.548396,51.004752],[-3.550044,51.00446],[-3.554309,51.004605],[-3.559626,51.005251],[-3.563477,51.004936],[-3.569186,51.005034],[-3.570984,51.004726],[-3.578252,51.005588],[-3.591647,51.006166],[-3.603208,51.007233],[-3.605768,51.006056],[-3.607361,51.004444],[-3.606225,51.003338],[-3.604309,51.002329],[-3.603871,51.001321],[-3.601904,51.000357],[-3.601783,50.999666],[-3.60051,50.99866],[-3.598778,50.995661],[-3.599715,50.994914],[-3.600532,50.9935],[-3.600462,50.992021],[-3.602008,50.991064],[-3.605118,50.990224],[-3.606843,50.99074],[-3.606581,50.991569],[-3.60763,50.992771],[-3.606003,50.993879],[-3.605328,50.994922],[-3.608101,50.995061],[-3.611789,50.994809],[-3.611733,50.995245],[-3.614599,50.998871],[-3.620042,51.000622],[-3.62287,51.004998],[-3.628816,51.005774],[-3.628744,50.999759],[-3.627829,50.995664],[-3.627231,50.994488],[-3.628743,50.991523],[-3.628666,50.989223],[-3.623006,50.983355],[-3.620101,50.978735],[-3.619664,50.978693],[-3.620053,50.974265],[-3.61957,50.968172],[-3.618293,50.968389],[-3.615433,50.967375],[-3.61272,50.968342],[-3.610997,50.968585],[-3.608118,50.967929],[-3.605932,50.967832],[-3.601682,50.968515],[-3.599361,50.967379],[-3.597847,50.96721],[-3.598783,50.966142],[-3.599082,50.965006],[-3.600839,50.963711],[-3.601643,50.960918],[-3.600698,50.959075],[-3.601139,50.956239],[-3.600878,50.955321],[-3.59844,50.954953],[-3.598795,50.954083],[-3.598051,50.952638],[-3.598098,50.950504],[-3.596053,50.947199],[-3.595764,50.945154],[-3.596695,50.943006],[-3.600205,50.939368],[-3.608476,50.932896],[-3.609472,50.931576],[-3.610504,50.928743],[-3.612634,50.926582],[-3.614314,50.926382],[-3.61514,50.925104],[-3.617208,50.924357],[-3.619329,50.922501],[-3.620585,50.921912],[-3.624031,50.921833],[-3.625356,50.921552],[-3.627487,50.919587],[-3.63257,50.919875],[-3.634202,50.918795],[-3.641017,50.918027],[-3.642923,50.921252],[-3.643811,50.921824],[-3.650124,50.921653],[-3.654166,50.92089],[-3.658509,50.92055],[-3.664417,50.92068],[-3.673656,50.918972],[-3.677264,50.917507],[-3.681091,50.916788],[-3.686921,50.914926],[-3.693033,50.914243],[-3.698531,50.913001],[-3.697692,50.910608],[-3.703484,50.91101],[-3.706346,50.910746],[-3.708461,50.911393],[-3.712628,50.911436],[-3.717081,50.910522],[-3.720777,50.910577],[-3.722163,50.910189],[-3.72512,50.909957],[-3.725582,50.909072],[-3.728058,50.910765],[-3.729235,50.910182],[-3.729695,50.90774],[-3.731523,50.907085],[-3.732034,50.906096],[-3.734491,50.90508],[-3.735055,50.903231],[-3.736245,50.902598],[-3.736035,50.901674],[-3.737032,50.90037],[-3.735738,50.89853],[-3.735886,50.89635],[-3.734907,50.895611],[-3.734854,50.894532],[-3.733734,50.892283],[-3.735446,50.890097],[-3.738821,50.890859],[-3.744807,50.890303],[-3.742637,50.888816],[-3.740575,50.888248],[-3.740751,50.88708],[-3.742735,50.886911],[-3.74439,50.886347],[-3.74478,50.885638],[-3.749412,50.882467],[-3.749928,50.881031],[-3.749211,50.878508],[-3.755126,50.876464],[-3.757015,50.876386],[-3.760804,50.876803],[-3.759864,50.879833],[-3.762416,50.883242],[-3.764779,50.885498],[-3.76685,50.888219],[-3.768034,50.889039],[-3.774637,50.889735],[-3.774584,50.891522],[-3.77516,50.89232],[-3.777495,50.893463],[-3.779484,50.893995],[-3.781176,50.897237],[-3.782838,50.898822],[-3.781529,50.900735],[-3.783321,50.902483],[-3.785103,50.902151],[-3.787124,50.902479],[-3.789193,50.903762],[-3.792927,50.903595],[-3.795299,50.901466],[-3.798542,50.901193],[-3.800988,50.901849],[-3.80248,50.902748],[-3.805972,50.902719],[-3.80893,50.904087],[-3.812944,50.904568],[-3.81329,50.904019],[-3.815328,50.902945],[-3.815183,50.901885],[-3.816912,50.901795],[-3.818258,50.902977],[-3.817639,50.904943],[-3.815962,50.90583],[-3.814223,50.909363],[-3.811228,50.911605],[-3.813258,50.913154],[-3.81703,50.914117],[-3.817981,50.914649],[-3.820944,50.914303],[-3.823381,50.913507],[-3.821944,50.912226],[-3.823235,50.91154],[-3.824904,50.909995],[-3.82713,50.908825],[-3.827478,50.907354],[-3.830016,50.906875],[-3.831644,50.90772],[-3.834332,50.908642],[-3.83755,50.907688],[-3.839679,50.908107],[-3.841535,50.907886],[-3.844146,50.907978],[-3.846136,50.908586],[-3.847805,50.908214],[-3.849571,50.908389],[-3.854214,50.908017],[-3.856207,50.9072],[-3.860163,50.906743],[-3.861789,50.906967],[-3.865252,50.908563],[-3.867356,50.909167],[-3.869151,50.909292],[-3.873841,50.907893],[-3.874836,50.907863],[-3.875654,50.906708],[-3.879079,50.906105],[-3.881815,50.906759],[-3.883507,50.906652],[-3.884974,50.907376],[-3.892122,50.907835],[-3.893971,50.907726],[-3.89731,50.906192],[-3.898747,50.906451],[-3.9008,50.905518],[-3.899859,50.905069],[-3.901725,50.90347],[-3.904158,50.905087],[-3.907032,50.904306],[-3.911915,50.9039],[-3.91484,50.902693],[-3.916111,50.90159],[-3.915907,50.901009],[-3.917668,50.899806],[-3.920373,50.899326],[-3.920247,50.897715],[-3.917208,50.895121],[-3.915452,50.895167],[-3.914852,50.894711],[-3.91273,50.889857],[-3.910657,50.887918],[-3.908768,50.886741],[-3.907751,50.885305],[-3.902504,50.885879],[-3.899973,50.885488],[-3.900411,50.884578],[-3.899587,50.882903],[-3.899961,50.881318],[-3.898575,50.877525],[-3.899415,50.877036],[-3.902556,50.876506],[-3.904139,50.874787],[-3.906613,50.87405],[-3.907423,50.873511],[-3.911685,50.8737],[-3.917555,50.871791],[-3.92593,50.869602],[-3.925078,50.867726],[-3.923568,50.866634],[-3.92274,50.866795],[-3.921206,50.86599],[-3.919016,50.862835],[-3.909775,50.860759],[-3.907057,50.858716],[-3.904826,50.855736],[-3.904493,50.854498],[-3.904906,50.853106],[-3.903873,50.851741],[-3.903544,50.847944],[-3.901444,50.848108],[-3.899543,50.847518],[-3.896569,50.847879],[-3.894023,50.847496],[-3.893076,50.846595],[-3.891759,50.846931],[-3.889642,50.846509],[-3.885477,50.847466],[-3.885107,50.846893],[-3.886195,50.845894],[-3.885097,50.844533],[-3.886415,50.843571],[-3.886867,50.842667],[-3.888069,50.842289],[-3.889116,50.840941],[-3.891855,50.840652],[-3.892285,50.840115],[-3.895909,50.83869],[-3.895932,50.837265],[-3.897049,50.836678],[-3.896461,50.835951],[-3.897619,50.835173],[-3.899665,50.834509],[-3.897441,50.833529],[-3.895796,50.831836],[-3.893435,50.831663],[-3.890105,50.829203],[-3.884663,50.82638],[-3.883435,50.825977],[-3.880937,50.826164],[-3.881453,50.824912],[-3.882463,50.824787],[-3.881537,50.821541],[-3.877751,50.818887],[-3.87434,50.819156],[-3.871271,50.819981],[-3.866614,50.820739],[-3.861756,50.820628],[-3.859885,50.821278],[-3.854189,50.819669],[-3.853502,50.819179],[-3.85258,50.817436],[-3.851897,50.817292],[-3.848201,50.818253],[-3.845698,50.817934],[-3.84237,50.818601],[-3.839878,50.81849],[-3.839401,50.817471],[-3.842892,50.813292],[-3.844107,50.812354],[-3.844396,50.811442],[-3.84417,50.809232],[-3.843348,50.8076],[-3.842554,50.800389],[-3.839797,50.800319],[-3.838886,50.797288],[-3.837315,50.795194],[-3.838163,50.794956],[-3.835902,50.792974],[-3.836335,50.792136],[-3.837797,50.792058],[-3.839163,50.791105],[-3.838615,50.79023],[-3.839859,50.788674],[-3.839861,50.787504],[-3.841357,50.787147],[-3.841181,50.786334],[-3.841992,50.784244],[-3.843796,50.782101],[-3.845248,50.781311],[-3.827088,50.780664],[-3.822041,50.781],[-3.822357,50.779282],[-3.82429,50.778177],[-3.825129,50.77692],[-3.822954,50.775301],[-3.822587,50.773706],[-3.821683,50.773181],[-3.820611,50.771683],[-3.819719,50.769321],[-3.816094,50.763796],[-3.813037,50.76226],[-3.814726,50.760883],[-3.811322,50.759997],[-3.80738,50.75998],[-3.809029,50.758747],[-3.810963,50.758939],[-3.814836,50.75684],[-3.816899,50.75635],[-3.818309,50.754869],[-3.819745,50.751692],[-3.820606,50.750486],[-3.822677,50.749019],[-3.823075,50.745594],[-3.824573,50.743899],[-3.824227,50.743255],[-3.824979,50.742176],[-3.824709,50.741034],[-3.827323,50.738663],[-3.828606,50.736249],[-3.832152,50.734028],[-3.833814,50.733522],[-3.836295,50.732172],[-3.833846,50.73055],[-3.831844,50.727842],[-3.827528,50.729096],[-3.82545,50.730282],[-3.822487,50.726376],[-3.821428,50.724359],[-3.822129,50.723219],[-3.819876,50.72101],[-3.819609,50.719121],[-3.818597,50.716964],[-3.809408,50.716489],[-3.803807,50.716826],[-3.799889,50.717412],[-3.793477,50.71907],[-3.783532,50.72283],[-3.766259,50.727565],[-3.765889,50.72583],[-3.764208,50.725977],[-3.761974,50.724557],[-3.759273,50.723995],[-3.756966,50.722672],[-3.756869,50.721135],[-3.755011,50.719952],[-3.755463,50.719332],[-3.755328,50.717878],[-3.753667,50.716051],[-3.751582,50.714628],[-3.751428,50.71372],[-3.752263,50.711805],[-3.750848,50.710502],[-3.750276,50.70862],[-3.7458,50.707488],[-3.743325,50.705967],[-3.74149,50.705473],[-3.739911,50.705518],[-3.739077,50.704751],[-3.737716,50.704458],[-3.735593,50.703184],[-3.733854,50.7046],[-3.733915,50.706518],[-3.734807,50.708795],[-3.733236,50.71142],[-3.731556,50.713258],[-3.729241,50.714475],[-3.72424,50.715597],[-3.727535,50.717329],[-3.732587,50.718721],[-3.734989,50.721717],[-3.737514,50.723531],[-3.73423,50.723793],[-3.727559,50.727128],[-3.723343,50.728154],[-3.722748,50.731497],[-3.719657,50.734639],[-3.718241,50.737308],[-3.71006,50.742704],[-3.708375,50.748707],[-3.701929,50.750849],[-3.694315,50.752446],[-3.691848,50.753772],[-3.688989,50.752416],[-3.687687,50.752478],[-3.682766,50.751556],[-3.68158,50.750125],[-3.679441,50.750515],[-3.679175,50.752125],[-3.679574,50.754266],[-3.678399,50.755596],[-3.676605,50.755985],[-3.676071,50.757452],[-3.675088,50.757927],[-3.675312,50.75932],[-3.674808,50.760396],[-3.673751,50.760819],[-3.673904,50.761763],[-3.671728,50.763979],[-3.670271,50.763079],[-3.668741,50.762688],[-3.665961,50.759903],[-3.661832,50.759627],[-3.659119,50.758124],[-3.658631,50.757406],[-3.65599,50.757092],[-3.653587,50.756403],[-3.651814,50.756318],[-3.647965,50.756888],[-3.646438,50.756721],[-3.643936,50.75737],[-3.641503,50.758604],[-3.64062,50.758251],[-3.640905,50.757228],[-3.639733,50.755266],[-3.636313,50.755737],[-3.634672,50.755066],[-3.631971,50.754822],[-3.627393,50.756183],[-3.624904,50.756121],[-3.623159,50.755494],[-3.622157,50.755708],[-3.621225,50.753076],[-3.620068,50.752042],[-3.619947,50.750985],[-3.618389,50.751088],[-3.61708,50.751963],[-3.615668,50.752346],[-3.614237,50.75404],[-3.611238,50.753958],[-3.608868,50.754217],[-3.608782,50.753308],[-3.607612,50.752782],[-3.606714,50.751266],[-3.606233,50.748823],[-3.603226,50.747435],[-3.601966,50.745993],[-3.598873,50.746477],[-3.598379,50.747032],[-3.596663,50.74685],[-3.595312,50.747632],[-3.59185,50.745009],[-3.592138,50.74329],[-3.588082,50.743983],[-3.585483,50.743874],[-3.584311,50.744976],[-3.580475,50.747143],[-3.578019,50.749767],[-3.573883,50.752652],[-3.576039,50.753957],[-3.576303,50.755072],[-3.573562,50.75565],[-3.569388,50.755717],[-3.57094,50.75822],[-3.570544,50.760237],[-3.561672,50.75836],[-3.559597,50.757655],[-3.556807,50.75795],[-3.556431,50.758891],[-3.559562,50.759833],[-3.558362,50.762332],[-3.55111,50.765235],[-3.550574,50.767441],[-3.551397,50.768674],[-3.551352,50.769645],[-3.552115,50.771186],[-3.547416,50.772983],[-3.550092,50.774564],[-3.552129,50.774778],[-3.553734,50.774487],[-3.555924,50.775076],[-3.557927,50.774765],[-3.559546,50.77513],[-3.563353,50.775005],[-3.563215,50.779042],[-3.564124,50.779399],[-3.567012,50.779487],[-3.568996,50.781006],[-3.569178,50.784153],[-3.570442,50.785515],[-3.570745,50.787042],[-3.572012,50.788534],[-3.56153,50.790993],[-3.55432,50.791622],[-3.541706,50.790902],[-3.536758,50.791604],[-3.533938,50.790868],[-3.528077,50.788883],[-3.524712,50.787003],[-3.523788,50.789195],[-3.523929,50.791958],[-3.524757,50.793676],[-3.526426,50.795415],[-3.526684,50.797534],[-3.521531,50.796451],[-3.518374,50.797424],[-3.517822,50.79898],[-3.514118,50.802162],[-3.51247,50.804691],[-3.511003,50.805019],[-3.512446,50.80785],[-3.512073,50.810979],[-3.507706,50.812221],[-3.507851,50.813821],[-3.504997,50.814391],[-3.505726,50.815551],[-3.507291,50.815276],[-3.509143,50.815802],[-3.510036,50.816618],[-3.509715,50.817399],[-3.510039,50.819381],[-3.509656,50.820448],[-3.50656,50.820555],[-3.505269,50.821749],[-3.50716,50.822356],[-3.506953,50.824045],[-3.508085,50.825139],[-3.507403,50.827281],[-3.506056,50.826751],[-3.505409,50.825634],[-3.499473,50.825115],[-3.499022,50.821406],[-3.49759,50.817768],[-3.496751,50.816955],[-3.497158,50.812285],[-3.498599,50.808818],[-3.500193,50.805952],[-3.502664,50.803933],[-3.502238,50.801042],[-3.502518,50.799045],[-3.493953,50.799423],[-3.490282,50.799961],[-3.480749,50.799367],[-3.48075,50.798439],[-3.479193,50.796832],[-3.477713,50.796373],[-3.47794,50.795643],[-3.480101,50.79447],[-3.482019,50.794475],[-3.483505,50.793841],[-3.483302,50.791987],[-3.481742,50.792672],[-3.480349,50.792469],[-3.479421,50.792995],[-3.478194,50.792679],[-3.476305,50.794968],[-3.472645,50.797144],[-3.471963,50.797115],[-3.46973,50.795525],[-3.468263,50.796845],[-3.467079,50.797378],[-3.468449,50.798162],[-3.466566,50.798741],[-3.465918,50.799379],[-3.466112,50.800882],[-3.464137,50.80098],[-3.463056,50.802278],[-3.46075,50.803343],[-3.45857,50.803352],[-3.456929,50.802873],[-3.456042,50.801672],[-3.454541,50.800536],[-3.451947,50.80013],[-3.451152,50.799659],[-3.449543,50.799953],[-3.446419,50.799774],[-3.444068,50.800556],[-3.444225,50.801172],[-3.44137,50.80259],[-3.440097,50.802331],[-3.439232,50.80524],[-3.4395,50.806015],[-3.438006,50.806548],[-3.437631,50.808043],[-3.436043,50.808076],[-3.434473,50.809449],[-3.433506,50.809305],[-3.431992,50.810774],[-3.429752,50.812042],[-3.427866,50.811585],[-3.426034,50.812402],[-3.424276,50.811557],[-3.419865,50.811472],[-3.417892,50.810459],[-3.416663,50.808471],[-3.413839,50.806879],[-3.412326,50.806677],[-3.41067,50.805412],[-3.410473,50.804605],[-3.405875,50.805048],[-3.401993,50.806531],[-3.399204,50.806639],[-3.397136,50.807394],[-3.394915,50.807794],[-3.391248,50.807926],[-3.388716,50.808789],[-3.387179,50.808765],[-3.383857,50.810219],[-3.380867,50.810736],[-3.380471,50.810193],[-3.376536,50.810135],[-3.373149,50.810984],[-3.368308,50.81087],[-3.366853,50.812216],[-3.363034,50.811652],[-3.362537,50.812144],[-3.359959,50.811877],[-3.35991,50.814841],[-3.361747,50.820994],[-3.366988,50.820534],[-3.368001,50.823564],[-3.367473,50.827232],[-3.367624,50.829534],[-3.36675,50.829325],[-3.364015,50.832544],[-3.362357,50.831777],[-3.355898,50.833905],[-3.355409,50.83149],[-3.357012,50.826903],[-3.353845,50.826445],[-3.350896,50.827292],[-3.343568,50.825834],[-3.342257,50.827728],[-3.341235,50.828381],[-3.342809,50.830433],[-3.342848,50.831001],[-3.344872,50.831226],[-3.343471,50.833083],[-3.341749,50.834133],[-3.340712,50.835412],[-3.342259,50.83628],[-3.34259,50.83738],[-3.341648,50.840509],[-3.342926,50.843039],[-3.344782,50.841656],[-3.34592,50.842852],[-3.348594,50.844334],[-3.348169,50.846736],[-3.343061,50.846192],[-3.34339,50.847574],[-3.339374,50.849649],[-3.332505,50.85202],[-3.33075,50.851645],[-3.330089,50.852696],[-3.331068,50.856081],[-3.328272,50.856786],[-3.325336,50.856981],[-3.321559,50.857523],[-3.319241,50.856952],[-3.319398,50.856053],[-3.318547,50.854785],[-3.312037,50.855505],[-3.30612,50.854431],[-3.297607,50.854715],[-3.29321,50.854149],[-3.291679,50.854431],[-3.289385,50.853928],[-3.284107,50.854706],[-3.28128,50.855813],[-3.276973,50.858048],[-3.275867,50.859087],[-3.276446,50.859696],[-3.279396,50.861073],[-3.283211,50.863478],[-3.282685,50.866302],[-3.278026,50.867857],[-3.27485,50.868177],[-3.268708,50.870475],[-3.265377,50.872],[-3.262497,50.873918],[-3.259021,50.876996],[-3.256736,50.878153],[-3.254142,50.878621],[-3.253199,50.879081],[-3.253528,50.880421],[-3.252782,50.881194],[-3.251813,50.883958],[-3.249161,50.886385],[-3.247174,50.887552],[-3.245869,50.887217],[-3.244221,50.887374],[-3.243115,50.888598],[-3.243647,50.889462],[-3.238797,50.890367],[-3.234849,50.892901],[-3.234035,50.894306],[-3.233045,50.89505],[-3.231438,50.895015],[-3.230371,50.894364],[-3.228635,50.894035],[-3.227163,50.894711],[-3.22191,50.893989],[-3.220556,50.89334],[-3.217587,50.89289],[-3.21806,50.889377],[-3.218687,50.888146],[-3.2183,50.887605],[-3.215816,50.887586],[-3.215632,50.886827],[-3.218209,50.886371],[-3.21808,50.884739],[-3.216077,50.882835],[-3.215318,50.882592],[-3.21409,50.880788],[-3.211988,50.879659],[-3.21108,50.878639],[-3.207233,50.877078],[-3.205108,50.877586],[-3.201718,50.877637],[-3.201003,50.878139],[-3.198325,50.877478],[-3.196862,50.877993],[-3.189601,50.878756],[-3.187529,50.8787],[-3.187691,50.877359],[-3.182147,50.876435],[-3.18121,50.877106],[-3.178111,50.878237],[-3.176156,50.877084],[-3.17056,50.878836],[-3.168463,50.880118],[-3.166675,50.880429],[-3.165829,50.881401],[-3.163648,50.882299],[-3.165246,50.884246],[-3.151207,50.886452],[-3.142429,50.889251],[-3.144186,50.891396]]]},"properties":{"LAD22CD":"E07000042","LAD22NM":"Mid Devon","BNG_E":288064,"BNG_N":108911,"LONG":-3.59212,"LAT":50.86882,"GlobalID":"467d4b0d-58fc-49d3-8e6c-3bdcfbee9331"},"id":81}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.720845,51.233105],[-3.722679,51.233986],[-3.724194,51.234121],[-3.7277,51.235439],[-3.731409,51.23528],[-3.740406,51.235819],[-3.742166,51.235383],[-3.745196,51.235477],[-3.746911,51.236297],[-3.751206,51.236403],[-3.752668,51.236943],[-3.754821,51.236739],[-3.758142,51.237267],[-3.761914,51.237362],[-3.764558,51.23704],[-3.769779,51.237662],[-3.771242,51.238435],[-3.773265,51.238718],[-3.776079,51.23973],[-3.777826,51.241017],[-3.779723,51.241819],[-3.78429,51.245244],[-3.785483,51.246406],[-3.787046,51.246295],[-3.790729,51.244057],[-3.792259,51.243983],[-3.793518,51.242706],[-3.795795,51.241815],[-3.795305,51.240401],[-3.799551,51.236749],[-3.80666,51.23233],[-3.808567,51.231785],[-3.810462,51.231635],[-3.812281,51.231941],[-3.813431,51.231154],[-3.816001,51.231203],[-3.818885,51.231721],[-3.82196,51.231554],[-3.825185,51.231825],[-3.827474,51.232732],[-3.831218,51.231625],[-3.832665,51.231903],[-3.834867,51.232816],[-3.836189,51.23387],[-3.839234,51.234997],[-3.841701,51.235332],[-3.844205,51.23503],[-3.84572,51.235234],[-3.853737,51.234569],[-3.855919,51.233249],[-3.859241,51.232303],[-3.860082,51.231111],[-3.861521,51.23077],[-3.864114,51.231479],[-3.868958,51.231069],[-3.871937,51.231246],[-3.871385,51.230341],[-3.872597,51.229367],[-3.871658,51.227842],[-3.872465,51.227092],[-3.875036,51.228088],[-3.876252,51.227369],[-3.878877,51.228565],[-3.880747,51.228797],[-3.881635,51.227713],[-3.882848,51.227434],[-3.882804,51.226639],[-3.883891,51.225552],[-3.884764,51.225772],[-3.887278,51.225437],[-3.892031,51.22377],[-3.892303,51.224077],[-3.896117,51.224459],[-3.897205,51.225884],[-3.899261,51.225701],[-3.90121,51.226337],[-3.901495,51.228313],[-3.902298,51.229017],[-3.904068,51.229639],[-3.905686,51.228742],[-3.907036,51.229539],[-3.909914,51.229824],[-3.910628,51.229612],[-3.913224,51.230453],[-3.919267,51.230305],[-3.922556,51.230708],[-3.922699,51.23102],[-3.926187,51.23181],[-3.928234,51.229535],[-3.931083,51.229797],[-3.934066,51.229183],[-3.936064,51.228511],[-3.93877,51.228779],[-3.940125,51.227185],[-3.940842,51.227121],[-3.942358,51.225033],[-3.944553,51.225019],[-3.945478,51.224129],[-3.945771,51.222901],[-3.94749,51.221723],[-3.949519,51.221462],[-3.950993,51.220804],[-3.952356,51.220891],[-3.956687,51.220306],[-3.9596,51.219262],[-3.963128,51.219174],[-3.966959,51.219428],[-3.971239,51.219325],[-3.97272,51.220024],[-3.976391,51.219674],[-3.977727,51.218967],[-3.980485,51.219405],[-3.982814,51.218202],[-3.983997,51.218523],[-3.987184,51.218667],[-3.991479,51.217977],[-3.992938,51.218289],[-3.993868,51.217545],[-3.996837,51.218397],[-3.99887,51.218339],[-4.00004,51.217861],[-4.001919,51.219038],[-4.003166,51.219258],[-4.003991,51.218189],[-4.00496,51.218296],[-4.00603,51.217249],[-4.008625,51.216652],[-4.013178,51.21728],[-4.014543,51.217149],[-4.017218,51.21632],[-4.021078,51.216703],[-4.023757,51.21553],[-4.02551,51.216385],[-4.028373,51.216383],[-4.030656,51.215555],[-4.032103,51.214558],[-4.03247,51.213531],[-4.030806,51.211562],[-4.031835,51.210518],[-4.033637,51.209989],[-4.040648,51.210278],[-4.040073,51.209672],[-4.039706,51.20793],[-4.03809,51.207507],[-4.038746,51.206673],[-4.040509,51.207049],[-4.044207,51.207405],[-4.045464,51.207179],[-4.047151,51.207968],[-4.04844,51.20745],[-4.050767,51.207452],[-4.05306,51.209209],[-4.054825,51.209812],[-4.05612,51.21079],[-4.056167,51.211934],[-4.057809,51.212415],[-4.058846,51.21169],[-4.060371,51.211735],[-4.060844,51.212536],[-4.063239,51.213252],[-4.06351,51.213967],[-4.0652,51.215125],[-4.069667,51.21595],[-4.070687,51.21681],[-4.072159,51.216678],[-4.07216,51.215897],[-4.069915,51.21527],[-4.071064,51.214227],[-4.07406,51.215585],[-4.076388,51.215758],[-4.077724,51.216305],[-4.080179,51.218057],[-4.082359,51.217316],[-4.082201,51.216097],[-4.08589,51.216631],[-4.087823,51.21732],[-4.089022,51.21628],[-4.088407,51.215603],[-4.090181,51.21403],[-4.092542,51.213952],[-4.092984,51.21293],[-4.09477,51.21297],[-4.096376,51.212597],[-4.09579,51.211895],[-4.097,51.210904],[-4.098237,51.211649],[-4.10049,51.212316],[-4.100766,51.213164],[-4.102563,51.212574],[-4.103991,51.211441],[-4.105255,51.211223],[-4.105843,51.210045],[-4.110456,51.209802],[-4.112599,51.209141],[-4.115659,51.209723],[-4.115166,51.210534],[-4.115912,51.211163],[-4.117552,51.211031],[-4.119485,51.212157],[-4.121582,51.212633],[-4.121974,51.21214],[-4.120951,51.210979],[-4.12165,51.210432],[-4.12467,51.211029],[-4.128417,51.210264],[-4.129126,51.209574],[-4.131838,51.208649],[-4.133789,51.208656],[-4.135992,51.207998],[-4.13623,51.20746],[-4.139359,51.207211],[-4.143083,51.206217],[-4.146122,51.204079],[-4.148059,51.204069],[-4.150207,51.204437],[-4.150895,51.203969],[-4.156023,51.204287],[-4.157101,51.202689],[-4.159397,51.20177],[-4.161098,51.202566],[-4.165531,51.202561],[-4.168126,51.201164],[-4.171128,51.20101],[-4.171575,51.199],[-4.174939,51.198698],[-4.176383,51.198267],[-4.177636,51.197308],[-4.180175,51.198047],[-4.180406,51.198582],[-4.183027,51.199169],[-4.182981,51.199584],[-4.188902,51.199423],[-4.190721,51.199958],[-4.193084,51.199241],[-4.196052,51.199607],[-4.1984,51.199352],[-4.199021,51.200297],[-4.201297,51.200619],[-4.201635,51.199827],[-4.203243,51.199799],[-4.202805,51.198572],[-4.205065,51.195639],[-4.206566,51.19551],[-4.207374,51.194826],[-4.206893,51.194047],[-4.20729,51.192603],[-4.208309,51.192026],[-4.210091,51.191897],[-4.210645,51.190546],[-4.212128,51.19069],[-4.214348,51.189913],[-4.217822,51.190087],[-4.222381,51.189403],[-4.22496,51.188776],[-4.227658,51.188721],[-4.23058,51.187798],[-4.229338,51.187216],[-4.225966,51.186648],[-4.224894,51.185896],[-4.223728,51.186319],[-4.222304,51.186155],[-4.220815,51.184895],[-4.218243,51.184217],[-4.217146,51.183441],[-4.215822,51.183271],[-4.215664,51.182414],[-4.21388,51.182025],[-4.214295,51.180447],[-4.21148,51.178392],[-4.212213,51.177634],[-4.2138,51.177408],[-4.214492,51.176463],[-4.212602,51.175113],[-4.21242,51.173355],[-4.209773,51.172638],[-4.209759,51.170773],[-4.212099,51.160493],[-4.214559,51.154228],[-4.216342,51.151387],[-4.21984,51.146764],[-4.222457,51.144641],[-4.225168,51.144256],[-4.229882,51.145237],[-4.232339,51.144974],[-4.237033,51.145659],[-4.239112,51.145187],[-4.240551,51.145567],[-4.241569,51.145168],[-4.242932,51.145579],[-4.24434,51.145257],[-4.245255,51.145742],[-4.247938,51.14539],[-4.248515,51.145802],[-4.251501,51.146504],[-4.255689,51.146923],[-4.257388,51.146603],[-4.257211,51.145675],[-4.258145,51.14493],[-4.258801,51.143402],[-4.260553,51.143583],[-4.260276,51.14247],[-4.259248,51.141014],[-4.256754,51.139872],[-4.24979,51.138136],[-4.249412,51.137238],[-4.24793,51.136899],[-4.24659,51.135416],[-4.241886,51.134071],[-4.240384,51.134014],[-4.239161,51.133348],[-4.238438,51.131515],[-4.237288,51.130199],[-4.237766,51.129829],[-4.238517,51.127434],[-4.239557,51.127426],[-4.240052,51.126476],[-4.241264,51.126163],[-4.242912,51.124336],[-4.242335,51.123812],[-4.24318,51.122825],[-4.240596,51.121963],[-4.240611,51.120852],[-4.238976,51.120075],[-4.231153,51.11889],[-4.228588,51.118268],[-4.225815,51.118426],[-4.224064,51.117759],[-4.222454,51.117695],[-4.22185,51.112079],[-4.223045,51.101315],[-4.223227,51.087444],[-4.22229,51.085225],[-4.220082,51.082189],[-4.218558,51.078059],[-4.217435,51.076803],[-4.213081,51.074728],[-4.209485,51.073531],[-4.205788,51.071512],[-4.202945,51.07072],[-4.198772,51.070034],[-4.192962,51.06714],[-4.18983,51.066066],[-4.188189,51.066805],[-4.187721,51.067884],[-4.19026,51.067782],[-4.190792,51.069277],[-4.191788,51.070094],[-4.190756,51.071327],[-4.188003,51.073022],[-4.185473,51.076162],[-4.181887,51.077259],[-4.173288,51.079329],[-4.166597,51.080471],[-4.167678,51.082198],[-4.167041,51.084185],[-4.170865,51.087224],[-4.169204,51.090719],[-4.167159,51.090628],[-4.168971,51.087509],[-4.16591,51.084713],[-4.163746,51.083577],[-4.162105,51.083811],[-4.159556,51.08505],[-4.157129,51.085391],[-4.152174,51.085342],[-4.149845,51.084447],[-4.146551,51.083728],[-4.133136,51.085838],[-4.131186,51.08655],[-4.129272,51.087988],[-4.129264,51.089788],[-4.12827,51.091472],[-4.128825,51.09191],[-4.128702,51.093475],[-4.118907,51.094629],[-4.112942,51.094444],[-4.107211,51.093678],[-4.10488,51.092498],[-4.101974,51.090196],[-4.099174,51.088651],[-4.096184,51.087465],[-4.088219,51.085796],[-4.084897,51.084043],[-4.079742,51.082363],[-4.076684,51.080404],[-4.075476,51.080019],[-4.069504,51.081291],[-4.066876,51.081112],[-4.060161,51.078313],[-4.05534,51.074991],[-4.054025,51.07168],[-4.054706,51.070577],[-4.056299,51.069447],[-4.057046,51.06952],[-4.0548,51.071901],[-4.055742,51.073115],[-4.056394,51.074955],[-4.064573,51.078919],[-4.06628,51.079397],[-4.067837,51.079273],[-4.070841,51.077872],[-4.073422,51.077195],[-4.076243,51.076851],[-4.082355,51.077876],[-4.085108,51.078546],[-4.087299,51.080233],[-4.089817,51.081487],[-4.091873,51.082063],[-4.095295,51.08255],[-4.102716,51.083286],[-4.107783,51.08534],[-4.111048,51.088301],[-4.113172,51.089684],[-4.114651,51.090024],[-4.117661,51.089839],[-4.118666,51.08889],[-4.118884,51.087656],[-4.117946,51.082919],[-4.118077,51.081534],[-4.120497,51.08025],[-4.122305,51.078713],[-4.121904,51.077657],[-4.119749,51.076458],[-4.118824,51.075457],[-4.1146,51.074574],[-4.11467,51.073833],[-4.118537,51.074286],[-4.123029,51.077169],[-4.123461,51.079245],[-4.125779,51.078325],[-4.129629,51.077567],[-4.132773,51.078427],[-4.136164,51.078515],[-4.139226,51.079621],[-4.142709,51.079178],[-4.146251,51.079979],[-4.153077,51.080131],[-4.154969,51.079436],[-4.154026,51.077711],[-4.155147,51.076599],[-4.15447,51.075556],[-4.151722,51.073485],[-4.153792,51.073246],[-4.157885,51.073508],[-4.15884,51.073169],[-4.161288,51.073833],[-4.162166,51.074398],[-4.164357,51.074736],[-4.165651,51.073988],[-4.170153,51.072853],[-4.172106,51.071998],[-4.173417,51.070687],[-4.17275,51.070002],[-4.174097,51.06902],[-4.178554,51.068151],[-4.180687,51.066516],[-4.179639,51.065551],[-4.178751,51.06352],[-4.179854,51.06179],[-4.180145,51.059045],[-4.181994,51.05603],[-4.181751,51.054277],[-4.182366,51.051153],[-4.181487,51.051161],[-4.179404,51.0501],[-4.180307,51.047735],[-4.182662,51.044599],[-4.185981,51.041709],[-4.186934,51.039693],[-4.188252,51.038168],[-4.191464,51.036425],[-4.195219,51.035206],[-4.198069,51.033556],[-4.198959,51.029942],[-4.198924,51.026692],[-4.197031,51.024211],[-4.197288,51.022605],[-4.198189,51.021252],[-4.19625,51.021526],[-4.194544,51.020725],[-4.190171,51.021464],[-4.188066,51.021314],[-4.187173,51.022276],[-4.188292,51.02289],[-4.186721,51.023575],[-4.186115,51.022502],[-4.186659,51.021928],[-4.185887,51.021092],[-4.183925,51.021727],[-4.183982,51.022933],[-4.181081,51.022226],[-4.179291,51.023227],[-4.179739,51.023891],[-4.175791,51.023461],[-4.174414,51.022787],[-4.172951,51.020748],[-4.172294,51.019053],[-4.169378,51.017853],[-4.168245,51.016812],[-4.167402,51.015228],[-4.166172,51.014531],[-4.158795,51.014469],[-4.158199,51.014711],[-4.155006,51.014374],[-4.154399,51.015992],[-4.151435,51.016057],[-4.149595,51.016538],[-4.148502,51.018774],[-4.144146,51.018511],[-4.142265,51.017866],[-4.142683,51.017011],[-4.139734,51.017509],[-4.13836,51.018412],[-4.136209,51.019038],[-4.135212,51.020678],[-4.132504,51.020194],[-4.127513,51.020658],[-4.124251,51.020181],[-4.122122,51.0194],[-4.115911,51.019128],[-4.11605,51.016886],[-4.117484,51.015453],[-4.119523,51.014283],[-4.120206,51.01166],[-4.120963,51.010894],[-4.119131,51.010413],[-4.119249,51.011418],[-4.116319,51.010428],[-4.109811,51.011138],[-4.107021,51.010892],[-4.106587,51.010275],[-4.098248,51.009592],[-4.097064,51.008442],[-4.096385,51.00673],[-4.094369,51.006022],[-4.093575,51.003772],[-4.090842,51.003795],[-4.087955,51.002961],[-4.082202,51.002672],[-4.079412,51.003251],[-4.080946,51.00518],[-4.080533,51.007011],[-4.079254,51.008689],[-4.069108,51.008429],[-4.066093,51.008954],[-4.064223,51.009522],[-4.06398,51.01031],[-4.059002,51.009002],[-4.057448,51.008322],[-4.049252,51.008369],[-4.047355,51.009605],[-4.045832,51.007604],[-4.04365,51.008177],[-4.03791,51.007548],[-4.0343,51.007621],[-4.032818,51.002843],[-4.033713,50.999039],[-4.033571,50.997089],[-4.035384,50.996925],[-4.036522,50.993292],[-4.035128,50.991987],[-4.035357,50.990417],[-4.03638,50.989735],[-4.037375,50.988152],[-4.036799,50.986316],[-4.037535,50.985188],[-4.036475,50.9835],[-4.036244,50.981579],[-4.03439,50.979776],[-4.033085,50.97898],[-4.030581,50.978362],[-4.027946,50.976099],[-4.026562,50.974399],[-4.024857,50.973434],[-4.023075,50.973243],[-4.019727,50.97209],[-4.020277,50.9699],[-4.018533,50.968671],[-4.015641,50.968743],[-4.013054,50.96808],[-4.011822,50.967389],[-4.010309,50.967534],[-4.00742,50.968875],[-4.004924,50.969525],[-4.006487,50.972453],[-4.003858,50.97194],[-4.001232,50.97264],[-3.999847,50.972659],[-3.992799,50.97449],[-3.991748,50.974402],[-3.990734,50.975785],[-3.989944,50.978288],[-3.988092,50.979497],[-3.985615,50.980327],[-3.983652,50.982118],[-3.980815,50.981028],[-3.976411,50.980522],[-3.973713,50.982077],[-3.970286,50.980739],[-3.967701,50.980873],[-3.965387,50.980479],[-3.962563,50.978897],[-3.961435,50.979706],[-3.961082,50.981072],[-3.958752,50.981635],[-3.957854,50.980745],[-3.958444,50.978486],[-3.958249,50.977769],[-3.954403,50.97745],[-3.952593,50.975955],[-3.953329,50.974358],[-3.957874,50.972218],[-3.958362,50.971722],[-3.958023,50.96872],[-3.957161,50.966903],[-3.958167,50.965735],[-3.960611,50.965577],[-3.963303,50.964381],[-3.964788,50.963435],[-3.966088,50.961643],[-3.96643,50.95973],[-3.965693,50.958257],[-3.964027,50.957208],[-3.960785,50.956146],[-3.961684,50.955249],[-3.96366,50.954431],[-3.967109,50.954418],[-3.971521,50.953338],[-3.974521,50.953842],[-3.976748,50.952809],[-3.978523,50.952469],[-3.980109,50.953126],[-3.984585,50.952452],[-3.989046,50.950649],[-3.989565,50.949937],[-3.993894,50.948426],[-3.995136,50.942816],[-3.995963,50.941693],[-3.993885,50.938943],[-3.993226,50.936875],[-3.997645,50.935564],[-3.996036,50.933964],[-3.997937,50.930847],[-3.995952,50.925569],[-3.988076,50.92651],[-3.981606,50.926301],[-3.97871,50.925264],[-3.97711,50.925485],[-3.966819,50.924],[-3.965403,50.922671],[-3.963582,50.921703],[-3.960102,50.920777],[-3.958703,50.921007],[-3.954975,50.918832],[-3.954206,50.917689],[-3.952513,50.918164],[-3.949726,50.918283],[-3.948974,50.918803],[-3.945811,50.918804],[-3.94291,50.920134],[-3.939172,50.920633],[-3.936952,50.921642],[-3.933143,50.921513],[-3.931527,50.921842],[-3.931458,50.922476],[-3.928413,50.922388],[-3.927106,50.92285],[-3.925293,50.922753],[-3.924499,50.923166],[-3.921292,50.922983],[-3.91962,50.923931],[-3.91439,50.924412],[-3.913006,50.924214],[-3.910428,50.924438],[-3.908655,50.925381],[-3.907259,50.924841],[-3.905323,50.924934],[-3.9045,50.925475],[-3.905466,50.927018],[-3.904417,50.927398],[-3.901975,50.925913],[-3.902709,50.924693],[-3.901202,50.923875],[-3.902805,50.922971],[-3.901989,50.920914],[-3.903483,50.919456],[-3.902522,50.918175],[-3.904793,50.918426],[-3.905941,50.917621],[-3.905766,50.916545],[-3.904805,50.915343],[-3.903481,50.915006],[-3.903761,50.913469],[-3.902116,50.912825],[-3.903773,50.911816],[-3.90378,50.910459],[-3.905045,50.909455],[-3.904048,50.908193],[-3.904438,50.906665],[-3.904158,50.905087],[-3.901725,50.90347],[-3.899859,50.905069],[-3.9008,50.905518],[-3.898747,50.906451],[-3.89731,50.906192],[-3.893971,50.907726],[-3.892122,50.907835],[-3.884974,50.907376],[-3.883507,50.906652],[-3.881815,50.906759],[-3.879079,50.906105],[-3.875654,50.906708],[-3.874836,50.907863],[-3.873841,50.907893],[-3.869151,50.909292],[-3.867356,50.909167],[-3.865252,50.908563],[-3.861789,50.906967],[-3.860163,50.906743],[-3.856207,50.9072],[-3.854214,50.908017],[-3.849571,50.908389],[-3.847805,50.908214],[-3.846136,50.908586],[-3.844146,50.907978],[-3.841535,50.907886],[-3.839679,50.908107],[-3.83755,50.907688],[-3.834332,50.908642],[-3.831644,50.90772],[-3.830016,50.906875],[-3.827478,50.907354],[-3.82713,50.908825],[-3.824904,50.909995],[-3.823235,50.91154],[-3.821944,50.912226],[-3.823381,50.913507],[-3.820944,50.914303],[-3.817981,50.914649],[-3.81703,50.914117],[-3.813258,50.913154],[-3.811228,50.911605],[-3.814223,50.909363],[-3.815962,50.90583],[-3.817639,50.904943],[-3.818258,50.902977],[-3.816912,50.901795],[-3.815183,50.901885],[-3.815328,50.902945],[-3.81329,50.904019],[-3.812944,50.904568],[-3.80893,50.904087],[-3.805972,50.902719],[-3.80248,50.902748],[-3.800988,50.901849],[-3.798542,50.901193],[-3.795299,50.901466],[-3.792927,50.903595],[-3.789193,50.903762],[-3.787124,50.902479],[-3.785103,50.902151],[-3.783321,50.902483],[-3.781529,50.900735],[-3.782838,50.898822],[-3.781176,50.897237],[-3.779484,50.893995],[-3.777495,50.893463],[-3.77516,50.89232],[-3.774584,50.891522],[-3.774637,50.889735],[-3.768034,50.889039],[-3.76685,50.888219],[-3.764779,50.885498],[-3.762416,50.883242],[-3.759864,50.879833],[-3.760804,50.876803],[-3.757015,50.876386],[-3.755126,50.876464],[-3.749211,50.878508],[-3.749928,50.881031],[-3.749412,50.882467],[-3.74478,50.885638],[-3.74439,50.886347],[-3.742735,50.886911],[-3.740751,50.88708],[-3.740575,50.888248],[-3.742637,50.888816],[-3.744807,50.890303],[-3.738821,50.890859],[-3.735446,50.890097],[-3.733734,50.892283],[-3.734854,50.894532],[-3.734907,50.895611],[-3.735886,50.89635],[-3.735738,50.89853],[-3.737032,50.90037],[-3.736035,50.901674],[-3.736245,50.902598],[-3.735055,50.903231],[-3.734491,50.90508],[-3.732034,50.906096],[-3.731523,50.907085],[-3.729695,50.90774],[-3.729235,50.910182],[-3.728058,50.910765],[-3.725582,50.909072],[-3.72512,50.909957],[-3.722163,50.910189],[-3.720777,50.910577],[-3.717081,50.910522],[-3.712628,50.911436],[-3.708461,50.911393],[-3.706346,50.910746],[-3.703484,50.91101],[-3.697692,50.910608],[-3.698531,50.913001],[-3.693033,50.914243],[-3.686921,50.914926],[-3.681091,50.916788],[-3.677264,50.917507],[-3.673656,50.918972],[-3.664417,50.92068],[-3.658509,50.92055],[-3.654166,50.92089],[-3.650124,50.921653],[-3.643811,50.921824],[-3.642923,50.921252],[-3.641017,50.918027],[-3.634202,50.918795],[-3.63257,50.919875],[-3.627487,50.919587],[-3.625356,50.921552],[-3.624031,50.921833],[-3.620585,50.921912],[-3.619329,50.922501],[-3.617208,50.924357],[-3.61514,50.925104],[-3.614314,50.926382],[-3.612634,50.926582],[-3.610504,50.928743],[-3.609472,50.931576],[-3.608476,50.932896],[-3.600205,50.939368],[-3.596695,50.943006],[-3.595764,50.945154],[-3.596053,50.947199],[-3.598098,50.950504],[-3.598051,50.952638],[-3.598795,50.954083],[-3.59844,50.954953],[-3.600878,50.955321],[-3.601139,50.956239],[-3.600698,50.959075],[-3.601643,50.960918],[-3.600839,50.963711],[-3.599082,50.965006],[-3.598783,50.966142],[-3.597847,50.96721],[-3.599361,50.967379],[-3.601682,50.968515],[-3.605932,50.967832],[-3.608118,50.967929],[-3.610997,50.968585],[-3.61272,50.968342],[-3.615433,50.967375],[-3.618293,50.968389],[-3.61957,50.968172],[-3.620053,50.974265],[-3.619664,50.978693],[-3.620101,50.978735],[-3.623006,50.983355],[-3.628666,50.989223],[-3.628743,50.991523],[-3.627231,50.994488],[-3.627829,50.995664],[-3.628744,50.999759],[-3.628816,51.005774],[-3.62287,51.004998],[-3.620042,51.000622],[-3.614599,50.998871],[-3.611733,50.995245],[-3.611789,50.994809],[-3.608101,50.995061],[-3.605328,50.994922],[-3.606003,50.993879],[-3.60763,50.992771],[-3.606581,50.991569],[-3.606843,50.99074],[-3.605118,50.990224],[-3.602008,50.991064],[-3.600462,50.992021],[-3.600532,50.9935],[-3.599715,50.994914],[-3.598778,50.995661],[-3.60051,50.99866],[-3.601783,50.999666],[-3.601904,51.000357],[-3.603871,51.001321],[-3.604309,51.002329],[-3.606225,51.003338],[-3.607361,51.004444],[-3.605768,51.006056],[-3.603208,51.007233],[-3.609746,51.007983],[-3.610109,51.009988],[-3.612086,51.011714],[-3.614625,51.012716],[-3.614213,51.013766],[-3.614655,51.01549],[-3.611871,51.018852],[-3.610898,51.02165],[-3.611205,51.023662],[-3.610742,51.024494],[-3.602698,51.029956],[-3.602461,51.03266],[-3.598169,51.036972],[-3.59815,51.040504],[-3.597513,51.041694],[-3.598282,51.04273],[-3.599171,51.046402],[-3.599948,51.047491],[-3.60033,51.050642],[-3.599826,51.051741],[-3.597552,51.053531],[-3.596611,51.053736],[-3.596018,51.054897],[-3.596875,51.055918],[-3.601429,51.055398],[-3.602959,51.055784],[-3.603831,51.057077],[-3.604845,51.057564],[-3.607585,51.057314],[-3.61033,51.057947],[-3.611222,51.05758],[-3.612413,51.056217],[-3.614693,51.056567],[-3.61935,51.059962],[-3.62131,51.060663],[-3.624304,51.061239],[-3.62809,51.059783],[-3.631279,51.059523],[-3.633656,51.057017],[-3.635354,51.056297],[-3.638073,51.056626],[-3.63997,51.057819],[-3.642448,51.058537],[-3.645412,51.057877],[-3.648836,51.058564],[-3.649826,51.059415],[-3.652331,51.059642],[-3.652311,51.060395],[-3.65088,51.0616],[-3.65029,51.064076],[-3.653226,51.064733],[-3.656202,51.065074],[-3.664337,51.067154],[-3.664799,51.067631],[-3.664919,51.0695],[-3.666384,51.070191],[-3.669833,51.070398],[-3.672805,51.071193],[-3.675633,51.07282],[-3.679639,51.072714],[-3.682368,51.073354],[-3.687298,51.076167],[-3.68878,51.078448],[-3.692445,51.080559],[-3.69649,51.08096],[-3.697863,51.080391],[-3.701518,51.080757],[-3.704326,51.080406],[-3.706132,51.080692],[-3.70759,51.080453],[-3.709251,51.080688],[-3.714907,51.080177],[-3.719948,51.080821],[-3.722468,51.082901],[-3.730048,51.086777],[-3.73863,51.088683],[-3.741344,51.089852],[-3.745491,51.092536],[-3.750874,51.095128],[-3.75755,51.100539],[-3.767396,51.105783],[-3.776909,51.106935],[-3.780121,51.107705],[-3.787035,51.110168],[-3.791437,51.111371],[-3.797501,51.114076],[-3.804289,51.115685],[-3.807176,51.117919],[-3.813728,51.121049],[-3.816409,51.122665],[-3.822115,51.126954],[-3.82525,51.131249],[-3.83115,51.135377],[-3.834491,51.138381],[-3.834102,51.140197],[-3.834738,51.141383],[-3.834472,51.144859],[-3.832069,51.151186],[-3.835351,51.154107],[-3.836463,51.165038],[-3.837496,51.167358],[-3.838923,51.174959],[-3.839821,51.176674],[-3.838447,51.177098],[-3.832281,51.177563],[-3.824359,51.176115],[-3.817519,51.17853],[-3.815569,51.178504],[-3.81189,51.177632],[-3.806268,51.177873],[-3.79599,51.174544],[-3.793381,51.17275],[-3.786304,51.171927],[-3.78211,51.17228],[-3.777183,51.173507],[-3.757301,51.17731],[-3.751179,51.17709],[-3.745875,51.175557],[-3.742115,51.175972],[-3.739589,51.177112],[-3.738099,51.177329],[-3.735493,51.176949],[-3.732852,51.177066],[-3.728061,51.178728],[-3.726033,51.178934],[-3.723826,51.180727],[-3.72509,51.18247],[-3.724422,51.183921],[-3.726002,51.186355],[-3.72945,51.188296],[-3.732088,51.190969],[-3.732021,51.193622],[-3.729001,51.19463],[-3.727008,51.197463],[-3.726211,51.199423],[-3.727068,51.201214],[-3.726372,51.202741],[-3.727987,51.20458],[-3.728464,51.207047],[-3.727735,51.208428],[-3.729412,51.211535],[-3.730824,51.213027],[-3.731573,51.215131],[-3.730887,51.216012],[-3.729046,51.216755],[-3.728737,51.218851],[-3.733201,51.222725],[-3.729253,51.223909],[-3.728304,51.225101],[-3.7267,51.225645],[-3.727318,51.22704],[-3.727067,51.229436],[-3.723119,51.230531],[-3.721954,51.232475],[-3.720845,51.233105]]]},"properties":{"LAD22CD":"E07000043","LAD22NM":"North Devon","BNG_E":265110,"BNG_N":132532,"LONG":-3.92691,"LAT":51.07621,"GlobalID":"c6db7ac4-88db-4d6f-9c44-b91a03fda72d"},"id":82}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.898203,50.280667],[-3.90066,50.281152],[-3.902939,50.279985],[-3.901851,50.27825],[-3.900075,50.277958],[-3.899084,50.278665],[-3.896887,50.279147],[-3.898203,50.280667]]],[[[-4.105813,50.306655],[-4.10493,50.307576],[-4.105568,50.308148],[-4.107864,50.30778],[-4.108505,50.306637],[-4.107763,50.306296],[-4.105813,50.306655]]],[[[-3.58425,50.477723],[-3.587565,50.478563],[-3.588849,50.478567],[-3.591451,50.479663],[-3.592427,50.480922],[-3.595113,50.482709],[-3.595218,50.483236],[-3.598046,50.484396],[-3.602365,50.484379],[-3.60442,50.484045],[-3.607074,50.482062],[-3.608583,50.481589],[-3.609799,50.480711],[-3.613222,50.475602],[-3.61259,50.472252],[-3.61439,50.472388],[-3.613294,50.4698],[-3.613843,50.4693],[-3.616587,50.469661],[-3.620965,50.469706],[-3.621415,50.468276],[-3.623446,50.466665],[-3.626244,50.466783],[-3.627338,50.46618],[-3.63326,50.466379],[-3.634479,50.467035],[-3.637186,50.46785],[-3.638058,50.466862],[-3.640622,50.465603],[-3.642481,50.463031],[-3.645015,50.461157],[-3.647392,50.462156],[-3.653057,50.463817],[-3.658932,50.464581],[-3.657742,50.464998],[-3.65581,50.466496],[-3.653621,50.467396],[-3.65409,50.467785],[-3.650158,50.468471],[-3.650121,50.470553],[-3.65224,50.470212],[-3.654713,50.471867],[-3.656857,50.471451],[-3.658011,50.471686],[-3.661982,50.469656],[-3.664722,50.469001],[-3.665011,50.467879],[-3.666327,50.467872],[-3.668306,50.466765],[-3.66798,50.465453],[-3.668331,50.464141],[-3.669652,50.462111],[-3.671143,50.463133],[-3.671295,50.464433],[-3.674354,50.466234],[-3.676787,50.466982],[-3.67788,50.467015],[-3.680025,50.468076],[-3.681525,50.467944],[-3.683017,50.469093],[-3.686305,50.470102],[-3.688505,50.47199],[-3.69081,50.473255],[-3.691226,50.474474],[-3.692281,50.474724],[-3.693755,50.475938],[-3.694065,50.477851],[-3.697185,50.478267],[-3.698682,50.478701],[-3.699997,50.479646],[-3.703157,50.480023],[-3.703869,50.480458],[-3.706011,50.480485],[-3.706481,50.481136],[-3.708376,50.480993],[-3.711642,50.482358],[-3.712066,50.48301],[-3.715478,50.485016],[-3.716205,50.486728],[-3.717051,50.487421],[-3.716855,50.48827],[-3.71761,50.489198],[-3.71696,50.490667],[-3.718706,50.49244],[-3.718495,50.493036],[-3.720228,50.493404],[-3.721527,50.494334],[-3.723345,50.494382],[-3.725192,50.495322],[-3.727584,50.497747],[-3.730425,50.49885],[-3.734133,50.50138],[-3.735273,50.502391],[-3.735858,50.503816],[-3.737246,50.505479],[-3.737402,50.506344],[-3.74158,50.507884],[-3.745927,50.507732],[-3.747466,50.508047],[-3.750504,50.509359],[-3.75634,50.510412],[-3.759301,50.508755],[-3.765034,50.506279],[-3.7663,50.505358],[-3.767822,50.503331],[-3.768267,50.501116],[-3.767779,50.499499],[-3.765834,50.496094],[-3.765581,50.494017],[-3.76596,50.49266],[-3.768363,50.488919],[-3.769128,50.485784],[-3.767482,50.48489],[-3.766301,50.481865],[-3.761198,50.479048],[-3.760909,50.477186],[-3.757889,50.474421],[-3.757691,50.473536],[-3.758942,50.470038],[-3.758858,50.466819],[-3.762042,50.467743],[-3.764142,50.467493],[-3.765823,50.466687],[-3.768139,50.467056],[-3.772269,50.464378],[-3.772915,50.463489],[-3.776675,50.463949],[-3.778822,50.465881],[-3.779794,50.468594],[-3.78101,50.47002],[-3.78201,50.472292],[-3.784447,50.473321],[-3.786405,50.472634],[-3.78628,50.475447],[-3.787284,50.475603],[-3.786982,50.477044],[-3.786129,50.477745],[-3.788876,50.478256],[-3.791914,50.477795],[-3.7933,50.47848],[-3.79353,50.48034],[-3.794353,50.480942],[-3.791198,50.482289],[-3.793119,50.483974],[-3.794883,50.486403],[-3.796961,50.487253],[-3.798272,50.48942],[-3.794428,50.489948],[-3.795314,50.491937],[-3.792271,50.493001],[-3.789635,50.49298],[-3.789765,50.494075],[-3.790806,50.495611],[-3.787197,50.494916],[-3.782961,50.494753],[-3.77909,50.494898],[-3.775891,50.495574],[-3.776187,50.497108],[-3.778395,50.498546],[-3.780408,50.498825],[-3.785575,50.498723],[-3.789222,50.499412],[-3.790688,50.500169],[-3.791775,50.501429],[-3.791661,50.502296],[-3.788235,50.503813],[-3.787103,50.505013],[-3.786302,50.507419],[-3.787502,50.509983],[-3.785367,50.513554],[-3.784758,50.517716],[-3.788025,50.520546],[-3.789412,50.521221],[-3.791147,50.521441],[-3.794266,50.520837],[-3.798174,50.520951],[-3.799502,50.521704],[-3.799638,50.522735],[-3.797998,50.525833],[-3.797699,50.529876],[-3.794871,50.532562],[-3.798359,50.534956],[-3.799469,50.536388],[-3.800882,50.536928],[-3.80198,50.536763],[-3.803891,50.535415],[-3.805207,50.533882],[-3.805497,50.532886],[-3.808843,50.532901],[-3.811198,50.530791],[-3.814835,50.529498],[-3.814671,50.52763],[-3.813649,50.526129],[-3.813751,50.525419],[-3.81814,50.525081],[-3.819939,50.522076],[-3.820175,50.519228],[-3.821892,50.516849],[-3.822776,50.516564],[-3.825529,50.516758],[-3.827215,50.516362],[-3.836265,50.523317],[-3.837147,50.52489],[-3.836116,50.526726],[-3.836599,50.527497],[-3.840296,50.530224],[-3.842666,50.530507],[-3.84379,50.53099],[-3.844035,50.531839],[-3.843331,50.533235],[-3.844596,50.534364],[-3.851514,50.536152],[-3.852882,50.535582],[-3.855277,50.533217],[-3.858636,50.53258],[-3.86152,50.534011],[-3.863266,50.534414],[-3.866491,50.534494],[-3.871285,50.534091],[-3.871966,50.534479],[-3.872846,50.536099],[-3.87488,50.537609],[-3.875321,50.540121],[-3.87502,50.541027],[-3.875604,50.542531],[-3.877444,50.542431],[-3.879691,50.541558],[-3.880443,50.540276],[-3.882195,50.539967],[-3.883497,50.53923],[-3.884666,50.537196],[-3.886486,50.536138],[-3.889161,50.536319],[-3.88812,50.533216],[-3.884312,50.53065],[-3.884015,50.529361],[-3.884584,50.528673],[-3.884572,50.527034],[-3.88641,50.524629],[-3.891183,50.52352],[-3.890652,50.519636],[-3.892602,50.513852],[-3.89134,50.505889],[-3.884328,50.501564],[-3.883187,50.499573],[-3.883867,50.498023],[-3.883676,50.495886],[-3.883041,50.495269],[-3.882741,50.492818],[-3.881236,50.490762],[-3.879857,50.487296],[-3.880237,50.485674],[-3.881913,50.48406],[-3.882347,50.482702],[-3.883733,50.480796],[-3.883716,50.48],[-3.888058,50.480102],[-3.891533,50.479453],[-3.891699,50.478379],[-3.897893,50.47454],[-3.898983,50.472776],[-3.903844,50.477172],[-3.906263,50.476825],[-3.90924,50.47844],[-3.911396,50.480262],[-3.914783,50.481857],[-3.919979,50.481654],[-3.921471,50.481043],[-3.922412,50.480039],[-3.923742,50.479486],[-3.925662,50.479766],[-3.926381,50.480966],[-3.932593,50.481951],[-3.93589,50.483534],[-3.938985,50.484424],[-3.946006,50.489079],[-3.948779,50.488656],[-3.948706,50.492743],[-3.945789,50.498268],[-3.946566,50.497998],[-3.952364,50.499059],[-3.954853,50.500215],[-3.955969,50.500243],[-3.9602,50.499235],[-3.962471,50.498189],[-3.96477,50.49631],[-3.965318,50.494183],[-3.967554,50.491975],[-3.967972,50.489824],[-3.970444,50.488135],[-3.975159,50.487951],[-3.976173,50.487436],[-3.978655,50.486995],[-3.979362,50.486492],[-3.982169,50.485566],[-3.984901,50.483879],[-3.984691,50.483319],[-3.987847,50.481499],[-3.990937,50.481189],[-3.992358,50.47908],[-3.993912,50.478333],[-3.994781,50.477389],[-4.001265,50.477344],[-4.005287,50.476404],[-4.004443,50.475864],[-4.00674,50.474187],[-4.00649,50.472143],[-4.007901,50.469674],[-4.011074,50.469577],[-4.017645,50.468317],[-4.023054,50.468729],[-4.024446,50.4674],[-4.024076,50.464644],[-4.023347,50.463179],[-4.023927,50.462035],[-4.025599,50.462328],[-4.027407,50.461741],[-4.029817,50.462493],[-4.029575,50.463376],[-4.031249,50.463756],[-4.033918,50.462783],[-4.03548,50.463774],[-4.037484,50.463484],[-4.038665,50.462636],[-4.042492,50.461859],[-4.042622,50.460458],[-4.044199,50.459847],[-4.046126,50.459546],[-4.047487,50.458845],[-4.050665,50.458765],[-4.053106,50.457321],[-4.057167,50.45673],[-4.058415,50.455939],[-4.060178,50.45403],[-4.064016,50.454305],[-4.065403,50.454856],[-4.068014,50.454498],[-4.067849,50.45536],[-4.066697,50.456041],[-4.066338,50.457118],[-4.065151,50.45823],[-4.065174,50.459627],[-4.07012,50.459483],[-4.071375,50.460898],[-4.07277,50.461507],[-4.072744,50.462499],[-4.076015,50.463947],[-4.076193,50.465639],[-4.077913,50.467259],[-4.077161,50.467834],[-4.078016,50.4688],[-4.079416,50.46818],[-4.09886,50.460681],[-4.104275,50.45536],[-4.107268,50.450387],[-4.108206,50.454479],[-4.110441,50.453955],[-4.109261,50.457218],[-4.109547,50.459375],[-4.108567,50.46297],[-4.116261,50.463052],[-4.119755,50.46389],[-4.120264,50.463735],[-4.123631,50.464493],[-4.128336,50.465084],[-4.130907,50.464489],[-4.134014,50.464228],[-4.137105,50.46474],[-4.138623,50.463248],[-4.142529,50.462222],[-4.144559,50.462068],[-4.147407,50.463246],[-4.148987,50.463496],[-4.151473,50.463416],[-4.151922,50.463817],[-4.154528,50.463349],[-4.156306,50.462574],[-4.157013,50.461231],[-4.154587,50.459829],[-4.154596,50.456548],[-4.156697,50.453608],[-4.158629,50.452546],[-4.160171,50.451122],[-4.16207,50.450431],[-4.161656,50.449699],[-4.157901,50.447772],[-4.15906,50.447461],[-4.161243,50.448526],[-4.161309,50.44944],[-4.162655,50.44941],[-4.163292,50.446873],[-4.165518,50.446078],[-4.165065,50.443833],[-4.165606,50.442374],[-4.166638,50.442288],[-4.169732,50.440871],[-4.170432,50.439101],[-4.171932,50.437896],[-4.173184,50.435869],[-4.173899,50.4353],[-4.176521,50.434569],[-4.175575,50.43376],[-4.177879,50.433458],[-4.180379,50.431867],[-4.182711,50.430881],[-4.184358,50.429439],[-4.186271,50.429425],[-4.189549,50.428731],[-4.188348,50.42728],[-4.183565,50.425447],[-4.18101,50.425409],[-4.178283,50.424601],[-4.176766,50.423305],[-4.175242,50.423523],[-4.174548,50.424303],[-4.17303,50.424479],[-4.169327,50.424015],[-4.16849,50.424713],[-4.165944,50.425505],[-4.165436,50.42627],[-4.163464,50.427606],[-4.16472,50.428587],[-4.165304,50.429998],[-4.159955,50.431345],[-4.15629,50.43375],[-4.155856,50.436427],[-4.151122,50.436635],[-4.150745,50.433001],[-4.148649,50.432955],[-4.146575,50.431102],[-4.144615,50.432318],[-4.141623,50.433271],[-4.13937,50.433368],[-4.138074,50.432914],[-4.135664,50.432928],[-4.131965,50.433671],[-4.124879,50.43571],[-4.124396,50.436094],[-4.125119,50.438402],[-4.122676,50.440818],[-4.11848,50.442345],[-4.116922,50.443388],[-4.116135,50.442993],[-4.113488,50.444154],[-4.112742,50.4434],[-4.110217,50.442198],[-4.109112,50.43847],[-4.106514,50.438562],[-4.106699,50.436971],[-4.107712,50.435557],[-4.106708,50.434868],[-4.108765,50.433799],[-4.108296,50.432598],[-4.109541,50.432095],[-4.107301,50.431254],[-4.106203,50.430332],[-4.10415,50.430123],[-4.101243,50.4304],[-4.098881,50.429738],[-4.097931,50.428645],[-4.094206,50.427819],[-4.09318,50.427057],[-4.090558,50.427129],[-4.088586,50.426663],[-4.087233,50.425828],[-4.084731,50.425826],[-4.082584,50.424552],[-4.082395,50.422268],[-4.080567,50.419828],[-4.079111,50.41889],[-4.08102,50.416503],[-4.080549,50.415358],[-4.077287,50.413568],[-4.077762,50.412981],[-4.07697,50.411694],[-4.077604,50.410483],[-4.078962,50.409642],[-4.077784,50.408586],[-4.074604,50.408186],[-4.072539,50.407137],[-4.072183,50.403831],[-4.07151,50.40185],[-4.063544,50.401067],[-4.059815,50.401154],[-4.056747,50.402581],[-4.055467,50.401978],[-4.055339,50.401126],[-4.052609,50.401472],[-4.052511,50.402508],[-4.048928,50.40163],[-4.048698,50.402106],[-4.046605,50.401978],[-4.044253,50.40109],[-4.03965,50.40142],[-4.039478,50.40075],[-4.041146,50.39778],[-4.037591,50.397344],[-4.034694,50.397487],[-4.030412,50.397079],[-4.03155,50.39429],[-4.027815,50.394002],[-4.028902,50.39221],[-4.02117,50.391777],[-4.021519,50.390668],[-4.020931,50.388748],[-4.019634,50.387465],[-4.025735,50.383314],[-4.025318,50.381785],[-4.024551,50.380977],[-4.027062,50.379032],[-4.030881,50.37782],[-4.034999,50.377205],[-4.040558,50.377132],[-4.047554,50.377655],[-4.0502,50.377471],[-4.050586,50.374677],[-4.05432,50.369792],[-4.055088,50.368256],[-4.049761,50.363081],[-4.050948,50.36226],[-4.049703,50.361141],[-4.051593,50.360482],[-4.050196,50.358049],[-4.053828,50.357449],[-4.057796,50.358335],[-4.05758,50.357204],[-4.058174,50.356126],[-4.059688,50.356733],[-4.06094,50.355874],[-4.061925,50.356671],[-4.064138,50.35605],[-4.065364,50.355376],[-4.071687,50.353487],[-4.072342,50.352709],[-4.079418,50.350154],[-4.081391,50.346603],[-4.082915,50.344973],[-4.085784,50.343369],[-4.088644,50.342961],[-4.089588,50.341334],[-4.09076,50.341719],[-4.093277,50.343381],[-4.094255,50.34325],[-4.099959,50.344277],[-4.101953,50.345108],[-4.104663,50.345689],[-4.10725,50.345585],[-4.114676,50.344374],[-4.116349,50.345586],[-4.119349,50.345141],[-4.123058,50.346709],[-4.124299,50.345333],[-4.126378,50.344634],[-4.12622,50.344073],[-4.128541,50.342929],[-4.127815,50.341987],[-4.128725,50.340314],[-4.127176,50.339315],[-4.127674,50.338806],[-4.12711,50.337697],[-4.127946,50.33712],[-4.12677,50.336037],[-4.125057,50.33602],[-4.124307,50.336509],[-4.120006,50.336152],[-4.119668,50.335091],[-4.121221,50.334655],[-4.12143,50.33353],[-4.119845,50.33329],[-4.119128,50.33214],[-4.11983,50.331067],[-4.119131,50.330488],[-4.119384,50.328993],[-4.120876,50.328818],[-4.122015,50.328168],[-4.121735,50.326708],[-4.122218,50.325496],[-4.121739,50.324204],[-4.119039,50.323304],[-4.120656,50.321756],[-4.119883,50.321128],[-4.119016,50.319377],[-4.117749,50.319692],[-4.112316,50.318872],[-4.113308,50.316882],[-4.111635,50.31589],[-4.105905,50.315354],[-4.105071,50.314975],[-4.102752,50.316611],[-4.100947,50.3172],[-4.092515,50.317041],[-4.089959,50.316329],[-4.088906,50.316428],[-4.08687,50.31747],[-4.085193,50.317818],[-4.082036,50.316485],[-4.081269,50.316614],[-4.078889,50.315946],[-4.077245,50.316238],[-4.075458,50.315829],[-4.074523,50.31502],[-4.071858,50.314922],[-4.070332,50.314116],[-4.069383,50.312236],[-4.066867,50.31277],[-4.064982,50.312796],[-4.063918,50.313269],[-4.061522,50.313351],[-4.059724,50.313051],[-4.057231,50.311589],[-4.054829,50.311429],[-4.053508,50.312581],[-4.055234,50.314496],[-4.055724,50.317731],[-4.05538,50.318595],[-4.05323,50.31955],[-4.049519,50.322786],[-4.05049,50.3248],[-4.050397,50.325516],[-4.047597,50.327206],[-4.047428,50.328601],[-4.048981,50.330243],[-4.047569,50.331037],[-4.048407,50.331853],[-4.051661,50.333413],[-4.052625,50.335245],[-4.052667,50.336706],[-4.053691,50.337468],[-4.052233,50.337934],[-4.051476,50.338679],[-4.05248,50.341881],[-4.05091,50.341673],[-4.049298,50.33769],[-4.051238,50.336169],[-4.051066,50.334858],[-4.046669,50.332753],[-4.04562,50.331589],[-4.044447,50.331582],[-4.04405,50.332643],[-4.042107,50.334737],[-4.042116,50.33596],[-4.040846,50.335727],[-4.039628,50.336311],[-4.03904,50.338148],[-4.035561,50.340889],[-4.033668,50.341448],[-4.032737,50.342609],[-4.031603,50.341711],[-4.033584,50.339402],[-4.033323,50.338975],[-4.027231,50.339806],[-4.02704,50.340072],[-4.020558,50.341761],[-4.018779,50.341482],[-4.019309,50.340054],[-4.020873,50.339421],[-4.021569,50.339769],[-4.025474,50.338371],[-4.027386,50.337177],[-4.029005,50.336569],[-4.029593,50.335483],[-4.031204,50.335231],[-4.033646,50.334022],[-4.036681,50.333167],[-4.039932,50.331696],[-4.041449,50.330429],[-4.042368,50.330413],[-4.042747,50.328886],[-4.045659,50.3267],[-4.046395,50.324801],[-4.046106,50.323416],[-4.049181,50.320278],[-4.052939,50.317989],[-4.053227,50.315035],[-4.052024,50.313799],[-4.047859,50.313701],[-4.045553,50.313064],[-4.044663,50.312459],[-4.041384,50.312878],[-4.040397,50.313433],[-4.035438,50.313866],[-4.030596,50.315821],[-4.0319,50.314309],[-4.034913,50.312772],[-4.039496,50.31252],[-4.040867,50.311866],[-4.044701,50.31174],[-4.048573,50.312825],[-4.050837,50.312318],[-4.052108,50.310172],[-4.053448,50.309501],[-4.056998,50.309395],[-4.06093,50.311629],[-4.062541,50.311596],[-4.06449,50.310411],[-4.064942,50.309176],[-4.066328,50.309345],[-4.068988,50.309084],[-4.071653,50.30919],[-4.072306,50.308871],[-4.07372,50.306509],[-4.074688,50.306055],[-4.073592,50.305235],[-4.074641,50.304019],[-4.07364,50.30353],[-4.070647,50.302918],[-4.067811,50.302792],[-4.065121,50.30223],[-4.063033,50.300685],[-4.060027,50.300526],[-4.05895,50.298962],[-4.057503,50.297805],[-4.055845,50.297398],[-4.052645,50.297968],[-4.051858,50.296614],[-4.050787,50.295963],[-4.050795,50.29429],[-4.04896,50.294771],[-4.048305,50.295446],[-4.04599,50.294833],[-4.046325,50.293981],[-4.043179,50.293681],[-4.041124,50.294487],[-4.039736,50.294181],[-4.040079,50.293293],[-4.037831,50.293225],[-4.035183,50.292826],[-4.031482,50.29416],[-4.029433,50.295169],[-4.026418,50.295877],[-4.024787,50.296615],[-4.024377,50.294935],[-4.023446,50.294508],[-4.020309,50.294638],[-4.019173,50.29526],[-4.018321,50.296556],[-4.018875,50.297719],[-4.017878,50.29818],[-4.018551,50.299053],[-4.017417,50.299788],[-4.016581,50.30124],[-4.015547,50.301862],[-4.011481,50.303143],[-4.010409,50.302753],[-4.006492,50.302132],[-4.006483,50.301571],[-4.003781,50.301642],[-4.002447,50.30211],[-4.001402,50.303182],[-3.9999,50.303216],[-3.998184,50.303956],[-3.99718,50.305247],[-3.994787,50.305913],[-3.993903,50.307027],[-3.991803,50.307509],[-3.986686,50.30726],[-3.986042,50.306434],[-3.984716,50.306745],[-3.980034,50.307163],[-3.979686,50.306681],[-3.975699,50.307414],[-3.973112,50.307083],[-3.972471,50.305958],[-3.969605,50.305812],[-3.968008,50.305358],[-3.964054,50.305096],[-3.963945,50.303824],[-3.960485,50.304529],[-3.959894,50.305307],[-3.957737,50.305838],[-3.955427,50.306813],[-3.954376,50.308001],[-3.953912,50.30938],[-3.950158,50.309497],[-3.948474,50.3098],[-3.946756,50.31287],[-3.945531,50.313041],[-3.942061,50.314478],[-3.940162,50.316171],[-3.940292,50.317421],[-3.939698,50.318425],[-3.938285,50.319579],[-3.938287,50.321184],[-3.938927,50.321671],[-3.938226,50.324132],[-3.93979,50.325554],[-3.93962,50.32689],[-3.938857,50.327664],[-3.938135,50.329417],[-3.933608,50.332353],[-3.93197,50.332595],[-3.933003,50.331023],[-3.935662,50.327933],[-3.936096,50.325024],[-3.935802,50.324726],[-3.931601,50.325006],[-3.928512,50.325662],[-3.929706,50.324446],[-3.931872,50.323718],[-3.934759,50.323182],[-3.936335,50.320589],[-3.936554,50.319184],[-3.938993,50.317705],[-3.93859,50.316377],[-3.938873,50.314705],[-3.939898,50.312764],[-3.942959,50.309912],[-3.942549,50.308253],[-3.944003,50.308028],[-3.945088,50.307266],[-3.946829,50.306769],[-3.94741,50.301734],[-3.943609,50.301069],[-3.943858,50.299042],[-3.944618,50.297807],[-3.942779,50.296688],[-3.938692,50.297481],[-3.937405,50.29664],[-3.935231,50.296441],[-3.935244,50.295827],[-3.933287,50.295358],[-3.930952,50.29619],[-3.928456,50.295649],[-3.926048,50.29695],[-3.924859,50.296655],[-3.922474,50.296996],[-3.9194,50.2958],[-3.917731,50.296056],[-3.91521,50.294743],[-3.913195,50.294791],[-3.912296,50.294394],[-3.909955,50.294333],[-3.908985,50.292544],[-3.907204,50.292104],[-3.906979,50.290667],[-3.905521,50.290586],[-3.903275,50.289851],[-3.901133,50.287825],[-3.899948,50.288621],[-3.897994,50.288057],[-3.896793,50.28709],[-3.896657,50.286323],[-3.898035,50.285452],[-3.897024,50.283223],[-3.895088,50.281763],[-3.89259,50.282289],[-3.889497,50.281842],[-3.887588,50.282419],[-3.885651,50.283618],[-3.879798,50.28463],[-3.877643,50.284214],[-3.876594,50.283552],[-3.875405,50.281392],[-3.874229,50.280945],[-3.870968,50.281256],[-3.868698,50.282815],[-3.867776,50.28624],[-3.86491,50.289353],[-3.862643,50.290084],[-3.860497,50.291425],[-3.860746,50.292273],[-3.862559,50.294116],[-3.86229,50.296354],[-3.863029,50.298201],[-3.862154,50.298255],[-3.860521,50.300221],[-3.859391,50.300811],[-3.854346,50.302184],[-3.854458,50.302972],[-3.851075,50.30493],[-3.851267,50.306324],[-3.848741,50.306682],[-3.846979,50.307813],[-3.843179,50.309008],[-3.8409,50.310157],[-3.839908,50.308914],[-3.84213,50.308992],[-3.844897,50.307703],[-3.848235,50.305357],[-3.850077,50.304473],[-3.850039,50.303784],[-3.848116,50.303582],[-3.850157,50.302412],[-3.851748,50.300841],[-3.85366,50.29997],[-3.858068,50.298796],[-3.859716,50.297133],[-3.859612,50.294998],[-3.858683,50.2942],[-3.859069,50.293085],[-3.858362,50.291502],[-3.854734,50.2918],[-3.854498,50.291083],[-3.858125,50.290595],[-3.860064,50.289021],[-3.864164,50.287222],[-3.865345,50.284674],[-3.865343,50.282324],[-3.866568,50.280242],[-3.868119,50.27931],[-3.870936,50.278807],[-3.875939,50.279806],[-3.877281,50.280695],[-3.877721,50.281825],[-3.880008,50.281766],[-3.878692,50.27815],[-3.879498,50.276905],[-3.88099,50.277027],[-3.881745,50.276526],[-3.879627,50.273617],[-3.879106,50.272042],[-3.876951,50.271671],[-3.87697,50.271006],[-3.875167,50.270347],[-3.874732,50.269342],[-3.87201,50.268454],[-3.870542,50.26835],[-3.869177,50.267498],[-3.867773,50.265733],[-3.868086,50.264],[-3.865145,50.263898],[-3.864164,50.264458],[-3.862757,50.264448],[-3.859196,50.262148],[-3.858086,50.260594],[-3.857841,50.256712],[-3.858682,50.255556],[-3.86042,50.254421],[-3.859663,50.251721],[-3.860318,50.250587],[-3.859729,50.249817],[-3.859031,50.246136],[-3.859428,50.244966],[-3.859114,50.242511],[-3.859737,50.242156],[-3.861802,50.242753],[-3.86436,50.24238],[-3.86573,50.243229],[-3.86883,50.243007],[-3.870663,50.242508],[-3.871164,50.241915],[-3.869769,50.240762],[-3.868094,50.240767],[-3.86695,50.24003],[-3.866988,50.238949],[-3.864422,50.237304],[-3.862366,50.237145],[-3.862758,50.236239],[-3.860969,50.235882],[-3.86002,50.234234],[-3.855708,50.234456],[-3.852734,50.234321],[-3.852779,50.233047],[-3.850924,50.232428],[-3.849551,50.231133],[-3.847733,50.23032],[-3.84377,50.230151],[-3.842151,50.230376],[-3.840866,50.229376],[-3.837976,50.228701],[-3.83791,50.228],[-3.83556,50.227558],[-3.832811,50.224721],[-3.829733,50.223386],[-3.82683,50.222951],[-3.827184,50.221917],[-3.82616,50.221201],[-3.826354,50.220179],[-3.823829,50.218642],[-3.824379,50.217895],[-3.823425,50.217189],[-3.820752,50.217253],[-3.819721,50.216243],[-3.816927,50.216755],[-3.81621,50.216425],[-3.816737,50.215077],[-3.813615,50.214905],[-3.811313,50.214255],[-3.809264,50.214711],[-3.808292,50.214371],[-3.80702,50.214822],[-3.803369,50.214614],[-3.802796,50.214938],[-3.799352,50.214708],[-3.798427,50.212444],[-3.796494,50.211212],[-3.792792,50.211444],[-3.7906,50.210759],[-3.789585,50.210017],[-3.786934,50.209805],[-3.784649,50.210831],[-3.786889,50.213159],[-3.786787,50.215132],[-3.78437,50.215516],[-3.78172,50.215357],[-3.780822,50.21563],[-3.781174,50.217261],[-3.780929,50.219268],[-3.782149,50.221319],[-3.782195,50.22225],[-3.780673,50.2235],[-3.78148,50.22476],[-3.783827,50.224815],[-3.784389,50.225543],[-3.783811,50.226455],[-3.780774,50.227804],[-3.780646,50.228304],[-3.781937,50.229573],[-3.781238,50.230057],[-3.779284,50.229871],[-3.778493,50.229131],[-3.77581,50.229285],[-3.775772,50.229989],[-3.774305,50.231468],[-3.772243,50.232008],[-3.768015,50.235375],[-3.766122,50.236313],[-3.76698,50.238445],[-3.765941,50.240459],[-3.767737,50.242254],[-3.769024,50.243035],[-3.774195,50.24323],[-3.771865,50.244034],[-3.768594,50.243735],[-3.768136,50.244361],[-3.76511,50.242338],[-3.764415,50.241148],[-3.762571,50.239656],[-3.759998,50.239417],[-3.758784,50.240645],[-3.760497,50.241263],[-3.761352,50.242358],[-3.761049,50.24384],[-3.760362,50.244662],[-3.761493,50.24585],[-3.759202,50.247701],[-3.761283,50.248601],[-3.762413,50.250092],[-3.765275,50.251428],[-3.764365,50.252543],[-3.764877,50.253979],[-3.766107,50.254243],[-3.769231,50.254091],[-3.772662,50.254654],[-3.774453,50.254587],[-3.777581,50.255291],[-3.778271,50.254695],[-3.780754,50.253672],[-3.782224,50.254955],[-3.787904,50.255004],[-3.784222,50.256306],[-3.781407,50.256508],[-3.779816,50.256319],[-3.775929,50.257132],[-3.775036,50.257902],[-3.776398,50.258403],[-3.776295,50.260312],[-3.779205,50.261193],[-3.781203,50.261201],[-3.784885,50.262255],[-3.784631,50.26297],[-3.780994,50.261859],[-3.775298,50.261774],[-3.771906,50.260089],[-3.769469,50.260579],[-3.767278,50.263088],[-3.767337,50.264455],[-3.770423,50.2669],[-3.771364,50.268436],[-3.769922,50.269655],[-3.771941,50.270186],[-3.774582,50.269618],[-3.773243,50.27111],[-3.772144,50.271676],[-3.774259,50.27443],[-3.773562,50.277197],[-3.77391,50.277847],[-3.776157,50.279274],[-3.775175,50.279643],[-3.776283,50.282403],[-3.775902,50.282564],[-3.773523,50.278383],[-3.77232,50.277113],[-3.772577,50.27521],[-3.768008,50.272549],[-3.765281,50.271716],[-3.763971,50.273694],[-3.762356,50.275032],[-3.761934,50.276336],[-3.760972,50.276752],[-3.760881,50.278859],[-3.75934,50.281785],[-3.759522,50.282466],[-3.75803,50.283655],[-3.75879,50.280871],[-3.759094,50.27679],[-3.759952,50.275304],[-3.76189,50.274829],[-3.761153,50.273239],[-3.76093,50.271582],[-3.759881,50.270659],[-3.759976,50.269517],[-3.759283,50.268045],[-3.761703,50.266546],[-3.760885,50.265521],[-3.761892,50.264647],[-3.761471,50.263921],[-3.761968,50.261495],[-3.760844,50.26061],[-3.759556,50.260272],[-3.757677,50.260482],[-3.756588,50.261408],[-3.754534,50.260591],[-3.753757,50.257773],[-3.75714,50.255585],[-3.756788,50.254806],[-3.755116,50.254777],[-3.75146,50.256009],[-3.751954,50.25735],[-3.750637,50.259289],[-3.748802,50.260081],[-3.747413,50.26027],[-3.747143,50.261261],[-3.745262,50.26207],[-3.743317,50.262134],[-3.741516,50.263074],[-3.738744,50.263486],[-3.735725,50.263553],[-3.732306,50.264483],[-3.730457,50.266626],[-3.730497,50.26737],[-3.728919,50.268859],[-3.720197,50.270797],[-3.719958,50.270554],[-3.724149,50.268719],[-3.725707,50.268511],[-3.728597,50.266861],[-3.730533,50.264369],[-3.72962,50.263385],[-3.733188,50.262506],[-3.734651,50.26156],[-3.737963,50.26146],[-3.739219,50.261818],[-3.742192,50.261452],[-3.745112,50.260115],[-3.74428,50.259517],[-3.737403,50.259116],[-3.737037,50.257575],[-3.739238,50.257166],[-3.743165,50.257279],[-3.747533,50.256501],[-3.748391,50.255401],[-3.748515,50.254306],[-3.747349,50.253388],[-3.746797,50.252116],[-3.74723,50.251607],[-3.751242,50.252892],[-3.754373,50.252396],[-3.755379,50.251914],[-3.756865,50.250357],[-3.754594,50.248985],[-3.752827,50.246778],[-3.752798,50.245514],[-3.75496,50.244861],[-3.756877,50.243467],[-3.755145,50.241716],[-3.756165,50.24094],[-3.755841,50.240206],[-3.752326,50.239771],[-3.749202,50.240497],[-3.748572,50.241595],[-3.747084,50.240725],[-3.745106,50.240905],[-3.742227,50.241744],[-3.741212,50.242636],[-3.739788,50.242487],[-3.738338,50.24328],[-3.73516,50.242548],[-3.734701,50.242947],[-3.734069,50.245152],[-3.733042,50.246246],[-3.728225,50.248287],[-3.725894,50.248797],[-3.724885,50.248075],[-3.72745,50.2475],[-3.729657,50.246393],[-3.730753,50.245428],[-3.733075,50.244391],[-3.732852,50.24335],[-3.734483,50.241887],[-3.735744,50.241363],[-3.738431,50.241616],[-3.739119,50.241061],[-3.737726,50.240109],[-3.732226,50.238708],[-3.730747,50.237327],[-3.732893,50.236987],[-3.733498,50.237594],[-3.7409,50.23966],[-3.746229,50.238041],[-3.751083,50.237457],[-3.752893,50.237864],[-3.753633,50.237576],[-3.756457,50.237452],[-3.757438,50.236424],[-3.759339,50.236525],[-3.761338,50.236247],[-3.76238,50.235438],[-3.763977,50.234898],[-3.764946,50.232917],[-3.766025,50.232567],[-3.767085,50.231304],[-3.766646,50.229648],[-3.76867,50.22972],[-3.770915,50.228763],[-3.770269,50.227659],[-3.772745,50.225962],[-3.77273,50.22487],[-3.773472,50.224122],[-3.771459,50.222954],[-3.770544,50.221889],[-3.765713,50.220459],[-3.761836,50.220168],[-3.759582,50.22029],[-3.758504,50.219262],[-3.754031,50.219036],[-3.752921,50.218618],[-3.751715,50.21911],[-3.750035,50.219143],[-3.748952,50.218223],[-3.748138,50.218553],[-3.746692,50.217569],[-3.746799,50.216784],[-3.743541,50.215307],[-3.740976,50.215316],[-3.739877,50.214561],[-3.736637,50.21434],[-3.735845,50.213626],[-3.736874,50.21308],[-3.735045,50.211039],[-3.732942,50.209906],[-3.732497,50.208117],[-3.7316,50.207041],[-3.73043,50.207669],[-3.729948,50.208649],[-3.725865,50.2082],[-3.72648,50.205927],[-3.72603,50.205141],[-3.721346,50.201903],[-3.720185,50.201989],[-3.718939,50.203581],[-3.717543,50.203887],[-3.71674,50.205294],[-3.714602,50.205888],[-3.709735,50.206393],[-3.708224,50.205402],[-3.706824,50.206144],[-3.706459,50.207049],[-3.703746,50.208238],[-3.70309,50.209652],[-3.703435,50.211227],[-3.697288,50.213313],[-3.696021,50.213958],[-3.69456,50.214092],[-3.692787,50.215534],[-3.690533,50.215796],[-3.688209,50.216776],[-3.68932,50.217335],[-3.68855,50.218938],[-3.685103,50.219587],[-3.684168,50.220668],[-3.680961,50.222405],[-3.679536,50.221703],[-3.676164,50.221519],[-3.674282,50.220894],[-3.672498,50.221208],[-3.671608,50.220738],[-3.668189,50.22033],[-3.666346,50.22094],[-3.664678,50.220095],[-3.662457,50.220789],[-3.660121,50.220552],[-3.658051,50.218642],[-3.65576,50.217759],[-3.655058,50.218506],[-3.653294,50.219198],[-3.652845,50.219929],[-3.650523,50.220645],[-3.650046,50.221832],[-3.64747,50.222161],[-3.643009,50.221746],[-3.641159,50.221966],[-3.643217,50.223793],[-3.645384,50.223881],[-3.646318,50.224497],[-3.649551,50.224776],[-3.65163,50.225967],[-3.651587,50.226634],[-3.654094,50.227589],[-3.655338,50.229107],[-3.657273,50.230908],[-3.657533,50.232206],[-3.658551,50.233618],[-3.658929,50.23513],[-3.658878,50.237054],[-3.659522,50.238241],[-3.658838,50.242515],[-3.65753,50.244587],[-3.657835,50.246624],[-3.656327,50.253805],[-3.65355,50.261508],[-3.652234,50.263376],[-3.652085,50.267327],[-3.646368,50.283039],[-3.642497,50.290352],[-3.638582,50.29542],[-3.633445,50.300912],[-3.629991,50.303952],[-3.626187,50.306563],[-3.625644,50.307344],[-3.622028,50.30872],[-3.615194,50.31484],[-3.613255,50.315866],[-3.612721,50.317269],[-3.609982,50.318784],[-3.606029,50.319593],[-3.604232,50.319118],[-3.601501,50.319162],[-3.598588,50.319786],[-3.596414,50.319835],[-3.59519,50.320518],[-3.594946,50.322219],[-3.588571,50.325831],[-3.584015,50.32618],[-3.584005,50.324728],[-3.581128,50.325353],[-3.580452,50.326028],[-3.577495,50.325494],[-3.576428,50.325033],[-3.574756,50.325984],[-3.572437,50.326099],[-3.570388,50.327629],[-3.572625,50.327969],[-3.571804,50.329231],[-3.572427,50.330183],[-3.569161,50.331217],[-3.56876,50.33273],[-3.567738,50.333646],[-3.564739,50.334439],[-3.56351,50.335401],[-3.565748,50.336285],[-3.565831,50.337734],[-3.565034,50.338392],[-3.567077,50.339722],[-3.565781,50.340658],[-3.567102,50.342464],[-3.568759,50.343611],[-3.570778,50.343222],[-3.571946,50.34259],[-3.57325,50.343291],[-3.576366,50.345547],[-3.577803,50.348682],[-3.577207,50.348985],[-3.577186,50.351531],[-3.576689,50.353529],[-3.576604,50.357051],[-3.578841,50.359924],[-3.581255,50.360547],[-3.583515,50.359862],[-3.588835,50.360447],[-3.590974,50.359664],[-3.592618,50.358624],[-3.596595,50.358254],[-3.59604,50.359795],[-3.593313,50.359838],[-3.588958,50.362151],[-3.588898,50.362916],[-3.585987,50.36264],[-3.583,50.36621],[-3.580555,50.372204],[-3.581031,50.373347],[-3.582605,50.374845],[-3.586757,50.376104],[-3.587502,50.376841],[-3.590586,50.378268],[-3.589021,50.379337],[-3.592837,50.379965],[-3.594824,50.380862],[-3.597321,50.38474],[-3.596029,50.385964],[-3.594303,50.388813],[-3.59414,50.389785],[-3.596557,50.390185],[-3.598428,50.391639],[-3.600209,50.391343],[-3.601312,50.390565],[-3.601517,50.389584],[-3.603616,50.388246],[-3.605705,50.387385],[-3.605599,50.385976],[-3.606681,50.385196],[-3.609701,50.385387],[-3.609376,50.387403],[-3.607469,50.388501],[-3.608565,50.389056],[-3.610062,50.38864],[-3.616619,50.390229],[-3.619077,50.391289],[-3.62619,50.391989],[-3.626137,50.393088],[-3.627519,50.394486],[-3.629787,50.395647],[-3.630287,50.396665],[-3.635403,50.398063],[-3.637749,50.397868],[-3.639518,50.398228],[-3.640936,50.397916],[-3.642832,50.39617],[-3.648436,50.395564],[-3.652747,50.39455],[-3.654369,50.394894],[-3.657488,50.393815],[-3.65892,50.393724],[-3.661166,50.394142],[-3.662755,50.392537],[-3.662895,50.394171],[-3.662499,50.394769],[-3.659599,50.395424],[-3.658212,50.395335],[-3.653541,50.396317],[-3.65098,50.396348],[-3.647519,50.397207],[-3.64416,50.396956],[-3.643559,50.39755],[-3.643099,50.399396],[-3.641704,50.400058],[-3.638183,50.400437],[-3.635982,50.402521],[-3.634039,50.405075],[-3.636395,50.405428],[-3.639245,50.404045],[-3.642679,50.403547],[-3.64784,50.404664],[-3.649583,50.406448],[-3.64945,50.407498],[-3.647976,50.408249],[-3.646256,50.408454],[-3.644122,50.409544],[-3.644366,50.410121],[-3.647252,50.410928],[-3.649154,50.410641],[-3.652851,50.410911],[-3.657285,50.41036],[-3.660784,50.411468],[-3.661618,50.413257],[-3.664448,50.415188],[-3.666841,50.416505],[-3.671443,50.420198],[-3.677202,50.422871],[-3.676978,50.423061],[-3.681352,50.426163],[-3.682623,50.427669],[-3.682132,50.428271],[-3.681521,50.432883],[-3.68086,50.430931],[-3.681753,50.427612],[-3.677123,50.423868],[-3.675509,50.422895],[-3.670079,50.420415],[-3.664946,50.416407],[-3.660285,50.415202],[-3.658746,50.413751],[-3.659142,50.412683],[-3.658195,50.412049],[-3.656181,50.411684],[-3.651453,50.412281],[-3.651238,50.41331],[-3.652729,50.413785],[-3.653137,50.414921],[-3.650541,50.413987],[-3.649735,50.412907],[-3.644527,50.412323],[-3.642654,50.411141],[-3.642133,50.40921],[-3.645433,50.407081],[-3.647654,50.406721],[-3.64758,50.406214],[-3.644693,50.405581],[-3.643125,50.405611],[-3.637331,50.407372],[-3.635657,50.407599],[-3.631921,50.405816],[-3.630032,50.403438],[-3.631569,50.402158],[-3.633249,50.40187],[-3.632415,50.400065],[-3.628894,50.399693],[-3.627184,50.398795],[-3.623623,50.397932],[-3.623342,50.39878],[-3.623764,50.400242],[-3.623199,50.400914],[-3.621272,50.398601],[-3.618127,50.397995],[-3.616987,50.397243],[-3.614863,50.396457],[-3.612466,50.393163],[-3.60992,50.392341],[-3.607099,50.392325],[-3.602758,50.395287],[-3.602204,50.394308],[-3.601083,50.394182],[-3.596929,50.394658],[-3.592181,50.394763],[-3.590088,50.395155],[-3.587708,50.394807],[-3.585379,50.393278],[-3.582975,50.394093],[-3.582706,50.393274],[-3.580585,50.392445],[-3.578651,50.392413],[-3.575482,50.39301],[-3.574697,50.392092],[-3.578548,50.390874],[-3.577453,50.390009],[-3.577757,50.388978],[-3.580541,50.388733],[-3.581595,50.387147],[-3.582878,50.38612],[-3.586971,50.384935],[-3.591587,50.382265],[-3.590849,50.38128],[-3.587473,50.380954],[-3.58647,50.379896],[-3.584671,50.379012],[-3.582653,50.378674],[-3.579884,50.377484],[-3.578197,50.375782],[-3.576724,50.370357],[-3.575324,50.368085],[-3.573523,50.367828],[-3.572897,50.367118],[-3.576713,50.367537],[-3.577053,50.36632],[-3.57546,50.365738],[-3.576375,50.363354],[-3.572545,50.35942],[-3.570582,50.357026],[-3.57005,50.355364],[-3.570477,50.352733],[-3.57016,50.351458],[-3.564263,50.352714],[-3.568031,50.350885],[-3.570282,50.351295],[-3.57168,50.349582],[-3.573364,50.348877],[-3.573643,50.347921],[-3.572538,50.347131],[-3.569408,50.346635],[-3.567648,50.346871],[-3.564021,50.345736],[-3.564023,50.344767],[-3.562736,50.343666],[-3.562525,50.342769],[-3.560718,50.34282],[-3.559993,50.341813],[-3.557676,50.341534],[-3.556281,50.341839],[-3.555527,50.341296],[-3.553947,50.341318],[-3.553864,50.339865],[-3.553025,50.338529],[-3.549901,50.338068],[-3.548508,50.338124],[-3.547155,50.338828],[-3.545485,50.337592],[-3.544172,50.335383],[-3.541728,50.335599],[-3.541239,50.336154],[-3.539336,50.336224],[-3.538406,50.33691],[-3.536159,50.336567],[-3.534436,50.336984],[-3.535002,50.338315],[-3.533656,50.33842],[-3.533779,50.339447],[-3.532466,50.342165],[-3.53072,50.343237],[-3.529205,50.343768],[-3.526549,50.343904],[-3.525635,50.3443],[-3.522903,50.344504],[-3.520671,50.344954],[-3.520688,50.346027],[-3.517866,50.346444],[-3.51868,50.347028],[-3.517227,50.34823],[-3.518195,50.348969],[-3.51639,50.350251],[-3.514997,50.35176],[-3.515174,50.353787],[-3.516681,50.355384],[-3.519361,50.356579],[-3.520807,50.356646],[-3.521072,50.358074],[-3.519795,50.359171],[-3.520452,50.360442],[-3.518595,50.363631],[-3.518035,50.364155],[-3.515903,50.364657],[-3.516342,50.367038],[-3.515442,50.367935],[-3.514101,50.368024],[-3.512848,50.368706],[-3.513909,50.369234],[-3.515841,50.369383],[-3.516213,50.371339],[-3.514483,50.373991],[-3.511367,50.376027],[-3.508278,50.376895],[-3.508408,50.377873],[-3.507661,50.37914],[-3.509247,50.379537],[-3.514859,50.378827],[-3.515523,50.379297],[-3.51849,50.378856],[-3.520742,50.378146],[-3.526085,50.377648],[-3.528502,50.378255],[-3.52964,50.37824],[-3.533922,50.37731],[-3.535438,50.376083],[-3.539089,50.375344],[-3.541215,50.375384],[-3.54167,50.374519],[-3.543729,50.37398],[-3.544256,50.373483],[-3.548506,50.376126],[-3.555338,50.378116],[-3.557164,50.379578],[-3.558903,50.381963],[-3.55951,50.382279],[-3.559994,50.384918],[-3.561239,50.386098],[-3.563133,50.390356],[-3.564641,50.392153],[-3.565801,50.391579],[-3.569413,50.392148],[-3.569837,50.392959],[-3.569186,50.393876],[-3.57188,50.394739],[-3.574746,50.395015],[-3.572976,50.395896],[-3.573786,50.396716],[-3.575527,50.397182],[-3.575348,50.39911],[-3.576053,50.400502],[-3.573617,50.40217],[-3.575374,50.402763],[-3.576389,50.403709],[-3.578879,50.404153],[-3.577598,50.406972],[-3.577989,50.408429],[-3.580142,50.409418],[-3.579851,50.410205],[-3.581986,50.411174],[-3.582549,50.410186],[-3.585345,50.410608],[-3.587708,50.410556],[-3.589441,50.409186],[-3.591415,50.408615],[-3.594183,50.409977],[-3.596317,50.409814],[-3.597534,50.410134],[-3.599047,50.409269],[-3.600275,50.410174],[-3.602368,50.411049],[-3.603756,50.411215],[-3.604483,50.412221],[-3.607364,50.412724],[-3.607251,50.413302],[-3.609858,50.413931],[-3.611613,50.413761],[-3.613911,50.415483],[-3.613839,50.417665],[-3.614462,50.419084],[-3.614042,50.422821],[-3.616693,50.423095],[-3.618751,50.422669],[-3.619413,50.423157],[-3.623842,50.422686],[-3.623476,50.424335],[-3.624139,50.42496],[-3.628043,50.425989],[-3.628062,50.43359],[-3.628412,50.434324],[-3.627127,50.434783],[-3.625354,50.436804],[-3.625286,50.438877],[-3.624589,50.44024],[-3.625075,50.441286],[-3.623563,50.441307],[-3.619306,50.442388],[-3.615481,50.444506],[-3.615074,50.44554],[-3.612776,50.446967],[-3.607157,50.446717],[-3.606053,50.4473],[-3.602957,50.447965],[-3.599593,50.44798],[-3.597079,50.448967],[-3.594262,50.448513],[-3.591963,50.4491],[-3.592182,50.450218],[-3.588662,50.450612],[-3.588426,50.451964],[-3.586885,50.45223],[-3.586783,50.453695],[-3.587988,50.455344],[-3.586945,50.456164],[-3.586984,50.456988],[-3.58828,50.457215],[-3.588922,50.459799],[-3.591484,50.459651],[-3.590508,50.462306],[-3.586639,50.464758],[-3.582802,50.469011],[-3.582606,50.47192],[-3.583568,50.473348],[-3.584131,50.475816],[-3.583575,50.476701],[-3.58425,50.477723]]]]},"properties":{"LAD22CD":"E07000044","LAD22NM":"South Hams","BNG_E":270676,"BNG_N":54036,"LONG":-3.81996,"LAT":50.37195,"GlobalID":"e93863d4-5e9d-4f97-a0de-94fec6593a74"},"id":83}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.584611,50.537907],[-3.585393,50.539032],[-3.58829,50.53903],[-3.589329,50.5371],[-3.588515,50.536106],[-3.586433,50.536827],[-3.584611,50.537907]]],[[[-3.585483,50.743874],[-3.588082,50.743983],[-3.592138,50.74329],[-3.59185,50.745009],[-3.595312,50.747632],[-3.596663,50.74685],[-3.598379,50.747032],[-3.598873,50.746477],[-3.601966,50.745993],[-3.603226,50.747435],[-3.606233,50.748823],[-3.606714,50.751266],[-3.607612,50.752782],[-3.608782,50.753308],[-3.608868,50.754217],[-3.611238,50.753958],[-3.614237,50.75404],[-3.615668,50.752346],[-3.61708,50.751963],[-3.618389,50.751088],[-3.619947,50.750985],[-3.620068,50.752042],[-3.621225,50.753076],[-3.622157,50.755708],[-3.623159,50.755494],[-3.624904,50.756121],[-3.627393,50.756183],[-3.631971,50.754822],[-3.634672,50.755066],[-3.636313,50.755737],[-3.639733,50.755266],[-3.640905,50.757228],[-3.64062,50.758251],[-3.641503,50.758604],[-3.643936,50.75737],[-3.646438,50.756721],[-3.647965,50.756888],[-3.651814,50.756318],[-3.653587,50.756403],[-3.65599,50.757092],[-3.658631,50.757406],[-3.659119,50.758124],[-3.661832,50.759627],[-3.665961,50.759903],[-3.668741,50.762688],[-3.670271,50.763079],[-3.671728,50.763979],[-3.673904,50.761763],[-3.673751,50.760819],[-3.674808,50.760396],[-3.675312,50.75932],[-3.675088,50.757927],[-3.676071,50.757452],[-3.676605,50.755985],[-3.678399,50.755596],[-3.679574,50.754266],[-3.679175,50.752125],[-3.679441,50.750515],[-3.68158,50.750125],[-3.682766,50.751556],[-3.687687,50.752478],[-3.688989,50.752416],[-3.691848,50.753772],[-3.694315,50.752446],[-3.701929,50.750849],[-3.708375,50.748707],[-3.71006,50.742704],[-3.718241,50.737308],[-3.719657,50.734639],[-3.722748,50.731497],[-3.723343,50.728154],[-3.727559,50.727128],[-3.73423,50.723793],[-3.737514,50.723531],[-3.734989,50.721717],[-3.732587,50.718721],[-3.727535,50.717329],[-3.72424,50.715597],[-3.729241,50.714475],[-3.731556,50.713258],[-3.733236,50.71142],[-3.734807,50.708795],[-3.733915,50.706518],[-3.733854,50.7046],[-3.735593,50.703184],[-3.735126,50.701247],[-3.7337,50.700243],[-3.733686,50.698601],[-3.732291,50.697],[-3.735076,50.695896],[-3.741789,50.695516],[-3.745599,50.696664],[-3.749544,50.697158],[-3.752673,50.696327],[-3.753443,50.694308],[-3.756745,50.694829],[-3.758477,50.694431],[-3.760644,50.693309],[-3.761649,50.693216],[-3.76848,50.694976],[-3.773832,50.693166],[-3.77575,50.693061],[-3.777105,50.693474],[-3.780001,50.695322],[-3.78257,50.695528],[-3.783781,50.69489],[-3.784944,50.692812],[-3.786785,50.692158],[-3.789372,50.692798],[-3.791881,50.69384],[-3.798784,50.692909],[-3.801659,50.693695],[-3.803317,50.693637],[-3.807285,50.694744],[-3.808918,50.693998],[-3.809736,50.69258],[-3.811623,50.691025],[-3.810989,50.68939],[-3.807872,50.684622],[-3.807752,50.682806],[-3.807026,50.681612],[-3.802843,50.678617],[-3.798485,50.677693],[-3.798077,50.675768],[-3.797217,50.674915],[-3.799018,50.673164],[-3.799414,50.671763],[-3.800588,50.670335],[-3.801609,50.669748],[-3.801574,50.668734],[-3.804529,50.667365],[-3.803495,50.666572],[-3.806238,50.665364],[-3.809652,50.664639],[-3.809484,50.662902],[-3.810397,50.662456],[-3.811084,50.659595],[-3.809658,50.658989],[-3.807243,50.658593],[-3.805902,50.656702],[-3.804646,50.655906],[-3.806833,50.655495],[-3.809381,50.655671],[-3.811697,50.653668],[-3.814231,50.652926],[-3.81415,50.651305],[-3.815978,50.651597],[-3.817399,50.651402],[-3.818519,50.652307],[-3.820036,50.652221],[-3.821937,50.651391],[-3.824514,50.652048],[-3.826654,50.651771],[-3.828848,50.650481],[-3.828814,50.648973],[-3.82928,50.64793],[-3.83175,50.647781],[-3.832759,50.648911],[-3.834762,50.649708],[-3.837754,50.649821],[-3.841759,50.648231],[-3.843578,50.646945],[-3.843926,50.645259],[-3.843614,50.643051],[-3.845282,50.641023],[-3.845924,50.635698],[-3.848384,50.634444],[-3.84887,50.633528],[-3.850372,50.632319],[-3.852778,50.631605],[-3.854455,50.631639],[-3.855984,50.630677],[-3.857743,50.628957],[-3.858096,50.626185],[-3.860565,50.625822],[-3.862049,50.625136],[-3.864264,50.623439],[-3.867308,50.619312],[-3.869802,50.616889],[-3.873337,50.614259],[-3.872441,50.612563],[-3.872978,50.610916],[-3.874873,50.609019],[-3.879207,50.599498],[-3.882482,50.596724],[-3.882713,50.594469],[-3.881107,50.592499],[-3.881124,50.590481],[-3.880554,50.589358],[-3.881343,50.587731],[-3.879304,50.586319],[-3.880351,50.585721],[-3.88092,50.584399],[-3.879357,50.580894],[-3.877337,50.578919],[-3.877759,50.577068],[-3.877065,50.575134],[-3.873918,50.575162],[-3.87256,50.573374],[-3.87017,50.572172],[-3.869689,50.571274],[-3.870777,50.569198],[-3.871889,50.568103],[-3.871879,50.566745],[-3.872972,50.565583],[-3.874379,50.564745],[-3.874863,50.562848],[-3.874295,50.561792],[-3.876308,50.558579],[-3.875938,50.556954],[-3.8741,50.556206],[-3.874619,50.555123],[-3.874372,50.554173],[-3.877128,50.552929],[-3.877465,50.552396],[-3.877116,50.549984],[-3.875957,50.549294],[-3.874895,50.54542],[-3.875837,50.544543],[-3.875604,50.542531],[-3.87502,50.541027],[-3.875321,50.540121],[-3.87488,50.537609],[-3.872846,50.536099],[-3.871966,50.534479],[-3.871285,50.534091],[-3.866491,50.534494],[-3.863266,50.534414],[-3.86152,50.534011],[-3.858636,50.53258],[-3.855277,50.533217],[-3.852882,50.535582],[-3.851514,50.536152],[-3.844596,50.534364],[-3.843331,50.533235],[-3.844035,50.531839],[-3.84379,50.53099],[-3.842666,50.530507],[-3.840296,50.530224],[-3.836599,50.527497],[-3.836116,50.526726],[-3.837147,50.52489],[-3.836265,50.523317],[-3.827215,50.516362],[-3.825529,50.516758],[-3.822776,50.516564],[-3.821892,50.516849],[-3.820175,50.519228],[-3.819939,50.522076],[-3.81814,50.525081],[-3.813751,50.525419],[-3.813649,50.526129],[-3.814671,50.52763],[-3.814835,50.529498],[-3.811198,50.530791],[-3.808843,50.532901],[-3.805497,50.532886],[-3.805207,50.533882],[-3.803891,50.535415],[-3.80198,50.536763],[-3.800882,50.536928],[-3.799469,50.536388],[-3.798359,50.534956],[-3.794871,50.532562],[-3.797699,50.529876],[-3.797998,50.525833],[-3.799638,50.522735],[-3.799502,50.521704],[-3.798174,50.520951],[-3.794266,50.520837],[-3.791147,50.521441],[-3.789412,50.521221],[-3.788025,50.520546],[-3.784758,50.517716],[-3.785367,50.513554],[-3.787502,50.509983],[-3.786302,50.507419],[-3.787103,50.505013],[-3.788235,50.503813],[-3.791661,50.502296],[-3.791775,50.501429],[-3.790688,50.500169],[-3.789222,50.499412],[-3.785575,50.498723],[-3.780408,50.498825],[-3.778395,50.498546],[-3.776187,50.497108],[-3.775891,50.495574],[-3.77909,50.494898],[-3.782961,50.494753],[-3.787197,50.494916],[-3.790806,50.495611],[-3.789765,50.494075],[-3.789635,50.49298],[-3.792271,50.493001],[-3.795314,50.491937],[-3.794428,50.489948],[-3.798272,50.48942],[-3.796961,50.487253],[-3.794883,50.486403],[-3.793119,50.483974],[-3.791198,50.482289],[-3.794353,50.480942],[-3.79353,50.48034],[-3.7933,50.47848],[-3.791914,50.477795],[-3.788876,50.478256],[-3.786129,50.477745],[-3.786982,50.477044],[-3.787284,50.475603],[-3.78628,50.475447],[-3.786405,50.472634],[-3.784447,50.473321],[-3.78201,50.472292],[-3.78101,50.47002],[-3.779794,50.468594],[-3.778822,50.465881],[-3.776675,50.463949],[-3.772915,50.463489],[-3.772269,50.464378],[-3.768139,50.467056],[-3.765823,50.466687],[-3.764142,50.467493],[-3.762042,50.467743],[-3.758858,50.466819],[-3.758942,50.470038],[-3.757691,50.473536],[-3.757889,50.474421],[-3.760909,50.477186],[-3.761198,50.479048],[-3.766301,50.481865],[-3.767482,50.48489],[-3.769128,50.485784],[-3.768363,50.488919],[-3.76596,50.49266],[-3.765581,50.494017],[-3.765834,50.496094],[-3.767779,50.499499],[-3.768267,50.501116],[-3.767822,50.503331],[-3.7663,50.505358],[-3.765034,50.506279],[-3.759301,50.508755],[-3.75634,50.510412],[-3.750504,50.509359],[-3.747466,50.508047],[-3.745927,50.507732],[-3.74158,50.507884],[-3.737402,50.506344],[-3.737246,50.505479],[-3.735858,50.503816],[-3.735273,50.502391],[-3.734133,50.50138],[-3.730425,50.49885],[-3.727584,50.497747],[-3.725192,50.495322],[-3.723345,50.494382],[-3.721527,50.494334],[-3.720228,50.493404],[-3.718495,50.493036],[-3.718706,50.49244],[-3.71696,50.490667],[-3.71761,50.489198],[-3.716855,50.48827],[-3.717051,50.487421],[-3.716205,50.486728],[-3.715478,50.485016],[-3.712066,50.48301],[-3.711642,50.482358],[-3.708376,50.480993],[-3.706481,50.481136],[-3.706011,50.480485],[-3.703869,50.480458],[-3.703157,50.480023],[-3.699997,50.479646],[-3.698682,50.478701],[-3.697185,50.478267],[-3.694065,50.477851],[-3.693755,50.475938],[-3.692281,50.474724],[-3.691226,50.474474],[-3.69081,50.473255],[-3.688505,50.47199],[-3.686305,50.470102],[-3.683017,50.469093],[-3.681525,50.467944],[-3.680025,50.468076],[-3.67788,50.467015],[-3.676787,50.466982],[-3.674354,50.466234],[-3.671295,50.464433],[-3.671143,50.463133],[-3.669652,50.462111],[-3.668331,50.464141],[-3.66798,50.465453],[-3.668306,50.466765],[-3.666327,50.467872],[-3.665011,50.467879],[-3.664722,50.469001],[-3.661982,50.469656],[-3.658011,50.471686],[-3.656857,50.471451],[-3.654713,50.471867],[-3.65224,50.470212],[-3.650121,50.470553],[-3.650158,50.468471],[-3.65409,50.467785],[-3.653621,50.467396],[-3.65581,50.466496],[-3.657742,50.464998],[-3.658932,50.464581],[-3.653057,50.463817],[-3.647392,50.462156],[-3.645015,50.461157],[-3.642481,50.463031],[-3.640622,50.465603],[-3.638058,50.466862],[-3.637186,50.46785],[-3.634479,50.467035],[-3.63326,50.466379],[-3.627338,50.46618],[-3.626244,50.466783],[-3.623446,50.466665],[-3.621415,50.468276],[-3.620965,50.469706],[-3.616587,50.469661],[-3.613843,50.4693],[-3.613294,50.4698],[-3.61439,50.472388],[-3.61259,50.472252],[-3.613222,50.475602],[-3.609799,50.480711],[-3.608583,50.481589],[-3.607074,50.482062],[-3.60442,50.484045],[-3.602365,50.484379],[-3.598046,50.484396],[-3.595218,50.483236],[-3.595113,50.482709],[-3.592427,50.480922],[-3.591451,50.479663],[-3.588849,50.478567],[-3.587565,50.478563],[-3.58425,50.477723],[-3.584471,50.47924],[-3.580846,50.480321],[-3.579217,50.482198],[-3.576652,50.483163],[-3.575635,50.484539],[-3.574921,50.486856],[-3.574104,50.487667],[-3.572947,50.487462],[-3.57124,50.488253],[-3.570321,50.489293],[-3.570194,50.490444],[-3.567508,50.489413],[-3.567251,50.487915],[-3.564774,50.486967],[-3.562389,50.488477],[-3.562097,50.491493],[-3.562834,50.493333],[-3.561075,50.494463],[-3.558409,50.495026],[-3.556369,50.494805],[-3.553691,50.495093],[-3.551572,50.494889],[-3.543798,50.497347],[-3.543276,50.498968],[-3.542259,50.498837],[-3.541285,50.500763],[-3.539024,50.502173],[-3.539143,50.504535],[-3.538476,50.504395],[-3.536634,50.505937],[-3.535127,50.505142],[-3.53318,50.504634],[-3.532772,50.50525],[-3.529952,50.504587],[-3.529013,50.506801],[-3.526901,50.508005],[-3.524865,50.508705],[-3.522926,50.509945],[-3.519995,50.511043],[-3.520905,50.517684],[-3.517264,50.517367],[-3.516545,50.518502],[-3.513816,50.516539],[-3.509135,50.51658],[-3.508146,50.517822],[-3.507892,50.518925],[-3.506965,50.519334],[-3.506459,50.521655],[-3.504971,50.523214],[-3.504708,50.524602],[-3.503832,50.525586],[-3.504199,50.526235],[-3.503051,50.527583],[-3.502921,50.528484],[-3.50115,50.530043],[-3.500784,50.532864],[-3.498705,50.535377],[-3.496135,50.537493],[-3.497125,50.538253],[-3.498527,50.53818],[-3.501499,50.539282],[-3.504804,50.541139],[-3.507393,50.542149],[-3.509704,50.54229],[-3.512443,50.541952],[-3.514124,50.540944],[-3.51571,50.541016],[-3.517981,50.540639],[-3.51878,50.541355],[-3.520969,50.540853],[-3.522089,50.541235],[-3.524068,50.540594],[-3.52725,50.540287],[-3.52925,50.540602],[-3.531221,50.540042],[-3.533288,50.540063],[-3.535748,50.540462],[-3.539385,50.540383],[-3.540386,50.538093],[-3.54353,50.539746],[-3.548811,50.540032],[-3.550997,50.541113],[-3.552233,50.540077],[-3.553953,50.540747],[-3.558241,50.539794],[-3.559349,50.539214],[-3.565378,50.539455],[-3.567296,50.538639],[-3.571702,50.538718],[-3.572818,50.538364],[-3.57661,50.538381],[-3.586211,50.536451],[-3.5883,50.53588],[-3.590044,50.534179],[-3.592783,50.534085],[-3.596833,50.533269],[-3.599113,50.534781],[-3.602995,50.536276],[-3.602802,50.536584],[-3.598664,50.534733],[-3.596836,50.533543],[-3.589763,50.534835],[-3.589016,50.536136],[-3.589525,50.537574],[-3.588799,50.53893],[-3.590897,50.53839],[-3.59087,50.538847],[-3.582348,50.539625],[-3.580643,50.539295],[-3.580058,50.540757],[-3.578987,50.541627],[-3.577394,50.542105],[-3.573316,50.542755],[-3.569805,50.542745],[-3.568147,50.5424],[-3.566616,50.542932],[-3.564705,50.544533],[-3.559241,50.545502],[-3.555751,50.545503],[-3.554807,50.54494],[-3.553437,50.545327],[-3.551967,50.545043],[-3.549595,50.545168],[-3.548493,50.544715],[-3.546666,50.54517],[-3.542078,50.545405],[-3.540725,50.544993],[-3.539298,50.545313],[-3.537678,50.544918],[-3.536888,50.546227],[-3.532764,50.547024],[-3.529265,50.547279],[-3.524729,50.547097],[-3.522024,50.546394],[-3.518444,50.545956],[-3.518043,50.545543],[-3.515497,50.545463],[-3.51512,50.545813],[-3.509694,50.546635],[-3.507343,50.546216],[-3.501057,50.545917],[-3.498575,50.544331],[-3.498337,50.543466],[-3.498876,50.542229],[-3.496444,50.542503],[-3.486563,50.552242],[-3.485367,50.553228],[-3.483153,50.554463],[-3.48177,50.556382],[-3.477356,50.560443],[-3.474538,50.562021],[-3.473192,50.56234],[-3.472296,50.561865],[-3.470211,50.562634],[-3.469288,50.563526],[-3.469596,50.564392],[-3.468545,50.566342],[-3.469568,50.570523],[-3.468201,50.571833],[-3.469125,50.574126],[-3.467062,50.576658],[-3.46754,50.577348],[-3.46486,50.580004],[-3.461269,50.582834],[-3.456999,50.585789],[-3.449492,50.589897],[-3.445052,50.59187],[-3.443976,50.592721],[-3.443021,50.595689],[-3.442023,50.596649],[-3.439307,50.598082],[-3.439753,50.598764],[-3.439106,50.59962],[-3.429782,50.605433],[-3.422702,50.613287],[-3.422521,50.614121],[-3.423505,50.614594],[-3.427767,50.613176],[-3.429993,50.611789],[-3.429838,50.611135],[-3.428157,50.611016],[-3.427453,50.61047],[-3.427547,50.609173],[-3.4285,50.607905],[-3.430368,50.607177],[-3.431383,50.607937],[-3.433437,50.607049],[-3.435431,50.606685],[-3.436324,50.605864],[-3.438661,50.604953],[-3.442859,50.60204],[-3.444787,50.605553],[-3.444509,50.607315],[-3.445744,50.614358],[-3.446936,50.617054],[-3.448992,50.616971],[-3.449054,50.61834],[-3.447253,50.618764],[-3.446107,50.624821],[-3.449451,50.632482],[-3.449788,50.63573],[-3.452536,50.64225],[-3.45257,50.644662],[-3.451264,50.647083],[-3.452697,50.649491],[-3.45559,50.652828],[-3.456538,50.656148],[-3.457649,50.657067],[-3.459827,50.657945],[-3.460673,50.657884],[-3.462057,50.658816],[-3.465375,50.660205],[-3.467372,50.663377],[-3.468195,50.663954],[-3.466627,50.665489],[-3.467706,50.667486],[-3.467659,50.675803],[-3.468882,50.681242],[-3.469828,50.682253],[-3.470467,50.681851],[-3.476929,50.683333],[-3.480808,50.686044],[-3.482341,50.68659],[-3.482544,50.687792],[-3.483888,50.688229],[-3.487823,50.688882],[-3.490237,50.688266],[-3.492728,50.688611],[-3.494801,50.68985],[-3.493888,50.690436],[-3.49363,50.692011],[-3.49435,50.692741],[-3.496028,50.692964],[-3.499579,50.694194],[-3.50177,50.694325],[-3.503261,50.692421],[-3.50541,50.691416],[-3.506782,50.691116],[-3.510871,50.692229],[-3.517749,50.692486],[-3.518779,50.693033],[-3.520899,50.692526],[-3.522818,50.692577],[-3.52509,50.69366],[-3.526832,50.69532],[-3.529388,50.692817],[-3.53371,50.692728],[-3.538142,50.693407],[-3.539092,50.692918],[-3.542999,50.699409],[-3.545481,50.70191],[-3.547668,50.703235],[-3.5507,50.704439],[-3.56005,50.706151],[-3.562745,50.706903],[-3.56299,50.709039],[-3.566201,50.711217],[-3.566893,50.714179],[-3.568678,50.715112],[-3.565749,50.715408],[-3.565571,50.716709],[-3.564627,50.717852],[-3.565736,50.723794],[-3.566684,50.72446],[-3.567851,50.726165],[-3.570218,50.727797],[-3.566895,50.727395],[-3.567641,50.728309],[-3.56602,50.729246],[-3.563061,50.728766],[-3.560576,50.730102],[-3.561662,50.731954],[-3.562736,50.732276],[-3.563829,50.733642],[-3.564433,50.735588],[-3.567369,50.737353],[-3.56602,50.739635],[-3.566987,50.740734],[-3.569025,50.740985],[-3.569669,50.74501],[-3.573378,50.744114],[-3.579467,50.741836],[-3.583083,50.741559],[-3.585483,50.743874]]]]},"properties":{"LAD22CD":"E07000045","LAD22NM":"Teignbridge","BNG_E":283144,"BNG_N":80205,"LONG":-3.65289,"LAT":50.60981,"GlobalID":"b7c59f17-cecb-43d7-8bce-2bfa24a43fb3"},"id":84}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.198189,51.021252],[-4.199408,51.020763],[-4.202231,51.015756],[-4.204294,51.008422],[-4.20423,51.007422],[-4.203309,51.005778],[-4.202157,51.004991],[-4.199406,51.004184],[-4.193601,51.001538],[-4.190113,51.000427],[-4.188364,51.000269],[-4.184749,51.000837],[-4.181642,51.000795],[-4.178778,51.000022],[-4.177955,50.999282],[-4.176835,50.99686],[-4.178149,50.993973],[-4.181512,50.991715],[-4.184442,50.990994],[-4.188699,50.991969],[-4.188555,50.992449],[-4.183921,50.991553],[-4.182652,50.99181],[-4.181137,50.993587],[-4.180438,50.993497],[-4.178655,50.995186],[-4.177677,50.997117],[-4.177863,50.997697],[-4.179787,50.999683],[-4.182151,51.000135],[-4.185961,50.999352],[-4.188512,50.999169],[-4.192276,50.999466],[-4.193201,51.00007],[-4.204199,51.004492],[-4.205783,51.005498],[-4.20579,51.006332],[-4.206747,51.008029],[-4.20566,51.01376],[-4.204954,51.014866],[-4.203408,51.020864],[-4.20226,51.023289],[-4.202099,51.024768],[-4.202819,51.026863],[-4.202808,51.028215],[-4.203374,51.028955],[-4.203248,51.031236],[-4.203932,51.031834],[-4.202791,51.034464],[-4.201663,51.035604],[-4.199681,51.036446],[-4.195721,51.039576],[-4.193433,51.042914],[-4.192253,51.043561],[-4.190469,51.046433],[-4.191331,51.04887],[-4.191477,51.050496],[-4.190584,51.05215],[-4.190653,51.054786],[-4.193101,51.055536],[-4.194763,51.056946],[-4.197652,51.057927],[-4.199555,51.05759],[-4.201652,51.056077],[-4.201947,51.055265],[-4.205188,51.054131],[-4.206238,51.053346],[-4.210099,51.05279],[-4.21371,51.056719],[-4.212051,51.059436],[-4.212024,51.061221],[-4.210125,51.060749],[-4.208844,51.060945],[-4.208082,51.061691],[-4.208912,51.062241],[-4.217296,51.064961],[-4.219333,51.06502],[-4.221736,51.064601],[-4.223844,51.063215],[-4.226447,51.060519],[-4.230755,51.053238],[-4.236475,51.042933],[-4.237099,51.042845],[-4.238686,51.041179],[-4.24278,51.040608],[-4.245064,51.040552],[-4.252714,51.039599],[-4.25543,51.038835],[-4.258163,51.037572],[-4.263221,51.033776],[-4.268649,51.027266],[-4.27314,51.023413],[-4.274345,51.02125],[-4.278795,51.01634],[-4.281525,51.015744],[-4.284244,51.014086],[-4.290515,51.006845],[-4.294433,51.00419],[-4.296616,51.001964],[-4.302996,50.997755],[-4.307595,50.995488],[-4.309363,50.994886],[-4.314024,50.99436],[-4.318393,50.992668],[-4.325478,50.991585],[-4.331555,50.991458],[-4.338657,50.989666],[-4.343387,50.988923],[-4.348397,50.989067],[-4.355502,50.990168],[-4.364293,50.990211],[-4.366753,50.989804],[-4.370655,50.990129],[-4.374553,50.990073],[-4.379339,50.991385],[-4.382803,50.99296],[-4.390904,50.994676],[-4.393507,50.99608],[-4.395463,50.996566],[-4.398839,50.999776],[-4.399924,51.001418],[-4.402111,51.002563],[-4.404214,51.004493],[-4.406293,51.004888],[-4.410272,51.006588],[-4.412948,51.008623],[-4.41529,51.009437],[-4.4178,51.011002],[-4.422104,51.011387],[-4.425393,51.013657],[-4.426497,51.013769],[-4.428977,51.013052],[-4.433609,51.012637],[-4.435458,51.012815],[-4.436735,51.013743],[-4.441673,51.014361],[-4.443333,51.015196],[-4.44608,51.014455],[-4.448661,51.014489],[-4.451633,51.015093],[-4.456239,51.016884],[-4.457091,51.018107],[-4.459696,51.018376],[-4.461019,51.019572],[-4.463837,51.02023],[-4.464228,51.020614],[-4.467616,51.020927],[-4.46946,51.021584],[-4.476738,51.02114],[-4.481355,51.021731],[-4.494287,51.020698],[-4.498121,51.021369],[-4.499222,51.019235],[-4.501053,51.018708],[-4.505514,51.019458],[-4.506681,51.020367],[-4.508173,51.020509],[-4.509646,51.021222],[-4.513422,51.022377],[-4.516653,51.022216],[-4.516698,51.020967],[-4.518845,51.020628],[-4.522252,51.021321],[-4.52331,51.022124],[-4.525651,51.022301],[-4.524408,51.020432],[-4.524968,51.019711],[-4.527433,51.018518],[-4.527921,51.016871],[-4.527581,51.015685],[-4.526309,51.015409],[-4.526352,51.013923],[-4.527881,51.013917],[-4.526822,51.012622],[-4.526898,51.011876],[-4.52894,51.01147],[-4.530023,51.010857],[-4.533015,51.01029],[-4.532699,51.009418],[-4.533366,51.008399],[-4.531267,51.007021],[-4.530107,51.00487],[-4.53095,51.004021],[-4.530813,51.003003],[-4.533011,51.002426],[-4.532108,51.001497],[-4.532585,51.000783],[-4.531678,51.000174],[-4.53113,50.998017],[-4.530135,50.997467],[-4.531283,50.995453],[-4.532033,50.995691],[-4.533853,50.995015],[-4.534547,50.994342],[-4.533125,50.993746],[-4.533412,50.992601],[-4.532765,50.990788],[-4.531315,50.990682],[-4.531558,50.988778],[-4.529918,50.987762],[-4.529357,50.986276],[-4.530624,50.983578],[-4.530957,50.981746],[-4.532531,50.980449],[-4.534874,50.978994],[-4.532866,50.977287],[-4.533582,50.976012],[-4.534455,50.97559],[-4.532719,50.973929],[-4.533967,50.972226],[-4.533192,50.971712],[-4.532876,50.969016],[-4.53295,50.965718],[-4.536839,50.961705],[-4.537344,50.959839],[-4.538882,50.957532],[-4.542971,50.954535],[-4.543631,50.953616],[-4.54306,50.951573],[-4.544096,50.951435],[-4.541579,50.94982],[-4.541112,50.949224],[-4.541865,50.947205],[-4.542768,50.946107],[-4.542742,50.944328],[-4.545314,50.942602],[-4.545111,50.942077],[-4.546566,50.941312],[-4.549402,50.941101],[-4.548498,50.940429],[-4.549208,50.938753],[-4.547172,50.937556],[-4.546892,50.934726],[-4.545656,50.934102],[-4.545225,50.932513],[-4.546295,50.931205],[-4.546263,50.930152],[-4.545377,50.929499],[-4.546366,50.928278],[-4.545626,50.928087],[-4.543775,50.929123],[-4.542915,50.928536],[-4.540867,50.928865],[-4.53967,50.928299],[-4.537937,50.92819],[-4.537224,50.92767],[-4.533783,50.926739],[-4.533069,50.927133],[-4.530544,50.92666],[-4.524437,50.927362],[-4.519877,50.927266],[-4.517502,50.926809],[-4.514338,50.927961],[-4.510818,50.927905],[-4.509591,50.927376],[-4.504719,50.927723],[-4.502234,50.927359],[-4.500202,50.92769],[-4.49926,50.927469],[-4.498081,50.928418],[-4.496877,50.928692],[-4.49038,50.928989],[-4.48915,50.929319],[-4.486813,50.929345],[-4.481103,50.930272],[-4.47125,50.931268],[-4.464656,50.93102],[-4.460081,50.93018],[-4.458255,50.929335],[-4.456194,50.928993],[-4.458216,50.926757],[-4.458278,50.924142],[-4.458734,50.923013],[-4.460528,50.920573],[-4.46218,50.919396],[-4.463243,50.917589],[-4.463448,50.915248],[-4.462683,50.91349],[-4.459961,50.910749],[-4.45967,50.909248],[-4.458618,50.908453],[-4.458554,50.9076],[-4.456954,50.907557],[-4.453793,50.906584],[-4.449957,50.905854],[-4.450673,50.903488],[-4.446822,50.900875],[-4.446386,50.898258],[-4.446899,50.896003],[-4.445908,50.894374],[-4.446592,50.89357],[-4.446249,50.891168],[-4.444978,50.890235],[-4.442628,50.889484],[-4.440021,50.888166],[-4.439793,50.88631],[-4.437864,50.882564],[-4.434061,50.881181],[-4.431858,50.879758],[-4.431688,50.878634],[-4.429967,50.877669],[-4.429138,50.875885],[-4.427588,50.874712],[-4.42652,50.873063],[-4.427152,50.872174],[-4.425044,50.871372],[-4.423028,50.867954],[-4.420924,50.866646],[-4.420959,50.866086],[-4.423425,50.866441],[-4.433657,50.865513],[-4.432913,50.861932],[-4.433652,50.859558],[-4.43728,50.856146],[-4.43738,50.85408],[-4.436415,50.852705],[-4.439298,50.851354],[-4.440095,50.850678],[-4.440025,50.84962],[-4.440883,50.849008],[-4.440724,50.847912],[-4.442235,50.846958],[-4.441497,50.844649],[-4.439734,50.843419],[-4.441031,50.843042],[-4.441209,50.841351],[-4.442407,50.839846],[-4.441921,50.839108],[-4.443514,50.834552],[-4.442585,50.833675],[-4.442545,50.83228],[-4.443796,50.830911],[-4.444299,50.829785],[-4.443433,50.828282],[-4.444158,50.827725],[-4.442971,50.826108],[-4.441545,50.826352],[-4.440161,50.824765],[-4.43895,50.824642],[-4.438561,50.823068],[-4.441119,50.822194],[-4.442369,50.819774],[-4.441219,50.818417],[-4.443127,50.816483],[-4.444726,50.815249],[-4.444556,50.814667],[-4.44596,50.813297],[-4.444749,50.811352],[-4.446045,50.809321],[-4.449207,50.807385],[-4.450241,50.807388],[-4.452955,50.805843],[-4.451753,50.804804],[-4.454106,50.804163],[-4.458471,50.803797],[-4.46192,50.802608],[-4.463412,50.80173],[-4.469981,50.801135],[-4.472413,50.802252],[-4.474607,50.801789],[-4.472743,50.800269],[-4.476839,50.799443],[-4.475751,50.798882],[-4.474443,50.797317],[-4.483827,50.796071],[-4.484588,50.796388],[-4.489954,50.796317],[-4.489697,50.795222],[-4.493272,50.793321],[-4.492744,50.79221],[-4.488778,50.791116],[-4.48645,50.790979],[-4.484009,50.791441],[-4.482307,50.790953],[-4.480084,50.790772],[-4.475694,50.78912],[-4.476358,50.787636],[-4.474856,50.785389],[-4.473105,50.784977],[-4.46789,50.7851],[-4.462977,50.784024],[-4.456433,50.783693],[-4.453876,50.784283],[-4.45133,50.785654],[-4.450089,50.78454],[-4.448636,50.783843],[-4.448617,50.782517],[-4.447378,50.782041],[-4.446236,50.780759],[-4.446515,50.77913],[-4.445857,50.776651],[-4.444838,50.776139],[-4.443374,50.776229],[-4.442046,50.775245],[-4.440132,50.775502],[-4.438803,50.774314],[-4.436261,50.773007],[-4.436263,50.772292],[-4.434865,50.772005],[-4.434046,50.770106],[-4.431618,50.768814],[-4.427726,50.768971],[-4.427211,50.768287],[-4.428187,50.767473],[-4.426959,50.767021],[-4.423905,50.76497],[-4.421952,50.764267],[-4.419343,50.765084],[-4.416469,50.764878],[-4.416544,50.764213],[-4.414211,50.764597],[-4.41308,50.763693],[-4.410898,50.763757],[-4.409574,50.762578],[-4.408723,50.762417],[-4.410027,50.766784],[-4.409278,50.768174],[-4.410184,50.768827],[-4.409875,50.769723],[-4.411515,50.769897],[-4.413451,50.771765],[-4.414417,50.774396],[-4.412997,50.775199],[-4.403247,50.776216],[-4.393506,50.778248],[-4.38904,50.774785],[-4.386778,50.773929],[-4.385198,50.772918],[-4.384005,50.771488],[-4.381819,50.770542],[-4.38021,50.769479],[-4.381317,50.768628],[-4.384182,50.767515],[-4.384912,50.765385],[-4.387387,50.765059],[-4.386616,50.763927],[-4.387777,50.757715],[-4.385371,50.758261],[-4.381646,50.757261],[-4.381772,50.756158],[-4.38081,50.755633],[-4.382104,50.753593],[-4.384101,50.752705],[-4.383506,50.751624],[-4.384109,50.750889],[-4.384272,50.748795],[-4.384996,50.74775],[-4.383549,50.74659],[-4.382239,50.746055],[-4.381633,50.744898],[-4.37942,50.744147],[-4.378944,50.742553],[-4.379476,50.740993],[-4.377464,50.739548],[-4.375317,50.738879],[-4.373894,50.737725],[-4.373416,50.734808],[-4.371225,50.733406],[-4.372317,50.731651],[-4.372316,50.729287],[-4.370977,50.727952],[-4.371042,50.727113],[-4.369924,50.726104],[-4.369772,50.724659],[-4.369035,50.723246],[-4.368089,50.723319],[-4.364263,50.721231],[-4.364804,50.720499],[-4.361586,50.718767],[-4.362684,50.718213],[-4.363569,50.717049],[-4.36395,50.715344],[-4.36372,50.714377],[-4.365556,50.713241],[-4.365061,50.712014],[-4.366722,50.711184],[-4.367863,50.709398],[-4.368864,50.709235],[-4.367301,50.707318],[-4.368488,50.706545],[-4.368704,50.705737],[-4.36709,50.70392],[-4.368457,50.703429],[-4.369341,50.702341],[-4.366321,50.700855],[-4.366788,50.697773],[-4.364337,50.697793],[-4.360778,50.695777],[-4.359725,50.696236],[-4.358756,50.695467],[-4.354425,50.694478],[-4.352332,50.693318],[-4.353555,50.692617],[-4.352766,50.691113],[-4.350217,50.690899],[-4.348652,50.68892],[-4.349237,50.685966],[-4.348516,50.685104],[-4.34857,50.68311],[-4.346195,50.682028],[-4.346827,50.68024],[-4.34542,50.679975],[-4.34532,50.677844],[-4.344432,50.676567],[-4.345432,50.674532],[-4.347063,50.672913],[-4.346767,50.672447],[-4.344413,50.671273],[-4.344517,50.670321],[-4.345548,50.669177],[-4.345872,50.668037],[-4.345212,50.664799],[-4.34446,50.662842],[-4.342184,50.661452],[-4.338849,50.661261],[-4.339586,50.658575],[-4.337432,50.656556],[-4.335533,50.655708],[-4.336919,50.654236],[-4.336846,50.652649],[-4.33544,50.652466],[-4.335745,50.651181],[-4.334647,50.649107],[-4.335372,50.647323],[-4.335227,50.646541],[-4.334065,50.647546],[-4.33311,50.647588],[-4.332334,50.648644],[-4.330349,50.648911],[-4.32891,50.649497],[-4.325674,50.649572],[-4.323236,50.651265],[-4.323171,50.652138],[-4.321728,50.653297],[-4.319434,50.653014],[-4.318301,50.653437],[-4.315013,50.656782],[-4.315775,50.658889],[-4.314211,50.660268],[-4.314166,50.661272],[-4.313172,50.662232],[-4.30914,50.663059],[-4.307879,50.663589],[-4.305903,50.663437],[-4.304042,50.66468],[-4.295523,50.665687],[-4.292758,50.665281],[-4.290711,50.666493],[-4.289763,50.666146],[-4.284952,50.666013],[-4.277317,50.669056],[-4.275784,50.668118],[-4.271059,50.667688],[-4.269693,50.668151],[-4.266372,50.668579],[-4.262081,50.668206],[-4.257946,50.66658],[-4.255193,50.666422],[-4.254849,50.667126],[-4.252858,50.66761],[-4.251682,50.669827],[-4.250008,50.670789],[-4.249412,50.671732],[-4.247134,50.672809],[-4.245436,50.672932],[-4.243457,50.673581],[-4.240394,50.673019],[-4.23793,50.672018],[-4.235029,50.671449],[-4.228117,50.671347],[-4.223694,50.671584],[-4.22216,50.671244],[-4.219443,50.672485],[-4.21932,50.673946],[-4.217767,50.674641],[-4.218205,50.675855],[-4.215515,50.675865],[-4.212609,50.678032],[-4.212898,50.679004],[-4.209164,50.681547],[-4.21136,50.685513],[-4.214953,50.688977],[-4.216441,50.68996],[-4.219571,50.691359],[-4.224122,50.69212],[-4.226362,50.69271],[-4.228682,50.693796],[-4.230053,50.693942],[-4.231989,50.695422],[-4.230336,50.696729],[-4.228351,50.697412],[-4.227392,50.700227],[-4.22783,50.700819],[-4.228005,50.704305],[-4.229057,50.705981],[-4.228556,50.706916],[-4.228929,50.708154],[-4.230312,50.709466],[-4.231975,50.709795],[-4.232087,50.710482],[-4.233441,50.710922],[-4.23486,50.712385],[-4.234685,50.714273],[-4.233576,50.715429],[-4.233804,50.716523],[-4.232759,50.717141],[-4.232304,50.718402],[-4.23395,50.72208],[-4.230943,50.723481],[-4.231589,50.724076],[-4.227974,50.727326],[-4.227716,50.728774],[-4.225746,50.731402],[-4.227359,50.73373],[-4.229234,50.734979],[-4.227357,50.737305],[-4.22786,50.739637],[-4.226787,50.742187],[-4.222695,50.743979],[-4.2215,50.745026],[-4.220767,50.746701],[-4.218871,50.746358],[-4.218195,50.748157],[-4.213017,50.751296],[-4.210413,50.752512],[-4.200953,50.754626],[-4.196076,50.756574],[-4.19526,50.755132],[-4.193462,50.756639],[-4.193921,50.757972],[-4.185928,50.757703],[-4.190827,50.759793],[-4.194653,50.761827],[-4.198523,50.763282],[-4.20138,50.765332],[-4.203352,50.76894],[-4.202978,50.769037],[-4.205795,50.774913],[-4.203682,50.77532],[-4.203385,50.776212],[-4.196926,50.779785],[-4.19113,50.781613],[-4.190473,50.781483],[-4.187512,50.782064],[-4.186888,50.782981],[-4.181921,50.784762],[-4.179272,50.784682],[-4.177479,50.785746],[-4.173838,50.786204],[-4.171528,50.786761],[-4.16952,50.786276],[-4.166419,50.787],[-4.168147,50.788323],[-4.169053,50.791553],[-4.179824,50.790924],[-4.184494,50.789112],[-4.187836,50.789111],[-4.190771,50.789643],[-4.1885,50.792723],[-4.187348,50.793923],[-4.185473,50.794407],[-4.183464,50.795746],[-4.181735,50.796275],[-4.178955,50.796566],[-4.17854,50.797118],[-4.176481,50.797522],[-4.175891,50.797131],[-4.173832,50.797697],[-4.170303,50.796945],[-4.168764,50.797656],[-4.175501,50.800802],[-4.176255,50.801486],[-4.175931,50.802677],[-4.174874,50.803187],[-4.173746,50.804613],[-4.174331,50.805447],[-4.177209,50.80716],[-4.175217,50.808439],[-4.173017,50.809062],[-4.172778,50.809769],[-4.170773,50.811139],[-4.163298,50.813443],[-4.158239,50.815458],[-4.159186,50.817245],[-4.158488,50.817848],[-4.159977,50.819715],[-4.159299,50.822027],[-4.158367,50.823165],[-4.162152,50.827138],[-4.162944,50.829319],[-4.162644,50.83051],[-4.160625,50.82951],[-4.158816,50.830177],[-4.155849,50.829779],[-4.154751,50.82992],[-4.155945,50.831679],[-4.155049,50.832905],[-4.153656,50.832553],[-4.152861,50.833096],[-4.1516,50.832238],[-4.151644,50.831289],[-4.146658,50.83082],[-4.143637,50.831264],[-4.139915,50.832463],[-4.138968,50.833073],[-4.138347,50.834704],[-4.138733,50.837149],[-4.139633,50.837638],[-4.13863,50.839311],[-4.137064,50.840027],[-4.135047,50.838888],[-4.13324,50.841463],[-4.129968,50.84201],[-4.130137,50.842812],[-4.12872,50.844107],[-4.12613,50.843662],[-4.124372,50.842876],[-4.122617,50.84298],[-4.121016,50.841846],[-4.119236,50.838304],[-4.118284,50.837648],[-4.115086,50.837489],[-4.114107,50.838121],[-4.110727,50.838484],[-4.109375,50.837362],[-4.107508,50.837369],[-4.107142,50.836387],[-4.104888,50.836634],[-4.102878,50.835435],[-4.103331,50.838028],[-4.102696,50.838982],[-4.103351,50.840839],[-4.102975,50.842845],[-4.104232,50.844098],[-4.104842,50.846008],[-4.101313,50.846541],[-4.103132,50.850297],[-4.094745,50.852473],[-4.085409,50.857737],[-4.085916,50.858834],[-4.086967,50.859011],[-4.089426,50.861608],[-4.089418,50.864661],[-4.090135,50.866283],[-4.089967,50.867359],[-4.084965,50.869141],[-4.079334,50.871839],[-4.077469,50.871701],[-4.071225,50.87343],[-4.06868,50.874613],[-4.066487,50.872386],[-4.06742,50.872162],[-4.066616,50.870341],[-4.06517,50.870092],[-4.063853,50.870628],[-4.061048,50.871119],[-4.059262,50.87035],[-4.058098,50.87138],[-4.054726,50.867667],[-4.05305,50.863823],[-4.051496,50.863613],[-4.048923,50.863958],[-4.046507,50.863695],[-4.046431,50.865156],[-4.041546,50.867944],[-4.039951,50.868537],[-4.039925,50.865298],[-4.040726,50.863045],[-4.039009,50.860253],[-4.036318,50.859351],[-4.031588,50.86028],[-4.029017,50.859842],[-4.026352,50.860398],[-4.023932,50.86036],[-4.024369,50.862213],[-4.023803,50.862665],[-4.023861,50.864259],[-4.023042,50.866056],[-4.02096,50.866254],[-4.018391,50.86555],[-4.015637,50.865417],[-4.015467,50.86426],[-4.013583,50.864135],[-4.01073,50.863226],[-4.010651,50.864852],[-4.008366,50.865972],[-4.004413,50.867054],[-4.000453,50.867744],[-3.995888,50.869103],[-3.994181,50.868797],[-3.995033,50.865067],[-3.99652,50.864152],[-3.996147,50.863219],[-3.997798,50.862788],[-3.997267,50.8618],[-3.995091,50.859862],[-3.995733,50.856929],[-3.99538,50.856209],[-3.996909,50.854734],[-3.9954,50.851848],[-3.991786,50.852269],[-3.989503,50.850424],[-3.987931,50.850241],[-3.985788,50.850827],[-3.985664,50.851298],[-3.978028,50.854742],[-3.977422,50.855514],[-3.975833,50.856321],[-3.97232,50.856644],[-3.970675,50.856218],[-3.969826,50.855463],[-3.967389,50.85502],[-3.962393,50.855641],[-3.96128,50.856313],[-3.958918,50.855384],[-3.958644,50.854923],[-3.962094,50.849505],[-3.957552,50.845946],[-3.954444,50.844038],[-3.950208,50.842037],[-3.947686,50.840147],[-3.948505,50.839773],[-3.945632,50.838706],[-3.943334,50.837101],[-3.942212,50.834939],[-3.942796,50.832901],[-3.941015,50.831669],[-3.940482,50.830477],[-3.938812,50.829245],[-3.939152,50.827497],[-3.940197,50.826913],[-3.940414,50.825555],[-3.938353,50.825604],[-3.930576,50.827514],[-3.927823,50.827358],[-3.926993,50.827856],[-3.924855,50.827195],[-3.920573,50.82816],[-3.91808,50.830016],[-3.916005,50.830555],[-3.913501,50.8303],[-3.912362,50.829676],[-3.909699,50.829035],[-3.905678,50.829548],[-3.904567,50.830777],[-3.903923,50.832825],[-3.902495,50.832712],[-3.899665,50.834509],[-3.897619,50.835173],[-3.896461,50.835951],[-3.897049,50.836678],[-3.895932,50.837265],[-3.895909,50.83869],[-3.892285,50.840115],[-3.891855,50.840652],[-3.889116,50.840941],[-3.888069,50.842289],[-3.886867,50.842667],[-3.886415,50.843571],[-3.885097,50.844533],[-3.886195,50.845894],[-3.885107,50.846893],[-3.885477,50.847466],[-3.889642,50.846509],[-3.891759,50.846931],[-3.893076,50.846595],[-3.894023,50.847496],[-3.896569,50.847879],[-3.899543,50.847518],[-3.901444,50.848108],[-3.903544,50.847944],[-3.903873,50.851741],[-3.904906,50.853106],[-3.904493,50.854498],[-3.904826,50.855736],[-3.907057,50.858716],[-3.909775,50.860759],[-3.919016,50.862835],[-3.921206,50.86599],[-3.92274,50.866795],[-3.923568,50.866634],[-3.925078,50.867726],[-3.92593,50.869602],[-3.917555,50.871791],[-3.911685,50.8737],[-3.907423,50.873511],[-3.906613,50.87405],[-3.904139,50.874787],[-3.902556,50.876506],[-3.899415,50.877036],[-3.898575,50.877525],[-3.899961,50.881318],[-3.899587,50.882903],[-3.900411,50.884578],[-3.899973,50.885488],[-3.902504,50.885879],[-3.907751,50.885305],[-3.908768,50.886741],[-3.910657,50.887918],[-3.91273,50.889857],[-3.914852,50.894711],[-3.915452,50.895167],[-3.917208,50.895121],[-3.920247,50.897715],[-3.920373,50.899326],[-3.917668,50.899806],[-3.915907,50.901009],[-3.916111,50.90159],[-3.91484,50.902693],[-3.911915,50.9039],[-3.907032,50.904306],[-3.904158,50.905087],[-3.904438,50.906665],[-3.904048,50.908193],[-3.905045,50.909455],[-3.90378,50.910459],[-3.903773,50.911816],[-3.902116,50.912825],[-3.903761,50.913469],[-3.903481,50.915006],[-3.904805,50.915343],[-3.905766,50.916545],[-3.905941,50.917621],[-3.904793,50.918426],[-3.902522,50.918175],[-3.903483,50.919456],[-3.901989,50.920914],[-3.902805,50.922971],[-3.901202,50.923875],[-3.902709,50.924693],[-3.901975,50.925913],[-3.904417,50.927398],[-3.905466,50.927018],[-3.9045,50.925475],[-3.905323,50.924934],[-3.907259,50.924841],[-3.908655,50.925381],[-3.910428,50.924438],[-3.913006,50.924214],[-3.91439,50.924412],[-3.91962,50.923931],[-3.921292,50.922983],[-3.924499,50.923166],[-3.925293,50.922753],[-3.927106,50.92285],[-3.928413,50.922388],[-3.931458,50.922476],[-3.931527,50.921842],[-3.933143,50.921513],[-3.936952,50.921642],[-3.939172,50.920633],[-3.94291,50.920134],[-3.945811,50.918804],[-3.948974,50.918803],[-3.949726,50.918283],[-3.952513,50.918164],[-3.954206,50.917689],[-3.954975,50.918832],[-3.958703,50.921007],[-3.960102,50.920777],[-3.963582,50.921703],[-3.965403,50.922671],[-3.966819,50.924],[-3.97711,50.925485],[-3.97871,50.925264],[-3.981606,50.926301],[-3.988076,50.92651],[-3.995952,50.925569],[-3.997937,50.930847],[-3.996036,50.933964],[-3.997645,50.935564],[-3.993226,50.936875],[-3.993885,50.938943],[-3.995963,50.941693],[-3.995136,50.942816],[-3.993894,50.948426],[-3.989565,50.949937],[-3.989046,50.950649],[-3.984585,50.952452],[-3.980109,50.953126],[-3.978523,50.952469],[-3.976748,50.952809],[-3.974521,50.953842],[-3.971521,50.953338],[-3.967109,50.954418],[-3.96366,50.954431],[-3.961684,50.955249],[-3.960785,50.956146],[-3.964027,50.957208],[-3.965693,50.958257],[-3.96643,50.95973],[-3.966088,50.961643],[-3.964788,50.963435],[-3.963303,50.964381],[-3.960611,50.965577],[-3.958167,50.965735],[-3.957161,50.966903],[-3.958023,50.96872],[-3.958362,50.971722],[-3.957874,50.972218],[-3.953329,50.974358],[-3.952593,50.975955],[-3.954403,50.97745],[-3.958249,50.977769],[-3.958444,50.978486],[-3.957854,50.980745],[-3.958752,50.981635],[-3.961082,50.981072],[-3.961435,50.979706],[-3.962563,50.978897],[-3.965387,50.980479],[-3.967701,50.980873],[-3.970286,50.980739],[-3.973713,50.982077],[-3.976411,50.980522],[-3.980815,50.981028],[-3.983652,50.982118],[-3.985615,50.980327],[-3.988092,50.979497],[-3.989944,50.978288],[-3.990734,50.975785],[-3.991748,50.974402],[-3.992799,50.97449],[-3.999847,50.972659],[-4.001232,50.97264],[-4.003858,50.97194],[-4.006487,50.972453],[-4.004924,50.969525],[-4.00742,50.968875],[-4.010309,50.967534],[-4.011822,50.967389],[-4.013054,50.96808],[-4.015641,50.968743],[-4.018533,50.968671],[-4.020277,50.9699],[-4.019727,50.97209],[-4.023075,50.973243],[-4.024857,50.973434],[-4.026562,50.974399],[-4.027946,50.976099],[-4.030581,50.978362],[-4.033085,50.97898],[-4.03439,50.979776],[-4.036244,50.981579],[-4.036475,50.9835],[-4.037535,50.985188],[-4.036799,50.986316],[-4.037375,50.988152],[-4.03638,50.989735],[-4.035357,50.990417],[-4.035128,50.991987],[-4.036522,50.993292],[-4.035384,50.996925],[-4.033571,50.997089],[-4.033713,50.999039],[-4.032818,51.002843],[-4.0343,51.007621],[-4.03791,51.007548],[-4.04365,51.008177],[-4.045832,51.007604],[-4.047355,51.009605],[-4.049252,51.008369],[-4.057448,51.008322],[-4.059002,51.009002],[-4.06398,51.01031],[-4.064223,51.009522],[-4.066093,51.008954],[-4.069108,51.008429],[-4.079254,51.008689],[-4.080533,51.007011],[-4.080946,51.00518],[-4.079412,51.003251],[-4.082202,51.002672],[-4.087955,51.002961],[-4.090842,51.003795],[-4.093575,51.003772],[-4.094369,51.006022],[-4.096385,51.00673],[-4.097064,51.008442],[-4.098248,51.009592],[-4.106587,51.010275],[-4.107021,51.010892],[-4.109811,51.011138],[-4.116319,51.010428],[-4.119249,51.011418],[-4.119131,51.010413],[-4.120963,51.010894],[-4.120206,51.01166],[-4.119523,51.014283],[-4.117484,51.015453],[-4.11605,51.016886],[-4.115911,51.019128],[-4.122122,51.0194],[-4.124251,51.020181],[-4.127513,51.020658],[-4.132504,51.020194],[-4.135212,51.020678],[-4.136209,51.019038],[-4.13836,51.018412],[-4.139734,51.017509],[-4.142683,51.017011],[-4.142265,51.017866],[-4.144146,51.018511],[-4.148502,51.018774],[-4.149595,51.016538],[-4.151435,51.016057],[-4.154399,51.015992],[-4.155006,51.014374],[-4.158199,51.014711],[-4.158795,51.014469],[-4.166172,51.014531],[-4.167402,51.015228],[-4.168245,51.016812],[-4.169378,51.017853],[-4.172294,51.019053],[-4.172951,51.020748],[-4.174414,51.022787],[-4.175791,51.023461],[-4.179739,51.023891],[-4.179291,51.023227],[-4.181081,51.022226],[-4.183982,51.022933],[-4.183925,51.021727],[-4.185887,51.021092],[-4.186659,51.021928],[-4.186115,51.022502],[-4.186721,51.023575],[-4.188292,51.02289],[-4.187173,51.022276],[-4.188066,51.021314],[-4.190171,51.021464],[-4.194544,51.020725],[-4.19625,51.021526],[-4.198189,51.021252]]],[[[-4.676514,51.201773],[-4.677406,51.202477],[-4.678417,51.201495],[-4.676992,51.199674],[-4.677125,51.197956],[-4.679211,51.196521],[-4.679482,51.195269],[-4.67824,51.193124],[-4.676806,51.192946],[-4.676733,51.191877],[-4.67537,51.19172],[-4.675817,51.190363],[-4.675404,51.189395],[-4.675967,51.188071],[-4.674313,51.185919],[-4.677499,51.185331],[-4.676067,51.183784],[-4.674982,51.183264],[-4.67506,51.182332],[-4.673155,51.181782],[-4.673643,51.180314],[-4.674508,51.17974],[-4.677654,51.178702],[-4.6781,51.176813],[-4.68062,51.175034],[-4.678492,51.174301],[-4.678942,51.173354],[-4.680573,51.172425],[-4.678528,51.170776],[-4.678407,51.168999],[-4.676896,51.168081],[-4.677214,51.167131],[-4.676074,51.165199],[-4.675648,51.163534],[-4.674222,51.163497],[-4.673123,51.162315],[-4.67367,51.161014],[-4.670984,51.159515],[-4.667842,51.159285],[-4.666061,51.160762],[-4.664083,51.161776],[-4.660381,51.160674],[-4.659311,51.161873],[-4.658102,51.162361],[-4.657248,51.161397],[-4.655544,51.160869],[-4.655,51.161977],[-4.657398,51.163034],[-4.660124,51.166236],[-4.661673,51.167092],[-4.662415,51.169443],[-4.661991,51.173871],[-4.662557,51.175811],[-4.661993,51.176477],[-4.662422,51.178704],[-4.663929,51.180373],[-4.664258,51.181542],[-4.663793,51.182431],[-4.662179,51.183698],[-4.662964,51.184461],[-4.661799,51.186322],[-4.662448,51.187208],[-4.664027,51.187355],[-4.665316,51.188441],[-4.664195,51.189679],[-4.665554,51.19041],[-4.665468,51.191674],[-4.66712,51.192853],[-4.667158,51.193657],[-4.66988,51.194926],[-4.670086,51.195836],[-4.668668,51.196884],[-4.669598,51.198244],[-4.670583,51.198907],[-4.669865,51.200005],[-4.67029,51.201017],[-4.672531,51.201194],[-4.674229,51.20166],[-4.676514,51.201773]]]]},"properties":{"LAD22CD":"E07000046","LAD22NM":"Torridge","BNG_E":244206,"BNG_N":114334,"LONG":-4.21728,"LAT":50.90739,"GlobalID":"27cf45c5-b26e-4dbe-b3fd-eb9b1cbeba85"},"id":85}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.197446,50.4527],[-4.200438,50.453575],[-4.200574,50.451873],[-4.199531,50.451351],[-4.197242,50.451878],[-4.197446,50.4527]]],[[[-3.899665,50.834509],[-3.902495,50.832712],[-3.903923,50.832825],[-3.904567,50.830777],[-3.905678,50.829548],[-3.909699,50.829035],[-3.912362,50.829676],[-3.913501,50.8303],[-3.916005,50.830555],[-3.91808,50.830016],[-3.920573,50.82816],[-3.924855,50.827195],[-3.926993,50.827856],[-3.927823,50.827358],[-3.930576,50.827514],[-3.938353,50.825604],[-3.940414,50.825555],[-3.940197,50.826913],[-3.939152,50.827497],[-3.938812,50.829245],[-3.940482,50.830477],[-3.941015,50.831669],[-3.942796,50.832901],[-3.942212,50.834939],[-3.943334,50.837101],[-3.945632,50.838706],[-3.948505,50.839773],[-3.947686,50.840147],[-3.950208,50.842037],[-3.954444,50.844038],[-3.957552,50.845946],[-3.962094,50.849505],[-3.958644,50.854923],[-3.958918,50.855384],[-3.96128,50.856313],[-3.962393,50.855641],[-3.967389,50.85502],[-3.969826,50.855463],[-3.970675,50.856218],[-3.97232,50.856644],[-3.975833,50.856321],[-3.977422,50.855514],[-3.978028,50.854742],[-3.985664,50.851298],[-3.985788,50.850827],[-3.987931,50.850241],[-3.989503,50.850424],[-3.991786,50.852269],[-3.9954,50.851848],[-3.996909,50.854734],[-3.99538,50.856209],[-3.995733,50.856929],[-3.995091,50.859862],[-3.997267,50.8618],[-3.997798,50.862788],[-3.996147,50.863219],[-3.99652,50.864152],[-3.995033,50.865067],[-3.994181,50.868797],[-3.995888,50.869103],[-4.000453,50.867744],[-4.004413,50.867054],[-4.008366,50.865972],[-4.010651,50.864852],[-4.01073,50.863226],[-4.013583,50.864135],[-4.015467,50.86426],[-4.015637,50.865417],[-4.018391,50.86555],[-4.02096,50.866254],[-4.023042,50.866056],[-4.023861,50.864259],[-4.023803,50.862665],[-4.024369,50.862213],[-4.023932,50.86036],[-4.026352,50.860398],[-4.029017,50.859842],[-4.031588,50.86028],[-4.036318,50.859351],[-4.039009,50.860253],[-4.040726,50.863045],[-4.039925,50.865298],[-4.039951,50.868537],[-4.041546,50.867944],[-4.046431,50.865156],[-4.046507,50.863695],[-4.048923,50.863958],[-4.051496,50.863613],[-4.05305,50.863823],[-4.054726,50.867667],[-4.058098,50.87138],[-4.059262,50.87035],[-4.061048,50.871119],[-4.063853,50.870628],[-4.06517,50.870092],[-4.066616,50.870341],[-4.06742,50.872162],[-4.066487,50.872386],[-4.06868,50.874613],[-4.071225,50.87343],[-4.077469,50.871701],[-4.079334,50.871839],[-4.084965,50.869141],[-4.089967,50.867359],[-4.090135,50.866283],[-4.089418,50.864661],[-4.089426,50.861608],[-4.086967,50.859011],[-4.085916,50.858834],[-4.085409,50.857737],[-4.094745,50.852473],[-4.103132,50.850297],[-4.101313,50.846541],[-4.104842,50.846008],[-4.104232,50.844098],[-4.102975,50.842845],[-4.103351,50.840839],[-4.102696,50.838982],[-4.103331,50.838028],[-4.102878,50.835435],[-4.104888,50.836634],[-4.107142,50.836387],[-4.107508,50.837369],[-4.109375,50.837362],[-4.110727,50.838484],[-4.114107,50.838121],[-4.115086,50.837489],[-4.118284,50.837648],[-4.119236,50.838304],[-4.121016,50.841846],[-4.122617,50.84298],[-4.124372,50.842876],[-4.12613,50.843662],[-4.12872,50.844107],[-4.130137,50.842812],[-4.129968,50.84201],[-4.13324,50.841463],[-4.135047,50.838888],[-4.137064,50.840027],[-4.13863,50.839311],[-4.139633,50.837638],[-4.138733,50.837149],[-4.138347,50.834704],[-4.138968,50.833073],[-4.139915,50.832463],[-4.143637,50.831264],[-4.146658,50.83082],[-4.151644,50.831289],[-4.1516,50.832238],[-4.152861,50.833096],[-4.153656,50.832553],[-4.155049,50.832905],[-4.155945,50.831679],[-4.154751,50.82992],[-4.155849,50.829779],[-4.158816,50.830177],[-4.160625,50.82951],[-4.162644,50.83051],[-4.162944,50.829319],[-4.162152,50.827138],[-4.158367,50.823165],[-4.159299,50.822027],[-4.159977,50.819715],[-4.158488,50.817848],[-4.159186,50.817245],[-4.158239,50.815458],[-4.163298,50.813443],[-4.170773,50.811139],[-4.172778,50.809769],[-4.173017,50.809062],[-4.175217,50.808439],[-4.177209,50.80716],[-4.174331,50.805447],[-4.173746,50.804613],[-4.174874,50.803187],[-4.175931,50.802677],[-4.176255,50.801486],[-4.175501,50.800802],[-4.168764,50.797656],[-4.170303,50.796945],[-4.173832,50.797697],[-4.175891,50.797131],[-4.176481,50.797522],[-4.17854,50.797118],[-4.178955,50.796566],[-4.181735,50.796275],[-4.183464,50.795746],[-4.185473,50.794407],[-4.187348,50.793923],[-4.1885,50.792723],[-4.190771,50.789643],[-4.187836,50.789111],[-4.184494,50.789112],[-4.179824,50.790924],[-4.169053,50.791553],[-4.168147,50.788323],[-4.166419,50.787],[-4.16952,50.786276],[-4.171528,50.786761],[-4.173838,50.786204],[-4.177479,50.785746],[-4.179272,50.784682],[-4.181921,50.784762],[-4.186888,50.782981],[-4.187512,50.782064],[-4.190473,50.781483],[-4.19113,50.781613],[-4.196926,50.779785],[-4.203385,50.776212],[-4.203682,50.77532],[-4.205795,50.774913],[-4.202978,50.769037],[-4.203352,50.76894],[-4.20138,50.765332],[-4.198523,50.763282],[-4.194653,50.761827],[-4.190827,50.759793],[-4.185928,50.757703],[-4.193921,50.757972],[-4.193462,50.756639],[-4.19526,50.755132],[-4.196076,50.756574],[-4.200953,50.754626],[-4.210413,50.752512],[-4.213017,50.751296],[-4.218195,50.748157],[-4.218871,50.746358],[-4.220767,50.746701],[-4.2215,50.745026],[-4.222695,50.743979],[-4.226787,50.742187],[-4.22786,50.739637],[-4.227357,50.737305],[-4.229234,50.734979],[-4.227359,50.73373],[-4.225746,50.731402],[-4.227716,50.728774],[-4.227974,50.727326],[-4.231589,50.724076],[-4.230943,50.723481],[-4.23395,50.72208],[-4.232304,50.718402],[-4.232759,50.717141],[-4.233804,50.716523],[-4.233576,50.715429],[-4.234685,50.714273],[-4.23486,50.712385],[-4.233441,50.710922],[-4.232087,50.710482],[-4.231975,50.709795],[-4.230312,50.709466],[-4.228929,50.708154],[-4.228556,50.706916],[-4.229057,50.705981],[-4.228005,50.704305],[-4.22783,50.700819],[-4.227392,50.700227],[-4.228351,50.697412],[-4.230336,50.696729],[-4.231989,50.695422],[-4.230053,50.693942],[-4.228682,50.693796],[-4.226362,50.69271],[-4.224122,50.69212],[-4.219571,50.691359],[-4.216441,50.68996],[-4.214953,50.688977],[-4.21136,50.685513],[-4.209164,50.681547],[-4.212898,50.679004],[-4.212609,50.678032],[-4.215515,50.675865],[-4.218205,50.675855],[-4.217767,50.674641],[-4.21932,50.673946],[-4.219443,50.672485],[-4.22216,50.671244],[-4.223694,50.671584],[-4.228117,50.671347],[-4.235029,50.671449],[-4.23793,50.672018],[-4.240394,50.673019],[-4.243457,50.673581],[-4.245436,50.672932],[-4.247134,50.672809],[-4.249412,50.671732],[-4.250008,50.670789],[-4.251682,50.669827],[-4.252858,50.66761],[-4.254849,50.667126],[-4.255193,50.666422],[-4.257946,50.66658],[-4.262081,50.668206],[-4.266372,50.668579],[-4.269693,50.668151],[-4.271059,50.667688],[-4.275784,50.668118],[-4.277317,50.669056],[-4.284952,50.666013],[-4.289763,50.666146],[-4.290711,50.666493],[-4.292758,50.665281],[-4.295523,50.665687],[-4.304042,50.66468],[-4.305903,50.663437],[-4.307879,50.663589],[-4.30914,50.663059],[-4.313172,50.662232],[-4.314166,50.661272],[-4.314211,50.660268],[-4.315775,50.658889],[-4.315013,50.656782],[-4.318301,50.653437],[-4.319434,50.653014],[-4.321728,50.653297],[-4.323171,50.652138],[-4.323236,50.651265],[-4.325674,50.649572],[-4.32891,50.649497],[-4.330349,50.648911],[-4.332334,50.648644],[-4.33311,50.647588],[-4.334065,50.647546],[-4.335227,50.646541],[-4.333324,50.643568],[-4.333677,50.641438],[-4.332825,50.640805],[-4.329856,50.64023],[-4.32804,50.640753],[-4.325238,50.64023],[-4.325899,50.637884],[-4.319573,50.636001],[-4.313909,50.636118],[-4.311602,50.637448],[-4.310533,50.636416],[-4.308802,50.635669],[-4.306596,50.636082],[-4.303892,50.636137],[-4.301875,50.635317],[-4.300107,50.633409],[-4.300201,50.632396],[-4.301947,50.631228],[-4.302634,50.629646],[-4.301766,50.626729],[-4.302153,50.625234],[-4.30616,50.62089],[-4.307405,50.620056],[-4.307488,50.618422],[-4.305775,50.615825],[-4.306389,50.6141],[-4.303729,50.612204],[-4.303429,50.61153],[-4.307155,50.604246],[-4.308454,50.602695],[-4.306896,50.599897],[-4.306314,50.594765],[-4.307497,50.593493],[-4.311168,50.591898],[-4.312173,50.589497],[-4.311219,50.58487],[-4.308333,50.581851],[-4.308063,50.578944],[-4.306607,50.578573],[-4.305241,50.579041],[-4.298374,50.583701],[-4.294751,50.584379],[-4.291328,50.583858],[-4.290274,50.583049],[-4.289565,50.58148],[-4.289487,50.577431],[-4.288863,50.576373],[-4.286561,50.575098],[-4.285212,50.575036],[-4.282489,50.576389],[-4.281897,50.577149],[-4.282328,50.57893],[-4.285877,50.582342],[-4.286555,50.583985],[-4.285257,50.584822],[-4.281167,50.584019],[-4.272533,50.58286],[-4.27115,50.582214],[-4.269804,50.579878],[-4.269724,50.578977],[-4.277859,50.574782],[-4.279344,50.570852],[-4.279516,50.569173],[-4.274431,50.56593],[-4.273567,50.564797],[-4.273427,50.562494],[-4.272493,50.561636],[-4.265992,50.558859],[-4.263764,50.557369],[-4.261456,50.554661],[-4.259596,50.551143],[-4.259955,50.547721],[-4.259285,50.545847],[-4.260033,50.544544],[-4.261143,50.543876],[-4.263992,50.543538],[-4.267037,50.542422],[-4.271433,50.538622],[-4.271623,50.536683],[-4.26877,50.535271],[-4.263502,50.536005],[-4.257831,50.538935],[-4.255565,50.54037],[-4.254737,50.54254],[-4.25342,50.543644],[-4.248157,50.54393],[-4.244169,50.543517],[-4.241492,50.542689],[-4.240167,50.541419],[-4.236807,50.534172],[-4.233985,50.531707],[-4.232296,50.531017],[-4.229287,50.530812],[-4.226743,50.529759],[-4.225552,50.529714],[-4.218925,50.532039],[-4.214505,50.534568],[-4.213295,50.534529],[-4.209922,50.533522],[-4.208202,50.533755],[-4.207026,50.532757],[-4.211399,50.530016],[-4.212119,50.528837],[-4.211039,50.525327],[-4.207252,50.521913],[-4.206251,50.520148],[-4.206432,50.518069],[-4.208079,50.516551],[-4.209146,50.51539],[-4.209518,50.514255],[-4.207901,50.513291],[-4.202921,50.513803],[-4.201583,50.513387],[-4.202327,50.506869],[-4.202994,50.505102],[-4.202484,50.503154],[-4.199477,50.502667],[-4.196784,50.503052],[-4.194269,50.50302],[-4.193241,50.50415],[-4.192304,50.506179],[-4.190105,50.507675],[-4.186981,50.508433],[-4.185386,50.50849],[-4.183706,50.507917],[-4.180871,50.50437],[-4.180047,50.502767],[-4.180376,50.500983],[-4.182379,50.499716],[-4.185085,50.499564],[-4.189603,50.498111],[-4.19353,50.498719],[-4.194908,50.497872],[-4.193278,50.495871],[-4.193206,50.495051],[-4.194798,50.493227],[-4.199199,50.492181],[-4.200869,50.491948],[-4.203733,50.492172],[-4.204927,50.492768],[-4.207569,50.495359],[-4.210111,50.496274],[-4.219646,50.497897],[-4.220806,50.497747],[-4.219948,50.493045],[-4.221114,50.491528],[-4.222988,50.490041],[-4.223183,50.489037],[-4.22158,50.486936],[-4.219332,50.485785],[-4.217583,50.484068],[-4.216857,50.477156],[-4.217734,50.475298],[-4.218628,50.474518],[-4.221999,50.472672],[-4.231196,50.468605],[-4.23185,50.468042],[-4.235536,50.466495],[-4.237257,50.46436],[-4.23759,50.461728],[-4.236774,50.459455],[-4.234371,50.457724],[-4.232341,50.456953],[-4.230092,50.45694],[-4.228426,50.457385],[-4.227205,50.458405],[-4.22771,50.461532],[-4.227332,50.464069],[-4.225821,50.465285],[-4.224726,50.467086],[-4.222684,50.46806],[-4.219613,50.468886],[-4.215817,50.468319],[-4.213048,50.466437],[-4.210533,50.463893],[-4.205962,50.458786],[-4.204181,50.457972],[-4.202453,50.456413],[-4.201155,50.454465],[-4.198401,50.453383],[-4.195233,50.454323],[-4.194676,50.453367],[-4.195425,50.450712],[-4.197377,50.45064],[-4.199952,50.450053],[-4.199593,50.448458],[-4.198367,50.447289],[-4.198183,50.44635],[-4.198941,50.445574],[-4.1983,50.444745],[-4.195025,50.442584],[-4.191338,50.440869],[-4.191194,50.440165],[-4.192397,50.438013],[-4.192289,50.437207],[-4.190832,50.435254],[-4.185079,50.434211],[-4.183584,50.435983],[-4.181335,50.437428],[-4.180052,50.437726],[-4.17846,50.438967],[-4.177909,50.439862],[-4.176649,50.440549],[-4.175293,50.443074],[-4.175316,50.443739],[-4.173423,50.44488],[-4.17315,50.446178],[-4.171341,50.448591],[-4.171605,50.449524],[-4.169626,50.451922],[-4.168603,50.452188],[-4.165279,50.454607],[-4.163945,50.456131],[-4.162019,50.455314],[-4.160246,50.455481],[-4.158682,50.456417],[-4.156346,50.458896],[-4.157838,50.461324],[-4.157556,50.462279],[-4.155529,50.46373],[-4.152391,50.46423],[-4.151215,50.465473],[-4.150515,50.465135],[-4.151922,50.463817],[-4.151473,50.463416],[-4.148987,50.463496],[-4.147407,50.463246],[-4.144559,50.462068],[-4.142529,50.462222],[-4.138623,50.463248],[-4.137105,50.46474],[-4.134014,50.464228],[-4.130907,50.464489],[-4.128336,50.465084],[-4.123631,50.464493],[-4.120264,50.463735],[-4.119755,50.46389],[-4.116261,50.463052],[-4.108567,50.46297],[-4.109547,50.459375],[-4.109261,50.457218],[-4.110441,50.453955],[-4.108206,50.454479],[-4.107268,50.450387],[-4.104275,50.45536],[-4.09886,50.460681],[-4.079416,50.46818],[-4.078016,50.4688],[-4.077161,50.467834],[-4.077913,50.467259],[-4.076193,50.465639],[-4.076015,50.463947],[-4.072744,50.462499],[-4.07277,50.461507],[-4.071375,50.460898],[-4.07012,50.459483],[-4.065174,50.459627],[-4.065151,50.45823],[-4.066338,50.457118],[-4.066697,50.456041],[-4.067849,50.45536],[-4.068014,50.454498],[-4.065403,50.454856],[-4.064016,50.454305],[-4.060178,50.45403],[-4.058415,50.455939],[-4.057167,50.45673],[-4.053106,50.457321],[-4.050665,50.458765],[-4.047487,50.458845],[-4.046126,50.459546],[-4.044199,50.459847],[-4.042622,50.460458],[-4.042492,50.461859],[-4.038665,50.462636],[-4.037484,50.463484],[-4.03548,50.463774],[-4.033918,50.462783],[-4.031249,50.463756],[-4.029575,50.463376],[-4.029817,50.462493],[-4.027407,50.461741],[-4.025599,50.462328],[-4.023927,50.462035],[-4.023347,50.463179],[-4.024076,50.464644],[-4.024446,50.4674],[-4.023054,50.468729],[-4.017645,50.468317],[-4.011074,50.469577],[-4.007901,50.469674],[-4.00649,50.472143],[-4.00674,50.474187],[-4.004443,50.475864],[-4.005287,50.476404],[-4.001265,50.477344],[-3.994781,50.477389],[-3.993912,50.478333],[-3.992358,50.47908],[-3.990937,50.481189],[-3.987847,50.481499],[-3.984691,50.483319],[-3.984901,50.483879],[-3.982169,50.485566],[-3.979362,50.486492],[-3.978655,50.486995],[-3.976173,50.487436],[-3.975159,50.487951],[-3.970444,50.488135],[-3.967972,50.489824],[-3.967554,50.491975],[-3.965318,50.494183],[-3.96477,50.49631],[-3.962471,50.498189],[-3.9602,50.499235],[-3.955969,50.500243],[-3.954853,50.500215],[-3.952364,50.499059],[-3.946566,50.497998],[-3.945789,50.498268],[-3.948706,50.492743],[-3.948779,50.488656],[-3.946006,50.489079],[-3.938985,50.484424],[-3.93589,50.483534],[-3.932593,50.481951],[-3.926381,50.480966],[-3.925662,50.479766],[-3.923742,50.479486],[-3.922412,50.480039],[-3.921471,50.481043],[-3.919979,50.481654],[-3.914783,50.481857],[-3.911396,50.480262],[-3.90924,50.47844],[-3.906263,50.476825],[-3.903844,50.477172],[-3.898983,50.472776],[-3.897893,50.47454],[-3.891699,50.478379],[-3.891533,50.479453],[-3.888058,50.480102],[-3.883716,50.48],[-3.883733,50.480796],[-3.882347,50.482702],[-3.881913,50.48406],[-3.880237,50.485674],[-3.879857,50.487296],[-3.881236,50.490762],[-3.882741,50.492818],[-3.883041,50.495269],[-3.883676,50.495886],[-3.883867,50.498023],[-3.883187,50.499573],[-3.884328,50.501564],[-3.89134,50.505889],[-3.892602,50.513852],[-3.890652,50.519636],[-3.891183,50.52352],[-3.88641,50.524629],[-3.884572,50.527034],[-3.884584,50.528673],[-3.884015,50.529361],[-3.884312,50.53065],[-3.88812,50.533216],[-3.889161,50.536319],[-3.886486,50.536138],[-3.884666,50.537196],[-3.883497,50.53923],[-3.882195,50.539967],[-3.880443,50.540276],[-3.879691,50.541558],[-3.877444,50.542431],[-3.875604,50.542531],[-3.875837,50.544543],[-3.874895,50.54542],[-3.875957,50.549294],[-3.877116,50.549984],[-3.877465,50.552396],[-3.877128,50.552929],[-3.874372,50.554173],[-3.874619,50.555123],[-3.8741,50.556206],[-3.875938,50.556954],[-3.876308,50.558579],[-3.874295,50.561792],[-3.874863,50.562848],[-3.874379,50.564745],[-3.872972,50.565583],[-3.871879,50.566745],[-3.871889,50.568103],[-3.870777,50.569198],[-3.869689,50.571274],[-3.87017,50.572172],[-3.87256,50.573374],[-3.873918,50.575162],[-3.877065,50.575134],[-3.877759,50.577068],[-3.877337,50.578919],[-3.879357,50.580894],[-3.88092,50.584399],[-3.880351,50.585721],[-3.879304,50.586319],[-3.881343,50.587731],[-3.880554,50.589358],[-3.881124,50.590481],[-3.881107,50.592499],[-3.882713,50.594469],[-3.882482,50.596724],[-3.879207,50.599498],[-3.874873,50.609019],[-3.872978,50.610916],[-3.872441,50.612563],[-3.873337,50.614259],[-3.869802,50.616889],[-3.867308,50.619312],[-3.864264,50.623439],[-3.862049,50.625136],[-3.860565,50.625822],[-3.858096,50.626185],[-3.857743,50.628957],[-3.855984,50.630677],[-3.854455,50.631639],[-3.852778,50.631605],[-3.850372,50.632319],[-3.84887,50.633528],[-3.848384,50.634444],[-3.845924,50.635698],[-3.845282,50.641023],[-3.843614,50.643051],[-3.843926,50.645259],[-3.843578,50.646945],[-3.841759,50.648231],[-3.837754,50.649821],[-3.834762,50.649708],[-3.832759,50.648911],[-3.83175,50.647781],[-3.82928,50.64793],[-3.828814,50.648973],[-3.828848,50.650481],[-3.826654,50.651771],[-3.824514,50.652048],[-3.821937,50.651391],[-3.820036,50.652221],[-3.818519,50.652307],[-3.817399,50.651402],[-3.815978,50.651597],[-3.81415,50.651305],[-3.814231,50.652926],[-3.811697,50.653668],[-3.809381,50.655671],[-3.806833,50.655495],[-3.804646,50.655906],[-3.805902,50.656702],[-3.807243,50.658593],[-3.809658,50.658989],[-3.811084,50.659595],[-3.810397,50.662456],[-3.809484,50.662902],[-3.809652,50.664639],[-3.806238,50.665364],[-3.803495,50.666572],[-3.804529,50.667365],[-3.801574,50.668734],[-3.801609,50.669748],[-3.800588,50.670335],[-3.799414,50.671763],[-3.799018,50.673164],[-3.797217,50.674915],[-3.798077,50.675768],[-3.798485,50.677693],[-3.802843,50.678617],[-3.807026,50.681612],[-3.807752,50.682806],[-3.807872,50.684622],[-3.810989,50.68939],[-3.811623,50.691025],[-3.809736,50.69258],[-3.808918,50.693998],[-3.807285,50.694744],[-3.803317,50.693637],[-3.801659,50.693695],[-3.798784,50.692909],[-3.791881,50.69384],[-3.789372,50.692798],[-3.786785,50.692158],[-3.784944,50.692812],[-3.783781,50.69489],[-3.78257,50.695528],[-3.780001,50.695322],[-3.777105,50.693474],[-3.77575,50.693061],[-3.773832,50.693166],[-3.76848,50.694976],[-3.761649,50.693216],[-3.760644,50.693309],[-3.758477,50.694431],[-3.756745,50.694829],[-3.753443,50.694308],[-3.752673,50.696327],[-3.749544,50.697158],[-3.745599,50.696664],[-3.741789,50.695516],[-3.735076,50.695896],[-3.732291,50.697],[-3.733686,50.698601],[-3.7337,50.700243],[-3.735126,50.701247],[-3.735593,50.703184],[-3.737716,50.704458],[-3.739077,50.704751],[-3.739911,50.705518],[-3.74149,50.705473],[-3.743325,50.705967],[-3.7458,50.707488],[-3.750276,50.70862],[-3.750848,50.710502],[-3.752263,50.711805],[-3.751428,50.71372],[-3.751582,50.714628],[-3.753667,50.716051],[-3.755328,50.717878],[-3.755463,50.719332],[-3.755011,50.719952],[-3.756869,50.721135],[-3.756966,50.722672],[-3.759273,50.723995],[-3.761974,50.724557],[-3.764208,50.725977],[-3.765889,50.72583],[-3.766259,50.727565],[-3.783532,50.72283],[-3.793477,50.71907],[-3.799889,50.717412],[-3.803807,50.716826],[-3.809408,50.716489],[-3.818597,50.716964],[-3.819609,50.719121],[-3.819876,50.72101],[-3.822129,50.723219],[-3.821428,50.724359],[-3.822487,50.726376],[-3.82545,50.730282],[-3.827528,50.729096],[-3.831844,50.727842],[-3.833846,50.73055],[-3.836295,50.732172],[-3.833814,50.733522],[-3.832152,50.734028],[-3.828606,50.736249],[-3.827323,50.738663],[-3.824709,50.741034],[-3.824979,50.742176],[-3.824227,50.743255],[-3.824573,50.743899],[-3.823075,50.745594],[-3.822677,50.749019],[-3.820606,50.750486],[-3.819745,50.751692],[-3.818309,50.754869],[-3.816899,50.75635],[-3.814836,50.75684],[-3.810963,50.758939],[-3.809029,50.758747],[-3.80738,50.75998],[-3.811322,50.759997],[-3.814726,50.760883],[-3.813037,50.76226],[-3.816094,50.763796],[-3.819719,50.769321],[-3.820611,50.771683],[-3.821683,50.773181],[-3.822587,50.773706],[-3.822954,50.775301],[-3.825129,50.77692],[-3.82429,50.778177],[-3.822357,50.779282],[-3.822041,50.781],[-3.827088,50.780664],[-3.845248,50.781311],[-3.843796,50.782101],[-3.841992,50.784244],[-3.841181,50.786334],[-3.841357,50.787147],[-3.839861,50.787504],[-3.839859,50.788674],[-3.838615,50.79023],[-3.839163,50.791105],[-3.837797,50.792058],[-3.836335,50.792136],[-3.835902,50.792974],[-3.838163,50.794956],[-3.837315,50.795194],[-3.838886,50.797288],[-3.839797,50.800319],[-3.842554,50.800389],[-3.843348,50.8076],[-3.84417,50.809232],[-3.844396,50.811442],[-3.844107,50.812354],[-3.842892,50.813292],[-3.839401,50.817471],[-3.839878,50.81849],[-3.84237,50.818601],[-3.845698,50.817934],[-3.848201,50.818253],[-3.851897,50.817292],[-3.85258,50.817436],[-3.853502,50.819179],[-3.854189,50.819669],[-3.859885,50.821278],[-3.861756,50.820628],[-3.866614,50.820739],[-3.871271,50.819981],[-3.87434,50.819156],[-3.877751,50.818887],[-3.881537,50.821541],[-3.882463,50.824787],[-3.881453,50.824912],[-3.880937,50.826164],[-3.883435,50.825977],[-3.884663,50.82638],[-3.890105,50.829203],[-3.893435,50.831663],[-3.895796,50.831836],[-3.897441,50.833529],[-3.899665,50.834509]]]]},"properties":{"LAD22CD":"E07000047","LAD22NM":"West Devon","BNG_E":256376,"BNG_N":86990,"LONG":-4.03361,"LAT":50.66481,"GlobalID":"af704634-7e93-4653-be84-af773a6338e3"},"id":86}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.339307,50.799137],[0.333995,50.802162],[0.332487,50.802284],[0.333001,50.804121],[0.331511,50.804317],[0.330318,50.805465],[0.328689,50.804825],[0.326958,50.805401],[0.325354,50.806367],[0.323834,50.806805],[0.324069,50.807861],[0.320692,50.806595],[0.320198,50.806966],[0.317882,50.806727],[0.315658,50.808168],[0.31387,50.808741],[0.310401,50.807804],[0.304118,50.809185],[0.302121,50.808292],[0.300166,50.809865],[0.301253,50.811546],[0.300074,50.812833],[0.295448,50.812685],[0.290447,50.813033],[0.28751,50.812987],[0.285201,50.812494],[0.282745,50.811408],[0.279855,50.809309],[0.277827,50.807339],[0.2769,50.804766],[0.275859,50.804864],[0.274042,50.807636],[0.271481,50.810057],[0.26918,50.809673],[0.26735,50.810562],[0.260878,50.806084],[0.262332,50.804861],[0.260939,50.804043],[0.260823,50.803119],[0.261569,50.802024],[0.258913,50.800858],[0.260003,50.799987],[0.257617,50.799259],[0.256434,50.800072],[0.254218,50.799033],[0.250483,50.798838],[0.249447,50.801397],[0.248512,50.802176],[0.246166,50.803099],[0.247153,50.804027],[0.244107,50.805378],[0.242191,50.803126],[0.240498,50.802846],[0.239452,50.802154],[0.237668,50.802523],[0.236245,50.801495],[0.234258,50.801664],[0.227723,50.800872],[0.228302,50.800076],[0.226922,50.799437],[0.229891,50.797706],[0.233091,50.796811],[0.233898,50.795758],[0.232416,50.793449],[0.230765,50.788644],[0.227628,50.783289],[0.222804,50.779747],[0.217048,50.774495],[0.214998,50.763527],[0.217206,50.762058],[0.213614,50.760121],[0.217484,50.757136],[0.212908,50.753875],[0.212106,50.752783],[0.209381,50.751334],[0.211471,50.749326],[0.21356,50.745614],[0.214674,50.744539],[0.215489,50.739721],[0.213614,50.740623],[0.21247,50.742286],[0.2112,50.742978],[0.20995,50.738489],[0.214673,50.737966],[0.218093,50.73707],[0.223303,50.736957],[0.226566,50.736225],[0.235091,50.7356],[0.239889,50.734425],[0.241599,50.735032],[0.243378,50.735182],[0.24844,50.736607],[0.25012,50.736677],[0.252661,50.737336],[0.258098,50.737593],[0.260461,50.738635],[0.262159,50.740412],[0.265623,50.746592],[0.270488,50.751295],[0.273724,50.753539],[0.273621,50.753754],[0.277793,50.756317],[0.286435,50.76024],[0.288584,50.762991],[0.291741,50.765911],[0.294792,50.768026],[0.295021,50.768851],[0.297078,50.770894],[0.30187,50.773776],[0.302883,50.775171],[0.307312,50.777028],[0.309878,50.778781],[0.315818,50.780956],[0.326618,50.78404],[0.328832,50.785172],[0.331348,50.787485],[0.329237,50.787995],[0.327453,50.78893],[0.327595,50.790592],[0.329573,50.792743],[0.331714,50.792048],[0.329633,50.78947],[0.330592,50.78918],[0.333136,50.792663],[0.339307,50.799137]]]},"properties":{"LAD22CD":"E07000061","LAD22NM":"Eastbourne","BNG_E":559339,"BNG_N":99575,"LONG":0.258516,"LAT":50.77387,"GlobalID":"1638be6c-85f1-4dee-851d-6213cdab1a91"},"id":87}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.658555,50.869918],[0.656454,50.871697],[0.655879,50.872719],[0.647227,50.871144],[0.646485,50.871271],[0.643269,50.872958],[0.642592,50.874382],[0.640339,50.874505],[0.640448,50.876375],[0.638695,50.876198],[0.638603,50.87732],[0.636277,50.876945],[0.635892,50.877421],[0.633569,50.877348],[0.627639,50.87992],[0.626611,50.880937],[0.623556,50.881715],[0.622889,50.882457],[0.623764,50.883174],[0.620898,50.884184],[0.618976,50.884084],[0.61543,50.885293],[0.614068,50.884859],[0.613822,50.883695],[0.611238,50.881793],[0.613209,50.880762],[0.606501,50.878727],[0.603727,50.878549],[0.599932,50.882849],[0.599185,50.883902],[0.597742,50.884602],[0.596099,50.884708],[0.591482,50.883947],[0.589867,50.88273],[0.588147,50.883558],[0.588541,50.884049],[0.581868,50.884737],[0.581202,50.883617],[0.573095,50.885819],[0.568425,50.887621],[0.56827,50.888437],[0.56087,50.888878],[0.561222,50.890756],[0.558741,50.889914],[0.557393,50.890424],[0.559133,50.891416],[0.556313,50.894083],[0.552023,50.892394],[0.546273,50.892102],[0.540381,50.893457],[0.53695,50.894825],[0.535612,50.89357],[0.53377,50.893014],[0.532757,50.892125],[0.531496,50.893275],[0.529231,50.892341],[0.528846,50.890198],[0.524305,50.883145],[0.522689,50.882876],[0.522863,50.882151],[0.524631,50.880718],[0.522785,50.878195],[0.520026,50.877386],[0.519949,50.876061],[0.520588,50.874894],[0.520265,50.872273],[0.521781,50.869186],[0.520988,50.868149],[0.521168,50.866923],[0.518623,50.864891],[0.519776,50.862643],[0.518112,50.862261],[0.51783,50.860767],[0.521012,50.859321],[0.521722,50.85855],[0.521693,50.856951],[0.521009,50.854499],[0.520302,50.854359],[0.52011,50.852553],[0.521189,50.851744],[0.51219,50.848981],[0.512127,50.84984],[0.510593,50.85001],[0.508573,50.85087],[0.507089,50.849518],[0.507568,50.848322],[0.505662,50.847366],[0.505931,50.845472],[0.504124,50.844806],[0.50449,50.843705],[0.500875,50.842295],[0.509682,50.844145],[0.512797,50.845095],[0.514766,50.846373],[0.519693,50.847825],[0.529738,50.849238],[0.534492,50.849257],[0.536818,50.849892],[0.558096,50.850441],[0.561,50.851286],[0.562712,50.851479],[0.571714,50.853011],[0.574289,50.853134],[0.575377,50.853647],[0.577791,50.85404],[0.586769,50.853892],[0.592104,50.853429],[0.59198,50.854086],[0.593358,50.854649],[0.597398,50.854698],[0.597246,50.855798],[0.599312,50.85612],[0.599344,50.85691],[0.602506,50.857387],[0.608849,50.859919],[0.612575,50.860099],[0.616367,50.860875],[0.620151,50.860778],[0.624438,50.86135],[0.629228,50.862895],[0.631338,50.865017],[0.634345,50.865466],[0.638822,50.8671],[0.64655,50.86791],[0.650436,50.86785],[0.652432,50.869055],[0.658555,50.869918]]]},"properties":{"LAD22CD":"E07000062","LAD22NM":"Hastings","BNG_E":581528,"BNG_N":110694,"LONG":0.578395,"LAT":50.86724,"GlobalID":"efdfd03f-38fe-422d-810e-90eab5cd26d9"},"id":88}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.15025,50.766426],[0.151305,50.767471],[0.151566,50.769104],[0.149049,50.770138],[0.14968,50.771054],[0.151524,50.771337],[0.153979,50.770874],[0.154456,50.771618],[0.153632,50.772225],[0.151555,50.772265],[0.15089,50.77274],[0.150806,50.77433],[0.146537,50.773349],[0.15025,50.766426]]],[[[0.04961,50.797751],[0.048809,50.798546],[0.047636,50.797704],[0.04817,50.795916],[0.048985,50.79549],[0.051182,50.795433],[0.04961,50.797751]]],[[[0.015933,50.889041],[0.015399,50.889702],[0.011869,50.892709],[0.010622,50.893265],[0.009538,50.895186],[0.000282,50.88956],[0.00146,50.888869],[0.00285,50.889224],[0.005667,50.889138],[0.009188,50.888485],[0.011609,50.886696],[0.015862,50.887783],[0.015933,50.889041]]],[[[0.14493,50.790738],[0.143729,50.792681],[0.140496,50.79127],[0.138517,50.791119],[0.135627,50.791718],[0.13055,50.791701],[0.12185,50.793088],[0.11923,50.794234],[0.114492,50.797391],[0.111592,50.801978],[0.111368,50.80489],[0.109424,50.809503],[0.108909,50.812923],[0.104855,50.816059],[0.103248,50.81852],[0.100904,50.819621],[0.097934,50.82032],[0.099932,50.822958],[0.101083,50.825478],[0.105798,50.829163],[0.107596,50.831435],[0.111288,50.830817],[0.112236,50.832358],[0.114817,50.834943],[0.117446,50.835918],[0.119522,50.837942],[0.11616,50.839019],[0.118619,50.840934],[0.118873,50.84177],[0.12102,50.84128],[0.124525,50.846301],[0.115042,50.849639],[0.117615,50.851928],[0.119208,50.854161],[0.120444,50.853805],[0.121814,50.854441],[0.124835,50.854756],[0.127327,50.856761],[0.122509,50.85879],[0.122153,50.859207],[0.123835,50.862304],[0.120807,50.863301],[0.11678,50.865675],[0.116791,50.866423],[0.114639,50.87068],[0.105974,50.871322],[0.105292,50.872001],[0.102945,50.871396],[0.101213,50.87042],[0.098497,50.869993],[0.09669,50.871774],[0.096583,50.872337],[0.098048,50.881513],[0.096809,50.882985],[0.091878,50.884909],[0.095156,50.888851],[0.098755,50.892309],[0.101029,50.893839],[0.101109,50.894911],[0.103247,50.896612],[0.104953,50.900699],[0.110098,50.904618],[0.111391,50.907385],[0.112857,50.908761],[0.119867,50.912758],[0.121913,50.915281],[0.112581,50.915248],[0.110953,50.915647],[0.105622,50.919561],[0.101065,50.920889],[0.095568,50.923106],[0.090002,50.920652],[0.088523,50.918794],[0.086639,50.919286],[0.082697,50.919736],[0.078308,50.921651],[0.072183,50.922758],[0.068455,50.924907],[0.068031,50.924701],[0.063491,50.925664],[0.060647,50.925269],[0.057304,50.926091],[0.056741,50.92706],[0.056103,50.929633],[0.056673,50.930925],[0.055443,50.933563],[0.055785,50.93453],[0.054651,50.934875],[0.054381,50.935849],[0.055456,50.937753],[0.055212,50.938814],[0.053505,50.939585],[0.05387,50.940473],[0.049958,50.944086],[0.04823,50.946512],[0.049453,50.947968],[0.049563,50.950088],[0.050614,50.950547],[0.050621,50.951493],[0.04978,50.952312],[0.050879,50.953653],[0.049983,50.955627],[0.050944,50.958418],[0.050526,50.958963],[0.048632,50.958709],[0.048903,50.96111],[0.050871,50.961404],[0.053038,50.962343],[0.054448,50.965303],[0.053568,50.966929],[0.051859,50.969279],[0.050233,50.968908],[0.049876,50.968147],[0.046843,50.967482],[0.044246,50.966339],[0.041945,50.966223],[0.040382,50.966757],[0.039013,50.96662],[0.037419,50.968107],[0.038545,50.969078],[0.03813,50.970075],[0.038706,50.972044],[0.037309,50.973715],[0.036115,50.974285],[0.034562,50.974038],[0.03174,50.975316],[0.032598,50.976251],[0.031397,50.97771],[0.029948,50.978755],[0.029019,50.980385],[0.025559,50.980497],[0.022823,50.981166],[0.020375,50.980359],[0.017253,50.980213],[0.014412,50.978406],[0.011165,50.977618],[0.008057,50.981477],[0.007726,50.98242],[0.009517,50.98299],[0.008787,50.983907],[0.008722,50.987127],[0.006682,50.986687],[0.004636,50.989412],[0.003069,50.99028],[0.003891,50.993508],[0.001946,50.994349],[0.00169,50.995003],[-0.000569,50.995679],[-0.002656,50.997054],[-0.005856,50.997487],[-0.005768,50.9984],[-0.007727,50.998327],[-0.009312,51.001915],[-0.011472,51.001361],[-0.011693,51.000363],[-0.015107,51.001226],[-0.01641,51.002514],[-0.01779,51.000167],[-0.017607,50.998971],[-0.018484,50.995914],[-0.018146,50.995292],[-0.018832,50.992334],[-0.018775,50.988966],[-0.020231,50.986189],[-0.020076,50.985404],[-0.023533,50.982242],[-0.024604,50.980025],[-0.029318,50.979229],[-0.032026,50.979584],[-0.034666,50.977453],[-0.037072,50.977384],[-0.037867,50.978822],[-0.039586,50.97931],[-0.044454,50.979614],[-0.0454,50.980493],[-0.046986,50.981208],[-0.048757,50.981135],[-0.050135,50.980378],[-0.053537,50.979478],[-0.056518,50.979994],[-0.058432,50.979998],[-0.05998,50.979503],[-0.061266,50.978384],[-0.063713,50.979212],[-0.063769,50.980818],[-0.065044,50.981163],[-0.065186,50.982121],[-0.066236,50.982813],[-0.065559,50.983669],[-0.065697,50.985785],[-0.067189,50.989064],[-0.068528,50.989556],[-0.070525,50.991345],[-0.07362,50.991675],[-0.075463,50.991101],[-0.076785,50.991453],[-0.078766,50.990872],[-0.083821,50.990719],[-0.082391,50.989092],[-0.085291,50.989652],[-0.086668,50.988912],[-0.086832,50.987853],[-0.091856,50.983289],[-0.092283,50.983297],[-0.09314,50.980598],[-0.093068,50.979228],[-0.094189,50.979369],[-0.097341,50.978789],[-0.098107,50.979378],[-0.101812,50.979387],[-0.101665,50.980077],[-0.102702,50.980843],[-0.104411,50.980288],[-0.108814,50.980242],[-0.10998,50.978219],[-0.111642,50.976907],[-0.111752,50.976353],[-0.114062,50.976509],[-0.115215,50.976077],[-0.116318,50.973454],[-0.116107,50.970369],[-0.115124,50.969779],[-0.116309,50.967176],[-0.112669,50.967341],[-0.110385,50.967807],[-0.108555,50.96698],[-0.10936,50.965042],[-0.105518,50.964403],[-0.108022,50.960573],[-0.108349,50.95876],[-0.10783,50.957905],[-0.108122,50.956913],[-0.106212,50.954683],[-0.106301,50.953986],[-0.105237,50.951738],[-0.104986,50.949289],[-0.104177,50.947276],[-0.105427,50.94311],[-0.108916,50.943803],[-0.111099,50.943677],[-0.118059,50.945256],[-0.119976,50.941699],[-0.117859,50.941491],[-0.11794,50.940593],[-0.120065,50.940527],[-0.120447,50.938695],[-0.119873,50.932874],[-0.120728,50.929898],[-0.122478,50.9283],[-0.125163,50.924486],[-0.126696,50.921114],[-0.128387,50.918935],[-0.129603,50.914253],[-0.129708,50.911381],[-0.13077,50.909764],[-0.130092,50.909512],[-0.130574,50.907847],[-0.130863,50.900278],[-0.131876,50.896358],[-0.13337,50.89398],[-0.133979,50.888177],[-0.13501,50.886634],[-0.135538,50.885141],[-0.135824,50.880749],[-0.135284,50.878105],[-0.129503,50.878724],[-0.127042,50.878151],[-0.12421,50.877975],[-0.1243,50.876186],[-0.122234,50.876123],[-0.1218,50.873428],[-0.115313,50.874228],[-0.111361,50.873155],[-0.104915,50.872343],[-0.103495,50.872774],[-0.104463,50.874604],[-0.097963,50.876542],[-0.098476,50.8775],[-0.097519,50.877945],[-0.094801,50.876538],[-0.09436,50.876781],[-0.084928,50.87312],[-0.086102,50.871073],[-0.08464,50.868983],[-0.082873,50.867453],[-0.084134,50.86692],[-0.083236,50.863173],[-0.082804,50.863072],[-0.08167,50.860687],[-0.080015,50.860932],[-0.078832,50.853805],[-0.072498,50.848331],[-0.070779,50.845819],[-0.072389,50.844042],[-0.073442,50.841245],[-0.062621,50.841527],[-0.060354,50.841968],[-0.058361,50.842879],[-0.053589,50.844288],[-0.048825,50.844385],[-0.045586,50.844968],[-0.043457,50.844285],[-0.042591,50.842723],[-0.036843,50.841239],[-0.036232,50.83958],[-0.038992,50.837872],[-0.038076,50.836413],[-0.038856,50.834676],[-0.039104,50.828633],[-0.042458,50.824253],[-0.045115,50.8234],[-0.045969,50.821825],[-0.042162,50.821456],[-0.039685,50.82153],[-0.03327,50.8188],[-0.031003,50.817415],[-0.030229,50.817349],[-0.02634,50.818017],[-0.020429,50.82183],[-0.019303,50.819649],[-0.016586,50.816274],[-0.016003,50.814875],[-0.020624,50.812889],[-0.028199,50.808284],[-0.031766,50.804546],[-0.034391,50.802464],[-0.037097,50.800928],[-0.038577,50.799083],[-0.037683,50.799337],[-0.031887,50.797463],[-0.030477,50.797265],[-0.025446,50.795267],[-0.023005,50.795014],[-0.020745,50.793999],[-0.01551,50.792954],[-0.012794,50.791842],[-0.010794,50.791731],[-0.009676,50.791155],[-0.007161,50.790814],[-0.003272,50.789757],[-0.000221,50.788685],[0.005675,50.787737],[0.006843,50.787206],[0.010184,50.786959],[0.016798,50.785187],[0.019509,50.785003],[0.021778,50.785223],[0.02596,50.783847],[0.029716,50.783014],[0.036242,50.78112],[0.043144,50.781494],[0.053055,50.779613],[0.052304,50.780717],[0.053282,50.781364],[0.057255,50.781675],[0.055317,50.785407],[0.054201,50.785128],[0.052422,50.786147],[0.052691,50.787765],[0.05332,50.788173],[0.052606,50.790236],[0.052313,50.79325],[0.051671,50.794804],[0.048206,50.795323],[0.046319,50.796918],[0.046293,50.798008],[0.048085,50.799231],[0.047245,50.800999],[0.046991,50.803145],[0.046324,50.804516],[0.044738,50.806148],[0.043903,50.808347],[0.042111,50.809384],[0.038397,50.809284],[0.03598,50.809894],[0.034157,50.809621],[0.030423,50.813793],[0.027187,50.814626],[0.026379,50.815254],[0.026246,50.817107],[0.02793,50.821766],[0.025678,50.83097],[0.026063,50.833554],[0.027422,50.835334],[0.030081,50.836405],[0.031183,50.839279],[0.032708,50.841423],[0.032653,50.843788],[0.033603,50.845338],[0.03452,50.845751],[0.037161,50.84552],[0.038153,50.84666],[0.037464,50.848107],[0.03554,50.849356],[0.033902,50.850998],[0.030262,50.855979],[0.027061,50.857254],[0.023482,50.860831],[0.021456,50.861784],[0.020423,50.862785],[0.020121,50.864229],[0.020906,50.865145],[0.023365,50.866043],[0.02368,50.86665],[0.023827,50.869236],[0.023369,50.8707],[0.022374,50.871584],[0.016627,50.873195],[0.015955,50.873924],[0.015415,50.876276],[0.013079,50.87723],[0.010348,50.878861],[0.007012,50.879371],[0.005769,50.879851],[0.004503,50.881046],[0.000888,50.883357],[0.000355,50.884722],[-0.002064,50.886045],[-0.002789,50.887432],[-0.00067,50.889195],[0.009182,50.895086],[0.010034,50.895448],[0.010805,50.893482],[0.01196,50.892876],[0.016238,50.889062],[0.015797,50.887528],[0.011312,50.886495],[0.010476,50.886766],[0.009158,50.888287],[0.005182,50.88897],[0.002809,50.889006],[0.001381,50.888647],[0.000012,50.889112],[-0.002376,50.887019],[-0.001599,50.886065],[0.00081,50.884837],[0.001001,50.883674],[0.004879,50.881325],[0.006068,50.879931],[0.010121,50.879226],[0.015751,50.876355],[0.016159,50.875903],[0.016226,50.873904],[0.01686,50.873283],[0.023022,50.871693],[0.024107,50.870065],[0.024193,50.86777],[0.023914,50.866086],[0.020694,50.864524],[0.02053,50.86363],[0.021153,50.862412],[0.023694,50.861066],[0.027316,50.857566],[0.030825,50.856044],[0.034859,50.850497],[0.037602,50.848539],[0.038449,50.847278],[0.038559,50.846175],[0.036601,50.845124],[0.034775,50.845457],[0.033929,50.845069],[0.033132,50.843618],[0.033257,50.841504],[0.031905,50.839515],[0.030474,50.836035],[0.028023,50.83505],[0.026431,50.83306],[0.026206,50.831025],[0.028514,50.821907],[0.026803,50.81685],[0.027138,50.815208],[0.028059,50.814792],[0.030983,50.81439],[0.034021,50.810542],[0.036338,50.810328],[0.03859,50.809709],[0.042016,50.809917],[0.043341,50.809572],[0.044514,50.808622],[0.045408,50.806459],[0.047866,50.804427],[0.048192,50.803414],[0.047985,50.801785],[0.048521,50.800514],[0.050074,50.799471],[0.049868,50.798553],[0.052522,50.79504],[0.054963,50.78851],[0.055679,50.788388],[0.057429,50.783662],[0.058484,50.783036],[0.058336,50.782144],[0.06216,50.78267],[0.066742,50.782402],[0.070299,50.78157],[0.077743,50.779046],[0.09171,50.77269],[0.104402,50.766106],[0.107732,50.763775],[0.110224,50.763901],[0.111772,50.762767],[0.113255,50.762561],[0.114989,50.761004],[0.118389,50.75997],[0.121967,50.758304],[0.12396,50.758176],[0.125254,50.757663],[0.130448,50.757187],[0.133433,50.756384],[0.137914,50.755852],[0.141299,50.756558],[0.146397,50.759135],[0.148526,50.758798],[0.147389,50.760445],[0.147565,50.761546],[0.148,50.763824],[0.149936,50.766118],[0.145851,50.774028],[0.143671,50.775193],[0.141676,50.777106],[0.1428,50.778027],[0.141631,50.77884],[0.145576,50.783563],[0.147736,50.785403],[0.146728,50.786533],[0.14712,50.78755],[0.147196,50.787782],[0.144124,50.789773],[0.14493,50.790738]]]]},"properties":{"LAD22CD":"E07000063","LAD22NM":"Lewes","BNG_E":541474,"BNG_N":105686,"LONG":0.007671,"LAT":50.83341,"GlobalID":"5df5be8b-cd7c-429e-9ddd-62a3148a5f53"},"id":89}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.605391,51.01207],[0.603611,51.011879],[0.602544,51.010449],[0.601565,51.009891],[0.597347,51.008933],[0.593524,51.010047],[0.587315,51.008746],[0.586763,51.008425],[0.585325,51.005854],[0.581787,51.00524],[0.57981,51.004477],[0.577916,51.004485],[0.575632,51.005227],[0.573148,51.00448],[0.572013,51.003455],[0.568381,51.003815],[0.566669,51.004352],[0.564806,51.006717],[0.563651,51.00744],[0.561685,51.007787],[0.558809,51.00722],[0.557089,51.007873],[0.554714,51.008286],[0.551835,51.008245],[0.549483,51.009065],[0.547697,51.009169],[0.545157,51.010373],[0.54203,51.010944],[0.541313,51.011659],[0.541311,51.013237],[0.54073,51.014344],[0.541054,51.016926],[0.539791,51.017924],[0.539956,51.018515],[0.538647,51.020703],[0.53764,51.021652],[0.533858,51.021989],[0.531309,51.021503],[0.527447,51.021658],[0.526003,51.022784],[0.52287,51.023161],[0.519963,51.022498],[0.515567,51.022531],[0.513499,51.023499],[0.510906,51.02349],[0.508456,51.024125],[0.506895,51.026486],[0.504481,51.027985],[0.502134,51.028069],[0.498673,51.029265],[0.496108,51.030634],[0.492674,51.031146],[0.489717,51.030592],[0.485281,51.030926],[0.482714,51.030585],[0.481545,51.029822],[0.478751,51.029086],[0.477333,51.029153],[0.473335,51.030448],[0.471423,51.03077],[0.469508,51.03248],[0.468046,51.032583],[0.466405,51.034312],[0.467001,51.038039],[0.468363,51.040619],[0.46609,51.042737],[0.471109,51.045742],[0.471901,51.046973],[0.471401,51.049078],[0.468393,51.050544],[0.466399,51.050799],[0.463811,51.052342],[0.463058,51.054097],[0.463267,51.054787],[0.457311,51.055259],[0.453706,51.056958],[0.45168,51.056378],[0.4496,51.056709],[0.447989,51.056583],[0.446858,51.058125],[0.444277,51.058412],[0.440817,51.057917],[0.439931,51.058959],[0.438373,51.059745],[0.432533,51.061061],[0.430996,51.062044],[0.428569,51.06252],[0.428256,51.063139],[0.418263,51.062629],[0.416246,51.06389],[0.416262,51.06529],[0.417778,51.067893],[0.41698,51.067893],[0.4159,51.066615],[0.414128,51.065485],[0.411311,51.065887],[0.411081,51.067095],[0.409228,51.068234],[0.409005,51.069393],[0.406606,51.068903],[0.405816,51.069504],[0.402411,51.07046],[0.400918,51.071176],[0.400658,51.07269],[0.405439,51.075438],[0.405564,51.077223],[0.405068,51.077919],[0.406613,51.079686],[0.40408,51.081245],[0.397624,51.083645],[0.396474,51.083096],[0.397943,51.082509],[0.395182,51.080407],[0.392253,51.077367],[0.395772,51.073913],[0.392224,51.072904],[0.389795,51.073015],[0.388131,51.072419],[0.382636,51.072772],[0.378125,51.072796],[0.376106,51.072508],[0.374673,51.071316],[0.371647,51.069852],[0.370712,51.069787],[0.367634,51.06826],[0.367292,51.06779],[0.364972,51.067661],[0.363044,51.066978],[0.361353,51.065277],[0.361528,51.062433],[0.358953,51.05948],[0.356709,51.057867],[0.357012,51.05712],[0.356847,51.051007],[0.358311,51.046057],[0.357951,51.044622],[0.355689,51.042806],[0.354861,51.041207],[0.355272,51.036829],[0.356115,51.036431],[0.35496,51.033873],[0.355572,51.033003],[0.355493,51.031853],[0.353269,51.030068],[0.352688,51.030046],[0.350338,51.028141],[0.34755,51.026557],[0.3466,51.0241],[0.3469,51.022536],[0.349728,51.021657],[0.350266,51.020401],[0.351714,51.020106],[0.35191,51.018318],[0.353924,51.017896],[0.352913,51.0172],[0.351608,51.017584],[0.349484,51.017517],[0.347248,51.016346],[0.346084,51.016338],[0.344671,51.015469],[0.341743,51.015591],[0.336236,51.013982],[0.333997,51.014087],[0.333397,51.013718],[0.331161,51.013883],[0.328659,51.012882],[0.328262,51.012101],[0.329983,51.010457],[0.330414,51.006762],[0.330085,51.004026],[0.327859,51.003089],[0.325932,51.00141],[0.322605,51.000097],[0.32465,50.998097],[0.321586,50.996684],[0.324735,50.995731],[0.323341,50.994563],[0.322358,50.992802],[0.323598,50.990416],[0.323612,50.988632],[0.323012,50.987088],[0.324298,50.986143],[0.327024,50.984911],[0.328204,50.981193],[0.329033,50.97987],[0.328903,50.978157],[0.330271,50.974874],[0.330152,50.97305],[0.327663,50.970488],[0.326483,50.966544],[0.324988,50.964419],[0.323546,50.96388],[0.324025,50.962921],[0.325647,50.961531],[0.327267,50.960918],[0.334998,50.961188],[0.338513,50.960642],[0.341611,50.960606],[0.343584,50.959147],[0.34401,50.957346],[0.341543,50.957075],[0.337768,50.953783],[0.335933,50.953044],[0.338814,50.950715],[0.338173,50.950356],[0.337635,50.947845],[0.341004,50.946603],[0.343516,50.94433],[0.343212,50.942354],[0.341321,50.941432],[0.34269,50.939441],[0.34765,50.93827],[0.35145,50.938676],[0.353502,50.93765],[0.354663,50.935959],[0.356634,50.935266],[0.360881,50.935997],[0.36226,50.934803],[0.364773,50.934151],[0.366846,50.932862],[0.366598,50.930607],[0.362495,50.925821],[0.362511,50.924098],[0.363058,50.923183],[0.358994,50.92233],[0.35859,50.921942],[0.357762,50.917303],[0.359955,50.917118],[0.361805,50.917344],[0.363637,50.917055],[0.364151,50.914929],[0.36378,50.91393],[0.361557,50.913468],[0.360326,50.913739],[0.358229,50.913483],[0.359105,50.911254],[0.361047,50.908414],[0.360672,50.906049],[0.361043,50.90519],[0.362487,50.904359],[0.362971,50.903438],[0.3673,50.901997],[0.370455,50.901122],[0.370117,50.900431],[0.372535,50.899798],[0.374303,50.898393],[0.372151,50.896185],[0.371118,50.893575],[0.369566,50.89258],[0.368652,50.891054],[0.367193,50.889991],[0.366713,50.889103],[0.368286,50.887637],[0.369779,50.887678],[0.372654,50.884232],[0.374419,50.883047],[0.377524,50.88357],[0.379236,50.883604],[0.380671,50.885327],[0.384753,50.887122],[0.385483,50.886899],[0.38869,50.887768],[0.389823,50.887793],[0.392423,50.889041],[0.394653,50.890878],[0.395885,50.89143],[0.398703,50.892041],[0.402584,50.893709],[0.405511,50.893868],[0.408489,50.895027],[0.409702,50.895111],[0.41227,50.896419],[0.414141,50.896802],[0.416357,50.896851],[0.417104,50.896038],[0.420087,50.894746],[0.419941,50.893025],[0.422655,50.893232],[0.423019,50.89494],[0.427273,50.894683],[0.428641,50.895055],[0.430361,50.894342],[0.433907,50.894243],[0.435845,50.893583],[0.435075,50.892862],[0.431178,50.89301],[0.429616,50.891825],[0.430948,50.891292],[0.43298,50.891086],[0.434417,50.889806],[0.437763,50.889877],[0.439553,50.889288],[0.439773,50.887239],[0.441168,50.885212],[0.441169,50.88447],[0.44421,50.882397],[0.444566,50.881697],[0.449085,50.878951],[0.446497,50.877749],[0.445339,50.876063],[0.445276,50.874542],[0.446707,50.873456],[0.450159,50.873763],[0.447598,50.872518],[0.444675,50.869661],[0.443716,50.87008],[0.44063,50.867968],[0.435142,50.866558],[0.431535,50.866144],[0.429774,50.864996],[0.426758,50.864095],[0.425893,50.863119],[0.424181,50.862875],[0.421146,50.860094],[0.421686,50.859606],[0.42073,50.85848],[0.417439,50.856588],[0.415466,50.856069],[0.413978,50.856178],[0.412015,50.855758],[0.407981,50.852315],[0.408088,50.850908],[0.405833,50.850469],[0.401703,50.850367],[0.401706,50.849747],[0.398569,50.848814],[0.398861,50.848298],[0.39453,50.846654],[0.393967,50.846013],[0.390015,50.844397],[0.386263,50.843923],[0.384102,50.842946],[0.381931,50.843321],[0.380968,50.842676],[0.378038,50.842379],[0.377056,50.841399],[0.375771,50.840901],[0.374738,50.839872],[0.373857,50.838094],[0.374654,50.83713],[0.377025,50.836431],[0.376582,50.833113],[0.375147,50.831779],[0.373744,50.83225],[0.372534,50.831641],[0.37534,50.828586],[0.376091,50.826086],[0.377618,50.823689],[0.377886,50.821681],[0.377603,50.820387],[0.389826,50.824081],[0.397507,50.825887],[0.399675,50.826684],[0.41295,50.830144],[0.419322,50.831309],[0.427294,50.832026],[0.463219,50.835866],[0.476183,50.837051],[0.481063,50.837652],[0.483317,50.838643],[0.48623,50.839317],[0.498295,50.841241],[0.500875,50.842295],[0.50449,50.843705],[0.504124,50.844806],[0.505931,50.845472],[0.505662,50.847366],[0.507568,50.848322],[0.507089,50.849518],[0.508573,50.85087],[0.510593,50.85001],[0.512127,50.84984],[0.51219,50.848981],[0.521189,50.851744],[0.52011,50.852553],[0.520302,50.854359],[0.521009,50.854499],[0.521693,50.856951],[0.521722,50.85855],[0.521012,50.859321],[0.51783,50.860767],[0.518112,50.862261],[0.519776,50.862643],[0.518623,50.864891],[0.521168,50.866923],[0.520988,50.868149],[0.521781,50.869186],[0.520265,50.872273],[0.520588,50.874894],[0.519949,50.876061],[0.520026,50.877386],[0.522785,50.878195],[0.524631,50.880718],[0.522863,50.882151],[0.522689,50.882876],[0.524305,50.883145],[0.528846,50.890198],[0.529231,50.892341],[0.531496,50.893275],[0.532757,50.892125],[0.53377,50.893014],[0.535612,50.89357],[0.53695,50.894825],[0.540381,50.893457],[0.546273,50.892102],[0.552023,50.892394],[0.556313,50.894083],[0.559133,50.891416],[0.557393,50.890424],[0.558741,50.889914],[0.561222,50.890756],[0.56087,50.888878],[0.56827,50.888437],[0.568425,50.887621],[0.573095,50.885819],[0.581202,50.883617],[0.581868,50.884737],[0.588541,50.884049],[0.588147,50.883558],[0.589867,50.88273],[0.591482,50.883947],[0.596099,50.884708],[0.597742,50.884602],[0.599185,50.883902],[0.599932,50.882849],[0.603727,50.878549],[0.606501,50.878727],[0.613209,50.880762],[0.611238,50.881793],[0.613822,50.883695],[0.614068,50.884859],[0.61543,50.885293],[0.618976,50.884084],[0.620898,50.884184],[0.623764,50.883174],[0.622889,50.882457],[0.623556,50.881715],[0.626611,50.880937],[0.627639,50.87992],[0.633569,50.877348],[0.635892,50.877421],[0.636277,50.876945],[0.638603,50.87732],[0.638695,50.876198],[0.640448,50.876375],[0.640339,50.874505],[0.642592,50.874382],[0.643269,50.872958],[0.646485,50.871271],[0.647227,50.871144],[0.655879,50.872719],[0.656454,50.871697],[0.658555,50.869918],[0.660027,50.870111],[0.664293,50.871698],[0.666022,50.87204],[0.670079,50.873964],[0.670518,50.875589],[0.672616,50.877059],[0.673059,50.878151],[0.679,50.881178],[0.679722,50.881836],[0.682225,50.885762],[0.683561,50.886272],[0.685785,50.888166],[0.694664,50.89353],[0.697536,50.894767],[0.709814,50.901982],[0.720157,50.908469],[0.726897,50.911577],[0.729731,50.913419],[0.735249,50.915833],[0.742841,50.91853],[0.752337,50.923224],[0.761603,50.925544],[0.771973,50.927667],[0.774,50.928001],[0.772847,50.928848],[0.77244,50.929884],[0.771471,50.930487],[0.767797,50.934806],[0.766923,50.935572],[0.764564,50.938513],[0.763398,50.939519],[0.760738,50.940691],[0.752889,50.942148],[0.748699,50.944766],[0.743159,50.946664],[0.740205,50.947845],[0.740055,50.949294],[0.739368,50.950188],[0.737477,50.951475],[0.73899,50.95317],[0.738377,50.956919],[0.739242,50.957881],[0.741102,50.958765],[0.742233,50.961201],[0.743106,50.961788],[0.746335,50.962587],[0.747219,50.963099],[0.748163,50.964976],[0.747419,50.966375],[0.747637,50.967674],[0.750227,50.969711],[0.750488,50.969055],[0.747953,50.967191],[0.748535,50.96496],[0.748353,50.963852],[0.746964,50.962494],[0.743133,50.961423],[0.741542,50.958624],[0.738953,50.957114],[0.739581,50.953023],[0.737974,50.951519],[0.740839,50.95023],[0.741352,50.94842],[0.742148,50.947782],[0.748512,50.945785],[0.753352,50.942965],[0.762208,50.941358],[0.764405,50.939715],[0.765451,50.938273],[0.772008,50.93125],[0.774366,50.931895],[0.778517,50.932062],[0.786962,50.933222],[0.793382,50.932986],[0.808605,50.930499],[0.812395,50.930246],[0.83184,50.926898],[0.83906,50.92633],[0.855086,50.923909],[0.865096,50.92926],[0.866013,50.931151],[0.867891,50.933262],[0.864116,50.93513],[0.859629,50.93968],[0.860973,50.941831],[0.855968,50.953129],[0.85253,50.951568],[0.849065,50.951261],[0.848037,50.951732],[0.846112,50.951854],[0.846918,50.953567],[0.84642,50.955],[0.844977,50.955856],[0.844275,50.957352],[0.841401,50.957609],[0.839762,50.956212],[0.841101,50.954704],[0.838869,50.954296],[0.838738,50.952393],[0.836962,50.950456],[0.833318,50.949499],[0.829869,50.945665],[0.827899,50.945872],[0.826427,50.945268],[0.824811,50.945451],[0.822904,50.944758],[0.821295,50.945722],[0.819068,50.945455],[0.819385,50.944298],[0.818549,50.943098],[0.81673,50.942285],[0.814665,50.942398],[0.812942,50.942],[0.813463,50.949011],[0.805549,50.954981],[0.801978,50.958283],[0.790393,50.969992],[0.789541,50.971418],[0.785456,50.975233],[0.784328,50.97723],[0.782968,50.977419],[0.780748,50.976791],[0.778663,50.976583],[0.777135,50.975428],[0.777085,50.977337],[0.77845,50.978348],[0.777785,50.979441],[0.778835,50.979843],[0.781702,50.982886],[0.779013,50.982394],[0.777026,50.984855],[0.781054,50.986499],[0.779538,50.987495],[0.778957,50.989492],[0.778615,50.990818],[0.775726,50.991998],[0.772844,50.992732],[0.757426,50.995443],[0.751333,50.997242],[0.749384,50.9975],[0.748087,50.998392],[0.741094,51.000644],[0.737759,51.000823],[0.731467,50.99997],[0.731346,51.000395],[0.725407,50.999214],[0.721142,50.999462],[0.711255,50.998472],[0.708515,50.997741],[0.705783,50.995104],[0.70677,50.993602],[0.702075,50.995971],[0.701227,50.997322],[0.69922,50.99849],[0.689473,50.999307],[0.682238,51.000548],[0.68096,51.001537],[0.678942,51.002265],[0.675501,51.004348],[0.672943,51.008136],[0.671756,51.008987],[0.670941,51.01142],[0.664929,51.01611],[0.661305,51.017792],[0.658652,51.017582],[0.65785,51.017121],[0.656455,51.01516],[0.654992,51.014719],[0.652217,51.015209],[0.649824,51.015179],[0.648154,51.015941],[0.64726,51.016791],[0.645759,51.016199],[0.645692,51.015188],[0.643835,51.014546],[0.639286,51.012021],[0.637163,51.011877],[0.636052,51.012216],[0.633636,51.014015],[0.630382,51.017366],[0.627662,51.017852],[0.625998,51.017335],[0.624607,51.016122],[0.622447,51.015704],[0.620746,51.016052],[0.618295,51.015209],[0.616046,51.014984],[0.615146,51.013614],[0.611667,51.012021],[0.609382,51.012364],[0.605391,51.01207]]]},"properties":{"LAD22CD":"E07000064","LAD22NM":"Rother","BNG_E":578721,"BNG_N":119666,"LONG":0.542937,"LAT":50.94871,"GlobalID":"ec08b247-f1e6-41b1-a08e-25dbba79cc6f"},"id":90}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.160748,51.137319],[0.160872,51.137984],[0.159747,51.138902],[0.16231,51.139678],[0.159892,51.141038],[0.155778,51.141301],[0.155451,51.141972],[0.152996,51.142159],[0.151894,51.142874],[0.14457,51.143251],[0.144537,51.144024],[0.143174,51.144314],[0.141377,51.14583],[0.136016,51.147014],[0.132793,51.14685],[0.128571,51.147454],[0.125932,51.146946],[0.125156,51.147193],[0.122159,51.146954],[0.120059,51.146422],[0.118705,51.146672],[0.117811,51.146185],[0.115347,51.145894],[0.114614,51.145186],[0.109669,51.144312],[0.108631,51.14467],[0.107494,51.144196],[0.10548,51.144076],[0.105258,51.14356],[0.103284,51.142559],[0.100278,51.142629],[0.099507,51.142121],[0.096006,51.142323],[0.093846,51.141523],[0.090236,51.141467],[0.08787,51.140935],[0.087079,51.14149],[0.084048,51.141896],[0.078188,51.139946],[0.070555,51.139685],[0.068145,51.140673],[0.0667,51.140532],[0.063284,51.141119],[0.062476,51.14176],[0.058763,51.14083],[0.0584,51.14136],[0.055847,51.142469],[0.052697,51.14216],[0.050016,51.14265],[0.042939,51.141634],[0.038368,51.140285],[0.035236,51.140384],[0.031596,51.139794],[0.029328,51.140011],[0.027361,51.13985],[0.026089,51.137021],[0.027227,51.135555],[0.027812,51.133179],[0.026046,51.131914],[0.025289,51.128208],[0.026455,51.126693],[0.026362,51.125433],[0.025205,51.12344],[0.026889,51.121799],[0.028152,51.11772],[0.032759,51.116579],[0.034178,51.115936],[0.034589,51.114971],[0.036521,51.115092],[0.037453,51.113194],[0.036801,51.112248],[0.040028,51.111778],[0.041515,51.112213],[0.041316,51.110843],[0.04422,51.111124],[0.044565,51.110649],[0.041309,51.110251],[0.039288,51.109426],[0.037533,51.11042],[0.035419,51.109839],[0.034216,51.108622],[0.032336,51.108099],[0.031892,51.108644],[0.027043,51.108574],[0.02545,51.10902],[0.023916,51.107892],[0.021526,51.106965],[0.018618,51.103575],[0.015701,51.104559],[0.013175,51.106077],[0.009505,51.110392],[0.008583,51.108829],[0.006729,51.10772],[0.006918,51.106747],[0.00575,51.106246],[0.00503,51.105258],[0.006463,51.104656],[0.008754,51.104414],[0.011365,51.102605],[0.010473,51.102182],[0.007811,51.102556],[0.00294,51.102292],[0.001374,51.101445],[-0.000663,51.100982],[-0.004242,51.099177],[-0.007065,51.099146],[-0.008056,51.097762],[-0.010866,51.096499],[-0.012002,51.096342],[-0.013844,51.097548],[-0.014211,51.096811],[-0.01582,51.09656],[-0.017668,51.097],[-0.019563,51.09599],[-0.021333,51.096755],[-0.022349,51.095375],[-0.025375,51.094208],[-0.02617,51.09175],[-0.026991,51.091743],[-0.028046,51.093129],[-0.030835,51.094213],[-0.035485,51.093833],[-0.036193,51.092997],[-0.035127,51.092445],[-0.031052,51.092569],[-0.031784,51.091337],[-0.031535,51.087838],[-0.028044,51.081868],[-0.026852,51.075113],[-0.024011,51.075818],[-0.021842,51.075947],[-0.019582,51.075669],[-0.016849,51.074226],[-0.013257,51.073967],[-0.013992,51.070435],[-0.01497,51.069352],[-0.013144,51.06651],[-0.011108,51.065852],[-0.010214,51.065],[-0.009764,51.063537],[-0.011421,51.06268],[-0.01114,51.060956],[-0.010403,51.059253],[-0.008475,51.057637],[-0.008548,51.056458],[-0.005924,51.056818],[-0.003777,51.056308],[-0.002552,51.055505],[0.002024,51.055655],[0.001662,51.057516],[0.004186,51.057748],[0.006116,51.057521],[0.007844,51.057978],[0.008732,51.05692],[0.010491,51.057304],[0.013725,51.057013],[0.011255,51.052993],[0.00772,51.050907],[0.004039,51.04988],[0.002022,51.048933],[-0.00181,51.048436],[-0.003509,51.04682],[-0.002094,51.044589],[-0.002017,51.043068],[-0.00271,51.042316],[-0.007638,51.040958],[-0.006619,51.040072],[-0.007904,51.038988],[-0.007517,51.038046],[-0.00423,51.038289],[-0.001889,51.037714],[-0.00064,51.036959],[-0.002566,51.035212],[-0.005399,51.034882],[-0.008044,51.034186],[-0.008215,51.032473],[-0.010118,51.031294],[-0.011212,51.029431],[-0.012074,51.028788],[-0.013501,51.029119],[-0.014968,51.028835],[-0.017093,51.027774],[-0.020752,51.027475],[-0.02001,51.024644],[-0.020461,51.022583],[-0.019636,51.021582],[-0.021578,51.020738],[-0.019722,51.019513],[-0.020044,51.018614],[-0.021514,51.017115],[-0.019479,51.016629],[-0.019415,51.015719],[-0.016008,51.014803],[-0.016651,51.01381],[-0.018329,51.012521],[-0.018429,51.010729],[-0.019888,51.009441],[-0.019944,51.007994],[-0.018578,51.006697],[-0.019152,51.004418],[-0.020097,51.003468],[-0.017373,51.003197],[-0.01641,51.002514],[-0.015107,51.001226],[-0.011693,51.000363],[-0.011472,51.001361],[-0.009312,51.001915],[-0.007727,50.998327],[-0.005768,50.9984],[-0.005856,50.997487],[-0.002656,50.997054],[-0.000569,50.995679],[0.00169,50.995003],[0.001946,50.994349],[0.003891,50.993508],[0.003069,50.99028],[0.004636,50.989412],[0.006682,50.986687],[0.008722,50.987127],[0.008787,50.983907],[0.009517,50.98299],[0.007726,50.98242],[0.008057,50.981477],[0.011165,50.977618],[0.014412,50.978406],[0.017253,50.980213],[0.020375,50.980359],[0.022823,50.981166],[0.025559,50.980497],[0.029019,50.980385],[0.029948,50.978755],[0.031397,50.97771],[0.032598,50.976251],[0.03174,50.975316],[0.034562,50.974038],[0.036115,50.974285],[0.037309,50.973715],[0.038706,50.972044],[0.03813,50.970075],[0.038545,50.969078],[0.037419,50.968107],[0.039013,50.96662],[0.040382,50.966757],[0.041945,50.966223],[0.044246,50.966339],[0.046843,50.967482],[0.049876,50.968147],[0.050233,50.968908],[0.051859,50.969279],[0.053568,50.966929],[0.054448,50.965303],[0.053038,50.962343],[0.050871,50.961404],[0.048903,50.96111],[0.048632,50.958709],[0.050526,50.958963],[0.050944,50.958418],[0.049983,50.955627],[0.050879,50.953653],[0.04978,50.952312],[0.050621,50.951493],[0.050614,50.950547],[0.049563,50.950088],[0.049453,50.947968],[0.04823,50.946512],[0.049958,50.944086],[0.05387,50.940473],[0.053505,50.939585],[0.055212,50.938814],[0.055456,50.937753],[0.054381,50.935849],[0.054651,50.934875],[0.055785,50.93453],[0.055443,50.933563],[0.056673,50.930925],[0.056103,50.929633],[0.056741,50.92706],[0.057304,50.926091],[0.060647,50.925269],[0.063491,50.925664],[0.068031,50.924701],[0.068455,50.924907],[0.072183,50.922758],[0.078308,50.921651],[0.082697,50.919736],[0.086639,50.919286],[0.088523,50.918794],[0.090002,50.920652],[0.095568,50.923106],[0.101065,50.920889],[0.105622,50.919561],[0.110953,50.915647],[0.112581,50.915248],[0.121913,50.915281],[0.119867,50.912758],[0.112857,50.908761],[0.111391,50.907385],[0.110098,50.904618],[0.104953,50.900699],[0.103247,50.896612],[0.101109,50.894911],[0.101029,50.893839],[0.098755,50.892309],[0.095156,50.888851],[0.091878,50.884909],[0.096809,50.882985],[0.098048,50.881513],[0.096583,50.872337],[0.09669,50.871774],[0.098497,50.869993],[0.101213,50.87042],[0.102945,50.871396],[0.105292,50.872001],[0.105974,50.871322],[0.114639,50.87068],[0.116791,50.866423],[0.11678,50.865675],[0.120807,50.863301],[0.123835,50.862304],[0.122153,50.859207],[0.122509,50.85879],[0.127327,50.856761],[0.124835,50.854756],[0.121814,50.854441],[0.120444,50.853805],[0.119208,50.854161],[0.117615,50.851928],[0.115042,50.849639],[0.124525,50.846301],[0.12102,50.84128],[0.118873,50.84177],[0.118619,50.840934],[0.11616,50.839019],[0.119522,50.837942],[0.117446,50.835918],[0.114817,50.834943],[0.112236,50.832358],[0.111288,50.830817],[0.107596,50.831435],[0.105798,50.829163],[0.101083,50.825478],[0.099932,50.822958],[0.097934,50.82032],[0.100904,50.819621],[0.103248,50.81852],[0.104855,50.816059],[0.108909,50.812923],[0.109424,50.809503],[0.111368,50.80489],[0.111592,50.801978],[0.114492,50.797391],[0.11923,50.794234],[0.12185,50.793088],[0.13055,50.791701],[0.135627,50.791718],[0.138517,50.791119],[0.140496,50.79127],[0.143729,50.792681],[0.14493,50.790738],[0.144486,50.78964],[0.147438,50.787848],[0.146969,50.786534],[0.147956,50.78553],[0.145537,50.783035],[0.144921,50.78217],[0.143738,50.780795],[0.143184,50.780034],[0.14191,50.778715],[0.143138,50.778029],[0.142125,50.776909],[0.144036,50.775242],[0.146081,50.774168],[0.146537,50.773349],[0.150806,50.77433],[0.15089,50.77274],[0.151555,50.772265],[0.153632,50.772225],[0.154456,50.771618],[0.153979,50.770874],[0.151524,50.771337],[0.14968,50.771054],[0.149049,50.770138],[0.151566,50.769104],[0.151305,50.767471],[0.15025,50.766426],[0.150309,50.765499],[0.148506,50.763204],[0.147976,50.760356],[0.148939,50.759056],[0.154137,50.757627],[0.157829,50.756033],[0.163413,50.754834],[0.165118,50.754081],[0.170533,50.752718],[0.172882,50.751403],[0.173462,50.751581],[0.176293,50.75108],[0.179341,50.749723],[0.182078,50.74958],[0.187135,50.748444],[0.191384,50.747104],[0.199773,50.743339],[0.204608,50.740028],[0.207162,50.739051],[0.20995,50.738489],[0.2112,50.742978],[0.21247,50.742286],[0.213614,50.740623],[0.215489,50.739721],[0.214674,50.744539],[0.21356,50.745614],[0.211471,50.749326],[0.209381,50.751334],[0.212106,50.752783],[0.212908,50.753875],[0.217484,50.757136],[0.213614,50.760121],[0.217206,50.762058],[0.214998,50.763527],[0.217048,50.774495],[0.222804,50.779747],[0.227628,50.783289],[0.230765,50.788644],[0.232416,50.793449],[0.233898,50.795758],[0.233091,50.796811],[0.229891,50.797706],[0.226922,50.799437],[0.228302,50.800076],[0.227723,50.800872],[0.234258,50.801664],[0.236245,50.801495],[0.237668,50.802523],[0.239452,50.802154],[0.240498,50.802846],[0.242191,50.803126],[0.244107,50.805378],[0.247153,50.804027],[0.246166,50.803099],[0.248512,50.802176],[0.249447,50.801397],[0.250483,50.798838],[0.254218,50.799033],[0.256434,50.800072],[0.257617,50.799259],[0.260003,50.799987],[0.258913,50.800858],[0.261569,50.802024],[0.260823,50.803119],[0.260939,50.804043],[0.262332,50.804861],[0.260878,50.806084],[0.26735,50.810562],[0.26918,50.809673],[0.271481,50.810057],[0.274042,50.807636],[0.275859,50.804864],[0.2769,50.804766],[0.277827,50.807339],[0.279855,50.809309],[0.282745,50.811408],[0.285201,50.812494],[0.28751,50.812987],[0.290447,50.813033],[0.295448,50.812685],[0.300074,50.812833],[0.301253,50.811546],[0.300166,50.809865],[0.302121,50.808292],[0.304118,50.809185],[0.310401,50.807804],[0.31387,50.808741],[0.315658,50.808168],[0.317882,50.806727],[0.320198,50.806966],[0.320692,50.806595],[0.324069,50.807861],[0.323834,50.806805],[0.325354,50.806367],[0.326958,50.805401],[0.328689,50.804825],[0.330318,50.805465],[0.331511,50.804317],[0.333001,50.804121],[0.332487,50.802284],[0.333995,50.802162],[0.339307,50.799137],[0.343731,50.804502],[0.348583,50.808853],[0.351322,50.810598],[0.363594,50.816125],[0.377603,50.820387],[0.377886,50.821681],[0.377618,50.823689],[0.376091,50.826086],[0.37534,50.828586],[0.372534,50.831641],[0.373744,50.83225],[0.375147,50.831779],[0.376582,50.833113],[0.377025,50.836431],[0.374654,50.83713],[0.373857,50.838094],[0.374738,50.839872],[0.375771,50.840901],[0.377056,50.841399],[0.378038,50.842379],[0.380968,50.842676],[0.381931,50.843321],[0.384102,50.842946],[0.386263,50.843923],[0.390015,50.844397],[0.393967,50.846013],[0.39453,50.846654],[0.398861,50.848298],[0.398569,50.848814],[0.401706,50.849747],[0.401703,50.850367],[0.405833,50.850469],[0.408088,50.850908],[0.407981,50.852315],[0.412015,50.855758],[0.413978,50.856178],[0.415466,50.856069],[0.417439,50.856588],[0.42073,50.85848],[0.421686,50.859606],[0.421146,50.860094],[0.424181,50.862875],[0.425893,50.863119],[0.426758,50.864095],[0.429774,50.864996],[0.431535,50.866144],[0.435142,50.866558],[0.44063,50.867968],[0.443716,50.87008],[0.444675,50.869661],[0.447598,50.872518],[0.450159,50.873763],[0.446707,50.873456],[0.445276,50.874542],[0.445339,50.876063],[0.446497,50.877749],[0.449085,50.878951],[0.444566,50.881697],[0.44421,50.882397],[0.441169,50.88447],[0.441168,50.885212],[0.439773,50.887239],[0.439553,50.889288],[0.437763,50.889877],[0.434417,50.889806],[0.43298,50.891086],[0.430948,50.891292],[0.429616,50.891825],[0.431178,50.89301],[0.435075,50.892862],[0.435845,50.893583],[0.433907,50.894243],[0.430361,50.894342],[0.428641,50.895055],[0.427273,50.894683],[0.423019,50.89494],[0.422655,50.893232],[0.419941,50.893025],[0.420087,50.894746],[0.417104,50.896038],[0.416357,50.896851],[0.414141,50.896802],[0.41227,50.896419],[0.409702,50.895111],[0.408489,50.895027],[0.405511,50.893868],[0.402584,50.893709],[0.398703,50.892041],[0.395885,50.89143],[0.394653,50.890878],[0.392423,50.889041],[0.389823,50.887793],[0.38869,50.887768],[0.385483,50.886899],[0.384753,50.887122],[0.380671,50.885327],[0.379236,50.883604],[0.377524,50.88357],[0.374419,50.883047],[0.372654,50.884232],[0.369779,50.887678],[0.368286,50.887637],[0.366713,50.889103],[0.367193,50.889991],[0.368652,50.891054],[0.369566,50.89258],[0.371118,50.893575],[0.372151,50.896185],[0.374303,50.898393],[0.372535,50.899798],[0.370117,50.900431],[0.370455,50.901122],[0.3673,50.901997],[0.362971,50.903438],[0.362487,50.904359],[0.361043,50.90519],[0.360672,50.906049],[0.361047,50.908414],[0.359105,50.911254],[0.358229,50.913483],[0.360326,50.913739],[0.361557,50.913468],[0.36378,50.91393],[0.364151,50.914929],[0.363637,50.917055],[0.361805,50.917344],[0.359955,50.917118],[0.357762,50.917303],[0.35859,50.921942],[0.358994,50.92233],[0.363058,50.923183],[0.362511,50.924098],[0.362495,50.925821],[0.366598,50.930607],[0.366846,50.932862],[0.364773,50.934151],[0.36226,50.934803],[0.360881,50.935997],[0.356634,50.935266],[0.354663,50.935959],[0.353502,50.93765],[0.35145,50.938676],[0.34765,50.93827],[0.34269,50.939441],[0.341321,50.941432],[0.343212,50.942354],[0.343516,50.94433],[0.341004,50.946603],[0.337635,50.947845],[0.338173,50.950356],[0.338814,50.950715],[0.335933,50.953044],[0.337768,50.953783],[0.341543,50.957075],[0.34401,50.957346],[0.343584,50.959147],[0.341611,50.960606],[0.338513,50.960642],[0.334998,50.961188],[0.327267,50.960918],[0.325647,50.961531],[0.324025,50.962921],[0.323546,50.96388],[0.324988,50.964419],[0.326483,50.966544],[0.327663,50.970488],[0.330152,50.97305],[0.330271,50.974874],[0.328903,50.978157],[0.329033,50.97987],[0.328204,50.981193],[0.327024,50.984911],[0.324298,50.986143],[0.323012,50.987088],[0.323612,50.988632],[0.323598,50.990416],[0.322358,50.992802],[0.323341,50.994563],[0.324735,50.995731],[0.321586,50.996684],[0.32465,50.998097],[0.322605,51.000097],[0.325932,51.00141],[0.327859,51.003089],[0.330085,51.004026],[0.330414,51.006762],[0.329983,51.010457],[0.328262,51.012101],[0.328659,51.012882],[0.331161,51.013883],[0.333397,51.013718],[0.333997,51.014087],[0.336236,51.013982],[0.341743,51.015591],[0.344671,51.015469],[0.346084,51.016338],[0.347248,51.016346],[0.349484,51.017517],[0.351608,51.017584],[0.352913,51.0172],[0.353924,51.017896],[0.35191,51.018318],[0.351714,51.020106],[0.350266,51.020401],[0.349728,51.021657],[0.3469,51.022536],[0.3466,51.0241],[0.34755,51.026557],[0.350338,51.028141],[0.352688,51.030046],[0.353269,51.030068],[0.355493,51.031853],[0.355572,51.033003],[0.35496,51.033873],[0.356115,51.036431],[0.355272,51.036829],[0.354861,51.041207],[0.355689,51.042806],[0.357951,51.044622],[0.358311,51.046057],[0.356847,51.051007],[0.357012,51.05712],[0.356709,51.057867],[0.358953,51.05948],[0.361528,51.062433],[0.361353,51.065277],[0.363044,51.066978],[0.364972,51.067661],[0.367292,51.06779],[0.367634,51.06826],[0.370712,51.069787],[0.371647,51.069852],[0.374673,51.071316],[0.376106,51.072508],[0.378125,51.072796],[0.382636,51.072772],[0.388131,51.072419],[0.389795,51.073015],[0.392224,51.072904],[0.395772,51.073913],[0.392253,51.077367],[0.395182,51.080407],[0.397943,51.082509],[0.396474,51.083096],[0.393342,51.083073],[0.390829,51.081331],[0.390099,51.081813],[0.390493,51.083661],[0.38925,51.084397],[0.391642,51.085784],[0.39008,51.086182],[0.387354,51.085457],[0.3866,51.086159],[0.384128,51.086045],[0.382746,51.086887],[0.383269,51.087563],[0.38169,51.088034],[0.375293,51.087718],[0.373058,51.088319],[0.372011,51.086848],[0.37037,51.087788],[0.366622,51.088414],[0.364688,51.088159],[0.362273,51.086296],[0.36168,51.085433],[0.357868,51.084032],[0.35677,51.083061],[0.35082,51.084068],[0.352341,51.086585],[0.352429,51.089325],[0.353702,51.091608],[0.353978,51.093619],[0.353289,51.095795],[0.352335,51.096203],[0.351697,51.097434],[0.350645,51.097664],[0.351054,51.099299],[0.353845,51.099626],[0.354668,51.100599],[0.356119,51.101037],[0.358384,51.103951],[0.358451,51.104774],[0.35397,51.104869],[0.352292,51.104417],[0.350168,51.105004],[0.346617,51.105155],[0.344266,51.104746],[0.342033,51.105311],[0.336411,51.105121],[0.334703,51.105565],[0.33421,51.106498],[0.332008,51.107986],[0.330466,51.110046],[0.329371,51.109864],[0.328304,51.11092],[0.325789,51.110775],[0.324571,51.112131],[0.325458,51.113405],[0.325069,51.114879],[0.326561,51.114704],[0.328365,51.115581],[0.327995,51.116454],[0.330079,51.117803],[0.329879,51.118963],[0.328887,51.119369],[0.326227,51.122438],[0.324461,51.122716],[0.320306,51.122284],[0.318276,51.121377],[0.315905,51.121204],[0.315123,51.120363],[0.311821,51.119402],[0.307625,51.119958],[0.303902,51.119472],[0.301349,51.118591],[0.298718,51.118159],[0.297478,51.118564],[0.295434,51.11861],[0.292903,51.11914],[0.291644,51.118763],[0.289552,51.118857],[0.287069,51.117998],[0.284684,51.1176],[0.28183,51.118019],[0.279667,51.117845],[0.279007,51.119044],[0.27594,51.120407],[0.273935,51.120079],[0.272174,51.118846],[0.275136,51.11733],[0.278942,51.114677],[0.27567,51.112355],[0.266265,51.115099],[0.265044,51.113655],[0.262643,51.114311],[0.259312,51.114095],[0.259418,51.113697],[0.255664,51.113903],[0.251755,51.114722],[0.251178,51.114237],[0.248925,51.114941],[0.244543,51.114879],[0.243337,51.115277],[0.243036,51.117045],[0.227698,51.123789],[0.22546,51.124355],[0.22435,51.122679],[0.220831,51.121519],[0.219545,51.12058],[0.217703,51.120397],[0.216404,51.121405],[0.215263,51.121485],[0.212492,51.120614],[0.210046,51.120991],[0.206692,51.118696],[0.20594,51.119289],[0.204313,51.119106],[0.20321,51.118104],[0.199561,51.116914],[0.198275,51.116918],[0.196292,51.117943],[0.194309,51.116894],[0.193246,51.117181],[0.188023,51.116655],[0.185542,51.116824],[0.185067,51.116243],[0.182841,51.116213],[0.180159,51.115579],[0.178113,51.116191],[0.174884,51.115452],[0.174189,51.115752],[0.171628,51.11541],[0.167086,51.116574],[0.162598,51.116398],[0.160483,51.116848],[0.159863,51.117616],[0.158429,51.117698],[0.158305,51.119078],[0.156005,51.119954],[0.156087,51.120488],[0.152078,51.122543],[0.15161,51.124203],[0.151064,51.127698],[0.152169,51.12812],[0.151204,51.129597],[0.150947,51.131209],[0.151879,51.132933],[0.151187,51.134356],[0.152887,51.135362],[0.154608,51.137536],[0.158337,51.137313],[0.15935,51.138118],[0.160748,51.137319]]]},"properties":{"LAD22CD":"E07000065","LAD22NM":"Wealden","BNG_E":555048,"BNG_N":117180,"LONG":0.205156,"LAT":50.93322,"GlobalID":"d862047e-1dc4-4058-9a24-bc0e003ac331"},"id":91}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.554066,51.617106],[0.552204,51.617817],[0.549569,51.617987],[0.546813,51.617644],[0.543608,51.618299],[0.544729,51.619676],[0.543549,51.619726],[0.542476,51.620797],[0.540988,51.620877],[0.538573,51.620449],[0.537579,51.619616],[0.5362,51.620326],[0.531877,51.61945],[0.529067,51.620248],[0.520822,51.618791],[0.521083,51.6211],[0.520425,51.623124],[0.520805,51.624477],[0.52026,51.62541],[0.515554,51.624424],[0.514681,51.626967],[0.5129,51.626614],[0.511449,51.625912],[0.508602,51.625719],[0.504821,51.624372],[0.505449,51.621929],[0.504829,51.621716],[0.487964,51.624774],[0.481358,51.625561],[0.478032,51.625177],[0.465827,51.623467],[0.458962,51.623828],[0.457965,51.624292],[0.455173,51.624639],[0.446828,51.626669],[0.446192,51.628488],[0.44622,51.630629],[0.444163,51.633164],[0.442893,51.636998],[0.443386,51.638862],[0.445927,51.641203],[0.446933,51.641517],[0.445852,51.643484],[0.441953,51.644191],[0.442935,51.646655],[0.439973,51.64706],[0.433809,51.64951],[0.428925,51.649763],[0.423375,51.649462],[0.415788,51.649763],[0.412729,51.650122],[0.412226,51.649854],[0.410224,51.651205],[0.402328,51.650995],[0.402843,51.649848],[0.402401,51.647571],[0.403046,51.645845],[0.401465,51.645991],[0.398873,51.644781],[0.396284,51.644855],[0.394543,51.643982],[0.394926,51.643175],[0.39418,51.641223],[0.392655,51.639584],[0.389813,51.639105],[0.387475,51.637685],[0.387078,51.635998],[0.385213,51.632802],[0.386242,51.631466],[0.385856,51.631031],[0.387207,51.629755],[0.387625,51.628343],[0.386819,51.626937],[0.386967,51.626089],[0.385021,51.623232],[0.384226,51.619565],[0.378699,51.616602],[0.375127,51.615173],[0.375772,51.614889],[0.377698,51.612107],[0.379357,51.60358],[0.382534,51.599546],[0.383609,51.598724],[0.382797,51.598087],[0.38189,51.595536],[0.383425,51.593461],[0.38502,51.590312],[0.38603,51.585919],[0.38129,51.585001],[0.383239,51.576756],[0.382973,51.573691],[0.383655,51.572105],[0.382718,51.571954],[0.383666,51.56977],[0.381723,51.568301],[0.382605,51.565824],[0.385891,51.565724],[0.389622,51.56646],[0.391809,51.567212],[0.392125,51.562569],[0.393532,51.557655],[0.398618,51.557787],[0.399187,51.558235],[0.402309,51.558509],[0.408519,51.557523],[0.411371,51.557299],[0.414581,51.557488],[0.417397,51.557133],[0.418679,51.556617],[0.421083,51.552966],[0.418011,51.551082],[0.418879,51.550561],[0.423839,51.551984],[0.42445,51.552812],[0.42662,51.551876],[0.424939,51.550063],[0.424826,51.54809],[0.426449,51.54844],[0.427691,51.545131],[0.4304,51.546005],[0.429935,51.548816],[0.431001,51.549723],[0.43535,51.54952],[0.43581,51.549191],[0.436556,51.546539],[0.437533,51.546159],[0.439058,51.546425],[0.439937,51.545114],[0.443801,51.546414],[0.442932,51.547374],[0.44422,51.547702],[0.44347,51.548966],[0.445827,51.549304],[0.446014,51.551176],[0.44694,51.55089],[0.450106,51.55117],[0.452354,51.551933],[0.457726,51.552774],[0.459157,51.552264],[0.461617,51.553697],[0.465256,51.549863],[0.466949,51.547354],[0.466764,51.546726],[0.469841,51.547112],[0.474336,51.546403],[0.475067,51.547093],[0.477592,51.547191],[0.48031,51.54791],[0.481668,51.548607],[0.484841,51.547876],[0.485728,51.547121],[0.485493,51.545851],[0.487942,51.545003],[0.487056,51.543223],[0.488196,51.543113],[0.490446,51.544042],[0.491588,51.54358],[0.491536,51.542636],[0.490148,51.541293],[0.49178,51.540053],[0.496607,51.538701],[0.498937,51.538476],[0.50229,51.538683],[0.504054,51.539179],[0.505966,51.538692],[0.506626,51.538053],[0.507166,51.537593],[0.506304,51.539974],[0.505688,51.540321],[0.506137,51.541749],[0.505598,51.542659],[0.502928,51.544097],[0.49764,51.544642],[0.494449,51.545722],[0.49187,51.548893],[0.492306,51.549891],[0.494193,51.552578],[0.491247,51.55411],[0.490169,51.555227],[0.491647,51.555468],[0.491599,51.554273],[0.494582,51.552906],[0.495518,51.552759],[0.494888,51.551416],[0.493202,51.550082],[0.493003,51.548632],[0.49389,51.547187],[0.495314,51.546155],[0.497609,51.545275],[0.499923,51.545293],[0.496714,51.547417],[0.496089,51.549073],[0.498079,51.550555],[0.498749,51.550291],[0.496538,51.54863],[0.497226,51.547542],[0.50069,51.54549],[0.505359,51.543964],[0.507219,51.541918],[0.507744,51.538993],[0.509426,51.536635],[0.509275,51.535522],[0.511561,51.534016],[0.51308,51.531983],[0.51375,51.531087],[0.515508,51.530362],[0.516779,51.529995],[0.519565,51.531335],[0.520024,51.531935],[0.522515,51.532834],[0.526584,51.532607],[0.527932,51.532997],[0.52882,51.53178],[0.530803,51.531823],[0.533328,51.530948],[0.535392,51.531205],[0.538568,51.533947],[0.541031,51.534405],[0.542392,51.535087],[0.542741,51.537246],[0.543908,51.541448],[0.543168,51.544003],[0.544327,51.546272],[0.542252,51.548472],[0.541721,51.548491],[0.539107,51.551732],[0.537992,51.554659],[0.538265,51.556039],[0.53974,51.558883],[0.539692,51.56008],[0.541571,51.564344],[0.541448,51.565937],[0.543058,51.566165],[0.54395,51.567286],[0.542201,51.567873],[0.542232,51.569446],[0.54299,51.57192],[0.545144,51.57476],[0.54943,51.577427],[0.557613,51.580618],[0.564659,51.583873],[0.56704,51.585512],[0.567866,51.587226],[0.565918,51.588245],[0.565447,51.588649],[0.562298,51.589356],[0.562744,51.590886],[0.563742,51.591586],[0.565566,51.593858],[0.549035,51.596578],[0.549784,51.598181],[0.549349,51.602337],[0.550502,51.603308],[0.551545,51.608848],[0.553641,51.609023],[0.556646,51.608395],[0.558249,51.610645],[0.561622,51.612476],[0.561828,51.614415],[0.563727,51.614513],[0.563913,51.616395],[0.563822,51.616874],[0.563478,51.617612],[0.562562,51.617832],[0.560569,51.617015],[0.555834,51.616735],[0.554044,51.617044],[0.554066,51.617106]]]},"properties":{"LAD22CD":"E07000066","LAD22NM":"Basildon","BNG_E":571548,"BNG_N":190848,"LONG":0.475055,"LAT":51.59036,"GlobalID":"a55b953a-e94e-4546-b40d-4a4f7b025d44"},"id":92}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.78147,51.966513],[0.77608,51.96752],[0.774313,51.96968],[0.772853,51.969798],[0.772487,51.9709],[0.773948,51.972141],[0.773049,51.974046],[0.772572,51.978104],[0.772702,51.979027],[0.774034,51.980136],[0.773874,51.98084],[0.774633,51.982592],[0.772696,51.982568],[0.771061,51.982081],[0.767099,51.983793],[0.762261,51.983932],[0.760469,51.984532],[0.759668,51.985429],[0.75965,51.987018],[0.761689,51.988263],[0.762912,51.990866],[0.76154,51.993592],[0.759584,51.993763],[0.76034,51.994737],[0.760213,51.996594],[0.761047,51.997547],[0.757432,51.99875],[0.752456,51.998583],[0.749863,51.999858],[0.749635,52.002169],[0.750479,52.003121],[0.749307,52.004397],[0.749159,52.00555],[0.746411,52.006701],[0.745224,52.007778],[0.742571,52.007745],[0.74115,52.009333],[0.738655,52.01056],[0.737816,52.01228],[0.739632,52.014315],[0.741168,52.01497],[0.74241,52.016357],[0.741493,52.020265],[0.742328,52.020664],[0.74264,52.022714],[0.74128,52.023214],[0.740782,52.025111],[0.741786,52.02729],[0.741727,52.029444],[0.740818,52.031034],[0.739176,52.032278],[0.736752,52.032286],[0.71969,52.027903],[0.714396,52.027319],[0.712586,52.028318],[0.710595,52.028245],[0.706529,52.029525],[0.707426,52.030555],[0.708158,52.032435],[0.710653,52.033008],[0.712508,52.034869],[0.703781,52.036188],[0.702444,52.037718],[0.698822,52.036711],[0.696441,52.039484],[0.696975,52.042972],[0.698682,52.04452],[0.698392,52.046859],[0.699669,52.048298],[0.70266,52.047889],[0.703984,52.047325],[0.707029,52.048165],[0.70986,52.048635],[0.71196,52.048441],[0.712709,52.049025],[0.716263,52.048687],[0.716065,52.051167],[0.713046,52.053212],[0.710907,52.05371],[0.710841,52.055547],[0.709012,52.056055],[0.708865,52.056982],[0.707757,52.057708],[0.706975,52.059989],[0.705952,52.060887],[0.704973,52.062674],[0.703568,52.063423],[0.703811,52.064797],[0.703177,52.065273],[0.705158,52.066898],[0.707171,52.066796],[0.707652,52.066295],[0.709879,52.066987],[0.711338,52.068716],[0.710945,52.06998],[0.712757,52.070994],[0.712118,52.072242],[0.709478,52.073275],[0.706591,52.073855],[0.706295,52.075083],[0.706883,52.076745],[0.704806,52.078163],[0.703074,52.078495],[0.702081,52.079495],[0.697675,52.079602],[0.694714,52.078711],[0.692969,52.078501],[0.691753,52.07942],[0.689969,52.080093],[0.688142,52.083402],[0.688253,52.084776],[0.687693,52.085576],[0.684287,52.086947],[0.683116,52.08704],[0.68109,52.086454],[0.680866,52.085048],[0.678945,52.083886],[0.675972,52.084508],[0.673795,52.084716],[0.672443,52.08617],[0.671684,52.085838],[0.668934,52.085818],[0.668467,52.086226],[0.665773,52.086024],[0.663253,52.084107],[0.660861,52.083699],[0.658611,52.085427],[0.656901,52.085442],[0.654719,52.085057],[0.652902,52.083419],[0.651878,52.08315],[0.647788,52.084146],[0.646623,52.085109],[0.645402,52.084873],[0.642342,52.085563],[0.641783,52.086249],[0.637885,52.086169],[0.637266,52.086643],[0.634573,52.086283],[0.632577,52.084526],[0.632952,52.082813],[0.631776,52.081864],[0.628112,52.081667],[0.626794,52.081042],[0.62678,52.079861],[0.625721,52.079273],[0.622683,52.079282],[0.620256,52.07879],[0.620426,52.076978],[0.619461,52.076582],[0.618203,52.077551],[0.612201,52.078828],[0.609183,52.079952],[0.608878,52.080627],[0.607445,52.080919],[0.605489,52.080228],[0.604396,52.079459],[0.603453,52.077042],[0.602704,52.077038],[0.600101,52.075655],[0.5985,52.075329],[0.596368,52.076312],[0.594802,52.074177],[0.593252,52.075042],[0.591306,52.074665],[0.585928,52.074459],[0.58496,52.074139],[0.584321,52.075544],[0.582133,52.075852],[0.582578,52.074488],[0.578976,52.073527],[0.577838,52.073905],[0.5763,52.072872],[0.576261,52.071166],[0.571777,52.069086],[0.568397,52.069693],[0.564934,52.071002],[0.562407,52.070756],[0.5615,52.071122],[0.558442,52.070047],[0.555143,52.069151],[0.551487,52.06881],[0.55008,52.067163],[0.550329,52.066282],[0.549463,52.065125],[0.549671,52.064056],[0.551744,52.062821],[0.550306,52.062225],[0.547604,52.061997],[0.546667,52.061297],[0.546213,52.059697],[0.543108,52.058509],[0.542263,52.057759],[0.538524,52.057916],[0.5371,52.059108],[0.53439,52.059733],[0.530045,52.059438],[0.524853,52.057082],[0.523152,52.056773],[0.519294,52.05733],[0.517268,52.05886],[0.515803,52.058649],[0.514844,52.059298],[0.511054,52.059831],[0.509051,52.058148],[0.509208,52.057569],[0.506557,52.056334],[0.506114,52.055406],[0.504588,52.054475],[0.500488,52.053846],[0.500501,52.056201],[0.498402,52.057143],[0.495001,52.057461],[0.494689,52.058103],[0.492399,52.058729],[0.490103,52.059956],[0.487727,52.062467],[0.487287,52.063977],[0.489288,52.065586],[0.490246,52.06708],[0.487146,52.069627],[0.484139,52.070324],[0.482985,52.072479],[0.481028,52.072263],[0.475467,52.073522],[0.475836,52.074454],[0.474721,52.075193],[0.470794,52.073463],[0.469871,52.074347],[0.470268,52.075933],[0.466604,52.078387],[0.465271,52.076561],[0.462586,52.076203],[0.458159,52.076123],[0.458116,52.074876],[0.459066,52.074686],[0.460243,52.072949],[0.461823,52.072335],[0.456027,52.070932],[0.453829,52.071141],[0.452715,52.069381],[0.451874,52.069401],[0.451803,52.067912],[0.449543,52.067573],[0.447018,52.067818],[0.446744,52.068841],[0.443951,52.068518],[0.44426,52.070195],[0.446099,52.072117],[0.442306,52.071719],[0.441231,52.072253],[0.438125,52.072312],[0.437058,52.070297],[0.43538,52.069083],[0.43107,52.068392],[0.428989,52.068366],[0.428794,52.067678],[0.426138,52.067693],[0.424565,52.067014],[0.42297,52.066889],[0.420657,52.066075],[0.418785,52.064905],[0.414582,52.065078],[0.409698,52.064278],[0.406267,52.065347],[0.404638,52.065502],[0.403569,52.0638],[0.400721,52.063289],[0.399015,52.063513],[0.396016,52.060719],[0.392471,52.061144],[0.39042,52.060288],[0.382297,52.051003],[0.379613,52.049563],[0.383094,52.045995],[0.386246,52.044235],[0.388189,52.043717],[0.387737,52.040795],[0.389695,52.036467],[0.390781,52.035688],[0.394032,52.031841],[0.41284,52.038074],[0.423301,52.038995],[0.428249,52.039149],[0.43139,52.038933],[0.430083,52.033961],[0.432589,52.034044],[0.432697,52.032432],[0.430911,52.027771],[0.431103,52.025507],[0.43009,52.024731],[0.430442,52.020527],[0.431348,52.019145],[0.433222,52.018553],[0.435721,52.01668],[0.437755,52.014047],[0.43282,52.013274],[0.428019,52.01461],[0.420966,52.014835],[0.420073,52.014167],[0.413839,52.011682],[0.415211,52.010696],[0.415403,52.008827],[0.417081,52.007497],[0.417734,52.005596],[0.418858,52.004659],[0.418682,52.003757],[0.420257,52.001618],[0.420153,52.000818],[0.422588,51.998165],[0.421976,51.99716],[0.420892,51.996722],[0.421444,51.995912],[0.420195,51.994804],[0.421373,51.99281],[0.423444,51.991915],[0.425668,51.989806],[0.426943,51.986759],[0.424144,51.984167],[0.423522,51.978594],[0.4236,51.977069],[0.425124,51.975898],[0.424657,51.974551],[0.423622,51.973217],[0.421822,51.974636],[0.419637,51.974665],[0.417871,51.974103],[0.414169,51.974046],[0.412292,51.973091],[0.413141,51.971959],[0.412476,51.971061],[0.413821,51.969108],[0.415556,51.968734],[0.41777,51.966417],[0.417273,51.964515],[0.417531,51.963763],[0.416439,51.962707],[0.417923,51.961401],[0.417884,51.960015],[0.418758,51.958574],[0.420074,51.958388],[0.422584,51.95918],[0.425623,51.958203],[0.42718,51.9545],[0.430052,51.953821],[0.427233,51.951419],[0.425214,51.952031],[0.423454,51.949057],[0.424743,51.947787],[0.420854,51.944278],[0.420568,51.943603],[0.421104,51.94169],[0.419117,51.941108],[0.421026,51.938944],[0.420435,51.938398],[0.420987,51.936162],[0.422884,51.933096],[0.423016,51.931929],[0.421516,51.931383],[0.42027,51.930334],[0.421393,51.926304],[0.423935,51.926389],[0.433016,51.924798],[0.434633,51.920822],[0.435822,51.919765],[0.437302,51.919622],[0.439459,51.913113],[0.440033,51.908278],[0.444792,51.904053],[0.448216,51.901544],[0.45051,51.898921],[0.453414,51.894169],[0.455696,51.891377],[0.462737,51.886655],[0.469434,51.880272],[0.470639,51.878181],[0.472788,51.877306],[0.473203,51.876264],[0.479894,51.87401],[0.482693,51.872692],[0.483272,51.871556],[0.48275,51.87035],[0.48337,51.869722],[0.485035,51.869322],[0.490795,51.870386],[0.491563,51.869746],[0.494726,51.869581],[0.495825,51.867375],[0.501272,51.864633],[0.503275,51.86485],[0.50585,51.865579],[0.508048,51.864507],[0.513503,51.864397],[0.513538,51.863799],[0.511766,51.860637],[0.512133,51.857273],[0.511442,51.855546],[0.512093,51.854407],[0.513804,51.853168],[0.519262,51.850449],[0.524943,51.849254],[0.520366,51.844015],[0.523239,51.841283],[0.52376,51.840089],[0.526738,51.83859],[0.529829,51.836479],[0.530155,51.832661],[0.528772,51.831085],[0.53018,51.829593],[0.529566,51.827488],[0.52991,51.826097],[0.52959,51.824194],[0.528515,51.822627],[0.525541,51.82217],[0.524466,51.823352],[0.522539,51.822168],[0.525734,51.821471],[0.523735,51.820531],[0.524062,51.819701],[0.53085,51.816436],[0.53258,51.815933],[0.532737,51.812487],[0.534174,51.810848],[0.532392,51.810276],[0.528413,51.810707],[0.527554,51.80927],[0.52476,51.809686],[0.525066,51.807301],[0.524303,51.807019],[0.524706,51.804903],[0.52379,51.803428],[0.528293,51.80027],[0.528302,51.798651],[0.529068,51.797142],[0.53121,51.795154],[0.536153,51.792189],[0.539626,51.790859],[0.541905,51.790453],[0.542546,51.788406],[0.543805,51.787561],[0.545771,51.784949],[0.548999,51.781702],[0.551033,51.780282],[0.554268,51.7791],[0.55494,51.778033],[0.557575,51.7757],[0.558398,51.775398],[0.560325,51.770875],[0.562581,51.767263],[0.565194,51.764791],[0.566266,51.764834],[0.565872,51.763207],[0.566753,51.762757],[0.565957,51.761836],[0.566514,51.758674],[0.567993,51.757924],[0.568576,51.755969],[0.569341,51.755827],[0.570941,51.754391],[0.572982,51.751771],[0.575768,51.752581],[0.578462,51.752813],[0.581126,51.752389],[0.584527,51.751151],[0.589572,51.754006],[0.590696,51.755877],[0.593365,51.755449],[0.594885,51.755004],[0.59499,51.753936],[0.598849,51.75127],[0.600463,51.753276],[0.60262,51.753714],[0.604381,51.754841],[0.605189,51.756342],[0.604272,51.757469],[0.606748,51.758943],[0.60863,51.759301],[0.611081,51.760401],[0.614381,51.760824],[0.6139,51.758751],[0.615013,51.758093],[0.618692,51.758548],[0.618125,51.760286],[0.619629,51.760842],[0.623097,51.76131],[0.624992,51.761965],[0.627958,51.761537],[0.629885,51.761989],[0.630612,51.761042],[0.633359,51.760151],[0.6338,51.761459],[0.634983,51.761434],[0.635189,51.760043],[0.635919,51.759813],[0.635337,51.75833],[0.637538,51.757648],[0.638552,51.759655],[0.639486,51.760047],[0.645663,51.760897],[0.647053,51.761793],[0.648315,51.761996],[0.647117,51.763847],[0.645195,51.764247],[0.643496,51.766872],[0.64187,51.767053],[0.640058,51.767843],[0.639214,51.76678],[0.63756,51.766802],[0.63642,51.768309],[0.638418,51.768826],[0.638301,51.770352],[0.636834,51.770342],[0.632681,51.771623],[0.632551,51.772654],[0.63368,51.777154],[0.633958,51.777613],[0.637073,51.777213],[0.640592,51.779652],[0.644654,51.7816],[0.645761,51.783097],[0.651108,51.784833],[0.653125,51.788441],[0.654991,51.789225],[0.655914,51.790895],[0.655952,51.792439],[0.655348,51.793849],[0.6535,51.795601],[0.654629,51.797115],[0.654296,51.797922],[0.656689,51.80152],[0.659833,51.803625],[0.659201,51.804827],[0.659756,51.805677],[0.661024,51.806235],[0.662443,51.806238],[0.664689,51.805323],[0.666668,51.805227],[0.668455,51.80597],[0.669112,51.808367],[0.670058,51.809452],[0.673362,51.81043],[0.676775,51.810032],[0.678158,51.810714],[0.677633,51.812367],[0.678941,51.81377],[0.680007,51.814011],[0.679855,51.81514],[0.681738,51.815717],[0.682582,51.816829],[0.681604,51.817529],[0.682546,51.81846],[0.681852,51.819096],[0.682102,51.820125],[0.684168,51.820958],[0.686814,51.8213],[0.689496,51.823027],[0.690102,51.824069],[0.689076,51.824646],[0.68923,51.825623],[0.690593,51.825655],[0.692514,51.826739],[0.693116,51.827885],[0.69695,51.828662],[0.698773,51.828418],[0.700937,51.825177],[0.704789,51.822686],[0.708909,51.818904],[0.709083,51.819871],[0.71443,51.823658],[0.716832,51.824717],[0.717789,51.825627],[0.716261,51.827568],[0.718552,51.829121],[0.721332,51.830236],[0.71813,51.833194],[0.717552,51.833005],[0.714184,51.833522],[0.711904,51.834531],[0.715775,51.837177],[0.71892,51.837666],[0.719399,51.83745],[0.722093,51.838742],[0.727829,51.839489],[0.733192,51.841978],[0.734328,51.841967],[0.73517,51.840599],[0.735064,51.837742],[0.738187,51.8378],[0.739573,51.840016],[0.741589,51.839676],[0.741456,51.84145],[0.738383,51.841765],[0.739095,51.844638],[0.736377,51.847282],[0.734578,51.847135],[0.733144,51.848462],[0.736222,51.849338],[0.737106,51.848363],[0.741153,51.849675],[0.742279,51.851144],[0.750344,51.853602],[0.747531,51.854827],[0.745234,51.856385],[0.74656,51.857286],[0.748293,51.857728],[0.747638,51.858459],[0.748754,51.859096],[0.747347,51.860094],[0.752926,51.863132],[0.751786,51.864541],[0.749441,51.866211],[0.747795,51.866589],[0.746186,51.867602],[0.747222,51.8686],[0.740561,51.870292],[0.740742,51.870621],[0.736606,51.871679],[0.734882,51.870181],[0.731877,51.868636],[0.730461,51.867553],[0.726101,51.869873],[0.723034,51.86978],[0.722207,51.869364],[0.719414,51.87061],[0.718704,51.869912],[0.716405,51.871253],[0.717085,51.87207],[0.722122,51.872984],[0.723499,51.873917],[0.722653,51.875903],[0.720007,51.875613],[0.718189,51.877942],[0.72276,51.87879],[0.72019,51.880744],[0.717714,51.882202],[0.716531,51.883651],[0.715055,51.884842],[0.711869,51.886546],[0.713201,51.886967],[0.712538,51.888949],[0.712913,51.89114],[0.712475,51.892992],[0.711569,51.893173],[0.709281,51.89522],[0.704723,51.896872],[0.702732,51.898432],[0.699959,51.899726],[0.699417,51.90174],[0.699598,51.903468],[0.704821,51.90358],[0.705461,51.904822],[0.707015,51.905229],[0.71091,51.904229],[0.711132,51.902731],[0.712805,51.902223],[0.713547,51.903556],[0.715094,51.904959],[0.716795,51.904617],[0.720587,51.904553],[0.720676,51.903638],[0.722605,51.903587],[0.723453,51.905589],[0.725318,51.905152],[0.726442,51.906009],[0.727199,51.907233],[0.729013,51.908053],[0.727256,51.909132],[0.723941,51.908413],[0.722226,51.910176],[0.723356,51.910972],[0.724183,51.912579],[0.726706,51.9129],[0.727839,51.914595],[0.730116,51.915851],[0.731469,51.918855],[0.730444,51.923311],[0.732113,51.923325],[0.734789,51.925495],[0.736787,51.928087],[0.736764,51.929384],[0.738212,51.930016],[0.740141,51.931639],[0.74045,51.932939],[0.741467,51.934147],[0.740598,51.936332],[0.740273,51.939995],[0.740899,51.94071],[0.74447,51.942686],[0.744938,51.9439],[0.74692,51.945371],[0.745759,51.945881],[0.745854,51.948585],[0.748544,51.951665],[0.747685,51.95214],[0.749708,51.954789],[0.756049,51.953185],[0.764041,51.95432],[0.766183,51.955747],[0.767704,51.957639],[0.768339,51.959264],[0.767874,51.959897],[0.768509,51.961908],[0.769859,51.961885],[0.773115,51.96072],[0.773155,51.960162],[0.777576,51.959885],[0.77779,51.960915],[0.781605,51.963474],[0.78229,51.965081],[0.78147,51.966513]]]},"properties":{"LAD22CD":"E07000067","LAD22NM":"Braintree","BNG_E":577253,"BNG_N":227335,"LONG":0.575911,"LAT":51.91634,"GlobalID":"1496e236-5399-403b-ba1d-ff0b39f32e96"},"id":93}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.402328,51.650995],[0.402428,51.652186],[0.400745,51.65266],[0.399261,51.653811],[0.397546,51.653535],[0.399265,51.656215],[0.40152,51.658179],[0.401646,51.659297],[0.402761,51.659656],[0.401659,51.660634],[0.401807,51.661631],[0.40025,51.662247],[0.402845,51.663403],[0.406005,51.666296],[0.407438,51.668427],[0.408983,51.669491],[0.411466,51.669771],[0.41256,51.670896],[0.407426,51.672808],[0.406261,51.674471],[0.404897,51.678692],[0.397826,51.67946],[0.399702,51.681329],[0.401498,51.682421],[0.39881,51.68322],[0.396704,51.684413],[0.396891,51.686531],[0.395719,51.686166],[0.394336,51.687755],[0.39283,51.687825],[0.392882,51.690555],[0.391169,51.691722],[0.389569,51.690983],[0.388127,51.6916],[0.385845,51.691992],[0.381827,51.693647],[0.380488,51.694424],[0.380759,51.696198],[0.380505,51.69738],[0.37797,51.697937],[0.376697,51.698503],[0.373104,51.695432],[0.371768,51.694927],[0.368946,51.692837],[0.362886,51.691709],[0.360551,51.690384],[0.357376,51.691424],[0.353055,51.692098],[0.346633,51.693905],[0.344969,51.695519],[0.344691,51.697093],[0.343901,51.698407],[0.340103,51.701117],[0.338886,51.701513],[0.339686,51.703963],[0.3392,51.706777],[0.336975,51.709305],[0.335976,51.712076],[0.335958,51.713631],[0.333999,51.717013],[0.330037,51.716431],[0.324587,51.714316],[0.323062,51.714168],[0.323372,51.713268],[0.322003,51.712157],[0.321704,51.711348],[0.32377,51.710334],[0.323826,51.709795],[0.321256,51.708286],[0.313531,51.702211],[0.307456,51.694291],[0.30742,51.691884],[0.306893,51.6902],[0.305717,51.689036],[0.305598,51.688049],[0.303892,51.685283],[0.305058,51.684811],[0.303426,51.682727],[0.303189,51.681788],[0.302125,51.680965],[0.29876,51.682655],[0.297226,51.684417],[0.293896,51.686432],[0.291821,51.686295],[0.292632,51.687293],[0.28867,51.690497],[0.283913,51.69272],[0.284654,51.69335],[0.283478,51.694111],[0.279671,51.693643],[0.275889,51.695445],[0.273969,51.696897],[0.272932,51.696448],[0.269908,51.696662],[0.266868,51.695819],[0.266356,51.696211],[0.265726,51.698144],[0.266282,51.698749],[0.265739,51.699707],[0.263514,51.699225],[0.257014,51.696595],[0.257778,51.695806],[0.257082,51.694032],[0.25495,51.692308],[0.255199,51.690454],[0.254312,51.689838],[0.252935,51.689903],[0.251944,51.689002],[0.248857,51.689192],[0.244398,51.68773],[0.242738,51.685499],[0.243198,51.685001],[0.240336,51.683554],[0.240226,51.682751],[0.23845,51.682868],[0.236728,51.683622],[0.235434,51.684663],[0.233495,51.684404],[0.232184,51.683358],[0.233726,51.679349],[0.235998,51.67805],[0.239067,51.676901],[0.240087,51.67566],[0.239002,51.674109],[0.236168,51.673543],[0.231684,51.673596],[0.229437,51.674699],[0.227493,51.674294],[0.226079,51.675009],[0.223633,51.675418],[0.220005,51.675387],[0.218158,51.674618],[0.216055,51.67509],[0.215026,51.674853],[0.214935,51.673635],[0.21386,51.67323],[0.213107,51.670645],[0.213523,51.668999],[0.212691,51.667912],[0.213602,51.66659],[0.213301,51.665534],[0.210593,51.664816],[0.208103,51.665235],[0.206787,51.664486],[0.206935,51.663682],[0.208448,51.662395],[0.208156,51.660971],[0.200927,51.659695],[0.19922,51.660459],[0.196116,51.660995],[0.193075,51.660972],[0.190858,51.65982],[0.190907,51.65836],[0.192446,51.657225],[0.192313,51.655657],[0.193601,51.654907],[0.19299,51.653099],[0.191225,51.6527],[0.189287,51.65312],[0.18657,51.652738],[0.184517,51.65409],[0.182239,51.653079],[0.180703,51.653728],[0.180646,51.655049],[0.179009,51.656389],[0.175702,51.655792],[0.177305,51.652126],[0.18473,51.648664],[0.188443,51.645831],[0.188959,51.644464],[0.190554,51.642796],[0.193238,51.641352],[0.194623,51.640979],[0.195921,51.638884],[0.19606,51.63665],[0.196948,51.634335],[0.199352,51.63127],[0.200311,51.624936],[0.203614,51.625173],[0.208499,51.626682],[0.212109,51.627187],[0.217547,51.629093],[0.222077,51.630126],[0.224088,51.631738],[0.237351,51.624073],[0.252794,51.617429],[0.257692,51.614182],[0.259262,51.612095],[0.264562,51.608321],[0.263115,51.60732],[0.261677,51.607461],[0.258079,51.606507],[0.257999,51.604912],[0.257156,51.604925],[0.256625,51.603606],[0.253916,51.60192],[0.254816,51.601337],[0.257913,51.601275],[0.258251,51.60092],[0.264398,51.599769],[0.269879,51.599575],[0.270339,51.59731],[0.269335,51.595275],[0.270282,51.591097],[0.271346,51.589742],[0.272099,51.587747],[0.27384,51.586862],[0.282029,51.578831],[0.28506,51.574163],[0.286653,51.573581],[0.287155,51.572721],[0.286694,51.571536],[0.29029,51.564299],[0.313035,51.565818],[0.313008,51.565942],[0.343784,51.567821],[0.379232,51.565736],[0.382605,51.565824],[0.381723,51.568301],[0.383666,51.56977],[0.382718,51.571954],[0.383655,51.572105],[0.382973,51.573691],[0.383239,51.576756],[0.38129,51.585001],[0.38603,51.585919],[0.38502,51.590312],[0.383425,51.593461],[0.38189,51.595536],[0.382797,51.598087],[0.383609,51.598724],[0.382534,51.599546],[0.379357,51.60358],[0.377698,51.612107],[0.375772,51.614889],[0.375127,51.615173],[0.378699,51.616602],[0.384226,51.619565],[0.385021,51.623232],[0.386967,51.626089],[0.386819,51.626937],[0.387625,51.628343],[0.387207,51.629755],[0.385856,51.631031],[0.386242,51.631466],[0.385213,51.632802],[0.387078,51.635998],[0.387475,51.637685],[0.389813,51.639105],[0.392655,51.639584],[0.39418,51.641223],[0.394926,51.643175],[0.394543,51.643982],[0.396284,51.644855],[0.398873,51.644781],[0.401465,51.645991],[0.403046,51.645845],[0.402401,51.647571],[0.402843,51.649848],[0.402328,51.650995]]]},"properties":{"LAD22CD":"E07000068","LAD22NM":"Brentwood","BNG_E":558560,"BNG_N":196070,"LONG":0.290091,"LAT":51.64108,"GlobalID":"52caa30e-9ec9-47a5-a9c5-0fab3332d695"},"id":94}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.525269,51.517069],[0.524661,51.517962],[0.521363,51.521389],[0.521731,51.518725],[0.522901,51.517569],[0.525269,51.517069]]],[[[0.631347,51.520884],[0.629617,51.520664],[0.629231,51.519942],[0.631555,51.519852],[0.631347,51.520884]]],[[[0.628028,51.523412],[0.625994,51.523744],[0.626073,51.522468],[0.628028,51.523412]]],[[[0.63218,51.523643],[0.62996,51.523316],[0.63083,51.52238],[0.631886,51.522737],[0.633937,51.522385],[0.634312,51.523216],[0.63218,51.523643]]],[[[0.623832,51.524555],[0.623633,51.523737],[0.624836,51.523048],[0.625555,51.524589],[0.623966,51.524411],[0.623832,51.524555]]],[[[0.629211,51.525903],[0.628243,51.525692],[0.62818,51.524683],[0.629959,51.524226],[0.631969,51.52459],[0.629211,51.525903]]],[[[0.62591,51.526619],[0.625168,51.526626],[0.625072,51.526138],[0.624118,51.525423],[0.623469,51.525175],[0.624099,51.524448],[0.625508,51.524656],[0.625563,51.525639],[0.62591,51.526619]]],[[[0.624928,51.526442],[0.622671,51.526862],[0.622379,51.52545],[0.623348,51.525624],[0.624071,51.525481],[0.624173,51.526305],[0.624928,51.526442]]],[[[0.628254,51.52655],[0.627952,51.527391],[0.626086,51.527425],[0.6256,51.525172],[0.626032,51.524663],[0.628963,51.526067],[0.628254,51.52655]]],[[[0.61304,51.528249],[0.614048,51.527039],[0.618125,51.526811],[0.613806,51.528282],[0.61304,51.528249]]],[[[0.622062,51.528736],[0.619302,51.528385],[0.618899,51.527471],[0.620553,51.527059],[0.623449,51.527729],[0.622062,51.528736]]],[[[0.617508,51.529489],[0.615877,51.5292],[0.614119,51.528195],[0.617079,51.527303],[0.618224,51.528814],[0.617508,51.529489]]],[[[0.608424,51.5321],[0.607346,51.531854],[0.609356,51.530628],[0.610589,51.530248],[0.612628,51.530235],[0.613919,51.530868],[0.608824,51.532163],[0.608424,51.5321]]],[[[0.602793,51.534026],[0.60124,51.534936],[0.599169,51.533839],[0.601157,51.533279],[0.602793,51.534026]]],[[[0.624538,51.536372],[0.621224,51.535776],[0.6172,51.53562],[0.61414,51.534905],[0.609033,51.534826],[0.611708,51.533883],[0.615495,51.533154],[0.617194,51.53338],[0.61928,51.532695],[0.627001,51.532479],[0.627915,51.533847],[0.627427,51.534584],[0.624538,51.536372]]],[[[0.585856,51.537282],[0.586063,51.536583],[0.588983,51.535787],[0.591689,51.535641],[0.596702,51.534097],[0.600614,51.535468],[0.596099,51.536434],[0.590733,51.537013],[0.585856,51.537282]]],[[[0.564582,51.540882],[0.56344,51.54116],[0.561702,51.539541],[0.563331,51.539111],[0.563576,51.539351],[0.564116,51.539405],[0.564582,51.540882]]],[[[0.558699,51.543957],[0.5548,51.543692],[0.554396,51.543012],[0.552883,51.542881],[0.552039,51.542198],[0.554873,51.541039],[0.557821,51.541642],[0.560011,51.54045],[0.562196,51.540552],[0.563554,51.541546],[0.561067,51.543257],[0.558699,51.543957]]],[[[0.546208,51.547421],[0.545006,51.546739],[0.54434,51.544371],[0.543855,51.544275],[0.544394,51.54136],[0.54398,51.539891],[0.54418,51.538791],[0.543192,51.536921],[0.543199,51.53446],[0.538646,51.533454],[0.537418,51.532092],[0.535217,51.53056],[0.533553,51.530283],[0.527337,51.531692],[0.526392,51.532182],[0.52411,51.532461],[0.522507,51.532241],[0.520012,51.530287],[0.51825,51.529678],[0.52072,51.527265],[0.522916,51.524342],[0.525735,51.519897],[0.52848,51.518339],[0.532192,51.518822],[0.532422,51.519409],[0.539521,51.520673],[0.546356,51.518379],[0.549041,51.516011],[0.552178,51.511398],[0.553265,51.510544],[0.572996,51.507805],[0.576833,51.508825],[0.580541,51.509208],[0.584154,51.511168],[0.584455,51.5128],[0.587403,51.513099],[0.587942,51.5117],[0.589436,51.510882],[0.597786,51.512119],[0.600014,51.51226],[0.609566,51.513815],[0.617012,51.514328],[0.620768,51.515802],[0.625039,51.516397],[0.624481,51.51867],[0.626743,51.518547],[0.626616,51.51969],[0.627881,51.520483],[0.631239,51.521095],[0.634643,51.520988],[0.636859,51.521936],[0.636632,51.522766],[0.63443,51.523211],[0.634121,51.522318],[0.632255,51.521561],[0.631654,51.522399],[0.630272,51.521914],[0.629779,51.52273],[0.627786,51.522494],[0.624854,51.520718],[0.622109,51.520414],[0.618614,51.520649],[0.617223,51.520984],[0.617745,51.521948],[0.620468,51.520984],[0.62415,51.521376],[0.625809,51.522736],[0.624193,51.523113],[0.622648,51.524454],[0.621417,51.526338],[0.619162,51.526074],[0.614884,51.526551],[0.611832,51.527208],[0.610184,51.527241],[0.60352,51.529622],[0.598672,51.530097],[0.597386,51.530865],[0.596933,51.531931],[0.600895,51.530709],[0.603064,51.53162],[0.601533,51.532947],[0.599268,51.533528],[0.595578,51.53399],[0.591473,51.535331],[0.589078,51.535434],[0.586658,51.536258],[0.585201,51.535938],[0.579827,51.535751],[0.579098,51.536613],[0.581808,51.536482],[0.582796,51.535946],[0.584749,51.536155],[0.581997,51.538095],[0.577161,51.538188],[0.5741,51.538809],[0.565297,51.5413],[0.564256,51.539597],[0.563992,51.539121],[0.56405,51.539352],[0.563366,51.539099],[0.563736,51.538832],[0.559081,51.540352],[0.557618,51.541575],[0.556697,51.540763],[0.554819,51.540919],[0.551544,51.542203],[0.551525,51.542627],[0.554252,51.543827],[0.551812,51.544105],[0.552054,51.544655],[0.554172,51.54417],[0.55661,51.544471],[0.550854,51.54561],[0.549018,51.546168],[0.546208,51.547421]]],[[[0.632077,51.570529],[0.612939,51.575473],[0.608388,51.576056],[0.598611,51.576927],[0.598973,51.577199],[0.591315,51.577928],[0.589303,51.578617],[0.587489,51.579636],[0.582691,51.582954],[0.570102,51.587683],[0.567755,51.588193],[0.565918,51.588245],[0.567866,51.587226],[0.56704,51.585512],[0.564659,51.583873],[0.557613,51.580618],[0.54943,51.577427],[0.545144,51.57476],[0.54299,51.57192],[0.542232,51.569446],[0.542201,51.567873],[0.54395,51.567286],[0.543058,51.566165],[0.541448,51.565937],[0.541571,51.564344],[0.539692,51.56008],[0.53974,51.558883],[0.538265,51.556039],[0.537992,51.554659],[0.539107,51.551732],[0.541721,51.548491],[0.542252,51.548472],[0.544327,51.546272],[0.545114,51.547693],[0.547338,51.547682],[0.550954,51.545963],[0.555327,51.545026],[0.559587,51.544659],[0.5639,51.542417],[0.566763,51.54143],[0.567594,51.54158],[0.570297,51.541157],[0.576635,51.539633],[0.57867,51.539292],[0.581004,51.539662],[0.587494,51.538917],[0.599421,51.537153],[0.600334,51.537253],[0.604202,51.53605],[0.605107,51.536058],[0.608693,51.535158],[0.613084,51.534942],[0.614321,51.535392],[0.621542,51.535967],[0.624417,51.536785],[0.62645,51.537626],[0.625818,51.538138],[0.623997,51.539033],[0.624739,51.540409],[0.62296,51.540468],[0.624785,51.543787],[0.62416,51.547657],[0.62516,51.549268],[0.627191,51.551197],[0.62553,51.553664],[0.627015,51.555401],[0.628483,51.555402],[0.629364,51.556386],[0.631685,51.557645],[0.633137,51.559094],[0.635575,51.56065],[0.634677,51.561802],[0.634392,51.565263],[0.633115,51.565482],[0.635141,51.567953],[0.634119,51.569484],[0.631589,51.569931],[0.632077,51.570529]]]]},"properties":{"LAD22CD":"E07000069","LAD22NM":"Castle Point","BNG_E":579490,"BNG_N":187920,"LONG":0.588084,"LAT":51.56159,"GlobalID":"887c022f-c565-4067-9ef2-7f86457d72b8"},"id":95}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.519262,51.850449],[0.51771,51.849207],[0.512511,51.848234],[0.506815,51.848155],[0.502079,51.846694],[0.500304,51.845504],[0.495899,51.844744],[0.492519,51.843277],[0.488901,51.842561],[0.486799,51.842649],[0.487342,51.841533],[0.486423,51.839927],[0.480721,51.840386],[0.475197,51.840474],[0.467116,51.839587],[0.465343,51.838702],[0.464731,51.837146],[0.461905,51.834605],[0.459343,51.835423],[0.453055,51.83463],[0.451376,51.833967],[0.449694,51.830183],[0.448537,51.830011],[0.447075,51.829123],[0.445773,51.828879],[0.443235,51.829391],[0.440606,51.830808],[0.439457,51.832462],[0.436706,51.831265],[0.43137,51.831647],[0.430566,51.833212],[0.431652,51.835261],[0.430657,51.836942],[0.428043,51.838363],[0.42607,51.84151],[0.425678,51.843297],[0.422579,51.844963],[0.424056,51.846236],[0.424482,51.848417],[0.424046,51.849429],[0.424774,51.851324],[0.424078,51.854073],[0.423152,51.854683],[0.420069,51.855114],[0.418118,51.857257],[0.416755,51.857478],[0.412996,51.856323],[0.415059,51.853546],[0.414625,51.849626],[0.413767,51.848541],[0.413922,51.845565],[0.412811,51.845616],[0.412905,51.844265],[0.411147,51.84494],[0.411745,51.8458],[0.40799,51.846188],[0.406631,51.843978],[0.405342,51.842866],[0.40432,51.842756],[0.403546,51.840197],[0.409986,51.836577],[0.407965,51.83571],[0.410871,51.834188],[0.410662,51.832361],[0.407926,51.831655],[0.406364,51.83085],[0.406351,51.828732],[0.407088,51.825407],[0.408623,51.823512],[0.41074,51.821898],[0.410821,51.819615],[0.412983,51.818066],[0.414669,51.816056],[0.414397,51.814345],[0.413053,51.813216],[0.408076,51.812807],[0.407833,51.813287],[0.404951,51.812489],[0.406868,51.810412],[0.407069,51.808414],[0.404615,51.807422],[0.402303,51.807712],[0.403272,51.81136],[0.404171,51.811505],[0.403579,51.812864],[0.40003,51.812762],[0.398923,51.809153],[0.398877,51.807497],[0.397334,51.807155],[0.394085,51.807106],[0.390006,51.805086],[0.389902,51.803888],[0.388333,51.803541],[0.388512,51.801606],[0.388009,51.799718],[0.386832,51.798501],[0.384743,51.798799],[0.384165,51.797074],[0.380936,51.79726],[0.378595,51.797649],[0.378504,51.798831],[0.381475,51.798211],[0.382787,51.799819],[0.379227,51.800388],[0.3788,51.799957],[0.374529,51.800834],[0.369681,51.799217],[0.364758,51.799656],[0.36157,51.80115],[0.36046,51.800124],[0.36173,51.798395],[0.359045,51.79813],[0.359512,51.796271],[0.362303,51.795673],[0.362617,51.794907],[0.358918,51.794528],[0.358781,51.793983],[0.354739,51.793493],[0.350158,51.794022],[0.34682,51.793502],[0.342936,51.793909],[0.340581,51.794478],[0.33983,51.792791],[0.337931,51.791412],[0.337699,51.790261],[0.338262,51.789085],[0.340698,51.788037],[0.340764,51.786432],[0.339616,51.786478],[0.334953,51.785711],[0.33532,51.784752],[0.334353,51.783126],[0.334141,51.781665],[0.332636,51.780975],[0.332198,51.779629],[0.333694,51.778814],[0.335264,51.775922],[0.340517,51.774114],[0.344463,51.774041],[0.346261,51.773242],[0.348102,51.7732],[0.347804,51.771357],[0.348283,51.768883],[0.3467,51.767596],[0.344968,51.766212],[0.344986,51.763438],[0.344159,51.760007],[0.342549,51.758133],[0.341114,51.752012],[0.344151,51.749365],[0.344021,51.747471],[0.346078,51.741868],[0.345558,51.740923],[0.345847,51.737914],[0.345035,51.735234],[0.347507,51.731584],[0.347025,51.729417],[0.344723,51.727791],[0.343431,51.725898],[0.342857,51.724182],[0.341019,51.72302],[0.339086,51.721007],[0.335219,51.719169],[0.333539,51.718731],[0.333999,51.717013],[0.335958,51.713631],[0.335976,51.712076],[0.336975,51.709305],[0.3392,51.706777],[0.339686,51.703963],[0.338886,51.701513],[0.340103,51.701117],[0.343901,51.698407],[0.344691,51.697093],[0.344969,51.695519],[0.346633,51.693905],[0.353055,51.692098],[0.357376,51.691424],[0.360551,51.690384],[0.362886,51.691709],[0.368946,51.692837],[0.371768,51.694927],[0.373104,51.695432],[0.376697,51.698503],[0.37797,51.697937],[0.380505,51.69738],[0.380759,51.696198],[0.380488,51.694424],[0.381827,51.693647],[0.385845,51.691992],[0.388127,51.6916],[0.389569,51.690983],[0.391169,51.691722],[0.392882,51.690555],[0.39283,51.687825],[0.394336,51.687755],[0.395719,51.686166],[0.396891,51.686531],[0.396704,51.684413],[0.39881,51.68322],[0.401498,51.682421],[0.399702,51.681329],[0.397826,51.67946],[0.404897,51.678692],[0.406261,51.674471],[0.407426,51.672808],[0.41256,51.670896],[0.411466,51.669771],[0.408983,51.669491],[0.407438,51.668427],[0.406005,51.666296],[0.402845,51.663403],[0.40025,51.662247],[0.401807,51.661631],[0.401659,51.660634],[0.402761,51.659656],[0.401646,51.659297],[0.40152,51.658179],[0.399265,51.656215],[0.397546,51.653535],[0.399261,51.653811],[0.400745,51.65266],[0.402428,51.652186],[0.402328,51.650995],[0.410224,51.651205],[0.412226,51.649854],[0.412729,51.650122],[0.415788,51.649763],[0.423375,51.649462],[0.428925,51.649763],[0.433809,51.64951],[0.439973,51.64706],[0.442935,51.646655],[0.441953,51.644191],[0.445852,51.643484],[0.446933,51.641517],[0.445927,51.641203],[0.443386,51.638862],[0.442893,51.636998],[0.444163,51.633164],[0.44622,51.630629],[0.446192,51.628488],[0.446828,51.626669],[0.455173,51.624639],[0.457965,51.624292],[0.458962,51.623828],[0.465827,51.623467],[0.478032,51.625177],[0.481358,51.625561],[0.487964,51.624774],[0.504829,51.621716],[0.505449,51.621929],[0.504821,51.624372],[0.508602,51.625719],[0.511449,51.625912],[0.5129,51.626614],[0.514681,51.626967],[0.515554,51.624424],[0.52026,51.62541],[0.520805,51.624477],[0.520425,51.623124],[0.521083,51.6211],[0.520822,51.618791],[0.529067,51.620248],[0.531877,51.61945],[0.5362,51.620326],[0.537579,51.619616],[0.538573,51.620449],[0.540988,51.620877],[0.542476,51.620797],[0.543549,51.619726],[0.544729,51.619676],[0.543608,51.618299],[0.546813,51.617644],[0.549569,51.617987],[0.552204,51.617817],[0.554066,51.617106],[0.556225,51.616763],[0.557075,51.616823],[0.560723,51.617164],[0.561344,51.617408],[0.562405,51.617893],[0.564132,51.620391],[0.563765,51.621341],[0.565052,51.621583],[0.566245,51.622526],[0.566333,51.622544],[0.568376,51.622165],[0.569932,51.62277],[0.573988,51.62312],[0.574901,51.624147],[0.578496,51.625092],[0.581544,51.62424],[0.585616,51.624426],[0.585811,51.626485],[0.587795,51.628536],[0.587042,51.629077],[0.586893,51.630584],[0.587995,51.631242],[0.590274,51.631128],[0.592289,51.631445],[0.594992,51.63249],[0.59748,51.632374],[0.598735,51.630598],[0.601268,51.630724],[0.605138,51.630237],[0.606543,51.629734],[0.609656,51.630172],[0.611255,51.63014],[0.612008,51.630882],[0.618358,51.632526],[0.622446,51.63298],[0.624918,51.632921],[0.627171,51.633514],[0.632225,51.632367],[0.633686,51.633133],[0.637008,51.633437],[0.638188,51.633224],[0.641735,51.633644],[0.643508,51.634165],[0.645217,51.635302],[0.645032,51.635821],[0.646735,51.636671],[0.644744,51.636994],[0.639839,51.63828],[0.637737,51.638415],[0.637868,51.636659],[0.636539,51.635765],[0.635554,51.63701],[0.631997,51.637211],[0.632184,51.637925],[0.629694,51.637728],[0.629579,51.63878],[0.62849,51.639221],[0.628461,51.641567],[0.629024,51.641616],[0.629161,51.642882],[0.62755,51.644833],[0.628443,51.645941],[0.626119,51.6575],[0.626426,51.658075],[0.625271,51.658984],[0.624099,51.661571],[0.623326,51.662277],[0.623322,51.665625],[0.620927,51.667793],[0.619516,51.670414],[0.619217,51.673318],[0.619744,51.673562],[0.619766,51.67534],[0.617851,51.677579],[0.615054,51.678945],[0.613239,51.680232],[0.611227,51.680556],[0.608837,51.681947],[0.609159,51.684206],[0.611152,51.684098],[0.612204,51.685538],[0.612389,51.687315],[0.611303,51.689427],[0.610562,51.689761],[0.610905,51.694239],[0.612257,51.69494],[0.611185,51.696383],[0.612585,51.698799],[0.610362,51.70057],[0.607111,51.700628],[0.604564,51.700388],[0.60299,51.702921],[0.603786,51.70507],[0.602012,51.708851],[0.602074,51.711681],[0.604016,51.713733],[0.60523,51.715909],[0.608856,51.719512],[0.611153,51.722787],[0.6103,51.723337],[0.607339,51.723468],[0.604109,51.724944],[0.595367,51.725783],[0.59119,51.728203],[0.589498,51.730173],[0.589129,51.731821],[0.59181,51.733698],[0.595158,51.734061],[0.593011,51.739354],[0.591805,51.745665],[0.592125,51.748675],[0.591694,51.751315],[0.592509,51.754161],[0.593365,51.755449],[0.590696,51.755877],[0.589572,51.754006],[0.584527,51.751151],[0.581126,51.752389],[0.578462,51.752813],[0.575768,51.752581],[0.572982,51.751771],[0.570941,51.754391],[0.569341,51.755827],[0.568576,51.755969],[0.567993,51.757924],[0.566514,51.758674],[0.565957,51.761836],[0.566753,51.762757],[0.565872,51.763207],[0.566266,51.764834],[0.565194,51.764791],[0.562581,51.767263],[0.560325,51.770875],[0.558398,51.775398],[0.557575,51.7757],[0.55494,51.778033],[0.554268,51.7791],[0.551033,51.780282],[0.548999,51.781702],[0.545771,51.784949],[0.543805,51.787561],[0.542546,51.788406],[0.541905,51.790453],[0.539626,51.790859],[0.536153,51.792189],[0.53121,51.795154],[0.529068,51.797142],[0.528302,51.798651],[0.528293,51.80027],[0.52379,51.803428],[0.524706,51.804903],[0.524303,51.807019],[0.525066,51.807301],[0.52476,51.809686],[0.527554,51.80927],[0.528413,51.810707],[0.532392,51.810276],[0.534174,51.810848],[0.532737,51.812487],[0.53258,51.815933],[0.53085,51.816436],[0.524062,51.819701],[0.523735,51.820531],[0.525734,51.821471],[0.522539,51.822168],[0.524466,51.823352],[0.525541,51.82217],[0.528515,51.822627],[0.52959,51.824194],[0.52991,51.826097],[0.529566,51.827488],[0.53018,51.829593],[0.528772,51.831085],[0.530155,51.832661],[0.529829,51.836479],[0.526738,51.83859],[0.52376,51.840089],[0.523239,51.841283],[0.520366,51.844015],[0.524943,51.849254],[0.519262,51.850449]]]},"properties":{"LAD22CD":"E07000070","LAD22NM":"Chelmsford","BNG_E":572116,"BNG_N":206972,"LONG":0.491177,"LAT":51.73503,"GlobalID":"751538f2-3e62-4726-88b7-057300fa083b"},"id":96}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.899702,51.773201],[0.898775,51.773697],[0.897153,51.772144],[0.898177,51.770701],[0.900099,51.770122],[0.902659,51.770582],[0.901359,51.772467],[0.899702,51.773201]]],[[[0.884251,51.779086],[0.88522,51.777482],[0.89163,51.771925],[0.892052,51.773236],[0.890694,51.776044],[0.888035,51.777673],[0.885558,51.778185],[0.884251,51.779086]]],[[[0.886883,51.779733],[0.891504,51.777076],[0.893464,51.774437],[0.893375,51.776552],[0.892625,51.779041],[0.888097,51.779138],[0.886883,51.779733]]],[[[0.873265,51.786624],[0.871766,51.786656],[0.872792,51.78472],[0.87389,51.783995],[0.87638,51.785636],[0.874871,51.78581],[0.873265,51.786624]]],[[[0.877984,51.785062],[0.876237,51.784884],[0.87623,51.783625],[0.880819,51.782706],[0.878493,51.783968],[0.877984,51.785062]]],[[[0.912276,51.797401],[0.912699,51.798073],[0.911688,51.798028],[0.911852,51.797603],[0.910766,51.797588],[0.910468,51.797244],[0.908922,51.797738],[0.9073,51.796919],[0.905181,51.795367],[0.903552,51.794623],[0.90018,51.790765],[0.899727,51.789767],[0.897098,51.785658],[0.897395,51.785126],[0.900574,51.788631],[0.902513,51.79001],[0.905365,51.791587],[0.910893,51.794177],[0.910862,51.79531],[0.91256,51.795213],[0.912414,51.795598],[0.913029,51.796046],[0.912036,51.796282],[0.912276,51.797401]]],[[[0.915018,51.79954],[0.913205,51.798981],[0.912123,51.796346],[0.913175,51.796008],[0.912597,51.795581],[0.912755,51.795112],[0.911719,51.795155],[0.911301,51.794855],[0.912214,51.794459],[0.914728,51.794887],[0.916886,51.796382],[0.917609,51.797392],[0.916535,51.799023],[0.915018,51.79954]]],[[[0.923974,51.799716],[0.921837,51.798777],[0.921863,51.797289],[0.924181,51.799091],[0.923974,51.799716]]],[[[0.911772,51.801378],[0.91055,51.801507],[0.910337,51.800199],[0.909513,51.799538],[0.909428,51.79803],[0.910419,51.797345],[0.910708,51.797679],[0.911494,51.797631],[0.911212,51.798277],[0.91223,51.798153],[0.912966,51.798634],[0.912874,51.799309],[0.914509,51.80005],[0.913303,51.801305],[0.912181,51.800992],[0.911772,51.801378]]],[[[0.929288,51.80085],[0.927434,51.801216],[0.926588,51.800099],[0.929746,51.800018],[0.929288,51.80085]]],[[[0.926562,51.800351],[0.926239,51.801563],[0.923979,51.800194],[0.924432,51.799074],[0.926496,51.799229],[0.926562,51.800351]]],[[[0.974661,51.810184],[0.972486,51.811034],[0.969148,51.811199],[0.975093,51.80864],[0.977462,51.80796],[0.974661,51.810184]]],[[[0.982301,51.815766],[0.980234,51.816631],[0.976855,51.817416],[0.975553,51.816908],[0.978387,51.814947],[0.981775,51.813616],[0.984569,51.813282],[0.983476,51.814925],[0.982301,51.815766]]],[[[0.955251,51.831677],[0.953407,51.831326],[0.952283,51.830801],[0.953066,51.830283],[0.952619,51.829859],[0.952774,51.828768],[0.95388,51.827764],[0.951975,51.826106],[0.951987,51.825065],[0.955526,51.82363],[0.964041,51.821976],[0.963069,51.824611],[0.963188,51.827795],[0.960291,51.830802],[0.958908,51.831433],[0.956777,51.831138],[0.955251,51.831677]]],[[[1.024712,51.954902],[1.021118,51.954451],[1.018696,51.953219],[1.017205,51.95393],[1.016191,51.955386],[1.011561,51.95507],[1.009002,51.956],[1.007589,51.957543],[1.004944,51.959499],[1.005457,51.960639],[1.004394,51.962235],[1.001264,51.963405],[0.99871,51.963967],[0.995236,51.963353],[0.992495,51.961765],[0.989083,51.961379],[0.982478,51.962119],[0.980291,51.961468],[0.975847,51.961268],[0.973891,51.962382],[0.970983,51.962408],[0.968685,51.963417],[0.968224,51.964109],[0.971499,51.966998],[0.972029,51.968499],[0.970818,51.970086],[0.968797,51.970192],[0.96489,51.971961],[0.965206,51.972775],[0.964163,51.973655],[0.965339,51.974234],[0.964615,51.975684],[0.963328,51.976157],[0.96334,51.977016],[0.959041,51.976845],[0.957858,51.976259],[0.955935,51.976343],[0.953177,51.975189],[0.953132,51.97405],[0.951284,51.972714],[0.94882,51.972509],[0.942911,51.97069],[0.939961,51.971421],[0.939573,51.972367],[0.937263,51.972632],[0.935231,51.971934],[0.930903,51.971703],[0.929337,51.971452],[0.927704,51.972331],[0.926654,51.973966],[0.926535,51.974933],[0.925169,51.976194],[0.922564,51.976189],[0.920728,51.974828],[0.919718,51.974816],[0.917043,51.973968],[0.915514,51.974115],[0.912803,51.973839],[0.91101,51.973336],[0.909892,51.973497],[0.907672,51.972971],[0.903689,51.972886],[0.900302,51.973523],[0.897331,51.972262],[0.895692,51.972132],[0.893729,51.972627],[0.892818,51.9734],[0.889688,51.973387],[0.887899,51.97175],[0.888164,51.970598],[0.886565,51.968445],[0.884019,51.967659],[0.883027,51.967775],[0.880005,51.966456],[0.877575,51.966524],[0.872713,51.967175],[0.873201,51.968563],[0.870675,51.969201],[0.867558,51.969147],[0.863094,51.968271],[0.861574,51.966728],[0.858901,51.965511],[0.859477,51.964197],[0.858331,51.962965],[0.853884,51.962495],[0.85024,51.960767],[0.84209,51.961819],[0.840211,51.963391],[0.835859,51.96473],[0.833469,51.966053],[0.8305,51.966336],[0.826151,51.967721],[0.82465,51.96855],[0.821642,51.968719],[0.819838,51.968116],[0.818347,51.968246],[0.8164,51.967054],[0.815281,51.967054],[0.814145,51.965732],[0.813865,51.964308],[0.814553,51.963637],[0.814159,51.962284],[0.812317,51.960936],[0.809477,51.960821],[0.808018,51.96174],[0.799735,51.962362],[0.799075,51.963246],[0.795767,51.963729],[0.792795,51.963475],[0.791053,51.963648],[0.787161,51.963134],[0.785717,51.963979],[0.786432,51.966335],[0.785123,51.967495],[0.782788,51.967647],[0.78147,51.966513],[0.78229,51.965081],[0.781605,51.963474],[0.77779,51.960915],[0.777576,51.959885],[0.773155,51.960162],[0.773115,51.96072],[0.769859,51.961885],[0.768509,51.961908],[0.767874,51.959897],[0.768339,51.959264],[0.767704,51.957639],[0.766183,51.955747],[0.764041,51.95432],[0.756049,51.953185],[0.749708,51.954789],[0.747685,51.95214],[0.748544,51.951665],[0.745854,51.948585],[0.745759,51.945881],[0.74692,51.945371],[0.744938,51.9439],[0.74447,51.942686],[0.740899,51.94071],[0.740273,51.939995],[0.740598,51.936332],[0.741467,51.934147],[0.74045,51.932939],[0.740141,51.931639],[0.738212,51.930016],[0.736764,51.929384],[0.736787,51.928087],[0.734789,51.925495],[0.732113,51.923325],[0.730444,51.923311],[0.731469,51.918855],[0.730116,51.915851],[0.727839,51.914595],[0.726706,51.9129],[0.724183,51.912579],[0.723356,51.910972],[0.722226,51.910176],[0.723941,51.908413],[0.727256,51.909132],[0.729013,51.908053],[0.727199,51.907233],[0.726442,51.906009],[0.725318,51.905152],[0.723453,51.905589],[0.722605,51.903587],[0.720676,51.903638],[0.720587,51.904553],[0.716795,51.904617],[0.715094,51.904959],[0.713547,51.903556],[0.712805,51.902223],[0.711132,51.902731],[0.71091,51.904229],[0.707015,51.905229],[0.705461,51.904822],[0.704821,51.90358],[0.699598,51.903468],[0.699417,51.90174],[0.699959,51.899726],[0.702732,51.898432],[0.704723,51.896872],[0.709281,51.89522],[0.711569,51.893173],[0.712475,51.892992],[0.712913,51.89114],[0.712538,51.888949],[0.713201,51.886967],[0.711869,51.886546],[0.715055,51.884842],[0.716531,51.883651],[0.717714,51.882202],[0.72019,51.880744],[0.72276,51.87879],[0.718189,51.877942],[0.720007,51.875613],[0.722653,51.875903],[0.723499,51.873917],[0.722122,51.872984],[0.717085,51.87207],[0.716405,51.871253],[0.718704,51.869912],[0.719414,51.87061],[0.722207,51.869364],[0.723034,51.86978],[0.726101,51.869873],[0.730461,51.867553],[0.731877,51.868636],[0.734882,51.870181],[0.736606,51.871679],[0.740742,51.870621],[0.740561,51.870292],[0.747222,51.8686],[0.746186,51.867602],[0.747795,51.866589],[0.749441,51.866211],[0.751786,51.864541],[0.752926,51.863132],[0.747347,51.860094],[0.748754,51.859096],[0.747638,51.858459],[0.748293,51.857728],[0.74656,51.857286],[0.745234,51.856385],[0.747531,51.854827],[0.750344,51.853602],[0.742279,51.851144],[0.741153,51.849675],[0.737106,51.848363],[0.736222,51.849338],[0.733144,51.848462],[0.734578,51.847135],[0.736377,51.847282],[0.739095,51.844638],[0.738383,51.841765],[0.741456,51.84145],[0.741589,51.839676],[0.739573,51.840016],[0.738187,51.8378],[0.735064,51.837742],[0.73517,51.840599],[0.734328,51.841967],[0.733192,51.841978],[0.727829,51.839489],[0.722093,51.838742],[0.719399,51.83745],[0.71892,51.837666],[0.715775,51.837177],[0.711904,51.834531],[0.714184,51.833522],[0.717552,51.833005],[0.71813,51.833194],[0.721332,51.830236],[0.718552,51.829121],[0.716261,51.827568],[0.717789,51.825627],[0.716832,51.824717],[0.71443,51.823658],[0.709083,51.819871],[0.708909,51.818904],[0.709862,51.818443],[0.710566,51.817193],[0.71313,51.815855],[0.717111,51.812595],[0.721663,51.810005],[0.720175,51.809813],[0.717316,51.81077],[0.716388,51.810266],[0.715055,51.810516],[0.71333,51.80846],[0.717357,51.806958],[0.719036,51.805162],[0.7187,51.804199],[0.71902,51.802007],[0.7185,51.800837],[0.718807,51.79837],[0.718171,51.797363],[0.721568,51.796506],[0.722626,51.797279],[0.726857,51.797494],[0.733638,51.79933],[0.733854,51.798418],[0.737648,51.798551],[0.742862,51.80021],[0.746495,51.799452],[0.75423,51.800969],[0.759344,51.802327],[0.760326,51.802996],[0.7634,51.80324],[0.768622,51.805858],[0.770371,51.80591],[0.772174,51.807353],[0.774294,51.807906],[0.774892,51.808917],[0.77909,51.811563],[0.790632,51.806856],[0.793085,51.805006],[0.794794,51.80426],[0.797929,51.803991],[0.801147,51.801482],[0.808955,51.800421],[0.809024,51.799832],[0.811855,51.799119],[0.809923,51.795052],[0.808111,51.793319],[0.810661,51.792896],[0.813404,51.791555],[0.816676,51.791041],[0.815929,51.789247],[0.811567,51.790123],[0.80573,51.791948],[0.803929,51.789705],[0.816339,51.78754],[0.816158,51.786363],[0.819629,51.786142],[0.821793,51.785199],[0.823497,51.784855],[0.825669,51.783528],[0.834492,51.782687],[0.836697,51.779603],[0.839358,51.779681],[0.840239,51.779256],[0.842439,51.77946],[0.843348,51.780734],[0.844969,51.781795],[0.843886,51.782485],[0.842109,51.781529],[0.837975,51.783195],[0.836893,51.784164],[0.836917,51.784998],[0.840325,51.785238],[0.838791,51.784295],[0.839278,51.78369],[0.841651,51.783069],[0.844556,51.783521],[0.847528,51.786303],[0.849105,51.786931],[0.852022,51.786356],[0.852443,51.785216],[0.854796,51.785585],[0.854787,51.78539],[0.856412,51.785805],[0.858204,51.78612],[0.856954,51.787181],[0.856074,51.786378],[0.856851,51.786209],[0.855131,51.785566],[0.854848,51.785906],[0.854791,51.787235],[0.858607,51.787226],[0.859902,51.785881],[0.862868,51.785518],[0.865141,51.786346],[0.865876,51.785816],[0.863382,51.784923],[0.866688,51.784092],[0.872288,51.783229],[0.870277,51.784629],[0.871376,51.78599],[0.869782,51.785993],[0.868559,51.787505],[0.867402,51.787475],[0.865895,51.788903],[0.866569,51.790808],[0.868027,51.792447],[0.868817,51.791444],[0.867125,51.790835],[0.86669,51.789995],[0.86759,51.787818],[0.872019,51.786698],[0.873952,51.786985],[0.877811,51.786741],[0.878626,51.786442],[0.878679,51.784454],[0.879444,51.783717],[0.885445,51.780673],[0.885636,51.780268],[0.888375,51.779328],[0.891451,51.779504],[0.895174,51.788096],[0.895176,51.788894],[0.893783,51.79044],[0.895024,51.791309],[0.896119,51.790934],[0.898642,51.79162],[0.900138,51.793332],[0.902735,51.795687],[0.902658,51.796196],[0.904922,51.796747],[0.905352,51.797446],[0.908142,51.798572],[0.90824,51.800129],[0.909017,51.801148],[0.907334,51.801823],[0.904898,51.801639],[0.904813,51.802846],[0.907783,51.802191],[0.911624,51.801709],[0.912157,51.801106],[0.913281,51.801483],[0.913473,51.801128],[0.915308,51.80038],[0.918375,51.798357],[0.920144,51.796515],[0.919507,51.79483],[0.919998,51.7935],[0.92074,51.793184],[0.92017,51.791598],[0.916397,51.791838],[0.915256,51.792535],[0.913348,51.79264],[0.90791,51.790388],[0.903871,51.787995],[0.901458,51.785619],[0.900908,51.783565],[0.899773,51.782338],[0.899743,51.780775],[0.898473,51.780245],[0.898402,51.778438],[0.90088,51.776079],[0.902374,51.775481],[0.902362,51.773704],[0.906957,51.774103],[0.920325,51.773123],[0.925729,51.773167],[0.933321,51.773744],[0.936098,51.773655],[0.942554,51.774772],[0.944324,51.774489],[0.945945,51.774788],[0.957382,51.779208],[0.962292,51.780708],[0.970284,51.782109],[0.981327,51.785185],[0.9822,51.785982],[0.989071,51.787849],[0.990205,51.788683],[0.993632,51.789794],[0.995325,51.791081],[0.99999,51.793141],[1.001142,51.794902],[1.002886,51.796409],[1.003983,51.796703],[1.004095,51.797665],[1.001989,51.798595],[0.999323,51.8006],[0.999462,51.801737],[0.996862,51.802751],[0.993733,51.803432],[0.991015,51.803789],[0.984169,51.80347],[0.982293,51.803959],[0.977877,51.804643],[0.975135,51.804368],[0.976364,51.805662],[0.969089,51.80841],[0.96477,51.808815],[0.957288,51.807773],[0.948069,51.807222],[0.945322,51.80678],[0.942819,51.806768],[0.938825,51.804815],[0.936702,51.804138],[0.933527,51.80348],[0.932766,51.802181],[0.930538,51.800293],[0.929772,51.79997],[0.926575,51.800035],[0.926607,51.799209],[0.924566,51.798702],[0.925159,51.7977],[0.921697,51.795529],[0.917838,51.799201],[0.919461,51.799373],[0.920733,51.80036],[0.922618,51.801198],[0.924135,51.802841],[0.927587,51.802812],[0.930598,51.801872],[0.931063,51.803415],[0.93274,51.804574],[0.936419,51.805407],[0.936414,51.806244],[0.933844,51.806481],[0.929716,51.80634],[0.927296,51.80581],[0.925947,51.806051],[0.923818,51.805506],[0.921563,51.803854],[0.921187,51.80496],[0.923543,51.80724],[0.925351,51.808257],[0.922865,51.808869],[0.921593,51.809681],[0.919845,51.809412],[0.918083,51.809585],[0.917017,51.8102],[0.919091,51.810949],[0.920104,51.809713],[0.921918,51.810359],[0.925531,51.809244],[0.927784,51.80756],[0.928883,51.80797],[0.937836,51.807984],[0.940501,51.809146],[0.944316,51.810221],[0.951647,51.810794],[0.953914,51.811322],[0.958423,51.811496],[0.959597,51.812039],[0.962082,51.812499],[0.969594,51.812765],[0.97428,51.811659],[0.975834,51.810893],[0.978631,51.808572],[0.979958,51.808165],[0.985385,51.807282],[0.991184,51.807253],[0.9878,51.809114],[0.987197,51.809176],[0.983322,51.811355],[0.977547,51.813208],[0.971739,51.817175],[0.966589,51.819422],[0.951319,51.823417],[0.949451,51.823358],[0.947772,51.822872],[0.94679,51.82205],[0.944281,51.821319],[0.943448,51.822178],[0.947998,51.82377],[0.949725,51.82404],[0.950759,51.8248],[0.950813,51.826779],[0.952716,51.827244],[0.952324,51.829972],[0.952531,51.830635],[0.951859,51.830804],[0.952569,51.831441],[0.955705,51.832037],[0.959783,51.831837],[0.963352,51.832416],[0.963967,51.831267],[0.963501,51.829513],[0.964527,51.827986],[0.964672,51.824062],[0.96577,51.822633],[0.968183,51.821493],[0.971814,51.820315],[0.972257,51.819919],[0.975942,51.818569],[0.982242,51.817389],[0.981657,51.818954],[0.974976,51.827037],[0.974116,51.829233],[0.973919,51.83136],[0.975033,51.833372],[0.976624,51.834293],[0.978035,51.837147],[0.976325,51.837274],[0.977054,51.83833],[0.978362,51.839076],[0.977526,51.841362],[0.976926,51.844905],[0.975909,51.846416],[0.97409,51.847316],[0.967056,51.849297],[0.96094,51.852758],[0.955703,51.854105],[0.956305,51.853062],[0.956046,51.852121],[0.954217,51.852003],[0.951919,51.851256],[0.95123,51.850523],[0.952579,51.849898],[0.952937,51.848957],[0.951759,51.848432],[0.950832,51.848942],[0.951999,51.849663],[0.950841,51.850677],[0.953056,51.852105],[0.954846,51.852313],[0.954288,51.853381],[0.95089,51.854336],[0.948901,51.856334],[0.948957,51.858417],[0.950884,51.860006],[0.950543,51.862512],[0.947547,51.864132],[0.946795,51.866152],[0.944728,51.867697],[0.942312,51.868895],[0.940652,51.870507],[0.939043,51.871418],[0.935742,51.876163],[0.926688,51.880702],[0.927863,51.880537],[0.932162,51.878262],[0.935596,51.876785],[0.936689,51.875923],[0.93736,51.874372],[0.939495,51.871626],[0.94127,51.870689],[0.94243,51.869424],[0.945273,51.868036],[0.947414,51.866531],[0.94913,51.864266],[0.950348,51.864061],[0.95145,51.862962],[0.952081,51.860063],[0.949753,51.856902],[0.950371,51.855547],[0.95303,51.85456],[0.957387,51.854672],[0.962422,51.853545],[0.966253,51.851822],[0.970369,51.852463],[0.973175,51.853378],[0.978104,51.854043],[0.976687,51.856402],[0.975684,51.85953],[0.973978,51.860456],[0.976757,51.86386],[0.977447,51.865966],[0.979241,51.867923],[0.97937,51.869524],[0.978321,51.872162],[0.976595,51.873322],[0.970203,51.874587],[0.960139,51.877422],[0.957923,51.877387],[0.952853,51.88031],[0.95812,51.881117],[0.957976,51.881514],[0.959637,51.884523],[0.959327,51.88632],[0.962075,51.889596],[0.962619,51.891408],[0.959537,51.892236],[0.956773,51.892311],[0.953098,51.891708],[0.952371,51.893433],[0.95085,51.894403],[0.948809,51.896752],[0.950016,51.898286],[0.951087,51.89841],[0.954173,51.901489],[0.956717,51.902547],[0.957143,51.903648],[0.954882,51.904686],[0.949092,51.904797],[0.944139,51.906225],[0.948003,51.910012],[0.946644,51.909903],[0.941321,51.911183],[0.937901,51.913055],[0.931511,51.91323],[0.931126,51.914134],[0.934146,51.916532],[0.932397,51.917642],[0.931203,51.919724],[0.934369,51.921063],[0.935284,51.922506],[0.93738,51.922016],[0.938227,51.922711],[0.939212,51.924587],[0.93909,51.926587],[0.941986,51.929743],[0.947171,51.932707],[0.949227,51.935019],[0.951034,51.934604],[0.955317,51.936754],[0.964481,51.938349],[0.969269,51.939725],[0.972119,51.94018],[0.974511,51.939874],[0.975676,51.940254],[0.985528,51.939737],[0.993868,51.937591],[0.994979,51.937625],[0.997104,51.936922],[0.99947,51.936632],[1.001681,51.935543],[1.004201,51.935833],[1.005733,51.935605],[1.005883,51.936716],[1.012558,51.939658],[1.01563,51.94178],[1.01849,51.943028],[1.02282,51.946459],[1.023547,51.948028],[1.023147,51.948883],[1.02515,51.950644],[1.026833,51.954016],[1.02522,51.953955],[1.024712,51.954902]]]]},"properties":{"LAD22CD":"E07000071","LAD22NM":"Colchester","BNG_E":596944,"BNG_N":223693,"LONG":0.859777,"LAT":51.87702,"GlobalID":"be4cec30-bcbd-4935-a15c-757d0d26436a"},"id":97}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.3467,51.767596],[0.340548,51.767318],[0.338853,51.767906],[0.336109,51.768312],[0.327298,51.769169],[0.323813,51.770053],[0.321639,51.769933],[0.322349,51.772025],[0.319598,51.772604],[0.318469,51.769935],[0.312966,51.768842],[0.312288,51.770328],[0.307909,51.770178],[0.307302,51.769907],[0.303305,51.771575],[0.299365,51.77186],[0.298596,51.773724],[0.299145,51.774334],[0.302053,51.775442],[0.30283,51.777407],[0.302335,51.778717],[0.299999,51.779097],[0.296456,51.780561],[0.297273,51.782062],[0.29685,51.782603],[0.298289,51.783342],[0.298344,51.785437],[0.297899,51.787702],[0.296729,51.788786],[0.29746,51.789966],[0.295617,51.790265],[0.292607,51.789856],[0.290355,51.789145],[0.287759,51.788926],[0.284466,51.789105],[0.281386,51.789497],[0.280088,51.788931],[0.277699,51.789105],[0.274135,51.787651],[0.267993,51.787164],[0.26759,51.786214],[0.266159,51.785605],[0.263799,51.785274],[0.262509,51.784404],[0.259132,51.784145],[0.258413,51.783595],[0.257499,51.78187],[0.253823,51.781725],[0.250169,51.780887],[0.242615,51.780669],[0.237528,51.779827],[0.236539,51.782198],[0.23684,51.786133],[0.237431,51.786721],[0.240922,51.788397],[0.238343,51.788653],[0.237342,51.787872],[0.23584,51.78861],[0.234914,51.789652],[0.235839,51.791075],[0.23382,51.791039],[0.233095,51.791468],[0.232635,51.793675],[0.231548,51.795161],[0.225797,51.794503],[0.226767,51.795913],[0.222144,51.796844],[0.221983,51.798521],[0.218718,51.798181],[0.212347,51.79696],[0.212896,51.79652],[0.213827,51.794068],[0.210512,51.792705],[0.207443,51.792103],[0.20608,51.79327],[0.20344,51.794086],[0.2018,51.795426],[0.199654,51.796564],[0.19666,51.795791],[0.194154,51.798571],[0.195248,51.800065],[0.195449,51.80113],[0.192593,51.804738],[0.192813,51.806293],[0.192394,51.808077],[0.190773,51.80966],[0.192102,51.812404],[0.192167,51.813694],[0.190023,51.815045],[0.188438,51.819656],[0.184965,51.820116],[0.179864,51.820303],[0.176244,51.82001],[0.17497,51.820531],[0.166251,51.822154],[0.164669,51.81971],[0.164746,51.81923],[0.169305,51.818262],[0.170158,51.819297],[0.173022,51.818881],[0.173305,51.817537],[0.172583,51.816304],[0.170387,51.816562],[0.168,51.814965],[0.167008,51.81328],[0.162269,51.814594],[0.158309,51.813517],[0.158699,51.812388],[0.158187,51.810069],[0.155324,51.807282],[0.155509,51.806462],[0.154074,51.80352],[0.15345,51.803026],[0.151124,51.802738],[0.150454,51.800962],[0.151551,51.7992],[0.150767,51.797049],[0.148174,51.795953],[0.146141,51.796244],[0.145928,51.794598],[0.14742,51.793457],[0.149093,51.793208],[0.151986,51.7942],[0.153569,51.7938],[0.154399,51.792523],[0.152431,51.791614],[0.151557,51.790655],[0.151595,51.789016],[0.153661,51.788747],[0.155037,51.785805],[0.158068,51.785089],[0.162583,51.783575],[0.168019,51.782784],[0.165144,51.778095],[0.162099,51.774239],[0.154635,51.767053],[0.151262,51.763648],[0.148137,51.759071],[0.147396,51.757568],[0.133652,51.753943],[0.133771,51.752931],[0.131901,51.753068],[0.12661,51.752141],[0.126825,51.749125],[0.123503,51.748908],[0.120467,51.747918],[0.119046,51.748291],[0.114467,51.747778],[0.114735,51.746995],[0.108013,51.745505],[0.107468,51.747356],[0.102807,51.745976],[0.102442,51.746295],[0.099656,51.74417],[0.097436,51.743263],[0.099632,51.740576],[0.100341,51.738969],[0.096742,51.738147],[0.092804,51.736222],[0.084293,51.734689],[0.081122,51.738285],[0.080752,51.74139],[0.078904,51.742273],[0.077971,51.741825],[0.076288,51.742829],[0.076963,51.743676],[0.070057,51.74742],[0.069132,51.747099],[0.067045,51.749272],[0.06798,51.751156],[0.063952,51.751453],[0.063464,51.752218],[0.065509,51.75398],[0.06563,51.758215],[0.067466,51.761405],[0.064589,51.761602],[0.063256,51.762064],[0.06295,51.760182],[0.06165,51.760017],[0.060253,51.76186],[0.05846,51.761146],[0.05767,51.76589],[0.054826,51.766432],[0.055296,51.767744],[0.054732,51.770262],[0.055459,51.771357],[0.054069,51.775535],[0.061268,51.778006],[0.06012,51.778389],[0.058781,51.779894],[0.057663,51.779674],[0.054907,51.778285],[0.053341,51.776858],[0.051748,51.776054],[0.046775,51.775319],[0.042314,51.775131],[0.035787,51.775746],[0.030834,51.775198],[0.026799,51.77418],[0.018137,51.769695],[0.017447,51.768733],[0.018044,51.767281],[0.016649,51.766988],[0.015999,51.765602],[0.014029,51.76438],[0.014511,51.76321],[0.013135,51.762858],[0.012082,51.760982],[0.013388,51.758946],[0.012992,51.757465],[0.010078,51.755602],[0.00417,51.755372],[0.002282,51.754179],[0.003263,51.753568],[0.001768,51.745921],[0.001257,51.745136],[-0.004925,51.742081],[-0.007425,51.741733],[-0.01205,51.743001],[-0.013511,51.742217],[-0.013593,51.740971],[-0.012635,51.737611],[-0.013747,51.7354],[-0.012968,51.733394],[-0.013924,51.731444],[-0.013536,51.728387],[-0.01412,51.723121],[-0.0155,51.715328],[-0.017579,51.707403],[-0.019731,51.703274],[-0.018496,51.698434],[-0.016157,51.689891],[-0.011958,51.687075],[-0.010947,51.685552],[-0.011802,51.683935],[-0.011919,51.680878],[-0.011066,51.68087],[-0.010329,51.676665],[-0.011351,51.671918],[-0.011371,51.670702],[-0.010559,51.669137],[-0.011219,51.667606],[-0.011494,51.663891],[-0.009086,51.661009],[-0.008941,51.660218],[-0.01178,51.653035],[-0.011837,51.648848],[-0.012259,51.646234],[-0.009214,51.646528],[-0.007344,51.646162],[-0.008446,51.644498],[-0.008192,51.643609],[-0.006657,51.643333],[-0.00456,51.643538],[-0.003984,51.642717],[-0.000495,51.643711],[0.001067,51.641762],[0.009899,51.64145],[0.017421,51.640258],[0.020079,51.640447],[0.022719,51.641115],[0.023083,51.637718],[0.025159,51.637289],[0.024712,51.636052],[0.025738,51.634565],[0.024329,51.632389],[0.02389,51.630797],[0.021814,51.628827],[0.024588,51.627518],[0.026834,51.625907],[0.029082,51.625113],[0.028963,51.624674],[0.032782,51.622243],[0.037478,51.618326],[0.037545,51.6179],[0.040214,51.616411],[0.040787,51.615729],[0.043705,51.616942],[0.04786,51.617411],[0.053098,51.618423],[0.054391,51.6176],[0.05343,51.616341],[0.052001,51.616809],[0.050176,51.616391],[0.048483,51.614981],[0.048921,51.613571],[0.052631,51.612015],[0.060698,51.608277],[0.062999,51.606912],[0.064011,51.607225],[0.065967,51.606321],[0.072824,51.60469],[0.07917,51.607047],[0.084475,51.606359],[0.087145,51.604467],[0.088922,51.604854],[0.08963,51.605518],[0.092581,51.606197],[0.091714,51.60748],[0.092651,51.609477],[0.093717,51.609755],[0.094692,51.610747],[0.093641,51.61248],[0.092285,51.613574],[0.098068,51.615422],[0.100168,51.612725],[0.103414,51.613454],[0.103838,51.612551],[0.109632,51.613962],[0.116715,51.616922],[0.118606,51.615367],[0.119307,51.615368],[0.124198,51.617506],[0.126098,51.619643],[0.128879,51.620698],[0.129187,51.621443],[0.13581,51.623547],[0.138184,51.623545],[0.151073,51.623247],[0.155545,51.62334],[0.16253,51.622577],[0.165841,51.622379],[0.168901,51.62142],[0.175304,51.623588],[0.180397,51.624473],[0.180612,51.625736],[0.182785,51.625726],[0.185932,51.624373],[0.185997,51.625522],[0.189814,51.625104],[0.194775,51.625715],[0.200311,51.624936],[0.199352,51.63127],[0.196948,51.634335],[0.19606,51.63665],[0.195921,51.638884],[0.194623,51.640979],[0.193238,51.641352],[0.190554,51.642796],[0.188959,51.644464],[0.188443,51.645831],[0.18473,51.648664],[0.177305,51.652126],[0.175702,51.655792],[0.179009,51.656389],[0.180646,51.655049],[0.180703,51.653728],[0.182239,51.653079],[0.184517,51.65409],[0.18657,51.652738],[0.189287,51.65312],[0.191225,51.6527],[0.19299,51.653099],[0.193601,51.654907],[0.192313,51.655657],[0.192446,51.657225],[0.190907,51.65836],[0.190858,51.65982],[0.193075,51.660972],[0.196116,51.660995],[0.19922,51.660459],[0.200927,51.659695],[0.208156,51.660971],[0.208448,51.662395],[0.206935,51.663682],[0.206787,51.664486],[0.208103,51.665235],[0.210593,51.664816],[0.213301,51.665534],[0.213602,51.66659],[0.212691,51.667912],[0.213523,51.668999],[0.213107,51.670645],[0.21386,51.67323],[0.214935,51.673635],[0.215026,51.674853],[0.216055,51.67509],[0.218158,51.674618],[0.220005,51.675387],[0.223633,51.675418],[0.226079,51.675009],[0.227493,51.674294],[0.229437,51.674699],[0.231684,51.673596],[0.236168,51.673543],[0.239002,51.674109],[0.240087,51.67566],[0.239067,51.676901],[0.235998,51.67805],[0.233726,51.679349],[0.232184,51.683358],[0.233495,51.684404],[0.235434,51.684663],[0.236728,51.683622],[0.23845,51.682868],[0.240226,51.682751],[0.240336,51.683554],[0.243198,51.685001],[0.242738,51.685499],[0.244398,51.68773],[0.248857,51.689192],[0.251944,51.689002],[0.252935,51.689903],[0.254312,51.689838],[0.255199,51.690454],[0.25495,51.692308],[0.257082,51.694032],[0.257778,51.695806],[0.257014,51.696595],[0.263514,51.699225],[0.265739,51.699707],[0.266282,51.698749],[0.265726,51.698144],[0.266356,51.696211],[0.266868,51.695819],[0.269908,51.696662],[0.272932,51.696448],[0.273969,51.696897],[0.275889,51.695445],[0.279671,51.693643],[0.283478,51.694111],[0.284654,51.69335],[0.283913,51.69272],[0.28867,51.690497],[0.292632,51.687293],[0.291821,51.686295],[0.293896,51.686432],[0.297226,51.684417],[0.29876,51.682655],[0.302125,51.680965],[0.303189,51.681788],[0.303426,51.682727],[0.305058,51.684811],[0.303892,51.685283],[0.305598,51.688049],[0.305717,51.689036],[0.306893,51.6902],[0.30742,51.691884],[0.307456,51.694291],[0.313531,51.702211],[0.321256,51.708286],[0.323826,51.709795],[0.32377,51.710334],[0.321704,51.711348],[0.322003,51.712157],[0.323372,51.713268],[0.323062,51.714168],[0.324587,51.714316],[0.330037,51.716431],[0.333999,51.717013],[0.333539,51.718731],[0.335219,51.719169],[0.339086,51.721007],[0.341019,51.72302],[0.342857,51.724182],[0.343431,51.725898],[0.344723,51.727791],[0.347025,51.729417],[0.347507,51.731584],[0.345035,51.735234],[0.345847,51.737914],[0.345558,51.740923],[0.346078,51.741868],[0.344021,51.747471],[0.344151,51.749365],[0.341114,51.752012],[0.342549,51.758133],[0.344159,51.760007],[0.344986,51.763438],[0.344968,51.766212],[0.3467,51.767596]]]},"properties":{"LAD22CD":"E07000072","LAD22NM":"Epping Forest","BNG_E":548919,"BNG_N":203759,"LONG":0.154147,"LAT":51.7128,"GlobalID":"e9429b09-f18e-469f-82d2-089f54a8b9b4"},"id":98}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.057663,51.779674],[0.058781,51.779894],[0.06012,51.778389],[0.061268,51.778006],[0.054069,51.775535],[0.055459,51.771357],[0.054732,51.770262],[0.055296,51.767744],[0.054826,51.766432],[0.05767,51.76589],[0.05846,51.761146],[0.060253,51.76186],[0.06165,51.760017],[0.06295,51.760182],[0.063256,51.762064],[0.064589,51.761602],[0.067466,51.761405],[0.06563,51.758215],[0.065509,51.75398],[0.063464,51.752218],[0.063952,51.751453],[0.06798,51.751156],[0.067045,51.749272],[0.069132,51.747099],[0.070057,51.74742],[0.076963,51.743676],[0.076288,51.742829],[0.077971,51.741825],[0.078904,51.742273],[0.080752,51.74139],[0.081122,51.738285],[0.084293,51.734689],[0.092804,51.736222],[0.096742,51.738147],[0.100341,51.738969],[0.099632,51.740576],[0.097436,51.743263],[0.099656,51.74417],[0.102442,51.746295],[0.102807,51.745976],[0.107468,51.747356],[0.108013,51.745505],[0.114735,51.746995],[0.114467,51.747778],[0.119046,51.748291],[0.120467,51.747918],[0.123503,51.748908],[0.126825,51.749125],[0.12661,51.752141],[0.131901,51.753068],[0.133771,51.752931],[0.133652,51.753943],[0.147396,51.757568],[0.148137,51.759071],[0.151262,51.763648],[0.154635,51.767053],[0.162099,51.774239],[0.165144,51.778095],[0.168019,51.782784],[0.162583,51.783575],[0.158068,51.785089],[0.155037,51.785805],[0.153661,51.788747],[0.151595,51.789016],[0.151557,51.790655],[0.152431,51.791614],[0.154399,51.792523],[0.153569,51.7938],[0.151986,51.7942],[0.149093,51.793208],[0.14742,51.793457],[0.145928,51.794598],[0.146141,51.796244],[0.144003,51.797205],[0.141452,51.797213],[0.13893,51.795747],[0.135857,51.795047],[0.132452,51.795853],[0.129161,51.79588],[0.128908,51.795306],[0.125433,51.7945],[0.123881,51.793681],[0.122043,51.791243],[0.12052,51.790176],[0.118707,51.790068],[0.115375,51.788704],[0.111153,51.788451],[0.10732,51.78794],[0.103572,51.785091],[0.10216,51.784916],[0.100997,51.783952],[0.099254,51.783231],[0.096923,51.783602],[0.095725,51.783406],[0.09256,51.784512],[0.090967,51.78407],[0.089014,51.784264],[0.087197,51.783561],[0.085994,51.783817],[0.084618,51.783381],[0.080691,51.783583],[0.079691,51.782962],[0.077054,51.782472],[0.069831,51.783318],[0.068254,51.783939],[0.063683,51.783953],[0.060869,51.783527],[0.059729,51.782942],[0.057663,51.779674]]]},"properties":{"LAD22CD":"E07000073","LAD22NM":"Harlow","BNG_E":545276,"BNG_N":209589,"LONG":0.103888,"LAT":51.76614,"GlobalID":"8c4895bb-fcbc-49d4-b73c-a78e649b1fa3"},"id":99}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.743302,51.635043],[0.739998,51.635719],[0.73931,51.634753],[0.743302,51.635043]]],[[[0.670161,51.638],[0.667522,51.638725],[0.664857,51.638698],[0.664477,51.637073],[0.670354,51.637108],[0.670161,51.638]]],[[[0.732228,51.637661],[0.729438,51.637486],[0.731317,51.636436],[0.732228,51.637661]]],[[[0.738948,51.638682],[0.738473,51.638268],[0.736206,51.638337],[0.735631,51.637576],[0.737943,51.637473],[0.738948,51.638682]]],[[[0.747293,51.63817],[0.745597,51.63875],[0.739078,51.638679],[0.738734,51.637421],[0.741743,51.636581],[0.742158,51.63566],[0.74451,51.635143],[0.746508,51.635159],[0.748508,51.636044],[0.748548,51.636728],[0.747293,51.63817]]],[[[0.669264,51.638435],[0.669561,51.639356],[0.667759,51.640666],[0.667157,51.638862],[0.669264,51.638435]]],[[[0.715944,51.638616],[0.714845,51.639621],[0.714089,51.638591],[0.715944,51.638616]]],[[[0.735166,51.639292],[0.732878,51.639466],[0.732257,51.638027],[0.73513,51.637629],[0.735765,51.638187],[0.735166,51.639292]]],[[[0.732031,51.637989],[0.732818,51.639506],[0.729207,51.639704],[0.729338,51.638422],[0.730961,51.637788],[0.732031,51.637989]]],[[[0.741703,51.638961],[0.740847,51.639908],[0.739402,51.639677],[0.739509,51.638848],[0.741703,51.638961]]],[[[0.720967,51.639466],[0.720952,51.640373],[0.718097,51.639933],[0.717806,51.638928],[0.720967,51.639466]]],[[[0.755286,51.639469],[0.752947,51.639623],[0.752734,51.638013],[0.755105,51.638751],[0.755286,51.639469]]],[[[0.727944,51.640206],[0.725422,51.640413],[0.724764,51.640065],[0.728372,51.638154],[0.727944,51.640206]]],[[[0.752455,51.640204],[0.751575,51.638129],[0.752465,51.638022],[0.752455,51.640204]]],[[[0.722596,51.640779],[0.719469,51.64123],[0.719806,51.640395],[0.722596,51.640779]]],[[[0.717494,51.64131],[0.715746,51.640405],[0.717919,51.640075],[0.717494,51.64131]]],[[[0.719672,51.640403],[0.719074,51.641327],[0.717644,51.641284],[0.718005,51.640128],[0.719672,51.640403]]],[[[0.719438,51.64144],[0.717154,51.641619],[0.715823,51.641203],[0.713744,51.638526],[0.711754,51.637687],[0.713319,51.637305],[0.720529,51.638832],[0.724192,51.63875],[0.729079,51.637774],[0.729223,51.637327],[0.733648,51.63498],[0.734309,51.636277],[0.735343,51.635782],[0.734549,51.634838],[0.736476,51.63461],[0.735611,51.635744],[0.734578,51.636369],[0.733957,51.637403],[0.732312,51.637642],[0.731329,51.636374],[0.729514,51.637338],[0.729165,51.637876],[0.725219,51.638746],[0.723122,51.639974],[0.721231,51.640346],[0.721038,51.63922],[0.718288,51.638889],[0.713487,51.637365],[0.713665,51.638262],[0.715823,51.641016],[0.716878,51.641344],[0.719438,51.64144]]],[[[0.74623,51.641097],[0.745978,51.639969],[0.746662,51.639242],[0.747968,51.640497],[0.74623,51.641097]]],[[[0.75124,51.642338],[0.750652,51.641358],[0.74692,51.639193],[0.748581,51.637539],[0.749579,51.637765],[0.749469,51.640269],[0.751994,51.641016],[0.752446,51.641473],[0.75551,51.641155],[0.758694,51.641354],[0.757944,51.640068],[0.755979,51.639458],[0.75529,51.638585],[0.7525,51.637559],[0.751345,51.63778],[0.749725,51.636424],[0.753066,51.637003],[0.75509,51.63828],[0.758348,51.639725],[0.762756,51.640341],[0.762195,51.641259],[0.761052,51.641677],[0.756531,51.641556],[0.752072,51.641871],[0.75124,51.642338]]],[[[0.75052,51.642412],[0.747415,51.642239],[0.745217,51.641003],[0.745274,51.639878],[0.739705,51.640356],[0.732437,51.642108],[0.73027,51.642061],[0.728606,51.6413],[0.726813,51.640921],[0.72891,51.63978],[0.733938,51.639558],[0.736874,51.640181],[0.739447,51.639822],[0.740774,51.640017],[0.745499,51.639743],[0.745949,51.641069],[0.748536,51.6423],[0.75052,51.642412]]],[[[0.782442,51.724882],[0.779743,51.725932],[0.78069,51.724492],[0.782442,51.724882]]],[[[0.777019,51.725659],[0.77553,51.726441],[0.772093,51.726639],[0.771991,51.725341],[0.774738,51.725263],[0.775637,51.725595],[0.777019,51.725659]]],[[[0.769754,51.726827],[0.765883,51.726814],[0.763688,51.726229],[0.759571,51.726442],[0.757233,51.726221],[0.756247,51.726723],[0.754635,51.724862],[0.755201,51.723688],[0.756919,51.722571],[0.762683,51.721523],[0.770131,51.719052],[0.772266,51.718677],[0.776775,51.719114],[0.778528,51.719476],[0.779502,51.720204],[0.782533,51.720202],[0.78388,51.721067],[0.785964,51.721837],[0.785846,51.722971],[0.784907,51.723818],[0.783262,51.724226],[0.782772,51.723628],[0.780592,51.723886],[0.777711,51.724957],[0.776263,51.725169],[0.77572,51.725523],[0.774743,51.725198],[0.769202,51.725402],[0.76597,51.72653],[0.770273,51.725489],[0.769754,51.726827]]],[[[0.778658,51.726433],[0.776886,51.726894],[0.77578,51.726424],[0.778816,51.725234],[0.778658,51.726433]]],[[[0.723043,51.729776],[0.721175,51.73065],[0.719314,51.730141],[0.717655,51.728556],[0.716395,51.726021],[0.715288,51.725291],[0.714616,51.723095],[0.713754,51.722131],[0.712387,51.721803],[0.710645,51.720136],[0.708131,51.71964],[0.7119,51.718117],[0.713982,51.718363],[0.716869,51.719278],[0.724099,51.717658],[0.72617,51.717051],[0.729136,51.718405],[0.729659,51.719395],[0.729536,51.721483],[0.730276,51.722329],[0.729203,51.723418],[0.727546,51.723014],[0.725944,51.721715],[0.72458,51.722011],[0.727219,51.723453],[0.729907,51.724577],[0.728334,51.725816],[0.725138,51.726798],[0.724667,51.728235],[0.723043,51.729776]]],[[[0.886013,51.736805],[0.886551,51.737385],[0.885537,51.738479],[0.884057,51.737669],[0.882543,51.735363],[0.880862,51.734449],[0.880127,51.732988],[0.880851,51.732723],[0.883142,51.735174],[0.886013,51.736805]]],[[[0.84383,51.738345],[0.845459,51.73889],[0.842551,51.739621],[0.841804,51.738331],[0.84383,51.738345]]],[[[0.851018,51.746372],[0.849931,51.745569],[0.849905,51.744693],[0.851026,51.744336],[0.851994,51.744738],[0.851445,51.745183],[0.851797,51.745849],[0.851276,51.745891],[0.851018,51.746372]]],[[[0.849351,51.74699],[0.847917,51.74733],[0.847278,51.747118],[0.846913,51.745416],[0.847857,51.745258],[0.849885,51.745961],[0.849351,51.74699]]],[[[0.872374,51.763796],[0.872838,51.763355],[0.876649,51.76209],[0.877816,51.761983],[0.881324,51.760682],[0.883664,51.761149],[0.872374,51.763796]]],[[[0.854386,51.765684],[0.853048,51.764972],[0.853536,51.764261],[0.85253,51.762486],[0.851161,51.761927],[0.852779,51.761296],[0.855916,51.761761],[0.860675,51.764265],[0.857381,51.76543],[0.855607,51.765208],[0.854386,51.765684]]],[[[0.848902,51.766185],[0.847204,51.766465],[0.847055,51.765278],[0.847658,51.765039],[0.84728,51.764789],[0.847487,51.764405],[0.848024,51.764217],[0.848484,51.7638],[0.848921,51.764505],[0.848747,51.765303],[0.850805,51.765404],[0.850917,51.766194],[0.848902,51.766185]]],[[[0.847052,51.7682],[0.845945,51.767553],[0.846623,51.766832],[0.847972,51.766966],[0.847052,51.7682]]],[[[0.89152,51.767908],[0.889133,51.765685],[0.893605,51.766456],[0.89152,51.767908]]],[[[0.850566,51.772816],[0.849455,51.771224],[0.850272,51.770457],[0.85183,51.771165],[0.850566,51.772816]]],[[[0.838019,51.773366],[0.835877,51.771762],[0.833071,51.770046],[0.833491,51.769261],[0.834853,51.76952],[0.835627,51.769353],[0.836539,51.769806],[0.837211,51.769187],[0.840069,51.769683],[0.843052,51.768474],[0.844849,51.769024],[0.846842,51.769106],[0.848814,51.767523],[0.850094,51.76717],[0.854069,51.76773],[0.853328,51.768751],[0.85162,51.769552],[0.84944,51.770066],[0.846809,51.771392],[0.843482,51.771103],[0.842518,51.77221],[0.840532,51.77225],[0.839651,51.773208],[0.838525,51.77298],[0.838019,51.773366]]],[[[0.853025,51.773295],[0.852,51.772707],[0.852026,51.771704],[0.852813,51.770506],[0.855894,51.769999],[0.856383,51.771235],[0.855795,51.77201],[0.856189,51.773298],[0.853025,51.773295]]],[[[0.885706,51.773959],[0.88435,51.773707],[0.885853,51.772676],[0.886681,51.773162],[0.885706,51.773959]]],[[[0.708909,51.818904],[0.704789,51.822686],[0.700937,51.825177],[0.698773,51.828418],[0.69695,51.828662],[0.693116,51.827885],[0.692514,51.826739],[0.690593,51.825655],[0.68923,51.825623],[0.689076,51.824646],[0.690102,51.824069],[0.689496,51.823027],[0.686814,51.8213],[0.684168,51.820958],[0.682102,51.820125],[0.681852,51.819096],[0.682546,51.81846],[0.681604,51.817529],[0.682582,51.816829],[0.681738,51.815717],[0.679855,51.81514],[0.680007,51.814011],[0.678941,51.81377],[0.677633,51.812367],[0.678158,51.810714],[0.676775,51.810032],[0.673362,51.81043],[0.670058,51.809452],[0.669112,51.808367],[0.668455,51.80597],[0.666668,51.805227],[0.664689,51.805323],[0.662443,51.806238],[0.661024,51.806235],[0.659756,51.805677],[0.659201,51.804827],[0.659833,51.803625],[0.656689,51.80152],[0.654296,51.797922],[0.654629,51.797115],[0.6535,51.795601],[0.655348,51.793849],[0.655952,51.792439],[0.655914,51.790895],[0.654991,51.789225],[0.653125,51.788441],[0.651108,51.784833],[0.645761,51.783097],[0.644654,51.7816],[0.640592,51.779652],[0.637073,51.777213],[0.633958,51.777613],[0.63368,51.777154],[0.632551,51.772654],[0.632681,51.771623],[0.636834,51.770342],[0.638301,51.770352],[0.638418,51.768826],[0.63642,51.768309],[0.63756,51.766802],[0.639214,51.76678],[0.640058,51.767843],[0.64187,51.767053],[0.643496,51.766872],[0.645195,51.764247],[0.647117,51.763847],[0.648315,51.761996],[0.647053,51.761793],[0.645663,51.760897],[0.639486,51.760047],[0.638552,51.759655],[0.637538,51.757648],[0.635337,51.75833],[0.635919,51.759813],[0.635189,51.760043],[0.634983,51.761434],[0.6338,51.761459],[0.633359,51.760151],[0.630612,51.761042],[0.629885,51.761989],[0.627958,51.761537],[0.624992,51.761965],[0.623097,51.76131],[0.619629,51.760842],[0.618125,51.760286],[0.618692,51.758548],[0.615013,51.758093],[0.6139,51.758751],[0.614381,51.760824],[0.611081,51.760401],[0.60863,51.759301],[0.606748,51.758943],[0.604272,51.757469],[0.605189,51.756342],[0.604381,51.754841],[0.60262,51.753714],[0.600463,51.753276],[0.598849,51.75127],[0.59499,51.753936],[0.594885,51.755004],[0.593365,51.755449],[0.592509,51.754161],[0.591694,51.751315],[0.592125,51.748675],[0.591805,51.745665],[0.593011,51.739354],[0.595158,51.734061],[0.59181,51.733698],[0.589129,51.731821],[0.589498,51.730173],[0.59119,51.728203],[0.595367,51.725783],[0.604109,51.724944],[0.607339,51.723468],[0.6103,51.723337],[0.611153,51.722787],[0.608856,51.719512],[0.60523,51.715909],[0.604016,51.713733],[0.602074,51.711681],[0.602012,51.708851],[0.603786,51.70507],[0.60299,51.702921],[0.604564,51.700388],[0.607111,51.700628],[0.610362,51.70057],[0.612585,51.698799],[0.611185,51.696383],[0.612257,51.69494],[0.610905,51.694239],[0.610562,51.689761],[0.611303,51.689427],[0.612389,51.687315],[0.612204,51.685538],[0.611152,51.684098],[0.609159,51.684206],[0.608837,51.681947],[0.611227,51.680556],[0.613239,51.680232],[0.615054,51.678945],[0.617851,51.677579],[0.619766,51.67534],[0.619744,51.673562],[0.619217,51.673318],[0.619516,51.670414],[0.620927,51.667793],[0.623322,51.665625],[0.623326,51.662277],[0.624099,51.661571],[0.625271,51.658984],[0.626426,51.658075],[0.626119,51.6575],[0.628443,51.645941],[0.62755,51.644833],[0.629161,51.642882],[0.629024,51.641616],[0.629473,51.639633],[0.633058,51.639866],[0.633919,51.64035],[0.636263,51.639692],[0.640497,51.639497],[0.646695,51.638212],[0.652879,51.63837],[0.657813,51.637847],[0.658909,51.639123],[0.658459,51.643476],[0.656977,51.644372],[0.653496,51.644968],[0.652672,51.645632],[0.650487,51.645736],[0.649054,51.646648],[0.649839,51.648414],[0.651038,51.647965],[0.650995,51.647081],[0.656442,51.645745],[0.656902,51.645811],[0.660085,51.64422],[0.661845,51.644903],[0.661791,51.643639],[0.665263,51.642425],[0.664767,51.64193],[0.660409,51.643279],[0.659918,51.643068],[0.660527,51.639305],[0.660252,51.637914],[0.660732,51.637325],[0.663308,51.63698],[0.664561,51.639048],[0.667046,51.638984],[0.667679,51.640854],[0.669774,51.639404],[0.669338,51.638271],[0.671545,51.638092],[0.67151,51.638742],[0.673232,51.639377],[0.675419,51.638689],[0.67544,51.637447],[0.676124,51.636997],[0.678574,51.636679],[0.685222,51.637225],[0.687562,51.6372],[0.688289,51.637865],[0.692013,51.637074],[0.694438,51.638877],[0.695906,51.639331],[0.699373,51.637391],[0.701501,51.636899],[0.708539,51.636744],[0.709576,51.637094],[0.711716,51.640814],[0.717011,51.643089],[0.72249,51.642892],[0.726494,51.642167],[0.73095,51.64309],[0.734554,51.642649],[0.738133,51.64169],[0.741871,51.641321],[0.743817,51.641857],[0.746105,51.64312],[0.748984,51.643784],[0.754772,51.642767],[0.756551,51.643077],[0.761649,51.642717],[0.763468,51.64215],[0.764672,51.64104],[0.771128,51.638772],[0.771506,51.638284],[0.773712,51.637623],[0.780017,51.634302],[0.783644,51.630885],[0.785166,51.629803],[0.789931,51.626987],[0.795122,51.625509],[0.797438,51.625337],[0.803016,51.625894],[0.802455,51.626376],[0.802088,51.628756],[0.803385,51.629092],[0.80509,51.628931],[0.80544,51.626748],[0.807525,51.626246],[0.814912,51.625436],[0.816311,51.625395],[0.818259,51.624584],[0.821525,51.623934],[0.823029,51.623236],[0.833358,51.622568],[0.837783,51.62346],[0.841253,51.622649],[0.841988,51.622919],[0.853897,51.621566],[0.859509,51.621333],[0.865248,51.622036],[0.867307,51.622597],[0.872727,51.623118],[0.876526,51.623114],[0.877283,51.623455],[0.883155,51.623378],[0.88539,51.623599],[0.888016,51.622854],[0.891041,51.624053],[0.894241,51.622991],[0.896933,51.623067],[0.904209,51.622534],[0.908023,51.623648],[0.911471,51.624264],[0.915278,51.625933],[0.915563,51.625732],[0.921519,51.627501],[0.92374,51.62839],[0.92526,51.629456],[0.926457,51.629023],[0.934451,51.632837],[0.936989,51.636224],[0.937083,51.640399],[0.934839,51.64525],[0.9355,51.650265],[0.936906,51.651612],[0.93676,51.653022],[0.938395,51.653421],[0.939064,51.655296],[0.938344,51.656557],[0.939469,51.657457],[0.939145,51.658388],[0.939985,51.659764],[0.94162,51.660828],[0.940953,51.662213],[0.942227,51.664076],[0.94127,51.665587],[0.942552,51.669278],[0.942082,51.670402],[0.942795,51.672845],[0.944219,51.673366],[0.94377,51.674429],[0.946371,51.675609],[0.944493,51.677441],[0.946524,51.678846],[0.946069,51.679772],[0.94098,51.679777],[0.941422,51.680248],[0.945014,51.680098],[0.94747,51.681062],[0.947144,51.682708],[0.948693,51.683261],[0.948106,51.684209],[0.946838,51.684879],[0.947075,51.687162],[0.946478,51.687686],[0.946606,51.688986],[0.944563,51.690613],[0.944718,51.691189],[0.943454,51.692206],[0.94264,51.693958],[0.941349,51.694818],[0.940729,51.696255],[0.940557,51.697858],[0.939826,51.698937],[0.940783,51.701611],[0.941928,51.704026],[0.943763,51.705497],[0.944116,51.707366],[0.942848,51.7094],[0.94284,51.710837],[0.943631,51.713104],[0.944896,51.715808],[0.946115,51.716512],[0.947061,51.719741],[0.947947,51.720593],[0.949101,51.723171],[0.948281,51.723803],[0.948116,51.727772],[0.948801,51.731095],[0.947535,51.732698],[0.945677,51.733218],[0.94616,51.735027],[0.944057,51.736035],[0.94303,51.737512],[0.94026,51.739908],[0.938975,51.742333],[0.933969,51.744217],[0.930333,51.746602],[0.922215,51.748453],[0.920772,51.748372],[0.919059,51.747434],[0.914573,51.746935],[0.911768,51.746372],[0.90926,51.746383],[0.904279,51.745767],[0.899585,51.744846],[0.894596,51.743205],[0.890856,51.741383],[0.88876,51.739129],[0.8899,51.73712],[0.887408,51.73559],[0.88733,51.734417],[0.885936,51.734564],[0.884924,51.733639],[0.886259,51.732996],[0.884023,51.731082],[0.882651,51.731895],[0.878644,51.72855],[0.877734,51.727193],[0.876148,51.726369],[0.876076,51.725662],[0.873916,51.725355],[0.870846,51.723718],[0.868926,51.721932],[0.86754,51.721934],[0.860988,51.719522],[0.860649,51.718913],[0.85545,51.717738],[0.854565,51.717177],[0.852321,51.717046],[0.851223,51.715607],[0.850387,51.716448],[0.849163,51.715908],[0.848023,51.716517],[0.840252,51.715598],[0.839472,51.715821],[0.833841,51.715084],[0.83213,51.715679],[0.830662,51.716783],[0.824357,51.720212],[0.819711,51.721081],[0.812622,51.719662],[0.805904,51.717737],[0.801768,51.718808],[0.794956,51.718524],[0.793142,51.717881],[0.792488,51.717038],[0.791984,51.71351],[0.792372,51.713025],[0.792106,51.710233],[0.793805,51.710098],[0.795138,51.708481],[0.793647,51.707516],[0.79295,51.708849],[0.790821,51.709057],[0.789461,51.708337],[0.789039,51.707318],[0.786264,51.706827],[0.785295,51.707752],[0.782517,51.707657],[0.780256,51.706327],[0.778968,51.706239],[0.776266,51.705183],[0.774273,51.704926],[0.771582,51.704061],[0.774244,51.702949],[0.775438,51.701585],[0.774754,51.700126],[0.775837,51.698026],[0.774443,51.696798],[0.773993,51.693506],[0.775031,51.693062],[0.777427,51.693177],[0.776454,51.690872],[0.773983,51.691451],[0.773789,51.692601],[0.773006,51.693378],[0.772718,51.695184],[0.772866,51.697091],[0.77334,51.698167],[0.772681,51.700048],[0.773094,51.701385],[0.769166,51.702329],[0.767375,51.702209],[0.764966,51.701272],[0.762523,51.700893],[0.759214,51.699863],[0.758257,51.697696],[0.759203,51.695777],[0.759405,51.693575],[0.757911,51.692356],[0.755243,51.691505],[0.753987,51.691674],[0.754309,51.689839],[0.751229,51.688504],[0.748554,51.688438],[0.746939,51.688714],[0.74682,51.690146],[0.746206,51.690566],[0.742469,51.688958],[0.740905,51.687189],[0.738328,51.686973],[0.737606,51.689298],[0.739712,51.690091],[0.739628,51.691081],[0.737936,51.692229],[0.738268,51.693739],[0.739956,51.69344],[0.738619,51.69223],[0.739217,51.691511],[0.742074,51.692424],[0.745094,51.69199],[0.748283,51.690957],[0.74706,51.693206],[0.748387,51.694737],[0.753726,51.694924],[0.754238,51.695359],[0.754442,51.697858],[0.75308,51.699284],[0.751887,51.699597],[0.751804,51.70053],[0.753431,51.700724],[0.755194,51.702423],[0.75515,51.702838],[0.760125,51.703842],[0.762149,51.705035],[0.763592,51.706696],[0.763286,51.707838],[0.76055,51.708924],[0.75657,51.709385],[0.754667,51.709998],[0.749576,51.707758],[0.749125,51.708295],[0.75102,51.709085],[0.750783,51.709619],[0.748652,51.709587],[0.74803,51.710273],[0.746523,51.7096],[0.746158,51.708259],[0.74446,51.709362],[0.744587,51.709979],[0.746974,51.710261],[0.745728,51.711509],[0.744318,51.71087],[0.740039,51.711761],[0.738954,51.712363],[0.736814,51.711743],[0.735043,51.712785],[0.732775,51.712961],[0.729855,51.712584],[0.729173,51.713027],[0.726876,51.713216],[0.722051,51.714297],[0.71993,51.715723],[0.717823,51.716241],[0.715597,51.716018],[0.713271,51.715327],[0.709903,51.716345],[0.709041,51.717415],[0.706951,51.71823],[0.703569,51.720862],[0.70042,51.721456],[0.700232,51.722371],[0.697474,51.722742],[0.698096,51.723287],[0.697101,51.724332],[0.698466,51.724998],[0.697068,51.726486],[0.691786,51.726744],[0.689375,51.727895],[0.688715,51.728551],[0.687425,51.73142],[0.686315,51.732069],[0.678831,51.734305],[0.676826,51.73425],[0.67469,51.735437],[0.672339,51.735885],[0.668196,51.73725],[0.663832,51.739194],[0.66385,51.74132],[0.66508,51.741184],[0.664155,51.739359],[0.667875,51.737812],[0.673144,51.736129],[0.675059,51.736401],[0.677149,51.734638],[0.680512,51.734277],[0.685256,51.733049],[0.685916,51.734234],[0.687367,51.733741],[0.686457,51.733048],[0.690498,51.730979],[0.692299,51.729776],[0.693594,51.730307],[0.695073,51.729359],[0.701936,51.727581],[0.7035,51.727451],[0.703656,51.725463],[0.704839,51.724223],[0.70584,51.72398],[0.707921,51.724784],[0.708287,51.726281],[0.709991,51.728797],[0.710348,51.729902],[0.71244,51.731136],[0.71457,51.734088],[0.714602,51.734986],[0.711697,51.73519],[0.712242,51.73697],[0.713726,51.737606],[0.715134,51.737323],[0.715562,51.736642],[0.718173,51.736713],[0.72159,51.736236],[0.727049,51.733662],[0.730594,51.731134],[0.732334,51.730821],[0.735769,51.729484],[0.737789,51.730468],[0.737747,51.732869],[0.739078,51.733001],[0.740695,51.7323],[0.741146,51.731543],[0.744662,51.730909],[0.746128,51.731076],[0.750529,51.73251],[0.750009,51.734598],[0.74774,51.735338],[0.744361,51.734551],[0.744999,51.736445],[0.746091,51.736753],[0.754307,51.735044],[0.755176,51.735304],[0.757991,51.737267],[0.759806,51.7375],[0.763177,51.738712],[0.763096,51.74033],[0.764729,51.740667],[0.767458,51.738892],[0.770243,51.738798],[0.771927,51.739315],[0.771405,51.740872],[0.771874,51.741857],[0.773827,51.742773],[0.775701,51.743035],[0.776743,51.743983],[0.777571,51.742956],[0.777424,51.741363],[0.776342,51.740783],[0.778564,51.739313],[0.781157,51.738179],[0.788632,51.736653],[0.791876,51.7387],[0.796736,51.740048],[0.79542,51.740804],[0.792567,51.740452],[0.791564,51.739519],[0.790119,51.740023],[0.789966,51.742308],[0.791434,51.742792],[0.791545,51.744733],[0.794518,51.74384],[0.797162,51.742349],[0.798657,51.74227],[0.804219,51.740839],[0.80565,51.741128],[0.810138,51.739745],[0.811116,51.738843],[0.813074,51.739068],[0.813535,51.738572],[0.821679,51.738813],[0.823012,51.739946],[0.825233,51.738437],[0.832017,51.738752],[0.833942,51.739169],[0.834763,51.738797],[0.838969,51.738398],[0.841447,51.738741],[0.842847,51.740826],[0.84459,51.74007],[0.847749,51.740299],[0.849787,51.741187],[0.852465,51.741634],[0.853053,51.742109],[0.852231,51.743513],[0.847621,51.744644],[0.846734,51.745473],[0.847182,51.747156],[0.847456,51.747488],[0.850214,51.747389],[0.851026,51.746499],[0.851302,51.745916],[0.85185,51.74586],[0.851572,51.745185],[0.852535,51.745248],[0.854714,51.743707],[0.856631,51.744583],[0.858534,51.744696],[0.861356,51.746041],[0.863172,51.748012],[0.865417,51.74874],[0.868081,51.750374],[0.870434,51.75131],[0.869907,51.7519],[0.872369,51.75312],[0.874064,51.753648],[0.878226,51.756003],[0.880111,51.756295],[0.880815,51.756953],[0.882686,51.757617],[0.878232,51.758453],[0.876746,51.758345],[0.873116,51.759649],[0.871503,51.759538],[0.868739,51.761205],[0.864073,51.762386],[0.862007,51.762407],[0.861581,51.763097],[0.856985,51.761326],[0.858211,51.759925],[0.857082,51.759541],[0.856256,51.760331],[0.854643,51.759598],[0.855232,51.758574],[0.852178,51.757202],[0.85045,51.757026],[0.849283,51.7577],[0.85128,51.75861],[0.848399,51.760422],[0.84884,51.761946],[0.849505,51.762362],[0.849756,51.763884],[0.852067,51.764058],[0.852052,51.764713],[0.849453,51.765209],[0.84892,51.763306],[0.847756,51.764286],[0.846756,51.763997],[0.847309,51.765],[0.846076,51.764791],[0.845808,51.764389],[0.84273,51.765187],[0.84518,51.766946],[0.844324,51.767875],[0.842678,51.768068],[0.84099,51.769289],[0.837092,51.769115],[0.836471,51.769758],[0.835768,51.769343],[0.836037,51.768832],[0.83506,51.769473],[0.83357,51.769214],[0.833237,51.769296],[0.833214,51.769738],[0.832907,51.770021],[0.832991,51.770398],[0.835075,51.771341],[0.837605,51.773157],[0.83672,51.773528],[0.837626,51.774047],[0.838744,51.773499],[0.83989,51.77368],[0.840428,51.772758],[0.841455,51.773115],[0.840138,51.773721],[0.844806,51.773747],[0.846796,51.772776],[0.848606,51.772595],[0.850886,51.77331],[0.851263,51.774136],[0.853244,51.774471],[0.854587,51.774151],[0.856321,51.774961],[0.857481,51.775044],[0.858389,51.773345],[0.860194,51.773005],[0.85947,51.769778],[0.860724,51.768716],[0.867061,51.768123],[0.868033,51.768514],[0.870514,51.76829],[0.872217,51.767598],[0.872788,51.766633],[0.875083,51.766192],[0.875512,51.765733],[0.879349,51.764651],[0.883651,51.763814],[0.885949,51.763807],[0.887773,51.764633],[0.890734,51.767352],[0.890594,51.767861],[0.88805,51.767633],[0.884922,51.768221],[0.884998,51.769666],[0.88651,51.770805],[0.889714,51.769782],[0.887882,51.771951],[0.88663,51.770893],[0.883163,51.774987],[0.877254,51.779348],[0.871418,51.779892],[0.863573,51.782215],[0.859344,51.782294],[0.857826,51.783993],[0.849869,51.782788],[0.845775,51.781041],[0.84466,51.780005],[0.843348,51.780734],[0.842439,51.77946],[0.840239,51.779256],[0.839358,51.779681],[0.836697,51.779603],[0.834492,51.782687],[0.825669,51.783528],[0.823497,51.784855],[0.821793,51.785199],[0.819629,51.786142],[0.816158,51.786363],[0.816339,51.78754],[0.803929,51.789705],[0.80573,51.791948],[0.811567,51.790123],[0.815929,51.789247],[0.816676,51.791041],[0.813404,51.791555],[0.810661,51.792896],[0.808111,51.793319],[0.809923,51.795052],[0.811855,51.799119],[0.809024,51.799832],[0.808955,51.800421],[0.801147,51.801482],[0.797929,51.803991],[0.794794,51.80426],[0.793085,51.805006],[0.790632,51.806856],[0.77909,51.811563],[0.774892,51.808917],[0.774294,51.807906],[0.772174,51.807353],[0.770371,51.80591],[0.768622,51.805858],[0.7634,51.80324],[0.760326,51.802996],[0.759344,51.802327],[0.75423,51.800969],[0.746495,51.799452],[0.742862,51.80021],[0.737648,51.798551],[0.733854,51.798418],[0.733638,51.79933],[0.726857,51.797494],[0.722626,51.797279],[0.721568,51.796506],[0.718171,51.797363],[0.718807,51.79837],[0.7185,51.800837],[0.71902,51.802007],[0.7187,51.804199],[0.719036,51.805162],[0.717357,51.806958],[0.71333,51.80846],[0.715055,51.810516],[0.716388,51.810266],[0.717316,51.81077],[0.720175,51.809813],[0.721663,51.810005],[0.717111,51.812595],[0.71313,51.815855],[0.710566,51.817193],[0.709862,51.818443],[0.708909,51.818904]]]]},"properties":{"LAD22CD":"E07000074","LAD22NM":"Maldon","BNG_E":591413,"BNG_N":212072,"LONG":0.773106,"LAT":51.77458,"GlobalID":"c423ea7f-5f72-4f98-bc3c-141b7a25aaa3"},"id":100}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.833906,51.570026],[0.833764,51.572593],[0.832185,51.574282],[0.831335,51.573269],[0.828924,51.572258],[0.827229,51.569936],[0.824676,51.568759],[0.82661,51.568617],[0.825239,51.566132],[0.825779,51.564467],[0.829598,51.562793],[0.830506,51.560822],[0.831408,51.56023],[0.834602,51.560397],[0.835024,51.56073],[0.840283,51.56087],[0.839056,51.56228],[0.837799,51.565285],[0.834842,51.566571],[0.834357,51.567068],[0.833906,51.570026]]],[[[0.834744,51.590286],[0.834709,51.591971],[0.836353,51.594903],[0.830144,51.595966],[0.826797,51.596006],[0.822763,51.595597],[0.818339,51.594114],[0.812189,51.590131],[0.809595,51.587694],[0.808066,51.585627],[0.809566,51.581119],[0.809381,51.579116],[0.81069,51.578373],[0.814353,51.577891],[0.815574,51.576938],[0.815818,51.573376],[0.818176,51.571854],[0.819496,51.569628],[0.818381,51.56764],[0.82002,51.566423],[0.820696,51.565453],[0.822949,51.564882],[0.824116,51.565839],[0.823279,51.568388],[0.823524,51.569325],[0.826173,51.570583],[0.826885,51.57256],[0.829767,51.57414],[0.830414,51.576507],[0.831524,51.578117],[0.834238,51.581404],[0.834008,51.58164],[0.836701,51.583412],[0.837491,51.585177],[0.83616,51.587952],[0.834744,51.590286]]],[[[0.866155,51.599717],[0.866149,51.601347],[0.86341,51.600758],[0.86287,51.59981],[0.861366,51.599006],[0.858527,51.598947],[0.857872,51.598154],[0.860497,51.597825],[0.857474,51.597061],[0.856165,51.595701],[0.860513,51.595769],[0.86316,51.596321],[0.865267,51.597632],[0.866155,51.599717]]],[[[0.864215,51.607689],[0.861521,51.607551],[0.860927,51.605099],[0.860156,51.604692],[0.862085,51.603144],[0.863442,51.602694],[0.865761,51.602484],[0.864215,51.607689]]],[[[0.852229,51.609647],[0.850526,51.610635],[0.84765,51.611134],[0.848132,51.610278],[0.849598,51.609561],[0.852229,51.609647]]],[[[0.564132,51.620391],[0.564501,51.62119],[0.565052,51.621583],[0.563765,51.621341],[0.564132,51.620391]]],[[[0.825442,51.618415],[0.822101,51.618658],[0.821077,51.618299],[0.821891,51.617114],[0.825442,51.618415]]],[[[0.647464,51.625593],[0.647085,51.625982],[0.644176,51.625851],[0.644179,51.624924],[0.647697,51.625103],[0.647464,51.625593]]],[[[0.649719,51.623894],[0.651338,51.624156],[0.65164,51.625069],[0.650321,51.625967],[0.649237,51.62559],[0.648534,51.624577],[0.649719,51.623894]]],[[[0.945511,51.620568],[0.941778,51.620338],[0.938827,51.619947],[0.932912,51.618406],[0.929273,51.616476],[0.92292,51.617268],[0.918182,51.615869],[0.915185,51.616453],[0.912893,51.615341],[0.909128,51.614656],[0.906615,51.614693],[0.904503,51.615166],[0.903083,51.614083],[0.900314,51.613652],[0.898995,51.614081],[0.898282,51.614894],[0.895688,51.614466],[0.89317,51.615177],[0.889911,51.615622],[0.882107,51.616117],[0.878655,51.615714],[0.873621,51.613729],[0.871591,51.611314],[0.872287,51.610719],[0.871446,51.609354],[0.871879,51.608915],[0.871178,51.606323],[0.87122,51.601769],[0.869737,51.59811],[0.870216,51.597748],[0.866848,51.595203],[0.862808,51.593442],[0.85915,51.592515],[0.85268,51.592608],[0.849485,51.592985],[0.848702,51.592797],[0.845111,51.593716],[0.840295,51.594421],[0.838783,51.594257],[0.837677,51.592615],[0.838128,51.589302],[0.83971,51.587802],[0.840755,51.584753],[0.84009,51.581981],[0.840987,51.582061],[0.843622,51.583291],[0.846335,51.582717],[0.847938,51.581026],[0.847609,51.579501],[0.848389,51.578335],[0.853645,51.577454],[0.856458,51.577655],[0.858436,51.576933],[0.859504,51.573804],[0.86343,51.571889],[0.862855,51.571248],[0.860462,51.572162],[0.858522,51.573641],[0.857305,51.576412],[0.849114,51.577189],[0.847684,51.577707],[0.84615,51.578932],[0.845781,51.58002],[0.846313,51.581624],[0.843825,51.582497],[0.841813,51.581289],[0.838684,51.5815],[0.83795,51.580404],[0.838843,51.578712],[0.837533,51.57814],[0.836277,51.580282],[0.832822,51.575747],[0.835291,51.572464],[0.83584,51.566897],[0.838838,51.56521],[0.838907,51.563697],[0.840227,51.561592],[0.842187,51.560668],[0.852735,51.557422],[0.853555,51.556924],[0.855026,51.557371],[0.856519,51.556537],[0.859108,51.556987],[0.86072,51.557774],[0.863737,51.558396],[0.864985,51.559392],[0.867698,51.560176],[0.870916,51.562248],[0.871818,51.563905],[0.874203,51.564645],[0.87733,51.566277],[0.880428,51.567549],[0.881386,51.56869],[0.884549,51.569651],[0.886302,51.569742],[0.887183,51.570624],[0.889132,51.57127],[0.89077,51.572496],[0.89383,51.573569],[0.894862,51.574519],[0.897152,51.575051],[0.89921,51.576359],[0.904587,51.579338],[0.910793,51.582112],[0.910948,51.582445],[0.918388,51.586368],[0.925768,51.591281],[0.926609,51.591612],[0.930522,51.594243],[0.931871,51.594808],[0.932815,51.595947],[0.936822,51.598616],[0.936998,51.59917],[0.941043,51.602251],[0.942088,51.603609],[0.943455,51.604035],[0.945853,51.60651],[0.946672,51.60652],[0.947668,51.608368],[0.949175,51.608627],[0.949312,51.609521],[0.950813,51.610758],[0.95203,51.612514],[0.95371,51.613059],[0.957064,51.616894],[0.958392,51.619825],[0.952831,51.619558],[0.945511,51.620568]]],[[[0.650436,51.626207],[0.65019,51.628506],[0.648597,51.628188],[0.648387,51.625623],[0.650436,51.626207]]],[[[0.64774,51.626629],[0.648137,51.626655],[0.647965,51.62962],[0.646306,51.629618],[0.645261,51.629098],[0.645861,51.62821],[0.645799,51.627516],[0.64774,51.626629]]],[[[0.650499,51.630282],[0.648639,51.629802],[0.648648,51.628522],[0.650412,51.628742],[0.650499,51.630282]]],[[[0.648354,51.632442],[0.647166,51.631151],[0.648225,51.630912],[0.648354,51.632442]]],[[[0.650524,51.630539],[0.650513,51.632758],[0.648692,51.632914],[0.6489,51.630518],[0.650524,51.630539]]],[[[0.655178,51.629971],[0.655342,51.631332],[0.65568,51.632142],[0.652988,51.633563],[0.651305,51.63256],[0.650913,51.628862],[0.653933,51.629896],[0.655178,51.629971]]],[[[0.656393,51.633903],[0.654801,51.633938],[0.654156,51.633243],[0.655877,51.632124],[0.65545,51.631416],[0.656253,51.630512],[0.658058,51.631066],[0.657875,51.632781],[0.656393,51.633903]]],[[[0.654242,51.633699],[0.654964,51.634463],[0.650737,51.635059],[0.649171,51.63484],[0.648603,51.633313],[0.649393,51.632972],[0.652973,51.633719],[0.654242,51.633699]]],[[[0.655336,51.635375],[0.651333,51.635911],[0.648171,51.634694],[0.646994,51.63352],[0.648362,51.632575],[0.648499,51.634285],[0.649175,51.634873],[0.650608,51.63512],[0.654971,51.634484],[0.655336,51.635375]]],[[[0.820834,51.540863],[0.829101,51.544105],[0.831357,51.544682],[0.832356,51.545413],[0.83368,51.54524],[0.836166,51.54667],[0.837261,51.54682],[0.83889,51.54813],[0.842948,51.549479],[0.844231,51.549384],[0.848766,51.551558],[0.850986,51.553873],[0.850508,51.554711],[0.850523,51.556574],[0.841243,51.55998],[0.838492,51.560319],[0.834193,51.559737],[0.829787,51.559444],[0.82903,51.56199],[0.827502,51.562831],[0.824704,51.563533],[0.822712,51.563208],[0.820777,51.563313],[0.819222,51.561784],[0.81767,51.563116],[0.818268,51.564082],[0.821023,51.564396],[0.819624,51.565178],[0.81865,51.566448],[0.817511,51.566666],[0.817193,51.568134],[0.818001,51.569648],[0.816575,51.571871],[0.814879,51.572597],[0.813426,51.574734],[0.814473,51.574903],[0.814416,51.576391],[0.813658,51.576985],[0.81026,51.57772],[0.808115,51.578715],[0.803789,51.577204],[0.796731,51.576004],[0.795641,51.574601],[0.796685,51.573337],[0.79946,51.572523],[0.80065,51.572896],[0.803765,51.572452],[0.804819,51.571558],[0.809984,51.569827],[0.807512,51.567593],[0.806197,51.568645],[0.807118,51.569435],[0.802483,51.572004],[0.798774,51.571766],[0.798592,51.570406],[0.795247,51.572692],[0.793656,51.575058],[0.794779,51.57683],[0.797333,51.577792],[0.79925,51.577684],[0.802093,51.578121],[0.806692,51.579656],[0.80746,51.581307],[0.805899,51.586075],[0.800345,51.584565],[0.795442,51.583529],[0.793963,51.583897],[0.790715,51.584165],[0.787899,51.584898],[0.785171,51.584786],[0.782784,51.58349],[0.779015,51.582204],[0.777889,51.582523],[0.775016,51.581392],[0.772803,51.580919],[0.771352,51.581084],[0.770605,51.579701],[0.767803,51.580542],[0.764861,51.580554],[0.760521,51.578625],[0.760967,51.576332],[0.758859,51.577105],[0.758761,51.577976],[0.757729,51.578588],[0.752007,51.578824],[0.748897,51.577907],[0.747829,51.579442],[0.747111,51.577587],[0.744246,51.577953],[0.739318,51.577812],[0.733436,51.576637],[0.730006,51.57644],[0.727055,51.576816],[0.724454,51.575763],[0.724247,51.576436],[0.725932,51.577446],[0.72621,51.578062],[0.724233,51.579028],[0.724069,51.580072],[0.728159,51.578711],[0.731561,51.578989],[0.733879,51.578966],[0.738443,51.579916],[0.741716,51.580364],[0.741421,51.580854],[0.744735,51.581641],[0.745831,51.582215],[0.747646,51.581334],[0.752851,51.580805],[0.753531,51.581045],[0.756488,51.58049],[0.758314,51.580556],[0.760352,51.581484],[0.76055,51.582626],[0.759774,51.584682],[0.754765,51.585152],[0.750977,51.586405],[0.754269,51.588188],[0.755905,51.587025],[0.758426,51.586199],[0.760026,51.586001],[0.761692,51.584166],[0.76434,51.58323],[0.767732,51.583572],[0.769102,51.584401],[0.773028,51.583587],[0.775017,51.584504],[0.778155,51.584922],[0.780282,51.586229],[0.781849,51.586519],[0.783778,51.587938],[0.784899,51.587506],[0.788031,51.587799],[0.79484,51.58652],[0.796393,51.586392],[0.799507,51.58724],[0.803776,51.589112],[0.80957,51.592948],[0.810559,51.593998],[0.813701,51.595357],[0.816358,51.596748],[0.819074,51.597596],[0.817102,51.599425],[0.816184,51.6024],[0.815173,51.603619],[0.813223,51.60458],[0.809049,51.605761],[0.806902,51.607763],[0.804312,51.608444],[0.801751,51.60964],[0.799616,51.611238],[0.798425,51.613679],[0.793792,51.613243],[0.790416,51.612558],[0.785798,51.612977],[0.785041,51.613686],[0.789081,51.613336],[0.791836,51.613543],[0.798247,51.614554],[0.800092,51.613767],[0.801564,51.610917],[0.805072,51.609291],[0.808242,51.608185],[0.810792,51.606419],[0.813838,51.60553],[0.816355,51.604553],[0.817608,51.603493],[0.818644,51.601579],[0.818721,51.600197],[0.820427,51.598914],[0.824152,51.598559],[0.829003,51.598621],[0.836291,51.598031],[0.838319,51.597621],[0.841603,51.597517],[0.848235,51.596443],[0.854019,51.595832],[0.852657,51.596919],[0.852975,51.598214],[0.854037,51.598943],[0.856212,51.599432],[0.857191,51.601072],[0.859302,51.600298],[0.861016,51.601516],[0.861053,51.602318],[0.858924,51.603642],[0.857805,51.607577],[0.857016,51.607896],[0.854019,51.608166],[0.850878,51.607707],[0.848375,51.608255],[0.846759,51.609014],[0.846321,51.610323],[0.844596,51.612649],[0.846624,51.611826],[0.851109,51.611582],[0.853033,51.61119],[0.853755,51.610374],[0.855892,51.609734],[0.860817,51.609612],[0.863896,51.608792],[0.859823,51.611217],[0.857666,51.61186],[0.845943,51.613859],[0.8416,51.615108],[0.84572,51.616223],[0.844961,51.61674],[0.835129,51.618234],[0.840034,51.616532],[0.841677,51.615436],[0.83389,51.614743],[0.825757,51.615346],[0.821601,51.616206],[0.816969,51.617972],[0.81402,51.61963],[0.812476,51.620744],[0.810224,51.621583],[0.804791,51.622031],[0.799646,51.621651],[0.799128,51.621897],[0.795084,51.622161],[0.794422,51.621975],[0.792472,51.622993],[0.784186,51.623269],[0.784389,51.624284],[0.783212,51.624852],[0.780415,51.626977],[0.778688,51.62945],[0.77509,51.632452],[0.770752,51.634017],[0.767724,51.635602],[0.763957,51.636824],[0.760569,51.636444],[0.759922,51.635415],[0.756207,51.633084],[0.751771,51.631502],[0.739538,51.630606],[0.737089,51.630301],[0.733065,51.630329],[0.730109,51.630709],[0.730859,51.631821],[0.725915,51.634744],[0.720775,51.635665],[0.718275,51.634727],[0.711352,51.633661],[0.707272,51.633543],[0.688534,51.634382],[0.68175,51.634042],[0.68081,51.634221],[0.675821,51.633776],[0.671673,51.634016],[0.669782,51.633737],[0.666896,51.63434],[0.661629,51.634002],[0.658548,51.634545],[0.657498,51.635134],[0.65592,51.634889],[0.658118,51.632719],[0.658178,51.630851],[0.655171,51.629925],[0.653573,51.628876],[0.65061,51.628517],[0.650254,51.628136],[0.650525,51.626128],[0.651869,51.625737],[0.651693,51.623512],[0.648179,51.623458],[0.64776,51.625062],[0.643948,51.624811],[0.643342,51.62585],[0.647089,51.626019],[0.645679,51.627528],[0.645692,51.628338],[0.644759,51.629179],[0.64457,51.630028],[0.642146,51.629603],[0.639143,51.631415],[0.637673,51.631647],[0.631757,51.631174],[0.630067,51.631476],[0.622482,51.631262],[0.620359,51.630861],[0.617402,51.630773],[0.613268,51.629815],[0.611359,51.629022],[0.607944,51.628584],[0.605043,51.628918],[0.602598,51.629517],[0.597479,51.629611],[0.59624,51.630297],[0.595794,51.63135],[0.592442,51.630468],[0.588121,51.630344],[0.589254,51.628571],[0.588871,51.627803],[0.586949,51.62626],[0.586651,51.625049],[0.587638,51.623625],[0.586963,51.623184],[0.584754,51.623098],[0.583298,51.623867],[0.581239,51.623837],[0.580267,51.624405],[0.578144,51.624798],[0.577124,51.624177],[0.575241,51.62384],[0.574507,51.622956],[0.571483,51.622541],[0.570647,51.622161],[0.568167,51.622044],[0.566474,51.622516],[0.565648,51.621628],[0.564674,51.621176],[0.564243,51.619807],[0.562987,51.618398],[0.564101,51.616678],[0.563727,51.614513],[0.561828,51.614415],[0.561622,51.612476],[0.558249,51.610645],[0.556646,51.608395],[0.553641,51.609023],[0.551545,51.608848],[0.550502,51.603308],[0.549349,51.602337],[0.549784,51.598181],[0.549035,51.596578],[0.565566,51.593858],[0.563742,51.591586],[0.562744,51.590886],[0.562298,51.589356],[0.565447,51.588649],[0.565918,51.588245],[0.567755,51.588193],[0.570102,51.587683],[0.582691,51.582954],[0.587489,51.579636],[0.589303,51.578617],[0.591315,51.577928],[0.598973,51.577199],[0.598611,51.576927],[0.608388,51.576056],[0.612939,51.575473],[0.632077,51.570529],[0.634646,51.574941],[0.635679,51.57447],[0.637802,51.576262],[0.638951,51.576801],[0.646581,51.574298],[0.651309,51.573497],[0.660119,51.573102],[0.66295,51.572446],[0.667717,51.572694],[0.667833,51.572208],[0.675333,51.572868],[0.675419,51.570145],[0.680763,51.569512],[0.683788,51.568604],[0.685035,51.568898],[0.687167,51.568213],[0.704177,51.566762],[0.70566,51.567495],[0.707234,51.566666],[0.708587,51.566435],[0.70794,51.564288],[0.715811,51.563171],[0.715806,51.562806],[0.719056,51.562675],[0.718391,51.560946],[0.72284,51.56041],[0.730471,51.5605],[0.730538,51.559443],[0.735364,51.560137],[0.737378,51.560022],[0.737573,51.559487],[0.741077,51.559243],[0.741747,51.559898],[0.74379,51.559876],[0.749072,51.559361],[0.752092,51.558362],[0.753382,51.557522],[0.753154,51.554867],[0.757687,51.554127],[0.761028,51.553294],[0.76116,51.552965],[0.769555,51.552396],[0.769861,51.551783],[0.775269,51.551969],[0.78669,51.552943],[0.786804,51.546935],[0.78747,51.546932],[0.787657,51.545164],[0.788986,51.542447],[0.794375,51.542339],[0.798427,51.541678],[0.807959,51.540955],[0.810868,51.540132],[0.814869,51.543732],[0.819168,51.542207],[0.820834,51.540863]]]]},"properties":{"LAD22CD":"E07000075","LAD22NM":"Rochford","BNG_E":585979,"BNG_N":191417,"LONG":0.683442,"LAT":51.5909,"GlobalID":"c860c7e8-a843-4e2c-9417-8dcf38045274"},"id":101}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.036701,51.785107],[1.034891,51.785103],[1.035565,51.784093],[1.037714,51.784125],[1.036701,51.785107]]],[[[1.039667,51.78565],[1.040576,51.787054],[1.042246,51.787921],[1.041316,51.78844],[1.038347,51.787525],[1.037026,51.78561],[1.037722,51.784809],[1.039016,51.784906],[1.039667,51.78565]]],[[[1.031818,51.786068],[1.032314,51.783754],[1.030802,51.784607],[1.032927,51.778295],[1.034639,51.776281],[1.040591,51.771008],[1.044139,51.770078],[1.043893,51.771054],[1.040466,51.773345],[1.039662,51.773104],[1.038473,51.775925],[1.039957,51.776134],[1.038144,51.777416],[1.036341,51.77827],[1.035541,51.779287],[1.034258,51.783223],[1.03472,51.78407],[1.034036,51.78557],[1.035835,51.786436],[1.034155,51.786804],[1.031818,51.786068]]],[[[1.039631,51.804254],[1.036022,51.804393],[1.031021,51.803939],[1.029499,51.804066],[1.025546,51.803334],[1.028454,51.802224],[1.031297,51.802046],[1.033928,51.802466],[1.039631,51.804254]]],[[[1.043297,51.809418],[1.040546,51.808084],[1.037413,51.807025],[1.037265,51.805667],[1.039976,51.805634],[1.043132,51.80643],[1.047641,51.808222],[1.049019,51.808356],[1.048204,51.809506],[1.047756,51.809647],[1.043297,51.809418]]],[[[1.051746,51.810706],[1.0506,51.810678],[1.050172,51.809475],[1.051734,51.80906],[1.053549,51.809495],[1.052801,51.810517],[1.051746,51.810706]]],[[[1.256869,51.868046],[1.256578,51.867109],[1.259718,51.86635],[1.259961,51.865703],[1.263312,51.86401],[1.265806,51.864203],[1.268344,51.865108],[1.267899,51.867202],[1.265344,51.865819],[1.263709,51.866122],[1.263437,51.865282],[1.259639,51.866874],[1.259493,51.867646],[1.257076,51.867391],[1.256869,51.868046]]],[[[1.250078,51.870823],[1.249208,51.869924],[1.245581,51.869171],[1.245627,51.868442],[1.247393,51.868435],[1.251594,51.869607],[1.250078,51.870823]]],[[[1.231414,51.872088],[1.2295,51.872607],[1.229521,51.870509],[1.230218,51.869645],[1.231954,51.870117],[1.231414,51.872088]]],[[[1.209211,51.874421],[1.207218,51.874769],[1.205066,51.873981],[1.208058,51.872776],[1.209211,51.874421]]],[[[1.256479,51.87304],[1.254582,51.873586],[1.253058,51.873364],[1.251789,51.871524],[1.25415,51.869796],[1.256242,51.868977],[1.25936,51.869127],[1.261535,51.867588],[1.263102,51.867266],[1.264777,51.866123],[1.267566,51.867599],[1.267059,51.869503],[1.265665,51.870764],[1.264596,51.872272],[1.263094,51.872193],[1.259828,51.872505],[1.257801,51.87333],[1.256479,51.87304]]],[[[1.213267,51.879075],[1.212021,51.879219],[1.209811,51.877635],[1.207735,51.876977],[1.201611,51.875941],[1.202814,51.874865],[1.20449,51.874667],[1.206876,51.875392],[1.209168,51.875629],[1.21023,51.876194],[1.213267,51.879075]]],[[[1.224667,51.880299],[1.224163,51.879835],[1.224016,51.877238],[1.218704,51.878126],[1.215773,51.876285],[1.217262,51.875956],[1.218118,51.87468],[1.215874,51.873143],[1.213423,51.873869],[1.210043,51.872711],[1.208803,51.8712],[1.211403,51.87082],[1.21657,51.872355],[1.219905,51.871893],[1.221625,51.872307],[1.221546,51.873753],[1.223297,51.874906],[1.224506,51.876612],[1.224667,51.880299]]],[[[1.273938,51.879667],[1.272941,51.878235],[1.271708,51.877979],[1.270507,51.876859],[1.272469,51.876797],[1.275226,51.877676],[1.275384,51.878728],[1.273938,51.879667]]],[[[1.262904,51.880217],[1.261985,51.880618],[1.25988,51.878779],[1.260379,51.876643],[1.259669,51.875585],[1.257213,51.874979],[1.2549,51.875813],[1.255049,51.874526],[1.259299,51.874068],[1.263741,51.873044],[1.264113,51.877695],[1.262904,51.880217]]],[[[1.212542,51.882256],[1.210602,51.882451],[1.210526,51.881734],[1.212146,51.881508],[1.212542,51.882256]]],[[[1.256611,51.883772],[1.256859,51.883365],[1.250321,51.882747],[1.248702,51.881669],[1.244651,51.881245],[1.243214,51.881764],[1.241088,51.881868],[1.23976,51.881298],[1.237382,51.880945],[1.236521,51.88192],[1.233693,51.882166],[1.229692,51.88147],[1.227826,51.880543],[1.227058,51.879334],[1.227013,51.876409],[1.228291,51.875432],[1.231021,51.874692],[1.232922,51.874464],[1.234201,51.873698],[1.235398,51.872335],[1.237996,51.870194],[1.239909,51.869454],[1.241679,51.869761],[1.244592,51.868885],[1.24492,51.869916],[1.243704,51.870974],[1.24693,51.872791],[1.246047,51.873506],[1.246033,51.8746],[1.248261,51.875064],[1.250163,51.876917],[1.252936,51.877411],[1.253213,51.876955],[1.256163,51.876682],[1.257151,51.875727],[1.258329,51.87658],[1.258608,51.878718],[1.259745,51.880406],[1.260285,51.881865],[1.259151,51.883148],[1.256611,51.883772]]],[[[1.236246,51.893415],[1.233952,51.893679],[1.234159,51.892853],[1.232561,51.892642],[1.230677,51.889999],[1.230686,51.888643],[1.231559,51.887494],[1.233603,51.886754],[1.235617,51.886832],[1.23908,51.886443],[1.242674,51.886586],[1.24095,51.888007],[1.240159,51.889184],[1.238359,51.890602],[1.236697,51.891409],[1.237236,51.892302],[1.236246,51.893415]]],[[[1.228043,51.898004],[1.225964,51.898296],[1.22349,51.897557],[1.222843,51.898079],[1.220032,51.898354],[1.21886,51.89744],[1.224875,51.896684],[1.22868,51.895527],[1.229185,51.896737],[1.228043,51.898004]]],[[[1.230697,51.902408],[1.229941,51.902201],[1.228215,51.900335],[1.229043,51.899371],[1.228705,51.898214],[1.23031,51.896508],[1.229865,51.895514],[1.232366,51.894126],[1.235808,51.893654],[1.236843,51.89321],[1.237453,51.892388],[1.237504,51.891276],[1.238695,51.891224],[1.239253,51.89029],[1.241604,51.888264],[1.244592,51.887907],[1.245347,51.888503],[1.24571,51.890101],[1.246679,51.891292],[1.244227,51.89293],[1.244883,51.895499],[1.244086,51.895899],[1.241909,51.895513],[1.237741,51.896062],[1.238196,51.896534],[1.236411,51.899174],[1.234945,51.899644],[1.230697,51.902408]]],[[[1.231816,51.903908],[1.231128,51.903322],[1.232199,51.902155],[1.233309,51.901869],[1.23542,51.899983],[1.237508,51.899345],[1.238162,51.897819],[1.239469,51.896751],[1.24134,51.896504],[1.244347,51.896953],[1.242722,51.898934],[1.243169,51.900137],[1.241545,51.901086],[1.239276,51.901295],[1.238449,51.902189],[1.236926,51.902277],[1.234994,51.902995],[1.2343,51.903782],[1.231816,51.903908]]],[[[1.257424,51.916798],[1.253574,51.91648],[1.252655,51.91676],[1.250472,51.916539],[1.249819,51.915998],[1.249853,51.913135],[1.251716,51.914392],[1.254391,51.913103],[1.255441,51.912248],[1.256606,51.912938],[1.257551,51.914385],[1.258919,51.915268],[1.257424,51.916798]]],[[[1.278686,51.877604],[1.278131,51.876767],[1.278809,51.876123],[1.2802,51.876095],[1.280862,51.876909],[1.283054,51.876971],[1.283095,51.875348],[1.277275,51.876145],[1.271585,51.875651],[1.268201,51.87625],[1.268039,51.874182],[1.269887,51.870154],[1.270983,51.868243],[1.271489,51.864411],[1.273556,51.862077],[1.273616,51.860285],[1.272854,51.86021],[1.270359,51.85823],[1.270209,51.856931],[1.268806,51.854783],[1.270638,51.854095],[1.270761,51.852372],[1.268971,51.851823],[1.267763,51.852879],[1.268889,51.853851],[1.267257,51.854516],[1.266069,51.85414],[1.264846,51.855633],[1.26614,51.857973],[1.267634,51.857565],[1.26903,51.858586],[1.267572,51.859144],[1.26851,51.859863],[1.267849,51.860783],[1.265732,51.861961],[1.267893,51.862493],[1.271398,51.862296],[1.269932,51.863625],[1.266321,51.862776],[1.264527,51.862019],[1.259789,51.86387],[1.259078,51.863899],[1.257521,51.862261],[1.255118,51.862072],[1.253367,51.862448],[1.253916,51.86354],[1.257937,51.863659],[1.258234,51.864614],[1.255146,51.863869],[1.252523,51.8637],[1.253074,51.863181],[1.251609,51.861312],[1.252871,51.860837],[1.25383,51.858059],[1.250122,51.856144],[1.248152,51.859028],[1.250819,51.859354],[1.249905,51.861744],[1.248957,51.861646],[1.245746,51.859763],[1.243437,51.85927],[1.240792,51.860618],[1.238803,51.861109],[1.235658,51.861406],[1.235318,51.860802],[1.235471,51.858784],[1.233562,51.857812],[1.228038,51.858497],[1.228494,51.859962],[1.23025,51.861588],[1.230314,51.862511],[1.229148,51.863812],[1.228635,51.865245],[1.226552,51.865456],[1.22521,51.864967],[1.226065,51.86756],[1.229792,51.868769],[1.228899,51.869111],[1.227234,51.86861],[1.228298,51.870436],[1.224352,51.871786],[1.222199,51.870764],[1.221279,51.869772],[1.217359,51.869113],[1.216817,51.870124],[1.215473,51.87016],[1.214321,51.867669],[1.212002,51.867749],[1.210631,51.868213],[1.207381,51.868487],[1.206621,51.868036],[1.204337,51.86773],[1.20276,51.868116],[1.202077,51.867501],[1.199705,51.866904],[1.198469,51.867899],[1.200021,51.869436],[1.201311,51.869632],[1.20046,51.871221],[1.196145,51.871244],[1.190608,51.869695],[1.187861,51.870009],[1.186041,51.871224],[1.184552,51.871448],[1.180982,51.871374],[1.179402,51.871111],[1.17819,51.871448],[1.186553,51.872549],[1.192389,51.871757],[1.193276,51.873368],[1.194537,51.874701],[1.197656,51.874574],[1.197999,51.87581],[1.197089,51.877365],[1.202436,51.87802],[1.201838,51.88073],[1.201042,51.882113],[1.199844,51.881913],[1.199959,51.883888],[1.201043,51.884639],[1.20521,51.88556],[1.205125,51.886883],[1.20649,51.887166],[1.211021,51.886172],[1.212887,51.88676],[1.212441,51.890364],[1.215786,51.889095],[1.217133,51.889343],[1.218387,51.888886],[1.221878,51.889278],[1.22201,51.88974],[1.225502,51.889549],[1.227375,51.890188],[1.228842,51.89193],[1.230311,51.892306],[1.227718,51.894658],[1.224602,51.895178],[1.223898,51.895725],[1.222171,51.895461],[1.221413,51.89644],[1.218387,51.896888],[1.217322,51.897361],[1.215561,51.896354],[1.214917,51.896812],[1.212092,51.896454],[1.213045,51.898542],[1.215567,51.899236],[1.217062,51.899981],[1.222054,51.900581],[1.22601,51.90379],[1.228522,51.903839],[1.229549,51.903289],[1.230771,51.90398],[1.234359,51.903818],[1.239318,51.90239],[1.239287,51.901338],[1.240843,51.901274],[1.242358,51.900877],[1.243524,51.900208],[1.247884,51.900598],[1.249178,51.901105],[1.2502,51.90072],[1.243813,51.900138],[1.242941,51.899518],[1.244557,51.897144],[1.245391,51.89708],[1.246151,51.895706],[1.247816,51.898131],[1.249796,51.899061],[1.252334,51.901021],[1.253947,51.904163],[1.255884,51.906712],[1.256447,51.909072],[1.257985,51.912152],[1.256649,51.912888],[1.255398,51.912087],[1.251701,51.914303],[1.249857,51.91308],[1.249653,51.916139],[1.250609,51.916801],[1.252344,51.91692],[1.254401,51.916571],[1.256151,51.91711],[1.258549,51.916971],[1.259271,51.917342],[1.259366,51.919456],[1.260361,51.920657],[1.261475,51.920796],[1.262897,51.920066],[1.25972,51.919793],[1.259436,51.91748],[1.259035,51.916334],[1.261238,51.916996],[1.262218,51.918586],[1.265889,51.920859],[1.267907,51.923401],[1.269427,51.923381],[1.272958,51.928117],[1.281371,51.934806],[1.285314,51.936856],[1.287833,51.937566],[1.289983,51.937044],[1.290225,51.939667],[1.291359,51.943428],[1.290274,51.947433],[1.289704,51.947993],[1.291236,51.948983],[1.287805,51.949046],[1.284595,51.947249],[1.283952,51.945597],[1.28033,51.944641],[1.277367,51.944643],[1.278397,51.943796],[1.278638,51.942727],[1.279654,51.942106],[1.280224,51.94023],[1.279118,51.939442],[1.27652,51.939168],[1.274301,51.939524],[1.27318,51.940894],[1.267522,51.94245],[1.266574,51.94557],[1.261824,51.946301],[1.260643,51.947752],[1.245648,51.948405],[1.24297,51.947973],[1.240965,51.947365],[1.240091,51.946305],[1.238639,51.946096],[1.236264,51.944467],[1.232849,51.940584],[1.231699,51.940046],[1.22733,51.939457],[1.221993,51.93947],[1.219759,51.940279],[1.21823,51.940203],[1.218511,51.941497],[1.216637,51.941583],[1.214955,51.941149],[1.212152,51.941076],[1.210383,51.941442],[1.209769,51.94217],[1.207061,51.942664],[1.204313,51.94253],[1.198539,51.941093],[1.191135,51.940584],[1.187906,51.940686],[1.180548,51.941752],[1.175506,51.943546],[1.171624,51.945834],[1.170687,51.947996],[1.164887,51.947683],[1.154245,51.946088],[1.150343,51.945889],[1.149051,51.945553],[1.147197,51.944401],[1.145626,51.942906],[1.13791,51.940726],[1.135196,51.940412],[1.13127,51.940451],[1.126852,51.94168],[1.123517,51.940534],[1.119476,51.940054],[1.116226,51.940744],[1.113941,51.942223],[1.111947,51.942792],[1.110398,51.942865],[1.108898,51.94233],[1.106089,51.942278],[1.098276,51.94372],[1.095161,51.944063],[1.089951,51.94556],[1.087739,51.94502],[1.086882,51.945344],[1.083764,51.94449],[1.08097,51.944452],[1.07833,51.946742],[1.073715,51.946936],[1.06934,51.946049],[1.066107,51.94592],[1.065135,51.946405],[1.061958,51.946471],[1.060838,51.94805],[1.05841,51.949216],[1.057604,51.949279],[1.053931,51.952243],[1.054046,51.9531],[1.051698,51.95623],[1.051864,51.956936],[1.05035,51.958455],[1.048331,51.95932],[1.045105,51.959646],[1.042475,51.959309],[1.041713,51.957399],[1.042083,51.956543],[1.039856,51.955933],[1.037916,51.956933],[1.036446,51.957037],[1.035459,51.957742],[1.034281,51.957237],[1.033136,51.957759],[1.031834,51.957357],[1.029037,51.957246],[1.028087,51.956035],[1.0258,51.955883],[1.024712,51.954902],[1.02522,51.953955],[1.026833,51.954016],[1.02515,51.950644],[1.023147,51.948883],[1.023547,51.948028],[1.02282,51.946459],[1.01849,51.943028],[1.01563,51.94178],[1.012558,51.939658],[1.005883,51.936716],[1.005733,51.935605],[1.004201,51.935833],[1.001681,51.935543],[0.99947,51.936632],[0.997104,51.936922],[0.994979,51.937625],[0.993868,51.937591],[0.985528,51.939737],[0.975676,51.940254],[0.974511,51.939874],[0.972119,51.94018],[0.969269,51.939725],[0.964481,51.938349],[0.955317,51.936754],[0.951034,51.934604],[0.949227,51.935019],[0.947171,51.932707],[0.941986,51.929743],[0.93909,51.926587],[0.939212,51.924587],[0.938227,51.922711],[0.93738,51.922016],[0.935284,51.922506],[0.934369,51.921063],[0.931203,51.919724],[0.932397,51.917642],[0.934146,51.916532],[0.931126,51.914134],[0.931511,51.91323],[0.937901,51.913055],[0.941321,51.911183],[0.946644,51.909903],[0.948003,51.910012],[0.944139,51.906225],[0.949092,51.904797],[0.954882,51.904686],[0.957143,51.903648],[0.956717,51.902547],[0.954173,51.901489],[0.951087,51.89841],[0.950016,51.898286],[0.948809,51.896752],[0.95085,51.894403],[0.952371,51.893433],[0.953098,51.891708],[0.956773,51.892311],[0.959537,51.892236],[0.962619,51.891408],[0.962075,51.889596],[0.959327,51.88632],[0.959637,51.884523],[0.957976,51.881514],[0.95812,51.881117],[0.952853,51.88031],[0.957923,51.877387],[0.960139,51.877422],[0.970203,51.874587],[0.976595,51.873322],[0.978321,51.872162],[0.97937,51.869524],[0.979241,51.867923],[0.977447,51.865966],[0.976757,51.86386],[0.973978,51.860456],[0.975684,51.85953],[0.976687,51.856402],[0.978104,51.854043],[0.973175,51.853378],[0.970369,51.852463],[0.966253,51.851822],[0.968485,51.85072],[0.970351,51.850232],[0.97596,51.849305],[0.979843,51.847641],[0.981371,51.8462],[0.98164,51.843928],[0.981304,51.843042],[0.983109,51.841439],[0.984154,51.841055],[0.987502,51.838448],[0.988512,51.838823],[0.990751,51.838601],[0.993022,51.83767],[0.994685,51.836438],[0.999635,51.836306],[1.003415,51.83399],[1.005438,51.833612],[1.008176,51.833656],[1.010577,51.832384],[1.013085,51.834445],[1.013449,51.833824],[1.012125,51.832331],[1.0105,51.831664],[1.007835,51.83294],[1.003532,51.833102],[0.999844,51.835347],[0.997285,51.835293],[0.994344,51.835552],[0.991842,51.837181],[0.989541,51.837302],[0.987855,51.837045],[0.988311,51.835969],[0.986474,51.835326],[0.984158,51.829917],[0.984036,51.827703],[0.985691,51.826409],[0.987252,51.82366],[0.990216,51.820795],[0.991075,51.81947],[0.992642,51.818944],[0.993828,51.817824],[0.993409,51.81665],[0.994419,51.815778],[0.99601,51.816309],[0.999694,51.813498],[0.999233,51.81285],[1.002867,51.811111],[1.006571,51.808366],[1.010531,51.806457],[1.011584,51.805369],[1.01297,51.804856],[1.017261,51.806452],[1.020685,51.806406],[1.023875,51.805137],[1.025733,51.804639],[1.027971,51.804751],[1.028073,51.805301],[1.031234,51.80527],[1.036523,51.805789],[1.036761,51.807015],[1.040067,51.808099],[1.043297,51.809418],[1.047702,51.809676],[1.048097,51.809876],[1.049083,51.808494],[1.050581,51.810732],[1.051752,51.810764],[1.052939,51.810581],[1.053632,51.810121],[1.056375,51.810966],[1.057095,51.810562],[1.060103,51.811533],[1.06184,51.812887],[1.062363,51.814217],[1.06372,51.814987],[1.064575,51.816251],[1.063996,51.818139],[1.06129,51.821455],[1.063145,51.820643],[1.066367,51.820721],[1.064686,51.818982],[1.066184,51.816787],[1.066055,51.815675],[1.063714,51.811759],[1.062284,51.810166],[1.054541,51.807537],[1.050776,51.805397],[1.048192,51.804466],[1.045006,51.803823],[1.044439,51.80307],[1.045977,51.801875],[1.047279,51.803023],[1.048909,51.803179],[1.049901,51.801633],[1.052733,51.800913],[1.054543,51.798848],[1.057776,51.798191],[1.058689,51.79884],[1.061315,51.798488],[1.063,51.798885],[1.06468,51.798459],[1.066649,51.797245],[1.065473,51.796228],[1.064066,51.797184],[1.063726,51.797946],[1.060909,51.797686],[1.058457,51.798152],[1.05771,51.797597],[1.054641,51.798468],[1.051187,51.798935],[1.051801,51.800853],[1.049879,51.801136],[1.049041,51.801983],[1.047655,51.802341],[1.046158,51.801265],[1.044671,51.801562],[1.042734,51.802683],[1.040978,51.802878],[1.033209,51.800637],[1.028509,51.800454],[1.024712,51.801544],[1.021055,51.803175],[1.018758,51.802577],[1.01779,51.80112],[1.022318,51.79822],[1.025483,51.797833],[1.030241,51.795875],[1.032455,51.794111],[1.034193,51.792126],[1.035937,51.791088],[1.038556,51.788439],[1.041491,51.788671],[1.042493,51.787955],[1.040772,51.78555],[1.041082,51.784508],[1.043578,51.785005],[1.045713,51.78482],[1.045275,51.783984],[1.041432,51.782968],[1.037743,51.784001],[1.036633,51.783775],[1.035388,51.782194],[1.036296,51.779229],[1.036935,51.778453],[1.041282,51.776336],[1.04012,51.775087],[1.04091,51.773388],[1.043901,51.771314],[1.04574,51.770283],[1.044782,51.769556],[1.054721,51.769508],[1.064712,51.769977],[1.082188,51.772576],[1.083807,51.772587],[1.086858,51.772025],[1.087912,51.772255],[1.090461,51.771976],[1.092083,51.772226],[1.094469,51.771948],[1.097043,51.772337],[1.099908,51.771073],[1.102716,51.771941],[1.104869,51.772051],[1.106674,51.771779],[1.109155,51.772233],[1.110732,51.77187],[1.112844,51.772572],[1.114449,51.772728],[1.116323,51.772399],[1.117416,51.772754],[1.120065,51.774385],[1.12265,51.775097],[1.126384,51.774815],[1.127845,51.776157],[1.130116,51.776726],[1.131604,51.776709],[1.133918,51.776063],[1.134248,51.77696],[1.135968,51.778394],[1.137747,51.779181],[1.140102,51.779336],[1.141155,51.779783],[1.142159,51.781289],[1.145177,51.782479],[1.152695,51.786015],[1.152836,51.785929],[1.164724,51.791029],[1.167547,51.791487],[1.169364,51.792661],[1.173245,51.793605],[1.176521,51.794964],[1.180997,51.795996],[1.181965,51.796868],[1.186701,51.797735],[1.187949,51.798628],[1.189421,51.798545],[1.190484,51.799456],[1.196006,51.801167],[1.197924,51.801196],[1.198805,51.801785],[1.200658,51.802056],[1.201624,51.802685],[1.203407,51.802982],[1.204278,51.80363],[1.206,51.803996],[1.206862,51.804649],[1.208629,51.80506],[1.211139,51.806183],[1.214499,51.808189],[1.217009,51.808351],[1.21671,51.809092],[1.218293,51.809395],[1.220162,51.811262],[1.225701,51.813325],[1.226265,51.814188],[1.231887,51.817169],[1.236642,51.819284],[1.236471,51.819719],[1.242505,51.8238],[1.253222,51.832968],[1.257357,51.836038],[1.258186,51.836086],[1.260597,51.838627],[1.263537,51.841404],[1.265933,51.841545],[1.269939,51.845862],[1.270579,51.845966],[1.272844,51.848414],[1.274798,51.84994],[1.276329,51.851674],[1.279369,51.853822],[1.279816,51.853685],[1.282113,51.856393],[1.285438,51.859375],[1.287208,51.859289],[1.287662,51.860584],[1.290012,51.863547],[1.291223,51.867772],[1.291549,51.871402],[1.290638,51.874154],[1.286521,51.875542],[1.286017,51.876402],[1.28473,51.87699],[1.28167,51.877605],[1.28092,51.878409],[1.27799,51.879214],[1.27219,51.88262],[1.270489,51.882832],[1.269196,51.884133],[1.264726,51.886034],[1.263545,51.886186],[1.263071,51.885055],[1.263475,51.882745],[1.264925,51.88286],[1.267174,51.882256],[1.268911,51.88272],[1.26939,51.881581],[1.266511,51.881272],[1.26844,51.879453],[1.268985,51.878052],[1.270565,51.877355],[1.271251,51.878131],[1.272443,51.878325],[1.273524,51.880082],[1.275432,51.878762],[1.276942,51.878857],[1.278686,51.877604]]]]},"properties":{"LAD22CD":"E07000076","LAD22NM":"Tendring","BNG_E":614190,"BNG_N":222141,"LONG":1.108981,"LAT":51.85674,"GlobalID":"c696df8e-ce6e-4d11-9fcc-67545ecc98e0"},"id":102}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.389695,52.036467],[0.386354,52.036075],[0.38084,52.036987],[0.377507,52.036334],[0.374587,52.037108],[0.371722,52.037369],[0.368575,52.039319],[0.367027,52.039741],[0.366215,52.041315],[0.363835,52.04362],[0.363324,52.044698],[0.35224,52.04697],[0.345959,52.049717],[0.343857,52.051013],[0.343307,52.052157],[0.344058,52.053235],[0.341349,52.05482],[0.341773,52.056291],[0.339593,52.057475],[0.337755,52.059717],[0.335633,52.06028],[0.331966,52.062827],[0.330005,52.065616],[0.328593,52.066841],[0.327331,52.068484],[0.325059,52.069921],[0.325714,52.071158],[0.324264,52.071928],[0.324674,52.072783],[0.321948,52.074302],[0.316769,52.076105],[0.312081,52.076551],[0.311065,52.076944],[0.310281,52.078863],[0.308702,52.080284],[0.302237,52.082706],[0.292129,52.088204],[0.286012,52.090408],[0.276229,52.092638],[0.275267,52.091122],[0.271967,52.090139],[0.268603,52.087254],[0.264806,52.084788],[0.261941,52.083434],[0.259728,52.082777],[0.25405,52.080042],[0.25234,52.078192],[0.251573,52.076786],[0.24752,52.079111],[0.24635,52.082057],[0.244113,52.083018],[0.235208,52.089],[0.231185,52.08971],[0.229182,52.0898],[0.224193,52.089252],[0.216536,52.08998],[0.213127,52.090436],[0.210143,52.09164],[0.20791,52.091721],[0.203459,52.092674],[0.200592,52.087397],[0.199277,52.085886],[0.19397,52.075481],[0.193591,52.07514],[0.184562,52.073854],[0.183194,52.073183],[0.186863,52.065678],[0.189916,52.0622],[0.188364,52.0609],[0.189922,52.060201],[0.186373,52.056661],[0.18185,52.056939],[0.181528,52.056686],[0.177997,52.057323],[0.176712,52.05693],[0.176285,52.056121],[0.174107,52.055581],[0.171215,52.055514],[0.16757,52.055],[0.167285,52.051764],[0.166364,52.051562],[0.166396,52.048191],[0.164697,52.048395],[0.160757,52.04844],[0.161424,52.049768],[0.160577,52.052099],[0.152634,52.050318],[0.151117,52.052852],[0.143046,52.050915],[0.136617,52.050005],[0.132566,52.048349],[0.130424,52.048439],[0.128135,52.047323],[0.128264,52.050002],[0.127593,52.051899],[0.124937,52.054126],[0.122898,52.057566],[0.12196,52.057387],[0.119077,52.059963],[0.114569,52.060601],[0.109538,52.059997],[0.105736,52.060261],[0.104971,52.057743],[0.105976,52.049739],[0.103047,52.047519],[0.101282,52.045012],[0.100464,52.041744],[0.101155,52.038857],[0.096341,52.034401],[0.09484,52.033754],[0.094195,52.032874],[0.093638,52.030662],[0.092979,52.030226],[0.0947,52.029028],[0.091196,52.025185],[0.091737,52.024964],[0.0908,52.02254],[0.092254,52.021654],[0.089542,52.019959],[0.085211,52.016212],[0.085423,52.01483],[0.083248,52.013584],[0.083106,52.011533],[0.082275,52.010053],[0.080625,52.008215],[0.076029,52.007199],[0.071461,52.008282],[0.070066,52.007359],[0.06977,52.006031],[0.068127,52.005789],[0.070196,52.004362],[0.071021,52.00274],[0.072195,52.002702],[0.07415,52.001407],[0.074322,52.000861],[0.073806,51.994268],[0.073058,51.992208],[0.07247,51.987414],[0.071018,51.984956],[0.069061,51.984043],[0.069445,51.982986],[0.071922,51.981547],[0.076845,51.980812],[0.083999,51.98137],[0.09646,51.984326],[0.098096,51.98234],[0.098288,51.980544],[0.097418,51.978847],[0.097845,51.97721],[0.099285,51.976518],[0.101523,51.976167],[0.107012,51.971818],[0.10555,51.970113],[0.104503,51.967732],[0.104347,51.965999],[0.10561,51.963486],[0.106421,51.962625],[0.110605,51.960172],[0.111245,51.958994],[0.113759,51.957128],[0.114736,51.955836],[0.114925,51.954122],[0.116019,51.953067],[0.116777,51.951589],[0.118443,51.947169],[0.118118,51.945599],[0.118196,51.940504],[0.118786,51.937581],[0.118633,51.933992],[0.121127,51.930331],[0.12183,51.92856],[0.12035,51.927151],[0.12114,51.925265],[0.12445,51.924015],[0.12486,51.923539],[0.124258,51.921669],[0.122604,51.919192],[0.122922,51.91733],[0.122348,51.91585],[0.121764,51.911195],[0.12351,51.903083],[0.12277,51.900553],[0.123868,51.897473],[0.124784,51.892428],[0.123826,51.889304],[0.124761,51.884586],[0.127237,51.884968],[0.12762,51.883946],[0.129228,51.883929],[0.132309,51.8846],[0.139583,51.885383],[0.139384,51.88734],[0.141257,51.887349],[0.141503,51.888196],[0.146982,51.886699],[0.150431,51.888225],[0.157068,51.890068],[0.162206,51.892089],[0.163231,51.891548],[0.164643,51.891934],[0.165741,51.891197],[0.16899,51.891799],[0.167739,51.894137],[0.175388,51.894616],[0.179349,51.895554],[0.180575,51.89389],[0.183664,51.893641],[0.182223,51.890647],[0.179649,51.889807],[0.17815,51.888258],[0.175985,51.887294],[0.17801,51.885982],[0.175442,51.884815],[0.177015,51.884441],[0.174976,51.882813],[0.177142,51.882046],[0.177878,51.880802],[0.180038,51.880675],[0.181825,51.879644],[0.182901,51.878374],[0.185016,51.87837],[0.185955,51.876662],[0.187572,51.875314],[0.189827,51.874242],[0.193409,51.873253],[0.192857,51.872352],[0.193617,51.871641],[0.194262,51.869916],[0.195594,51.868086],[0.19425,51.865778],[0.187083,51.864973],[0.187538,51.864194],[0.186372,51.863514],[0.185014,51.864746],[0.18274,51.865095],[0.181993,51.86464],[0.182814,51.86356],[0.177913,51.863036],[0.174348,51.862065],[0.170468,51.861622],[0.172407,51.858015],[0.171215,51.857606],[0.171532,51.856624],[0.169471,51.856016],[0.173064,51.854281],[0.171199,51.852382],[0.173535,51.85137],[0.173398,51.84977],[0.17084,51.849711],[0.168363,51.850598],[0.166804,51.850737],[0.164834,51.849651],[0.164774,51.847637],[0.165166,51.846934],[0.163164,51.844774],[0.161819,51.840753],[0.16158,51.835947],[0.160906,51.834052],[0.161915,51.833065],[0.161698,51.832134],[0.163381,51.831815],[0.165221,51.831903],[0.166123,51.830707],[0.165406,51.829545],[0.163013,51.828806],[0.161574,51.827601],[0.161209,51.825947],[0.162232,51.825209],[0.163553,51.822938],[0.166251,51.822154],[0.17497,51.820531],[0.176244,51.82001],[0.179864,51.820303],[0.184965,51.820116],[0.188438,51.819656],[0.190023,51.815045],[0.192167,51.813694],[0.192102,51.812404],[0.190773,51.80966],[0.192394,51.808077],[0.192813,51.806293],[0.192593,51.804738],[0.195449,51.80113],[0.195248,51.800065],[0.194154,51.798571],[0.19666,51.795791],[0.199654,51.796564],[0.2018,51.795426],[0.20344,51.794086],[0.20608,51.79327],[0.207443,51.792103],[0.210512,51.792705],[0.213827,51.794068],[0.212896,51.79652],[0.212347,51.79696],[0.218718,51.798181],[0.221983,51.798521],[0.222144,51.796844],[0.226767,51.795913],[0.225797,51.794503],[0.231548,51.795161],[0.232635,51.793675],[0.233095,51.791468],[0.23382,51.791039],[0.235839,51.791075],[0.234914,51.789652],[0.23584,51.78861],[0.237342,51.787872],[0.238343,51.788653],[0.240922,51.788397],[0.237431,51.786721],[0.23684,51.786133],[0.236539,51.782198],[0.237528,51.779827],[0.242615,51.780669],[0.250169,51.780887],[0.253823,51.781725],[0.257499,51.78187],[0.258413,51.783595],[0.259132,51.784145],[0.262509,51.784404],[0.263799,51.785274],[0.266159,51.785605],[0.26759,51.786214],[0.267993,51.787164],[0.274135,51.787651],[0.277699,51.789105],[0.280088,51.788931],[0.281386,51.789497],[0.284466,51.789105],[0.287759,51.788926],[0.290355,51.789145],[0.292607,51.789856],[0.295617,51.790265],[0.29746,51.789966],[0.296729,51.788786],[0.297899,51.787702],[0.298344,51.785437],[0.298289,51.783342],[0.29685,51.782603],[0.297273,51.782062],[0.296456,51.780561],[0.299999,51.779097],[0.302335,51.778717],[0.30283,51.777407],[0.302053,51.775442],[0.299145,51.774334],[0.298596,51.773724],[0.299365,51.77186],[0.303305,51.771575],[0.307302,51.769907],[0.307909,51.770178],[0.312288,51.770328],[0.312966,51.768842],[0.318469,51.769935],[0.319598,51.772604],[0.322349,51.772025],[0.321639,51.769933],[0.323813,51.770053],[0.327298,51.769169],[0.336109,51.768312],[0.338853,51.767906],[0.340548,51.767318],[0.3467,51.767596],[0.348283,51.768883],[0.347804,51.771357],[0.348102,51.7732],[0.346261,51.773242],[0.344463,51.774041],[0.340517,51.774114],[0.335264,51.775922],[0.333694,51.778814],[0.332198,51.779629],[0.332636,51.780975],[0.334141,51.781665],[0.334353,51.783126],[0.33532,51.784752],[0.334953,51.785711],[0.339616,51.786478],[0.340764,51.786432],[0.340698,51.788037],[0.338262,51.789085],[0.337699,51.790261],[0.337931,51.791412],[0.33983,51.792791],[0.340581,51.794478],[0.342936,51.793909],[0.34682,51.793502],[0.350158,51.794022],[0.354739,51.793493],[0.358781,51.793983],[0.358918,51.794528],[0.362617,51.794907],[0.362303,51.795673],[0.359512,51.796271],[0.359045,51.79813],[0.36173,51.798395],[0.36046,51.800124],[0.36157,51.80115],[0.364758,51.799656],[0.369681,51.799217],[0.374529,51.800834],[0.3788,51.799957],[0.379227,51.800388],[0.382787,51.799819],[0.381475,51.798211],[0.378504,51.798831],[0.378595,51.797649],[0.380936,51.79726],[0.384165,51.797074],[0.384743,51.798799],[0.386832,51.798501],[0.388009,51.799718],[0.388512,51.801606],[0.388333,51.803541],[0.389902,51.803888],[0.390006,51.805086],[0.394085,51.807106],[0.397334,51.807155],[0.398877,51.807497],[0.398923,51.809153],[0.40003,51.812762],[0.403579,51.812864],[0.404171,51.811505],[0.403272,51.81136],[0.402303,51.807712],[0.404615,51.807422],[0.407069,51.808414],[0.406868,51.810412],[0.404951,51.812489],[0.407833,51.813287],[0.408076,51.812807],[0.413053,51.813216],[0.414397,51.814345],[0.414669,51.816056],[0.412983,51.818066],[0.410821,51.819615],[0.41074,51.821898],[0.408623,51.823512],[0.407088,51.825407],[0.406351,51.828732],[0.406364,51.83085],[0.407926,51.831655],[0.410662,51.832361],[0.410871,51.834188],[0.407965,51.83571],[0.409986,51.836577],[0.403546,51.840197],[0.40432,51.842756],[0.405342,51.842866],[0.406631,51.843978],[0.40799,51.846188],[0.411745,51.8458],[0.411147,51.84494],[0.412905,51.844265],[0.412811,51.845616],[0.413922,51.845565],[0.413767,51.848541],[0.414625,51.849626],[0.415059,51.853546],[0.412996,51.856323],[0.416755,51.857478],[0.418118,51.857257],[0.420069,51.855114],[0.423152,51.854683],[0.424078,51.854073],[0.424774,51.851324],[0.424046,51.849429],[0.424482,51.848417],[0.424056,51.846236],[0.422579,51.844963],[0.425678,51.843297],[0.42607,51.84151],[0.428043,51.838363],[0.430657,51.836942],[0.431652,51.835261],[0.430566,51.833212],[0.43137,51.831647],[0.436706,51.831265],[0.439457,51.832462],[0.440606,51.830808],[0.443235,51.829391],[0.445773,51.828879],[0.447075,51.829123],[0.448537,51.830011],[0.449694,51.830183],[0.451376,51.833967],[0.453055,51.83463],[0.459343,51.835423],[0.461905,51.834605],[0.464731,51.837146],[0.465343,51.838702],[0.467116,51.839587],[0.475197,51.840474],[0.480721,51.840386],[0.486423,51.839927],[0.487342,51.841533],[0.486799,51.842649],[0.488901,51.842561],[0.492519,51.843277],[0.495899,51.844744],[0.500304,51.845504],[0.502079,51.846694],[0.506815,51.848155],[0.512511,51.848234],[0.51771,51.849207],[0.519262,51.850449],[0.513804,51.853168],[0.512093,51.854407],[0.511442,51.855546],[0.512133,51.857273],[0.511766,51.860637],[0.513538,51.863799],[0.513503,51.864397],[0.508048,51.864507],[0.50585,51.865579],[0.503275,51.86485],[0.501272,51.864633],[0.495825,51.867375],[0.494726,51.869581],[0.491563,51.869746],[0.490795,51.870386],[0.485035,51.869322],[0.48337,51.869722],[0.48275,51.87035],[0.483272,51.871556],[0.482693,51.872692],[0.479894,51.87401],[0.473203,51.876264],[0.472788,51.877306],[0.470639,51.878181],[0.469434,51.880272],[0.462737,51.886655],[0.455696,51.891377],[0.453414,51.894169],[0.45051,51.898921],[0.448216,51.901544],[0.444792,51.904053],[0.440033,51.908278],[0.439459,51.913113],[0.437302,51.919622],[0.435822,51.919765],[0.434633,51.920822],[0.433016,51.924798],[0.423935,51.926389],[0.421393,51.926304],[0.42027,51.930334],[0.421516,51.931383],[0.423016,51.931929],[0.422884,51.933096],[0.420987,51.936162],[0.420435,51.938398],[0.421026,51.938944],[0.419117,51.941108],[0.421104,51.94169],[0.420568,51.943603],[0.420854,51.944278],[0.424743,51.947787],[0.423454,51.949057],[0.425214,51.952031],[0.427233,51.951419],[0.430052,51.953821],[0.42718,51.9545],[0.425623,51.958203],[0.422584,51.95918],[0.420074,51.958388],[0.418758,51.958574],[0.417884,51.960015],[0.417923,51.961401],[0.416439,51.962707],[0.417531,51.963763],[0.417273,51.964515],[0.41777,51.966417],[0.415556,51.968734],[0.413821,51.969108],[0.412476,51.971061],[0.413141,51.971959],[0.412292,51.973091],[0.414169,51.974046],[0.417871,51.974103],[0.419637,51.974665],[0.421822,51.974636],[0.423622,51.973217],[0.424657,51.974551],[0.425124,51.975898],[0.4236,51.977069],[0.423522,51.978594],[0.424144,51.984167],[0.426943,51.986759],[0.425668,51.989806],[0.423444,51.991915],[0.421373,51.99281],[0.420195,51.994804],[0.421444,51.995912],[0.420892,51.996722],[0.421976,51.99716],[0.422588,51.998165],[0.420153,52.000818],[0.420257,52.001618],[0.418682,52.003757],[0.418858,52.004659],[0.417734,52.005596],[0.417081,52.007497],[0.415403,52.008827],[0.415211,52.010696],[0.413839,52.011682],[0.420073,52.014167],[0.420966,52.014835],[0.428019,52.01461],[0.43282,52.013274],[0.437755,52.014047],[0.435721,52.01668],[0.433222,52.018553],[0.431348,52.019145],[0.430442,52.020527],[0.43009,52.024731],[0.431103,52.025507],[0.430911,52.027771],[0.432697,52.032432],[0.432589,52.034044],[0.430083,52.033961],[0.43139,52.038933],[0.428249,52.039149],[0.423301,52.038995],[0.41284,52.038074],[0.394032,52.031841],[0.390781,52.035688],[0.389695,52.036467]]]},"properties":{"LAD22CD":"E07000077","LAD22NM":"Uttlesford","BNG_E":557832,"BNG_N":228865,"LONG":0.294485,"LAT":51.93592,"GlobalID":"e7adcd0a-717a-4300-8f99-694e627d0564"},"id":103}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.010215,51.902924],[-2.019258,51.902681],[-2.023603,51.902406],[-2.024641,51.902066],[-2.029904,51.904096],[-2.033781,51.904414],[-2.036553,51.905285],[-2.037901,51.905276],[-2.037534,51.907573],[-2.036212,51.908145],[-2.03459,51.907941],[-2.033179,51.909211],[-2.033663,51.912787],[-2.036652,51.912931],[-2.03651,51.91414],[-2.038023,51.913977],[-2.040527,51.9146],[-2.040595,51.915765],[-2.039729,51.91852],[-2.039944,51.922411],[-2.04649,51.922905],[-2.048479,51.923631],[-2.052592,51.926082],[-2.055023,51.927042],[-2.060207,51.928129],[-2.06249,51.92726],[-2.064455,51.928741],[-2.0707,51.930636],[-2.071899,51.931251],[-2.073918,51.930991],[-2.077021,51.931837],[-2.078878,51.93205],[-2.081887,51.931501],[-2.083553,51.931888],[-2.085835,51.931555],[-2.089617,51.931932],[-2.090972,51.932706],[-2.091293,51.933783],[-2.095062,51.936172],[-2.10281,51.936384],[-2.104937,51.937197],[-2.105861,51.934761],[-2.107683,51.933982],[-2.107122,51.931633],[-2.106094,51.930733],[-2.10662,51.929911],[-2.105991,51.928256],[-2.106365,51.927038],[-2.105479,51.926339],[-2.105212,51.9249],[-2.103251,51.923361],[-2.105135,51.921807],[-2.106254,51.919753],[-2.109623,51.915854],[-2.112513,51.916578],[-2.11465,51.916365],[-2.114878,51.916916],[-2.116807,51.917633],[-2.118929,51.917921],[-2.1204,51.918925],[-2.123598,51.919106],[-2.124499,51.919485],[-2.128878,51.913784],[-2.130319,51.909927],[-2.132979,51.90667],[-2.133462,51.904912],[-2.135375,51.902142],[-2.136295,51.900017],[-2.13689,51.899624],[-2.142998,51.88904],[-2.142418,51.884509],[-2.126078,51.88739],[-2.124402,51.886018],[-2.127139,51.884358],[-2.128597,51.882444],[-2.127726,51.87972],[-2.126025,51.879267],[-2.123252,51.883119],[-2.121965,51.882515],[-2.11795,51.8817],[-2.11399,51.8802],[-2.107709,51.878895],[-2.105907,51.878379],[-2.104274,51.876823],[-2.102269,51.875994],[-2.09752,51.878863],[-2.097042,51.876809],[-2.096245,51.875802],[-2.098011,51.875155],[-2.097464,51.874575],[-2.095167,51.874706],[-2.09317,51.875466],[-2.092366,51.873776],[-2.09277,51.872335],[-2.092288,51.871176],[-2.089894,51.872138],[-2.085712,51.873127],[-2.084435,51.872223],[-2.083527,51.87295],[-2.081305,51.87189],[-2.080719,51.870858],[-2.079343,51.872242],[-2.079799,51.873077],[-2.076825,51.872854],[-2.076072,51.872051],[-2.07668,51.870338],[-2.076242,51.868961],[-2.074792,51.868328],[-2.072233,51.868492],[-2.070671,51.868895],[-2.069553,51.8684],[-2.069936,51.867025],[-2.071251,51.865712],[-2.070757,51.865027],[-2.068357,51.864965],[-2.065874,51.864393],[-2.061946,51.864697],[-2.059365,51.864443],[-2.056168,51.862931],[-2.052019,51.859673],[-2.048117,51.858369],[-2.047254,51.858341],[-2.04183,51.859508],[-2.038524,51.860708],[-2.036991,51.86168],[-2.036543,51.864273],[-2.031729,51.8642],[-2.028036,51.865005],[-2.026948,51.864312],[-2.025252,51.864284],[-2.025347,51.865742],[-2.023918,51.86848],[-2.024793,51.870551],[-2.023278,51.872851],[-2.022105,51.876015],[-2.02111,51.87626],[-2.017953,51.879487],[-2.017196,51.879776],[-2.015612,51.881807],[-2.015602,51.883619],[-2.016703,51.885443],[-2.013009,51.8917],[-2.011844,51.895521],[-2.012608,51.897088],[-2.01267,51.898466],[-2.010215,51.902924]]]},"properties":{"LAD22CD":"E07000078","LAD22NM":"Cheltenham","BNG_E":394925,"BNG_N":222232,"LONG":-2.07515,"LAT":51.89861,"GlobalID":"4fc3097b-b209-4f7a-a8c7-8527cd91c5b4"},"id":104}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.665754,51.987489],[-1.669279,51.989219],[-1.669888,51.99309],[-1.665819,51.997247],[-1.661101,51.999389],[-1.659045,51.999828],[-1.657437,52.001007],[-1.655357,52.003399],[-1.653022,52.004562],[-1.651547,52.005724],[-1.648603,52.006765],[-1.644489,52.008763],[-1.642838,52.009203],[-1.641936,52.010299],[-1.642162,52.011406],[-1.643302,52.0129],[-1.642612,52.015312],[-1.638649,52.020487],[-1.635263,52.021982],[-1.628405,52.027207],[-1.627034,52.027381],[-1.624551,52.026405],[-1.620958,52.027686],[-1.620145,52.027712],[-1.618733,52.029086],[-1.618474,52.030561],[-1.617531,52.031598],[-1.617507,52.033395],[-1.618907,52.034176],[-1.619268,52.03494],[-1.621461,52.035233],[-1.622563,52.036079],[-1.624227,52.036212],[-1.625062,52.037683],[-1.624418,52.038981],[-1.626683,52.038502],[-1.626879,52.037896],[-1.628494,52.036911],[-1.629107,52.037285],[-1.632212,52.035918],[-1.634868,52.036995],[-1.639253,52.037239],[-1.643369,52.035291],[-1.644218,52.034577],[-1.646122,52.034684],[-1.648095,52.033993],[-1.650968,52.035199],[-1.65355,52.035402],[-1.655575,52.034796],[-1.65644,52.032178],[-1.659093,52.031626],[-1.66484,52.031775],[-1.667133,52.036073],[-1.67065,52.036728],[-1.673348,52.036042],[-1.676397,52.036705],[-1.678203,52.036534],[-1.680978,52.037376],[-1.683303,52.03733],[-1.683707,52.037797],[-1.685699,52.037393],[-1.689765,52.038196],[-1.691851,52.039759],[-1.693981,52.039528],[-1.695002,52.040525],[-1.694796,52.042939],[-1.693041,52.045006],[-1.691164,52.048243],[-1.690607,52.051448],[-1.688637,52.051833],[-1.690013,52.053181],[-1.69018,52.054736],[-1.692358,52.054379],[-1.699561,52.05463],[-1.702502,52.056226],[-1.702987,52.057494],[-1.705141,52.059707],[-1.70544,52.061557],[-1.704049,52.063271],[-1.703361,52.067536],[-1.701579,52.070292],[-1.701732,52.072809],[-1.707993,52.072501],[-1.709882,52.073349],[-1.712219,52.070667],[-1.712671,52.06834],[-1.711812,52.066636],[-1.71428,52.066728],[-1.717071,52.068208],[-1.720675,52.068784],[-1.722992,52.069513],[-1.724225,52.06955],[-1.728782,52.071569],[-1.728153,52.072748],[-1.730672,52.073399],[-1.728159,52.081446],[-1.729067,52.081514],[-1.729452,52.084066],[-1.728071,52.088384],[-1.728848,52.08876],[-1.728399,52.090974],[-1.730509,52.092786],[-1.73019,52.095246],[-1.729635,52.095255],[-1.728543,52.097998],[-1.730219,52.097994],[-1.7322,52.097003],[-1.732887,52.095054],[-1.737893,52.091748],[-1.739715,52.091414],[-1.742398,52.09224],[-1.746885,52.093251],[-1.750941,52.095431],[-1.751791,52.096923],[-1.75354,52.097667],[-1.754837,52.099292],[-1.754128,52.10093],[-1.755041,52.101236],[-1.757684,52.103162],[-1.758867,52.106076],[-1.762528,52.107351],[-1.763711,52.108506],[-1.766222,52.109637],[-1.767649,52.112593],[-1.771013,52.111874],[-1.773932,52.110631],[-1.778373,52.109479],[-1.785685,52.107038],[-1.789668,52.106237],[-1.788259,52.103634],[-1.790135,52.100592],[-1.791724,52.099611],[-1.795534,52.100771],[-1.802289,52.096941],[-1.806459,52.092669],[-1.809793,52.08756],[-1.809187,52.087217],[-1.80936,52.085885],[-1.813121,52.082754],[-1.812283,52.081934],[-1.812737,52.078744],[-1.813944,52.078726],[-1.816127,52.079612],[-1.817818,52.084794],[-1.818944,52.085404],[-1.822466,52.08114],[-1.829786,52.075269],[-1.8318,52.073215],[-1.834466,52.073111],[-1.837637,52.074275],[-1.84662,52.079421],[-1.849185,52.077279],[-1.850884,52.074555],[-1.853389,52.072367],[-1.854365,52.072869],[-1.855607,52.074441],[-1.863179,52.073775],[-1.869045,52.073857],[-1.872005,52.071917],[-1.869499,52.071385],[-1.872918,52.070162],[-1.874406,52.069991],[-1.871682,52.065426],[-1.864989,52.066278],[-1.862878,52.063432],[-1.861403,52.058311],[-1.861814,52.055833],[-1.863449,52.053418],[-1.860243,52.052144],[-1.857325,52.052247],[-1.853842,52.049761],[-1.847814,52.046537],[-1.838889,52.043707],[-1.834586,52.04373],[-1.83484,52.043288],[-1.832944,52.041764],[-1.832407,52.040134],[-1.829751,52.039072],[-1.830127,52.037687],[-1.829087,52.03633],[-1.830626,52.032832],[-1.828951,52.032074],[-1.825023,52.030933],[-1.826238,52.029146],[-1.83566,52.022503],[-1.834122,52.01702],[-1.834408,52.014611],[-1.835667,52.011232],[-1.835309,52.009162],[-1.83905,52.006783],[-1.837185,52.005855],[-1.833021,52.005896],[-1.829717,52.005144],[-1.826197,52.004758],[-1.821088,52.003273],[-1.817931,52.001384],[-1.806875,52.002673],[-1.80631,52.000948],[-1.804796,51.999007],[-1.801679,51.996895],[-1.805186,51.996138],[-1.808239,51.994365],[-1.810219,51.991757],[-1.812199,51.988019],[-1.820397,51.9874],[-1.823267,51.988222],[-1.82479,51.989153],[-1.831947,51.987794],[-1.841739,51.987762],[-1.847342,51.988524],[-1.854061,51.990825],[-1.857562,51.991449],[-1.861758,51.993196],[-1.865359,51.995159],[-1.872969,51.991775],[-1.876108,51.989587],[-1.878489,51.988565],[-1.883426,51.983613],[-1.871637,51.981572],[-1.868465,51.980591],[-1.869564,51.978809],[-1.871993,51.977555],[-1.872748,51.97674],[-1.873015,51.974478],[-1.875412,51.971511],[-1.875225,51.97004],[-1.876359,51.968123],[-1.874229,51.965583],[-1.8745,51.965098],[-1.877286,51.964442],[-1.879973,51.964266],[-1.881974,51.965326],[-1.890784,51.960565],[-1.892697,51.960239],[-1.89707,51.960325],[-1.899607,51.96149],[-1.902818,51.962336],[-1.901572,51.964324],[-1.901272,51.966238],[-1.900618,51.967149],[-1.903121,51.968132],[-1.904078,51.969167],[-1.906518,51.968376],[-1.908919,51.968137],[-1.910277,51.9686],[-1.910931,51.969385],[-1.913078,51.968695],[-1.915335,51.965509],[-1.915592,51.963608],[-1.916633,51.962731],[-1.92056,51.963334],[-1.922851,51.963034],[-1.926101,51.961452],[-1.927613,51.960435],[-1.928375,51.959063],[-1.931532,51.957471],[-1.931041,51.954405],[-1.928472,51.949934],[-1.926952,51.944622],[-1.924148,51.940335],[-1.923187,51.934889],[-1.918362,51.935785],[-1.916287,51.93435],[-1.907235,51.932307],[-1.90633,51.93139],[-1.896609,51.929787],[-1.894486,51.928624],[-1.891365,51.927907],[-1.889293,51.926772],[-1.887206,51.926193],[-1.890913,51.922458],[-1.890823,51.921274],[-1.891977,51.919605],[-1.890462,51.917695],[-1.88679,51.917289],[-1.88666,51.91462],[-1.887861,51.911888],[-1.883654,51.910789],[-1.88324,51.910931],[-1.877202,51.909196],[-1.871729,51.90896],[-1.868405,51.908068],[-1.871204,51.903947],[-1.87713,51.900854],[-1.880414,51.897964],[-1.880735,51.896791],[-1.878538,51.896692],[-1.878525,51.897281],[-1.872968,51.896647],[-1.868999,51.897068],[-1.866809,51.896913],[-1.862118,51.897459],[-1.857029,51.896781],[-1.854854,51.895784],[-1.853609,51.89343],[-1.855827,51.893384],[-1.858656,51.89246],[-1.860412,51.890713],[-1.86205,51.889722],[-1.869065,51.891854],[-1.873386,51.893657],[-1.872602,51.890237],[-1.874781,51.88996],[-1.880486,51.890865],[-1.882886,51.891532],[-1.883414,51.892499],[-1.882177,51.894279],[-1.896016,51.8943],[-1.895354,51.893349],[-1.896638,51.891129],[-1.897693,51.891086],[-1.898296,51.889936],[-1.900214,51.88931],[-1.901667,51.887012],[-1.903136,51.887162],[-1.905985,51.88802],[-1.907519,51.887585],[-1.91216,51.887601],[-1.914945,51.889156],[-1.921662,51.894212],[-1.927317,51.89643],[-1.928339,51.899019],[-1.927412,51.900854],[-1.926735,51.901313],[-1.927241,51.903154],[-1.92987,51.903916],[-1.929406,51.904694],[-1.933077,51.905119],[-1.93576,51.906235],[-1.938863,51.906903],[-1.940082,51.90634],[-1.939543,51.904977],[-1.942358,51.904874],[-1.942475,51.905277],[-1.945718,51.905464],[-1.952803,51.905026],[-1.953297,51.902865],[-1.957558,51.902289],[-1.960581,51.902458],[-1.962167,51.902794],[-1.965755,51.904294],[-1.972538,51.905845],[-1.976038,51.906284],[-1.981143,51.908388],[-1.981165,51.908939],[-1.986763,51.910902],[-1.994169,51.914977],[-1.994922,51.913411],[-1.996296,51.912031],[-1.998064,51.907394],[-2.00042,51.904075],[-2.00967,51.905868],[-2.010215,51.902924],[-2.01267,51.898466],[-2.012608,51.897088],[-2.011844,51.895521],[-2.013009,51.8917],[-2.016703,51.885443],[-2.015602,51.883619],[-2.015612,51.881807],[-2.017196,51.879776],[-2.017953,51.879487],[-2.02111,51.87626],[-2.022105,51.876015],[-2.023278,51.872851],[-2.024793,51.870551],[-2.023918,51.86848],[-2.025347,51.865742],[-2.025252,51.864284],[-2.026948,51.864312],[-2.028036,51.865005],[-2.031729,51.8642],[-2.036543,51.864273],[-2.036991,51.86168],[-2.038524,51.860708],[-2.04183,51.859508],[-2.047254,51.858341],[-2.048117,51.858369],[-2.052019,51.859673],[-2.056168,51.862931],[-2.059365,51.864443],[-2.061946,51.864697],[-2.065874,51.864393],[-2.068357,51.864965],[-2.070757,51.865027],[-2.070289,51.864432],[-2.070674,51.861873],[-2.071926,51.860193],[-2.074497,51.858689],[-2.074608,51.858261],[-2.079978,51.856905],[-2.080102,51.855715],[-2.082138,51.854922],[-2.083922,51.854625],[-2.087456,51.856367],[-2.089291,51.856798],[-2.091129,51.856675],[-2.091957,51.856128],[-2.094667,51.856385],[-2.096564,51.856194],[-2.098411,51.85656],[-2.098556,51.855534],[-2.097815,51.854431],[-2.096882,51.851224],[-2.098526,51.850182],[-2.101127,51.847397],[-2.10355,51.845962],[-2.102889,51.845312],[-2.10753,51.842778],[-2.104722,51.842248],[-2.098733,51.84336],[-2.100339,51.842329],[-2.100824,51.841253],[-2.100137,51.840215],[-2.100986,51.837571],[-2.105867,51.834676],[-2.107833,51.833906],[-2.110239,51.833813],[-2.111565,51.833418],[-2.110293,51.83178],[-2.111134,51.830668],[-2.111147,51.828502],[-2.111577,51.827232],[-2.1141,51.826901],[-2.113611,51.824648],[-2.114895,51.82279],[-2.117424,51.821092],[-2.121177,51.81956],[-2.131971,51.819369],[-2.134255,51.819919],[-2.135431,51.818893],[-2.134924,51.817616],[-2.132687,51.816601],[-2.128824,51.815807],[-2.123695,51.8102],[-2.121887,51.809569],[-2.117593,51.809163],[-2.118231,51.805911],[-2.119502,51.803361],[-2.117424,51.800616],[-2.114521,51.799045],[-2.11242,51.799472],[-2.110587,51.798818],[-2.108824,51.796769],[-2.10696,51.797168],[-2.105597,51.797001],[-2.104756,51.795843],[-2.101279,51.795504],[-2.0988,51.794275],[-2.098305,51.793195],[-2.09248,51.792398],[-2.088837,51.790688],[-2.08381,51.78895],[-2.084045,51.78811],[-2.082951,51.786963],[-2.083631,51.786248],[-2.083181,51.785107],[-2.083539,51.783645],[-2.082823,51.782623],[-2.080983,51.781811],[-2.083125,51.780409],[-2.082754,51.778455],[-2.08077,51.778321],[-2.079484,51.777285],[-2.080012,51.776045],[-2.07922,51.775058],[-2.076356,51.774001],[-2.07594,51.773265],[-2.076771,51.772073],[-2.076947,51.770705],[-2.073121,51.769906],[-2.073639,51.768447],[-2.079047,51.767793],[-2.083902,51.766627],[-2.090342,51.765641],[-2.092974,51.766104],[-2.099104,51.766145],[-2.100817,51.766425],[-2.102652,51.767278],[-2.103677,51.766057],[-2.102922,51.764163],[-2.103755,51.762342],[-2.103675,51.759714],[-2.104564,51.758593],[-2.105931,51.757768],[-2.106708,51.755654],[-2.105632,51.753757],[-2.107188,51.752002],[-2.106789,51.750403],[-2.106169,51.750019],[-2.107163,51.747542],[-2.106356,51.746745],[-2.105986,51.744036],[-2.103625,51.742854],[-2.101865,51.740969],[-2.098625,51.741961],[-2.098201,51.742804],[-2.096252,51.744573],[-2.093384,51.745954],[-2.089633,51.746994],[-2.088588,51.74519],[-2.083493,51.744645],[-2.080256,51.743633],[-2.07995,51.739286],[-2.07345,51.739235],[-2.070997,51.739525],[-2.068793,51.73911],[-2.068624,51.738461],[-2.070403,51.737842],[-2.072036,51.736663],[-2.071987,51.735507],[-2.073968,51.734977],[-2.074843,51.734358],[-2.077294,51.736048],[-2.080394,51.734591],[-2.083517,51.735814],[-2.08408,51.734741],[-2.083791,51.732048],[-2.081571,51.729645],[-2.083254,51.729449],[-2.084694,51.728316],[-2.088461,51.72917],[-2.091635,51.728167],[-2.097343,51.726991],[-2.098512,51.726235],[-2.102458,51.725143],[-2.10492,51.725667],[-2.10808,51.725441],[-2.11065,51.726038],[-2.112357,51.725401],[-2.117725,51.724698],[-2.120289,51.725008],[-2.124759,51.724468],[-2.126446,51.724903],[-2.128152,51.724749],[-2.13041,51.723895],[-2.13447,51.723216],[-2.13329,51.718654],[-2.133542,51.71778],[-2.132509,51.714815],[-2.133092,51.714696],[-2.132328,51.711898],[-2.133086,51.711778],[-2.133227,51.708602],[-2.13109,51.708732],[-2.129345,51.709314],[-2.125119,51.707464],[-2.123728,51.70618],[-2.124063,51.704927],[-2.125849,51.703032],[-2.129123,51.70071],[-2.129906,51.697276],[-2.135915,51.698911],[-2.140773,51.699331],[-2.140898,51.698843],[-2.146171,51.69417],[-2.149225,51.692031],[-2.149394,51.690176],[-2.150278,51.689757],[-2.152092,51.689973],[-2.152859,51.688907],[-2.154295,51.688577],[-2.158985,51.686396],[-2.160385,51.687036],[-2.16413,51.690577],[-2.166674,51.690246],[-2.1715,51.690353],[-2.175178,51.690789],[-2.177145,51.687681],[-2.180687,51.687623],[-2.18273,51.688816],[-2.187472,51.688426],[-2.187914,51.690563],[-2.18925,51.691541],[-2.193318,51.690695],[-2.19359,51.69119],[-2.195568,51.691549],[-2.196518,51.692542],[-2.200626,51.692839],[-2.199886,51.69137],[-2.200442,51.690028],[-2.201856,51.689321],[-2.205011,51.688793],[-2.20672,51.685781],[-2.209369,51.683608],[-2.211845,51.682245],[-2.210003,51.681885],[-2.206084,51.682023],[-2.204633,51.681548],[-2.201909,51.679018],[-2.202302,51.67724],[-2.200584,51.674641],[-2.19814,51.674049],[-2.196369,51.672718],[-2.194699,51.672111],[-2.190649,51.672649],[-2.187768,51.669691],[-2.187892,51.667304],[-2.188769,51.664995],[-2.191516,51.661866],[-2.192109,51.659761],[-2.19417,51.659855],[-2.197022,51.660531],[-2.197274,51.659689],[-2.202529,51.659966],[-2.202625,51.659735],[-2.212152,51.66078],[-2.214812,51.66064],[-2.219523,51.659755],[-2.226339,51.660152],[-2.232723,51.66092],[-2.23233,51.662212],[-2.234087,51.662982],[-2.235792,51.663198],[-2.235743,51.665145],[-2.237573,51.665356],[-2.238483,51.667332],[-2.240454,51.668458],[-2.240344,51.66896],[-2.24244,51.670749],[-2.24326,51.672096],[-2.24253,51.674042],[-2.244289,51.673759],[-2.24675,51.674365],[-2.24705,51.676345],[-2.249324,51.67633],[-2.252125,51.676783],[-2.258794,51.677218],[-2.265358,51.678289],[-2.26779,51.680387],[-2.268437,51.681435],[-2.271529,51.682887],[-2.276154,51.680635],[-2.276955,51.680483],[-2.28025,51.681449],[-2.280256,51.681941],[-2.285368,51.681407],[-2.284321,51.67957],[-2.285689,51.679291],[-2.286853,51.678396],[-2.285792,51.677473],[-2.286446,51.674729],[-2.284906,51.673308],[-2.283027,51.674247],[-2.281798,51.673643],[-2.282634,51.672099],[-2.284502,51.671567],[-2.283846,51.67005],[-2.28649,51.669472],[-2.286736,51.669932],[-2.289697,51.669458],[-2.2843,51.667006],[-2.283443,51.665761],[-2.285826,51.665545],[-2.287291,51.665048],[-2.287447,51.663511],[-2.289541,51.663259],[-2.289405,51.662249],[-2.291725,51.659659],[-2.291804,51.658157],[-2.292809,51.658314],[-2.293317,51.65703],[-2.292852,51.656193],[-2.295844,51.655466],[-2.295573,51.654983],[-2.298363,51.654484],[-2.299413,51.653217],[-2.301472,51.653304],[-2.302845,51.653716],[-2.305986,51.651207],[-2.311092,51.648332],[-2.312898,51.647827],[-2.315361,51.645845],[-2.312603,51.644736],[-2.312259,51.644085],[-2.310219,51.643686],[-2.30975,51.642781],[-2.307525,51.642475],[-2.309272,51.640327],[-2.311413,51.638868],[-2.314259,51.637948],[-2.316261,51.636675],[-2.317796,51.637101],[-2.322198,51.635539],[-2.323052,51.634785],[-2.323597,51.632821],[-2.32294,51.63157],[-2.321569,51.630265],[-2.320293,51.627543],[-2.317331,51.626438],[-2.316442,51.625492],[-2.31434,51.625055],[-2.31225,51.626161],[-2.310328,51.626464],[-2.308526,51.628005],[-2.299671,51.6316],[-2.293761,51.632514],[-2.292284,51.630337],[-2.290865,51.630622],[-2.289176,51.62951],[-2.288241,51.628354],[-2.286312,51.627884],[-2.282213,51.622189],[-2.279328,51.621188],[-2.276853,51.619149],[-2.275872,51.616794],[-2.275793,51.615458],[-2.274325,51.614587],[-2.278691,51.613021],[-2.280822,51.611533],[-2.285182,51.604735],[-2.286712,51.603131],[-2.287507,51.601216],[-2.287596,51.599318],[-2.290125,51.596515],[-2.291637,51.593696],[-2.289854,51.593204],[-2.2893,51.592361],[-2.290448,51.590968],[-2.2927,51.589964],[-2.294086,51.588574],[-2.293425,51.587702],[-2.291005,51.58693],[-2.290528,51.587414],[-2.287672,51.586583],[-2.286008,51.585534],[-2.283503,51.584963],[-2.284594,51.584151],[-2.286551,51.584471],[-2.287278,51.583157],[-2.284933,51.583242],[-2.282072,51.582268],[-2.280717,51.581044],[-2.282049,51.580701],[-2.281278,51.579622],[-2.282746,51.578517],[-2.278669,51.577803],[-2.276562,51.579896],[-2.274474,51.578911],[-2.272559,51.57759],[-2.271307,51.578543],[-2.269587,51.581851],[-2.264267,51.582988],[-2.256796,51.582809],[-2.251842,51.583214],[-2.250623,51.582049],[-2.245117,51.581409],[-2.244656,51.5836],[-2.242684,51.587969],[-2.241115,51.589703],[-2.241867,51.592107],[-2.236103,51.593858],[-2.23063,51.595072],[-2.226048,51.595199],[-2.222945,51.59611],[-2.217954,51.59918],[-2.212734,51.601228],[-2.210813,51.60296],[-2.207427,51.603401],[-2.205954,51.601294],[-2.206003,51.598233],[-2.206553,51.595949],[-2.200622,51.596191],[-2.194275,51.595516],[-2.192443,51.595813],[-2.192071,51.594263],[-2.190013,51.592503],[-2.183319,51.594947],[-2.183744,51.595861],[-2.181063,51.596508],[-2.182776,51.59923],[-2.179491,51.600046],[-2.177415,51.597325],[-2.176682,51.597491],[-2.174718,51.596166],[-2.170925,51.59577],[-2.167889,51.59496],[-2.16772,51.594561],[-2.162196,51.593508],[-2.158063,51.593491],[-2.156455,51.591959],[-2.15439,51.591468],[-2.152538,51.590342],[-2.134519,51.607915],[-2.12074,51.62053],[-2.117484,51.622598],[-2.113615,51.62638],[-2.10663,51.632092],[-2.073412,51.659499],[-2.057174,51.672443],[-2.054675,51.671388],[-2.053399,51.669713],[-2.047086,51.666934],[-2.046201,51.665454],[-2.040783,51.661844],[-2.03366,51.658455],[-2.031817,51.658318],[-2.027996,51.656756],[-2.025323,51.655223],[-2.024437,51.654287],[-2.021047,51.655121],[-2.020859,51.653605],[-2.019925,51.652432],[-2.015592,51.650515],[-2.012898,51.650648],[-2.010503,51.648867],[-2.006239,51.649304],[-2.003211,51.648979],[-2.001909,51.649121],[-1.997347,51.651254],[-1.995308,51.651364],[-1.993727,51.649673],[-1.992184,51.649807],[-1.991191,51.649072],[-1.991264,51.647471],[-1.987605,51.646411],[-1.986514,51.645626],[-1.985776,51.643887],[-1.984778,51.643184],[-1.983006,51.643485],[-1.980098,51.642898],[-1.976478,51.643347],[-1.977327,51.638091],[-1.975801,51.638159],[-1.974438,51.638887],[-1.971882,51.63916],[-1.970942,51.639683],[-1.968741,51.63996],[-1.964683,51.638745],[-1.959919,51.638883],[-1.957147,51.637865],[-1.954342,51.637894],[-1.950519,51.636963],[-1.961175,51.656885],[-1.962332,51.656728],[-1.963057,51.658656],[-1.957886,51.659682],[-1.958631,51.661102],[-1.954605,51.662548],[-1.954797,51.66533],[-1.952423,51.665472],[-1.951831,51.667253],[-1.94949,51.667409],[-1.947312,51.669115],[-1.944222,51.669986],[-1.942455,51.670009],[-1.939055,51.669172],[-1.938919,51.667845],[-1.928663,51.661537],[-1.925571,51.661081],[-1.926765,51.660253],[-1.921704,51.65865],[-1.920905,51.657244],[-1.914043,51.655639],[-1.908906,51.655189],[-1.908761,51.656416],[-1.905585,51.65551],[-1.903903,51.656028],[-1.895743,51.653093],[-1.895102,51.652364],[-1.892277,51.651191],[-1.888398,51.648859],[-1.884267,51.6499],[-1.881537,51.651426],[-1.880757,51.652335],[-1.877297,51.651981],[-1.876326,51.653085],[-1.878625,51.654215],[-1.88671,51.65944],[-1.889194,51.664917],[-1.888461,51.665809],[-1.891763,51.666913],[-1.891907,51.668417],[-1.893895,51.670193],[-1.894701,51.670511],[-1.89677,51.672799],[-1.896839,51.674209],[-1.898443,51.676795],[-1.899757,51.677824],[-1.899013,51.679686],[-1.895051,51.677013],[-1.893289,51.676939],[-1.889067,51.678296],[-1.882933,51.680858],[-1.882254,51.680609],[-1.878647,51.681875],[-1.873884,51.68259],[-1.872454,51.678759],[-1.868706,51.675813],[-1.868746,51.675137],[-1.866342,51.674417],[-1.865491,51.673462],[-1.86484,51.670635],[-1.862852,51.669992],[-1.860142,51.668484],[-1.860726,51.666702],[-1.860533,51.664821],[-1.857345,51.662213],[-1.855015,51.662192],[-1.853286,51.661093],[-1.85305,51.659934],[-1.851146,51.657881],[-1.850484,51.656285],[-1.846447,51.656544],[-1.840368,51.656193],[-1.834471,51.65752],[-1.819537,51.662782],[-1.816211,51.662947],[-1.815198,51.663529],[-1.816539,51.664863],[-1.81676,51.667938],[-1.817871,51.669224],[-1.818445,51.670552],[-1.819897,51.670992],[-1.82109,51.672036],[-1.820964,51.67278],[-1.823009,51.67313],[-1.822959,51.67459],[-1.821361,51.675976],[-1.821671,51.676856],[-1.820378,51.678],[-1.817096,51.679622],[-1.816042,51.680637],[-1.815404,51.681931],[-1.812472,51.686],[-1.81349,51.687742],[-1.815195,51.688615],[-1.819367,51.694261],[-1.819367,51.696011],[-1.818699,51.696873],[-1.819309,51.698156],[-1.819286,51.699577],[-1.818488,51.70231],[-1.811943,51.703146],[-1.811941,51.702049],[-1.807492,51.699155],[-1.811173,51.697482],[-1.806667,51.692814],[-1.807211,51.692514],[-1.80616,51.69054],[-1.803661,51.68825],[-1.802462,51.685359],[-1.801236,51.685499],[-1.799357,51.68084],[-1.796611,51.677084],[-1.794439,51.676772],[-1.795437,51.672794],[-1.792063,51.670361],[-1.790689,51.668603],[-1.788617,51.667002],[-1.784497,51.667797],[-1.781483,51.669074],[-1.778023,51.669113],[-1.776989,51.669391],[-1.774549,51.668272],[-1.772937,51.66792],[-1.770275,51.66797],[-1.768469,51.66562],[-1.768188,51.663797],[-1.76632,51.662684],[-1.761457,51.662453],[-1.760101,51.663026],[-1.757894,51.663168],[-1.754562,51.662599],[-1.750999,51.663241],[-1.749175,51.662975],[-1.744882,51.664103],[-1.744681,51.664746],[-1.742084,51.665433],[-1.741654,51.666053],[-1.739213,51.667426],[-1.737345,51.667292],[-1.735473,51.667678],[-1.731646,51.667451],[-1.728577,51.66777],[-1.727554,51.66721],[-1.726558,51.667896],[-1.724737,51.668149],[-1.72223,51.66974],[-1.720856,51.668846],[-1.717464,51.670971],[-1.712904,51.671887],[-1.711055,51.671793],[-1.711274,51.674879],[-1.709578,51.676281],[-1.710245,51.677325],[-1.709381,51.677911],[-1.708844,51.679494],[-1.709794,51.680095],[-1.709661,51.681657],[-1.707434,51.683381],[-1.706132,51.68337],[-1.706012,51.684695],[-1.703725,51.685954],[-1.700652,51.686473],[-1.700576,51.6878],[-1.698993,51.687642],[-1.699064,51.688872],[-1.698233,51.689258],[-1.697682,51.690866],[-1.696831,51.692042],[-1.693647,51.692713],[-1.691434,51.692175],[-1.688549,51.692192],[-1.686931,51.691278],[-1.684146,51.691191],[-1.683059,51.69011],[-1.681338,51.690397],[-1.679113,51.689397],[-1.676016,51.688407],[-1.675008,51.687328],[-1.676025,51.686847],[-1.673769,51.684767],[-1.67439,51.683709],[-1.676264,51.684211],[-1.675208,51.682535],[-1.669079,51.681271],[-1.668459,51.680438],[-1.665862,51.68105],[-1.66531,51.681776],[-1.663293,51.681295],[-1.662168,51.68154],[-1.659563,51.680756],[-1.655577,51.681808],[-1.652655,51.681525],[-1.648254,51.684087],[-1.648838,51.685414],[-1.653391,51.687181],[-1.651816,51.687525],[-1.651092,51.688802],[-1.654221,51.690281],[-1.655484,51.691455],[-1.655292,51.693629],[-1.656215,51.693816],[-1.657438,51.696451],[-1.659028,51.697504],[-1.662442,51.696437],[-1.6647,51.696879],[-1.666524,51.698365],[-1.67531,51.703761],[-1.681892,51.709037],[-1.686166,51.710176],[-1.688,51.712045],[-1.687679,51.712826],[-1.688768,51.71361],[-1.687301,51.714555],[-1.688918,51.716541],[-1.688819,51.717382],[-1.692587,51.72002],[-1.693707,51.721588],[-1.695107,51.722381],[-1.695819,51.723773],[-1.690108,51.726389],[-1.6868,51.728519],[-1.685508,51.730634],[-1.685791,51.733394],[-1.686626,51.734136],[-1.687485,51.736798],[-1.689041,51.739146],[-1.687021,51.739884],[-1.688306,51.741986],[-1.692678,51.746],[-1.691644,51.746661],[-1.694866,51.748575],[-1.693925,51.749073],[-1.695652,51.752308],[-1.693678,51.753662],[-1.696431,51.757142],[-1.69848,51.761606],[-1.699649,51.764531],[-1.69925,51.764631],[-1.700705,51.770584],[-1.708404,51.777521],[-1.717526,51.781519],[-1.719489,51.783212],[-1.713849,51.786126],[-1.707721,51.7883],[-1.702148,51.790995],[-1.69345,51.794149],[-1.686877,51.798239],[-1.685739,51.799863],[-1.683753,51.801337],[-1.680274,51.807127],[-1.677814,51.812957],[-1.67686,51.817025],[-1.678093,51.817023],[-1.68112,51.816053],[-1.683126,51.820294],[-1.684163,51.825687],[-1.684607,51.825572],[-1.68604,51.830749],[-1.686462,51.834456],[-1.685427,51.836932],[-1.683054,51.840324],[-1.681128,51.841904],[-1.679208,51.845994],[-1.678685,51.849467],[-1.676385,51.85031],[-1.678694,51.852922],[-1.680589,51.854729],[-1.681157,51.85964],[-1.687192,51.862827],[-1.685052,51.864316],[-1.686868,51.8655],[-1.686351,51.866292],[-1.683547,51.868716],[-1.680782,51.869163],[-1.678866,51.869825],[-1.675569,51.872631],[-1.674462,51.872576],[-1.673573,51.874051],[-1.671649,51.875126],[-1.668041,51.876338],[-1.667112,51.877],[-1.667125,51.877985],[-1.668952,51.878059],[-1.669262,51.879566],[-1.668957,51.881504],[-1.666873,51.881456],[-1.666978,51.882962],[-1.666014,51.885026],[-1.663926,51.886092],[-1.66262,51.887344],[-1.66255,51.891712],[-1.663021,51.892226],[-1.661269,51.893537],[-1.66167,51.894447],[-1.658967,51.895653],[-1.657589,51.897188],[-1.655571,51.896602],[-1.6532,51.89697],[-1.651368,51.895872],[-1.648716,51.895441],[-1.647472,51.894903],[-1.644224,51.894861],[-1.643505,51.895888],[-1.641549,51.895536],[-1.639544,51.897121],[-1.637793,51.897309],[-1.634177,51.898508],[-1.633051,51.899225],[-1.633582,51.900042],[-1.635769,51.9019],[-1.635167,51.902692],[-1.635634,51.904389],[-1.633746,51.905475],[-1.635967,51.907105],[-1.634695,51.908302],[-1.635299,51.909336],[-1.635095,51.910403],[-1.634183,51.911587],[-1.634841,51.912883],[-1.636252,51.912806],[-1.637952,51.912037],[-1.641439,51.913717],[-1.642664,51.912702],[-1.643916,51.913058],[-1.644221,51.914015],[-1.645373,51.914865],[-1.643574,51.916087],[-1.644462,51.916982],[-1.644837,51.918692],[-1.642611,51.919035],[-1.64146,51.919773],[-1.641182,51.921562],[-1.64282,51.922199],[-1.64553,51.922294],[-1.64337,51.923725],[-1.640021,51.925114],[-1.637834,51.926702],[-1.636118,51.927453],[-1.633764,51.929197],[-1.630007,51.931525],[-1.628257,51.933133],[-1.623599,51.935738],[-1.61991,51.937473],[-1.617284,51.937291],[-1.615189,51.937682],[-1.622782,51.946397],[-1.625354,51.949933],[-1.628869,51.9532],[-1.632491,51.955651],[-1.635313,51.956829],[-1.638836,51.956684],[-1.643387,51.957139],[-1.645768,51.956984],[-1.648927,51.958925],[-1.652334,51.957684],[-1.655367,51.957503],[-1.655179,51.959815],[-1.653467,51.959847],[-1.652375,51.961512],[-1.657224,51.963114],[-1.660959,51.963348],[-1.662529,51.964005],[-1.664279,51.96645],[-1.66608,51.971131],[-1.668943,51.975273],[-1.667521,51.978399],[-1.665336,51.980563],[-1.664929,51.983167],[-1.664099,51.984928],[-1.664639,51.985102],[-1.665754,51.987489]]]},"properties":{"LAD22CD":"E07000079","LAD22NM":"Cotswold","BNG_E":402125,"BNG_N":208209,"LONG":-1.97059,"LAT":51.77255,"GlobalID":"5d33e557-41f2-421f-8512-2aa2f3e741fb"},"id":105}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.351379,52.021359],[-2.352621,52.020361],[-2.35441,52.019681],[-2.356249,52.019685],[-2.357024,52.01922],[-2.361473,52.018183],[-2.363424,52.018096],[-2.365198,52.017482],[-2.368673,52.017294],[-2.375334,52.01599],[-2.379954,52.013848],[-2.386983,52.012167],[-2.392892,52.012959],[-2.394075,52.011791],[-2.394703,52.009868],[-2.394882,52.006755],[-2.395565,52.005745],[-2.394899,52.004689],[-2.395102,52.003732],[-2.396778,52.001074],[-2.399424,51.999325],[-2.399019,51.996146],[-2.402975,51.996135],[-2.413196,51.99409],[-2.41623,51.994162],[-2.418072,51.994594],[-2.421013,51.994241],[-2.422822,51.994341],[-2.427139,51.995801],[-2.432405,51.996015],[-2.436608,51.996843],[-2.437153,51.997532],[-2.435642,51.997941],[-2.435006,51.998961],[-2.435719,51.999386],[-2.435948,52.002438],[-2.435537,52.003633],[-2.435658,52.005591],[-2.433823,52.006846],[-2.433635,52.007871],[-2.434104,52.009553],[-2.435585,52.01047],[-2.433724,52.012268],[-2.435163,52.013066],[-2.436116,52.014574],[-2.437824,52.014337],[-2.44058,52.014462],[-2.443452,52.015114],[-2.44408,52.015735],[-2.446019,52.015272],[-2.447736,52.015769],[-2.456089,52.014799],[-2.460272,52.015645],[-2.461981,52.014485],[-2.463542,52.014411],[-2.463505,52.015605],[-2.462481,52.016248],[-2.462503,52.017352],[-2.463633,52.018833],[-2.462571,52.020319],[-2.46408,52.023274],[-2.466205,52.023723],[-2.468488,52.02378],[-2.470753,52.02329],[-2.471187,52.023808],[-2.473864,52.023819],[-2.478932,52.02253],[-2.477416,52.019867],[-2.480366,52.016061],[-2.484622,52.01254],[-2.487131,52.012298],[-2.487634,52.011481],[-2.489562,52.011292],[-2.491253,52.010491],[-2.492111,52.008295],[-2.49157,52.006509],[-2.487287,52.00341],[-2.485497,52.000332],[-2.477647,52.000151],[-2.476938,51.99926],[-2.475144,51.998204],[-2.475416,51.997506],[-2.47098,51.994777],[-2.472208,51.994383],[-2.474871,51.992814],[-2.477117,51.992775],[-2.480027,51.991351],[-2.480249,51.990524],[-2.481643,51.989501],[-2.482603,51.988224],[-2.486769,51.988025],[-2.488638,51.987408],[-2.489686,51.986247],[-2.490323,51.983508],[-2.49115,51.983404],[-2.491303,51.981913],[-2.493128,51.981772],[-2.494913,51.981075],[-2.496359,51.977513],[-2.496501,51.976114],[-2.495131,51.97112],[-2.493918,51.970239],[-2.493013,51.968608],[-2.492437,51.966732],[-2.493382,51.963893],[-2.495762,51.964422],[-2.497567,51.963794],[-2.49903,51.963718],[-2.499946,51.962562],[-2.499873,51.961539],[-2.500907,51.960609],[-2.496625,51.960325],[-2.49752,51.958788],[-2.493117,51.957351],[-2.490188,51.954979],[-2.487521,51.956874],[-2.486108,51.95742],[-2.483884,51.956774],[-2.482439,51.95567],[-2.481096,51.956106],[-2.479238,51.955727],[-2.475759,51.956331],[-2.474598,51.955745],[-2.473729,51.956538],[-2.472224,51.955455],[-2.470526,51.953117],[-2.467819,51.95195],[-2.465487,51.951696],[-2.466028,51.950359],[-2.464481,51.948501],[-2.465458,51.946766],[-2.464862,51.944589],[-2.463729,51.943642],[-2.464942,51.942764],[-2.464271,51.940251],[-2.463385,51.939269],[-2.463584,51.938569],[-2.465433,51.938005],[-2.465831,51.937272],[-2.467879,51.93738],[-2.466206,51.931425],[-2.466043,51.927974],[-2.461294,51.925054],[-2.459927,51.923433],[-2.455023,51.919348],[-2.452226,51.919238],[-2.451578,51.91875],[-2.449325,51.919121],[-2.448258,51.918721],[-2.44769,51.915663],[-2.444476,51.913778],[-2.443132,51.911966],[-2.444432,51.90982],[-2.44249,51.908893],[-2.443041,51.908505],[-2.441755,51.907193],[-2.444057,51.905839],[-2.442469,51.905032],[-2.442208,51.904004],[-2.440154,51.902442],[-2.44238,51.901899],[-2.443786,51.900858],[-2.444303,51.898921],[-2.443172,51.898453],[-2.440836,51.898524],[-2.439656,51.897074],[-2.443669,51.895787],[-2.44601,51.893995],[-2.448921,51.89481],[-2.44983,51.894404],[-2.456162,51.893416],[-2.462523,51.892917],[-2.465214,51.892991],[-2.467819,51.892013],[-2.468651,51.890777],[-2.471439,51.889209],[-2.47374,51.887347],[-2.473408,51.885554],[-2.477879,51.884962],[-2.480013,51.885825],[-2.482394,51.885886],[-2.485044,51.884931],[-2.486729,51.884716],[-2.487795,51.880418],[-2.488813,51.880532],[-2.493861,51.880003],[-2.494656,51.88424],[-2.498188,51.881987],[-2.501179,51.881987],[-2.500639,51.884363],[-2.501868,51.886312],[-2.503546,51.886642],[-2.505431,51.886116],[-2.506686,51.885374],[-2.508625,51.885169],[-2.513274,51.880105],[-2.517943,51.873395],[-2.519346,51.870874],[-2.520113,51.86807],[-2.52185,51.866177],[-2.522566,51.864821],[-2.526771,51.862983],[-2.531122,51.863021],[-2.531624,51.860772],[-2.534052,51.860396],[-2.544,51.860244],[-2.546706,51.860791],[-2.548277,51.862036],[-2.550089,51.862775],[-2.553797,51.863156],[-2.556398,51.862912],[-2.55878,51.863875],[-2.561657,51.864292],[-2.564001,51.863412],[-2.568135,51.86261],[-2.569349,51.863016],[-2.57307,51.86249],[-2.5761,51.86255],[-2.577703,51.861434],[-2.580641,51.861671],[-2.585219,51.85993],[-2.583103,51.858234],[-2.579518,51.854381],[-2.578806,51.85321],[-2.578822,51.851849],[-2.580524,51.850437],[-2.58211,51.849728],[-2.586198,51.849785],[-2.588946,51.851351],[-2.591619,51.854192],[-2.593065,51.855209],[-2.596186,51.85622],[-2.59954,51.856531],[-2.601217,51.856216],[-2.604443,51.854662],[-2.606401,51.852026],[-2.609434,51.846797],[-2.615399,51.84547],[-2.621594,51.843325],[-2.624467,51.839491],[-2.625467,51.838964],[-2.628817,51.839144],[-2.630224,51.83889],[-2.632929,51.84031],[-2.635726,51.842866],[-2.635643,51.841136],[-2.636307,51.839491],[-2.638384,51.837556],[-2.640476,51.83623],[-2.641048,51.836601],[-2.643415,51.834645],[-2.647241,51.827848],[-2.648384,51.826808],[-2.650401,51.826125],[-2.649873,51.825033],[-2.650164,51.824115],[-2.660872,51.822754],[-2.658889,51.8198],[-2.659733,51.818634],[-2.661107,51.818117],[-2.658852,51.813693],[-2.658863,51.811453],[-2.659539,51.810682],[-2.662025,51.81011],[-2.665002,51.81018],[-2.669771,51.808912],[-2.672611,51.808906],[-2.673486,51.807097],[-2.675536,51.806664],[-2.675751,51.805711],[-2.678303,51.803319],[-2.678586,51.802467],[-2.677734,51.80143],[-2.677566,51.799929],[-2.676749,51.798603],[-2.671473,51.795026],[-2.669811,51.794273],[-2.672715,51.793077],[-2.672891,51.789809],[-2.674092,51.788312],[-2.675844,51.788069],[-2.673362,51.784734],[-2.673487,51.783809],[-2.676134,51.780308],[-2.675054,51.776777],[-2.676846,51.773898],[-2.679925,51.771386],[-2.680452,51.768929],[-2.679458,51.76721],[-2.676417,51.764236],[-2.674735,51.761338],[-2.673266,51.759876],[-2.671547,51.75887],[-2.666049,51.75697],[-2.662932,51.754735],[-2.662779,51.753603],[-2.665055,51.749066],[-2.668564,51.744962],[-2.669535,51.74273],[-2.671259,51.739924],[-2.670943,51.737014],[-2.672006,51.736113],[-2.675126,51.73451],[-2.685764,51.731824],[-2.68715,51.730556],[-2.686045,51.72841],[-2.680076,51.72466],[-2.679954,51.723867],[-2.68112,51.722292],[-2.681285,51.721208],[-2.67895,51.714061],[-2.677404,51.712924],[-2.672427,51.710556],[-2.668391,51.706899],[-2.668026,51.7058],[-2.668635,51.702304],[-2.670257,51.700728],[-2.673335,51.700048],[-2.675587,51.700028],[-2.676833,51.700476],[-2.679768,51.7029],[-2.681969,51.703123],[-2.683223,51.702747],[-2.683513,51.701225],[-2.682717,51.700254],[-2.67392,51.69788],[-2.672602,51.697374],[-2.669608,51.694859],[-2.668482,51.693447],[-2.668064,51.69152],[-2.668579,51.690496],[-2.668539,51.688305],[-2.671817,51.684114],[-2.672298,51.681896],[-2.670751,51.680393],[-2.667814,51.678886],[-2.662205,51.677967],[-2.658352,51.676679],[-2.656849,51.675626],[-2.656374,51.673454],[-2.657397,51.672119],[-2.659177,51.670993],[-2.667257,51.668931],[-2.671814,51.668657],[-2.674592,51.669225],[-2.67815,51.669346],[-2.680812,51.669165],[-2.682325,51.668698],[-2.684031,51.667626],[-2.68415,51.666101],[-2.685348,51.663768],[-2.685566,51.662681],[-2.684612,51.66175],[-2.682252,51.66076],[-2.680547,51.660389],[-2.677084,51.660541],[-2.674587,51.66149],[-2.670998,51.66459],[-2.669105,51.665597],[-2.666812,51.665695],[-2.665192,51.664703],[-2.665055,51.662401],[-2.667402,51.658415],[-2.67098,51.655078],[-2.678477,51.649172],[-2.679284,51.648218],[-2.679355,51.647047],[-2.67863,51.645859],[-2.677294,51.645204],[-2.675369,51.645626],[-2.673311,51.646818],[-2.671433,51.64696],[-2.66881,51.646386],[-2.666356,51.643966],[-2.665435,51.642347],[-2.665171,51.64023],[-2.666463,51.637061],[-2.66755,51.635664],[-2.667703,51.634328],[-2.666928,51.633059],[-2.662961,51.628756],[-2.657324,51.625265],[-2.655328,51.623115],[-2.655268,51.620822],[-2.655984,51.619748],[-2.657745,51.618984],[-2.659115,51.617081],[-2.659133,51.615731],[-2.658487,51.613903],[-2.65791,51.613483],[-2.657585,51.610534],[-2.652656,51.609348],[-2.650876,51.609783],[-2.648971,51.611134],[-2.647724,51.614646],[-2.647035,51.615842],[-2.64726,51.616748],[-2.649598,51.618689],[-2.650921,51.621593],[-2.650707,51.626038],[-2.649235,51.629647],[-2.64816,51.631011],[-2.645348,51.633386],[-2.643003,51.63437],[-2.640935,51.63568],[-2.639007,51.63935],[-2.636402,51.642134],[-2.632244,51.645276],[-2.631367,51.646661],[-2.631317,51.647735],[-2.626064,51.652272],[-2.623772,51.653635],[-2.623791,51.654681],[-2.625448,51.656682],[-2.626467,51.658842],[-2.625403,51.661417],[-2.622841,51.663309],[-2.61839,51.665277],[-2.616461,51.666915],[-2.615566,51.667078],[-2.611515,51.670386],[-2.608901,51.672261],[-2.608696,51.672771],[-2.604675,51.674973],[-2.6015,51.676089],[-2.600573,51.676942],[-2.59764,51.678315],[-2.59122,51.680449],[-2.589637,51.680817],[-2.582819,51.682914],[-2.582239,51.682857],[-2.576837,51.684655],[-2.575182,51.686121],[-2.574869,51.687477],[-2.572329,51.689636],[-2.569485,51.691184],[-2.566411,51.691472],[-2.563653,51.691154],[-2.563606,51.693157],[-2.56267,51.693988],[-2.561,51.694389],[-2.55692,51.694282],[-2.554144,51.692902],[-2.552486,51.692913],[-2.547739,51.697035],[-2.545171,51.69868],[-2.542913,51.699439],[-2.537127,51.700731],[-2.534317,51.700764],[-2.530372,51.702072],[-2.527091,51.702503],[-2.525607,51.703945],[-2.520253,51.707204],[-2.517427,51.708201],[-2.514963,51.708678],[-2.511016,51.708642],[-2.508514,51.709834],[-2.505396,51.710377],[-2.505184,51.711638],[-2.501414,51.716048],[-2.500952,51.718379],[-2.498307,51.722705],[-2.498151,51.723925],[-2.496015,51.726884],[-2.494117,51.728696],[-2.490092,51.731215],[-2.478936,51.734982],[-2.47737,51.739194],[-2.473575,51.742966],[-2.471059,51.744406],[-2.465076,51.746617],[-2.459775,51.747757],[-2.454023,51.750226],[-2.449005,51.752673],[-2.440996,51.757439],[-2.437492,51.75915],[-2.434725,51.759903],[-2.430166,51.761576],[-2.426001,51.764191],[-2.411656,51.768146],[-2.406593,51.770513],[-2.404863,51.772574],[-2.404476,51.774713],[-2.405536,51.777035],[-2.408432,51.778684],[-2.412571,51.780026],[-2.419675,51.781227],[-2.429948,51.782136],[-2.43609,51.781035],[-2.441143,51.781766],[-2.442999,51.782877],[-2.444054,51.782988],[-2.448268,51.784799],[-2.450182,51.786831],[-2.450963,51.78985],[-2.450719,51.790944],[-2.452003,51.791801],[-2.453007,51.796616],[-2.451832,51.798921],[-2.449196,51.801422],[-2.447675,51.801923],[-2.443981,51.809354],[-2.440388,51.812559],[-2.433358,51.816677],[-2.429651,51.818166],[-2.42402,51.819322],[-2.421024,51.819141],[-2.416963,51.818141],[-2.414456,51.81703],[-2.411053,51.814064],[-2.406367,51.808412],[-2.401574,51.804213],[-2.401204,51.804331],[-2.385995,51.801129],[-2.380471,51.799154],[-2.375348,51.796677],[-2.370083,51.794583],[-2.36782,51.794145],[-2.365149,51.794138],[-2.361473,51.794639],[-2.35289,51.796826],[-2.350749,51.797942],[-2.348825,51.799601],[-2.348,51.801154],[-2.347962,51.802685],[-2.349465,51.803227],[-2.353654,51.803352],[-2.359043,51.805795],[-2.360311,51.806805],[-2.362375,51.81112],[-2.362066,51.812584],[-2.362297,51.817695],[-2.363298,51.822503],[-2.362624,51.825322],[-2.360603,51.827355],[-2.358268,51.82819],[-2.353459,51.828764],[-2.350472,51.8297],[-2.35145,51.831092],[-2.356049,51.833331],[-2.35684,51.834438],[-2.357164,51.835907],[-2.356659,51.83936],[-2.35551,51.842511],[-2.35385,51.845396],[-2.351971,51.8465],[-2.352461,51.847188],[-2.352748,51.849406],[-2.350637,51.850095],[-2.346867,51.854508],[-2.34456,51.854719],[-2.338578,51.853943],[-2.334657,51.854964],[-2.332691,51.855943],[-2.331283,51.855871],[-2.327139,51.856516],[-2.323164,51.856174],[-2.322051,51.857831],[-2.319326,51.859351],[-2.316508,51.860292],[-2.31659,51.861626],[-2.318206,51.862578],[-2.317675,51.863451],[-2.317112,51.866834],[-2.317412,51.868428],[-2.320976,51.868777],[-2.324818,51.868668],[-2.326799,51.870857],[-2.329743,51.87186],[-2.331398,51.873635],[-2.334572,51.875477],[-2.334576,51.87622],[-2.333202,51.876606],[-2.333031,51.877309],[-2.330911,51.878362],[-2.331099,51.879514],[-2.32831,51.87944],[-2.326922,51.882181],[-2.325648,51.88281],[-2.323592,51.885195],[-2.320938,51.886315],[-2.319817,51.888496],[-2.317363,51.887182],[-2.315909,51.887121],[-2.315498,51.887963],[-2.313533,51.888056],[-2.311307,51.888659],[-2.309576,51.887815],[-2.308152,51.888428],[-2.299992,51.891112],[-2.297022,51.892643],[-2.295184,51.893316],[-2.295268,51.893932],[-2.289956,51.894341],[-2.29321,51.896166],[-2.296013,51.896536],[-2.295562,51.8974],[-2.297118,51.899574],[-2.297212,51.902904],[-2.296275,51.904531],[-2.295322,51.904415],[-2.296525,51.902968],[-2.295257,51.90275],[-2.293657,51.903654],[-2.295654,51.905364],[-2.291647,51.906367],[-2.28789,51.909447],[-2.284817,51.911275],[-2.286205,51.913022],[-2.285787,51.916868],[-2.287295,51.920973],[-2.283862,51.923705],[-2.288054,51.925572],[-2.295326,51.933227],[-2.291566,51.937932],[-2.292321,51.938839],[-2.292237,51.940905],[-2.289551,51.942982],[-2.287855,51.945553],[-2.285778,51.945375],[-2.282308,51.944208],[-2.281395,51.945842],[-2.283759,51.948382],[-2.284009,51.950928],[-2.283304,51.951814],[-2.279884,51.952824],[-2.27731,51.953068],[-2.274316,51.952793],[-2.267543,51.953193],[-2.268355,51.958479],[-2.269167,51.959263],[-2.271602,51.960501],[-2.270717,51.961536],[-2.270937,51.963133],[-2.269798,51.966565],[-2.269653,51.967735],[-2.270556,51.968939],[-2.273646,51.969445],[-2.27697,51.969485],[-2.280562,51.970574],[-2.288291,51.970668],[-2.293304,51.969665],[-2.297242,51.967599],[-2.300433,51.966775],[-2.303703,51.968656],[-2.305788,51.970833],[-2.309466,51.970647],[-2.309048,51.972162],[-2.307927,51.972818],[-2.309264,51.973772],[-2.308777,51.974438],[-2.31262,51.976505],[-2.323696,51.975621],[-2.326533,51.975788],[-2.325325,51.976649],[-2.324685,51.978941],[-2.322597,51.980904],[-2.322449,51.982501],[-2.322922,51.984466],[-2.322329,51.986463],[-2.322329,51.988817],[-2.321165,51.990481],[-2.320657,51.992128],[-2.323256,51.996287],[-2.322826,51.997477],[-2.323513,51.999457],[-2.325657,51.999591],[-2.325793,52.000704],[-2.32471,52.003567],[-2.326109,52.005629],[-2.329423,52.006829],[-2.333045,52.007263],[-2.333809,52.007669],[-2.336337,52.007785],[-2.340493,52.00674],[-2.341903,52.008767],[-2.344001,52.00877],[-2.345687,52.010327],[-2.347574,52.01129],[-2.349271,52.011458],[-2.351062,52.013159],[-2.352543,52.013535],[-2.351856,52.015691],[-2.350468,52.016484],[-2.349377,52.017848],[-2.35098,52.020099],[-2.351379,52.021359]]]},"properties":{"LAD22CD":"E07000080","LAD22NM":"Forest of Dean","BNG_E":367175,"BNG_N":212759,"LONG":-2.47755,"LAT":51.81249,"GlobalID":"3ae26369-3d97-41d1-a3ca-91eb806af9aa"},"id":106}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.187683,51.845029],[-2.181117,51.853134],[-2.177258,51.855877],[-2.187109,51.862176],[-2.192051,51.864357],[-2.196385,51.865543],[-2.196173,51.868071],[-2.197694,51.871857],[-2.199686,51.877911],[-2.198023,51.87869],[-2.199121,51.880624],[-2.201248,51.879538],[-2.202959,51.881473],[-2.205396,51.883209],[-2.208452,51.884402],[-2.211594,51.885052],[-2.214543,51.885224],[-2.21852,51.8848],[-2.226803,51.882427],[-2.230389,51.881946],[-2.23582,51.882125],[-2.237748,51.88258],[-2.237957,51.88311],[-2.243127,51.882213],[-2.246793,51.880904],[-2.250081,51.878682],[-2.252785,51.877193],[-2.255485,51.876326],[-2.260406,51.875561],[-2.265493,51.875681],[-2.267541,51.875198],[-2.267773,51.873507],[-2.269842,51.871088],[-2.269384,51.868275],[-2.271097,51.866758],[-2.272581,51.864092],[-2.275016,51.86215],[-2.277968,51.86136],[-2.285393,51.860462],[-2.287483,51.859615],[-2.287496,51.858174],[-2.279556,51.847859],[-2.278587,51.844925],[-2.279321,51.843635],[-2.280554,51.842934],[-2.288462,51.839655],[-2.289577,51.838795],[-2.29001,51.834863],[-2.291502,51.833188],[-2.295084,51.831929],[-2.298514,51.832286],[-2.301353,51.831778],[-2.300039,51.830262],[-2.301292,51.829252],[-2.301099,51.826765],[-2.299086,51.824634],[-2.297856,51.824574],[-2.290069,51.821742],[-2.289539,51.819988],[-2.286016,51.818653],[-2.281528,51.815974],[-2.282808,51.814545],[-2.277354,51.813012],[-2.272031,51.811667],[-2.27222,51.811054],[-2.269155,51.809423],[-2.268363,51.809807],[-2.262855,51.80758],[-2.258178,51.818192],[-2.256631,51.821464],[-2.255229,51.8209],[-2.252872,51.822778],[-2.252101,51.822631],[-2.249345,51.825223],[-2.248002,51.825269],[-2.246236,51.826055],[-2.241837,51.826172],[-2.240239,51.825597],[-2.238106,51.825289],[-2.230934,51.826469],[-2.227488,51.828311],[-2.223407,51.825386],[-2.225206,51.824584],[-2.226285,51.823044],[-2.22476,51.822721],[-2.225804,51.821463],[-2.223212,51.821252],[-2.212633,51.82697],[-2.209331,51.829168],[-2.202157,51.836106],[-2.191245,51.842144],[-2.187683,51.845029]]]},"properties":{"LAD22CD":"E07000081","LAD22NM":"Gloucester","BNG_E":384071,"BNG_N":216449,"LONG":-2.23263,"LAT":51.84641,"GlobalID":"c9736c44-ebf1-45ff-942b-03fc1c575a4c"},"id":107}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.298514,51.832286],[-2.30103,51.833618],[-2.302169,51.835055],[-2.304149,51.841036],[-2.304654,51.844497],[-2.305943,51.845826],[-2.307973,51.846525],[-2.311647,51.847087],[-2.322751,51.847397],[-2.325228,51.847954],[-2.329624,51.849744],[-2.332781,51.850099],[-2.336826,51.849567],[-2.34295,51.847451],[-2.351453,51.846017],[-2.353433,51.843638],[-2.355183,51.839341],[-2.355817,51.835101],[-2.354812,51.833746],[-2.349683,51.831362],[-2.348907,51.829578],[-2.350507,51.828321],[-2.358071,51.827205],[-2.359679,51.826673],[-2.361062,51.825043],[-2.361685,51.822267],[-2.359747,51.817195],[-2.359696,51.812583],[-2.359129,51.811152],[-2.357765,51.810311],[-2.35004,51.807399],[-2.348828,51.806376],[-2.347329,51.805855],[-2.346213,51.804739],[-2.345995,51.803059],[-2.345426,51.802424],[-2.345273,51.800837],[-2.346092,51.799264],[-2.347633,51.797754],[-2.350674,51.795333],[-2.35414,51.794095],[-2.357421,51.793295],[-2.362263,51.792802],[-2.367061,51.791903],[-2.370191,51.79201],[-2.374728,51.792744],[-2.38071,51.794731],[-2.390121,51.799424],[-2.397029,51.800606],[-2.401222,51.800939],[-2.40383,51.801708],[-2.406848,51.803347],[-2.412085,51.805106],[-2.41526,51.806792],[-2.416093,51.807913],[-2.417769,51.808843],[-2.419193,51.810394],[-2.419906,51.81201],[-2.421456,51.813502],[-2.42462,51.815072],[-2.428113,51.814473],[-2.433624,51.811041],[-2.438145,51.806861],[-2.444183,51.799682],[-2.44708,51.795383],[-2.447119,51.793151],[-2.446488,51.791622],[-2.445484,51.790533],[-2.441697,51.788654],[-2.435157,51.78697],[-2.431372,51.786534],[-2.417795,51.786318],[-2.41187,51.785291],[-2.408314,51.784065],[-2.405367,51.782478],[-2.403241,51.782167],[-2.398028,51.780652],[-2.393999,51.77901],[-2.385449,51.776363],[-2.382424,51.774464],[-2.381113,51.772459],[-2.379184,51.767799],[-2.379306,51.76287],[-2.380539,51.760647],[-2.383111,51.758544],[-2.385117,51.757607],[-2.389015,51.756681],[-2.392103,51.754715],[-2.399157,51.750978],[-2.406657,51.748963],[-2.408537,51.748847],[-2.410695,51.747762],[-2.411627,51.746484],[-2.415563,51.743546],[-2.425457,51.739405],[-2.429209,51.738212],[-2.429737,51.737247],[-2.432537,51.736542],[-2.437134,51.736914],[-2.44626,51.739119],[-2.448297,51.740054],[-2.451484,51.739333],[-2.456914,51.736655],[-2.462383,51.732911],[-2.465527,51.730004],[-2.472188,51.726032],[-2.474474,51.725411],[-2.481859,51.725642],[-2.482742,51.723903],[-2.482377,51.72279],[-2.483118,51.71853],[-2.482556,51.717114],[-2.483585,51.715769],[-2.484454,51.709859],[-2.485103,51.70854],[-2.486185,51.70519],[-2.489379,51.700835],[-2.487127,51.699491],[-2.487159,51.698289],[-2.489334,51.698008],[-2.490205,51.700267],[-2.491544,51.699367],[-2.493616,51.696647],[-2.497483,51.693171],[-2.506401,51.687475],[-2.51071,51.68518],[-2.513656,51.683907],[-2.51662,51.683214],[-2.517166,51.682715],[-2.523628,51.681737],[-2.527428,51.680759],[-2.534733,51.67731],[-2.533813,51.676541],[-2.519773,51.671253],[-2.517492,51.670701],[-2.509862,51.667914],[-2.509006,51.666001],[-2.505351,51.666218],[-2.501364,51.665368],[-2.501674,51.664736],[-2.498638,51.66499],[-2.496424,51.664421],[-2.495195,51.664642],[-2.49254,51.664168],[-2.490836,51.664316],[-2.489816,51.663385],[-2.491679,51.662859],[-2.491802,51.660359],[-2.492705,51.657779],[-2.491702,51.655925],[-2.491404,51.653753],[-2.493034,51.651901],[-2.491845,51.649665],[-2.48935,51.648881],[-2.48497,51.648419],[-2.487948,51.646511],[-2.49005,51.645699],[-2.490676,51.644834],[-2.487262,51.644689],[-2.485572,51.64507],[-2.482152,51.646409],[-2.474718,51.646565],[-2.470335,51.647474],[-2.46579,51.651045],[-2.463714,51.650977],[-2.462748,51.651978],[-2.460442,51.652602],[-2.458779,51.651281],[-2.4558,51.651833],[-2.45252,51.651371],[-2.449207,51.64979],[-2.445656,51.649334],[-2.444803,51.651112],[-2.442984,51.652492],[-2.441934,51.652217],[-2.439556,51.649899],[-2.437706,51.650105],[-2.437063,51.649539],[-2.435506,51.649889],[-2.434304,51.649197],[-2.432177,51.649086],[-2.431702,51.648565],[-2.432011,51.646992],[-2.430834,51.646562],[-2.427229,51.647244],[-2.424116,51.645836],[-2.421284,51.64548],[-2.420215,51.644617],[-2.416736,51.643311],[-2.41532,51.644626],[-2.413918,51.644061],[-2.412381,51.642714],[-2.411534,51.642791],[-2.410184,51.641877],[-2.407217,51.641199],[-2.406422,51.64167],[-2.404783,51.641363],[-2.404132,51.642859],[-2.402738,51.642498],[-2.4011,51.644664],[-2.398836,51.64581],[-2.395834,51.643612],[-2.396566,51.642807],[-2.394784,51.64212],[-2.397143,51.639554],[-2.394815,51.638621],[-2.392569,51.639077],[-2.390164,51.640716],[-2.388441,51.640146],[-2.385989,51.639943],[-2.385351,51.638671],[-2.386116,51.637612],[-2.388182,51.637175],[-2.389992,51.636443],[-2.392635,51.636148],[-2.397442,51.635988],[-2.400475,51.635143],[-2.400457,51.634428],[-2.3975,51.633037],[-2.395306,51.632621],[-2.395009,51.631817],[-2.393656,51.631743],[-2.392969,51.630053],[-2.38891,51.62754],[-2.389509,51.624792],[-2.388441,51.624451],[-2.38885,51.622243],[-2.389928,51.618468],[-2.389301,51.618104],[-2.390003,51.616394],[-2.391594,51.615348],[-2.391249,51.614348],[-2.39184,51.613399],[-2.390771,51.613028],[-2.39057,51.611579],[-2.393187,51.610621],[-2.394165,51.609607],[-2.395428,51.605125],[-2.39449,51.603143],[-2.394906,51.601759],[-2.396479,51.600342],[-2.394489,51.599106],[-2.394775,51.597452],[-2.3931,51.597076],[-2.39187,51.597382],[-2.388089,51.596932],[-2.386827,51.597229],[-2.385157,51.596788],[-2.38,51.596423],[-2.375758,51.597962],[-2.373573,51.597481],[-2.370577,51.597614],[-2.370079,51.598559],[-2.367782,51.599767],[-2.366762,51.600976],[-2.366581,51.603056],[-2.365582,51.603735],[-2.362232,51.602711],[-2.362944,51.601236],[-2.359858,51.601004],[-2.357539,51.601566],[-2.356829,51.600514],[-2.355096,51.600099],[-2.354053,51.599389],[-2.352786,51.596696],[-2.349865,51.597262],[-2.347192,51.597413],[-2.34402,51.596499],[-2.343366,51.595197],[-2.339479,51.594134],[-2.338256,51.595321],[-2.335253,51.594254],[-2.335048,51.59649],[-2.334176,51.596633],[-2.333293,51.595477],[-2.33127,51.595486],[-2.330376,51.593205],[-2.331179,51.592504],[-2.331069,51.591604],[-2.328402,51.593183],[-2.326749,51.59281],[-2.323825,51.593188],[-2.32265,51.593676],[-2.319847,51.593915],[-2.319668,51.592659],[-2.31657,51.589834],[-2.308253,51.592865],[-2.308148,51.591628],[-2.306102,51.591977],[-2.305598,51.59299],[-2.304001,51.592763],[-2.301013,51.591601],[-2.297885,51.592387],[-2.296438,51.593802],[-2.29655,51.594995],[-2.29439,51.594796],[-2.291637,51.593696],[-2.290125,51.596515],[-2.287596,51.599318],[-2.287507,51.601216],[-2.286712,51.603131],[-2.285182,51.604735],[-2.280822,51.611533],[-2.278691,51.613021],[-2.274325,51.614587],[-2.275793,51.615458],[-2.275872,51.616794],[-2.276853,51.619149],[-2.279328,51.621188],[-2.282213,51.622189],[-2.286312,51.627884],[-2.288241,51.628354],[-2.289176,51.62951],[-2.290865,51.630622],[-2.292284,51.630337],[-2.293761,51.632514],[-2.299671,51.6316],[-2.308526,51.628005],[-2.310328,51.626464],[-2.31225,51.626161],[-2.31434,51.625055],[-2.316442,51.625492],[-2.317331,51.626438],[-2.320293,51.627543],[-2.321569,51.630265],[-2.32294,51.63157],[-2.323597,51.632821],[-2.323052,51.634785],[-2.322198,51.635539],[-2.317796,51.637101],[-2.316261,51.636675],[-2.314259,51.637948],[-2.311413,51.638868],[-2.309272,51.640327],[-2.307525,51.642475],[-2.30975,51.642781],[-2.310219,51.643686],[-2.312259,51.644085],[-2.312603,51.644736],[-2.315361,51.645845],[-2.312898,51.647827],[-2.311092,51.648332],[-2.305986,51.651207],[-2.302845,51.653716],[-2.301472,51.653304],[-2.299413,51.653217],[-2.298363,51.654484],[-2.295573,51.654983],[-2.295844,51.655466],[-2.292852,51.656193],[-2.293317,51.65703],[-2.292809,51.658314],[-2.291804,51.658157],[-2.291725,51.659659],[-2.289405,51.662249],[-2.289541,51.663259],[-2.287447,51.663511],[-2.287291,51.665048],[-2.285826,51.665545],[-2.283443,51.665761],[-2.2843,51.667006],[-2.289697,51.669458],[-2.286736,51.669932],[-2.28649,51.669472],[-2.283846,51.67005],[-2.284502,51.671567],[-2.282634,51.672099],[-2.281798,51.673643],[-2.283027,51.674247],[-2.284906,51.673308],[-2.286446,51.674729],[-2.285792,51.677473],[-2.286853,51.678396],[-2.285689,51.679291],[-2.284321,51.67957],[-2.285368,51.681407],[-2.280256,51.681941],[-2.28025,51.681449],[-2.276955,51.680483],[-2.276154,51.680635],[-2.271529,51.682887],[-2.268437,51.681435],[-2.26779,51.680387],[-2.265358,51.678289],[-2.258794,51.677218],[-2.252125,51.676783],[-2.249324,51.67633],[-2.24705,51.676345],[-2.24675,51.674365],[-2.244289,51.673759],[-2.24253,51.674042],[-2.24326,51.672096],[-2.24244,51.670749],[-2.240344,51.66896],[-2.240454,51.668458],[-2.238483,51.667332],[-2.237573,51.665356],[-2.235743,51.665145],[-2.235792,51.663198],[-2.234087,51.662982],[-2.23233,51.662212],[-2.232723,51.66092],[-2.226339,51.660152],[-2.219523,51.659755],[-2.214812,51.66064],[-2.212152,51.66078],[-2.202625,51.659735],[-2.202529,51.659966],[-2.197274,51.659689],[-2.197022,51.660531],[-2.19417,51.659855],[-2.192109,51.659761],[-2.191516,51.661866],[-2.188769,51.664995],[-2.187892,51.667304],[-2.187768,51.669691],[-2.190649,51.672649],[-2.194699,51.672111],[-2.196369,51.672718],[-2.19814,51.674049],[-2.200584,51.674641],[-2.202302,51.67724],[-2.201909,51.679018],[-2.204633,51.681548],[-2.206084,51.682023],[-2.210003,51.681885],[-2.211845,51.682245],[-2.209369,51.683608],[-2.20672,51.685781],[-2.205011,51.688793],[-2.201856,51.689321],[-2.200442,51.690028],[-2.199886,51.69137],[-2.200626,51.692839],[-2.196518,51.692542],[-2.195568,51.691549],[-2.19359,51.69119],[-2.193318,51.690695],[-2.18925,51.691541],[-2.187914,51.690563],[-2.187472,51.688426],[-2.18273,51.688816],[-2.180687,51.687623],[-2.177145,51.687681],[-2.175178,51.690789],[-2.1715,51.690353],[-2.166674,51.690246],[-2.16413,51.690577],[-2.160385,51.687036],[-2.158985,51.686396],[-2.154295,51.688577],[-2.152859,51.688907],[-2.152092,51.689973],[-2.150278,51.689757],[-2.149394,51.690176],[-2.149225,51.692031],[-2.146171,51.69417],[-2.140898,51.698843],[-2.140773,51.699331],[-2.135915,51.698911],[-2.129906,51.697276],[-2.129123,51.70071],[-2.125849,51.703032],[-2.124063,51.704927],[-2.123728,51.70618],[-2.125119,51.707464],[-2.129345,51.709314],[-2.13109,51.708732],[-2.133227,51.708602],[-2.133086,51.711778],[-2.132328,51.711898],[-2.133092,51.714696],[-2.132509,51.714815],[-2.133542,51.71778],[-2.13329,51.718654],[-2.13447,51.723216],[-2.13041,51.723895],[-2.128152,51.724749],[-2.126446,51.724903],[-2.124759,51.724468],[-2.120289,51.725008],[-2.117725,51.724698],[-2.112357,51.725401],[-2.11065,51.726038],[-2.10808,51.725441],[-2.10492,51.725667],[-2.102458,51.725143],[-2.098512,51.726235],[-2.097343,51.726991],[-2.091635,51.728167],[-2.088461,51.72917],[-2.084694,51.728316],[-2.083254,51.729449],[-2.081571,51.729645],[-2.083791,51.732048],[-2.08408,51.734741],[-2.083517,51.735814],[-2.080394,51.734591],[-2.077294,51.736048],[-2.074843,51.734358],[-2.073968,51.734977],[-2.071987,51.735507],[-2.072036,51.736663],[-2.070403,51.737842],[-2.068624,51.738461],[-2.068793,51.73911],[-2.070997,51.739525],[-2.07345,51.739235],[-2.07995,51.739286],[-2.080256,51.743633],[-2.083493,51.744645],[-2.088588,51.74519],[-2.089633,51.746994],[-2.093384,51.745954],[-2.096252,51.744573],[-2.098201,51.742804],[-2.098625,51.741961],[-2.101865,51.740969],[-2.103625,51.742854],[-2.105986,51.744036],[-2.106356,51.746745],[-2.107163,51.747542],[-2.106169,51.750019],[-2.106789,51.750403],[-2.107188,51.752002],[-2.105632,51.753757],[-2.106708,51.755654],[-2.105931,51.757768],[-2.104564,51.758593],[-2.103675,51.759714],[-2.103755,51.762342],[-2.102922,51.764163],[-2.103677,51.766057],[-2.102652,51.767278],[-2.100817,51.766425],[-2.099104,51.766145],[-2.092974,51.766104],[-2.090342,51.765641],[-2.083902,51.766627],[-2.079047,51.767793],[-2.073639,51.768447],[-2.073121,51.769906],[-2.076947,51.770705],[-2.076771,51.772073],[-2.07594,51.773265],[-2.076356,51.774001],[-2.07922,51.775058],[-2.080012,51.776045],[-2.079484,51.777285],[-2.08077,51.778321],[-2.082754,51.778455],[-2.083125,51.780409],[-2.080983,51.781811],[-2.082823,51.782623],[-2.083539,51.783645],[-2.083181,51.785107],[-2.083631,51.786248],[-2.082951,51.786963],[-2.084045,51.78811],[-2.08381,51.78895],[-2.088837,51.790688],[-2.09248,51.792398],[-2.098305,51.793195],[-2.0988,51.794275],[-2.101279,51.795504],[-2.104756,51.795843],[-2.105597,51.797001],[-2.10696,51.797168],[-2.108824,51.796769],[-2.110587,51.798818],[-2.11242,51.799472],[-2.114521,51.799045],[-2.117424,51.800616],[-2.119502,51.803361],[-2.118231,51.805911],[-2.117593,51.809163],[-2.121887,51.809569],[-2.123695,51.8102],[-2.128824,51.815807],[-2.132687,51.816601],[-2.134924,51.817616],[-2.135431,51.818893],[-2.134255,51.819919],[-2.136915,51.821337],[-2.141344,51.821905],[-2.142486,51.821535],[-2.146483,51.821344],[-2.149234,51.822725],[-2.156415,51.823627],[-2.160085,51.824564],[-2.160975,51.825287],[-2.163685,51.826468],[-2.164261,51.828428],[-2.166219,51.828461],[-2.167838,51.830437],[-2.171026,51.831876],[-2.172466,51.835284],[-2.174354,51.835899],[-2.175558,51.83693],[-2.177947,51.837396],[-2.179746,51.8383],[-2.180057,51.839761],[-2.178654,51.841828],[-2.183433,51.842881],[-2.185072,51.844046],[-2.187683,51.845029],[-2.191245,51.842144],[-2.202157,51.836106],[-2.209331,51.829168],[-2.212633,51.82697],[-2.223212,51.821252],[-2.225804,51.821463],[-2.22476,51.822721],[-2.226285,51.823044],[-2.225206,51.824584],[-2.223407,51.825386],[-2.227488,51.828311],[-2.230934,51.826469],[-2.238106,51.825289],[-2.240239,51.825597],[-2.241837,51.826172],[-2.246236,51.826055],[-2.248002,51.825269],[-2.249345,51.825223],[-2.252101,51.822631],[-2.252872,51.822778],[-2.255229,51.8209],[-2.256631,51.821464],[-2.258178,51.818192],[-2.262855,51.80758],[-2.268363,51.809807],[-2.269155,51.809423],[-2.27222,51.811054],[-2.272031,51.811667],[-2.277354,51.813012],[-2.282808,51.814545],[-2.281528,51.815974],[-2.286016,51.818653],[-2.289539,51.819988],[-2.290069,51.821742],[-2.297856,51.824574],[-2.299086,51.824634],[-2.301099,51.826765],[-2.301292,51.829252],[-2.300039,51.830262],[-2.301353,51.831778],[-2.298514,51.832286]]]},"properties":{"LAD22CD":"E07000082","LAD22NM":"Stroud","BNG_E":378807,"BNG_N":202410,"LONG":-2.30818,"LAT":51.72001,"GlobalID":"7e1f050b-3194-40cf-af66-816dfc9a4bb2"},"id":108}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.83905,52.006783],[-1.840025,52.007308],[-1.841308,52.006917],[-1.843281,52.008088],[-1.844476,52.008325],[-1.847254,52.007657],[-1.85107,52.008403],[-1.854803,52.010202],[-1.856755,52.010645],[-1.857106,52.0112],[-1.859885,52.012737],[-1.861544,52.012628],[-1.862019,52.013357],[-1.863794,52.014417],[-1.862269,52.017485],[-1.867296,52.017965],[-1.873574,52.024328],[-1.876433,52.025285],[-1.879306,52.026947],[-1.885014,52.029501],[-1.888011,52.031462],[-1.891334,52.03283],[-1.896431,52.035905],[-1.90324,52.038892],[-1.909109,52.042661],[-1.913446,52.044461],[-1.915695,52.041694],[-1.916685,52.042099],[-1.91914,52.038857],[-1.920529,52.03814],[-1.922157,52.035615],[-1.923198,52.035642],[-1.927045,52.036661],[-1.929622,52.032296],[-1.931071,52.030243],[-1.93173,52.029959],[-1.933764,52.030842],[-1.939915,52.032278],[-1.942245,52.032361],[-1.945813,52.031669],[-1.947521,52.031895],[-1.948004,52.033989],[-1.949191,52.035182],[-1.950843,52.035975],[-1.951388,52.037725],[-1.954023,52.037099],[-1.956701,52.037146],[-1.963588,52.036127],[-1.984136,52.035879],[-1.992579,52.029288],[-1.99519,52.026563],[-1.997558,52.029898],[-1.998565,52.029668],[-2.007686,52.023885],[-2.013424,52.021348],[-2.016977,52.020257],[-2.019643,52.018694],[-2.02366,52.016953],[-2.02166,52.015655],[-2.029271,52.01284],[-2.028084,52.012345],[-2.026997,52.010588],[-2.030846,52.009771],[-2.038253,52.009563],[-2.037948,52.00794],[-2.036782,52.007016],[-2.036837,52.006043],[-2.038356,52.004601],[-2.044955,52.003649],[-2.049514,52.003796],[-2.050089,52.006019],[-2.049299,52.007013],[-2.051557,52.008753],[-2.053213,52.008637],[-2.057195,52.009822],[-2.059294,52.009474],[-2.059916,52.010826],[-2.060238,52.014208],[-2.060784,52.014681],[-2.063868,52.014173],[-2.068131,52.013121],[-2.070985,52.011805],[-2.072479,52.01155],[-2.074589,52.011802],[-2.076749,52.011041],[-2.078845,52.011698],[-2.080771,52.010765],[-2.08348,52.011089],[-2.084873,52.010479],[-2.091359,52.011423],[-2.092356,52.011113],[-2.093921,52.0118],[-2.096792,52.011404],[-2.097712,52.011784],[-2.097674,52.013063],[-2.099736,52.013192],[-2.102376,52.013832],[-2.105352,52.013999],[-2.107605,52.014587],[-2.108728,52.014279],[-2.111571,52.014799],[-2.116346,52.014567],[-2.118546,52.013946],[-2.120071,52.013176],[-2.120374,52.011697],[-2.12336,52.010905],[-2.12386,52.01001],[-2.125857,52.009046],[-2.127147,52.007281],[-2.129631,52.006298],[-2.130709,52.006459],[-2.132029,52.005322],[-2.131926,52.003994],[-2.133426,52.002513],[-2.133248,52.001685],[-2.135202,51.999704],[-2.136847,51.999853],[-2.139321,51.999415],[-2.139496,52.001544],[-2.140819,52.002396],[-2.139064,52.00395],[-2.141729,52.004583],[-2.143736,52.004096],[-2.145408,52.004759],[-2.146288,52.004579],[-2.150782,52.006628],[-2.149655,52.011256],[-2.147725,52.012952],[-2.146072,52.013696],[-2.145218,52.014723],[-2.144646,52.016692],[-2.142274,52.019776],[-2.141172,52.024537],[-2.139397,52.027892],[-2.136539,52.029302],[-2.129293,52.029793],[-2.125886,52.030504],[-2.117923,52.033072],[-2.11722,52.033614],[-2.115597,52.036279],[-2.11609,52.03787],[-2.11721,52.039262],[-2.118384,52.042109],[-2.120444,52.042155],[-2.126314,52.043223],[-2.133717,52.046335],[-2.141522,52.045636],[-2.147218,52.046764],[-2.149489,52.046932],[-2.155254,52.048517],[-2.155525,52.049345],[-2.158134,52.050206],[-2.162393,52.050506],[-2.164628,52.050004],[-2.16641,52.049032],[-2.168314,52.048709],[-2.170526,52.047065],[-2.171381,52.047573],[-2.174107,52.047052],[-2.176981,52.045474],[-2.178165,52.043693],[-2.180409,52.042301],[-2.18068,52.041728],[-2.180549,52.035482],[-2.179158,52.033504],[-2.179397,52.031953],[-2.178109,52.029209],[-2.178561,52.028577],[-2.177592,52.027215],[-2.178313,52.025629],[-2.177127,52.023946],[-2.176906,52.022559],[-2.183052,52.019753],[-2.187683,52.01908],[-2.184066,52.013901],[-2.172135,52.008461],[-2.165519,52.004785],[-2.164128,52.0034],[-2.163555,52.001561],[-2.164004,51.996888],[-2.164728,51.996073],[-2.166583,51.995261],[-2.170266,51.99467],[-2.171737,51.994838],[-2.174907,51.996141],[-2.179454,51.999258],[-2.181503,51.999111],[-2.179846,51.99681],[-2.179426,51.994848],[-2.181702,51.991888],[-2.183693,51.990852],[-2.185084,51.990561],[-2.190365,51.991557],[-2.195202,51.994365],[-2.197098,51.994347],[-2.198413,51.995574],[-2.200463,51.995734],[-2.200828,51.994807],[-2.203046,51.995346],[-2.202886,51.996363],[-2.205643,51.996391],[-2.205586,51.995342],[-2.211689,51.996656],[-2.213436,51.996742],[-2.215675,51.995846],[-2.214446,51.995385],[-2.216951,51.994077],[-2.220613,51.995497],[-2.223302,51.992883],[-2.22443,51.992782],[-2.226398,51.990783],[-2.228982,51.990848],[-2.227806,51.988626],[-2.233171,51.986711],[-2.234044,51.985973],[-2.237633,51.980921],[-2.243311,51.975171],[-2.242861,51.974144],[-2.24397,51.972903],[-2.246237,51.971497],[-2.248906,51.968225],[-2.25111,51.968758],[-2.251824,51.967706],[-2.25136,51.966565],[-2.2565,51.967106],[-2.258692,51.967816],[-2.263619,51.967354],[-2.267766,51.968083],[-2.270556,51.968939],[-2.269653,51.967735],[-2.269798,51.966565],[-2.270937,51.963133],[-2.270717,51.961536],[-2.271602,51.960501],[-2.269167,51.959263],[-2.268355,51.958479],[-2.267543,51.953193],[-2.274316,51.952793],[-2.27731,51.953068],[-2.279884,51.952824],[-2.283304,51.951814],[-2.284009,51.950928],[-2.283759,51.948382],[-2.281395,51.945842],[-2.282308,51.944208],[-2.285778,51.945375],[-2.287855,51.945553],[-2.289551,51.942982],[-2.292237,51.940905],[-2.292321,51.938839],[-2.291566,51.937932],[-2.295326,51.933227],[-2.288054,51.925572],[-2.283862,51.923705],[-2.287295,51.920973],[-2.285787,51.916868],[-2.286205,51.913022],[-2.284817,51.911275],[-2.28789,51.909447],[-2.291647,51.906367],[-2.295654,51.905364],[-2.293657,51.903654],[-2.295257,51.90275],[-2.296525,51.902968],[-2.295322,51.904415],[-2.296275,51.904531],[-2.297212,51.902904],[-2.297118,51.899574],[-2.295562,51.8974],[-2.296013,51.896536],[-2.29321,51.896166],[-2.289956,51.894341],[-2.295268,51.893932],[-2.295184,51.893316],[-2.297022,51.892643],[-2.299992,51.891112],[-2.308152,51.888428],[-2.309576,51.887815],[-2.311307,51.888659],[-2.313533,51.888056],[-2.315498,51.887963],[-2.315909,51.887121],[-2.317363,51.887182],[-2.319817,51.888496],[-2.320938,51.886315],[-2.323592,51.885195],[-2.325648,51.88281],[-2.326922,51.882181],[-2.32831,51.87944],[-2.331099,51.879514],[-2.330911,51.878362],[-2.333031,51.877309],[-2.333202,51.876606],[-2.334576,51.87622],[-2.334572,51.875477],[-2.331398,51.873635],[-2.329743,51.87186],[-2.326799,51.870857],[-2.324818,51.868668],[-2.320976,51.868777],[-2.317412,51.868428],[-2.317112,51.866834],[-2.317675,51.863451],[-2.318206,51.862578],[-2.31659,51.861626],[-2.316508,51.860292],[-2.319326,51.859351],[-2.322051,51.857831],[-2.323164,51.856174],[-2.327139,51.856516],[-2.331283,51.855871],[-2.332691,51.855943],[-2.334657,51.854964],[-2.338578,51.853943],[-2.34456,51.854719],[-2.346867,51.854508],[-2.350637,51.850095],[-2.352748,51.849406],[-2.352461,51.847188],[-2.351971,51.8465],[-2.343426,51.848022],[-2.337342,51.850002],[-2.332967,51.85077],[-2.328962,51.850187],[-2.324686,51.848447],[-2.322834,51.84803],[-2.319589,51.847728],[-2.31315,51.847819],[-2.30755,51.847275],[-2.305234,51.846385],[-2.303617,51.844498],[-2.302063,51.837444],[-2.30067,51.834599],[-2.298867,51.833238],[-2.296978,51.832582],[-2.29383,51.832894],[-2.291849,51.833938],[-2.2911,51.834844],[-2.291461,51.837473],[-2.290761,51.839137],[-2.288106,51.840782],[-2.281099,51.843692],[-2.279918,51.84494],[-2.280608,51.84688],[-2.288861,51.858292],[-2.288809,51.859603],[-2.288209,51.860295],[-2.286196,51.86108],[-2.278077,51.862127],[-2.275451,51.862957],[-2.273383,51.864593],[-2.272287,51.866848],[-2.270544,51.868297],[-2.27077,51.870812],[-2.268557,51.873774],[-2.267591,51.877078],[-2.268781,51.881447],[-2.268116,51.884698],[-2.268311,51.887886],[-2.267511,51.887825],[-2.267196,51.885092],[-2.267941,51.882142],[-2.266699,51.87774],[-2.267541,51.875198],[-2.265493,51.875681],[-2.260406,51.875561],[-2.255485,51.876326],[-2.252785,51.877193],[-2.250081,51.878682],[-2.246793,51.880904],[-2.243127,51.882213],[-2.237957,51.88311],[-2.237748,51.88258],[-2.23582,51.882125],[-2.230389,51.881946],[-2.226803,51.882427],[-2.21852,51.8848],[-2.214543,51.885224],[-2.211594,51.885052],[-2.208452,51.884402],[-2.205396,51.883209],[-2.202959,51.881473],[-2.201248,51.879538],[-2.199121,51.880624],[-2.198023,51.87869],[-2.199686,51.877911],[-2.197694,51.871857],[-2.196173,51.868071],[-2.196385,51.865543],[-2.192051,51.864357],[-2.187109,51.862176],[-2.177258,51.855877],[-2.181117,51.853134],[-2.187683,51.845029],[-2.185072,51.844046],[-2.183433,51.842881],[-2.178654,51.841828],[-2.180057,51.839761],[-2.179746,51.8383],[-2.177947,51.837396],[-2.175558,51.83693],[-2.174354,51.835899],[-2.172466,51.835284],[-2.171026,51.831876],[-2.167838,51.830437],[-2.166219,51.828461],[-2.164261,51.828428],[-2.163685,51.826468],[-2.160975,51.825287],[-2.160085,51.824564],[-2.156415,51.823627],[-2.149234,51.822725],[-2.146483,51.821344],[-2.142486,51.821535],[-2.141344,51.821905],[-2.136915,51.821337],[-2.134255,51.819919],[-2.131971,51.819369],[-2.121177,51.81956],[-2.117424,51.821092],[-2.114895,51.82279],[-2.113611,51.824648],[-2.1141,51.826901],[-2.111577,51.827232],[-2.111147,51.828502],[-2.111134,51.830668],[-2.110293,51.83178],[-2.111565,51.833418],[-2.110239,51.833813],[-2.107833,51.833906],[-2.105867,51.834676],[-2.100986,51.837571],[-2.100137,51.840215],[-2.100824,51.841253],[-2.100339,51.842329],[-2.098733,51.84336],[-2.104722,51.842248],[-2.10753,51.842778],[-2.102889,51.845312],[-2.10355,51.845962],[-2.101127,51.847397],[-2.098526,51.850182],[-2.096882,51.851224],[-2.097815,51.854431],[-2.098556,51.855534],[-2.098411,51.85656],[-2.096564,51.856194],[-2.094667,51.856385],[-2.091957,51.856128],[-2.091129,51.856675],[-2.089291,51.856798],[-2.087456,51.856367],[-2.083922,51.854625],[-2.082138,51.854922],[-2.080102,51.855715],[-2.079978,51.856905],[-2.074608,51.858261],[-2.074497,51.858689],[-2.071926,51.860193],[-2.070674,51.861873],[-2.070289,51.864432],[-2.070757,51.865027],[-2.071251,51.865712],[-2.069936,51.867025],[-2.069553,51.8684],[-2.070671,51.868895],[-2.072233,51.868492],[-2.074792,51.868328],[-2.076242,51.868961],[-2.07668,51.870338],[-2.076072,51.872051],[-2.076825,51.872854],[-2.079799,51.873077],[-2.079343,51.872242],[-2.080719,51.870858],[-2.081305,51.87189],[-2.083527,51.87295],[-2.084435,51.872223],[-2.085712,51.873127],[-2.089894,51.872138],[-2.092288,51.871176],[-2.09277,51.872335],[-2.092366,51.873776],[-2.09317,51.875466],[-2.095167,51.874706],[-2.097464,51.874575],[-2.098011,51.875155],[-2.096245,51.875802],[-2.097042,51.876809],[-2.09752,51.878863],[-2.102269,51.875994],[-2.104274,51.876823],[-2.105907,51.878379],[-2.107709,51.878895],[-2.11399,51.8802],[-2.11795,51.8817],[-2.121965,51.882515],[-2.123252,51.883119],[-2.126025,51.879267],[-2.127726,51.87972],[-2.128597,51.882444],[-2.127139,51.884358],[-2.124402,51.886018],[-2.126078,51.88739],[-2.142418,51.884509],[-2.142998,51.88904],[-2.13689,51.899624],[-2.136295,51.900017],[-2.135375,51.902142],[-2.133462,51.904912],[-2.132979,51.90667],[-2.130319,51.909927],[-2.128878,51.913784],[-2.124499,51.919485],[-2.123598,51.919106],[-2.1204,51.918925],[-2.118929,51.917921],[-2.116807,51.917633],[-2.114878,51.916916],[-2.11465,51.916365],[-2.112513,51.916578],[-2.109623,51.915854],[-2.106254,51.919753],[-2.105135,51.921807],[-2.103251,51.923361],[-2.105212,51.9249],[-2.105479,51.926339],[-2.106365,51.927038],[-2.105991,51.928256],[-2.10662,51.929911],[-2.106094,51.930733],[-2.107122,51.931633],[-2.107683,51.933982],[-2.105861,51.934761],[-2.104937,51.937197],[-2.10281,51.936384],[-2.095062,51.936172],[-2.091293,51.933783],[-2.090972,51.932706],[-2.089617,51.931932],[-2.085835,51.931555],[-2.083553,51.931888],[-2.081887,51.931501],[-2.078878,51.93205],[-2.077021,51.931837],[-2.073918,51.930991],[-2.071899,51.931251],[-2.0707,51.930636],[-2.064455,51.928741],[-2.06249,51.92726],[-2.060207,51.928129],[-2.055023,51.927042],[-2.052592,51.926082],[-2.048479,51.923631],[-2.04649,51.922905],[-2.039944,51.922411],[-2.039729,51.91852],[-2.040595,51.915765],[-2.040527,51.9146],[-2.038023,51.913977],[-2.03651,51.91414],[-2.036652,51.912931],[-2.033663,51.912787],[-2.033179,51.909211],[-2.03459,51.907941],[-2.036212,51.908145],[-2.037534,51.907573],[-2.037901,51.905276],[-2.036553,51.905285],[-2.033781,51.904414],[-2.029904,51.904096],[-2.024641,51.902066],[-2.023603,51.902406],[-2.019258,51.902681],[-2.010215,51.902924],[-2.00967,51.905868],[-2.00042,51.904075],[-1.998064,51.907394],[-1.996296,51.912031],[-1.994922,51.913411],[-1.994169,51.914977],[-1.986763,51.910902],[-1.981165,51.908939],[-1.981143,51.908388],[-1.976038,51.906284],[-1.972538,51.905845],[-1.965755,51.904294],[-1.962167,51.902794],[-1.960581,51.902458],[-1.957558,51.902289],[-1.953297,51.902865],[-1.952803,51.905026],[-1.945718,51.905464],[-1.942475,51.905277],[-1.942358,51.904874],[-1.939543,51.904977],[-1.940082,51.90634],[-1.938863,51.906903],[-1.93576,51.906235],[-1.933077,51.905119],[-1.929406,51.904694],[-1.92987,51.903916],[-1.927241,51.903154],[-1.926735,51.901313],[-1.927412,51.900854],[-1.928339,51.899019],[-1.927317,51.89643],[-1.921662,51.894212],[-1.914945,51.889156],[-1.91216,51.887601],[-1.907519,51.887585],[-1.905985,51.88802],[-1.903136,51.887162],[-1.901667,51.887012],[-1.900214,51.88931],[-1.898296,51.889936],[-1.897693,51.891086],[-1.896638,51.891129],[-1.895354,51.893349],[-1.896016,51.8943],[-1.882177,51.894279],[-1.883414,51.892499],[-1.882886,51.891532],[-1.880486,51.890865],[-1.874781,51.88996],[-1.872602,51.890237],[-1.873386,51.893657],[-1.869065,51.891854],[-1.86205,51.889722],[-1.860412,51.890713],[-1.858656,51.89246],[-1.855827,51.893384],[-1.853609,51.89343],[-1.854854,51.895784],[-1.857029,51.896781],[-1.862118,51.897459],[-1.866809,51.896913],[-1.868999,51.897068],[-1.872968,51.896647],[-1.878525,51.897281],[-1.878538,51.896692],[-1.880735,51.896791],[-1.880414,51.897964],[-1.87713,51.900854],[-1.871204,51.903947],[-1.868405,51.908068],[-1.871729,51.90896],[-1.877202,51.909196],[-1.88324,51.910931],[-1.883654,51.910789],[-1.887861,51.911888],[-1.88666,51.91462],[-1.88679,51.917289],[-1.890462,51.917695],[-1.891977,51.919605],[-1.890823,51.921274],[-1.890913,51.922458],[-1.887206,51.926193],[-1.889293,51.926772],[-1.891365,51.927907],[-1.894486,51.928624],[-1.896609,51.929787],[-1.90633,51.93139],[-1.907235,51.932307],[-1.916287,51.93435],[-1.918362,51.935785],[-1.923187,51.934889],[-1.924148,51.940335],[-1.926952,51.944622],[-1.928472,51.949934],[-1.931041,51.954405],[-1.931532,51.957471],[-1.928375,51.959063],[-1.927613,51.960435],[-1.926101,51.961452],[-1.922851,51.963034],[-1.92056,51.963334],[-1.916633,51.962731],[-1.915592,51.963608],[-1.915335,51.965509],[-1.913078,51.968695],[-1.910931,51.969385],[-1.910277,51.9686],[-1.908919,51.968137],[-1.906518,51.968376],[-1.904078,51.969167],[-1.903121,51.968132],[-1.900618,51.967149],[-1.901272,51.966238],[-1.901572,51.964324],[-1.902818,51.962336],[-1.899607,51.96149],[-1.89707,51.960325],[-1.892697,51.960239],[-1.890784,51.960565],[-1.881974,51.965326],[-1.879973,51.964266],[-1.877286,51.964442],[-1.8745,51.965098],[-1.874229,51.965583],[-1.876359,51.968123],[-1.875225,51.97004],[-1.875412,51.971511],[-1.873015,51.974478],[-1.872748,51.97674],[-1.871993,51.977555],[-1.869564,51.978809],[-1.868465,51.980591],[-1.871637,51.981572],[-1.883426,51.983613],[-1.878489,51.988565],[-1.876108,51.989587],[-1.872969,51.991775],[-1.865359,51.995159],[-1.861758,51.993196],[-1.857562,51.991449],[-1.854061,51.990825],[-1.847342,51.988524],[-1.841739,51.987762],[-1.831947,51.987794],[-1.82479,51.989153],[-1.823267,51.988222],[-1.820397,51.9874],[-1.812199,51.988019],[-1.810219,51.991757],[-1.808239,51.994365],[-1.805186,51.996138],[-1.801679,51.996895],[-1.804796,51.999007],[-1.80631,52.000948],[-1.806875,52.002673],[-1.817931,52.001384],[-1.821088,52.003273],[-1.826197,52.004758],[-1.829717,52.005144],[-1.833021,52.005896],[-1.837185,52.005855],[-1.83905,52.006783]]]},"properties":{"LAD22CD":"E07000083","LAD22NM":"Tewkesbury","BNG_E":386347,"BNG_N":226279,"LONG":-2.19998,"LAT":51.93485,"GlobalID":"ef1710b7-5af6-4b00-bcf4-c059a4a7cd8d"},"id":109}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.986124,51.362848],[-0.987568,51.361968],[-0.988846,51.362915],[-0.990768,51.362568],[-0.992906,51.361454],[-0.992867,51.362568],[-0.996317,51.36228],[-0.999262,51.361559],[-1.000223,51.362668],[-1.002306,51.360288],[-1.004686,51.360527],[-1.008568,51.35943],[-1.011123,51.35917],[-1.022647,51.359073],[-1.050016,51.358148],[-1.050246,51.359972],[-1.051525,51.362633],[-1.053082,51.362325],[-1.055396,51.363575],[-1.055799,51.36504],[-1.058528,51.365742],[-1.059157,51.366297],[-1.059151,51.367517],[-1.060151,51.368184],[-1.062118,51.367663],[-1.063062,51.369067],[-1.062594,51.369822],[-1.065767,51.372327],[-1.068936,51.373491],[-1.069211,51.373224],[-1.07252,51.375283],[-1.077863,51.374567],[-1.079991,51.374635],[-1.075347,51.379496],[-1.08278,51.381727],[-1.086619,51.383916],[-1.097518,51.381726],[-1.098799,51.380109],[-1.100219,51.379426],[-1.115457,51.374215],[-1.117515,51.36809],[-1.116138,51.366455],[-1.116418,51.364774],[-1.11539,51.36255],[-1.115791,51.360466],[-1.119243,51.359897],[-1.120144,51.360541],[-1.123744,51.361257],[-1.12466,51.359712],[-1.124767,51.3581],[-1.131316,51.358028],[-1.13859,51.357191],[-1.144131,51.357263],[-1.146858,51.359368],[-1.169622,51.360726],[-1.176894,51.357324],[-1.186067,51.362106],[-1.189282,51.363323],[-1.194797,51.363742],[-1.19993,51.364691],[-1.200975,51.365822],[-1.202083,51.36619],[-1.204949,51.366449],[-1.206697,51.366959],[-1.20988,51.366683],[-1.210819,51.367145],[-1.212544,51.366079],[-1.21356,51.36635],[-1.216052,51.365907],[-1.218309,51.365863],[-1.219657,51.366344],[-1.220624,51.367517],[-1.221796,51.367785],[-1.222588,51.369754],[-1.223895,51.369185],[-1.225073,51.369504],[-1.228553,51.368281],[-1.233313,51.367133],[-1.235913,51.367571],[-1.238039,51.366832],[-1.241579,51.366222],[-1.242033,51.366905],[-1.246147,51.368407],[-1.246449,51.369531],[-1.248556,51.371826],[-1.250371,51.371629],[-1.254524,51.372077],[-1.256571,51.371827],[-1.257381,51.372114],[-1.259192,51.371422],[-1.259071,51.370167],[-1.260576,51.369584],[-1.262187,51.368379],[-1.262803,51.368575],[-1.262995,51.370136],[-1.265444,51.370814],[-1.267808,51.370321],[-1.269803,51.370377],[-1.269663,51.369431],[-1.270929,51.368435],[-1.27341,51.367521],[-1.276017,51.367347],[-1.278242,51.368815],[-1.281434,51.368351],[-1.282941,51.367638],[-1.284595,51.367999],[-1.286811,51.367825],[-1.289904,51.369544],[-1.291642,51.370036],[-1.293287,51.371055],[-1.296774,51.370428],[-1.300871,51.370995],[-1.30334,51.370832],[-1.303924,51.371182],[-1.307205,51.371253],[-1.310945,51.372215],[-1.312059,51.373033],[-1.314576,51.372725],[-1.315141,51.37309],[-1.320627,51.372656],[-1.322399,51.371644],[-1.324724,51.372556],[-1.326448,51.371681],[-1.328234,51.371786],[-1.332705,51.370463],[-1.334286,51.369413],[-1.337319,51.369418],[-1.338312,51.368575],[-1.340805,51.369027],[-1.342927,51.369122],[-1.3454,51.368852],[-1.348746,51.367229],[-1.350453,51.367217],[-1.351833,51.367821],[-1.35288,51.367262],[-1.355523,51.367951],[-1.357399,51.367964],[-1.359587,51.367474],[-1.361755,51.367833],[-1.363785,51.368646],[-1.366273,51.368581],[-1.368639,51.367955],[-1.371902,51.368418],[-1.373578,51.367811],[-1.376147,51.368313],[-1.377869,51.367779],[-1.380464,51.368291],[-1.382737,51.369127],[-1.385248,51.369414],[-1.387836,51.370272],[-1.390789,51.370582],[-1.393515,51.370471],[-1.396609,51.371262],[-1.399565,51.371614],[-1.401424,51.371535],[-1.40194,51.372137],[-1.406115,51.372236],[-1.407103,51.372708],[-1.409467,51.372317],[-1.411068,51.372852],[-1.41563,51.371883],[-1.417568,51.370688],[-1.419072,51.366668],[-1.421586,51.364407],[-1.422349,51.362857],[-1.426729,51.36009],[-1.428439,51.35669],[-1.432231,51.355798],[-1.440512,51.355539],[-1.44411,51.354928],[-1.443613,51.351972],[-1.444223,51.349129],[-1.444936,51.348118],[-1.441169,51.346564],[-1.436732,51.343157],[-1.433462,51.341131],[-1.433121,51.340145],[-1.429693,51.33653],[-1.425887,51.337244],[-1.421336,51.335552],[-1.421259,51.333948],[-1.423187,51.331827],[-1.423304,51.330924],[-1.421116,51.329231],[-1.420052,51.327203],[-1.418627,51.327041],[-1.41915,51.325595],[-1.419368,51.323393],[-1.420981,51.321012],[-1.421326,51.31783],[-1.420626,51.31697],[-1.421225,51.316378],[-1.42339,51.316367],[-1.424938,51.31539],[-1.424988,51.31353],[-1.425804,51.31337],[-1.42481,51.310219],[-1.426504,51.307706],[-1.426065,51.303359],[-1.427849,51.300451],[-1.428651,51.30039],[-1.428298,51.297967],[-1.424491,51.295003],[-1.420668,51.293971],[-1.419261,51.293027],[-1.418955,51.290858],[-1.416762,51.285449],[-1.416766,51.283069],[-1.41875,51.280133],[-1.420604,51.278302],[-1.422059,51.27741],[-1.428981,51.275426],[-1.434536,51.274422],[-1.438113,51.272971],[-1.439931,51.271485],[-1.440486,51.271808],[-1.444173,51.26907],[-1.44695,51.267919],[-1.44566,51.267114],[-1.448329,51.266115],[-1.44905,51.265437],[-1.450465,51.265534],[-1.455205,51.26151],[-1.456689,51.261002],[-1.458467,51.259656],[-1.459588,51.258006],[-1.460153,51.255891],[-1.458256,51.254094],[-1.45167,51.252648],[-1.447081,51.250872],[-1.445055,51.249624],[-1.442968,51.247843],[-1.441325,51.245383],[-1.433284,51.236524],[-1.429855,51.235224],[-1.427465,51.23307],[-1.427011,51.230324],[-1.428095,51.225036],[-1.42602,51.224908],[-1.422743,51.225359],[-1.421342,51.224945],[-1.421091,51.223736],[-1.408667,51.221164],[-1.404796,51.219991],[-1.401332,51.219893],[-1.400097,51.219501],[-1.396576,51.217346],[-1.388546,51.214746],[-1.385892,51.214427],[-1.383666,51.2149],[-1.38168,51.211795],[-1.37915,51.209202],[-1.375997,51.20722],[-1.373958,51.206526],[-1.37263,51.205032],[-1.368862,51.202407],[-1.366842,51.202977],[-1.365398,51.201956],[-1.36326,51.202962],[-1.362059,51.202958],[-1.360041,51.204567],[-1.360278,51.206286],[-1.359194,51.208243],[-1.360256,51.210019],[-1.358178,51.212021],[-1.352778,51.210666],[-1.341612,51.205654],[-1.339116,51.199883],[-1.339536,51.196093],[-1.341677,51.187036],[-1.340939,51.184579],[-1.332197,51.187725],[-1.327721,51.190505],[-1.323508,51.191325],[-1.320658,51.191483],[-1.31256,51.193587],[-1.31032,51.194526],[-1.308823,51.194739],[-1.308728,51.195649],[-1.305493,51.195637],[-1.298939,51.197034],[-1.295082,51.195988],[-1.294995,51.195076],[-1.292713,51.194414],[-1.289955,51.194243],[-1.287796,51.195539],[-1.287419,51.196235],[-1.28527,51.195102],[-1.282566,51.194967],[-1.281945,51.193959],[-1.280428,51.194996],[-1.279167,51.19399],[-1.27421,51.194876],[-1.270531,51.193676],[-1.262204,51.193659],[-1.258841,51.19321],[-1.254493,51.191979],[-1.253077,51.190508],[-1.24861,51.191094],[-1.241085,51.191316],[-1.2317,51.191007],[-1.227853,51.190486],[-1.224747,51.18903],[-1.221196,51.186445],[-1.217218,51.184736],[-1.213977,51.184108],[-1.207071,51.18131],[-1.206561,51.180702],[-1.202241,51.185192],[-1.199634,51.185635],[-1.197969,51.185177],[-1.19778,51.184217],[-1.194878,51.185193],[-1.191663,51.18472],[-1.190308,51.183765],[-1.189594,51.182411],[-1.192921,51.179377],[-1.188986,51.176728],[-1.181696,51.17525],[-1.182239,51.170447],[-1.186849,51.165071],[-1.185572,51.163989],[-1.18931,51.163774],[-1.193356,51.162919],[-1.196997,51.161082],[-1.205939,51.161569],[-1.207433,51.161127],[-1.208125,51.160087],[-1.211346,51.158864],[-1.21438,51.158774],[-1.214406,51.157579],[-1.213343,51.155705],[-1.213666,51.152532],[-1.213299,51.151947],[-1.210612,51.151553],[-1.208598,51.150488],[-1.207406,51.150642],[-1.203679,51.150227],[-1.200739,51.150383],[-1.198658,51.150003],[-1.196048,51.14878],[-1.189993,51.146914],[-1.190136,51.146688],[-1.184445,51.144311],[-1.183782,51.140683],[-1.186566,51.138181],[-1.178136,51.134055],[-1.174289,51.13354],[-1.168264,51.13483],[-1.162264,51.134702],[-1.156594,51.136302],[-1.155839,51.135977],[-1.151012,51.136177],[-1.151782,51.137166],[-1.151782,51.138973],[-1.147008,51.139733],[-1.142691,51.141313],[-1.141183,51.140453],[-1.138532,51.141761],[-1.13179,51.143581],[-1.130487,51.145541],[-1.126116,51.148161],[-1.122234,51.149976],[-1.117242,51.151433],[-1.117532,51.152397],[-1.116266,51.153679],[-1.11179,51.156335],[-1.109053,51.158583],[-1.107218,51.161356],[-1.104921,51.163149],[-1.100454,51.16312],[-1.09931,51.163971],[-1.096201,51.164702],[-1.094188,51.165735],[-1.087378,51.16769],[-1.08502,51.16714],[-1.082776,51.16569],[-1.080536,51.165004],[-1.075018,51.164293],[-1.07425,51.164452],[-1.077471,51.172736],[-1.077324,51.173285],[-1.074855,51.175105],[-1.076197,51.177735],[-1.07601,51.179199],[-1.074688,51.180719],[-1.073415,51.185326],[-1.071104,51.187756],[-1.061691,51.190518],[-1.061782,51.18873],[-1.057253,51.189167],[-1.052002,51.189066],[-1.050028,51.187934],[-1.044309,51.189697],[-1.035691,51.190707],[-1.029665,51.189966],[-1.023384,51.189861],[-1.019929,51.188791],[-1.01313,51.187741],[-1.010902,51.188411],[-1.008115,51.189958],[-1.004886,51.189715],[-1.004081,51.188953],[-1.001029,51.189201],[-0.997205,51.190039],[-0.994322,51.189945],[-0.989489,51.19087],[-0.985883,51.190436],[-0.984732,51.192918],[-0.985312,51.196673],[-0.986414,51.200076],[-0.986275,51.2032],[-0.983043,51.205862],[-0.983479,51.208299],[-0.984267,51.209524],[-0.98416,51.212428],[-0.982722,51.215629],[-0.981692,51.216294],[-0.980363,51.218508],[-0.978101,51.220484],[-0.981651,51.221933],[-0.983282,51.223079],[-0.981362,51.224313],[-0.978933,51.2236],[-0.978683,51.224746],[-0.975475,51.225915],[-0.976097,51.227628],[-0.97605,51.229058],[-0.976961,51.230063],[-0.979895,51.229214],[-0.982195,51.231024],[-0.98314,51.233345],[-0.98311,51.235308],[-0.978313,51.235607],[-0.976239,51.237048],[-0.977205,51.237825],[-0.974796,51.238519],[-0.976765,51.241194],[-0.981002,51.242708],[-0.981987,51.242619],[-0.98766,51.243843],[-0.990764,51.243807],[-0.993708,51.244417],[-0.99258,51.246324],[-0.991014,51.247383],[-0.992143,51.248157],[-0.989066,51.250148],[-0.990162,51.250833],[-0.989751,51.252432],[-0.985393,51.254914],[-0.985799,51.25535],[-0.98417,51.256542],[-0.983167,51.257864],[-0.98263,51.260331],[-0.9808,51.261625],[-0.979856,51.265212],[-0.979751,51.270123],[-0.980115,51.271212],[-0.979519,51.273342],[-0.978043,51.275129],[-0.981481,51.277575],[-0.981466,51.278435],[-0.983088,51.280375],[-0.982127,51.282211],[-0.984167,51.282348],[-0.982397,51.283764],[-0.981727,51.286631],[-0.987986,51.286945],[-0.991085,51.287548],[-0.99214,51.288123],[-0.995692,51.288682],[-0.996383,51.288461],[-1.000221,51.289221],[-1.001259,51.291618],[-1.001057,51.293221],[-1.002278,51.293989],[-1.001074,51.298098],[-1.001217,51.300232],[-0.998417,51.299972],[-0.995655,51.299222],[-0.993342,51.303536],[-0.990609,51.303536],[-0.988961,51.304389],[-0.986435,51.306772],[-0.984275,51.306833],[-0.983888,51.310021],[-0.985258,51.312399],[-0.985431,51.314371],[-0.986826,51.317022],[-0.98659,51.320418],[-0.98708,51.322888],[-0.986836,51.323876],[-0.985338,51.324581],[-0.984984,51.325595],[-0.982573,51.32618],[-0.98311,51.328255],[-0.98382,51.329033],[-0.983481,51.330395],[-0.981865,51.331124],[-0.982162,51.333921],[-0.981002,51.337229],[-0.981929,51.337606],[-0.991674,51.338704],[-0.990154,51.339406],[-0.989506,51.340467],[-0.990737,51.342652],[-0.992315,51.342191],[-0.994604,51.342311],[-0.993845,51.344455],[-0.994628,51.346863],[-0.988785,51.351432],[-0.988299,51.355503],[-0.986711,51.358236],[-0.98674,51.359856],[-0.987922,51.360717],[-0.985483,51.362026],[-0.986124,51.362848]]]},"properties":{"LAD22CD":"E07000084","LAD22NM":"Basingstoke and Deane","BNG_E":454508,"BNG_N":151423,"LONG":-1.22021,"LAT":51.25937,"GlobalID":"84c743b7-5bc7-48a4-a5db-cf52ff9ad9c3"},"id":110}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.848912,51.210716],[-0.851121,51.211495],[-0.855527,51.211665],[-0.856802,51.212352],[-0.858789,51.211942],[-0.860821,51.211967],[-0.863334,51.212548],[-0.869052,51.212737],[-0.872039,51.212506],[-0.880887,51.210298],[-0.89451,51.210065],[-0.902985,51.209306],[-0.906638,51.208238],[-0.905612,51.206747],[-0.909178,51.205498],[-0.912051,51.205779],[-0.914886,51.205176],[-0.917485,51.205121],[-0.919538,51.204622],[-0.921048,51.203694],[-0.929912,51.202997],[-0.933177,51.203305],[-0.949058,51.198964],[-0.951176,51.200447],[-0.953828,51.198362],[-0.957192,51.196379],[-0.960859,51.195585],[-0.962018,51.194977],[-0.964245,51.19188],[-0.964959,51.190134],[-0.967203,51.188301],[-0.969307,51.187305],[-0.973821,51.186008],[-0.977104,51.187706],[-0.979834,51.187919],[-0.982157,51.189302],[-0.985289,51.190023],[-0.985883,51.190436],[-0.989489,51.19087],[-0.994322,51.189945],[-0.997205,51.190039],[-1.001029,51.189201],[-1.004081,51.188953],[-1.004886,51.189715],[-1.008115,51.189958],[-1.010902,51.188411],[-1.01313,51.187741],[-1.019929,51.188791],[-1.023384,51.189861],[-1.029665,51.189966],[-1.035691,51.190707],[-1.044309,51.189697],[-1.050028,51.187934],[-1.052002,51.189066],[-1.057253,51.189167],[-1.061782,51.18873],[-1.061691,51.190518],[-1.071104,51.187756],[-1.073415,51.185326],[-1.074688,51.180719],[-1.07601,51.179199],[-1.076197,51.177735],[-1.074855,51.175105],[-1.077324,51.173285],[-1.077471,51.172736],[-1.07425,51.164452],[-1.075018,51.164293],[-1.080536,51.165004],[-1.082776,51.16569],[-1.08502,51.16714],[-1.087378,51.16769],[-1.094188,51.165735],[-1.096201,51.164702],[-1.09931,51.163971],[-1.100454,51.16312],[-1.104921,51.163149],[-1.107218,51.161356],[-1.109053,51.158583],[-1.11179,51.156335],[-1.116266,51.153679],[-1.117532,51.152397],[-1.117242,51.151433],[-1.122234,51.149976],[-1.126116,51.148161],[-1.130487,51.145541],[-1.13179,51.143581],[-1.131018,51.142544],[-1.130716,51.140301],[-1.129786,51.138595],[-1.126511,51.138021],[-1.1255,51.138819],[-1.123357,51.138702],[-1.117731,51.137288],[-1.113797,51.137118],[-1.112114,51.136578],[-1.109516,51.137055],[-1.10215,51.14029],[-1.099685,51.140672],[-1.095043,51.140346],[-1.095415,51.138073],[-1.095084,51.136862],[-1.093474,51.137046],[-1.093586,51.134902],[-1.094683,51.132944],[-1.092835,51.130622],[-1.092488,51.129692],[-1.094944,51.125994],[-1.095179,51.124049],[-1.093776,51.121744],[-1.091491,51.120262],[-1.091239,51.114586],[-1.090533,51.111998],[-1.091601,51.10983],[-1.093162,51.108849],[-1.093925,51.107768],[-1.087712,51.109483],[-1.080764,51.109443],[-1.07467,51.107918],[-1.075149,51.106923],[-1.079272,51.105642],[-1.080498,51.10455],[-1.083288,51.102929],[-1.083804,51.100869],[-1.082857,51.09907],[-1.085265,51.097868],[-1.085815,51.097248],[-1.092035,51.095315],[-1.095393,51.094863],[-1.098227,51.093644],[-1.100443,51.094],[-1.101077,51.092921],[-1.100269,51.092104],[-1.105424,51.090915],[-1.105992,51.090609],[-1.106524,51.088641],[-1.108127,51.088546],[-1.108651,51.087134],[-1.10844,51.085644],[-1.106444,51.081105],[-1.107137,51.078895],[-1.101539,51.073854],[-1.100138,51.071545],[-1.099135,51.070714],[-1.094786,51.068318],[-1.091987,51.067572],[-1.094541,51.06552],[-1.094999,51.063662],[-1.094327,51.062552],[-1.091463,51.061554],[-1.090129,51.061758],[-1.088853,51.060665],[-1.088189,51.058727],[-1.088833,51.056377],[-1.090902,51.055726],[-1.089671,51.053891],[-1.088461,51.053381],[-1.08494,51.050679],[-1.083802,51.050356],[-1.082948,51.048896],[-1.081223,51.048899],[-1.082084,51.046736],[-1.076424,51.048198],[-1.069463,51.047151],[-1.067338,51.047639],[-1.066212,51.046789],[-1.065262,51.045061],[-1.062196,51.044519],[-1.059956,51.04576],[-1.060412,51.046691],[-1.055767,51.04742],[-1.053775,51.047232],[-1.055229,51.045747],[-1.064261,51.042635],[-1.073786,51.033964],[-1.074502,51.032586],[-1.073412,51.032215],[-1.072785,51.031288],[-1.06494,51.030933],[-1.065053,51.029957],[-1.064229,51.028586],[-1.063964,51.026091],[-1.062344,51.020113],[-1.063914,51.016408],[-1.064674,51.011663],[-1.067346,51.011741],[-1.067296,51.008874],[-1.068787,51.008552],[-1.068727,51.006379],[-1.067927,51.003733],[-1.069075,50.999834],[-1.068807,50.998246],[-1.069362,50.995753],[-1.069033,50.994503],[-1.069462,50.99373],[-1.068198,50.992593],[-1.068042,50.99184],[-1.066644,50.990692],[-1.067625,50.989684],[-1.066835,50.988529],[-1.067507,50.985715],[-1.066354,50.984979],[-1.063366,50.977692],[-1.061489,50.978329],[-1.060295,50.978316],[-1.05549,50.977556],[-1.054102,50.975021],[-1.05437,50.972359],[-1.053651,50.971041],[-1.051665,50.969538],[-1.045286,50.968674],[-1.045985,50.966475],[-1.04513,50.965446],[-1.044609,50.963143],[-1.045735,50.959506],[-1.046198,50.954629],[-1.044288,50.954429],[-1.043154,50.952992],[-1.04139,50.952863],[-1.04057,50.951749],[-1.037763,50.951198],[-1.03569,50.951517],[-1.036223,50.949473],[-1.037633,50.947572],[-1.038468,50.943954],[-1.037423,50.943536],[-1.037482,50.940895],[-1.036725,50.937847],[-1.036963,50.935087],[-1.037889,50.933222],[-1.036618,50.932818],[-1.03659,50.931728],[-1.037729,50.929272],[-1.039373,50.927779],[-1.037119,50.924828],[-1.036354,50.92203],[-1.037361,50.920337],[-1.040295,50.917785],[-1.044188,50.915692],[-1.045288,50.913799],[-1.044856,50.912062],[-1.046211,50.90992],[-1.048456,50.902516],[-1.044467,50.902341],[-1.041672,50.902599],[-1.038816,50.903148],[-1.038026,50.903592],[-1.034116,50.904163],[-1.034052,50.905278],[-1.032166,50.90478],[-1.029265,50.904656],[-1.028441,50.905782],[-1.02386,50.90616],[-1.02555,50.909083],[-1.024528,50.909463],[-1.021655,50.909647],[-1.018733,50.909055],[-1.01869,50.90807],[-1.019385,50.90499],[-1.01849,50.903835],[-1.015203,50.90339],[-1.012009,50.902495],[-1.011133,50.90377],[-1.007779,50.902539],[-1.007268,50.901969],[-1.00148,50.899476],[-1.004707,50.896546],[-1.002738,50.895718],[-0.998768,50.895401],[-0.997294,50.89464],[-0.995759,50.893036],[-0.992336,50.891667],[-0.985444,50.885001],[-0.978714,50.878307],[-0.976503,50.879152],[-0.975838,50.878023],[-0.974246,50.878024],[-0.97257,50.878659],[-0.971692,50.877863],[-0.969891,50.878028],[-0.968256,50.877711],[-0.968955,50.875658],[-0.96691,50.875016],[-0.968013,50.87344],[-0.963199,50.872972],[-0.960443,50.872184],[-0.963385,50.867254],[-0.960847,50.867654],[-0.958009,50.867705],[-0.955728,50.868231],[-0.953546,50.868193],[-0.943339,50.872485],[-0.938608,50.873721],[-0.939471,50.874245],[-0.939503,50.875468],[-0.941227,50.87763],[-0.945331,50.880339],[-0.947104,50.884106],[-0.951449,50.886352],[-0.957582,50.89063],[-0.955606,50.891119],[-0.951982,50.897002],[-0.950189,50.89846],[-0.95037,50.901309],[-0.949554,50.90498],[-0.948645,50.905009],[-0.946795,50.909512],[-0.945834,50.910824],[-0.942837,50.913247],[-0.941801,50.915728],[-0.940245,50.918054],[-0.938125,50.919446],[-0.93624,50.919789],[-0.92598,50.923076],[-0.924013,50.924199],[-0.927639,50.927839],[-0.928135,50.931104],[-0.929,50.932574],[-0.931013,50.934464],[-0.931185,50.935283],[-0.934409,50.938992],[-0.935319,50.941103],[-0.937307,50.942117],[-0.94114,50.942453],[-0.94211,50.942894],[-0.937793,50.944448],[-0.931847,50.94558],[-0.930193,50.948151],[-0.928944,50.952349],[-0.926521,50.952525],[-0.928082,50.954804],[-0.929544,50.956064],[-0.929274,50.958347],[-0.924855,50.962356],[-0.92074,50.964557],[-0.916978,50.968605],[-0.916421,50.97001],[-0.915228,50.971444],[-0.917692,50.978664],[-0.916542,50.980301],[-0.915154,50.981114],[-0.913661,50.984703],[-0.912391,50.985726],[-0.911739,50.987141],[-0.907576,50.990628],[-0.907925,50.994092],[-0.906007,50.995736],[-0.905622,50.996817],[-0.903947,50.998578],[-0.901917,50.999157],[-0.901793,51.000208],[-0.89971,51.001277],[-0.897968,51.001073],[-0.896885,51.001431],[-0.895835,51.000892],[-0.893347,51.002743],[-0.893412,51.005351],[-0.894286,51.006942],[-0.89685,51.008883],[-0.897807,51.010315],[-0.897088,51.016319],[-0.898508,51.017667],[-0.897061,51.021924],[-0.89528,51.023379],[-0.893085,51.023795],[-0.89196,51.024751],[-0.887878,51.026232],[-0.885886,51.0266],[-0.88382,51.026505],[-0.882657,51.026862],[-0.87854,51.029567],[-0.86703,51.038505],[-0.860679,51.041884],[-0.852811,51.044843],[-0.851216,51.047605],[-0.850786,51.051044],[-0.850214,51.051829],[-0.849537,51.056429],[-0.850113,51.059336],[-0.846037,51.064208],[-0.842848,51.066887],[-0.838432,51.068507],[-0.837291,51.069203],[-0.831419,51.068513],[-0.829143,51.067769],[-0.829682,51.067158],[-0.829887,51.063571],[-0.827332,51.062229],[-0.826369,51.061325],[-0.822965,51.061896],[-0.819912,51.060686],[-0.817294,51.061228],[-0.815567,51.062397],[-0.815523,51.065465],[-0.814505,51.06668],[-0.813255,51.065581],[-0.811549,51.062975],[-0.80825,51.063414],[-0.805833,51.064118],[-0.802757,51.06398],[-0.800211,51.063317],[-0.797763,51.063556],[-0.79547,51.064911],[-0.793019,51.067634],[-0.78809,51.07202],[-0.785614,51.073166],[-0.7844,51.075097],[-0.782703,51.07593],[-0.782278,51.077281],[-0.780787,51.079375],[-0.777287,51.079792],[-0.775818,51.081195],[-0.77434,51.081528],[-0.77221,51.08256],[-0.766601,51.084628],[-0.765235,51.084393],[-0.764087,51.085145],[-0.761555,51.085537],[-0.759166,51.085499],[-0.757548,51.085052],[-0.755104,51.085284],[-0.753481,51.086456],[-0.754729,51.086609],[-0.757383,51.087771],[-0.757505,51.088836],[-0.7589,51.090847],[-0.758553,51.092033],[-0.755647,51.094328],[-0.754313,51.095876],[-0.757996,51.10063],[-0.758623,51.102337],[-0.759815,51.103908],[-0.761334,51.103825],[-0.763727,51.102725],[-0.764912,51.102909],[-0.759865,51.104868],[-0.756286,51.104577],[-0.749273,51.103246],[-0.744688,51.106411],[-0.745715,51.106421],[-0.747565,51.107777],[-0.74685,51.108445],[-0.745526,51.112188],[-0.748473,51.112387],[-0.750203,51.113469],[-0.753036,51.113181],[-0.756152,51.114202],[-0.758288,51.115313],[-0.76041,51.115378],[-0.761837,51.114935],[-0.764467,51.115266],[-0.769281,51.117142],[-0.769519,51.118865],[-0.770661,51.121021],[-0.772293,51.12175],[-0.774074,51.123094],[-0.777763,51.126899],[-0.779287,51.127591],[-0.782347,51.12851],[-0.78302,51.129315],[-0.782583,51.130146],[-0.780582,51.131271],[-0.780901,51.132785],[-0.780509,51.134438],[-0.781023,51.135219],[-0.784777,51.1361],[-0.786918,51.137533],[-0.790143,51.138572],[-0.791283,51.139413],[-0.792525,51.143682],[-0.793756,51.144829],[-0.793558,51.145475],[-0.794997,51.149517],[-0.796968,51.150894],[-0.799144,51.151407],[-0.798396,51.152527],[-0.802297,51.152687],[-0.803417,51.153037],[-0.803382,51.154177],[-0.80473,51.155364],[-0.806897,51.154498],[-0.806861,51.153912],[-0.809438,51.153594],[-0.811029,51.152384],[-0.813564,51.151846],[-0.812566,51.151188],[-0.815654,51.150155],[-0.816795,51.149513],[-0.817845,51.148038],[-0.817388,51.147751],[-0.823338,51.146406],[-0.824822,51.147589],[-0.825969,51.145765],[-0.828374,51.145266],[-0.83233,51.147734],[-0.834204,51.147582],[-0.833808,51.149758],[-0.830922,51.155721],[-0.831303,51.159099],[-0.830024,51.162485],[-0.830373,51.16272],[-0.829157,51.16782],[-0.827119,51.174591],[-0.82773,51.177024],[-0.826808,51.177539],[-0.825427,51.181232],[-0.827181,51.184657],[-0.828086,51.18485],[-0.8283,51.186005],[-0.830189,51.188382],[-0.835346,51.191666],[-0.837163,51.194323],[-0.842633,51.199349],[-0.843759,51.198912],[-0.845532,51.200134],[-0.845752,51.200787],[-0.843812,51.201709],[-0.845494,51.204382],[-0.847028,51.205983],[-0.846092,51.206551],[-0.847055,51.208852],[-0.848912,51.210716]]]},"properties":{"LAD22CD":"E07000085","LAD22NM":"East Hampshire","BNG_E":474405,"BNG_N":129237,"LONG":-0.9397,"LAT":51.05765,"GlobalID":"320bb199-6088-405e-9d57-9c26779732cb"},"id":111}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.392975,51.004361],[-1.391933,50.999219],[-1.395159,50.999079],[-1.396471,50.998648],[-1.398961,50.996724],[-1.399643,50.994674],[-1.398204,50.994444],[-1.397157,50.990439],[-1.39563,50.989029],[-1.393832,50.988605],[-1.391427,50.986809],[-1.392416,50.985852],[-1.391053,50.982857],[-1.394418,50.97965],[-1.39596,50.978975],[-1.396381,50.977547],[-1.392385,50.976274],[-1.396466,50.968508],[-1.392746,50.967703],[-1.393957,50.964744],[-1.390553,50.963799],[-1.389955,50.963017],[-1.385278,50.961667],[-1.383574,50.960025],[-1.385286,50.959218],[-1.385579,50.9585],[-1.384478,50.956269],[-1.380274,50.95679],[-1.380643,50.956043],[-1.376437,50.955583],[-1.375697,50.954306],[-1.374034,50.953976],[-1.375692,50.952349],[-1.37781,50.950852],[-1.378507,50.950745],[-1.379892,50.947518],[-1.376818,50.947211],[-1.370973,50.946052],[-1.369819,50.947082],[-1.366918,50.946868],[-1.35469,50.941022],[-1.354569,50.940544],[-1.356953,50.939469],[-1.358998,50.937957],[-1.356628,50.937686],[-1.354577,50.936857],[-1.352771,50.935357],[-1.356965,50.93285],[-1.357934,50.930731],[-1.354907,50.928774],[-1.353133,50.926155],[-1.351138,50.926666],[-1.350133,50.925794],[-1.347749,50.924754],[-1.344505,50.922849],[-1.339489,50.923713],[-1.337733,50.922475],[-1.338499,50.921484],[-1.336635,50.920487],[-1.33531,50.920999],[-1.333357,50.919883],[-1.332689,50.918458],[-1.329822,50.915614],[-1.329006,50.914362],[-1.329043,50.913307],[-1.32464,50.908435],[-1.32872,50.90667],[-1.327704,50.905548],[-1.327876,50.904453],[-1.324024,50.90441],[-1.321978,50.900953],[-1.335048,50.897365],[-1.335093,50.896292],[-1.336144,50.895323],[-1.341583,50.894156],[-1.343325,50.891362],[-1.346943,50.889424],[-1.349385,50.888589],[-1.35103,50.886829],[-1.354934,50.88569],[-1.358238,50.885168],[-1.360136,50.884195],[-1.362695,50.881658],[-1.363616,50.881278],[-1.364952,50.879915],[-1.358561,50.875873],[-1.351813,50.869853],[-1.351328,50.869924],[-1.34006,50.863185],[-1.335222,50.859284],[-1.331928,50.857126],[-1.329362,50.856025],[-1.322289,50.852043],[-1.314653,50.850095],[-1.313057,50.848845],[-1.310267,50.849009],[-1.309817,50.849839],[-1.310202,50.850786],[-1.31241,50.852868],[-1.314517,50.853747],[-1.313862,50.855161],[-1.312765,50.85597],[-1.312393,50.857807],[-1.313493,50.859587],[-1.312898,50.861273],[-1.312895,50.862887],[-1.312031,50.864241],[-1.311503,50.866567],[-1.310002,50.867752],[-1.309794,50.869681],[-1.311843,50.87006],[-1.313111,50.873133],[-1.314004,50.872503],[-1.315231,50.873156],[-1.314085,50.874487],[-1.312983,50.87641],[-1.311314,50.876354],[-1.310137,50.87722],[-1.304342,50.87792],[-1.302265,50.87976],[-1.300936,50.88011],[-1.30349,50.881277],[-1.304595,50.882119],[-1.30452,50.883506],[-1.300782,50.885835],[-1.301098,50.886781],[-1.296235,50.888593],[-1.295184,50.890247],[-1.292832,50.892219],[-1.290817,50.8925],[-1.289536,50.893482],[-1.289653,50.895455],[-1.289091,50.896178],[-1.286807,50.896599],[-1.279034,50.897327],[-1.275294,50.898723],[-1.271826,50.898748],[-1.269348,50.899382],[-1.2681,50.899402],[-1.265003,50.898784],[-1.262647,50.899846],[-1.262138,50.901368],[-1.260779,50.902207],[-1.264711,50.90526],[-1.26536,50.90613],[-1.26476,50.906828],[-1.266985,50.908203],[-1.267418,50.909058],[-1.268853,50.909568],[-1.268694,50.914084],[-1.267426,50.915656],[-1.266799,50.916459],[-1.267664,50.91695],[-1.266478,50.918043],[-1.265378,50.918391],[-1.264552,50.922864],[-1.265816,50.924789],[-1.264707,50.925412],[-1.264633,50.926181],[-1.2663,50.927047],[-1.26752,50.928802],[-1.267207,50.929343],[-1.270209,50.931663],[-1.270758,50.933505],[-1.272559,50.933992],[-1.273691,50.935703],[-1.276326,50.93584],[-1.27887,50.936656],[-1.284726,50.936379],[-1.285068,50.937363],[-1.286988,50.939618],[-1.286715,50.94272],[-1.288012,50.945441],[-1.291125,50.946845],[-1.29256,50.948627],[-1.291032,50.950858],[-1.289369,50.951274],[-1.287044,50.952928],[-1.285979,50.954336],[-1.283249,50.956307],[-1.283041,50.957705],[-1.282074,50.958612],[-1.276986,50.960937],[-1.276307,50.961898],[-1.272934,50.962247],[-1.271828,50.962608],[-1.270636,50.963875],[-1.2685,50.967524],[-1.265761,50.968877],[-1.260377,50.974361],[-1.258154,50.978342],[-1.25963,50.979221],[-1.262734,50.980154],[-1.266554,50.980157],[-1.267761,50.978629],[-1.272071,50.979098],[-1.272851,50.977084],[-1.275389,50.973885],[-1.276992,50.974356],[-1.280311,50.974392],[-1.284946,50.973524],[-1.290338,50.974109],[-1.293428,50.974145],[-1.295231,50.974622],[-1.295139,50.976127],[-1.290479,50.982301],[-1.290575,50.98287],[-1.29315,50.983714],[-1.295879,50.982827],[-1.301767,50.982743],[-1.312008,50.984719],[-1.313408,50.984563],[-1.316394,50.985125],[-1.319271,50.987137],[-1.322728,50.987548],[-1.323294,50.985871],[-1.323092,50.983893],[-1.327678,50.98012],[-1.32853,50.980596],[-1.329095,50.982104],[-1.330391,50.983748],[-1.333917,50.983356],[-1.335472,50.983507],[-1.337647,50.984303],[-1.3395,50.983919],[-1.342466,50.984942],[-1.344057,50.984862],[-1.345036,50.984073],[-1.344919,50.982549],[-1.346566,50.981399],[-1.345621,50.985543],[-1.342766,50.990889],[-1.343554,50.991968],[-1.345844,50.992577],[-1.346861,50.991065],[-1.349226,50.993268],[-1.349724,50.994406],[-1.351181,50.995352],[-1.351112,50.996735],[-1.353913,50.997085],[-1.353468,50.998159],[-1.359748,50.998671],[-1.36357,51.000076],[-1.367485,51.000399],[-1.369666,51.001627],[-1.381653,51.003436],[-1.384547,51.004269],[-1.385851,51.004283],[-1.389045,51.003643],[-1.392975,51.004361]]]},"properties":{"LAD22CD":"E07000086","LAD22NM":"Eastleigh","BNG_E":447199,"BNG_N":116807,"LONG":-1.32947,"LAT":50.94876,"GlobalID":"33f3e03c-644e-493e-8007-b8df1eb1b568"},"id":112}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.265507,50.897771],[-1.267067,50.898143],[-1.269328,50.897992],[-1.272053,50.897305],[-1.274686,50.897778],[-1.276564,50.896884],[-1.2791,50.896181],[-1.281746,50.896043],[-1.284416,50.895433],[-1.286928,50.895334],[-1.28791,50.894679],[-1.287345,50.892575],[-1.287684,50.891701],[-1.292332,50.890626],[-1.292385,50.889358],[-1.296156,50.886953],[-1.298709,50.88663],[-1.298492,50.885762],[-1.300294,50.884455],[-1.302063,50.883668],[-1.298141,50.881137],[-1.29755,50.881047],[-1.296319,50.879249],[-1.297282,50.878236],[-1.301338,50.876619],[-1.301375,50.876291],[-1.30528,50.87432],[-1.305376,50.872875],[-1.304651,50.87143],[-1.30568,50.868927],[-1.30582,50.866257],[-1.307399,50.863331],[-1.308045,50.862711],[-1.308543,50.860403],[-1.307319,50.859416],[-1.305916,50.857042],[-1.30752,50.855863],[-1.306977,50.854188],[-1.307342,50.853054],[-1.303968,50.849875],[-1.303168,50.848464],[-1.304146,50.847817],[-1.30392,50.846834],[-1.304676,50.845457],[-1.306788,50.844993],[-1.306771,50.843579],[-1.30814,50.843018],[-1.306685,50.840438],[-1.303277,50.838154],[-1.299925,50.83682],[-1.289291,50.833967],[-1.287577,50.833085],[-1.286132,50.832941],[-1.27998,50.831224],[-1.267121,50.827334],[-1.264682,50.826838],[-1.258453,50.824154],[-1.247186,50.817554],[-1.245016,50.817078],[-1.242323,50.817365],[-1.240046,50.818141],[-1.238197,50.818036],[-1.232435,50.815711],[-1.230588,50.815262],[-1.228232,50.81393],[-1.226734,50.813908],[-1.223975,50.813191],[-1.222124,50.812357],[-1.220801,50.811321],[-1.21983,50.811444],[-1.215563,50.810081],[-1.214186,50.809286],[-1.214147,50.810792],[-1.209883,50.811287],[-1.209895,50.811699],[-1.203843,50.811247],[-1.193929,50.811037],[-1.186999,50.811397],[-1.186811,50.812362],[-1.184753,50.812338],[-1.179596,50.813181],[-1.178844,50.814314],[-1.179393,50.81544],[-1.180927,50.815902],[-1.182312,50.817274],[-1.186286,50.819564],[-1.186318,50.821521],[-1.189234,50.821874],[-1.188029,50.823969],[-1.18568,50.82434],[-1.185894,50.825232],[-1.18366,50.82771],[-1.184262,50.830069],[-1.181734,50.832307],[-1.181972,50.833773],[-1.181371,50.835503],[-1.181664,50.836699],[-1.1795,50.837345],[-1.178142,50.838141],[-1.178113,50.838162],[-1.176408,50.839845],[-1.175499,50.842027],[-1.176254,50.843542],[-1.176231,50.844922],[-1.178402,50.846406],[-1.178442,50.847582],[-1.179403,50.848386],[-1.177601,50.849844],[-1.170353,50.849552],[-1.169354,50.850238],[-1.168365,50.852369],[-1.166489,50.852412],[-1.166413,50.850147],[-1.169247,50.848348],[-1.171361,50.84764],[-1.173681,50.847849],[-1.175848,50.848574],[-1.176671,50.847341],[-1.173936,50.844575],[-1.17331,50.841411],[-1.172939,50.840986],[-1.171441,50.840124],[-1.171101,50.839983],[-1.168999,50.840139],[-1.168067,50.840224],[-1.163516,50.841342],[-1.162871,50.841675],[-1.163051,50.843631],[-1.160516,50.844776],[-1.157321,50.844417],[-1.154473,50.844901],[-1.153248,50.843548],[-1.154575,50.842893],[-1.15265,50.841209],[-1.151917,50.841091],[-1.148374,50.841879],[-1.14815,50.841876],[-1.147825,50.841737],[-1.146603,50.841033],[-1.146028,50.840502],[-1.144212,50.839151],[-1.143714,50.838988],[-1.141386,50.838592],[-1.138883,50.838721],[-1.138045,50.839225],[-1.135048,50.839292],[-1.132044,50.838259],[-1.129575,50.837993],[-1.125063,50.836367],[-1.12221,50.835677],[-1.11891,50.835502],[-1.117593,50.83589],[-1.112961,50.836131],[-1.112276,50.837868],[-1.112536,50.83822],[-1.114494,50.840238],[-1.114499,50.840236],[-1.116526,50.842557],[-1.117006,50.843036],[-1.117705,50.844439],[-1.117631,50.851485],[-1.116725,50.851523],[-1.116824,50.854515],[-1.115924,50.854754],[-1.115848,50.858272],[-1.121959,50.858487],[-1.122418,50.857825],[-1.125947,50.858184],[-1.126705,50.857754],[-1.132416,50.858492],[-1.132776,50.858135],[-1.135467,50.858926],[-1.138057,50.858778],[-1.138404,50.858092],[-1.140148,50.857928],[-1.143245,50.858429],[-1.144522,50.866577],[-1.147613,50.867414],[-1.147943,50.868463],[-1.150762,50.869415],[-1.151727,50.870279],[-1.15067,50.875083],[-1.149475,50.87766],[-1.150035,50.879404],[-1.151703,50.878832],[-1.152455,50.879146],[-1.153802,50.881328],[-1.153857,50.882341],[-1.155627,50.883107],[-1.159824,50.884161],[-1.162599,50.886566],[-1.164696,50.887437],[-1.167218,50.889433],[-1.169465,50.888421],[-1.173643,50.888867],[-1.174942,50.888012],[-1.177113,50.887613],[-1.18063,50.887984],[-1.180714,50.88891],[-1.185717,50.888353],[-1.185984,50.887843],[-1.188345,50.888017],[-1.188161,50.883983],[-1.195864,50.885039],[-1.197341,50.884036],[-1.19851,50.881784],[-1.198019,50.875943],[-1.207272,50.876635],[-1.208209,50.875011],[-1.209766,50.873942],[-1.216039,50.875058],[-1.218625,50.873114],[-1.217775,50.872499],[-1.220419,50.868707],[-1.223559,50.867572],[-1.225198,50.865867],[-1.224774,50.865338],[-1.226066,50.864183],[-1.227865,50.863168],[-1.227863,50.862608],[-1.22965,50.860605],[-1.23083,50.8613],[-1.234538,50.862507],[-1.236609,50.863756],[-1.240945,50.865676],[-1.253498,50.872386],[-1.255243,50.873103],[-1.254966,50.875938],[-1.256105,50.876418],[-1.254826,50.878946],[-1.256587,50.880716],[-1.253966,50.882515],[-1.253952,50.883165],[-1.255372,50.884184],[-1.25468,50.887018],[-1.255653,50.888855],[-1.259401,50.889721],[-1.257781,50.891287],[-1.259079,50.891751],[-1.258683,50.89282],[-1.260904,50.893036],[-1.26109,50.895079],[-1.264065,50.895505],[-1.265798,50.897455],[-1.265507,50.897771]]]},"properties":{"LAD22CD":"E07000087","LAD22NM":"Fareham","BNG_E":453774,"BNG_N":106319,"LONG":-1.23742,"LAT":50.85388,"GlobalID":"e8e3635b-5f84-478e-bfcf-e41413c3e623"},"id":113}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.214186,50.809286],[-1.209273,50.805768],[-1.203937,50.80063],[-1.200981,50.798391],[-1.197263,50.794517],[-1.19112,50.790471],[-1.184776,50.787877],[-1.176003,50.786409],[-1.171329,50.785515],[-1.166093,50.785554],[-1.161269,50.784451],[-1.154731,50.781522],[-1.143023,50.77371],[-1.141211,50.773283],[-1.138712,50.773549],[-1.13439,50.775344],[-1.126464,50.781358],[-1.111949,50.789526],[-1.11317,50.791323],[-1.114718,50.78884],[-1.1163,50.788002],[-1.120655,50.788105],[-1.124422,50.78962],[-1.125182,50.788734],[-1.126683,50.788029],[-1.128778,50.788015],[-1.132703,50.785199],[-1.135516,50.785062],[-1.138429,50.784244],[-1.140043,50.784183],[-1.14015,50.785077],[-1.137558,50.785446],[-1.135923,50.786057],[-1.133618,50.785977],[-1.131768,50.78795],[-1.133692,50.789292],[-1.136236,50.789714],[-1.134713,50.790414],[-1.132754,50.789983],[-1.130805,50.788855],[-1.129655,50.789474],[-1.126728,50.789318],[-1.128178,50.791785],[-1.125343,50.7921],[-1.122908,50.791677],[-1.121009,50.790092],[-1.118654,50.791283],[-1.117173,50.79319],[-1.116569,50.795703],[-1.118823,50.797243],[-1.120851,50.7971],[-1.124058,50.799259],[-1.122282,50.800014],[-1.122865,50.800787],[-1.124072,50.800832],[-1.123791,50.804093],[-1.125849,50.804085],[-1.127234,50.803476],[-1.130744,50.802916],[-1.133361,50.80291],[-1.134451,50.802126],[-1.137106,50.802291],[-1.134692,50.803815],[-1.135891,50.805091],[-1.134549,50.805623],[-1.133499,50.804585],[-1.131519,50.804401],[-1.129465,50.805117],[-1.12563,50.805422],[-1.123804,50.806161],[-1.125663,50.807599],[-1.128197,50.808902],[-1.133,50.812276],[-1.134216,50.813489],[-1.135049,50.813518],[-1.139111,50.815624],[-1.14041,50.815763],[-1.142003,50.817677],[-1.14258,50.820657],[-1.145767,50.825962],[-1.148983,50.825984],[-1.149149,50.82663],[-1.154111,50.825347],[-1.157174,50.823393],[-1.156882,50.824683],[-1.150283,50.826729],[-1.150906,50.828581],[-1.152437,50.829825],[-1.150354,50.831388],[-1.150188,50.83357],[-1.152511,50.835815],[-1.156439,50.837357],[-1.158521,50.838679],[-1.161099,50.837264],[-1.162598,50.837208],[-1.165152,50.836442],[-1.167231,50.836492],[-1.168794,50.837486],[-1.171003,50.837411],[-1.171548,50.837815],[-1.175094,50.838671],[-1.17619,50.839324],[-1.178974,50.837606],[-1.179437,50.837376],[-1.1795,50.837345],[-1.181664,50.836699],[-1.181371,50.835503],[-1.181972,50.833773],[-1.181734,50.832307],[-1.184262,50.830069],[-1.18366,50.82771],[-1.185894,50.825232],[-1.18568,50.82434],[-1.188029,50.823969],[-1.189234,50.821874],[-1.186318,50.821521],[-1.186286,50.819564],[-1.182312,50.817274],[-1.180927,50.815902],[-1.179393,50.81544],[-1.178844,50.814314],[-1.179596,50.813181],[-1.184753,50.812338],[-1.186811,50.812362],[-1.186999,50.811397],[-1.193929,50.811037],[-1.203843,50.811247],[-1.209895,50.811699],[-1.209883,50.811287],[-1.214147,50.810792],[-1.214186,50.809286]]]},"properties":{"LAD22CD":"E07000088","LAD22NM":"Gosport","BNG_E":458769,"BNG_N":101088,"LONG":-1.16731,"LAT":50.80636,"GlobalID":"b582fb76-db9e-4eed-be79-cd3a2cce2357"},"id":114}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.837349,51.352871],[-0.841123,51.352734],[-0.841846,51.352082],[-0.844579,51.35224],[-0.845849,51.352708],[-0.847702,51.35253],[-0.85009,51.353054],[-0.851406,51.354033],[-0.853597,51.354253],[-0.854209,51.353896],[-0.85744,51.353846],[-0.859115,51.354191],[-0.864766,51.354267],[-0.865809,51.353854],[-0.868103,51.354744],[-0.871719,51.352703],[-0.873234,51.3523],[-0.877856,51.352591],[-0.879171,51.353158],[-0.879332,51.353916],[-0.881782,51.353827],[-0.883001,51.355566],[-0.884527,51.355546],[-0.885853,51.354693],[-0.888148,51.35629],[-0.889652,51.356902],[-0.892753,51.356342],[-0.895374,51.357178],[-0.897174,51.357282],[-0.897455,51.357914],[-0.899767,51.358989],[-0.901492,51.358984],[-0.903613,51.358129],[-0.908934,51.36016],[-0.910062,51.360931],[-0.915122,51.360786],[-0.91781,51.362229],[-0.917623,51.36358],[-0.918303,51.364907],[-0.923767,51.366011],[-0.925058,51.365911],[-0.926967,51.365171],[-0.928512,51.365255],[-0.930695,51.364445],[-0.931905,51.364544],[-0.935737,51.36546],[-0.936675,51.36598],[-0.93705,51.363884],[-0.939154,51.363172],[-0.94138,51.363898],[-0.952242,51.362734],[-0.972364,51.359938],[-0.975503,51.360168],[-0.977423,51.360639],[-0.982708,51.359822],[-0.98674,51.359856],[-0.986711,51.358236],[-0.988299,51.355503],[-0.988785,51.351432],[-0.994628,51.346863],[-0.993845,51.344455],[-0.994604,51.342311],[-0.992315,51.342191],[-0.990737,51.342652],[-0.989506,51.340467],[-0.990154,51.339406],[-0.991674,51.338704],[-0.981929,51.337606],[-0.981002,51.337229],[-0.982162,51.333921],[-0.981865,51.331124],[-0.983481,51.330395],[-0.98382,51.329033],[-0.98311,51.328255],[-0.982573,51.32618],[-0.984984,51.325595],[-0.985338,51.324581],[-0.986836,51.323876],[-0.98708,51.322888],[-0.98659,51.320418],[-0.986826,51.317022],[-0.985431,51.314371],[-0.985258,51.312399],[-0.983888,51.310021],[-0.984275,51.306833],[-0.986435,51.306772],[-0.988961,51.304389],[-0.990609,51.303536],[-0.993342,51.303536],[-0.995655,51.299222],[-0.998417,51.299972],[-1.001217,51.300232],[-1.001074,51.298098],[-1.002278,51.293989],[-1.001057,51.293221],[-1.001259,51.291618],[-1.000221,51.289221],[-0.996383,51.288461],[-0.995692,51.288682],[-0.99214,51.288123],[-0.991085,51.287548],[-0.987986,51.286945],[-0.981727,51.286631],[-0.982397,51.283764],[-0.984167,51.282348],[-0.982127,51.282211],[-0.983088,51.280375],[-0.981466,51.278435],[-0.981481,51.277575],[-0.978043,51.275129],[-0.979519,51.273342],[-0.980115,51.271212],[-0.979751,51.270123],[-0.979856,51.265212],[-0.9808,51.261625],[-0.98263,51.260331],[-0.983167,51.257864],[-0.98417,51.256542],[-0.985799,51.25535],[-0.985393,51.254914],[-0.989751,51.252432],[-0.990162,51.250833],[-0.989066,51.250148],[-0.992143,51.248157],[-0.991014,51.247383],[-0.99258,51.246324],[-0.993708,51.244417],[-0.990764,51.243807],[-0.98766,51.243843],[-0.981987,51.242619],[-0.981002,51.242708],[-0.976765,51.241194],[-0.974796,51.238519],[-0.977205,51.237825],[-0.976239,51.237048],[-0.978313,51.235607],[-0.98311,51.235308],[-0.98314,51.233345],[-0.982195,51.231024],[-0.979895,51.229214],[-0.976961,51.230063],[-0.97605,51.229058],[-0.976097,51.227628],[-0.975475,51.225915],[-0.978683,51.224746],[-0.978933,51.2236],[-0.981362,51.224313],[-0.983282,51.223079],[-0.981651,51.221933],[-0.978101,51.220484],[-0.980363,51.218508],[-0.981692,51.216294],[-0.982722,51.215629],[-0.98416,51.212428],[-0.984267,51.209524],[-0.983479,51.208299],[-0.983043,51.205862],[-0.986275,51.2032],[-0.986414,51.200076],[-0.985312,51.196673],[-0.984732,51.192918],[-0.985883,51.190436],[-0.985289,51.190023],[-0.982157,51.189302],[-0.979834,51.187919],[-0.977104,51.187706],[-0.973821,51.186008],[-0.969307,51.187305],[-0.967203,51.188301],[-0.964959,51.190134],[-0.964245,51.19188],[-0.962018,51.194977],[-0.960859,51.195585],[-0.957192,51.196379],[-0.953828,51.198362],[-0.951176,51.200447],[-0.949058,51.198964],[-0.933177,51.203305],[-0.929912,51.202997],[-0.921048,51.203694],[-0.919538,51.204622],[-0.917485,51.205121],[-0.914886,51.205176],[-0.912051,51.205779],[-0.909178,51.205498],[-0.905612,51.206747],[-0.906638,51.208238],[-0.902985,51.209306],[-0.89451,51.210065],[-0.880887,51.210298],[-0.872039,51.212506],[-0.869052,51.212737],[-0.863334,51.212548],[-0.860821,51.211967],[-0.858789,51.211942],[-0.856802,51.212352],[-0.855527,51.211665],[-0.851121,51.211495],[-0.848912,51.210716],[-0.846807,51.212364],[-0.842516,51.213921],[-0.84011,51.215201],[-0.839567,51.216854],[-0.836138,51.219589],[-0.834634,51.22199],[-0.832104,51.224123],[-0.828975,51.225455],[-0.82847,51.230681],[-0.82799,51.233085],[-0.826609,51.23438],[-0.82369,51.234301],[-0.820864,51.234478],[-0.820778,51.239271],[-0.816255,51.239364],[-0.813658,51.240348],[-0.813433,51.241531],[-0.807569,51.242967],[-0.806212,51.244773],[-0.80475,51.245065],[-0.806476,51.253434],[-0.806129,51.258111],[-0.8044,51.261457],[-0.804749,51.270354],[-0.803417,51.272226],[-0.805179,51.274388],[-0.8072,51.275696],[-0.790292,51.282196],[-0.792099,51.283282],[-0.796393,51.283921],[-0.798041,51.284953],[-0.795949,51.286814],[-0.797562,51.287958],[-0.800117,51.288929],[-0.800972,51.290616],[-0.800907,51.291567],[-0.80204,51.292109],[-0.801599,51.294568],[-0.799469,51.2954],[-0.798451,51.296214],[-0.799934,51.296943],[-0.799506,51.297611],[-0.796874,51.297664],[-0.796655,51.299448],[-0.797323,51.30381],[-0.796569,51.304667],[-0.793175,51.303619],[-0.791398,51.303534],[-0.789116,51.306728],[-0.793038,51.308076],[-0.791545,51.309533],[-0.778651,51.317486],[-0.777328,51.316515],[-0.773296,51.31678],[-0.77119,51.317619],[-0.768407,51.318236],[-0.767806,51.320084],[-0.766487,51.319244],[-0.76387,51.318224],[-0.762903,51.318731],[-0.763052,51.32041],[-0.764399,51.321552],[-0.765064,51.322661],[-0.766062,51.322901],[-0.764991,51.324668],[-0.766343,51.325951],[-0.768203,51.326676],[-0.769207,51.327866],[-0.770651,51.327531],[-0.772221,51.328458],[-0.774655,51.330621],[-0.775466,51.331959],[-0.776588,51.333171],[-0.778003,51.333374],[-0.78014,51.334785],[-0.782782,51.33569],[-0.783324,51.337432],[-0.78708,51.339185],[-0.789063,51.339191],[-0.789978,51.339802],[-0.793186,51.339973],[-0.794929,51.34096],[-0.798315,51.341782],[-0.798902,51.341506],[-0.804152,51.341353],[-0.804681,51.341656],[-0.807036,51.341084],[-0.809468,51.341039],[-0.81408,51.341565],[-0.815098,51.342342],[-0.815383,51.344171],[-0.813957,51.3454],[-0.815777,51.346361],[-0.816119,51.34715],[-0.818769,51.34785],[-0.819049,51.34883],[-0.824797,51.350075],[-0.826389,51.352287],[-0.828125,51.352864],[-0.832055,51.35297],[-0.836026,51.352619],[-0.837349,51.352871]]]},"properties":{"LAD22CD":"E07000089","LAD22NM":"Hart","BNG_E":477985,"BNG_N":154240,"LONG":-0.88321,"LAT":51.28197,"GlobalID":"921339c8-e9b7-491a-a987-a653b9901b29"},"id":115}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.008839,50.826068],[-1.01016,50.826703],[-1.010624,50.823876],[-1.009154,50.822693],[-1.007413,50.82197],[-1.007006,50.823098],[-1.009102,50.823808],[-1.009414,50.82518],[-1.008839,50.826068]]],[[[-1.014196,50.829364],[-1.016892,50.828138],[-1.014917,50.826833],[-1.014093,50.825565],[-1.012647,50.826396],[-1.012637,50.827549],[-1.013417,50.827982],[-1.014196,50.829364]]],[[[-0.967341,50.834843],[-0.970287,50.834661],[-0.971287,50.833887],[-0.971396,50.832705],[-0.973052,50.832213],[-0.974345,50.832776],[-0.97529,50.832136],[-0.977879,50.831601],[-0.979701,50.830342],[-0.980986,50.829964],[-0.982203,50.83061],[-0.983457,50.828405],[-0.986502,50.827176],[-0.986972,50.826072],[-0.98519,50.825216],[-0.986103,50.824016],[-0.983737,50.822074],[-0.983269,50.820733],[-0.984259,50.818987],[-0.985431,50.818727],[-0.985915,50.813614],[-0.986286,50.812881],[-0.988903,50.811036],[-0.989473,50.803575],[-0.99087,50.801763],[-0.992923,50.800472],[-0.994525,50.798367],[-0.996625,50.796893],[-1.000996,50.794615],[-1.003393,50.7941],[-1.007126,50.793874],[-1.00861,50.793225],[-1.009866,50.793689],[-1.015142,50.794332],[-1.017431,50.794975],[-1.017989,50.794328],[-1.016633,50.793066],[-1.01738,50.792331],[-1.020426,50.792922],[-1.022077,50.794051],[-1.021125,50.795618],[-1.02281,50.795505],[-1.025082,50.796025],[-1.025396,50.79542],[-1.024693,50.792772],[-1.023846,50.788068],[-1.022514,50.786522],[-1.019717,50.784627],[-1.016715,50.784427],[-1.011632,50.785385],[-1.007056,50.785492],[-1.001126,50.784559],[-0.978657,50.782705],[-0.970351,50.781474],[-0.958433,50.778788],[-0.946246,50.776771],[-0.942836,50.776532],[-0.938966,50.776919],[-0.936195,50.778451],[-0.935603,50.77911],[-0.936134,50.781635],[-0.93599,50.786217],[-0.937997,50.787433],[-0.940994,50.786944],[-0.939278,50.786141],[-0.938032,50.784891],[-0.937042,50.784782],[-0.936846,50.782806],[-0.937421,50.782441],[-0.939232,50.784324],[-0.941157,50.785137],[-0.943922,50.78452],[-0.948195,50.784261],[-0.948405,50.783614],[-0.950191,50.782942],[-0.953592,50.783211],[-0.955327,50.781861],[-0.95722,50.781764],[-0.955205,50.783758],[-0.951269,50.784203],[-0.951682,50.786712],[-0.952446,50.787651],[-0.95755,50.789843],[-0.958933,50.789276],[-0.960456,50.789399],[-0.962334,50.788187],[-0.96541,50.788481],[-0.966036,50.789295],[-0.963319,50.789297],[-0.961777,50.790193],[-0.959553,50.790898],[-0.958109,50.793343],[-0.955343,50.793789],[-0.955367,50.794553],[-0.956534,50.795251],[-0.956425,50.797044],[-0.956959,50.799312],[-0.954547,50.799705],[-0.952747,50.801119],[-0.955396,50.802845],[-0.956166,50.802981],[-0.957222,50.804295],[-0.958694,50.804733],[-0.959951,50.804548],[-0.961354,50.803473],[-0.964697,50.803397],[-0.96562,50.802669],[-0.967566,50.803004],[-0.969011,50.802745],[-0.969308,50.804515],[-0.9708,50.805755],[-0.97314,50.80707],[-0.972601,50.807518],[-0.97342,50.808527],[-0.972161,50.808808],[-0.970992,50.807222],[-0.969358,50.806395],[-0.965688,50.806365],[-0.962511,50.807798],[-0.96158,50.809214],[-0.965233,50.809763],[-0.966706,50.809496],[-0.967519,50.810016],[-0.96643,50.811219],[-0.965168,50.810991],[-0.961298,50.811369],[-0.960152,50.811024],[-0.958972,50.809633],[-0.958505,50.807766],[-0.956891,50.807987],[-0.956093,50.80978],[-0.956697,50.81241],[-0.954809,50.813546],[-0.957578,50.815836],[-0.954714,50.816646],[-0.95543,50.817586],[-0.954513,50.818731],[-0.954482,50.819763],[-0.953641,50.820781],[-0.951719,50.821811],[-0.95099,50.823947],[-0.952047,50.825918],[-0.952158,50.827851],[-0.95386,50.829213],[-0.957189,50.830709],[-0.957227,50.831301],[-0.959012,50.831453],[-0.959746,50.830398],[-0.962193,50.830968],[-0.96309,50.832764],[-0.964199,50.831525],[-0.968443,50.830669],[-0.967121,50.834444],[-0.967341,50.834843]]],[[[-1.005241,50.834583],[-1.00814,50.834588],[-1.008899,50.833329],[-1.006706,50.832973],[-1.006922,50.83217],[-1.003732,50.831139],[-1.003162,50.829818],[-1.001836,50.830495],[-1.003134,50.831275],[-1.005241,50.834583]]],[[[-1.019159,50.838214],[-1.021618,50.836864],[-1.021247,50.835327],[-1.020235,50.835419],[-1.01706,50.836867],[-1.01555,50.836869],[-1.014382,50.835651],[-1.010422,50.834845],[-1.007777,50.835417],[-1.009003,50.83608],[-1.014999,50.837545],[-1.017357,50.837575],[-1.019159,50.838214]]],[[[-0.938608,50.873721],[-0.943339,50.872485],[-0.953546,50.868193],[-0.955728,50.868231],[-0.958009,50.867705],[-0.960847,50.867654],[-0.963385,50.867254],[-0.960443,50.872184],[-0.963199,50.872972],[-0.968013,50.87344],[-0.96691,50.875016],[-0.968955,50.875658],[-0.968256,50.877711],[-0.969891,50.878028],[-0.971692,50.877863],[-0.97257,50.878659],[-0.974246,50.878024],[-0.975838,50.878023],[-0.976503,50.879152],[-0.978714,50.878307],[-0.985444,50.885001],[-0.992336,50.891667],[-0.995759,50.893036],[-0.997294,50.89464],[-0.998768,50.895401],[-1.002738,50.895718],[-1.004707,50.896546],[-1.00148,50.899476],[-1.007268,50.901969],[-1.007779,50.902539],[-1.011133,50.90377],[-1.012009,50.902495],[-1.015203,50.90339],[-1.01849,50.903835],[-1.019385,50.90499],[-1.01869,50.90807],[-1.018733,50.909055],[-1.021655,50.909647],[-1.024528,50.909463],[-1.02555,50.909083],[-1.02386,50.90616],[-1.028441,50.905782],[-1.029265,50.904656],[-1.032166,50.90478],[-1.034052,50.905278],[-1.034116,50.904163],[-1.033895,50.90221],[-1.037983,50.901492],[-1.042474,50.895911],[-1.049131,50.891466],[-1.045119,50.889036],[-1.046821,50.887559],[-1.045273,50.884636],[-1.044275,50.884332],[-1.044496,50.883343],[-1.041924,50.882591],[-1.036599,50.88227],[-1.035022,50.88063],[-1.037896,50.880201],[-1.03939,50.877687],[-1.041419,50.877925],[-1.042414,50.875252],[-1.043075,50.875],[-1.044177,50.873245],[-1.046493,50.874099],[-1.0476,50.872385],[-1.047794,50.87109],[-1.045697,50.870579],[-1.04555,50.869268],[-1.04644,50.866913],[-1.047381,50.86575],[-1.054617,50.867449],[-1.054768,50.866391],[-1.053524,50.866384],[-1.054024,50.86501],[-1.048892,50.865457],[-1.048814,50.863066],[-1.050399,50.859633],[-1.052552,50.860176],[-1.054075,50.856538],[-1.052248,50.856514],[-1.049768,50.85527],[-1.046796,50.855056],[-1.046971,50.853926],[-1.037544,50.852944],[-1.023105,50.852773],[-1.022629,50.852073],[-1.02252,50.850383],[-1.02452,50.84979],[-1.02385,50.847923],[-1.025138,50.847721],[-1.024821,50.845947],[-1.023441,50.846048],[-1.022352,50.841815],[-1.020634,50.839073],[-1.021858,50.8413],[-1.019372,50.842025],[-1.020614,50.842994],[-1.016564,50.843553],[-1.013107,50.844383],[-1.003903,50.842799],[-1.002623,50.843132],[-1.001751,50.844174],[-0.998516,50.842197],[-0.997312,50.840569],[-0.995664,50.839799],[-0.989569,50.837671],[-0.987163,50.837409],[-0.983674,50.838304],[-0.98229,50.837557],[-0.980672,50.8357],[-0.978994,50.835933],[-0.980352,50.837112],[-0.979869,50.838882],[-0.978224,50.839623],[-0.977119,50.841313],[-0.974512,50.842186],[-0.971045,50.842157],[-0.968369,50.841483],[-0.965784,50.840325],[-0.963339,50.840726],[-0.95898,50.839244],[-0.95569,50.839853],[-0.955805,50.841126],[-0.950795,50.842884],[-0.948175,50.84263],[-0.946126,50.842709],[-0.943599,50.842264],[-0.93756,50.842399],[-0.937477,50.844433],[-0.9351,50.844408],[-0.932072,50.843695],[-0.932239,50.845608],[-0.932388,50.846745],[-0.933566,50.847556],[-0.934427,50.849672],[-0.933727,50.851839],[-0.932829,50.852066],[-0.932762,50.85391],[-0.933446,50.854793],[-0.932033,50.855668],[-0.93123,50.857233],[-0.929792,50.858528],[-0.928248,50.86153],[-0.928124,50.862675],[-0.92645,50.864092],[-0.927041,50.865028],[-0.929223,50.86611],[-0.929367,50.866768],[-0.931932,50.868424],[-0.93507,50.868936],[-0.936938,50.870068],[-0.938727,50.872567],[-0.938608,50.873721]]]]},"properties":{"LAD22CD":"E07000090","LAD22NM":"Havant","BNG_E":470178,"BNG_N":108564,"LONG":-1.00398,"LAT":50.87231,"GlobalID":"405d6d9d-b8da-4007-8420-85744eda3059"},"id":116}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.379875,50.780261],[-1.379844,50.780763],[-1.384689,50.780192],[-1.390695,50.7785],[-1.390233,50.777701],[-1.388399,50.777748],[-1.386928,50.777338],[-1.384573,50.778546],[-1.382389,50.778849],[-1.379875,50.780261]]],[[[-1.481698,50.930291],[-1.481343,50.929673],[-1.481273,50.929661],[-1.480913,50.929705],[-1.480833,50.929573],[-1.481602,50.928925],[-1.480884,50.928384],[-1.482013,50.927931],[-1.480632,50.927184],[-1.478979,50.927338],[-1.478654,50.92581],[-1.475825,50.927987],[-1.476325,50.928292],[-1.476623,50.928343],[-1.478168,50.928843],[-1.480355,50.929104],[-1.480513,50.930386],[-1.481698,50.930291]]],[[[-1.692536,50.737398],[-1.689291,50.737481],[-1.680479,50.736578],[-1.670703,50.735104],[-1.670393,50.73536],[-1.662155,50.734538],[-1.658189,50.734307],[-1.654921,50.733522],[-1.652658,50.733575],[-1.650271,50.733031],[-1.647018,50.733325],[-1.641915,50.731924],[-1.640247,50.73207],[-1.630131,50.729434],[-1.600882,50.722874],[-1.597622,50.722252],[-1.592423,50.720975],[-1.584401,50.719173],[-1.580603,50.717687],[-1.577386,50.715315],[-1.576232,50.715325],[-1.565056,50.708864],[-1.55445,50.706078],[-1.550475,50.706305],[-1.549272,50.707613],[-1.552808,50.711535],[-1.553747,50.710679],[-1.553856,50.708573],[-1.552588,50.707842],[-1.551882,50.706779],[-1.553807,50.706771],[-1.556285,50.709305],[-1.557944,50.707493],[-1.558982,50.708162],[-1.560951,50.708277],[-1.562567,50.709159],[-1.564015,50.7094],[-1.566941,50.71045],[-1.571331,50.712992],[-1.574167,50.715068],[-1.576846,50.716495],[-1.570886,50.718237],[-1.564902,50.720999],[-1.566068,50.721891],[-1.56449,50.723033],[-1.563637,50.722056],[-1.561888,50.721257],[-1.560314,50.720985],[-1.555518,50.722257],[-1.554504,50.723327],[-1.554596,50.72406],[-1.552406,50.727433],[-1.549892,50.728538],[-1.546853,50.728393],[-1.545465,50.727075],[-1.543216,50.72809],[-1.540596,50.729793],[-1.535542,50.73423],[-1.533289,50.734967],[-1.530943,50.737035],[-1.530977,50.738349],[-1.531824,50.739342],[-1.531271,50.740349],[-1.533299,50.741417],[-1.534773,50.741047],[-1.53524,50.741827],[-1.536996,50.742243],[-1.536873,50.743023],[-1.534881,50.744846],[-1.533701,50.74379],[-1.532558,50.744276],[-1.53065,50.742432],[-1.525925,50.744568],[-1.526588,50.745115],[-1.527059,50.747132],[-1.525288,50.748868],[-1.52634,50.749832],[-1.52722,50.749694],[-1.529604,50.751073],[-1.527532,50.753181],[-1.52848,50.75456],[-1.533758,50.757933],[-1.535346,50.758271],[-1.536969,50.759813],[-1.53501,50.761468],[-1.535823,50.762254],[-1.537617,50.762659],[-1.534972,50.763891],[-1.533571,50.762649],[-1.533479,50.761452],[-1.534348,50.75912],[-1.530942,50.759122],[-1.530049,50.758573],[-1.528946,50.757041],[-1.528321,50.75858],[-1.527602,50.758535],[-1.526742,50.757125],[-1.52117,50.755172],[-1.519592,50.754125],[-1.51858,50.754165],[-1.51378,50.753259],[-1.510157,50.753955],[-1.502151,50.753975],[-1.498209,50.754559],[-1.495606,50.755267],[-1.490263,50.755317],[-1.489694,50.755659],[-1.48707,50.755478],[-1.483566,50.755948],[-1.480234,50.757438],[-1.476321,50.75843],[-1.473239,50.758547],[-1.470888,50.758979],[-1.469484,50.759589],[-1.467508,50.759866],[-1.465094,50.760895],[-1.466158,50.76207],[-1.465297,50.763136],[-1.4659,50.76428],[-1.464859,50.764835],[-1.462874,50.762781],[-1.463083,50.761237],[-1.461392,50.761081],[-1.456258,50.762241],[-1.449291,50.762508],[-1.447026,50.762339],[-1.443709,50.762989],[-1.442119,50.763845],[-1.438815,50.764503],[-1.429113,50.765455],[-1.426171,50.766283],[-1.419145,50.766473],[-1.415526,50.767258],[-1.401924,50.772341],[-1.404348,50.771851],[-1.405257,50.772213],[-1.406834,50.770948],[-1.409493,50.769691],[-1.410181,50.770132],[-1.407762,50.771042],[-1.406952,50.772375],[-1.40175,50.774715],[-1.397707,50.775951],[-1.393009,50.777041],[-1.395026,50.77728],[-1.398055,50.776298],[-1.398892,50.777438],[-1.405844,50.780869],[-1.406588,50.781607],[-1.410024,50.782555],[-1.412994,50.783972],[-1.413186,50.78582],[-1.413985,50.787213],[-1.412017,50.788996],[-1.411739,50.789926],[-1.409861,50.791238],[-1.410412,50.792464],[-1.411386,50.792407],[-1.412617,50.794393],[-1.411943,50.794621],[-1.411479,50.797054],[-1.411714,50.798818],[-1.412286,50.800072],[-1.413585,50.800176],[-1.416555,50.799131],[-1.419064,50.799031],[-1.42291,50.799964],[-1.423906,50.801938],[-1.420506,50.805242],[-1.422073,50.805809],[-1.424833,50.805269],[-1.426123,50.805509],[-1.428425,50.806753],[-1.43009,50.809259],[-1.431235,50.809242],[-1.43366,50.808484],[-1.435283,50.808417],[-1.439103,50.810587],[-1.439847,50.811536],[-1.439306,50.813929],[-1.440427,50.814426],[-1.442571,50.814276],[-1.445537,50.81467],[-1.446824,50.815813],[-1.446417,50.817774],[-1.447056,50.818621],[-1.451209,50.81918],[-1.448622,50.820177],[-1.445234,50.819353],[-1.44458,50.818885],[-1.44469,50.816362],[-1.442423,50.815537],[-1.440626,50.8157],[-1.438141,50.815423],[-1.437364,50.81355],[-1.438502,50.812094],[-1.438349,50.811456],[-1.436016,50.809919],[-1.431274,50.811054],[-1.429339,50.810834],[-1.427135,50.809397],[-1.426426,50.807567],[-1.422804,50.808202],[-1.421849,50.807457],[-1.41912,50.807025],[-1.417435,50.805593],[-1.417252,50.804877],[-1.418087,50.803263],[-1.420676,50.801701],[-1.419088,50.801651],[-1.417429,50.802104],[-1.415904,50.80328],[-1.413661,50.803604],[-1.413535,50.802771],[-1.412003,50.802704],[-1.411333,50.801671],[-1.409813,50.800565],[-1.409546,50.7954],[-1.407393,50.793045],[-1.406477,50.791301],[-1.406945,50.790753],[-1.40655,50.789125],[-1.408726,50.786684],[-1.407468,50.785877],[-1.403976,50.784704],[-1.398333,50.784159],[-1.392646,50.785757],[-1.388243,50.785961],[-1.382074,50.785013],[-1.379317,50.785482],[-1.375871,50.785149],[-1.368608,50.785286],[-1.359291,50.784374],[-1.358196,50.78453],[-1.354046,50.78385],[-1.352571,50.784015],[-1.350143,50.785049],[-1.346268,50.785073],[-1.341921,50.785995],[-1.340244,50.788003],[-1.336595,50.79383],[-1.332923,50.796892],[-1.327611,50.803124],[-1.320378,50.808039],[-1.31212,50.812143],[-1.308498,50.814895],[-1.307577,50.816134],[-1.307016,50.819908],[-1.308558,50.820301],[-1.30983,50.81969],[-1.309671,50.818733],[-1.308313,50.816861],[-1.309729,50.814581],[-1.311475,50.813429],[-1.313399,50.814609],[-1.312642,50.815331],[-1.313997,50.816268],[-1.314586,50.815348],[-1.317333,50.817186],[-1.320368,50.817208],[-1.320752,50.817945],[-1.324102,50.818],[-1.324063,50.819072],[-1.3227,50.820451],[-1.320953,50.8211],[-1.322505,50.822328],[-1.323622,50.823682],[-1.323459,50.824304],[-1.32464,50.825307],[-1.327967,50.824379],[-1.328406,50.823908],[-1.330913,50.825736],[-1.335378,50.826783],[-1.337115,50.827807],[-1.337998,50.827039],[-1.339417,50.826643],[-1.338166,50.829262],[-1.339506,50.831558],[-1.340476,50.832368],[-1.339895,50.833054],[-1.34012,50.834433],[-1.338837,50.834807],[-1.339715,50.835702],[-1.338211,50.83652],[-1.334899,50.837318],[-1.335741,50.83813],[-1.337341,50.838709],[-1.338146,50.840625],[-1.339428,50.841208],[-1.34027,50.842691],[-1.342061,50.843385],[-1.34242,50.843994],[-1.345912,50.845503],[-1.348001,50.845675],[-1.350401,50.846533],[-1.351709,50.846493],[-1.354161,50.845523],[-1.355776,50.845587],[-1.357754,50.845214],[-1.3581,50.84418],[-1.359224,50.842927],[-1.360563,50.842873],[-1.3612,50.843532],[-1.359872,50.84504],[-1.360747,50.845453],[-1.360786,50.846904],[-1.359968,50.84775],[-1.359714,50.849064],[-1.358268,50.849309],[-1.359861,50.850307],[-1.362646,50.850668],[-1.363124,50.849622],[-1.364719,50.850136],[-1.363746,50.851706],[-1.365842,50.851109],[-1.365741,50.852219],[-1.36898,50.853499],[-1.370608,50.853447],[-1.371043,50.85404],[-1.373933,50.854343],[-1.37609,50.854176],[-1.373809,50.855612],[-1.373644,50.857034],[-1.374434,50.857564],[-1.376552,50.857995],[-1.377483,50.857711],[-1.378222,50.859211],[-1.379663,50.858679],[-1.381,50.86048],[-1.383094,50.86256],[-1.38456,50.862693],[-1.385046,50.863435],[-1.386632,50.864204],[-1.388226,50.864282],[-1.388449,50.865159],[-1.389867,50.865793],[-1.38903,50.866652],[-1.389947,50.867287],[-1.391442,50.866867],[-1.392847,50.869677],[-1.394511,50.868754],[-1.395709,50.86909],[-1.398689,50.870944],[-1.400755,50.871912],[-1.397493,50.874697],[-1.407322,50.879703],[-1.420068,50.890898],[-1.424163,50.894548],[-1.424863,50.894786],[-1.426645,50.89676],[-1.428837,50.896836],[-1.429538,50.897721],[-1.441567,50.90172],[-1.441996,50.90204],[-1.446983,50.901518],[-1.449499,50.901618],[-1.45236,50.900296],[-1.451954,50.901459],[-1.45324,50.901823],[-1.456068,50.901015],[-1.459089,50.900677],[-1.461713,50.902128],[-1.462403,50.90359],[-1.464309,50.90338],[-1.466045,50.903973],[-1.467223,50.905825],[-1.471249,50.907012],[-1.473669,50.909293],[-1.478258,50.911936],[-1.479749,50.911531],[-1.481588,50.910105],[-1.48225,50.910929],[-1.481343,50.911774],[-1.478383,50.912546],[-1.479506,50.91557],[-1.478071,50.916155],[-1.476879,50.914345],[-1.474863,50.913121],[-1.473443,50.91481],[-1.47466,50.915263],[-1.474307,50.916123],[-1.475299,50.916583],[-1.477215,50.915759],[-1.477718,50.91766],[-1.478639,50.919198],[-1.476735,50.920753],[-1.478439,50.921316],[-1.478494,50.923446],[-1.481351,50.925535],[-1.480573,50.927057],[-1.482128,50.927817],[-1.482004,50.928221],[-1.482816,50.92828],[-1.484714,50.930021],[-1.485855,50.929928],[-1.486119,50.931086],[-1.485677,50.932276],[-1.485829,50.932955],[-1.487477,50.932973],[-1.489679,50.934493],[-1.490578,50.933491],[-1.492476,50.933913],[-1.493481,50.934912],[-1.497347,50.935081],[-1.500267,50.934525],[-1.50135,50.935628],[-1.503077,50.936193],[-1.504342,50.938404],[-1.507699,50.940696],[-1.507857,50.943753],[-1.507348,50.9444],[-1.508285,50.945802],[-1.507703,50.946745],[-1.509663,50.94757],[-1.510394,50.948298],[-1.509693,50.949752],[-1.512732,50.950922],[-1.515114,50.950406],[-1.516156,50.951523],[-1.517042,50.951425],[-1.519388,50.952086],[-1.521541,50.952227],[-1.522727,50.951369],[-1.529102,50.950362],[-1.531928,50.952129],[-1.532288,50.952996],[-1.533564,50.953297],[-1.534439,50.954609],[-1.533207,50.956616],[-1.534008,50.957184],[-1.533598,50.958019],[-1.534271,50.959063],[-1.535669,50.960005],[-1.537963,50.960347],[-1.539563,50.961545],[-1.540607,50.963897],[-1.541563,50.964454],[-1.540737,50.965517],[-1.542103,50.968168],[-1.543414,50.968244],[-1.544532,50.969281],[-1.547613,50.967821],[-1.55269,50.967526],[-1.556847,50.965501],[-1.561146,50.964962],[-1.561686,50.965916],[-1.575682,50.960776],[-1.584075,50.962118],[-1.584233,50.959065],[-1.585223,50.957737],[-1.586338,50.957422],[-1.586886,50.954776],[-1.588483,50.953539],[-1.590083,50.951264],[-1.590902,50.953348],[-1.595573,50.953751],[-1.596496,50.956072],[-1.607746,50.954962],[-1.612782,50.958098],[-1.619751,50.958567],[-1.623399,50.954637],[-1.628491,50.957125],[-1.634965,50.959242],[-1.640378,50.955447],[-1.641098,50.953161],[-1.641715,50.952496],[-1.646376,50.949465],[-1.649648,50.948506],[-1.65185,50.94717],[-1.66166,50.945278],[-1.6673,50.94703],[-1.669182,50.947233],[-1.676882,50.949667],[-1.685712,50.952919],[-1.689299,50.954637],[-1.701027,50.962725],[-1.709634,50.97123],[-1.716505,50.974174],[-1.719618,50.97678],[-1.724021,50.97695],[-1.726188,50.977344],[-1.729899,50.977313],[-1.733715,50.976438],[-1.739805,50.976617],[-1.742946,50.977114],[-1.743935,50.977822],[-1.747102,50.977941],[-1.754402,50.977892],[-1.75432,50.980448],[-1.765638,50.982938],[-1.76984,50.983495],[-1.769986,50.983828],[-1.775355,50.984712],[-1.775611,50.985161],[-1.783834,50.986899],[-1.787946,50.988145],[-1.790952,50.990086],[-1.796013,50.9902],[-1.800314,50.991395],[-1.805671,50.99163],[-1.807584,50.992045],[-1.815422,50.985923],[-1.819856,50.990258],[-1.821545,50.992991],[-1.827413,50.997273],[-1.835813,51.009422],[-1.842272,51.008468],[-1.852804,51.005028],[-1.85368,51.004469],[-1.855891,51.001583],[-1.862049,50.996641],[-1.866828,50.990822],[-1.869338,50.988912],[-1.873984,50.984441],[-1.874237,50.987684],[-1.8751,50.991736],[-1.874633,50.995852],[-1.874649,51.003566],[-1.875431,51.004699],[-1.879231,51.003948],[-1.883309,51.002172],[-1.885281,51.00025],[-1.886742,50.999528],[-1.888795,50.999969],[-1.891573,50.999444],[-1.892467,50.999618],[-1.895343,50.999231],[-1.898017,50.998623],[-1.903298,50.999339],[-1.912308,50.999356],[-1.920335,50.997423],[-1.923743,50.997318],[-1.927876,50.997697],[-1.935528,50.992757],[-1.936576,50.991518],[-1.949936,50.982311],[-1.953926,50.988071],[-1.956825,50.989832],[-1.957225,50.983195],[-1.955466,50.978266],[-1.952521,50.978583],[-1.950798,50.97813],[-1.948133,50.976475],[-1.94483,50.975748],[-1.942079,50.973363],[-1.941258,50.971826],[-1.93922,50.969657],[-1.934864,50.969093],[-1.929889,50.967796],[-1.928685,50.966293],[-1.928402,50.964988],[-1.927184,50.963595],[-1.923923,50.962723],[-1.920986,50.961495],[-1.918741,50.956366],[-1.916106,50.953131],[-1.912484,50.952198],[-1.912443,50.951016],[-1.910577,50.949223],[-1.909184,50.945327],[-1.905382,50.943084],[-1.9026,50.940726],[-1.899087,50.938392],[-1.898567,50.935878],[-1.8969,50.934396],[-1.892554,50.931624],[-1.881579,50.926377],[-1.880382,50.924935],[-1.877871,50.923105],[-1.876118,50.920585],[-1.875008,50.919797],[-1.873644,50.917226],[-1.864632,50.918923],[-1.859905,50.921304],[-1.859093,50.922374],[-1.857466,50.923152],[-1.855748,50.924983],[-1.855958,50.926458],[-1.851057,50.928835],[-1.847146,50.929669],[-1.84605,50.93028],[-1.842659,50.93096],[-1.842014,50.93162],[-1.84032,50.931883],[-1.83875,50.930803],[-1.83539,50.930057],[-1.83538,50.929571],[-1.832623,50.929199],[-1.829741,50.927573],[-1.828272,50.927768],[-1.826301,50.92687],[-1.823599,50.926763],[-1.820748,50.926299],[-1.817465,50.92716],[-1.813927,50.927049],[-1.812784,50.92752],[-1.810658,50.927203],[-1.810793,50.926526],[-1.812604,50.925382],[-1.814774,50.923132],[-1.814467,50.922882],[-1.815034,50.920584],[-1.817481,50.917608],[-1.818844,50.916526],[-1.818611,50.914546],[-1.819159,50.9127],[-1.820407,50.912106],[-1.817569,50.907465],[-1.817273,50.905429],[-1.816542,50.903948],[-1.823899,50.898226],[-1.824953,50.895771],[-1.825576,50.896167],[-1.831474,50.897391],[-1.837239,50.897198],[-1.83987,50.89789],[-1.841707,50.89702],[-1.84489,50.893168],[-1.848556,50.889887],[-1.845099,50.888251],[-1.844043,50.886829],[-1.844491,50.885297],[-1.847492,50.883408],[-1.847977,50.882339],[-1.847711,50.880878],[-1.846122,50.87942],[-1.845272,50.877998],[-1.84848,50.873778],[-1.847832,50.869686],[-1.853539,50.866505],[-1.851665,50.864223],[-1.853539,50.86346],[-1.853209,50.862673],[-1.850564,50.860298],[-1.850944,50.858725],[-1.84602,50.858137],[-1.841632,50.858043],[-1.829519,50.855319],[-1.821236,50.856772],[-1.814833,50.858701],[-1.814746,50.862052],[-1.812924,50.862332],[-1.81375,50.863381],[-1.81279,50.864573],[-1.810958,50.864335],[-1.808028,50.86446],[-1.806413,50.861498],[-1.807175,50.860138],[-1.805087,50.85901],[-1.805435,50.857636],[-1.804003,50.856476],[-1.804756,50.854781],[-1.803247,50.853761],[-1.803911,50.853251],[-1.805839,50.853071],[-1.804805,50.851154],[-1.802884,50.850661],[-1.80237,50.849543],[-1.799943,50.848449],[-1.800219,50.84724],[-1.802745,50.845418],[-1.803359,50.844477],[-1.801873,50.84242],[-1.798077,50.841987],[-1.796996,50.841092],[-1.798669,50.840817],[-1.800323,50.841043],[-1.800006,50.839988],[-1.798565,50.838852],[-1.796789,50.838155],[-1.794545,50.837724],[-1.794406,50.836801],[-1.792941,50.83659],[-1.791392,50.836957],[-1.790615,50.836314],[-1.791628,50.835336],[-1.792067,50.833588],[-1.795502,50.833878],[-1.796655,50.833221],[-1.795771,50.831822],[-1.794118,50.831518],[-1.797145,50.830021],[-1.798954,50.831388],[-1.800563,50.831498],[-1.802928,50.830741],[-1.803635,50.830024],[-1.804624,50.82703],[-1.803239,50.825246],[-1.80458,50.82471],[-1.804846,50.823714],[-1.804039,50.82196],[-1.801669,50.822236],[-1.802048,50.820611],[-1.804026,50.819984],[-1.805258,50.818362],[-1.806593,50.817831],[-1.807274,50.8163],[-1.806425,50.815012],[-1.803492,50.814053],[-1.802874,50.813512],[-1.805733,50.811627],[-1.806761,50.810466],[-1.809939,50.80977],[-1.810539,50.808893],[-1.811832,50.80873],[-1.811664,50.806076],[-1.810576,50.805902],[-1.809736,50.804957],[-1.806964,50.803506],[-1.804282,50.803578],[-1.804007,50.802589],[-1.804795,50.800989],[-1.804034,50.799988],[-1.802349,50.800319],[-1.801374,50.799714],[-1.801933,50.798945],[-1.803492,50.798529],[-1.803443,50.797559],[-1.802156,50.796897],[-1.803905,50.795965],[-1.803957,50.794818],[-1.801445,50.794616],[-1.800868,50.794118],[-1.803564,50.792964],[-1.803513,50.791946],[-1.805605,50.792525],[-1.805967,50.792021],[-1.804266,50.791371],[-1.800965,50.791885],[-1.801255,50.791117],[-1.802616,50.790809],[-1.800804,50.787421],[-1.798588,50.785853],[-1.796215,50.786354],[-1.795836,50.785455],[-1.797321,50.78452],[-1.797523,50.783836],[-1.795716,50.783358],[-1.794345,50.782209],[-1.792124,50.782666],[-1.790981,50.780332],[-1.787868,50.778855],[-1.788729,50.776943],[-1.790749,50.776213],[-1.789957,50.774559],[-1.788166,50.77449],[-1.789543,50.772233],[-1.7905,50.771658],[-1.789558,50.769947],[-1.787243,50.770491],[-1.788834,50.767833],[-1.788277,50.766869],[-1.78501,50.764951],[-1.783425,50.764649],[-1.782254,50.765021],[-1.781277,50.766669],[-1.779048,50.767366],[-1.776065,50.766353],[-1.7756,50.766992],[-1.773162,50.76819],[-1.768882,50.769783],[-1.769936,50.771316],[-1.770118,50.772549],[-1.768021,50.773305],[-1.767576,50.772912],[-1.756558,50.77842],[-1.752077,50.778846],[-1.749059,50.77951],[-1.74569,50.776256],[-1.74829,50.775141],[-1.746387,50.773404],[-1.744786,50.773117],[-1.741241,50.767207],[-1.73968,50.765348],[-1.73896,50.763271],[-1.739877,50.762773],[-1.740118,50.760964],[-1.741684,50.760339],[-1.741414,50.758687],[-1.742016,50.756668],[-1.744656,50.756073],[-1.744354,50.753608],[-1.743597,50.752715],[-1.743574,50.750008],[-1.742333,50.749249],[-1.744169,50.747455],[-1.727035,50.751015],[-1.71797,50.75217],[-1.714985,50.752026],[-1.712704,50.752495],[-1.703921,50.752562],[-1.690614,50.751606],[-1.681819,50.751848],[-1.681675,50.750151],[-1.682806,50.746611],[-1.684636,50.743822],[-1.690821,50.740604],[-1.691978,50.739412],[-1.692536,50.737398]]]]},"properties":{"LAD22CD":"E07000091","LAD22NM":"New Forest","BNG_E":428748,"BNG_N":106521,"LONG":-1.59293,"LAT":50.85748,"GlobalID":"179a6e4c-a470-420e-8073-4036da7b8d60"},"id":117}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.762903,51.318731],[-0.76387,51.318224],[-0.766487,51.319244],[-0.767806,51.320084],[-0.768407,51.318236],[-0.77119,51.317619],[-0.773296,51.31678],[-0.777328,51.316515],[-0.778651,51.317486],[-0.791545,51.309533],[-0.793038,51.308076],[-0.789116,51.306728],[-0.791398,51.303534],[-0.793175,51.303619],[-0.796569,51.304667],[-0.797323,51.30381],[-0.796655,51.299448],[-0.796874,51.297664],[-0.799506,51.297611],[-0.799934,51.296943],[-0.798451,51.296214],[-0.799469,51.2954],[-0.801599,51.294568],[-0.80204,51.292109],[-0.800907,51.291567],[-0.800972,51.290616],[-0.800117,51.288929],[-0.797562,51.287958],[-0.795949,51.286814],[-0.798041,51.284953],[-0.796393,51.283921],[-0.792099,51.283282],[-0.790292,51.282196],[-0.8072,51.275696],[-0.805179,51.274388],[-0.803417,51.272226],[-0.804749,51.270354],[-0.8044,51.261457],[-0.806129,51.258111],[-0.806476,51.253434],[-0.80475,51.245065],[-0.803458,51.241511],[-0.80174,51.239039],[-0.797187,51.239621],[-0.793047,51.241617],[-0.790231,51.242416],[-0.786901,51.241865],[-0.784424,51.242005],[-0.781929,51.241671],[-0.777894,51.24214],[-0.775857,51.24191],[-0.771472,51.238996],[-0.771363,51.238035],[-0.769728,51.236442],[-0.761176,51.234893],[-0.758721,51.233881],[-0.7521,51.23199],[-0.750255,51.231012],[-0.745541,51.230456],[-0.743838,51.230617],[-0.741758,51.231334],[-0.739189,51.233481],[-0.738849,51.235497],[-0.735786,51.23768],[-0.736528,51.238961],[-0.738183,51.240125],[-0.738498,51.241118],[-0.737387,51.242406],[-0.736528,51.245091],[-0.735204,51.245588],[-0.734682,51.246585],[-0.735864,51.248498],[-0.735741,51.249403],[-0.734464,51.25059],[-0.732814,51.250882],[-0.730696,51.251956],[-0.731155,51.253474],[-0.730535,51.255354],[-0.729396,51.256421],[-0.730399,51.257378],[-0.732437,51.25766],[-0.733705,51.260127],[-0.733231,51.261161],[-0.731991,51.262134],[-0.732669,51.263628],[-0.731562,51.264276],[-0.731246,51.265979],[-0.731486,51.268304],[-0.730138,51.269973],[-0.730359,51.271507],[-0.731154,51.272436],[-0.730414,51.273461],[-0.731553,51.27448],[-0.732313,51.276451],[-0.73307,51.276761],[-0.732941,51.279168],[-0.731094,51.280362],[-0.731213,51.281362],[-0.733349,51.281791],[-0.733394,51.283401],[-0.735129,51.285433],[-0.736363,51.287526],[-0.73609,51.288353],[-0.737231,51.289674],[-0.736688,51.292424],[-0.738238,51.292897],[-0.739347,51.294026],[-0.739307,51.295125],[-0.739974,51.296127],[-0.739811,51.298658],[-0.739223,51.299915],[-0.739393,51.301355],[-0.741606,51.303688],[-0.742322,51.305538],[-0.743571,51.305715],[-0.74359,51.307456],[-0.744424,51.308233],[-0.744167,51.309295],[-0.74639,51.310619],[-0.747369,51.310439],[-0.748639,51.31163],[-0.749624,51.311447],[-0.751268,51.312561],[-0.753573,51.312795],[-0.755584,51.313509],[-0.756448,51.314667],[-0.758291,51.315925],[-0.759249,51.317162],[-0.761072,51.316944],[-0.762312,51.317465],[-0.762903,51.318731]]]},"properties":{"LAD22CD":"E07000092","LAD22NM":"Rushmoor","BNG_E":486022,"BNG_N":153944,"LONG":-0.76807,"LAT":51.27815,"GlobalID":"467ba266-204e-40f9-bedb-c02e3582e13e"},"id":118}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.481064,50.929625],[-1.481464,50.929557],[-1.483455,50.93016],[-1.483588,50.931975],[-1.485677,50.932276],[-1.486119,50.931086],[-1.485855,50.929928],[-1.484714,50.930021],[-1.482816,50.92828],[-1.482004,50.928221],[-1.481208,50.928453],[-1.481783,50.928548],[-1.482298,50.928946],[-1.481938,50.928898],[-1.480952,50.929605],[-1.481064,50.929625]]],[[[-1.498299,51.329376],[-1.499763,51.330336],[-1.502166,51.331083],[-1.509312,51.334346],[-1.511421,51.334993],[-1.512589,51.336138],[-1.514139,51.337006],[-1.516282,51.339355],[-1.51682,51.338959],[-1.521276,51.338436],[-1.522683,51.338637],[-1.526635,51.338304],[-1.527507,51.338466],[-1.528464,51.334075],[-1.527118,51.33158],[-1.528848,51.330197],[-1.531079,51.329194],[-1.531881,51.328128],[-1.532535,51.320606],[-1.533562,51.316224],[-1.530037,51.315008],[-1.527758,51.31289],[-1.526971,51.311404],[-1.527102,51.30828],[-1.525225,51.307067],[-1.526464,51.3048],[-1.526289,51.303756],[-1.528023,51.299808],[-1.525826,51.299204],[-1.526463,51.297664],[-1.525491,51.297155],[-1.52266,51.297142],[-1.521281,51.297586],[-1.519812,51.2969],[-1.519906,51.295316],[-1.522828,51.294102],[-1.524147,51.293161],[-1.522751,51.290056],[-1.522808,51.287058],[-1.528883,51.286478],[-1.531427,51.286554],[-1.534511,51.287092],[-1.536671,51.285239],[-1.542584,51.281251],[-1.542754,51.280174],[-1.5368,51.278233],[-1.535917,51.277304],[-1.536886,51.276762],[-1.537463,51.273819],[-1.537094,51.273709],[-1.537119,51.270762],[-1.53911,51.267086],[-1.540513,51.260833],[-1.537348,51.260886],[-1.536444,51.2618],[-1.534368,51.261808],[-1.53057,51.262617],[-1.52982,51.260514],[-1.531278,51.257671],[-1.531235,51.255436],[-1.532997,51.25341],[-1.535955,51.248619],[-1.539715,51.247365],[-1.541972,51.245973],[-1.544266,51.245054],[-1.545886,51.245241],[-1.548915,51.248019],[-1.551195,51.248826],[-1.556883,51.249211],[-1.562826,51.251939],[-1.566961,51.252979],[-1.572397,51.254929],[-1.574007,51.254605],[-1.577636,51.255631],[-1.581938,51.254708],[-1.584233,51.254717],[-1.585349,51.253992],[-1.588057,51.253155],[-1.592751,51.253008],[-1.600186,51.253524],[-1.600732,51.250716],[-1.603706,51.251848],[-1.606522,51.251922],[-1.607369,51.24961],[-1.611109,51.245608],[-1.610393,51.24298],[-1.613557,51.241442],[-1.615052,51.241417],[-1.616483,51.241948],[-1.619336,51.241218],[-1.619755,51.239862],[-1.621216,51.238439],[-1.621413,51.23632],[-1.622137,51.234674],[-1.62324,51.233373],[-1.625485,51.231797],[-1.628438,51.226098],[-1.631133,51.223798],[-1.631339,51.221601],[-1.632842,51.219408],[-1.633541,51.217516],[-1.637466,51.217587],[-1.650195,51.219979],[-1.653497,51.220468],[-1.66006,51.218898],[-1.659846,51.218391],[-1.662135,51.217783],[-1.666736,51.216964],[-1.666772,51.217444],[-1.672726,51.21726],[-1.673707,51.215833],[-1.68439,51.214925],[-1.686888,51.215151],[-1.689788,51.214769],[-1.690943,51.209495],[-1.691147,51.207335],[-1.694097,51.204043],[-1.692793,51.20305],[-1.6857,51.199323],[-1.682712,51.197007],[-1.676979,51.193401],[-1.670554,51.190613],[-1.668836,51.190772],[-1.669494,51.184273],[-1.670164,51.183919],[-1.669272,51.181832],[-1.672368,51.178544],[-1.670368,51.17679],[-1.666851,51.169941],[-1.65704,51.159306],[-1.654009,51.156184],[-1.654613,51.151995],[-1.659758,51.142143],[-1.658962,51.141537],[-1.658331,51.139596],[-1.658722,51.137532],[-1.659486,51.135622],[-1.661298,51.133874],[-1.663023,51.129649],[-1.662976,51.127192],[-1.656278,51.127199],[-1.640582,51.125383],[-1.632742,51.120929],[-1.627245,51.118297],[-1.62625,51.117338],[-1.628841,51.114028],[-1.630835,51.112824],[-1.630931,51.111154],[-1.629788,51.109167],[-1.628341,51.107647],[-1.628435,51.106048],[-1.626803,51.104017],[-1.626957,51.102864],[-1.629264,51.100601],[-1.630988,51.09958],[-1.633993,51.096414],[-1.636009,51.093422],[-1.636188,51.092415],[-1.637311,51.092165],[-1.634091,51.085464],[-1.631132,51.082152],[-1.628998,51.081177],[-1.627729,51.078011],[-1.629147,51.075569],[-1.628958,51.074066],[-1.628077,51.072333],[-1.62781,51.068734],[-1.630094,51.065415],[-1.632823,51.049167],[-1.632428,51.047657],[-1.633585,51.04656],[-1.634003,51.042059],[-1.63496,51.040887],[-1.632072,51.036014],[-1.632376,51.03278],[-1.62885,51.032518],[-1.62244,51.033107],[-1.619457,51.033059],[-1.619288,51.031633],[-1.614641,51.029958],[-1.613543,51.028414],[-1.611447,51.027282],[-1.608408,51.026299],[-1.602849,51.025504],[-1.599397,51.023729],[-1.600584,51.022175],[-1.603017,51.020752],[-1.605652,51.020021],[-1.605368,51.017258],[-1.604935,51.016032],[-1.60313,51.014196],[-1.59952,51.01254],[-1.59765,51.010715],[-1.597524,51.008055],[-1.600576,51.007136],[-1.605014,51.007005],[-1.608624,51.00827],[-1.610291,51.008163],[-1.610452,51.006869],[-1.61493,51.006656],[-1.609656,51.00592],[-1.605198,51.002521],[-1.606783,51.001621],[-1.610733,51.001709],[-1.61437,51.003375],[-1.617231,51.004182],[-1.620202,51.003413],[-1.623816,51.001815],[-1.624407,51.001157],[-1.626258,51.001033],[-1.627158,51.000038],[-1.628805,50.999095],[-1.62838,50.997664],[-1.627361,50.996989],[-1.627449,50.995847],[-1.625803,50.993912],[-1.624923,50.991153],[-1.625213,50.990331],[-1.620426,50.988599],[-1.618954,50.987366],[-1.619295,50.984912],[-1.620159,50.984249],[-1.619642,50.982996],[-1.617053,50.98165],[-1.614419,50.979495],[-1.610834,50.979979],[-1.607582,50.979965],[-1.60449,50.979328],[-1.602923,50.978517],[-1.605139,50.976904],[-1.604963,50.975203],[-1.607729,50.973674],[-1.608689,50.972283],[-1.610791,50.972034],[-1.61218,50.971247],[-1.613427,50.968081],[-1.614662,50.966101],[-1.616064,50.965044],[-1.616748,50.962545],[-1.619751,50.958567],[-1.612782,50.958098],[-1.607746,50.954962],[-1.596496,50.956072],[-1.595573,50.953751],[-1.590902,50.953348],[-1.590083,50.951264],[-1.588483,50.953539],[-1.586886,50.954776],[-1.586338,50.957422],[-1.585223,50.957737],[-1.584233,50.959065],[-1.584075,50.962118],[-1.575682,50.960776],[-1.561686,50.965916],[-1.561146,50.964962],[-1.556847,50.965501],[-1.55269,50.967526],[-1.547613,50.967821],[-1.544532,50.969281],[-1.543414,50.968244],[-1.542103,50.968168],[-1.540737,50.965517],[-1.541563,50.964454],[-1.540607,50.963897],[-1.539563,50.961545],[-1.537963,50.960347],[-1.535669,50.960005],[-1.534271,50.959063],[-1.533598,50.958019],[-1.534008,50.957184],[-1.533207,50.956616],[-1.534439,50.954609],[-1.533564,50.953297],[-1.532288,50.952996],[-1.531928,50.952129],[-1.529102,50.950362],[-1.522727,50.951369],[-1.521541,50.952227],[-1.519388,50.952086],[-1.517042,50.951425],[-1.516156,50.951523],[-1.515114,50.950406],[-1.512732,50.950922],[-1.509693,50.949752],[-1.510394,50.948298],[-1.509663,50.94757],[-1.507703,50.946745],[-1.508285,50.945802],[-1.507348,50.9444],[-1.507857,50.943753],[-1.507699,50.940696],[-1.504342,50.938404],[-1.503077,50.936193],[-1.50135,50.935628],[-1.500267,50.934525],[-1.497347,50.935081],[-1.493481,50.934912],[-1.492476,50.933913],[-1.490578,50.933491],[-1.489679,50.934493],[-1.487477,50.932973],[-1.485829,50.932955],[-1.485749,50.932932],[-1.485458,50.932849],[-1.484866,50.93268],[-1.485568,50.93233],[-1.483512,50.931963],[-1.483272,50.930138],[-1.481428,50.929759],[-1.481698,50.930291],[-1.480513,50.930386],[-1.480355,50.929104],[-1.478168,50.928843],[-1.47717,50.928648],[-1.477064,50.928772],[-1.476996,50.928853],[-1.474121,50.92894],[-1.47436,50.929516],[-1.471875,50.930021],[-1.471561,50.931615],[-1.47015,50.931587],[-1.466211,50.934709],[-1.464109,50.935106],[-1.464847,50.936012],[-1.465115,50.937942],[-1.46366,50.939933],[-1.459424,50.943197],[-1.455956,50.946068],[-1.452436,50.943596],[-1.451008,50.944327],[-1.44996,50.947178],[-1.451773,50.949131],[-1.449546,50.949911],[-1.449261,50.948995],[-1.446607,50.948259],[-1.441294,50.947056],[-1.439654,50.948318],[-1.435717,50.948992],[-1.434617,50.948929],[-1.429771,50.94737],[-1.423784,50.94723],[-1.42195,50.950946],[-1.421038,50.951677],[-1.417184,50.95173],[-1.416366,50.950846],[-1.415128,50.950836],[-1.414267,50.949337],[-1.411926,50.950367],[-1.409611,50.949759],[-1.409247,50.951714],[-1.406495,50.954716],[-1.40614,50.956127],[-1.404687,50.955276],[-1.402532,50.955247],[-1.403405,50.954201],[-1.403919,50.952353],[-1.401357,50.95039],[-1.400129,50.950486],[-1.398105,50.949456],[-1.392862,50.949382],[-1.391288,50.948111],[-1.390832,50.946535],[-1.389822,50.945939],[-1.387645,50.946382],[-1.385215,50.946073],[-1.381554,50.946069],[-1.379892,50.947518],[-1.378507,50.950745],[-1.37781,50.950852],[-1.375692,50.952349],[-1.374034,50.953976],[-1.375697,50.954306],[-1.376437,50.955583],[-1.380643,50.956043],[-1.380274,50.95679],[-1.384478,50.956269],[-1.385579,50.9585],[-1.385286,50.959218],[-1.383574,50.960025],[-1.385278,50.961667],[-1.389955,50.963017],[-1.390553,50.963799],[-1.393957,50.964744],[-1.392746,50.967703],[-1.396466,50.968508],[-1.392385,50.976274],[-1.396381,50.977547],[-1.39596,50.978975],[-1.394418,50.97965],[-1.391053,50.982857],[-1.392416,50.985852],[-1.391427,50.986809],[-1.393832,50.988605],[-1.39563,50.989029],[-1.397157,50.990439],[-1.398204,50.994444],[-1.399643,50.994674],[-1.398961,50.996724],[-1.396471,50.998648],[-1.395159,50.999079],[-1.391933,50.999219],[-1.392975,51.004361],[-1.3934,51.006416],[-1.394698,51.009082],[-1.398655,51.009158],[-1.399797,51.009784],[-1.404888,51.010726],[-1.406009,51.011333],[-1.411167,51.012522],[-1.411199,51.014111],[-1.418991,51.015444],[-1.421026,51.013817],[-1.422509,51.015351],[-1.424529,51.015928],[-1.426068,51.016836],[-1.426658,51.021808],[-1.42767,51.022587],[-1.429566,51.023138],[-1.429985,51.024067],[-1.433081,51.025581],[-1.437983,51.024118],[-1.441892,51.025166],[-1.443622,51.027086],[-1.444791,51.027531],[-1.444866,51.028295],[-1.44617,51.030017],[-1.446487,51.031675],[-1.447089,51.031859],[-1.446811,51.033862],[-1.448385,51.035951],[-1.449841,51.037152],[-1.451948,51.03797],[-1.453019,51.038997],[-1.455879,51.040299],[-1.456504,51.041122],[-1.454145,51.044486],[-1.452037,51.045388],[-1.450981,51.045426],[-1.448617,51.047061],[-1.447398,51.050124],[-1.445114,51.054127],[-1.442719,51.05626],[-1.440613,51.057591],[-1.436044,51.05954],[-1.434351,51.059724],[-1.43274,51.060363],[-1.430592,51.060315],[-1.429414,51.060701],[-1.423461,51.06072],[-1.41547,51.062672],[-1.416709,51.063328],[-1.413735,51.066619],[-1.411708,51.069551],[-1.411536,51.070535],[-1.412471,51.071381],[-1.412398,51.072459],[-1.410413,51.074913],[-1.410117,51.077838],[-1.415856,51.077128],[-1.415454,51.078291],[-1.412597,51.081963],[-1.411963,51.085559],[-1.414667,51.091257],[-1.414289,51.094108],[-1.414535,51.095692],[-1.420932,51.094726],[-1.429976,51.094431],[-1.431175,51.098147],[-1.436293,51.097889],[-1.434545,51.100108],[-1.433635,51.102167],[-1.43442,51.105201],[-1.435962,51.107812],[-1.436272,51.112042],[-1.433118,51.115506],[-1.431417,51.116786],[-1.420451,51.11064],[-1.417594,51.109738],[-1.413727,51.111129],[-1.414217,51.112985],[-1.411552,51.110684],[-1.408367,51.111689],[-1.407535,51.11113],[-1.403586,51.11298],[-1.405152,51.114726],[-1.404049,51.115135],[-1.406165,51.118131],[-1.407195,51.120477],[-1.39935,51.122621],[-1.391898,51.123479],[-1.388071,51.124582],[-1.380252,51.124118],[-1.376023,51.127355],[-1.374,51.127774],[-1.370223,51.129142],[-1.377765,51.136331],[-1.370893,51.14143],[-1.369825,51.142501],[-1.369235,51.144487],[-1.368043,51.146344],[-1.364067,51.149728],[-1.359482,51.152307],[-1.350747,51.155236],[-1.350237,51.15468],[-1.348213,51.155527],[-1.347696,51.159525],[-1.341893,51.159087],[-1.336877,51.159106],[-1.336262,51.160675],[-1.337091,51.161302],[-1.336023,51.162101],[-1.335716,51.163834],[-1.337332,51.164452],[-1.336389,51.165196],[-1.337486,51.165995],[-1.33722,51.167384],[-1.334382,51.167787],[-1.332363,51.168454],[-1.328643,51.171681],[-1.330195,51.173267],[-1.331184,51.173687],[-1.32973,51.175464],[-1.328716,51.175329],[-1.325407,51.180423],[-1.310393,51.190908],[-1.308971,51.193408],[-1.308823,51.194739],[-1.31032,51.194526],[-1.31256,51.193587],[-1.320658,51.191483],[-1.323508,51.191325],[-1.327721,51.190505],[-1.332197,51.187725],[-1.340939,51.184579],[-1.341677,51.187036],[-1.339536,51.196093],[-1.339116,51.199883],[-1.341612,51.205654],[-1.352778,51.210666],[-1.358178,51.212021],[-1.360256,51.210019],[-1.359194,51.208243],[-1.360278,51.206286],[-1.360041,51.204567],[-1.362059,51.202958],[-1.36326,51.202962],[-1.365398,51.201956],[-1.366842,51.202977],[-1.368862,51.202407],[-1.37263,51.205032],[-1.373958,51.206526],[-1.375997,51.20722],[-1.37915,51.209202],[-1.38168,51.211795],[-1.383666,51.2149],[-1.385892,51.214427],[-1.388546,51.214746],[-1.396576,51.217346],[-1.400097,51.219501],[-1.401332,51.219893],[-1.404796,51.219991],[-1.408667,51.221164],[-1.421091,51.223736],[-1.421342,51.224945],[-1.422743,51.225359],[-1.42602,51.224908],[-1.428095,51.225036],[-1.427011,51.230324],[-1.427465,51.23307],[-1.429855,51.235224],[-1.433284,51.236524],[-1.441325,51.245383],[-1.442968,51.247843],[-1.445055,51.249624],[-1.447081,51.250872],[-1.45167,51.252648],[-1.458256,51.254094],[-1.460153,51.255891],[-1.459588,51.258006],[-1.458467,51.259656],[-1.456689,51.261002],[-1.455205,51.26151],[-1.450465,51.265534],[-1.44905,51.265437],[-1.448329,51.266115],[-1.44566,51.267114],[-1.44695,51.267919],[-1.444173,51.26907],[-1.440486,51.271808],[-1.439931,51.271485],[-1.438113,51.272971],[-1.434536,51.274422],[-1.428981,51.275426],[-1.422059,51.27741],[-1.420604,51.278302],[-1.41875,51.280133],[-1.416766,51.283069],[-1.416762,51.285449],[-1.418955,51.290858],[-1.419261,51.293027],[-1.420668,51.293971],[-1.424491,51.295003],[-1.428298,51.297967],[-1.428651,51.30039],[-1.427849,51.300451],[-1.426065,51.303359],[-1.426504,51.307706],[-1.42481,51.310219],[-1.425804,51.31337],[-1.424988,51.31353],[-1.424938,51.31539],[-1.42339,51.316367],[-1.421225,51.316378],[-1.420626,51.31697],[-1.421326,51.31783],[-1.420981,51.321012],[-1.419368,51.323393],[-1.41915,51.325595],[-1.418627,51.327041],[-1.420052,51.327203],[-1.421116,51.329231],[-1.423304,51.330924],[-1.423187,51.331827],[-1.421259,51.333948],[-1.421336,51.335552],[-1.425887,51.337244],[-1.429693,51.33653],[-1.450804,51.332674],[-1.453583,51.332804],[-1.455613,51.332499],[-1.458209,51.332982],[-1.460637,51.332435],[-1.465522,51.33238],[-1.4844,51.331037],[-1.488442,51.330466],[-1.490704,51.329744],[-1.495394,51.328961],[-1.498299,51.329376]]]]},"properties":{"LAD22CD":"E07000093","LAD22NM":"Test Valley","BNG_E":434930,"BNG_N":137329,"LONG":-1.50214,"LAT":51.13417,"GlobalID":"cfae1a0e-9dd0-4291-a031-2f23b289be79"},"id":119}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.13179,51.143581],[-1.138532,51.141761],[-1.141183,51.140453],[-1.142691,51.141313],[-1.147008,51.139733],[-1.151782,51.138973],[-1.151782,51.137166],[-1.151012,51.136177],[-1.155839,51.135977],[-1.156594,51.136302],[-1.162264,51.134702],[-1.168264,51.13483],[-1.174289,51.13354],[-1.178136,51.134055],[-1.186566,51.138181],[-1.183782,51.140683],[-1.184445,51.144311],[-1.190136,51.146688],[-1.189993,51.146914],[-1.196048,51.14878],[-1.198658,51.150003],[-1.200739,51.150383],[-1.203679,51.150227],[-1.207406,51.150642],[-1.208598,51.150488],[-1.210612,51.151553],[-1.213299,51.151947],[-1.213666,51.152532],[-1.213343,51.155705],[-1.214406,51.157579],[-1.21438,51.158774],[-1.211346,51.158864],[-1.208125,51.160087],[-1.207433,51.161127],[-1.205939,51.161569],[-1.196997,51.161082],[-1.193356,51.162919],[-1.18931,51.163774],[-1.185572,51.163989],[-1.186849,51.165071],[-1.182239,51.170447],[-1.181696,51.17525],[-1.188986,51.176728],[-1.192921,51.179377],[-1.189594,51.182411],[-1.190308,51.183765],[-1.191663,51.18472],[-1.194878,51.185193],[-1.19778,51.184217],[-1.197969,51.185177],[-1.199634,51.185635],[-1.202241,51.185192],[-1.206561,51.180702],[-1.207071,51.18131],[-1.213977,51.184108],[-1.217218,51.184736],[-1.221196,51.186445],[-1.224747,51.18903],[-1.227853,51.190486],[-1.2317,51.191007],[-1.241085,51.191316],[-1.24861,51.191094],[-1.253077,51.190508],[-1.254493,51.191979],[-1.258841,51.19321],[-1.262204,51.193659],[-1.270531,51.193676],[-1.27421,51.194876],[-1.279167,51.19399],[-1.280428,51.194996],[-1.281945,51.193959],[-1.282566,51.194967],[-1.28527,51.195102],[-1.287419,51.196235],[-1.287796,51.195539],[-1.289955,51.194243],[-1.292713,51.194414],[-1.294995,51.195076],[-1.295082,51.195988],[-1.298939,51.197034],[-1.305493,51.195637],[-1.308728,51.195649],[-1.308823,51.194739],[-1.308971,51.193408],[-1.310393,51.190908],[-1.325407,51.180423],[-1.328716,51.175329],[-1.32973,51.175464],[-1.331184,51.173687],[-1.330195,51.173267],[-1.328643,51.171681],[-1.332363,51.168454],[-1.334382,51.167787],[-1.33722,51.167384],[-1.337486,51.165995],[-1.336389,51.165196],[-1.337332,51.164452],[-1.335716,51.163834],[-1.336023,51.162101],[-1.337091,51.161302],[-1.336262,51.160675],[-1.336877,51.159106],[-1.341893,51.159087],[-1.347696,51.159525],[-1.348213,51.155527],[-1.350237,51.15468],[-1.350747,51.155236],[-1.359482,51.152307],[-1.364067,51.149728],[-1.368043,51.146344],[-1.369235,51.144487],[-1.369825,51.142501],[-1.370893,51.14143],[-1.377765,51.136331],[-1.370223,51.129142],[-1.374,51.127774],[-1.376023,51.127355],[-1.380252,51.124118],[-1.388071,51.124582],[-1.391898,51.123479],[-1.39935,51.122621],[-1.407195,51.120477],[-1.406165,51.118131],[-1.404049,51.115135],[-1.405152,51.114726],[-1.403586,51.11298],[-1.407535,51.11113],[-1.408367,51.111689],[-1.411552,51.110684],[-1.414217,51.112985],[-1.413727,51.111129],[-1.417594,51.109738],[-1.420451,51.11064],[-1.431417,51.116786],[-1.433118,51.115506],[-1.436272,51.112042],[-1.435962,51.107812],[-1.43442,51.105201],[-1.433635,51.102167],[-1.434545,51.100108],[-1.436293,51.097889],[-1.431175,51.098147],[-1.429976,51.094431],[-1.420932,51.094726],[-1.414535,51.095692],[-1.414289,51.094108],[-1.414667,51.091257],[-1.411963,51.085559],[-1.412597,51.081963],[-1.415454,51.078291],[-1.415856,51.077128],[-1.410117,51.077838],[-1.410413,51.074913],[-1.412398,51.072459],[-1.412471,51.071381],[-1.411536,51.070535],[-1.411708,51.069551],[-1.413735,51.066619],[-1.416709,51.063328],[-1.41547,51.062672],[-1.423461,51.06072],[-1.429414,51.060701],[-1.430592,51.060315],[-1.43274,51.060363],[-1.434351,51.059724],[-1.436044,51.05954],[-1.440613,51.057591],[-1.442719,51.05626],[-1.445114,51.054127],[-1.447398,51.050124],[-1.448617,51.047061],[-1.450981,51.045426],[-1.452037,51.045388],[-1.454145,51.044486],[-1.456504,51.041122],[-1.455879,51.040299],[-1.453019,51.038997],[-1.451948,51.03797],[-1.449841,51.037152],[-1.448385,51.035951],[-1.446811,51.033862],[-1.447089,51.031859],[-1.446487,51.031675],[-1.44617,51.030017],[-1.444866,51.028295],[-1.444791,51.027531],[-1.443622,51.027086],[-1.441892,51.025166],[-1.437983,51.024118],[-1.433081,51.025581],[-1.429985,51.024067],[-1.429566,51.023138],[-1.42767,51.022587],[-1.426658,51.021808],[-1.426068,51.016836],[-1.424529,51.015928],[-1.422509,51.015351],[-1.421026,51.013817],[-1.418991,51.015444],[-1.411199,51.014111],[-1.411167,51.012522],[-1.406009,51.011333],[-1.404888,51.010726],[-1.399797,51.009784],[-1.398655,51.009158],[-1.394698,51.009082],[-1.3934,51.006416],[-1.392975,51.004361],[-1.389045,51.003643],[-1.385851,51.004283],[-1.384547,51.004269],[-1.381653,51.003436],[-1.369666,51.001627],[-1.367485,51.000399],[-1.36357,51.000076],[-1.359748,50.998671],[-1.353468,50.998159],[-1.353913,50.997085],[-1.351112,50.996735],[-1.351181,50.995352],[-1.349724,50.994406],[-1.349226,50.993268],[-1.346861,50.991065],[-1.345844,50.992577],[-1.343554,50.991968],[-1.342766,50.990889],[-1.345621,50.985543],[-1.346566,50.981399],[-1.344919,50.982549],[-1.345036,50.984073],[-1.344057,50.984862],[-1.342466,50.984942],[-1.3395,50.983919],[-1.337647,50.984303],[-1.335472,50.983507],[-1.333917,50.983356],[-1.330391,50.983748],[-1.329095,50.982104],[-1.32853,50.980596],[-1.327678,50.98012],[-1.323092,50.983893],[-1.323294,50.985871],[-1.322728,50.987548],[-1.319271,50.987137],[-1.316394,50.985125],[-1.313408,50.984563],[-1.312008,50.984719],[-1.301767,50.982743],[-1.295879,50.982827],[-1.29315,50.983714],[-1.290575,50.98287],[-1.290479,50.982301],[-1.295139,50.976127],[-1.295231,50.974622],[-1.293428,50.974145],[-1.290338,50.974109],[-1.284946,50.973524],[-1.280311,50.974392],[-1.276992,50.974356],[-1.275389,50.973885],[-1.272851,50.977084],[-1.272071,50.979098],[-1.267761,50.978629],[-1.266554,50.980157],[-1.262734,50.980154],[-1.25963,50.979221],[-1.258154,50.978342],[-1.260377,50.974361],[-1.265761,50.968877],[-1.2685,50.967524],[-1.270636,50.963875],[-1.271828,50.962608],[-1.272934,50.962247],[-1.276307,50.961898],[-1.276986,50.960937],[-1.282074,50.958612],[-1.283041,50.957705],[-1.283249,50.956307],[-1.285979,50.954336],[-1.287044,50.952928],[-1.289369,50.951274],[-1.291032,50.950858],[-1.29256,50.948627],[-1.291125,50.946845],[-1.288012,50.945441],[-1.286715,50.94272],[-1.286988,50.939618],[-1.285068,50.937363],[-1.284726,50.936379],[-1.27887,50.936656],[-1.276326,50.93584],[-1.273691,50.935703],[-1.272559,50.933992],[-1.270758,50.933505],[-1.270209,50.931663],[-1.267207,50.929343],[-1.26752,50.928802],[-1.2663,50.927047],[-1.264633,50.926181],[-1.264707,50.925412],[-1.265816,50.924789],[-1.264552,50.922864],[-1.265378,50.918391],[-1.266478,50.918043],[-1.267664,50.91695],[-1.266799,50.916459],[-1.267426,50.915656],[-1.267766,50.91488],[-1.267705,50.914429],[-1.268347,50.913148],[-1.268349,50.913144],[-1.268565,50.909914],[-1.26867,50.909824],[-1.268669,50.909661],[-1.268355,50.909524],[-1.265588,50.908403],[-1.264418,50.906846],[-1.264548,50.905673],[-1.26354,50.904978],[-1.262801,50.904468],[-1.261934,50.903796],[-1.259161,50.902523],[-1.259022,50.90176],[-1.260569,50.900717],[-1.26212,50.898859],[-1.262207,50.898762],[-1.26365,50.89723],[-1.265507,50.897771],[-1.265798,50.897455],[-1.264065,50.895505],[-1.26109,50.895079],[-1.260904,50.893036],[-1.258683,50.89282],[-1.259079,50.891751],[-1.257781,50.891287],[-1.259401,50.889721],[-1.255653,50.888855],[-1.25468,50.887018],[-1.255372,50.884184],[-1.253952,50.883165],[-1.253966,50.882515],[-1.256587,50.880716],[-1.254826,50.878946],[-1.256105,50.876418],[-1.254966,50.875938],[-1.255243,50.873103],[-1.253498,50.872386],[-1.240945,50.865676],[-1.236609,50.863756],[-1.234538,50.862507],[-1.23083,50.8613],[-1.22965,50.860605],[-1.227863,50.862608],[-1.227865,50.863168],[-1.226066,50.864183],[-1.224774,50.865338],[-1.225198,50.865867],[-1.223559,50.867572],[-1.220419,50.868707],[-1.217775,50.872499],[-1.218625,50.873114],[-1.216039,50.875058],[-1.209766,50.873942],[-1.208209,50.875011],[-1.207272,50.876635],[-1.198019,50.875943],[-1.19851,50.881784],[-1.197341,50.884036],[-1.195864,50.885039],[-1.188161,50.883983],[-1.188345,50.888017],[-1.185984,50.887843],[-1.185717,50.888353],[-1.180714,50.88891],[-1.18063,50.887984],[-1.177113,50.887613],[-1.174942,50.888012],[-1.173643,50.888867],[-1.169465,50.888421],[-1.167218,50.889433],[-1.164696,50.887437],[-1.162599,50.886566],[-1.159824,50.884161],[-1.155627,50.883107],[-1.153857,50.882341],[-1.153802,50.881328],[-1.152455,50.879146],[-1.151703,50.878832],[-1.150035,50.879404],[-1.149475,50.87766],[-1.15067,50.875083],[-1.151727,50.870279],[-1.150762,50.869415],[-1.147943,50.868463],[-1.147613,50.867414],[-1.144522,50.866577],[-1.143245,50.858429],[-1.140148,50.857928],[-1.138404,50.858092],[-1.138057,50.858778],[-1.135467,50.858926],[-1.132776,50.858135],[-1.132416,50.858492],[-1.126705,50.857754],[-1.125947,50.858184],[-1.122418,50.857825],[-1.121959,50.858487],[-1.115848,50.858272],[-1.113011,50.858335],[-1.099882,50.857153],[-1.099155,50.858861],[-1.094062,50.8593],[-1.084231,50.857225],[-1.075528,50.856378],[-1.071403,50.85653],[-1.070983,50.8587],[-1.067839,50.858183],[-1.066186,50.858474],[-1.065188,50.857635],[-1.062129,50.857638],[-1.062186,50.855452],[-1.054346,50.855087],[-1.054075,50.856538],[-1.052552,50.860176],[-1.050399,50.859633],[-1.048814,50.863066],[-1.048892,50.865457],[-1.054024,50.86501],[-1.053524,50.866384],[-1.054768,50.866391],[-1.054617,50.867449],[-1.047381,50.86575],[-1.04644,50.866913],[-1.04555,50.869268],[-1.045697,50.870579],[-1.047794,50.87109],[-1.0476,50.872385],[-1.046493,50.874099],[-1.044177,50.873245],[-1.043075,50.875],[-1.042414,50.875252],[-1.041419,50.877925],[-1.03939,50.877687],[-1.037896,50.880201],[-1.035022,50.88063],[-1.036599,50.88227],[-1.041924,50.882591],[-1.044496,50.883343],[-1.044275,50.884332],[-1.045273,50.884636],[-1.046821,50.887559],[-1.045119,50.889036],[-1.049131,50.891466],[-1.042474,50.895911],[-1.037983,50.901492],[-1.033895,50.90221],[-1.034116,50.904163],[-1.038026,50.903592],[-1.038816,50.903148],[-1.041672,50.902599],[-1.044467,50.902341],[-1.048456,50.902516],[-1.046211,50.90992],[-1.044856,50.912062],[-1.045288,50.913799],[-1.044188,50.915692],[-1.040295,50.917785],[-1.037361,50.920337],[-1.036354,50.92203],[-1.037119,50.924828],[-1.039373,50.927779],[-1.037729,50.929272],[-1.03659,50.931728],[-1.036618,50.932818],[-1.037889,50.933222],[-1.036963,50.935087],[-1.036725,50.937847],[-1.037482,50.940895],[-1.037423,50.943536],[-1.038468,50.943954],[-1.037633,50.947572],[-1.036223,50.949473],[-1.03569,50.951517],[-1.037763,50.951198],[-1.04057,50.951749],[-1.04139,50.952863],[-1.043154,50.952992],[-1.044288,50.954429],[-1.046198,50.954629],[-1.045735,50.959506],[-1.044609,50.963143],[-1.04513,50.965446],[-1.045985,50.966475],[-1.045286,50.968674],[-1.051665,50.969538],[-1.053651,50.971041],[-1.05437,50.972359],[-1.054102,50.975021],[-1.05549,50.977556],[-1.060295,50.978316],[-1.061489,50.978329],[-1.063366,50.977692],[-1.066354,50.984979],[-1.067507,50.985715],[-1.066835,50.988529],[-1.067625,50.989684],[-1.066644,50.990692],[-1.068042,50.99184],[-1.068198,50.992593],[-1.069462,50.99373],[-1.069033,50.994503],[-1.069362,50.995753],[-1.068807,50.998246],[-1.069075,50.999834],[-1.067927,51.003733],[-1.068727,51.006379],[-1.068787,51.008552],[-1.067296,51.008874],[-1.067346,51.011741],[-1.064674,51.011663],[-1.063914,51.016408],[-1.062344,51.020113],[-1.063964,51.026091],[-1.064229,51.028586],[-1.065053,51.029957],[-1.06494,51.030933],[-1.072785,51.031288],[-1.073412,51.032215],[-1.074502,51.032586],[-1.073786,51.033964],[-1.064261,51.042635],[-1.055229,51.045747],[-1.053775,51.047232],[-1.055767,51.04742],[-1.060412,51.046691],[-1.059956,51.04576],[-1.062196,51.044519],[-1.065262,51.045061],[-1.066212,51.046789],[-1.067338,51.047639],[-1.069463,51.047151],[-1.076424,51.048198],[-1.082084,51.046736],[-1.081223,51.048899],[-1.082948,51.048896],[-1.083802,51.050356],[-1.08494,51.050679],[-1.088461,51.053381],[-1.089671,51.053891],[-1.090902,51.055726],[-1.088833,51.056377],[-1.088189,51.058727],[-1.088853,51.060665],[-1.090129,51.061758],[-1.091463,51.061554],[-1.094327,51.062552],[-1.094999,51.063662],[-1.094541,51.06552],[-1.091987,51.067572],[-1.094786,51.068318],[-1.099135,51.070714],[-1.100138,51.071545],[-1.101539,51.073854],[-1.107137,51.078895],[-1.106444,51.081105],[-1.10844,51.085644],[-1.108651,51.087134],[-1.108127,51.088546],[-1.106524,51.088641],[-1.105992,51.090609],[-1.105424,51.090915],[-1.100269,51.092104],[-1.101077,51.092921],[-1.100443,51.094],[-1.098227,51.093644],[-1.095393,51.094863],[-1.092035,51.095315],[-1.085815,51.097248],[-1.085265,51.097868],[-1.082857,51.09907],[-1.083804,51.100869],[-1.083288,51.102929],[-1.080498,51.10455],[-1.079272,51.105642],[-1.075149,51.106923],[-1.07467,51.107918],[-1.080764,51.109443],[-1.087712,51.109483],[-1.093925,51.107768],[-1.093162,51.108849],[-1.091601,51.10983],[-1.090533,51.111998],[-1.091239,51.114586],[-1.091491,51.120262],[-1.093776,51.121744],[-1.095179,51.124049],[-1.094944,51.125994],[-1.092488,51.129692],[-1.092835,51.130622],[-1.094683,51.132944],[-1.093586,51.134902],[-1.093474,51.137046],[-1.095084,51.136862],[-1.095415,51.138073],[-1.095043,51.140346],[-1.099685,51.140672],[-1.10215,51.14029],[-1.109516,51.137055],[-1.112114,51.136578],[-1.113797,51.137118],[-1.117731,51.137288],[-1.123357,51.138702],[-1.1255,51.138819],[-1.126511,51.138021],[-1.129786,51.138595],[-1.130716,51.140301],[-1.131018,51.142544],[-1.13179,51.143581]]]},"properties":{"LAD22CD":"E07000094","LAD22NM":"Winchester","BNG_E":453115,"BNG_N":125901,"LONG":-1.24393,"LAT":51.03002,"GlobalID":"55b78e72-3511-4a19-8aa7-28f739d5ba95"},"id":120}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.014029,51.76438],[0.012082,51.764922],[0.01205,51.766126],[0.010478,51.767301],[0.009196,51.767708],[0.00867,51.768545],[0.00731,51.769073],[0.005229,51.770923],[0.004159,51.772812],[0.002806,51.774025],[0.002005,51.77575],[0.005574,51.780069],[-0.012468,51.779137],[-0.012708,51.780505],[-0.018134,51.780519],[-0.018125,51.779662],[-0.01992,51.779716],[-0.019456,51.778404],[-0.019976,51.775581],[-0.021225,51.775064],[-0.0212,51.773922],[-0.023027,51.773504],[-0.024174,51.774107],[-0.026078,51.774333],[-0.025455,51.772112],[-0.028012,51.772149],[-0.028207,51.7714],[-0.030354,51.77155],[-0.032591,51.773677],[-0.034646,51.772816],[-0.038879,51.772575],[-0.044606,51.770234],[-0.045619,51.770231],[-0.047896,51.768813],[-0.048783,51.764918],[-0.048848,51.761346],[-0.050306,51.750922],[-0.049931,51.750901],[-0.050746,51.747001],[-0.050759,51.744178],[-0.052409,51.742345],[-0.055466,51.742536],[-0.055076,51.740792],[-0.055079,51.736987],[-0.058351,51.7347],[-0.062856,51.734512],[-0.065437,51.734733],[-0.069177,51.734272],[-0.081247,51.734392],[-0.088801,51.735314],[-0.098654,51.735946],[-0.101459,51.732976],[-0.102378,51.731745],[-0.101851,51.730122],[-0.103138,51.729246],[-0.105265,51.728911],[-0.105487,51.727681],[-0.10751,51.725358],[-0.107938,51.72533],[-0.110239,51.723176],[-0.114083,51.720807],[-0.113379,51.718707],[-0.111876,51.717073],[-0.108021,51.714119],[-0.105529,51.71357],[-0.107332,51.712789],[-0.107568,51.711171],[-0.107172,51.707998],[-0.107491,51.705514],[-0.106401,51.696747],[-0.105668,51.694344],[-0.106061,51.692618],[-0.105779,51.691876],[-0.099536,51.691115],[-0.094777,51.690114],[-0.08391,51.689965],[-0.078995,51.688914],[-0.066341,51.683845],[-0.062017,51.683008],[-0.0566,51.682989],[-0.051694,51.683535],[-0.04918,51.684272],[-0.04716,51.683455],[-0.044243,51.683435],[-0.043672,51.683097],[-0.0334,51.682495],[-0.028377,51.682332],[-0.019772,51.681151],[-0.011919,51.680878],[-0.011802,51.683935],[-0.010947,51.685552],[-0.011958,51.687075],[-0.016157,51.689891],[-0.018496,51.698434],[-0.019731,51.703274],[-0.017579,51.707403],[-0.0155,51.715328],[-0.01412,51.723121],[-0.013536,51.728387],[-0.013924,51.731444],[-0.012968,51.733394],[-0.013747,51.7354],[-0.012635,51.737611],[-0.013593,51.740971],[-0.013511,51.742217],[-0.01205,51.743001],[-0.007425,51.741733],[-0.004925,51.742081],[0.001257,51.745136],[0.001768,51.745921],[0.003263,51.753568],[0.002282,51.754179],[0.00417,51.755372],[0.010078,51.755602],[0.012992,51.757465],[0.013388,51.758946],[0.012082,51.760982],[0.013135,51.762858],[0.014511,51.76321],[0.014029,51.76438]]]},"properties":{"LAD22CD":"E07000095","LAD22NM":"Broxbourne","BNG_E":534742,"BNG_N":204251,"LONG":-0.05073,"LAT":51.7208,"GlobalID":"d5daed4a-bfda-4b6d-ad0c-9ab8dbd8337f"},"id":121}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.404859,51.840607],[-0.409176,51.84295],[-0.411985,51.846174],[-0.41393,51.8465],[-0.419331,51.848745],[-0.421631,51.849551],[-0.424848,51.849444],[-0.425235,51.846721],[-0.431654,51.848887],[-0.432725,51.848126],[-0.438987,51.851835],[-0.447525,51.847602],[-0.454063,51.853033],[-0.457875,51.850599],[-0.461183,51.852614],[-0.464105,51.850147],[-0.465867,51.850807],[-0.468249,51.85306],[-0.469683,51.855898],[-0.474785,51.853904],[-0.478299,51.853136],[-0.47698,51.850166],[-0.471196,51.845468],[-0.479571,51.842144],[-0.490933,51.842819],[-0.492062,51.838353],[-0.491882,51.835278],[-0.49398,51.835634],[-0.496732,51.837325],[-0.501818,51.836795],[-0.505425,51.831662],[-0.506017,51.8273],[-0.507969,51.826461],[-0.511193,51.825894],[-0.509773,51.825101],[-0.508811,51.824048],[-0.503347,51.822444],[-0.501594,51.821487],[-0.502486,51.820577],[-0.500876,51.819394],[-0.504276,51.817697],[-0.503968,51.816581],[-0.502283,51.815459],[-0.506368,51.813966],[-0.510697,51.811107],[-0.517515,51.808456],[-0.519729,51.805095],[-0.520814,51.80577],[-0.521976,51.805489],[-0.5241,51.805811],[-0.529449,51.808288],[-0.530435,51.809451],[-0.532509,51.80892],[-0.536926,51.814125],[-0.54318,51.815463],[-0.543711,51.816984],[-0.541685,51.818445],[-0.544852,51.82065],[-0.548499,51.824158],[-0.553629,51.826713],[-0.555377,51.828391],[-0.557138,51.830967],[-0.560656,51.830083],[-0.561272,51.828876],[-0.557978,51.82554],[-0.558795,51.824662],[-0.560788,51.826382],[-0.562422,51.823734],[-0.566228,51.820942],[-0.567145,51.819805],[-0.571057,51.81897],[-0.572425,51.819433],[-0.575171,51.818817],[-0.576243,51.816937],[-0.574303,51.81625],[-0.57737,51.812098],[-0.577216,51.81178],[-0.581574,51.807587],[-0.581826,51.806905],[-0.591655,51.808136],[-0.594484,51.81115],[-0.594832,51.814023],[-0.597605,51.814283],[-0.603182,51.81329],[-0.606426,51.812351],[-0.611869,51.812045],[-0.61243,51.812928],[-0.614294,51.813484],[-0.615555,51.814959],[-0.618389,51.814532],[-0.620674,51.814922],[-0.621809,51.816038],[-0.624425,51.816255],[-0.625651,51.815873],[-0.62676,51.817245],[-0.627601,51.817303],[-0.63294,51.819946],[-0.634412,51.818611],[-0.63722,51.817938],[-0.641009,51.816392],[-0.644381,51.815762],[-0.647771,51.813606],[-0.651116,51.815258],[-0.656229,51.815853],[-0.659032,51.815436],[-0.662902,51.81624],[-0.664913,51.815524],[-0.667214,51.81581],[-0.668816,51.817194],[-0.669195,51.818555],[-0.672453,51.819668],[-0.676803,51.823957],[-0.678426,51.826069],[-0.678643,51.827337],[-0.679806,51.828806],[-0.679922,51.829585],[-0.681802,51.831813],[-0.683245,51.835474],[-0.687054,51.839115],[-0.690238,51.841266],[-0.690804,51.840425],[-0.692019,51.840297],[-0.695451,51.84111],[-0.693811,51.842508],[-0.691752,51.845081],[-0.686768,51.84924],[-0.688283,51.850607],[-0.692311,51.857045],[-0.69458,51.856431],[-0.696358,51.858134],[-0.699778,51.858012],[-0.701727,51.857532],[-0.703911,51.855866],[-0.707076,51.854414],[-0.708874,51.855793],[-0.710586,51.857779],[-0.714241,51.857355],[-0.715803,51.857486],[-0.720268,51.856147],[-0.722535,51.85425],[-0.721996,51.852483],[-0.722047,51.850822],[-0.722568,51.850045],[-0.725295,51.849799],[-0.727396,51.850362],[-0.731188,51.848971],[-0.732892,51.847591],[-0.734584,51.844111],[-0.736336,51.842406],[-0.74142,51.842566],[-0.744084,51.842461],[-0.745678,51.842094],[-0.745249,51.838376],[-0.7448,51.837617],[-0.737883,51.834045],[-0.736707,51.831897],[-0.737852,51.830948],[-0.731497,51.826543],[-0.730431,51.825176],[-0.728962,51.821762],[-0.723654,51.817773],[-0.721457,51.816684],[-0.719217,51.816138],[-0.714345,51.817309],[-0.711851,51.818328],[-0.711498,51.819106],[-0.709295,51.82054],[-0.701148,51.814863],[-0.699139,51.81197],[-0.69628,51.810155],[-0.692552,51.805802],[-0.688757,51.803113],[-0.68265,51.79721],[-0.684023,51.796273],[-0.68219,51.794584],[-0.683971,51.79379],[-0.690191,51.792339],[-0.6815,51.788059],[-0.679401,51.784755],[-0.679133,51.782074],[-0.677487,51.780945],[-0.676186,51.778464],[-0.677372,51.775869],[-0.676094,51.773285],[-0.676,51.771257],[-0.67347,51.768472],[-0.668726,51.765727],[-0.666683,51.765133],[-0.663608,51.764832],[-0.65935,51.763487],[-0.652454,51.759362],[-0.651315,51.759931],[-0.648593,51.758548],[-0.649212,51.757618],[-0.647785,51.757298],[-0.646911,51.756038],[-0.643666,51.754087],[-0.631041,51.753049],[-0.628488,51.7546],[-0.626219,51.753636],[-0.625529,51.754388],[-0.623709,51.753477],[-0.623227,51.75437],[-0.620202,51.752883],[-0.617286,51.75265],[-0.613767,51.750913],[-0.61354,51.748298],[-0.612936,51.747427],[-0.611117,51.748095],[-0.6091,51.749471],[-0.605152,51.749868],[-0.600867,51.751356],[-0.595269,51.751315],[-0.58638,51.752116],[-0.584145,51.746768],[-0.580812,51.743639],[-0.579432,51.741258],[-0.57617,51.737822],[-0.572763,51.735864],[-0.569934,51.735936],[-0.57037,51.736802],[-0.569246,51.737815],[-0.568399,51.737542],[-0.566818,51.739036],[-0.566209,51.738472],[-0.5637,51.739617],[-0.562955,51.738279],[-0.565583,51.736546],[-0.563446,51.735668],[-0.560314,51.737291],[-0.559245,51.737332],[-0.558442,51.735647],[-0.560647,51.734076],[-0.55954,51.733412],[-0.558349,51.734108],[-0.556002,51.733214],[-0.554525,51.734129],[-0.553,51.733334],[-0.554304,51.732337],[-0.550083,51.730575],[-0.551555,51.730041],[-0.553597,51.728411],[-0.551435,51.725168],[-0.550297,51.724397],[-0.550414,51.723043],[-0.55584,51.721822],[-0.558481,51.7193],[-0.5611,51.718079],[-0.56242,51.715871],[-0.563148,51.711682],[-0.558077,51.708479],[-0.557213,51.707077],[-0.555331,51.705533],[-0.552419,51.704038],[-0.548836,51.703649],[-0.547668,51.703181],[-0.546751,51.701325],[-0.546885,51.698636],[-0.544381,51.697249],[-0.543218,51.695136],[-0.542953,51.693765],[-0.5434,51.692785],[-0.547116,51.689214],[-0.548628,51.687011],[-0.54916,51.684867],[-0.548696,51.682671],[-0.546699,51.683033],[-0.546284,51.680437],[-0.539626,51.680269],[-0.538889,51.679834],[-0.536445,51.68086],[-0.535051,51.680901],[-0.534795,51.68169],[-0.532118,51.681778],[-0.531123,51.680683],[-0.527602,51.68168],[-0.524273,51.682113],[-0.523727,51.683765],[-0.524343,51.685391],[-0.524546,51.688056],[-0.523158,51.690472],[-0.523015,51.695081],[-0.522362,51.696606],[-0.520668,51.698183],[-0.518591,51.70406],[-0.515495,51.706578],[-0.512501,51.705311],[-0.511894,51.704227],[-0.502949,51.700535],[-0.497246,51.699781],[-0.494787,51.699022],[-0.489489,51.698129],[-0.48394,51.698508],[-0.481181,51.698244],[-0.475872,51.698539],[-0.475146,51.698086],[-0.471885,51.697548],[-0.466813,51.695885],[-0.463782,51.695341],[-0.455077,51.696862],[-0.454444,51.697263],[-0.448644,51.698344],[-0.446447,51.699576],[-0.443366,51.700628],[-0.440262,51.701014],[-0.442294,51.706147],[-0.441569,51.707904],[-0.442568,51.70983],[-0.442935,51.712662],[-0.444169,51.713619],[-0.445948,51.715934],[-0.446662,51.718387],[-0.448442,51.719221],[-0.449318,51.720483],[-0.45003,51.722689],[-0.450085,51.725532],[-0.448438,51.726305],[-0.447628,51.726073],[-0.444988,51.726597],[-0.439929,51.728258],[-0.442373,51.731401],[-0.440669,51.7324],[-0.440455,51.73345],[-0.43831,51.734463],[-0.434547,51.735344],[-0.434912,51.735931],[-0.426095,51.738447],[-0.426485,51.739211],[-0.425325,51.740119],[-0.42208,51.740837],[-0.423771,51.742626],[-0.426557,51.744343],[-0.424567,51.745825],[-0.424044,51.745706],[-0.421025,51.748761],[-0.423746,51.750688],[-0.425702,51.752886],[-0.42439,51.753818],[-0.423461,51.756277],[-0.422819,51.760156],[-0.423357,51.762479],[-0.422832,51.76599],[-0.42589,51.76639],[-0.429739,51.767905],[-0.428443,51.770241],[-0.43008,51.77021],[-0.430822,51.771888],[-0.430707,51.77328],[-0.431458,51.776663],[-0.430324,51.777545],[-0.432959,51.779647],[-0.434625,51.780189],[-0.439391,51.78453],[-0.440584,51.786878],[-0.434897,51.789042],[-0.429951,51.79044],[-0.427305,51.792076],[-0.419722,51.79098],[-0.416409,51.790849],[-0.413368,51.791185],[-0.41366,51.793315],[-0.412161,51.793325],[-0.411428,51.795312],[-0.409363,51.797306],[-0.412439,51.799136],[-0.411969,51.800279],[-0.415923,51.802069],[-0.420952,51.802256],[-0.422897,51.803273],[-0.425204,51.804854],[-0.428829,51.806765],[-0.42717,51.809744],[-0.427501,51.81163],[-0.42429,51.813045],[-0.421815,51.815797],[-0.415494,51.818227],[-0.414112,51.819086],[-0.419727,51.820955],[-0.418975,51.822731],[-0.419939,51.825887],[-0.417937,51.828685],[-0.417588,51.831994],[-0.416313,51.835703],[-0.412687,51.838119],[-0.4086,51.838789],[-0.404859,51.840607]]]},"properties":{"LAD22CD":"E07000096","LAD22NM":"Dacorum","BNG_E":500084,"BNG_N":208745,"LONG":-0.55098,"LAT":51.76845,"GlobalID":"895fc997-12b7-4d3b-87e0-93accc3d7a81"},"id":122}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.163493,51.688115],[-0.163118,51.699858],[-0.164497,51.700397],[-0.169722,51.701489],[-0.172115,51.702742],[-0.173721,51.702643],[-0.177736,51.703964],[-0.181422,51.706006],[-0.183327,51.706522],[-0.187633,51.706988],[-0.189857,51.707809],[-0.190458,51.707082],[-0.194614,51.708298],[-0.195804,51.7092],[-0.199431,51.709858],[-0.202622,51.709741],[-0.204737,51.709913],[-0.206486,51.709638],[-0.207751,51.710405],[-0.210792,51.710267],[-0.214752,51.711276],[-0.218394,51.713713],[-0.221048,51.713569],[-0.22337,51.71284],[-0.227036,51.712697],[-0.229744,51.711677],[-0.232233,51.71138],[-0.234271,51.710761],[-0.235197,51.710095],[-0.237331,51.705919],[-0.238972,51.706142],[-0.239292,51.707929],[-0.241048,51.710421],[-0.240539,51.713125],[-0.241063,51.715778],[-0.250784,51.724625],[-0.252253,51.726755],[-0.255136,51.729537],[-0.260056,51.733924],[-0.262117,51.736719],[-0.264281,51.737883],[-0.26611,51.738145],[-0.270195,51.737111],[-0.272979,51.735429],[-0.276524,51.735215],[-0.282703,51.73378],[-0.284365,51.732949],[-0.285298,51.731656],[-0.289022,51.728888],[-0.289467,51.72799],[-0.283671,51.724287],[-0.284119,51.722884],[-0.286393,51.72118],[-0.285917,51.720785],[-0.28231,51.721485],[-0.280863,51.720854],[-0.276954,51.721285],[-0.278831,51.719241],[-0.279621,51.717492],[-0.283498,51.714815],[-0.283846,51.714262],[-0.286491,51.713138],[-0.29576,51.711185],[-0.293969,51.709792],[-0.295222,51.709155],[-0.301976,51.708067],[-0.299267,51.69938],[-0.301029,51.698584],[-0.30002,51.696525],[-0.306327,51.697708],[-0.30923,51.697898],[-0.311323,51.697296],[-0.313296,51.696195],[-0.316175,51.696681],[-0.318309,51.69507],[-0.322332,51.69348],[-0.324642,51.697291],[-0.325954,51.70231],[-0.326711,51.703484],[-0.329561,51.702148],[-0.332101,51.702136],[-0.33336,51.701514],[-0.334082,51.698804],[-0.335042,51.698149],[-0.33685,51.697719],[-0.342253,51.697596],[-0.344255,51.697881],[-0.346063,51.69877],[-0.347792,51.698434],[-0.350542,51.699395],[-0.351027,51.69864],[-0.352542,51.697804],[-0.353624,51.698485],[-0.355408,51.698044],[-0.356569,51.696042],[-0.355868,51.695303],[-0.356029,51.692968],[-0.355736,51.691555],[-0.358213,51.691474],[-0.359087,51.690661],[-0.362759,51.689136],[-0.364185,51.689344],[-0.366765,51.689132],[-0.369624,51.687987],[-0.371999,51.687591],[-0.374208,51.689543],[-0.375358,51.692512],[-0.378723,51.689894],[-0.378287,51.688093],[-0.372342,51.684704],[-0.369491,51.684292],[-0.369424,51.683559],[-0.371011,51.68152],[-0.370405,51.67892],[-0.368766,51.678327],[-0.372037,51.676201],[-0.37471,51.673549],[-0.379179,51.670033],[-0.382526,51.670418],[-0.384093,51.669228],[-0.382994,51.668157],[-0.383622,51.665807],[-0.38566,51.664986],[-0.385548,51.664139],[-0.386808,51.663227],[-0.38647,51.661881],[-0.385277,51.660405],[-0.386831,51.65724],[-0.383298,51.652439],[-0.383317,51.648502],[-0.380641,51.648116],[-0.37817,51.646518],[-0.376004,51.644718],[-0.371634,51.643434],[-0.375796,51.641959],[-0.37532,51.64157],[-0.376667,51.640333],[-0.379961,51.639617],[-0.377374,51.637733],[-0.375147,51.635818],[-0.373229,51.634513],[-0.369879,51.631213],[-0.364595,51.624917],[-0.362621,51.623505],[-0.361793,51.62373],[-0.359679,51.625262],[-0.349222,51.62691],[-0.345106,51.628331],[-0.339859,51.630738],[-0.338284,51.629473],[-0.332583,51.633742],[-0.329983,51.635336],[-0.326546,51.636719],[-0.319793,51.638221],[-0.31755,51.640216],[-0.316672,51.640536],[-0.312319,51.638961],[-0.305377,51.637108],[-0.304455,51.63635],[-0.296127,51.635447],[-0.294383,51.63565],[-0.291868,51.636478],[-0.287787,51.636513],[-0.2855,51.636949],[-0.283874,51.637795],[-0.281391,51.638346],[-0.278613,51.638323],[-0.274177,51.639308],[-0.272867,51.642099],[-0.270037,51.642087],[-0.268247,51.642386],[-0.268346,51.643834],[-0.266767,51.644111],[-0.264359,51.643627],[-0.263272,51.644833],[-0.261605,51.643992],[-0.260449,51.642539],[-0.257354,51.64184],[-0.256172,51.643492],[-0.25449,51.64368],[-0.251557,51.647953],[-0.249856,51.654615],[-0.25125,51.655539],[-0.249348,51.656058],[-0.247866,51.655248],[-0.243625,51.656689],[-0.240994,51.656836],[-0.237971,51.657789],[-0.236678,51.658775],[-0.234707,51.659001],[-0.234228,51.658253],[-0.228919,51.659976],[-0.228058,51.658591],[-0.226044,51.657626],[-0.219801,51.660661],[-0.218895,51.660062],[-0.213393,51.662378],[-0.212135,51.661354],[-0.207864,51.662861],[-0.211134,51.666955],[-0.209839,51.667563],[-0.20796,51.666594],[-0.205635,51.668601],[-0.20223,51.667805],[-0.202609,51.669315],[-0.203353,51.670126],[-0.199872,51.67017],[-0.199005,51.668207],[-0.194852,51.668305],[-0.196665,51.665482],[-0.192531,51.664749],[-0.191067,51.663897],[-0.187791,51.667879],[-0.185804,51.66851],[-0.182086,51.668604],[-0.176712,51.6721],[-0.175658,51.673163],[-0.172473,51.673091],[-0.163607,51.682403],[-0.163493,51.688115]]]},"properties":{"LAD22CD":"E07000098","LAD22NM":"Hertsmere","BNG_E":519774,"BNG_N":199352,"LONG":-0.26899,"LAT":51.68017,"GlobalID":"f75940c6-2876-4ec3-ac38-d579d45ff09f"},"id":123}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.068127,52.005789],[0.065096,52.007604],[0.063957,52.009611],[0.06245,52.010932],[0.062145,52.012012],[0.059042,52.014527],[0.058991,52.016374],[0.060167,52.018648],[0.058287,52.020564],[0.054397,52.022493],[0.052098,52.024631],[0.050456,52.028473],[0.049667,52.033835],[0.04764,52.03675],[0.043034,52.041501],[0.043364,52.041873],[0.041625,52.045266],[0.041569,52.049036],[0.040394,52.053136],[0.039849,52.053225],[0.033648,52.05183],[0.024856,52.051431],[0.01129,52.04966],[0.007186,52.049533],[0.002318,52.05015],[-0.001383,52.051665],[-0.003669,52.053527],[-0.006135,52.056939],[-0.011577,52.060635],[-0.016272,52.063009],[-0.019281,52.063536],[-0.021972,52.063604],[-0.024413,52.063316],[-0.028798,52.061899],[-0.030146,52.061948],[-0.030631,52.061236],[-0.035725,52.058792],[-0.050972,52.049501],[-0.054212,52.046622],[-0.056871,52.045499],[-0.066755,52.042536],[-0.079089,52.037887],[-0.107694,52.028355],[-0.112403,52.026121],[-0.120999,52.019521],[-0.126568,52.020922],[-0.122339,52.029636],[-0.123102,52.029996],[-0.123747,52.033634],[-0.124677,52.034856],[-0.126829,52.036086],[-0.131573,52.04263],[-0.131303,52.043302],[-0.13373,52.046233],[-0.136721,52.04603],[-0.141674,52.047244],[-0.144576,52.04699],[-0.146035,52.047546],[-0.149026,52.050226],[-0.152139,52.051026],[-0.154531,52.052348],[-0.155121,52.053061],[-0.154946,52.054273],[-0.152641,52.055849],[-0.152059,52.057418],[-0.150211,52.05918],[-0.149934,52.061235],[-0.151885,52.064674],[-0.150656,52.065838],[-0.149015,52.066222],[-0.147927,52.067637],[-0.147506,52.069403],[-0.148606,52.070484],[-0.148084,52.071728],[-0.150014,52.074277],[-0.152111,52.075181],[-0.153491,52.076234],[-0.156364,52.076779],[-0.157332,52.080523],[-0.160544,52.0797],[-0.164166,52.077035],[-0.164558,52.076298],[-0.164462,52.074599],[-0.166354,52.070623],[-0.167956,52.068872],[-0.17162,52.063361],[-0.17262,52.06021],[-0.175188,52.060771],[-0.180546,52.06135],[-0.194983,52.062415],[-0.195636,52.060972],[-0.197724,52.059501],[-0.197094,52.05901],[-0.199138,52.05725],[-0.199184,52.056665],[-0.209009,52.047301],[-0.211181,52.044533],[-0.211966,52.042845],[-0.219494,52.036741],[-0.212823,52.026568],[-0.207533,52.020241],[-0.206045,52.016114],[-0.201256,52.009825],[-0.2039,52.008745],[-0.213498,52.008451],[-0.217119,52.005997],[-0.218398,52.006328],[-0.219366,52.005409],[-0.220724,52.005755],[-0.221771,52.004675],[-0.223195,52.005078],[-0.224749,52.003927],[-0.227632,52.002987],[-0.229182,52.002942],[-0.232055,52.000538],[-0.236868,51.997947],[-0.238523,51.998157],[-0.237601,51.999058],[-0.244079,51.999023],[-0.244959,51.993114],[-0.245743,51.988921],[-0.247889,51.985173],[-0.257449,51.985386],[-0.258297,51.983113],[-0.259283,51.983159],[-0.260255,51.979705],[-0.262829,51.979609],[-0.267407,51.980325],[-0.270626,51.979622],[-0.271666,51.981501],[-0.273901,51.98121],[-0.273186,51.982415],[-0.274108,51.983043],[-0.274669,51.984282],[-0.273739,51.985335],[-0.273838,51.986659],[-0.272282,51.988136],[-0.274445,51.989625],[-0.275793,51.990956],[-0.275623,51.991844],[-0.277106,51.993624],[-0.27891,51.994697],[-0.282599,51.996053],[-0.283594,51.997381],[-0.282954,51.998722],[-0.28401,51.999377],[-0.28193,52.000976],[-0.283894,52.00182],[-0.287663,52.001505],[-0.290508,52.000772],[-0.292046,52.001058],[-0.294409,52.002042],[-0.296089,52.002192],[-0.300054,52.000781],[-0.295326,51.995404],[-0.300703,51.99223],[-0.304798,51.990444],[-0.306816,51.989069],[-0.30849,51.986941],[-0.310394,51.98265],[-0.311556,51.98211],[-0.314886,51.981871],[-0.318201,51.982591],[-0.321871,51.982559],[-0.331778,51.983964],[-0.334412,51.983879],[-0.338676,51.982755],[-0.341492,51.982606],[-0.345735,51.98323],[-0.347096,51.983843],[-0.352345,51.983395],[-0.353008,51.98393],[-0.356111,51.98525],[-0.358722,51.985546],[-0.361288,51.985383],[-0.367158,51.983761],[-0.367948,51.980088],[-0.366961,51.97905],[-0.365887,51.97871],[-0.365736,51.977516],[-0.363335,51.976123],[-0.363733,51.975209],[-0.361759,51.974388],[-0.3595,51.973928],[-0.353936,51.974192],[-0.351926,51.973768],[-0.349264,51.97117],[-0.349086,51.970042],[-0.351729,51.966229],[-0.350765,51.965368],[-0.351223,51.964613],[-0.349174,51.963737],[-0.351166,51.961999],[-0.350226,51.957578],[-0.353888,51.95716],[-0.363305,51.952864],[-0.366088,51.950674],[-0.36987,51.949439],[-0.372583,51.948019],[-0.374105,51.947769],[-0.374213,51.948686],[-0.381556,51.950609],[-0.382912,51.951414],[-0.382986,51.953452],[-0.38177,51.955297],[-0.379807,51.957065],[-0.379374,51.958138],[-0.37951,51.963412],[-0.380423,51.96538],[-0.379247,51.967318],[-0.378206,51.971636],[-0.378903,51.97365],[-0.378721,51.975886],[-0.379535,51.976591],[-0.37963,51.977957],[-0.380687,51.979432],[-0.384846,51.978304],[-0.386644,51.979461],[-0.388567,51.978619],[-0.391304,51.977021],[-0.39113,51.975489],[-0.391748,51.973514],[-0.393325,51.971806],[-0.393069,51.970521],[-0.394776,51.967371],[-0.398944,51.967437],[-0.398882,51.964929],[-0.400222,51.964879],[-0.401284,51.960589],[-0.402212,51.960524],[-0.401669,51.956372],[-0.403706,51.956144],[-0.403989,51.955341],[-0.402811,51.954998],[-0.403329,51.953616],[-0.402901,51.950953],[-0.403477,51.950512],[-0.402116,51.948952],[-0.403936,51.947882],[-0.405824,51.943431],[-0.4063,51.941294],[-0.405444,51.938429],[-0.403426,51.935997],[-0.403779,51.935859],[-0.402482,51.93341],[-0.405607,51.932454],[-0.40251,51.930207],[-0.389214,51.925781],[-0.389358,51.924793],[-0.387777,51.921406],[-0.384774,51.919469],[-0.383551,51.918272],[-0.385209,51.916813],[-0.385616,51.91568],[-0.385746,51.914568],[-0.384922,51.911209],[-0.37864,51.90404],[-0.37839,51.901646],[-0.3776,51.900505],[-0.37749,51.898433],[-0.373909,51.895314],[-0.371937,51.894723],[-0.365135,51.894378],[-0.35909,51.889107],[-0.357694,51.886444],[-0.355132,51.885111],[-0.354646,51.884547],[-0.351979,51.879601],[-0.352995,51.87891],[-0.349899,51.878708],[-0.350793,51.876122],[-0.354126,51.87554],[-0.354834,51.874015],[-0.353884,51.870556],[-0.355216,51.867255],[-0.353745,51.864331],[-0.350323,51.860839],[-0.349525,51.857183],[-0.347085,51.855486],[-0.342173,51.853014],[-0.340946,51.850575],[-0.339486,51.849606],[-0.337075,51.848635],[-0.333379,51.84804],[-0.329381,51.846925],[-0.327707,51.846792],[-0.323226,51.844836],[-0.323318,51.843105],[-0.322251,51.839083],[-0.320372,51.837905],[-0.319398,51.836655],[-0.315539,51.836366],[-0.307792,51.835103],[-0.30532,51.835146],[-0.302538,51.835945],[-0.301076,51.835737],[-0.299395,51.834928],[-0.298343,51.835339],[-0.295841,51.834872],[-0.29599,51.834307],[-0.29199,51.834806],[-0.290787,51.835673],[-0.284541,51.834936],[-0.280095,51.834736],[-0.273536,51.835365],[-0.272795,51.836506],[-0.27302,51.83969],[-0.268129,51.842208],[-0.266394,51.841776],[-0.259559,51.844759],[-0.257025,51.845448],[-0.253945,51.844537],[-0.247959,51.846234],[-0.245275,51.844583],[-0.245028,51.843511],[-0.243011,51.842726],[-0.243043,51.841805],[-0.244953,51.839417],[-0.244904,51.838822],[-0.241714,51.836343],[-0.242427,51.835886],[-0.240435,51.834959],[-0.239009,51.834994],[-0.23708,51.836451],[-0.235989,51.836239],[-0.230727,51.836771],[-0.229129,51.836064],[-0.225681,51.837645],[-0.226925,51.835895],[-0.226372,51.834464],[-0.224911,51.833234],[-0.221657,51.834097],[-0.223402,51.835305],[-0.219847,51.836688],[-0.220192,51.837621],[-0.218682,51.838414],[-0.222577,51.839009],[-0.224195,51.840215],[-0.223423,51.841314],[-0.225996,51.843719],[-0.225758,51.844544],[-0.223949,51.84664],[-0.223025,51.84622],[-0.222346,51.844699],[-0.21826,51.846634],[-0.2165,51.848948],[-0.212926,51.851396],[-0.210414,51.849854],[-0.211301,51.849358],[-0.208716,51.84758],[-0.205963,51.846399],[-0.208233,51.844697],[-0.212181,51.842495],[-0.212705,51.841567],[-0.215244,51.840046],[-0.214572,51.839603],[-0.211987,51.840574],[-0.210602,51.840443],[-0.208129,51.841965],[-0.205414,51.84438],[-0.203948,51.844899],[-0.201462,51.843536],[-0.199163,51.843957],[-0.19943,51.844592],[-0.197555,51.846138],[-0.197176,51.848926],[-0.196415,51.849549],[-0.197635,51.85023],[-0.199063,51.849732],[-0.202004,51.85152],[-0.203644,51.85323],[-0.205173,51.853305],[-0.20669,51.854263],[-0.204945,51.855276],[-0.20422,51.85504],[-0.200887,51.856627],[-0.200098,51.856451],[-0.198742,51.857772],[-0.1976,51.857694],[-0.196832,51.85938],[-0.191813,51.85732],[-0.190499,51.858227],[-0.189665,51.857799],[-0.186403,51.859423],[-0.185895,51.860246],[-0.180961,51.860133],[-0.178582,51.859043],[-0.176075,51.858514],[-0.175994,51.856754],[-0.172785,51.856588],[-0.169628,51.857232],[-0.169019,51.858108],[-0.169529,51.859297],[-0.164495,51.861833],[-0.166667,51.863573],[-0.16725,51.865541],[-0.167229,51.868201],[-0.170573,51.870398],[-0.170396,51.871146],[-0.171197,51.873594],[-0.173585,51.875331],[-0.180221,51.87685],[-0.18467,51.878453],[-0.191903,51.882924],[-0.19329,51.882601],[-0.195957,51.882943],[-0.197957,51.882161],[-0.200854,51.881737],[-0.204204,51.880138],[-0.2048,51.883521],[-0.205898,51.883134],[-0.207633,51.885464],[-0.209274,51.886919],[-0.210664,51.889652],[-0.20851,51.890122],[-0.209929,51.891876],[-0.212696,51.894253],[-0.215469,51.894277],[-0.216013,51.896142],[-0.218997,51.895964],[-0.225276,51.893236],[-0.224859,51.895585],[-0.225922,51.897587],[-0.227713,51.898931],[-0.229679,51.898098],[-0.230536,51.898889],[-0.229338,51.899446],[-0.230092,51.901211],[-0.229826,51.902695],[-0.228876,51.903473],[-0.232663,51.903617],[-0.232092,51.904239],[-0.234372,51.905255],[-0.232962,51.907274],[-0.231476,51.908511],[-0.229987,51.911369],[-0.228714,51.913112],[-0.22808,51.91694],[-0.229306,51.917232],[-0.226072,51.920833],[-0.225917,51.922238],[-0.224659,51.922486],[-0.225434,51.924187],[-0.226487,51.923973],[-0.227701,51.924569],[-0.22701,51.925891],[-0.227725,51.926947],[-0.224885,51.929352],[-0.22657,51.930113],[-0.220068,51.930968],[-0.217187,51.930109],[-0.216707,51.930564],[-0.210263,51.930018],[-0.209999,51.928388],[-0.207426,51.929775],[-0.204928,51.928545],[-0.202352,51.930556],[-0.200403,51.92924],[-0.19854,51.928793],[-0.19713,51.930469],[-0.194384,51.930434],[-0.195171,51.92924],[-0.193143,51.927699],[-0.190307,51.928672],[-0.18795,51.928467],[-0.18713,51.929893],[-0.184607,51.932413],[-0.175672,51.930603],[-0.174117,51.929334],[-0.172516,51.928557],[-0.168075,51.927956],[-0.166511,51.926721],[-0.164629,51.926861],[-0.163165,51.922276],[-0.163479,51.921746],[-0.162186,51.920342],[-0.159923,51.920196],[-0.160048,51.921292],[-0.155244,51.923909],[-0.155245,51.925531],[-0.152267,51.926484],[-0.154799,51.9296],[-0.151656,51.930859],[-0.150694,51.931844],[-0.148499,51.933131],[-0.145267,51.934055],[-0.142771,51.932437],[-0.138339,51.932988],[-0.130027,51.931423],[-0.124783,51.929301],[-0.122365,51.929051],[-0.119283,51.928298],[-0.119144,51.930603],[-0.120584,51.930966],[-0.11755,51.93425],[-0.116675,51.936176],[-0.118427,51.937033],[-0.120527,51.939829],[-0.120806,51.940815],[-0.120165,51.942188],[-0.117005,51.94204],[-0.115703,51.942493],[-0.110155,51.941901],[-0.107543,51.943919],[-0.107263,51.946326],[-0.106247,51.94878],[-0.107012,51.953959],[-0.10433,51.953989],[-0.098246,51.955148],[-0.097464,51.954439],[-0.094194,51.956011],[-0.092525,51.956238],[-0.088364,51.959552],[-0.088732,51.960003],[-0.087613,51.961729],[-0.085914,51.961673],[-0.080236,51.966017],[-0.077183,51.967196],[-0.077873,51.967655],[-0.077716,51.969093],[-0.075319,51.969541],[-0.074657,51.971164],[-0.070723,51.971293],[-0.0696,51.966337],[-0.068444,51.964426],[-0.067078,51.959694],[-0.06554,51.956845],[-0.062635,51.957715],[-0.058825,51.957752],[-0.057025,51.958442],[-0.051146,51.962609],[-0.045915,51.964771],[-0.042176,51.967686],[-0.04019,51.967701],[-0.038582,51.969122],[-0.038535,51.971417],[-0.040037,51.973009],[-0.040876,51.974961],[-0.043506,51.977358],[-0.045302,51.978073],[-0.047084,51.978127],[-0.047953,51.979737],[-0.0406,51.981385],[-0.038104,51.981668],[-0.032735,51.983415],[-0.030629,51.983814],[-0.03153,51.984919],[-0.029931,51.987346],[-0.026487,51.98741],[-0.025652,51.995154],[-0.023096,51.994962],[-0.0231,51.996159],[-0.023734,51.99717],[-0.013498,51.996375],[-0.010009,51.993325],[-0.003036,51.993446],[-0.0018,51.99265],[-0.001246,51.98956],[-0.002024,51.989442],[-0.001503,51.986977],[0.000248,51.983802],[0.002015,51.984241],[0.003475,51.983521],[0.00579,51.983755],[0.00701,51.984883],[0.008806,51.984795],[0.010089,51.982253],[0.012905,51.982475],[0.012722,51.98397],[0.015964,51.984149],[0.016211,51.983864],[0.023271,51.984371],[0.022648,51.988071],[0.026218,51.987984],[0.032269,51.987038],[0.035026,51.989629],[0.038346,51.988946],[0.037838,51.988461],[0.037756,51.986852],[0.038541,51.9864],[0.041706,51.98655],[0.042324,51.987264],[0.044573,51.986944],[0.043529,51.986029],[0.043714,51.984807],[0.04858,51.984567],[0.058428,51.981323],[0.064739,51.980443],[0.066907,51.979807],[0.069061,51.984043],[0.071018,51.984956],[0.07247,51.987414],[0.073058,51.992208],[0.073806,51.994268],[0.074322,52.000861],[0.07415,52.001407],[0.072195,52.002702],[0.071021,52.00274],[0.070196,52.004362],[0.068127,52.005789]]]},"properties":{"LAD22CD":"E07000099","LAD22NM":"North Hertfordshire","BNG_E":522191,"BNG_N":230255,"LONG":-0.22315,"LAT":51.95737,"GlobalID":"b0b5146a-03ab-479c-977b-bdf72eb7acdb"},"id":124}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.375558,51.692912],[-0.375943,51.693832],[-0.375723,51.695618],[-0.376466,51.69702],[-0.376175,51.698157],[-0.377164,51.700036],[-0.377213,51.701667],[-0.37886,51.701692],[-0.378732,51.70427],[-0.380803,51.705202],[-0.380775,51.706989],[-0.383655,51.7076],[-0.392717,51.708418],[-0.39642,51.709509],[-0.403015,51.712174],[-0.404991,51.712544],[-0.404419,51.713415],[-0.405873,51.7138],[-0.402557,51.71807],[-0.403454,51.719635],[-0.40246,51.721159],[-0.408923,51.72128],[-0.40954,51.721888],[-0.409363,51.723725],[-0.406599,51.724418],[-0.4075,51.725641],[-0.409274,51.725815],[-0.410116,51.729969],[-0.411888,51.732075],[-0.415228,51.73202],[-0.416165,51.732612],[-0.418148,51.735336],[-0.418131,51.737186],[-0.42208,51.740837],[-0.425325,51.740119],[-0.426485,51.739211],[-0.426095,51.738447],[-0.434912,51.735931],[-0.434547,51.735344],[-0.43831,51.734463],[-0.440455,51.73345],[-0.440669,51.7324],[-0.442373,51.731401],[-0.439929,51.728258],[-0.444988,51.726597],[-0.447628,51.726073],[-0.448438,51.726305],[-0.450085,51.725532],[-0.45003,51.722689],[-0.449318,51.720483],[-0.448442,51.719221],[-0.446662,51.718387],[-0.445948,51.715934],[-0.444169,51.713619],[-0.442935,51.712662],[-0.442568,51.70983],[-0.441569,51.707904],[-0.442294,51.706147],[-0.440262,51.701014],[-0.443366,51.700628],[-0.446447,51.699576],[-0.448644,51.698344],[-0.454444,51.697263],[-0.455077,51.696862],[-0.463782,51.695341],[-0.466813,51.695885],[-0.471885,51.697548],[-0.475146,51.698086],[-0.475872,51.698539],[-0.481181,51.698244],[-0.48394,51.698508],[-0.489489,51.698129],[-0.494787,51.699022],[-0.497246,51.699781],[-0.502949,51.700535],[-0.511894,51.704227],[-0.512501,51.705311],[-0.515495,51.706578],[-0.518591,51.70406],[-0.520668,51.698183],[-0.522362,51.696606],[-0.523015,51.695081],[-0.523158,51.690472],[-0.524546,51.688056],[-0.524343,51.685391],[-0.523727,51.683765],[-0.524273,51.682113],[-0.524986,51.679976],[-0.524934,51.678721],[-0.522465,51.678813],[-0.521655,51.67984],[-0.518977,51.680264],[-0.516806,51.680203],[-0.515394,51.679435],[-0.513486,51.679877],[-0.510897,51.679817],[-0.509818,51.678688],[-0.507928,51.677979],[-0.505108,51.673077],[-0.507893,51.671959],[-0.51002,51.669881],[-0.512468,51.668601],[-0.514064,51.667046],[-0.514719,51.665453],[-0.517512,51.667055],[-0.520995,51.668045],[-0.522532,51.663569],[-0.522361,51.659346],[-0.522778,51.658398],[-0.524255,51.657937],[-0.532626,51.663007],[-0.533275,51.660922],[-0.536339,51.660364],[-0.536463,51.655491],[-0.534254,51.652953],[-0.536666,51.652369],[-0.530928,51.649133],[-0.531958,51.64768],[-0.534905,51.645632],[-0.537392,51.642907],[-0.538838,51.640448],[-0.539261,51.638039],[-0.534131,51.637151],[-0.535641,51.635809],[-0.53567,51.634815],[-0.534541,51.629901],[-0.531981,51.625512],[-0.530059,51.617151],[-0.528231,51.614698],[-0.526301,51.613778],[-0.524283,51.610204],[-0.522502,51.605062],[-0.520595,51.601844],[-0.519552,51.600973],[-0.517837,51.60025],[-0.511405,51.599663],[-0.503262,51.599865],[-0.500596,51.59969],[-0.500332,51.601251],[-0.499104,51.601378],[-0.497637,51.600879],[-0.496687,51.601379],[-0.496314,51.602398],[-0.497164,51.603221],[-0.497263,51.604903],[-0.498571,51.608297],[-0.498317,51.609477],[-0.498946,51.611107],[-0.497894,51.613238],[-0.497886,51.614248],[-0.497044,51.614917],[-0.49539,51.618688],[-0.496809,51.620501],[-0.49926,51.621109],[-0.500155,51.622068],[-0.500025,51.623678],[-0.498342,51.624784],[-0.497634,51.626672],[-0.500231,51.628655],[-0.499262,51.63048],[-0.497043,51.631698],[-0.493548,51.630558],[-0.491537,51.630767],[-0.489027,51.627594],[-0.487858,51.626763],[-0.476691,51.621901],[-0.469169,51.616831],[-0.45976,51.613142],[-0.45716,51.612302],[-0.455348,51.612701],[-0.448879,51.615325],[-0.445549,51.619625],[-0.443256,51.619503],[-0.440575,51.620073],[-0.438282,51.619922],[-0.43273,51.618349],[-0.428396,51.617752],[-0.426482,51.617007],[-0.420903,51.616933],[-0.416617,51.616425],[-0.411001,51.613792],[-0.40405,51.613184],[-0.399465,51.613408],[-0.392679,51.615183],[-0.385872,51.61582],[-0.384572,51.616168],[-0.382026,51.617423],[-0.37584,51.618188],[-0.368175,51.620652],[-0.365537,51.621334],[-0.363432,51.622538],[-0.362621,51.623505],[-0.364595,51.624917],[-0.369879,51.631213],[-0.373229,51.634513],[-0.375147,51.635818],[-0.377374,51.637733],[-0.378533,51.637117],[-0.380822,51.638589],[-0.382302,51.637837],[-0.386292,51.63822],[-0.39022,51.640042],[-0.394292,51.637721],[-0.399776,51.64001],[-0.398133,51.641102],[-0.402383,51.643374],[-0.402793,51.643868],[-0.40473,51.643793],[-0.408091,51.642735],[-0.409291,51.640617],[-0.41088,51.639951],[-0.412449,51.640697],[-0.414923,51.641024],[-0.41889,51.640752],[-0.428825,51.641319],[-0.431121,51.642096],[-0.428489,51.644267],[-0.426033,51.645365],[-0.427614,51.646868],[-0.430351,51.648521],[-0.427666,51.6496],[-0.426552,51.650411],[-0.426572,51.652093],[-0.424448,51.654982],[-0.427835,51.655692],[-0.427795,51.656266],[-0.429995,51.656354],[-0.432462,51.657313],[-0.436215,51.659909],[-0.437323,51.661238],[-0.437602,51.663298],[-0.438289,51.664348],[-0.436186,51.668207],[-0.438289,51.670566],[-0.439543,51.67275],[-0.435152,51.672847],[-0.432398,51.672609],[-0.430945,51.670298],[-0.428291,51.670554],[-0.427524,51.674233],[-0.430303,51.676912],[-0.431103,51.679026],[-0.429656,51.680008],[-0.431053,51.680944],[-0.431347,51.682464],[-0.43003,51.683421],[-0.428157,51.684057],[-0.427379,51.685437],[-0.425263,51.68534],[-0.415657,51.687335],[-0.412837,51.688638],[-0.407318,51.69662],[-0.405781,51.696497],[-0.403195,51.699913],[-0.402413,51.701943],[-0.396013,51.70035],[-0.388334,51.696403],[-0.3792,51.695346],[-0.378602,51.694258],[-0.378742,51.692686],[-0.375558,51.692912]]]},"properties":{"LAD22CD":"E07000102","LAD22NM":"Three Rivers","BNG_E":507313,"BNG_N":196418,"LONG":-0.45005,"LAT":51.65632,"GlobalID":"92b65960-185f-4bbb-a9b6-330662da530a"},"id":125}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.375558,51.692912],[-0.378742,51.692686],[-0.378602,51.694258],[-0.3792,51.695346],[-0.388334,51.696403],[-0.396013,51.70035],[-0.402413,51.701943],[-0.403195,51.699913],[-0.405781,51.696497],[-0.407318,51.69662],[-0.412837,51.688638],[-0.415657,51.687335],[-0.425263,51.68534],[-0.427379,51.685437],[-0.428157,51.684057],[-0.43003,51.683421],[-0.431347,51.682464],[-0.431053,51.680944],[-0.429656,51.680008],[-0.431103,51.679026],[-0.430303,51.676912],[-0.427524,51.674233],[-0.428291,51.670554],[-0.430945,51.670298],[-0.432398,51.672609],[-0.435152,51.672847],[-0.439543,51.67275],[-0.438289,51.670566],[-0.436186,51.668207],[-0.438289,51.664348],[-0.437602,51.663298],[-0.437323,51.661238],[-0.436215,51.659909],[-0.432462,51.657313],[-0.429995,51.656354],[-0.427795,51.656266],[-0.427835,51.655692],[-0.424448,51.654982],[-0.426572,51.652093],[-0.426552,51.650411],[-0.427666,51.6496],[-0.430351,51.648521],[-0.427614,51.646868],[-0.426033,51.645365],[-0.428489,51.644267],[-0.431121,51.642096],[-0.428825,51.641319],[-0.41889,51.640752],[-0.414923,51.641024],[-0.412449,51.640697],[-0.41088,51.639951],[-0.409291,51.640617],[-0.408091,51.642735],[-0.40473,51.643793],[-0.402793,51.643868],[-0.402383,51.643374],[-0.398133,51.641102],[-0.399776,51.64001],[-0.394292,51.637721],[-0.39022,51.640042],[-0.386292,51.63822],[-0.382302,51.637837],[-0.380822,51.638589],[-0.378533,51.637117],[-0.377374,51.637733],[-0.379961,51.639617],[-0.376667,51.640333],[-0.37532,51.64157],[-0.375796,51.641959],[-0.371634,51.643434],[-0.376004,51.644718],[-0.37817,51.646518],[-0.380641,51.648116],[-0.383317,51.648502],[-0.383298,51.652439],[-0.386831,51.65724],[-0.385277,51.660405],[-0.38647,51.661881],[-0.386808,51.663227],[-0.385548,51.664139],[-0.38566,51.664986],[-0.383622,51.665807],[-0.382994,51.668157],[-0.384093,51.669228],[-0.382526,51.670418],[-0.379179,51.670033],[-0.37471,51.673549],[-0.372037,51.676201],[-0.368766,51.678327],[-0.370405,51.67892],[-0.371011,51.68152],[-0.369424,51.683559],[-0.369491,51.684292],[-0.372342,51.684704],[-0.378287,51.688093],[-0.378723,51.689894],[-0.375358,51.692512],[-0.375558,51.692912]]]},"properties":{"LAD22CD":"E07000103","LAD22NM":"Watford","BNG_E":510441,"BNG_N":198197,"LONG":-0.40429,"LAT":51.6717,"GlobalID":"e5c58013-b42b-44b0-a429-1bc71f3b3abe"},"id":126}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.973279,51.268595],[0.971971,51.269193],[0.968189,51.269262],[0.964906,51.268052],[0.961499,51.268632],[0.958151,51.268505],[0.955032,51.270246],[0.955294,51.269183],[0.954194,51.267264],[0.954343,51.266609],[0.952423,51.265602],[0.950305,51.262356],[0.950148,51.260614],[0.951112,51.25758],[0.949122,51.256034],[0.941923,51.253441],[0.937968,51.253368],[0.933518,51.255765],[0.933423,51.256515],[0.931332,51.258027],[0.92693,51.259607],[0.923728,51.259415],[0.921864,51.258141],[0.92065,51.257742],[0.920108,51.256873],[0.91989,51.254957],[0.920849,51.252577],[0.91953,51.251103],[0.916775,51.25125],[0.91028,51.2502],[0.909785,51.250689],[0.905321,51.250186],[0.903705,51.24906],[0.906398,51.247794],[0.904972,51.245595],[0.902373,51.24524],[0.896724,51.247017],[0.892057,51.247636],[0.89141,51.246716],[0.888651,51.245081],[0.882455,51.242865],[0.881141,51.241258],[0.880051,51.239026],[0.876318,51.240095],[0.871782,51.239759],[0.867761,51.239883],[0.863494,51.238872],[0.86103,51.235332],[0.859873,51.230838],[0.854511,51.230698],[0.851452,51.23155],[0.848605,51.233586],[0.845719,51.234431],[0.841768,51.237102],[0.835317,51.23192],[0.825193,51.228566],[0.823288,51.226603],[0.822169,51.224348],[0.816301,51.225197],[0.812062,51.227975],[0.809783,51.227116],[0.80395,51.22965],[0.800169,51.229482],[0.799539,51.228476],[0.798238,51.229074],[0.797326,51.228074],[0.795118,51.228534],[0.795539,51.229426],[0.794063,51.230181],[0.791246,51.230826],[0.792179,51.232015],[0.792379,51.233357],[0.795764,51.236877],[0.792657,51.238073],[0.788918,51.238436],[0.787265,51.239045],[0.782455,51.239365],[0.778537,51.234093],[0.777519,51.231347],[0.772365,51.228373],[0.771287,51.227098],[0.769612,51.226063],[0.765804,51.224706],[0.761279,51.224487],[0.760161,51.224042],[0.75873,51.221862],[0.754602,51.218381],[0.751221,51.219366],[0.750676,51.217428],[0.749584,51.216031],[0.744583,51.214661],[0.743788,51.212825],[0.744081,51.212072],[0.746014,51.211749],[0.74702,51.21059],[0.745477,51.209326],[0.743188,51.208457],[0.740072,51.20814],[0.737864,51.209212],[0.735667,51.209562],[0.733773,51.209081],[0.729009,51.209271],[0.727779,51.208856],[0.725726,51.209006],[0.723979,51.210588],[0.723878,51.211414],[0.716826,51.211141],[0.716235,51.20944],[0.715568,51.209447],[0.713919,51.207236],[0.712093,51.206063],[0.710197,51.203889],[0.70963,51.201463],[0.710178,51.200167],[0.709782,51.199618],[0.708031,51.199697],[0.702351,51.200749],[0.701239,51.200073],[0.699411,51.199953],[0.701838,51.197339],[0.699299,51.196305],[0.69622,51.194216],[0.694489,51.194481],[0.692786,51.195567],[0.688378,51.192579],[0.685755,51.19222],[0.683746,51.191126],[0.68186,51.187975],[0.683715,51.18675],[0.683889,51.18543],[0.684934,51.184382],[0.684094,51.181301],[0.684947,51.178696],[0.680818,51.179219],[0.67841,51.179201],[0.676706,51.177344],[0.675912,51.175939],[0.676095,51.174753],[0.67738,51.17283],[0.675216,51.171825],[0.672164,51.171528],[0.670522,51.170812],[0.668738,51.171455],[0.665353,51.17122],[0.665903,51.170349],[0.66608,51.168592],[0.666633,51.168149],[0.663259,51.166731],[0.661408,51.164723],[0.658678,51.163838],[0.658963,51.160813],[0.657605,51.158128],[0.655502,51.157152],[0.65315,51.156702],[0.652204,51.155334],[0.6502,51.154578],[0.647644,51.152671],[0.64887,51.150594],[0.646816,51.149348],[0.649392,51.147738],[0.648188,51.146469],[0.650002,51.145391],[0.646064,51.143858],[0.643981,51.143562],[0.641182,51.141302],[0.639475,51.141293],[0.640399,51.140647],[0.642164,51.140463],[0.640106,51.138121],[0.636453,51.136839],[0.6331,51.136808],[0.629585,51.137312],[0.628559,51.137818],[0.627855,51.138942],[0.626286,51.139019],[0.624569,51.137797],[0.624461,51.136409],[0.623465,51.135785],[0.623898,51.134414],[0.61932,51.132167],[0.617261,51.133241],[0.613775,51.132714],[0.613751,51.132134],[0.611179,51.132262],[0.609166,51.133309],[0.607924,51.132587],[0.606478,51.132397],[0.605932,51.131584],[0.603649,51.131674],[0.602943,51.130037],[0.603796,51.128504],[0.606591,51.127049],[0.608503,51.12554],[0.609779,51.1217],[0.6089,51.119186],[0.609024,51.117869],[0.604132,51.116184],[0.599197,51.115363],[0.595538,51.113017],[0.592646,51.111865],[0.590369,51.11134],[0.595599,51.108338],[0.5956,51.105908],[0.596172,51.105459],[0.595212,51.10409],[0.596501,51.09948],[0.595397,51.097912],[0.595783,51.096719],[0.594579,51.094142],[0.596952,51.090661],[0.601218,51.091044],[0.605059,51.090417],[0.606951,51.090938],[0.609823,51.090666],[0.611356,51.08932],[0.620601,51.089607],[0.620113,51.090505],[0.621503,51.091121],[0.625812,51.089599],[0.62851,51.091226],[0.629378,51.091421],[0.629287,51.08954],[0.631284,51.088183],[0.633561,51.087997],[0.635849,51.086639],[0.638264,51.086011],[0.642581,51.082795],[0.646675,51.083281],[0.642564,51.079754],[0.642648,51.078955],[0.64471,51.077888],[0.640869,51.075729],[0.638829,51.075269],[0.636582,51.073818],[0.633864,51.070815],[0.628467,51.067757],[0.627294,51.066578],[0.618707,51.065552],[0.613068,51.063706],[0.611717,51.063546],[0.611977,51.062482],[0.609806,51.061597],[0.610521,51.060962],[0.607872,51.058455],[0.606863,51.05703],[0.605539,51.05647],[0.605007,51.054576],[0.605476,51.053658],[0.604298,51.052564],[0.603666,51.051071],[0.60157,51.049656],[0.600391,51.049747],[0.599675,51.046142],[0.59708,51.044483],[0.595674,51.042184],[0.5935,51.041852],[0.592457,51.039982],[0.593246,51.03863],[0.593392,51.037291],[0.595054,51.036447],[0.59398,51.034872],[0.595131,51.0337],[0.593332,51.031449],[0.594197,51.030563],[0.596096,51.030383],[0.599317,51.029498],[0.602457,51.026762],[0.597541,51.025166],[0.595849,51.024945],[0.597255,51.020817],[0.606064,51.019961],[0.606163,51.017302],[0.604729,51.014073],[0.6046,51.012465],[0.605391,51.01207],[0.609382,51.012364],[0.611667,51.012021],[0.615146,51.013614],[0.616046,51.014984],[0.618295,51.015209],[0.620746,51.016052],[0.622447,51.015704],[0.624607,51.016122],[0.625998,51.017335],[0.627662,51.017852],[0.630382,51.017366],[0.633636,51.014015],[0.636052,51.012216],[0.637163,51.011877],[0.639286,51.012021],[0.643835,51.014546],[0.645692,51.015188],[0.645759,51.016199],[0.64726,51.016791],[0.648154,51.015941],[0.649824,51.015179],[0.652217,51.015209],[0.654992,51.014719],[0.656455,51.01516],[0.65785,51.017121],[0.658652,51.017582],[0.661305,51.017792],[0.664929,51.01611],[0.670941,51.01142],[0.671756,51.008987],[0.672943,51.008136],[0.675501,51.004348],[0.678942,51.002265],[0.68096,51.001537],[0.682238,51.000548],[0.689473,50.999307],[0.69922,50.99849],[0.701227,50.997322],[0.702075,50.995971],[0.70677,50.993602],[0.705783,50.995104],[0.708515,50.997741],[0.711255,50.998472],[0.721142,50.999462],[0.725407,50.999214],[0.731346,51.000395],[0.731467,50.99997],[0.737759,51.000823],[0.741094,51.000644],[0.748087,50.998392],[0.749384,50.9975],[0.751333,50.997242],[0.757426,50.995443],[0.772844,50.992732],[0.775726,50.991998],[0.778615,50.990818],[0.778957,50.989492],[0.785769,50.997994],[0.830872,51.049371],[0.832097,51.048418],[0.833943,51.047911],[0.835495,51.048182],[0.837651,51.04584],[0.837211,51.044845],[0.837883,51.044071],[0.83428,51.044655],[0.832803,51.044588],[0.831169,51.043593],[0.831319,51.041291],[0.83355,51.041465],[0.833608,51.040026],[0.840117,51.038941],[0.839224,51.036167],[0.839658,51.03452],[0.837518,51.032645],[0.839094,51.031354],[0.84035,51.031941],[0.845351,51.032617],[0.84622,51.033075],[0.849488,51.03334],[0.852618,51.032054],[0.85481,51.031763],[0.854666,51.032595],[0.856754,51.032553],[0.855869,51.033932],[0.856852,51.035257],[0.855924,51.036053],[0.856067,51.039382],[0.855526,51.040265],[0.855445,51.042213],[0.85337,51.042292],[0.853441,51.043149],[0.855285,51.043695],[0.855739,51.045017],[0.858001,51.044471],[0.860443,51.044314],[0.861471,51.043792],[0.866565,51.043951],[0.867017,51.043179],[0.869684,51.044113],[0.869341,51.045141],[0.87109,51.045585],[0.870908,51.047214],[0.870341,51.048231],[0.867766,51.047727],[0.868882,51.049204],[0.870473,51.049478],[0.870617,51.051035],[0.869003,51.051611],[0.870435,51.05231],[0.872692,51.052802],[0.875277,51.050994],[0.877239,51.051633],[0.878108,51.051236],[0.88145,51.048338],[0.882393,51.046334],[0.883194,51.043691],[0.882131,51.042712],[0.883972,51.041833],[0.885583,51.040218],[0.887941,51.03999],[0.890206,51.041108],[0.89126,51.039592],[0.893156,51.039453],[0.893883,51.037402],[0.894482,51.036986],[0.896388,51.037875],[0.900123,51.038657],[0.899691,51.043023],[0.897974,51.044919],[0.901149,51.049077],[0.903325,51.050462],[0.906702,51.051225],[0.909775,51.049958],[0.913143,51.05031],[0.914439,51.049812],[0.915871,51.050433],[0.914991,51.053391],[0.916291,51.053444],[0.916752,51.052153],[0.919469,51.052602],[0.91967,51.051885],[0.922794,51.052075],[0.921336,51.056116],[0.92651,51.056493],[0.927358,51.057853],[0.931584,51.058961],[0.932512,51.060475],[0.934274,51.061147],[0.935129,51.058681],[0.936565,51.058349],[0.939821,51.057063],[0.943791,51.056004],[0.944128,51.054906],[0.946601,51.055267],[0.949337,51.05703],[0.951812,51.056951],[0.95439,51.057808],[0.954392,51.05864],[0.955645,51.059381],[0.958234,51.060259],[0.960695,51.060162],[0.96359,51.060737],[0.966193,51.062339],[0.968929,51.062926],[0.968169,51.067025],[0.968362,51.068735],[0.966677,51.068803],[0.966652,51.070738],[0.967744,51.071589],[0.967448,51.077065],[0.969731,51.076951],[0.970012,51.077865],[0.971147,51.078271],[0.972785,51.079699],[0.97554,51.079018],[0.977632,51.081174],[0.976588,51.083167],[0.976943,51.0846],[0.980233,51.086851],[0.979939,51.087486],[0.98026,51.089595],[0.983466,51.091086],[0.982389,51.092723],[0.983714,51.093541],[0.985173,51.0976],[0.985415,51.100121],[0.983915,51.100279],[0.983168,51.10132],[0.980303,51.103613],[0.979801,51.10459],[0.978506,51.104377],[0.977973,51.105161],[0.978594,51.106126],[0.980447,51.107464],[0.983391,51.10832],[0.981691,51.110048],[0.982209,51.110878],[0.979767,51.112187],[0.981854,51.11389],[0.983717,51.113859],[0.983863,51.114572],[0.986132,51.115353],[0.988852,51.11758],[0.989738,51.117126],[0.99176,51.117684],[0.993378,51.117461],[0.99542,51.118168],[0.996257,51.118963],[0.996279,51.119897],[0.995419,51.122322],[1.000508,51.121248],[0.998976,51.118898],[1.000461,51.118397],[1.003041,51.118225],[1.004032,51.118982],[1.006441,51.117774],[1.00796,51.116556],[1.009277,51.116266],[1.011246,51.117228],[1.012118,51.1172],[1.014879,51.118792],[1.016873,51.119404],[1.016552,51.121263],[1.01552,51.121847],[1.016786,51.122861],[1.017581,51.125424],[1.020565,51.124078],[1.02213,51.123843],[1.023875,51.125079],[1.02293,51.12561],[1.02445,51.128572],[1.026909,51.129519],[1.029241,51.132538],[1.025088,51.133922],[1.022448,51.133948],[1.020568,51.134664],[1.016492,51.14023],[1.018013,51.141291],[1.016561,51.14226],[1.013088,51.142791],[1.012028,51.143708],[1.010225,51.144161],[1.008462,51.145538],[1.009762,51.147956],[1.01242,51.149897],[1.013282,51.151082],[1.011929,51.151379],[1.011882,51.152501],[1.009497,51.154097],[1.016923,51.161201],[1.015778,51.161499],[1.013567,51.16135],[1.01175,51.16259],[1.009572,51.163439],[1.008213,51.163304],[1.00304,51.164434],[0.998437,51.164741],[0.998604,51.166598],[1.00071,51.16822],[1.001282,51.169493],[0.99949,51.172038],[1.001694,51.175593],[1.00279,51.178848],[1.00397,51.180053],[0.997841,51.182667],[0.989873,51.187924],[0.9894,51.190233],[0.989703,51.190782],[0.993641,51.191009],[0.997061,51.191724],[1.002915,51.197389],[1.003276,51.202926],[1.005398,51.208486],[1.004505,51.211743],[1.002668,51.212647],[1.000146,51.212858],[0.999416,51.213842],[1.00069,51.215254],[0.997227,51.221286],[0.995118,51.222794],[0.991799,51.223562],[0.990327,51.224307],[0.990569,51.22605],[0.991378,51.226791],[0.990558,51.22829],[0.991336,51.230411],[0.986174,51.235868],[0.986458,51.237836],[0.987458,51.238395],[0.989836,51.240813],[0.990896,51.242467],[0.990412,51.245797],[0.992552,51.246696],[0.994896,51.248098],[0.995409,51.248775],[0.997633,51.249769],[0.998238,51.251228],[0.996574,51.251911],[0.993135,51.254345],[0.991644,51.255136],[0.987233,51.256913],[0.979197,51.26268],[0.973406,51.267437],[0.973279,51.268595]]]},"properties":{"LAD22CD":"E07000105","LAD22NM":"Ashford","BNG_E":597640,"BNG_N":140644,"LONG":0.823374,"LAT":51.13096,"GlobalID":"b285271f-db2e-4f1f-aa12-465e62d2859d"},"id":127}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.231677,51.328657],[1.231994,51.32811],[1.231243,51.326751],[1.233072,51.325962],[1.234525,51.326741],[1.234154,51.32773],[1.232402,51.328826],[1.231677,51.328657]]],[[[1.224175,51.379334],[1.21584,51.38008],[1.199339,51.379894],[1.19646,51.378939],[1.192802,51.378365],[1.19211,51.377965],[1.182436,51.377318],[1.17835,51.376709],[1.173155,51.375415],[1.166095,51.374508],[1.149082,51.373142],[1.136746,51.373043],[1.12907,51.373309],[1.126652,51.37349],[1.119119,51.372157],[1.112736,51.372001],[1.098978,51.372624],[1.098507,51.370544],[1.096943,51.36923],[1.095074,51.368626],[1.088905,51.368141],[1.082293,51.368306],[1.074369,51.368936],[1.068169,51.368946],[1.066457,51.368534],[1.065733,51.367289],[1.063156,51.366299],[1.059746,51.365835],[1.054248,51.365644],[1.033181,51.365577],[1.030641,51.364509],[1.025207,51.364515],[1.025423,51.363156],[1.023276,51.361525],[1.022542,51.361333],[1.021594,51.359867],[1.019794,51.359021],[1.017325,51.357104],[1.015389,51.355068],[1.013627,51.353923],[1.012853,51.352514],[1.011519,51.351705],[1.007699,51.349936],[1.00144,51.348313],[0.990266,51.346804],[0.982305,51.34696],[0.981186,51.346663],[0.978299,51.346617],[0.976845,51.346193],[0.968105,51.346489],[0.964001,51.345552],[0.960454,51.345162],[0.955754,51.34514],[0.950472,51.345598],[0.958152,51.337953],[0.961099,51.337525],[0.962754,51.336933],[0.963907,51.335948],[0.965237,51.336557],[0.967678,51.336357],[0.967593,51.337151],[0.971964,51.338244],[0.972368,51.336502],[0.973725,51.335305],[0.990574,51.324629],[1.000949,51.318988],[1.00511,51.319687],[1.007887,51.319594],[1.009595,51.318674],[1.012461,51.318176],[1.01504,51.316782],[1.015674,51.314581],[1.016985,51.312935],[1.01214,51.311993],[1.006659,51.309637],[1.007578,51.307834],[1.009187,51.307128],[1.009069,51.30579],[1.010283,51.304981],[1.01022,51.303981],[1.011026,51.302916],[1.006233,51.292325],[1.004051,51.288179],[1.005967,51.283783],[0.997565,51.280632],[0.996203,51.2809],[0.993687,51.279724],[0.99057,51.27905],[0.988706,51.279604],[0.985574,51.278157],[0.983224,51.277588],[0.981752,51.277671],[0.983193,51.27467],[0.980167,51.27458],[0.977169,51.272477],[0.976999,51.270172],[0.974635,51.269632],[0.973279,51.268595],[0.973406,51.267437],[0.979197,51.26268],[0.987233,51.256913],[0.991644,51.255136],[0.993135,51.254345],[0.996574,51.251911],[0.998238,51.251228],[0.997633,51.249769],[0.995409,51.248775],[0.994896,51.248098],[0.992552,51.246696],[0.990412,51.245797],[0.990896,51.242467],[0.989836,51.240813],[0.987458,51.238395],[0.986458,51.237836],[0.986174,51.235868],[0.991336,51.230411],[0.990558,51.22829],[0.991378,51.226791],[0.990569,51.22605],[0.990327,51.224307],[0.991799,51.223562],[0.995118,51.222794],[0.997227,51.221286],[1.00069,51.215254],[0.999416,51.213842],[1.000146,51.212858],[1.002668,51.212647],[1.004505,51.211743],[1.005398,51.208486],[1.003276,51.202926],[1.002915,51.197389],[0.997061,51.191724],[0.993641,51.191009],[0.989703,51.190782],[0.9894,51.190233],[0.989873,51.187924],[0.997841,51.182667],[1.00397,51.180053],[1.007686,51.181633],[1.014184,51.181052],[1.017615,51.179461],[1.021289,51.179346],[1.02407,51.180253],[1.028517,51.181005],[1.039838,51.182188],[1.041208,51.183046],[1.042431,51.185529],[1.042044,51.18712],[1.049578,51.184988],[1.050889,51.18646],[1.054763,51.18859],[1.055095,51.191733],[1.058257,51.205004],[1.059409,51.204835],[1.060731,51.203792],[1.063911,51.202151],[1.066543,51.201271],[1.070141,51.20074],[1.069968,51.199362],[1.07461,51.196734],[1.077064,51.194943],[1.078287,51.192982],[1.080358,51.191648],[1.085245,51.190261],[1.089761,51.189727],[1.091198,51.189016],[1.092446,51.189318],[1.094998,51.188648],[1.097309,51.188923],[1.108971,51.186962],[1.112738,51.188646],[1.113585,51.189525],[1.115088,51.194235],[1.114795,51.196954],[1.118458,51.196139],[1.117764,51.193621],[1.117965,51.192591],[1.116701,51.190912],[1.116033,51.1878],[1.120356,51.186567],[1.123205,51.186315],[1.12688,51.185552],[1.131338,51.185698],[1.134513,51.184944],[1.138558,51.183321],[1.140005,51.181597],[1.143794,51.178509],[1.147638,51.177178],[1.149894,51.18527],[1.151464,51.185246],[1.151995,51.188217],[1.152432,51.188237],[1.15363,51.190911],[1.157802,51.19101],[1.15958,51.187877],[1.163762,51.185162],[1.163444,51.184215],[1.169917,51.183948],[1.174354,51.186418],[1.177605,51.187382],[1.179496,51.188288],[1.180573,51.189362],[1.180641,51.190477],[1.183439,51.189892],[1.188266,51.18591],[1.192138,51.183837],[1.194946,51.184299],[1.194331,51.185229],[1.198211,51.186634],[1.197693,51.187099],[1.203085,51.191354],[1.206029,51.193097],[1.207387,51.194225],[1.207785,51.195133],[1.218791,51.203458],[1.222194,51.207395],[1.219347,51.209444],[1.208449,51.213164],[1.202459,51.217591],[1.197144,51.219636],[1.193244,51.220141],[1.190381,51.219562],[1.185548,51.21782],[1.187415,51.219748],[1.18905,51.223307],[1.19194,51.227065],[1.193829,51.230546],[1.195275,51.231698],[1.197679,51.236876],[1.19893,51.238467],[1.200939,51.239938],[1.206336,51.246263],[1.208649,51.248238],[1.211545,51.252427],[1.207681,51.255194],[1.205655,51.254548],[1.204375,51.255439],[1.204381,51.256443],[1.200403,51.257475],[1.201044,51.258699],[1.196861,51.259072],[1.196471,51.257664],[1.195263,51.25609],[1.192641,51.257189],[1.193446,51.259062],[1.194979,51.258879],[1.196431,51.261852],[1.194588,51.262234],[1.195206,51.265418],[1.197087,51.267893],[1.195749,51.2683],[1.194823,51.269317],[1.203453,51.275552],[1.205793,51.276545],[1.206706,51.27832],[1.208071,51.279136],[1.208971,51.280372],[1.210489,51.280916],[1.21043,51.282312],[1.212346,51.282689],[1.211432,51.285073],[1.210386,51.284488],[1.208441,51.284407],[1.208777,51.285437],[1.206842,51.285915],[1.205226,51.285712],[1.203645,51.287222],[1.20274,51.288743],[1.203475,51.289632],[1.201963,51.290067],[1.200001,51.291573],[1.203023,51.292792],[1.204238,51.294365],[1.203106,51.295044],[1.204194,51.296867],[1.206124,51.298772],[1.204444,51.299132],[1.205084,51.300809],[1.205835,51.301312],[1.207495,51.301252],[1.207461,51.302526],[1.208296,51.303669],[1.209932,51.304438],[1.209779,51.305105],[1.211958,51.305129],[1.212949,51.305882],[1.21254,51.306642],[1.213249,51.307406],[1.213184,51.310069],[1.214007,51.311359],[1.216513,51.31041],[1.217046,51.309766],[1.218536,51.309843],[1.219808,51.308865],[1.221702,51.308881],[1.221851,51.310099],[1.219771,51.310642],[1.219225,51.312162],[1.221641,51.31301],[1.223587,51.312298],[1.224756,51.312475],[1.224737,51.313787],[1.22633,51.314187],[1.229383,51.316066],[1.227816,51.317092],[1.22787,51.317652],[1.225839,51.318028],[1.225488,51.318726],[1.225954,51.320215],[1.22484,51.321821],[1.222695,51.322036],[1.222682,51.322973],[1.220361,51.322915],[1.21829,51.322102],[1.217647,51.320901],[1.215186,51.320443],[1.214428,51.321645],[1.21185,51.32253],[1.21094,51.32361],[1.209625,51.323332],[1.205926,51.323664],[1.202889,51.323003],[1.199955,51.321782],[1.199063,51.321066],[1.199483,51.31969],[1.196342,51.319077],[1.194191,51.31679],[1.190008,51.31644],[1.188875,51.314721],[1.187204,51.314215],[1.184255,51.314982],[1.181437,51.314169],[1.178115,51.313823],[1.178415,51.312749],[1.17779,51.311517],[1.174533,51.312165],[1.171876,51.31173],[1.170955,51.310242],[1.165891,51.307805],[1.165727,51.305678],[1.165089,51.305298],[1.161919,51.305015],[1.159509,51.306154],[1.159516,51.307527],[1.163155,51.309421],[1.166538,51.309161],[1.166814,51.308604],[1.170654,51.310325],[1.171011,51.311615],[1.172162,51.312074],[1.174482,51.312369],[1.177821,51.311686],[1.178147,51.312565],[1.177715,51.313733],[1.178522,51.3141],[1.181498,51.314372],[1.184093,51.315171],[1.187828,51.314444],[1.189849,51.316596],[1.194022,51.316905],[1.196436,51.319294],[1.199241,51.319756],[1.198839,51.321201],[1.202374,51.323231],[1.205651,51.32384],[1.209643,51.323574],[1.210718,51.323957],[1.212518,51.32246],[1.214658,51.321808],[1.215753,51.320697],[1.217534,51.32112],[1.217874,51.322154],[1.220152,51.323079],[1.220586,51.323998],[1.222879,51.324269],[1.224148,51.325273],[1.22683,51.325542],[1.229679,51.325178],[1.229305,51.325918],[1.227786,51.326812],[1.230306,51.328657],[1.232189,51.328994],[1.231763,51.330311],[1.230407,51.331675],[1.231895,51.332397],[1.234058,51.332291],[1.235552,51.330734],[1.240301,51.330909],[1.242163,51.330713],[1.245648,51.328795],[1.248319,51.328607],[1.249834,51.329381],[1.246793,51.330211],[1.244746,51.332148],[1.244654,51.333144],[1.242622,51.334768],[1.23788,51.336122],[1.231723,51.339066],[1.230822,51.340104],[1.229748,51.342546],[1.22768,51.344643],[1.227572,51.345488],[1.22861,51.346852],[1.227919,51.348181],[1.225253,51.349297],[1.223253,51.349648],[1.221616,51.349478],[1.220302,51.349916],[1.220586,51.351533],[1.220239,51.352373],[1.217431,51.353839],[1.214417,51.355992],[1.213831,51.356772],[1.210782,51.363615],[1.21155,51.365014],[1.212874,51.366044],[1.214244,51.36636],[1.217168,51.366291],[1.220558,51.366745],[1.228656,51.364502],[1.229273,51.365146],[1.230487,51.368369],[1.230036,51.368932],[1.225964,51.369254],[1.224836,51.370047],[1.225294,51.371671],[1.225155,51.374196],[1.224264,51.377259],[1.224175,51.379334]]]]},"properties":{"LAD22CD":"E07000106","LAD22NM":"Canterbury","BNG_E":616032,"BNG_N":158096,"LONG":1.096342,"LAT":51.28102,"GlobalID":"85dd5a67-7a76-47f3-81b8-4ca1e71cd8e8"},"id":128}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.315465,51.464889],[0.313109,51.466272],[0.310557,51.466774],[0.309809,51.466296],[0.309702,51.465072],[0.310975,51.463517],[0.307745,51.464578],[0.303657,51.46115],[0.302681,51.461295],[0.300336,51.459426],[0.300157,51.457987],[0.297436,51.45763],[0.296996,51.457163],[0.292813,51.455645],[0.290451,51.454521],[0.28445,51.453645],[0.281391,51.453904],[0.279214,51.453522],[0.274224,51.453739],[0.267193,51.455972],[0.266358,51.456829],[0.262398,51.459203],[0.260767,51.46077],[0.255696,51.462129],[0.253942,51.462237],[0.250187,51.463631],[0.249382,51.464798],[0.242127,51.468129],[0.241012,51.467986],[0.239611,51.468513],[0.239647,51.46955],[0.238195,51.469988],[0.235558,51.471902],[0.229113,51.475549],[0.22748,51.475821],[0.220194,51.479488],[0.218058,51.479665],[0.21686,51.478447],[0.21744,51.477934],[0.216155,51.476247],[0.212592,51.475436],[0.212069,51.474658],[0.212245,51.472947],[0.20928,51.471048],[0.21152,51.469081],[0.211785,51.46773],[0.210744,51.46568],[0.210838,51.46396],[0.211563,51.458909],[0.210848,51.458861],[0.210303,51.462095],[0.207691,51.461296],[0.205841,51.459954],[0.204857,51.459883],[0.203049,51.457952],[0.202608,51.45623],[0.203835,51.455983],[0.2034,51.454386],[0.201387,51.453851],[0.200234,51.452596],[0.197965,51.451831],[0.19302,51.451702],[0.192083,51.450842],[0.191012,51.448788],[0.188851,51.44913],[0.187644,51.448698],[0.187465,51.446875],[0.184277,51.444655],[0.181084,51.444182],[0.180887,51.443523],[0.178725,51.443477],[0.176017,51.442006],[0.173806,51.442979],[0.172797,51.443031],[0.170899,51.441202],[0.168714,51.43748],[0.16669,51.435051],[0.166851,51.432072],[0.16559,51.430349],[0.163923,51.428932],[0.160695,51.429674],[0.159837,51.429203],[0.158632,51.430127],[0.155875,51.430877],[0.1553,51.428975],[0.153763,51.427523],[0.153135,51.422322],[0.151159,51.42043],[0.154636,51.41847],[0.154094,51.417762],[0.151055,51.417616],[0.151154,51.415063],[0.14916,51.412435],[0.149752,51.411658],[0.15377,51.411265],[0.152932,51.408708],[0.156096,51.408738],[0.159887,51.40827],[0.161454,51.407156],[0.163488,51.406803],[0.163933,51.408414],[0.165615,51.40824],[0.166358,51.410754],[0.164929,51.410994],[0.178078,51.415513],[0.182609,51.415794],[0.199752,51.417976],[0.200779,51.415741],[0.203245,51.413791],[0.205305,51.413206],[0.204992,51.412246],[0.205845,51.409683],[0.211018,51.407453],[0.2114,51.404954],[0.213529,51.404849],[0.212738,51.402749],[0.206858,51.402414],[0.20719,51.400006],[0.20695,51.397219],[0.212124,51.396588],[0.213868,51.39608],[0.215813,51.396174],[0.219343,51.395571],[0.223655,51.395665],[0.227512,51.395166],[0.232698,51.395893],[0.233483,51.396353],[0.235634,51.39666],[0.238314,51.396306],[0.23888,51.397075],[0.240546,51.397616],[0.240183,51.398373],[0.241034,51.399571],[0.240206,51.401143],[0.241894,51.401003],[0.24301,51.402928],[0.244602,51.40397],[0.245644,51.405425],[0.245744,51.407712],[0.258049,51.407818],[0.269127,51.407419],[0.272196,51.406743],[0.272761,51.407571],[0.274894,51.407457],[0.277607,51.406924],[0.278507,51.404522],[0.279784,51.402859],[0.277488,51.401584],[0.284044,51.399618],[0.293269,51.397976],[0.296738,51.397055],[0.325595,51.388905],[0.332008,51.387323],[0.336679,51.386544],[0.336426,51.38759],[0.335195,51.38823],[0.33462,51.389463],[0.335732,51.389966],[0.34263,51.391235],[0.344572,51.393188],[0.343763,51.395477],[0.338738,51.396356],[0.338387,51.398142],[0.338885,51.399501],[0.33773,51.399773],[0.336557,51.398949],[0.335095,51.399323],[0.33517,51.402386],[0.334114,51.406345],[0.334409,51.408863],[0.332093,51.41183],[0.331084,51.414709],[0.331271,51.420759],[0.330623,51.420993],[0.332605,51.425611],[0.330917,51.426589],[0.328069,51.427739],[0.326594,51.428974],[0.325234,51.429221],[0.324936,51.430387],[0.323854,51.431658],[0.323636,51.435418],[0.326018,51.439893],[0.326364,51.442653],[0.323565,51.443173],[0.322549,51.44507],[0.321456,51.44562],[0.321719,51.446898],[0.319308,51.447004],[0.31983,51.448897],[0.319339,51.449486],[0.320302,51.45023],[0.319708,51.451237],[0.318226,51.451822],[0.310685,51.453045],[0.312804,51.458964],[0.313738,51.460267],[0.313467,51.460832],[0.314534,51.4621],[0.315465,51.464889]]]},"properties":{"LAD22CD":"E07000107","LAD22NM":"Dartford","BNG_E":556167,"BNG_N":172917,"LONG":0.245276,"LAT":51.43373,"GlobalID":"80355b27-356b-40fe-b08b-d05a7b1222cc"},"id":129}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.354393,51.298756],[1.350081,51.298971],[1.348689,51.299965],[1.348226,51.301381],[1.345679,51.301607],[1.343414,51.296993],[1.340334,51.293545],[1.337679,51.29242],[1.334782,51.293278],[1.33134,51.290465],[1.330208,51.288431],[1.328376,51.286587],[1.329649,51.285025],[1.331686,51.284121],[1.330952,51.282318],[1.332446,51.280984],[1.333669,51.28082],[1.33525,51.282041],[1.33653,51.282019],[1.340121,51.27998],[1.340225,51.279426],[1.338913,51.278279],[1.342045,51.276081],[1.345464,51.275551],[1.348102,51.274361],[1.351711,51.27525],[1.351261,51.276628],[1.352162,51.277645],[1.353812,51.277963],[1.356264,51.277766],[1.3559,51.279102],[1.353762,51.280295],[1.351256,51.280156],[1.35059,51.280667],[1.351144,51.282811],[1.352142,51.284343],[1.34994,51.285529],[1.349252,51.288181],[1.350902,51.288941],[1.353378,51.28796],[1.354393,51.288576],[1.353438,51.289579],[1.350501,51.290123],[1.346672,51.292425],[1.346398,51.292892],[1.348242,51.296272],[1.35061,51.297554],[1.351942,51.297554],[1.355139,51.296245],[1.355513,51.297082],[1.354393,51.298756]]],[[[1.345417,51.307988],[1.346067,51.305115],[1.346033,51.301955],[1.348379,51.301772],[1.352559,51.307152],[1.354331,51.309165],[1.357888,51.31149],[1.351714,51.313031],[1.350966,51.311711],[1.346767,51.30906],[1.346502,51.308138],[1.345417,51.307988]]],[[[1.25235,51.327152],[1.251979,51.328379],[1.250695,51.329288],[1.248268,51.328369],[1.245738,51.328566],[1.241504,51.330632],[1.235169,51.330632],[1.234071,51.332045],[1.232594,51.332277],[1.230878,51.331471],[1.232109,51.330313],[1.232402,51.328826],[1.234154,51.32773],[1.234525,51.326741],[1.233072,51.325962],[1.231243,51.326751],[1.231994,51.32811],[1.231677,51.328657],[1.230398,51.328473],[1.228116,51.326856],[1.229627,51.325961],[1.229972,51.325014],[1.227305,51.325319],[1.224583,51.325197],[1.223179,51.324117],[1.220983,51.323768],[1.220361,51.322915],[1.222682,51.322973],[1.222695,51.322036],[1.22484,51.321821],[1.225954,51.320215],[1.225488,51.318726],[1.225839,51.318028],[1.22787,51.317652],[1.227816,51.317092],[1.229383,51.316066],[1.22633,51.314187],[1.224737,51.313787],[1.224756,51.312475],[1.223587,51.312298],[1.221641,51.31301],[1.219225,51.312162],[1.219771,51.310642],[1.221851,51.310099],[1.221702,51.308881],[1.219808,51.308865],[1.218536,51.309843],[1.217046,51.309766],[1.216513,51.31041],[1.214007,51.311359],[1.213184,51.310069],[1.213249,51.307406],[1.21254,51.306642],[1.212949,51.305882],[1.211958,51.305129],[1.209779,51.305105],[1.209932,51.304438],[1.208296,51.303669],[1.207461,51.302526],[1.207495,51.301252],[1.205835,51.301312],[1.205084,51.300809],[1.204444,51.299132],[1.206124,51.298772],[1.204194,51.296867],[1.203106,51.295044],[1.204238,51.294365],[1.203023,51.292792],[1.200001,51.291573],[1.201963,51.290067],[1.203475,51.289632],[1.20274,51.288743],[1.203645,51.287222],[1.205226,51.285712],[1.206842,51.285915],[1.208777,51.285437],[1.208441,51.284407],[1.210386,51.284488],[1.211432,51.285073],[1.212346,51.282689],[1.21043,51.282312],[1.210489,51.280916],[1.208971,51.280372],[1.208071,51.279136],[1.206706,51.27832],[1.205793,51.276545],[1.203453,51.275552],[1.194823,51.269317],[1.195749,51.2683],[1.197087,51.267893],[1.195206,51.265418],[1.194588,51.262234],[1.196431,51.261852],[1.194979,51.258879],[1.193446,51.259062],[1.192641,51.257189],[1.195263,51.25609],[1.196471,51.257664],[1.196861,51.259072],[1.201044,51.258699],[1.200403,51.257475],[1.204381,51.256443],[1.204375,51.255439],[1.205655,51.254548],[1.207681,51.255194],[1.211545,51.252427],[1.208649,51.248238],[1.206336,51.246263],[1.200939,51.239938],[1.19893,51.238467],[1.197679,51.236876],[1.195275,51.231698],[1.193829,51.230546],[1.19194,51.227065],[1.18905,51.223307],[1.187415,51.219748],[1.185548,51.21782],[1.190381,51.219562],[1.193244,51.220141],[1.197144,51.219636],[1.202459,51.217591],[1.208449,51.213164],[1.219347,51.209444],[1.222194,51.207395],[1.218791,51.203458],[1.207785,51.195133],[1.207387,51.194225],[1.206029,51.193097],[1.203085,51.191354],[1.197693,51.187099],[1.198211,51.186634],[1.194331,51.185229],[1.194946,51.184299],[1.192138,51.183837],[1.188266,51.18591],[1.183439,51.189892],[1.180641,51.190477],[1.180573,51.189362],[1.179496,51.188288],[1.177605,51.187382],[1.174354,51.186418],[1.169917,51.183948],[1.163444,51.184215],[1.163762,51.185162],[1.15958,51.187877],[1.157802,51.19101],[1.15363,51.190911],[1.152432,51.188237],[1.151995,51.188217],[1.151464,51.185246],[1.149894,51.18527],[1.147638,51.177178],[1.14412,51.173519],[1.142776,51.169116],[1.143731,51.165776],[1.153404,51.162677],[1.15634,51.161269],[1.156535,51.160141],[1.157759,51.159464],[1.161949,51.158018],[1.165821,51.158503],[1.165837,51.160013],[1.168962,51.162665],[1.170735,51.163136],[1.171064,51.161173],[1.171705,51.160651],[1.175383,51.162443],[1.176569,51.162445],[1.177633,51.159244],[1.17709,51.156916],[1.179543,51.156721],[1.181265,51.156162],[1.181905,51.157359],[1.182992,51.15794],[1.187855,51.154904],[1.190659,51.154016],[1.194178,51.154232],[1.2012,51.15528],[1.203077,51.155095],[1.207678,51.156834],[1.210225,51.153521],[1.211065,51.151477],[1.20799,51.150263],[1.204522,51.148272],[1.203094,51.147205],[1.202269,51.145664],[1.19902,51.144808],[1.197827,51.143677],[1.195354,51.142731],[1.194024,51.141606],[1.189156,51.138766],[1.189211,51.136514],[1.190117,51.135988],[1.188257,51.134694],[1.185922,51.134147],[1.184505,51.134782],[1.182169,51.133364],[1.178926,51.134527],[1.176808,51.131912],[1.176939,51.131236],[1.173452,51.127193],[1.173964,51.126731],[1.171497,51.124641],[1.173048,51.122525],[1.174871,51.122264],[1.178009,51.123706],[1.17905,51.12281],[1.17915,51.120873],[1.180867,51.119202],[1.1858,51.121404],[1.188985,51.119244],[1.192432,51.119157],[1.197367,51.118149],[1.195646,51.115888],[1.19557,51.114043],[1.194004,51.111146],[1.194616,51.110674],[1.195546,51.107662],[1.1951,51.105685],[1.19678,51.10452],[1.194938,51.10303],[1.197182,51.101716],[1.204266,51.098978],[1.204371,51.097192],[1.206164,51.097847],[1.209197,51.098431],[1.209444,51.0992],[1.213274,51.099716],[1.214096,51.100284],[1.219939,51.101345],[1.220468,51.101206],[1.221146,51.098091],[1.226591,51.099604],[1.238584,51.10061],[1.247168,51.100918],[1.248817,51.099911],[1.249948,51.099805],[1.251501,51.101024],[1.253028,51.10146],[1.261499,51.102626],[1.26234,51.10181],[1.267661,51.101742],[1.281606,51.105778],[1.281224,51.107518],[1.282189,51.107961],[1.294438,51.109553],[1.295721,51.11061],[1.296908,51.11214],[1.302303,51.113373],[1.312792,51.114406],[1.314554,51.112818],[1.318189,51.111512],[1.324061,51.11156],[1.324027,51.111945],[1.319212,51.112046],[1.314137,51.114437],[1.315042,51.115492],[1.31295,51.116449],[1.310113,51.11679],[1.310957,51.117849],[1.310967,51.119226],[1.31261,51.11889],[1.312935,51.116997],[1.316435,51.115479],[1.318537,51.116418],[1.32164,51.115075],[1.322272,51.115315],[1.320061,51.11763],[1.318087,51.117552],[1.315349,51.118313],[1.313381,51.119475],[1.316506,51.123045],[1.321012,51.12469],[1.32668,51.125641],[1.32751,51.125326],[1.328979,51.123251],[1.333333,51.124676],[1.334044,51.125221],[1.333514,51.126252],[1.335748,51.126312],[1.33666,51.127054],[1.338474,51.127428],[1.33934,51.1268],[1.342719,51.12689],[1.343008,51.121863],[1.343334,51.121768],[1.342557,51.130477],[1.343644,51.131398],[1.34543,51.131707],[1.347428,51.132942],[1.350838,51.133544],[1.352861,51.133558],[1.35611,51.134412],[1.357321,51.134152],[1.361715,51.135633],[1.364057,51.13594],[1.37231,51.138819],[1.376767,51.140804],[1.38328,51.145809],[1.384399,51.148493],[1.384563,51.149796],[1.388952,51.152396],[1.39396,51.155893],[1.39531,51.156398],[1.394917,51.157296],[1.396964,51.159429],[1.400755,51.164751],[1.402115,51.167011],[1.401982,51.168315],[1.403579,51.17093],[1.404663,51.17402],[1.405313,51.174337],[1.404622,51.175717],[1.405124,51.179702],[1.403899,51.180802],[1.40555,51.186004],[1.405501,51.189332],[1.404975,51.203422],[1.404206,51.210163],[1.404627,51.21543],[1.405049,51.218501],[1.405047,51.228268],[1.40402,51.23448],[1.399388,51.246357],[1.393951,51.256541],[1.390588,51.263525],[1.382013,51.278562],[1.378113,51.286966],[1.378006,51.288804],[1.375787,51.29709],[1.374475,51.307858],[1.372413,51.31331],[1.371351,51.313911],[1.365491,51.313137],[1.36417,51.312045],[1.360979,51.312003],[1.360566,51.311862],[1.360323,51.311779],[1.359304,51.311429],[1.359246,51.311409],[1.359023,51.311333],[1.356125,51.309335],[1.353607,51.307069],[1.349269,51.301574],[1.34905,51.30101],[1.35026,51.299344],[1.351372,51.299144],[1.353391,51.299449],[1.355239,51.298787],[1.356265,51.297118],[1.356144,51.296259],[1.354734,51.295815],[1.352064,51.297145],[1.350511,51.2971],[1.348902,51.296281],[1.348381,51.294822],[1.346977,51.292902],[1.350808,51.290423],[1.35455,51.28964],[1.354892,51.288528],[1.353203,51.287597],[1.351324,51.288571],[1.349823,51.288304],[1.350286,51.285689],[1.35259,51.284326],[1.351676,51.283026],[1.350999,51.280737],[1.351702,51.28033],[1.353761,51.280581],[1.356347,51.279127],[1.35701,51.278423],[1.356137,51.277546],[1.353331,51.277741],[1.351605,51.276734],[1.351973,51.275128],[1.351116,51.274721],[1.347749,51.274187],[1.345816,51.275155],[1.34217,51.275764],[1.338575,51.277727],[1.338577,51.27845],[1.339989,51.279688],[1.336505,51.281819],[1.335347,51.281884],[1.333451,51.280617],[1.332168,51.280874],[1.330705,51.282074],[1.331443,51.283965],[1.329152,51.285129],[1.328129,51.286897],[1.329828,51.288434],[1.331143,51.290643],[1.33447,51.293465],[1.335522,51.293539],[1.337709,51.29262],[1.340111,51.293659],[1.343025,51.296832],[1.345678,51.302204],[1.345761,51.30516],[1.345056,51.308118],[1.343343,51.31024],[1.341978,51.31111],[1.340744,51.311896],[1.339736,51.312538],[1.335372,51.313633],[1.332127,51.312691],[1.331657,51.31278],[1.330259,51.314178],[1.325234,51.316818],[1.321541,51.316986],[1.314422,51.317903],[1.313097,51.317705],[1.311577,51.31685],[1.309372,51.316764],[1.300424,51.31824],[1.295534,51.320143],[1.289731,51.321322],[1.283677,51.321272],[1.280864,51.319994],[1.277333,51.319877],[1.273032,51.32044],[1.270949,51.321501],[1.268397,51.322058],[1.263219,51.322057],[1.257311,51.323292],[1.252643,51.326185],[1.252544,51.326512],[1.25235,51.327152]]]]},"properties":{"LAD22CD":"E07000108","LAD22NM":"Dover","BNG_E":628964,"BNG_N":150942,"LONG":1.276887,"LAT":51.21176,"GlobalID":"d980324a-0673-4d07-ac64-4ac277840a98"},"id":130}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.459257,51.455542],[0.458733,51.454374],[0.457169,51.453869],[0.455133,51.453795],[0.453963,51.452665],[0.448994,51.451532],[0.447082,51.45256],[0.446152,51.451673],[0.440727,51.448969],[0.440255,51.447425],[0.434117,51.447512],[0.42847,51.446668],[0.414356,51.443839],[0.406564,51.443273],[0.400418,51.443053],[0.393347,51.44359],[0.389912,51.44318],[0.38788,51.443634],[0.382811,51.443876],[0.381992,51.443505],[0.380323,51.444191],[0.369696,51.445226],[0.363747,51.445545],[0.355934,51.445839],[0.355401,51.445614],[0.348687,51.44593],[0.348518,51.446341],[0.338717,51.447769],[0.329707,51.450341],[0.328415,51.450849],[0.322176,51.455937],[0.320557,51.457611],[0.31956,51.46024],[0.317046,51.463595],[0.315465,51.464889],[0.314534,51.4621],[0.313467,51.460832],[0.313738,51.460267],[0.312804,51.458964],[0.310685,51.453045],[0.318226,51.451822],[0.319708,51.451237],[0.320302,51.45023],[0.319339,51.449486],[0.31983,51.448897],[0.319308,51.447004],[0.321719,51.446898],[0.321456,51.44562],[0.322549,51.44507],[0.323565,51.443173],[0.326364,51.442653],[0.326018,51.439893],[0.323636,51.435418],[0.323854,51.431658],[0.324936,51.430387],[0.325234,51.429221],[0.326594,51.428974],[0.328069,51.427739],[0.330917,51.426589],[0.332605,51.425611],[0.330623,51.420993],[0.331271,51.420759],[0.331084,51.414709],[0.332093,51.41183],[0.334409,51.408863],[0.334114,51.406345],[0.33517,51.402386],[0.335095,51.399323],[0.336557,51.398949],[0.33773,51.399773],[0.338885,51.399501],[0.338387,51.398142],[0.338738,51.396356],[0.343763,51.395477],[0.344572,51.393188],[0.34263,51.391235],[0.335732,51.389966],[0.33462,51.389463],[0.335195,51.38823],[0.336426,51.38759],[0.336679,51.386544],[0.33602,51.38538],[0.334532,51.384293],[0.333691,51.383142],[0.333839,51.38088],[0.33272,51.378515],[0.332406,51.375781],[0.33181,51.374693],[0.332144,51.372896],[0.331447,51.371278],[0.332677,51.368293],[0.335147,51.369657],[0.336692,51.369762],[0.335259,51.365068],[0.335569,51.360635],[0.337054,51.360008],[0.338891,51.356458],[0.34162,51.354539],[0.34229,51.348354],[0.340641,51.343644],[0.341503,51.343518],[0.341534,51.341284],[0.34079,51.339744],[0.344719,51.338658],[0.344726,51.337533],[0.343664,51.332593],[0.341604,51.329216],[0.341081,51.325006],[0.351525,51.326827],[0.354817,51.326816],[0.354982,51.328459],[0.356303,51.328501],[0.357865,51.329122],[0.358732,51.328269],[0.361149,51.328595],[0.361153,51.329664],[0.363305,51.329992],[0.365405,51.329371],[0.366183,51.328459],[0.377806,51.329284],[0.381155,51.330215],[0.383459,51.335773],[0.381932,51.336154],[0.377138,51.335852],[0.380726,51.339333],[0.382092,51.338869],[0.38452,51.338687],[0.38711,51.338917],[0.388878,51.338769],[0.390188,51.341861],[0.391933,51.343783],[0.392877,51.343931],[0.395054,51.345121],[0.394215,51.345878],[0.391023,51.346795],[0.391564,51.347469],[0.396555,51.350049],[0.397101,51.352685],[0.398578,51.352501],[0.401283,51.352955],[0.403457,51.356455],[0.404733,51.356504],[0.407194,51.359824],[0.412539,51.363992],[0.418432,51.372643],[0.417905,51.373326],[0.419195,51.374565],[0.419677,51.375592],[0.420937,51.3761],[0.423414,51.376146],[0.424966,51.376581],[0.430186,51.383666],[0.431145,51.38638],[0.431109,51.388033],[0.434641,51.388881],[0.447144,51.388958],[0.44795,51.390362],[0.452002,51.39145],[0.453322,51.391379],[0.456709,51.394284],[0.453915,51.397034],[0.451853,51.398321],[0.456717,51.39859],[0.467687,51.398301],[0.467957,51.399521],[0.469453,51.399704],[0.468211,51.403171],[0.474636,51.406229],[0.477616,51.407186],[0.475506,51.408646],[0.47514,51.412947],[0.480904,51.414797],[0.483679,51.412749],[0.488283,51.414207],[0.489235,51.415326],[0.48856,51.419443],[0.491196,51.424775],[0.489619,51.425933],[0.489211,51.42703],[0.489386,51.430031],[0.488364,51.430527],[0.488856,51.434942],[0.486357,51.436026],[0.489759,51.437579],[0.490973,51.438677],[0.487917,51.440377],[0.48796,51.443285],[0.486091,51.443498],[0.484364,51.44475],[0.482789,51.44492],[0.478911,51.446377],[0.477321,51.446247],[0.475765,51.446767],[0.468752,51.451203],[0.467645,51.454292],[0.462115,51.45455],[0.460735,51.455985],[0.459257,51.455542]]]},"properties":{"LAD22CD":"E07000109","LAD22NM":"Gravesham","BNG_E":566969,"BNG_N":169114,"LONG":0.398744,"LAT":51.39649,"GlobalID":"5856149a-3194-4c68-adac-01caf067f2db"},"id":131}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.601403,51.333301],[0.599766,51.332529],[0.596941,51.332708],[0.596811,51.333339],[0.594361,51.333228],[0.58647,51.335088],[0.58611,51.334762],[0.583397,51.334663],[0.581137,51.335215],[0.580287,51.335944],[0.577778,51.336427],[0.575435,51.337561],[0.573444,51.336918],[0.571944,51.33561],[0.569641,51.337012],[0.565659,51.33779],[0.563457,51.338743],[0.55671,51.336534],[0.554451,51.333764],[0.554763,51.332223],[0.553972,51.331629],[0.548924,51.33091],[0.54592,51.329564],[0.545347,51.328571],[0.544003,51.327896],[0.540139,51.330255],[0.538681,51.331756],[0.538664,51.332742],[0.53293,51.337164],[0.525641,51.334717],[0.526075,51.332804],[0.523979,51.33156],[0.52127,51.329186],[0.523337,51.326281],[0.526039,51.326166],[0.526769,51.325247],[0.524417,51.323376],[0.522661,51.321103],[0.521076,51.320755],[0.518987,51.319065],[0.5171,51.316399],[0.513949,51.314312],[0.513624,51.310124],[0.512272,51.308576],[0.512575,51.307533],[0.511615,51.306435],[0.510297,51.30657],[0.507054,51.305357],[0.501556,51.305356],[0.49808,51.306573],[0.494137,51.305703],[0.492518,51.304567],[0.494656,51.303217],[0.492772,51.301801],[0.492713,51.301331],[0.497872,51.299219],[0.498959,51.29838],[0.498878,51.296911],[0.498742,51.296511],[0.493662,51.291365],[0.489478,51.289139],[0.488624,51.286859],[0.482684,51.281159],[0.4801,51.278042],[0.479251,51.27758],[0.480675,51.27601],[0.477192,51.273444],[0.478047,51.272765],[0.474653,51.272625],[0.471095,51.271198],[0.469517,51.271187],[0.467238,51.271699],[0.466853,51.271321],[0.46199,51.271457],[0.46006,51.271777],[0.455395,51.271554],[0.453006,51.271841],[0.452681,51.27133],[0.449735,51.270372],[0.445076,51.270056],[0.442345,51.270278],[0.440203,51.269925],[0.432525,51.27012],[0.432051,51.267848],[0.431775,51.2648],[0.43317,51.262162],[0.43329,51.260618],[0.432877,51.258387],[0.431667,51.257078],[0.431327,51.254486],[0.429974,51.254574],[0.429477,51.252319],[0.429826,51.249501],[0.423644,51.249425],[0.422142,51.249104],[0.420852,51.249946],[0.417739,51.250785],[0.411445,51.251414],[0.410008,51.253119],[0.408215,51.252323],[0.406809,51.252223],[0.402767,51.248931],[0.39966,51.247671],[0.399593,51.247175],[0.397576,51.245712],[0.397961,51.244711],[0.394192,51.241424],[0.388278,51.238686],[0.385573,51.238168],[0.38368,51.238298],[0.383165,51.236855],[0.38154,51.235897],[0.37866,51.234986],[0.378175,51.233422],[0.380434,51.231081],[0.383295,51.231109],[0.386821,51.229396],[0.388915,51.229078],[0.391035,51.228004],[0.391945,51.226659],[0.393705,51.225956],[0.395695,51.226733],[0.397427,51.226506],[0.399214,51.225639],[0.398659,51.223365],[0.399975,51.222538],[0.401878,51.222061],[0.404761,51.2224],[0.407358,51.222287],[0.408801,51.221668],[0.406515,51.217899],[0.404843,51.214132],[0.404003,51.211066],[0.4041,51.2084],[0.40351,51.205452],[0.40226,51.201846],[0.400345,51.198572],[0.399668,51.199],[0.395777,51.200036],[0.394004,51.199572],[0.392289,51.199916],[0.390786,51.201075],[0.387984,51.202067],[0.386625,51.201519],[0.385899,51.20059],[0.384733,51.200256],[0.38478,51.198821],[0.384255,51.198262],[0.384267,51.196969],[0.383289,51.196189],[0.383545,51.19546],[0.386679,51.194461],[0.388843,51.194612],[0.391645,51.194132],[0.393987,51.194493],[0.394225,51.192775],[0.396035,51.192043],[0.399889,51.192146],[0.401322,51.191272],[0.404108,51.190694],[0.403426,51.189393],[0.404476,51.188561],[0.407647,51.188149],[0.409403,51.188441],[0.410031,51.186925],[0.40943,51.185438],[0.41227,51.185139],[0.411807,51.183299],[0.414208,51.182353],[0.416401,51.180548],[0.431084,51.179599],[0.437368,51.177681],[0.440754,51.176513],[0.44104,51.174198],[0.442914,51.172635],[0.445154,51.171599],[0.447306,51.171294],[0.44934,51.169336],[0.452091,51.168245],[0.453435,51.166138],[0.455545,51.165057],[0.457133,51.164743],[0.458186,51.163333],[0.460236,51.162441],[0.460164,51.161619],[0.462402,51.159897],[0.464286,51.15935],[0.465443,51.15824],[0.465369,51.157254],[0.467702,51.155443],[0.468413,51.153308],[0.469678,51.152348],[0.469071,51.150514],[0.469301,51.149662],[0.470437,51.148921],[0.470188,51.147261],[0.468827,51.145354],[0.469408,51.145053],[0.468927,51.14326],[0.476787,51.141577],[0.481307,51.141346],[0.48356,51.1427],[0.48795,51.143215],[0.491245,51.144265],[0.493907,51.143807],[0.496896,51.144776],[0.498815,51.143168],[0.502199,51.142365],[0.503071,51.141022],[0.508453,51.141385],[0.509992,51.140276],[0.509254,51.139411],[0.509023,51.136621],[0.513436,51.136604],[0.516779,51.1357],[0.51873,51.136113],[0.523654,51.135738],[0.528935,51.13428],[0.533105,51.134153],[0.53477,51.134943],[0.541912,51.134431],[0.545921,51.136447],[0.548915,51.13673],[0.550689,51.137293],[0.552586,51.137329],[0.55403,51.138333],[0.555595,51.138514],[0.556903,51.140038],[0.557697,51.141776],[0.559948,51.142862],[0.56195,51.143259],[0.565612,51.141136],[0.565237,51.140165],[0.564114,51.139465],[0.56015,51.137781],[0.560714,51.137316],[0.558848,51.136225],[0.559065,51.133945],[0.560427,51.134501],[0.564414,51.135024],[0.568005,51.136465],[0.570438,51.138105],[0.571637,51.138439],[0.572121,51.139261],[0.574124,51.140838],[0.573962,51.14127],[0.575437,51.142984],[0.577323,51.14421],[0.579306,51.144636],[0.578623,51.145479],[0.576367,51.14602],[0.575592,51.148835],[0.576727,51.149534],[0.575185,51.155404],[0.575672,51.156113],[0.578149,51.155249],[0.582074,51.154623],[0.588862,51.154567],[0.593241,51.153976],[0.593515,51.153305],[0.595921,51.154278],[0.598761,51.157855],[0.601308,51.157985],[0.601856,51.159016],[0.603394,51.15812],[0.604079,51.156765],[0.605264,51.156447],[0.604312,51.153113],[0.603586,51.152032],[0.605069,51.150919],[0.610534,51.151501],[0.612572,51.152424],[0.613719,51.150516],[0.615376,51.15112],[0.615592,51.149962],[0.618391,51.14868],[0.621277,51.148359],[0.622236,51.149595],[0.626119,51.152841],[0.626896,51.152492],[0.629963,51.152572],[0.631967,51.152303],[0.632307,51.152976],[0.638223,51.15241],[0.64034,51.152474],[0.641832,51.151141],[0.641005,51.150774],[0.637058,51.146657],[0.636513,51.145214],[0.632545,51.145296],[0.634982,51.143738],[0.634381,51.142397],[0.638445,51.142017],[0.639475,51.141293],[0.641182,51.141302],[0.643981,51.143562],[0.646064,51.143858],[0.650002,51.145391],[0.648188,51.146469],[0.649392,51.147738],[0.646816,51.149348],[0.64887,51.150594],[0.647644,51.152671],[0.6502,51.154578],[0.652204,51.155334],[0.65315,51.156702],[0.655502,51.157152],[0.657605,51.158128],[0.658963,51.160813],[0.658678,51.163838],[0.661408,51.164723],[0.663259,51.166731],[0.666633,51.168149],[0.66608,51.168592],[0.665903,51.170349],[0.665353,51.17122],[0.668738,51.171455],[0.670522,51.170812],[0.672164,51.171528],[0.675216,51.171825],[0.67738,51.17283],[0.676095,51.174753],[0.675912,51.175939],[0.676706,51.177344],[0.67841,51.179201],[0.680818,51.179219],[0.684947,51.178696],[0.684094,51.181301],[0.684934,51.184382],[0.683889,51.18543],[0.683715,51.18675],[0.68186,51.187975],[0.683746,51.191126],[0.685755,51.19222],[0.688378,51.192579],[0.692786,51.195567],[0.694489,51.194481],[0.69622,51.194216],[0.699299,51.196305],[0.701838,51.197339],[0.699411,51.199953],[0.701239,51.200073],[0.702351,51.200749],[0.708031,51.199697],[0.709782,51.199618],[0.710178,51.200167],[0.70963,51.201463],[0.710197,51.203889],[0.712093,51.206063],[0.713919,51.207236],[0.715568,51.209447],[0.716235,51.20944],[0.716826,51.211141],[0.723878,51.211414],[0.723979,51.210588],[0.725726,51.209006],[0.727779,51.208856],[0.729009,51.209271],[0.733773,51.209081],[0.735667,51.209562],[0.737864,51.209212],[0.740072,51.20814],[0.743188,51.208457],[0.745477,51.209326],[0.74702,51.21059],[0.746014,51.211749],[0.744081,51.212072],[0.743788,51.212825],[0.744583,51.214661],[0.749584,51.216031],[0.750676,51.217428],[0.751221,51.219366],[0.754602,51.218381],[0.75873,51.221862],[0.760161,51.224042],[0.761279,51.224487],[0.765804,51.224706],[0.769612,51.226063],[0.771287,51.227098],[0.772365,51.228373],[0.777519,51.231347],[0.778537,51.234093],[0.782455,51.239365],[0.787265,51.239045],[0.788918,51.238436],[0.792657,51.238073],[0.794947,51.244473],[0.796469,51.246295],[0.789378,51.248634],[0.791662,51.251372],[0.792385,51.254252],[0.792188,51.255112],[0.793379,51.257281],[0.792352,51.258121],[0.789571,51.259131],[0.78952,51.260596],[0.790547,51.261781],[0.782968,51.264959],[0.778836,51.264702],[0.776784,51.266564],[0.775216,51.264952],[0.769404,51.262088],[0.766386,51.25987],[0.765141,51.258273],[0.761955,51.256378],[0.760761,51.25661],[0.75766,51.256358],[0.750768,51.257833],[0.749641,51.258644],[0.750813,51.259775],[0.756897,51.268969],[0.758727,51.271088],[0.760006,51.271994],[0.761524,51.274858],[0.76454,51.27675],[0.760894,51.278576],[0.760064,51.279314],[0.756843,51.278025],[0.747454,51.27811],[0.743874,51.278469],[0.733172,51.285344],[0.728953,51.286666],[0.725303,51.288658],[0.722855,51.289554],[0.721345,51.289611],[0.719869,51.291796],[0.717696,51.293288],[0.716316,51.295855],[0.71617,51.296788],[0.713817,51.299408],[0.712733,51.298791],[0.70602,51.298806],[0.701578,51.299175],[0.692876,51.29812],[0.680501,51.291182],[0.673845,51.293272],[0.67427,51.294372],[0.675875,51.295767],[0.671446,51.296834],[0.673066,51.299274],[0.671652,51.29969],[0.675346,51.303837],[0.675184,51.30562],[0.673426,51.30567],[0.66918,51.307992],[0.670957,51.310092],[0.669062,51.311694],[0.66878,51.312734],[0.665348,51.317241],[0.662819,51.319434],[0.658855,51.324493],[0.662354,51.325243],[0.663405,51.32591],[0.665272,51.32799],[0.66432,51.328929],[0.660429,51.330422],[0.659091,51.330557],[0.656722,51.331619],[0.644988,51.336163],[0.641935,51.336197],[0.639748,51.336765],[0.63629,51.335278],[0.634699,51.335258],[0.629493,51.333014],[0.623275,51.331872],[0.618429,51.331522],[0.619622,51.333269],[0.619446,51.334469],[0.61588,51.335115],[0.612926,51.334664],[0.610942,51.33265],[0.607834,51.328487],[0.604424,51.325697],[0.601542,51.327371],[0.60098,51.328203],[0.604625,51.328604],[0.607078,51.330795],[0.602876,51.332178],[0.601403,51.333301]]]},"properties":{"LAD22CD":"E07000110","LAD22NM":"Maidstone","BNG_E":580489,"BNG_N":151670,"LONG":0.584061,"LAT":51.23566,"GlobalID":"eb0c9621-98b0-4af9-a39f-7156ce872484"},"id":132}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.336679,51.386544],[0.332008,51.387323],[0.325595,51.388905],[0.296738,51.397055],[0.293269,51.397976],[0.284044,51.399618],[0.277488,51.401584],[0.279784,51.402859],[0.278507,51.404522],[0.277607,51.406924],[0.274894,51.407457],[0.272761,51.407571],[0.272196,51.406743],[0.269127,51.407419],[0.258049,51.407818],[0.245744,51.407712],[0.245644,51.405425],[0.244602,51.40397],[0.24301,51.402928],[0.241894,51.401003],[0.240206,51.401143],[0.241034,51.399571],[0.240183,51.398373],[0.240546,51.397616],[0.23888,51.397075],[0.238314,51.396306],[0.235634,51.39666],[0.233483,51.396353],[0.232698,51.395893],[0.227512,51.395166],[0.223655,51.395665],[0.219343,51.395571],[0.215813,51.396174],[0.213868,51.39608],[0.212124,51.396588],[0.20695,51.397219],[0.20719,51.400006],[0.206858,51.402414],[0.212738,51.402749],[0.213529,51.404849],[0.2114,51.404954],[0.211018,51.407453],[0.205845,51.409683],[0.204992,51.412246],[0.205305,51.413206],[0.203245,51.413791],[0.200779,51.415741],[0.199752,51.417976],[0.182609,51.415794],[0.178078,51.415513],[0.164929,51.410994],[0.166358,51.410754],[0.165615,51.40824],[0.163933,51.408414],[0.163488,51.406803],[0.161454,51.407156],[0.159887,51.40827],[0.156096,51.408738],[0.152932,51.408708],[0.149312,51.409141],[0.148869,51.408429],[0.148692,51.408131],[0.1511,51.406642],[0.152817,51.406269],[0.155249,51.403971],[0.157361,51.400783],[0.157728,51.398147],[0.15898,51.395821],[0.162384,51.39249],[0.158274,51.39224],[0.147741,51.392801],[0.147534,51.392156],[0.149835,51.390872],[0.148654,51.388668],[0.148902,51.387572],[0.149992,51.385841],[0.149787,51.383671],[0.150466,51.383447],[0.150373,51.381093],[0.149613,51.38009],[0.151133,51.379896],[0.150974,51.379085],[0.153236,51.378036],[0.152537,51.37523],[0.151736,51.375436],[0.1496,51.373583],[0.151206,51.372187],[0.150127,51.370157],[0.152058,51.369694],[0.151622,51.368384],[0.149438,51.369163],[0.148876,51.368124],[0.147285,51.36702],[0.148348,51.366372],[0.145048,51.362851],[0.144501,51.361061],[0.145379,51.360338],[0.144848,51.358435],[0.145895,51.358225],[0.145114,51.355764],[0.144049,51.354862],[0.143631,51.353018],[0.142876,51.352659],[0.142617,51.350736],[0.138714,51.347525],[0.137189,51.345876],[0.136958,51.344175],[0.131777,51.345507],[0.131669,51.345194],[0.125213,51.345868],[0.122239,51.344657],[0.118456,51.344148],[0.117232,51.343164],[0.116681,51.341303],[0.117283,51.339781],[0.118471,51.339982],[0.119014,51.338684],[0.118299,51.338405],[0.120011,51.33474],[0.121684,51.333636],[0.120246,51.332137],[0.115743,51.329507],[0.114211,51.327398],[0.110154,51.328036],[0.109759,51.326684],[0.107238,51.327524],[0.104902,51.327413],[0.103241,51.325996],[0.100792,51.325585],[0.100176,51.324072],[0.09618,51.321293],[0.092777,51.319811],[0.087785,51.318312],[0.086822,51.317193],[0.085029,51.316023],[0.085642,51.314785],[0.08507,51.312599],[0.083572,51.310528],[0.084748,51.308346],[0.084086,51.308049],[0.084878,51.306045],[0.082816,51.305634],[0.085432,51.302519],[0.086339,51.300172],[0.091185,51.296827],[0.089262,51.296086],[0.085693,51.293084],[0.08158,51.291839],[0.073368,51.291605],[0.067563,51.290383],[0.05851,51.289354],[0.05605,51.292395],[0.05439,51.292089],[0.05079,51.293987],[0.048494,51.293722],[0.045731,51.294004],[0.044767,51.293087],[0.042399,51.292679],[0.042625,51.292037],[0.044788,51.290721],[0.04674,51.288592],[0.048171,51.285653],[0.046328,51.279551],[0.045361,51.277922],[0.045396,51.27666],[0.048032,51.270121],[0.04961,51.268032],[0.04968,51.265694],[0.051942,51.262683],[0.053252,51.258165],[0.054266,51.256586],[0.053843,51.254078],[0.055131,51.25238],[0.05705,51.251291],[0.058243,51.247778],[0.057365,51.244062],[0.056239,51.243176],[0.055393,51.240558],[0.053557,51.239325],[0.05393,51.238143],[0.05286,51.236527],[0.048053,51.233845],[0.046059,51.233319],[0.045135,51.231947],[0.043809,51.230887],[0.043863,51.229783],[0.043039,51.229083],[0.042302,51.227377],[0.043685,51.225827],[0.042834,51.22461],[0.042314,51.222577],[0.042951,51.221794],[0.043167,51.220162],[0.041449,51.218251],[0.041148,51.216624],[0.036279,51.216582],[0.033599,51.214338],[0.034721,51.213482],[0.033588,51.211324],[0.033771,51.210554],[0.03539,51.208486],[0.03729,51.20706],[0.036697,51.205181],[0.035794,51.204214],[0.039158,51.200873],[0.038309,51.199765],[0.038387,51.198833],[0.039682,51.197822],[0.041399,51.195841],[0.042534,51.194048],[0.042775,51.192991],[0.044051,51.192622],[0.044545,51.191853],[0.046017,51.192159],[0.047823,51.191742],[0.047325,51.189999],[0.045167,51.188615],[0.047359,51.186336],[0.04736,51.18556],[0.049437,51.185017],[0.049811,51.182905],[0.052286,51.181227],[0.0526,51.180624],[0.051685,51.178697],[0.051777,51.177755],[0.050499,51.176282],[0.048697,51.175591],[0.048231,51.174331],[0.046694,51.173478],[0.046176,51.171831],[0.046562,51.171468],[0.046251,51.169193],[0.047087,51.167718],[0.046392,51.166206],[0.046945,51.16487],[0.048624,51.164418],[0.047514,51.161243],[0.048901,51.158817],[0.051494,51.157245],[0.051434,51.154375],[0.050841,51.153515],[0.051223,51.151684],[0.052414,51.150746],[0.054682,51.150434],[0.054249,51.148315],[0.053076,51.147462],[0.051851,51.144925],[0.049891,51.143912],[0.050016,51.14265],[0.052697,51.14216],[0.055847,51.142469],[0.0584,51.14136],[0.058763,51.14083],[0.062476,51.14176],[0.063284,51.141119],[0.0667,51.140532],[0.068145,51.140673],[0.070555,51.139685],[0.078188,51.139946],[0.084048,51.141896],[0.087079,51.14149],[0.08787,51.140935],[0.090236,51.141467],[0.093846,51.141523],[0.096006,51.142323],[0.099507,51.142121],[0.100278,51.142629],[0.103284,51.142559],[0.105258,51.14356],[0.10548,51.144076],[0.107494,51.144196],[0.108631,51.14467],[0.109669,51.144312],[0.114614,51.145186],[0.115347,51.145894],[0.117811,51.146185],[0.118705,51.146672],[0.120059,51.146422],[0.122159,51.146954],[0.125156,51.147193],[0.125932,51.146946],[0.128571,51.147454],[0.132793,51.14685],[0.136016,51.147014],[0.141377,51.14583],[0.143174,51.144314],[0.144537,51.144024],[0.14457,51.143251],[0.151894,51.142874],[0.152996,51.142159],[0.155451,51.141972],[0.155778,51.141301],[0.159892,51.141038],[0.16231,51.139678],[0.159747,51.138902],[0.160872,51.137984],[0.160748,51.137319],[0.16243,51.135806],[0.162909,51.13453],[0.164474,51.132775],[0.167319,51.133554],[0.167908,51.132183],[0.16985,51.132183],[0.174277,51.132941],[0.175828,51.133759],[0.180372,51.13179],[0.18317,51.134935],[0.187482,51.136356],[0.18902,51.138664],[0.191162,51.139549],[0.193482,51.139421],[0.193041,51.140546],[0.193954,51.143249],[0.194846,51.144961],[0.19646,51.146406],[0.200243,51.146021],[0.203657,51.149544],[0.205987,51.151088],[0.210917,51.151692],[0.212148,51.151615],[0.215454,51.15436],[0.21295,51.155042],[0.210255,51.156645],[0.208732,51.159024],[0.205658,51.158684],[0.205461,51.160872],[0.203146,51.161732],[0.201474,51.160144],[0.199012,51.161745],[0.196011,51.164329],[0.195712,51.164987],[0.19064,51.167962],[0.190971,51.171378],[0.19266,51.172174],[0.19478,51.173825],[0.197693,51.17524],[0.198855,51.174463],[0.199374,51.173282],[0.200702,51.172665],[0.202178,51.172609],[0.203456,51.17123],[0.205377,51.172671],[0.20738,51.175363],[0.21221,51.175447],[0.218092,51.177509],[0.216303,51.179139],[0.219269,51.179991],[0.226961,51.184154],[0.228799,51.186004],[0.229114,51.18882],[0.228722,51.190654],[0.229541,51.191224],[0.229066,51.192122],[0.231227,51.191969],[0.232314,51.193446],[0.235089,51.192896],[0.235869,51.19228],[0.237409,51.192366],[0.239026,51.191965],[0.239767,51.193026],[0.245393,51.191907],[0.244697,51.194219],[0.246765,51.194249],[0.248077,51.195611],[0.247222,51.196366],[0.248312,51.197003],[0.248163,51.197729],[0.250135,51.197725],[0.250983,51.198444],[0.250876,51.200381],[0.250109,51.201707],[0.248353,51.201587],[0.247514,51.200663],[0.245375,51.199776],[0.243224,51.199443],[0.241822,51.198622],[0.240034,51.198719],[0.238284,51.199788],[0.237787,51.200941],[0.236369,51.202193],[0.235357,51.202313],[0.231574,51.201461],[0.228478,51.201686],[0.226479,51.203387],[0.226312,51.205271],[0.225354,51.207307],[0.223732,51.206633],[0.222337,51.206555],[0.219303,51.205702],[0.217655,51.20616],[0.217052,51.20773],[0.214155,51.20815],[0.212556,51.20884],[0.211155,51.20889],[0.20891,51.210342],[0.207912,51.210592],[0.207136,51.211986],[0.204867,51.214044],[0.204283,51.216176],[0.202376,51.217226],[0.201463,51.21824],[0.201954,51.220557],[0.205226,51.221143],[0.207321,51.221843],[0.211425,51.221874],[0.212249,51.222852],[0.211657,51.223745],[0.212339,51.224598],[0.209281,51.225832],[0.208773,51.225711],[0.20651,51.227117],[0.203447,51.22829],[0.203065,51.229447],[0.200941,51.231489],[0.200542,51.233759],[0.208122,51.235851],[0.210086,51.236749],[0.214098,51.239087],[0.215947,51.241082],[0.219096,51.243374],[0.223083,51.244906],[0.224876,51.243469],[0.224882,51.241681],[0.224429,51.240753],[0.225439,51.238948],[0.229456,51.233365],[0.230962,51.23223],[0.241182,51.236976],[0.247013,51.237686],[0.248088,51.238534],[0.247338,51.240005],[0.247707,51.242323],[0.24911,51.242905],[0.250377,51.245655],[0.250445,51.247021],[0.249021,51.249287],[0.246455,51.25188],[0.247332,51.255294],[0.249814,51.25531],[0.252508,51.254621],[0.254478,51.254561],[0.259155,51.254948],[0.261286,51.25445],[0.262278,51.255364],[0.263841,51.255786],[0.264594,51.256999],[0.265164,51.260066],[0.264657,51.261972],[0.265252,51.26543],[0.264898,51.267725],[0.263145,51.2692],[0.260507,51.27021],[0.260485,51.272309],[0.259439,51.273863],[0.258244,51.27487],[0.255171,51.276411],[0.2564,51.278533],[0.257751,51.279558],[0.258278,51.281246],[0.258023,51.283798],[0.258574,51.285878],[0.261356,51.289141],[0.261206,51.291509],[0.260161,51.293012],[0.261016,51.294923],[0.259844,51.29512],[0.258453,51.297292],[0.264666,51.29706],[0.265348,51.301552],[0.263298,51.303563],[0.263686,51.305303],[0.263028,51.305894],[0.264371,51.308576],[0.26499,51.3118],[0.265836,51.311778],[0.265144,51.313637],[0.267899,51.314132],[0.267517,51.315529],[0.272414,51.317411],[0.275285,51.317895],[0.277054,51.318729],[0.278563,51.320573],[0.280675,51.321765],[0.281625,51.323331],[0.284475,51.324898],[0.285012,51.327068],[0.284796,51.32979],[0.2868,51.334112],[0.288347,51.335811],[0.288345,51.339575],[0.285385,51.34005],[0.285192,51.341874],[0.285769,51.344997],[0.291532,51.345368],[0.293998,51.349194],[0.296322,51.351877],[0.304674,51.350806],[0.308073,51.349131],[0.308679,51.348552],[0.307488,51.346243],[0.306889,51.343126],[0.308181,51.342789],[0.312485,51.340977],[0.314033,51.339787],[0.316614,51.338745],[0.31744,51.337814],[0.321882,51.336615],[0.327972,51.333598],[0.329623,51.332381],[0.334699,51.331099],[0.337331,51.329781],[0.341604,51.329216],[0.343664,51.332593],[0.344726,51.337533],[0.344719,51.338658],[0.34079,51.339744],[0.341534,51.341284],[0.341503,51.343518],[0.340641,51.343644],[0.34229,51.348354],[0.34162,51.354539],[0.338891,51.356458],[0.337054,51.360008],[0.335569,51.360635],[0.335259,51.365068],[0.336692,51.369762],[0.335147,51.369657],[0.332677,51.368293],[0.331447,51.371278],[0.332144,51.372896],[0.33181,51.374693],[0.332406,51.375781],[0.33272,51.378515],[0.333839,51.38088],[0.333691,51.383142],[0.334532,51.384293],[0.33602,51.38538],[0.336679,51.386544]]]},"properties":{"LAD22CD":"E07000111","LAD22NM":"Sevenoaks","BNG_E":552776,"BNG_N":155218,"LONG":0.188936,"LAT":51.27563,"GlobalID":"ebd97ae4-8935-4139-affe-45e071c72a64"},"id":133}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.147638,51.177178],[1.143794,51.178509],[1.140005,51.181597],[1.138558,51.183321],[1.134513,51.184944],[1.131338,51.185698],[1.12688,51.185552],[1.123205,51.186315],[1.120356,51.186567],[1.116033,51.1878],[1.116701,51.190912],[1.117965,51.192591],[1.117764,51.193621],[1.118458,51.196139],[1.114795,51.196954],[1.115088,51.194235],[1.113585,51.189525],[1.112738,51.188646],[1.108971,51.186962],[1.097309,51.188923],[1.094998,51.188648],[1.092446,51.189318],[1.091198,51.189016],[1.089761,51.189727],[1.085245,51.190261],[1.080358,51.191648],[1.078287,51.192982],[1.077064,51.194943],[1.07461,51.196734],[1.069968,51.199362],[1.070141,51.20074],[1.066543,51.201271],[1.063911,51.202151],[1.060731,51.203792],[1.059409,51.204835],[1.058257,51.205004],[1.055095,51.191733],[1.054763,51.18859],[1.050889,51.18646],[1.049578,51.184988],[1.042044,51.18712],[1.042431,51.185529],[1.041208,51.183046],[1.039838,51.182188],[1.028517,51.181005],[1.02407,51.180253],[1.021289,51.179346],[1.017615,51.179461],[1.014184,51.181052],[1.007686,51.181633],[1.00397,51.180053],[1.00279,51.178848],[1.001694,51.175593],[0.99949,51.172038],[1.001282,51.169493],[1.00071,51.16822],[0.998604,51.166598],[0.998437,51.164741],[1.00304,51.164434],[1.008213,51.163304],[1.009572,51.163439],[1.01175,51.16259],[1.013567,51.16135],[1.015778,51.161499],[1.016923,51.161201],[1.009497,51.154097],[1.011882,51.152501],[1.011929,51.151379],[1.013282,51.151082],[1.01242,51.149897],[1.009762,51.147956],[1.008462,51.145538],[1.010225,51.144161],[1.012028,51.143708],[1.013088,51.142791],[1.016561,51.14226],[1.018013,51.141291],[1.016492,51.14023],[1.020568,51.134664],[1.022448,51.133948],[1.025088,51.133922],[1.029241,51.132538],[1.026909,51.129519],[1.02445,51.128572],[1.02293,51.12561],[1.023875,51.125079],[1.02213,51.123843],[1.020565,51.124078],[1.017581,51.125424],[1.016786,51.122861],[1.01552,51.121847],[1.016552,51.121263],[1.016873,51.119404],[1.014879,51.118792],[1.012118,51.1172],[1.011246,51.117228],[1.009277,51.116266],[1.00796,51.116556],[1.006441,51.117774],[1.004032,51.118982],[1.003041,51.118225],[1.000461,51.118397],[0.998976,51.118898],[1.000508,51.121248],[0.995419,51.122322],[0.996279,51.119897],[0.996257,51.118963],[0.99542,51.118168],[0.993378,51.117461],[0.99176,51.117684],[0.989738,51.117126],[0.988852,51.11758],[0.986132,51.115353],[0.983863,51.114572],[0.983717,51.113859],[0.981854,51.11389],[0.979767,51.112187],[0.982209,51.110878],[0.981691,51.110048],[0.983391,51.10832],[0.980447,51.107464],[0.978594,51.106126],[0.977973,51.105161],[0.978506,51.104377],[0.979801,51.10459],[0.980303,51.103613],[0.983168,51.10132],[0.983915,51.100279],[0.985415,51.100121],[0.985173,51.0976],[0.983714,51.093541],[0.982389,51.092723],[0.983466,51.091086],[0.98026,51.089595],[0.979939,51.087486],[0.980233,51.086851],[0.976943,51.0846],[0.976588,51.083167],[0.977632,51.081174],[0.97554,51.079018],[0.972785,51.079699],[0.971147,51.078271],[0.970012,51.077865],[0.969731,51.076951],[0.967448,51.077065],[0.967744,51.071589],[0.966652,51.070738],[0.966677,51.068803],[0.968362,51.068735],[0.968169,51.067025],[0.968929,51.062926],[0.966193,51.062339],[0.96359,51.060737],[0.960695,51.060162],[0.958234,51.060259],[0.955645,51.059381],[0.954392,51.05864],[0.95439,51.057808],[0.951812,51.056951],[0.949337,51.05703],[0.946601,51.055267],[0.944128,51.054906],[0.943791,51.056004],[0.939821,51.057063],[0.936565,51.058349],[0.935129,51.058681],[0.934274,51.061147],[0.932512,51.060475],[0.931584,51.058961],[0.927358,51.057853],[0.92651,51.056493],[0.921336,51.056116],[0.922794,51.052075],[0.91967,51.051885],[0.919469,51.052602],[0.916752,51.052153],[0.916291,51.053444],[0.914991,51.053391],[0.915871,51.050433],[0.914439,51.049812],[0.913143,51.05031],[0.909775,51.049958],[0.906702,51.051225],[0.903325,51.050462],[0.901149,51.049077],[0.897974,51.044919],[0.899691,51.043023],[0.900123,51.038657],[0.896388,51.037875],[0.894482,51.036986],[0.893883,51.037402],[0.893156,51.039453],[0.89126,51.039592],[0.890206,51.041108],[0.887941,51.03999],[0.885583,51.040218],[0.883972,51.041833],[0.882131,51.042712],[0.883194,51.043691],[0.882393,51.046334],[0.88145,51.048338],[0.878108,51.051236],[0.877239,51.051633],[0.875277,51.050994],[0.872692,51.052802],[0.870435,51.05231],[0.869003,51.051611],[0.870617,51.051035],[0.870473,51.049478],[0.868882,51.049204],[0.867766,51.047727],[0.870341,51.048231],[0.870908,51.047214],[0.87109,51.045585],[0.869341,51.045141],[0.869684,51.044113],[0.867017,51.043179],[0.866565,51.043951],[0.861471,51.043792],[0.860443,51.044314],[0.858001,51.044471],[0.855739,51.045017],[0.855285,51.043695],[0.853441,51.043149],[0.85337,51.042292],[0.855445,51.042213],[0.855526,51.040265],[0.856067,51.039382],[0.855924,51.036053],[0.856852,51.035257],[0.855869,51.033932],[0.856754,51.032553],[0.854666,51.032595],[0.85481,51.031763],[0.852618,51.032054],[0.849488,51.03334],[0.84622,51.033075],[0.845351,51.032617],[0.84035,51.031941],[0.839094,51.031354],[0.837518,51.032645],[0.839658,51.03452],[0.839224,51.036167],[0.840117,51.038941],[0.833608,51.040026],[0.83355,51.041465],[0.831319,51.041291],[0.831169,51.043593],[0.832803,51.044588],[0.83428,51.044655],[0.837883,51.044071],[0.837211,51.044845],[0.837651,51.04584],[0.835495,51.048182],[0.833943,51.047911],[0.832097,51.048418],[0.830872,51.049371],[0.785769,50.997994],[0.778957,50.989492],[0.779538,50.987495],[0.781054,50.986499],[0.777026,50.984855],[0.779013,50.982394],[0.781702,50.982886],[0.778835,50.979843],[0.777785,50.979441],[0.77845,50.978348],[0.777085,50.977337],[0.777135,50.975428],[0.778663,50.976583],[0.780748,50.976791],[0.782968,50.977419],[0.784328,50.97723],[0.785456,50.975233],[0.789541,50.971418],[0.790393,50.969992],[0.801978,50.958283],[0.805549,50.954981],[0.813463,50.949011],[0.812942,50.942],[0.814665,50.942398],[0.81673,50.942285],[0.818549,50.943098],[0.819385,50.944298],[0.819068,50.945455],[0.821295,50.945722],[0.822904,50.944758],[0.824811,50.945451],[0.826427,50.945268],[0.827899,50.945872],[0.829869,50.945665],[0.833318,50.949499],[0.836962,50.950456],[0.838738,50.952393],[0.838869,50.954296],[0.841101,50.954704],[0.839762,50.956212],[0.841401,50.957609],[0.844275,50.957352],[0.844977,50.955856],[0.84642,50.955],[0.846918,50.953567],[0.846112,50.951854],[0.848037,50.951732],[0.849065,50.951261],[0.85253,50.951568],[0.855968,50.953129],[0.860973,50.941831],[0.859629,50.93968],[0.864116,50.93513],[0.867891,50.933262],[0.866013,50.931151],[0.865096,50.92926],[0.855086,50.923909],[0.896213,50.917788],[0.936384,50.912755],[0.952406,50.911396],[0.960696,50.911014],[0.970552,50.910917],[0.974288,50.911157],[0.97674,50.91166],[0.979835,50.913299],[0.981508,50.914738],[0.982578,50.917602],[0.982282,50.921152],[0.98138,50.923939],[0.979248,50.926141],[0.9725,50.936271],[0.966657,50.95072],[0.964028,50.961557],[0.964351,50.968064],[0.966138,50.974105],[0.966722,50.974809],[0.967753,50.97853],[0.969907,50.983419],[0.973532,50.99456],[0.977215,51.002605],[0.984354,51.013234],[0.989886,51.018822],[0.996748,51.024587],[1.006802,51.031627],[1.016312,51.036424],[1.021046,51.039453],[1.034688,51.047078],[1.037436,51.04876],[1.039366,51.050418],[1.050031,51.055196],[1.060448,51.059119],[1.075563,51.063537],[1.085271,51.065175],[1.086169,51.065743],[1.094423,51.06702],[1.094889,51.067419],[1.100776,51.068352],[1.116397,51.07031],[1.124604,51.070914],[1.125617,51.071296],[1.145382,51.072877],[1.156522,51.073092],[1.163005,51.072723],[1.163493,51.073124],[1.170664,51.073341],[1.171507,51.074302],[1.173896,51.074607],[1.175092,51.075258],[1.17759,51.075954],[1.186522,51.076378],[1.188738,51.076794],[1.189811,51.077385],[1.189943,51.079065],[1.186201,51.078491],[1.185506,51.079422],[1.187378,51.080295],[1.190037,51.080838],[1.191559,51.082055],[1.194794,51.082718],[1.199319,51.083187],[1.201085,51.084988],[1.201296,51.088681],[1.205707,51.092711],[1.208471,51.094134],[1.21038,51.094319],[1.213279,51.096213],[1.21555,51.09716],[1.221146,51.098091],[1.220468,51.101206],[1.219939,51.101345],[1.214096,51.100284],[1.213274,51.099716],[1.209444,51.0992],[1.209197,51.098431],[1.206164,51.097847],[1.204371,51.097192],[1.204266,51.098978],[1.197182,51.101716],[1.194938,51.10303],[1.19678,51.10452],[1.1951,51.105685],[1.195546,51.107662],[1.194616,51.110674],[1.194004,51.111146],[1.19557,51.114043],[1.195646,51.115888],[1.197367,51.118149],[1.192432,51.119157],[1.188985,51.119244],[1.1858,51.121404],[1.180867,51.119202],[1.17915,51.120873],[1.17905,51.12281],[1.178009,51.123706],[1.174871,51.122264],[1.173048,51.122525],[1.171497,51.124641],[1.173964,51.126731],[1.173452,51.127193],[1.176939,51.131236],[1.176808,51.131912],[1.178926,51.134527],[1.182169,51.133364],[1.184505,51.134782],[1.185922,51.134147],[1.188257,51.134694],[1.190117,51.135988],[1.189211,51.136514],[1.189156,51.138766],[1.194024,51.141606],[1.195354,51.142731],[1.197827,51.143677],[1.19902,51.144808],[1.202269,51.145664],[1.203094,51.147205],[1.204522,51.148272],[1.20799,51.150263],[1.211065,51.151477],[1.210225,51.153521],[1.207678,51.156834],[1.203077,51.155095],[1.2012,51.15528],[1.194178,51.154232],[1.190659,51.154016],[1.187855,51.154904],[1.182992,51.15794],[1.181905,51.157359],[1.181265,51.156162],[1.179543,51.156721],[1.17709,51.156916],[1.177633,51.159244],[1.176569,51.162445],[1.175383,51.162443],[1.171705,51.160651],[1.171064,51.161173],[1.170735,51.163136],[1.168962,51.162665],[1.165837,51.160013],[1.165821,51.158503],[1.161949,51.158018],[1.157759,51.159464],[1.156535,51.160141],[1.15634,51.161269],[1.153404,51.162677],[1.143731,51.165776],[1.142776,51.169116],[1.14412,51.173519],[1.147638,51.177178]]]},"properties":{"LAD22CD":"E07000112","LAD22NM":"Folkestone and Hythe","BNG_E":610318,"BNG_N":134595,"LONG":1.000795,"LAT":51.07213,"GlobalID":"0d41d9af-3f8b-4415-85cb-e7df2cd801d6"},"id":134}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.826424,51.357972],[0.826267,51.35692],[0.82978,51.356276],[0.829181,51.357378],[0.826424,51.357972]]],[[[0.878168,51.361755],[0.876417,51.362506],[0.875739,51.360968],[0.876662,51.359969],[0.877848,51.360309],[0.878168,51.361755]]],[[[0.862598,51.364214],[0.86289,51.365037],[0.86149,51.365624],[0.860573,51.363972],[0.862598,51.364214]]],[[[0.853069,51.366215],[0.851862,51.365324],[0.856746,51.363373],[0.855353,51.364785],[0.853069,51.366215]]],[[[0.861417,51.36567],[0.859974,51.366101],[0.85853,51.366948],[0.858493,51.365522],[0.857533,51.364744],[0.860363,51.363963],[0.861417,51.36567]]],[[[0.681781,51.396542],[0.679491,51.396951],[0.67759,51.39682],[0.674985,51.396126],[0.673504,51.395038],[0.670801,51.394424],[0.669492,51.393498],[0.669675,51.392564],[0.671598,51.391794],[0.673332,51.390618],[0.674952,51.391908],[0.67797,51.393171],[0.680723,51.395002],[0.682517,51.395581],[0.681781,51.396542]]],[[[0.682969,51.412645],[0.682203,51.411915],[0.682494,51.40898],[0.679097,51.409294],[0.675504,51.408989],[0.676761,51.407982],[0.679449,51.407613],[0.677909,51.406389],[0.675607,51.406692],[0.675554,51.40741],[0.673373,51.408089],[0.672103,51.410174],[0.669991,51.409346],[0.667519,51.409202],[0.665802,51.40786],[0.665928,51.406282],[0.66839,51.405891],[0.669792,51.406642],[0.670092,51.405183],[0.671808,51.404418],[0.671283,51.40373],[0.674035,51.402255],[0.673772,51.401408],[0.671983,51.400985],[0.673003,51.398829],[0.676585,51.399551],[0.680355,51.399947],[0.680504,51.399298],[0.683714,51.398091],[0.686415,51.397573],[0.68991,51.397287],[0.691706,51.396695],[0.69451,51.396764],[0.695194,51.398155],[0.691417,51.402543],[0.690381,51.405331],[0.691038,51.409293],[0.690472,51.410923],[0.691199,51.411674],[0.689265,51.412345],[0.685577,51.411933],[0.682969,51.412645]]],[[[0.731354,51.416038],[0.730616,51.417471],[0.728671,51.417873],[0.728492,51.418947],[0.727171,51.419759],[0.725601,51.419466],[0.724215,51.418726],[0.723934,51.417559],[0.726082,51.417268],[0.730533,51.415573],[0.731354,51.416038]]],[[[0.950472,51.345598],[0.939358,51.346818],[0.936383,51.346882],[0.933511,51.346538],[0.928225,51.345298],[0.922051,51.345546],[0.917029,51.3452],[0.91711,51.344152],[0.914545,51.343483],[0.91062,51.343865],[0.904744,51.343054],[0.89963,51.341778],[0.896773,51.341438],[0.896002,51.34047],[0.895794,51.336619],[0.898326,51.335124],[0.899299,51.335011],[0.901616,51.336163],[0.904006,51.33666],[0.909987,51.335437],[0.911447,51.334602],[0.913219,51.331946],[0.915933,51.32928],[0.916088,51.328023],[0.915512,51.326815],[0.914302,51.326319],[0.911214,51.326494],[0.909606,51.325429],[0.909427,51.324623],[0.902931,51.322421],[0.895534,51.320771],[0.890586,51.317978],[0.893672,51.320785],[0.902822,51.322752],[0.907853,51.324506],[0.911221,51.326888],[0.913852,51.326669],[0.915463,51.327837],[0.915285,51.329452],[0.912073,51.331564],[0.911207,51.333935],[0.90978,51.334893],[0.903394,51.335531],[0.898973,51.333943],[0.896445,51.335084],[0.894603,51.336339],[0.892254,51.334079],[0.889101,51.333148],[0.885581,51.332519],[0.884854,51.332133],[0.882048,51.329549],[0.881977,51.331129],[0.883592,51.331739],[0.884859,51.332996],[0.886267,51.333489],[0.890988,51.334105],[0.892584,51.335033],[0.894209,51.338242],[0.894347,51.341506],[0.89417,51.342975],[0.897167,51.344191],[0.89679,51.344626],[0.892969,51.345064],[0.889295,51.346587],[0.887735,51.346561],[0.886104,51.347836],[0.882806,51.349377],[0.877856,51.35308],[0.87435,51.354263],[0.871902,51.354428],[0.866161,51.355852],[0.862249,51.356334],[0.858712,51.355726],[0.858444,51.35535],[0.855779,51.355249],[0.851823,51.354488],[0.842921,51.354519],[0.837849,51.353788],[0.836759,51.354197],[0.834479,51.354357],[0.832044,51.35405],[0.82856,51.354293],[0.828256,51.354598],[0.822465,51.354672],[0.821544,51.35561],[0.819715,51.356114],[0.817193,51.356353],[0.812634,51.352546],[0.811187,51.352077],[0.811792,51.351302],[0.814293,51.350166],[0.815076,51.348864],[0.814568,51.346769],[0.813701,51.347028],[0.811708,51.346527],[0.810815,51.347252],[0.813987,51.347833],[0.813984,51.349286],[0.812844,51.350011],[0.810786,51.350543],[0.809702,51.351686],[0.810155,51.353082],[0.813749,51.3555],[0.814723,51.356832],[0.814414,51.35819],[0.810791,51.359248],[0.806416,51.359921],[0.782176,51.360808],[0.777843,51.361744],[0.774559,51.361422],[0.770689,51.362313],[0.76835,51.362422],[0.765949,51.362169],[0.76452,51.360893],[0.76031,51.360698],[0.759102,51.359393],[0.757606,51.354609],[0.75442,51.35039],[0.752673,51.349666],[0.750843,51.350009],[0.750595,51.350662],[0.752671,51.351538],[0.754757,51.353244],[0.755541,51.353491],[0.756865,51.355775],[0.755425,51.355946],[0.75723,51.35711],[0.757293,51.359877],[0.758451,51.361744],[0.761042,51.362489],[0.763652,51.362597],[0.764455,51.36303],[0.763371,51.365424],[0.763235,51.367401],[0.761641,51.367958],[0.761717,51.369219],[0.759382,51.370271],[0.759816,51.371641],[0.761046,51.3729],[0.759897,51.374821],[0.762029,51.376017],[0.759943,51.376819],[0.762984,51.379157],[0.763713,51.381956],[0.762731,51.384336],[0.760509,51.385124],[0.758959,51.383137],[0.758862,51.385243],[0.75467,51.386281],[0.75132,51.387613],[0.74978,51.388685],[0.749253,51.389973],[0.748012,51.390413],[0.743455,51.393883],[0.738573,51.39596],[0.735804,51.394149],[0.734751,51.395657],[0.733944,51.395686],[0.73014,51.396981],[0.726436,51.399018],[0.723459,51.404749],[0.723078,51.405824],[0.721153,51.408465],[0.719575,51.409033],[0.719698,51.409766],[0.718275,51.411609],[0.716877,51.412621],[0.717323,51.414834],[0.720137,51.416925],[0.723645,51.417361],[0.723639,51.418733],[0.724211,51.41902],[0.726581,51.419804],[0.727531,51.419813],[0.728963,51.419619],[0.728378,51.420343],[0.725083,51.4203],[0.722677,51.419196],[0.723552,51.417604],[0.721415,51.417552],[0.720408,51.418553],[0.716456,51.419147],[0.715413,51.419591],[0.712413,51.419217],[0.708057,51.418154],[0.705891,51.419795],[0.699068,51.421387],[0.698647,51.419071],[0.697546,51.418256],[0.696422,51.418978],[0.697742,51.415139],[0.698117,51.41257],[0.699023,51.412465],[0.700045,51.410355],[0.703354,51.408951],[0.705506,51.408408],[0.703668,51.407767],[0.70251,51.408321],[0.699668,51.408689],[0.698642,51.409581],[0.697457,51.408954],[0.695885,51.407213],[0.697691,51.402791],[0.69917,51.402315],[0.698582,51.401537],[0.700436,51.398799],[0.702513,51.399016],[0.704543,51.398537],[0.701791,51.397315],[0.70195,51.396086],[0.70344,51.395163],[0.707233,51.394824],[0.709285,51.393975],[0.711915,51.391523],[0.717269,51.39012],[0.719035,51.389127],[0.719199,51.388113],[0.716898,51.38798],[0.716672,51.387065],[0.715469,51.386471],[0.714357,51.384177],[0.711012,51.383125],[0.706142,51.382602],[0.701943,51.381463],[0.700833,51.381985],[0.698882,51.380845],[0.696381,51.380443],[0.6949,51.380927],[0.693611,51.382011],[0.694812,51.382924],[0.694752,51.384843],[0.696282,51.385338],[0.696352,51.386023],[0.698831,51.387613],[0.699285,51.388272],[0.698667,51.389534],[0.702421,51.391043],[0.702491,51.392355],[0.698224,51.393983],[0.695913,51.392699],[0.691462,51.391965],[0.687976,51.391841],[0.686535,51.391438],[0.685655,51.390299],[0.684433,51.389542],[0.682942,51.386302],[0.682589,51.384566],[0.683355,51.38283],[0.682352,51.381226],[0.682524,51.380363],[0.681424,51.379846],[0.677759,51.37945],[0.676514,51.378418],[0.674999,51.37577],[0.671398,51.376078],[0.671615,51.377272],[0.668907,51.378515],[0.666869,51.37878],[0.666222,51.379768],[0.667212,51.38222],[0.665991,51.382816],[0.663687,51.382688],[0.660267,51.38379],[0.661237,51.384547],[0.66156,51.386903],[0.6607,51.38789],[0.658884,51.389067],[0.658607,51.390562],[0.657462,51.391367],[0.657473,51.392688],[0.656207,51.3934],[0.654027,51.39398],[0.651812,51.395854],[0.649317,51.396712],[0.648011,51.397555],[0.644525,51.396642],[0.642977,51.395734],[0.639962,51.395067],[0.641329,51.39369],[0.641732,51.391147],[0.639655,51.38974],[0.641124,51.388719],[0.641044,51.387576],[0.640111,51.386618],[0.638369,51.386577],[0.63595,51.383008],[0.634567,51.382502],[0.631898,51.382404],[0.631291,51.380316],[0.630114,51.380728],[0.628012,51.378194],[0.626955,51.374731],[0.625738,51.373465],[0.625834,51.37141],[0.623292,51.369223],[0.626267,51.368251],[0.628382,51.368368],[0.634908,51.36637],[0.629299,51.35922],[0.628569,51.359371],[0.625327,51.355175],[0.622085,51.349689],[0.620033,51.349709],[0.618163,51.348642],[0.617934,51.347394],[0.613723,51.341118],[0.611322,51.339318],[0.612052,51.337941],[0.610949,51.336474],[0.60801,51.334644],[0.603878,51.336257],[0.60203,51.334625],[0.601403,51.333301],[0.602876,51.332178],[0.607078,51.330795],[0.604625,51.328604],[0.60098,51.328203],[0.601542,51.327371],[0.604424,51.325697],[0.607834,51.328487],[0.610942,51.33265],[0.612926,51.334664],[0.61588,51.335115],[0.619446,51.334469],[0.619622,51.333269],[0.618429,51.331522],[0.623275,51.331872],[0.629493,51.333014],[0.634699,51.335258],[0.63629,51.335278],[0.639748,51.336765],[0.641935,51.336197],[0.644988,51.336163],[0.656722,51.331619],[0.659091,51.330557],[0.660429,51.330422],[0.66432,51.328929],[0.665272,51.32799],[0.663405,51.32591],[0.662354,51.325243],[0.658855,51.324493],[0.662819,51.319434],[0.665348,51.317241],[0.66878,51.312734],[0.669062,51.311694],[0.670957,51.310092],[0.66918,51.307992],[0.673426,51.30567],[0.675184,51.30562],[0.675346,51.303837],[0.671652,51.29969],[0.673066,51.299274],[0.671446,51.296834],[0.675875,51.295767],[0.67427,51.294372],[0.673845,51.293272],[0.680501,51.291182],[0.692876,51.29812],[0.701578,51.299175],[0.70602,51.298806],[0.712733,51.298791],[0.713817,51.299408],[0.71617,51.296788],[0.716316,51.295855],[0.717696,51.293288],[0.719869,51.291796],[0.721345,51.289611],[0.722855,51.289554],[0.725303,51.288658],[0.728953,51.286666],[0.733172,51.285344],[0.743874,51.278469],[0.747454,51.27811],[0.756843,51.278025],[0.760064,51.279314],[0.760894,51.278576],[0.76454,51.27675],[0.761524,51.274858],[0.760006,51.271994],[0.758727,51.271088],[0.756897,51.268969],[0.750813,51.259775],[0.749641,51.258644],[0.750768,51.257833],[0.75766,51.256358],[0.760761,51.25661],[0.761955,51.256378],[0.765141,51.258273],[0.766386,51.25987],[0.769404,51.262088],[0.775216,51.264952],[0.776784,51.266564],[0.778836,51.264702],[0.782968,51.264959],[0.790547,51.261781],[0.78952,51.260596],[0.789571,51.259131],[0.792352,51.258121],[0.793379,51.257281],[0.792188,51.255112],[0.792385,51.254252],[0.791662,51.251372],[0.789378,51.248634],[0.796469,51.246295],[0.794947,51.244473],[0.792657,51.238073],[0.795764,51.236877],[0.792379,51.233357],[0.792179,51.232015],[0.791246,51.230826],[0.794063,51.230181],[0.795539,51.229426],[0.795118,51.228534],[0.797326,51.228074],[0.798238,51.229074],[0.799539,51.228476],[0.800169,51.229482],[0.80395,51.22965],[0.809783,51.227116],[0.812062,51.227975],[0.816301,51.225197],[0.822169,51.224348],[0.823288,51.226603],[0.825193,51.228566],[0.835317,51.23192],[0.841768,51.237102],[0.845719,51.234431],[0.848605,51.233586],[0.851452,51.23155],[0.854511,51.230698],[0.859873,51.230838],[0.86103,51.235332],[0.863494,51.238872],[0.867761,51.239883],[0.871782,51.239759],[0.876318,51.240095],[0.880051,51.239026],[0.881141,51.241258],[0.882455,51.242865],[0.888651,51.245081],[0.89141,51.246716],[0.892057,51.247636],[0.896724,51.247017],[0.902373,51.24524],[0.904972,51.245595],[0.906398,51.247794],[0.903705,51.24906],[0.905321,51.250186],[0.909785,51.250689],[0.91028,51.2502],[0.916775,51.25125],[0.91953,51.251103],[0.920849,51.252577],[0.91989,51.254957],[0.920108,51.256873],[0.92065,51.257742],[0.921864,51.258141],[0.923728,51.259415],[0.92693,51.259607],[0.931332,51.258027],[0.933423,51.256515],[0.933518,51.255765],[0.937968,51.253368],[0.941923,51.253441],[0.949122,51.256034],[0.951112,51.25758],[0.950148,51.260614],[0.950305,51.262356],[0.952423,51.265602],[0.954343,51.266609],[0.954194,51.267264],[0.955294,51.269183],[0.955032,51.270246],[0.958151,51.268505],[0.961499,51.268632],[0.964906,51.268052],[0.968189,51.269262],[0.971971,51.269193],[0.973279,51.268595],[0.974635,51.269632],[0.976999,51.270172],[0.977169,51.272477],[0.980167,51.27458],[0.983193,51.27467],[0.981752,51.277671],[0.983224,51.277588],[0.985574,51.278157],[0.988706,51.279604],[0.99057,51.27905],[0.993687,51.279724],[0.996203,51.2809],[0.997565,51.280632],[1.005967,51.283783],[1.004051,51.288179],[1.006233,51.292325],[1.011026,51.302916],[1.01022,51.303981],[1.010283,51.304981],[1.009069,51.30579],[1.009187,51.307128],[1.007578,51.307834],[1.006659,51.309637],[1.01214,51.311993],[1.016985,51.312935],[1.015674,51.314581],[1.01504,51.316782],[1.012461,51.318176],[1.009595,51.318674],[1.007887,51.319594],[1.00511,51.319687],[1.000949,51.318988],[0.990574,51.324629],[0.973725,51.335305],[0.972368,51.336502],[0.971964,51.338244],[0.967593,51.337151],[0.967678,51.336357],[0.965237,51.336557],[0.963907,51.335948],[0.962754,51.336933],[0.961099,51.337525],[0.958152,51.337953],[0.950472,51.345598]]],[[[0.719696,51.420661],[0.71688,51.420404],[0.716872,51.419984],[0.719945,51.4191],[0.723009,51.420137],[0.719696,51.420661]]],[[[0.678799,51.423519],[0.676125,51.423076],[0.673352,51.423007],[0.672625,51.423373],[0.667769,51.423372],[0.665719,51.423813],[0.663011,51.422272],[0.662618,51.421234],[0.66144,51.421183],[0.660049,51.419844],[0.659587,51.418575],[0.660058,51.417626],[0.661785,51.418737],[0.661237,51.419616],[0.662764,51.419881],[0.663426,51.419053],[0.668088,51.420484],[0.668738,51.419959],[0.670557,51.41617],[0.670733,51.413769],[0.672311,51.413476],[0.67621,51.414731],[0.675545,51.418184],[0.676311,51.419277],[0.680519,51.419241],[0.6841,51.417789],[0.685369,51.41619],[0.68628,51.415648],[0.686789,51.414528],[0.688195,51.414987],[0.687852,51.418069],[0.6873,51.41929],[0.687591,51.4219],[0.684657,51.422878],[0.682559,51.423059],[0.680947,51.422772],[0.678799,51.423519]]],[[[0.727183,51.422791],[0.726033,51.422607],[0.726092,51.421132],[0.729607,51.420912],[0.728327,51.422962],[0.727183,51.422791]]],[[[0.878168,51.361755],[0.878701,51.360918],[0.877866,51.359873],[0.879589,51.359262],[0.881225,51.357826],[0.889372,51.355347],[0.891201,51.355244],[0.896298,51.354487],[0.898987,51.354508],[0.90777,51.3554],[0.912366,51.356785],[0.915113,51.358078],[0.91643,51.35828],[0.921101,51.36111],[0.921053,51.359781],[0.926454,51.362445],[0.926826,51.364867],[0.929414,51.366074],[0.930551,51.366304],[0.932457,51.367613],[0.937168,51.369721],[0.93978,51.370381],[0.941457,51.370501],[0.942901,51.370134],[0.942516,51.368194],[0.944443,51.367026],[0.945153,51.367425],[0.94608,51.36973],[0.948878,51.371002],[0.95094,51.373372],[0.94883,51.376024],[0.945097,51.379707],[0.943524,51.382436],[0.940697,51.386114],[0.939189,51.387449],[0.938154,51.389812],[0.928559,51.396462],[0.924869,51.398682],[0.918565,51.401762],[0.91019,51.407122],[0.910188,51.407583],[0.907797,51.410195],[0.904255,51.412974],[0.903756,51.414564],[0.901367,51.416826],[0.899978,51.416862],[0.897988,51.417576],[0.892681,51.41862],[0.888462,51.420105],[0.884453,51.420921],[0.874548,51.42141],[0.871519,51.42081],[0.867677,51.420799],[0.860558,51.422405],[0.852699,51.422956],[0.849435,51.42355],[0.845993,51.423561],[0.841837,51.424607],[0.840572,51.424328],[0.832755,51.425088],[0.831219,51.425524],[0.824564,51.425536],[0.816028,51.427924],[0.807229,51.431712],[0.791588,51.439264],[0.787925,51.440331],[0.784745,51.440346],[0.782879,51.440716],[0.782223,51.440378],[0.779277,51.440691],[0.775876,51.440308],[0.772711,51.440395],[0.770112,51.441224],[0.769503,51.44084],[0.765601,51.441515],[0.762355,51.442334],[0.758156,51.444025],[0.754468,51.444543],[0.750836,51.445431],[0.747255,51.446758],[0.745257,51.447792],[0.743993,51.447674],[0.743419,51.444854],[0.743631,51.443296],[0.744243,51.44299],[0.744329,51.441011],[0.738065,51.432645],[0.736581,51.42971],[0.735437,51.424373],[0.736009,51.421583],[0.740232,51.417277],[0.741069,51.415118],[0.742454,51.414281],[0.740466,51.41109],[0.734724,51.409316],[0.732453,51.408946],[0.730947,51.409159],[0.729179,51.409891],[0.725835,51.412172],[0.724008,51.41262],[0.726672,51.409832],[0.728036,51.407615],[0.728766,51.404793],[0.731284,51.40118],[0.732678,51.400277],[0.734398,51.399734],[0.739698,51.399004],[0.741973,51.398509],[0.742108,51.397707],[0.746119,51.395317],[0.748596,51.394302],[0.750766,51.394731],[0.751458,51.393874],[0.751387,51.390812],[0.752273,51.39078],[0.753618,51.38966],[0.756732,51.388155],[0.760253,51.387632],[0.761774,51.388294],[0.762454,51.387428],[0.764841,51.385747],[0.765599,51.38574],[0.770322,51.379134],[0.769013,51.378136],[0.765495,51.377339],[0.765604,51.376528],[0.764578,51.374689],[0.76482,51.371348],[0.765379,51.370421],[0.76677,51.369816],[0.768375,51.370802],[0.771549,51.368604],[0.777514,51.368108],[0.778074,51.367663],[0.780197,51.369507],[0.780543,51.370719],[0.783166,51.370638],[0.787208,51.37252],[0.787792,51.373431],[0.790595,51.373048],[0.791794,51.371681],[0.791987,51.37058],[0.797089,51.370761],[0.798575,51.370453],[0.798062,51.369342],[0.799282,51.369094],[0.804629,51.370619],[0.804727,51.371801],[0.806291,51.372289],[0.806899,51.370982],[0.808802,51.369899],[0.81978,51.36896],[0.820834,51.369099],[0.822175,51.367864],[0.836612,51.364657],[0.837203,51.36388],[0.839447,51.363645],[0.84052,51.363972],[0.843983,51.363682],[0.846454,51.36401],[0.850277,51.364038],[0.851305,51.364902],[0.850982,51.366682],[0.848402,51.368854],[0.845737,51.369708],[0.84146,51.3699],[0.839346,51.370603],[0.840371,51.371508],[0.842578,51.371099],[0.846713,51.371261],[0.850261,51.370371],[0.852432,51.368632],[0.8535,51.368564],[0.854979,51.366969],[0.854765,51.366373],[0.856695,51.364926],[0.858265,51.366214],[0.857706,51.368184],[0.856465,51.369898],[0.857698,51.370398],[0.859813,51.369636],[0.859839,51.367866],[0.85852,51.367148],[0.860623,51.365974],[0.862699,51.365459],[0.86873,51.364984],[0.874157,51.363237],[0.874608,51.3638],[0.876555,51.363114],[0.878168,51.361755]]]]},"properties":{"LAD22CD":"E07000113","LAD22NM":"Swale","BNG_E":593583,"BNG_N":161818,"LONG":0.776893,"LAT":51.32251,"GlobalID":"550c1677-1aa6-4989-af17-260dd7c4d8ef"},"id":135}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.371351,51.313911],[1.36865,51.315517],[1.367753,51.317018],[1.365778,51.316436],[1.365951,51.314692],[1.365491,51.313137],[1.371351,51.313911]]],[[[1.357888,51.31149],[1.358787,51.312215],[1.361576,51.313154],[1.36344,51.313002],[1.36438,51.31382],[1.364526,51.315627],[1.365436,51.317357],[1.36319,51.317772],[1.362845,51.320046],[1.364276,51.321983],[1.367031,51.323691],[1.367469,51.324419],[1.370995,51.325978],[1.371996,51.325792],[1.374061,51.326481],[1.374241,51.327597],[1.377755,51.32926],[1.381254,51.328824],[1.382349,51.329009],[1.388026,51.327118],[1.391021,51.32706],[1.392514,51.326525],[1.393684,51.326632],[1.399302,51.326061],[1.407513,51.326565],[1.409276,51.326896],[1.411385,51.323926],[1.415532,51.323816],[1.414245,51.325159],[1.41457,51.327492],[1.41535,51.327501],[1.418377,51.32855],[1.418068,51.329093],[1.419901,51.329966],[1.421029,51.331],[1.42259,51.331409],[1.424853,51.331418],[1.429953,51.336258],[1.432895,51.338462],[1.436347,51.342714],[1.437396,51.344726],[1.438919,51.346309],[1.439638,51.348562],[1.441051,51.348815],[1.4422,51.350129],[1.442289,51.351938],[1.443441,51.354319],[1.442749,51.355425],[1.443723,51.35631],[1.443427,51.358122],[1.444589,51.358795],[1.445905,51.358404],[1.445302,51.362982],[1.445313,51.366306],[1.445813,51.367637],[1.448135,51.36938],[1.44861,51.37031],[1.448384,51.372167],[1.449498,51.374761],[1.449554,51.377479],[1.448917,51.378263],[1.44726,51.379039],[1.446025,51.380108],[1.445058,51.382885],[1.442521,51.383785],[1.440955,51.384931],[1.440993,51.385962],[1.441937,51.387167],[1.437544,51.388249],[1.434746,51.389294],[1.428991,51.391924],[1.426846,51.393236],[1.42496,51.393778],[1.422958,51.392471],[1.419228,51.391579],[1.412145,51.392079],[1.410393,51.39197],[1.408833,51.3923],[1.407838,51.393173],[1.405421,51.392257],[1.391755,51.392556],[1.389914,51.392795],[1.384447,51.392598],[1.380997,51.391335],[1.381129,51.390242],[1.379489,51.389498],[1.379302,51.388661],[1.376917,51.387843],[1.370988,51.386921],[1.367228,51.386872],[1.366617,51.386248],[1.363647,51.385812],[1.358577,51.385688],[1.356014,51.386204],[1.353366,51.387143],[1.350645,51.38694],[1.348714,51.385889],[1.346137,51.385881],[1.345209,51.385129],[1.342611,51.384743],[1.340901,51.384832],[1.33492,51.386353],[1.333234,51.385516],[1.333294,51.383412],[1.331243,51.382501],[1.327987,51.381941],[1.324759,51.382375],[1.316284,51.381677],[1.315737,51.380568],[1.313407,51.380561],[1.311786,51.381548],[1.308666,51.381268],[1.30429,51.381564],[1.30182,51.382029],[1.299166,51.383185],[1.295961,51.382435],[1.292858,51.382354],[1.290092,51.382768],[1.286915,51.381905],[1.285927,51.380471],[1.282914,51.379142],[1.278563,51.377944],[1.273196,51.377527],[1.268661,51.377592],[1.266321,51.378041],[1.263142,51.377699],[1.258782,51.377485],[1.257719,51.377138],[1.25107,51.37713],[1.228822,51.379043],[1.228174,51.379333],[1.224175,51.379334],[1.224264,51.377259],[1.225155,51.374196],[1.225294,51.371671],[1.224836,51.370047],[1.225964,51.369254],[1.230036,51.368932],[1.230487,51.368369],[1.229273,51.365146],[1.228656,51.364502],[1.220558,51.366745],[1.217168,51.366291],[1.214244,51.36636],[1.212874,51.366044],[1.21155,51.365014],[1.210782,51.363615],[1.213831,51.356772],[1.214417,51.355992],[1.217431,51.353839],[1.220239,51.352373],[1.220586,51.351533],[1.220302,51.349916],[1.221616,51.349478],[1.223253,51.349648],[1.225253,51.349297],[1.227919,51.348181],[1.22861,51.346852],[1.227572,51.345488],[1.22768,51.344643],[1.229748,51.342546],[1.230822,51.340104],[1.231723,51.339066],[1.23788,51.336122],[1.242622,51.334768],[1.244654,51.333144],[1.244746,51.332148],[1.246793,51.330211],[1.249834,51.329381],[1.250836,51.329471],[1.251905,51.328917],[1.253188,51.325993],[1.257953,51.323418],[1.263307,51.322225],[1.268128,51.322338],[1.27077,51.321803],[1.273033,51.320658],[1.275504,51.320217],[1.280911,51.320224],[1.283224,51.321339],[1.284829,51.321526],[1.290852,51.321394],[1.29611,51.320136],[1.299013,51.318871],[1.299808,51.318555],[1.310199,51.31695],[1.310315,51.316947],[1.313928,51.31806],[1.325536,51.316914],[1.330385,51.31434],[1.331784,51.312939],[1.332189,51.31303],[1.335411,51.313805],[1.337619,51.313312],[1.33877,51.313055],[1.339431,51.312907],[1.34341,51.310459],[1.345417,51.307988],[1.346502,51.308138],[1.346767,51.30906],[1.350966,51.311711],[1.351714,51.313031],[1.357888,51.31149]]]]},"properties":{"LAD22CD":"E07000114","LAD22NM":"Thanet","BNG_E":631839,"BNG_N":166752,"LONG":1.328226,"LAT":51.35252,"GlobalID":"5a432f6c-d454-4550-87ad-35af92783c57"},"id":136}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.401283,51.352955],[0.398578,51.352501],[0.397101,51.352685],[0.396555,51.350049],[0.391564,51.347469],[0.391023,51.346795],[0.394215,51.345878],[0.395054,51.345121],[0.392877,51.343931],[0.391933,51.343783],[0.390188,51.341861],[0.388878,51.338769],[0.38711,51.338917],[0.38452,51.338687],[0.382092,51.338869],[0.380726,51.339333],[0.377138,51.335852],[0.381932,51.336154],[0.383459,51.335773],[0.381155,51.330215],[0.377806,51.329284],[0.366183,51.328459],[0.365405,51.329371],[0.363305,51.329992],[0.361153,51.329664],[0.361149,51.328595],[0.358732,51.328269],[0.357865,51.329122],[0.356303,51.328501],[0.354982,51.328459],[0.354817,51.326816],[0.351525,51.326827],[0.341081,51.325006],[0.341604,51.329216],[0.337331,51.329781],[0.334699,51.331099],[0.329623,51.332381],[0.327972,51.333598],[0.321882,51.336615],[0.31744,51.337814],[0.316614,51.338745],[0.314033,51.339787],[0.312485,51.340977],[0.308181,51.342789],[0.306889,51.343126],[0.307488,51.346243],[0.308679,51.348552],[0.308073,51.349131],[0.304674,51.350806],[0.296322,51.351877],[0.293998,51.349194],[0.291532,51.345368],[0.285769,51.344997],[0.285192,51.341874],[0.285385,51.34005],[0.288345,51.339575],[0.288347,51.335811],[0.2868,51.334112],[0.284796,51.32979],[0.285012,51.327068],[0.284475,51.324898],[0.281625,51.323331],[0.280675,51.321765],[0.278563,51.320573],[0.277054,51.318729],[0.275285,51.317895],[0.272414,51.317411],[0.267517,51.315529],[0.267899,51.314132],[0.265144,51.313637],[0.265836,51.311778],[0.26499,51.3118],[0.264371,51.308576],[0.263028,51.305894],[0.263686,51.305303],[0.263298,51.303563],[0.265348,51.301552],[0.264666,51.29706],[0.258453,51.297292],[0.259844,51.29512],[0.261016,51.294923],[0.260161,51.293012],[0.261206,51.291509],[0.261356,51.289141],[0.258574,51.285878],[0.258023,51.283798],[0.258278,51.281246],[0.257751,51.279558],[0.2564,51.278533],[0.255171,51.276411],[0.258244,51.27487],[0.259439,51.273863],[0.260485,51.272309],[0.260507,51.27021],[0.263145,51.2692],[0.264898,51.267725],[0.265252,51.26543],[0.264657,51.261972],[0.265164,51.260066],[0.264594,51.256999],[0.263841,51.255786],[0.262278,51.255364],[0.261286,51.25445],[0.259155,51.254948],[0.254478,51.254561],[0.252508,51.254621],[0.249814,51.25531],[0.247332,51.255294],[0.246455,51.25188],[0.249021,51.249287],[0.250445,51.247021],[0.250377,51.245655],[0.24911,51.242905],[0.247707,51.242323],[0.247338,51.240005],[0.248088,51.238534],[0.247013,51.237686],[0.241182,51.236976],[0.230962,51.23223],[0.229456,51.233365],[0.225439,51.238948],[0.224429,51.240753],[0.224882,51.241681],[0.224876,51.243469],[0.223083,51.244906],[0.219096,51.243374],[0.215947,51.241082],[0.214098,51.239087],[0.210086,51.236749],[0.208122,51.235851],[0.200542,51.233759],[0.200941,51.231489],[0.203065,51.229447],[0.203447,51.22829],[0.20651,51.227117],[0.208773,51.225711],[0.209281,51.225832],[0.212339,51.224598],[0.211657,51.223745],[0.212249,51.222852],[0.211425,51.221874],[0.207321,51.221843],[0.205226,51.221143],[0.201954,51.220557],[0.201463,51.21824],[0.202376,51.217226],[0.204283,51.216176],[0.204867,51.214044],[0.207136,51.211986],[0.207912,51.210592],[0.20891,51.210342],[0.211155,51.20889],[0.212556,51.20884],[0.214155,51.20815],[0.217052,51.20773],[0.217655,51.20616],[0.219303,51.205702],[0.222337,51.206555],[0.223732,51.206633],[0.225354,51.207307],[0.226312,51.205271],[0.226479,51.203387],[0.228478,51.201686],[0.231574,51.201461],[0.235357,51.202313],[0.236369,51.202193],[0.237787,51.200941],[0.238284,51.199788],[0.240034,51.198719],[0.241822,51.198622],[0.243224,51.199443],[0.245375,51.199776],[0.247514,51.200663],[0.248353,51.201587],[0.250109,51.201707],[0.250876,51.200381],[0.250983,51.198444],[0.250135,51.197725],[0.248163,51.197729],[0.248312,51.197003],[0.247222,51.196366],[0.248077,51.195611],[0.246765,51.194249],[0.244697,51.194219],[0.245393,51.191907],[0.239767,51.193026],[0.239026,51.191965],[0.237409,51.192366],[0.235869,51.19228],[0.235089,51.192896],[0.232314,51.193446],[0.231227,51.191969],[0.229066,51.192122],[0.229541,51.191224],[0.228722,51.190654],[0.229114,51.18882],[0.228799,51.186004],[0.226961,51.184154],[0.229678,51.182914],[0.231282,51.185108],[0.233633,51.185143],[0.236626,51.183589],[0.240598,51.182332],[0.242366,51.18198],[0.244374,51.182001],[0.252311,51.179623],[0.253908,51.178847],[0.255544,51.179052],[0.256273,51.179794],[0.257906,51.179688],[0.258871,51.180179],[0.265256,51.179733],[0.267545,51.17895],[0.272959,51.176465],[0.274936,51.175192],[0.277305,51.174693],[0.277841,51.17532],[0.280442,51.176522],[0.282309,51.176898],[0.283222,51.17783],[0.284388,51.178092],[0.28326,51.17941],[0.283989,51.180338],[0.287564,51.183658],[0.289649,51.183368],[0.291229,51.184788],[0.290736,51.185204],[0.292279,51.18644],[0.293598,51.189308],[0.294766,51.18921],[0.298089,51.192312],[0.298041,51.19522],[0.299688,51.196997],[0.303832,51.197635],[0.306019,51.197353],[0.309457,51.199943],[0.311693,51.19891],[0.314635,51.198754],[0.317242,51.198205],[0.319785,51.199598],[0.326025,51.198576],[0.328291,51.198666],[0.329133,51.199087],[0.330596,51.198165],[0.332333,51.197884],[0.333696,51.197138],[0.332592,51.195911],[0.334121,51.195465],[0.335105,51.194675],[0.336254,51.194783],[0.337483,51.193523],[0.341687,51.192789],[0.344254,51.193625],[0.345128,51.194388],[0.347003,51.194914],[0.348625,51.194535],[0.353116,51.195951],[0.35475,51.195776],[0.356779,51.196084],[0.357839,51.195322],[0.360465,51.195535],[0.362461,51.194062],[0.364956,51.194077],[0.367513,51.194872],[0.367906,51.196692],[0.366906,51.197796],[0.366534,51.200318],[0.368723,51.200674],[0.369168,51.201617],[0.37116,51.20114],[0.373216,51.199871],[0.372752,51.199086],[0.374857,51.198956],[0.376028,51.19932],[0.38083,51.197998],[0.382492,51.198758],[0.384255,51.198262],[0.38478,51.198821],[0.384733,51.200256],[0.385899,51.20059],[0.386625,51.201519],[0.387984,51.202067],[0.390786,51.201075],[0.392289,51.199916],[0.394004,51.199572],[0.395777,51.200036],[0.399668,51.199],[0.400345,51.198572],[0.40226,51.201846],[0.40351,51.205452],[0.4041,51.2084],[0.404003,51.211066],[0.404843,51.214132],[0.406515,51.217899],[0.408801,51.221668],[0.407358,51.222287],[0.404761,51.2224],[0.401878,51.222061],[0.399975,51.222538],[0.398659,51.223365],[0.399214,51.225639],[0.397427,51.226506],[0.395695,51.226733],[0.393705,51.225956],[0.391945,51.226659],[0.391035,51.228004],[0.388915,51.229078],[0.386821,51.229396],[0.383295,51.231109],[0.380434,51.231081],[0.378175,51.233422],[0.37866,51.234986],[0.38154,51.235897],[0.383165,51.236855],[0.38368,51.238298],[0.385573,51.238168],[0.388278,51.238686],[0.394192,51.241424],[0.397961,51.244711],[0.397576,51.245712],[0.399593,51.247175],[0.39966,51.247671],[0.402767,51.248931],[0.406809,51.252223],[0.408215,51.252323],[0.410008,51.253119],[0.411445,51.251414],[0.417739,51.250785],[0.420852,51.249946],[0.422142,51.249104],[0.423644,51.249425],[0.429826,51.249501],[0.429477,51.252319],[0.429974,51.254574],[0.431327,51.254486],[0.431667,51.257078],[0.432877,51.258387],[0.43329,51.260618],[0.43317,51.262162],[0.431775,51.2648],[0.432051,51.267848],[0.432525,51.27012],[0.440203,51.269925],[0.442345,51.270278],[0.445076,51.270056],[0.449735,51.270372],[0.452681,51.27133],[0.453006,51.271841],[0.455395,51.271554],[0.46006,51.271777],[0.46199,51.271457],[0.466853,51.271321],[0.467238,51.271699],[0.469517,51.271187],[0.471095,51.271198],[0.474653,51.272625],[0.478047,51.272765],[0.477192,51.273444],[0.480675,51.27601],[0.479251,51.27758],[0.4801,51.278042],[0.482684,51.281159],[0.488624,51.286859],[0.489478,51.289139],[0.493662,51.291365],[0.498742,51.296511],[0.495461,51.299534],[0.492678,51.300864],[0.491254,51.300727],[0.487635,51.299568],[0.485838,51.299413],[0.482883,51.300324],[0.479667,51.302932],[0.477481,51.302983],[0.475338,51.302116],[0.472784,51.302442],[0.470711,51.301706],[0.469086,51.301522],[0.466965,51.302427],[0.466415,51.303081],[0.46356,51.303356],[0.462413,51.304467],[0.459485,51.310615],[0.457546,51.312937],[0.457396,51.314816],[0.458196,51.316362],[0.456697,51.317122],[0.456307,51.318593],[0.457601,51.322298],[0.458991,51.323294],[0.459748,51.324354],[0.459937,51.325663],[0.458293,51.325362],[0.456587,51.325603],[0.455205,51.327117],[0.456894,51.328815],[0.459293,51.329906],[0.457815,51.330525],[0.45658,51.329065],[0.455088,51.328514],[0.45244,51.328518],[0.45046,51.329906],[0.450356,51.332225],[0.451182,51.33385],[0.451943,51.334368],[0.454088,51.334586],[0.457178,51.33564],[0.456861,51.336661],[0.453464,51.340633],[0.452094,51.340612],[0.445261,51.341856],[0.431291,51.345001],[0.426654,51.346914],[0.420885,51.347262],[0.418594,51.347912],[0.416639,51.347519],[0.411003,51.348211],[0.408715,51.347776],[0.406714,51.347762],[0.407091,51.346655],[0.40543,51.345455],[0.403963,51.344892],[0.399919,51.344457],[0.397346,51.345776],[0.400965,51.349933],[0.401283,51.352955]]],[[[0.525641,51.334717],[0.523791,51.33588],[0.522257,51.336418],[0.521736,51.337465],[0.520357,51.338231],[0.519332,51.339935],[0.51667,51.339666],[0.514137,51.341127],[0.51116,51.340913],[0.507574,51.343299],[0.505842,51.342942],[0.502218,51.348804],[0.503097,51.349251],[0.501989,51.35143],[0.503146,51.353134],[0.503092,51.354667],[0.49407,51.352654],[0.491247,51.354022],[0.489485,51.354346],[0.489,51.35521],[0.487648,51.35601],[0.481808,51.357683],[0.479658,51.357443],[0.479126,51.358427],[0.475993,51.360551],[0.475681,51.360222],[0.472766,51.361815],[0.470392,51.362227],[0.468053,51.363557],[0.460915,51.366638],[0.457648,51.367624],[0.457082,51.36808],[0.451604,51.366108],[0.45026,51.364223],[0.450706,51.359361],[0.45156,51.358482],[0.453281,51.357773],[0.455624,51.356082],[0.457683,51.352137],[0.457437,51.351028],[0.455443,51.3494],[0.449652,51.348071],[0.450167,51.347515],[0.453332,51.345968],[0.453297,51.342164],[0.455128,51.340392],[0.458205,51.335919],[0.457367,51.334638],[0.45166,51.333214],[0.451329,51.330525],[0.452343,51.329473],[0.455019,51.329269],[0.457179,51.331065],[0.458952,51.331268],[0.4604,51.330119],[0.459689,51.329095],[0.458289,51.328634],[0.456613,51.327535],[0.45732,51.326279],[0.460001,51.326341],[0.460978,51.325583],[0.46058,51.323284],[0.458527,51.321968],[0.45918,51.32062],[0.457791,51.320705],[0.456949,51.318511],[0.459147,51.316233],[0.458102,51.313573],[0.458858,51.312805],[0.460789,51.309809],[0.462011,51.306263],[0.463692,51.303813],[0.466654,51.303507],[0.468581,51.302058],[0.469548,51.301914],[0.472681,51.302903],[0.474725,51.302467],[0.477612,51.303418],[0.479799,51.303478],[0.483059,51.30067],[0.486052,51.299709],[0.487968,51.300023],[0.491534,51.301176],[0.492638,51.301154],[0.49668,51.29943],[0.496804,51.298848],[0.498878,51.296911],[0.498959,51.29838],[0.497872,51.299219],[0.492713,51.301331],[0.492772,51.301801],[0.494656,51.303217],[0.492518,51.304567],[0.494137,51.305703],[0.49808,51.306573],[0.501556,51.305356],[0.507054,51.305357],[0.510297,51.30657],[0.511615,51.306435],[0.512575,51.307533],[0.512272,51.308576],[0.513624,51.310124],[0.513949,51.314312],[0.5171,51.316399],[0.518987,51.319065],[0.521076,51.320755],[0.522661,51.321103],[0.524417,51.323376],[0.526769,51.325247],[0.526039,51.326166],[0.523337,51.326281],[0.52127,51.329186],[0.523979,51.33156],[0.526075,51.332804],[0.525641,51.334717]]]]},"properties":{"LAD22CD":"E07000115","LAD22NM":"Tonbridge and Malling","BNG_E":564014,"BNG_N":153898,"LONG":0.349306,"LAT":51.26064,"GlobalID":"0c74340c-7bc5-44cf-a9b5-f61c39fef6f9"},"id":137}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.384255,51.198262],[0.382492,51.198758],[0.38083,51.197998],[0.376028,51.19932],[0.374857,51.198956],[0.372752,51.199086],[0.373216,51.199871],[0.37116,51.20114],[0.369168,51.201617],[0.368723,51.200674],[0.366534,51.200318],[0.366906,51.197796],[0.367906,51.196692],[0.367513,51.194872],[0.364956,51.194077],[0.362461,51.194062],[0.360465,51.195535],[0.357839,51.195322],[0.356779,51.196084],[0.35475,51.195776],[0.353116,51.195951],[0.348625,51.194535],[0.347003,51.194914],[0.345128,51.194388],[0.344254,51.193625],[0.341687,51.192789],[0.337483,51.193523],[0.336254,51.194783],[0.335105,51.194675],[0.334121,51.195465],[0.332592,51.195911],[0.333696,51.197138],[0.332333,51.197884],[0.330596,51.198165],[0.329133,51.199087],[0.328291,51.198666],[0.326025,51.198576],[0.319785,51.199598],[0.317242,51.198205],[0.314635,51.198754],[0.311693,51.19891],[0.309457,51.199943],[0.306019,51.197353],[0.303832,51.197635],[0.299688,51.196997],[0.298041,51.19522],[0.298089,51.192312],[0.294766,51.18921],[0.293598,51.189308],[0.292279,51.18644],[0.290736,51.185204],[0.291229,51.184788],[0.289649,51.183368],[0.287564,51.183658],[0.283989,51.180338],[0.28326,51.17941],[0.284388,51.178092],[0.283222,51.17783],[0.282309,51.176898],[0.280442,51.176522],[0.277841,51.17532],[0.277305,51.174693],[0.274936,51.175192],[0.272959,51.176465],[0.267545,51.17895],[0.265256,51.179733],[0.258871,51.180179],[0.257906,51.179688],[0.256273,51.179794],[0.255544,51.179052],[0.253908,51.178847],[0.252311,51.179623],[0.244374,51.182001],[0.242366,51.18198],[0.240598,51.182332],[0.236626,51.183589],[0.233633,51.185143],[0.231282,51.185108],[0.229678,51.182914],[0.226961,51.184154],[0.219269,51.179991],[0.216303,51.179139],[0.218092,51.177509],[0.21221,51.175447],[0.20738,51.175363],[0.205377,51.172671],[0.203456,51.17123],[0.202178,51.172609],[0.200702,51.172665],[0.199374,51.173282],[0.198855,51.174463],[0.197693,51.17524],[0.19478,51.173825],[0.19266,51.172174],[0.190971,51.171378],[0.19064,51.167962],[0.195712,51.164987],[0.196011,51.164329],[0.199012,51.161745],[0.201474,51.160144],[0.203146,51.161732],[0.205461,51.160872],[0.205658,51.158684],[0.208732,51.159024],[0.210255,51.156645],[0.21295,51.155042],[0.215454,51.15436],[0.212148,51.151615],[0.210917,51.151692],[0.205987,51.151088],[0.203657,51.149544],[0.200243,51.146021],[0.19646,51.146406],[0.194846,51.144961],[0.193954,51.143249],[0.193041,51.140546],[0.193482,51.139421],[0.191162,51.139549],[0.18902,51.138664],[0.187482,51.136356],[0.18317,51.134935],[0.180372,51.13179],[0.175828,51.133759],[0.174277,51.132941],[0.16985,51.132183],[0.167908,51.132183],[0.167319,51.133554],[0.164474,51.132775],[0.162909,51.13453],[0.16243,51.135806],[0.160748,51.137319],[0.15935,51.138118],[0.158337,51.137313],[0.154608,51.137536],[0.152887,51.135362],[0.151187,51.134356],[0.151879,51.132933],[0.150947,51.131209],[0.151204,51.129597],[0.152169,51.12812],[0.151064,51.127698],[0.15161,51.124203],[0.152078,51.122543],[0.156087,51.120488],[0.156005,51.119954],[0.158305,51.119078],[0.158429,51.117698],[0.159863,51.117616],[0.160483,51.116848],[0.162598,51.116398],[0.167086,51.116574],[0.171628,51.11541],[0.174189,51.115752],[0.174884,51.115452],[0.178113,51.116191],[0.180159,51.115579],[0.182841,51.116213],[0.185067,51.116243],[0.185542,51.116824],[0.188023,51.116655],[0.193246,51.117181],[0.194309,51.116894],[0.196292,51.117943],[0.198275,51.116918],[0.199561,51.116914],[0.20321,51.118104],[0.204313,51.119106],[0.20594,51.119289],[0.206692,51.118696],[0.210046,51.120991],[0.212492,51.120614],[0.215263,51.121485],[0.216404,51.121405],[0.217703,51.120397],[0.219545,51.12058],[0.220831,51.121519],[0.22435,51.122679],[0.22546,51.124355],[0.227698,51.123789],[0.243036,51.117045],[0.243337,51.115277],[0.244543,51.114879],[0.248925,51.114941],[0.251178,51.114237],[0.251755,51.114722],[0.255664,51.113903],[0.259418,51.113697],[0.259312,51.114095],[0.262643,51.114311],[0.265044,51.113655],[0.266265,51.115099],[0.27567,51.112355],[0.278942,51.114677],[0.275136,51.11733],[0.272174,51.118846],[0.273935,51.120079],[0.27594,51.120407],[0.279007,51.119044],[0.279667,51.117845],[0.28183,51.118019],[0.284684,51.1176],[0.287069,51.117998],[0.289552,51.118857],[0.291644,51.118763],[0.292903,51.11914],[0.295434,51.11861],[0.297478,51.118564],[0.298718,51.118159],[0.301349,51.118591],[0.303902,51.119472],[0.307625,51.119958],[0.311821,51.119402],[0.315123,51.120363],[0.315905,51.121204],[0.318276,51.121377],[0.320306,51.122284],[0.324461,51.122716],[0.326227,51.122438],[0.328887,51.119369],[0.329879,51.118963],[0.330079,51.117803],[0.327995,51.116454],[0.328365,51.115581],[0.326561,51.114704],[0.325069,51.114879],[0.325458,51.113405],[0.324571,51.112131],[0.325789,51.110775],[0.328304,51.11092],[0.329371,51.109864],[0.330466,51.110046],[0.332008,51.107986],[0.33421,51.106498],[0.334703,51.105565],[0.336411,51.105121],[0.342033,51.105311],[0.344266,51.104746],[0.346617,51.105155],[0.350168,51.105004],[0.352292,51.104417],[0.35397,51.104869],[0.358451,51.104774],[0.358384,51.103951],[0.356119,51.101037],[0.354668,51.100599],[0.353845,51.099626],[0.351054,51.099299],[0.350645,51.097664],[0.351697,51.097434],[0.352335,51.096203],[0.353289,51.095795],[0.353978,51.093619],[0.353702,51.091608],[0.352429,51.089325],[0.352341,51.086585],[0.35082,51.084068],[0.35677,51.083061],[0.357868,51.084032],[0.36168,51.085433],[0.362273,51.086296],[0.364688,51.088159],[0.366622,51.088414],[0.37037,51.087788],[0.372011,51.086848],[0.373058,51.088319],[0.375293,51.087718],[0.38169,51.088034],[0.383269,51.087563],[0.382746,51.086887],[0.384128,51.086045],[0.3866,51.086159],[0.387354,51.085457],[0.39008,51.086182],[0.391642,51.085784],[0.38925,51.084397],[0.390493,51.083661],[0.390099,51.081813],[0.390829,51.081331],[0.393342,51.083073],[0.396474,51.083096],[0.397624,51.083645],[0.40408,51.081245],[0.406613,51.079686],[0.405068,51.077919],[0.405564,51.077223],[0.405439,51.075438],[0.400658,51.07269],[0.400918,51.071176],[0.402411,51.07046],[0.405816,51.069504],[0.406606,51.068903],[0.409005,51.069393],[0.409228,51.068234],[0.411081,51.067095],[0.411311,51.065887],[0.414128,51.065485],[0.4159,51.066615],[0.41698,51.067893],[0.417778,51.067893],[0.416262,51.06529],[0.416246,51.06389],[0.418263,51.062629],[0.428256,51.063139],[0.428569,51.06252],[0.430996,51.062044],[0.432533,51.061061],[0.438373,51.059745],[0.439931,51.058959],[0.440817,51.057917],[0.444277,51.058412],[0.446858,51.058125],[0.447989,51.056583],[0.4496,51.056709],[0.45168,51.056378],[0.453706,51.056958],[0.457311,51.055259],[0.463267,51.054787],[0.463058,51.054097],[0.463811,51.052342],[0.466399,51.050799],[0.468393,51.050544],[0.471401,51.049078],[0.471901,51.046973],[0.471109,51.045742],[0.46609,51.042737],[0.468363,51.040619],[0.467001,51.038039],[0.466405,51.034312],[0.468046,51.032583],[0.469508,51.03248],[0.471423,51.03077],[0.473335,51.030448],[0.477333,51.029153],[0.478751,51.029086],[0.481545,51.029822],[0.482714,51.030585],[0.485281,51.030926],[0.489717,51.030592],[0.492674,51.031146],[0.496108,51.030634],[0.498673,51.029265],[0.502134,51.028069],[0.504481,51.027985],[0.506895,51.026486],[0.508456,51.024125],[0.510906,51.02349],[0.513499,51.023499],[0.515567,51.022531],[0.519963,51.022498],[0.52287,51.023161],[0.526003,51.022784],[0.527447,51.021658],[0.531309,51.021503],[0.533858,51.021989],[0.53764,51.021652],[0.538647,51.020703],[0.539956,51.018515],[0.539791,51.017924],[0.541054,51.016926],[0.54073,51.014344],[0.541311,51.013237],[0.541313,51.011659],[0.54203,51.010944],[0.545157,51.010373],[0.547697,51.009169],[0.549483,51.009065],[0.551835,51.008245],[0.554714,51.008286],[0.557089,51.007873],[0.558809,51.00722],[0.561685,51.007787],[0.563651,51.00744],[0.564806,51.006717],[0.566669,51.004352],[0.568381,51.003815],[0.572013,51.003455],[0.573148,51.00448],[0.575632,51.005227],[0.577916,51.004485],[0.57981,51.004477],[0.581787,51.00524],[0.585325,51.005854],[0.586763,51.008425],[0.587315,51.008746],[0.593524,51.010047],[0.597347,51.008933],[0.601565,51.009891],[0.602544,51.010449],[0.603611,51.011879],[0.605391,51.01207],[0.6046,51.012465],[0.604729,51.014073],[0.606163,51.017302],[0.606064,51.019961],[0.597255,51.020817],[0.595849,51.024945],[0.597541,51.025166],[0.602457,51.026762],[0.599317,51.029498],[0.596096,51.030383],[0.594197,51.030563],[0.593332,51.031449],[0.595131,51.0337],[0.59398,51.034872],[0.595054,51.036447],[0.593392,51.037291],[0.593246,51.03863],[0.592457,51.039982],[0.5935,51.041852],[0.595674,51.042184],[0.59708,51.044483],[0.599675,51.046142],[0.600391,51.049747],[0.60157,51.049656],[0.603666,51.051071],[0.604298,51.052564],[0.605476,51.053658],[0.605007,51.054576],[0.605539,51.05647],[0.606863,51.05703],[0.607872,51.058455],[0.610521,51.060962],[0.609806,51.061597],[0.611977,51.062482],[0.611717,51.063546],[0.613068,51.063706],[0.618707,51.065552],[0.627294,51.066578],[0.628467,51.067757],[0.633864,51.070815],[0.636582,51.073818],[0.638829,51.075269],[0.640869,51.075729],[0.64471,51.077888],[0.642648,51.078955],[0.642564,51.079754],[0.646675,51.083281],[0.642581,51.082795],[0.638264,51.086011],[0.635849,51.086639],[0.633561,51.087997],[0.631284,51.088183],[0.629287,51.08954],[0.629378,51.091421],[0.62851,51.091226],[0.625812,51.089599],[0.621503,51.091121],[0.620113,51.090505],[0.620601,51.089607],[0.611356,51.08932],[0.609823,51.090666],[0.606951,51.090938],[0.605059,51.090417],[0.601218,51.091044],[0.596952,51.090661],[0.594579,51.094142],[0.595783,51.096719],[0.595397,51.097912],[0.596501,51.09948],[0.595212,51.10409],[0.596172,51.105459],[0.5956,51.105908],[0.595599,51.108338],[0.590369,51.11134],[0.592646,51.111865],[0.595538,51.113017],[0.599197,51.115363],[0.604132,51.116184],[0.609024,51.117869],[0.6089,51.119186],[0.609779,51.1217],[0.608503,51.12554],[0.606591,51.127049],[0.603796,51.128504],[0.602943,51.130037],[0.603649,51.131674],[0.605932,51.131584],[0.606478,51.132397],[0.607924,51.132587],[0.609166,51.133309],[0.611179,51.132262],[0.613751,51.132134],[0.613775,51.132714],[0.617261,51.133241],[0.61932,51.132167],[0.623898,51.134414],[0.623465,51.135785],[0.624461,51.136409],[0.624569,51.137797],[0.626286,51.139019],[0.627855,51.138942],[0.628559,51.137818],[0.629585,51.137312],[0.6331,51.136808],[0.636453,51.136839],[0.640106,51.138121],[0.642164,51.140463],[0.640399,51.140647],[0.639475,51.141293],[0.638445,51.142017],[0.634381,51.142397],[0.634982,51.143738],[0.632545,51.145296],[0.636513,51.145214],[0.637058,51.146657],[0.641005,51.150774],[0.641832,51.151141],[0.64034,51.152474],[0.638223,51.15241],[0.632307,51.152976],[0.631967,51.152303],[0.629963,51.152572],[0.626896,51.152492],[0.626119,51.152841],[0.622236,51.149595],[0.621277,51.148359],[0.618391,51.14868],[0.615592,51.149962],[0.615376,51.15112],[0.613719,51.150516],[0.612572,51.152424],[0.610534,51.151501],[0.605069,51.150919],[0.603586,51.152032],[0.604312,51.153113],[0.605264,51.156447],[0.604079,51.156765],[0.603394,51.15812],[0.601856,51.159016],[0.601308,51.157985],[0.598761,51.157855],[0.595921,51.154278],[0.593515,51.153305],[0.593241,51.153976],[0.588862,51.154567],[0.582074,51.154623],[0.578149,51.155249],[0.575672,51.156113],[0.575185,51.155404],[0.576727,51.149534],[0.575592,51.148835],[0.576367,51.14602],[0.578623,51.145479],[0.579306,51.144636],[0.577323,51.14421],[0.575437,51.142984],[0.573962,51.14127],[0.574124,51.140838],[0.572121,51.139261],[0.571637,51.138439],[0.570438,51.138105],[0.568005,51.136465],[0.564414,51.135024],[0.560427,51.134501],[0.559065,51.133945],[0.558848,51.136225],[0.560714,51.137316],[0.56015,51.137781],[0.564114,51.139465],[0.565237,51.140165],[0.565612,51.141136],[0.56195,51.143259],[0.559948,51.142862],[0.557697,51.141776],[0.556903,51.140038],[0.555595,51.138514],[0.55403,51.138333],[0.552586,51.137329],[0.550689,51.137293],[0.548915,51.13673],[0.545921,51.136447],[0.541912,51.134431],[0.53477,51.134943],[0.533105,51.134153],[0.528935,51.13428],[0.523654,51.135738],[0.51873,51.136113],[0.516779,51.1357],[0.513436,51.136604],[0.509023,51.136621],[0.509254,51.139411],[0.509992,51.140276],[0.508453,51.141385],[0.503071,51.141022],[0.502199,51.142365],[0.498815,51.143168],[0.496896,51.144776],[0.493907,51.143807],[0.491245,51.144265],[0.48795,51.143215],[0.48356,51.1427],[0.481307,51.141346],[0.476787,51.141577],[0.468927,51.14326],[0.469408,51.145053],[0.468827,51.145354],[0.470188,51.147261],[0.470437,51.148921],[0.469301,51.149662],[0.469071,51.150514],[0.469678,51.152348],[0.468413,51.153308],[0.467702,51.155443],[0.465369,51.157254],[0.465443,51.15824],[0.464286,51.15935],[0.462402,51.159897],[0.460164,51.161619],[0.460236,51.162441],[0.458186,51.163333],[0.457133,51.164743],[0.455545,51.165057],[0.453435,51.166138],[0.452091,51.168245],[0.44934,51.169336],[0.447306,51.171294],[0.445154,51.171599],[0.442914,51.172635],[0.44104,51.174198],[0.440754,51.176513],[0.437368,51.177681],[0.431084,51.179599],[0.416401,51.180548],[0.414208,51.182353],[0.411807,51.183299],[0.41227,51.185139],[0.40943,51.185438],[0.410031,51.186925],[0.409403,51.188441],[0.407647,51.188149],[0.404476,51.188561],[0.403426,51.189393],[0.404108,51.190694],[0.401322,51.191272],[0.399889,51.192146],[0.396035,51.192043],[0.394225,51.192775],[0.393987,51.194493],[0.391645,51.194132],[0.388843,51.194612],[0.386679,51.194461],[0.383545,51.19546],[0.383289,51.196189],[0.384267,51.196969],[0.384255,51.198262]]]},"properties":{"LAD22CD":"E07000116","LAD22NM":"Tunbridge Wells","BNG_E":573139,"BNG_N":136599,"LONG":0.471632,"LAT":51.10254,"GlobalID":"fb35826f-fd80-456b-8891-14840d5e092b"},"id":138}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.112279,53.805708],[-2.128623,53.819796],[-2.13347,53.817359],[-2.135346,53.815958],[-2.142114,53.820447],[-2.144108,53.820013],[-2.148547,53.819768],[-2.14995,53.820733],[-2.150433,53.822981],[-2.15202,53.823707],[-2.154276,53.823153],[-2.159087,53.823319],[-2.162757,53.822757],[-2.167304,53.82247],[-2.172691,53.823032],[-2.176592,53.822647],[-2.179058,53.822868],[-2.181414,53.822212],[-2.18817,53.822561],[-2.192638,53.823326],[-2.195222,53.825068],[-2.19693,53.825196],[-2.195499,53.823618],[-2.194828,53.821972],[-2.195759,53.821535],[-2.197357,53.819609],[-2.204289,53.814693],[-2.207431,53.811437],[-2.206966,53.813301],[-2.210104,53.8142],[-2.210622,53.813668],[-2.212958,53.814032],[-2.217685,53.815516],[-2.22397,53.81785],[-2.224173,53.816391],[-2.226384,53.816076],[-2.228608,53.815023],[-2.230843,53.814638],[-2.233181,53.814628],[-2.235406,53.813791],[-2.250674,53.81161],[-2.26107,53.807767],[-2.260959,53.808496],[-2.262085,53.809633],[-2.265922,53.8098],[-2.266496,53.810054],[-2.266969,53.811844],[-2.268547,53.813188],[-2.268195,53.814062],[-2.269805,53.815004],[-2.273019,53.81413],[-2.275349,53.812762],[-2.27682,53.812591],[-2.279077,53.8104],[-2.279201,53.809146],[-2.279984,53.808186],[-2.282669,53.807364],[-2.285405,53.807716],[-2.290612,53.809306],[-2.29548,53.808771],[-2.297783,53.811609],[-2.297097,53.811944],[-2.296442,53.813811],[-2.298381,53.815036],[-2.29922,53.814105],[-2.302058,53.813543],[-2.303048,53.814513],[-2.302964,53.817906],[-2.303951,53.819513],[-2.302092,53.820225],[-2.301965,53.821079],[-2.305776,53.819608],[-2.308455,53.818158],[-2.309254,53.81708],[-2.309842,53.814426],[-2.311364,53.812925],[-2.313205,53.812465],[-2.315045,53.81169],[-2.315602,53.812646],[-2.318909,53.811726],[-2.319688,53.810635],[-2.320924,53.810695],[-2.323109,53.810105],[-2.325648,53.807779],[-2.325929,53.806512],[-2.328833,53.807045],[-2.329762,53.806639],[-2.332137,53.804123],[-2.334691,53.801067],[-2.33506,53.799724],[-2.334664,53.799036],[-2.336116,53.796572],[-2.336222,53.795447],[-2.338587,53.794988],[-2.340631,53.79517],[-2.342306,53.794827],[-2.340852,53.794172],[-2.341096,53.79252],[-2.336233,53.791697],[-2.337844,53.78955],[-2.338757,53.7891],[-2.33738,53.786363],[-2.335584,53.785072],[-2.336098,53.783421],[-2.335797,53.782495],[-2.333288,53.782039],[-2.331605,53.781208],[-2.330055,53.780985],[-2.329314,53.779628],[-2.331195,53.778781],[-2.331688,53.777948],[-2.330374,53.773536],[-2.331428,53.769551],[-2.330372,53.769033],[-2.330118,53.768029],[-2.328757,53.767013],[-2.328426,53.764379],[-2.327858,53.763538],[-2.328625,53.761479],[-2.327223,53.759736],[-2.325825,53.758615],[-2.322139,53.757396],[-2.319917,53.755569],[-2.316403,53.751957],[-2.313725,53.751575],[-2.314109,53.747039],[-2.301479,53.748886],[-2.299171,53.750764],[-2.295272,53.75199],[-2.293305,53.749796],[-2.287519,53.746712],[-2.287191,53.744851],[-2.285267,53.743708],[-2.283731,53.744589],[-2.281631,53.745055],[-2.278291,53.743447],[-2.275222,53.743751],[-2.271324,53.742286],[-2.267448,53.742488],[-2.265649,53.744025],[-2.263292,53.745318],[-2.262822,53.746261],[-2.264242,53.747429],[-2.266797,53.748097],[-2.262714,53.748938],[-2.26175,53.748488],[-2.259344,53.749554],[-2.257453,53.749858],[-2.257901,53.750664],[-2.256054,53.752232],[-2.255876,53.75283],[-2.25392,53.753567],[-2.251692,53.755044],[-2.248974,53.752835],[-2.245274,53.750998],[-2.240341,53.747708],[-2.235021,53.742071],[-2.233404,53.739734],[-2.232654,53.737635],[-2.225523,53.738533],[-2.220203,53.738518],[-2.217843,53.738338],[-2.214264,53.737265],[-2.20468,53.733854],[-2.203297,53.732388],[-2.196636,53.732896],[-2.192172,53.731918],[-2.189001,53.731727],[-2.185441,53.730825],[-2.179502,53.727932],[-2.173294,53.723012],[-2.171395,53.725215],[-2.170116,53.725615],[-2.166692,53.727811],[-2.166133,53.729103],[-2.165021,53.729841],[-2.163918,53.731263],[-2.16025,53.732322],[-2.159641,53.732908],[-2.156982,53.733159],[-2.156196,53.733666],[-2.156864,53.734904],[-2.156091,53.735324],[-2.153068,53.734458],[-2.152153,53.735325],[-2.148459,53.734216],[-2.147802,53.735393],[-2.145408,53.736055],[-2.145215,53.73687],[-2.143769,53.737339],[-2.144834,53.738986],[-2.143091,53.739116],[-2.140949,53.741807],[-2.141141,53.743248],[-2.141863,53.743907],[-2.141646,53.745741],[-2.138927,53.747425],[-2.136659,53.748404],[-2.134471,53.748935],[-2.131303,53.751376],[-2.129522,53.75459],[-2.131586,53.758067],[-2.130074,53.763087],[-2.130783,53.765162],[-2.130069,53.768284],[-2.130464,53.772389],[-2.131342,53.774409],[-2.135032,53.776843],[-2.136363,53.780104],[-2.135462,53.781248],[-2.132174,53.783414],[-2.130485,53.785138],[-2.127323,53.786112],[-2.124816,53.788055],[-2.125696,53.789653],[-2.129216,53.79092],[-2.129722,53.791632],[-2.129006,53.793677],[-2.127856,53.794663],[-2.127799,53.798265],[-2.128359,53.799031],[-2.126274,53.799483],[-2.112279,53.805708]]]},"properties":{"LAD22CD":"E07000117","LAD22NM":"Burnley","BNG_E":384886,"BNG_N":430882,"LONG":-2.2308,"LAT":53.77406,"GlobalID":"a5a9aa5e-da48-4443-93d9-b7334e7ccb23"},"id":139}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.80813,53.629667],[-2.808041,53.630407],[-2.80706,53.631278],[-2.808159,53.630705],[-2.80813,53.629667]]],[[[-2.806547,53.641608],[-2.810933,53.648203],[-2.810749,53.649581],[-2.808832,53.653346],[-2.80925,53.660127],[-2.816475,53.672756],[-2.817681,53.670715],[-2.822611,53.66888],[-2.823336,53.668179],[-2.821171,53.667008],[-2.819758,53.665693],[-2.821431,53.662549],[-2.817948,53.661428],[-2.81485,53.661082],[-2.814744,53.658108],[-2.812353,53.656385],[-2.81305,53.655484],[-2.814562,53.656065],[-2.816521,53.655793],[-2.816467,53.654305],[-2.81481,53.653656],[-2.812112,53.653186],[-2.814632,53.651283],[-2.814407,53.648447],[-2.8117,53.646916],[-2.81231,53.645684],[-2.81029,53.645271],[-2.809498,53.643702],[-2.809818,53.642365],[-2.80873,53.641858],[-2.806547,53.641608]]],[[[-2.511323,53.626995],[-2.514829,53.629239],[-2.518331,53.630282],[-2.520062,53.630482],[-2.524573,53.641287],[-2.524021,53.642592],[-2.522143,53.644211],[-2.521494,53.645433],[-2.52227,53.648178],[-2.523563,53.650834],[-2.525064,53.652515],[-2.525296,53.653706],[-2.526613,53.655101],[-2.528622,53.656257],[-2.528937,53.660281],[-2.532344,53.664902],[-2.529159,53.667208],[-2.528342,53.669411],[-2.526472,53.671188],[-2.526225,53.673575],[-2.524587,53.675095],[-2.520529,53.675352],[-2.519171,53.676287],[-2.518346,53.677655],[-2.517773,53.681176],[-2.518452,53.682761],[-2.517401,53.684903],[-2.51793,53.68667],[-2.516996,53.687458],[-2.516587,53.688983],[-2.51534,53.690018],[-2.516004,53.690831],[-2.515676,53.692382],[-2.520153,53.694453],[-2.521161,53.694506],[-2.523384,53.695486],[-2.526465,53.695026],[-2.529058,53.696021],[-2.531932,53.696443],[-2.532717,53.697363],[-2.535293,53.698266],[-2.536414,53.699364],[-2.537464,53.701074],[-2.539793,53.702192],[-2.540248,53.703552],[-2.542211,53.705185],[-2.542778,53.706633],[-2.541577,53.707973],[-2.543261,53.709896],[-2.54166,53.711011],[-2.54091,53.712058],[-2.538972,53.713375],[-2.539897,53.716559],[-2.5399,53.718123],[-2.541425,53.718853],[-2.5408,53.71967],[-2.543772,53.721319],[-2.546424,53.721284],[-2.547333,53.722446],[-2.546684,53.723263],[-2.546311,53.724976],[-2.550745,53.726544],[-2.555182,53.725268],[-2.556892,53.727435],[-2.555858,53.728996],[-2.556537,53.730828],[-2.556494,53.732305],[-2.557073,53.732618],[-2.557155,53.734612],[-2.559361,53.735163],[-2.560729,53.73778],[-2.561605,53.737858],[-2.563616,53.739266],[-2.563538,53.74077],[-2.562866,53.741544],[-2.564591,53.742459],[-2.564661,53.743647],[-2.561752,53.744737],[-2.562468,53.746118],[-2.561602,53.746901],[-2.56392,53.748795],[-2.566997,53.74963],[-2.569137,53.749724],[-2.572951,53.751067],[-2.573183,53.751411],[-2.576807,53.751274],[-2.578258,53.750271],[-2.578687,53.748837],[-2.57986,53.747577],[-2.582346,53.746711],[-2.584268,53.745009],[-2.585678,53.744448],[-2.587454,53.743103],[-2.590208,53.742894],[-2.59421,53.743475],[-2.599228,53.742529],[-2.600033,53.74141],[-2.602476,53.740547],[-2.602484,53.739808],[-2.605898,53.738533],[-2.607082,53.739242],[-2.60823,53.738345],[-2.611855,53.738571],[-2.610748,53.737057],[-2.616931,53.732478],[-2.61851,53.732362],[-2.624297,53.729048],[-2.623918,53.725355],[-2.622905,53.723877],[-2.625497,53.722704],[-2.627884,53.720659],[-2.629696,53.718335],[-2.629755,53.717292],[-2.632723,53.718075],[-2.638116,53.718045],[-2.647669,53.715998],[-2.648346,53.715314],[-2.647718,53.714305],[-2.651521,53.712029],[-2.65445,53.712137],[-2.655495,53.712705],[-2.656394,53.71399],[-2.655886,53.715454],[-2.656723,53.717007],[-2.658449,53.717696],[-2.661949,53.715452],[-2.670341,53.711528],[-2.67359,53.709168],[-2.676564,53.705298],[-2.677308,53.703185],[-2.677526,53.700059],[-2.677593,53.693695],[-2.675845,53.693637],[-2.673586,53.692539],[-2.666382,53.691939],[-2.664079,53.691415],[-2.661751,53.691543],[-2.659417,53.691193],[-2.65794,53.690622],[-2.657234,53.68886],[-2.655941,53.688514],[-2.658335,53.686074],[-2.659072,53.682615],[-2.658823,53.680685],[-2.660827,53.680752],[-2.664962,53.681926],[-2.667227,53.681357],[-2.667852,53.68014],[-2.671088,53.679612],[-2.673641,53.679972],[-2.676338,53.679253],[-2.679196,53.679569],[-2.680132,53.67911],[-2.681408,53.679586],[-2.682532,53.679082],[-2.685019,53.679432],[-2.688535,53.679073],[-2.69228,53.679711],[-2.695518,53.679613],[-2.696698,53.680291],[-2.700274,53.680014],[-2.703063,53.680364],[-2.705072,53.681014],[-2.705831,53.680746],[-2.708061,53.681546],[-2.708485,53.681001],[-2.708455,53.678516],[-2.708061,53.676014],[-2.710582,53.676093],[-2.712467,53.67142],[-2.715504,53.671822],[-2.717294,53.672658],[-2.719698,53.673185],[-2.724588,53.673341],[-2.730275,53.673938],[-2.731799,53.67459],[-2.733833,53.674776],[-2.733265,53.677192],[-2.731624,53.679822],[-2.731059,53.681999],[-2.72912,53.683333],[-2.732292,53.684265],[-2.730039,53.686214],[-2.732731,53.686555],[-2.734452,53.687301],[-2.737554,53.68778],[-2.741501,53.688104],[-2.744109,53.687754],[-2.74604,53.692432],[-2.748218,53.692406],[-2.750817,53.692889],[-2.76565,53.692884],[-2.77026,53.691464],[-2.776493,53.690946],[-2.787461,53.691307],[-2.789908,53.690501],[-2.792415,53.689156],[-2.793906,53.689044],[-2.793681,53.688119],[-2.795874,53.687483],[-2.804109,53.688127],[-2.807318,53.686793],[-2.809102,53.687555],[-2.81262,53.687764],[-2.814625,53.687583],[-2.815926,53.687869],[-2.818764,53.687679],[-2.819682,53.687315],[-2.818547,53.686591],[-2.818148,53.685526],[-2.819357,53.68442],[-2.821327,53.68467],[-2.823279,53.683252],[-2.82398,53.680687],[-2.822886,53.679989],[-2.820062,53.68008],[-2.818204,53.678487],[-2.818328,53.6776],[-2.818463,53.676637],[-2.816583,53.674517],[-2.81575,53.671637],[-2.810221,53.66266],[-2.808931,53.661868],[-2.805737,53.661761],[-2.793813,53.662841],[-2.793754,53.662694],[-2.806093,53.661675],[-2.808348,53.661689],[-2.809051,53.661817],[-2.809869,53.662157],[-2.808718,53.658743],[-2.808591,53.653794],[-2.810751,53.648308],[-2.806375,53.641589],[-2.806372,53.640096],[-2.807278,53.638281],[-2.806156,53.634349],[-2.80584,53.633242],[-2.80616,53.631762],[-2.807868,53.630305],[-2.807549,53.6283],[-2.805987,53.628094],[-2.802545,53.626624],[-2.80106,53.625021],[-2.800808,53.622754],[-2.799212,53.621421],[-2.798154,53.621089],[-2.7989,53.619837],[-2.797159,53.619141],[-2.798233,53.618232],[-2.797621,53.6172],[-2.795953,53.615962],[-2.793463,53.615007],[-2.790785,53.614547],[-2.788285,53.617143],[-2.788628,53.619117],[-2.79324,53.62296],[-2.792977,53.623082],[-2.781002,53.623471],[-2.780595,53.62068],[-2.778859,53.619576],[-2.777146,53.62027],[-2.774175,53.620226],[-2.773853,53.619753],[-2.768829,53.619495],[-2.7662,53.619155],[-2.764093,53.617753],[-2.760952,53.616514],[-2.760678,53.61543],[-2.758736,53.614652],[-2.756286,53.615969],[-2.749209,53.618231],[-2.743278,53.622068],[-2.736168,53.623685],[-2.734278,53.622476],[-2.728285,53.621128],[-2.724419,53.620088],[-2.721393,53.618718],[-2.712809,53.618413],[-2.70969,53.617809],[-2.704864,53.618761],[-2.704885,53.619935],[-2.703731,53.621373],[-2.700815,53.62275],[-2.696929,53.622942],[-2.695318,53.623991],[-2.696158,53.624829],[-2.696286,53.626313],[-2.694568,53.626645],[-2.691907,53.624897],[-2.692215,53.624113],[-2.691819,53.622286],[-2.692303,53.621811],[-2.690948,53.620309],[-2.692578,53.618246],[-2.692202,53.617229],[-2.693409,53.6168],[-2.698477,53.614314],[-2.698588,53.613249],[-2.697224,53.607434],[-2.696039,53.606239],[-2.695882,53.604502],[-2.693354,53.604761],[-2.690981,53.604684],[-2.689313,53.604303],[-2.685782,53.603271],[-2.684073,53.60392],[-2.680152,53.604042],[-2.677593,53.604975],[-2.674003,53.604998],[-2.673053,53.60477],[-2.670545,53.605098],[-2.667994,53.604334],[-2.666602,53.603466],[-2.664949,53.603223],[-2.659371,53.603648],[-2.658865,53.604173],[-2.655141,53.60445],[-2.652568,53.605868],[-2.650097,53.606136],[-2.646947,53.60725],[-2.643747,53.607189],[-2.640342,53.607607],[-2.639251,53.607394],[-2.636608,53.60773],[-2.634592,53.608283],[-2.632097,53.607265],[-2.632367,53.606539],[-2.631284,53.605218],[-2.632205,53.603533],[-2.631762,53.603243],[-2.631378,53.599914],[-2.629834,53.599165],[-2.628047,53.597098],[-2.628232,53.595317],[-2.627495,53.595251],[-2.625907,53.593683],[-2.622788,53.593617],[-2.621293,53.594501],[-2.61992,53.594257],[-2.6188,53.595388],[-2.617396,53.595836],[-2.617939,53.596909],[-2.616027,53.598308],[-2.615303,53.59986],[-2.615158,53.602824],[-2.612248,53.603882],[-2.611272,53.604983],[-2.608647,53.606338],[-2.604889,53.607031],[-2.602645,53.60876],[-2.600735,53.608418],[-2.597599,53.609065],[-2.595926,53.610815],[-2.593478,53.610002],[-2.591681,53.60976],[-2.591469,53.609002],[-2.589758,53.608123],[-2.587393,53.607897],[-2.586732,53.606045],[-2.583065,53.604695],[-2.582419,53.603543],[-2.58061,53.601979],[-2.580886,53.600024],[-2.578125,53.597914],[-2.576742,53.59733],[-2.57535,53.59523],[-2.574004,53.594291],[-2.569278,53.595597],[-2.561711,53.598631],[-2.55959,53.598913],[-2.55898,53.600329],[-2.558148,53.600477],[-2.557261,53.601798],[-2.557291,53.603048],[-2.555786,53.604374],[-2.552646,53.604986],[-2.552218,53.607356],[-2.549811,53.608143],[-2.544932,53.60917],[-2.542743,53.610048],[-2.540518,53.610274],[-2.538049,53.61132],[-2.537152,53.612717],[-2.533495,53.615064],[-2.531114,53.615487],[-2.529375,53.617024],[-2.525158,53.618684],[-2.511323,53.626995]]]]},"properties":{"LAD22CD":"E07000118","LAD22NM":"Chorley","BNG_E":359189,"BNG_N":419724,"LONG":-2.61921,"LAT":53.6724,"GlobalID":"2b99339c-6588-4ee2-a4f1-8240d58a6c10"},"id":140}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.886957,53.863279],[-2.889213,53.862603],[-2.892248,53.86288],[-2.894916,53.860828],[-2.896315,53.86049],[-2.89858,53.861558],[-2.901317,53.864025],[-2.903571,53.864495],[-2.905571,53.864452],[-2.910956,53.863681],[-2.911738,53.862769],[-2.911705,53.860599],[-2.912728,53.859643],[-2.921847,53.85616],[-2.926217,53.855707],[-2.933433,53.856173],[-2.935435,53.854413],[-2.936652,53.852829],[-2.940671,53.850823],[-2.943925,53.850074],[-2.946992,53.850694],[-2.951277,53.852701],[-2.955546,53.856251],[-2.957775,53.859798],[-2.960063,53.861022],[-2.962894,53.861488],[-2.969521,53.860149],[-2.971795,53.860138],[-2.977821,53.861931],[-2.977828,53.861929],[-2.978461,53.861525],[-2.978558,53.860984],[-2.979048,53.859148],[-2.979594,53.858904],[-2.980804,53.858936],[-2.98103,53.858818],[-2.981761,53.858269],[-2.980946,53.857498],[-2.978047,53.858107],[-2.979656,53.85525],[-2.979501,53.854483],[-2.977867,53.85285],[-2.974044,53.852205],[-2.972191,53.850971],[-2.971972,53.849937],[-2.967848,53.848854],[-2.965604,53.847342],[-2.965586,53.844645],[-2.967908,53.842191],[-2.970782,53.840459],[-2.969271,53.838723],[-2.968602,53.834827],[-2.96732,53.832541],[-2.965074,53.829891],[-2.961778,53.828347],[-2.963461,53.827599],[-2.966647,53.82689],[-2.970322,53.829202],[-2.986042,53.828439],[-2.987194,53.830205],[-2.991976,53.830678],[-2.993001,53.829495],[-3.002331,53.828723],[-3.004955,53.827288],[-3.007179,53.826988],[-3.009112,53.825355],[-3.010653,53.826194],[-3.011667,53.82559],[-3.010097,53.824857],[-3.006137,53.824378],[-3.002764,53.823183],[-3.00223,53.821921],[-2.99998,53.820062],[-2.998541,53.8204],[-2.998223,53.818998],[-2.995647,53.818764],[-2.993303,53.815903],[-2.994814,53.815],[-2.993544,53.812912],[-2.99398,53.81218],[-2.992309,53.80821],[-2.986675,53.802185],[-2.989538,53.800463],[-2.986913,53.79866],[-2.984826,53.795123],[-2.983357,53.793803],[-2.990561,53.793665],[-2.999346,53.794265],[-2.9995,53.793515],[-3.002204,53.792753],[-3.00133,53.792078],[-3.00308,53.791122],[-3.003887,53.791342],[-3.003988,53.787816],[-3.006122,53.787991],[-3.00069,53.780618],[-2.996478,53.774504],[-3.015467,53.774581],[-3.015797,53.775149],[-3.028801,53.773117],[-3.032765,53.780749],[-3.039772,53.779606],[-3.057413,53.776473],[-3.056404,53.776042],[-3.05671,53.773274],[-3.055955,53.77067],[-3.056042,53.768274],[-3.055228,53.766965],[-3.055365,53.764259],[-3.054742,53.763976],[-3.055016,53.762018],[-3.052868,53.761648],[-3.051703,53.760962],[-3.049431,53.757289],[-3.048457,53.758299],[-3.047311,53.754202],[-3.044777,53.75196],[-3.039964,53.748919],[-3.039,53.747494],[-3.038041,53.746956],[-3.03548,53.746712],[-3.034796,53.748061],[-3.029113,53.744008],[-3.027862,53.744094],[-3.026519,53.743513],[-3.01445,53.738852],[-3.010766,53.73823],[-3.006901,53.737078],[-3.000811,53.736727],[-2.99749,53.737451],[-2.992581,53.737358],[-2.980083,53.734437],[-2.974775,53.733965],[-2.969674,53.73433],[-2.965739,53.734157],[-2.963425,53.734344],[-2.959679,53.733542],[-2.957122,53.733461],[-2.954218,53.734134],[-2.952384,53.734257],[-2.943732,53.736237],[-2.942045,53.736065],[-2.951526,53.733843],[-2.953066,53.732973],[-2.94233,53.732104],[-2.9368,53.732123],[-2.933908,53.731716],[-2.929132,53.731452],[-2.923118,53.731455],[-2.914535,53.731836],[-2.895149,53.733493],[-2.877105,53.735586],[-2.875805,53.736007],[-2.870841,53.736869],[-2.859047,53.737782],[-2.856646,53.738387],[-2.858492,53.742478],[-2.855546,53.738386],[-2.849983,53.739855],[-2.836729,53.742695],[-2.835408,53.743266],[-2.824745,53.745061],[-2.820347,53.746089],[-2.817373,53.747282],[-2.816929,53.746802],[-2.809368,53.748503],[-2.804416,53.749843],[-2.804204,53.749614],[-2.793997,53.751793],[-2.794158,53.752615],[-2.790732,53.7545],[-2.789836,53.756294],[-2.790529,53.756812],[-2.790815,53.758375],[-2.79242,53.760612],[-2.794384,53.760851],[-2.795551,53.762075],[-2.795575,53.762208],[-2.794985,53.762654],[-2.796698,53.764347],[-2.79912,53.765729],[-2.797933,53.767368],[-2.798664,53.77042],[-2.798194,53.771539],[-2.791146,53.780757],[-2.785067,53.784264],[-2.780501,53.787713],[-2.782072,53.790002],[-2.782866,53.789922],[-2.811521,53.807925],[-2.81526,53.808183],[-2.819653,53.815402],[-2.822095,53.818039],[-2.825994,53.819987],[-2.836104,53.825261],[-2.838674,53.829365],[-2.84087,53.831278],[-2.849397,53.831596],[-2.854454,53.83123],[-2.857492,53.83083],[-2.862226,53.829389],[-2.864926,53.829631],[-2.868689,53.830638],[-2.870124,53.831371],[-2.8703,53.832407],[-2.868624,53.833777],[-2.864083,53.835691],[-2.861091,53.836599],[-2.858514,53.83861],[-2.857587,53.842607],[-2.861106,53.843761],[-2.864094,53.844214],[-2.867776,53.845549],[-2.871616,53.843152],[-2.878837,53.843332],[-2.883745,53.84391],[-2.890146,53.846039],[-2.890693,53.847668],[-2.888092,53.849161],[-2.8874,53.850813],[-2.890122,53.852187],[-2.888017,53.854245],[-2.88427,53.855693],[-2.875827,53.85705],[-2.875561,53.857933],[-2.877016,53.859001],[-2.878253,53.860696],[-2.87997,53.860565],[-2.884591,53.862937],[-2.88531,53.863063],[-2.886607,53.86329],[-2.886957,53.863279]]]},"properties":{"LAD22CD":"E07000119","LAD22NM":"Fylde","BNG_E":339554,"BNG_N":433811,"LONG":-2.91914,"LAT":53.79709,"GlobalID":"8d5217a4-bd33-4962-ad07-98a58adb0a4e"},"id":141}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.342306,53.794827],[-2.343667,53.793384],[-2.344633,53.793282],[-2.347968,53.794354],[-2.356682,53.798458],[-2.359244,53.797064],[-2.358587,53.796247],[-2.358808,53.795282],[-2.357347,53.794813],[-2.356645,53.792922],[-2.359206,53.793378],[-2.359608,53.794336],[-2.362221,53.794605],[-2.363511,53.793505],[-2.36518,53.793105],[-2.369746,53.794128],[-2.371433,53.795488],[-2.369615,53.797168],[-2.368975,53.798953],[-2.369858,53.801503],[-2.371048,53.801596],[-2.374711,53.800647],[-2.37919,53.801156],[-2.378785,53.802371],[-2.381332,53.802885],[-2.383975,53.802469],[-2.389732,53.802446],[-2.393176,53.803278],[-2.39713,53.803017],[-2.398877,53.80358],[-2.397827,53.806082],[-2.398988,53.807853],[-2.399386,53.809848],[-2.398706,53.810522],[-2.395193,53.812228],[-2.393404,53.814326],[-2.393913,53.815171],[-2.396737,53.816619],[-2.398709,53.815787],[-2.399969,53.815823],[-2.401305,53.813923],[-2.407153,53.813317],[-2.412416,53.809837],[-2.423517,53.802837],[-2.43366,53.798474],[-2.440054,53.795233],[-2.44436,53.791008],[-2.447601,53.789027],[-2.447478,53.787479],[-2.44966,53.786837],[-2.455041,53.783402],[-2.459807,53.781365],[-2.462003,53.780887],[-2.465808,53.780813],[-2.462801,53.778572],[-2.460792,53.778047],[-2.459473,53.777273],[-2.455497,53.774032],[-2.453533,53.772993],[-2.453126,53.77166],[-2.453604,53.771096],[-2.452335,53.769647],[-2.446317,53.76659],[-2.448061,53.765905],[-2.448914,53.7644],[-2.451125,53.762822],[-2.451967,53.761579],[-2.452005,53.75954],[-2.451146,53.757355],[-2.451043,53.755989],[-2.44817,53.756056],[-2.446189,53.755104],[-2.444642,53.753594],[-2.444835,53.753128],[-2.441928,53.751996],[-2.440683,53.750415],[-2.43937,53.747832],[-2.440901,53.746722],[-2.441988,53.745229],[-2.441282,53.743414],[-2.44183,53.742397],[-2.440967,53.741645],[-2.440829,53.740171],[-2.439962,53.739014],[-2.439762,53.733374],[-2.433553,53.727623],[-2.432296,53.720373],[-2.43269,53.718923],[-2.425872,53.714695],[-2.418346,53.711424],[-2.419654,53.709844],[-2.419966,53.708321],[-2.414015,53.705005],[-2.413068,53.704693],[-2.410989,53.705137],[-2.408348,53.705278],[-2.40459,53.706505],[-2.395755,53.709631],[-2.382899,53.711214],[-2.369731,53.714068],[-2.360801,53.716498],[-2.355284,53.72217],[-2.352913,53.722225],[-2.350131,53.721843],[-2.349877,53.722468],[-2.344185,53.72245],[-2.342768,53.723277],[-2.342253,53.724336],[-2.342818,53.725982],[-2.339506,53.727626],[-2.338166,53.729694],[-2.336708,53.728339],[-2.334555,53.729282],[-2.335793,53.730393],[-2.331801,53.731338],[-2.331142,53.73248],[-2.329563,53.732194],[-2.327379,53.734186],[-2.325772,53.734354],[-2.32593,53.73518],[-2.327697,53.735306],[-2.326258,53.737795],[-2.323807,53.737719],[-2.324484,53.742675],[-2.325601,53.743215],[-2.326148,53.747336],[-2.314109,53.747039],[-2.313725,53.751575],[-2.316403,53.751957],[-2.319917,53.755569],[-2.322139,53.757396],[-2.325825,53.758615],[-2.327223,53.759736],[-2.328625,53.761479],[-2.327858,53.763538],[-2.328426,53.764379],[-2.328757,53.767013],[-2.330118,53.768029],[-2.330372,53.769033],[-2.331428,53.769551],[-2.330374,53.773536],[-2.331688,53.777948],[-2.331195,53.778781],[-2.329314,53.779628],[-2.330055,53.780985],[-2.331605,53.781208],[-2.333288,53.782039],[-2.335797,53.782495],[-2.336098,53.783421],[-2.335584,53.785072],[-2.33738,53.786363],[-2.338757,53.7891],[-2.337844,53.78955],[-2.336233,53.791697],[-2.341096,53.79252],[-2.340852,53.794172],[-2.342306,53.794827]]]},"properties":{"LAD22CD":"E07000120","LAD22NM":"Hyndburn","BNG_E":374407,"BNG_N":428971,"LONG":-2.38964,"LAT":53.75648,"GlobalID":"4fe5aced-6376-4659-a1a5-7695ae6caea6"},"id":142}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.887219,53.946273],[-2.88542,53.948329],[-2.885706,53.948974],[-2.888309,53.948923],[-2.889468,53.948158],[-2.889462,53.947937],[-2.889391,53.947761],[-2.887219,53.946273]]],[[[-2.893476,53.988909],[-2.893328,53.989577],[-2.897199,53.990544],[-2.900061,53.990558],[-2.901263,53.98903],[-2.900199,53.987806],[-2.898291,53.987786],[-2.893476,53.988909]]],[[[-2.837441,54.022077],[-2.837059,54.022982],[-2.84012,54.022975],[-2.841333,54.022243],[-2.84109,54.021467],[-2.837579,54.020033],[-2.836426,54.017177],[-2.83465,54.017645],[-2.834098,54.022438],[-2.836347,54.022809],[-2.837441,54.022077]]],[[[-2.460863,54.226716],[-2.459471,54.229525],[-2.45878,54.232485],[-2.459585,54.239568],[-2.464883,54.236221],[-2.472375,54.233721],[-2.473219,54.233737],[-2.475165,54.231252],[-2.478681,54.229295],[-2.479468,54.228249],[-2.490703,54.224802],[-2.493734,54.222994],[-2.494244,54.222332],[-2.49845,54.22049],[-2.499603,54.219555],[-2.51087,54.217667],[-2.512443,54.217864],[-2.515082,54.217706],[-2.52007,54.216447],[-2.520518,54.214875],[-2.522689,54.214586],[-2.52386,54.213714],[-2.525997,54.21285],[-2.52654,54.211802],[-2.528364,54.211714],[-2.532411,54.20913],[-2.5359,54.20948],[-2.539771,54.207402],[-2.540986,54.206245],[-2.543365,54.205683],[-2.545534,54.202997],[-2.550751,54.200293],[-2.557794,54.198669],[-2.563301,54.197917],[-2.56394,54.197616],[-2.57102,54.196821],[-2.576078,54.195595],[-2.578245,54.195455],[-2.580971,54.196008],[-2.583793,54.195236],[-2.585312,54.196338],[-2.587004,54.19448],[-2.591017,54.194928],[-2.590871,54.195883],[-2.595552,54.196082],[-2.598948,54.195226],[-2.604467,54.194966],[-2.605753,54.194354],[-2.611943,54.195203],[-2.624957,54.195569],[-2.627371,54.197367],[-2.629988,54.197786],[-2.631225,54.198903],[-2.639965,54.202045],[-2.641516,54.200386],[-2.644667,54.190904],[-2.647742,54.187282],[-2.65307,54.183222],[-2.657729,54.181631],[-2.659495,54.18024],[-2.661508,54.179627],[-2.662879,54.179739],[-2.664776,54.178507],[-2.666297,54.178487],[-2.666979,54.177833],[-2.6705,54.176583],[-2.671899,54.175011],[-2.672641,54.174747],[-2.672985,54.172579],[-2.672469,54.171038],[-2.675137,54.170206],[-2.676445,54.169313],[-2.676408,54.168257],[-2.677141,54.16752],[-2.67693,54.166496],[-2.675827,54.165061],[-2.675775,54.163759],[-2.67818,54.161507],[-2.679876,54.161135],[-2.687964,54.164647],[-2.69108,54.16458],[-2.693127,54.163242],[-2.696345,54.164015],[-2.701439,54.163376],[-2.705592,54.164871],[-2.708788,54.163861],[-2.71358,54.164481],[-2.717759,54.165401],[-2.723448,54.165941],[-2.727889,54.166811],[-2.727437,54.16792],[-2.736489,54.169027],[-2.735827,54.173214],[-2.736528,54.173981],[-2.736285,54.1769],[-2.736587,54.178232],[-2.735707,54.180082],[-2.736142,54.18113],[-2.734985,54.182324],[-2.734387,54.184111],[-2.738768,54.185068],[-2.743054,54.185503],[-2.744942,54.185923],[-2.746787,54.187001],[-2.748603,54.187039],[-2.749302,54.188955],[-2.750787,54.188743],[-2.753426,54.187734],[-2.768232,54.185964],[-2.769107,54.186183],[-2.769761,54.187346],[-2.771836,54.187336],[-2.774797,54.188416],[-2.776458,54.18868],[-2.777742,54.18948],[-2.780205,54.18955],[-2.784346,54.191692],[-2.786458,54.193101],[-2.788628,54.192851],[-2.794896,54.195779],[-2.795013,54.19701],[-2.796998,54.197018],[-2.79923,54.197732],[-2.800071,54.196426],[-2.802861,54.196865],[-2.804045,54.195656],[-2.805499,54.194901],[-2.806176,54.193818],[-2.809041,54.194016],[-2.811076,54.191961],[-2.816333,54.18981],[-2.815407,54.187302],[-2.814089,54.186724],[-2.813687,54.185768],[-2.813773,54.183917],[-2.814984,54.183329],[-2.815625,54.182114],[-2.818786,54.180845],[-2.82114,54.18103],[-2.823467,54.180067],[-2.828801,54.178967],[-2.837217,54.174172],[-2.837913,54.174226],[-2.833973,54.171909],[-2.834129,54.170704],[-2.833529,54.168883],[-2.832449,54.16763],[-2.832796,54.166006],[-2.83425,54.164657],[-2.835098,54.163162],[-2.835192,54.161513],[-2.832318,54.158573],[-2.832012,54.157335],[-2.830901,54.156862],[-2.829426,54.154769],[-2.82686,54.153612],[-2.824399,54.153571],[-2.819156,54.154336],[-2.8189,54.153807],[-2.821129,54.152981],[-2.819814,54.150372],[-2.820993,54.150631],[-2.822323,54.149031],[-2.824031,54.148908],[-2.82743,54.14786],[-2.827968,54.147275],[-2.827688,54.145779],[-2.829057,54.144528],[-2.828181,54.143081],[-2.825688,54.142641],[-2.824438,54.140284],[-2.821363,54.140712],[-2.819655,54.138248],[-2.817032,54.136255],[-2.816781,54.135437],[-2.815418,54.135378],[-2.812144,54.132903],[-2.810162,54.132319],[-2.808487,54.132728],[-2.809747,54.134472],[-2.809509,54.13559],[-2.810722,54.135922],[-2.810493,54.13756],[-2.807921,54.138296],[-2.805512,54.139311],[-2.806305,54.139908],[-2.802124,54.140363],[-2.801778,54.139079],[-2.799989,54.139144],[-2.799991,54.137965],[-2.801283,54.137856],[-2.803557,54.139155],[-2.805953,54.137363],[-2.806021,54.135587],[-2.807213,54.135431],[-2.804789,54.133219],[-2.804668,54.132595],[-2.802904,54.130837],[-2.803162,54.130291],[-2.801292,54.129266],[-2.800257,54.127748],[-2.798079,54.127434],[-2.79525,54.128932],[-2.792886,54.129176],[-2.793532,54.130397],[-2.792497,54.130619],[-2.791636,54.129343],[-2.793041,54.127042],[-2.794167,54.125981],[-2.794876,54.124173],[-2.794538,54.123576],[-2.796135,54.122344],[-2.797937,54.119555],[-2.799021,54.118814],[-2.799172,54.116955],[-2.800269,54.116173],[-2.799788,54.115572],[-2.803653,54.115125],[-2.80609,54.113436],[-2.807306,54.111476],[-2.807304,54.109098],[-2.810164,54.107265],[-2.812095,54.106448],[-2.813065,54.105117],[-2.819914,54.104138],[-2.825128,54.101664],[-2.8266,54.100433],[-2.827501,54.098597],[-2.82768,54.094551],[-2.825349,54.093881],[-2.821203,54.094195],[-2.82359,54.093136],[-2.824272,54.092027],[-2.823924,54.091095],[-2.822491,54.090318],[-2.821496,54.08897],[-2.820418,54.088733],[-2.825267,54.086369],[-2.827785,54.086184],[-2.833287,54.084629],[-2.834411,54.083226],[-2.839074,54.080041],[-2.84104,54.079092],[-2.846633,54.077638],[-2.85046,54.077218],[-2.857049,54.077674],[-2.860819,54.076569],[-2.863085,54.075538],[-2.865074,54.075456],[-2.865101,54.074668],[-2.86758,54.073277],[-2.870254,54.073148],[-2.871719,54.07403],[-2.874494,54.073939],[-2.87644,54.073392],[-2.877433,54.069095],[-2.882727,54.065872],[-2.885269,54.065434],[-2.887394,54.066153],[-2.887581,54.064602],[-2.888643,54.062923],[-2.891226,54.060855],[-2.892372,54.06051],[-2.892782,54.058185],[-2.894308,54.05649],[-2.894938,54.055292],[-2.896081,54.051249],[-2.896997,54.050864],[-2.897129,54.049276],[-2.898978,54.048128],[-2.901763,54.048142],[-2.903073,54.047871],[-2.905909,54.047867],[-2.906341,54.046875],[-2.905386,54.046022],[-2.905169,54.044929],[-2.90656,54.042793],[-2.905989,54.041282],[-2.906272,54.039395],[-2.912469,54.037762],[-2.91953,54.035669],[-2.92037,54.0343],[-2.913448,54.035566],[-2.91237,54.035275],[-2.912313,54.033782],[-2.920028,54.032203],[-2.920853,54.030953],[-2.923852,54.031942],[-2.924431,54.031257],[-2.92294,54.030574],[-2.918819,54.027669],[-2.911672,54.024691],[-2.910899,54.022756],[-2.909152,54.021248],[-2.907706,54.021271],[-2.90638,54.022188],[-2.904027,54.022189],[-2.902277,54.017977],[-2.903757,54.017303],[-2.905711,54.015269],[-2.905554,54.013627],[-2.906056,54.012715],[-2.90519,54.010579],[-2.906647,54.010413],[-2.906984,54.007166],[-2.906383,54.005918],[-2.904362,54.005059],[-2.904058,54.002859],[-2.900932,54.000056],[-2.899675,53.999537],[-2.900591,53.998738],[-2.903744,53.998417],[-2.902918,53.99684],[-2.901457,53.996661],[-2.901037,53.994877],[-2.898948,53.994502],[-2.900231,53.993157],[-2.900196,53.992041],[-2.897928,53.991096],[-2.894547,53.99037],[-2.889309,53.990356],[-2.887313,53.990571],[-2.885021,53.991959],[-2.883923,53.994727],[-2.882682,53.993274],[-2.882592,53.989971],[-2.881015,53.989473],[-2.876224,53.994145],[-2.876389,53.996019],[-2.875516,53.997595],[-2.875991,53.998923],[-2.876799,53.999336],[-2.876903,54.000472],[-2.876016,54.001783],[-2.87332,54.001846],[-2.871893,54.00277],[-2.875107,54.004325],[-2.874716,54.005448],[-2.87185,54.006811],[-2.87212,54.005391],[-2.870701,54.003976],[-2.868513,54.00417],[-2.864733,54.005036],[-2.866738,54.006123],[-2.865599,54.006925],[-2.86664,54.008383],[-2.866478,54.009654],[-2.870261,54.01073],[-2.865957,54.010951],[-2.865765,54.008803],[-2.864477,54.007393],[-2.863166,54.004985],[-2.860492,54.003867],[-2.85539,54.005428],[-2.853772,54.007264],[-2.853017,54.005794],[-2.852118,54.005278],[-2.84973,54.005178],[-2.842297,54.005933],[-2.838701,54.007423],[-2.838516,54.008617],[-2.835293,54.010927],[-2.834681,54.012182],[-2.835474,54.013515],[-2.834734,54.014109],[-2.835855,54.015477],[-2.837601,54.018333],[-2.838295,54.020198],[-2.839919,54.020515],[-2.841236,54.021364],[-2.84141,54.022293],[-2.840353,54.022924],[-2.84203,54.023279],[-2.842653,54.023067],[-2.843228,54.02367],[-2.840347,54.02311],[-2.839384,54.023269],[-2.833969,54.023048],[-2.83294,54.026933],[-2.833472,54.028427],[-2.835574,54.03138],[-2.843914,54.039191],[-2.845235,54.041324],[-2.845605,54.042973],[-2.846202,54.04318],[-2.844665,54.045487],[-2.842953,54.046908],[-2.839172,54.048579],[-2.831961,54.050253],[-2.826591,54.052011],[-2.819774,54.053437],[-2.814849,54.054848],[-2.811673,54.05547],[-2.808784,54.055627],[-2.806543,54.05545],[-2.803427,54.054178],[-2.801993,54.052724],[-2.799788,54.053187],[-2.797569,54.054529],[-2.794476,54.057727],[-2.794045,54.059698],[-2.795765,54.061179],[-2.793296,54.062954],[-2.791651,54.062276],[-2.793176,54.057746],[-2.795841,54.054171],[-2.797721,54.052793],[-2.799726,54.051968],[-2.802603,54.051952],[-2.806167,54.054291],[-2.809481,54.054743],[-2.812886,54.054166],[-2.815913,54.053166],[-2.824055,54.051507],[-2.837422,54.047124],[-2.839958,54.046461],[-2.842326,54.044988],[-2.84281,54.04338],[-2.84252,54.041927],[-2.841257,54.03993],[-2.839978,54.038683],[-2.833046,54.03304],[-2.831818,54.032434],[-2.830551,54.031057],[-2.828663,54.027702],[-2.829009,54.027075],[-2.829947,54.02176],[-2.829977,54.017709],[-2.82898,54.015018],[-2.829519,54.012696],[-2.831718,54.007897],[-2.83278,54.00742],[-2.833154,54.006366],[-2.832281,54.003649],[-2.832571,54.002578],[-2.83185,54.00156],[-2.830622,54.001058],[-2.83226,53.997923],[-2.830841,53.997776],[-2.829552,53.997028],[-2.829231,53.995445],[-2.826615,53.996354],[-2.825733,53.995575],[-2.829029,53.995163],[-2.830627,53.995461],[-2.830446,53.997223],[-2.832507,53.997381],[-2.834033,53.99866],[-2.8359,53.997847],[-2.837023,53.998018],[-2.840679,53.997807],[-2.845226,53.998043],[-2.846505,53.998545],[-2.848287,53.999935],[-2.849119,53.99964],[-2.850641,54.000506],[-2.852092,54.000514],[-2.856046,53.999573],[-2.859806,53.99774],[-2.861131,53.994784],[-2.863012,53.995368],[-2.865264,53.994246],[-2.867987,53.993259],[-2.86854,53.992355],[-2.869837,53.991866],[-2.870546,53.990345],[-2.869036,53.986235],[-2.869269,53.984062],[-2.869992,53.982621],[-2.876985,53.979417],[-2.875892,53.974542],[-2.874613,53.973706],[-2.87389,53.971664],[-2.871948,53.970311],[-2.867724,53.969636],[-2.864885,53.968792],[-2.861111,53.968225],[-2.859906,53.968287],[-2.854582,53.966493],[-2.851784,53.967118],[-2.850819,53.96628],[-2.84923,53.965848],[-2.847657,53.966075],[-2.845809,53.965496],[-2.841888,53.964987],[-2.842027,53.964604],[-2.847323,53.964122],[-2.851216,53.96483],[-2.852054,53.965385],[-2.858892,53.964573],[-2.861876,53.964625],[-2.864796,53.963263],[-2.866022,53.961224],[-2.870718,53.95903],[-2.870644,53.957546],[-2.872137,53.958],[-2.873372,53.957684],[-2.876378,53.958077],[-2.878016,53.958693],[-2.878745,53.957719],[-2.88033,53.956689],[-2.882237,53.956885],[-2.883183,53.959078],[-2.886784,53.958355],[-2.885933,53.956511],[-2.883196,53.955819],[-2.880268,53.954043],[-2.87772,53.954599],[-2.875137,53.953842],[-2.875238,53.952665],[-2.873297,53.950795],[-2.87297,53.949465],[-2.875817,53.948881],[-2.87524,53.947841],[-2.875266,53.946326],[-2.877908,53.946619],[-2.880679,53.945847],[-2.88247,53.946266],[-2.880739,53.94529],[-2.87965,53.945461],[-2.878737,53.944285],[-2.880067,53.944015],[-2.880069,53.944014],[-2.880245,53.943564],[-2.879758,53.943868],[-2.879675,53.943412],[-2.879181,53.941838],[-2.877139,53.94166],[-2.876048,53.940749],[-2.876612,53.939869],[-2.87808,53.939682],[-2.879279,53.938889],[-2.880237,53.937472],[-2.881948,53.937091],[-2.883316,53.938112],[-2.885245,53.936839],[-2.88403,53.935294],[-2.881932,53.934837],[-2.877887,53.932465],[-2.873273,53.931182],[-2.873712,53.928462],[-2.864367,53.91808],[-2.82592,53.933367],[-2.818711,53.934929],[-2.809664,53.933553],[-2.803688,53.935754],[-2.804744,53.937125],[-2.805372,53.939285],[-2.804705,53.940322],[-2.802321,53.942073],[-2.803917,53.943391],[-2.806989,53.944096],[-2.808392,53.943855],[-2.812556,53.944979],[-2.813645,53.945849],[-2.810836,53.947129],[-2.806458,53.948039],[-2.805125,53.950186],[-2.802931,53.951212],[-2.803139,53.952109],[-2.805337,53.952946],[-2.805559,53.953947],[-2.804474,53.956496],[-2.803103,53.957618],[-2.804305,53.958063],[-2.806263,53.959794],[-2.807379,53.96203],[-2.806149,53.963201],[-2.80468,53.962839],[-2.803428,53.963726],[-2.803106,53.964924],[-2.804279,53.965847],[-2.803722,53.967925],[-2.801889,53.969264],[-2.79935,53.970144],[-2.799782,53.971541],[-2.798897,53.972508],[-2.799951,53.974016],[-2.798619,53.975117],[-2.796383,53.975472],[-2.794893,53.974208],[-2.794286,53.971929],[-2.792918,53.97094],[-2.789771,53.969863],[-2.787934,53.967824],[-2.786721,53.967375],[-2.782109,53.967997],[-2.780535,53.966646],[-2.776195,53.964757],[-2.774988,53.96481],[-2.774484,53.963881],[-2.771007,53.963543],[-2.770092,53.964637],[-2.768863,53.965065],[-2.766037,53.965213],[-2.760698,53.964498],[-2.759856,53.963523],[-2.757868,53.963109],[-2.75754,53.961333],[-2.756453,53.960432],[-2.757382,53.959219],[-2.756019,53.958292],[-2.753542,53.957846],[-2.750778,53.956617],[-2.755697,53.952699],[-2.742435,53.95618],[-2.741828,53.957014],[-2.741603,53.958615],[-2.739437,53.960116],[-2.739985,53.962433],[-2.736209,53.963742],[-2.736019,53.964454],[-2.734404,53.965494],[-2.733103,53.967148],[-2.733904,53.967563],[-2.73577,53.967411],[-2.736443,53.968037],[-2.733955,53.973118],[-2.735237,53.974526],[-2.730851,53.975653],[-2.728988,53.977819],[-2.727451,53.978513],[-2.72418,53.978605],[-2.722546,53.977251],[-2.720206,53.978488],[-2.719799,53.979443],[-2.715656,53.980244],[-2.714859,53.978565],[-2.712503,53.976142],[-2.71104,53.973212],[-2.710404,53.969709],[-2.711829,53.965759],[-2.710514,53.963631],[-2.709333,53.960432],[-2.706374,53.958329],[-2.706501,53.955898],[-2.703373,53.95352],[-2.700551,53.949173],[-2.701587,53.946354],[-2.702643,53.944881],[-2.702049,53.943556],[-2.70033,53.946047],[-2.699003,53.94709],[-2.696832,53.947345],[-2.688854,53.949178],[-2.687917,53.949702],[-2.684579,53.949397],[-2.679875,53.95026],[-2.673648,53.950221],[-2.664154,53.947267],[-2.662671,53.947394],[-2.655268,53.949315],[-2.648218,53.948922],[-2.649699,53.949907],[-2.650832,53.952255],[-2.646162,53.955298],[-2.644643,53.956898],[-2.643043,53.957588],[-2.637314,53.958488],[-2.630742,53.957806],[-2.623652,53.95496],[-2.620048,53.952749],[-2.616902,53.952212],[-2.615079,53.953377],[-2.613738,53.955763],[-2.611459,53.956862],[-2.606577,53.956706],[-2.602919,53.957087],[-2.593812,53.959373],[-2.588847,53.960216],[-2.581643,53.964769],[-2.579306,53.967482],[-2.578351,53.971246],[-2.577424,53.972011],[-2.574109,53.972996],[-2.566734,53.973467],[-2.557527,53.974912],[-2.561056,53.976129],[-2.565803,53.979018],[-2.569295,53.981821],[-2.57219,53.983556],[-2.573826,53.985174],[-2.573969,53.986155],[-2.572242,53.986817],[-2.570917,53.98782],[-2.571315,53.989406],[-2.574326,53.991728],[-2.577229,53.993005],[-2.57742,53.994416],[-2.580653,54.000118],[-2.580493,54.001483],[-2.578947,54.004785],[-2.579589,54.006478],[-2.579261,54.007581],[-2.574775,54.012939],[-2.572186,54.014623],[-2.568111,54.015049],[-2.566951,54.014827],[-2.564308,54.015264],[-2.556891,54.015459],[-2.549196,54.013673],[-2.547106,54.014077],[-2.545859,54.014874],[-2.544145,54.019691],[-2.538727,54.022652],[-2.531985,54.023849],[-2.52731,54.026245],[-2.521852,54.022494],[-2.518679,54.021245],[-2.512881,54.022367],[-2.504208,54.020543],[-2.502681,54.020399],[-2.497756,54.02203],[-2.498936,54.023999],[-2.499187,54.025064],[-2.497761,54.025819],[-2.49789,54.027393],[-2.495594,54.02893],[-2.49289,54.032137],[-2.492835,54.034144],[-2.49399,54.036545],[-2.492257,54.040074],[-2.491074,54.040739],[-2.486658,54.042555],[-2.46955,54.046212],[-2.470546,54.050855],[-2.469016,54.054881],[-2.46399,54.061084],[-2.465613,54.071731],[-2.464348,54.075279],[-2.470724,54.076564],[-2.480751,54.085379],[-2.484727,54.085204],[-2.486383,54.084852],[-2.488398,54.086725],[-2.491567,54.08732],[-2.492566,54.089876],[-2.494206,54.089804],[-2.506305,54.091475],[-2.508754,54.092422],[-2.50855,54.09423],[-2.509526,54.095425],[-2.517242,54.094968],[-2.520523,54.095543],[-2.52401,54.094622],[-2.52559,54.096029],[-2.525885,54.09844],[-2.526392,54.099177],[-2.524493,54.100315],[-2.524109,54.102129],[-2.526306,54.10195],[-2.527502,54.102602],[-2.530042,54.102709],[-2.531535,54.103281],[-2.534427,54.103424],[-2.536766,54.104099],[-2.538128,54.105675],[-2.536954,54.106876],[-2.536201,54.108626],[-2.539092,54.109921],[-2.541786,54.111866],[-2.54468,54.113221],[-2.545836,54.114367],[-2.545653,54.115978],[-2.544768,54.117133],[-2.553083,54.120543],[-2.556874,54.120609],[-2.559213,54.121086],[-2.560765,54.122373],[-2.56333,54.122706],[-2.56301,54.124415],[-2.5633,54.125394],[-2.564738,54.127066],[-2.56319,54.127896],[-2.562473,54.12916],[-2.561389,54.1299],[-2.562489,54.131736],[-2.562056,54.132836],[-2.562224,54.135184],[-2.563715,54.135457],[-2.562666,54.136509],[-2.56341,54.140406],[-2.56133,54.141964],[-2.560952,54.142842],[-2.558316,54.142907],[-2.557874,54.143364],[-2.558198,54.147421],[-2.557378,54.149979],[-2.558495,54.149928],[-2.561515,54.150531],[-2.560505,54.153052],[-2.557675,54.15349],[-2.552287,54.153657],[-2.547222,54.153309],[-2.544772,54.155681],[-2.543683,54.157595],[-2.541325,54.15772],[-2.536731,54.156513],[-2.533979,54.157693],[-2.533136,54.158558],[-2.532996,54.160856],[-2.531559,54.160945],[-2.529956,54.162648],[-2.530451,54.164033],[-2.528907,54.164238],[-2.530243,54.166436],[-2.52936,54.166981],[-2.529301,54.168491],[-2.528721,54.169512],[-2.526566,54.170461],[-2.523282,54.171224],[-2.523652,54.172379],[-2.522538,54.173692],[-2.518731,54.17598],[-2.5182,54.176649],[-2.515342,54.177922],[-2.511439,54.17905],[-2.479959,54.202313],[-2.479324,54.203373],[-2.47963,54.204627],[-2.47705,54.208897],[-2.475694,54.210299],[-2.47477,54.21375],[-2.473699,54.215282],[-2.469016,54.2189],[-2.465612,54.220717],[-2.463969,54.22211],[-2.460863,54.226716]]]]},"properties":{"LAD22CD":"E07000121","LAD22NM":"Lancaster","BNG_E":356896,"BNG_N":464988,"LONG":-2.6603,"LAT":54.07901,"GlobalID":"6d6ac025-99a9-4894-8c31-aa5534488982"},"id":143}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.046131,53.850141],[-2.06229,53.859081],[-2.064757,53.858878],[-2.066408,53.859634],[-2.068966,53.859731],[-2.071369,53.861098],[-2.07485,53.862367],[-2.075965,53.86361],[-2.076723,53.866836],[-2.081191,53.869971],[-2.084498,53.870072],[-2.086119,53.869658],[-2.08899,53.868192],[-2.090097,53.86846],[-2.088345,53.87006],[-2.084246,53.872225],[-2.082694,53.873699],[-2.081447,53.87568],[-2.082413,53.876617],[-2.082458,53.877554],[-2.083707,53.877933],[-2.086249,53.880748],[-2.09068,53.882811],[-2.090922,53.883423],[-2.093855,53.885088],[-2.095735,53.888156],[-2.103019,53.890941],[-2.103417,53.891893],[-2.113176,53.904612],[-2.107467,53.908043],[-2.109791,53.909093],[-2.111819,53.911933],[-2.114695,53.913752],[-2.113093,53.915439],[-2.116687,53.917286],[-2.118289,53.917654],[-2.121758,53.917331],[-2.124628,53.921923],[-2.12435,53.923201],[-2.127065,53.923667],[-2.130159,53.92348],[-2.130898,53.924605],[-2.132547,53.925546],[-2.132224,53.926509],[-2.137789,53.928043],[-2.139979,53.928325],[-2.140878,53.926435],[-2.141799,53.925675],[-2.144961,53.926514],[-2.149434,53.926028],[-2.148115,53.927826],[-2.151717,53.929484],[-2.155182,53.927567],[-2.156887,53.927022],[-2.157819,53.928271],[-2.159663,53.928646],[-2.162877,53.92727],[-2.163742,53.92886],[-2.163789,53.930289],[-2.161649,53.931828],[-2.162075,53.932624],[-2.16412,53.934636],[-2.171679,53.937688],[-2.174427,53.936665],[-2.175945,53.93426],[-2.179316,53.935466],[-2.182282,53.93539],[-2.184387,53.937134],[-2.185638,53.940454],[-2.185488,53.941887],[-2.183715,53.943703],[-2.183844,53.945217],[-2.179467,53.945986],[-2.180462,53.946657],[-2.180711,53.947996],[-2.183681,53.949337],[-2.183525,53.951437],[-2.184523,53.952264],[-2.187206,53.950837],[-2.190122,53.949821],[-2.202409,53.9467],[-2.204071,53.945837],[-2.206951,53.945039],[-2.209724,53.943407],[-2.214927,53.942162],[-2.215617,53.941524],[-2.217403,53.942414],[-2.218137,53.943509],[-2.222769,53.943195],[-2.225506,53.943632],[-2.226296,53.942839],[-2.225222,53.941808],[-2.228716,53.941041],[-2.229917,53.939311],[-2.234039,53.938532],[-2.2353,53.9377],[-2.238134,53.936693],[-2.239493,53.936577],[-2.240476,53.93572],[-2.245841,53.933263],[-2.244614,53.930777],[-2.24443,53.926502],[-2.243738,53.923948],[-2.240787,53.91926],[-2.237578,53.915413],[-2.234956,53.907962],[-2.229566,53.902137],[-2.226941,53.898696],[-2.226582,53.897871],[-2.224732,53.897463],[-2.222917,53.896384],[-2.223112,53.894044],[-2.222792,53.893189],[-2.224018,53.890876],[-2.22663,53.889512],[-2.228855,53.888896],[-2.231939,53.888576],[-2.234083,53.887283],[-2.23705,53.887306],[-2.238381,53.886839],[-2.241946,53.886821],[-2.24771,53.885528],[-2.248903,53.885587],[-2.252596,53.883959],[-2.2535,53.883135],[-2.255703,53.882511],[-2.259196,53.882034],[-2.258549,53.880272],[-2.258773,53.877863],[-2.263513,53.87668],[-2.265688,53.875818],[-2.270191,53.875845],[-2.272867,53.878612],[-2.273696,53.878978],[-2.277672,53.877812],[-2.285841,53.873972],[-2.295947,53.872684],[-2.297262,53.872089],[-2.305093,53.870674],[-2.307912,53.868951],[-2.312378,53.865157],[-2.314606,53.864274],[-2.317585,53.862206],[-2.318981,53.861644],[-2.320141,53.859906],[-2.319465,53.858295],[-2.317487,53.857161],[-2.317779,53.855587],[-2.316268,53.854746],[-2.314266,53.854311],[-2.316996,53.851941],[-2.322134,53.851884],[-2.325173,53.85112],[-2.320829,53.850836],[-2.318534,53.850047],[-2.317928,53.846922],[-2.326461,53.845106],[-2.327069,53.844192],[-2.325216,53.842202],[-2.329294,53.842047],[-2.331743,53.842526],[-2.331635,53.841535],[-2.330433,53.840711],[-2.328503,53.840745],[-2.327032,53.839402],[-2.322942,53.837984],[-2.319092,53.839472],[-2.318818,53.839207],[-2.313801,53.839008],[-2.308878,53.838419],[-2.308561,53.836291],[-2.302573,53.836395],[-2.301911,53.834067],[-2.302169,53.832287],[-2.305876,53.831304],[-2.307233,53.830477],[-2.305823,53.829594],[-2.308029,53.828931],[-2.314878,53.828552],[-2.317137,53.827854],[-2.314569,53.823156],[-2.316415,53.822792],[-2.315443,53.820838],[-2.317171,53.819319],[-2.317845,53.817057],[-2.316038,53.813547],[-2.314705,53.813805],[-2.313205,53.812465],[-2.311364,53.812925],[-2.309842,53.814426],[-2.309254,53.81708],[-2.308455,53.818158],[-2.305776,53.819608],[-2.301965,53.821079],[-2.302092,53.820225],[-2.303951,53.819513],[-2.302964,53.817906],[-2.303048,53.814513],[-2.302058,53.813543],[-2.29922,53.814105],[-2.298381,53.815036],[-2.296442,53.813811],[-2.297097,53.811944],[-2.297783,53.811609],[-2.29548,53.808771],[-2.290612,53.809306],[-2.285405,53.807716],[-2.282669,53.807364],[-2.279984,53.808186],[-2.279201,53.809146],[-2.279077,53.8104],[-2.27682,53.812591],[-2.275349,53.812762],[-2.273019,53.81413],[-2.269805,53.815004],[-2.268195,53.814062],[-2.268547,53.813188],[-2.266969,53.811844],[-2.266496,53.810054],[-2.265922,53.8098],[-2.262085,53.809633],[-2.260959,53.808496],[-2.26107,53.807767],[-2.250674,53.81161],[-2.235406,53.813791],[-2.233181,53.814628],[-2.230843,53.814638],[-2.228608,53.815023],[-2.226384,53.816076],[-2.224173,53.816391],[-2.22397,53.81785],[-2.217685,53.815516],[-2.212958,53.814032],[-2.210622,53.813668],[-2.210104,53.8142],[-2.206966,53.813301],[-2.207431,53.811437],[-2.204289,53.814693],[-2.197357,53.819609],[-2.195759,53.821535],[-2.194828,53.821972],[-2.195499,53.823618],[-2.19693,53.825196],[-2.195222,53.825068],[-2.192638,53.823326],[-2.18817,53.822561],[-2.181414,53.822212],[-2.179058,53.822868],[-2.176592,53.822647],[-2.172691,53.823032],[-2.167304,53.82247],[-2.162757,53.822757],[-2.159087,53.823319],[-2.154276,53.823153],[-2.15202,53.823707],[-2.150433,53.822981],[-2.14995,53.820733],[-2.148547,53.819768],[-2.144108,53.820013],[-2.142114,53.820447],[-2.135346,53.815958],[-2.13347,53.817359],[-2.128623,53.819796],[-2.112279,53.805708],[-2.102792,53.809305],[-2.096395,53.812478],[-2.092078,53.814092],[-2.084859,53.818554],[-2.061251,53.825635],[-2.046925,53.82951],[-2.045075,53.838896],[-2.046131,53.850141]]]},"properties":{"LAD22CD":"E07000122","LAD22NM":"Pendle","BNG_E":387637,"BNG_N":443368,"LONG":-2.18957,"LAT":53.88636,"GlobalID":"8c517e78-16d9-45b4-adbc-22ab6f8809ac"},"id":144}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.793997,53.751793],[-2.788429,53.753064],[-2.789836,53.756294],[-2.790732,53.7545],[-2.794158,53.752615],[-2.793997,53.751793]]],[[[-2.718234,53.753301],[-2.718892,53.754871],[-2.721172,53.756209],[-2.726634,53.757387],[-2.732644,53.757808],[-2.744511,53.757545],[-2.752424,53.757033],[-2.757309,53.756364],[-2.757036,53.755687],[-2.752466,53.75686],[-2.732037,53.757642],[-2.724289,53.756792],[-2.72153,53.755617],[-2.720027,53.75551],[-2.718234,53.753301]]],[[[-2.645231,53.893758],[-2.645542,53.894543],[-2.649232,53.894952],[-2.653246,53.895881],[-2.657235,53.896166],[-2.658056,53.894622],[-2.662373,53.895141],[-2.664262,53.894123],[-2.665671,53.894273],[-2.668179,53.892382],[-2.670328,53.891669],[-2.672208,53.892103],[-2.678643,53.891813],[-2.680928,53.892521],[-2.68294,53.891269],[-2.685989,53.890805],[-2.687148,53.889948],[-2.68756,53.888642],[-2.689343,53.888119],[-2.689372,53.885491],[-2.687774,53.884525],[-2.689192,53.883217],[-2.68724,53.88225],[-2.688334,53.880005],[-2.690752,53.87901],[-2.690578,53.87808],[-2.690826,53.874204],[-2.69288,53.874061],[-2.694362,53.87291],[-2.697279,53.872495],[-2.699921,53.871528],[-2.704196,53.870539],[-2.705108,53.869172],[-2.706081,53.869021],[-2.703931,53.866415],[-2.703261,53.864959],[-2.704476,53.863193],[-2.705813,53.862427],[-2.705725,53.861421],[-2.707299,53.86118],[-2.707775,53.859773],[-2.710939,53.857617],[-2.711923,53.856392],[-2.709817,53.853642],[-2.714006,53.853385],[-2.715029,53.8531],[-2.716735,53.851509],[-2.717753,53.8514],[-2.719185,53.850399],[-2.725868,53.849381],[-2.726026,53.849727],[-2.729014,53.85122],[-2.731389,53.851569],[-2.734256,53.850709],[-2.737787,53.850888],[-2.740365,53.850176],[-2.745837,53.851046],[-2.74666,53.849635],[-2.743498,53.846494],[-2.742594,53.844757],[-2.742013,53.844649],[-2.741726,53.842591],[-2.740349,53.841553],[-2.739698,53.840118],[-2.740094,53.839068],[-2.73829,53.833379],[-2.73793,53.830315],[-2.73599,53.825316],[-2.736158,53.823446],[-2.743047,53.822943],[-2.749426,53.82319],[-2.751676,53.823902],[-2.753566,53.823754],[-2.754849,53.824361],[-2.756342,53.825821],[-2.758363,53.82596],[-2.761409,53.827501],[-2.76711,53.834707],[-2.770689,53.84042],[-2.774305,53.839857],[-2.773591,53.839094],[-2.780313,53.836821],[-2.782205,53.835438],[-2.780972,53.834106],[-2.781775,53.833367],[-2.78388,53.833484],[-2.787033,53.832142],[-2.791042,53.833878],[-2.793383,53.836686],[-2.794185,53.834448],[-2.797697,53.833413],[-2.800135,53.833138],[-2.800975,53.831782],[-2.799608,53.829108],[-2.797141,53.828576],[-2.796391,53.827805],[-2.798497,53.826036],[-2.798468,53.82438],[-2.799911,53.824839],[-2.80205,53.824896],[-2.801981,53.82589],[-2.809141,53.824163],[-2.8119,53.823931],[-2.825994,53.819987],[-2.822095,53.818039],[-2.819653,53.815402],[-2.81526,53.808183],[-2.811521,53.807925],[-2.782866,53.789922],[-2.782072,53.790002],[-2.780501,53.787713],[-2.785067,53.784264],[-2.791146,53.780757],[-2.798194,53.771539],[-2.798664,53.77042],[-2.797933,53.767368],[-2.79912,53.765729],[-2.796698,53.764347],[-2.794985,53.762654],[-2.795306,53.762098],[-2.794086,53.760963],[-2.792419,53.76084],[-2.790845,53.758696],[-2.790691,53.75845],[-2.790202,53.756874],[-2.789105,53.756108],[-2.787891,53.753268],[-2.784458,53.753698],[-2.782921,53.754165],[-2.778136,53.754503],[-2.777713,53.75479],[-2.773897,53.755014],[-2.764288,53.7564],[-2.756746,53.757905],[-2.750132,53.758545],[-2.751141,53.757954],[-2.730357,53.758556],[-2.724814,53.757815],[-2.719278,53.756709],[-2.717819,53.755565],[-2.716382,53.751464],[-2.715074,53.749779],[-2.711167,53.74839],[-2.709385,53.748401],[-2.706499,53.750259],[-2.702453,53.75167],[-2.696706,53.752318],[-2.695543,53.752269],[-2.691602,53.750015],[-2.688609,53.749235],[-2.68551,53.749601],[-2.683664,53.750593],[-2.681395,53.752449],[-2.679457,53.753216],[-2.677814,53.753045],[-2.673626,53.750202],[-2.669101,53.748825],[-2.665349,53.748854],[-2.661993,53.750215],[-2.661294,53.750626],[-2.659415,53.753188],[-2.659191,53.756992],[-2.658412,53.758873],[-2.656569,53.760558],[-2.654622,53.761025],[-2.651836,53.761014],[-2.646639,53.759966],[-2.645293,53.76012],[-2.643851,53.761237],[-2.64401,53.764571],[-2.643433,53.76555],[-2.641797,53.765881],[-2.635431,53.765717],[-2.630611,53.766653],[-2.626557,53.767828],[-2.622219,53.770757],[-2.621422,53.772644],[-2.62252,53.774372],[-2.627531,53.777354],[-2.633867,53.779508],[-2.634995,53.780159],[-2.63465,53.781846],[-2.633465,53.782528],[-2.630311,53.782734],[-2.62518,53.781726],[-2.618821,53.779373],[-2.611873,53.778575],[-2.608722,53.778534],[-2.60597,53.778974],[-2.601119,53.780626],[-2.599488,53.781471],[-2.599263,53.782221],[-2.601569,53.786889],[-2.601782,53.789683],[-2.59808,53.794721],[-2.596961,53.795653],[-2.595435,53.796202],[-2.597252,53.797339],[-2.598863,53.797424],[-2.602912,53.800637],[-2.608298,53.804216],[-2.61022,53.804658],[-2.612297,53.803895],[-2.612623,53.804913],[-2.61413,53.805886],[-2.615657,53.807888],[-2.616892,53.808888],[-2.620011,53.810382],[-2.622379,53.813802],[-2.624714,53.815565],[-2.619608,53.818186],[-2.61833,53.819177],[-2.615919,53.819949],[-2.615091,53.821173],[-2.615082,53.822571],[-2.613175,53.823609],[-2.611417,53.825298],[-2.610377,53.826994],[-2.610226,53.828749],[-2.610314,53.835007],[-2.607898,53.838772],[-2.620455,53.845545],[-2.62326,53.846719],[-2.620856,53.848887],[-2.619875,53.84873],[-2.617898,53.849335],[-2.616615,53.850643],[-2.616395,53.851732],[-2.617266,53.853063],[-2.619366,53.854711],[-2.620288,53.856422],[-2.623248,53.856396],[-2.624478,53.857263],[-2.627065,53.857735],[-2.628564,53.858645],[-2.62936,53.859987],[-2.628866,53.860788],[-2.629945,53.862282],[-2.628289,53.863479],[-2.627415,53.864913],[-2.625103,53.867017],[-2.626257,53.86784],[-2.625838,53.870106],[-2.627493,53.874396],[-2.625068,53.876138],[-2.626128,53.87794],[-2.625382,53.880297],[-2.629556,53.88181],[-2.635531,53.882794],[-2.636848,53.884515],[-2.636648,53.885539],[-2.634733,53.888406],[-2.635967,53.890285],[-2.637964,53.891073],[-2.644745,53.892771],[-2.645231,53.893758]]]]},"properties":{"LAD22CD":"E07000123","LAD22NM":"Preston","BNG_E":352825,"BNG_N":436432,"LONG":-2.71809,"LAT":53.82202,"GlobalID":"393bca51-a6cd-40ae-b26c-2a8c19b778fd"},"id":145}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.184523,53.952264],[-2.186169,53.95356],[-2.187768,53.954183],[-2.188155,53.955208],[-2.191286,53.958079],[-2.193616,53.9614],[-2.195589,53.966344],[-2.196019,53.969576],[-2.200636,53.970126],[-2.201667,53.967846],[-2.203173,53.967791],[-2.206657,53.966401],[-2.207039,53.965186],[-2.209639,53.962899],[-2.213112,53.963403],[-2.214421,53.965099],[-2.220612,53.963554],[-2.225736,53.961099],[-2.225989,53.962775],[-2.225301,53.964917],[-2.225948,53.967254],[-2.228674,53.967018],[-2.229738,53.967677],[-2.229169,53.968448],[-2.229731,53.969679],[-2.232016,53.97123],[-2.227697,53.974856],[-2.223478,53.97616],[-2.222694,53.977052],[-2.221063,53.977928],[-2.22406,53.978648],[-2.227105,53.978346],[-2.228194,53.979918],[-2.230345,53.98153],[-2.232684,53.980959],[-2.234578,53.981784],[-2.235538,53.981142],[-2.242423,53.980705],[-2.244411,53.981051],[-2.245869,53.979272],[-2.248212,53.978683],[-2.284505,53.97381],[-2.286152,53.974763],[-2.287063,53.974474],[-2.292093,53.974989],[-2.295247,53.975101],[-2.298856,53.976561],[-2.298521,53.977699],[-2.296765,53.97926],[-2.296733,53.980555],[-2.300079,53.981476],[-2.305319,53.98391],[-2.304476,53.984543],[-2.309464,53.987465],[-2.311551,53.988141],[-2.314251,53.988622],[-2.314848,53.989699],[-2.31736,53.99111],[-2.31836,53.992093],[-2.318829,53.993729],[-2.324603,53.994085],[-2.326935,53.993865],[-2.333668,53.990411],[-2.334024,53.990978],[-2.335969,53.991724],[-2.338321,53.991244],[-2.339923,53.989428],[-2.345423,53.992207],[-2.352358,53.994674],[-2.353572,54.003786],[-2.35231,54.010539],[-2.350289,54.0122],[-2.349221,54.011537],[-2.347979,54.00999],[-2.342813,54.00879],[-2.34076,54.007463],[-2.339381,54.008793],[-2.33956,54.009433],[-2.343222,54.016056],[-2.343541,54.017328],[-2.345651,54.018195],[-2.349392,54.0177],[-2.350151,54.018622],[-2.357323,54.019117],[-2.357527,54.020226],[-2.356542,54.021472],[-2.357795,54.022476],[-2.35792,54.023333],[-2.359278,54.023428],[-2.360351,54.024318],[-2.359514,54.026393],[-2.361728,54.02723],[-2.361311,54.027999],[-2.361934,54.029245],[-2.359258,54.03175],[-2.362658,54.034446],[-2.361848,54.037949],[-2.36418,54.040093],[-2.362,54.04067],[-2.374073,54.049089],[-2.384422,54.047613],[-2.387164,54.045219],[-2.38966,54.044246],[-2.391329,54.044137],[-2.394741,54.043317],[-2.397058,54.044217],[-2.400463,54.043493],[-2.403829,54.043477],[-2.405544,54.042566],[-2.414435,54.042034],[-2.418943,54.041373],[-2.422523,54.040572],[-2.425827,54.038095],[-2.432734,54.041593],[-2.440358,54.041841],[-2.442388,54.042271],[-2.445325,54.042158],[-2.450755,54.040657],[-2.456629,54.040173],[-2.458775,54.040496],[-2.464677,54.043202],[-2.46955,54.046212],[-2.486658,54.042555],[-2.491074,54.040739],[-2.492257,54.040074],[-2.49399,54.036545],[-2.492835,54.034144],[-2.49289,54.032137],[-2.495594,54.02893],[-2.49789,54.027393],[-2.497761,54.025819],[-2.499187,54.025064],[-2.498936,54.023999],[-2.497756,54.02203],[-2.502681,54.020399],[-2.504208,54.020543],[-2.512881,54.022367],[-2.518679,54.021245],[-2.521852,54.022494],[-2.52731,54.026245],[-2.531985,54.023849],[-2.538727,54.022652],[-2.544145,54.019691],[-2.545859,54.014874],[-2.547106,54.014077],[-2.549196,54.013673],[-2.556891,54.015459],[-2.564308,54.015264],[-2.566951,54.014827],[-2.568111,54.015049],[-2.572186,54.014623],[-2.574775,54.012939],[-2.579261,54.007581],[-2.579589,54.006478],[-2.578947,54.004785],[-2.580493,54.001483],[-2.580653,54.000118],[-2.57742,53.994416],[-2.577229,53.993005],[-2.574326,53.991728],[-2.571315,53.989406],[-2.570917,53.98782],[-2.572242,53.986817],[-2.573969,53.986155],[-2.573826,53.985174],[-2.57219,53.983556],[-2.569295,53.981821],[-2.565803,53.979018],[-2.561056,53.976129],[-2.557527,53.974912],[-2.566734,53.973467],[-2.574109,53.972996],[-2.577424,53.972011],[-2.578351,53.971246],[-2.579306,53.967482],[-2.581643,53.964769],[-2.588847,53.960216],[-2.593812,53.959373],[-2.602919,53.957087],[-2.606577,53.956706],[-2.611459,53.956862],[-2.613738,53.955763],[-2.615079,53.953377],[-2.616902,53.952212],[-2.620048,53.952749],[-2.623652,53.95496],[-2.630742,53.957806],[-2.637314,53.958488],[-2.643043,53.957588],[-2.644643,53.956898],[-2.646162,53.955298],[-2.650832,53.952255],[-2.649699,53.949907],[-2.648218,53.948922],[-2.641143,53.945053],[-2.633957,53.942552],[-2.631189,53.940621],[-2.626437,53.938564],[-2.627244,53.934755],[-2.629648,53.930735],[-2.622575,53.929715],[-2.619375,53.927214],[-2.617103,53.92436],[-2.614272,53.919547],[-2.618453,53.916966],[-2.618642,53.916414],[-2.614986,53.912512],[-2.613403,53.908256],[-2.616628,53.899804],[-2.625145,53.89464],[-2.628755,53.893848],[-2.629922,53.893247],[-2.633331,53.893048],[-2.635965,53.893592],[-2.637913,53.894587],[-2.641075,53.894722],[-2.642305,53.895056],[-2.643909,53.894612],[-2.645231,53.893758],[-2.644745,53.892771],[-2.637964,53.891073],[-2.635967,53.890285],[-2.634733,53.888406],[-2.636648,53.885539],[-2.636848,53.884515],[-2.635531,53.882794],[-2.629556,53.88181],[-2.625382,53.880297],[-2.626128,53.87794],[-2.625068,53.876138],[-2.627493,53.874396],[-2.625838,53.870106],[-2.626257,53.86784],[-2.625103,53.867017],[-2.627415,53.864913],[-2.628289,53.863479],[-2.629945,53.862282],[-2.628866,53.860788],[-2.62936,53.859987],[-2.628564,53.858645],[-2.627065,53.857735],[-2.624478,53.857263],[-2.623248,53.856396],[-2.620288,53.856422],[-2.619366,53.854711],[-2.617266,53.853063],[-2.616395,53.851732],[-2.616615,53.850643],[-2.617898,53.849335],[-2.619875,53.84873],[-2.620856,53.848887],[-2.62326,53.846719],[-2.620455,53.845545],[-2.607898,53.838772],[-2.610314,53.835007],[-2.610226,53.828749],[-2.610377,53.826994],[-2.611417,53.825298],[-2.613175,53.823609],[-2.615082,53.822571],[-2.615091,53.821173],[-2.615919,53.819949],[-2.61833,53.819177],[-2.619608,53.818186],[-2.624714,53.815565],[-2.622379,53.813802],[-2.620011,53.810382],[-2.616892,53.808888],[-2.615657,53.807888],[-2.61413,53.805886],[-2.612623,53.804913],[-2.612297,53.803895],[-2.61022,53.804658],[-2.608298,53.804216],[-2.602912,53.800637],[-2.598863,53.797424],[-2.597252,53.797339],[-2.595435,53.796202],[-2.596961,53.795653],[-2.59808,53.794721],[-2.601782,53.789683],[-2.601569,53.786889],[-2.599263,53.782221],[-2.599488,53.781471],[-2.598966,53.781082],[-2.596611,53.780958],[-2.594545,53.780464],[-2.592947,53.779017],[-2.589139,53.78069],[-2.588026,53.781755],[-2.585654,53.78224],[-2.582618,53.779986],[-2.580862,53.775544],[-2.577439,53.774958],[-2.574708,53.77509],[-2.566839,53.777207],[-2.562287,53.77681],[-2.555612,53.777404],[-2.547506,53.775871],[-2.547587,53.771322],[-2.546041,53.769305],[-2.548214,53.767719],[-2.552054,53.766708],[-2.559228,53.763609],[-2.564273,53.762012],[-2.563919,53.760941],[-2.564456,53.757899],[-2.561374,53.756319],[-2.560411,53.756218],[-2.557381,53.757348],[-2.554365,53.757755],[-2.552284,53.757499],[-2.551298,53.756388],[-2.549805,53.757165],[-2.549255,53.758082],[-2.545724,53.759428],[-2.54385,53.759248],[-2.539461,53.759947],[-2.536568,53.759562],[-2.53634,53.759086],[-2.532346,53.758687],[-2.531501,53.759597],[-2.528779,53.759476],[-2.525745,53.759666],[-2.52325,53.760408],[-2.520771,53.762203],[-2.51981,53.762357],[-2.518696,53.763915],[-2.515597,53.764715],[-2.514836,53.766204],[-2.511255,53.76673],[-2.509413,53.769216],[-2.507663,53.769599],[-2.504691,53.769717],[-2.50199,53.768898],[-2.498958,53.76862],[-2.494762,53.770158],[-2.491213,53.771051],[-2.486694,53.772794],[-2.484342,53.772795],[-2.480827,53.773992],[-2.480183,53.775957],[-2.478885,53.777666],[-2.477954,53.779943],[-2.477088,53.781048],[-2.473707,53.779899],[-2.469716,53.781791],[-2.467048,53.781483],[-2.465808,53.780813],[-2.462003,53.780887],[-2.459807,53.781365],[-2.455041,53.783402],[-2.44966,53.786837],[-2.447478,53.787479],[-2.447601,53.789027],[-2.44436,53.791008],[-2.440054,53.795233],[-2.43366,53.798474],[-2.423517,53.802837],[-2.412416,53.809837],[-2.407153,53.813317],[-2.401305,53.813923],[-2.399969,53.815823],[-2.398709,53.815787],[-2.396737,53.816619],[-2.393913,53.815171],[-2.393404,53.814326],[-2.395193,53.812228],[-2.398706,53.810522],[-2.399386,53.809848],[-2.398988,53.807853],[-2.397827,53.806082],[-2.398877,53.80358],[-2.39713,53.803017],[-2.393176,53.803278],[-2.389732,53.802446],[-2.383975,53.802469],[-2.381332,53.802885],[-2.378785,53.802371],[-2.37919,53.801156],[-2.374711,53.800647],[-2.371048,53.801596],[-2.369858,53.801503],[-2.368975,53.798953],[-2.369615,53.797168],[-2.371433,53.795488],[-2.369746,53.794128],[-2.36518,53.793105],[-2.363511,53.793505],[-2.362221,53.794605],[-2.359608,53.794336],[-2.359206,53.793378],[-2.356645,53.792922],[-2.357347,53.794813],[-2.358808,53.795282],[-2.358587,53.796247],[-2.359244,53.797064],[-2.356682,53.798458],[-2.347968,53.794354],[-2.344633,53.793282],[-2.343667,53.793384],[-2.342306,53.794827],[-2.340631,53.79517],[-2.338587,53.794988],[-2.336222,53.795447],[-2.336116,53.796572],[-2.334664,53.799036],[-2.33506,53.799724],[-2.334691,53.801067],[-2.332137,53.804123],[-2.329762,53.806639],[-2.328833,53.807045],[-2.325929,53.806512],[-2.325648,53.807779],[-2.323109,53.810105],[-2.320924,53.810695],[-2.319688,53.810635],[-2.318909,53.811726],[-2.315602,53.812646],[-2.315045,53.81169],[-2.313205,53.812465],[-2.314705,53.813805],[-2.316038,53.813547],[-2.317845,53.817057],[-2.317171,53.819319],[-2.315443,53.820838],[-2.316415,53.822792],[-2.314569,53.823156],[-2.317137,53.827854],[-2.314878,53.828552],[-2.308029,53.828931],[-2.305823,53.829594],[-2.307233,53.830477],[-2.305876,53.831304],[-2.302169,53.832287],[-2.301911,53.834067],[-2.302573,53.836395],[-2.308561,53.836291],[-2.308878,53.838419],[-2.313801,53.839008],[-2.318818,53.839207],[-2.319092,53.839472],[-2.322942,53.837984],[-2.327032,53.839402],[-2.328503,53.840745],[-2.330433,53.840711],[-2.331635,53.841535],[-2.331743,53.842526],[-2.329294,53.842047],[-2.325216,53.842202],[-2.327069,53.844192],[-2.326461,53.845106],[-2.317928,53.846922],[-2.318534,53.850047],[-2.320829,53.850836],[-2.325173,53.85112],[-2.322134,53.851884],[-2.316996,53.851941],[-2.314266,53.854311],[-2.316268,53.854746],[-2.317779,53.855587],[-2.317487,53.857161],[-2.319465,53.858295],[-2.320141,53.859906],[-2.318981,53.861644],[-2.317585,53.862206],[-2.314606,53.864274],[-2.312378,53.865157],[-2.307912,53.868951],[-2.305093,53.870674],[-2.297262,53.872089],[-2.295947,53.872684],[-2.285841,53.873972],[-2.277672,53.877812],[-2.273696,53.878978],[-2.272867,53.878612],[-2.270191,53.875845],[-2.265688,53.875818],[-2.263513,53.87668],[-2.258773,53.877863],[-2.258549,53.880272],[-2.259196,53.882034],[-2.255703,53.882511],[-2.2535,53.883135],[-2.252596,53.883959],[-2.248903,53.885587],[-2.24771,53.885528],[-2.241946,53.886821],[-2.238381,53.886839],[-2.23705,53.887306],[-2.234083,53.887283],[-2.231939,53.888576],[-2.228855,53.888896],[-2.22663,53.889512],[-2.224018,53.890876],[-2.222792,53.893189],[-2.223112,53.894044],[-2.222917,53.896384],[-2.224732,53.897463],[-2.226582,53.897871],[-2.226941,53.898696],[-2.229566,53.902137],[-2.234956,53.907962],[-2.237578,53.915413],[-2.240787,53.91926],[-2.243738,53.923948],[-2.24443,53.926502],[-2.244614,53.930777],[-2.245841,53.933263],[-2.240476,53.93572],[-2.239493,53.936577],[-2.238134,53.936693],[-2.2353,53.9377],[-2.234039,53.938532],[-2.229917,53.939311],[-2.228716,53.941041],[-2.225222,53.941808],[-2.226296,53.942839],[-2.225506,53.943632],[-2.222769,53.943195],[-2.218137,53.943509],[-2.217403,53.942414],[-2.215617,53.941524],[-2.214927,53.942162],[-2.209724,53.943407],[-2.206951,53.945039],[-2.204071,53.945837],[-2.202409,53.9467],[-2.190122,53.949821],[-2.187206,53.950837],[-2.184523,53.952264]]]},"properties":{"LAD22CD":"E07000124","LAD22NM":"Ribble Valley","BNG_E":372687,"BNG_N":447676,"LONG":-2.4174,"LAT":53.9245,"GlobalID":"fee64399-dbcf-4823-9081-916e5d7f233f"},"id":146}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.173294,53.723012],[-2.179502,53.727932],[-2.185441,53.730825],[-2.189001,53.731727],[-2.192172,53.731918],[-2.196636,53.732896],[-2.203297,53.732388],[-2.20468,53.733854],[-2.214264,53.737265],[-2.217843,53.738338],[-2.220203,53.738518],[-2.225523,53.738533],[-2.232654,53.737635],[-2.233404,53.739734],[-2.235021,53.742071],[-2.240341,53.747708],[-2.245274,53.750998],[-2.248974,53.752835],[-2.251692,53.755044],[-2.25392,53.753567],[-2.255876,53.75283],[-2.256054,53.752232],[-2.257901,53.750664],[-2.257453,53.749858],[-2.259344,53.749554],[-2.26175,53.748488],[-2.262714,53.748938],[-2.266797,53.748097],[-2.264242,53.747429],[-2.262822,53.746261],[-2.263292,53.745318],[-2.265649,53.744025],[-2.267448,53.742488],[-2.271324,53.742286],[-2.275222,53.743751],[-2.278291,53.743447],[-2.281631,53.745055],[-2.283731,53.744589],[-2.285267,53.743708],[-2.287191,53.744851],[-2.287519,53.746712],[-2.293305,53.749796],[-2.295272,53.75199],[-2.299171,53.750764],[-2.301479,53.748886],[-2.314109,53.747039],[-2.326148,53.747336],[-2.325601,53.743215],[-2.324484,53.742675],[-2.323807,53.737719],[-2.326258,53.737795],[-2.327697,53.735306],[-2.32593,53.73518],[-2.325772,53.734354],[-2.327379,53.734186],[-2.329563,53.732194],[-2.331142,53.73248],[-2.331801,53.731338],[-2.335793,53.730393],[-2.334555,53.729282],[-2.336708,53.728339],[-2.338166,53.729694],[-2.339506,53.727626],[-2.342818,53.725982],[-2.342253,53.724336],[-2.342768,53.723277],[-2.344185,53.72245],[-2.349877,53.722468],[-2.350131,53.721843],[-2.352913,53.722225],[-2.355284,53.72217],[-2.360801,53.716498],[-2.369731,53.714068],[-2.382899,53.711214],[-2.395755,53.709631],[-2.40459,53.706505],[-2.408348,53.705278],[-2.410989,53.705137],[-2.408607,53.70314],[-2.405507,53.698983],[-2.40301,53.696942],[-2.403135,53.696423],[-2.401343,53.695087],[-2.400287,53.692595],[-2.398348,53.69156],[-2.391206,53.688564],[-2.384795,53.688241],[-2.383155,53.68858],[-2.380893,53.688582],[-2.374424,53.687254],[-2.375707,53.681837],[-2.375935,53.675642],[-2.374059,53.671389],[-2.371236,53.667081],[-2.361607,53.665071],[-2.35557,53.664507],[-2.3554,53.659454],[-2.353339,53.658483],[-2.333402,53.655187],[-2.326562,53.655638],[-2.325328,53.655456],[-2.320407,53.65603],[-2.318442,53.655197],[-2.31556,53.655078],[-2.315582,53.655807],[-2.313967,53.65696],[-2.313466,53.658624],[-2.311892,53.659174],[-2.311774,53.659813],[-2.307736,53.660964],[-2.305988,53.662969],[-2.304011,53.663902],[-2.302982,53.665228],[-2.301136,53.666117],[-2.300105,53.667027],[-2.298959,53.66669],[-2.295692,53.664297],[-2.295901,53.662714],[-2.293825,53.657971],[-2.293864,53.656147],[-2.295358,53.655711],[-2.295598,53.653089],[-2.297189,53.65257],[-2.297618,53.651899],[-2.297594,53.648437],[-2.295738,53.641496],[-2.295041,53.64012],[-2.292318,53.638009],[-2.291305,53.636332],[-2.289994,53.635245],[-2.288786,53.633656],[-2.288899,53.632825],[-2.286675,53.631609],[-2.285835,53.630664],[-2.284867,53.628108],[-2.283512,53.626994],[-2.284496,53.625375],[-2.282458,53.623106],[-2.282854,53.620263],[-2.280727,53.620926],[-2.278289,53.620339],[-2.277745,53.618709],[-2.275808,53.61885],[-2.272551,53.618512],[-2.271787,53.614514],[-2.269044,53.616166],[-2.266856,53.615643],[-2.266477,53.614539],[-2.260579,53.616233],[-2.257917,53.616466],[-2.259119,53.618337],[-2.259235,53.619256],[-2.256769,53.620398],[-2.259955,53.620627],[-2.259629,53.621746],[-2.260205,53.622323],[-2.260463,53.624344],[-2.262998,53.625012],[-2.262509,53.626434],[-2.263828,53.630001],[-2.265448,53.639445],[-2.267667,53.640999],[-2.267209,53.642683],[-2.26959,53.644019],[-2.269063,53.645447],[-2.269866,53.646137],[-2.266973,53.648421],[-2.266645,53.649622],[-2.265623,53.650627],[-2.262908,53.651685],[-2.261442,53.654123],[-2.259587,53.655121],[-2.257296,53.655299],[-2.253514,53.656538],[-2.252725,53.657535],[-2.247504,53.661123],[-2.245879,53.663519],[-2.236575,53.667007],[-2.23308,53.668847],[-2.225824,53.670768],[-2.224813,53.669887],[-2.223638,53.669854],[-2.221628,53.668993],[-2.217729,53.668981],[-2.215997,53.667092],[-2.214842,53.665206],[-2.207162,53.660734],[-2.207899,53.659475],[-2.206878,53.657048],[-2.204456,53.656075],[-2.205229,53.654349],[-2.197738,53.652068],[-2.196563,53.650687],[-2.195418,53.650626],[-2.190345,53.649178],[-2.189584,53.648025],[-2.182407,53.648258],[-2.181074,53.645701],[-2.183527,53.645248],[-2.182674,53.644425],[-2.182706,53.642975],[-2.180468,53.64055],[-2.181834,53.64035],[-2.185396,53.638224],[-2.161835,53.641285],[-2.161136,53.642248],[-2.160599,53.648296],[-2.163701,53.652027],[-2.164168,53.653374],[-2.163939,53.654766],[-2.158917,53.660326],[-2.155029,53.664248],[-2.153453,53.668884],[-2.148602,53.674499],[-2.147952,53.678569],[-2.148138,53.68201],[-2.146328,53.682232],[-2.148177,53.68612],[-2.147272,53.688855],[-2.145255,53.692295],[-2.150447,53.694588],[-2.161107,53.697665],[-2.162583,53.699221],[-2.162047,53.704366],[-2.162532,53.707252],[-2.164056,53.709171],[-2.165757,53.710197],[-2.166832,53.713513],[-2.169276,53.715736],[-2.171998,53.717165],[-2.171131,53.71808],[-2.171342,53.718837],[-2.169735,53.719418],[-2.173294,53.723012]]]},"properties":{"LAD22CD":"E07000125","LAD22NM":"Rossendale","BNG_E":382827,"BNG_N":420955,"LONG":-2.26149,"LAT":53.68478,"GlobalID":"8c7e7614-1698-44da-923c-e741daf67b14"},"id":147}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.599488,53.781471],[-2.601119,53.780626],[-2.60597,53.778974],[-2.608722,53.778534],[-2.611873,53.778575],[-2.618821,53.779373],[-2.62518,53.781726],[-2.630311,53.782734],[-2.633465,53.782528],[-2.63465,53.781846],[-2.634995,53.780159],[-2.633867,53.779508],[-2.627531,53.777354],[-2.62252,53.774372],[-2.621422,53.772644],[-2.622219,53.770757],[-2.626557,53.767828],[-2.630611,53.766653],[-2.635431,53.765717],[-2.641797,53.765881],[-2.643433,53.76555],[-2.64401,53.764571],[-2.643851,53.761237],[-2.645293,53.76012],[-2.646639,53.759966],[-2.651836,53.761014],[-2.654622,53.761025],[-2.656569,53.760558],[-2.658412,53.758873],[-2.659191,53.756992],[-2.659415,53.753188],[-2.661294,53.750626],[-2.661993,53.750215],[-2.662941,53.749208],[-2.664938,53.748457],[-2.668276,53.748229],[-2.673207,53.749372],[-2.674942,53.750193],[-2.678158,53.75252],[-2.680732,53.751889],[-2.684914,53.748816],[-2.690343,53.748915],[-2.696268,53.751581],[-2.701163,53.751163],[-2.704339,53.750233],[-2.705833,53.74909],[-2.708536,53.747912],[-2.710676,53.747625],[-2.714669,53.748579],[-2.716788,53.749516],[-2.718234,53.753301],[-2.720027,53.75551],[-2.72153,53.755617],[-2.724289,53.756792],[-2.732037,53.757642],[-2.752466,53.75686],[-2.757036,53.755687],[-2.757309,53.756364],[-2.764127,53.754906],[-2.774391,53.753355],[-2.776088,53.753458],[-2.782583,53.752768],[-2.801955,53.748985],[-2.819834,53.744858],[-2.821758,53.743855],[-2.828602,53.742674],[-2.841573,53.739641],[-2.849066,53.737576],[-2.855388,53.735129],[-2.853735,53.733792],[-2.8492,53.731896],[-2.845938,53.730322],[-2.843593,53.730378],[-2.843018,53.729243],[-2.834678,53.723768],[-2.830308,53.719957],[-2.825296,53.714239],[-2.824396,53.707894],[-2.823463,53.703406],[-2.82438,53.701117],[-2.825948,53.700503],[-2.829506,53.70102],[-2.831463,53.700749],[-2.832978,53.69914],[-2.833303,53.696864],[-2.832529,53.69494],[-2.82972,53.693828],[-2.828829,53.690658],[-2.827833,53.689329],[-2.825664,53.687624],[-2.82433,53.68732],[-2.822163,53.687833],[-2.819682,53.687315],[-2.818764,53.687679],[-2.815926,53.687869],[-2.814625,53.687583],[-2.81262,53.687764],[-2.809102,53.687555],[-2.807318,53.686793],[-2.804109,53.688127],[-2.795874,53.687483],[-2.793681,53.688119],[-2.793906,53.689044],[-2.792415,53.689156],[-2.789908,53.690501],[-2.787461,53.691307],[-2.776493,53.690946],[-2.77026,53.691464],[-2.76565,53.692884],[-2.750817,53.692889],[-2.748218,53.692406],[-2.74604,53.692432],[-2.744109,53.687754],[-2.741501,53.688104],[-2.737554,53.68778],[-2.734452,53.687301],[-2.732731,53.686555],[-2.730039,53.686214],[-2.732292,53.684265],[-2.72912,53.683333],[-2.731059,53.681999],[-2.731624,53.679822],[-2.733265,53.677192],[-2.733833,53.674776],[-2.731799,53.67459],[-2.730275,53.673938],[-2.724588,53.673341],[-2.719698,53.673185],[-2.717294,53.672658],[-2.715504,53.671822],[-2.712467,53.67142],[-2.710582,53.676093],[-2.708061,53.676014],[-2.708455,53.678516],[-2.708485,53.681001],[-2.708061,53.681546],[-2.705831,53.680746],[-2.705072,53.681014],[-2.703063,53.680364],[-2.700274,53.680014],[-2.696698,53.680291],[-2.695518,53.679613],[-2.69228,53.679711],[-2.688535,53.679073],[-2.685019,53.679432],[-2.682532,53.679082],[-2.681408,53.679586],[-2.680132,53.67911],[-2.679196,53.679569],[-2.676338,53.679253],[-2.673641,53.679972],[-2.671088,53.679612],[-2.667852,53.68014],[-2.667227,53.681357],[-2.664962,53.681926],[-2.660827,53.680752],[-2.658823,53.680685],[-2.659072,53.682615],[-2.658335,53.686074],[-2.655941,53.688514],[-2.657234,53.68886],[-2.65794,53.690622],[-2.659417,53.691193],[-2.661751,53.691543],[-2.664079,53.691415],[-2.666382,53.691939],[-2.673586,53.692539],[-2.675845,53.693637],[-2.677593,53.693695],[-2.677526,53.700059],[-2.677308,53.703185],[-2.676564,53.705298],[-2.67359,53.709168],[-2.670341,53.711528],[-2.661949,53.715452],[-2.658449,53.717696],[-2.656723,53.717007],[-2.655886,53.715454],[-2.656394,53.71399],[-2.655495,53.712705],[-2.65445,53.712137],[-2.651521,53.712029],[-2.647718,53.714305],[-2.648346,53.715314],[-2.647669,53.715998],[-2.638116,53.718045],[-2.632723,53.718075],[-2.629755,53.717292],[-2.629696,53.718335],[-2.627884,53.720659],[-2.625497,53.722704],[-2.622905,53.723877],[-2.623918,53.725355],[-2.624297,53.729048],[-2.61851,53.732362],[-2.616931,53.732478],[-2.610748,53.737057],[-2.611855,53.738571],[-2.60823,53.738345],[-2.607082,53.739242],[-2.605898,53.738533],[-2.602484,53.739808],[-2.602476,53.740547],[-2.600033,53.74141],[-2.599228,53.742529],[-2.59421,53.743475],[-2.590208,53.742894],[-2.587454,53.743103],[-2.585678,53.744448],[-2.584268,53.745009],[-2.582346,53.746711],[-2.57986,53.747577],[-2.578687,53.748837],[-2.578258,53.750271],[-2.576807,53.751274],[-2.573183,53.751411],[-2.572951,53.751067],[-2.569137,53.749724],[-2.566997,53.74963],[-2.56392,53.748795],[-2.561602,53.746901],[-2.559166,53.747554],[-2.558136,53.749085],[-2.556252,53.749046],[-2.55265,53.751216],[-2.552825,53.752113],[-2.552009,53.753015],[-2.552162,53.755175],[-2.551298,53.756388],[-2.552284,53.757499],[-2.554365,53.757755],[-2.557381,53.757348],[-2.560411,53.756218],[-2.561374,53.756319],[-2.564456,53.757899],[-2.563919,53.760941],[-2.564273,53.762012],[-2.559228,53.763609],[-2.552054,53.766708],[-2.548214,53.767719],[-2.546041,53.769305],[-2.547587,53.771322],[-2.547506,53.775871],[-2.555612,53.777404],[-2.562287,53.77681],[-2.566839,53.777207],[-2.574708,53.77509],[-2.577439,53.774958],[-2.580862,53.775544],[-2.582618,53.779986],[-2.585654,53.78224],[-2.588026,53.781755],[-2.589139,53.78069],[-2.592947,53.779017],[-2.594545,53.780464],[-2.596611,53.780958],[-2.598966,53.781082],[-2.599488,53.781471]]]},"properties":{"LAD22CD":"E07000126","LAD22NM":"South Ribble","BNG_E":352017,"BNG_N":425840,"LONG":-2.72871,"LAT":53.72675,"GlobalID":"2c29af64-6049-4e9c-8d41-6ddcc42518c7"},"id":148}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.904736,53.727071],[-2.905937,53.726046],[-2.905429,53.72436],[-2.903904,53.72391],[-2.902923,53.722582],[-2.899045,53.721496],[-2.89692,53.722792],[-2.897522,53.723416],[-2.896857,53.724284],[-2.897531,53.724961],[-2.900537,53.725446],[-2.901745,53.72627],[-2.903342,53.72636],[-2.904736,53.727071]]],[[[-2.905083,53.727204],[-2.907159,53.727872],[-2.908055,53.72832],[-2.91288,53.727023],[-2.912096,53.726021],[-2.912024,53.72479],[-2.906693,53.723505],[-2.906249,53.721867],[-2.904794,53.720834],[-2.902732,53.72017],[-2.899024,53.720195],[-2.898728,53.721116],[-2.902974,53.722536],[-2.903592,53.723378],[-2.905326,53.724134],[-2.906211,53.726021],[-2.905083,53.727204]]],[[[-2.903948,53.727765],[-2.904731,53.72907],[-2.907519,53.728438],[-2.907236,53.727998],[-2.904773,53.727254],[-2.903948,53.727765]]],[[[-2.895019,53.729792],[-2.897593,53.729719],[-2.903166,53.729155],[-2.903629,53.726893],[-2.901418,53.72636],[-2.90048,53.726944],[-2.896118,53.728424],[-2.895019,53.729792]]],[[[-2.887189,53.729203],[-2.887986,53.728253],[-2.887622,53.727086],[-2.886545,53.726842],[-2.886419,53.729329],[-2.887189,53.729203]]],[[[-2.889486,53.730694],[-2.894557,53.730099],[-2.894727,53.729127],[-2.895838,53.727781],[-2.897851,53.727511],[-2.90028,53.726674],[-2.89988,53.725698],[-2.897048,53.725391],[-2.895918,53.724764],[-2.89497,53.725108],[-2.89361,53.725755],[-2.893646,53.72549],[-2.891332,53.725626],[-2.891222,53.727024],[-2.890763,53.728513],[-2.890176,53.729977],[-2.889486,53.730694]]],[[[-2.88769,53.729827],[-2.888768,53.730724],[-2.889926,53.729907],[-2.890532,53.728934],[-2.890525,53.72802],[-2.891073,53.727461],[-2.891204,53.725673],[-2.889046,53.725923],[-2.888157,53.726673],[-2.888406,53.728207],[-2.88769,53.729827]]],[[[-2.824229,53.680676],[-2.824064,53.682689],[-2.822996,53.684171],[-2.821372,53.684956],[-2.819034,53.684835],[-2.818979,53.68646],[-2.821974,53.687511],[-2.825357,53.687066],[-2.827937,53.688928],[-2.829375,53.690506],[-2.83021,53.693611],[-2.832262,53.694301],[-2.833168,53.695074],[-2.833906,53.697805],[-2.833036,53.700032],[-2.831146,53.701212],[-2.82784,53.701478],[-2.825504,53.700982],[-2.824342,53.702769],[-2.826532,53.713636],[-2.827747,53.715171],[-2.829952,53.717267],[-2.830898,53.718788],[-2.83464,53.722101],[-2.837813,53.724286],[-2.840314,53.725763],[-2.842502,53.726661],[-2.845016,53.728286],[-2.847427,53.729405],[-2.853203,53.731592],[-2.856055,53.732522],[-2.859707,53.73344],[-2.864592,53.733968],[-2.868338,53.733368],[-2.869161,53.73276],[-2.870897,53.733093],[-2.874931,53.732698],[-2.875677,53.731955],[-2.878314,53.731968],[-2.880944,53.730982],[-2.883243,53.730612],[-2.886129,53.727832],[-2.885845,53.726921],[-2.891717,53.724948],[-2.891498,53.72559],[-2.894044,53.725411],[-2.896712,53.72419],[-2.896432,53.722885],[-2.897966,53.721624],[-2.898881,53.719928],[-2.898726,53.71579],[-2.896955,53.712396],[-2.900267,53.715891],[-2.900079,53.716738],[-2.901529,53.717808],[-2.90166,53.719374],[-2.903447,53.719669],[-2.906165,53.720994],[-2.907891,53.722946],[-2.909446,53.723556],[-2.912351,53.724127],[-2.913246,53.723499],[-2.914422,53.725661],[-2.915731,53.726258],[-2.919085,53.726088],[-2.923671,53.725464],[-2.92478,53.725609],[-2.928855,53.725173],[-2.929308,53.724059],[-2.926573,53.720979],[-2.924759,53.720503],[-2.923127,53.719644],[-2.920678,53.717501],[-2.921067,53.717265],[-2.925104,53.719966],[-2.927196,53.720696],[-2.930521,53.724436],[-2.93126,53.72492],[-2.93285,53.724535],[-2.933696,53.725427],[-2.936045,53.725404],[-2.938284,53.724919],[-2.939852,53.724175],[-2.939691,53.72341],[-2.941665,53.721895],[-2.943483,53.718497],[-2.946271,53.716106],[-2.945999,53.71512],[-2.94824,53.714055],[-2.946748,53.713042],[-2.948223,53.712626],[-2.948153,53.711544],[-2.946484,53.711103],[-2.946639,53.710234],[-2.943731,53.71028],[-2.942432,53.711126],[-2.942061,53.709111],[-2.940064,53.708258],[-2.939865,53.706976],[-2.937629,53.705192],[-2.943797,53.708144],[-2.947621,53.706388],[-2.951325,53.706022],[-2.954515,53.705089],[-2.954968,53.704029],[-2.954243,53.703478],[-2.950614,53.703421],[-2.953643,53.702381],[-2.950279,53.700309],[-2.951123,53.699768],[-2.952781,53.699782],[-2.956009,53.698516],[-2.956231,53.6975],[-2.955461,53.696726],[-2.955225,53.696489],[-2.954429,53.695691],[-2.954109,53.695369],[-2.950471,53.691718],[-2.950303,53.691549],[-2.949794,53.691037],[-2.949712,53.690955],[-2.946786,53.688018],[-2.949157,53.686866],[-2.952494,53.682279],[-2.952097,53.681513],[-2.947802,53.679236],[-2.945107,53.678566],[-2.94422,53.677763],[-2.943748,53.676303],[-2.943972,53.67297],[-2.947438,53.667349],[-2.944958,53.666163],[-2.941985,53.663152],[-2.940144,53.65861],[-2.941371,53.657871],[-2.942354,53.65629],[-2.948161,53.653758],[-2.949968,53.652335],[-2.958777,53.642517],[-2.957912,53.640799],[-2.962339,53.637322],[-2.966511,53.631865],[-2.981823,53.622205],[-2.992923,53.627283],[-2.993721,53.628271],[-2.997334,53.626886],[-3.000729,53.624976],[-3.000397,53.624259],[-3.001752,53.623492],[-3.001764,53.62249],[-3.005368,53.620433],[-3.006835,53.616976],[-3.011347,53.614916],[-3.011782,53.612952],[-3.014099,53.611277],[-3.020025,53.608962],[-3.020628,53.607144],[-3.021816,53.606247],[-3.024684,53.605269],[-3.026002,53.603858],[-3.028078,53.603082],[-3.030109,53.600744],[-3.030241,53.599459],[-3.032148,53.59853],[-3.032373,53.596943],[-3.031044,53.596317],[-3.031421,53.593305],[-3.03197,53.59296],[-3.032646,53.590791],[-3.032372,53.589299],[-3.033694,53.588067],[-3.035985,53.587222],[-3.035423,53.586795],[-3.033024,53.586591],[-3.033343,53.58512],[-3.031323,53.585502],[-3.029548,53.585322],[-3.029551,53.584681],[-3.020709,53.583675],[-3.021581,53.574016],[-3.022893,53.573632],[-3.02262,53.569598],[-3.032175,53.568997],[-3.039754,53.565703],[-3.040589,53.565002],[-3.040987,53.562472],[-3.039279,53.559186],[-3.040163,53.556155],[-3.0387,53.553155],[-3.038809,53.551905],[-3.040619,53.548829],[-3.045725,53.543445],[-3.044085,53.541682],[-3.044614,53.540844],[-3.042994,53.540382],[-3.042137,53.54136],[-3.040588,53.541733],[-3.038706,53.540117],[-3.039267,53.538718],[-3.038684,53.538299],[-3.036748,53.538546],[-3.035487,53.539123],[-3.034313,53.537979],[-3.031867,53.537259],[-3.031067,53.538238],[-3.029352,53.538986],[-3.028136,53.539007],[-3.027072,53.537993],[-3.025091,53.539006],[-3.023927,53.53793],[-3.019635,53.536499],[-3.018555,53.535474],[-3.0165,53.535765],[-3.015586,53.534832],[-3.014073,53.534614],[-3.01385,53.532401],[-3.012332,53.531881],[-3.010802,53.5325],[-3.009147,53.531708],[-3.009316,53.530553],[-3.008201,53.52941],[-3.004668,53.529231],[-3.001202,53.52828],[-3.000889,53.527357],[-2.99956,53.52658],[-2.996607,53.525918],[-2.994979,53.524981],[-2.99477,53.523985],[-2.992922,53.523974],[-2.991523,53.522992],[-2.990324,53.52278],[-2.989596,53.521647],[-2.988166,53.521386],[-2.985955,53.52159],[-2.983443,53.520724],[-2.982532,53.519546],[-2.980584,53.518793],[-2.977111,53.51644],[-2.975994,53.515291],[-2.972944,53.515446],[-2.968143,53.517907],[-2.964143,53.518606],[-2.96417,53.519661],[-2.962998,53.522903],[-2.963248,53.524837],[-2.966822,53.527393],[-2.970474,53.534153],[-2.972819,53.536145],[-2.972782,53.537124],[-2.974364,53.539632],[-2.976444,53.540658],[-2.978377,53.542885],[-2.97846,53.543996],[-2.977282,53.546222],[-2.975164,53.547251],[-2.972548,53.547961],[-2.970725,53.547729],[-2.970199,53.547091],[-2.965884,53.547901],[-2.963199,53.54637],[-2.959803,53.54559],[-2.957722,53.545628],[-2.955013,53.546075],[-2.950877,53.54429],[-2.947849,53.54434],[-2.945451,53.542829],[-2.944699,53.541241],[-2.941986,53.541015],[-2.941236,53.539899],[-2.938717,53.538523],[-2.936055,53.538417],[-2.935221,53.536047],[-2.933584,53.534437],[-2.933787,53.533415],[-2.931233,53.531247],[-2.926937,53.530011],[-2.925874,53.528791],[-2.925615,53.52691],[-2.92301,53.52522],[-2.921814,53.525467],[-2.919059,53.524379],[-2.915956,53.52401],[-2.914442,53.523303],[-2.912638,53.523566],[-2.908749,53.522373],[-2.907761,53.522439],[-2.906005,53.5217],[-2.901539,53.521637],[-2.899771,53.522069],[-2.898518,53.521584],[-2.896673,53.522002],[-2.895112,53.521355],[-2.891663,53.522151],[-2.889086,53.522211],[-2.886302,53.521079],[-2.881716,53.520544],[-2.881208,53.520002],[-2.884056,53.51956],[-2.88458,53.51915],[-2.887722,53.514559],[-2.892389,53.511146],[-2.88799,53.503832],[-2.886223,53.503754],[-2.884234,53.503096],[-2.881501,53.502751],[-2.873333,53.500039],[-2.872026,53.496232],[-2.869683,53.493981],[-2.866423,53.492544],[-2.861478,53.491079],[-2.859179,53.492114],[-2.850462,53.49326],[-2.849837,53.493139],[-2.843938,53.490211],[-2.844448,53.489019],[-2.843397,53.487892],[-2.844421,53.48413],[-2.825575,53.482782],[-2.824965,53.485209],[-2.82404,53.489592],[-2.820387,53.494381],[-2.819916,53.496527],[-2.82259,53.50512],[-2.821508,53.505107],[-2.81674,53.512174],[-2.815675,53.512855],[-2.810451,53.513856],[-2.810821,53.514448],[-2.810476,53.516203],[-2.808881,53.517258],[-2.805613,53.518531],[-2.800543,53.519385],[-2.794592,53.521302],[-2.793594,53.522158],[-2.791574,53.525442],[-2.788704,53.527011],[-2.782477,53.53143],[-2.774843,53.52402],[-2.772521,53.520042],[-2.770895,53.518209],[-2.769902,53.515768],[-2.770015,53.514121],[-2.768873,53.513571],[-2.759832,53.512537],[-2.758701,53.514081],[-2.756016,53.514622],[-2.752829,53.516036],[-2.748293,53.516071],[-2.746985,53.516712],[-2.741036,53.518459],[-2.735924,53.519656],[-2.7314,53.519708],[-2.730525,53.520598],[-2.726233,53.523791],[-2.724877,53.524406],[-2.720944,53.525061],[-2.717926,53.527211],[-2.718089,53.528759],[-2.717187,53.529655],[-2.716297,53.533784],[-2.717002,53.534242],[-2.716576,53.535262],[-2.716382,53.537888],[-2.714559,53.53828],[-2.715901,53.539394],[-2.718608,53.54356],[-2.717915,53.544619],[-2.716105,53.545588],[-2.712568,53.548837],[-2.710872,53.54969],[-2.710146,53.550773],[-2.710263,53.553066],[-2.709186,53.554284],[-2.707778,53.55465],[-2.70708,53.557173],[-2.704819,53.559192],[-2.705319,53.561197],[-2.704214,53.56265],[-2.705208,53.563485],[-2.707934,53.564211],[-2.70952,53.564032],[-2.71127,53.564768],[-2.711044,53.565698],[-2.712594,53.56749],[-2.712391,53.568326],[-2.714307,53.568766],[-2.715659,53.570243],[-2.715773,53.571058],[-2.71766,53.572559],[-2.715606,53.575077],[-2.717679,53.576023],[-2.717764,53.577007],[-2.714802,53.578353],[-2.714497,53.578997],[-2.714944,53.580656],[-2.714375,53.581678],[-2.711645,53.582825],[-2.710407,53.585046],[-2.7082,53.585896],[-2.70748,53.586694],[-2.705995,53.586665],[-2.702761,53.587246],[-2.702813,53.58983],[-2.700064,53.591214],[-2.698182,53.591333],[-2.696762,53.590267],[-2.694226,53.589382],[-2.69337,53.589414],[-2.693659,53.591822],[-2.692587,53.596146],[-2.689914,53.603813],[-2.689313,53.604303],[-2.690981,53.604684],[-2.693354,53.604761],[-2.695882,53.604502],[-2.696039,53.606239],[-2.697224,53.607434],[-2.698588,53.613249],[-2.698477,53.614314],[-2.693409,53.6168],[-2.692202,53.617229],[-2.692578,53.618246],[-2.690948,53.620309],[-2.692303,53.621811],[-2.691819,53.622286],[-2.692215,53.624113],[-2.691907,53.624897],[-2.694568,53.626645],[-2.696286,53.626313],[-2.696158,53.624829],[-2.695318,53.623991],[-2.696929,53.622942],[-2.700815,53.62275],[-2.703731,53.621373],[-2.704885,53.619935],[-2.704864,53.618761],[-2.70969,53.617809],[-2.712809,53.618413],[-2.721393,53.618718],[-2.724419,53.620088],[-2.728285,53.621128],[-2.734278,53.622476],[-2.736168,53.623685],[-2.743278,53.622068],[-2.749209,53.618231],[-2.756286,53.615969],[-2.758736,53.614652],[-2.760678,53.61543],[-2.760952,53.616514],[-2.764093,53.617753],[-2.7662,53.619155],[-2.768829,53.619495],[-2.773853,53.619753],[-2.774175,53.620226],[-2.777146,53.62027],[-2.778859,53.619576],[-2.780595,53.62068],[-2.781002,53.623471],[-2.792977,53.623082],[-2.79324,53.62296],[-2.788628,53.619117],[-2.788285,53.617143],[-2.790785,53.614547],[-2.793463,53.615007],[-2.795953,53.615962],[-2.797621,53.6172],[-2.798233,53.618232],[-2.797159,53.619141],[-2.7989,53.619837],[-2.798154,53.621089],[-2.799212,53.621421],[-2.800808,53.622754],[-2.80106,53.625021],[-2.801928,53.625315],[-2.802875,53.626639],[-2.806147,53.628006],[-2.807699,53.628183],[-2.80813,53.629667],[-2.808159,53.630705],[-2.80706,53.631278],[-2.806249,53.632201],[-2.806019,53.632787],[-2.807529,53.638219],[-2.80742,53.638457],[-2.807366,53.63856],[-2.806477,53.640411],[-2.806547,53.641608],[-2.80873,53.641858],[-2.809818,53.642365],[-2.809498,53.643702],[-2.81029,53.645271],[-2.81231,53.645684],[-2.8117,53.646916],[-2.814407,53.648447],[-2.814632,53.651283],[-2.812112,53.653186],[-2.81481,53.653656],[-2.816467,53.654305],[-2.816521,53.655793],[-2.814562,53.656065],[-2.81305,53.655484],[-2.812353,53.656385],[-2.814744,53.658108],[-2.81485,53.661082],[-2.817948,53.661428],[-2.821431,53.662549],[-2.819758,53.665693],[-2.821171,53.667008],[-2.823336,53.668179],[-2.822611,53.66888],[-2.817681,53.670715],[-2.816475,53.672756],[-2.816986,53.674577],[-2.818826,53.676639],[-2.818678,53.67882],[-2.82069,53.679919],[-2.823569,53.67985],[-2.824219,53.680663],[-2.824229,53.680676]]]]},"properties":{"LAD22CD":"E07000127","LAD22NM":"West Lancashire","BNG_E":342611,"BNG_N":413270,"LONG":-2.86893,"LAT":53.61283,"GlobalID":"c0402af1-7ec0-45d7-86b1-7d59c70c1f55"},"id":149}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.942211,53.851182],[-2.93949,53.852142],[-2.938073,53.853088],[-2.937735,53.854471],[-2.940144,53.853926],[-2.943729,53.852167],[-2.944031,53.85147],[-2.942211,53.851182]]],[[[-2.979398,53.859127],[-2.978532,53.861796],[-2.976262,53.862335],[-2.977474,53.864141],[-2.977573,53.865632],[-2.979158,53.867946],[-2.979095,53.870487],[-2.978,53.871476],[-2.972886,53.871658],[-2.970526,53.872583],[-2.969005,53.873501],[-2.969322,53.875273],[-2.970894,53.8768],[-2.976534,53.880147],[-2.979149,53.880747],[-2.981152,53.881683],[-2.984489,53.882713],[-2.988013,53.883397],[-2.992075,53.885087],[-2.992686,53.885057],[-3.000393,53.890811],[-3.000389,53.892238],[-3.001176,53.893308],[-3.00282,53.894403],[-3.004839,53.897415],[-3.005695,53.902003],[-3.006136,53.912402],[-3.005672,53.91784],[-3.007531,53.918838],[-3.009224,53.918405],[-3.012606,53.919797],[-3.008223,53.920567],[-3.005677,53.92146],[-3.004022,53.923944],[-3.004892,53.926388],[-3.0059,53.927814],[-3.008089,53.928817],[-3.009306,53.929022],[-3.014091,53.928741],[-3.018393,53.927134],[-3.023413,53.926265],[-3.025936,53.926032],[-3.028473,53.926561],[-3.031524,53.926562],[-3.033809,53.925607],[-3.038962,53.924412],[-3.042375,53.923983],[-3.044804,53.923223],[-3.048623,53.921154],[-3.050782,53.918064],[-3.050939,53.916156],[-3.050636,53.908361],[-3.049498,53.903273],[-3.049726,53.902117],[-3.04818,53.897747],[-3.047942,53.893951],[-3.047233,53.891671],[-3.046844,53.887336],[-3.046966,53.884879],[-3.047588,53.884397],[-3.048011,53.882474],[-3.047761,53.875583],[-3.036847,53.875079],[-3.031322,53.87472],[-3.027143,53.870166],[-3.026897,53.869241],[-3.019752,53.868598],[-3.021422,53.865505],[-3.022773,53.864322],[-3.02262,53.86172],[-3.021725,53.860449],[-3.020057,53.859331],[-3.014312,53.850567],[-3.015225,53.84902],[-3.018017,53.848271],[-3.017375,53.847622],[-3.01863,53.847026],[-3.017814,53.845201],[-3.015238,53.842771],[-3.020465,53.840769],[-3.019999,53.839009],[-3.01936,53.838942],[-3.019111,53.83709],[-3.016489,53.837516],[-3.017357,53.839323],[-3.017335,53.840383],[-3.015556,53.840711],[-3.013278,53.839026],[-3.012607,53.83778],[-3.010191,53.836473],[-3.009849,53.835046],[-3.00764,53.834042],[-3.007202,53.832901],[-3.008807,53.830378],[-3.010832,53.830524],[-3.012114,53.829511],[-3.013774,53.829206],[-3.010044,53.826443],[-3.010653,53.826194],[-3.009112,53.825355],[-3.007179,53.826988],[-3.004955,53.827288],[-3.002331,53.828723],[-2.993001,53.829495],[-2.991976,53.830678],[-2.987194,53.830205],[-2.986042,53.828439],[-2.970322,53.829202],[-2.966647,53.82689],[-2.963461,53.827599],[-2.961778,53.828347],[-2.965074,53.829891],[-2.96732,53.832541],[-2.968602,53.834827],[-2.969271,53.838723],[-2.970782,53.840459],[-2.967908,53.842191],[-2.965586,53.844645],[-2.965604,53.847342],[-2.967848,53.848854],[-2.971972,53.849937],[-2.972191,53.850971],[-2.974044,53.852205],[-2.977867,53.85285],[-2.979501,53.854483],[-2.979656,53.85525],[-2.978047,53.858107],[-2.980946,53.857498],[-2.981761,53.858269],[-2.981819,53.858324],[-2.981762,53.858433],[-2.981609,53.858719],[-2.980582,53.859071],[-2.980262,53.859043],[-2.979398,53.859127]]],[[[-2.898374,53.940026],[-2.899073,53.941001],[-2.900238,53.940782],[-2.899679,53.939636],[-2.898374,53.940026]]],[[[-2.906233,53.944402],[-2.906322,53.94549],[-2.908507,53.94515],[-2.908878,53.9442],[-2.906233,53.944402]]],[[[-2.885249,53.94609],[-2.887564,53.945144],[-2.88869,53.944135],[-2.8862,53.943325],[-2.885226,53.944137],[-2.883445,53.944654],[-2.883511,53.9462],[-2.885249,53.94609]]],[[[-2.880067,53.944015],[-2.878737,53.944285],[-2.87965,53.945461],[-2.880739,53.94529],[-2.88247,53.946266],[-2.882323,53.945638],[-2.880719,53.94501],[-2.880067,53.944015]]],[[[-2.889391,53.947761],[-2.888816,53.946331],[-2.887219,53.946273],[-2.889391,53.947761]]],[[[-2.648218,53.948922],[-2.655268,53.949315],[-2.662671,53.947394],[-2.664154,53.947267],[-2.673648,53.950221],[-2.679875,53.95026],[-2.684579,53.949397],[-2.687917,53.949702],[-2.688854,53.949178],[-2.696832,53.947345],[-2.699003,53.94709],[-2.70033,53.946047],[-2.702049,53.943556],[-2.702643,53.944881],[-2.701587,53.946354],[-2.700551,53.949173],[-2.703373,53.95352],[-2.706501,53.955898],[-2.706374,53.958329],[-2.709333,53.960432],[-2.710514,53.963631],[-2.711829,53.965759],[-2.710404,53.969709],[-2.71104,53.973212],[-2.712503,53.976142],[-2.714859,53.978565],[-2.715656,53.980244],[-2.719799,53.979443],[-2.720206,53.978488],[-2.722546,53.977251],[-2.72418,53.978605],[-2.727451,53.978513],[-2.728988,53.977819],[-2.730851,53.975653],[-2.735237,53.974526],[-2.733955,53.973118],[-2.736443,53.968037],[-2.73577,53.967411],[-2.733904,53.967563],[-2.733103,53.967148],[-2.734404,53.965494],[-2.736019,53.964454],[-2.736209,53.963742],[-2.739985,53.962433],[-2.739437,53.960116],[-2.741603,53.958615],[-2.741828,53.957014],[-2.742435,53.95618],[-2.755697,53.952699],[-2.750778,53.956617],[-2.753542,53.957846],[-2.756019,53.958292],[-2.757382,53.959219],[-2.756453,53.960432],[-2.75754,53.961333],[-2.757868,53.963109],[-2.759856,53.963523],[-2.760698,53.964498],[-2.766037,53.965213],[-2.768863,53.965065],[-2.770092,53.964637],[-2.771007,53.963543],[-2.774484,53.963881],[-2.774988,53.96481],[-2.776195,53.964757],[-2.780535,53.966646],[-2.782109,53.967997],[-2.786721,53.967375],[-2.787934,53.967824],[-2.789771,53.969863],[-2.792918,53.97094],[-2.794286,53.971929],[-2.794893,53.974208],[-2.796383,53.975472],[-2.798619,53.975117],[-2.799951,53.974016],[-2.798897,53.972508],[-2.799782,53.971541],[-2.79935,53.970144],[-2.801889,53.969264],[-2.803722,53.967925],[-2.804279,53.965847],[-2.803106,53.964924],[-2.803428,53.963726],[-2.80468,53.962839],[-2.806149,53.963201],[-2.807379,53.96203],[-2.806263,53.959794],[-2.804305,53.958063],[-2.803103,53.957618],[-2.804474,53.956496],[-2.805559,53.953947],[-2.805337,53.952946],[-2.803139,53.952109],[-2.802931,53.951212],[-2.805125,53.950186],[-2.806458,53.948039],[-2.810836,53.947129],[-2.813645,53.945849],[-2.812556,53.944979],[-2.808392,53.943855],[-2.806989,53.944096],[-2.803917,53.943391],[-2.802321,53.942073],[-2.804705,53.940322],[-2.805372,53.939285],[-2.804744,53.937125],[-2.803688,53.935754],[-2.809664,53.933553],[-2.818711,53.934929],[-2.82592,53.933367],[-2.864367,53.91808],[-2.873712,53.928462],[-2.873273,53.931182],[-2.877887,53.932465],[-2.881932,53.934837],[-2.88403,53.935294],[-2.885245,53.936839],[-2.883316,53.938112],[-2.881948,53.937091],[-2.880237,53.937472],[-2.879279,53.938889],[-2.87808,53.939682],[-2.876612,53.939869],[-2.876048,53.940749],[-2.877139,53.94166],[-2.879181,53.941838],[-2.879675,53.943412],[-2.879828,53.943453],[-2.880137,53.943535],[-2.881128,53.943298],[-2.881044,53.943777],[-2.880173,53.944013],[-2.881321,53.944415],[-2.880874,53.944969],[-2.882241,53.945411],[-2.883955,53.944213],[-2.886153,53.943132],[-2.886036,53.942189],[-2.889416,53.941544],[-2.891602,53.942235],[-2.892896,53.940826],[-2.894465,53.941231],[-2.89681,53.941154],[-2.898711,53.939274],[-2.900448,53.939178],[-2.901,53.94031],[-2.904851,53.94014],[-2.905323,53.939048],[-2.906721,53.938574],[-2.906957,53.940749],[-2.908287,53.940527],[-2.910847,53.942505],[-2.912091,53.943997],[-2.915174,53.944097],[-2.919535,53.946038],[-2.914028,53.945494],[-2.911614,53.945801],[-2.910576,53.946404],[-2.912142,53.94701],[-2.916689,53.947397],[-2.91835,53.949281],[-2.920169,53.949906],[-2.923984,53.950074],[-2.927628,53.949397],[-2.937062,53.94658],[-2.953454,53.943105],[-2.968172,53.939604],[-2.98089,53.935876],[-2.984922,53.934209],[-2.994734,53.931711],[-2.996096,53.931107],[-2.996157,53.929398],[-2.997856,53.927509],[-2.997348,53.925088],[-2.997131,53.922527],[-2.997319,53.916714],[-2.993805,53.912868],[-2.994366,53.910893],[-2.99539,53.910676],[-2.996702,53.909605],[-2.996665,53.90874],[-2.995549,53.907872],[-2.992484,53.907518],[-2.991791,53.906182],[-2.993462,53.905306],[-2.995113,53.905771],[-2.994822,53.902131],[-2.992602,53.89822],[-2.992179,53.896601],[-2.989666,53.894532],[-2.985217,53.889802],[-2.981066,53.887065],[-2.971579,53.881958],[-2.966579,53.877699],[-2.964842,53.875344],[-2.964428,53.872059],[-2.970555,53.867422],[-2.972361,53.865308],[-2.972336,53.864617],[-2.969885,53.863658],[-2.964585,53.863635],[-2.958845,53.862666],[-2.955693,53.861244],[-2.954154,53.859997],[-2.951166,53.855507],[-2.949173,53.853894],[-2.944929,53.852307],[-2.941268,53.854559],[-2.937774,53.855114],[-2.937216,53.857218],[-2.936632,53.857705],[-2.929366,53.857635],[-2.926518,53.856718],[-2.924933,53.856601],[-2.914848,53.859708],[-2.913747,53.86029],[-2.912281,53.863701],[-2.909599,53.864905],[-2.904104,53.86509],[-2.901219,53.864593],[-2.898565,53.862885],[-2.897685,53.861628],[-2.89735,53.861327],[-2.896183,53.860743],[-2.89224,53.863203],[-2.890611,53.863039],[-2.889226,53.862991],[-2.886565,53.863495],[-2.883904,53.863004],[-2.879293,53.860649],[-2.879075,53.860681],[-2.878253,53.860696],[-2.877016,53.859001],[-2.875561,53.857933],[-2.875827,53.85705],[-2.88427,53.855693],[-2.888017,53.854245],[-2.890122,53.852187],[-2.8874,53.850813],[-2.888092,53.849161],[-2.890693,53.847668],[-2.890146,53.846039],[-2.883745,53.84391],[-2.878837,53.843332],[-2.871616,53.843152],[-2.867776,53.845549],[-2.864094,53.844214],[-2.861106,53.843761],[-2.857587,53.842607],[-2.858514,53.83861],[-2.861091,53.836599],[-2.864083,53.835691],[-2.868624,53.833777],[-2.8703,53.832407],[-2.870124,53.831371],[-2.868689,53.830638],[-2.864926,53.829631],[-2.862226,53.829389],[-2.857492,53.83083],[-2.854454,53.83123],[-2.849397,53.831596],[-2.84087,53.831278],[-2.838674,53.829365],[-2.836104,53.825261],[-2.825994,53.819987],[-2.8119,53.823931],[-2.809141,53.824163],[-2.801981,53.82589],[-2.80205,53.824896],[-2.799911,53.824839],[-2.798468,53.82438],[-2.798497,53.826036],[-2.796391,53.827805],[-2.797141,53.828576],[-2.799608,53.829108],[-2.800975,53.831782],[-2.800135,53.833138],[-2.797697,53.833413],[-2.794185,53.834448],[-2.793383,53.836686],[-2.791042,53.833878],[-2.787033,53.832142],[-2.78388,53.833484],[-2.781775,53.833367],[-2.780972,53.834106],[-2.782205,53.835438],[-2.780313,53.836821],[-2.773591,53.839094],[-2.774305,53.839857],[-2.770689,53.84042],[-2.76711,53.834707],[-2.761409,53.827501],[-2.758363,53.82596],[-2.756342,53.825821],[-2.754849,53.824361],[-2.753566,53.823754],[-2.751676,53.823902],[-2.749426,53.82319],[-2.743047,53.822943],[-2.736158,53.823446],[-2.73599,53.825316],[-2.73793,53.830315],[-2.73829,53.833379],[-2.740094,53.839068],[-2.739698,53.840118],[-2.740349,53.841553],[-2.741726,53.842591],[-2.742013,53.844649],[-2.742594,53.844757],[-2.743498,53.846494],[-2.74666,53.849635],[-2.745837,53.851046],[-2.740365,53.850176],[-2.737787,53.850888],[-2.734256,53.850709],[-2.731389,53.851569],[-2.729014,53.85122],[-2.726026,53.849727],[-2.725868,53.849381],[-2.719185,53.850399],[-2.717753,53.8514],[-2.716735,53.851509],[-2.715029,53.8531],[-2.714006,53.853385],[-2.709817,53.853642],[-2.711923,53.856392],[-2.710939,53.857617],[-2.707775,53.859773],[-2.707299,53.86118],[-2.705725,53.861421],[-2.705813,53.862427],[-2.704476,53.863193],[-2.703261,53.864959],[-2.703931,53.866415],[-2.706081,53.869021],[-2.705108,53.869172],[-2.704196,53.870539],[-2.699921,53.871528],[-2.697279,53.872495],[-2.694362,53.87291],[-2.69288,53.874061],[-2.690826,53.874204],[-2.690578,53.87808],[-2.690752,53.87901],[-2.688334,53.880005],[-2.68724,53.88225],[-2.689192,53.883217],[-2.687774,53.884525],[-2.689372,53.885491],[-2.689343,53.888119],[-2.68756,53.888642],[-2.687148,53.889948],[-2.685989,53.890805],[-2.68294,53.891269],[-2.680928,53.892521],[-2.678643,53.891813],[-2.672208,53.892103],[-2.670328,53.891669],[-2.668179,53.892382],[-2.665671,53.894273],[-2.664262,53.894123],[-2.662373,53.895141],[-2.658056,53.894622],[-2.657235,53.896166],[-2.653246,53.895881],[-2.649232,53.894952],[-2.645542,53.894543],[-2.645231,53.893758],[-2.643909,53.894612],[-2.642305,53.895056],[-2.641075,53.894722],[-2.637913,53.894587],[-2.635965,53.893592],[-2.633331,53.893048],[-2.629922,53.893247],[-2.628755,53.893848],[-2.625145,53.89464],[-2.616628,53.899804],[-2.613403,53.908256],[-2.614986,53.912512],[-2.618642,53.916414],[-2.618453,53.916966],[-2.614272,53.919547],[-2.617103,53.92436],[-2.619375,53.927214],[-2.622575,53.929715],[-2.629648,53.930735],[-2.627244,53.934755],[-2.626437,53.938564],[-2.631189,53.940621],[-2.633957,53.942552],[-2.641143,53.945053],[-2.648218,53.948922]]]]},"properties":{"LAD22CD":"E07000128","LAD22NM":"Wyre","BNG_E":347295,"BNG_N":445159,"LONG":-2.80359,"LAT":53.89991,"GlobalID":"0f6e5cc6-fabd-4ca3-afef-10bed56ff1d3"},"id":150}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.199682,52.664402],[-1.202594,52.663949],[-1.203097,52.661917],[-1.208289,52.65981],[-1.209623,52.658538],[-1.210539,52.655215],[-1.214243,52.653872],[-1.214106,52.653339],[-1.215948,52.652015],[-1.218328,52.651161],[-1.220684,52.651095],[-1.225242,52.650237],[-1.225649,52.65052],[-1.228627,52.649066],[-1.227046,52.648573],[-1.224266,52.646252],[-1.223145,52.646262],[-1.225081,52.64408],[-1.229254,52.642444],[-1.232373,52.641626],[-1.233434,52.640453],[-1.23645,52.641739],[-1.238689,52.641295],[-1.243057,52.641493],[-1.243961,52.640678],[-1.247368,52.639794],[-1.248593,52.64022],[-1.251233,52.63896],[-1.254629,52.638604],[-1.256873,52.63789],[-1.257494,52.638185],[-1.259306,52.637194],[-1.261802,52.637066],[-1.261372,52.636265],[-1.259203,52.636876],[-1.257269,52.635829],[-1.255968,52.635537],[-1.256112,52.634352],[-1.253726,52.635099],[-1.253437,52.636263],[-1.251542,52.636514],[-1.250674,52.636128],[-1.248461,52.636536],[-1.247153,52.636108],[-1.244077,52.635886],[-1.240758,52.633617],[-1.246401,52.632408],[-1.248354,52.632507],[-1.249395,52.631562],[-1.251391,52.631669],[-1.252475,52.630239],[-1.254326,52.630234],[-1.260468,52.62888],[-1.261723,52.628337],[-1.262811,52.626971],[-1.260509,52.625389],[-1.260001,52.623828],[-1.257787,52.62079],[-1.257413,52.616253],[-1.26504,52.614967],[-1.264621,52.614417],[-1.274479,52.61617],[-1.274385,52.61502],[-1.271775,52.614562],[-1.273358,52.611295],[-1.274131,52.612852],[-1.277286,52.611502],[-1.27426,52.609792],[-1.279836,52.607269],[-1.278027,52.604659],[-1.274698,52.602749],[-1.274584,52.600984],[-1.276973,52.599385],[-1.281544,52.597466],[-1.284896,52.595265],[-1.291247,52.592599],[-1.292053,52.591301],[-1.294116,52.589312],[-1.295902,52.588402],[-1.298342,52.585991],[-1.296307,52.585507],[-1.295314,52.583837],[-1.295627,52.582479],[-1.29709,52.58001],[-1.289358,52.578313],[-1.286425,52.578095],[-1.283988,52.576958],[-1.280711,52.576078],[-1.273529,52.57487],[-1.270618,52.574635],[-1.269466,52.573792],[-1.268894,52.572103],[-1.267599,52.571889],[-1.268112,52.570952],[-1.269361,52.570793],[-1.270205,52.568916],[-1.272579,52.568344],[-1.271796,52.567766],[-1.272916,52.565972],[-1.273602,52.565939],[-1.275251,52.56445],[-1.278157,52.564902],[-1.279697,52.56469],[-1.280411,52.56387],[-1.282274,52.563234],[-1.285569,52.563278],[-1.288913,52.56365],[-1.28933,52.564617],[-1.295466,52.563405],[-1.298094,52.563718],[-1.298388,52.562655],[-1.302023,52.561389],[-1.303646,52.561905],[-1.305643,52.561827],[-1.306746,52.562909],[-1.308325,52.562572],[-1.310138,52.5627],[-1.311831,52.562086],[-1.312923,52.563542],[-1.319754,52.565895],[-1.319143,52.567066],[-1.32371,52.567794],[-1.325825,52.56493],[-1.329271,52.565989],[-1.334887,52.560193],[-1.332519,52.559368],[-1.332462,52.558428],[-1.337286,52.556322],[-1.338991,52.554587],[-1.339113,52.552902],[-1.338054,52.551725],[-1.336566,52.548612],[-1.336251,52.547102],[-1.334552,52.543791],[-1.334952,52.542916],[-1.334378,52.541039],[-1.332603,52.538698],[-1.334847,52.533025],[-1.330701,52.531132],[-1.331658,52.529843],[-1.329592,52.529336],[-1.331221,52.52734],[-1.330327,52.527141],[-1.330406,52.524616],[-1.327635,52.523222],[-1.327238,52.521594],[-1.325703,52.521423],[-1.323789,52.52053],[-1.322426,52.519002],[-1.323556,52.516995],[-1.320793,52.51558],[-1.317966,52.515117],[-1.319127,52.513513],[-1.319057,52.511098],[-1.321332,52.507857],[-1.321891,52.505578],[-1.325088,52.501042],[-1.307827,52.49454],[-1.305948,52.493395],[-1.304366,52.493213],[-1.302102,52.495833],[-1.296995,52.499593],[-1.292846,52.503439],[-1.285611,52.509178],[-1.261173,52.530321],[-1.251673,52.53837],[-1.251348,52.539099],[-1.249916,52.539875],[-1.247969,52.542034],[-1.245959,52.543293],[-1.231841,52.555379],[-1.226661,52.55342],[-1.224127,52.551683],[-1.221138,52.550175],[-1.217632,52.548097],[-1.217729,52.547686],[-1.212976,52.544272],[-1.213791,52.543678],[-1.211772,52.542878],[-1.210748,52.541026],[-1.209029,52.539306],[-1.206599,52.53516],[-1.205446,52.535166],[-1.204421,52.531596],[-1.203249,52.530367],[-1.202133,52.52744],[-1.198549,52.528198],[-1.197075,52.527627],[-1.196195,52.528105],[-1.194079,52.527672],[-1.190199,52.527856],[-1.184275,52.527499],[-1.181735,52.529685],[-1.17506,52.527587],[-1.173013,52.532876],[-1.172114,52.533204],[-1.172,52.534401],[-1.142854,52.534972],[-1.143061,52.536519],[-1.143885,52.537546],[-1.140305,52.537924],[-1.139273,52.53987],[-1.139451,52.543172],[-1.123469,52.544593],[-1.121257,52.545187],[-1.117502,52.54321],[-1.113885,52.541885],[-1.109365,52.542072],[-1.106059,52.541842],[-1.104508,52.539813],[-1.102268,52.538359],[-1.097444,52.54241],[-1.09422,52.541921],[-1.093494,52.541439],[-1.090359,52.541228],[-1.083663,52.539914],[-1.075889,52.538866],[-1.075703,52.539737],[-1.072579,52.542502],[-1.069859,52.54288],[-1.069831,52.544148],[-1.066234,52.549181],[-1.064729,52.552353],[-1.061476,52.555424],[-1.060445,52.555511],[-1.059392,52.55893],[-1.063905,52.559048],[-1.064242,52.562097],[-1.071717,52.561795],[-1.072802,52.561076],[-1.073631,52.559041],[-1.073235,52.557989],[-1.074547,52.556733],[-1.076567,52.556836],[-1.077227,52.555811],[-1.080272,52.55559],[-1.082894,52.556579],[-1.084898,52.556208],[-1.085551,52.557354],[-1.08501,52.557902],[-1.086189,52.559219],[-1.088644,52.559203],[-1.091146,52.560918],[-1.094266,52.561195],[-1.094749,52.561868],[-1.094375,52.563701],[-1.096997,52.565549],[-1.101844,52.565525],[-1.10519,52.564985],[-1.107143,52.564311],[-1.109937,52.565789],[-1.113212,52.566031],[-1.115793,52.565911],[-1.116597,52.567037],[-1.120404,52.566468],[-1.121607,52.567628],[-1.124372,52.568737],[-1.124328,52.567413],[-1.125137,52.566919],[-1.125372,52.565511],[-1.124798,52.564994],[-1.126632,52.56199],[-1.130179,52.562248],[-1.129395,52.563806],[-1.13367,52.564137],[-1.133523,52.56588],[-1.134388,52.565783],[-1.132359,52.569782],[-1.133055,52.572774],[-1.132847,52.573613],[-1.134603,52.573597],[-1.13499,52.574176],[-1.136984,52.574022],[-1.136586,52.575106],[-1.140709,52.576381],[-1.139721,52.577969],[-1.140961,52.581551],[-1.143594,52.581281],[-1.143219,52.582328],[-1.143235,52.584591],[-1.144513,52.585548],[-1.143594,52.586465],[-1.143619,52.588025],[-1.145989,52.588136],[-1.146287,52.586597],[-1.147376,52.585302],[-1.149496,52.581024],[-1.153099,52.580669],[-1.159329,52.581666],[-1.1589,52.582661],[-1.160942,52.582531],[-1.160661,52.584322],[-1.158215,52.584184],[-1.158008,52.585755],[-1.155934,52.585993],[-1.155606,52.587153],[-1.156944,52.587236],[-1.157152,52.588629],[-1.158813,52.588903],[-1.15789,52.590822],[-1.159267,52.59124],[-1.16081,52.5923],[-1.16846,52.592765],[-1.169188,52.591588],[-1.172125,52.591826],[-1.172405,52.592819],[-1.174158,52.592848],[-1.174051,52.593702],[-1.171452,52.593432],[-1.170399,52.593909],[-1.170861,52.594841],[-1.170091,52.595906],[-1.172641,52.597306],[-1.171502,52.598723],[-1.17009,52.598349],[-1.167985,52.601426],[-1.166102,52.60219],[-1.16537,52.603047],[-1.171045,52.605818],[-1.167384,52.608266],[-1.164048,52.609453],[-1.164979,52.610179],[-1.165894,52.611697],[-1.165559,52.613081],[-1.166679,52.613291],[-1.167913,52.61427],[-1.172066,52.615784],[-1.174307,52.617822],[-1.178588,52.618309],[-1.184597,52.620714],[-1.185997,52.621754],[-1.187254,52.621637],[-1.188957,52.623051],[-1.196102,52.625687],[-1.200141,52.626677],[-1.201244,52.627332],[-1.205396,52.628816],[-1.208747,52.630582],[-1.210548,52.630854],[-1.214856,52.633336],[-1.215981,52.634534],[-1.213084,52.63615],[-1.214348,52.636936],[-1.211018,52.639429],[-1.209742,52.641695],[-1.209005,52.642092],[-1.205891,52.642672],[-1.202958,52.641368],[-1.201509,52.641136],[-1.2009,52.639844],[-1.198856,52.640294],[-1.198068,52.641732],[-1.195995,52.641084],[-1.190656,52.640394],[-1.189696,52.64251],[-1.186991,52.64559],[-1.187575,52.647151],[-1.184063,52.649583],[-1.18292,52.653016],[-1.184597,52.653347],[-1.184124,52.657556],[-1.184538,52.659546],[-1.185289,52.660644],[-1.187328,52.66106],[-1.188473,52.660404],[-1.192042,52.661406],[-1.193066,52.660337],[-1.196707,52.661674],[-1.196147,52.662261],[-1.199682,52.664402]]]},"properties":{"LAD22CD":"E07000129","LAD22NM":"Blaby","BNG_E":454385,"BNG_N":297994,"LONG":-1.19887,"LAT":52.57706,"GlobalID":"565fa5c8-5e8d-4a18-ba50-5062ca39c5d9"},"id":151}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.036289,52.815877],[-1.03753,52.816357],[-1.040217,52.816213],[-1.040664,52.81539],[-1.04219,52.81455],[-1.04727,52.81398],[-1.051768,52.813903],[-1.052581,52.815007],[-1.058554,52.81647],[-1.059205,52.81725],[-1.061757,52.815983],[-1.062204,52.816496],[-1.071738,52.814011],[-1.072004,52.815331],[-1.070961,52.81622],[-1.071534,52.816981],[-1.070183,52.817874],[-1.070066,52.820376],[-1.069462,52.822222],[-1.071882,52.823022],[-1.074435,52.824727],[-1.077058,52.824019],[-1.078705,52.824248],[-1.080757,52.823477],[-1.083748,52.822911],[-1.087872,52.821054],[-1.091485,52.82008],[-1.094191,52.821969],[-1.102041,52.820203],[-1.111552,52.820012],[-1.119163,52.819151],[-1.120067,52.817912],[-1.121513,52.817421],[-1.120598,52.814306],[-1.121248,52.812366],[-1.123053,52.810946],[-1.125725,52.810182],[-1.127417,52.808326],[-1.128827,52.807683],[-1.130893,52.805827],[-1.132988,52.80539],[-1.137275,52.805676],[-1.143964,52.803877],[-1.145002,52.80397],[-1.147461,52.805034],[-1.149924,52.80488],[-1.154074,52.806294],[-1.161878,52.806394],[-1.163276,52.806522],[-1.170595,52.804296],[-1.170472,52.803735],[-1.172102,52.803046],[-1.175168,52.803181],[-1.178404,52.801602],[-1.180217,52.799171],[-1.183126,52.798149],[-1.185785,52.798004],[-1.188889,52.796598],[-1.189171,52.795904],[-1.19141,52.794817],[-1.190962,52.794147],[-1.191599,52.792796],[-1.196138,52.790165],[-1.19773,52.789412],[-1.200046,52.791856],[-1.19865,52.792135],[-1.198484,52.793052],[-1.200289,52.793788],[-1.206279,52.793539],[-1.206924,52.794236],[-1.21124,52.79493],[-1.215259,52.794876],[-1.217127,52.793405],[-1.218234,52.793264],[-1.221953,52.791769],[-1.226507,52.792489],[-1.229263,52.793283],[-1.230836,52.796228],[-1.231895,52.796932],[-1.231144,52.798622],[-1.231871,52.800641],[-1.238238,52.80381],[-1.239836,52.804134],[-1.241512,52.805296],[-1.243808,52.805245],[-1.245368,52.806163],[-1.249009,52.805772],[-1.25073,52.80516],[-1.251789,52.805569],[-1.253895,52.804358],[-1.255364,52.804152],[-1.260022,52.807132],[-1.261927,52.810453],[-1.268575,52.807773],[-1.270986,52.804551],[-1.2719,52.804656],[-1.272432,52.802268],[-1.27411,52.802302],[-1.274564,52.800557],[-1.27645,52.800328],[-1.27684,52.796728],[-1.278886,52.796066],[-1.278183,52.795087],[-1.279134,52.794288],[-1.279615,52.792302],[-1.279608,52.788683],[-1.278818,52.788218],[-1.275986,52.787952],[-1.274828,52.787573],[-1.27867,52.783177],[-1.279879,52.783848],[-1.285567,52.783742],[-1.28862,52.784182],[-1.289994,52.783834],[-1.291413,52.782349],[-1.293091,52.783396],[-1.296326,52.78412],[-1.299976,52.784392],[-1.303318,52.784022],[-1.30526,52.784986],[-1.308374,52.785246],[-1.311491,52.784589],[-1.31448,52.784687],[-1.315215,52.785338],[-1.318961,52.785389],[-1.319677,52.783525],[-1.322676,52.779115],[-1.327703,52.775701],[-1.328049,52.774666],[-1.327766,52.772472],[-1.32911,52.76976],[-1.328498,52.768239],[-1.329058,52.766401],[-1.334014,52.76384],[-1.33477,52.763165],[-1.334468,52.76187],[-1.333387,52.760203],[-1.334464,52.756979],[-1.331509,52.75555],[-1.332379,52.753018],[-1.329285,52.752344],[-1.328445,52.753247],[-1.325766,52.753819],[-1.324892,52.754844],[-1.32374,52.754902],[-1.32139,52.75331],[-1.32129,52.751317],[-1.319051,52.749943],[-1.31384,52.749122],[-1.312603,52.750278],[-1.311391,52.750254],[-1.308556,52.747804],[-1.306834,52.747845],[-1.305403,52.748538],[-1.300334,52.746487],[-1.29906,52.745396],[-1.297914,52.743058],[-1.297799,52.740527],[-1.294363,52.737104],[-1.29341,52.737041],[-1.287487,52.733972],[-1.286665,52.734695],[-1.279791,52.738083],[-1.275298,52.739545],[-1.27256,52.742192],[-1.267829,52.745656],[-1.266865,52.747451],[-1.265926,52.747084],[-1.267083,52.745758],[-1.263969,52.744572],[-1.258511,52.74444],[-1.251118,52.740873],[-1.251186,52.738533],[-1.249805,52.738274],[-1.247141,52.736369],[-1.249528,52.735273],[-1.250782,52.736083],[-1.255096,52.734327],[-1.257899,52.732889],[-1.263361,52.730907],[-1.262552,52.730009],[-1.266353,52.728589],[-1.262468,52.724271],[-1.266297,52.723438],[-1.277518,52.716403],[-1.280521,52.71486],[-1.282714,52.714642],[-1.28486,52.714098],[-1.285891,52.712089],[-1.28524,52.710081],[-1.286203,52.705675],[-1.285369,52.702584],[-1.282626,52.700234],[-1.278457,52.698248],[-1.275726,52.698686],[-1.275286,52.698289],[-1.280192,52.695258],[-1.28159,52.692822],[-1.281419,52.692184],[-1.279355,52.691165],[-1.271652,52.688567],[-1.269072,52.687297],[-1.265489,52.686293],[-1.265016,52.684758],[-1.259011,52.682072],[-1.257428,52.683357],[-1.256682,52.684604],[-1.254681,52.684441],[-1.252349,52.684884],[-1.252039,52.684345],[-1.249624,52.68476],[-1.244735,52.68462],[-1.24238,52.683243],[-1.239308,52.679833],[-1.236034,52.67818],[-1.2348,52.677047],[-1.234612,52.675943],[-1.230236,52.675438],[-1.227884,52.672436],[-1.229383,52.671432],[-1.226593,52.669927],[-1.221073,52.669692],[-1.216605,52.670933],[-1.216969,52.671612],[-1.215872,52.672447],[-1.214905,52.672197],[-1.213763,52.674681],[-1.21214,52.674446],[-1.212637,52.67251],[-1.207926,52.671284],[-1.207508,52.670514],[-1.205885,52.669922],[-1.201621,52.668845],[-1.201355,52.667057],[-1.202794,52.666558],[-1.202702,52.66446],[-1.200804,52.664817],[-1.199682,52.664402],[-1.196147,52.662261],[-1.196707,52.661674],[-1.193066,52.660337],[-1.192042,52.661406],[-1.188473,52.660404],[-1.187328,52.66106],[-1.185289,52.660644],[-1.176725,52.664306],[-1.177512,52.665238],[-1.177088,52.665999],[-1.177501,52.667625],[-1.179013,52.669102],[-1.180231,52.669365],[-1.177957,52.67148],[-1.178949,52.673207],[-1.177892,52.674079],[-1.177979,52.675392],[-1.179086,52.676398],[-1.178192,52.676834],[-1.177988,52.678107],[-1.176958,52.678499],[-1.175052,52.678329],[-1.173027,52.679786],[-1.173715,52.681214],[-1.172975,52.682663],[-1.170737,52.683562],[-1.166576,52.686607],[-1.165024,52.688813],[-1.163064,52.687948],[-1.161034,52.690548],[-1.157252,52.691523],[-1.15701,52.691043],[-1.154239,52.689659],[-1.152376,52.688438],[-1.151126,52.688504],[-1.147519,52.690662],[-1.143263,52.687157],[-1.136687,52.679917],[-1.137713,52.67538],[-1.135467,52.675418],[-1.135194,52.673221],[-1.13303,52.673158],[-1.13298,52.669766],[-1.12986,52.669527],[-1.129359,52.66915],[-1.129089,52.66539],[-1.128252,52.665111],[-1.125896,52.667474],[-1.121416,52.66959],[-1.120752,52.670604],[-1.12101,52.671826],[-1.11977,52.671802],[-1.118812,52.673186],[-1.114653,52.672708],[-1.110127,52.671457],[-1.109148,52.672798],[-1.105488,52.671539],[-1.105234,52.671865],[-1.097821,52.670082],[-1.090551,52.668539],[-1.089312,52.670281],[-1.085735,52.669243],[-1.075079,52.669626],[-1.074926,52.667987],[-1.067866,52.666861],[-1.066621,52.665747],[-1.062195,52.663854],[-1.059764,52.663853],[-1.058677,52.66348],[-1.056745,52.663832],[-1.059114,52.657251],[-1.058945,52.656426],[-1.048613,52.654996],[-1.041732,52.653866],[-1.037781,52.653986],[-1.038194,52.656752],[-1.039542,52.6587],[-1.038589,52.659008],[-1.034651,52.658577],[-1.030366,52.657546],[-1.029352,52.6585],[-1.028038,52.657451],[-1.027011,52.657832],[-1.024159,52.656576],[-1.022793,52.657],[-1.016446,52.655427],[-1.014704,52.655845],[-1.013679,52.655081],[-1.011823,52.657049],[-1.008798,52.657646],[-1.003825,52.66104],[-0.999578,52.662851],[-0.998059,52.664415],[-0.998616,52.665218],[-0.996942,52.666192],[-0.997732,52.668093],[-0.996551,52.668092],[-0.995611,52.669671],[-0.991441,52.673459],[-0.988227,52.672065],[-0.983085,52.678283],[-0.981565,52.681242],[-0.978884,52.681943],[-0.976775,52.68038],[-0.97489,52.679894],[-0.972235,52.677942],[-0.970668,52.67733],[-0.968019,52.676967],[-0.967934,52.675907],[-0.966506,52.67594],[-0.965802,52.674448],[-0.964297,52.674649],[-0.962251,52.673371],[-0.959654,52.673263],[-0.957397,52.674006],[-0.956415,52.675219],[-0.952943,52.677621],[-0.950208,52.678554],[-0.94911,52.678583],[-0.948924,52.680381],[-0.947238,52.682729],[-0.954746,52.684061],[-0.956168,52.682666],[-0.961011,52.684746],[-0.971169,52.691039],[-0.992732,52.695346],[-0.996041,52.695787],[-1.006097,52.69838],[-1.006313,52.698627],[-1.004847,52.704519],[-1.00676,52.70534],[-1.00966,52.705829],[-1.011558,52.706483],[-1.01341,52.7096],[-1.013224,52.710235],[-1.015477,52.710965],[-1.01336,52.713611],[-1.012699,52.713238],[-1.010795,52.714455],[-1.007651,52.717386],[-1.004855,52.717096],[-1.003279,52.717252],[-1.003563,52.720201],[-1.001089,52.720075],[-1.000668,52.722283],[-1.001051,52.723662],[-1.004716,52.723602],[-1.0082,52.72404],[-1.017245,52.724468],[-1.018768,52.726802],[-1.019911,52.72698],[-1.027453,52.734941],[-1.022986,52.734676],[-1.019934,52.735794],[-1.019423,52.73713],[-1.021845,52.737811],[-1.024256,52.740482],[-1.023666,52.74074],[-1.028568,52.744818],[-1.031481,52.747984],[-1.031159,52.748282],[-1.033053,52.749789],[-1.03353,52.751127],[-1.032321,52.751999],[-1.03366,52.753376],[-1.030382,52.756186],[-1.034721,52.757108],[-1.036842,52.758371],[-1.038537,52.761468],[-1.03861,52.763315],[-1.041541,52.763143],[-1.041424,52.766059],[-1.045908,52.766027],[-1.045345,52.767206],[-1.04208,52.76978],[-1.043482,52.771622],[-1.037949,52.775033],[-1.040647,52.777409],[-1.046624,52.780955],[-1.042422,52.801169],[-1.036997,52.810364],[-1.036231,52.812684],[-1.036289,52.815877]]]},"properties":{"LAD22CD":"E07000130","LAD22NM":"Charnwood","BNG_E":458365,"BNG_N":316155,"LONG":-1.13694,"LAT":52.7399,"GlobalID":"c712b442-ba7d-45a8-8265-43784af183c3"},"id":152}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.808693,52.646126],[-0.816085,52.645971],[-0.82018,52.647925],[-0.822272,52.647254],[-0.823228,52.649179],[-0.822604,52.651271],[-0.821461,52.650405],[-0.817188,52.649962],[-0.813522,52.652029],[-0.811583,52.65502],[-0.809487,52.657183],[-0.809529,52.657612],[-0.816967,52.656667],[-0.823401,52.658045],[-0.825396,52.658103],[-0.827711,52.658829],[-0.829549,52.658753],[-0.830173,52.660743],[-0.829233,52.662789],[-0.83063,52.6678],[-0.831901,52.670625],[-0.833982,52.672705],[-0.841121,52.675557],[-0.843037,52.675516],[-0.855397,52.673334],[-0.858745,52.673763],[-0.858266,52.674879],[-0.859045,52.676098],[-0.856373,52.679799],[-0.854745,52.683305],[-0.855546,52.684974],[-0.859739,52.684377],[-0.861776,52.684339],[-0.866694,52.684935],[-0.872606,52.684351],[-0.873316,52.681135],[-0.874419,52.679874],[-0.880626,52.677605],[-0.882556,52.67596],[-0.883501,52.675606],[-0.887227,52.675119],[-0.887644,52.674555],[-0.890208,52.674175],[-0.893932,52.674411],[-0.895833,52.673966],[-0.896802,52.674681],[-0.899554,52.674224],[-0.90026,52.674966],[-0.901555,52.674751],[-0.903708,52.675727],[-0.905431,52.675612],[-0.909767,52.677117],[-0.912788,52.676556],[-0.912442,52.674321],[-0.913183,52.673969],[-0.913821,52.672511],[-0.914973,52.671404],[-0.91605,52.671141],[-0.934749,52.674558],[-0.941304,52.676811],[-0.943399,52.678067],[-0.948924,52.680381],[-0.94911,52.678583],[-0.950208,52.678554],[-0.952943,52.677621],[-0.956415,52.675219],[-0.957397,52.674006],[-0.959654,52.673263],[-0.962251,52.673371],[-0.964297,52.674649],[-0.965802,52.674448],[-0.966506,52.67594],[-0.967934,52.675907],[-0.968019,52.676967],[-0.970668,52.67733],[-0.972235,52.677942],[-0.97489,52.679894],[-0.976775,52.68038],[-0.978884,52.681943],[-0.981565,52.681242],[-0.983085,52.678283],[-0.988227,52.672065],[-0.991441,52.673459],[-0.995611,52.669671],[-0.996551,52.668092],[-0.997732,52.668093],[-0.996942,52.666192],[-0.998616,52.665218],[-0.998059,52.664415],[-0.999578,52.662851],[-1.003825,52.66104],[-1.008798,52.657646],[-1.011823,52.657049],[-1.013679,52.655081],[-1.014704,52.655845],[-1.016446,52.655427],[-1.022793,52.657],[-1.024159,52.656576],[-1.027011,52.657832],[-1.028038,52.657451],[-1.029352,52.6585],[-1.030366,52.657546],[-1.034651,52.658577],[-1.038589,52.659008],[-1.039542,52.6587],[-1.038194,52.656752],[-1.037781,52.653986],[-1.041732,52.653866],[-1.048613,52.654996],[-1.048837,52.653585],[-1.048195,52.652044],[-1.048019,52.648189],[-1.051019,52.648104],[-1.051795,52.644044],[-1.051316,52.643232],[-1.049489,52.642617],[-1.047434,52.642355],[-1.047654,52.638152],[-1.048137,52.635361],[-1.046962,52.63462],[-1.053123,52.634487],[-1.053132,52.633153],[-1.056042,52.632611],[-1.055695,52.630312],[-1.056038,52.629011],[-1.055384,52.628353],[-1.053268,52.627533],[-1.055245,52.624838],[-1.057286,52.623651],[-1.058055,52.62368],[-1.060136,52.621543],[-1.063487,52.619372],[-1.066355,52.61957],[-1.07049,52.618067],[-1.06666,52.617034],[-1.068001,52.615369],[-1.070037,52.614752],[-1.070955,52.61391],[-1.069146,52.613261],[-1.069523,52.612663],[-1.06696,52.612187],[-1.062282,52.61012],[-1.058968,52.609047],[-1.061615,52.606019],[-1.062479,52.604247],[-1.059763,52.60395],[-1.059896,52.603249],[-1.057654,52.60325],[-1.052443,52.601568],[-1.044744,52.600078],[-1.041358,52.59801],[-1.049855,52.591344],[-1.058372,52.585376],[-1.06511,52.579902],[-1.067363,52.579802],[-1.069062,52.578252],[-1.07094,52.577306],[-1.071067,52.576803],[-1.073323,52.575991],[-1.075423,52.574663],[-1.074802,52.573995],[-1.076271,52.572775],[-1.073859,52.571549],[-1.076877,52.570273],[-1.076314,52.568057],[-1.077265,52.567854],[-1.076952,52.566311],[-1.078963,52.566021],[-1.077976,52.563696],[-1.079603,52.563114],[-1.082894,52.556579],[-1.080272,52.55559],[-1.077227,52.555811],[-1.076567,52.556836],[-1.074547,52.556733],[-1.073235,52.557989],[-1.073631,52.559041],[-1.072802,52.561076],[-1.071717,52.561795],[-1.064242,52.562097],[-1.063905,52.559048],[-1.059392,52.55893],[-1.060445,52.555511],[-1.061476,52.555424],[-1.064729,52.552353],[-1.066234,52.549181],[-1.069831,52.544148],[-1.069859,52.54288],[-1.072579,52.542502],[-1.075703,52.539737],[-1.075889,52.538866],[-1.083663,52.539914],[-1.090359,52.541228],[-1.093494,52.541439],[-1.09422,52.541921],[-1.097444,52.54241],[-1.102268,52.538359],[-1.104508,52.539813],[-1.106059,52.541842],[-1.109365,52.542072],[-1.113885,52.541885],[-1.117502,52.54321],[-1.121257,52.545187],[-1.123469,52.544593],[-1.139451,52.543172],[-1.139273,52.53987],[-1.140305,52.537924],[-1.143885,52.537546],[-1.143061,52.536519],[-1.142854,52.534972],[-1.172,52.534401],[-1.172114,52.533204],[-1.173013,52.532876],[-1.17506,52.527587],[-1.181735,52.529685],[-1.184275,52.527499],[-1.190199,52.527856],[-1.194079,52.527672],[-1.196195,52.528105],[-1.197075,52.527627],[-1.198549,52.528198],[-1.202133,52.52744],[-1.203249,52.530367],[-1.204421,52.531596],[-1.205446,52.535166],[-1.206599,52.53516],[-1.209029,52.539306],[-1.210748,52.541026],[-1.211772,52.542878],[-1.213791,52.543678],[-1.212976,52.544272],[-1.217729,52.547686],[-1.217632,52.548097],[-1.221138,52.550175],[-1.224127,52.551683],[-1.226661,52.55342],[-1.231841,52.555379],[-1.245959,52.543293],[-1.247969,52.542034],[-1.249916,52.539875],[-1.251348,52.539099],[-1.251673,52.53837],[-1.261173,52.530321],[-1.285611,52.509178],[-1.292846,52.503439],[-1.296995,52.499593],[-1.302102,52.495833],[-1.304366,52.493213],[-1.305948,52.493395],[-1.293594,52.484261],[-1.257831,52.453893],[-1.242918,52.43968],[-1.240743,52.440135],[-1.236444,52.435727],[-1.224386,52.423006],[-1.201613,52.396732],[-1.1991,52.396238],[-1.197941,52.395676],[-1.196342,52.395686],[-1.194065,52.396184],[-1.190386,52.395243],[-1.189382,52.396382],[-1.188047,52.395016],[-1.187772,52.393306],[-1.184574,52.392563],[-1.183992,52.392171],[-1.180451,52.393215],[-1.17799,52.392895],[-1.177268,52.394062],[-1.1752,52.394528],[-1.171255,52.396015],[-1.169349,52.395642],[-1.166276,52.396851],[-1.16665,52.397826],[-1.165172,52.398961],[-1.164337,52.398679],[-1.160374,52.399624],[-1.156583,52.400051],[-1.155066,52.399348],[-1.151967,52.399307],[-1.14947,52.397008],[-1.147842,52.398352],[-1.14526,52.399251],[-1.144502,52.398948],[-1.142269,52.399705],[-1.140301,52.401571],[-1.138536,52.402044],[-1.138823,52.403066],[-1.137926,52.403918],[-1.138609,52.404568],[-1.13815,52.405415],[-1.13629,52.406419],[-1.13664,52.407615],[-1.134813,52.409684],[-1.134911,52.411294],[-1.134392,52.412301],[-1.132381,52.413625],[-1.129069,52.41521],[-1.12927,52.416103],[-1.125704,52.417697],[-1.122782,52.418058],[-1.120757,52.417209],[-1.119614,52.418229],[-1.117991,52.420912],[-1.113561,52.421592],[-1.111913,52.421152],[-1.107082,52.422376],[-1.105503,52.42333],[-1.101179,52.425093],[-1.098205,52.425055],[-1.097538,52.425961],[-1.095559,52.426516],[-1.09336,52.427683],[-1.094048,52.42834],[-1.094596,52.430237],[-1.091876,52.432612],[-1.090031,52.433425],[-1.088753,52.432922],[-1.084633,52.435185],[-1.084382,52.436298],[-1.082786,52.436026],[-1.079392,52.436334],[-1.076644,52.434924],[-1.070899,52.433953],[-1.069325,52.433546],[-1.06995,52.432318],[-1.068501,52.431043],[-1.069234,52.430268],[-1.068114,52.428857],[-1.064454,52.428464],[-1.062066,52.427598],[-1.061054,52.426367],[-1.061359,52.424854],[-1.059762,52.423891],[-1.056144,52.42314],[-1.054883,52.421944],[-1.04986,52.422262],[-1.049994,52.425209],[-1.049497,52.42584],[-1.044928,52.429345],[-1.042276,52.430674],[-1.039249,52.430739],[-1.037643,52.433751],[-1.035016,52.435108],[-1.034274,52.436285],[-1.033828,52.440449],[-1.035134,52.443246],[-1.037219,52.444449],[-1.039684,52.443351],[-1.042778,52.443492],[-1.044099,52.444527],[-1.044511,52.445748],[-1.041123,52.44838],[-1.037853,52.45154],[-1.035782,52.452339],[-1.034649,52.453313],[-1.030406,52.454813],[-1.028722,52.456113],[-1.027741,52.458505],[-1.026903,52.458985],[-1.024647,52.458724],[-1.022698,52.460117],[-1.020359,52.461005],[-1.016773,52.461778],[-1.014706,52.462955],[-1.013795,52.462847],[-1.010833,52.463726],[-1.010911,52.46406],[-1.005637,52.465026],[-1.002827,52.466912],[-1.000693,52.47094],[-0.997914,52.471036],[-0.994977,52.469427],[-0.992331,52.469842],[-0.99084,52.469422],[-0.989301,52.470499],[-0.984211,52.471596],[-0.982723,52.4716],[-0.982127,52.470582],[-0.979323,52.470117],[-0.975012,52.471789],[-0.972085,52.472433],[-0.972797,52.473777],[-0.971424,52.474862],[-0.969252,52.475531],[-0.969234,52.476187],[-0.967849,52.47721],[-0.964664,52.47684],[-0.96431,52.476437],[-0.958887,52.475782],[-0.952408,52.477462],[-0.949376,52.476982],[-0.948571,52.475969],[-0.946464,52.475319],[-0.946446,52.473215],[-0.94386,52.472764],[-0.944214,52.470652],[-0.942645,52.470856],[-0.942192,52.467772],[-0.935853,52.467237],[-0.93614,52.466947],[-0.930232,52.465943],[-0.923792,52.464234],[-0.922309,52.464202],[-0.916746,52.462646],[-0.91423,52.46228],[-0.911257,52.463506],[-0.909885,52.461488],[-0.907724,52.461495],[-0.906584,52.463079],[-0.904578,52.462879],[-0.901544,52.460843],[-0.901281,52.459756],[-0.898919,52.461144],[-0.897528,52.462496],[-0.895499,52.465503],[-0.892704,52.467223],[-0.889557,52.470441],[-0.886193,52.469345],[-0.884832,52.471518],[-0.882362,52.471406],[-0.882219,52.476185],[-0.88404,52.477328],[-0.885092,52.4787],[-0.885249,52.480272],[-0.884535,52.481307],[-0.888861,52.483005],[-0.887848,52.483765],[-0.890501,52.484127],[-0.891627,52.484924],[-0.893403,52.485393],[-0.897793,52.485612],[-0.897875,52.487414],[-0.895214,52.488101],[-0.895132,52.489553],[-0.89671,52.490642],[-0.895602,52.492044],[-0.892042,52.492213],[-0.888949,52.491808],[-0.883722,52.492263],[-0.882126,52.493166],[-0.88231,52.494682],[-0.881793,52.496882],[-0.880652,52.497133],[-0.879455,52.498408],[-0.87935,52.499846],[-0.880966,52.500463],[-0.882291,52.502003],[-0.882727,52.5034],[-0.881156,52.504444],[-0.880086,52.504455],[-0.880916,52.506182],[-0.880522,52.507022],[-0.881432,52.507697],[-0.880429,52.508729],[-0.881016,52.50926],[-0.879995,52.51019],[-0.881149,52.51232],[-0.88193,52.511989],[-0.883409,52.513808],[-0.882357,52.515122],[-0.880326,52.516208],[-0.877947,52.516218],[-0.878354,52.517293],[-0.874343,52.517572],[-0.873757,52.518512],[-0.872611,52.5184],[-0.871743,52.519431],[-0.872443,52.520707],[-0.871285,52.52097],[-0.870784,52.522359],[-0.871336,52.524148],[-0.870994,52.524752],[-0.868826,52.525887],[-0.868758,52.526981],[-0.865918,52.526797],[-0.863865,52.527091],[-0.8633,52.528333],[-0.861251,52.526779],[-0.859024,52.527094],[-0.858277,52.52562],[-0.858471,52.524511],[-0.857857,52.523913],[-0.851519,52.523642],[-0.851613,52.523126],[-0.850226,52.521666],[-0.847795,52.520481],[-0.84677,52.521252],[-0.845346,52.519367],[-0.842162,52.519532],[-0.841108,52.520555],[-0.839788,52.520146],[-0.840356,52.519103],[-0.838594,52.518364],[-0.83658,52.519273],[-0.834764,52.517886],[-0.833432,52.518382],[-0.833237,52.519311],[-0.831163,52.519487],[-0.828742,52.518624],[-0.826965,52.518387],[-0.827148,52.517212],[-0.825778,52.517127],[-0.824807,52.517795],[-0.822409,52.51799],[-0.820768,52.516671],[-0.820634,52.515746],[-0.818259,52.515549],[-0.816459,52.516433],[-0.814924,52.515541],[-0.812591,52.515952],[-0.812174,52.517394],[-0.811107,52.517853],[-0.810867,52.519367],[-0.808942,52.519252],[-0.808573,52.518456],[-0.806345,52.518495],[-0.803872,52.517196],[-0.801792,52.516642],[-0.80048,52.518052],[-0.798397,52.516871],[-0.796161,52.516365],[-0.795471,52.51528],[-0.793335,52.515427],[-0.788861,52.513689],[-0.788346,52.514745],[-0.786991,52.515515],[-0.783962,52.515587],[-0.781988,52.517235],[-0.780293,52.517022],[-0.779112,52.518107],[-0.777378,52.518004],[-0.775718,52.517306],[-0.774867,52.518276],[-0.772329,52.51607],[-0.770044,52.515389],[-0.767816,52.514244],[-0.766558,52.514413],[-0.766189,52.513355],[-0.761027,52.514186],[-0.758396,52.511278],[-0.756156,52.510995],[-0.754626,52.51187],[-0.751246,52.512176],[-0.74956,52.514506],[-0.747261,52.514831],[-0.746842,52.516866],[-0.744365,52.516211],[-0.742104,52.517059],[-0.739256,52.517454],[-0.739392,52.518634],[-0.733498,52.52059],[-0.730311,52.521261],[-0.730047,52.521916],[-0.726874,52.522754],[-0.723586,52.52237],[-0.715299,52.523194],[-0.713367,52.524534],[-0.713659,52.524964],[-0.714386,52.524888],[-0.71683,52.525891],[-0.717683,52.525512],[-0.719727,52.526181],[-0.720905,52.525861],[-0.722555,52.526779],[-0.724769,52.53063],[-0.727635,52.531754],[-0.729848,52.533491],[-0.729807,52.534491],[-0.728541,52.535821],[-0.731294,52.536777],[-0.733358,52.536472],[-0.737175,52.537231],[-0.738013,52.538667],[-0.739692,52.539412],[-0.742207,52.539486],[-0.741631,52.540751],[-0.743396,52.541153],[-0.743724,52.543093],[-0.742667,52.544435],[-0.741535,52.544979],[-0.740424,52.546396],[-0.738937,52.547499],[-0.739554,52.549847],[-0.740899,52.550244],[-0.741083,52.551815],[-0.742397,52.551782],[-0.743453,52.553331],[-0.744918,52.554324],[-0.745087,52.555383],[-0.747279,52.557946],[-0.749966,52.559246],[-0.750089,52.560389],[-0.751737,52.56177],[-0.752294,52.562999],[-0.755722,52.565117],[-0.759894,52.564906],[-0.760028,52.566895],[-0.761427,52.568103],[-0.761092,52.568925],[-0.762538,52.569263],[-0.763829,52.570397],[-0.762476,52.571605],[-0.763008,52.572129],[-0.762502,52.574462],[-0.763693,52.577396],[-0.763404,52.578771],[-0.764753,52.579563],[-0.765949,52.581732],[-0.7671,52.582854],[-0.76803,52.582181],[-0.771223,52.584418],[-0.773908,52.584375],[-0.77515,52.58704],[-0.777459,52.589034],[-0.778889,52.589284],[-0.779105,52.590214],[-0.782325,52.59116],[-0.782323,52.59215],[-0.78378,52.59246],[-0.783958,52.593964],[-0.787053,52.596248],[-0.791235,52.596818],[-0.792436,52.597614],[-0.794815,52.596526],[-0.797179,52.596606],[-0.798518,52.597155],[-0.800833,52.59706],[-0.80238,52.596465],[-0.805285,52.596042],[-0.807584,52.596375],[-0.810098,52.59484],[-0.811773,52.595371],[-0.812061,52.594175],[-0.813298,52.594498],[-0.815962,52.594129],[-0.817474,52.5956],[-0.820951,52.596455],[-0.818983,52.600111],[-0.818545,52.602887],[-0.818826,52.604594],[-0.820003,52.605963],[-0.819984,52.607312],[-0.818827,52.610657],[-0.817454,52.611797],[-0.81478,52.611963],[-0.811321,52.614098],[-0.810916,52.614942],[-0.809527,52.615673],[-0.809842,52.617014],[-0.808932,52.619813],[-0.807924,52.620405],[-0.806017,52.620456],[-0.805637,52.621795],[-0.810958,52.625984],[-0.809852,52.627321],[-0.809923,52.629441],[-0.808793,52.630354],[-0.805142,52.631729],[-0.804464,52.632272],[-0.804437,52.634883],[-0.802017,52.637775],[-0.801752,52.63884],[-0.80413,52.640439],[-0.807984,52.639223],[-0.809901,52.640303],[-0.808748,52.64204],[-0.809708,52.644296],[-0.808693,52.646126]]]},"properties":{"LAD22CD":"E07000131","LAD22NM":"Harborough","BNG_E":474549,"BNG_N":293875,"LONG":-0.90229,"LAT":52.53766,"GlobalID":"52dee647-8620-4a92-94bb-16573a08e00e"},"id":153}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.199682,52.664402],[-1.200804,52.664817],[-1.202702,52.66446],[-1.202794,52.666558],[-1.201355,52.667057],[-1.201621,52.668845],[-1.205885,52.669922],[-1.207508,52.670514],[-1.207926,52.671284],[-1.212637,52.67251],[-1.21214,52.674446],[-1.213763,52.674681],[-1.214905,52.672197],[-1.215872,52.672447],[-1.216969,52.671612],[-1.216605,52.670933],[-1.221073,52.669692],[-1.226593,52.669927],[-1.229383,52.671432],[-1.227884,52.672436],[-1.230236,52.675438],[-1.234612,52.675943],[-1.2348,52.677047],[-1.236034,52.67818],[-1.239308,52.679833],[-1.24238,52.683243],[-1.244735,52.68462],[-1.249624,52.68476],[-1.252039,52.684345],[-1.252349,52.684884],[-1.254681,52.684441],[-1.256682,52.684604],[-1.257428,52.683357],[-1.259011,52.682072],[-1.265016,52.684758],[-1.265489,52.686293],[-1.269072,52.687297],[-1.271652,52.688567],[-1.279355,52.691165],[-1.281419,52.692184],[-1.28159,52.692822],[-1.280192,52.695258],[-1.275286,52.698289],[-1.275726,52.698686],[-1.278457,52.698248],[-1.282626,52.700234],[-1.285369,52.702584],[-1.286203,52.705675],[-1.28524,52.710081],[-1.285891,52.712089],[-1.28486,52.714098],[-1.282714,52.714642],[-1.285283,52.715289],[-1.288732,52.7121],[-1.289577,52.711838],[-1.291736,52.709442],[-1.299234,52.707427],[-1.308801,52.706428],[-1.311005,52.705744],[-1.31812,52.70198],[-1.322293,52.700243],[-1.324636,52.699741],[-1.331251,52.698668],[-1.341917,52.695431],[-1.344786,52.694824],[-1.351097,52.694157],[-1.342609,52.690259],[-1.349955,52.689391],[-1.348442,52.685038],[-1.353956,52.684974],[-1.358338,52.682819],[-1.360712,52.680538],[-1.360486,52.67896],[-1.35964,52.678071],[-1.360588,52.676476],[-1.36251,52.678441],[-1.363319,52.680078],[-1.365299,52.680198],[-1.366464,52.679049],[-1.368416,52.678562],[-1.371308,52.678393],[-1.373929,52.677193],[-1.381991,52.675316],[-1.383646,52.675712],[-1.383701,52.67433],[-1.391444,52.674006],[-1.394458,52.673441],[-1.396708,52.673623],[-1.399054,52.672455],[-1.401916,52.67208],[-1.402196,52.6731],[-1.406964,52.673125],[-1.409342,52.673673],[-1.41205,52.674813],[-1.413869,52.676282],[-1.41819,52.678231],[-1.419847,52.680321],[-1.421456,52.683347],[-1.424204,52.684003],[-1.428999,52.682646],[-1.430376,52.681698],[-1.430494,52.67952],[-1.431342,52.678793],[-1.434828,52.67701],[-1.436304,52.676799],[-1.439009,52.674933],[-1.43888,52.673317],[-1.437837,52.672767],[-1.43817,52.671777],[-1.437297,52.670882],[-1.4374,52.670071],[-1.441732,52.666442],[-1.444469,52.665742],[-1.445743,52.663958],[-1.456944,52.664843],[-1.456501,52.666806],[-1.458896,52.667033],[-1.458999,52.667989],[-1.467168,52.668065],[-1.467449,52.669123],[-1.469418,52.671262],[-1.473353,52.670867],[-1.477019,52.677715],[-1.478859,52.677007],[-1.481848,52.674984],[-1.485647,52.673151],[-1.487669,52.671221],[-1.494015,52.669048],[-1.495439,52.669689],[-1.496229,52.671526],[-1.495934,52.67256],[-1.500611,52.676599],[-1.503035,52.677564],[-1.504323,52.67625],[-1.506339,52.675317],[-1.508205,52.674841],[-1.517847,52.670883],[-1.527544,52.667911],[-1.536825,52.665736],[-1.53889,52.665772],[-1.538604,52.667557],[-1.543831,52.666698],[-1.551772,52.667455],[-1.552182,52.666898],[-1.546099,52.659062],[-1.54729,52.655973],[-1.542422,52.653626],[-1.544661,52.651559],[-1.544958,52.650563],[-1.544292,52.649467],[-1.542795,52.648239],[-1.542804,52.64762],[-1.544287,52.64568],[-1.544824,52.644134],[-1.546993,52.64227],[-1.550631,52.641128],[-1.553307,52.640779],[-1.556047,52.638276],[-1.559014,52.637259],[-1.565696,52.63627],[-1.571,52.63612],[-1.571019,52.634038],[-1.56651,52.63235],[-1.56461,52.631242],[-1.565881,52.630324],[-1.566483,52.629253],[-1.566011,52.625968],[-1.567583,52.622642],[-1.566876,52.620621],[-1.56441,52.619937],[-1.561249,52.619828],[-1.560583,52.617059],[-1.556383,52.615187],[-1.554455,52.614761],[-1.554276,52.613497],[-1.557073,52.609279],[-1.557068,52.601361],[-1.560757,52.596156],[-1.558033,52.596152],[-1.556994,52.59565],[-1.556275,52.594085],[-1.553696,52.593611],[-1.552675,52.593748],[-1.549986,52.592646],[-1.549248,52.592914],[-1.546588,52.591384],[-1.546152,52.59058],[-1.544158,52.589674],[-1.542627,52.589432],[-1.537469,52.589566],[-1.537532,52.589054],[-1.534733,52.58718],[-1.531674,52.585745],[-1.532149,52.584433],[-1.531265,52.583384],[-1.528919,52.583315],[-1.525607,52.581264],[-1.525196,52.580376],[-1.525919,52.579014],[-1.52592,52.57766],[-1.526678,52.576631],[-1.526701,52.575314],[-1.525988,52.57408],[-1.52299,52.573546],[-1.521514,52.571829],[-1.522868,52.570601],[-1.502706,52.564471],[-1.464048,52.553093],[-1.459994,52.55159],[-1.459221,52.551978],[-1.428913,52.540916],[-1.426976,52.540646],[-1.418958,52.537768],[-1.418338,52.536498],[-1.417376,52.536089],[-1.417344,52.534455],[-1.415206,52.534388],[-1.395127,52.527046],[-1.380418,52.521493],[-1.373251,52.519127],[-1.373542,52.518078],[-1.368236,52.517226],[-1.368153,52.516453],[-1.364955,52.515942],[-1.34179,52.507368],[-1.338443,52.505778],[-1.325088,52.501042],[-1.321891,52.505578],[-1.321332,52.507857],[-1.319057,52.511098],[-1.319127,52.513513],[-1.317966,52.515117],[-1.320793,52.51558],[-1.323556,52.516995],[-1.322426,52.519002],[-1.323789,52.52053],[-1.325703,52.521423],[-1.327238,52.521594],[-1.327635,52.523222],[-1.330406,52.524616],[-1.330327,52.527141],[-1.331221,52.52734],[-1.329592,52.529336],[-1.331658,52.529843],[-1.330701,52.531132],[-1.334847,52.533025],[-1.332603,52.538698],[-1.334378,52.541039],[-1.334952,52.542916],[-1.334552,52.543791],[-1.336251,52.547102],[-1.336566,52.548612],[-1.338054,52.551725],[-1.339113,52.552902],[-1.338991,52.554587],[-1.337286,52.556322],[-1.332462,52.558428],[-1.332519,52.559368],[-1.334887,52.560193],[-1.329271,52.565989],[-1.325825,52.56493],[-1.32371,52.567794],[-1.319143,52.567066],[-1.319754,52.565895],[-1.312923,52.563542],[-1.311831,52.562086],[-1.310138,52.5627],[-1.308325,52.562572],[-1.306746,52.562909],[-1.305643,52.561827],[-1.303646,52.561905],[-1.302023,52.561389],[-1.298388,52.562655],[-1.298094,52.563718],[-1.295466,52.563405],[-1.28933,52.564617],[-1.288913,52.56365],[-1.285569,52.563278],[-1.282274,52.563234],[-1.280411,52.56387],[-1.279697,52.56469],[-1.278157,52.564902],[-1.275251,52.56445],[-1.273602,52.565939],[-1.272916,52.565972],[-1.271796,52.567766],[-1.272579,52.568344],[-1.270205,52.568916],[-1.269361,52.570793],[-1.268112,52.570952],[-1.267599,52.571889],[-1.268894,52.572103],[-1.269466,52.573792],[-1.270618,52.574635],[-1.273529,52.57487],[-1.280711,52.576078],[-1.283988,52.576958],[-1.286425,52.578095],[-1.289358,52.578313],[-1.29709,52.58001],[-1.295627,52.582479],[-1.295314,52.583837],[-1.296307,52.585507],[-1.298342,52.585991],[-1.295902,52.588402],[-1.294116,52.589312],[-1.292053,52.591301],[-1.291247,52.592599],[-1.284896,52.595265],[-1.281544,52.597466],[-1.276973,52.599385],[-1.274584,52.600984],[-1.274698,52.602749],[-1.278027,52.604659],[-1.279836,52.607269],[-1.27426,52.609792],[-1.277286,52.611502],[-1.274131,52.612852],[-1.273358,52.611295],[-1.271775,52.614562],[-1.274385,52.61502],[-1.274479,52.61617],[-1.264621,52.614417],[-1.26504,52.614967],[-1.257413,52.616253],[-1.257787,52.62079],[-1.260001,52.623828],[-1.260509,52.625389],[-1.262811,52.626971],[-1.261723,52.628337],[-1.260468,52.62888],[-1.254326,52.630234],[-1.252475,52.630239],[-1.251391,52.631669],[-1.249395,52.631562],[-1.248354,52.632507],[-1.246401,52.632408],[-1.240758,52.633617],[-1.244077,52.635886],[-1.247153,52.636108],[-1.248461,52.636536],[-1.250674,52.636128],[-1.251542,52.636514],[-1.253437,52.636263],[-1.253726,52.635099],[-1.256112,52.634352],[-1.255968,52.635537],[-1.257269,52.635829],[-1.259203,52.636876],[-1.261372,52.636265],[-1.261802,52.637066],[-1.259306,52.637194],[-1.257494,52.638185],[-1.256873,52.63789],[-1.254629,52.638604],[-1.251233,52.63896],[-1.248593,52.64022],[-1.247368,52.639794],[-1.243961,52.640678],[-1.243057,52.641493],[-1.238689,52.641295],[-1.23645,52.641739],[-1.233434,52.640453],[-1.232373,52.641626],[-1.229254,52.642444],[-1.225081,52.64408],[-1.223145,52.646262],[-1.224266,52.646252],[-1.227046,52.648573],[-1.228627,52.649066],[-1.225649,52.65052],[-1.225242,52.650237],[-1.220684,52.651095],[-1.218328,52.651161],[-1.215948,52.652015],[-1.214106,52.653339],[-1.214243,52.653872],[-1.210539,52.655215],[-1.209623,52.658538],[-1.208289,52.65981],[-1.203097,52.661917],[-1.202594,52.663949],[-1.199682,52.664402]]]},"properties":{"LAD22CD":"E07000132","LAD22NM":"Hinckley and Bosworth","BNG_E":439538,"BNG_N":301379,"LONG":-1.41755,"LAT":52.60877,"GlobalID":"ae8a6c44-db4a-4d04-bf20-e741af1c4606"},"id":154}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.778279,52.976923],[-0.780091,52.9773],[-0.7818,52.976446],[-0.783176,52.976935],[-0.784344,52.976419],[-0.787565,52.977679],[-0.788855,52.976693],[-0.790508,52.977224],[-0.79615,52.976731],[-0.799112,52.974349],[-0.799855,52.973169],[-0.800827,52.973167],[-0.803023,52.971725],[-0.804042,52.971619],[-0.805241,52.96809],[-0.806899,52.966727],[-0.809813,52.96598],[-0.809894,52.964968],[-0.811988,52.960803],[-0.811758,52.959825],[-0.812467,52.959135],[-0.812851,52.957464],[-0.813702,52.956994],[-0.820022,52.960464],[-0.832856,52.9496],[-0.830882,52.948585],[-0.833909,52.94588],[-0.828057,52.944545],[-0.822539,52.944143],[-0.824361,52.94179],[-0.827541,52.941694],[-0.83489,52.939346],[-0.836219,52.938098],[-0.835331,52.9378],[-0.836778,52.935792],[-0.841333,52.931109],[-0.840597,52.930364],[-0.842406,52.928517],[-0.841373,52.928383],[-0.848227,52.923588],[-0.852982,52.921096],[-0.854156,52.920899],[-0.857504,52.918883],[-0.858259,52.917498],[-0.860485,52.915817],[-0.862894,52.913114],[-0.863748,52.911325],[-0.860441,52.909834],[-0.861256,52.908626],[-0.857634,52.905642],[-0.860243,52.90402],[-0.869504,52.900264],[-0.873009,52.898171],[-0.87432,52.898218],[-0.87872,52.895713],[-0.886986,52.891927],[-0.888996,52.891539],[-0.896264,52.889183],[-0.89904,52.887921],[-0.900892,52.887558],[-0.906527,52.885218],[-0.906035,52.884649],[-0.909123,52.883666],[-0.911977,52.883561],[-0.91178,52.882246],[-0.914339,52.882451],[-0.914851,52.880787],[-0.916925,52.878932],[-0.920457,52.879661],[-0.920683,52.87918],[-0.92596,52.878819],[-0.927875,52.878349],[-0.930347,52.878985],[-0.931574,52.878013],[-0.933698,52.877149],[-0.933908,52.876619],[-0.940574,52.876856],[-0.93999,52.875102],[-0.936064,52.871811],[-0.932717,52.870063],[-0.928122,52.866083],[-0.934231,52.8641],[-0.93541,52.863208],[-0.938463,52.861963],[-0.940827,52.861564],[-0.940551,52.859777],[-0.938675,52.858991],[-0.939389,52.858025],[-0.939186,52.856812],[-0.940114,52.855329],[-0.94184,52.854553],[-0.942414,52.853547],[-0.946272,52.85227],[-0.947835,52.851383],[-0.950306,52.851682],[-0.951737,52.850506],[-0.952772,52.850409],[-0.95461,52.849004],[-0.954969,52.847644],[-0.957454,52.846317],[-0.957774,52.845242],[-0.95919,52.84519],[-0.960852,52.843357],[-0.970613,52.844985],[-0.972318,52.843236],[-0.973074,52.84314],[-0.977075,52.840738],[-0.977364,52.83664],[-0.973915,52.834324],[-0.974924,52.833012],[-0.975359,52.830651],[-0.974778,52.829939],[-0.975725,52.828315],[-0.977167,52.828127],[-0.977377,52.826563],[-0.978137,52.824541],[-0.97993,52.823631],[-0.981446,52.822198],[-0.981314,52.821689],[-0.983491,52.82037],[-0.987668,52.819423],[-0.989004,52.81825],[-0.991535,52.819759],[-0.995676,52.82127],[-0.99858,52.820567],[-1.001678,52.820424],[-1.010181,52.821733],[-1.015549,52.82153],[-1.019207,52.821745],[-1.019629,52.822162],[-1.021933,52.822052],[-1.025145,52.820057],[-1.025586,52.819453],[-1.02799,52.819625],[-1.029919,52.818106],[-1.034819,52.816877],[-1.036289,52.815877],[-1.036231,52.812684],[-1.036997,52.810364],[-1.042422,52.801169],[-1.046624,52.780955],[-1.040647,52.777409],[-1.037949,52.775033],[-1.043482,52.771622],[-1.04208,52.76978],[-1.045345,52.767206],[-1.045908,52.766027],[-1.041424,52.766059],[-1.041541,52.763143],[-1.03861,52.763315],[-1.038537,52.761468],[-1.036842,52.758371],[-1.034721,52.757108],[-1.030382,52.756186],[-1.03366,52.753376],[-1.032321,52.751999],[-1.03353,52.751127],[-1.033053,52.749789],[-1.031159,52.748282],[-1.031481,52.747984],[-1.028568,52.744818],[-1.023666,52.74074],[-1.024256,52.740482],[-1.021845,52.737811],[-1.019423,52.73713],[-1.019934,52.735794],[-1.022986,52.734676],[-1.027453,52.734941],[-1.019911,52.72698],[-1.018768,52.726802],[-1.017245,52.724468],[-1.0082,52.72404],[-1.004716,52.723602],[-1.001051,52.723662],[-1.000668,52.722283],[-1.001089,52.720075],[-1.003563,52.720201],[-1.003279,52.717252],[-1.004855,52.717096],[-1.007651,52.717386],[-1.010795,52.714455],[-1.012699,52.713238],[-1.01336,52.713611],[-1.015477,52.710965],[-1.013224,52.710235],[-1.01341,52.7096],[-1.011558,52.706483],[-1.00966,52.705829],[-1.00676,52.70534],[-1.004847,52.704519],[-1.006313,52.698627],[-1.006097,52.69838],[-0.996041,52.695787],[-0.992732,52.695346],[-0.971169,52.691039],[-0.961011,52.684746],[-0.956168,52.682666],[-0.954746,52.684061],[-0.947238,52.682729],[-0.948924,52.680381],[-0.943399,52.678067],[-0.941304,52.676811],[-0.934749,52.674558],[-0.91605,52.671141],[-0.914973,52.671404],[-0.913821,52.672511],[-0.913183,52.673969],[-0.912442,52.674321],[-0.912788,52.676556],[-0.909767,52.677117],[-0.905431,52.675612],[-0.903708,52.675727],[-0.901555,52.674751],[-0.90026,52.674966],[-0.899554,52.674224],[-0.896802,52.674681],[-0.895833,52.673966],[-0.893932,52.674411],[-0.890208,52.674175],[-0.887644,52.674555],[-0.887227,52.675119],[-0.883501,52.675606],[-0.882556,52.67596],[-0.880626,52.677605],[-0.874419,52.679874],[-0.873316,52.681135],[-0.872606,52.684351],[-0.866694,52.684935],[-0.861776,52.684339],[-0.859739,52.684377],[-0.855546,52.684974],[-0.854745,52.683305],[-0.856373,52.679799],[-0.859045,52.676098],[-0.858266,52.674879],[-0.858745,52.673763],[-0.855397,52.673334],[-0.843037,52.675516],[-0.841121,52.675557],[-0.833982,52.672705],[-0.831901,52.670625],[-0.83063,52.6678],[-0.829233,52.662789],[-0.830173,52.660743],[-0.829549,52.658753],[-0.827711,52.658829],[-0.825396,52.658103],[-0.823401,52.658045],[-0.816967,52.656667],[-0.809529,52.657612],[-0.809487,52.657183],[-0.811583,52.65502],[-0.813522,52.652029],[-0.817188,52.649962],[-0.821461,52.650405],[-0.822604,52.651271],[-0.823228,52.649179],[-0.822272,52.647254],[-0.82018,52.647925],[-0.816085,52.645971],[-0.808693,52.646126],[-0.807399,52.646818],[-0.807078,52.647695],[-0.805498,52.64763],[-0.804375,52.649462],[-0.80158,52.651895],[-0.798815,52.657152],[-0.797408,52.657647],[-0.794888,52.656976],[-0.793876,52.659112],[-0.792918,52.659683],[-0.794519,52.660889],[-0.793593,52.663376],[-0.791125,52.66516],[-0.79014,52.667185],[-0.784537,52.667299],[-0.783366,52.667878],[-0.782195,52.66914],[-0.782116,52.670476],[-0.783223,52.672473],[-0.784235,52.675083],[-0.783992,52.677],[-0.783846,52.68195],[-0.785055,52.684713],[-0.786782,52.687202],[-0.785548,52.692849],[-0.786045,52.694741],[-0.790075,52.694384],[-0.793107,52.696172],[-0.795744,52.69685],[-0.796371,52.699986],[-0.795538,52.701548],[-0.796342,52.703627],[-0.797483,52.704061],[-0.799498,52.703506],[-0.802428,52.703265],[-0.803368,52.704649],[-0.800235,52.707798],[-0.813166,52.712296],[-0.813213,52.713471],[-0.814573,52.713495],[-0.815187,52.714973],[-0.821753,52.715678],[-0.820902,52.717638],[-0.818599,52.719585],[-0.817737,52.721562],[-0.818397,52.722642],[-0.816623,52.724649],[-0.815172,52.725805],[-0.813716,52.72748],[-0.813573,52.728964],[-0.812906,52.729476],[-0.810138,52.730031],[-0.805631,52.731623],[-0.803285,52.733969],[-0.801192,52.736743],[-0.79563,52.737013],[-0.794245,52.73798],[-0.793254,52.739491],[-0.789143,52.740024],[-0.787085,52.740955],[-0.783589,52.740388],[-0.780673,52.740575],[-0.779744,52.741799],[-0.778162,52.742477],[-0.776485,52.743934],[-0.775543,52.743536],[-0.773734,52.744188],[-0.772715,52.743797],[-0.770212,52.743628],[-0.770411,52.742913],[-0.767827,52.742991],[-0.764125,52.74054],[-0.764726,52.739194],[-0.762708,52.738312],[-0.761596,52.738822],[-0.760023,52.738652],[-0.757978,52.739736],[-0.756678,52.738531],[-0.754857,52.738958],[-0.754621,52.73774],[-0.753319,52.736575],[-0.751515,52.736736],[-0.745141,52.738409],[-0.742971,52.738373],[-0.733811,52.739757],[-0.729069,52.739412],[-0.728881,52.740038],[-0.723736,52.740398],[-0.72021,52.740962],[-0.720364,52.74163],[-0.717702,52.741976],[-0.718197,52.744798],[-0.707545,52.745594],[-0.70428,52.74616],[-0.701708,52.746063],[-0.699938,52.746613],[-0.696157,52.746529],[-0.696967,52.74922],[-0.690041,52.752004],[-0.684351,52.75311],[-0.684077,52.754869],[-0.684429,52.75648],[-0.674515,52.757956],[-0.674087,52.756943],[-0.6649,52.756478],[-0.664102,52.75671],[-0.668165,52.762062],[-0.66951,52.766296],[-0.672757,52.771437],[-0.674355,52.776754],[-0.67566,52.77754],[-0.675507,52.781018],[-0.676959,52.785693],[-0.67455,52.785527],[-0.67411,52.787768],[-0.677494,52.788359],[-0.677299,52.789986],[-0.681584,52.791129],[-0.683107,52.794683],[-0.682754,52.798961],[-0.680629,52.807213],[-0.682175,52.810716],[-0.682041,52.811796],[-0.686497,52.816289],[-0.687919,52.818255],[-0.6924,52.821781],[-0.695604,52.823565],[-0.698388,52.825999],[-0.703653,52.833672],[-0.705831,52.838053],[-0.706541,52.840372],[-0.708218,52.843495],[-0.71019,52.845838],[-0.719206,52.854412],[-0.72184,52.856002],[-0.724592,52.858825],[-0.729105,52.862163],[-0.733673,52.866922],[-0.73615,52.870091],[-0.73611,52.872966],[-0.739175,52.87695],[-0.740425,52.880045],[-0.742723,52.883157],[-0.745532,52.882792],[-0.747735,52.882975],[-0.750077,52.88395],[-0.757157,52.885984],[-0.757756,52.884276],[-0.760335,52.885197],[-0.761661,52.884555],[-0.766592,52.886798],[-0.766206,52.88843],[-0.76394,52.890859],[-0.763566,52.891995],[-0.764317,52.892478],[-0.763989,52.893645],[-0.762489,52.894458],[-0.759832,52.898728],[-0.758675,52.899493],[-0.75911,52.900717],[-0.761714,52.90049],[-0.761773,52.901332],[-0.763696,52.901075],[-0.763967,52.903142],[-0.76879,52.901954],[-0.770009,52.903717],[-0.773801,52.902536],[-0.77686,52.904809],[-0.775429,52.905758],[-0.774543,52.907343],[-0.77302,52.909041],[-0.771982,52.912512],[-0.768877,52.916281],[-0.768712,52.917433],[-0.769445,52.919607],[-0.768436,52.920624],[-0.766738,52.92149],[-0.767483,52.922464],[-0.766577,52.922946],[-0.762919,52.923796],[-0.765515,52.925881],[-0.766107,52.928026],[-0.765249,52.929902],[-0.761871,52.93419],[-0.762087,52.935965],[-0.760871,52.937732],[-0.759536,52.94135],[-0.756846,52.944602],[-0.757923,52.946321],[-0.755507,52.947132],[-0.755822,52.947776],[-0.75495,52.949556],[-0.755468,52.950539],[-0.756947,52.950993],[-0.75947,52.952846],[-0.759999,52.952712],[-0.76454,52.954936],[-0.770322,52.9569],[-0.773674,52.958505],[-0.774314,52.958111],[-0.776418,52.959135],[-0.778438,52.959314],[-0.778368,52.960344],[-0.779258,52.961333],[-0.778009,52.962833],[-0.778299,52.965337],[-0.777715,52.966928],[-0.777673,52.972063],[-0.777109,52.974578],[-0.778224,52.975033],[-0.777278,52.976035],[-0.778279,52.976923]]]},"properties":{"LAD22CD":"E07000133","LAD22NM":"Melton","BNG_E":477328,"BNG_N":323472,"LONG":-0.8544,"LAT":52.80329,"GlobalID":"3e8154d8-10e5-4140-88c3-ba720d629787"},"id":155}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.267889,52.873369],[-1.271475,52.874991],[-1.274653,52.87553],[-1.278428,52.875593],[-1.280606,52.875286],[-1.286002,52.872631],[-1.289487,52.872458],[-1.295936,52.874775],[-1.298893,52.875377],[-1.30233,52.875564],[-1.305995,52.87708],[-1.307459,52.875671],[-1.307802,52.874093],[-1.310683,52.873183],[-1.31616,52.873469],[-1.319307,52.872869],[-1.319047,52.87],[-1.319328,52.869498],[-1.323104,52.868297],[-1.324343,52.866594],[-1.325333,52.865982],[-1.327906,52.865841],[-1.331049,52.867147],[-1.332795,52.867175],[-1.336971,52.865139],[-1.338882,52.864611],[-1.340387,52.865072],[-1.34121,52.866436],[-1.342604,52.867614],[-1.344863,52.867533],[-1.345925,52.866811],[-1.346416,52.865222],[-1.34346,52.863259],[-1.343404,52.862795],[-1.34747,52.861268],[-1.348261,52.859357],[-1.351895,52.857639],[-1.352095,52.856402],[-1.350495,52.854749],[-1.351,52.853415],[-1.353113,52.853439],[-1.353927,52.855019],[-1.355021,52.855956],[-1.358057,52.856088],[-1.360719,52.855371],[-1.363927,52.853937],[-1.365537,52.851573],[-1.366937,52.850203],[-1.369854,52.848739],[-1.372415,52.8479],[-1.379366,52.846624],[-1.381125,52.846049],[-1.382771,52.844724],[-1.383126,52.843634],[-1.384786,52.843105],[-1.38595,52.841149],[-1.385493,52.840705],[-1.388213,52.839403],[-1.387577,52.838909],[-1.394323,52.836773],[-1.393123,52.834049],[-1.391503,52.833562],[-1.389512,52.833586],[-1.387936,52.833098],[-1.392078,52.829524],[-1.395581,52.825608],[-1.396979,52.824907],[-1.397794,52.823523],[-1.399313,52.821839],[-1.402319,52.820131],[-1.403567,52.818484],[-1.405206,52.818694],[-1.405791,52.81736],[-1.404134,52.816644],[-1.408753,52.812344],[-1.410164,52.810132],[-1.411777,52.809173],[-1.414032,52.807076],[-1.417065,52.803056],[-1.417705,52.801615],[-1.424974,52.801323],[-1.42599,52.800613],[-1.430097,52.802081],[-1.433544,52.802095],[-1.436227,52.802595],[-1.441379,52.802067],[-1.441002,52.798724],[-1.441973,52.797082],[-1.443115,52.796618],[-1.44189,52.793533],[-1.442502,52.792905],[-1.445163,52.792369],[-1.446811,52.791505],[-1.448046,52.790287],[-1.44996,52.789858],[-1.452183,52.789964],[-1.454873,52.788987],[-1.457539,52.78859],[-1.462808,52.786793],[-1.460876,52.786026],[-1.458841,52.784437],[-1.458293,52.78281],[-1.461052,52.781738],[-1.45937,52.779805],[-1.457092,52.779091],[-1.460414,52.776229],[-1.46042,52.774672],[-1.462155,52.771376],[-1.463549,52.771045],[-1.466452,52.767972],[-1.468342,52.767386],[-1.468756,52.766791],[-1.471831,52.766249],[-1.473344,52.76549],[-1.47714,52.765971],[-1.478463,52.763688],[-1.479926,52.763859],[-1.487793,52.762345],[-1.488252,52.762513],[-1.492428,52.759452],[-1.493984,52.759047],[-1.496453,52.760351],[-1.498763,52.764278],[-1.502122,52.766663],[-1.503943,52.767462],[-1.511785,52.7674],[-1.517691,52.766971],[-1.522014,52.765891],[-1.525348,52.765528],[-1.525003,52.763984],[-1.526929,52.762315],[-1.529584,52.761094],[-1.532938,52.762572],[-1.534781,52.762006],[-1.537321,52.760473],[-1.53962,52.760086],[-1.54185,52.76056],[-1.544747,52.763061],[-1.547442,52.764134],[-1.552787,52.763333],[-1.552698,52.762097],[-1.554843,52.762021],[-1.554426,52.75842],[-1.557629,52.757161],[-1.558142,52.755532],[-1.560388,52.752116],[-1.562493,52.750587],[-1.560477,52.748644],[-1.560758,52.748109],[-1.557448,52.744903],[-1.556733,52.740529],[-1.556175,52.739814],[-1.554702,52.739388],[-1.553308,52.738314],[-1.550915,52.735409],[-1.545334,52.732921],[-1.544639,52.73169],[-1.545226,52.73103],[-1.545318,52.728237],[-1.546658,52.727306],[-1.547768,52.727266],[-1.548661,52.726367],[-1.550242,52.725619],[-1.549914,52.724244],[-1.550436,52.723112],[-1.549959,52.722146],[-1.55008,52.720278],[-1.552386,52.719332],[-1.555573,52.717628],[-1.556519,52.716666],[-1.558457,52.716577],[-1.558727,52.715554],[-1.560452,52.714291],[-1.560553,52.713726],[-1.562228,52.713133],[-1.56387,52.711197],[-1.565011,52.711192],[-1.566092,52.710255],[-1.568848,52.709802],[-1.569285,52.710387],[-1.571648,52.710618],[-1.574606,52.712039],[-1.578008,52.711411],[-1.579281,52.709567],[-1.582825,52.709055],[-1.583823,52.707891],[-1.585772,52.707494],[-1.588932,52.706353],[-1.591597,52.705974],[-1.592165,52.705052],[-1.591076,52.704669],[-1.591555,52.703655],[-1.593956,52.703722],[-1.594955,52.702747],[-1.59629,52.703067],[-1.596124,52.701489],[-1.597541,52.700422],[-1.596998,52.70045],[-1.590882,52.698064],[-1.589748,52.696062],[-1.587989,52.695535],[-1.587082,52.694287],[-1.588614,52.692775],[-1.588464,52.690685],[-1.589645,52.687261],[-1.58446,52.685104],[-1.581431,52.682448],[-1.579427,52.679626],[-1.576864,52.67836],[-1.57031,52.679726],[-1.569106,52.679667],[-1.566475,52.677602],[-1.569159,52.676774],[-1.570428,52.675843],[-1.56604,52.674425],[-1.560021,52.671321],[-1.554792,52.669455],[-1.552807,52.668462],[-1.551772,52.667455],[-1.543831,52.666698],[-1.538604,52.667557],[-1.53889,52.665772],[-1.536825,52.665736],[-1.527544,52.667911],[-1.517847,52.670883],[-1.508205,52.674841],[-1.506339,52.675317],[-1.504323,52.67625],[-1.503035,52.677564],[-1.500611,52.676599],[-1.495934,52.67256],[-1.496229,52.671526],[-1.495439,52.669689],[-1.494015,52.669048],[-1.487669,52.671221],[-1.485647,52.673151],[-1.481848,52.674984],[-1.478859,52.677007],[-1.477019,52.677715],[-1.473353,52.670867],[-1.469418,52.671262],[-1.467449,52.669123],[-1.467168,52.668065],[-1.458999,52.667989],[-1.458896,52.667033],[-1.456501,52.666806],[-1.456944,52.664843],[-1.445743,52.663958],[-1.444469,52.665742],[-1.441732,52.666442],[-1.4374,52.670071],[-1.437297,52.670882],[-1.43817,52.671777],[-1.437837,52.672767],[-1.43888,52.673317],[-1.439009,52.674933],[-1.436304,52.676799],[-1.434828,52.67701],[-1.431342,52.678793],[-1.430494,52.67952],[-1.430376,52.681698],[-1.428999,52.682646],[-1.424204,52.684003],[-1.421456,52.683347],[-1.419847,52.680321],[-1.41819,52.678231],[-1.413869,52.676282],[-1.41205,52.674813],[-1.409342,52.673673],[-1.406964,52.673125],[-1.402196,52.6731],[-1.401916,52.67208],[-1.399054,52.672455],[-1.396708,52.673623],[-1.394458,52.673441],[-1.391444,52.674006],[-1.383701,52.67433],[-1.383646,52.675712],[-1.381991,52.675316],[-1.373929,52.677193],[-1.371308,52.678393],[-1.368416,52.678562],[-1.366464,52.679049],[-1.365299,52.680198],[-1.363319,52.680078],[-1.36251,52.678441],[-1.360588,52.676476],[-1.35964,52.678071],[-1.360486,52.67896],[-1.360712,52.680538],[-1.358338,52.682819],[-1.353956,52.684974],[-1.348442,52.685038],[-1.349955,52.689391],[-1.342609,52.690259],[-1.351097,52.694157],[-1.344786,52.694824],[-1.341917,52.695431],[-1.331251,52.698668],[-1.324636,52.699741],[-1.322293,52.700243],[-1.31812,52.70198],[-1.311005,52.705744],[-1.308801,52.706428],[-1.299234,52.707427],[-1.291736,52.709442],[-1.289577,52.711838],[-1.288732,52.7121],[-1.285283,52.715289],[-1.282714,52.714642],[-1.280521,52.71486],[-1.277518,52.716403],[-1.266297,52.723438],[-1.262468,52.724271],[-1.266353,52.728589],[-1.262552,52.730009],[-1.263361,52.730907],[-1.257899,52.732889],[-1.255096,52.734327],[-1.250782,52.736083],[-1.249528,52.735273],[-1.247141,52.736369],[-1.249805,52.738274],[-1.251186,52.738533],[-1.251118,52.740873],[-1.258511,52.74444],[-1.263969,52.744572],[-1.267083,52.745758],[-1.265926,52.747084],[-1.266865,52.747451],[-1.267829,52.745656],[-1.27256,52.742192],[-1.275298,52.739545],[-1.279791,52.738083],[-1.286665,52.734695],[-1.287487,52.733972],[-1.29341,52.737041],[-1.294363,52.737104],[-1.297799,52.740527],[-1.297914,52.743058],[-1.29906,52.745396],[-1.300334,52.746487],[-1.305403,52.748538],[-1.306834,52.747845],[-1.308556,52.747804],[-1.311391,52.750254],[-1.312603,52.750278],[-1.31384,52.749122],[-1.319051,52.749943],[-1.32129,52.751317],[-1.32139,52.75331],[-1.32374,52.754902],[-1.324892,52.754844],[-1.325766,52.753819],[-1.328445,52.753247],[-1.329285,52.752344],[-1.332379,52.753018],[-1.331509,52.75555],[-1.334464,52.756979],[-1.333387,52.760203],[-1.334468,52.76187],[-1.33477,52.763165],[-1.334014,52.76384],[-1.329058,52.766401],[-1.328498,52.768239],[-1.32911,52.76976],[-1.327766,52.772472],[-1.328049,52.774666],[-1.327703,52.775701],[-1.322676,52.779115],[-1.319677,52.783525],[-1.318961,52.785389],[-1.315215,52.785338],[-1.31448,52.784687],[-1.311491,52.784589],[-1.308374,52.785246],[-1.30526,52.784986],[-1.303318,52.784022],[-1.299976,52.784392],[-1.296326,52.78412],[-1.293091,52.783396],[-1.291413,52.782349],[-1.289994,52.783834],[-1.28862,52.784182],[-1.285567,52.783742],[-1.279879,52.783848],[-1.27867,52.783177],[-1.274828,52.787573],[-1.275986,52.787952],[-1.278818,52.788218],[-1.279608,52.788683],[-1.279615,52.792302],[-1.279134,52.794288],[-1.278183,52.795087],[-1.278886,52.796066],[-1.27684,52.796728],[-1.27645,52.800328],[-1.274564,52.800557],[-1.27411,52.802302],[-1.272432,52.802268],[-1.2719,52.804656],[-1.270986,52.804551],[-1.268575,52.807773],[-1.261927,52.810453],[-1.263378,52.81504],[-1.260018,52.818983],[-1.260943,52.820163],[-1.262051,52.820554],[-1.265088,52.820632],[-1.268945,52.823062],[-1.270885,52.823749],[-1.271253,52.824479],[-1.270889,52.828308],[-1.271354,52.831583],[-1.272151,52.832514],[-1.273983,52.833599],[-1.274364,52.836129],[-1.272331,52.83695],[-1.269336,52.836643],[-1.266934,52.83747],[-1.267572,52.838879],[-1.270514,52.839979],[-1.269072,52.840334],[-1.266398,52.842227],[-1.266212,52.842753],[-1.267771,52.845171],[-1.270841,52.84617],[-1.271093,52.847539],[-1.272206,52.84944],[-1.271087,52.851169],[-1.270604,52.85385],[-1.268215,52.856201],[-1.266759,52.856256],[-1.265084,52.856943],[-1.264567,52.858369],[-1.267135,52.859828],[-1.269007,52.858934],[-1.27067,52.858935],[-1.273792,52.8595],[-1.275283,52.86038],[-1.272755,52.862183],[-1.271527,52.864006],[-1.271579,52.865267],[-1.269504,52.866544],[-1.269657,52.867206],[-1.271534,52.868194],[-1.270783,52.869212],[-1.270148,52.871772],[-1.267889,52.873369]]]},"properties":{"LAD22CD":"E07000134","LAD22NM":"North West Leicestershire","BNG_E":439111,"BNG_N":316252,"LONG":-1.42209,"LAT":52.7425,"GlobalID":"1462f420-bfa1-4428-af12-0e136cb9cfc0"},"id":156}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.082894,52.556579],[-1.079603,52.563114],[-1.077976,52.563696],[-1.078963,52.566021],[-1.076952,52.566311],[-1.077265,52.567854],[-1.076314,52.568057],[-1.076877,52.570273],[-1.073859,52.571549],[-1.076271,52.572775],[-1.074802,52.573995],[-1.075423,52.574663],[-1.073323,52.575991],[-1.071067,52.576803],[-1.07094,52.577306],[-1.069062,52.578252],[-1.067363,52.579802],[-1.06511,52.579902],[-1.058372,52.585376],[-1.049855,52.591344],[-1.041358,52.59801],[-1.044744,52.600078],[-1.052443,52.601568],[-1.057654,52.60325],[-1.059896,52.603249],[-1.059763,52.60395],[-1.062479,52.604247],[-1.061615,52.606019],[-1.058968,52.609047],[-1.062282,52.61012],[-1.06696,52.612187],[-1.069523,52.612663],[-1.069146,52.613261],[-1.070955,52.61391],[-1.070037,52.614752],[-1.068001,52.615369],[-1.06666,52.617034],[-1.07049,52.618067],[-1.07154,52.617507],[-1.073225,52.614596],[-1.074338,52.613445],[-1.077022,52.61434],[-1.082424,52.614934],[-1.082173,52.615712],[-1.084009,52.615924],[-1.083914,52.615063],[-1.086225,52.615022],[-1.093234,52.616166],[-1.096634,52.616379],[-1.097102,52.613744],[-1.098303,52.61109],[-1.094847,52.610266],[-1.093382,52.610287],[-1.093593,52.608688],[-1.096974,52.606274],[-1.09882,52.603263],[-1.100206,52.602446],[-1.101627,52.602242],[-1.101922,52.59931],[-1.103902,52.597991],[-1.10479,52.59639],[-1.107443,52.595655],[-1.10944,52.596386],[-1.109852,52.597365],[-1.112887,52.596951],[-1.11794,52.597016],[-1.120171,52.597544],[-1.120786,52.595525],[-1.121927,52.595823],[-1.126798,52.595644],[-1.126442,52.592924],[-1.126606,52.591055],[-1.128023,52.590989],[-1.12967,52.591531],[-1.130852,52.589963],[-1.136068,52.589425],[-1.138207,52.589466],[-1.141266,52.590003],[-1.14086,52.587693],[-1.143619,52.588025],[-1.143594,52.586465],[-1.144513,52.585548],[-1.143235,52.584591],[-1.143219,52.582328],[-1.143594,52.581281],[-1.140961,52.581551],[-1.139721,52.577969],[-1.140709,52.576381],[-1.136586,52.575106],[-1.136984,52.574022],[-1.13499,52.574176],[-1.134603,52.573597],[-1.132847,52.573613],[-1.133055,52.572774],[-1.132359,52.569782],[-1.134388,52.565783],[-1.133523,52.56588],[-1.13367,52.564137],[-1.129395,52.563806],[-1.130179,52.562248],[-1.126632,52.56199],[-1.124798,52.564994],[-1.125372,52.565511],[-1.125137,52.566919],[-1.124328,52.567413],[-1.124372,52.568737],[-1.121607,52.567628],[-1.120404,52.566468],[-1.116597,52.567037],[-1.115793,52.565911],[-1.113212,52.566031],[-1.109937,52.565789],[-1.107143,52.564311],[-1.10519,52.564985],[-1.101844,52.565525],[-1.096997,52.565549],[-1.094375,52.563701],[-1.094749,52.561868],[-1.094266,52.561195],[-1.091146,52.560918],[-1.088644,52.559203],[-1.086189,52.559219],[-1.08501,52.557902],[-1.085551,52.557354],[-1.084898,52.556208],[-1.082894,52.556579]]]},"properties":{"LAD22CD":"E07000135","LAD22NM":"Oadby and Wigston","BNG_E":461543,"BNG_N":299379,"LONG":-1.093,"LAT":52.58875,"GlobalID":"ba732901-a6b8-44a9-b801-2a71b092e3d2"},"id":157}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.036982,52.872421],[-0.042882,52.87106],[-0.063649,52.865953],[-0.068949,52.8642],[-0.066022,52.8635],[-0.065631,52.862895],[-0.059243,52.863669],[-0.040349,52.868451],[-0.034955,52.870401],[-0.036982,52.872421]]],[[[0.046618,52.914827],[0.044164,52.914846],[0.042865,52.91264],[0.043238,52.910822],[0.045186,52.911034],[0.04876,52.913436],[0.046618,52.914827]]],[[[0.053104,52.916221],[0.047365,52.916104],[0.046853,52.915027],[0.047505,52.914388],[0.049417,52.913762],[0.0531,52.915841],[0.053104,52.916221]]],[[[0.060768,52.924749],[0.060534,52.925173],[0.056031,52.924326],[0.058597,52.923669],[0.062439,52.923892],[0.060768,52.924749]]],[[[0.097983,52.962361],[0.09654,52.963708],[0.093694,52.961073],[0.095101,52.960632],[0.097351,52.960624],[0.097983,52.962361]]],[[[0.101003,52.967511],[0.099303,52.967604],[0.098731,52.966061],[0.096906,52.964148],[0.098287,52.962494],[0.099177,52.963144],[0.099805,52.965274],[0.101219,52.966043],[0.101003,52.967511]]],[[[0.199586,53.032644],[0.192894,53.037682],[0.171453,53.04961],[0.163948,53.054164],[0.162796,53.053635],[0.160328,53.053496],[0.158244,53.054004],[0.15593,53.05593],[0.152368,53.056794],[0.150402,53.056872],[0.14971,53.057385],[0.146588,53.060778],[0.144816,53.064291],[0.143715,53.069233],[0.144248,53.069712],[0.141804,53.082311],[0.139751,53.084726],[0.139743,53.08522],[0.137083,53.086692],[0.131593,53.085247],[0.129234,53.08496],[0.124479,53.083396],[0.118336,53.080758],[0.096357,53.074443],[0.094543,53.074225],[0.093064,53.072813],[0.087487,53.071645],[0.082983,53.07167],[0.082757,53.070914],[0.048072,53.070704],[0.042022,53.070311],[0.040649,53.06991],[0.036218,53.069417],[0.044214,53.040797],[0.045497,53.038083],[0.045988,53.035472],[0.046589,53.035445],[0.046052,53.032198],[0.044661,53.03019],[0.035707,53.026782],[0.023148,53.01744],[0.020495,53.01695],[0.020481,53.016175],[0.017701,53.016024],[0.009684,53.012212],[0.000504,53.008852],[-0.004821,53.004865],[-0.006456,53.002774],[-0.007061,53.00112],[-0.010753,53.002017],[-0.014989,53.004734],[-0.01917,53.0043],[-0.0218,53.005334],[-0.023912,53.005685],[-0.032611,53.004817],[-0.051504,53.004902],[-0.055429,53.006757],[-0.063197,53.008959],[-0.063922,53.008226],[-0.112349,53.009975],[-0.114741,53.010258],[-0.118423,53.012017],[-0.138044,53.030042],[-0.164236,53.050081],[-0.189714,53.063139],[-0.19612,53.069557],[-0.198851,53.070355],[-0.204292,53.070243],[-0.206623,53.070576],[-0.21076,53.070154],[-0.211356,53.067519],[-0.214058,53.062385],[-0.217691,53.052707],[-0.217956,53.051645],[-0.220283,53.047963],[-0.218038,53.044728],[-0.218083,53.043493],[-0.220928,53.039415],[-0.219543,53.039057],[-0.223127,53.03483],[-0.222927,53.03354],[-0.224039,53.032889],[-0.224937,53.030143],[-0.224779,53.029042],[-0.223266,53.027533],[-0.220958,53.02651],[-0.220291,53.025841],[-0.216481,53.024026],[-0.215086,53.021564],[-0.213389,53.020731],[-0.214594,53.019165],[-0.214159,53.017357],[-0.212988,53.016212],[-0.209534,53.014635],[-0.207093,53.01231],[-0.206921,53.011143],[-0.203861,53.009324],[-0.20396,53.007805],[-0.202094,53.005947],[-0.201422,53.003999],[-0.199657,53.003494],[-0.193722,52.997772],[-0.189891,52.99641],[-0.196645,52.989015],[-0.198796,52.985606],[-0.19916,52.982973],[-0.198924,52.981777],[-0.199679,52.981204],[-0.201198,52.97746],[-0.215431,52.960862],[-0.224,52.956073],[-0.246705,52.928832],[-0.245615,52.92795],[-0.239342,52.926271],[-0.229972,52.924992],[-0.21938,52.924205],[-0.214198,52.923276],[-0.213908,52.923681],[-0.208757,52.922552],[-0.201971,52.920675],[-0.198416,52.918257],[-0.192479,52.917025],[-0.191667,52.915947],[-0.19229,52.915068],[-0.190669,52.914918],[-0.189697,52.915767],[-0.188476,52.915755],[-0.187926,52.91667],[-0.18605,52.916445],[-0.186513,52.915628],[-0.185044,52.914665],[-0.181638,52.914913],[-0.179896,52.915382],[-0.178208,52.916813],[-0.178458,52.91819],[-0.177871,52.919029],[-0.176257,52.918416],[-0.173399,52.918089],[-0.17153,52.917563],[-0.171694,52.916217],[-0.169722,52.914355],[-0.168129,52.914268],[-0.16737,52.912323],[-0.166095,52.912068],[-0.161314,52.912663],[-0.159413,52.912228],[-0.156587,52.912095],[-0.156855,52.910953],[-0.155177,52.909536],[-0.154271,52.907927],[-0.150606,52.90595],[-0.150679,52.904194],[-0.149907,52.902718],[-0.150904,52.901839],[-0.1502,52.900301],[-0.148585,52.90066],[-0.146764,52.898421],[-0.1485,52.898776],[-0.148742,52.897245],[-0.149511,52.896285],[-0.151029,52.896085],[-0.151635,52.894238],[-0.147359,52.891926],[-0.14697,52.891213],[-0.144735,52.890769],[-0.144741,52.88959],[-0.145383,52.888164],[-0.145253,52.887056],[-0.143463,52.886335],[-0.142652,52.884908],[-0.140973,52.884472],[-0.138206,52.884674],[-0.137765,52.885602],[-0.136494,52.88578],[-0.135178,52.884381],[-0.133568,52.885621],[-0.129192,52.881773],[-0.126088,52.880614],[-0.124278,52.880959],[-0.123723,52.881866],[-0.122042,52.882501],[-0.119995,52.882639],[-0.1166,52.881548],[-0.11783,52.881053],[-0.117392,52.880278],[-0.114121,52.878941],[-0.112391,52.877979],[-0.110015,52.877955],[-0.107465,52.876788],[-0.103793,52.876929],[-0.103223,52.876647],[-0.101452,52.874315],[-0.099091,52.873489],[-0.100359,52.87167],[-0.098584,52.872006],[-0.096989,52.871281],[-0.097421,52.87029],[-0.09445,52.866621],[-0.092826,52.866492],[-0.09099,52.867759],[-0.088881,52.865886],[-0.087288,52.865891],[-0.084794,52.864546],[-0.082052,52.865367],[-0.080475,52.866958],[-0.069776,52.864398],[-0.065082,52.86618],[-0.044435,52.871184],[-0.039171,52.87228],[-0.028569,52.875976],[-0.025274,52.877317],[-0.00669,52.885604],[-0.002288,52.887501],[0.010989,52.893434],[0.024289,52.898058],[0.026964,52.898887],[0.029729,52.900047],[0.027258,52.900556],[0.028548,52.901279],[0.030081,52.900322],[0.032281,52.90109],[0.036444,52.903248],[0.035637,52.904675],[0.032813,52.905788],[0.028883,52.906905],[0.027952,52.908086],[0.026357,52.908241],[0.027397,52.909341],[0.029828,52.908774],[0.028833,52.907678],[0.029387,52.90701],[0.031846,52.906354],[0.035868,52.904918],[0.036448,52.905607],[0.038156,52.90587],[0.044867,52.910825],[0.043182,52.910712],[0.042825,52.912807],[0.044028,52.914873],[0.046628,52.915219],[0.047022,52.91619],[0.043457,52.917329],[0.043144,52.918236],[0.047029,52.916658],[0.049285,52.91649],[0.050274,52.917683],[0.051722,52.91718],[0.053009,52.917893],[0.05459,52.919705],[0.055951,52.919446],[0.060588,52.921542],[0.062907,52.922947],[0.061115,52.922989],[0.055351,52.92439],[0.059024,52.925116],[0.060476,52.925225],[0.060802,52.925028],[0.060968,52.9247],[0.065411,52.924094],[0.067144,52.926057],[0.068964,52.926521],[0.06921,52.927764],[0.070672,52.928995],[0.070603,52.929902],[0.076438,52.93151],[0.065772,52.930085],[0.055429,52.930082],[0.047251,52.931308],[0.039526,52.933078],[0.036852,52.933908],[0.034461,52.934927],[0.032845,52.936324],[0.030375,52.937342],[0.027711,52.937375],[0.022443,52.939512],[0.02286,52.939951],[0.018961,52.943444],[0.011143,52.950023],[0.002662,52.95616],[-0.001975,52.959865],[-0.009894,52.966703],[-0.012274,52.967338],[-0.015034,52.967146],[-0.018467,52.967382],[-0.021483,52.966299],[-0.02309,52.96607],[-0.025793,52.966794],[-0.026174,52.968612],[-0.025493,52.968665],[-0.024636,52.967043],[-0.022634,52.966524],[-0.018392,52.967777],[-0.014766,52.967841],[-0.012904,52.968426],[-0.008676,52.96686],[-0.004916,52.963964],[-0.000849,52.960419],[0.001347,52.95937],[0.004917,52.955558],[0.011693,52.951093],[0.025526,52.939473],[0.031385,52.93836],[0.040216,52.934234],[0.04498,52.932771],[0.051382,52.93149],[0.057238,52.930956],[0.063024,52.930954],[0.068758,52.931418],[0.07414,52.932473],[0.07819,52.93365],[0.078347,52.934955],[0.07687,52.937126],[0.07789,52.938251],[0.079781,52.942495],[0.079166,52.94335],[0.081592,52.944301],[0.082166,52.946253],[0.083246,52.946243],[0.084554,52.947269],[0.083484,52.94848],[0.085397,52.94996],[0.085955,52.951042],[0.089358,52.953313],[0.091641,52.955786],[0.093252,52.956497],[0.093634,52.959449],[0.095819,52.959972],[0.09484,52.960692],[0.092227,52.960836],[0.094259,52.961871],[0.096289,52.963988],[0.098324,52.965747],[0.099405,52.967894],[0.1011,52.967619],[0.101363,52.96592],[0.102934,52.965023],[0.105179,52.966231],[0.10729,52.966977],[0.107689,52.968913],[0.109205,52.969981],[0.108733,52.970376],[0.111461,52.971288],[0.11139,52.972639],[0.113024,52.973307],[0.114953,52.97583],[0.115314,52.977633],[0.118077,52.978558],[0.121601,52.981733],[0.122529,52.983205],[0.126261,52.985631],[0.126233,52.986284],[0.127716,52.987586],[0.127742,52.988712],[0.130048,52.989956],[0.133162,52.990946],[0.135274,52.993018],[0.13603,52.993289],[0.135889,52.994684],[0.136608,52.995377],[0.138104,52.995625],[0.140409,52.996818],[0.140332,52.997974],[0.143314,52.999785],[0.141351,53.00149],[0.141991,53.001688],[0.14347,52.999896],[0.144503,53.000343],[0.144883,53.001561],[0.145881,53.00185],[0.149595,53.004229],[0.149071,53.005902],[0.150414,53.006462],[0.151892,53.008202],[0.153243,53.008917],[0.157953,53.010035],[0.160141,53.011019],[0.164394,53.013859],[0.168076,53.015742],[0.171574,53.017329],[0.172519,53.018207],[0.172336,53.019123],[0.175099,53.019682],[0.178613,53.020773],[0.180228,53.022446],[0.182141,53.022686],[0.184241,53.023968],[0.185594,53.02711],[0.192326,53.027753],[0.194754,53.028641],[0.195437,53.029671],[0.197519,53.030923],[0.198172,53.032313],[0.199586,53.032644]]]]},"properties":{"LAD22CD":"E07000136","LAD22NM":"Boston","BNG_E":526851,"BNG_N":343953,"LONG":-0.11218,"LAT":52.97794,"GlobalID":"c35ffd16-66c8-4c1a-8908-90ca584120ed"},"id":158}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.035569,53.520182],[0.034103,53.520868],[0.033065,53.519487],[0.031303,53.5189],[0.031383,53.517434],[0.03427,53.518898],[0.035569,53.520182]]],[[[0.199586,53.032644],[0.20151,53.0327],[0.203355,53.03382],[0.209675,53.035122],[0.212021,53.036241],[0.213653,53.035963],[0.21437,53.036741],[0.216239,53.037004],[0.219447,53.038615],[0.221484,53.038612],[0.221278,53.039324],[0.22561,53.040936],[0.226357,53.041775],[0.227993,53.042276],[0.229774,53.04411],[0.231481,53.043122],[0.232192,53.044198],[0.234551,53.045225],[0.236331,53.044986],[0.237559,53.045294],[0.244553,53.04862],[0.247783,53.050513],[0.247322,53.051272],[0.248588,53.051883],[0.248698,53.052675],[0.249971,53.054461],[0.250954,53.053476],[0.254783,53.05478],[0.258239,53.056451],[0.268795,53.062855],[0.268567,53.064162],[0.270827,53.065078],[0.270262,53.066103],[0.271929,53.066707],[0.27462,53.068654],[0.277459,53.070434],[0.278838,53.070709],[0.286142,53.074243],[0.288464,53.076101],[0.289579,53.07755],[0.290313,53.077372],[0.294242,53.078781],[0.296121,53.080399],[0.299463,53.08214],[0.304592,53.084],[0.305208,53.085111],[0.308305,53.085924],[0.30964,53.086843],[0.311009,53.087077],[0.312492,53.087991],[0.315672,53.088739],[0.315952,53.089741],[0.31939,53.091684],[0.323147,53.09154],[0.326269,53.090357],[0.327321,53.091296],[0.33016,53.090461],[0.331871,53.088257],[0.331051,53.0877],[0.332439,53.086685],[0.333968,53.08663],[0.335897,53.089573],[0.337436,53.094472],[0.338499,53.099663],[0.338178,53.100672],[0.336951,53.101198],[0.33995,53.103649],[0.339269,53.104556],[0.339453,53.105482],[0.341114,53.107643],[0.342331,53.110818],[0.342802,53.110878],[0.339967,53.105195],[0.341942,53.103853],[0.344912,53.105149],[0.348108,53.109002],[0.349234,53.112168],[0.349228,53.115657],[0.348025,53.120763],[0.346946,53.124087],[0.346813,53.126651],[0.347382,53.12747],[0.348026,53.130645],[0.348369,53.135397],[0.349475,53.137644],[0.349539,53.144559],[0.34901,53.149193],[0.349602,53.152046],[0.349302,53.154242],[0.35068,53.15918],[0.351085,53.162891],[0.351898,53.168118],[0.352503,53.168966],[0.352099,53.170155],[0.35413,53.178609],[0.35445,53.183979],[0.355528,53.185968],[0.354962,53.191778],[0.355628,53.191993],[0.354334,53.193458],[0.352352,53.197047],[0.351419,53.199334],[0.351131,53.20152],[0.350667,53.20165],[0.349199,53.203848],[0.347392,53.208359],[0.341835,53.217451],[0.340241,53.221035],[0.339103,53.22945],[0.34016,53.233321],[0.338836,53.23516],[0.336481,53.241659],[0.333465,53.246243],[0.329719,53.253249],[0.326306,53.258213],[0.322189,53.266473],[0.319466,53.271613],[0.316905,53.274761],[0.315583,53.277369],[0.308208,53.286004],[0.299892,53.294454],[0.29396,53.299934],[0.289115,53.30557],[0.285199,53.3127],[0.281223,53.318692],[0.281239,53.319323],[0.273759,53.33256],[0.271777,53.333609],[0.270628,53.334883],[0.268986,53.337932],[0.267483,53.339292],[0.264479,53.343903],[0.262451,53.346288],[0.25177,53.362486],[0.245863,53.372951],[0.243066,53.377601],[0.236455,53.386607],[0.235483,53.391355],[0.232284,53.392835],[0.229415,53.395405],[0.228004,53.395678],[0.227668,53.398602],[0.228285,53.398881],[0.231004,53.398294],[0.232179,53.396966],[0.234092,53.397435],[0.231185,53.402623],[0.229654,53.40235],[0.229973,53.400658],[0.227705,53.402489],[0.223808,53.406609],[0.228262,53.404482],[0.229031,53.40501],[0.228171,53.406423],[0.223606,53.408705],[0.219789,53.411083],[0.220229,53.408872],[0.217771,53.409489],[0.213485,53.411724],[0.212763,53.413605],[0.211984,53.413945],[0.21342,53.415471],[0.213085,53.41661],[0.20458,53.417394],[0.195626,53.417884],[0.192075,53.418286],[0.21105,53.417396],[0.207269,53.418218],[0.205482,53.419191],[0.204653,53.420644],[0.204666,53.423628],[0.204197,53.424882],[0.199711,53.429239],[0.197423,53.429669],[0.197433,53.430537],[0.195661,53.431423],[0.194382,53.431234],[0.194064,53.433579],[0.1933,53.434221],[0.192889,53.435997],[0.190078,53.43741],[0.19021,53.439298],[0.188882,53.440827],[0.186493,53.442161],[0.184119,53.442717],[0.180603,53.4427],[0.179382,53.443441],[0.179417,53.451318],[0.177703,53.452759],[0.176536,53.454744],[0.175157,53.456028],[0.174728,53.458924],[0.171737,53.462241],[0.170238,53.465315],[0.169365,53.468373],[0.167189,53.470547],[0.167031,53.472279],[0.166317,53.473385],[0.170973,53.471932],[0.172991,53.470777],[0.173633,53.471022],[0.167516,53.476763],[0.162694,53.480164],[0.160152,53.482543],[0.15578,53.486272],[0.147901,53.492218],[0.140714,53.494797],[0.138648,53.494898],[0.139598,53.493367],[0.142252,53.491643],[0.143616,53.487489],[0.14321,53.485419],[0.142004,53.484489],[0.139901,53.484488],[0.138294,53.485468],[0.13682,53.48479],[0.134575,53.484919],[0.135014,53.486488],[0.133456,53.487548],[0.133534,53.488329],[0.132314,53.48929],[0.132536,53.489909],[0.128437,53.4935],[0.124937,53.494699],[0.124021,53.495416],[0.124383,53.49635],[0.129538,53.496761],[0.129232,53.499279],[0.128186,53.499109],[0.126086,53.500152],[0.12181,53.501355],[0.115748,53.503255],[0.113532,53.503379],[0.108519,53.505172],[0.106211,53.505064],[0.106119,53.50338],[0.108103,53.50185],[0.108458,53.498628],[0.111732,53.495796],[0.112374,53.494415],[0.104099,53.495373],[0.102681,53.494374],[0.10414,53.492679],[0.104023,53.49131],[0.105321,53.490562],[0.104895,53.488893],[0.102893,53.49221],[0.101689,53.49291],[0.101288,53.494571],[0.099357,53.495015],[0.097756,53.49464],[0.097213,53.493504],[0.094118,53.494039],[0.091917,53.495499],[0.089572,53.495048],[0.089808,53.497314],[0.086189,53.498289],[0.085136,53.499233],[0.085903,53.502022],[0.084242,53.502467],[0.082615,53.503639],[0.083372,53.504157],[0.08311,53.506937],[0.081722,53.510272],[0.082861,53.511248],[0.084642,53.510583],[0.085068,53.512766],[0.087466,53.512651],[0.088061,53.511477],[0.090575,53.510573],[0.090619,53.512002],[0.089881,53.513728],[0.088418,53.514907],[0.086714,53.515663],[0.081355,53.517205],[0.077759,53.51782],[0.081039,53.515439],[0.07952,53.51431],[0.0796,53.513481],[0.076557,53.513173],[0.075245,53.513919],[0.072971,53.514301],[0.07066,53.515184],[0.070853,53.516473],[0.072743,53.516749],[0.072507,53.51797],[0.068759,53.518405],[0.068561,53.518678],[0.061101,53.518993],[0.05607,53.519698],[0.053846,53.519734],[0.040336,53.524699],[0.035455,53.527086],[0.026825,53.529708],[0.026625,53.529408],[0.028892,53.527549],[0.036413,53.523862],[0.038455,53.522437],[0.040126,53.520065],[0.039602,53.518657],[0.039885,53.517057],[0.042241,53.515794],[0.045261,53.515454],[0.046681,53.51573],[0.049967,53.514352],[0.044119,53.513982],[0.03707,53.51723],[0.034978,53.518694],[0.031478,53.517264],[0.030662,53.518009],[0.03121,53.518953],[0.032835,53.519501],[0.032816,53.520515],[0.034512,53.521214],[0.033515,53.522144],[0.029337,53.52278],[0.028209,53.522732],[0.026003,53.523485],[0.024252,53.523356],[0.023125,53.524054],[0.021495,53.523177],[0.019269,53.523397],[0.017618,53.525512],[0.012453,53.523372],[0.011945,53.52207],[0.009474,53.520958],[0.007619,53.520736],[0.005366,53.519675],[-0.007435,53.516798],[-0.013511,53.516625],[-0.014579,53.515405],[-0.01743,53.515067],[-0.019548,53.517975],[-0.022475,53.517553],[-0.023968,53.51671],[-0.024792,53.517095],[-0.027364,53.517011],[-0.028639,53.517338],[-0.032785,53.5165],[-0.033106,53.515389],[-0.03544,53.514215],[-0.037931,53.51393],[-0.0396,53.513117],[-0.041635,53.516228],[-0.04237,53.51629],[-0.043861,53.518394],[-0.046614,53.520099],[-0.048916,53.519476],[-0.050434,53.519852],[-0.054914,53.51984],[-0.056115,53.519575],[-0.058038,53.519976],[-0.060545,53.519749],[-0.065046,53.51874],[-0.067096,53.516838],[-0.067626,53.51596],[-0.067486,53.514115],[-0.068415,53.513317],[-0.068672,53.511399],[-0.072985,53.498532],[-0.073394,53.495305],[-0.075262,53.489336],[-0.079066,53.48942],[-0.081905,53.487773],[-0.082696,53.488184],[-0.087367,53.485899],[-0.089819,53.485301],[-0.092908,53.486026],[-0.095489,53.485989],[-0.0922,53.482852],[-0.093684,53.482208],[-0.094127,53.481266],[-0.092715,53.47965],[-0.089804,53.477682],[-0.107821,53.469863],[-0.102922,53.465656],[-0.094983,53.461362],[-0.085828,53.455542],[-0.082979,53.452768],[-0.08221,53.451151],[-0.086947,53.449643],[-0.089752,53.447105],[-0.091715,53.447005],[-0.110571,53.440021],[-0.112079,53.43795],[-0.120344,53.433565],[-0.120778,53.435665],[-0.122786,53.437346],[-0.127651,53.435768],[-0.131879,53.435939],[-0.134882,53.436244],[-0.141654,53.434882],[-0.158984,53.437156],[-0.160964,53.43657],[-0.161729,53.437293],[-0.163393,53.437063],[-0.164393,53.438271],[-0.167076,53.437796],[-0.167801,53.438585],[-0.172818,53.438186],[-0.175331,53.438305],[-0.177237,53.438872],[-0.180524,53.440702],[-0.18373,53.438602],[-0.185203,53.437203],[-0.191072,53.434746],[-0.195136,53.434847],[-0.198295,53.433576],[-0.197416,53.4324],[-0.20228,53.430534],[-0.205042,53.430468],[-0.212058,53.428724],[-0.21283,53.429361],[-0.21485,53.42825],[-0.216796,53.425418],[-0.217064,53.424108],[-0.212684,53.420089],[-0.211717,53.418509],[-0.211723,53.41571],[-0.209589,53.413702],[-0.210204,53.412024],[-0.209975,53.411312],[-0.208,53.409273],[-0.206024,53.408435],[-0.213006,53.404336],[-0.214233,53.404892],[-0.218196,53.403229],[-0.218138,53.402634],[-0.216504,53.401586],[-0.218565,53.399822],[-0.219503,53.399515],[-0.221757,53.399706],[-0.223799,53.398926],[-0.224678,53.39961],[-0.229395,53.398058],[-0.228331,53.396063],[-0.227534,53.39254],[-0.223442,53.38587],[-0.216623,53.382036],[-0.215934,53.380544],[-0.206834,53.374263],[-0.204871,53.371886],[-0.210339,53.370139],[-0.215459,53.366654],[-0.218651,53.363744],[-0.219501,53.362396],[-0.220652,53.361802],[-0.222536,53.357992],[-0.223792,53.357357],[-0.225053,53.355902],[-0.227314,53.355045],[-0.230483,53.354561],[-0.230523,53.352187],[-0.231636,53.351398],[-0.233793,53.351108],[-0.235083,53.350512],[-0.240771,53.349083],[-0.242397,53.348418],[-0.243404,53.347331],[-0.244566,53.347414],[-0.245693,53.346704],[-0.250789,53.345465],[-0.25118,53.344717],[-0.255899,53.344142],[-0.255106,53.340509],[-0.254068,53.337996],[-0.249778,53.333611],[-0.251261,53.332813],[-0.252602,53.331563],[-0.255442,53.329955],[-0.264806,53.326478],[-0.265694,53.326643],[-0.267609,53.326036],[-0.269129,53.324997],[-0.27032,53.323136],[-0.271953,53.322218],[-0.27554,53.321841],[-0.278242,53.324436],[-0.285288,53.328343],[-0.293313,53.334477],[-0.29851,53.331059],[-0.297303,53.329699],[-0.299621,53.326716],[-0.298649,53.325633],[-0.300811,53.324785],[-0.301249,53.323913],[-0.30742,53.320815],[-0.310261,53.320003],[-0.309795,53.319132],[-0.30849,53.319105],[-0.299901,53.310544],[-0.295572,53.302982],[-0.296213,53.30276],[-0.300191,53.302888],[-0.30553,53.302001],[-0.317461,53.298251],[-0.316689,53.296547],[-0.314423,53.294038],[-0.314879,53.29145],[-0.314569,53.2904],[-0.313204,53.288902],[-0.311418,53.287704],[-0.314274,53.2852],[-0.313354,53.283152],[-0.315013,53.281282],[-0.314875,53.280269],[-0.316444,53.279472],[-0.314482,53.277312],[-0.311413,53.277038],[-0.303728,53.275367],[-0.301896,53.27534],[-0.302082,53.27341],[-0.304831,53.269319],[-0.303236,53.268463],[-0.300965,53.269768],[-0.299109,53.268612],[-0.300108,53.267314],[-0.300898,53.267248],[-0.300826,53.263974],[-0.297648,53.263873],[-0.294225,53.26431],[-0.289818,53.263989],[-0.290999,53.262493],[-0.29515,53.26315],[-0.300611,53.263115],[-0.300434,53.262088],[-0.296835,53.262183],[-0.291727,53.26099],[-0.293054,53.25937],[-0.287141,53.25753],[-0.28881,53.255578],[-0.290904,53.254765],[-0.287846,53.253058],[-0.280243,53.249765],[-0.281404,53.248619],[-0.282545,53.246],[-0.282713,53.243691],[-0.28178,53.241093],[-0.282472,53.240031],[-0.281489,53.238947],[-0.279346,53.238013],[-0.276224,53.234633],[-0.275961,53.233459],[-0.2765,53.231807],[-0.278714,53.228888],[-0.278895,53.227798],[-0.27982,53.226626],[-0.28375,53.224428],[-0.289124,53.222795],[-0.287564,53.221556],[-0.291954,53.219366],[-0.29273,53.2194],[-0.299471,53.215133],[-0.301088,53.213761],[-0.302264,53.210425],[-0.294719,53.201638],[-0.290932,53.194747],[-0.291931,53.190836],[-0.287998,53.184755],[-0.289651,53.179366],[-0.28533,53.178035],[-0.284959,53.177345],[-0.282799,53.17696],[-0.283174,53.175835],[-0.281181,53.173901],[-0.278526,53.175058],[-0.275452,53.173336],[-0.274385,53.170651],[-0.2701,53.169358],[-0.268857,53.168425],[-0.26737,53.166077],[-0.265162,53.16433],[-0.264577,53.161894],[-0.261428,53.160035],[-0.260307,53.158013],[-0.257938,53.15743],[-0.256231,53.1565],[-0.25363,53.155919],[-0.252789,53.155194],[-0.251988,53.152317],[-0.246727,53.148079],[-0.239862,53.138597],[-0.238446,53.133736],[-0.23718,53.13287],[-0.234534,53.132025],[-0.233389,53.131345],[-0.226007,53.124605],[-0.225287,53.121808],[-0.226476,53.119957],[-0.226108,53.116047],[-0.223599,53.114436],[-0.223285,53.112577],[-0.224854,53.11146],[-0.224638,53.109284],[-0.222152,53.106949],[-0.219037,53.105054],[-0.220751,53.102587],[-0.220424,53.100547],[-0.219156,53.0978],[-0.219319,53.096251],[-0.217067,53.094175],[-0.214515,53.089622],[-0.207295,53.086426],[-0.20517,53.085893],[-0.201681,53.085755],[-0.200094,53.085366],[-0.197019,53.083807],[-0.19546,53.081415],[-0.198819,53.077521],[-0.19759,53.075059],[-0.19612,53.069557],[-0.189714,53.063139],[-0.164236,53.050081],[-0.138044,53.030042],[-0.118423,53.012017],[-0.114741,53.010258],[-0.112349,53.009975],[-0.063922,53.008226],[-0.063197,53.008959],[-0.055429,53.006757],[-0.051504,53.004902],[-0.032611,53.004817],[-0.023912,53.005685],[-0.0218,53.005334],[-0.01917,53.0043],[-0.014989,53.004734],[-0.010753,53.002017],[-0.007061,53.00112],[-0.006456,53.002774],[-0.004821,53.004865],[0.000504,53.008852],[0.009684,53.012212],[0.017701,53.016024],[0.020481,53.016175],[0.020495,53.01695],[0.023148,53.01744],[0.035707,53.026782],[0.044661,53.03019],[0.046052,53.032198],[0.046589,53.035445],[0.045988,53.035472],[0.045497,53.038083],[0.044214,53.040797],[0.036218,53.069417],[0.040649,53.06991],[0.042022,53.070311],[0.048072,53.070704],[0.082757,53.070914],[0.082983,53.07167],[0.087487,53.071645],[0.093064,53.072813],[0.094543,53.074225],[0.096357,53.074443],[0.118336,53.080758],[0.124479,53.083396],[0.129234,53.08496],[0.131593,53.085247],[0.137083,53.086692],[0.139743,53.08522],[0.139751,53.084726],[0.141804,53.082311],[0.144248,53.069712],[0.143715,53.069233],[0.144816,53.064291],[0.146588,53.060778],[0.14971,53.057385],[0.150402,53.056872],[0.152368,53.056794],[0.15593,53.05593],[0.158244,53.054004],[0.160328,53.053496],[0.162796,53.053635],[0.163948,53.054164],[0.171453,53.04961],[0.192894,53.037682],[0.199586,53.032644]]]]},"properties":{"LAD22CD":"E07000137","LAD22NM":"East Lindsey","BNG_E":534861,"BNG_N":376064,"LONG":0.020516,"LAT":53.26446,"GlobalID":"755c2c2a-c362-4e98-8615-a4cdc3fdb888"},"id":159}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.495119,53.225259],[-0.496424,53.233718],[-0.493915,53.233403],[-0.495749,53.240156],[-0.494343,53.24184],[-0.495814,53.243824],[-0.495441,53.244375],[-0.496012,53.247191],[-0.497567,53.249201],[-0.500594,53.248264],[-0.502451,53.250595],[-0.506211,53.24992],[-0.514165,53.253796],[-0.514873,53.253989],[-0.526508,53.253854],[-0.538581,53.254563],[-0.544779,53.253919],[-0.554693,53.252149],[-0.561728,53.25126],[-0.595112,53.24517],[-0.572196,53.236447],[-0.572361,53.235454],[-0.570727,53.229612],[-0.575475,53.231636],[-0.578837,53.2306],[-0.592508,53.228705],[-0.595036,53.227851],[-0.596477,53.229353],[-0.603346,53.225178],[-0.606692,53.224163],[-0.608575,53.222453],[-0.610475,53.224101],[-0.615667,53.221911],[-0.616988,53.220883],[-0.616052,53.219285],[-0.622617,53.217598],[-0.620319,53.216719],[-0.617409,53.214326],[-0.617911,53.210625],[-0.619736,53.208056],[-0.617642,53.207376],[-0.614879,53.20528],[-0.61503,53.203547],[-0.613774,53.202705],[-0.608918,53.201881],[-0.60706,53.201926],[-0.600489,53.203576],[-0.588216,53.200572],[-0.58903,53.199904],[-0.58677,53.198644],[-0.584299,53.19903],[-0.583429,53.198646],[-0.582863,53.197049],[-0.580666,53.197584],[-0.577804,53.196085],[-0.578114,53.195789],[-0.574326,53.193914],[-0.575151,53.19239],[-0.574475,53.191583],[-0.564972,53.18716],[-0.558453,53.186471],[-0.552844,53.186326],[-0.549572,53.197103],[-0.549078,53.201556],[-0.54884,53.205863],[-0.544945,53.205474],[-0.544522,53.204535],[-0.543217,53.203985],[-0.540843,53.203688],[-0.539577,53.203953],[-0.539821,53.208314],[-0.538453,53.210061],[-0.535662,53.212286],[-0.53197,53.21409],[-0.528684,53.214761],[-0.530338,53.21738],[-0.526899,53.218311],[-0.526915,53.218741],[-0.522556,53.219471],[-0.513823,53.220211],[-0.513426,53.218104],[-0.508914,53.218208],[-0.505446,53.219928],[-0.501274,53.22106],[-0.502301,53.225796],[-0.495119,53.225259]]]},"properties":{"LAD22CD":"E07000138","LAD22NM":"Lincoln","BNG_E":496347,"BNG_N":370096,"LONG":-0.55848,"LAT":53.21921,"GlobalID":"2bc3d1b6-5a2a-456b-98f3-32e0634e9366"},"id":160}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.595112,53.24517],[-0.597433,53.247263],[-0.601996,53.250433],[-0.611474,53.256424],[-0.612205,53.256095],[-0.619466,53.256592],[-0.620902,53.25704],[-0.622481,53.25813],[-0.631795,53.2564],[-0.631515,53.255288],[-0.638439,53.254212],[-0.648377,53.253168],[-0.647287,53.249123],[-0.646466,53.247982],[-0.646953,53.245906],[-0.648464,53.243413],[-0.652926,53.242729],[-0.653617,53.242316],[-0.665517,53.2407],[-0.666577,53.239702],[-0.667115,53.238805],[-0.667153,53.236506],[-0.666406,53.235316],[-0.666509,53.233451],[-0.668919,53.231164],[-0.669061,53.229999],[-0.670143,53.229304],[-0.671478,53.225928],[-0.672973,53.224465],[-0.673146,53.223775],[-0.674735,53.222599],[-0.674976,53.220376],[-0.676182,53.218225],[-0.675872,53.217644],[-0.686683,53.219631],[-0.686875,53.219967],[-0.697617,53.220237],[-0.70826,53.212231],[-0.709011,53.212291],[-0.714753,53.207608],[-0.720313,53.209322],[-0.724413,53.209648],[-0.730569,53.210756],[-0.742485,53.198438],[-0.753767,53.188156],[-0.762168,53.188239],[-0.762548,53.185752],[-0.764138,53.181544],[-0.75222,53.181054],[-0.737728,53.179305],[-0.730266,53.180095],[-0.729712,53.178247],[-0.725903,53.178465],[-0.718661,53.177079],[-0.718723,53.174938],[-0.716028,53.170412],[-0.723232,53.155104],[-0.722122,53.151939],[-0.722064,53.149739],[-0.72121,53.148183],[-0.721048,53.14429],[-0.718673,53.142011],[-0.717156,53.138945],[-0.715376,53.136883],[-0.718935,53.135765],[-0.724,53.133419],[-0.728084,53.130385],[-0.732408,53.127802],[-0.732015,53.126706],[-0.731106,53.126373],[-0.731092,53.124003],[-0.728155,53.123213],[-0.727258,53.122043],[-0.720837,53.120887],[-0.71856,53.119569],[-0.716883,53.119444],[-0.716756,53.116185],[-0.718371,53.110352],[-0.721251,53.104268],[-0.725479,53.100749],[-0.729618,53.097902],[-0.728975,53.096146],[-0.724383,53.092589],[-0.715393,53.087196],[-0.715391,53.086512],[-0.709418,53.085982],[-0.709601,53.085233],[-0.70615,53.083378],[-0.708159,53.082427],[-0.710358,53.079378],[-0.707477,53.07873],[-0.702761,53.076654],[-0.698482,53.075468],[-0.697945,53.074682],[-0.698569,53.073576],[-0.697434,53.071684],[-0.698386,53.070941],[-0.698806,53.067746],[-0.697588,53.066037],[-0.695301,53.067044],[-0.695423,53.065938],[-0.697045,53.065071],[-0.698478,53.065065],[-0.700498,53.063834],[-0.701539,53.063663],[-0.704264,53.06505],[-0.707181,53.065591],[-0.70783,53.065397],[-0.711044,53.066222],[-0.713493,53.06535],[-0.715059,53.065393],[-0.715941,53.064406],[-0.714073,53.06368],[-0.713849,53.062328],[-0.71294,53.061083],[-0.713669,53.06032],[-0.716204,53.059059],[-0.715509,53.058846],[-0.713924,53.057044],[-0.706397,53.05219],[-0.702706,53.051975],[-0.702455,53.052985],[-0.698461,53.053244],[-0.693974,53.056315],[-0.693526,53.057119],[-0.69523,53.057759],[-0.695197,53.059149],[-0.689889,53.059763],[-0.687511,53.058954],[-0.684841,53.058805],[-0.681462,53.058904],[-0.680939,53.058001],[-0.675791,53.058272],[-0.670445,53.05813],[-0.66738,53.057496],[-0.661404,53.05711],[-0.661998,53.054996],[-0.648208,53.053756],[-0.648632,53.053175],[-0.644288,53.052581],[-0.644142,53.052905],[-0.636009,53.052351],[-0.637418,53.05334],[-0.637345,53.054679],[-0.604142,53.052154],[-0.603793,53.051151],[-0.601758,53.051112],[-0.601775,53.049562],[-0.597654,53.049399],[-0.596495,53.048156],[-0.593344,53.048065],[-0.589355,53.047598],[-0.589411,53.046604],[-0.584939,53.045677],[-0.584527,53.046246],[-0.580255,53.046135],[-0.579837,53.04711],[-0.574093,53.046995],[-0.574187,53.049258],[-0.573596,53.049619],[-0.565633,53.049298],[-0.563962,53.049517],[-0.53565,53.049755],[-0.522814,53.049642],[-0.527851,53.017721],[-0.531943,52.989817],[-0.526092,52.989654],[-0.523542,52.988176],[-0.526773,52.986443],[-0.52557,52.985314],[-0.528305,52.9837],[-0.526057,52.982124],[-0.526842,52.980829],[-0.526749,52.97695],[-0.531059,52.975751],[-0.528458,52.971206],[-0.526173,52.969387],[-0.540388,52.967334],[-0.543157,52.971742],[-0.554099,52.954431],[-0.550002,52.95417],[-0.545025,52.954679],[-0.540502,52.954356],[-0.533811,52.955119],[-0.529901,52.956287],[-0.526712,52.955735],[-0.524735,52.958721],[-0.523788,52.958448],[-0.522501,52.959901],[-0.52115,52.959099],[-0.517846,52.960288],[-0.515212,52.957521],[-0.512615,52.951594],[-0.511311,52.950556],[-0.510007,52.947573],[-0.507641,52.947757],[-0.508042,52.949311],[-0.502104,52.951042],[-0.494595,52.954063],[-0.492861,52.951982],[-0.494276,52.951723],[-0.494135,52.948333],[-0.489672,52.946931],[-0.489147,52.946515],[-0.48787,52.94378],[-0.487179,52.939512],[-0.48287,52.939389],[-0.482719,52.937679],[-0.483725,52.937699],[-0.483386,52.933769],[-0.481532,52.933922],[-0.48094,52.932349],[-0.479488,52.931424],[-0.479849,52.929771],[-0.481582,52.929827],[-0.481657,52.92802],[-0.486866,52.928053],[-0.485997,52.926089],[-0.48629,52.924958],[-0.487563,52.925174],[-0.488363,52.924042],[-0.48828,52.92191],[-0.48761,52.920582],[-0.492001,52.920886],[-0.493975,52.920738],[-0.492437,52.917777],[-0.489208,52.91347],[-0.488244,52.913171],[-0.486646,52.911788],[-0.483479,52.910864],[-0.481786,52.907998],[-0.479884,52.906422],[-0.476927,52.905615],[-0.472065,52.905435],[-0.47182,52.904193],[-0.469756,52.901188],[-0.454668,52.9014],[-0.447592,52.900501],[-0.445332,52.900572],[-0.444161,52.898991],[-0.443549,52.896278],[-0.441887,52.894823],[-0.44237,52.894432],[-0.440739,52.892639],[-0.437341,52.886996],[-0.430754,52.888848],[-0.427874,52.888663],[-0.42712,52.890434],[-0.41433,52.891272],[-0.410406,52.891867],[-0.398719,52.89442],[-0.391283,52.896518],[-0.391297,52.897253],[-0.388785,52.8975],[-0.383458,52.89865],[-0.382547,52.898417],[-0.375068,52.898461],[-0.371488,52.897724],[-0.365824,52.897931],[-0.366069,52.901164],[-0.360825,52.901939],[-0.360706,52.903822],[-0.359022,52.908453],[-0.358942,52.90991],[-0.358145,52.909979],[-0.358552,52.911664],[-0.357524,52.911868],[-0.357894,52.915651],[-0.352024,52.915837],[-0.345143,52.916537],[-0.341828,52.916535],[-0.339261,52.91695],[-0.32283,52.91753],[-0.314432,52.916402],[-0.310385,52.915012],[-0.292877,52.910772],[-0.290546,52.91081],[-0.283716,52.910059],[-0.278858,52.910031],[-0.275414,52.909596],[-0.256496,52.905883],[-0.252424,52.915356],[-0.246705,52.928832],[-0.224,52.956073],[-0.215431,52.960862],[-0.201198,52.97746],[-0.199679,52.981204],[-0.198924,52.981777],[-0.19916,52.982973],[-0.198796,52.985606],[-0.196645,52.989015],[-0.189891,52.99641],[-0.193722,52.997772],[-0.199657,53.003494],[-0.201422,53.003999],[-0.202094,53.005947],[-0.20396,53.007805],[-0.203861,53.009324],[-0.206921,53.011143],[-0.207093,53.01231],[-0.209534,53.014635],[-0.212988,53.016212],[-0.214159,53.017357],[-0.214594,53.019165],[-0.213389,53.020731],[-0.215086,53.021564],[-0.216481,53.024026],[-0.220291,53.025841],[-0.220958,53.02651],[-0.223266,53.027533],[-0.224779,53.029042],[-0.224937,53.030143],[-0.224039,53.032889],[-0.222927,53.03354],[-0.223127,53.03483],[-0.219543,53.039057],[-0.220928,53.039415],[-0.218083,53.043493],[-0.218038,53.044728],[-0.220283,53.047963],[-0.217956,53.051645],[-0.217691,53.052707],[-0.214058,53.062385],[-0.211356,53.067519],[-0.21076,53.070154],[-0.206623,53.070576],[-0.204292,53.070243],[-0.198851,53.070355],[-0.19612,53.069557],[-0.19759,53.075059],[-0.198819,53.077521],[-0.19546,53.081415],[-0.197019,53.083807],[-0.200094,53.085366],[-0.201681,53.085755],[-0.20517,53.085893],[-0.207295,53.086426],[-0.214515,53.089622],[-0.217067,53.094175],[-0.219319,53.096251],[-0.219156,53.0978],[-0.220424,53.100547],[-0.220751,53.102587],[-0.219037,53.105054],[-0.222152,53.106949],[-0.224638,53.109284],[-0.224854,53.11146],[-0.223285,53.112577],[-0.223599,53.114436],[-0.226108,53.116047],[-0.226476,53.119957],[-0.225287,53.121808],[-0.226007,53.124605],[-0.233389,53.131345],[-0.234534,53.132025],[-0.23718,53.13287],[-0.238446,53.133736],[-0.239862,53.138597],[-0.246727,53.148079],[-0.251988,53.152317],[-0.252789,53.155194],[-0.25363,53.155919],[-0.256231,53.1565],[-0.257938,53.15743],[-0.260307,53.158013],[-0.261428,53.160035],[-0.264577,53.161894],[-0.265162,53.16433],[-0.26737,53.166077],[-0.268857,53.168425],[-0.2701,53.169358],[-0.274385,53.170651],[-0.275452,53.173336],[-0.278526,53.175058],[-0.281181,53.173901],[-0.283174,53.175835],[-0.282799,53.17696],[-0.284959,53.177345],[-0.28533,53.178035],[-0.289651,53.179366],[-0.291245,53.178936],[-0.294542,53.179876],[-0.295812,53.181196],[-0.298584,53.181678],[-0.309634,53.182024],[-0.318907,53.18462],[-0.325121,53.19062],[-0.325525,53.195571],[-0.32897,53.199794],[-0.33079,53.201634],[-0.335736,53.202353],[-0.337547,53.203744],[-0.336818,53.208468],[-0.342284,53.212347],[-0.346738,53.214654],[-0.347725,53.217036],[-0.346533,53.218643],[-0.346534,53.220361],[-0.348068,53.224058],[-0.350082,53.225412],[-0.351313,53.227321],[-0.353255,53.228004],[-0.357494,53.227514],[-0.35827,53.228192],[-0.359552,53.227197],[-0.36173,53.226684],[-0.361709,53.225711],[-0.364252,53.226037],[-0.366656,53.225417],[-0.369721,53.226408],[-0.370812,53.226231],[-0.373904,53.22773],[-0.37879,53.231216],[-0.381868,53.231958],[-0.399548,53.230533],[-0.40614,53.230648],[-0.4136,53.230164],[-0.43209,53.230462],[-0.445395,53.229659],[-0.451941,53.228509],[-0.462028,53.227258],[-0.47467,53.227264],[-0.480842,53.226163],[-0.488318,53.225294],[-0.495119,53.225259],[-0.502301,53.225796],[-0.501274,53.22106],[-0.505446,53.219928],[-0.508914,53.218208],[-0.513426,53.218104],[-0.513823,53.220211],[-0.522556,53.219471],[-0.526915,53.218741],[-0.526899,53.218311],[-0.530338,53.21738],[-0.528684,53.214761],[-0.53197,53.21409],[-0.535662,53.212286],[-0.538453,53.210061],[-0.539821,53.208314],[-0.539577,53.203953],[-0.540843,53.203688],[-0.543217,53.203985],[-0.544522,53.204535],[-0.544945,53.205474],[-0.54884,53.205863],[-0.549078,53.201556],[-0.549572,53.197103],[-0.552844,53.186326],[-0.558453,53.186471],[-0.564972,53.18716],[-0.574475,53.191583],[-0.575151,53.19239],[-0.574326,53.193914],[-0.578114,53.195789],[-0.577804,53.196085],[-0.580666,53.197584],[-0.582863,53.197049],[-0.583429,53.198646],[-0.584299,53.19903],[-0.58677,53.198644],[-0.58903,53.199904],[-0.588216,53.200572],[-0.600489,53.203576],[-0.60706,53.201926],[-0.608918,53.201881],[-0.613774,53.202705],[-0.61503,53.203547],[-0.614879,53.20528],[-0.617642,53.207376],[-0.619736,53.208056],[-0.617911,53.210625],[-0.617409,53.214326],[-0.620319,53.216719],[-0.622617,53.217598],[-0.616052,53.219285],[-0.616988,53.220883],[-0.615667,53.221911],[-0.610475,53.224101],[-0.608575,53.222453],[-0.606692,53.224163],[-0.603346,53.225178],[-0.596477,53.229353],[-0.595036,53.227851],[-0.592508,53.228705],[-0.578837,53.2306],[-0.575475,53.231636],[-0.570727,53.229612],[-0.572361,53.235454],[-0.572196,53.236447],[-0.595112,53.24517]]]},"properties":{"LAD22CD":"E07000139","LAD22NM":"North Kesteven","BNG_E":502135,"BNG_N":354788,"LONG":-0.4767,"LAT":53.08058,"GlobalID":"cda6933d-a679-4112-b7d9-3d1e028fa150"},"id":161}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.268786,52.815838],[0.264482,52.815819],[0.264635,52.815081],[0.266101,52.814488],[0.267485,52.813253],[0.268786,52.815838]]],[[[0.267464,52.813211],[0.266162,52.814271],[0.263525,52.815516],[0.261245,52.815574],[0.260018,52.814836],[0.259403,52.816036],[0.257844,52.816012],[0.252992,52.818317],[0.25259,52.819347],[0.250034,52.819696],[0.247216,52.820486],[0.245262,52.822],[0.23885,52.821999],[0.234592,52.823307],[0.229216,52.823811],[0.226789,52.822543],[0.225048,52.822279],[0.222557,52.822987],[0.222584,52.821333],[0.221472,52.821665],[0.218936,52.82158],[0.216813,52.820884],[0.215794,52.817712],[0.207184,52.787812],[0.201062,52.775594],[0.195399,52.765629],[0.191966,52.761949],[0.172107,52.737944],[0.186323,52.735349],[0.192278,52.738336],[0.190814,52.739475],[0.194882,52.738797],[0.196764,52.742254],[0.211977,52.749649],[0.217554,52.753253],[0.227815,52.757172],[0.233163,52.760265],[0.243953,52.764001],[0.2475,52.764839],[0.251674,52.767117],[0.25398,52.767147],[0.265699,52.771591],[0.269838,52.772034],[0.272208,52.772806],[0.245084,52.784524],[0.251998,52.792563],[0.260905,52.796056],[0.253178,52.797355],[0.262257,52.803667],[0.264024,52.805446],[0.264082,52.806485],[0.267464,52.813211]]],[[[0.20983,52.826959],[0.208909,52.826884],[0.207564,52.826902],[0.204553,52.825972],[0.20558,52.824909],[0.206189,52.82511],[0.207679,52.825383],[0.209685,52.825877],[0.210454,52.82633],[0.209943,52.826662],[0.20983,52.826959]]],[[[0.215163,52.828514],[0.213415,52.828699],[0.209512,52.827261],[0.209945,52.827037],[0.210089,52.826713],[0.213774,52.827224],[0.215163,52.828514]]],[[[0.116727,52.891585],[0.11673,52.893209],[0.114262,52.892076],[0.113339,52.88991],[0.113629,52.888496],[0.112985,52.88682],[0.114079,52.88395],[0.113618,52.882854],[0.114664,52.882563],[0.114794,52.884179],[0.114311,52.885025],[0.11456,52.888925],[0.116727,52.891585]]],[[[0.116467,52.893548],[0.113721,52.894037],[0.108462,52.894422],[0.103067,52.89431],[0.102449,52.893736],[0.100425,52.894209],[0.100542,52.893418],[0.099911,52.892585],[0.100281,52.888708],[0.101093,52.888106],[0.101236,52.886852],[0.102286,52.885011],[0.102594,52.884151],[0.101874,52.883841],[0.109092,52.88334],[0.110995,52.883396],[0.111488,52.883907],[0.113415,52.888555],[0.112997,52.889977],[0.113877,52.89211],[0.116467,52.893548]]],[[[0.03156,52.898275],[0.032506,52.899971],[0.030585,52.899412],[0.029377,52.898395],[0.03156,52.898275]]],[[[0.062937,52.916819],[0.060757,52.915409],[0.060308,52.916363],[0.059005,52.916339],[0.054021,52.913216],[0.041762,52.905294],[0.036952,52.90244],[0.033043,52.90043],[0.031699,52.898366],[0.032992,52.897618],[0.032712,52.897091],[0.034876,52.896979],[0.035078,52.898239],[0.036601,52.899449],[0.037428,52.899596],[0.041898,52.899102],[0.043946,52.899708],[0.046373,52.901622],[0.048525,52.902257],[0.053161,52.902075],[0.053299,52.903071],[0.049851,52.903283],[0.046332,52.902305],[0.046113,52.903193],[0.048003,52.903643],[0.053288,52.903166],[0.054746,52.903306],[0.05817,52.904594],[0.06179,52.905122],[0.064596,52.906227],[0.065357,52.90711],[0.067895,52.907599],[0.065137,52.908875],[0.066454,52.909776],[0.067557,52.911449],[0.065323,52.912042],[0.067901,52.91503],[0.066297,52.915182],[0.065335,52.915086],[0.063423,52.914465],[0.064333,52.915115],[0.062939,52.914535],[0.062522,52.914713],[0.062856,52.915613],[0.064335,52.916078],[0.062937,52.916819]]],[[[0.069081,52.918336],[0.06695,52.918594],[0.066336,52.91798],[0.06424,52.918053],[0.063283,52.917338],[0.064217,52.916533],[0.064364,52.916035],[0.06313,52.915543],[0.062738,52.914901],[0.064742,52.915611],[0.06503,52.915077],[0.068483,52.915676],[0.069186,52.916492],[0.067893,52.917004],[0.069081,52.918336]]],[[[-0.069776,52.864398],[-0.080475,52.866958],[-0.082052,52.865367],[-0.084794,52.864546],[-0.087288,52.865891],[-0.088881,52.865886],[-0.09099,52.867759],[-0.092826,52.866492],[-0.09445,52.866621],[-0.097421,52.87029],[-0.096989,52.871281],[-0.098584,52.872006],[-0.100359,52.87167],[-0.099091,52.873489],[-0.101452,52.874315],[-0.103223,52.876647],[-0.103793,52.876929],[-0.107465,52.876788],[-0.110015,52.877955],[-0.112391,52.877979],[-0.114121,52.878941],[-0.117392,52.880278],[-0.11783,52.881053],[-0.1166,52.881548],[-0.119995,52.882639],[-0.122042,52.882501],[-0.123723,52.881866],[-0.124278,52.880959],[-0.126088,52.880614],[-0.129192,52.881773],[-0.133568,52.885621],[-0.135178,52.884381],[-0.136494,52.88578],[-0.137765,52.885602],[-0.138206,52.884674],[-0.140973,52.884472],[-0.142652,52.884908],[-0.143463,52.886335],[-0.145253,52.887056],[-0.145383,52.888164],[-0.144741,52.88959],[-0.144735,52.890769],[-0.14697,52.891213],[-0.147359,52.891926],[-0.151635,52.894238],[-0.151029,52.896085],[-0.149511,52.896285],[-0.148742,52.897245],[-0.1485,52.898776],[-0.146764,52.898421],[-0.148585,52.90066],[-0.1502,52.900301],[-0.150904,52.901839],[-0.149907,52.902718],[-0.150679,52.904194],[-0.150606,52.90595],[-0.154271,52.907927],[-0.155177,52.909536],[-0.156855,52.910953],[-0.156587,52.912095],[-0.159413,52.912228],[-0.161314,52.912663],[-0.166095,52.912068],[-0.16737,52.912323],[-0.168129,52.914268],[-0.169722,52.914355],[-0.171694,52.916217],[-0.17153,52.917563],[-0.173399,52.918089],[-0.176257,52.918416],[-0.177871,52.919029],[-0.178458,52.91819],[-0.178208,52.916813],[-0.179896,52.915382],[-0.181638,52.914913],[-0.185044,52.914665],[-0.186513,52.915628],[-0.18605,52.916445],[-0.187926,52.91667],[-0.188476,52.915755],[-0.189697,52.915767],[-0.190669,52.914918],[-0.19229,52.915068],[-0.191667,52.915947],[-0.192479,52.917025],[-0.198416,52.918257],[-0.201971,52.920675],[-0.208757,52.922552],[-0.213908,52.923681],[-0.214198,52.923276],[-0.21938,52.924205],[-0.229972,52.924992],[-0.239342,52.926271],[-0.245615,52.92795],[-0.246705,52.928832],[-0.252424,52.915356],[-0.256496,52.905883],[-0.26952,52.876957],[-0.258571,52.872321],[-0.258431,52.870241],[-0.256554,52.868361],[-0.25765,52.8667],[-0.260778,52.868131],[-0.264667,52.868677],[-0.264759,52.870193],[-0.265862,52.871194],[-0.270888,52.872108],[-0.276293,52.861688],[-0.275035,52.840867],[-0.272087,52.832589],[-0.26949,52.811088],[-0.266803,52.796508],[-0.266042,52.792836],[-0.264846,52.790261],[-0.264023,52.789507],[-0.26411,52.787455],[-0.262174,52.787071],[-0.260687,52.781134],[-0.260619,52.779503],[-0.261787,52.777089],[-0.260617,52.77146],[-0.260833,52.770759],[-0.262544,52.769184],[-0.265878,52.767806],[-0.286703,52.756111],[-0.288466,52.754573],[-0.304509,52.746031],[-0.30681,52.745272],[-0.304618,52.744043],[-0.30668,52.743436],[-0.297299,52.733609],[-0.295277,52.734244],[-0.27832,52.716501],[-0.281277,52.714264],[-0.26718,52.699086],[-0.265012,52.700879],[-0.26369,52.701],[-0.255766,52.692611],[-0.250422,52.69447],[-0.248757,52.693043],[-0.248093,52.693258],[-0.223208,52.666762],[-0.219911,52.667731],[-0.21561,52.667882],[-0.214026,52.668291],[-0.212502,52.666679],[-0.209654,52.66699],[-0.206038,52.668073],[-0.205519,52.666832],[-0.203075,52.665105],[-0.200591,52.66144],[-0.199818,52.660864],[-0.196478,52.6555],[-0.195566,52.655375],[-0.192868,52.652438],[-0.190418,52.65247],[-0.18002,52.660561],[-0.141062,52.651507],[-0.139502,52.654862],[-0.137017,52.65554],[-0.133024,52.656958],[-0.12982,52.659212],[-0.126535,52.659995],[-0.117415,52.664764],[-0.11551,52.666476],[-0.112995,52.667976],[-0.102196,52.672206],[-0.099435,52.670392],[-0.096682,52.67006],[-0.094322,52.668179],[-0.090431,52.666685],[-0.087837,52.66678],[-0.080315,52.670546],[-0.074611,52.672074],[-0.072008,52.672072],[-0.069672,52.671406],[-0.066973,52.672034],[-0.065446,52.671996],[-0.063785,52.675224],[-0.05949,52.674687],[-0.044926,52.66919],[-0.04031,52.667142],[-0.032103,52.665361],[-0.031271,52.661533],[0.0215,52.664887],[0.048013,52.68105],[0.048998,52.681997],[0.048706,52.683501],[0.049624,52.68615],[0.049149,52.68693],[0.049338,52.688704],[0.04842,52.690105],[0.044981,52.691936],[0.044571,52.692482],[0.045231,52.69371],[0.044882,52.69579],[0.045907,52.697794],[0.044399,52.700683],[0.045235,52.701432],[0.045045,52.703238],[0.045461,52.705007],[0.044842,52.710863],[0.045108,52.711998],[0.044149,52.714382],[0.046263,52.715378],[0.048018,52.718785],[0.055137,52.72183],[0.059239,52.724724],[0.062307,52.725387],[0.063904,52.727436],[0.067973,52.726354],[0.072589,52.725551],[0.07604,52.724522],[0.082641,52.72456],[0.087548,52.72357],[0.090098,52.724032],[0.091649,52.725216],[0.094587,52.728448],[0.098789,52.73034],[0.100774,52.730419],[0.10254,52.729865],[0.10494,52.730504],[0.111105,52.729779],[0.113685,52.72999],[0.114144,52.731397],[0.115324,52.732301],[0.116796,52.732727],[0.119713,52.732877],[0.129047,52.738436],[0.130959,52.738388],[0.132975,52.739304],[0.137737,52.738916],[0.140653,52.739753],[0.143683,52.74],[0.144127,52.739029],[0.147613,52.739446],[0.148291,52.738638],[0.15083,52.738745],[0.152501,52.73814],[0.167046,52.739392],[0.170181,52.739894],[0.170153,52.738957],[0.171259,52.738262],[0.186972,52.757419],[0.195656,52.767769],[0.198656,52.773078],[0.205608,52.78674],[0.212238,52.811146],[0.212409,52.813657],[0.214663,52.820897],[0.214777,52.822993],[0.215418,52.826072],[0.2124,52.825104],[0.210529,52.825286],[0.211425,52.826211],[0.205685,52.824901],[0.205535,52.824716],[0.204491,52.826003],[0.20599,52.826568],[0.209655,52.827398],[0.209649,52.829138],[0.213092,52.829275],[0.209275,52.831833],[0.207691,52.833605],[0.20612,52.833737],[0.20359,52.836829],[0.201569,52.838624],[0.20017,52.841805],[0.198111,52.843154],[0.197166,52.844773],[0.197047,52.846509],[0.195136,52.847195],[0.195657,52.848477],[0.195433,52.849717],[0.192696,52.85148],[0.192625,52.852509],[0.190965,52.853248],[0.188839,52.853608],[0.186276,52.85473],[0.184883,52.856556],[0.185195,52.857364],[0.18255,52.85932],[0.181122,52.861228],[0.181525,52.86273],[0.180782,52.864215],[0.179452,52.864243],[0.179718,52.865907],[0.17859,52.86735],[0.179006,52.869333],[0.178588,52.871304],[0.177375,52.872447],[0.176418,52.87404],[0.175444,52.874214],[0.172726,52.875492],[0.170816,52.877122],[0.168144,52.877687],[0.163943,52.879086],[0.161313,52.879465],[0.160461,52.880051],[0.157405,52.880389],[0.152955,52.88157],[0.150128,52.881509],[0.150188,52.882385],[0.147751,52.88187],[0.146893,52.882116],[0.145003,52.885079],[0.143238,52.885451],[0.140751,52.885519],[0.139411,52.885961],[0.137845,52.884504],[0.137093,52.885438],[0.137985,52.886807],[0.131912,52.888899],[0.130936,52.888936],[0.129377,52.889834],[0.122698,52.89121],[0.121123,52.890749],[0.118717,52.892353],[0.117605,52.892677],[0.116635,52.890988],[0.114662,52.888773],[0.114392,52.885035],[0.114887,52.884144],[0.115098,52.882347],[0.112087,52.883256],[0.109105,52.883312],[0.101914,52.8838],[0.101439,52.884087],[0.10155,52.884308],[0.102184,52.885065],[0.101153,52.886792],[0.100952,52.888074],[0.100348,52.888282],[0.100079,52.889001],[0.099711,52.892451],[0.100355,52.893469],[0.099466,52.894493],[0.098021,52.894545],[0.096205,52.894015],[0.092279,52.89512],[0.090448,52.895073],[0.089255,52.895942],[0.089025,52.897438],[0.086617,52.897214],[0.084093,52.896276],[0.080621,52.89595],[0.080001,52.895004],[0.077903,52.894823],[0.080598,52.896645],[0.082637,52.896267],[0.083683,52.896986],[0.083183,52.897901],[0.086065,52.898218],[0.085934,52.899755],[0.08256,52.899563],[0.080264,52.901717],[0.077606,52.902251],[0.077646,52.903274],[0.075896,52.903624],[0.072123,52.903505],[0.074162,52.905134],[0.072152,52.905425],[0.068393,52.904699],[0.06495,52.904527],[0.061335,52.903959],[0.058662,52.904395],[0.053647,52.901908],[0.04881,52.902164],[0.046478,52.901522],[0.044322,52.899813],[0.042346,52.898977],[0.037508,52.899574],[0.0366,52.89942],[0.03509,52.898214],[0.035206,52.897639],[0.03487,52.896944],[0.032655,52.896942],[0.032912,52.897607],[0.031652,52.898239],[0.028549,52.897556],[0.029631,52.898993],[0.020512,52.895871],[0.021616,52.895529],[0.021659,52.89439],[0.018263,52.893519],[0.015698,52.893508],[0.015098,52.894001],[0.010907,52.892475],[0.005787,52.890213],[-0.01773,52.879966],[-0.023367,52.877379],[-0.036982,52.872421],[-0.034955,52.870401],[-0.040349,52.868451],[-0.059243,52.863669],[-0.065631,52.862895],[-0.066022,52.8635],[-0.068949,52.8642],[-0.08123,52.856171],[-0.0846,52.854857],[-0.089854,52.853271],[-0.095421,52.848687],[-0.096456,52.847443],[-0.096375,52.844406],[-0.097029,52.843364],[-0.110248,52.828873],[-0.112949,52.82644],[-0.117319,52.821632],[-0.119498,52.818333],[-0.124024,52.814022],[-0.125611,52.810984],[-0.133259,52.801235],[-0.135173,52.799707],[-0.125986,52.811182],[-0.124391,52.814268],[-0.120301,52.818174],[-0.117718,52.821788],[-0.113593,52.826514],[-0.111359,52.828438],[-0.098119,52.843007],[-0.097116,52.84426],[-0.097208,52.847481],[-0.094133,52.850712],[-0.090908,52.853298],[-0.087268,52.854748],[-0.085334,52.855105],[-0.081995,52.856272],[-0.069776,52.864398]]]]},"properties":{"LAD22CD":"E07000140","LAD22NM":"South Holland","BNG_E":532910,"BNG_N":322928,"LONG":-0.03057,"LAT":52.78758,"GlobalID":"1e134a55-a86a-4448-ac79-825a060de265"},"id":162}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.256496,52.905883],[-0.275414,52.909596],[-0.278858,52.910031],[-0.283716,52.910059],[-0.290546,52.91081],[-0.292877,52.910772],[-0.310385,52.915012],[-0.314432,52.916402],[-0.32283,52.91753],[-0.339261,52.91695],[-0.341828,52.916535],[-0.345143,52.916537],[-0.352024,52.915837],[-0.357894,52.915651],[-0.357524,52.911868],[-0.358552,52.911664],[-0.358145,52.909979],[-0.358942,52.90991],[-0.359022,52.908453],[-0.360706,52.903822],[-0.360825,52.901939],[-0.366069,52.901164],[-0.365824,52.897931],[-0.371488,52.897724],[-0.375068,52.898461],[-0.382547,52.898417],[-0.383458,52.89865],[-0.388785,52.8975],[-0.391297,52.897253],[-0.391283,52.896518],[-0.398719,52.89442],[-0.410406,52.891867],[-0.41433,52.891272],[-0.42712,52.890434],[-0.427874,52.888663],[-0.430754,52.888848],[-0.437341,52.886996],[-0.440739,52.892639],[-0.44237,52.894432],[-0.441887,52.894823],[-0.443549,52.896278],[-0.444161,52.898991],[-0.445332,52.900572],[-0.447592,52.900501],[-0.454668,52.9014],[-0.469756,52.901188],[-0.47182,52.904193],[-0.472065,52.905435],[-0.476927,52.905615],[-0.479884,52.906422],[-0.481786,52.907998],[-0.483479,52.910864],[-0.486646,52.911788],[-0.488244,52.913171],[-0.489208,52.91347],[-0.492437,52.917777],[-0.493975,52.920738],[-0.492001,52.920886],[-0.48761,52.920582],[-0.48828,52.92191],[-0.488363,52.924042],[-0.487563,52.925174],[-0.48629,52.924958],[-0.485997,52.926089],[-0.486866,52.928053],[-0.481657,52.92802],[-0.481582,52.929827],[-0.479849,52.929771],[-0.479488,52.931424],[-0.48094,52.932349],[-0.481532,52.933922],[-0.483386,52.933769],[-0.483725,52.937699],[-0.482719,52.937679],[-0.48287,52.939389],[-0.487179,52.939512],[-0.48787,52.94378],[-0.489147,52.946515],[-0.489672,52.946931],[-0.494135,52.948333],[-0.494276,52.951723],[-0.492861,52.951982],[-0.494595,52.954063],[-0.502104,52.951042],[-0.508042,52.949311],[-0.507641,52.947757],[-0.510007,52.947573],[-0.511311,52.950556],[-0.512615,52.951594],[-0.515212,52.957521],[-0.517846,52.960288],[-0.52115,52.959099],[-0.522501,52.959901],[-0.523788,52.958448],[-0.524735,52.958721],[-0.526712,52.955735],[-0.529901,52.956287],[-0.533811,52.955119],[-0.540502,52.954356],[-0.545025,52.954679],[-0.550002,52.95417],[-0.554099,52.954431],[-0.543157,52.971742],[-0.540388,52.967334],[-0.526173,52.969387],[-0.528458,52.971206],[-0.531059,52.975751],[-0.526749,52.97695],[-0.526842,52.980829],[-0.526057,52.982124],[-0.528305,52.9837],[-0.52557,52.985314],[-0.526773,52.986443],[-0.523542,52.988176],[-0.526092,52.989654],[-0.531943,52.989817],[-0.527851,53.017721],[-0.522814,53.049642],[-0.53565,53.049755],[-0.563962,53.049517],[-0.565633,53.049298],[-0.573596,53.049619],[-0.574187,53.049258],[-0.574093,53.046995],[-0.579837,53.04711],[-0.580255,53.046135],[-0.584527,53.046246],[-0.584939,53.045677],[-0.589411,53.046604],[-0.589355,53.047598],[-0.593344,53.048065],[-0.596495,53.048156],[-0.597654,53.049399],[-0.601775,53.049562],[-0.601758,53.051112],[-0.603793,53.051151],[-0.604142,53.052154],[-0.637345,53.054679],[-0.637418,53.05334],[-0.636009,53.052351],[-0.644142,53.052905],[-0.644288,53.052581],[-0.648632,53.053175],[-0.648208,53.053756],[-0.661998,53.054996],[-0.661404,53.05711],[-0.66738,53.057496],[-0.670445,53.05813],[-0.675791,53.058272],[-0.680939,53.058001],[-0.681462,53.058904],[-0.684841,53.058805],[-0.687511,53.058954],[-0.689889,53.059763],[-0.695197,53.059149],[-0.69523,53.057759],[-0.693526,53.057119],[-0.693974,53.056315],[-0.698461,53.053244],[-0.702455,53.052985],[-0.702706,53.051975],[-0.706397,53.05219],[-0.713924,53.057044],[-0.715509,53.058846],[-0.716204,53.059059],[-0.7198,53.059915],[-0.722598,53.059922],[-0.725363,53.05749],[-0.725589,53.056293],[-0.731075,53.054346],[-0.733372,53.055573],[-0.73425,53.054833],[-0.736962,53.054915],[-0.738825,53.05461],[-0.740685,53.053586],[-0.742834,53.05464],[-0.745628,53.054126],[-0.749555,53.05511],[-0.753331,53.048242],[-0.755856,53.044],[-0.757147,53.037865],[-0.756619,53.036676],[-0.757818,53.036477],[-0.758854,53.03517],[-0.758435,53.032387],[-0.760827,53.02941],[-0.770386,53.027318],[-0.773956,53.025535],[-0.776673,53.024711],[-0.780409,53.024402],[-0.784872,53.025183],[-0.785844,53.025741],[-0.788414,53.025853],[-0.795825,53.010598],[-0.798614,53.011011],[-0.802031,53.012113],[-0.803645,53.012955],[-0.804274,53.012246],[-0.80406,53.006385],[-0.802616,53.006385],[-0.80251,53.005361],[-0.800521,53.003827],[-0.80019,53.002194],[-0.795859,53.000594],[-0.794936,52.999967],[-0.793822,52.997866],[-0.791891,52.997475],[-0.792563,52.995884],[-0.789456,52.993938],[-0.787325,52.993207],[-0.788095,52.99177],[-0.784459,52.990145],[-0.784536,52.988568],[-0.78213,52.988473],[-0.782204,52.98759],[-0.780905,52.986427],[-0.780306,52.985115],[-0.778457,52.983699],[-0.777554,52.983807],[-0.777669,52.980389],[-0.776789,52.979005],[-0.776995,52.97786],[-0.778279,52.976923],[-0.777278,52.976035],[-0.778224,52.975033],[-0.777109,52.974578],[-0.777673,52.972063],[-0.777715,52.966928],[-0.778299,52.965337],[-0.778009,52.962833],[-0.779258,52.961333],[-0.778368,52.960344],[-0.778438,52.959314],[-0.776418,52.959135],[-0.774314,52.958111],[-0.773674,52.958505],[-0.770322,52.9569],[-0.76454,52.954936],[-0.759999,52.952712],[-0.75947,52.952846],[-0.756947,52.950993],[-0.755468,52.950539],[-0.75495,52.949556],[-0.755822,52.947776],[-0.755507,52.947132],[-0.757923,52.946321],[-0.756846,52.944602],[-0.759536,52.94135],[-0.760871,52.937732],[-0.762087,52.935965],[-0.761871,52.93419],[-0.765249,52.929902],[-0.766107,52.928026],[-0.765515,52.925881],[-0.762919,52.923796],[-0.766577,52.922946],[-0.767483,52.922464],[-0.766738,52.92149],[-0.768436,52.920624],[-0.769445,52.919607],[-0.768712,52.917433],[-0.768877,52.916281],[-0.771982,52.912512],[-0.77302,52.909041],[-0.774543,52.907343],[-0.775429,52.905758],[-0.77686,52.904809],[-0.773801,52.902536],[-0.770009,52.903717],[-0.76879,52.901954],[-0.763967,52.903142],[-0.763696,52.901075],[-0.761773,52.901332],[-0.761714,52.90049],[-0.75911,52.900717],[-0.758675,52.899493],[-0.759832,52.898728],[-0.762489,52.894458],[-0.763989,52.893645],[-0.764317,52.892478],[-0.763566,52.891995],[-0.76394,52.890859],[-0.766206,52.88843],[-0.766592,52.886798],[-0.761661,52.884555],[-0.760335,52.885197],[-0.757756,52.884276],[-0.757157,52.885984],[-0.750077,52.88395],[-0.747735,52.882975],[-0.745532,52.882792],[-0.742723,52.883157],[-0.740425,52.880045],[-0.739175,52.87695],[-0.73611,52.872966],[-0.73615,52.870091],[-0.733673,52.866922],[-0.729105,52.862163],[-0.724592,52.858825],[-0.72184,52.856002],[-0.719206,52.854412],[-0.71019,52.845838],[-0.708218,52.843495],[-0.706541,52.840372],[-0.705831,52.838053],[-0.703653,52.833672],[-0.698388,52.825999],[-0.695604,52.823565],[-0.6924,52.821781],[-0.687919,52.818255],[-0.686497,52.816289],[-0.682041,52.811796],[-0.682175,52.810716],[-0.680629,52.807213],[-0.682754,52.798961],[-0.683107,52.794683],[-0.681584,52.791129],[-0.677299,52.789986],[-0.677494,52.788359],[-0.67411,52.787768],[-0.67455,52.785527],[-0.676959,52.785693],[-0.675507,52.781018],[-0.67566,52.77754],[-0.674355,52.776754],[-0.672757,52.771437],[-0.66951,52.766296],[-0.668165,52.762062],[-0.664102,52.75671],[-0.662598,52.755494],[-0.656929,52.756673],[-0.645078,52.757274],[-0.639572,52.757173],[-0.628148,52.757974],[-0.627687,52.757694],[-0.62305,52.758953],[-0.615496,52.759329],[-0.611773,52.759824],[-0.608594,52.759713],[-0.605444,52.750493],[-0.59771,52.750993],[-0.593909,52.7519],[-0.589566,52.753775],[-0.583448,52.753877],[-0.580509,52.752878],[-0.572637,52.753109],[-0.5715,52.750498],[-0.571451,52.747874],[-0.569507,52.747532],[-0.569012,52.746618],[-0.566111,52.744988],[-0.560864,52.745593],[-0.560034,52.745472],[-0.553262,52.742542],[-0.547954,52.741039],[-0.544714,52.739612],[-0.539974,52.738402],[-0.538812,52.734055],[-0.540315,52.728773],[-0.542823,52.726052],[-0.542434,52.723281],[-0.538748,52.72311],[-0.533045,52.721583],[-0.525004,52.720977],[-0.519186,52.721014],[-0.516494,52.720253],[-0.512641,52.71968],[-0.510655,52.718919],[-0.511004,52.717713],[-0.509862,52.715354],[-0.506962,52.715956],[-0.505721,52.713605],[-0.504537,52.713349],[-0.502463,52.712151],[-0.499844,52.712112],[-0.495744,52.710806],[-0.494531,52.709653],[-0.493242,52.710284],[-0.489595,52.711057],[-0.48308,52.710658],[-0.480217,52.710971],[-0.470282,52.709775],[-0.467897,52.709782],[-0.465546,52.710289],[-0.463645,52.708494],[-0.460875,52.708108],[-0.459465,52.708406],[-0.457084,52.709682],[-0.453229,52.70927],[-0.451092,52.70958],[-0.450533,52.708034],[-0.443958,52.708025],[-0.444722,52.706173],[-0.436335,52.706785],[-0.435741,52.707038],[-0.433498,52.705848],[-0.430443,52.705422],[-0.429727,52.703289],[-0.428697,52.702662],[-0.428366,52.701243],[-0.428921,52.698064],[-0.430545,52.693928],[-0.430856,52.692007],[-0.432521,52.69073],[-0.432213,52.68803],[-0.433178,52.685483],[-0.434366,52.685683],[-0.434888,52.684733],[-0.434055,52.683705],[-0.438468,52.682955],[-0.440237,52.681764],[-0.441328,52.680491],[-0.446352,52.678614],[-0.449316,52.675282],[-0.451305,52.673947],[-0.454171,52.672692],[-0.456191,52.670393],[-0.459485,52.669563],[-0.459451,52.669101],[-0.462596,52.669179],[-0.46607,52.668863],[-0.476562,52.667061],[-0.48041,52.666568],[-0.481456,52.665836],[-0.490268,52.664422],[-0.490609,52.665033],[-0.494712,52.664632],[-0.493866,52.660717],[-0.496868,52.660419],[-0.50198,52.660686],[-0.506379,52.660423],[-0.506675,52.659526],[-0.519018,52.666526],[-0.52063,52.666503],[-0.521829,52.665387],[-0.523586,52.665234],[-0.514077,52.656787],[-0.511845,52.656341],[-0.512551,52.654758],[-0.507429,52.648907],[-0.506462,52.648199],[-0.504374,52.647981],[-0.503875,52.646801],[-0.5044,52.64624],[-0.499333,52.642511],[-0.495026,52.640236],[-0.494774,52.640314],[-0.491488,52.641476],[-0.490739,52.642339],[-0.488343,52.643757],[-0.486149,52.643587],[-0.485048,52.644448],[-0.485558,52.645314],[-0.48432,52.646129],[-0.48345,52.645427],[-0.475245,52.645058],[-0.475958,52.645447],[-0.474514,52.646685],[-0.475832,52.648715],[-0.467636,52.649899],[-0.45897,52.650225],[-0.456047,52.650009],[-0.453036,52.649245],[-0.452695,52.654278],[-0.450476,52.654128],[-0.449018,52.653059],[-0.447412,52.653118],[-0.440832,52.652284],[-0.440282,52.651409],[-0.437372,52.649812],[-0.435273,52.650225],[-0.43209,52.648285],[-0.430236,52.648993],[-0.428217,52.649079],[-0.427268,52.648575],[-0.425367,52.648508],[-0.425036,52.647591],[-0.423315,52.648052],[-0.420815,52.646865],[-0.4175,52.646773],[-0.416652,52.647546],[-0.413185,52.648362],[-0.410412,52.64779],[-0.407651,52.648123],[-0.405681,52.648046],[-0.401152,52.649552],[-0.399962,52.649603],[-0.39846,52.6511],[-0.395964,52.652567],[-0.395712,52.653337],[-0.393178,52.654082],[-0.389103,52.653966],[-0.382555,52.656063],[-0.380323,52.655597],[-0.378868,52.656162],[-0.377266,52.655663],[-0.376583,52.656931],[-0.374925,52.657918],[-0.373097,52.657402],[-0.370043,52.658915],[-0.367644,52.659593],[-0.363816,52.660267],[-0.360955,52.659565],[-0.359424,52.66003],[-0.356756,52.659947],[-0.352415,52.661747],[-0.350148,52.661644],[-0.349445,52.66313],[-0.346544,52.663124],[-0.344803,52.664202],[-0.34426,52.665425],[-0.342713,52.665932],[-0.341313,52.665389],[-0.339952,52.666066],[-0.337537,52.668243],[-0.336244,52.668639],[-0.337091,52.670488],[-0.336044,52.671535],[-0.336246,52.674116],[-0.335037,52.674866],[-0.333114,52.674837],[-0.331516,52.674341],[-0.330237,52.673476],[-0.32755,52.674212],[-0.322875,52.674196],[-0.320737,52.673671],[-0.320524,52.675104],[-0.309972,52.673478],[-0.297309,52.670601],[-0.294554,52.669346],[-0.293396,52.669457],[-0.291664,52.670373],[-0.289503,52.670345],[-0.28842,52.669782],[-0.28685,52.66803],[-0.282262,52.667171],[-0.279084,52.666004],[-0.278876,52.664621],[-0.277788,52.663301],[-0.276207,52.662652],[-0.274879,52.660704],[-0.273075,52.659479],[-0.270336,52.659442],[-0.268961,52.65635],[-0.267483,52.655854],[-0.266198,52.654702],[-0.263794,52.653897],[-0.263577,52.652507],[-0.261238,52.651484],[-0.258665,52.651645],[-0.256103,52.6534],[-0.249099,52.656415],[-0.23885,52.660524],[-0.238349,52.66021],[-0.230075,52.663645],[-0.224499,52.665464],[-0.218171,52.667064],[-0.212502,52.666679],[-0.214026,52.668291],[-0.21561,52.667882],[-0.219911,52.667731],[-0.223208,52.666762],[-0.248093,52.693258],[-0.248757,52.693043],[-0.250422,52.69447],[-0.255766,52.692611],[-0.26369,52.701],[-0.265012,52.700879],[-0.26718,52.699086],[-0.281277,52.714264],[-0.27832,52.716501],[-0.295277,52.734244],[-0.297299,52.733609],[-0.30668,52.743436],[-0.304618,52.744043],[-0.30681,52.745272],[-0.304509,52.746031],[-0.288466,52.754573],[-0.286703,52.756111],[-0.265878,52.767806],[-0.262544,52.769184],[-0.260833,52.770759],[-0.260617,52.77146],[-0.261787,52.777089],[-0.260619,52.779503],[-0.260687,52.781134],[-0.262174,52.787071],[-0.26411,52.787455],[-0.264023,52.789507],[-0.264846,52.790261],[-0.266042,52.792836],[-0.266803,52.796508],[-0.26949,52.811088],[-0.272087,52.832589],[-0.275035,52.840867],[-0.276293,52.861688],[-0.270888,52.872108],[-0.265862,52.871194],[-0.264759,52.870193],[-0.264667,52.868677],[-0.260778,52.868131],[-0.25765,52.8667],[-0.256554,52.868361],[-0.258431,52.870241],[-0.258571,52.872321],[-0.26952,52.876957],[-0.256496,52.905883]]]},"properties":{"LAD22CD":"E07000141","LAD22NM":"South Kesteven","BNG_E":501406,"BNG_N":328986,"LONG":-0.49565,"LAT":52.84885,"GlobalID":"884d2428-8cf0-4c94-9e94-720138a2433e"},"id":163}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.292115,53.613267],[-0.29229,53.613536],[-0.298238,53.612562],[-0.300931,53.616388],[-0.3063,53.61406],[-0.308555,53.614329],[-0.30681,53.609576],[-0.305755,53.607994],[-0.306192,53.607393],[-0.305008,53.605815],[-0.305094,53.604727],[-0.303131,53.602894],[-0.304053,53.600546],[-0.300754,53.59554],[-0.300822,53.595136],[-0.303377,53.594485],[-0.304578,53.593861],[-0.303424,53.59079],[-0.306981,53.590261],[-0.310868,53.590155],[-0.310331,53.588341],[-0.312297,53.587731],[-0.312875,53.587072],[-0.312442,53.585758],[-0.314395,53.585579],[-0.314286,53.583952],[-0.317621,53.580958],[-0.320947,53.579571],[-0.320015,53.578962],[-0.323607,53.576042],[-0.322833,53.57535],[-0.326808,53.571136],[-0.328783,53.568539],[-0.329867,53.566325],[-0.330404,53.566258],[-0.335939,53.558627],[-0.348659,53.559513],[-0.345855,53.557959],[-0.347934,53.556059],[-0.34938,53.555809],[-0.356324,53.556053],[-0.359893,53.557832],[-0.362802,53.558625],[-0.368372,53.558981],[-0.368755,53.55933],[-0.373232,53.558962],[-0.388349,53.559751],[-0.400108,53.56142],[-0.408843,53.562119],[-0.419669,53.563773],[-0.424328,53.569652],[-0.428193,53.572603],[-0.429001,53.574525],[-0.434095,53.572818],[-0.439408,53.570293],[-0.440354,53.568778],[-0.441962,53.567631],[-0.442526,53.566264],[-0.445091,53.563837],[-0.447675,53.562685],[-0.44942,53.561284],[-0.450776,53.557966],[-0.452383,53.559442],[-0.457658,53.558868],[-0.460855,53.558045],[-0.460906,53.557324],[-0.46273,53.555959],[-0.465672,53.556023],[-0.466507,53.55539],[-0.467156,53.553685],[-0.466713,53.549731],[-0.467019,53.548961],[-0.473045,53.548824],[-0.474859,53.54814],[-0.476532,53.545913],[-0.481103,53.545828],[-0.483636,53.54528],[-0.49092,53.545874],[-0.491874,53.543962],[-0.494071,53.5418],[-0.496583,53.540113],[-0.499761,53.53892],[-0.501258,53.537462],[-0.481367,53.538245],[-0.473931,53.539087],[-0.463418,53.540846],[-0.454179,53.542962],[-0.45068,53.543148],[-0.450341,53.544043],[-0.446405,53.544574],[-0.442588,53.546239],[-0.439324,53.546425],[-0.437044,53.545955],[-0.433728,53.545864],[-0.430665,53.546337],[-0.429301,53.545098],[-0.427687,53.544258],[-0.427399,53.540948],[-0.421863,53.534448],[-0.418287,53.534808],[-0.4144,53.535842],[-0.41235,53.535257],[-0.412003,53.534553],[-0.408145,53.532109],[-0.407825,53.530108],[-0.40949,53.52912],[-0.408513,53.527292],[-0.406172,53.524505],[-0.405827,53.522241],[-0.406857,53.520167],[-0.405075,53.517617],[-0.413482,53.515525],[-0.415531,53.514692],[-0.417669,53.514699],[-0.419471,53.514187],[-0.421603,53.514039],[-0.425015,53.512729],[-0.427322,53.512248],[-0.439009,53.510917],[-0.444037,53.509392],[-0.447549,53.50917],[-0.449973,53.508673],[-0.452369,53.508711],[-0.46156,53.509978],[-0.466968,53.509719],[-0.47069,53.509117],[-0.475839,53.508979],[-0.478565,53.508394],[-0.48132,53.506967],[-0.488384,53.50486],[-0.486496,53.504532],[-0.485147,53.503589],[-0.483788,53.501563],[-0.482404,53.500387],[-0.480687,53.496245],[-0.483183,53.493449],[-0.485008,53.490348],[-0.487222,53.488746],[-0.487449,53.48606],[-0.488644,53.485088],[-0.487689,53.483823],[-0.48778,53.482968],[-0.486161,53.479908],[-0.481508,53.478373],[-0.473564,53.476643],[-0.47175,53.474873],[-0.483552,53.472419],[-0.500033,53.469622],[-0.50532,53.468194],[-0.508779,53.467759],[-0.512698,53.467781],[-0.529713,53.463815],[-0.55171,53.460814],[-0.551791,53.45952],[-0.566053,53.458125],[-0.584484,53.456864],[-0.597171,53.456735],[-0.59948,53.456402],[-0.613403,53.456951],[-0.621673,53.457821],[-0.629753,53.458219],[-0.627161,53.460404],[-0.62665,53.462061],[-0.629028,53.465054],[-0.634807,53.469552],[-0.633347,53.470403],[-0.633472,53.471245],[-0.6348,53.472385],[-0.634438,53.47303],[-0.632548,53.473827],[-0.633542,53.474964],[-0.632599,53.475399],[-0.634337,53.480013],[-0.632411,53.480107],[-0.631994,53.481354],[-0.634059,53.485399],[-0.630134,53.485994],[-0.631294,53.488312],[-0.628451,53.488781],[-0.628644,53.490766],[-0.625727,53.495581],[-0.625771,53.498673],[-0.628193,53.506823],[-0.624491,53.512839],[-0.644252,53.513248],[-0.65835,53.51386],[-0.675707,53.512525],[-0.676129,53.513024],[-0.678646,53.513708],[-0.680747,53.513542],[-0.681666,53.514595],[-0.684712,53.51412],[-0.686456,53.516013],[-0.687355,53.516389],[-0.688883,53.515758],[-0.691012,53.516214],[-0.692195,53.515939],[-0.695442,53.516293],[-0.697722,53.516149],[-0.698121,53.515531],[-0.699758,53.515385],[-0.699938,53.51461],[-0.701578,53.514183],[-0.713887,53.516846],[-0.726356,53.518937],[-0.730118,53.519427],[-0.738568,53.519881],[-0.742113,53.510405],[-0.748128,53.504421],[-0.751058,53.500538],[-0.75226,53.499926],[-0.754599,53.499704],[-0.761163,53.500459],[-0.763788,53.500317],[-0.765908,53.499893],[-0.767236,53.498905],[-0.767761,53.497631],[-0.767802,53.494317],[-0.769011,53.493266],[-0.772874,53.491039],[-0.774998,53.488762],[-0.774713,53.487734],[-0.770901,53.482915],[-0.770624,53.479674],[-0.772573,53.478131],[-0.777646,53.478246],[-0.779586,53.47802],[-0.78258,53.477272],[-0.784009,53.476205],[-0.78495,53.473646],[-0.7836,53.464383],[-0.785224,53.461935],[-0.793101,53.45683],[-0.799924,53.453126],[-0.801964,53.451085],[-0.804683,53.447315],[-0.809023,53.443521],[-0.81159,53.442605],[-0.81897,53.441264],[-0.819969,53.440639],[-0.81855,53.436669],[-0.815498,53.432445],[-0.817577,53.427588],[-0.817223,53.426353],[-0.807783,53.419643],[-0.804261,53.41781],[-0.796512,53.415292],[-0.794703,53.41496],[-0.790447,53.415729],[-0.78804,53.415253],[-0.787877,53.414284],[-0.790698,53.411797],[-0.790977,53.410875],[-0.787657,53.404453],[-0.785251,53.402253],[-0.779844,53.399767],[-0.777612,53.39809],[-0.776493,53.39651],[-0.776581,53.393578],[-0.775721,53.391255],[-0.77723,53.389312],[-0.783957,53.386091],[-0.788757,53.386184],[-0.789714,53.385831],[-0.783003,53.383742],[-0.78211,53.384063],[-0.780033,53.383011],[-0.774644,53.379155],[-0.77517,53.377094],[-0.781098,53.376089],[-0.785156,53.374597],[-0.788733,53.369581],[-0.790106,53.368294],[-0.789491,53.365143],[-0.790409,53.363482],[-0.789888,53.363225],[-0.785199,53.362931],[-0.780617,53.361684],[-0.779572,53.361974],[-0.778601,53.363457],[-0.776789,53.36475],[-0.774571,53.364947],[-0.77283,53.364179],[-0.76545,53.356355],[-0.763737,53.355559],[-0.759661,53.354899],[-0.758092,53.353878],[-0.758327,53.352204],[-0.759438,53.351275],[-0.762322,53.350079],[-0.763637,53.348256],[-0.764291,53.346345],[-0.76325,53.344756],[-0.757701,53.342102],[-0.756324,53.340724],[-0.756181,53.339427],[-0.759498,53.336462],[-0.760098,53.333538],[-0.76155,53.332031],[-0.765203,53.331369],[-0.765933,53.330122],[-0.761837,53.327255],[-0.759907,53.325026],[-0.758197,53.324777],[-0.753696,53.325632],[-0.751499,53.325509],[-0.749683,53.324618],[-0.749226,53.323842],[-0.74953,53.322606],[-0.752691,53.320569],[-0.753214,53.318946],[-0.753297,53.313507],[-0.752953,53.311584],[-0.751887,53.309415],[-0.746849,53.30539],[-0.746226,53.303507],[-0.750093,53.293757],[-0.750038,53.293332],[-0.753524,53.292478],[-0.756691,53.292324],[-0.758154,53.292559],[-0.759605,53.293659],[-0.75904,53.297202],[-0.760764,53.299077],[-0.762554,53.299184],[-0.764249,53.298175],[-0.764111,53.294982],[-0.764758,53.293205],[-0.766498,53.291296],[-0.774086,53.286432],[-0.777224,53.283864],[-0.77715,53.282125],[-0.774204,53.280467],[-0.772157,53.278079],[-0.767964,53.275536],[-0.76481,53.274393],[-0.763653,53.27309],[-0.763722,53.271869],[-0.764939,53.269954],[-0.772415,53.261129],[-0.772548,53.258478],[-0.771666,53.257837],[-0.772087,53.255882],[-0.769783,53.253928],[-0.769805,53.252701],[-0.772086,53.25232],[-0.776695,53.252488],[-0.777911,53.252121],[-0.777701,53.250582],[-0.776303,53.248468],[-0.776496,53.246893],[-0.77105,53.246754],[-0.771053,53.24616],[-0.763211,53.245878],[-0.760753,53.245644],[-0.760367,53.245207],[-0.747215,53.244391],[-0.740577,53.243669],[-0.735084,53.243874],[-0.734865,53.247675],[-0.73418,53.249069],[-0.735075,53.251474],[-0.734822,53.253041],[-0.734151,53.254004],[-0.727129,53.255443],[-0.725926,53.255278],[-0.721767,53.256097],[-0.71952,53.257155],[-0.712976,53.258137],[-0.694764,53.258402],[-0.69113,53.257669],[-0.688027,53.258391],[-0.683542,53.254546],[-0.682352,53.251537],[-0.68061,53.251993],[-0.666577,53.239702],[-0.665517,53.2407],[-0.653617,53.242316],[-0.652926,53.242729],[-0.648464,53.243413],[-0.646953,53.245906],[-0.646466,53.247982],[-0.647287,53.249123],[-0.648377,53.253168],[-0.638439,53.254212],[-0.631515,53.255288],[-0.631795,53.2564],[-0.622481,53.25813],[-0.620902,53.25704],[-0.619466,53.256592],[-0.612205,53.256095],[-0.611474,53.256424],[-0.601996,53.250433],[-0.597433,53.247263],[-0.595112,53.24517],[-0.561728,53.25126],[-0.554693,53.252149],[-0.544779,53.253919],[-0.538581,53.254563],[-0.526508,53.253854],[-0.514873,53.253989],[-0.514165,53.253796],[-0.506211,53.24992],[-0.502451,53.250595],[-0.500594,53.248264],[-0.497567,53.249201],[-0.496012,53.247191],[-0.495441,53.244375],[-0.495814,53.243824],[-0.494343,53.24184],[-0.495749,53.240156],[-0.493915,53.233403],[-0.496424,53.233718],[-0.495119,53.225259],[-0.488318,53.225294],[-0.480842,53.226163],[-0.47467,53.227264],[-0.462028,53.227258],[-0.451941,53.228509],[-0.445395,53.229659],[-0.43209,53.230462],[-0.4136,53.230164],[-0.40614,53.230648],[-0.399548,53.230533],[-0.381868,53.231958],[-0.37879,53.231216],[-0.373904,53.22773],[-0.370812,53.226231],[-0.369721,53.226408],[-0.366656,53.225417],[-0.364252,53.226037],[-0.361709,53.225711],[-0.36173,53.226684],[-0.359552,53.227197],[-0.35827,53.228192],[-0.357494,53.227514],[-0.353255,53.228004],[-0.351313,53.227321],[-0.350082,53.225412],[-0.348068,53.224058],[-0.346534,53.220361],[-0.346533,53.218643],[-0.347725,53.217036],[-0.346738,53.214654],[-0.342284,53.212347],[-0.336818,53.208468],[-0.337547,53.203744],[-0.335736,53.202353],[-0.33079,53.201634],[-0.32897,53.199794],[-0.325525,53.195571],[-0.325121,53.19062],[-0.318907,53.18462],[-0.309634,53.182024],[-0.298584,53.181678],[-0.295812,53.181196],[-0.294542,53.179876],[-0.291245,53.178936],[-0.289651,53.179366],[-0.287998,53.184755],[-0.291931,53.190836],[-0.290932,53.194747],[-0.294719,53.201638],[-0.302264,53.210425],[-0.301088,53.213761],[-0.299471,53.215133],[-0.29273,53.2194],[-0.291954,53.219366],[-0.287564,53.221556],[-0.289124,53.222795],[-0.28375,53.224428],[-0.27982,53.226626],[-0.278895,53.227798],[-0.278714,53.228888],[-0.2765,53.231807],[-0.275961,53.233459],[-0.276224,53.234633],[-0.279346,53.238013],[-0.281489,53.238947],[-0.282472,53.240031],[-0.28178,53.241093],[-0.282713,53.243691],[-0.282545,53.246],[-0.281404,53.248619],[-0.280243,53.249765],[-0.287846,53.253058],[-0.290904,53.254765],[-0.28881,53.255578],[-0.287141,53.25753],[-0.293054,53.25937],[-0.291727,53.26099],[-0.296835,53.262183],[-0.300434,53.262088],[-0.300611,53.263115],[-0.29515,53.26315],[-0.290999,53.262493],[-0.289818,53.263989],[-0.294225,53.26431],[-0.297648,53.263873],[-0.300826,53.263974],[-0.300898,53.267248],[-0.300108,53.267314],[-0.299109,53.268612],[-0.300965,53.269768],[-0.303236,53.268463],[-0.304831,53.269319],[-0.302082,53.27341],[-0.301896,53.27534],[-0.303728,53.275367],[-0.311413,53.277038],[-0.314482,53.277312],[-0.316444,53.279472],[-0.314875,53.280269],[-0.315013,53.281282],[-0.313354,53.283152],[-0.314274,53.2852],[-0.311418,53.287704],[-0.313204,53.288902],[-0.314569,53.2904],[-0.314879,53.29145],[-0.314423,53.294038],[-0.316689,53.296547],[-0.317461,53.298251],[-0.30553,53.302001],[-0.300191,53.302888],[-0.296213,53.30276],[-0.295572,53.302982],[-0.299901,53.310544],[-0.30849,53.319105],[-0.309795,53.319132],[-0.310261,53.320003],[-0.30742,53.320815],[-0.301249,53.323913],[-0.300811,53.324785],[-0.298649,53.325633],[-0.299621,53.326716],[-0.297303,53.329699],[-0.29851,53.331059],[-0.293313,53.334477],[-0.285288,53.328343],[-0.278242,53.324436],[-0.27554,53.321841],[-0.271953,53.322218],[-0.27032,53.323136],[-0.269129,53.324997],[-0.267609,53.326036],[-0.265694,53.326643],[-0.264806,53.326478],[-0.255442,53.329955],[-0.252602,53.331563],[-0.251261,53.332813],[-0.249778,53.333611],[-0.254068,53.337996],[-0.255106,53.340509],[-0.255899,53.344142],[-0.25118,53.344717],[-0.250789,53.345465],[-0.245693,53.346704],[-0.244566,53.347414],[-0.243404,53.347331],[-0.242397,53.348418],[-0.240771,53.349083],[-0.235083,53.350512],[-0.233793,53.351108],[-0.231636,53.351398],[-0.230523,53.352187],[-0.230483,53.354561],[-0.227314,53.355045],[-0.225053,53.355902],[-0.223792,53.357357],[-0.222536,53.357992],[-0.220652,53.361802],[-0.219501,53.362396],[-0.218651,53.363744],[-0.215459,53.366654],[-0.210339,53.370139],[-0.204871,53.371886],[-0.206834,53.374263],[-0.215934,53.380544],[-0.216623,53.382036],[-0.223442,53.38587],[-0.227534,53.39254],[-0.228331,53.396063],[-0.229395,53.398058],[-0.224678,53.39961],[-0.223799,53.398926],[-0.221757,53.399706],[-0.219503,53.399515],[-0.218565,53.399822],[-0.216504,53.401586],[-0.218138,53.402634],[-0.218196,53.403229],[-0.214233,53.404892],[-0.213006,53.404336],[-0.206024,53.408435],[-0.208,53.409273],[-0.209975,53.411312],[-0.210204,53.412024],[-0.209589,53.413702],[-0.211723,53.41571],[-0.211717,53.418509],[-0.212684,53.420089],[-0.217064,53.424108],[-0.216796,53.425418],[-0.21485,53.42825],[-0.21283,53.429361],[-0.212058,53.428724],[-0.205042,53.430468],[-0.20228,53.430534],[-0.197416,53.4324],[-0.198295,53.433576],[-0.195136,53.434847],[-0.191072,53.434746],[-0.185203,53.437203],[-0.18373,53.438602],[-0.180524,53.440702],[-0.177237,53.438872],[-0.175331,53.438305],[-0.172818,53.438186],[-0.167801,53.438585],[-0.167076,53.437796],[-0.164393,53.438271],[-0.163393,53.437063],[-0.161729,53.437293],[-0.160964,53.43657],[-0.158984,53.437156],[-0.141654,53.434882],[-0.134882,53.436244],[-0.131879,53.435939],[-0.134025,53.439032],[-0.134248,53.440738],[-0.137918,53.439961],[-0.139026,53.441496],[-0.144501,53.440903],[-0.147204,53.444134],[-0.14867,53.446808],[-0.149228,53.4467],[-0.152549,53.452241],[-0.151966,53.452374],[-0.154615,53.455731],[-0.155058,53.457214],[-0.156463,53.457456],[-0.156968,53.459146],[-0.158508,53.461584],[-0.156852,53.460968],[-0.156062,53.461736],[-0.15721,53.462929],[-0.15368,53.465678],[-0.158045,53.465122],[-0.159226,53.466856],[-0.159471,53.468018],[-0.166382,53.466833],[-0.166973,53.467659],[-0.168738,53.467415],[-0.17698,53.46803],[-0.177522,53.46867],[-0.181805,53.468649],[-0.183276,53.469377],[-0.18229,53.471683],[-0.182504,53.476125],[-0.185162,53.477183],[-0.184432,53.479332],[-0.187812,53.48042],[-0.186927,53.482038],[-0.188588,53.482951],[-0.189351,53.484784],[-0.191112,53.483918],[-0.194334,53.483778],[-0.196929,53.485166],[-0.19956,53.485644],[-0.202397,53.486647],[-0.210605,53.486288],[-0.20823,53.491935],[-0.207544,53.49497],[-0.206471,53.496767],[-0.205266,53.497046],[-0.205985,53.501122],[-0.207509,53.502931],[-0.205477,53.50477],[-0.204293,53.506495],[-0.204087,53.511767],[-0.204624,53.511756],[-0.205322,53.51416],[-0.206742,53.515573],[-0.206855,53.516714],[-0.210035,53.520672],[-0.211394,53.52167],[-0.213624,53.526359],[-0.213622,53.527484],[-0.212644,53.528181],[-0.212368,53.529352],[-0.21098,53.530494],[-0.21059,53.531706],[-0.215373,53.532375],[-0.21988,53.53261],[-0.216766,53.536008],[-0.216257,53.536058],[-0.214225,53.538946],[-0.212144,53.541055],[-0.209197,53.54319],[-0.208495,53.544436],[-0.20457,53.547907],[-0.202062,53.549549],[-0.202718,53.549882],[-0.194871,53.557514],[-0.192069,53.559701],[-0.189884,53.561012],[-0.190518,53.561882],[-0.189748,53.562722],[-0.18753,53.563613],[-0.191692,53.568465],[-0.195186,53.571619],[-0.198496,53.570117],[-0.200197,53.570926],[-0.200789,53.570394],[-0.202942,53.571456],[-0.20464,53.571615],[-0.206301,53.570235],[-0.207517,53.57084],[-0.209453,53.56962],[-0.21071,53.569451],[-0.213266,53.570092],[-0.217486,53.568452],[-0.219868,53.56945],[-0.222559,53.568017],[-0.225103,53.570275],[-0.223972,53.572177],[-0.228339,53.573497],[-0.227155,53.574751],[-0.228139,53.57535],[-0.227245,53.576136],[-0.231477,53.579582],[-0.231349,53.581093],[-0.233398,53.58289],[-0.234895,53.584666],[-0.235235,53.58557],[-0.239164,53.588162],[-0.24085,53.586646],[-0.24207,53.587047],[-0.243327,53.585775],[-0.247186,53.58684],[-0.250477,53.584474],[-0.252081,53.585006],[-0.249044,53.5869],[-0.251149,53.588283],[-0.249956,53.589883],[-0.250429,53.590727],[-0.248871,53.591979],[-0.248476,53.593664],[-0.250721,53.593835],[-0.254474,53.592488],[-0.259361,53.59697],[-0.261586,53.595726],[-0.268296,53.599407],[-0.269813,53.598618],[-0.275232,53.602328],[-0.278605,53.603493],[-0.283039,53.604497],[-0.282955,53.605201],[-0.281195,53.606263],[-0.285477,53.609283],[-0.287076,53.611797],[-0.290418,53.610632],[-0.292115,53.613267]]]},"properties":{"LAD22CD":"E07000142","LAD22NM":"West Lindsey","BNG_E":499314,"BNG_N":390326,"LONG":-0.50774,"LAT":53.40044,"GlobalID":"3d599233-6037-4880-9d8f-4e5fa45fe8e1"},"id":164}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.993595,52.79836],[0.989989,52.798298],[0.988537,52.799538],[0.987963,52.800693],[0.985993,52.801442],[0.984925,52.801154],[0.980705,52.801394],[0.980948,52.804603],[0.977144,52.804374],[0.975463,52.804728],[0.975761,52.807019],[0.973857,52.807575],[0.967662,52.807738],[0.966549,52.803096],[0.9633,52.803367],[0.962819,52.803037],[0.960359,52.803796],[0.95798,52.804098],[0.95278,52.804157],[0.950784,52.804701],[0.936844,52.795581],[0.938573,52.791321],[0.938442,52.787973],[0.934975,52.789066],[0.93053,52.789358],[0.929768,52.791623],[0.928356,52.7914],[0.926984,52.79288],[0.926775,52.795111],[0.927225,52.795857],[0.926233,52.796621],[0.923972,52.797546],[0.925355,52.798717],[0.92399,52.799189],[0.923802,52.800851],[0.920155,52.802644],[0.918015,52.802812],[0.915652,52.802141],[0.915075,52.801188],[0.912878,52.800171],[0.906891,52.798524],[0.904524,52.797365],[0.900517,52.796026],[0.893078,52.794416],[0.890789,52.790717],[0.88776,52.79209],[0.883617,52.793456],[0.881899,52.793474],[0.880594,52.793937],[0.880199,52.796423],[0.877856,52.797536],[0.876126,52.79732],[0.874167,52.798273],[0.871739,52.798105],[0.869979,52.801437],[0.866837,52.80406],[0.865419,52.807428],[0.858424,52.807656],[0.854883,52.80711],[0.853031,52.807208],[0.842038,52.809202],[0.840454,52.809858],[0.839443,52.811126],[0.83769,52.809687],[0.832538,52.806584],[0.831418,52.805429],[0.8298,52.804756],[0.83041,52.80302],[0.832745,52.8016],[0.831928,52.799988],[0.832075,52.798916],[0.829145,52.797369],[0.824396,52.797257],[0.821452,52.796879],[0.818075,52.79439],[0.819293,52.792449],[0.819961,52.789626],[0.819326,52.78614],[0.816077,52.786516],[0.81159,52.786448],[0.811148,52.784285],[0.809649,52.783977],[0.809427,52.782509],[0.810591,52.782565],[0.810902,52.781155],[0.809119,52.780052],[0.80677,52.781461],[0.803042,52.781375],[0.802744,52.779692],[0.801028,52.778872],[0.799766,52.776701],[0.799982,52.77423],[0.801891,52.77006],[0.799104,52.769414],[0.795831,52.769097],[0.787961,52.76986],[0.78028,52.76941],[0.779774,52.771887],[0.777395,52.771581],[0.774518,52.775329],[0.773106,52.775852],[0.769849,52.779175],[0.769476,52.778166],[0.765842,52.776708],[0.763541,52.776944],[0.760017,52.776187],[0.758293,52.776318],[0.755939,52.775809],[0.75288,52.775714],[0.752092,52.77698],[0.751836,52.77849],[0.741508,52.780007],[0.730324,52.780995],[0.730363,52.781805],[0.717833,52.782346],[0.718344,52.782893],[0.717902,52.784056],[0.708387,52.786529],[0.707938,52.788472],[0.701998,52.786674],[0.699917,52.786214],[0.700435,52.783948],[0.698871,52.783765],[0.698377,52.780964],[0.695913,52.78054],[0.697739,52.778975],[0.699836,52.77619],[0.699508,52.775705],[0.700487,52.773445],[0.699454,52.773161],[0.696006,52.772938],[0.695166,52.769805],[0.690084,52.770035],[0.689156,52.762092],[0.688406,52.76068],[0.691428,52.759293],[0.687737,52.753692],[0.688725,52.751972],[0.67339,52.74598],[0.668911,52.742091],[0.668133,52.740557],[0.675292,52.739154],[0.680344,52.737703],[0.688529,52.736275],[0.694122,52.736056],[0.701127,52.736191],[0.700513,52.735678],[0.704532,52.731631],[0.715457,52.724647],[0.716717,52.722952],[0.718227,52.721794],[0.71714,52.721372],[0.717075,52.718642],[0.713281,52.71745],[0.710862,52.715559],[0.711283,52.714005],[0.708251,52.712436],[0.708066,52.711296],[0.710853,52.709967],[0.711057,52.709025],[0.709813,52.708428],[0.708932,52.709064],[0.707106,52.708792],[0.705465,52.710324],[0.699654,52.707786],[0.699053,52.706611],[0.698837,52.703756],[0.700126,52.703792],[0.699032,52.702305],[0.699611,52.701755],[0.696858,52.700911],[0.692926,52.700972],[0.689732,52.699621],[0.689982,52.699113],[0.687164,52.697914],[0.686169,52.698291],[0.683936,52.698212],[0.683628,52.698725],[0.681655,52.699154],[0.679902,52.699058],[0.676796,52.699478],[0.674628,52.698393],[0.672379,52.700149],[0.67286,52.701521],[0.671639,52.701776],[0.671514,52.702861],[0.662851,52.70308],[0.662643,52.703972],[0.660003,52.703883],[0.659427,52.704785],[0.653758,52.704064],[0.653986,52.702428],[0.651356,52.701317],[0.649362,52.701049],[0.648544,52.695335],[0.649019,52.693397],[0.647967,52.693317],[0.647749,52.690678],[0.643971,52.691665],[0.640583,52.692057],[0.638297,52.691857],[0.636418,52.693859],[0.634629,52.693155],[0.62983,52.697321],[0.630458,52.69768],[0.626018,52.701814],[0.62255,52.701672],[0.6177,52.700249],[0.614375,52.699891],[0.612094,52.699989],[0.610443,52.698811],[0.607729,52.697564],[0.605475,52.697104],[0.604333,52.696304],[0.601856,52.695566],[0.598212,52.694987],[0.59568,52.694041],[0.592243,52.693921],[0.590193,52.693067],[0.588585,52.692877],[0.586111,52.691811],[0.584066,52.692118],[0.582094,52.691248],[0.578804,52.690483],[0.577947,52.689611],[0.575174,52.689617],[0.572395,52.68855],[0.571038,52.689102],[0.568696,52.687085],[0.566265,52.686497],[0.562833,52.684163],[0.560176,52.682987],[0.557782,52.683189],[0.556079,52.682774],[0.555098,52.681937],[0.550982,52.680521],[0.553201,52.678635],[0.56339,52.673227],[0.564736,52.67159],[0.564964,52.66853],[0.564239,52.666399],[0.564398,52.663066],[0.562177,52.655296],[0.573066,52.653817],[0.578508,52.653515],[0.575471,52.645198],[0.56165,52.613185],[0.567107,52.6141],[0.566106,52.608015],[0.565045,52.605435],[0.565636,52.602026],[0.56486,52.597781],[0.564099,52.596382],[0.562199,52.595165],[0.561585,52.593392],[0.559351,52.591653],[0.559129,52.59082],[0.557228,52.590913],[0.556132,52.590321],[0.553248,52.589811],[0.552452,52.589169],[0.550589,52.58902],[0.547559,52.587898],[0.545905,52.586721],[0.544044,52.586558],[0.541554,52.585932],[0.539864,52.586693],[0.538079,52.586258],[0.535784,52.579849],[0.53289,52.578078],[0.530521,52.576126],[0.53265,52.574579],[0.535189,52.56775],[0.536616,52.565804],[0.539035,52.565249],[0.541187,52.565525],[0.543643,52.565091],[0.548978,52.566052],[0.550567,52.565175],[0.553533,52.565178],[0.556321,52.564656],[0.556802,52.565808],[0.55839,52.56602],[0.559773,52.565513],[0.561312,52.566611],[0.562238,52.565952],[0.565347,52.564937],[0.567443,52.564932],[0.568998,52.562598],[0.571475,52.562592],[0.572518,52.561929],[0.575895,52.561097],[0.576864,52.561105],[0.577966,52.559972],[0.579874,52.559548],[0.579481,52.558354],[0.580138,52.557994],[0.581366,52.555995],[0.582922,52.556029],[0.584016,52.555018],[0.586417,52.555299],[0.585749,52.553271],[0.587915,52.552198],[0.590293,52.548138],[0.591554,52.547068],[0.593113,52.546733],[0.594312,52.545812],[0.595903,52.543779],[0.597683,52.543279],[0.601178,52.543462],[0.602226,52.54378],[0.60475,52.543288],[0.604585,52.54211],[0.60874,52.540122],[0.609825,52.5388],[0.61071,52.535678],[0.612126,52.534734],[0.612491,52.532834],[0.613366,52.531634],[0.608457,52.526743],[0.605179,52.520538],[0.602812,52.513215],[0.601995,52.508815],[0.598987,52.500378],[0.596895,52.495168],[0.590804,52.484325],[0.583674,52.468027],[0.582578,52.463905],[0.582501,52.451861],[0.586316,52.452208],[0.58685,52.452932],[0.588431,52.453537],[0.591482,52.453991],[0.593233,52.453629],[0.595847,52.454285],[0.598413,52.453993],[0.599662,52.453228],[0.601892,52.452946],[0.609479,52.452716],[0.60848,52.451628],[0.60986,52.450319],[0.6156,52.448908],[0.619032,52.449539],[0.621867,52.451265],[0.621918,52.451693],[0.619406,52.452726],[0.6204,52.454437],[0.622177,52.454353],[0.622481,52.453701],[0.629798,52.454065],[0.629418,52.452584],[0.628079,52.451174],[0.629193,52.45003],[0.633547,52.45037],[0.636117,52.45138],[0.638681,52.45103],[0.64222,52.451047],[0.642976,52.452316],[0.645207,52.452595],[0.645413,52.453624],[0.647173,52.452913],[0.649276,52.454474],[0.648518,52.455365],[0.649903,52.455668],[0.651399,52.456961],[0.65468,52.457386],[0.656331,52.457267],[0.656698,52.458244],[0.65817,52.45876],[0.658801,52.459511],[0.660584,52.460143],[0.663542,52.462129],[0.666156,52.462506],[0.668327,52.462083],[0.671975,52.46031],[0.672616,52.458947],[0.674785,52.457673],[0.678617,52.454619],[0.681504,52.454175],[0.683973,52.453165],[0.694471,52.451017],[0.696928,52.451371],[0.701157,52.451337],[0.705587,52.452587],[0.713309,52.450118],[0.718793,52.449647],[0.717552,52.446719],[0.714849,52.444514],[0.705057,52.438309],[0.696149,52.43328],[0.692221,52.429066],[0.691413,52.427726],[0.690103,52.426742],[0.684812,52.424909],[0.683154,52.422569],[0.680611,52.420986],[0.67382,52.415321],[0.672199,52.412832],[0.668473,52.409062],[0.672002,52.405107],[0.673412,52.404223],[0.684861,52.399038],[0.690769,52.397531],[0.694737,52.396862],[0.708184,52.396048],[0.712438,52.394623],[0.716033,52.394021],[0.722219,52.393692],[0.733344,52.395389],[0.737589,52.395138],[0.738613,52.393093],[0.740997,52.392234],[0.74139,52.390199],[0.740563,52.388945],[0.740966,52.388189],[0.743397,52.387395],[0.744637,52.385952],[0.744877,52.384905],[0.74691,52.383364],[0.749844,52.382926],[0.752541,52.38406],[0.75431,52.384272],[0.759136,52.386498],[0.7607,52.386767],[0.762438,52.388117],[0.762681,52.388966],[0.765966,52.390357],[0.770295,52.389806],[0.772569,52.386679],[0.773435,52.386327],[0.775254,52.386959],[0.777353,52.386758],[0.779549,52.387269],[0.783761,52.38626],[0.785927,52.386489],[0.792,52.389859],[0.794853,52.391115],[0.796131,52.391242],[0.800725,52.389784],[0.803657,52.38925],[0.804389,52.389502],[0.808172,52.389524],[0.812783,52.390918],[0.814812,52.393417],[0.816605,52.393963],[0.81834,52.393673],[0.823137,52.393728],[0.824388,52.394567],[0.827646,52.394905],[0.829383,52.396138],[0.829866,52.397294],[0.835444,52.40003],[0.838316,52.400724],[0.84093,52.400796],[0.849251,52.399558],[0.855439,52.399441],[0.857107,52.398091],[0.856873,52.395186],[0.859708,52.393424],[0.861806,52.39298],[0.863458,52.391293],[0.866873,52.390346],[0.868688,52.390478],[0.872336,52.389902],[0.874846,52.389922],[0.880942,52.391758],[0.883592,52.391217],[0.891125,52.390799],[0.892327,52.390315],[0.892516,52.389049],[0.894529,52.388142],[0.89744,52.388249],[0.900736,52.386639],[0.903157,52.386661],[0.904928,52.385783],[0.907715,52.386217],[0.909212,52.38751],[0.910086,52.3873],[0.913118,52.388768],[0.915818,52.388974],[0.917454,52.388699],[0.921329,52.389572],[0.924205,52.38916],[0.927213,52.388281],[0.930232,52.388838],[0.931486,52.387889],[0.932722,52.387972],[0.9337,52.38728],[0.936754,52.386673],[0.936542,52.385222],[0.937377,52.384276],[0.940332,52.382937],[0.940033,52.382504],[0.941686,52.381108],[0.942274,52.378945],[0.945145,52.377877],[0.94654,52.37689],[0.94696,52.375983],[0.948306,52.375778],[0.949651,52.376184],[0.950898,52.375147],[0.954113,52.374545],[0.955337,52.372846],[0.957014,52.371913],[0.963176,52.371603],[0.965304,52.370397],[0.967471,52.370113],[0.977986,52.370017],[0.980319,52.369519],[0.987137,52.371524],[0.988401,52.371554],[0.990918,52.370814],[0.997812,52.37154],[0.998663,52.371757],[1.003467,52.374592],[1.006814,52.375743],[1.014202,52.375692],[1.021465,52.378033],[1.029957,52.378735],[1.027244,52.384809],[1.025427,52.386189],[1.023578,52.389651],[1.02295,52.392596],[1.020234,52.394217],[1.020739,52.395359],[1.023609,52.397113],[1.023224,52.397778],[1.024356,52.398643],[1.02399,52.399311],[1.021741,52.400413],[1.021357,52.400964],[1.023122,52.403577],[1.022896,52.404649],[1.021416,52.405971],[1.023137,52.408427],[1.026495,52.408798],[1.028776,52.410031],[1.029536,52.410832],[1.031401,52.410268],[1.034102,52.415777],[1.028252,52.414721],[1.028217,52.417281],[1.024392,52.415932],[1.023945,52.415483],[1.02158,52.415443],[1.021267,52.416379],[1.028284,52.419691],[1.034868,52.422048],[1.042799,52.425653],[1.045723,52.420911],[1.045419,52.419952],[1.051889,52.419204],[1.057075,52.420056],[1.058919,52.424535],[1.058769,52.426855],[1.067501,52.428825],[1.065576,52.43207],[1.062875,52.433213],[1.065199,52.436747],[1.065961,52.44086],[1.064094,52.44211],[1.073149,52.454755],[1.094649,52.460277],[1.095287,52.464003],[1.09682,52.465686],[1.096068,52.468977],[1.095275,52.470383],[1.091742,52.468805],[1.090639,52.468702],[1.088005,52.470426],[1.085615,52.471016],[1.084497,52.478999],[1.087433,52.480766],[1.087697,52.481244],[1.082504,52.484683],[1.079389,52.499291],[1.079369,52.500886],[1.080987,52.503151],[1.080938,52.505012],[1.07905,52.506881],[1.080554,52.508177],[1.083939,52.512785],[1.0855,52.512478],[1.089528,52.514581],[1.091681,52.516503],[1.095255,52.518023],[1.092906,52.521226],[1.08972,52.522119],[1.08521,52.522634],[1.081204,52.525228],[1.079085,52.527985],[1.073653,52.530715],[1.070063,52.531759],[1.063776,52.53522],[1.061399,52.537184],[1.056031,52.535463],[1.04184,52.536167],[1.037968,52.536664],[1.031989,52.538074],[1.029249,52.539729],[1.028223,52.541256],[1.023799,52.54237],[1.016402,52.542354],[1.016023,52.542954],[1.012074,52.542935],[1.011356,52.54331],[1.007347,52.548205],[1.004914,52.54979],[1.001848,52.549617],[0.989592,52.551727],[0.986175,52.551223],[0.983163,52.552437],[0.981236,52.552558],[0.977356,52.553448],[0.976028,52.554452],[0.973509,52.554794],[0.96828,52.558757],[0.96736,52.559878],[0.966049,52.559917],[0.964294,52.560642],[0.960871,52.561311],[0.960039,52.562431],[0.952707,52.56762],[0.949953,52.574324],[0.947028,52.575833],[0.95008,52.577887],[0.955438,52.580301],[0.958501,52.579831],[0.960348,52.57997],[0.962188,52.581177],[0.962579,52.58348],[0.953712,52.584942],[0.954586,52.586936],[0.96288,52.585943],[0.962345,52.586748],[0.962764,52.589043],[0.96157,52.591085],[0.961882,52.59313],[0.96375,52.594626],[0.970954,52.595159],[0.975408,52.594419],[0.979611,52.592657],[0.984812,52.593356],[0.987541,52.593053],[0.993123,52.591643],[0.995126,52.591888],[1.000025,52.591832],[1.002398,52.591303],[1.009916,52.587895],[1.021812,52.586557],[1.027027,52.589413],[1.032124,52.588871],[1.037625,52.587454],[1.038155,52.588465],[1.039485,52.588173],[1.040064,52.590857],[1.039814,52.5927],[1.040326,52.593857],[1.039156,52.59433],[1.039141,52.59566],[1.03761,52.595999],[1.037702,52.602617],[1.038044,52.604211],[1.039432,52.606036],[1.03731,52.609018],[1.037333,52.61026],[1.036221,52.612147],[1.035769,52.615071],[1.036901,52.615798],[1.034558,52.616093],[1.032429,52.61696],[1.029986,52.617333],[1.02854,52.616384],[1.028209,52.615596],[1.025574,52.61462],[1.024401,52.614951],[1.022339,52.614627],[1.018865,52.615746],[1.019649,52.61627],[1.020115,52.619603],[1.021602,52.62327],[1.025602,52.630035],[1.025249,52.63601],[1.0233,52.636488],[1.024216,52.639036],[1.023553,52.639752],[1.026077,52.641537],[1.031605,52.642586],[1.033776,52.643574],[1.03715,52.64424],[1.043096,52.646511],[1.042768,52.649203],[1.044983,52.648725],[1.047339,52.652236],[1.04907,52.651889],[1.050815,52.656028],[1.052869,52.656511],[1.053381,52.65907],[1.054806,52.658947],[1.055106,52.662588],[1.057332,52.659238],[1.058428,52.658585],[1.060008,52.655742],[1.061522,52.655098],[1.06263,52.653964],[1.064045,52.650286],[1.066048,52.64724],[1.068143,52.645382],[1.073039,52.64372],[1.07402,52.642305],[1.074224,52.639936],[1.073718,52.639414],[1.074649,52.638168],[1.076763,52.640353],[1.076702,52.645018],[1.078985,52.64874],[1.082107,52.64861],[1.089644,52.647368],[1.093366,52.651057],[1.097695,52.649757],[1.098439,52.660128],[1.100485,52.664874],[1.100653,52.666867],[1.09979,52.670411],[1.099895,52.67285],[1.10302,52.675922],[1.104696,52.678253],[1.108322,52.682523],[1.105983,52.684796],[1.105249,52.684341],[1.102697,52.685311],[1.101763,52.685979],[1.10205,52.686728],[1.101721,52.688476],[1.100774,52.689736],[1.094607,52.693663],[1.090147,52.695949],[1.087454,52.696865],[1.087077,52.699232],[1.085764,52.700354],[1.084247,52.702543],[1.085125,52.703994],[1.089942,52.705577],[1.092465,52.707649],[1.096467,52.709546],[1.099709,52.711963],[1.103996,52.712823],[1.105203,52.714693],[1.10352,52.716307],[1.099828,52.71638],[1.099542,52.717288],[1.098134,52.717709],[1.096308,52.719532],[1.093926,52.719716],[1.091901,52.721261],[1.090535,52.72169],[1.090554,52.722614],[1.088553,52.723194],[1.087425,52.728613],[1.082848,52.729743],[1.082186,52.73212],[1.082535,52.734844],[1.081295,52.735602],[1.080725,52.736989],[1.080939,52.740212],[1.079724,52.74126],[1.07815,52.741615],[1.07565,52.741688],[1.067326,52.743234],[1.063582,52.74346],[1.062338,52.743048],[1.060367,52.743783],[1.059589,52.744943],[1.055807,52.746419],[1.055587,52.747451],[1.053702,52.749241],[1.05109,52.750413],[1.054984,52.757091],[1.052749,52.759656],[1.053329,52.761958],[1.04662,52.767613],[1.044771,52.769043],[1.042049,52.770227],[1.04049,52.769088],[1.036384,52.769746],[1.033857,52.769681],[1.028227,52.768611],[1.017448,52.764778],[1.011261,52.762986],[1.003207,52.765266],[1.000241,52.765785],[1.001107,52.772489],[1.002291,52.774265],[1.002249,52.776205],[0.999101,52.779051],[0.99217,52.780105],[0.992277,52.784011],[0.990368,52.784064],[0.991701,52.785394],[0.991949,52.786633],[0.993544,52.788932],[0.996046,52.790882],[0.99695,52.792539],[0.99496,52.796345],[0.993674,52.797411],[0.993595,52.79836]]]},"properties":{"LAD22CD":"E07000143","LAD22NM":"Breckland","BNG_E":591015,"BNG_N":303330,"LONG":0.818716,"LAT":52.59421,"GlobalID":"cec12255-54e3-4f65-a3ec-23355100e187"},"id":165}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.423975,52.701969],[1.423955,52.70352],[1.42149,52.704822],[1.419095,52.70483],[1.417263,52.705969],[1.414299,52.706689],[1.413762,52.707632],[1.412045,52.707999],[1.410644,52.70875],[1.408638,52.70905],[1.408139,52.712667],[1.403859,52.715402],[1.402444,52.7157],[1.403767,52.71854],[1.403201,52.718698],[1.405288,52.721432],[1.407346,52.720974],[1.40756,52.722237],[1.408565,52.722784],[1.409702,52.725664],[1.406657,52.725912],[1.40137,52.727018],[1.400364,52.727399],[1.39986,52.728596],[1.404822,52.728844],[1.4059,52.732514],[1.40104,52.730835],[1.397331,52.729106],[1.396565,52.731046],[1.394837,52.731079],[1.392513,52.732477],[1.392145,52.734672],[1.390805,52.736911],[1.39071,52.738526],[1.388828,52.739115],[1.387659,52.740007],[1.386531,52.739363],[1.384826,52.739676],[1.379873,52.741218],[1.3742,52.742097],[1.371545,52.743255],[1.3646,52.744448],[1.363844,52.745637],[1.357656,52.746397],[1.356637,52.747549],[1.357173,52.748826],[1.356987,52.75132],[1.348726,52.752915],[1.345035,52.755799],[1.341339,52.760538],[1.339201,52.76392],[1.337546,52.768637],[1.336239,52.76941],[1.333952,52.768069],[1.32762,52.766886],[1.326595,52.76708],[1.327004,52.768938],[1.32338,52.771373],[1.321399,52.773324],[1.321308,52.774485],[1.320093,52.775376],[1.318675,52.777378],[1.317062,52.777343],[1.316129,52.779489],[1.31481,52.779756],[1.315605,52.780656],[1.314568,52.783139],[1.314564,52.785546],[1.315924,52.788689],[1.317094,52.789165],[1.313802,52.790475],[1.314849,52.793293],[1.312502,52.793666],[1.309292,52.79494],[1.308366,52.795707],[1.308929,52.796314],[1.311388,52.796046],[1.31494,52.800889],[1.312614,52.801556],[1.308116,52.802029],[1.307576,52.80298],[1.308612,52.803764],[1.308885,52.805267],[1.308287,52.806731],[1.306592,52.807357],[1.305858,52.806568],[1.303236,52.805452],[1.302622,52.804663],[1.299634,52.804742],[1.300677,52.806275],[1.29882,52.806966],[1.296637,52.806811],[1.296418,52.805995],[1.288882,52.804668],[1.286648,52.80889],[1.283434,52.807717],[1.281319,52.809324],[1.277672,52.814906],[1.276561,52.817438],[1.275712,52.817325],[1.273888,52.818155],[1.274125,52.81882],[1.270389,52.819321],[1.26747,52.819057],[1.262756,52.815368],[1.261959,52.812672],[1.258715,52.813647],[1.256914,52.813921],[1.254783,52.813446],[1.252229,52.814392],[1.250676,52.817402],[1.251561,52.818598],[1.250157,52.819754],[1.251082,52.820522],[1.247543,52.821073],[1.244456,52.819908],[1.242714,52.820777],[1.241197,52.820267],[1.240078,52.820675],[1.238222,52.820425],[1.2376,52.823279],[1.235785,52.823851],[1.234139,52.823693],[1.233228,52.822989],[1.231976,52.824023],[1.230081,52.824469],[1.228304,52.824406],[1.225226,52.825323],[1.223783,52.827516],[1.222117,52.827513],[1.221492,52.828303],[1.219158,52.82828],[1.217796,52.828839],[1.21447,52.829133],[1.209889,52.828009],[1.207886,52.828044],[1.206932,52.827239],[1.207801,52.825102],[1.206128,52.823245],[1.203935,52.822191],[1.20324,52.820068],[1.202985,52.81595],[1.20197,52.815672],[1.198155,52.815936],[1.195954,52.815409],[1.193388,52.815318],[1.191306,52.81846],[1.189676,52.819722],[1.18815,52.820123],[1.185181,52.819885],[1.184722,52.82047],[1.181098,52.820395],[1.182013,52.821484],[1.181001,52.821815],[1.181085,52.823457],[1.180505,52.824006],[1.180838,52.827181],[1.177418,52.827521],[1.176107,52.828011],[1.175644,52.829381],[1.174569,52.83041],[1.172561,52.830611],[1.171637,52.830079],[1.170048,52.830263],[1.166816,52.829434],[1.166538,52.827283],[1.165838,52.825806],[1.163979,52.826142],[1.162847,52.825029],[1.156454,52.8217],[1.154201,52.82179],[1.147478,52.823699],[1.14527,52.823907],[1.14372,52.820646],[1.147055,52.82032],[1.147241,52.819002],[1.148281,52.818909],[1.148307,52.815907],[1.15047,52.815499],[1.149601,52.812105],[1.144407,52.812567],[1.143646,52.813092],[1.136095,52.81376],[1.134738,52.81469],[1.1315,52.815216],[1.128336,52.814592],[1.12438,52.818403],[1.118779,52.819532],[1.117281,52.821277],[1.114444,52.8221],[1.112426,52.824135],[1.110411,52.82485],[1.106659,52.826852],[1.104534,52.828471],[1.101789,52.829344],[1.100113,52.828575],[1.098408,52.827257],[1.097534,52.825803],[1.095582,52.824389],[1.094828,52.820946],[1.093904,52.820858],[1.092404,52.818313],[1.090492,52.816658],[1.088266,52.816475],[1.087902,52.815847],[1.085384,52.81561],[1.083133,52.816121],[1.081686,52.815577],[1.079937,52.815465],[1.073387,52.816884],[1.06225,52.815165],[1.060404,52.815028],[1.047597,52.813363],[1.044342,52.811855],[1.042736,52.812004],[1.040182,52.811479],[1.037514,52.811934],[1.035263,52.811827],[1.034617,52.81123],[1.031982,52.810263],[1.031224,52.808156],[1.028686,52.807102],[1.022131,52.807454],[1.020759,52.806555],[1.02,52.804746],[1.019307,52.804671],[1.02228,52.800031],[1.01891,52.799969],[1.017073,52.800673],[1.013582,52.801053],[1.010381,52.801978],[1.006527,52.801899],[1.004426,52.802294],[1.002452,52.802049],[1.001049,52.801393],[0.999498,52.801543],[0.998216,52.80098],[0.995532,52.800596],[0.993516,52.799359],[0.993595,52.79836],[0.993674,52.797411],[0.99496,52.796345],[0.99695,52.792539],[0.996046,52.790882],[0.993544,52.788932],[0.991949,52.786633],[0.991701,52.785394],[0.990368,52.784064],[0.992277,52.784011],[0.99217,52.780105],[0.999101,52.779051],[1.002249,52.776205],[1.002291,52.774265],[1.001107,52.772489],[1.000241,52.765785],[1.003207,52.765266],[1.011261,52.762986],[1.017448,52.764778],[1.028227,52.768611],[1.033857,52.769681],[1.036384,52.769746],[1.04049,52.769088],[1.042049,52.770227],[1.044771,52.769043],[1.04662,52.767613],[1.053329,52.761958],[1.052749,52.759656],[1.054984,52.757091],[1.05109,52.750413],[1.053702,52.749241],[1.055587,52.747451],[1.055807,52.746419],[1.059589,52.744943],[1.060367,52.743783],[1.062338,52.743048],[1.063582,52.74346],[1.067326,52.743234],[1.07565,52.741688],[1.07815,52.741615],[1.079724,52.74126],[1.080939,52.740212],[1.080725,52.736989],[1.081295,52.735602],[1.082535,52.734844],[1.082186,52.73212],[1.082848,52.729743],[1.087425,52.728613],[1.088553,52.723194],[1.090554,52.722614],[1.090535,52.72169],[1.091901,52.721261],[1.093926,52.719716],[1.096308,52.719532],[1.098134,52.717709],[1.099542,52.717288],[1.099828,52.71638],[1.10352,52.716307],[1.105203,52.714693],[1.103996,52.712823],[1.099709,52.711963],[1.096467,52.709546],[1.092465,52.707649],[1.089942,52.705577],[1.085125,52.703994],[1.084247,52.702543],[1.085764,52.700354],[1.087077,52.699232],[1.087454,52.696865],[1.090147,52.695949],[1.094607,52.693663],[1.100774,52.689736],[1.101721,52.688476],[1.10205,52.686728],[1.101763,52.685979],[1.102697,52.685311],[1.105249,52.684341],[1.105983,52.684796],[1.108322,52.682523],[1.104696,52.678253],[1.10302,52.675922],[1.099895,52.67285],[1.09979,52.670411],[1.100653,52.666867],[1.100485,52.664874],[1.098439,52.660128],[1.097695,52.649757],[1.100655,52.64877],[1.109771,52.647277],[1.116064,52.645442],[1.124536,52.645152],[1.132017,52.645791],[1.132238,52.642576],[1.135245,52.642859],[1.135219,52.644871],[1.136481,52.644763],[1.137033,52.646934],[1.137705,52.646942],[1.137696,52.649812],[1.138672,52.653959],[1.140073,52.65386],[1.140314,52.6551],[1.13801,52.655334],[1.137682,52.657703],[1.138888,52.657797],[1.138184,52.659766],[1.145669,52.659384],[1.146354,52.660032],[1.145696,52.668292],[1.147296,52.671366],[1.149551,52.669233],[1.152026,52.668139],[1.159951,52.666609],[1.163687,52.66521],[1.167462,52.664867],[1.173765,52.665167],[1.174289,52.667299],[1.176375,52.668011],[1.182084,52.671771],[1.184448,52.674249],[1.184786,52.675393],[1.187215,52.677468],[1.190481,52.678528],[1.19199,52.677956],[1.193675,52.678065],[1.196238,52.677103],[1.196832,52.675567],[1.197748,52.675717],[1.199644,52.674817],[1.200424,52.673765],[1.201798,52.672923],[1.202658,52.670333],[1.203625,52.669916],[1.203603,52.668003],[1.202432,52.666473],[1.201975,52.664098],[1.202609,52.663611],[1.202362,52.662149],[1.203003,52.661071],[1.205097,52.660021],[1.206606,52.660866],[1.20751,52.660616],[1.209817,52.661335],[1.211016,52.66236],[1.213043,52.66264],[1.21375,52.663715],[1.215158,52.664599],[1.216521,52.666174],[1.21815,52.669221],[1.218949,52.669274],[1.219246,52.670721],[1.218056,52.672668],[1.21969,52.672672],[1.221693,52.673169],[1.224337,52.672255],[1.225311,52.671298],[1.227604,52.670536],[1.229246,52.669242],[1.230852,52.669636],[1.231547,52.668625],[1.234329,52.667963],[1.235447,52.666337],[1.234736,52.665865],[1.235142,52.664674],[1.233283,52.662678],[1.233458,52.660073],[1.234321,52.658985],[1.239596,52.65719],[1.24261,52.656589],[1.244101,52.655822],[1.2471,52.653384],[1.24788,52.652093],[1.246639,52.650679],[1.246622,52.649827],[1.248508,52.647743],[1.251248,52.648237],[1.254922,52.649822],[1.261586,52.652091],[1.277186,52.656518],[1.279157,52.657181],[1.284262,52.657643],[1.284989,52.660228],[1.282388,52.660286],[1.280419,52.66066],[1.280852,52.661959],[1.278656,52.662121],[1.277948,52.66287],[1.277063,52.666005],[1.273059,52.666784],[1.27228,52.666675],[1.269572,52.670748],[1.266032,52.673342],[1.262859,52.677406],[1.282945,52.677335],[1.29233,52.684935],[1.295333,52.682451],[1.296071,52.681359],[1.295402,52.678729],[1.296281,52.677489],[1.297193,52.677103],[1.300184,52.676856],[1.29966,52.674264],[1.296685,52.674367],[1.294821,52.673616],[1.295239,52.672911],[1.293025,52.671481],[1.292105,52.66865],[1.2937,52.66851],[1.293853,52.666615],[1.292028,52.662962],[1.291706,52.66134],[1.292403,52.660187],[1.292601,52.654928],[1.29443,52.65428],[1.295515,52.653326],[1.299758,52.652734],[1.29998,52.65329],[1.302241,52.652818],[1.307141,52.652272],[1.309126,52.652999],[1.310607,52.651706],[1.314105,52.649419],[1.322976,52.645024],[1.340573,52.649704],[1.342244,52.641319],[1.329864,52.637584],[1.328767,52.630613],[1.327227,52.62889],[1.326546,52.627013],[1.322525,52.625916],[1.325281,52.623188],[1.329531,52.624736],[1.332193,52.626255],[1.336767,52.626122],[1.34123,52.625991],[1.341883,52.625782],[1.342731,52.625509],[1.343309,52.625248],[1.3441,52.624562],[1.344601,52.624128],[1.345147,52.624084],[1.347556,52.6239],[1.349243,52.622796],[1.349626,52.62166],[1.350764,52.621347],[1.353416,52.621864],[1.360663,52.623325],[1.364133,52.624231],[1.365569,52.624606],[1.367822,52.624414],[1.368135,52.624333],[1.369785,52.62391],[1.370322,52.623683],[1.373481,52.621449],[1.37596,52.62109],[1.377078,52.619524],[1.377222,52.614495],[1.378488,52.611916],[1.381007,52.608853],[1.381474,52.606358],[1.381917,52.606142],[1.383845,52.605239],[1.386771,52.604756],[1.387548,52.604631],[1.387822,52.604622],[1.389759,52.604703],[1.389893,52.604709],[1.391317,52.604768],[1.393714,52.606294],[1.398842,52.608525],[1.399614,52.609292],[1.399925,52.61203],[1.401138,52.613488],[1.402973,52.614587],[1.404663,52.614558],[1.404749,52.61451],[1.406122,52.613767],[1.406998,52.61395],[1.407097,52.614067],[1.407293,52.614906],[1.407697,52.617976],[1.409422,52.619109],[1.410364,52.619727],[1.413608,52.621155],[1.415979,52.621418],[1.416574,52.621351],[1.416582,52.62135],[1.417048,52.621298],[1.417815,52.621211],[1.420282,52.622258],[1.422064,52.622342],[1.424571,52.621556],[1.428266,52.618611],[1.430652,52.618631],[1.431947,52.619708],[1.432478,52.621384],[1.43495,52.620977],[1.434688,52.620057],[1.434712,52.620048],[1.436159,52.61936],[1.437059,52.619577],[1.438574,52.618746],[1.437598,52.617734],[1.437453,52.617079],[1.437155,52.616423],[1.43547,52.614814],[1.433809,52.613227],[1.433581,52.612401],[1.434354,52.61199],[1.434629,52.611843],[1.434756,52.611775],[1.435111,52.611586],[1.435309,52.611481],[1.43613,52.612418],[1.439619,52.614629],[1.441997,52.616353],[1.442808,52.61649],[1.435585,52.611334],[1.435835,52.611201],[1.437063,52.610835],[1.439211,52.609036],[1.442515,52.60592],[1.442579,52.605859],[1.443642,52.604857],[1.444153,52.604513],[1.444607,52.604347],[1.447704,52.603217],[1.45102,52.602541],[1.451586,52.602312],[1.453704,52.601454],[1.454847,52.599822],[1.45353,52.596012],[1.45459,52.594582],[1.456867,52.593932],[1.461372,52.594471],[1.46227,52.594581],[1.466301,52.591675],[1.467338,52.590271],[1.467394,52.588109],[1.467677,52.587921],[1.469291,52.587012],[1.473475,52.586467],[1.476345,52.586438],[1.48129,52.587543],[1.483631,52.587859],[1.484079,52.587919],[1.486521,52.586554],[1.488074,52.585093],[1.488234,52.584926],[1.488209,52.583187],[1.488098,52.581028],[1.488161,52.580869],[1.489865,52.579861],[1.491909,52.578719],[1.49277,52.575597],[1.496303,52.572174],[1.497909,52.571324],[1.500303,52.571166],[1.500689,52.571268],[1.507278,52.573019],[1.509609,52.573967],[1.512802,52.575935],[1.514987,52.576654],[1.518447,52.575842],[1.522907,52.573104],[1.524936,52.570018],[1.524901,52.568264],[1.521557,52.564987],[1.52168,52.563813],[1.522636,52.562591],[1.526161,52.560249],[1.528501,52.559542],[1.530008,52.559746],[1.530994,52.561043],[1.532876,52.562308],[1.534431,52.562592],[1.535011,52.562514],[1.536224,52.562242],[1.537451,52.56141],[1.538559,52.561166],[1.539853,52.556665],[1.540596,52.555997],[1.541871,52.555529],[1.543884,52.555485],[1.546591,52.556266],[1.552692,52.559413],[1.554719,52.559808],[1.556467,52.559559],[1.560094,52.557634],[1.561298,52.557423],[1.563121,52.55777],[1.565905,52.559102],[1.56881,52.559338],[1.573702,52.558867],[1.57687,52.557761],[1.577991,52.556947],[1.58017,52.556856],[1.582089,52.557856],[1.586022,52.558308],[1.589419,52.557853],[1.591833,52.558233],[1.594321,52.559691],[1.594978,52.560751],[1.59504,52.562204],[1.596908,52.564412],[1.600232,52.566828],[1.602684,52.56813],[1.606457,52.568689],[1.608023,52.569392],[1.60833,52.570216],[1.606724,52.572452],[1.607209,52.574188],[1.609558,52.575035],[1.611702,52.575391],[1.61452,52.57517],[1.616826,52.573971],[1.620391,52.57371],[1.625023,52.575399],[1.626329,52.576539],[1.626507,52.578528],[1.627366,52.579939],[1.629541,52.581005],[1.632977,52.58093],[1.636067,52.581832],[1.637862,52.583851],[1.637771,52.586019],[1.638787,52.587546],[1.640881,52.58839],[1.644521,52.588403],[1.64546,52.589384],[1.63101,52.592502],[1.634822,52.592862],[1.634787,52.594683],[1.63705,52.59809],[1.639406,52.599189],[1.640365,52.601425],[1.642338,52.602999],[1.641977,52.604228],[1.642736,52.604605],[1.64557,52.602831],[1.650683,52.601976],[1.65382,52.603703],[1.653921,52.605134],[1.655682,52.606529],[1.6593,52.60741],[1.661914,52.607083],[1.665216,52.607997],[1.666831,52.60965],[1.668186,52.610205],[1.671354,52.610249],[1.673719,52.609371],[1.675167,52.609612],[1.677987,52.612175],[1.677926,52.613155],[1.676814,52.614336],[1.674179,52.614758],[1.672869,52.616606],[1.671133,52.617405],[1.668076,52.616952],[1.668104,52.617636],[1.665783,52.619519],[1.664838,52.619609],[1.662981,52.621198],[1.659345,52.625658],[1.65866,52.62519],[1.654179,52.624168],[1.648896,52.62453],[1.642877,52.62613],[1.641212,52.627286],[1.642343,52.628777],[1.643937,52.630229],[1.637545,52.63032],[1.634519,52.631675],[1.633497,52.632426],[1.633669,52.631447],[1.631685,52.630071],[1.630749,52.627869],[1.629581,52.626997],[1.627323,52.62677],[1.625979,52.627103],[1.624515,52.626412],[1.622789,52.626558],[1.622404,52.625844],[1.620502,52.624787],[1.621151,52.623825],[1.619953,52.623581],[1.617302,52.62568],[1.618059,52.62841],[1.617779,52.628714],[1.616447,52.627839],[1.613978,52.627222],[1.612279,52.62541],[1.611176,52.624756],[1.608953,52.62413],[1.606057,52.623773],[1.599576,52.625183],[1.598295,52.62639],[1.598281,52.627389],[1.598119,52.627876],[1.59653,52.628534],[1.593845,52.628472],[1.592554,52.629082],[1.593522,52.631648],[1.591244,52.634249],[1.592135,52.63682],[1.589965,52.638163],[1.588675,52.637901],[1.585163,52.636495],[1.58171,52.636451],[1.57744,52.637245],[1.574472,52.639283],[1.57175,52.637364],[1.569647,52.637238],[1.567738,52.637804],[1.566115,52.639732],[1.565985,52.640445],[1.566547,52.643791],[1.569688,52.647088],[1.569134,52.648283],[1.567607,52.648901],[1.561894,52.649493],[1.561174,52.649562],[1.559414,52.649731],[1.556778,52.651372],[1.556645,52.654334],[1.559752,52.658388],[1.560559,52.66238],[1.561813,52.666043],[1.561093,52.66834],[1.559909,52.670007],[1.55608,52.671382],[1.553924,52.672585],[1.551881,52.675261],[1.549828,52.681205],[1.549199,52.681223],[1.54629,52.679751],[1.54298,52.679483],[1.540164,52.680765],[1.537925,52.68131],[1.536986,52.682918],[1.53546,52.683436],[1.532724,52.682922],[1.530787,52.681573],[1.527668,52.681653],[1.525961,52.68211],[1.52445,52.682961],[1.522859,52.685531],[1.518965,52.686704],[1.517322,52.684446],[1.517677,52.683058],[1.5164,52.681952],[1.513492,52.681268],[1.511816,52.681616],[1.509386,52.683231],[1.508926,52.684478],[1.509592,52.686087],[1.511503,52.68751],[1.512911,52.689194],[1.511464,52.690006],[1.509918,52.690149],[1.507572,52.689662],[1.505859,52.688754],[1.504627,52.688679],[1.503077,52.689888],[1.501893,52.690203],[1.500529,52.689498],[1.500061,52.687525],[1.498305,52.686726],[1.495117,52.686903],[1.49133,52.687642],[1.489375,52.68845],[1.48884,52.689331],[1.489343,52.691842],[1.488021,52.693086],[1.484052,52.693147],[1.481525,52.692549],[1.477152,52.689413],[1.475117,52.68897],[1.473769,52.689203],[1.471825,52.690293],[1.471599,52.693175],[1.46844,52.693708],[1.467092,52.694623],[1.467161,52.695795],[1.468227,52.697571],[1.465176,52.699009],[1.462923,52.702541],[1.462375,52.704216],[1.460727,52.705248],[1.456897,52.70256],[1.455273,52.702403],[1.452412,52.702856],[1.449791,52.702835],[1.446797,52.702486],[1.441702,52.70127],[1.441419,52.700705],[1.442396,52.698625],[1.44293,52.695444],[1.441861,52.694356],[1.43994,52.693913],[1.439073,52.692828],[1.439509,52.691166],[1.433951,52.68935],[1.431702,52.689856],[1.429351,52.691305],[1.426056,52.690159],[1.422693,52.690682],[1.421546,52.691509],[1.418649,52.691636],[1.416,52.693521],[1.415671,52.694753],[1.418197,52.695205],[1.419567,52.697295],[1.42274,52.698878],[1.423975,52.701969]]]},"properties":{"LAD22CD":"E07000144","LAD22NM":"Broadland","BNG_E":619864,"BNG_N":315909,"LONG":1.252317,"LAT":52.69622,"GlobalID":"971401e8-92d4-4240-b41e-044a8f2c38ea"},"id":166}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.740234,52.532086],[1.739155,52.533983],[1.737236,52.538531],[1.736657,52.540978],[1.735946,52.542612],[1.734056,52.550192],[1.732893,52.556895],[1.732186,52.563382],[1.732564,52.569346],[1.73605,52.571636],[1.73403,52.571788],[1.73253,52.572361],[1.73137,52.57997],[1.728786,52.585059],[1.728099,52.588915],[1.726672,52.590596],[1.725453,52.592731],[1.726131,52.597751],[1.725899,52.599593],[1.724919,52.60343],[1.722858,52.606249],[1.719522,52.608304],[1.718821,52.609632],[1.714863,52.611294],[1.713468,52.61155],[1.711352,52.611129],[1.70651,52.608811],[1.705793,52.608161],[1.701509,52.607213],[1.697557,52.607017],[1.692384,52.604123],[1.689478,52.603408],[1.683703,52.600671],[1.676727,52.599569],[1.673764,52.598599],[1.670528,52.598923],[1.66465,52.597799],[1.661421,52.597644],[1.658619,52.596803],[1.656357,52.595592],[1.652148,52.594778],[1.650063,52.593877],[1.649642,52.592223],[1.649899,52.590983],[1.650843,52.589444],[1.651494,52.586997],[1.649693,52.585905],[1.648248,52.584091],[1.648313,52.582317],[1.650254,52.579246],[1.650744,52.57769],[1.65054,52.576309],[1.647475,52.575284],[1.643967,52.574357],[1.639082,52.574767],[1.636109,52.573848],[1.634116,52.572128],[1.633315,52.570389],[1.634652,52.563956],[1.634234,52.562789],[1.633934,52.561952],[1.632641,52.560135],[1.628818,52.557664],[1.625826,52.554126],[1.62313,52.552516],[1.619854,52.551514],[1.615918,52.551578],[1.612831,52.551407],[1.612621,52.551335],[1.609717,52.550222],[1.607716,52.548431],[1.605915,52.544439],[1.6063,52.542433],[1.60796,52.541226],[1.610408,52.540463],[1.613988,52.540262],[1.618584,52.540888],[1.621164,52.53995],[1.621971,52.538609],[1.621719,52.536392],[1.620373,52.534607],[1.620323,52.533564],[1.623214,52.531057],[1.627578,52.52857],[1.628621,52.527323],[1.628914,52.526131],[1.630957,52.526182],[1.63354,52.526627],[1.636536,52.52794],[1.631263,52.532305],[1.638292,52.533782],[1.637866,52.535686],[1.637861,52.537596],[1.638889,52.537624],[1.642936,52.539597],[1.646141,52.539779],[1.64888,52.539507],[1.651306,52.540124],[1.65429,52.541632],[1.659154,52.542251],[1.658868,52.544196],[1.659177,52.544884],[1.662347,52.547854],[1.665677,52.549655],[1.667975,52.550247],[1.674436,52.549574],[1.676344,52.549126],[1.678247,52.548105],[1.680272,52.547765],[1.682682,52.548217],[1.68438,52.54991],[1.686114,52.54938],[1.689705,52.547098],[1.690425,52.544967],[1.693144,52.545075],[1.696121,52.544133],[1.698177,52.544253],[1.700524,52.544947],[1.702576,52.544425],[1.704002,52.543534],[1.704137,52.542147],[1.705594,52.539974],[1.707995,52.539454],[1.710234,52.537879],[1.716757,52.535469],[1.724403,52.533557],[1.726004,52.530642],[1.740234,52.532086]]],[[[1.633497,52.632426],[1.629445,52.63144],[1.626866,52.631228],[1.624486,52.631678],[1.622462,52.633248],[1.618438,52.632551],[1.616773,52.631729],[1.617941,52.629412],[1.617779,52.628714],[1.618059,52.62841],[1.617302,52.62568],[1.619953,52.623581],[1.621151,52.623825],[1.620502,52.624787],[1.622404,52.625844],[1.622789,52.626558],[1.624515,52.626412],[1.625979,52.627103],[1.627323,52.62677],[1.629581,52.626997],[1.630749,52.627869],[1.631685,52.630071],[1.633669,52.631447],[1.633497,52.632426]]],[[[1.64546,52.589384],[1.647809,52.593837],[1.649638,52.59562],[1.652842,52.597333],[1.653411,52.598818],[1.654976,52.600365],[1.65752,52.601853],[1.659052,52.603954],[1.663099,52.605801],[1.66716,52.606636],[1.675514,52.60741],[1.677641,52.607293],[1.678609,52.607845],[1.681764,52.608375],[1.682625,52.610189],[1.685172,52.610699],[1.688328,52.613108],[1.689949,52.61366],[1.693104,52.616991],[1.695704,52.618308],[1.697118,52.61767],[1.698973,52.617828],[1.704991,52.619139],[1.705728,52.619597],[1.71034,52.619225],[1.714014,52.618001],[1.716172,52.616656],[1.714674,52.615254],[1.715369,52.613027],[1.719646,52.611428],[1.722506,52.611904],[1.723354,52.614063],[1.721524,52.61596],[1.721855,52.619842],[1.725457,52.621604],[1.726133,52.624188],[1.724816,52.626962],[1.720014,52.630485],[1.717066,52.630944],[1.710072,52.630639],[1.70616,52.629188],[1.705041,52.62829],[1.704027,52.626401],[1.701234,52.625355],[1.69838,52.625157],[1.696929,52.623098],[1.694202,52.62158],[1.692349,52.621324],[1.687955,52.623142],[1.687305,52.62484],[1.688266,52.626265],[1.687305,52.627496],[1.685837,52.627848],[1.682261,52.62781],[1.67912,52.629293],[1.673883,52.629222],[1.669779,52.628696],[1.666789,52.630116],[1.660064,52.629973],[1.655594,52.630773],[1.653117,52.631787],[1.649892,52.630384],[1.643937,52.630229],[1.642343,52.628777],[1.641212,52.627286],[1.642877,52.62613],[1.648896,52.62453],[1.654179,52.624168],[1.65866,52.62519],[1.659345,52.625658],[1.662981,52.621198],[1.664838,52.619609],[1.665783,52.619519],[1.668104,52.617636],[1.668076,52.616952],[1.671133,52.617405],[1.672869,52.616606],[1.674179,52.614758],[1.676814,52.614336],[1.677926,52.613155],[1.677987,52.612175],[1.675167,52.609612],[1.673719,52.609371],[1.671354,52.610249],[1.668186,52.610205],[1.666831,52.60965],[1.665216,52.607997],[1.661914,52.607083],[1.6593,52.60741],[1.655682,52.606529],[1.653921,52.605134],[1.65382,52.603703],[1.650683,52.601976],[1.64557,52.602831],[1.642736,52.604605],[1.641977,52.604228],[1.642338,52.602999],[1.640365,52.601425],[1.639406,52.599189],[1.63705,52.59809],[1.634787,52.594683],[1.634822,52.592862],[1.63101,52.592502],[1.64546,52.589384]]],[[[1.611672,52.625488],[1.613757,52.627472],[1.616356,52.628169],[1.617456,52.628944],[1.61638,52.631196],[1.616332,52.632356],[1.622284,52.633504],[1.623099,52.633306],[1.624575,52.631963],[1.626323,52.631472],[1.629444,52.631691],[1.632671,52.632749],[1.633588,52.632784],[1.636386,52.631029],[1.63891,52.630411],[1.649557,52.630632],[1.653165,52.632059],[1.657814,52.630553],[1.663824,52.630265],[1.667155,52.630403],[1.669783,52.629005],[1.67404,52.62955],[1.679106,52.629676],[1.682277,52.628136],[1.686195,52.628197],[1.687746,52.62779],[1.688831,52.626347],[1.687718,52.624586],[1.688115,52.623503],[1.692739,52.621617],[1.694175,52.621948],[1.696367,52.623312],[1.697411,52.625077],[1.698323,52.625703],[1.701053,52.625645],[1.703042,52.62614],[1.703765,52.626849],[1.704577,52.629119],[1.706729,52.63013],[1.710023,52.631009],[1.718336,52.631367],[1.721379,52.630423],[1.72543,52.627218],[1.726537,52.625306],[1.726726,52.623162],[1.725433,52.621018],[1.722338,52.619662],[1.721854,52.61616],[1.723829,52.614009],[1.723229,52.612229],[1.722184,52.611426],[1.720016,52.61075],[1.721054,52.60822],[1.724163,52.606033],[1.725651,52.604132],[1.726816,52.600442],[1.727271,52.597561],[1.726754,52.592509],[1.729223,52.589188],[1.730474,52.584511],[1.73259,52.580294],[1.733724,52.574138],[1.735361,52.572937],[1.739403,52.572974],[1.741574,52.574459],[1.738794,52.574782],[1.738054,52.575202],[1.73883,52.579982],[1.744881,52.580016],[1.738998,52.582643],[1.737988,52.582473],[1.737481,52.587307],[1.737672,52.591525],[1.73914,52.602892],[1.740708,52.608369],[1.742383,52.619919],[1.74523,52.626215],[1.741684,52.634407],[1.736966,52.647463],[1.73466,52.650108],[1.730942,52.657847],[1.72907,52.663547],[1.72817,52.666932],[1.723221,52.673287],[1.717057,52.684664],[1.709747,52.69488],[1.706117,52.7012],[1.704737,52.70441],[1.704498,52.707437],[1.700031,52.716946],[1.69752,52.723605],[1.694439,52.726452],[1.687043,52.731823],[1.681956,52.736853],[1.680555,52.738455],[1.674854,52.742588],[1.667595,52.741271],[1.663399,52.739322],[1.651372,52.737879],[1.645835,52.736628],[1.63814,52.733726],[1.637204,52.732754],[1.63715,52.731041],[1.634714,52.731079],[1.632945,52.72709],[1.626828,52.725145],[1.626621,52.724355],[1.627714,52.723547],[1.6308,52.725276],[1.632909,52.726066],[1.633046,52.725831],[1.628798,52.724113],[1.623859,52.720102],[1.619824,52.717627],[1.612643,52.71536],[1.605729,52.71542],[1.602445,52.715024],[1.593392,52.712875],[1.589819,52.712409],[1.588301,52.712082],[1.585923,52.711517],[1.582885,52.71046],[1.582702,52.710374],[1.581467,52.709794],[1.581247,52.709691],[1.579004,52.708129],[1.577777,52.705413],[1.576509,52.704153],[1.573433,52.702361],[1.570111,52.701273],[1.567824,52.701179],[1.562045,52.702039],[1.556895,52.701379],[1.55422,52.700714],[1.550532,52.699107],[1.545772,52.695916],[1.544925,52.693914],[1.545596,52.692253],[1.545705,52.692151],[1.548683,52.689696],[1.550344,52.687408],[1.550063,52.687086],[1.54966,52.681954],[1.550515,52.681422],[1.550868,52.680168],[1.553475,52.673751],[1.555034,52.672488],[1.559026,52.670991],[1.561169,52.669272],[1.562013,52.667707],[1.562437,52.66551],[1.560532,52.658459],[1.557665,52.655101],[1.557305,52.654105],[1.557354,52.652],[1.558926,52.650354],[1.561289,52.649748],[1.565954,52.649586],[1.56988,52.648225],[1.570079,52.64615],[1.567598,52.644384],[1.566619,52.641841],[1.567009,52.639379],[1.56845,52.637961],[1.569739,52.637568],[1.572309,52.638128],[1.573788,52.639458],[1.57483,52.639628],[1.577587,52.637592],[1.578997,52.637181],[1.583171,52.636707],[1.585428,52.636939],[1.588246,52.638497],[1.589873,52.638712],[1.592235,52.63757],[1.592954,52.636386],[1.59177,52.63449],[1.593901,52.63204],[1.593244,52.629719],[1.59345,52.62908],[1.596687,52.628672],[1.596726,52.628667],[1.598734,52.627867],[1.598867,52.626403],[1.599699,52.625531],[1.604213,52.624372],[1.604692,52.624273],[1.607939,52.624266],[1.611326,52.625191],[1.611672,52.625488]]]]},"properties":{"LAD22CD":"E07000145","LAD22NM":"Great Yarmouth","BNG_E":646761,"BNG_N":315881,"LONG":1.64951,"LAT":52.68439,"GlobalID":"b38215fd-6b34-43b8-a6ab-9d215c81b605"},"id":167}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.267485,52.813253],[0.269495,52.812402],[0.270921,52.812619],[0.268786,52.815838],[0.267485,52.813253]]],[[[0.270963,52.814148],[0.269752,52.815901],[0.269052,52.815512],[0.270963,52.814148]]],[[[0.245523,52.500555],[0.260391,52.51173],[0.299998,52.547053],[0.317923,52.563168],[0.319436,52.564474],[0.340232,52.583054],[0.340972,52.584765],[0.340238,52.589323],[0.340932,52.590684],[0.344451,52.593715],[0.348639,52.596217],[0.352135,52.597117],[0.353174,52.597672],[0.35826,52.602245],[0.360233,52.60478],[0.361351,52.607931],[0.364159,52.610737],[0.364617,52.613287],[0.362817,52.616309],[0.362283,52.621435],[0.363303,52.623608],[0.365337,52.625194],[0.364542,52.628384],[0.366676,52.632087],[0.367099,52.635375],[0.366614,52.637725],[0.367764,52.64101],[0.367377,52.643116],[0.365078,52.646338],[0.365637,52.648611],[0.365314,52.651418],[0.36572,52.654305],[0.364096,52.656639],[0.363211,52.660345],[0.360147,52.664908],[0.359839,52.666415],[0.363796,52.674628],[0.371657,52.686228],[0.371862,52.687597],[0.37089,52.689979],[0.371308,52.69207],[0.370609,52.693182],[0.367481,52.695865],[0.361635,52.698335],[0.359587,52.701082],[0.354708,52.705616],[0.35386,52.70543],[0.351932,52.703761],[0.351186,52.704068],[0.354245,52.706124],[0.352977,52.708378],[0.352783,52.712432],[0.35327,52.71487],[0.354264,52.717],[0.357192,52.72042],[0.364216,52.725515],[0.384784,52.739992],[0.391875,52.746392],[0.392194,52.748333],[0.389946,52.752645],[0.387943,52.75934],[0.368636,52.788436],[0.367224,52.790415],[0.360497,52.798967],[0.353626,52.806418],[0.352091,52.80936],[0.348542,52.811336],[0.344754,52.814127],[0.342938,52.81448],[0.341291,52.815351],[0.338361,52.815053],[0.334966,52.81707],[0.33194,52.817954],[0.327993,52.818462],[0.322317,52.818351],[0.315667,52.818833],[0.312762,52.818366],[0.305405,52.81859],[0.302599,52.81817],[0.296069,52.818508],[0.290779,52.818039],[0.288418,52.819085],[0.287224,52.819218],[0.285802,52.818447],[0.281262,52.81751],[0.279322,52.816379],[0.275041,52.816815],[0.272334,52.816198],[0.269784,52.815974],[0.27215,52.812487],[0.26945,52.812371],[0.267464,52.813211],[0.264082,52.806485],[0.264024,52.805446],[0.262257,52.803667],[0.253178,52.797355],[0.260905,52.796056],[0.251998,52.792563],[0.245084,52.784524],[0.272208,52.772806],[0.269838,52.772034],[0.265699,52.771591],[0.25398,52.767147],[0.251674,52.767117],[0.2475,52.764839],[0.243953,52.764001],[0.233163,52.760265],[0.227815,52.757172],[0.217554,52.753253],[0.211977,52.749649],[0.196764,52.742254],[0.194882,52.738797],[0.190814,52.739475],[0.192278,52.738336],[0.186323,52.735349],[0.172107,52.737944],[0.17073,52.73572],[0.168502,52.725624],[0.166123,52.721106],[0.156888,52.707948],[0.156434,52.70104],[0.154062,52.682166],[0.15486,52.680793],[0.157173,52.680683],[0.157144,52.679693],[0.159635,52.680465],[0.15976,52.679642],[0.162401,52.67948],[0.166388,52.68056],[0.169871,52.678657],[0.171931,52.678911],[0.174633,52.678402],[0.178378,52.678402],[0.180415,52.678085],[0.184716,52.677895],[0.184503,52.676339],[0.183367,52.674029],[0.182488,52.673406],[0.180836,52.673259],[0.181079,52.672099],[0.184429,52.672141],[0.184411,52.667],[0.183581,52.662919],[0.184138,52.660091],[0.183063,52.659089],[0.183842,52.655662],[0.176279,52.655691],[0.17834,52.652636],[0.169595,52.652756],[0.169925,52.650435],[0.173966,52.647201],[0.176188,52.64439],[0.179183,52.642474],[0.180497,52.641986],[0.183117,52.641657],[0.185674,52.640514],[0.188092,52.63848],[0.189718,52.635724],[0.192028,52.634266],[0.196575,52.632191],[0.203182,52.630226],[0.215209,52.624471],[0.2193,52.621812],[0.217062,52.621583],[0.210864,52.617928],[0.212539,52.616797],[0.216937,52.614983],[0.217386,52.614525],[0.209312,52.613535],[0.205614,52.611803],[0.204989,52.610966],[0.204878,52.609182],[0.203433,52.607641],[0.202641,52.605606],[0.201387,52.604606],[0.201519,52.603136],[0.198334,52.602772],[0.197067,52.602217],[0.195106,52.602266],[0.194629,52.601625],[0.191599,52.601517],[0.192559,52.599384],[0.191626,52.598889],[0.19516,52.595166],[0.193929,52.595404],[0.193852,52.592103],[0.199148,52.591792],[0.1972,52.58908],[0.198154,52.588788],[0.198087,52.586093],[0.199544,52.582758],[0.202611,52.580095],[0.21578,52.579446],[0.214604,52.577924],[0.21463,52.575522],[0.215278,52.57472],[0.218036,52.573408],[0.218486,52.572226],[0.218326,52.570964],[0.216124,52.569487],[0.213792,52.568567],[0.206823,52.56759],[0.205631,52.565569],[0.206736,52.56361],[0.209434,52.562872],[0.212309,52.561146],[0.214864,52.560831],[0.216525,52.561059],[0.217238,52.560594],[0.216972,52.558769],[0.214097,52.556199],[0.2116,52.555418],[0.205992,52.555868],[0.204708,52.554656],[0.204203,52.549459],[0.20514,52.547901],[0.206943,52.547243],[0.208943,52.54698],[0.213546,52.548932],[0.214625,52.549107],[0.214359,52.546969],[0.211236,52.545236],[0.208553,52.544639],[0.206321,52.544755],[0.203872,52.545405],[0.213145,52.538172],[0.209374,52.53611],[0.210084,52.535473],[0.205847,52.533851],[0.207687,52.53187],[0.208134,52.530087],[0.211055,52.530714],[0.21494,52.532052],[0.220292,52.528921],[0.225604,52.53257],[0.228823,52.53084],[0.230591,52.52791],[0.226282,52.525621],[0.225685,52.525942],[0.222387,52.52391],[0.224825,52.522424],[0.223173,52.521384],[0.219706,52.523147],[0.216646,52.520863],[0.215063,52.522454],[0.206123,52.519635],[0.213641,52.518473],[0.236319,52.507291],[0.238788,52.509186],[0.245523,52.500555]]],[[[0.737641,52.96589],[0.735712,52.966866],[0.733856,52.966337],[0.733347,52.96492],[0.734982,52.963607],[0.735938,52.964566],[0.738102,52.965409],[0.737641,52.96589]]],[[[0.621384,52.969256],[0.619558,52.969961],[0.619277,52.968701],[0.617928,52.968968],[0.616056,52.968498],[0.615997,52.967459],[0.617893,52.96764],[0.620449,52.967597],[0.621416,52.968011],[0.621384,52.969256]]],[[[0.740877,52.967723],[0.738612,52.966619],[0.740082,52.965595],[0.742706,52.965322],[0.742666,52.966632],[0.741657,52.966201],[0.740853,52.966278],[0.740887,52.966389],[0.741793,52.966399],[0.741327,52.966771],[0.741913,52.966871],[0.740877,52.967723]]],[[[0.622129,52.968116],[0.625675,52.9682],[0.625688,52.971028],[0.624672,52.971278],[0.621647,52.969918],[0.622129,52.968116]]],[[[0.737038,52.969166],[0.735636,52.96912],[0.735547,52.967433],[0.737222,52.968182],[0.737038,52.969166]]],[[[0.687721,52.969679],[0.689185,52.970628],[0.687708,52.971045],[0.685905,52.969555],[0.687721,52.969679]]],[[[0.745988,52.970225],[0.745596,52.9693],[0.740587,52.968413],[0.737931,52.968269],[0.73609,52.967074],[0.738306,52.966718],[0.739547,52.968029],[0.740906,52.968113],[0.74149,52.967353],[0.741839,52.967302],[0.741975,52.96686],[0.741506,52.966679],[0.742362,52.966526],[0.742689,52.966671],[0.742483,52.96842],[0.74278,52.966584],[0.743767,52.966196],[0.744454,52.965602],[0.745549,52.966099],[0.746812,52.967921],[0.746201,52.968665],[0.746606,52.969704],[0.745988,52.970225]]],[[[0.677906,52.971661],[0.675479,52.971533],[0.675187,52.970493],[0.678481,52.970738],[0.677906,52.971661]]],[[[0.711777,52.973912],[0.710997,52.973246],[0.711439,52.972354],[0.716112,52.971914],[0.715858,52.972482],[0.713957,52.972854],[0.711777,52.973912]]],[[[0.730417,52.973762],[0.728387,52.97359],[0.728697,52.972655],[0.730327,52.973094],[0.730417,52.973762]]],[[[0.723565,52.97444],[0.721553,52.974478],[0.720866,52.973225],[0.720671,52.97176],[0.723859,52.971855],[0.728562,52.972604],[0.728224,52.97362],[0.726594,52.973378],[0.723654,52.973503],[0.723565,52.97444]]],[[[0.721223,52.974451],[0.719003,52.973947],[0.718645,52.972586],[0.717066,52.971865],[0.720623,52.971759],[0.720192,52.973625],[0.721223,52.974451]]],[[[0.725149,52.977499],[0.723349,52.977615],[0.717328,52.976599],[0.713341,52.976589],[0.710506,52.977632],[0.707624,52.976817],[0.705434,52.976813],[0.70533,52.97587],[0.706116,52.974058],[0.707669,52.973941],[0.710041,52.974531],[0.710483,52.9752],[0.712347,52.9748],[0.714133,52.972885],[0.716339,52.972923],[0.718415,52.973434],[0.718591,52.974002],[0.72104,52.974793],[0.725599,52.974799],[0.727534,52.974446],[0.729935,52.97498],[0.73017,52.975782],[0.732572,52.976588],[0.730251,52.977033],[0.728744,52.976914],[0.725149,52.977499]]],[[[0.71445,52.978594],[0.712265,52.978348],[0.713592,52.977535],[0.71445,52.978594]]],[[[0.720929,52.978292],[0.71916,52.978352],[0.718679,52.977468],[0.720549,52.977411],[0.720929,52.978292]]],[[[0.716771,52.978442],[0.715575,52.978503],[0.714786,52.977613],[0.715494,52.977133],[0.717142,52.977781],[0.716771,52.978442]]],[[[0.732825,52.978886],[0.731873,52.978685],[0.732818,52.976967],[0.735615,52.976245],[0.738297,52.975989],[0.738779,52.976566],[0.73625,52.978783],[0.732825,52.978886]]],[[[0.7333,52.979473],[0.730971,52.979389],[0.730175,52.978216],[0.727532,52.97792],[0.732686,52.976993],[0.73157,52.978847],[0.7333,52.979473]]],[[[0.781538,52.978396],[0.774404,52.979444],[0.767344,52.978686],[0.759803,52.978734],[0.755408,52.978099],[0.750587,52.976744],[0.752291,52.976491],[0.752568,52.975837],[0.754249,52.975887],[0.754,52.974659],[0.755531,52.972518],[0.75462,52.971066],[0.758304,52.971726],[0.758836,52.970641],[0.757834,52.969381],[0.753242,52.969485],[0.750247,52.968292],[0.746704,52.964998],[0.745158,52.964962],[0.741756,52.9643],[0.738649,52.965189],[0.734854,52.962998],[0.733572,52.963393],[0.733261,52.964446],[0.730839,52.964626],[0.734987,52.967245],[0.735497,52.968344],[0.732812,52.971805],[0.735378,52.971663],[0.734817,52.97059],[0.737453,52.969101],[0.737682,52.968389],[0.740203,52.968627],[0.742182,52.9695],[0.744406,52.969237],[0.745277,52.970647],[0.746808,52.971107],[0.747346,52.972065],[0.748449,52.972441],[0.750321,52.971683],[0.749694,52.971091],[0.748177,52.971748],[0.746996,52.971401],[0.746833,52.969357],[0.748434,52.970728],[0.749705,52.970617],[0.751878,52.971556],[0.752227,52.972814],[0.749786,52.973503],[0.747928,52.97482],[0.741121,52.974771],[0.739622,52.97418],[0.738184,52.97469],[0.734777,52.974634],[0.731885,52.973671],[0.730657,52.972923],[0.726246,52.972089],[0.723519,52.971742],[0.718106,52.971693],[0.711416,52.972239],[0.705184,52.973198],[0.703819,52.97435],[0.704184,52.975444],[0.703103,52.976814],[0.70157,52.977364],[0.693306,52.978985],[0.691437,52.978211],[0.690261,52.976637],[0.687426,52.974656],[0.6868,52.97373],[0.68424,52.972802],[0.680144,52.971897],[0.678737,52.970894],[0.680644,52.96934],[0.683184,52.970646],[0.685484,52.970107],[0.68706,52.971171],[0.68865,52.971379],[0.689985,52.970681],[0.685686,52.968297],[0.684951,52.969748],[0.683732,52.970088],[0.68248,52.96898],[0.680099,52.967801],[0.67789,52.967613],[0.677032,52.968623],[0.673942,52.968919],[0.671473,52.969631],[0.669417,52.96822],[0.668476,52.968362],[0.66582,52.967486],[0.663531,52.96712],[0.662131,52.967857],[0.662665,52.969382],[0.660228,52.970059],[0.657983,52.969598],[0.657153,52.969791],[0.653935,52.969377],[0.653435,52.968546],[0.651061,52.968279],[0.649757,52.968529],[0.649386,52.969507],[0.65109,52.970626],[0.653951,52.970527],[0.658091,52.971217],[0.663753,52.971018],[0.667562,52.969969],[0.668977,52.970232],[0.67334,52.972828],[0.674594,52.973034],[0.675264,52.973963],[0.674122,52.976165],[0.671583,52.977515],[0.667244,52.977823],[0.66638,52.978493],[0.662729,52.978672],[0.659039,52.978254],[0.654967,52.976992],[0.650889,52.976979],[0.634325,52.974514],[0.622663,52.973764],[0.620889,52.972974],[0.619895,52.972019],[0.620783,52.970251],[0.621868,52.970297],[0.62391,52.971403],[0.625694,52.971424],[0.62601,52.970712],[0.625717,52.968132],[0.621588,52.967971],[0.62052,52.967247],[0.618404,52.96721],[0.617966,52.967614],[0.615286,52.967209],[0.615465,52.968848],[0.617882,52.969185],[0.61955,52.970464],[0.617583,52.972162],[0.617747,52.97273],[0.612108,52.97358],[0.60253,52.974566],[0.587927,52.97707],[0.587183,52.975745],[0.587387,52.974275],[0.591193,52.972946],[0.590623,52.971726],[0.592219,52.970961],[0.589441,52.970676],[0.587293,52.971],[0.586048,52.97177],[0.582896,52.971499],[0.582156,52.970172],[0.581097,52.969409],[0.575237,52.96807],[0.575232,52.966826],[0.574488,52.966123],[0.572114,52.966471],[0.571184,52.9685],[0.566088,52.969604],[0.566834,52.970507],[0.569322,52.971121],[0.569216,52.972309],[0.569984,52.973159],[0.571563,52.973875],[0.569231,52.975336],[0.564065,52.976114],[0.547264,52.975618],[0.538631,52.974843],[0.534187,52.974116],[0.518714,52.968543],[0.513755,52.964307],[0.515183,52.963737],[0.513967,52.96163],[0.508358,52.958294],[0.501588,52.955294],[0.497087,52.952984],[0.489746,52.947482],[0.486617,52.942149],[0.485287,52.938591],[0.479347,52.931318],[0.477722,52.926793],[0.476393,52.924067],[0.474531,52.916557],[0.472542,52.913139],[0.4716,52.908573],[0.464816,52.89834],[0.46065,52.89228],[0.453196,52.884374],[0.446305,52.875607],[0.444878,52.872859],[0.443394,52.867891],[0.44421,52.865661],[0.445967,52.864431],[0.445684,52.859872],[0.44616,52.858554],[0.444926,52.853651],[0.441962,52.854628],[0.436801,52.853984],[0.433003,52.8531],[0.430052,52.851199],[0.427456,52.849823],[0.421876,52.848047],[0.418949,52.846336],[0.415434,52.842777],[0.41388,52.840311],[0.412385,52.839817],[0.409745,52.839719],[0.408272,52.838619],[0.406512,52.838658],[0.405081,52.837693],[0.404392,52.836689],[0.402614,52.836828],[0.400704,52.835408],[0.400152,52.834459],[0.398354,52.833738],[0.398086,52.832781],[0.396858,52.832216],[0.393094,52.831482],[0.391441,52.829229],[0.389339,52.82845],[0.388745,52.827549],[0.384472,52.825505],[0.380996,52.823263],[0.379495,52.822913],[0.377156,52.82117],[0.375029,52.820422],[0.373416,52.818902],[0.370577,52.817886],[0.368685,52.818282],[0.367205,52.817597],[0.365996,52.816249],[0.361793,52.813893],[0.359711,52.813538],[0.357839,52.812739],[0.357464,52.81081],[0.358994,52.809397],[0.359353,52.808564],[0.358257,52.807839],[0.359608,52.805287],[0.361855,52.802691],[0.364266,52.799344],[0.368092,52.794454],[0.370759,52.790524],[0.374646,52.784329],[0.388811,52.762054],[0.391512,52.757377],[0.391907,52.754391],[0.394047,52.749797],[0.39461,52.747492],[0.393094,52.744809],[0.390084,52.742036],[0.377445,52.732958],[0.375753,52.731471],[0.376745,52.729654],[0.375113,52.729694],[0.373792,52.730465],[0.366574,52.72553],[0.358646,52.719978],[0.356931,52.718246],[0.354544,52.714068],[0.354313,52.71056],[0.355958,52.706673],[0.360737,52.701285],[0.362051,52.699187],[0.363442,52.698382],[0.367931,52.696757],[0.372209,52.693029],[0.372866,52.691763],[0.372333,52.689714],[0.373331,52.687652],[0.372953,52.6862],[0.371525,52.683837],[0.364969,52.6745],[0.361157,52.666631],[0.361361,52.665274],[0.36427,52.661083],[0.365195,52.658123],[0.366712,52.654662],[0.366231,52.645924],[0.368289,52.643305],[0.368827,52.640472],[0.367667,52.63748],[0.368052,52.635071],[0.367792,52.632257],[0.36561,52.628537],[0.36643,52.625065],[0.365784,52.624098],[0.363663,52.622442],[0.3634,52.621647],[0.363607,52.616695],[0.365427,52.613893],[0.365369,52.611114],[0.364598,52.609748],[0.362295,52.60794],[0.360788,52.604187],[0.359371,52.602466],[0.353867,52.597305],[0.352133,52.59657],[0.349166,52.595757],[0.345418,52.593657],[0.343307,52.591589],[0.341636,52.590503],[0.341231,52.587351],[0.342278,52.583941],[0.341178,52.5835],[0.340413,52.582468],[0.308352,52.554028],[0.299832,52.546439],[0.260602,52.511559],[0.24566,52.50038],[0.246041,52.499891],[0.256476,52.507714],[0.257304,52.507083],[0.268503,52.508977],[0.278634,52.508557],[0.289531,52.510721],[0.30936,52.513622],[0.315561,52.512697],[0.317293,52.513008],[0.318257,52.511897],[0.318394,52.50959],[0.317743,52.508739],[0.318305,52.507657],[0.323329,52.507722],[0.328765,52.509083],[0.330937,52.509136],[0.337934,52.505882],[0.341699,52.502908],[0.345033,52.501685],[0.3478,52.502149],[0.349758,52.501088],[0.352814,52.501484],[0.355221,52.500756],[0.359407,52.500839],[0.36109,52.499215],[0.362093,52.498933],[0.363989,52.499461],[0.364993,52.50087],[0.367062,52.501174],[0.367144,52.495943],[0.371735,52.491004],[0.373089,52.487775],[0.37602,52.486049],[0.377124,52.484276],[0.37916,52.482402],[0.380706,52.479539],[0.384276,52.477692],[0.391916,52.475529],[0.394436,52.472238],[0.396303,52.470902],[0.397969,52.468753],[0.400399,52.467291],[0.402089,52.465348],[0.404126,52.464552],[0.405908,52.463402],[0.416494,52.459461],[0.423931,52.456401],[0.426297,52.455078],[0.42838,52.4543],[0.423355,52.453705],[0.423778,52.444923],[0.42581,52.443742],[0.424556,52.442716],[0.427768,52.437222],[0.429344,52.436427],[0.430669,52.437357],[0.431209,52.438413],[0.433355,52.438923],[0.436275,52.440319],[0.439141,52.440739],[0.440042,52.442151],[0.439128,52.443485],[0.441004,52.444794],[0.444449,52.445549],[0.445539,52.447372],[0.449428,52.445829],[0.449879,52.44767],[0.451459,52.44777],[0.452829,52.446414],[0.457008,52.44497],[0.458065,52.44559],[0.459387,52.447257],[0.466834,52.445944],[0.467266,52.445283],[0.469571,52.44614],[0.473067,52.445905],[0.475729,52.44673],[0.478161,52.445575],[0.480925,52.446906],[0.48551,52.447741],[0.493309,52.44794],[0.496042,52.447279],[0.498064,52.448141],[0.49995,52.449902],[0.500924,52.450235],[0.503538,52.450029],[0.507817,52.450586],[0.513531,52.44925],[0.515402,52.450386],[0.516408,52.450526],[0.520705,52.449358],[0.5231,52.448223],[0.523836,52.4482],[0.526994,52.449927],[0.528069,52.452713],[0.530377,52.453594],[0.531937,52.453325],[0.533602,52.451612],[0.537497,52.45118],[0.540372,52.450342],[0.54262,52.450316],[0.544502,52.451613],[0.547821,52.452038],[0.549035,52.453279],[0.549519,52.454572],[0.554821,52.456028],[0.559152,52.45586],[0.563152,52.453476],[0.567958,52.453467],[0.572259,52.451982],[0.577951,52.452532],[0.582501,52.451861],[0.582578,52.463905],[0.583674,52.468027],[0.590804,52.484325],[0.596895,52.495168],[0.598987,52.500378],[0.601995,52.508815],[0.602812,52.513215],[0.605179,52.520538],[0.608457,52.526743],[0.613366,52.531634],[0.612491,52.532834],[0.612126,52.534734],[0.61071,52.535678],[0.609825,52.5388],[0.60874,52.540122],[0.604585,52.54211],[0.60475,52.543288],[0.602226,52.54378],[0.601178,52.543462],[0.597683,52.543279],[0.595903,52.543779],[0.594312,52.545812],[0.593113,52.546733],[0.591554,52.547068],[0.590293,52.548138],[0.587915,52.552198],[0.585749,52.553271],[0.586417,52.555299],[0.584016,52.555018],[0.582922,52.556029],[0.581366,52.555995],[0.580138,52.557994],[0.579481,52.558354],[0.579874,52.559548],[0.577966,52.559972],[0.576864,52.561105],[0.575895,52.561097],[0.572518,52.561929],[0.571475,52.562592],[0.568998,52.562598],[0.567443,52.564932],[0.565347,52.564937],[0.562238,52.565952],[0.561312,52.566611],[0.559773,52.565513],[0.55839,52.56602],[0.556802,52.565808],[0.556321,52.564656],[0.553533,52.565178],[0.550567,52.565175],[0.548978,52.566052],[0.543643,52.565091],[0.541187,52.565525],[0.539035,52.565249],[0.536616,52.565804],[0.535189,52.56775],[0.53265,52.574579],[0.530521,52.576126],[0.53289,52.578078],[0.535784,52.579849],[0.538079,52.586258],[0.539864,52.586693],[0.541554,52.585932],[0.544044,52.586558],[0.545905,52.586721],[0.547559,52.587898],[0.550589,52.58902],[0.552452,52.589169],[0.553248,52.589811],[0.556132,52.590321],[0.557228,52.590913],[0.559129,52.59082],[0.559351,52.591653],[0.561585,52.593392],[0.562199,52.595165],[0.564099,52.596382],[0.56486,52.597781],[0.565636,52.602026],[0.565045,52.605435],[0.566106,52.608015],[0.567107,52.6141],[0.56165,52.613185],[0.575471,52.645198],[0.578508,52.653515],[0.573066,52.653817],[0.562177,52.655296],[0.564398,52.663066],[0.564239,52.666399],[0.564964,52.66853],[0.564736,52.67159],[0.56339,52.673227],[0.553201,52.678635],[0.550982,52.680521],[0.555098,52.681937],[0.556079,52.682774],[0.557782,52.683189],[0.560176,52.682987],[0.562833,52.684163],[0.566265,52.686497],[0.568696,52.687085],[0.571038,52.689102],[0.572395,52.68855],[0.575174,52.689617],[0.577947,52.689611],[0.578804,52.690483],[0.582094,52.691248],[0.584066,52.692118],[0.586111,52.691811],[0.588585,52.692877],[0.590193,52.693067],[0.592243,52.693921],[0.59568,52.694041],[0.598212,52.694987],[0.601856,52.695566],[0.604333,52.696304],[0.605475,52.697104],[0.607729,52.697564],[0.610443,52.698811],[0.612094,52.699989],[0.614375,52.699891],[0.6177,52.700249],[0.62255,52.701672],[0.626018,52.701814],[0.630458,52.69768],[0.62983,52.697321],[0.634629,52.693155],[0.636418,52.693859],[0.638297,52.691857],[0.640583,52.692057],[0.643971,52.691665],[0.647749,52.690678],[0.647967,52.693317],[0.649019,52.693397],[0.648544,52.695335],[0.649362,52.701049],[0.651356,52.701317],[0.653986,52.702428],[0.653758,52.704064],[0.659427,52.704785],[0.660003,52.703883],[0.662643,52.703972],[0.662851,52.70308],[0.671514,52.702861],[0.671639,52.701776],[0.67286,52.701521],[0.672379,52.700149],[0.674628,52.698393],[0.676796,52.699478],[0.679902,52.699058],[0.681655,52.699154],[0.683628,52.698725],[0.683936,52.698212],[0.686169,52.698291],[0.687164,52.697914],[0.689982,52.699113],[0.689732,52.699621],[0.692926,52.700972],[0.696858,52.700911],[0.699611,52.701755],[0.699032,52.702305],[0.700126,52.703792],[0.698837,52.703756],[0.699053,52.706611],[0.699654,52.707786],[0.705465,52.710324],[0.707106,52.708792],[0.708932,52.709064],[0.709813,52.708428],[0.711057,52.709025],[0.710853,52.709967],[0.708066,52.711296],[0.708251,52.712436],[0.711283,52.714005],[0.710862,52.715559],[0.713281,52.71745],[0.717075,52.718642],[0.71714,52.721372],[0.718227,52.721794],[0.716717,52.722952],[0.715457,52.724647],[0.704532,52.731631],[0.700513,52.735678],[0.701127,52.736191],[0.694122,52.736056],[0.688529,52.736275],[0.680344,52.737703],[0.675292,52.739154],[0.668133,52.740557],[0.668911,52.742091],[0.67339,52.74598],[0.688725,52.751972],[0.687737,52.753692],[0.691428,52.759293],[0.688406,52.76068],[0.689156,52.762092],[0.690084,52.770035],[0.695166,52.769805],[0.696006,52.772938],[0.699454,52.773161],[0.700487,52.773445],[0.699508,52.775705],[0.699836,52.77619],[0.697739,52.778975],[0.695913,52.78054],[0.698377,52.780964],[0.698871,52.783765],[0.700435,52.783948],[0.699917,52.786214],[0.701998,52.786674],[0.707938,52.788472],[0.713732,52.789835],[0.722562,52.793317],[0.725703,52.795209],[0.736184,52.799292],[0.731083,52.801722],[0.730938,52.803658],[0.732227,52.803659],[0.733786,52.805699],[0.73544,52.80696],[0.738448,52.808623],[0.738967,52.808234],[0.742671,52.810684],[0.746098,52.813491],[0.745298,52.813823],[0.746683,52.815255],[0.748009,52.814808],[0.749423,52.815922],[0.751187,52.814931],[0.751898,52.814111],[0.753369,52.814372],[0.754546,52.816167],[0.756218,52.816727],[0.75223,52.817463],[0.752435,52.818828],[0.7489,52.81972],[0.747291,52.820668],[0.74666,52.821629],[0.749085,52.822633],[0.745004,52.825082],[0.744063,52.82685],[0.744773,52.828028],[0.742495,52.829101],[0.742479,52.829859],[0.741077,52.831158],[0.739418,52.830569],[0.737458,52.831875],[0.73639,52.833027],[0.736171,52.835207],[0.729688,52.839441],[0.728127,52.84157],[0.725084,52.842873],[0.724453,52.84568],[0.723526,52.847067],[0.724914,52.84763],[0.724433,52.850381],[0.727049,52.853666],[0.727774,52.855339],[0.730929,52.854927],[0.731522,52.85766],[0.736835,52.857129],[0.742612,52.855775],[0.747505,52.855675],[0.750559,52.856037],[0.757857,52.855795],[0.76528,52.85651],[0.780387,52.858812],[0.789662,52.859631],[0.79097,52.859883],[0.790195,52.861962],[0.791373,52.862136],[0.791142,52.865556],[0.794735,52.866087],[0.797788,52.864453],[0.794387,52.880582],[0.794166,52.882088],[0.794872,52.88351],[0.797177,52.885269],[0.80191,52.882257],[0.805464,52.880804],[0.806896,52.879438],[0.811058,52.882648],[0.813792,52.885418],[0.815052,52.888583],[0.816497,52.888355],[0.818287,52.892118],[0.821569,52.892857],[0.821213,52.895063],[0.816927,52.894984],[0.816944,52.896763],[0.815233,52.897021],[0.815994,52.898583],[0.817113,52.898504],[0.81699,52.900067],[0.814588,52.899838],[0.813244,52.898297],[0.810811,52.898894],[0.811732,52.900304],[0.808747,52.9008],[0.80517,52.9008],[0.789872,52.899851],[0.787876,52.907885],[0.786013,52.917074],[0.78507,52.92284],[0.78726,52.923024],[0.78753,52.92425],[0.784894,52.924813],[0.784095,52.926082],[0.782864,52.935892],[0.778443,52.951639],[0.781078,52.95751],[0.781448,52.959886],[0.781047,52.963634],[0.78182,52.964085],[0.780249,52.965679],[0.780198,52.967025],[0.781396,52.967626],[0.78172,52.968648],[0.783322,52.970102],[0.781482,52.972041],[0.781085,52.973216],[0.781538,52.978396]]],[[[0.697391,52.987365],[0.689445,52.987856],[0.670826,52.987746],[0.661721,52.986995],[0.658054,52.986273],[0.657514,52.984381],[0.659434,52.985433],[0.659144,52.983689],[0.66075,52.982056],[0.661478,52.982907],[0.663379,52.98391],[0.663996,52.983623],[0.66697,52.984363],[0.669947,52.984203],[0.671848,52.983293],[0.672605,52.984623],[0.67124,52.985548],[0.674462,52.98662],[0.675991,52.985996],[0.678388,52.98701],[0.678712,52.986223],[0.68079,52.985462],[0.679124,52.98294],[0.679255,52.981082],[0.678684,52.980024],[0.680204,52.978458],[0.682108,52.977412],[0.684611,52.978047],[0.688042,52.980215],[0.691979,52.98114],[0.694671,52.980759],[0.696512,52.980883],[0.699604,52.980244],[0.700068,52.979498],[0.704382,52.979132],[0.706162,52.979514],[0.710199,52.978926],[0.713988,52.97929],[0.714956,52.978974],[0.717249,52.979605],[0.718779,52.978998],[0.722485,52.978821],[0.72465,52.979345],[0.728503,52.979016],[0.731494,52.979771],[0.732564,52.980538],[0.734205,52.978918],[0.736169,52.979132],[0.737245,52.978737],[0.738411,52.979745],[0.740334,52.97952],[0.740273,52.97874],[0.743166,52.977858],[0.745012,52.97806],[0.747696,52.97702],[0.749317,52.977097],[0.751004,52.978173],[0.75014,52.979664],[0.746149,52.980635],[0.736603,52.982167],[0.718155,52.984065],[0.697391,52.987365]]]]},"properties":{"LAD22CD":"E07000146","LAD22NM":"King's Lynn and West Norfolk","BNG_E":571219,"BNG_N":315805,"LONG":0.533243,"LAT":52.71283,"GlobalID":"74aaa811-b8c0-4ce9-b17c-d1136aed2f9b"},"id":168}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.509608,52.683564],[1.511907,52.681819],[1.513474,52.681654],[1.515774,52.68213],[1.517105,52.6829],[1.517074,52.684903],[1.518587,52.686922],[1.512911,52.689194],[1.511503,52.68751],[1.509871,52.686001],[1.509266,52.684776],[1.509583,52.683621],[1.509608,52.683564]]],[[[0.867821,52.959231],[0.866236,52.958546],[0.867995,52.957821],[0.867821,52.959231]]],[[[0.862781,52.959558],[0.862384,52.959808],[0.857851,52.95906],[0.85628,52.957624],[0.861098,52.957713],[0.86221,52.95811],[0.862781,52.959558]]],[[[0.87552,52.960357],[0.875957,52.959093],[0.874355,52.958348],[0.872041,52.958639],[0.871521,52.957165],[0.873268,52.95693],[0.875906,52.957442],[0.877945,52.958359],[0.877807,52.95971],[0.87552,52.960357]]],[[[0.867328,52.961059],[0.866909,52.960456],[0.866096,52.959873],[0.869063,52.959043],[0.868925,52.957698],[0.870681,52.958382],[0.870555,52.959308],[0.871395,52.960296],[0.867328,52.961059]]],[[[0.866672,52.960373],[0.865141,52.960605],[0.863988,52.961358],[0.862516,52.960203],[0.862923,52.959458],[0.862409,52.958018],[0.866467,52.958025],[0.866178,52.958577],[0.867315,52.959458],[0.866019,52.959856],[0.866672,52.960373]]],[[[0.855656,52.961439],[0.857063,52.960274],[0.858602,52.960255],[0.859795,52.961402],[0.857652,52.96133],[0.855656,52.961439]]],[[[0.99649,52.958776],[0.993347,52.957415],[0.996058,52.956467],[0.998488,52.956177],[0.998809,52.956497],[0.99836,52.957528],[0.99775,52.958916],[0.99649,52.958776]]],[[[0.891445,52.960402],[0.888736,52.96053],[0.888087,52.959374],[0.889729,52.958639],[0.889972,52.958795],[0.89021,52.957837],[0.89093,52.957592],[0.891467,52.957894],[0.891653,52.95765],[0.893496,52.956912],[0.893938,52.956979],[0.893467,52.958461],[0.893478,52.959225],[0.894046,52.96004],[0.893232,52.960413],[0.89324,52.96057],[0.893531,52.960794],[0.892429,52.961184],[0.891445,52.960402]]],[[[0.958202,52.959663],[0.957193,52.960299],[0.954349,52.959298],[0.955094,52.959096],[0.958063,52.957456],[0.958682,52.957722],[0.959055,52.958649],[0.958111,52.959393],[0.958202,52.959663]]],[[[0.968288,52.960942],[0.966494,52.961163],[0.965237,52.959678],[0.968431,52.959329],[0.968887,52.960328],[0.968288,52.960942]]],[[[0.877174,52.963239],[0.876499,52.964042],[0.874008,52.9632],[0.872853,52.961692],[0.874223,52.96033],[0.871604,52.959461],[0.872633,52.958902],[0.875334,52.959035],[0.875366,52.960639],[0.877794,52.959977],[0.881078,52.962222],[0.88089,52.963348],[0.880153,52.963495],[0.880022,52.963253],[0.879605,52.962959],[0.879574,52.963204],[0.87825,52.96378],[0.877174,52.963239]]],[[[0.860184,52.963426],[0.859526,52.961936],[0.859996,52.961572],[0.858813,52.960357],[0.860138,52.960429],[0.863539,52.962044],[0.863202,52.963351],[0.863323,52.965053],[0.862702,52.965325],[0.860121,52.96399],[0.860184,52.963426]]],[[[0.860184,52.963426],[0.857174,52.963897],[0.855723,52.96535],[0.853707,52.965916],[0.853177,52.962711],[0.853785,52.961893],[0.853795,52.960556],[0.852362,52.958375],[0.853988,52.95776],[0.855855,52.958879],[0.854989,52.959949],[0.855586,52.962062],[0.857809,52.961375],[0.859423,52.961961],[0.860184,52.963426]]],[[[0.948843,52.963941],[0.945853,52.963421],[0.945605,52.962433],[0.946873,52.96138],[0.946235,52.958976],[0.949446,52.958875],[0.95191,52.959624],[0.95438,52.959833],[0.954774,52.959589],[0.956991,52.960405],[0.958009,52.96023],[0.958337,52.959373],[0.959087,52.958702],[0.959142,52.95812],[0.960546,52.958965],[0.961847,52.959067],[0.963304,52.960122],[0.958975,52.961684],[0.956942,52.962177],[0.955023,52.962174],[0.951285,52.96384],[0.948843,52.963941]]],[[[0.985578,52.961941],[0.983019,52.960872],[0.9838,52.959756],[0.985642,52.959207],[0.986101,52.958531],[0.988343,52.958486],[0.98933,52.959106],[0.991328,52.957742],[0.993445,52.957589],[0.994617,52.959037],[0.993931,52.959693],[0.991512,52.960302],[0.989528,52.959977],[0.988442,52.961983],[0.986489,52.962471],[0.985578,52.961941]]],[[[0.863466,52.967741],[0.860898,52.967518],[0.861232,52.965086],[0.862796,52.965621],[0.863466,52.967741]]],[[[0.920961,52.96681],[0.91936,52.966707],[0.915735,52.965563],[0.914491,52.963947],[0.916161,52.962912],[0.918858,52.96293],[0.919576,52.961666],[0.92356,52.959649],[0.925688,52.959265],[0.92735,52.95982],[0.928533,52.958681],[0.929178,52.957278],[0.933062,52.957458],[0.934068,52.957854],[0.935192,52.959129],[0.937219,52.960129],[0.936845,52.961497],[0.935882,52.962701],[0.934411,52.962361],[0.930776,52.962941],[0.928712,52.964],[0.926096,52.964947],[0.92285,52.965268],[0.920894,52.966234],[0.920961,52.96681]]],[[[0.869333,52.96771],[0.868147,52.968184],[0.866437,52.968146],[0.864523,52.966682],[0.866517,52.966831],[0.867471,52.96521],[0.864315,52.964723],[0.863828,52.963806],[0.864865,52.962583],[0.864554,52.961805],[0.865595,52.960836],[0.867589,52.961383],[0.870596,52.960777],[0.872523,52.960082],[0.872367,52.961397],[0.873809,52.963274],[0.873661,52.96477],[0.87442,52.964876],[0.875545,52.966402],[0.875431,52.967134],[0.872882,52.968051],[0.869599,52.967338],[0.869333,52.96771]]],[[[0.902992,52.966386],[0.902566,52.966875],[0.900381,52.966851],[0.898121,52.966279],[0.897284,52.96527],[0.893643,52.96452],[0.892885,52.963415],[0.890899,52.963634],[0.891717,52.962199],[0.89168,52.961905],[0.893273,52.960995],[0.895812,52.961066],[0.897441,52.959539],[0.89805,52.961267],[0.903315,52.961751],[0.905677,52.96288],[0.907951,52.962845],[0.910047,52.964677],[0.911542,52.964035],[0.912156,52.965905],[0.91016,52.96601],[0.909604,52.966577],[0.906582,52.965955],[0.905556,52.966754],[0.902992,52.966386]]],[[[0.9813,52.966042],[0.979994,52.965325],[0.979073,52.964122],[0.97729,52.964106],[0.975683,52.963537],[0.969979,52.963678],[0.968672,52.963313],[0.969094,52.962295],[0.972157,52.962081],[0.974745,52.962677],[0.975067,52.961812],[0.977499,52.961307],[0.978593,52.960728],[0.978759,52.960302],[0.981475,52.96087],[0.981729,52.961326],[0.98417,52.961915],[0.985323,52.964202],[0.983745,52.965421],[0.9813,52.966042]]],[[[0.87115,52.968632],[0.870232,52.969046],[0.865568,52.968945],[0.865658,52.968294],[0.868743,52.968596],[0.870103,52.96782],[0.87115,52.968632]]],[[[0.907339,52.968154],[0.905275,52.967273],[0.907492,52.966187],[0.909066,52.96706],[0.910371,52.966499],[0.91287,52.966243],[0.913765,52.966744],[0.911968,52.967596],[0.907339,52.968154]]],[[[1.007445,52.965714],[1.006277,52.964772],[1.008992,52.964258],[1.009586,52.965116],[1.007445,52.965714]]],[[[1.006483,52.965486],[1.005524,52.965919],[1.002323,52.965577],[1.001314,52.96449],[0.999704,52.965198],[0.997763,52.964186],[0.99609,52.963923],[0.993382,52.964969],[0.992131,52.964311],[0.990481,52.964543],[0.989021,52.965268],[0.987292,52.964909],[0.986227,52.963936],[0.986746,52.963196],[0.988917,52.962102],[0.98932,52.961053],[0.994485,52.959704],[0.995998,52.959958],[0.996469,52.959289],[0.997833,52.958968],[0.999364,52.957944],[1.000736,52.958552],[1.002204,52.958404],[1.003219,52.957772],[1.003376,52.957338],[1.003662,52.957156],[1.003924,52.957139],[1.005135,52.9575],[1.005275,52.956733],[1.006971,52.956023],[1.007849,52.956532],[1.007931,52.958939],[1.010173,52.958896],[1.011225,52.957736],[1.013818,52.957073],[1.015662,52.955697],[1.017154,52.956721],[1.015685,52.959243],[1.015413,52.9624],[1.015862,52.963376],[1.014424,52.965101],[1.012104,52.965631],[1.011423,52.964793],[1.008751,52.964174],[1.006203,52.964692],[1.006483,52.965486]]],[[[0.912506,52.96895],[0.910001,52.969205],[0.90854,52.968503],[0.911086,52.967985],[0.912506,52.96895]]],[[[1.045012,52.964749],[1.043198,52.965993],[1.039318,52.966831],[1.033932,52.967394],[1.030314,52.967379],[1.029829,52.966879],[1.035591,52.965578],[1.037339,52.96471],[1.039437,52.964329],[1.041711,52.964323],[1.044354,52.963943],[1.045012,52.964749]]],[[[0.894187,52.970777],[0.89303,52.971048],[0.892634,52.969639],[0.892977,52.968841],[0.891766,52.968418],[0.889746,52.966736],[0.888,52.967031],[0.886743,52.966173],[0.884824,52.965855],[0.88355,52.964893],[0.880792,52.96537],[0.880409,52.967326],[0.879809,52.967689],[0.876722,52.967717],[0.875142,52.964965],[0.875387,52.96437],[0.878125,52.963886],[0.879821,52.963199],[0.88019,52.963642],[0.881128,52.9633],[0.881253,52.963184],[0.881149,52.962207],[0.878846,52.960268],[0.881177,52.959464],[0.883454,52.959118],[0.88491,52.959875],[0.886307,52.958924],[0.888116,52.959584],[0.888655,52.960761],[0.889948,52.96105],[0.891602,52.962078],[0.890455,52.963635],[0.893754,52.964593],[0.897182,52.965345],[0.898044,52.966303],[0.901048,52.967107],[0.901794,52.966906],[0.905253,52.968058],[0.905014,52.96865],[0.902148,52.968082],[0.902134,52.968841],[0.899037,52.969551],[0.897369,52.970562],[0.895837,52.97091],[0.894187,52.970777]]],[[[0.889824,52.971798],[0.887521,52.970126],[0.887537,52.969079],[0.886905,52.967651],[0.889627,52.966884],[0.891387,52.968482],[0.892504,52.968919],[0.892167,52.97073],[0.889824,52.971798]]],[[[0.878313,52.975681],[0.876974,52.97677],[0.87483,52.977825],[0.86994,52.979048],[0.867875,52.979021],[0.865718,52.97813],[0.864789,52.975431],[0.862147,52.972015],[0.85991,52.970386],[0.85697,52.969731],[0.855075,52.967987],[0.854899,52.96668],[0.857694,52.966285],[0.858761,52.968188],[0.860925,52.968434],[0.86168,52.969541],[0.862915,52.968938],[0.866385,52.969274],[0.873784,52.969111],[0.874947,52.967441],[0.876609,52.967856],[0.879587,52.96793],[0.880598,52.967396],[0.880874,52.965722],[0.883493,52.965009],[0.884721,52.966032],[0.886585,52.966326],[0.886812,52.967817],[0.887387,52.968838],[0.887253,52.97089],[0.885433,52.97109],[0.882801,52.970058],[0.881284,52.970713],[0.880638,52.971561],[0.879013,52.972079],[0.879244,52.972921],[0.878313,52.975681]]],[[[1.674854,52.742588],[1.659067,52.755227],[1.645477,52.764665],[1.645212,52.764524],[1.64035,52.767976],[1.632701,52.772237],[1.615372,52.783539],[1.613053,52.784308],[1.602199,52.790273],[1.601782,52.791345],[1.599977,52.791573],[1.596673,52.793404],[1.596016,52.794264],[1.594229,52.79483],[1.591885,52.796252],[1.590955,52.797652],[1.5885,52.798404],[1.586239,52.80002],[1.586461,52.801701],[1.583565,52.802094],[1.577058,52.804193],[1.563897,52.810913],[1.557038,52.81381],[1.549024,52.817708],[1.541892,52.820465],[1.539899,52.821589],[1.537912,52.823463],[1.530719,52.82803],[1.519704,52.834261],[1.513722,52.837162],[1.493961,52.845767],[1.488694,52.848917],[1.473889,52.856185],[1.450084,52.870214],[1.444833,52.873775],[1.441197,52.876796],[1.436547,52.879484],[1.413889,52.890598],[1.406492,52.893819],[1.398114,52.896581],[1.385791,52.901391],[1.376935,52.904238],[1.362294,52.909512],[1.36121,52.910562],[1.355471,52.91304],[1.348001,52.917684],[1.34315,52.919968],[1.321556,52.925855],[1.315119,52.928077],[1.313144,52.929323],[1.301889,52.932281],[1.301047,52.932846],[1.298739,52.933311],[1.283318,52.935586],[1.275725,52.936987],[1.269431,52.938643],[1.253758,52.9409],[1.251643,52.941689],[1.229786,52.94351],[1.221425,52.944566],[1.217546,52.945304],[1.214438,52.945242],[1.212631,52.945643],[1.211126,52.945531],[1.202384,52.946312],[1.201995,52.946107],[1.186428,52.946335],[1.140003,52.949314],[1.124224,52.951322],[1.114518,52.952946],[1.092438,52.956997],[1.08521,52.958796],[1.054789,52.964556],[1.04246,52.967312],[1.033324,52.969464],[1.01755,52.973067],[0.995196,52.977732],[0.98298,52.979532],[0.974818,52.980367],[0.973921,52.980321],[0.969759,52.978687],[0.964413,52.977734],[0.961339,52.976772],[0.960945,52.975646],[0.961906,52.97475],[0.960829,52.973411],[0.957633,52.970817],[0.96081,52.971796],[0.963979,52.971568],[0.964725,52.972098],[0.965294,52.97394],[0.969099,52.976564],[0.970634,52.976936],[0.97131,52.97627],[0.968217,52.972953],[0.969007,52.971907],[0.970672,52.973419],[0.971815,52.97333],[0.973365,52.972407],[0.97772,52.971732],[0.980531,52.971847],[0.981032,52.973212],[0.982619,52.97411],[0.983544,52.973672],[0.981694,52.972785],[0.980911,52.97117],[0.982521,52.970508],[0.986507,52.971689],[0.987834,52.971688],[0.9885,52.972666],[0.991129,52.972665],[0.99189,52.971794],[0.994963,52.972055],[0.996868,52.971234],[0.996561,52.970414],[1.002518,52.971048],[1.004748,52.971109],[1.007916,52.972763],[1.00726,52.971273],[1.007979,52.970769],[1.009746,52.971385],[1.011996,52.971372],[1.0125,52.970887],[1.017747,52.970463],[1.020655,52.969131],[1.02258,52.96779],[1.024747,52.967028],[1.028908,52.966984],[1.031066,52.967702],[1.03694,52.967341],[1.042938,52.966196],[1.044761,52.965418],[1.045233,52.964772],[1.044459,52.963104],[1.042704,52.963991],[1.037763,52.96436],[1.035463,52.965368],[1.030527,52.966608],[1.028098,52.966167],[1.02424,52.966297],[1.02133,52.965148],[1.017854,52.965056],[1.017102,52.963452],[1.016083,52.96255],[1.016473,52.958481],[1.017614,52.956397],[1.015365,52.955395],[1.013824,52.956762],[1.009726,52.957388],[1.008029,52.958361],[1.008037,52.956433],[1.007174,52.955886],[1.004026,52.957149],[1.003782,52.95711],[1.003667,52.957128],[1.003224,52.957276],[1.002629,52.957981],[1.001185,52.957092],[0.99891,52.95797],[0.998914,52.956384],[0.998179,52.955752],[0.997712,52.956223],[0.996005,52.956313],[0.992782,52.957428],[0.98618,52.958205],[0.983368,52.959511],[0.98163,52.960783],[0.978746,52.959904],[0.978475,52.960723],[0.976566,52.961467],[0.974894,52.961776],[0.974757,52.962598],[0.972205,52.962001],[0.970022,52.961845],[0.969334,52.961235],[0.968779,52.959444],[0.967955,52.959137],[0.96444,52.959598],[0.961259,52.95867],[0.961585,52.957512],[0.958106,52.957119],[0.955018,52.95908],[0.954302,52.959272],[0.95409,52.959782],[0.949584,52.958798],[0.945979,52.958967],[0.945708,52.96036],[0.946266,52.960765],[0.945032,52.963541],[0.941177,52.962806],[0.93977,52.962969],[0.938228,52.961957],[0.937668,52.960032],[0.935287,52.958977],[0.934618,52.957892],[0.932417,52.957251],[0.927725,52.957023],[0.928928,52.957329],[0.92846,52.958598],[0.927337,52.958294],[0.927241,52.959776],[0.92572,52.959207],[0.924193,52.959296],[0.921172,52.960849],[0.919519,52.961248],[0.918535,52.962425],[0.915607,52.962654],[0.913607,52.963214],[0.910637,52.963322],[0.90855,52.962457],[0.908021,52.960527],[0.908499,52.959704],[0.910237,52.959654],[0.909716,52.957874],[0.907538,52.958706],[0.908048,52.962206],[0.905443,52.962437],[0.904012,52.961517],[0.902387,52.961483],[0.900143,52.960616],[0.898159,52.960815],[0.897912,52.959383],[0.896648,52.959769],[0.89536,52.960964],[0.893318,52.960585],[0.894047,52.960123],[0.894157,52.959697],[0.893499,52.959213],[0.893961,52.956981],[0.893498,52.956886],[0.892105,52.957343],[0.891416,52.957797],[0.891062,52.95759],[0.890371,52.957487],[0.89041,52.957619],[0.890097,52.957884],[0.889994,52.95851],[0.888935,52.958785],[0.888266,52.958825],[0.886491,52.958652],[0.885164,52.959696],[0.883009,52.958957],[0.881179,52.959226],[0.878116,52.959016],[0.877937,52.958297],[0.875846,52.957315],[0.872985,52.956805],[0.871512,52.957026],[0.87061,52.956361],[0.868922,52.957001],[0.866302,52.957304],[0.863917,52.957033],[0.854958,52.956976],[0.851104,52.957696],[0.850445,52.959109],[0.850492,52.97012],[0.850607,52.972376],[0.852088,52.973118],[0.846097,52.974245],[0.846785,52.975339],[0.845365,52.977655],[0.838236,52.978075],[0.825229,52.978276],[0.810848,52.976607],[0.807476,52.975815],[0.808583,52.974939],[0.808329,52.97434],[0.805188,52.976395],[0.790241,52.977406],[0.787362,52.977309],[0.786288,52.977727],[0.781538,52.978396],[0.781085,52.973216],[0.781482,52.972041],[0.783322,52.970102],[0.78172,52.968648],[0.781396,52.967626],[0.780198,52.967025],[0.780249,52.965679],[0.78182,52.964085],[0.781047,52.963634],[0.781448,52.959886],[0.781078,52.95751],[0.778443,52.951639],[0.782864,52.935892],[0.784095,52.926082],[0.784894,52.924813],[0.78753,52.92425],[0.78726,52.923024],[0.78507,52.92284],[0.786013,52.917074],[0.787876,52.907885],[0.789872,52.899851],[0.80517,52.9008],[0.808747,52.9008],[0.811732,52.900304],[0.810811,52.898894],[0.813244,52.898297],[0.814588,52.899838],[0.81699,52.900067],[0.817113,52.898504],[0.815994,52.898583],[0.815233,52.897021],[0.816944,52.896763],[0.816927,52.894984],[0.821213,52.895063],[0.821569,52.892857],[0.818287,52.892118],[0.816497,52.888355],[0.815052,52.888583],[0.813792,52.885418],[0.811058,52.882648],[0.806896,52.879438],[0.805464,52.880804],[0.80191,52.882257],[0.797177,52.885269],[0.794872,52.88351],[0.794166,52.882088],[0.794387,52.880582],[0.797788,52.864453],[0.794735,52.866087],[0.791142,52.865556],[0.791373,52.862136],[0.790195,52.861962],[0.79097,52.859883],[0.789662,52.859631],[0.780387,52.858812],[0.76528,52.85651],[0.757857,52.855795],[0.750559,52.856037],[0.747505,52.855675],[0.742612,52.855775],[0.736835,52.857129],[0.731522,52.85766],[0.730929,52.854927],[0.727774,52.855339],[0.727049,52.853666],[0.724433,52.850381],[0.724914,52.84763],[0.723526,52.847067],[0.724453,52.84568],[0.725084,52.842873],[0.728127,52.84157],[0.729688,52.839441],[0.736171,52.835207],[0.73639,52.833027],[0.737458,52.831875],[0.739418,52.830569],[0.741077,52.831158],[0.742479,52.829859],[0.742495,52.829101],[0.744773,52.828028],[0.744063,52.82685],[0.745004,52.825082],[0.749085,52.822633],[0.74666,52.821629],[0.747291,52.820668],[0.7489,52.81972],[0.752435,52.818828],[0.75223,52.817463],[0.756218,52.816727],[0.754546,52.816167],[0.753369,52.814372],[0.751898,52.814111],[0.751187,52.814931],[0.749423,52.815922],[0.748009,52.814808],[0.746683,52.815255],[0.745298,52.813823],[0.746098,52.813491],[0.742671,52.810684],[0.738967,52.808234],[0.738448,52.808623],[0.73544,52.80696],[0.733786,52.805699],[0.732227,52.803659],[0.730938,52.803658],[0.731083,52.801722],[0.736184,52.799292],[0.725703,52.795209],[0.722562,52.793317],[0.713732,52.789835],[0.707938,52.788472],[0.708387,52.786529],[0.717902,52.784056],[0.718344,52.782893],[0.717833,52.782346],[0.730363,52.781805],[0.730324,52.780995],[0.741508,52.780007],[0.751836,52.77849],[0.752092,52.77698],[0.75288,52.775714],[0.755939,52.775809],[0.758293,52.776318],[0.760017,52.776187],[0.763541,52.776944],[0.765842,52.776708],[0.769476,52.778166],[0.769849,52.779175],[0.773106,52.775852],[0.774518,52.775329],[0.777395,52.771581],[0.779774,52.771887],[0.78028,52.76941],[0.787961,52.76986],[0.795831,52.769097],[0.799104,52.769414],[0.801891,52.77006],[0.799982,52.77423],[0.799766,52.776701],[0.801028,52.778872],[0.802744,52.779692],[0.803042,52.781375],[0.80677,52.781461],[0.809119,52.780052],[0.810902,52.781155],[0.810591,52.782565],[0.809427,52.782509],[0.809649,52.783977],[0.811148,52.784285],[0.81159,52.786448],[0.816077,52.786516],[0.819326,52.78614],[0.819961,52.789626],[0.819293,52.792449],[0.818075,52.79439],[0.821452,52.796879],[0.824396,52.797257],[0.829145,52.797369],[0.832075,52.798916],[0.831928,52.799988],[0.832745,52.8016],[0.83041,52.80302],[0.8298,52.804756],[0.831418,52.805429],[0.832538,52.806584],[0.83769,52.809687],[0.839443,52.811126],[0.840454,52.809858],[0.842038,52.809202],[0.853031,52.807208],[0.854883,52.80711],[0.858424,52.807656],[0.865419,52.807428],[0.866837,52.80406],[0.869979,52.801437],[0.871739,52.798105],[0.874167,52.798273],[0.876126,52.79732],[0.877856,52.797536],[0.880199,52.796423],[0.880594,52.793937],[0.881899,52.793474],[0.883617,52.793456],[0.88776,52.79209],[0.890789,52.790717],[0.893078,52.794416],[0.900517,52.796026],[0.904524,52.797365],[0.906891,52.798524],[0.912878,52.800171],[0.915075,52.801188],[0.915652,52.802141],[0.918015,52.802812],[0.920155,52.802644],[0.923802,52.800851],[0.92399,52.799189],[0.925355,52.798717],[0.923972,52.797546],[0.926233,52.796621],[0.927225,52.795857],[0.926775,52.795111],[0.926984,52.79288],[0.928356,52.7914],[0.929768,52.791623],[0.93053,52.789358],[0.934975,52.789066],[0.938442,52.787973],[0.938573,52.791321],[0.936844,52.795581],[0.950784,52.804701],[0.95278,52.804157],[0.95798,52.804098],[0.960359,52.803796],[0.962819,52.803037],[0.9633,52.803367],[0.966549,52.803096],[0.967662,52.807738],[0.973857,52.807575],[0.975761,52.807019],[0.975463,52.804728],[0.977144,52.804374],[0.980948,52.804603],[0.980705,52.801394],[0.984925,52.801154],[0.985993,52.801442],[0.987963,52.800693],[0.988537,52.799538],[0.989989,52.798298],[0.993595,52.79836],[0.993516,52.799359],[0.995532,52.800596],[0.998216,52.80098],[0.999498,52.801543],[1.001049,52.801393],[1.002452,52.802049],[1.004426,52.802294],[1.006527,52.801899],[1.010381,52.801978],[1.013582,52.801053],[1.017073,52.800673],[1.01891,52.799969],[1.02228,52.800031],[1.019307,52.804671],[1.02,52.804746],[1.020759,52.806555],[1.022131,52.807454],[1.028686,52.807102],[1.031224,52.808156],[1.031982,52.810263],[1.034617,52.81123],[1.035263,52.811827],[1.037514,52.811934],[1.040182,52.811479],[1.042736,52.812004],[1.044342,52.811855],[1.047597,52.813363],[1.060404,52.815028],[1.06225,52.815165],[1.073387,52.816884],[1.079937,52.815465],[1.081686,52.815577],[1.083133,52.816121],[1.085384,52.81561],[1.087902,52.815847],[1.088266,52.816475],[1.090492,52.816658],[1.092404,52.818313],[1.093904,52.820858],[1.094828,52.820946],[1.095582,52.824389],[1.097534,52.825803],[1.098408,52.827257],[1.100113,52.828575],[1.101789,52.829344],[1.104534,52.828471],[1.106659,52.826852],[1.110411,52.82485],[1.112426,52.824135],[1.114444,52.8221],[1.117281,52.821277],[1.118779,52.819532],[1.12438,52.818403],[1.128336,52.814592],[1.1315,52.815216],[1.134738,52.81469],[1.136095,52.81376],[1.143646,52.813092],[1.144407,52.812567],[1.149601,52.812105],[1.15047,52.815499],[1.148307,52.815907],[1.148281,52.818909],[1.147241,52.819002],[1.147055,52.82032],[1.14372,52.820646],[1.14527,52.823907],[1.147478,52.823699],[1.154201,52.82179],[1.156454,52.8217],[1.162847,52.825029],[1.163979,52.826142],[1.165838,52.825806],[1.166538,52.827283],[1.166816,52.829434],[1.170048,52.830263],[1.171637,52.830079],[1.172561,52.830611],[1.174569,52.83041],[1.175644,52.829381],[1.176107,52.828011],[1.177418,52.827521],[1.180838,52.827181],[1.180505,52.824006],[1.181085,52.823457],[1.181001,52.821815],[1.182013,52.821484],[1.181098,52.820395],[1.184722,52.82047],[1.185181,52.819885],[1.18815,52.820123],[1.189676,52.819722],[1.191306,52.81846],[1.193388,52.815318],[1.195954,52.815409],[1.198155,52.815936],[1.20197,52.815672],[1.202985,52.81595],[1.20324,52.820068],[1.203935,52.822191],[1.206128,52.823245],[1.207801,52.825102],[1.206932,52.827239],[1.207886,52.828044],[1.209889,52.828009],[1.21447,52.829133],[1.217796,52.828839],[1.219158,52.82828],[1.221492,52.828303],[1.222117,52.827513],[1.223783,52.827516],[1.225226,52.825323],[1.228304,52.824406],[1.230081,52.824469],[1.231976,52.824023],[1.233228,52.822989],[1.234139,52.823693],[1.235785,52.823851],[1.2376,52.823279],[1.238222,52.820425],[1.240078,52.820675],[1.241197,52.820267],[1.242714,52.820777],[1.244456,52.819908],[1.247543,52.821073],[1.251082,52.820522],[1.250157,52.819754],[1.251561,52.818598],[1.250676,52.817402],[1.252229,52.814392],[1.254783,52.813446],[1.256914,52.813921],[1.258715,52.813647],[1.261959,52.812672],[1.262756,52.815368],[1.26747,52.819057],[1.270389,52.819321],[1.274125,52.81882],[1.273888,52.818155],[1.275712,52.817325],[1.276561,52.817438],[1.277672,52.814906],[1.281319,52.809324],[1.283434,52.807717],[1.286648,52.80889],[1.288882,52.804668],[1.296418,52.805995],[1.296637,52.806811],[1.29882,52.806966],[1.300677,52.806275],[1.299634,52.804742],[1.302622,52.804663],[1.303236,52.805452],[1.305858,52.806568],[1.306592,52.807357],[1.308287,52.806731],[1.308885,52.805267],[1.308612,52.803764],[1.307576,52.80298],[1.308116,52.802029],[1.312614,52.801556],[1.31494,52.800889],[1.311388,52.796046],[1.308929,52.796314],[1.308366,52.795707],[1.309292,52.79494],[1.312502,52.793666],[1.314849,52.793293],[1.313802,52.790475],[1.317094,52.789165],[1.315924,52.788689],[1.314564,52.785546],[1.314568,52.783139],[1.315605,52.780656],[1.31481,52.779756],[1.316129,52.779489],[1.317062,52.777343],[1.318675,52.777378],[1.320093,52.775376],[1.321308,52.774485],[1.321399,52.773324],[1.32338,52.771373],[1.327004,52.768938],[1.326595,52.76708],[1.32762,52.766886],[1.333952,52.768069],[1.336239,52.76941],[1.337546,52.768637],[1.339201,52.76392],[1.341339,52.760538],[1.345035,52.755799],[1.348726,52.752915],[1.356987,52.75132],[1.357173,52.748826],[1.356637,52.747549],[1.357656,52.746397],[1.363844,52.745637],[1.3646,52.744448],[1.371545,52.743255],[1.3742,52.742097],[1.379873,52.741218],[1.384826,52.739676],[1.386531,52.739363],[1.387659,52.740007],[1.388828,52.739115],[1.39071,52.738526],[1.390805,52.736911],[1.392145,52.734672],[1.392513,52.732477],[1.394837,52.731079],[1.396565,52.731046],[1.397331,52.729106],[1.40104,52.730835],[1.4059,52.732514],[1.404822,52.728844],[1.39986,52.728596],[1.400364,52.727399],[1.40137,52.727018],[1.406657,52.725912],[1.409702,52.725664],[1.408565,52.722784],[1.40756,52.722237],[1.407346,52.720974],[1.405288,52.721432],[1.403201,52.718698],[1.403767,52.71854],[1.402444,52.7157],[1.403859,52.715402],[1.408139,52.712667],[1.408638,52.70905],[1.410644,52.70875],[1.412045,52.707999],[1.413762,52.707632],[1.414299,52.706689],[1.417263,52.705969],[1.419095,52.70483],[1.42149,52.704822],[1.423955,52.70352],[1.423975,52.701969],[1.424572,52.701312],[1.423303,52.698739],[1.419987,52.697013],[1.418788,52.694969],[1.416615,52.694495],[1.416578,52.693994],[1.41885,52.69203],[1.422459,52.691792],[1.423584,52.690789],[1.425847,52.690569],[1.428707,52.691585],[1.429649,52.691633],[1.431819,52.690294],[1.433829,52.689679],[1.438615,52.691322],[1.438276,52.693063],[1.438993,52.694015],[1.441866,52.695051],[1.44159,52.698226],[1.440688,52.700607],[1.440879,52.701397],[1.446543,52.702891],[1.451255,52.703401],[1.455427,52.702854],[1.457323,52.703356],[1.457533,52.703502],[1.457584,52.703537],[1.458046,52.703857],[1.460169,52.705618],[1.461149,52.705922],[1.462919,52.704222],[1.465623,52.699285],[1.469019,52.697727],[1.467641,52.695398],[1.469026,52.694065],[1.471534,52.693883],[1.472212,52.693365],[1.472187,52.690917],[1.473307,52.689806],[1.474966,52.689392],[1.476432,52.689684],[1.48164,52.693155],[1.483845,52.69363],[1.487557,52.693614],[1.489691,52.693081],[1.490035,52.691914],[1.489409,52.689543],[1.490058,52.688576],[1.493712,52.687504],[1.497841,52.687123],[1.499586,52.687799],[1.500037,52.689706],[1.501008,52.69037],[1.502775,52.690453],[1.504488,52.689199],[1.505518,52.689034],[1.507248,52.689967],[1.508778,52.690353],[1.511542,52.690318],[1.512981,52.689712],[1.514268,52.690469],[1.5137,52.69198],[1.514732,52.69338],[1.514515,52.695161],[1.514916,52.695961],[1.514455,52.697208],[1.510729,52.698686],[1.509454,52.698594],[1.508626,52.700417],[1.505464,52.702472],[1.505032,52.703682],[1.505365,52.704649],[1.504654,52.705281],[1.501692,52.705457],[1.4984,52.704292],[1.495879,52.705196],[1.494757,52.707119],[1.495372,52.70892],[1.496413,52.710395],[1.497716,52.71123],[1.500484,52.712184],[1.503036,52.712173],[1.503693,52.71299],[1.505925,52.71423],[1.507722,52.715754],[1.507232,52.718004],[1.506113,52.719723],[1.506176,52.721871],[1.505498,52.722641],[1.505667,52.723711],[1.504782,52.725106],[1.508548,52.727106],[1.508824,52.728335],[1.506037,52.728994],[1.503981,52.728966],[1.50298,52.73079],[1.501648,52.73139],[1.501048,52.732908],[1.498337,52.734709],[1.499087,52.734893],[1.501287,52.733213],[1.501574,52.731917],[1.503245,52.730792],[1.504324,52.729137],[1.506424,52.729217],[1.50929,52.728506],[1.509018,52.727002],[1.505108,52.725013],[1.50607,52.723606],[1.506402,52.719827],[1.507655,52.717954],[1.508058,52.715538],[1.506037,52.713912],[1.503984,52.712903],[1.503282,52.71204],[1.500536,52.711976],[1.497976,52.7111],[1.496745,52.710323],[1.495075,52.707834],[1.495083,52.706648],[1.495746,52.705554],[1.497921,52.704506],[1.50115,52.705548],[1.504612,52.705559],[1.505645,52.704678],[1.505279,52.703676],[1.505743,52.702486],[1.508896,52.700525],[1.509807,52.698876],[1.510859,52.698885],[1.515191,52.69713],[1.514788,52.695224],[1.514986,52.693328],[1.513963,52.692009],[1.514572,52.690425],[1.513455,52.689474],[1.516873,52.687979],[1.523082,52.685894],[1.524793,52.683323],[1.5266,52.682308],[1.530338,52.681892],[1.532518,52.683284],[1.535921,52.683735],[1.537481,52.683122],[1.538551,52.681479],[1.54044,52.681078],[1.543118,52.67987],[1.546306,52.680214],[1.548757,52.681618],[1.549113,52.682421],[1.549552,52.686342],[1.549399,52.687943],[1.548157,52.68971],[1.545018,52.692325],[1.54449,52.693766],[1.545044,52.695691],[1.549046,52.698733],[1.554376,52.701046],[1.558963,52.702089],[1.563513,52.702295],[1.568542,52.701428],[1.570991,52.701761],[1.573405,52.702746],[1.57663,52.704648],[1.577692,52.706143],[1.577794,52.706327],[1.578127,52.707686],[1.58031,52.709528],[1.584279,52.711411],[1.595865,52.713802],[1.599081,52.714786],[1.605632,52.715624],[1.612972,52.715813],[1.619104,52.717561],[1.624102,52.720673],[1.627641,52.723471],[1.626621,52.724355],[1.626828,52.725145],[1.632945,52.72709],[1.634714,52.731079],[1.63715,52.731041],[1.637204,52.732754],[1.63814,52.733726],[1.645835,52.736628],[1.651372,52.737879],[1.663399,52.739322],[1.667595,52.741271],[1.674854,52.742588]]]]},"properties":{"LAD22CD":"E07000147","LAD22NM":"North Norfolk","BNG_E":611076,"BNG_N":330857,"LONG":1.132099,"LAT":52.83389,"GlobalID":"9843586b-b3c8-49d6-93a8-ad9e56ec48ea"},"id":169}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.500836,52.570673],[1.506219,52.572073],[1.508344,52.572808],[1.500836,52.570673]]],[[[1.442515,52.60592],[1.439211,52.609036],[1.442226,52.605902],[1.442515,52.60592]]],[[[1.316945,52.61505],[1.315099,52.615133],[1.313499,52.613631],[1.315136,52.615105],[1.316945,52.61505]]],[[[1.325281,52.623188],[1.322525,52.625916],[1.326546,52.627013],[1.327227,52.62889],[1.328767,52.630613],[1.329864,52.637584],[1.342244,52.641319],[1.340573,52.649704],[1.322976,52.645024],[1.314105,52.649419],[1.310607,52.651706],[1.309126,52.652999],[1.307141,52.652272],[1.302241,52.652818],[1.29998,52.65329],[1.299758,52.652734],[1.295515,52.653326],[1.29443,52.65428],[1.292601,52.654928],[1.292403,52.660187],[1.291706,52.66134],[1.292028,52.662962],[1.293853,52.666615],[1.2937,52.66851],[1.292105,52.66865],[1.293025,52.671481],[1.295239,52.672911],[1.294821,52.673616],[1.296685,52.674367],[1.29966,52.674264],[1.300184,52.676856],[1.297193,52.677103],[1.296281,52.677489],[1.295402,52.678729],[1.296071,52.681359],[1.295333,52.682451],[1.29233,52.684935],[1.282945,52.677335],[1.262859,52.677406],[1.266032,52.673342],[1.269572,52.670748],[1.27228,52.666675],[1.273059,52.666784],[1.277063,52.666005],[1.277948,52.66287],[1.278656,52.662121],[1.280852,52.661959],[1.280419,52.66066],[1.282388,52.660286],[1.284989,52.660228],[1.284262,52.657643],[1.279157,52.657181],[1.277186,52.656518],[1.261586,52.652091],[1.254922,52.649822],[1.251248,52.648237],[1.248508,52.647743],[1.243691,52.646434],[1.241336,52.645458],[1.238436,52.643737],[1.235453,52.640933],[1.223588,52.643667],[1.211493,52.645367],[1.211172,52.644803],[1.209158,52.645241],[1.205043,52.645102],[1.20389,52.644704],[1.205084,52.639483],[1.20615,52.639509],[1.206343,52.638308],[1.208049,52.638957],[1.210019,52.637734],[1.209836,52.637154],[1.211452,52.636389],[1.214086,52.634381],[1.214441,52.631601],[1.213409,52.629687],[1.212823,52.627355],[1.215249,52.62646],[1.216371,52.62557],[1.218201,52.625651],[1.218561,52.626661],[1.221714,52.627815],[1.223359,52.628048],[1.223376,52.630164],[1.225229,52.63129],[1.225284,52.632081],[1.227354,52.632214],[1.230565,52.630927],[1.230316,52.630419],[1.232762,52.628105],[1.231861,52.627706],[1.228737,52.623684],[1.228566,52.621615],[1.230607,52.620224],[1.23079,52.619117],[1.231889,52.617683],[1.233377,52.616968],[1.235034,52.616752],[1.241245,52.617776],[1.243545,52.617135],[1.243216,52.615781],[1.244532,52.614451],[1.243945,52.613374],[1.242132,52.611282],[1.241685,52.609995],[1.24363,52.608504],[1.245519,52.608043],[1.246026,52.607198],[1.250853,52.606115],[1.250992,52.605324],[1.252891,52.604056],[1.254899,52.601861],[1.254942,52.600787],[1.257786,52.598147],[1.260609,52.597601],[1.262473,52.597829],[1.263813,52.600248],[1.264677,52.600311],[1.266968,52.60142],[1.268823,52.601774],[1.274263,52.600341],[1.274453,52.598951],[1.276707,52.598492],[1.278126,52.597121],[1.279499,52.59712],[1.281496,52.595263],[1.283467,52.595222],[1.287102,52.596488],[1.28909,52.598656],[1.291717,52.599855],[1.292686,52.601315],[1.297274,52.60374],[1.29789,52.605352],[1.299794,52.605545],[1.301981,52.606736],[1.302735,52.608135],[1.305293,52.608927],[1.306791,52.60892],[1.308182,52.609622],[1.311157,52.612373],[1.313443,52.613581],[1.314826,52.615264],[1.318419,52.615194],[1.320295,52.616236],[1.320976,52.617536],[1.320227,52.619214],[1.319631,52.620332],[1.321907,52.621119],[1.325281,52.623188]]]]},"properties":{"LAD22CD":"E07000148","LAD22NM":"Norwich","BNG_E":622355,"BNG_N":309773,"LONG":1.284979,"LAT":52.64013,"GlobalID":"23481664-b988-46ee-a839-2178c164b37c"},"id":170}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.636907,52.574452],[1.638355,52.575145],[1.639919,52.575215],[1.642701,52.57472],[1.645286,52.575065],[1.647305,52.575819],[1.648593,52.576798],[1.649488,52.578191],[1.649535,52.579478],[1.647647,52.58161],[1.646311,52.585395],[1.645663,52.585763],[1.645133,52.587755],[1.641852,52.587814],[1.639836,52.587604],[1.638718,52.586138],[1.638827,52.584165],[1.637537,52.582152],[1.634822,52.580864],[1.632587,52.580437],[1.629925,52.580579],[1.627452,52.579027],[1.627404,52.577199],[1.626902,52.576121],[1.625748,52.575134],[1.623757,52.574237],[1.619925,52.573194],[1.617439,52.573359],[1.614401,52.574582],[1.612601,52.574873],[1.610661,52.574741],[1.60767,52.573841],[1.607408,52.572317],[1.608951,52.570438],[1.608596,52.569264],[1.607498,52.568352],[1.603036,52.567765],[1.601863,52.567253],[1.596703,52.563235],[1.594807,52.55938],[1.592286,52.55776],[1.589029,52.557437],[1.584852,52.557868],[1.579233,52.556197],[1.580356,52.555449],[1.616479,52.534714],[1.617379,52.534546],[1.618767,52.535475],[1.619719,52.534777],[1.621309,52.537222],[1.620996,52.539536],[1.618849,52.540599],[1.612955,52.539987],[1.610114,52.540247],[1.607862,52.540935],[1.606257,52.541942],[1.605287,52.543229],[1.606171,52.546337],[1.607491,52.548669],[1.610013,52.550978],[1.614378,52.551971],[1.619727,52.551796],[1.623805,52.553338],[1.625595,52.554727],[1.626256,52.555691],[1.629372,52.55866],[1.632772,52.560853],[1.63378,52.562211],[1.634141,52.563776],[1.632901,52.56932],[1.632938,52.571113],[1.634546,52.573322],[1.636682,52.574344],[1.636907,52.574452]]],[[[1.248508,52.647743],[1.246622,52.649827],[1.246639,52.650679],[1.24788,52.652093],[1.2471,52.653384],[1.244101,52.655822],[1.24261,52.656589],[1.239596,52.65719],[1.234321,52.658985],[1.233458,52.660073],[1.233283,52.662678],[1.235142,52.664674],[1.234736,52.665865],[1.235447,52.666337],[1.234329,52.667963],[1.231547,52.668625],[1.230852,52.669636],[1.229246,52.669242],[1.227604,52.670536],[1.225311,52.671298],[1.224337,52.672255],[1.221693,52.673169],[1.21969,52.672672],[1.218056,52.672668],[1.219246,52.670721],[1.218949,52.669274],[1.21815,52.669221],[1.216521,52.666174],[1.215158,52.664599],[1.21375,52.663715],[1.213043,52.66264],[1.211016,52.66236],[1.209817,52.661335],[1.20751,52.660616],[1.206606,52.660866],[1.205097,52.660021],[1.203003,52.661071],[1.202362,52.662149],[1.202609,52.663611],[1.201975,52.664098],[1.202432,52.666473],[1.203603,52.668003],[1.203625,52.669916],[1.202658,52.670333],[1.201798,52.672923],[1.200424,52.673765],[1.199644,52.674817],[1.197748,52.675717],[1.196832,52.675567],[1.196238,52.677103],[1.193675,52.678065],[1.19199,52.677956],[1.190481,52.678528],[1.187215,52.677468],[1.184786,52.675393],[1.184448,52.674249],[1.182084,52.671771],[1.176375,52.668011],[1.174289,52.667299],[1.173765,52.665167],[1.167462,52.664867],[1.163687,52.66521],[1.159951,52.666609],[1.152026,52.668139],[1.149551,52.669233],[1.147296,52.671366],[1.145696,52.668292],[1.146354,52.660032],[1.145669,52.659384],[1.138184,52.659766],[1.138888,52.657797],[1.137682,52.657703],[1.13801,52.655334],[1.140314,52.6551],[1.140073,52.65386],[1.138672,52.653959],[1.137696,52.649812],[1.137705,52.646942],[1.137033,52.646934],[1.136481,52.644763],[1.135219,52.644871],[1.135245,52.642859],[1.132238,52.642576],[1.132017,52.645791],[1.124536,52.645152],[1.116064,52.645442],[1.109771,52.647277],[1.100655,52.64877],[1.097695,52.649757],[1.093366,52.651057],[1.089644,52.647368],[1.082107,52.64861],[1.078985,52.64874],[1.076702,52.645018],[1.076763,52.640353],[1.074649,52.638168],[1.073718,52.639414],[1.074224,52.639936],[1.07402,52.642305],[1.073039,52.64372],[1.068143,52.645382],[1.066048,52.64724],[1.064045,52.650286],[1.06263,52.653964],[1.061522,52.655098],[1.060008,52.655742],[1.058428,52.658585],[1.057332,52.659238],[1.055106,52.662588],[1.054806,52.658947],[1.053381,52.65907],[1.052869,52.656511],[1.050815,52.656028],[1.04907,52.651889],[1.047339,52.652236],[1.044983,52.648725],[1.042768,52.649203],[1.043096,52.646511],[1.03715,52.64424],[1.033776,52.643574],[1.031605,52.642586],[1.026077,52.641537],[1.023553,52.639752],[1.024216,52.639036],[1.0233,52.636488],[1.025249,52.63601],[1.025602,52.630035],[1.021602,52.62327],[1.020115,52.619603],[1.019649,52.61627],[1.018865,52.615746],[1.022339,52.614627],[1.024401,52.614951],[1.025574,52.61462],[1.028209,52.615596],[1.02854,52.616384],[1.029986,52.617333],[1.032429,52.61696],[1.034558,52.616093],[1.036901,52.615798],[1.035769,52.615071],[1.036221,52.612147],[1.037333,52.61026],[1.03731,52.609018],[1.039432,52.606036],[1.038044,52.604211],[1.037702,52.602617],[1.03761,52.595999],[1.039141,52.59566],[1.039156,52.59433],[1.040326,52.593857],[1.039814,52.5927],[1.040064,52.590857],[1.039485,52.588173],[1.038155,52.588465],[1.037625,52.587454],[1.032124,52.588871],[1.027027,52.589413],[1.021812,52.586557],[1.009916,52.587895],[1.002398,52.591303],[1.000025,52.591832],[0.995126,52.591888],[0.993123,52.591643],[0.987541,52.593053],[0.984812,52.593356],[0.979611,52.592657],[0.975408,52.594419],[0.970954,52.595159],[0.96375,52.594626],[0.961882,52.59313],[0.96157,52.591085],[0.962764,52.589043],[0.962345,52.586748],[0.96288,52.585943],[0.954586,52.586936],[0.953712,52.584942],[0.962579,52.58348],[0.962188,52.581177],[0.960348,52.57997],[0.958501,52.579831],[0.955438,52.580301],[0.95008,52.577887],[0.947028,52.575833],[0.949953,52.574324],[0.952707,52.56762],[0.960039,52.562431],[0.960871,52.561311],[0.964294,52.560642],[0.966049,52.559917],[0.96736,52.559878],[0.96828,52.558757],[0.973509,52.554794],[0.976028,52.554452],[0.977356,52.553448],[0.981236,52.552558],[0.983163,52.552437],[0.986175,52.551223],[0.989592,52.551727],[1.001848,52.549617],[1.004914,52.54979],[1.007347,52.548205],[1.011356,52.54331],[1.012074,52.542935],[1.016023,52.542954],[1.016402,52.542354],[1.023799,52.54237],[1.028223,52.541256],[1.029249,52.539729],[1.031989,52.538074],[1.037968,52.536664],[1.04184,52.536167],[1.056031,52.535463],[1.061399,52.537184],[1.063776,52.53522],[1.070063,52.531759],[1.073653,52.530715],[1.079085,52.527985],[1.081204,52.525228],[1.08521,52.522634],[1.08972,52.522119],[1.092906,52.521226],[1.095255,52.518023],[1.091681,52.516503],[1.089528,52.514581],[1.0855,52.512478],[1.083939,52.512785],[1.080554,52.508177],[1.07905,52.506881],[1.080938,52.505012],[1.080987,52.503151],[1.079369,52.500886],[1.079389,52.499291],[1.082504,52.484683],[1.087697,52.481244],[1.087433,52.480766],[1.084497,52.478999],[1.085615,52.471016],[1.088005,52.470426],[1.090639,52.468702],[1.091742,52.468805],[1.095275,52.470383],[1.096068,52.468977],[1.09682,52.465686],[1.095287,52.464003],[1.094649,52.460277],[1.073149,52.454755],[1.064094,52.44211],[1.065961,52.44086],[1.065199,52.436747],[1.062875,52.433213],[1.065576,52.43207],[1.067501,52.428825],[1.058769,52.426855],[1.058919,52.424535],[1.057075,52.420056],[1.051889,52.419204],[1.045419,52.419952],[1.045723,52.420911],[1.042799,52.425653],[1.034868,52.422048],[1.028284,52.419691],[1.021267,52.416379],[1.02158,52.415443],[1.023945,52.415483],[1.024392,52.415932],[1.028217,52.417281],[1.028252,52.414721],[1.034102,52.415777],[1.031401,52.410268],[1.029536,52.410832],[1.028776,52.410031],[1.026495,52.408798],[1.023137,52.408427],[1.021416,52.405971],[1.022896,52.404649],[1.023122,52.403577],[1.021357,52.400964],[1.021741,52.400413],[1.02399,52.399311],[1.024356,52.398643],[1.023224,52.397778],[1.023609,52.397113],[1.020739,52.395359],[1.020234,52.394217],[1.02295,52.392596],[1.023578,52.389651],[1.025427,52.386189],[1.027244,52.384809],[1.029957,52.378735],[1.034004,52.378374],[1.035265,52.37904],[1.03709,52.3791],[1.037722,52.377327],[1.044167,52.377808],[1.048264,52.377687],[1.048763,52.378038],[1.051315,52.378114],[1.053234,52.3773],[1.056187,52.377033],[1.062171,52.377358],[1.064648,52.377965],[1.065216,52.37865],[1.068492,52.378461],[1.069521,52.377822],[1.069714,52.376738],[1.073066,52.375647],[1.075421,52.373141],[1.079183,52.372384],[1.082483,52.373094],[1.099467,52.371598],[1.102166,52.370738],[1.104684,52.371257],[1.111459,52.371682],[1.113656,52.371121],[1.116218,52.371047],[1.117329,52.369718],[1.119452,52.369736],[1.120872,52.369387],[1.122937,52.367295],[1.127833,52.367145],[1.130333,52.367738],[1.132689,52.367828],[1.133946,52.367151],[1.13912,52.36717],[1.141548,52.366541],[1.143603,52.366433],[1.144645,52.365002],[1.146111,52.365067],[1.150503,52.364598],[1.150862,52.363495],[1.15546,52.361551],[1.157055,52.361305],[1.160971,52.361461],[1.161362,52.362187],[1.163058,52.36216],[1.167574,52.360247],[1.170866,52.359916],[1.172179,52.360441],[1.174202,52.360488],[1.175437,52.360059],[1.177301,52.360993],[1.179509,52.360367],[1.180471,52.359514],[1.182376,52.358783],[1.187017,52.359843],[1.187879,52.360945],[1.18907,52.361044],[1.190205,52.361803],[1.192922,52.361063],[1.19534,52.361453],[1.195935,52.360716],[1.200174,52.35982],[1.202915,52.359653],[1.206048,52.357359],[1.208323,52.357087],[1.21264,52.355387],[1.214945,52.355732],[1.216314,52.357362],[1.217812,52.357027],[1.222065,52.358477],[1.223009,52.359543],[1.226056,52.360471],[1.227983,52.360028],[1.23034,52.360251],[1.231807,52.361723],[1.233162,52.361942],[1.233017,52.364953],[1.23445,52.364854],[1.236662,52.365396],[1.238356,52.364903],[1.240378,52.365809],[1.244472,52.366062],[1.245602,52.365323],[1.248334,52.365814],[1.24989,52.366416],[1.252108,52.368387],[1.253473,52.370351],[1.255813,52.371036],[1.258343,52.370559],[1.259996,52.371099],[1.262354,52.372986],[1.26286,52.374345],[1.264049,52.374546],[1.265581,52.375572],[1.266534,52.376917],[1.268222,52.378214],[1.268198,52.379392],[1.269783,52.380235],[1.270827,52.380045],[1.272511,52.382306],[1.276508,52.38441],[1.278486,52.385082],[1.279206,52.386798],[1.281049,52.38765],[1.281272,52.388562],[1.283155,52.388992],[1.286235,52.39069],[1.288964,52.390958],[1.290556,52.390014],[1.293168,52.389531],[1.295455,52.390636],[1.296265,52.391737],[1.299058,52.391811],[1.300057,52.391395],[1.301516,52.391713],[1.302659,52.390624],[1.30463,52.39103],[1.308148,52.389462],[1.308602,52.388548],[1.311628,52.387851],[1.31319,52.388241],[1.316303,52.387391],[1.316171,52.388436],[1.317589,52.388413],[1.320011,52.389559],[1.322704,52.389105],[1.324717,52.39031],[1.325983,52.391642],[1.330605,52.393554],[1.330251,52.394317],[1.333365,52.397065],[1.333457,52.398515],[1.335212,52.399744],[1.335798,52.401966],[1.337809,52.401714],[1.340279,52.402353],[1.341708,52.402201],[1.344815,52.403717],[1.347101,52.404411],[1.347192,52.405698],[1.3461,52.406414],[1.346627,52.40781],[1.34631,52.408998],[1.3484,52.408872],[1.350283,52.409506],[1.35238,52.410696],[1.357281,52.411548],[1.361255,52.413198],[1.360234,52.414642],[1.360682,52.416374],[1.358918,52.417415],[1.358577,52.418158],[1.356858,52.419127],[1.356369,52.421108],[1.357476,52.422243],[1.357757,52.424121],[1.363509,52.426962],[1.368144,52.427048],[1.368275,52.428851],[1.370497,52.428506],[1.371511,52.429286],[1.371286,52.430039],[1.372599,52.430455],[1.375735,52.429865],[1.379968,52.432051],[1.382395,52.431712],[1.38305,52.432496],[1.386286,52.432076],[1.392071,52.434045],[1.393182,52.435077],[1.392458,52.43605],[1.390911,52.436829],[1.391948,52.437748],[1.393166,52.43797],[1.393203,52.438935],[1.395297,52.439651],[1.39672,52.439379],[1.397539,52.440861],[1.40181,52.442085],[1.402383,52.44158],[1.404823,52.441463],[1.405807,52.442302],[1.407381,52.442119],[1.406292,52.443651],[1.407914,52.444409],[1.410292,52.444744],[1.411848,52.444224],[1.412413,52.444935],[1.414215,52.4455],[1.416233,52.444944],[1.418693,52.445639],[1.41951,52.445231],[1.421559,52.446143],[1.423868,52.446583],[1.42519,52.446276],[1.426241,52.445421],[1.427766,52.445709],[1.430079,52.445164],[1.432538,52.445296],[1.432105,52.446106],[1.433425,52.447399],[1.434961,52.448033],[1.434864,52.449967],[1.434114,52.450257],[1.433456,52.452773],[1.432797,52.453228],[1.433049,52.45465],[1.433857,52.45543],[1.431007,52.456886],[1.427911,52.457495],[1.425785,52.457272],[1.421174,52.458073],[1.420297,52.458723],[1.417392,52.459035],[1.414641,52.459838],[1.411018,52.461597],[1.411608,52.462909],[1.410823,52.463955],[1.414063,52.465269],[1.416011,52.468112],[1.417528,52.469131],[1.417957,52.470161],[1.42015,52.471047],[1.423008,52.471194],[1.426349,52.470579],[1.427206,52.470007],[1.4278,52.467915],[1.434939,52.464559],[1.434372,52.461905],[1.436949,52.459252],[1.441099,52.456712],[1.445829,52.45602],[1.450615,52.456643],[1.452362,52.457569],[1.453971,52.457655],[1.455912,52.458263],[1.458649,52.458056],[1.459472,52.459104],[1.460692,52.459508],[1.462405,52.46068],[1.464305,52.464477],[1.466297,52.465318],[1.46934,52.465886],[1.471831,52.467464],[1.47363,52.469324],[1.475201,52.469713],[1.47745,52.471],[1.479977,52.471839],[1.480032,52.471857],[1.480615,52.471857],[1.481614,52.471843],[1.482127,52.471836],[1.483354,52.471881],[1.488313,52.468611],[1.490368,52.468931],[1.493169,52.468353],[1.494393,52.46778],[1.496139,52.467774],[1.496463,52.467409],[1.495138,52.466423],[1.499613,52.464371],[1.501492,52.464071],[1.50186,52.463364],[1.507001,52.462523],[1.511979,52.462904],[1.512661,52.463086],[1.516029,52.464102],[1.516923,52.463446],[1.517346,52.463138],[1.519018,52.462098],[1.521337,52.461981],[1.523257,52.464024],[1.523188,52.465261],[1.522177,52.465757],[1.524105,52.467651],[1.525321,52.46822],[1.528102,52.468397],[1.52835,52.468413],[1.529766,52.468503],[1.531821,52.46779],[1.53363,52.467163],[1.535641,52.466465],[1.5363,52.465508],[1.538353,52.464369],[1.538582,52.463287],[1.541285,52.461993],[1.542344,52.461875],[1.544124,52.463153],[1.545497,52.461795],[1.547938,52.461122],[1.548063,52.459901],[1.549291,52.458947],[1.551091,52.459293],[1.554527,52.459268],[1.557136,52.457848],[1.558379,52.458021],[1.56063,52.459748],[1.562445,52.461834],[1.5621,52.464159],[1.561108,52.464637],[1.562102,52.466555],[1.565571,52.468521],[1.566007,52.469753],[1.565342,52.472092],[1.566889,52.473305],[1.56752,52.474535],[1.569496,52.475337],[1.572309,52.47516],[1.573773,52.475447],[1.574953,52.476424],[1.576203,52.476779],[1.582969,52.477041],[1.584871,52.478533],[1.587304,52.478923],[1.596404,52.475241],[1.597495,52.473694],[1.597753,52.473426],[1.600855,52.472317],[1.601338,52.472201],[1.604039,52.471841],[1.604653,52.471388],[1.605355,52.468362],[1.607351,52.466727],[1.611262,52.466177],[1.614211,52.465174],[1.616451,52.463874],[1.618912,52.463345],[1.627311,52.462535],[1.633835,52.462967],[1.634999,52.463568],[1.635072,52.465819],[1.636316,52.467069],[1.638174,52.467789],[1.641593,52.468176],[1.642893,52.468802],[1.644354,52.471445],[1.646942,52.47221],[1.649245,52.47197],[1.651823,52.470447],[1.653575,52.468495],[1.655549,52.468086],[1.658724,52.468595],[1.660655,52.470594],[1.661339,52.472973],[1.662702,52.474742],[1.66372,52.47517],[1.669702,52.476218],[1.671041,52.477063],[1.671343,52.478267],[1.670304,52.481989],[1.670543,52.483021],[1.673791,52.483394],[1.674123,52.483503],[1.67566,52.484236],[1.677148,52.487467],[1.680723,52.489445],[1.68196,52.490727],[1.682217,52.493327],[1.68201,52.495327],[1.68056,52.49633],[1.676524,52.497192],[1.675565,52.497753],[1.674247,52.501857],[1.672549,52.50343],[1.671035,52.503797],[1.669515,52.503632],[1.663577,52.501757],[1.659077,52.500829],[1.656497,52.500749],[1.654103,52.501259],[1.652942,52.502242],[1.651674,52.50444],[1.646831,52.506786],[1.644928,52.508537],[1.644916,52.509959],[1.646901,52.513129],[1.646901,52.514121],[1.646007,52.51537],[1.640766,52.516514],[1.638303,52.517252],[1.630945,52.520532],[1.629067,52.521896],[1.628262,52.523043],[1.628264,52.526601],[1.62711,52.52841],[1.59255,52.548196],[1.578777,52.556044],[1.574194,52.558283],[1.568926,52.558998],[1.566353,52.55863],[1.562498,52.557072],[1.559495,52.557327],[1.556338,52.559128],[1.554527,52.559336],[1.545539,52.555438],[1.5436,52.555057],[1.540366,52.55544],[1.53882,52.556824],[1.538035,52.560104],[1.536303,52.561673],[1.535177,52.562076],[1.534908,52.562128],[1.533386,52.561925],[1.530684,52.559604],[1.529056,52.559125],[1.528761,52.559084],[1.526081,52.559579],[1.522093,52.562204],[1.521376,52.56294],[1.520848,52.563613],[1.520766,52.565223],[1.520951,52.56549],[1.523581,52.568019],[1.523734,52.568679],[1.523814,52.570237],[1.52239,52.572478],[1.518379,52.575229],[1.516908,52.57579],[1.514689,52.57588],[1.509265,52.57307],[1.508344,52.572808],[1.506219,52.572073],[1.500836,52.570673],[1.498515,52.570706],[1.497717,52.570906],[1.496461,52.571462],[1.49442,52.572993],[1.494239,52.573162],[1.491968,52.575469],[1.491762,52.57578],[1.491545,52.577236],[1.490881,52.578622],[1.487898,52.580218],[1.487105,52.582055],[1.487452,52.584171],[1.48717,52.584799],[1.485146,52.586601],[1.483524,52.587186],[1.481223,52.586855],[1.478058,52.585981],[1.476448,52.58586],[1.475035,52.585793],[1.468989,52.586408],[1.468757,52.586427],[1.468746,52.586432],[1.46732,52.587114],[1.466252,52.588611],[1.466242,52.590407],[1.466136,52.590589],[1.462908,52.593109],[1.46186,52.593595],[1.461143,52.593767],[1.457329,52.593398],[1.455421,52.593484],[1.453598,52.594321],[1.453014,52.595043],[1.452705,52.595426],[1.452473,52.596544],[1.453835,52.599091],[1.453507,52.60055],[1.451695,52.601512],[1.444006,52.603759],[1.442103,52.604903],[1.4376,52.60929],[1.433147,52.611532],[1.432934,52.611681],[1.432405,52.612931],[1.432984,52.613722],[1.435805,52.616007],[1.436559,52.61755],[1.436008,52.618733],[1.434228,52.619671],[1.433337,52.619612],[1.433035,52.61956],[1.430725,52.618021],[1.430119,52.617907],[1.429052,52.617811],[1.428685,52.617925],[1.427443,52.61831],[1.424348,52.620883],[1.423239,52.621369],[1.421945,52.621922],[1.420697,52.621771],[1.418798,52.620755],[1.414354,52.62078],[1.409266,52.618405],[1.408235,52.616873],[1.408039,52.614054],[1.407726,52.61353],[1.405896,52.61301],[1.404007,52.614081],[1.403955,52.614083],[1.40326,52.614026],[1.402149,52.613432],[1.400908,52.611784],[1.400688,52.609486],[1.399879,52.607949],[1.398638,52.607537],[1.398409,52.607444],[1.397903,52.60724],[1.394947,52.606039],[1.392104,52.604404],[1.390535,52.604058],[1.38753,52.604026],[1.385201,52.604397],[1.381235,52.605652],[1.381085,52.60579],[1.380432,52.606761],[1.379808,52.609048],[1.377568,52.611614],[1.37627,52.614634],[1.376126,52.615371],[1.37601,52.616359],[1.376232,52.617224],[1.376356,52.618779],[1.376132,52.619767],[1.375794,52.620329],[1.373201,52.620984],[1.369495,52.623567],[1.367375,52.623924],[1.366531,52.623946],[1.36452,52.623942],[1.360845,52.622887],[1.359969,52.62263],[1.350655,52.620895],[1.348943,52.621165],[1.348711,52.621803],[1.348245,52.623032],[1.347924,52.623329],[1.347719,52.623386],[1.344444,52.623706],[1.343571,52.62414],[1.342277,52.624782],[1.335656,52.624769],[1.328865,52.623868],[1.326085,52.622991],[1.324924,52.622596],[1.323033,52.620759],[1.321085,52.61985],[1.320583,52.619211],[1.320672,52.618492],[1.321148,52.617626],[1.320491,52.616158],[1.318262,52.615009],[1.316945,52.61505],[1.315136,52.615105],[1.313499,52.613631],[1.313443,52.613581],[1.311157,52.612373],[1.308182,52.609622],[1.306791,52.60892],[1.305293,52.608927],[1.302735,52.608135],[1.301981,52.606736],[1.299794,52.605545],[1.29789,52.605352],[1.297274,52.60374],[1.292686,52.601315],[1.291717,52.599855],[1.28909,52.598656],[1.287102,52.596488],[1.283467,52.595222],[1.281496,52.595263],[1.279499,52.59712],[1.278126,52.597121],[1.276707,52.598492],[1.274453,52.598951],[1.274263,52.600341],[1.268823,52.601774],[1.266968,52.60142],[1.264677,52.600311],[1.263813,52.600248],[1.262473,52.597829],[1.260609,52.597601],[1.257786,52.598147],[1.254942,52.600787],[1.254899,52.601861],[1.252891,52.604056],[1.250992,52.605324],[1.250853,52.606115],[1.246026,52.607198],[1.245519,52.608043],[1.24363,52.608504],[1.241685,52.609995],[1.242132,52.611282],[1.243945,52.613374],[1.244532,52.614451],[1.243216,52.615781],[1.243545,52.617135],[1.241245,52.617776],[1.235034,52.616752],[1.233377,52.616968],[1.231889,52.617683],[1.23079,52.619117],[1.230607,52.620224],[1.228566,52.621615],[1.228737,52.623684],[1.231861,52.627706],[1.232762,52.628105],[1.230316,52.630419],[1.230565,52.630927],[1.227354,52.632214],[1.225284,52.632081],[1.225229,52.63129],[1.223376,52.630164],[1.223359,52.628048],[1.221714,52.627815],[1.218561,52.626661],[1.218201,52.625651],[1.216371,52.62557],[1.215249,52.62646],[1.212823,52.627355],[1.213409,52.629687],[1.214441,52.631601],[1.214086,52.634381],[1.211452,52.636389],[1.209836,52.637154],[1.210019,52.637734],[1.208049,52.638957],[1.206343,52.638308],[1.20615,52.639509],[1.205084,52.639483],[1.20389,52.644704],[1.205043,52.645102],[1.209158,52.645241],[1.211172,52.644803],[1.211493,52.645367],[1.223588,52.643667],[1.235453,52.640933],[1.238436,52.643737],[1.241336,52.645458],[1.243691,52.646434],[1.248508,52.647743]]]]},"properties":{"LAD22CD":"E07000149","LAD22NM":"South Norfolk","BNG_E":628990,"BNG_N":295823,"LONG":1.373233,"LAT":52.51218,"GlobalID":"6b5983c2-25d9-411a-a200-5a996bb73e22"},"id":171}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.004508,54.172884],[-2.011123,54.172545],[-2.014715,54.172796],[-2.015101,54.173589],[-2.017203,54.174773],[-2.018555,54.176182],[-2.020492,54.175989],[-2.022834,54.176774],[-2.023886,54.175973],[-2.026958,54.176158],[-2.028344,54.175482],[-2.031392,54.174802],[-2.034731,54.175789],[-2.034177,54.180437],[-2.044355,54.182562],[-2.045785,54.18188],[-2.049393,54.185781],[-2.051105,54.189103],[-2.050244,54.189776],[-2.054261,54.194899],[-2.05621,54.195334],[-2.059451,54.19672],[-2.060391,54.201155],[-2.06134,54.202609],[-2.061161,54.207165],[-2.060433,54.208781],[-2.060872,54.210325],[-2.068062,54.212624],[-2.071125,54.21312],[-2.076182,54.215884],[-2.07918,54.218378],[-2.082504,54.218708],[-2.083938,54.220288],[-2.088449,54.222021],[-2.090525,54.223639],[-2.095042,54.227974],[-2.096356,54.228318],[-2.099213,54.230065],[-2.100031,54.231966],[-2.108767,54.231848],[-2.113456,54.232562],[-2.116054,54.23064],[-2.11819,54.229612],[-2.121321,54.228585],[-2.124692,54.227932],[-2.126265,54.226418],[-2.128537,54.225701],[-2.132295,54.225707],[-2.134306,54.2253],[-2.140472,54.225295],[-2.142172,54.226317],[-2.142931,54.229319],[-2.143535,54.230047],[-2.143623,54.231602],[-2.143078,54.233245],[-2.143836,54.235036],[-2.147883,54.234177],[-2.150694,54.232568],[-2.152535,54.234386],[-2.151602,54.23559],[-2.156614,54.23468],[-2.159501,54.233457],[-2.160788,54.232175],[-2.161039,54.231171],[-2.166001,54.229109],[-2.167757,54.228759],[-2.171945,54.228478],[-2.174748,54.230431],[-2.179827,54.235035],[-2.185021,54.238291],[-2.187156,54.238822],[-2.187685,54.239635],[-2.189654,54.241037],[-2.191104,54.243081],[-2.192939,54.24363],[-2.194931,54.245318],[-2.194657,54.245925],[-2.197798,54.247379],[-2.207061,54.247475],[-2.212217,54.247813],[-2.214232,54.248456],[-2.214644,54.249769],[-2.216828,54.250487],[-2.220891,54.251046],[-2.22404,54.251066],[-2.229217,54.252179],[-2.230987,54.25036],[-2.232476,54.250451],[-2.235656,54.251242],[-2.237565,54.249792],[-2.240512,54.24848],[-2.243403,54.248194],[-2.244172,54.248732],[-2.246664,54.249402],[-2.252285,54.249326],[-2.258798,54.247341],[-2.265088,54.244869],[-2.267791,54.244814],[-2.270133,54.243912],[-2.274024,54.243014],[-2.275021,54.242517],[-2.275671,54.241096],[-2.27788,54.241035],[-2.280461,54.239417],[-2.282754,54.23951],[-2.28332,54.238561],[-2.286005,54.239449],[-2.287407,54.241485],[-2.286895,54.243256],[-2.289704,54.245144],[-2.291333,54.251612],[-2.294274,54.253297],[-2.296971,54.251],[-2.305107,54.249344],[-2.307329,54.250076],[-2.310473,54.252239],[-2.318115,54.25588],[-2.319097,54.257156],[-2.322092,54.255021],[-2.322646,54.252914],[-2.322538,54.248149],[-2.323254,54.246994],[-2.322657,54.24546],[-2.325469,54.242801],[-2.325647,54.241438],[-2.328271,54.241886],[-2.33131,54.240601],[-2.335811,54.238064],[-2.337658,54.237599],[-2.342509,54.237467],[-2.348053,54.237807],[-2.35055,54.241367],[-2.360407,54.246649],[-2.362317,54.249753],[-2.372325,54.248235],[-2.373021,54.240099],[-2.385086,54.239149],[-2.39678,54.239381],[-2.400931,54.234043],[-2.401377,54.230423],[-2.403629,54.225583],[-2.405632,54.224915],[-2.40645,54.225929],[-2.409215,54.226625],[-2.411971,54.226687],[-2.414795,54.225962],[-2.424051,54.224449],[-2.426495,54.223711],[-2.429418,54.223567],[-2.431945,54.224195],[-2.433478,54.223261],[-2.435428,54.222877],[-2.437652,54.224204],[-2.441418,54.225739],[-2.460863,54.226716],[-2.463969,54.22211],[-2.465612,54.220717],[-2.469016,54.2189],[-2.473699,54.215282],[-2.47477,54.21375],[-2.475694,54.210299],[-2.47705,54.208897],[-2.47963,54.204627],[-2.479324,54.203373],[-2.479959,54.202313],[-2.511439,54.17905],[-2.515342,54.177922],[-2.5182,54.176649],[-2.518731,54.17598],[-2.522538,54.173692],[-2.523652,54.172379],[-2.523282,54.171224],[-2.526566,54.170461],[-2.528721,54.169512],[-2.529301,54.168491],[-2.52936,54.166981],[-2.530243,54.166436],[-2.528907,54.164238],[-2.530451,54.164033],[-2.529956,54.162648],[-2.531559,54.160945],[-2.532996,54.160856],[-2.533136,54.158558],[-2.533979,54.157693],[-2.536731,54.156513],[-2.541325,54.15772],[-2.543683,54.157595],[-2.544772,54.155681],[-2.547222,54.153309],[-2.552287,54.153657],[-2.557675,54.15349],[-2.560505,54.153052],[-2.561515,54.150531],[-2.558495,54.149928],[-2.557378,54.149979],[-2.558198,54.147421],[-2.557874,54.143364],[-2.558316,54.142907],[-2.560952,54.142842],[-2.56133,54.141964],[-2.56341,54.140406],[-2.562666,54.136509],[-2.563715,54.135457],[-2.562224,54.135184],[-2.562056,54.132836],[-2.562489,54.131736],[-2.561389,54.1299],[-2.562473,54.12916],[-2.56319,54.127896],[-2.564738,54.127066],[-2.5633,54.125394],[-2.56301,54.124415],[-2.56333,54.122706],[-2.560765,54.122373],[-2.559213,54.121086],[-2.556874,54.120609],[-2.553083,54.120543],[-2.544768,54.117133],[-2.545653,54.115978],[-2.545836,54.114367],[-2.54468,54.113221],[-2.541786,54.111866],[-2.539092,54.109921],[-2.536201,54.108626],[-2.536954,54.106876],[-2.538128,54.105675],[-2.536766,54.104099],[-2.534427,54.103424],[-2.531535,54.103281],[-2.530042,54.102709],[-2.527502,54.102602],[-2.526306,54.10195],[-2.524109,54.102129],[-2.524493,54.100315],[-2.526392,54.099177],[-2.525885,54.09844],[-2.52559,54.096029],[-2.52401,54.094622],[-2.520523,54.095543],[-2.517242,54.094968],[-2.509526,54.095425],[-2.50855,54.09423],[-2.508754,54.092422],[-2.506305,54.091475],[-2.494206,54.089804],[-2.492566,54.089876],[-2.491567,54.08732],[-2.488398,54.086725],[-2.486383,54.084852],[-2.484727,54.085204],[-2.480751,54.085379],[-2.470724,54.076564],[-2.464348,54.075279],[-2.465613,54.071731],[-2.46399,54.061084],[-2.469016,54.054881],[-2.470546,54.050855],[-2.46955,54.046212],[-2.464677,54.043202],[-2.458775,54.040496],[-2.456629,54.040173],[-2.450755,54.040657],[-2.445325,54.042158],[-2.442388,54.042271],[-2.440358,54.041841],[-2.432734,54.041593],[-2.425827,54.038095],[-2.422523,54.040572],[-2.418943,54.041373],[-2.414435,54.042034],[-2.405544,54.042566],[-2.403829,54.043477],[-2.400463,54.043493],[-2.397058,54.044217],[-2.394741,54.043317],[-2.391329,54.044137],[-2.38966,54.044246],[-2.387164,54.045219],[-2.384422,54.047613],[-2.374073,54.049089],[-2.362,54.04067],[-2.36418,54.040093],[-2.361848,54.037949],[-2.362658,54.034446],[-2.359258,54.03175],[-2.361934,54.029245],[-2.361311,54.027999],[-2.361728,54.02723],[-2.359514,54.026393],[-2.360351,54.024318],[-2.359278,54.023428],[-2.35792,54.023333],[-2.357795,54.022476],[-2.356542,54.021472],[-2.357527,54.020226],[-2.357323,54.019117],[-2.350151,54.018622],[-2.349392,54.0177],[-2.345651,54.018195],[-2.343541,54.017328],[-2.343222,54.016056],[-2.33956,54.009433],[-2.339381,54.008793],[-2.34076,54.007463],[-2.342813,54.00879],[-2.347979,54.00999],[-2.349221,54.011537],[-2.350289,54.0122],[-2.35231,54.010539],[-2.353572,54.003786],[-2.352358,53.994674],[-2.345423,53.992207],[-2.339923,53.989428],[-2.338321,53.991244],[-2.335969,53.991724],[-2.334024,53.990978],[-2.333668,53.990411],[-2.326935,53.993865],[-2.324603,53.994085],[-2.318829,53.993729],[-2.31836,53.992093],[-2.31736,53.99111],[-2.314848,53.989699],[-2.314251,53.988622],[-2.311551,53.988141],[-2.309464,53.987465],[-2.304476,53.984543],[-2.305319,53.98391],[-2.300079,53.981476],[-2.296733,53.980555],[-2.296765,53.97926],[-2.298521,53.977699],[-2.298856,53.976561],[-2.295247,53.975101],[-2.292093,53.974989],[-2.287063,53.974474],[-2.286152,53.974763],[-2.284505,53.97381],[-2.248212,53.978683],[-2.245869,53.979272],[-2.244411,53.981051],[-2.242423,53.980705],[-2.235538,53.981142],[-2.234578,53.981784],[-2.232684,53.980959],[-2.230345,53.98153],[-2.228194,53.979918],[-2.227105,53.978346],[-2.22406,53.978648],[-2.221063,53.977928],[-2.222694,53.977052],[-2.223478,53.97616],[-2.227697,53.974856],[-2.232016,53.97123],[-2.229731,53.969679],[-2.229169,53.968448],[-2.229738,53.967677],[-2.228674,53.967018],[-2.225948,53.967254],[-2.225301,53.964917],[-2.225989,53.962775],[-2.225736,53.961099],[-2.220612,53.963554],[-2.214421,53.965099],[-2.213112,53.963403],[-2.209639,53.962899],[-2.207039,53.965186],[-2.206657,53.966401],[-2.203173,53.967791],[-2.201667,53.967846],[-2.200636,53.970126],[-2.196019,53.969576],[-2.195589,53.966344],[-2.193616,53.9614],[-2.191286,53.958079],[-2.188155,53.955208],[-2.187768,53.954183],[-2.186169,53.95356],[-2.184523,53.952264],[-2.183525,53.951437],[-2.183681,53.949337],[-2.180711,53.947996],[-2.180462,53.946657],[-2.179467,53.945986],[-2.183844,53.945217],[-2.183715,53.943703],[-2.185488,53.941887],[-2.185638,53.940454],[-2.184387,53.937134],[-2.182282,53.93539],[-2.179316,53.935466],[-2.175945,53.93426],[-2.174427,53.936665],[-2.171679,53.937688],[-2.16412,53.934636],[-2.162075,53.932624],[-2.161649,53.931828],[-2.163789,53.930289],[-2.163742,53.92886],[-2.162877,53.92727],[-2.159663,53.928646],[-2.157819,53.928271],[-2.156887,53.927022],[-2.155182,53.927567],[-2.151717,53.929484],[-2.148115,53.927826],[-2.149434,53.926028],[-2.144961,53.926514],[-2.141799,53.925675],[-2.140878,53.926435],[-2.139979,53.928325],[-2.137789,53.928043],[-2.132224,53.926509],[-2.132547,53.925546],[-2.130898,53.924605],[-2.130159,53.92348],[-2.127065,53.923667],[-2.12435,53.923201],[-2.124628,53.921923],[-2.121758,53.917331],[-2.118289,53.917654],[-2.116687,53.917286],[-2.113093,53.915439],[-2.114695,53.913752],[-2.111819,53.911933],[-2.109791,53.909093],[-2.107467,53.908043],[-2.113176,53.904612],[-2.103417,53.891893],[-2.103019,53.890941],[-2.095735,53.888156],[-2.093855,53.885088],[-2.090922,53.883423],[-2.09068,53.882811],[-2.086249,53.880748],[-2.083707,53.877933],[-2.082458,53.877554],[-2.082413,53.876617],[-2.081447,53.87568],[-2.082694,53.873699],[-2.084246,53.872225],[-2.088345,53.87006],[-2.090097,53.86846],[-2.08899,53.868192],[-2.086119,53.869658],[-2.084498,53.870072],[-2.081191,53.869971],[-2.076723,53.866836],[-2.075965,53.86361],[-2.07485,53.862367],[-2.071369,53.861098],[-2.068966,53.859731],[-2.066408,53.859634],[-2.064757,53.858878],[-2.06229,53.859081],[-2.046131,53.850141],[-2.045072,53.85125],[-2.038351,53.855222],[-2.031709,53.858594],[-2.021631,53.871497],[-2.013485,53.869738],[-2.013038,53.870519],[-1.999456,53.872065],[-1.995482,53.868679],[-1.987653,53.867737],[-1.982359,53.868862],[-1.980199,53.871115],[-1.978724,53.873806],[-1.97698,53.875601],[-1.976128,53.878896],[-1.978098,53.8842],[-1.977252,53.887738],[-1.978623,53.890809],[-1.981313,53.894251],[-1.980778,53.895127],[-1.981108,53.896974],[-1.978936,53.897939],[-1.97935,53.901179],[-1.976976,53.900924],[-1.974886,53.901179],[-1.968428,53.903843],[-1.964785,53.903349],[-1.952567,53.903533],[-1.95341,53.906526],[-1.953226,53.911706],[-1.956837,53.913738],[-1.957453,53.913588],[-1.959647,53.915536],[-1.961706,53.918287],[-1.973946,53.924055],[-1.976867,53.926418],[-1.971922,53.92998],[-1.970218,53.929084],[-1.970415,53.928437],[-1.967241,53.927522],[-1.96589,53.927887],[-1.965917,53.930426],[-1.968019,53.931825],[-1.963077,53.933404],[-1.967778,53.940401],[-1.969961,53.941889],[-1.970527,53.943333],[-1.968829,53.943934],[-1.96229,53.943208],[-1.962385,53.945321],[-1.963054,53.945796],[-1.963515,53.947582],[-1.965049,53.948235],[-1.966181,53.951558],[-1.958205,53.953953],[-1.949362,53.953012],[-1.950684,53.956743],[-1.94399,53.956188],[-1.941613,53.952518],[-1.934236,53.951913],[-1.930863,53.950268],[-1.92798,53.950459],[-1.92277,53.955634],[-1.920102,53.955658],[-1.919122,53.954917],[-1.916996,53.955516],[-1.913164,53.955992],[-1.91196,53.95695],[-1.908499,53.957558],[-1.906274,53.958378],[-1.9035,53.958275],[-1.903573,53.957236],[-1.898841,53.955391],[-1.895712,53.955078],[-1.893138,53.955384],[-1.890514,53.957343],[-1.889706,53.959275],[-1.887417,53.960151],[-1.88553,53.96194],[-1.885459,53.963017],[-1.882242,53.963137],[-1.879513,53.962839],[-1.878724,53.962392],[-1.878141,53.958992],[-1.879816,53.956806],[-1.879942,53.955902],[-1.878883,53.954274],[-1.875994,53.955009],[-1.873326,53.955011],[-1.870405,53.954436],[-1.865208,53.955962],[-1.863443,53.957468],[-1.861569,53.958405],[-1.861186,53.959763],[-1.862469,53.96037],[-1.863163,53.961952],[-1.860137,53.962339],[-1.849899,53.965723],[-1.824889,53.97626],[-1.816733,53.978139],[-1.817746,53.98014],[-1.822203,53.983497],[-1.825491,53.98479],[-1.826759,53.985663],[-1.824896,53.98631],[-1.824504,53.987349],[-1.823266,53.987784],[-1.823163,53.98906],[-1.821634,53.989928],[-1.821622,53.990952],[-1.820126,53.99123],[-1.818765,53.992526],[-1.819527,53.996416],[-1.821076,53.997359],[-1.822769,53.99743],[-1.826161,53.999779],[-1.827483,54.001355],[-1.829772,54.003049],[-1.830976,54.003459],[-1.830644,54.004474],[-1.831408,54.009326],[-1.833561,54.011374],[-1.834914,54.013529],[-1.837367,54.014914],[-1.848046,54.013671],[-1.85347,54.028774],[-1.872421,54.03561],[-1.868671,54.04205],[-1.870363,54.044496],[-1.87244,54.046025],[-1.872028,54.047144],[-1.867324,54.048921],[-1.866654,54.04967],[-1.863989,54.050231],[-1.859683,54.05212],[-1.853725,54.053122],[-1.852785,54.057717],[-1.849086,54.06313],[-1.846069,54.064518],[-1.842218,54.067875],[-1.840594,54.070581],[-1.842398,54.071334],[-1.846272,54.073766],[-1.861725,54.08054],[-1.867113,54.097689],[-1.871325,54.099527],[-1.875967,54.100077],[-1.87977,54.102226],[-1.887346,54.102464],[-1.891002,54.104417],[-1.893232,54.109691],[-1.894263,54.110805],[-1.89511,54.113796],[-1.900562,54.116401],[-1.905616,54.122473],[-1.916961,54.120609],[-1.922157,54.120316],[-1.931745,54.122368],[-1.934944,54.122294],[-1.937727,54.123377],[-1.947973,54.125262],[-1.957144,54.132564],[-1.957382,54.135589],[-1.955293,54.136753],[-1.95423,54.143107],[-1.963587,54.15213],[-1.966612,54.153201],[-1.972493,54.158085],[-1.986887,54.156623],[-1.988417,54.155309],[-1.992544,54.15528],[-1.997574,54.160676],[-1.997995,54.162094],[-1.997751,54.165195],[-1.999116,54.167388],[-2.004508,54.172884]]]},"properties":{"LAD22CD":"E07000163","LAD22NM":"Craven","BNG_E":389513,"BNG_N":461989,"LONG":-2.16168,"LAT":54.05376,"GlobalID":"aaf8dd39-d84e-4d90-bcb2-da37a45df9a4"},"id":172}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.146197,54.502822],[-1.146694,54.501372],[-1.148059,54.501125],[-1.152668,54.501912],[-1.158296,54.502373],[-1.163113,54.503542],[-1.165369,54.503547],[-1.166033,54.503109],[-1.168972,54.503534],[-1.170653,54.502348],[-1.172727,54.502881],[-1.174209,54.503839],[-1.176144,54.504314],[-1.179379,54.505999],[-1.181163,54.505772],[-1.185094,54.507285],[-1.189725,54.506293],[-1.195485,54.506632],[-1.19668,54.506185],[-1.202146,54.506953],[-1.203786,54.506894],[-1.207289,54.508146],[-1.208453,54.508878],[-1.213845,54.510005],[-1.219065,54.510166],[-1.220136,54.510941],[-1.227612,54.511996],[-1.230605,54.511882],[-1.233405,54.510569],[-1.234866,54.510316],[-1.23438,54.506142],[-1.238513,54.506232],[-1.242321,54.501658],[-1.244749,54.501359],[-1.246096,54.502188],[-1.248499,54.501184],[-1.251643,54.501406],[-1.256675,54.501108],[-1.255177,54.499469],[-1.253718,54.498804],[-1.253329,54.497281],[-1.254553,54.496607],[-1.254777,54.495251],[-1.257226,54.493208],[-1.256667,54.491174],[-1.257403,54.487322],[-1.26019,54.487802],[-1.264239,54.487568],[-1.265637,54.488172],[-1.268023,54.488555],[-1.2693,54.488308],[-1.270955,54.489135],[-1.273105,54.489276],[-1.272827,54.490279],[-1.274519,54.491082],[-1.276268,54.490733],[-1.2777,54.489746],[-1.278867,54.490261],[-1.281061,54.49042],[-1.284015,54.489283],[-1.285497,54.487827],[-1.289592,54.487986],[-1.287827,54.486364],[-1.287702,54.484843],[-1.286658,54.483957],[-1.28671,54.482735],[-1.288611,54.481805],[-1.291049,54.482181],[-1.291591,54.483445],[-1.293545,54.47961],[-1.294596,54.479339],[-1.296949,54.479501],[-1.299151,54.476576],[-1.300338,54.47585],[-1.303091,54.475915],[-1.302063,54.477966],[-1.303187,54.478429],[-1.306655,54.477828],[-1.308805,54.476488],[-1.310799,54.477517],[-1.313116,54.477277],[-1.315565,54.475325],[-1.316913,54.47298],[-1.318313,54.472199],[-1.323517,54.471433],[-1.324131,54.470925],[-1.343629,54.464155],[-1.343935,54.466229],[-1.342509,54.468129],[-1.343752,54.468231],[-1.344128,54.469543],[-1.344904,54.470114],[-1.343826,54.471059],[-1.346348,54.472667],[-1.349808,54.472727],[-1.350917,54.473416],[-1.353045,54.472419],[-1.356491,54.472926],[-1.357337,54.471418],[-1.361264,54.468711],[-1.361824,54.467809],[-1.364417,54.465952],[-1.368953,54.469949],[-1.372562,54.472307],[-1.373849,54.474439],[-1.374941,54.479534],[-1.37478,54.482467],[-1.374384,54.484233],[-1.371931,54.48482],[-1.370287,54.486111],[-1.371976,54.488001],[-1.373731,54.48838],[-1.375761,54.490635],[-1.377504,54.491242],[-1.379751,54.492621],[-1.381011,54.494029],[-1.38297,54.491591],[-1.382103,54.48858],[-1.383065,54.487286],[-1.384572,54.486852],[-1.389861,54.486699],[-1.39505,54.48568],[-1.397274,54.486539],[-1.398399,54.487633],[-1.397942,54.491105],[-1.399216,54.492892],[-1.402374,54.494269],[-1.405059,54.49416],[-1.407089,54.49353],[-1.409347,54.491514],[-1.410189,54.489686],[-1.408851,54.48728],[-1.408113,54.484621],[-1.408332,54.481395],[-1.409974,54.478333],[-1.412787,54.477195],[-1.417887,54.477086],[-1.423139,54.47888],[-1.43065,54.479163],[-1.433115,54.480104],[-1.433204,54.480941],[-1.428001,54.48299],[-1.426832,54.483999],[-1.426986,54.485234],[-1.432252,54.486519],[-1.434905,54.487493],[-1.442892,54.490915],[-1.446511,54.494425],[-1.451898,54.497359],[-1.456504,54.50281],[-1.457798,54.503648],[-1.459984,54.50427],[-1.462114,54.504245],[-1.467353,54.502527],[-1.472839,54.501556],[-1.47419,54.500984],[-1.475191,54.499912],[-1.47556,54.498108],[-1.474594,54.496829],[-1.472041,54.495927],[-1.467066,54.496539],[-1.463597,54.496522],[-1.461144,54.495878],[-1.459386,54.494582],[-1.458474,54.492839],[-1.458408,54.491254],[-1.461252,54.487623],[-1.461828,54.485951],[-1.461344,54.484707],[-1.458114,54.482314],[-1.457585,54.481483],[-1.461373,54.478407],[-1.463799,54.473551],[-1.463423,54.473041],[-1.460191,54.47131],[-1.459432,54.468838],[-1.454396,54.467149],[-1.453414,54.466015],[-1.455271,54.464873],[-1.46197,54.462898],[-1.462792,54.461392],[-1.461922,54.459585],[-1.460966,54.458745],[-1.457375,54.457102],[-1.455446,54.455532],[-1.454809,54.453787],[-1.45615,54.452449],[-1.460527,54.451165],[-1.463101,54.451378],[-1.466989,54.453292],[-1.471061,54.454717],[-1.472052,54.4556],[-1.475627,54.453874],[-1.47707,54.452448],[-1.479838,54.451417],[-1.483916,54.452115],[-1.48634,54.453389],[-1.484918,54.45052],[-1.485026,54.449291],[-1.482757,54.447863],[-1.486184,54.447612],[-1.494352,54.447642],[-1.499049,54.44803],[-1.505704,54.447365],[-1.508419,54.448171],[-1.510436,54.450332],[-1.513217,54.450985],[-1.514852,54.452151],[-1.520165,54.449904],[-1.522845,54.450627],[-1.524558,54.449843],[-1.527639,54.449614],[-1.530088,54.44795],[-1.533561,54.446456],[-1.546158,54.444534],[-1.54659,54.442176],[-1.550801,54.437595],[-1.549762,54.434659],[-1.55063,54.433519],[-1.54979,54.432479],[-1.551383,54.429491],[-1.54995,54.428064],[-1.548415,54.428121],[-1.547465,54.427225],[-1.544265,54.426514],[-1.544601,54.425421],[-1.544047,54.424221],[-1.546565,54.423718],[-1.548766,54.422209],[-1.550645,54.421529],[-1.558371,54.424302],[-1.560784,54.42316],[-1.5617,54.422222],[-1.563509,54.421695],[-1.564775,54.420663],[-1.567342,54.420255],[-1.57199,54.418561],[-1.574614,54.418505],[-1.572873,54.415498],[-1.57476,54.414811],[-1.574107,54.414164],[-1.576465,54.413326],[-1.57455,54.411511],[-1.574089,54.409628],[-1.571351,54.405547],[-1.569816,54.404213],[-1.565757,54.403951],[-1.564334,54.403443],[-1.563606,54.402103],[-1.561627,54.400636],[-1.565173,54.397994],[-1.571893,54.395773],[-1.572878,54.393777],[-1.573686,54.38927],[-1.574459,54.388585],[-1.57349,54.386679],[-1.575151,54.384926],[-1.574872,54.381113],[-1.576121,54.381028],[-1.576415,54.379708],[-1.578265,54.377521],[-1.579443,54.377053],[-1.579666,54.37598],[-1.584043,54.375504],[-1.582386,54.373094],[-1.585026,54.371727],[-1.585216,54.37093],[-1.586941,54.368553],[-1.586216,54.368229],[-1.586434,54.36672],[-1.584323,54.364411],[-1.58592,54.363008],[-1.588476,54.362631],[-1.589348,54.36159],[-1.591453,54.363026],[-1.59278,54.362638],[-1.595978,54.362315],[-1.597779,54.364464],[-1.602055,54.364832],[-1.606224,54.363779],[-1.610461,54.361019],[-1.61311,54.35992],[-1.612285,54.358438],[-1.615234,54.357067],[-1.608618,54.35084],[-1.613483,54.349232],[-1.619817,54.347842],[-1.62637,54.3467],[-1.632259,54.346244],[-1.632655,54.346691],[-1.638485,54.345255],[-1.641946,54.344981],[-1.641898,54.343592],[-1.643187,54.343481],[-1.639834,54.34093],[-1.639192,54.339862],[-1.638947,54.335459],[-1.640286,54.330644],[-1.640187,54.329398],[-1.637567,54.327156],[-1.637398,54.326586],[-1.639063,54.324831],[-1.641632,54.32322],[-1.637686,54.321854],[-1.637652,54.321438],[-1.643097,54.320758],[-1.642433,54.319586],[-1.642274,54.317112],[-1.640778,54.315416],[-1.6411,54.313358],[-1.640627,54.310117],[-1.641746,54.310002],[-1.641989,54.307512],[-1.644431,54.306965],[-1.646936,54.307815],[-1.649583,54.307784],[-1.647916,54.305749],[-1.648044,54.3046],[-1.647061,54.302547],[-1.64774,54.302245],[-1.647023,54.300931],[-1.648491,54.300446],[-1.648395,54.297804],[-1.651337,54.295549],[-1.651061,54.294367],[-1.652335,54.293922],[-1.660337,54.29299],[-1.661651,54.291899],[-1.660208,54.290519],[-1.675823,54.28516],[-1.676077,54.285484],[-1.679756,54.285411],[-1.684321,54.285824],[-1.68749,54.28665],[-1.691472,54.286812],[-1.693924,54.287281],[-1.696633,54.286415],[-1.700669,54.286321],[-1.705261,54.285543],[-1.704255,54.284192],[-1.704625,54.283584],[-1.703824,54.281757],[-1.701664,54.278729],[-1.70274,54.277317],[-1.704652,54.276869],[-1.699819,54.275438],[-1.697825,54.274481],[-1.696164,54.274576],[-1.694753,54.273669],[-1.690775,54.269233],[-1.691202,54.268041],[-1.686935,54.264374],[-1.684629,54.263008],[-1.684469,54.261601],[-1.68417,54.259621],[-1.679467,54.25737],[-1.678004,54.253179],[-1.677789,54.250879],[-1.675968,54.247646],[-1.674173,54.246801],[-1.670096,54.247639],[-1.66955,54.24858],[-1.671977,54.249941],[-1.672313,54.250825],[-1.67098,54.251481],[-1.667842,54.252242],[-1.665336,54.251795],[-1.665429,54.250763],[-1.664211,54.247314],[-1.660398,54.247953],[-1.655828,54.249918],[-1.648628,54.250212],[-1.644414,54.246559],[-1.638313,54.243586],[-1.636371,54.239464],[-1.645565,54.238533],[-1.647598,54.237856],[-1.646805,54.236854],[-1.643303,54.234141],[-1.640957,54.233142],[-1.634637,54.229236],[-1.630892,54.230047],[-1.625387,54.230328],[-1.625914,54.229173],[-1.625898,54.226546],[-1.624901,54.223319],[-1.623093,54.220604],[-1.621021,54.218858],[-1.621987,54.218233],[-1.622836,54.216248],[-1.624388,54.215622],[-1.623792,54.213165],[-1.624842,54.210668],[-1.624614,54.209941],[-1.628051,54.206378],[-1.62818,54.204661],[-1.630461,54.202349],[-1.629747,54.201409],[-1.629911,54.199983],[-1.631044,54.199605],[-1.630893,54.197903],[-1.632859,54.196726],[-1.632888,54.19618],[-1.634845,54.195699],[-1.636613,54.193511],[-1.640534,54.192912],[-1.640367,54.19068],[-1.636035,54.189332],[-1.632348,54.189809],[-1.630721,54.189652],[-1.627477,54.188501],[-1.624133,54.186247],[-1.622526,54.18585],[-1.618005,54.186512],[-1.613777,54.188991],[-1.61255,54.189191],[-1.610376,54.188882],[-1.607422,54.189818],[-1.601757,54.191194],[-1.599268,54.190894],[-1.596578,54.190155],[-1.594818,54.190532],[-1.59288,54.192974],[-1.588883,54.196767],[-1.589702,54.197218],[-1.593761,54.196564],[-1.596644,54.197028],[-1.59816,54.198324],[-1.598558,54.199828],[-1.597591,54.201328],[-1.59637,54.201793],[-1.593092,54.202302],[-1.583465,54.204701],[-1.580749,54.204808],[-1.579392,54.204383],[-1.578709,54.202457],[-1.577255,54.20153],[-1.574387,54.201364],[-1.569719,54.200346],[-1.567848,54.199581],[-1.566935,54.198634],[-1.566302,54.196215],[-1.565466,54.195058],[-1.561777,54.194428],[-1.56157,54.192421],[-1.560634,54.191076],[-1.558601,54.190948],[-1.557276,54.191753],[-1.556129,54.191797],[-1.553047,54.191094],[-1.551326,54.191835],[-1.550014,54.191584],[-1.545913,54.192636],[-1.542616,54.195059],[-1.540752,54.194549],[-1.539304,54.195413],[-1.53651,54.195014],[-1.534526,54.195523],[-1.531004,54.195617],[-1.528065,54.194849],[-1.526046,54.195987],[-1.524589,54.195569],[-1.520279,54.196808],[-1.520436,54.197693],[-1.515001,54.199633],[-1.510014,54.200384],[-1.509804,54.201526],[-1.502734,54.202765],[-1.501095,54.204248],[-1.497124,54.203866],[-1.495098,54.203301],[-1.492107,54.211183],[-1.492099,54.215892],[-1.49314,54.21778],[-1.490735,54.218667],[-1.488204,54.219012],[-1.484628,54.22031],[-1.474777,54.206208],[-1.472831,54.207196],[-1.467682,54.208995],[-1.463366,54.211047],[-1.461011,54.211245],[-1.450091,54.21498],[-1.448846,54.214916],[-1.443687,54.216134],[-1.442423,54.21555],[-1.445626,54.214471],[-1.444014,54.213338],[-1.4431,54.211064],[-1.4396,54.208498],[-1.438339,54.205417],[-1.438257,54.201832],[-1.436511,54.199448],[-1.436472,54.196603],[-1.438336,54.193625],[-1.437938,54.192154],[-1.435329,54.190053],[-1.432864,54.186581],[-1.431841,54.185897],[-1.425887,54.184821],[-1.420039,54.184757],[-1.417836,54.184147],[-1.414609,54.182037],[-1.413007,54.181406],[-1.410309,54.181276],[-1.406681,54.181809],[-1.401839,54.181721],[-1.398399,54.180896],[-1.394751,54.181628],[-1.389678,54.179325],[-1.391819,54.178358],[-1.391305,54.175767],[-1.390292,54.174627],[-1.389275,54.174335],[-1.385854,54.174456],[-1.382904,54.173655],[-1.381569,54.172309],[-1.38026,54.16957],[-1.378663,54.168589],[-1.375532,54.167678],[-1.373867,54.167608],[-1.371744,54.168528],[-1.368231,54.167688],[-1.365064,54.167712],[-1.360816,54.167074],[-1.359333,54.166009],[-1.35959,54.163765],[-1.357715,54.162281],[-1.351953,54.160649],[-1.349086,54.161427],[-1.348785,54.160423],[-1.347573,54.159006],[-1.35118,54.15834],[-1.351568,54.157659],[-1.348047,54.15761],[-1.347626,54.157245],[-1.347939,54.154804],[-1.351602,54.154114],[-1.349318,54.153085],[-1.343738,54.151462],[-1.341256,54.151451],[-1.338079,54.152109],[-1.33755,54.151316],[-1.338128,54.150219],[-1.339902,54.149648],[-1.339474,54.148197],[-1.337577,54.148077],[-1.336923,54.14928],[-1.33474,54.149626],[-1.332439,54.148297],[-1.332017,54.145987],[-1.333494,54.14301],[-1.333085,54.141247],[-1.334599,54.139022],[-1.33949,54.136378],[-1.340451,54.134483],[-1.34007,54.129177],[-1.338046,54.127104],[-1.33791,54.124702],[-1.336412,54.123638],[-1.333079,54.122805],[-1.332801,54.122136],[-1.33452,54.120902],[-1.334245,54.117376],[-1.336858,54.114217],[-1.335264,54.113054],[-1.33541,54.111832],[-1.33838,54.111487],[-1.3406,54.108563],[-1.340705,54.107556],[-1.339354,54.106722],[-1.335897,54.106187],[-1.336428,54.107643],[-1.336077,54.1087],[-1.33344,54.109073],[-1.33093,54.106902],[-1.330676,54.105716],[-1.331203,54.10324],[-1.328498,54.102796],[-1.328198,54.101404],[-1.330903,54.100675],[-1.33117,54.099081],[-1.342114,54.100522],[-1.345548,54.101458],[-1.347242,54.099153],[-1.346956,54.097286],[-1.346134,54.096854],[-1.345867,54.094981],[-1.343898,54.093337],[-1.344019,54.09183],[-1.345145,54.09052],[-1.342957,54.087704],[-1.339966,54.084869],[-1.33935,54.083429],[-1.337625,54.081672],[-1.333732,54.08072],[-1.330154,54.081125],[-1.325106,54.082515],[-1.321594,54.081284],[-1.317112,54.081667],[-1.313068,54.081634],[-1.311557,54.081334],[-1.309848,54.080178],[-1.309453,54.078008],[-1.307486,54.074997],[-1.303263,54.072013],[-1.300461,54.069476],[-1.297851,54.066045],[-1.296066,54.065087],[-1.292367,54.064263],[-1.289836,54.063213],[-1.287327,54.061538],[-1.286639,54.059397],[-1.288994,54.056772],[-1.287911,54.054191],[-1.288588,54.051741],[-1.287054,54.049794],[-1.281815,54.046771],[-1.280112,54.043905],[-1.280307,54.040916],[-1.279012,54.038417],[-1.278644,54.036507],[-1.27754,54.035233],[-1.27541,54.034499],[-1.273226,54.034664],[-1.271742,54.036246],[-1.26963,54.036337],[-1.267662,54.035299],[-1.266441,54.035097],[-1.258871,54.035936],[-1.254457,54.036036],[-1.249917,54.034616],[-1.246979,54.034228],[-1.24464,54.033398],[-1.241618,54.033101],[-1.23894,54.033252],[-1.237538,54.035102],[-1.23629,54.035633],[-1.233348,54.035062],[-1.23038,54.03487],[-1.227688,54.035111],[-1.224073,54.034533],[-1.222912,54.03349],[-1.223585,54.031807],[-1.223246,54.030586],[-1.221306,54.027632],[-1.21842,54.025801],[-1.217624,54.024143],[-1.218819,54.021337],[-1.218415,54.018585],[-1.219336,54.015868],[-1.218435,54.014435],[-1.217246,54.014408],[-1.208708,54.016246],[-1.20678,54.016206],[-1.205496,54.015507],[-1.203885,54.013554],[-1.202082,54.01254],[-1.199266,54.01186],[-1.195922,54.012403],[-1.194316,54.012176],[-1.192693,54.011022],[-1.190743,54.00822],[-1.186604,54.00708],[-1.184667,54.006191],[-1.180452,54.003058],[-1.17551,54.002197],[-1.172967,54.00151],[-1.171369,54.000567],[-1.167193,53.996313],[-1.161346,53.994644],[-1.158935,53.992858],[-1.151913,53.989178],[-1.15002,53.988896],[-1.147217,53.989015],[-1.14357,53.989545],[-1.139382,53.990786],[-1.136998,53.991083],[-1.138916,53.992622],[-1.139586,53.994057],[-1.1394,53.995226],[-1.140995,53.996019],[-1.140571,53.997361],[-1.142264,53.998535],[-1.143788,53.998792],[-1.145093,53.999926],[-1.146864,54.000582],[-1.147371,54.00162],[-1.148394,54.001665],[-1.149091,54.002947],[-1.148559,54.004846],[-1.147183,54.006634],[-1.1441,54.008222],[-1.142876,54.010788],[-1.143749,54.012655],[-1.145923,54.013311],[-1.148069,54.015712],[-1.147915,54.016133],[-1.142381,54.018953],[-1.145098,54.022898],[-1.144814,54.025509],[-1.143889,54.025665],[-1.14205,54.027207],[-1.140636,54.02779],[-1.140797,54.029859],[-1.127585,54.031031],[-1.12017,54.029025],[-1.116973,54.03359],[-1.115444,54.03459],[-1.114903,54.03584],[-1.111584,54.036068],[-1.107075,54.037402],[-1.099781,54.037689],[-1.099778,54.039414],[-1.101077,54.040964],[-1.099457,54.041549],[-1.096112,54.040452],[-1.094278,54.046626],[-1.09308,54.046176],[-1.091758,54.047322],[-1.089007,54.048099],[-1.08379,54.047605],[-1.071142,54.048821],[-1.062171,54.050138],[-1.058734,54.047845],[-1.058966,54.049688],[-1.058421,54.052444],[-1.059712,54.056607],[-1.060605,54.056777],[-1.059356,54.059083],[-1.058167,54.063965],[-1.055655,54.067406],[-1.054482,54.066964],[-1.045868,54.069455],[-1.042799,54.071023],[-1.042147,54.07217],[-1.03959,54.073695],[-1.039148,54.075983],[-1.042035,54.077688],[-1.045153,54.075056],[-1.049463,54.075723],[-1.046451,54.0791],[-1.052236,54.081669],[-1.054309,54.082265],[-1.05411,54.083288],[-1.060196,54.085131],[-1.057765,54.088195],[-1.054582,54.089156],[-1.046781,54.094523],[-1.045758,54.096239],[-1.0428,54.098276],[-1.039465,54.098384],[-1.040055,54.100729],[-1.040999,54.101585],[-1.042363,54.104783],[-1.043967,54.106268],[-1.043485,54.107547],[-1.033942,54.107391],[-1.025054,54.10663],[-1.025103,54.107933],[-1.023408,54.108285],[-1.021149,54.109423],[-1.019467,54.107841],[-1.016258,54.107924],[-1.015623,54.109329],[-1.015586,54.112081],[-1.01472,54.113964],[-1.015939,54.114688],[-1.01563,54.115497],[-1.012373,54.119786],[-1.008538,54.123772],[-1.012538,54.126754],[-1.011628,54.127883],[-1.012667,54.129139],[-1.013689,54.131544],[-1.012812,54.133123],[-1.013607,54.135091],[-1.017887,54.135765],[-1.018418,54.136335],[-1.023041,54.137247],[-1.029317,54.140469],[-1.033793,54.140996],[-1.03371,54.142547],[-1.034213,54.143371],[-1.040747,54.143619],[-1.044343,54.145121],[-1.04634,54.147488],[-1.048388,54.14685],[-1.052371,54.147343],[-1.053947,54.149179],[-1.056334,54.14993],[-1.057115,54.15141],[-1.060406,54.152942],[-1.063179,54.153602],[-1.065419,54.153381],[-1.067661,54.153555],[-1.069172,54.154634],[-1.075058,54.155759],[-1.077095,54.156774],[-1.077668,54.157458],[-1.082716,54.160709],[-1.08874,54.162934],[-1.088832,54.16364],[-1.082154,54.171106],[-1.080641,54.172073],[-1.08196,54.17248],[-1.082376,54.173499],[-1.083534,54.174033],[-1.087191,54.174349],[-1.089027,54.175629],[-1.093279,54.176385],[-1.095715,54.176636],[-1.097593,54.177676],[-1.098159,54.178417],[-1.097679,54.183141],[-1.099111,54.185291],[-1.101266,54.184671],[-1.102695,54.18346],[-1.104901,54.183392],[-1.10552,54.182914],[-1.107339,54.183025],[-1.109697,54.182565],[-1.112548,54.183726],[-1.117572,54.183001],[-1.119295,54.182294],[-1.120314,54.181019],[-1.12268,54.181194],[-1.124368,54.180382],[-1.126038,54.180544],[-1.125922,54.182399],[-1.128887,54.183251],[-1.130672,54.18499],[-1.133237,54.186043],[-1.134587,54.185925],[-1.135768,54.187984],[-1.134945,54.189084],[-1.13576,54.189743],[-1.137679,54.190006],[-1.138928,54.190965],[-1.142782,54.191394],[-1.144412,54.193708],[-1.147161,54.195251],[-1.150717,54.196084],[-1.15566,54.196495],[-1.162724,54.199507],[-1.164429,54.199678],[-1.165414,54.201236],[-1.167172,54.201661],[-1.168595,54.202482],[-1.174359,54.203296],[-1.175363,54.202579],[-1.181696,54.201343],[-1.182351,54.201672],[-1.18456,54.201242],[-1.186851,54.201536],[-1.18831,54.200152],[-1.189342,54.200268],[-1.190667,54.20266],[-1.189771,54.203922],[-1.187553,54.205459],[-1.189266,54.208005],[-1.188544,54.208531],[-1.190132,54.209865],[-1.19209,54.209715],[-1.196013,54.210868],[-1.197017,54.210663],[-1.199601,54.212369],[-1.199553,54.214567],[-1.200135,54.216349],[-1.196201,54.217316],[-1.193845,54.218522],[-1.192055,54.221127],[-1.193512,54.222065],[-1.194246,54.22353],[-1.195487,54.224518],[-1.196355,54.226469],[-1.196425,54.229001],[-1.197391,54.230753],[-1.198262,54.234157],[-1.197297,54.240425],[-1.197018,54.241095],[-1.203514,54.238838],[-1.208384,54.236375],[-1.215074,54.24156],[-1.212303,54.24548],[-1.214069,54.249233],[-1.205456,54.251319],[-1.210849,54.265423],[-1.218938,54.28312],[-1.219748,54.286574],[-1.22788,54.296359],[-1.23168,54.299475],[-1.236224,54.301473],[-1.24049,54.304477],[-1.246886,54.308116],[-1.250024,54.311767],[-1.249586,54.315152],[-1.246701,54.323322],[-1.246581,54.33158],[-1.248822,54.332223],[-1.258256,54.33651],[-1.260759,54.33844],[-1.263755,54.342536],[-1.265639,54.343712],[-1.265995,54.345881],[-1.265518,54.347652],[-1.263724,54.349001],[-1.264688,54.352288],[-1.26479,54.354092],[-1.254573,54.35387],[-1.250869,54.36127],[-1.238482,54.37595],[-1.22923,54.377543],[-1.227171,54.377503],[-1.22504,54.378038],[-1.222261,54.376977],[-1.208742,54.373783],[-1.190164,54.377255],[-1.180902,54.376734],[-1.172193,54.381871],[-1.166034,54.377873],[-1.162898,54.372057],[-1.159318,54.359719],[-1.157548,54.349269],[-1.153042,54.349251],[-1.14943,54.348724],[-1.145561,54.348921],[-1.142838,54.347279],[-1.14168,54.346931],[-1.140666,54.345889],[-1.137016,54.346059],[-1.136641,54.345249],[-1.133303,54.344586],[-1.132938,54.343592],[-1.130563,54.343373],[-1.124961,54.344292],[-1.124151,54.344828],[-1.121794,54.345238],[-1.121159,54.344531],[-1.121075,54.341986],[-1.11874,54.340968],[-1.119194,54.337312],[-1.120385,54.336652],[-1.120826,54.334752],[-1.121452,54.333905],[-1.120795,54.33319],[-1.122572,54.331436],[-1.119414,54.33017],[-1.11703,54.328697],[-1.116333,54.32879],[-1.115124,54.330295],[-1.113497,54.329788],[-1.102982,54.328517],[-1.099034,54.329192],[-1.08531,54.347089],[-1.078272,54.358559],[-1.078163,54.360247],[-1.07049,54.361036],[-1.066258,54.362647],[-1.067284,54.365384],[-1.067347,54.375531],[-1.07884,54.388206],[-1.070412,54.39574],[-1.081867,54.404968],[-1.070942,54.405681],[-1.059381,54.412578],[-1.064696,54.42114],[-1.055564,54.427435],[-1.053942,54.434],[-1.052664,54.436959],[-1.057506,54.440917],[-1.056487,54.443279],[-1.055496,54.444067],[-1.055004,54.446035],[-1.053345,54.447277],[-1.052784,54.449186],[-1.051465,54.450075],[-1.049405,54.450797],[-1.04839,54.452146],[-1.043489,54.452829],[-1.0416,54.45508],[-1.039263,54.456221],[-1.037764,54.457433],[-1.033941,54.45899],[-1.032887,54.458736],[-1.029887,54.459316],[-1.025932,54.459158],[-1.021494,54.460006],[-1.019322,54.459634],[-1.01315,54.460016],[-1.01124,54.459632],[-1.010073,54.458837],[-1.007893,54.458267],[-1.006851,54.458483],[-1.003457,54.458333],[-1.000662,54.458685],[-0.996906,54.457993],[-0.995991,54.457456],[-0.994333,54.458117],[-0.988402,54.458816],[-0.984803,54.457452],[-0.981729,54.457672],[-0.978178,54.459496],[-0.976425,54.459756],[-0.974057,54.461242],[-0.972092,54.460846],[-0.976121,54.467678],[-0.979962,54.471942],[-0.983517,54.478877],[-0.989528,54.479499],[-0.991625,54.478812],[-0.994701,54.47737],[-0.999444,54.476019],[-1.004128,54.475481],[-1.009533,54.475525],[-1.016454,54.476643],[-1.018295,54.478008],[-1.018529,54.479696],[-1.019091,54.480154],[-1.018702,54.481377],[-1.01907,54.482506],[-1.023,54.483356],[-1.023075,54.483993],[-1.025797,54.485141],[-1.030589,54.488336],[-1.03049,54.489159],[-1.031586,54.491327],[-1.033909,54.492924],[-1.036852,54.494044],[-1.039505,54.495119],[-1.042881,54.49527],[-1.044607,54.496012],[-1.046711,54.495964],[-1.049135,54.496418],[-1.051079,54.496421],[-1.05774,54.498995],[-1.060019,54.500332],[-1.064801,54.498519],[-1.067927,54.500448],[-1.073813,54.502619],[-1.078198,54.503822],[-1.087252,54.503355],[-1.094524,54.50676],[-1.106187,54.505701],[-1.111783,54.504374],[-1.111638,54.502039],[-1.112267,54.500797],[-1.113201,54.500347],[-1.114324,54.498964],[-1.11838,54.498199],[-1.122812,54.49899],[-1.126654,54.498721],[-1.130853,54.500037],[-1.146197,54.502822]]]},"properties":{"LAD22CD":"E07000164","LAD22NM":"Hambleton","BNG_E":443009,"BNG_N":490546,"LONG":-1.34049,"LAT":54.30872,"GlobalID":"d816454b-ec3f-4c96-9f9a-1970a560461a"},"id":173}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.17551,54.002197],[-1.180452,54.003058],[-1.184667,54.006191],[-1.186604,54.00708],[-1.190743,54.00822],[-1.192693,54.011022],[-1.194316,54.012176],[-1.195922,54.012403],[-1.199266,54.01186],[-1.202082,54.01254],[-1.203885,54.013554],[-1.205496,54.015507],[-1.20678,54.016206],[-1.208708,54.016246],[-1.217246,54.014408],[-1.218435,54.014435],[-1.219336,54.015868],[-1.218415,54.018585],[-1.218819,54.021337],[-1.217624,54.024143],[-1.21842,54.025801],[-1.221306,54.027632],[-1.223246,54.030586],[-1.223585,54.031807],[-1.222912,54.03349],[-1.224073,54.034533],[-1.227688,54.035111],[-1.23038,54.03487],[-1.233348,54.035062],[-1.23629,54.035633],[-1.237538,54.035102],[-1.23894,54.033252],[-1.241618,54.033101],[-1.24464,54.033398],[-1.246979,54.034228],[-1.249917,54.034616],[-1.254457,54.036036],[-1.258871,54.035936],[-1.266441,54.035097],[-1.267662,54.035299],[-1.26963,54.036337],[-1.271742,54.036246],[-1.273226,54.034664],[-1.27541,54.034499],[-1.27754,54.035233],[-1.278644,54.036507],[-1.279012,54.038417],[-1.280307,54.040916],[-1.280112,54.043905],[-1.281815,54.046771],[-1.287054,54.049794],[-1.288588,54.051741],[-1.287911,54.054191],[-1.288994,54.056772],[-1.286639,54.059397],[-1.287327,54.061538],[-1.289836,54.063213],[-1.292367,54.064263],[-1.296066,54.065087],[-1.297851,54.066045],[-1.300461,54.069476],[-1.303263,54.072013],[-1.307486,54.074997],[-1.309453,54.078008],[-1.309848,54.080178],[-1.311557,54.081334],[-1.313068,54.081634],[-1.317112,54.081667],[-1.321594,54.081284],[-1.325106,54.082515],[-1.330154,54.081125],[-1.333732,54.08072],[-1.337625,54.081672],[-1.33935,54.083429],[-1.339966,54.084869],[-1.342957,54.087704],[-1.345145,54.09052],[-1.344019,54.09183],[-1.343898,54.093337],[-1.345867,54.094981],[-1.346134,54.096854],[-1.346956,54.097286],[-1.347242,54.099153],[-1.345548,54.101458],[-1.342114,54.100522],[-1.33117,54.099081],[-1.330903,54.100675],[-1.328198,54.101404],[-1.328498,54.102796],[-1.331203,54.10324],[-1.330676,54.105716],[-1.33093,54.106902],[-1.33344,54.109073],[-1.336077,54.1087],[-1.336428,54.107643],[-1.335897,54.106187],[-1.339354,54.106722],[-1.340705,54.107556],[-1.3406,54.108563],[-1.33838,54.111487],[-1.33541,54.111832],[-1.335264,54.113054],[-1.336858,54.114217],[-1.334245,54.117376],[-1.33452,54.120902],[-1.332801,54.122136],[-1.333079,54.122805],[-1.336412,54.123638],[-1.33791,54.124702],[-1.338046,54.127104],[-1.34007,54.129177],[-1.340451,54.134483],[-1.33949,54.136378],[-1.334599,54.139022],[-1.333085,54.141247],[-1.333494,54.14301],[-1.332017,54.145987],[-1.332439,54.148297],[-1.33474,54.149626],[-1.336923,54.14928],[-1.337577,54.148077],[-1.339474,54.148197],[-1.339902,54.149648],[-1.338128,54.150219],[-1.33755,54.151316],[-1.338079,54.152109],[-1.341256,54.151451],[-1.343738,54.151462],[-1.349318,54.153085],[-1.351602,54.154114],[-1.347939,54.154804],[-1.347626,54.157245],[-1.348047,54.15761],[-1.351568,54.157659],[-1.35118,54.15834],[-1.347573,54.159006],[-1.348785,54.160423],[-1.349086,54.161427],[-1.351953,54.160649],[-1.357715,54.162281],[-1.35959,54.163765],[-1.359333,54.166009],[-1.360816,54.167074],[-1.365064,54.167712],[-1.368231,54.167688],[-1.371744,54.168528],[-1.373867,54.167608],[-1.375532,54.167678],[-1.378663,54.168589],[-1.38026,54.16957],[-1.381569,54.172309],[-1.382904,54.173655],[-1.385854,54.174456],[-1.389275,54.174335],[-1.390292,54.174627],[-1.391305,54.175767],[-1.391819,54.178358],[-1.389678,54.179325],[-1.394751,54.181628],[-1.398399,54.180896],[-1.401839,54.181721],[-1.406681,54.181809],[-1.410309,54.181276],[-1.413007,54.181406],[-1.414609,54.182037],[-1.417836,54.184147],[-1.420039,54.184757],[-1.425887,54.184821],[-1.431841,54.185897],[-1.432864,54.186581],[-1.435329,54.190053],[-1.437938,54.192154],[-1.438336,54.193625],[-1.436472,54.196603],[-1.436511,54.199448],[-1.438257,54.201832],[-1.438339,54.205417],[-1.4396,54.208498],[-1.4431,54.211064],[-1.444014,54.213338],[-1.445626,54.214471],[-1.442423,54.21555],[-1.443687,54.216134],[-1.448846,54.214916],[-1.450091,54.21498],[-1.461011,54.211245],[-1.463366,54.211047],[-1.467682,54.208995],[-1.472831,54.207196],[-1.474777,54.206208],[-1.484628,54.22031],[-1.488204,54.219012],[-1.490735,54.218667],[-1.49314,54.21778],[-1.492099,54.215892],[-1.492107,54.211183],[-1.495098,54.203301],[-1.497124,54.203866],[-1.501095,54.204248],[-1.502734,54.202765],[-1.509804,54.201526],[-1.510014,54.200384],[-1.515001,54.199633],[-1.520436,54.197693],[-1.520279,54.196808],[-1.524589,54.195569],[-1.526046,54.195987],[-1.528065,54.194849],[-1.531004,54.195617],[-1.534526,54.195523],[-1.53651,54.195014],[-1.539304,54.195413],[-1.540752,54.194549],[-1.542616,54.195059],[-1.545913,54.192636],[-1.550014,54.191584],[-1.551326,54.191835],[-1.553047,54.191094],[-1.556129,54.191797],[-1.557276,54.191753],[-1.558601,54.190948],[-1.560634,54.191076],[-1.56157,54.192421],[-1.561777,54.194428],[-1.565466,54.195058],[-1.566302,54.196215],[-1.566935,54.198634],[-1.567848,54.199581],[-1.569719,54.200346],[-1.574387,54.201364],[-1.577255,54.20153],[-1.578709,54.202457],[-1.579392,54.204383],[-1.580749,54.204808],[-1.583465,54.204701],[-1.593092,54.202302],[-1.59637,54.201793],[-1.597591,54.201328],[-1.598558,54.199828],[-1.59816,54.198324],[-1.596644,54.197028],[-1.593761,54.196564],[-1.589702,54.197218],[-1.588883,54.196767],[-1.59288,54.192974],[-1.594818,54.190532],[-1.596578,54.190155],[-1.599268,54.190894],[-1.601757,54.191194],[-1.607422,54.189818],[-1.610376,54.188882],[-1.61255,54.189191],[-1.613777,54.188991],[-1.618005,54.186512],[-1.622526,54.18585],[-1.624133,54.186247],[-1.627477,54.188501],[-1.630721,54.189652],[-1.632348,54.189809],[-1.636035,54.189332],[-1.640367,54.19068],[-1.640534,54.192912],[-1.636613,54.193511],[-1.634845,54.195699],[-1.632888,54.19618],[-1.632859,54.196726],[-1.630893,54.197903],[-1.631044,54.199605],[-1.629911,54.199983],[-1.629747,54.201409],[-1.630461,54.202349],[-1.62818,54.204661],[-1.628051,54.206378],[-1.624614,54.209941],[-1.624842,54.210668],[-1.623792,54.213165],[-1.624388,54.215622],[-1.622836,54.216248],[-1.621987,54.218233],[-1.621021,54.218858],[-1.623093,54.220604],[-1.624901,54.223319],[-1.625898,54.226546],[-1.625914,54.229173],[-1.625387,54.230328],[-1.630892,54.230047],[-1.634637,54.229236],[-1.640957,54.233142],[-1.643303,54.234141],[-1.646805,54.236854],[-1.647598,54.237856],[-1.645565,54.238533],[-1.636371,54.239464],[-1.638313,54.243586],[-1.644414,54.246559],[-1.648628,54.250212],[-1.655828,54.249918],[-1.660398,54.247953],[-1.664211,54.247314],[-1.665429,54.250763],[-1.665336,54.251795],[-1.667842,54.252242],[-1.67098,54.251481],[-1.672313,54.250825],[-1.671977,54.249941],[-1.66955,54.24858],[-1.670096,54.247639],[-1.674173,54.246801],[-1.675968,54.247646],[-1.677789,54.250879],[-1.678004,54.253179],[-1.679467,54.25737],[-1.68417,54.259621],[-1.684469,54.261601],[-1.685439,54.26027],[-1.687366,54.259206],[-1.689546,54.259294],[-1.691072,54.258553],[-1.692109,54.258641],[-1.695212,54.257499],[-1.697094,54.257246],[-1.698822,54.256421],[-1.701132,54.256461],[-1.70224,54.257173],[-1.702664,54.258427],[-1.70457,54.260831],[-1.706983,54.259179],[-1.708015,54.256446],[-1.709287,54.255586],[-1.712671,54.256435],[-1.715502,54.256473],[-1.71731,54.257246],[-1.718292,54.256819],[-1.71969,54.255138],[-1.722993,54.254855],[-1.724224,54.255385],[-1.724253,54.256179],[-1.730587,54.254899],[-1.737123,54.254235],[-1.739498,54.251855],[-1.737158,54.250403],[-1.738805,54.248604],[-1.741231,54.246902],[-1.755963,54.239364],[-1.799808,54.245148],[-1.823333,54.247487],[-1.816304,54.240698],[-1.818489,54.239273],[-1.822574,54.23547],[-1.828065,54.231639],[-1.837406,54.231431],[-1.841089,54.229484],[-1.8467,54.227372],[-1.862166,54.2228],[-1.879446,54.220277],[-1.88161,54.218618],[-1.886449,54.210011],[-1.895615,54.210357],[-1.912378,54.204642],[-1.924406,54.200157],[-1.928012,54.200321],[-1.938094,54.199731],[-1.94174,54.199193],[-1.96775,54.192024],[-1.978711,54.188306],[-1.984859,54.18548],[-2.001924,54.176362],[-2.003782,54.174467],[-2.004508,54.172884],[-1.999116,54.167388],[-1.997751,54.165195],[-1.997995,54.162094],[-1.997574,54.160676],[-1.992544,54.15528],[-1.988417,54.155309],[-1.986887,54.156623],[-1.972493,54.158085],[-1.966612,54.153201],[-1.963587,54.15213],[-1.95423,54.143107],[-1.955293,54.136753],[-1.957382,54.135589],[-1.957144,54.132564],[-1.947973,54.125262],[-1.937727,54.123377],[-1.934944,54.122294],[-1.931745,54.122368],[-1.922157,54.120316],[-1.916961,54.120609],[-1.905616,54.122473],[-1.900562,54.116401],[-1.89511,54.113796],[-1.894263,54.110805],[-1.893232,54.109691],[-1.891002,54.104417],[-1.887346,54.102464],[-1.87977,54.102226],[-1.875967,54.100077],[-1.871325,54.099527],[-1.867113,54.097689],[-1.861725,54.08054],[-1.846272,54.073766],[-1.842398,54.071334],[-1.840594,54.070581],[-1.842218,54.067875],[-1.846069,54.064518],[-1.849086,54.06313],[-1.852785,54.057717],[-1.853725,54.053122],[-1.859683,54.05212],[-1.863989,54.050231],[-1.866654,54.04967],[-1.867324,54.048921],[-1.872028,54.047144],[-1.87244,54.046025],[-1.870363,54.044496],[-1.868671,54.04205],[-1.872421,54.03561],[-1.85347,54.028774],[-1.848046,54.013671],[-1.837367,54.014914],[-1.834914,54.013529],[-1.833561,54.011374],[-1.831408,54.009326],[-1.830644,54.004474],[-1.830976,54.003459],[-1.829772,54.003049],[-1.827483,54.001355],[-1.826161,53.999779],[-1.822769,53.99743],[-1.821076,53.997359],[-1.819527,53.996416],[-1.818765,53.992526],[-1.820126,53.99123],[-1.821622,53.990952],[-1.821634,53.989928],[-1.823163,53.98906],[-1.823266,53.987784],[-1.824504,53.987349],[-1.824896,53.98631],[-1.826759,53.985663],[-1.825491,53.98479],[-1.822203,53.983497],[-1.817746,53.98014],[-1.816733,53.978139],[-1.824889,53.97626],[-1.849899,53.965723],[-1.860137,53.962339],[-1.863163,53.961952],[-1.862469,53.96037],[-1.861186,53.959763],[-1.861569,53.958405],[-1.863443,53.957468],[-1.865208,53.955962],[-1.870405,53.954436],[-1.873326,53.955011],[-1.875994,53.955009],[-1.878883,53.954274],[-1.8777,53.953321],[-1.876273,53.951298],[-1.876297,53.948905],[-1.875017,53.946055],[-1.874151,53.945088],[-1.872014,53.943867],[-1.866398,53.942512],[-1.864349,53.941273],[-1.862107,53.940569],[-1.861736,53.939125],[-1.862494,53.937444],[-1.86298,53.934443],[-1.862208,53.933643],[-1.859505,53.932513],[-1.855869,53.932236],[-1.854622,53.931517],[-1.85223,53.930973],[-1.849984,53.931412],[-1.847154,53.9326],[-1.843334,53.932963],[-1.839893,53.931526],[-1.8362,53.93142],[-1.836999,53.932364],[-1.845499,53.935264],[-1.848657,53.936027],[-1.847739,53.938591],[-1.847689,53.940773],[-1.845024,53.939884],[-1.841723,53.939377],[-1.838438,53.939677],[-1.835566,53.939483],[-1.830125,53.940383],[-1.8302,53.938017],[-1.82594,53.938249],[-1.824019,53.939041],[-1.823393,53.938351],[-1.820157,53.938054],[-1.817054,53.938584],[-1.815068,53.93835],[-1.811311,53.938779],[-1.806226,53.938666],[-1.805089,53.939023],[-1.803539,53.93793],[-1.802863,53.935957],[-1.799037,53.936762],[-1.797176,53.935616],[-1.797388,53.934219],[-1.796273,53.933564],[-1.796365,53.930909],[-1.79801,53.929714],[-1.794142,53.929238],[-1.785088,53.929728],[-1.782444,53.929441],[-1.780979,53.927856],[-1.779929,53.925418],[-1.775979,53.921488],[-1.77228,53.920887],[-1.768963,53.921567],[-1.767828,53.924011],[-1.765426,53.924723],[-1.762429,53.924109],[-1.757235,53.92141],[-1.754483,53.921104],[-1.749731,53.922603],[-1.745626,53.923004],[-1.745042,53.922378],[-1.746071,53.920904],[-1.745997,53.918538],[-1.742164,53.91458],[-1.738702,53.912899],[-1.733698,53.911891],[-1.729018,53.910322],[-1.727216,53.910197],[-1.725652,53.910561],[-1.723576,53.911734],[-1.721566,53.911616],[-1.720549,53.909981],[-1.717959,53.908543],[-1.718702,53.910474],[-1.717584,53.911814],[-1.717536,53.913378],[-1.716089,53.917165],[-1.716433,53.917635],[-1.713197,53.917944],[-1.712488,53.917558],[-1.708958,53.918035],[-1.708034,53.917004],[-1.706113,53.917071],[-1.707083,53.919131],[-1.704776,53.918199],[-1.703716,53.918677],[-1.702243,53.91845],[-1.700779,53.917382],[-1.698613,53.916795],[-1.696347,53.917138],[-1.690324,53.917406],[-1.690166,53.916719],[-1.68702,53.916389],[-1.687633,53.914384],[-1.689171,53.912646],[-1.688199,53.911742],[-1.684571,53.911986],[-1.684627,53.910588],[-1.680022,53.910332],[-1.670509,53.91126],[-1.669398,53.911496],[-1.66664,53.912883],[-1.662683,53.913153],[-1.655083,53.912484],[-1.653214,53.911752],[-1.652412,53.910387],[-1.653946,53.909333],[-1.654417,53.908332],[-1.653618,53.906873],[-1.652029,53.905723],[-1.648606,53.905919],[-1.645792,53.907137],[-1.64226,53.907364],[-1.641081,53.907134],[-1.637927,53.905542],[-1.63116,53.905162],[-1.627926,53.905327],[-1.626076,53.90489],[-1.62307,53.903555],[-1.620537,53.903395],[-1.612035,53.906185],[-1.608629,53.908434],[-1.607187,53.908989],[-1.599993,53.909776],[-1.598895,53.90889],[-1.601319,53.907925],[-1.601776,53.906853],[-1.601086,53.905339],[-1.598304,53.903452],[-1.594475,53.902708],[-1.592939,53.901989],[-1.586859,53.901252],[-1.58535,53.901916],[-1.585243,53.902985],[-1.586248,53.904701],[-1.585479,53.907158],[-1.584067,53.909153],[-1.568689,53.910912],[-1.566212,53.909978],[-1.562883,53.90393],[-1.561564,53.903933],[-1.559312,53.904904],[-1.557047,53.904872],[-1.555219,53.904456],[-1.552577,53.903008],[-1.551228,53.903063],[-1.550127,53.904352],[-1.550485,53.906944],[-1.549105,53.908667],[-1.549417,53.9107],[-1.548198,53.910959],[-1.545063,53.910119],[-1.543515,53.910018],[-1.537216,53.910291],[-1.535119,53.909963],[-1.532563,53.908971],[-1.528597,53.908699],[-1.526473,53.909809],[-1.522506,53.911143],[-1.516374,53.911782],[-1.509859,53.911401],[-1.506331,53.912177],[-1.504361,53.913491],[-1.500399,53.915077],[-1.494672,53.915337],[-1.491871,53.91446],[-1.489007,53.911819],[-1.486027,53.910912],[-1.481617,53.910763],[-1.475433,53.911574],[-1.473459,53.91123],[-1.470978,53.911349],[-1.467414,53.910757],[-1.464961,53.909018],[-1.465451,53.907334],[-1.4631,53.906014],[-1.460556,53.906841],[-1.454903,53.907441],[-1.451552,53.907055],[-1.450129,53.907381],[-1.447755,53.908849],[-1.445517,53.909673],[-1.442877,53.912919],[-1.440446,53.913903],[-1.438058,53.914041],[-1.436436,53.91335],[-1.434408,53.910179],[-1.432552,53.911083],[-1.431401,53.913272],[-1.430136,53.913821],[-1.431283,53.916091],[-1.432117,53.920826],[-1.431471,53.923243],[-1.433154,53.924911],[-1.433553,53.926355],[-1.432344,53.927451],[-1.429784,53.928899],[-1.428114,53.92944],[-1.418836,53.928121],[-1.41362,53.928335],[-1.40671,53.92785],[-1.408806,53.929616],[-1.410629,53.930155],[-1.410584,53.931324],[-1.40767,53.936173],[-1.402875,53.936507],[-1.400658,53.9375],[-1.400447,53.940097],[-1.399903,53.941422],[-1.397183,53.942535],[-1.396657,53.941893],[-1.386472,53.94319],[-1.381683,53.940487],[-1.37497,53.940967],[-1.371801,53.942827],[-1.37038,53.943043],[-1.366278,53.941902],[-1.361953,53.941483],[-1.358561,53.941701],[-1.354871,53.943655],[-1.348208,53.944957],[-1.342792,53.944943],[-1.340405,53.945888],[-1.339841,53.945564],[-1.341565,53.943941],[-1.342858,53.943272],[-1.343935,53.939923],[-1.342051,53.940542],[-1.339539,53.94081],[-1.337529,53.940132],[-1.336273,53.938499],[-1.335035,53.939473],[-1.332459,53.939752],[-1.331103,53.938485],[-1.329212,53.937992],[-1.325567,53.937933],[-1.322816,53.936565],[-1.321107,53.937018],[-1.320582,53.936049],[-1.316379,53.935487],[-1.315397,53.935093],[-1.312334,53.935262],[-1.30862,53.934358],[-1.306962,53.934424],[-1.308992,53.924098],[-1.306597,53.924293],[-1.305277,53.927124],[-1.302223,53.927405],[-1.30042,53.929417],[-1.296761,53.928659],[-1.29418,53.927064],[-1.29426,53.926574],[-1.297089,53.926423],[-1.304243,53.924964],[-1.30731,53.921494],[-1.305309,53.921157],[-1.300935,53.922365],[-1.301421,53.921198],[-1.300332,53.920663],[-1.298452,53.921988],[-1.297204,53.921682],[-1.300082,53.919106],[-1.300113,53.917147],[-1.301195,53.914551],[-1.302014,53.909688],[-1.300702,53.908571],[-1.300588,53.907486],[-1.302731,53.907393],[-1.306111,53.906453],[-1.310847,53.905951],[-1.313723,53.904702],[-1.308482,53.905471],[-1.30665,53.90531],[-1.30387,53.904452],[-1.297276,53.904861],[-1.296609,53.904433],[-1.297681,53.902858],[-1.296724,53.902521],[-1.289192,53.904424],[-1.287737,53.904105],[-1.285131,53.902818],[-1.282456,53.902221],[-1.282146,53.901516],[-1.283858,53.900859],[-1.285452,53.900931],[-1.286969,53.902212],[-1.28878,53.901036],[-1.291474,53.900895],[-1.291651,53.899741],[-1.289033,53.899423],[-1.286846,53.898088],[-1.283709,53.897402],[-1.283482,53.897037],[-1.28456,53.894693],[-1.282552,53.895089],[-1.281249,53.893921],[-1.281687,53.892677],[-1.279248,53.89257],[-1.278552,53.891431],[-1.275524,53.892926],[-1.273538,53.893595],[-1.272099,53.895821],[-1.270338,53.896976],[-1.269209,53.898286],[-1.26679,53.899493],[-1.269232,53.902039],[-1.27013,53.906672],[-1.26927,53.907528],[-1.267991,53.911148],[-1.267553,53.914151],[-1.269099,53.916231],[-1.27027,53.916975],[-1.26659,53.917676],[-1.260807,53.919813],[-1.263766,53.920356],[-1.263274,53.921745],[-1.26196,53.923254],[-1.262609,53.925082],[-1.263433,53.92587],[-1.262434,53.927084],[-1.262698,53.927772],[-1.265962,53.930408],[-1.268935,53.931477],[-1.270856,53.934659],[-1.269493,53.934985],[-1.265452,53.935029],[-1.262573,53.934332],[-1.255793,53.935454],[-1.251902,53.935601],[-1.244948,53.931611],[-1.238748,53.933076],[-1.236128,53.934863],[-1.233552,53.934542],[-1.229202,53.932042],[-1.22768,53.931811],[-1.227192,53.929942],[-1.228036,53.929218],[-1.226618,53.92854],[-1.22684,53.927927],[-1.223596,53.925782],[-1.221789,53.925044],[-1.218762,53.925191],[-1.217609,53.925997],[-1.214308,53.926316],[-1.205143,53.925623],[-1.20513,53.924448],[-1.202126,53.923071],[-1.198812,53.922454],[-1.195638,53.92238],[-1.196055,53.923505],[-1.19761,53.923887],[-1.199495,53.925351],[-1.200115,53.926473],[-1.200074,53.928466],[-1.197993,53.928659],[-1.197735,53.929326],[-1.200151,53.932387],[-1.199897,53.934547],[-1.201799,53.93829],[-1.202682,53.938988],[-1.203443,53.942101],[-1.204133,53.943489],[-1.207382,53.94551],[-1.208998,53.951252],[-1.211832,53.954202],[-1.213037,53.956665],[-1.216047,53.959666],[-1.219839,53.962506],[-1.21982,53.96377],[-1.217486,53.965997],[-1.219187,53.96722],[-1.220893,53.969167],[-1.221477,53.970475],[-1.221608,53.972668],[-1.223706,53.974829],[-1.222387,53.976515],[-1.222345,53.978887],[-1.221606,53.980415],[-1.219117,53.982746],[-1.217353,53.983269],[-1.217458,53.984416],[-1.21652,53.98559],[-1.21329,53.985241],[-1.210835,53.985457],[-1.207178,53.986545],[-1.204871,53.986832],[-1.203395,53.986667],[-1.202256,53.987129],[-1.201993,53.988213],[-1.200182,53.989032],[-1.197539,53.988384],[-1.197294,53.986859],[-1.195041,53.985313],[-1.19222,53.984192],[-1.185751,53.983789],[-1.182103,53.985345],[-1.180622,53.989817],[-1.181632,53.992684],[-1.183162,53.994856],[-1.183283,53.996216],[-1.184163,53.997063],[-1.185561,53.99722],[-1.186633,53.998162],[-1.189404,53.99802],[-1.191929,53.999924],[-1.190993,54.001275],[-1.189293,54.001647],[-1.18857,54.002483],[-1.184393,54.000972],[-1.182256,54.000527],[-1.180766,53.998991],[-1.178828,53.999161],[-1.1786,54.000091],[-1.176019,54.000846],[-1.17551,54.002197]]]},"properties":{"LAD22CD":"E07000165","LAD22NM":"Harrogate","BNG_E":427473,"BNG_N":464652,"LONG":-1.58161,"LAT":54.07708,"GlobalID":"6f8e790f-a0b0-4b96-8bcd-2caf2ea0c386"},"id":174}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.472052,54.4556],[-1.472206,54.457457],[-1.468853,54.459347],[-1.467845,54.460843],[-1.467981,54.463151],[-1.472888,54.466586],[-1.473963,54.467893],[-1.474589,54.472789],[-1.475373,54.473845],[-1.477625,54.475012],[-1.47909,54.475322],[-1.483932,54.473428],[-1.487026,54.472994],[-1.490714,54.473974],[-1.494613,54.474028],[-1.498354,54.474992],[-1.499588,54.477156],[-1.499349,54.478096],[-1.493239,54.481423],[-1.491319,54.483281],[-1.490484,54.484818],[-1.491522,54.486091],[-1.494315,54.486355],[-1.496894,54.485825],[-1.501355,54.48433],[-1.505247,54.48242],[-1.506231,54.481568],[-1.506869,54.478486],[-1.509742,54.475545],[-1.511341,54.475012],[-1.513129,54.475347],[-1.51431,54.476574],[-1.514373,54.477907],[-1.512204,54.48014],[-1.512001,54.481155],[-1.512935,54.482925],[-1.515939,54.484573],[-1.518075,54.485036],[-1.523671,54.484913],[-1.526409,54.485224],[-1.528837,54.484814],[-1.530613,54.48353],[-1.531293,54.480721],[-1.530273,54.477799],[-1.530151,54.475751],[-1.528597,54.474781],[-1.524474,54.474643],[-1.520547,54.473473],[-1.519456,54.472372],[-1.519833,54.471047],[-1.522417,54.470185],[-1.527403,54.469965],[-1.53272,54.469149],[-1.534474,54.469303],[-1.54275,54.471164],[-1.545673,54.471238],[-1.551129,54.4745],[-1.554099,54.479601],[-1.554281,54.482924],[-1.555195,54.484978],[-1.556663,54.485595],[-1.563039,54.486808],[-1.568083,54.488692],[-1.573304,54.49016],[-1.575006,54.492626],[-1.576999,54.494404],[-1.580305,54.496309],[-1.582981,54.497101],[-1.583437,54.498059],[-1.579995,54.500943],[-1.578745,54.503883],[-1.579215,54.505188],[-1.581129,54.505328],[-1.589276,54.503616],[-1.591623,54.504004],[-1.591948,54.505303],[-1.591357,54.505853],[-1.587514,54.506772],[-1.584325,54.507971],[-1.581305,54.509489],[-1.579564,54.51109],[-1.579527,54.511627],[-1.581069,54.512846],[-1.58319,54.513077],[-1.589715,54.512074],[-1.595656,54.512222],[-1.60135,54.510581],[-1.602759,54.510614],[-1.603656,54.512153],[-1.601064,54.514813],[-1.600623,54.517098],[-1.603955,54.519365],[-1.609521,54.519908],[-1.612107,54.519992],[-1.614296,54.519542],[-1.619532,54.515999],[-1.623578,54.514649],[-1.627839,54.513832],[-1.633329,54.514111],[-1.639327,54.516415],[-1.640199,54.51718],[-1.639396,54.517831],[-1.634686,54.517644],[-1.632931,54.518704],[-1.63268,54.520702],[-1.631724,54.522877],[-1.632137,54.52385],[-1.633774,54.525364],[-1.635557,54.525857],[-1.640047,54.525673],[-1.645318,54.524401],[-1.650519,54.524093],[-1.652974,54.524196],[-1.65633,54.525533],[-1.657034,54.526383],[-1.656918,54.528209],[-1.654979,54.530419],[-1.65558,54.532977],[-1.657937,54.534589],[-1.660641,54.5352],[-1.665278,54.53559],[-1.672213,54.535402],[-1.677412,54.534494],[-1.679295,54.533635],[-1.682259,54.533339],[-1.68363,54.53348],[-1.689532,54.535386],[-1.696927,54.536006],[-1.705215,54.536897],[-1.714666,54.53949],[-1.71788,54.540957],[-1.719419,54.542239],[-1.721311,54.542302],[-1.723885,54.541593],[-1.722857,54.540979],[-1.722831,54.539695],[-1.724478,54.537774],[-1.724799,54.535996],[-1.727305,54.530485],[-1.731366,54.530682],[-1.732559,54.529459],[-1.733092,54.527736],[-1.739,54.528438],[-1.743135,54.529761],[-1.747537,54.529291],[-1.750832,54.529631],[-1.751742,54.530173],[-1.754015,54.52865],[-1.761214,54.528952],[-1.764608,54.529828],[-1.767205,54.532286],[-1.769724,54.532845],[-1.773291,54.532824],[-1.779697,54.531873],[-1.780323,54.528817],[-1.781559,54.526834],[-1.776859,54.525361],[-1.776351,54.51911],[-1.777351,54.519377],[-1.77759,54.515683],[-1.776132,54.506728],[-1.777879,54.506405],[-1.782175,54.507013],[-1.782488,54.505804],[-1.783912,54.505035],[-1.783935,54.503376],[-1.785133,54.502802],[-1.785057,54.501386],[-1.787177,54.501039],[-1.786887,54.498891],[-1.790268,54.492895],[-1.789022,54.491793],[-1.79109,54.489429],[-1.792977,54.484492],[-1.801569,54.487677],[-1.802734,54.487837],[-1.813078,54.491411],[-1.817519,54.493639],[-1.820277,54.49427],[-1.822444,54.495178],[-1.822719,54.496363],[-1.82455,54.497896],[-1.824388,54.500154],[-1.826449,54.500669],[-1.827227,54.501363],[-1.827787,54.502929],[-1.831854,54.502648],[-1.831564,54.503651],[-1.832302,54.505172],[-1.836473,54.508022],[-1.839433,54.508437],[-1.844283,54.505105],[-1.845974,54.504716],[-1.848217,54.503663],[-1.850977,54.503566],[-1.852768,54.503987],[-1.855373,54.503514],[-1.857801,54.50354],[-1.85867,54.499028],[-1.858603,54.496646],[-1.857719,54.493659],[-1.859316,54.492639],[-1.859217,54.489083],[-1.860045,54.487047],[-1.860831,54.486377],[-1.85853,54.482786],[-1.85913,54.481858],[-1.867255,54.482117],[-1.877603,54.47805],[-1.88547,54.472902],[-1.89343,54.466898],[-1.913183,54.461995],[-1.928326,54.456493],[-1.934025,54.45732],[-1.942543,54.453395],[-1.946996,54.454306],[-1.949231,54.454269],[-1.95162,54.45344],[-1.953782,54.453461],[-1.955424,54.45386],[-1.956556,54.453248],[-1.958515,54.452988],[-1.960503,54.452163],[-1.965971,54.451617],[-1.968442,54.451808],[-1.97006,54.451522],[-1.971752,54.453965],[-1.971111,54.454814],[-1.976125,54.459729],[-1.980051,54.460215],[-1.98554,54.459925],[-1.98654,54.46156],[-1.996765,54.466903],[-2.014646,54.471557],[-2.029568,54.472955],[-2.036958,54.474295],[-2.04473,54.475186],[-2.043199,54.483599],[-2.048613,54.482592],[-2.050467,54.481405],[-2.053073,54.480714],[-2.059207,54.481155],[-2.061289,54.480558],[-2.063104,54.479612],[-2.063176,54.478881],[-2.067705,54.477051],[-2.069919,54.475664],[-2.071174,54.474264],[-2.075741,54.473137],[-2.081625,54.469874],[-2.086397,54.468393],[-2.094753,54.467298],[-2.101799,54.465359],[-2.108591,54.464375],[-2.114305,54.464194],[-2.116596,54.462263],[-2.12301,54.461521],[-2.126563,54.462101],[-2.13605,54.46145],[-2.138887,54.461653],[-2.14149,54.460928],[-2.150121,54.459963],[-2.155373,54.457008],[-2.159268,54.455483],[-2.159873,54.456511],[-2.164792,54.456523],[-2.167327,54.457704],[-2.170213,54.458199],[-2.171934,54.459467],[-2.170579,54.461141],[-2.177509,54.461626],[-2.179915,54.458463],[-2.182194,54.457296],[-2.183577,54.455821],[-2.186162,54.452035],[-2.189316,54.448978],[-2.19242,54.448606],[-2.235618,54.448231],[-2.238731,54.449878],[-2.242573,54.4498],[-2.244118,54.450068],[-2.24624,54.451782],[-2.247886,54.451492],[-2.249539,54.451943],[-2.253502,54.45054],[-2.256768,54.450165],[-2.259863,54.448521],[-2.262722,54.44866],[-2.267167,54.447184],[-2.267903,54.447234],[-2.265379,54.442926],[-2.270332,54.441905],[-2.271348,54.440916],[-2.274984,54.440656],[-2.280419,54.438942],[-2.284315,54.438439],[-2.292865,54.439307],[-2.292075,54.438497],[-2.292544,54.437506],[-2.291493,54.436061],[-2.292346,54.43267],[-2.291854,54.431463],[-2.29453,54.431272],[-2.299438,54.427044],[-2.303374,54.426277],[-2.305464,54.422622],[-2.307879,54.420823],[-2.308146,54.419794],[-2.307855,54.414286],[-2.306319,54.411261],[-2.305682,54.407585],[-2.307415,54.404305],[-2.304786,54.401899],[-2.306343,54.398757],[-2.305507,54.39712],[-2.301643,54.396203],[-2.298785,54.394771],[-2.295797,54.392587],[-2.291987,54.391486],[-2.291944,54.389321],[-2.293932,54.387432],[-2.293227,54.386813],[-2.292061,54.384202],[-2.297441,54.376899],[-2.317043,54.37631],[-2.318141,54.374621],[-2.318887,54.374364],[-2.322374,54.370881],[-2.323491,54.370535],[-2.324333,54.369173],[-2.326092,54.368096],[-2.32693,54.368123],[-2.329959,54.367126],[-2.332884,54.364555],[-2.334557,54.363817],[-2.338255,54.363832],[-2.342714,54.361651],[-2.344648,54.359628],[-2.352876,54.358329],[-2.355731,54.357208],[-2.356437,54.355931],[-2.360749,54.354948],[-2.36369,54.354766],[-2.366152,54.355037],[-2.367712,54.356071],[-2.367156,54.354933],[-2.361564,54.352431],[-2.359674,54.350267],[-2.357342,54.349351],[-2.353245,54.34842],[-2.348135,54.346777],[-2.347925,54.345144],[-2.340232,54.342706],[-2.335768,54.340435],[-2.334509,54.337882],[-2.33521,54.335847],[-2.334749,54.334945],[-2.328162,54.332153],[-2.32247,54.331531],[-2.320202,54.331751],[-2.318055,54.328097],[-2.314992,54.327124],[-2.313799,54.32568],[-2.312461,54.324916],[-2.309842,54.324315],[-2.314978,54.313586],[-2.317059,54.311993],[-2.318672,54.311291],[-2.320151,54.312085],[-2.323032,54.311083],[-2.320401,54.306771],[-2.321248,54.305406],[-2.324523,54.303184],[-2.324345,54.300775],[-2.320438,54.299994],[-2.32039,54.299044],[-2.32229,54.2952],[-2.324172,54.293605],[-2.319857,54.288968],[-2.317192,54.287166],[-2.317918,54.286712],[-2.319082,54.283825],[-2.321655,54.283135],[-2.321123,54.282229],[-2.324131,54.280179],[-2.323789,54.279316],[-2.321745,54.277346],[-2.321184,54.275123],[-2.319403,54.274471],[-2.315514,54.270285],[-2.316105,54.267847],[-2.318286,54.265899],[-2.318056,54.263589],[-2.32082,54.259933],[-2.319097,54.257156],[-2.318115,54.25588],[-2.310473,54.252239],[-2.307329,54.250076],[-2.305107,54.249344],[-2.296971,54.251],[-2.294274,54.253297],[-2.291333,54.251612],[-2.289704,54.245144],[-2.286895,54.243256],[-2.287407,54.241485],[-2.286005,54.239449],[-2.28332,54.238561],[-2.282754,54.23951],[-2.280461,54.239417],[-2.27788,54.241035],[-2.275671,54.241096],[-2.275021,54.242517],[-2.274024,54.243014],[-2.270133,54.243912],[-2.267791,54.244814],[-2.265088,54.244869],[-2.258798,54.247341],[-2.252285,54.249326],[-2.246664,54.249402],[-2.244172,54.248732],[-2.243403,54.248194],[-2.240512,54.24848],[-2.237565,54.249792],[-2.235656,54.251242],[-2.232476,54.250451],[-2.230987,54.25036],[-2.229217,54.252179],[-2.22404,54.251066],[-2.220891,54.251046],[-2.216828,54.250487],[-2.214644,54.249769],[-2.214232,54.248456],[-2.212217,54.247813],[-2.207061,54.247475],[-2.197798,54.247379],[-2.194657,54.245925],[-2.194931,54.245318],[-2.192939,54.24363],[-2.191104,54.243081],[-2.189654,54.241037],[-2.187685,54.239635],[-2.187156,54.238822],[-2.185021,54.238291],[-2.179827,54.235035],[-2.174748,54.230431],[-2.171945,54.228478],[-2.167757,54.228759],[-2.166001,54.229109],[-2.161039,54.231171],[-2.160788,54.232175],[-2.159501,54.233457],[-2.156614,54.23468],[-2.151602,54.23559],[-2.152535,54.234386],[-2.150694,54.232568],[-2.147883,54.234177],[-2.143836,54.235036],[-2.143078,54.233245],[-2.143623,54.231602],[-2.143535,54.230047],[-2.142931,54.229319],[-2.142172,54.226317],[-2.140472,54.225295],[-2.134306,54.2253],[-2.132295,54.225707],[-2.128537,54.225701],[-2.126265,54.226418],[-2.124692,54.227932],[-2.121321,54.228585],[-2.11819,54.229612],[-2.116054,54.23064],[-2.113456,54.232562],[-2.108767,54.231848],[-2.100031,54.231966],[-2.099213,54.230065],[-2.096356,54.228318],[-2.095042,54.227974],[-2.090525,54.223639],[-2.088449,54.222021],[-2.083938,54.220288],[-2.082504,54.218708],[-2.07918,54.218378],[-2.076182,54.215884],[-2.071125,54.21312],[-2.068062,54.212624],[-2.060872,54.210325],[-2.060433,54.208781],[-2.061161,54.207165],[-2.06134,54.202609],[-2.060391,54.201155],[-2.059451,54.19672],[-2.05621,54.195334],[-2.054261,54.194899],[-2.050244,54.189776],[-2.051105,54.189103],[-2.049393,54.185781],[-2.045785,54.18188],[-2.044355,54.182562],[-2.034177,54.180437],[-2.034731,54.175789],[-2.031392,54.174802],[-2.028344,54.175482],[-2.026958,54.176158],[-2.023886,54.175973],[-2.022834,54.176774],[-2.020492,54.175989],[-2.018555,54.176182],[-2.017203,54.174773],[-2.015101,54.173589],[-2.014715,54.172796],[-2.011123,54.172545],[-2.004508,54.172884],[-2.003782,54.174467],[-2.001924,54.176362],[-1.984859,54.18548],[-1.978711,54.188306],[-1.96775,54.192024],[-1.94174,54.199193],[-1.938094,54.199731],[-1.928012,54.200321],[-1.924406,54.200157],[-1.912378,54.204642],[-1.895615,54.210357],[-1.886449,54.210011],[-1.88161,54.218618],[-1.879446,54.220277],[-1.862166,54.2228],[-1.8467,54.227372],[-1.841089,54.229484],[-1.837406,54.231431],[-1.828065,54.231639],[-1.822574,54.23547],[-1.818489,54.239273],[-1.816304,54.240698],[-1.823333,54.247487],[-1.799808,54.245148],[-1.755963,54.239364],[-1.741231,54.246902],[-1.738805,54.248604],[-1.737158,54.250403],[-1.739498,54.251855],[-1.737123,54.254235],[-1.730587,54.254899],[-1.724253,54.256179],[-1.724224,54.255385],[-1.722993,54.254855],[-1.71969,54.255138],[-1.718292,54.256819],[-1.71731,54.257246],[-1.715502,54.256473],[-1.712671,54.256435],[-1.709287,54.255586],[-1.708015,54.256446],[-1.706983,54.259179],[-1.70457,54.260831],[-1.702664,54.258427],[-1.70224,54.257173],[-1.701132,54.256461],[-1.698822,54.256421],[-1.697094,54.257246],[-1.695212,54.257499],[-1.692109,54.258641],[-1.691072,54.258553],[-1.689546,54.259294],[-1.687366,54.259206],[-1.685439,54.26027],[-1.684469,54.261601],[-1.684629,54.263008],[-1.686935,54.264374],[-1.691202,54.268041],[-1.690775,54.269233],[-1.694753,54.273669],[-1.696164,54.274576],[-1.697825,54.274481],[-1.699819,54.275438],[-1.704652,54.276869],[-1.70274,54.277317],[-1.701664,54.278729],[-1.703824,54.281757],[-1.704625,54.283584],[-1.704255,54.284192],[-1.705261,54.285543],[-1.700669,54.286321],[-1.696633,54.286415],[-1.693924,54.287281],[-1.691472,54.286812],[-1.68749,54.28665],[-1.684321,54.285824],[-1.679756,54.285411],[-1.676077,54.285484],[-1.675823,54.28516],[-1.660208,54.290519],[-1.661651,54.291899],[-1.660337,54.29299],[-1.652335,54.293922],[-1.651061,54.294367],[-1.651337,54.295549],[-1.648395,54.297804],[-1.648491,54.300446],[-1.647023,54.300931],[-1.64774,54.302245],[-1.647061,54.302547],[-1.648044,54.3046],[-1.647916,54.305749],[-1.649583,54.307784],[-1.646936,54.307815],[-1.644431,54.306965],[-1.641989,54.307512],[-1.641746,54.310002],[-1.640627,54.310117],[-1.6411,54.313358],[-1.640778,54.315416],[-1.642274,54.317112],[-1.642433,54.319586],[-1.643097,54.320758],[-1.637652,54.321438],[-1.637686,54.321854],[-1.641632,54.32322],[-1.639063,54.324831],[-1.637398,54.326586],[-1.637567,54.327156],[-1.640187,54.329398],[-1.640286,54.330644],[-1.638947,54.335459],[-1.639192,54.339862],[-1.639834,54.34093],[-1.643187,54.343481],[-1.641898,54.343592],[-1.641946,54.344981],[-1.638485,54.345255],[-1.632655,54.346691],[-1.632259,54.346244],[-1.62637,54.3467],[-1.619817,54.347842],[-1.613483,54.349232],[-1.608618,54.35084],[-1.615234,54.357067],[-1.612285,54.358438],[-1.61311,54.35992],[-1.610461,54.361019],[-1.606224,54.363779],[-1.602055,54.364832],[-1.597779,54.364464],[-1.595978,54.362315],[-1.59278,54.362638],[-1.591453,54.363026],[-1.589348,54.36159],[-1.588476,54.362631],[-1.58592,54.363008],[-1.584323,54.364411],[-1.586434,54.36672],[-1.586216,54.368229],[-1.586941,54.368553],[-1.585216,54.37093],[-1.585026,54.371727],[-1.582386,54.373094],[-1.584043,54.375504],[-1.579666,54.37598],[-1.579443,54.377053],[-1.578265,54.377521],[-1.576415,54.379708],[-1.576121,54.381028],[-1.574872,54.381113],[-1.575151,54.384926],[-1.57349,54.386679],[-1.574459,54.388585],[-1.573686,54.38927],[-1.572878,54.393777],[-1.571893,54.395773],[-1.565173,54.397994],[-1.561627,54.400636],[-1.563606,54.402103],[-1.564334,54.403443],[-1.565757,54.403951],[-1.569816,54.404213],[-1.571351,54.405547],[-1.574089,54.409628],[-1.57455,54.411511],[-1.576465,54.413326],[-1.574107,54.414164],[-1.57476,54.414811],[-1.572873,54.415498],[-1.574614,54.418505],[-1.57199,54.418561],[-1.567342,54.420255],[-1.564775,54.420663],[-1.563509,54.421695],[-1.5617,54.422222],[-1.560784,54.42316],[-1.558371,54.424302],[-1.550645,54.421529],[-1.548766,54.422209],[-1.546565,54.423718],[-1.544047,54.424221],[-1.544601,54.425421],[-1.544265,54.426514],[-1.547465,54.427225],[-1.548415,54.428121],[-1.54995,54.428064],[-1.551383,54.429491],[-1.54979,54.432479],[-1.55063,54.433519],[-1.549762,54.434659],[-1.550801,54.437595],[-1.54659,54.442176],[-1.546158,54.444534],[-1.533561,54.446456],[-1.530088,54.44795],[-1.527639,54.449614],[-1.524558,54.449843],[-1.522845,54.450627],[-1.520165,54.449904],[-1.514852,54.452151],[-1.513217,54.450985],[-1.510436,54.450332],[-1.508419,54.448171],[-1.505704,54.447365],[-1.499049,54.44803],[-1.494352,54.447642],[-1.486184,54.447612],[-1.482757,54.447863],[-1.485026,54.449291],[-1.484918,54.45052],[-1.48634,54.453389],[-1.483916,54.452115],[-1.479838,54.451417],[-1.47707,54.452448],[-1.475627,54.453874],[-1.472052,54.4556]]]},"properties":{"LAD22CD":"E07000166","LAD22NM":"Richmondshire","BNG_E":401039,"BNG_N":495786,"LONG":-1.98552,"LAT":54.35761,"GlobalID":"c41267a1-e230-48e1-9625-330fb826e23a"},"id":175}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.41825,54.174063],[-0.418661,54.175551],[-0.421656,54.179818],[-0.423165,54.184074],[-0.423965,54.188703],[-0.426726,54.193117],[-0.428898,54.199577],[-0.431447,54.200943],[-0.43461,54.205759],[-0.437497,54.215023],[-0.441423,54.215761],[-0.44295,54.215534],[-0.445236,54.214375],[-0.447222,54.214375],[-0.448334,54.214986],[-0.451498,54.214242],[-0.457004,54.214476],[-0.467562,54.211736],[-0.471138,54.211943],[-0.47255,54.211499],[-0.473027,54.210433],[-0.474598,54.210602],[-0.475482,54.209838],[-0.481722,54.208598],[-0.482011,54.207509],[-0.483988,54.2072],[-0.484251,54.206528],[-0.486571,54.20607],[-0.487205,54.204885],[-0.49093,54.2041],[-0.493724,54.202979],[-0.495461,54.203761],[-0.496739,54.204996],[-0.496973,54.206012],[-0.498104,54.2063],[-0.50018,54.20512],[-0.504955,54.20518],[-0.505934,54.203632],[-0.510868,54.200319],[-0.512083,54.200142],[-0.513035,54.201168],[-0.515018,54.200081],[-0.51619,54.198862],[-0.519981,54.197775],[-0.52182,54.199202],[-0.524797,54.200118],[-0.527212,54.19968],[-0.528993,54.200202],[-0.530625,54.199757],[-0.532113,54.200833],[-0.53293,54.200208],[-0.535088,54.200703],[-0.540092,54.199079],[-0.539845,54.198259],[-0.540815,54.19739],[-0.543534,54.195739],[-0.54475,54.193935],[-0.548642,54.193724],[-0.548954,54.192877],[-0.550411,54.192576],[-0.551652,54.192902],[-0.551551,54.194294],[-0.553456,54.194136],[-0.556043,54.195563],[-0.557323,54.196567],[-0.560586,54.198113],[-0.562063,54.198395],[-0.56221,54.199561],[-0.563395,54.201149],[-0.565032,54.201213],[-0.566418,54.202388],[-0.568803,54.20191],[-0.571908,54.202002],[-0.576381,54.201454],[-0.578636,54.20036],[-0.581378,54.199825],[-0.584239,54.19965],[-0.585924,54.19862],[-0.587446,54.198792],[-0.589088,54.199851],[-0.590608,54.200325],[-0.593503,54.200679],[-0.596943,54.199512],[-0.59916,54.200229],[-0.599892,54.202003],[-0.601937,54.202187],[-0.603098,54.202812],[-0.60452,54.202449],[-0.605725,54.203014],[-0.606951,54.204278],[-0.610286,54.205176],[-0.6118,54.204863],[-0.612237,54.204173],[-0.614699,54.205723],[-0.615641,54.205001],[-0.618183,54.204947],[-0.618453,54.205515],[-0.616624,54.208564],[-0.614737,54.209855],[-0.614237,54.211035],[-0.611963,54.21321],[-0.607469,54.213028],[-0.605973,54.217758],[-0.603632,54.223054],[-0.602702,54.229845],[-0.600495,54.230876],[-0.598971,54.232309],[-0.597909,54.236187],[-0.599041,54.240475],[-0.600156,54.242487],[-0.602054,54.244205],[-0.604935,54.245434],[-0.607041,54.248567],[-0.60788,54.255061],[-0.607605,54.260939],[-0.610621,54.264944],[-0.613094,54.2697],[-0.610364,54.274998],[-0.613049,54.277011],[-0.613421,54.27864],[-0.609827,54.282647],[-0.609923,54.286054],[-0.609266,54.286256],[-0.605604,54.292997],[-0.604583,54.298069],[-0.600809,54.299616],[-0.598841,54.301332],[-0.598886,54.30227],[-0.597864,54.302805],[-0.594723,54.303422],[-0.592569,54.303307],[-0.587872,54.304265],[-0.586493,54.305431],[-0.584109,54.306283],[-0.579997,54.310572],[-0.578495,54.311165],[-0.568476,54.312363],[-0.567714,54.313871],[-0.568378,54.314291],[-0.568907,54.315976],[-0.570783,54.316421],[-0.572603,54.316425],[-0.573633,54.317148],[-0.574213,54.318412],[-0.575594,54.318042],[-0.578411,54.319015],[-0.583459,54.319496],[-0.584874,54.320807],[-0.584891,54.323912],[-0.587381,54.325398],[-0.587102,54.326356],[-0.590072,54.329424],[-0.593274,54.330698],[-0.595819,54.330925],[-0.598148,54.331855],[-0.600578,54.332297],[-0.601942,54.332897],[-0.60455,54.334684],[-0.606434,54.335115],[-0.607461,54.335913],[-0.610628,54.336642],[-0.612281,54.337348],[-0.613725,54.338754],[-0.614857,54.339166],[-0.616468,54.340911],[-0.620912,54.343465],[-0.629262,54.353452],[-0.627628,54.359085],[-0.633927,54.364506],[-0.634447,54.366052],[-0.632616,54.375952],[-0.661282,54.366528],[-0.661296,54.36824],[-0.662403,54.369479],[-0.661898,54.369837],[-0.665237,54.37227],[-0.66951,54.374362],[-0.671521,54.374797],[-0.672979,54.374674],[-0.675073,54.375164],[-0.677994,54.374571],[-0.680317,54.373163],[-0.681225,54.372958],[-0.684025,54.373496],[-0.688117,54.372857],[-0.687631,54.370956],[-0.687955,54.369728],[-0.689511,54.367502],[-0.692146,54.365486],[-0.69549,54.365347],[-0.700034,54.365733],[-0.703238,54.3649],[-0.709695,54.36146],[-0.711432,54.359078],[-0.711311,54.357195],[-0.732988,54.355269],[-0.736015,54.356169],[-0.740138,54.356484],[-0.741231,54.356937],[-0.742689,54.358262],[-0.74271,54.360851],[-0.743901,54.363168],[-0.745362,54.364716],[-0.746629,54.365075],[-0.748264,54.36724],[-0.750465,54.368247],[-0.753225,54.368595],[-0.753531,54.36689],[-0.754647,54.366623],[-0.756228,54.364963],[-0.756716,54.363346],[-0.75822,54.363487],[-0.759158,54.362733],[-0.761985,54.362663],[-0.766118,54.362099],[-0.768968,54.3602],[-0.771046,54.359169],[-0.771498,54.358203],[-0.773743,54.356954],[-0.774413,54.357204],[-0.778651,54.355714],[-0.782439,54.354831],[-0.785194,54.355066],[-0.786489,54.354477],[-0.787543,54.354982],[-0.789677,54.354086],[-0.792786,54.354603],[-0.79424,54.35433],[-0.797458,54.355571],[-0.799305,54.355845],[-0.80146,54.357408],[-0.805576,54.358195],[-0.807794,54.359749],[-0.808506,54.359864],[-0.809605,54.363371],[-0.811651,54.36553],[-0.811561,54.366797],[-0.812091,54.367876],[-0.813644,54.368475],[-0.816818,54.371589],[-0.82371,54.382527],[-0.834558,54.380884],[-0.848291,54.383402],[-0.859946,54.386519],[-0.866372,54.387434],[-0.917565,54.400645],[-0.91857,54.400828],[-0.926891,54.400621],[-0.950443,54.408858],[-0.961531,54.402545],[-0.9759,54.396912],[-0.987841,54.395954],[-1.009167,54.407165],[-1.026873,54.415344],[-1.059381,54.412578],[-1.070942,54.405681],[-1.081867,54.404968],[-1.070412,54.39574],[-1.07884,54.388206],[-1.067347,54.375531],[-1.067284,54.365384],[-1.066258,54.362647],[-1.07049,54.361036],[-1.078163,54.360247],[-1.078272,54.358559],[-1.08531,54.347089],[-1.099034,54.329192],[-1.102982,54.328517],[-1.113497,54.329788],[-1.115124,54.330295],[-1.116333,54.32879],[-1.11703,54.328697],[-1.119414,54.33017],[-1.122572,54.331436],[-1.120795,54.33319],[-1.121452,54.333905],[-1.120826,54.334752],[-1.120385,54.336652],[-1.119194,54.337312],[-1.11874,54.340968],[-1.121075,54.341986],[-1.121159,54.344531],[-1.121794,54.345238],[-1.124151,54.344828],[-1.124961,54.344292],[-1.130563,54.343373],[-1.132938,54.343592],[-1.133303,54.344586],[-1.136641,54.345249],[-1.137016,54.346059],[-1.140666,54.345889],[-1.14168,54.346931],[-1.142838,54.347279],[-1.145561,54.348921],[-1.14943,54.348724],[-1.153042,54.349251],[-1.157548,54.349269],[-1.159318,54.359719],[-1.162898,54.372057],[-1.166034,54.377873],[-1.172193,54.381871],[-1.180902,54.376734],[-1.190164,54.377255],[-1.208742,54.373783],[-1.222261,54.376977],[-1.22504,54.378038],[-1.227171,54.377503],[-1.22923,54.377543],[-1.238482,54.37595],[-1.250869,54.36127],[-1.254573,54.35387],[-1.26479,54.354092],[-1.264688,54.352288],[-1.263724,54.349001],[-1.265518,54.347652],[-1.265995,54.345881],[-1.265639,54.343712],[-1.263755,54.342536],[-1.260759,54.33844],[-1.258256,54.33651],[-1.248822,54.332223],[-1.246581,54.33158],[-1.246701,54.323322],[-1.249586,54.315152],[-1.250024,54.311767],[-1.246886,54.308116],[-1.24049,54.304477],[-1.236224,54.301473],[-1.23168,54.299475],[-1.22788,54.296359],[-1.219748,54.286574],[-1.218938,54.28312],[-1.210849,54.265423],[-1.205456,54.251319],[-1.214069,54.249233],[-1.212303,54.24548],[-1.215074,54.24156],[-1.208384,54.236375],[-1.203514,54.238838],[-1.197018,54.241095],[-1.197297,54.240425],[-1.198262,54.234157],[-1.197391,54.230753],[-1.196425,54.229001],[-1.196355,54.226469],[-1.195487,54.224518],[-1.194246,54.22353],[-1.193512,54.222065],[-1.192055,54.221127],[-1.193845,54.218522],[-1.196201,54.217316],[-1.200135,54.216349],[-1.199553,54.214567],[-1.199601,54.212369],[-1.197017,54.210663],[-1.196013,54.210868],[-1.19209,54.209715],[-1.190132,54.209865],[-1.188544,54.208531],[-1.189266,54.208005],[-1.187553,54.205459],[-1.189771,54.203922],[-1.190667,54.20266],[-1.189342,54.200268],[-1.18831,54.200152],[-1.186851,54.201536],[-1.18456,54.201242],[-1.182351,54.201672],[-1.181696,54.201343],[-1.175363,54.202579],[-1.174359,54.203296],[-1.168595,54.202482],[-1.167172,54.201661],[-1.165414,54.201236],[-1.164429,54.199678],[-1.162724,54.199507],[-1.15566,54.196495],[-1.150717,54.196084],[-1.147161,54.195251],[-1.144412,54.193708],[-1.142782,54.191394],[-1.138928,54.190965],[-1.137679,54.190006],[-1.13576,54.189743],[-1.134945,54.189084],[-1.135768,54.187984],[-1.134587,54.185925],[-1.133237,54.186043],[-1.130672,54.18499],[-1.128887,54.183251],[-1.125922,54.182399],[-1.126038,54.180544],[-1.124368,54.180382],[-1.12268,54.181194],[-1.120314,54.181019],[-1.119295,54.182294],[-1.117572,54.183001],[-1.112548,54.183726],[-1.109697,54.182565],[-1.107339,54.183025],[-1.10552,54.182914],[-1.104901,54.183392],[-1.102695,54.18346],[-1.101266,54.184671],[-1.099111,54.185291],[-1.097679,54.183141],[-1.098159,54.178417],[-1.097593,54.177676],[-1.095715,54.176636],[-1.093279,54.176385],[-1.089027,54.175629],[-1.087191,54.174349],[-1.083534,54.174033],[-1.082376,54.173499],[-1.08196,54.17248],[-1.080641,54.172073],[-1.082154,54.171106],[-1.088832,54.16364],[-1.08874,54.162934],[-1.082716,54.160709],[-1.077668,54.157458],[-1.077095,54.156774],[-1.075058,54.155759],[-1.069172,54.154634],[-1.067661,54.153555],[-1.065419,54.153381],[-1.063179,54.153602],[-1.060406,54.152942],[-1.057115,54.15141],[-1.056334,54.14993],[-1.053947,54.149179],[-1.052371,54.147343],[-1.048388,54.14685],[-1.04634,54.147488],[-1.044343,54.145121],[-1.040747,54.143619],[-1.034213,54.143371],[-1.03371,54.142547],[-1.033793,54.140996],[-1.029317,54.140469],[-1.023041,54.137247],[-1.018418,54.136335],[-1.017887,54.135765],[-1.013607,54.135091],[-1.012812,54.133123],[-1.013689,54.131544],[-1.012667,54.129139],[-1.011628,54.127883],[-1.012538,54.126754],[-1.008538,54.123772],[-1.012373,54.119786],[-1.01563,54.115497],[-1.015939,54.114688],[-1.01472,54.113964],[-1.015586,54.112081],[-1.015623,54.109329],[-1.016258,54.107924],[-1.019467,54.107841],[-1.021149,54.109423],[-1.023408,54.108285],[-1.025103,54.107933],[-1.025054,54.10663],[-1.033942,54.107391],[-1.043485,54.107547],[-1.043967,54.106268],[-1.042363,54.104783],[-1.040999,54.101585],[-1.040055,54.100729],[-1.039465,54.098384],[-1.0428,54.098276],[-1.045758,54.096239],[-1.046781,54.094523],[-1.054582,54.089156],[-1.057765,54.088195],[-1.060196,54.085131],[-1.05411,54.083288],[-1.054309,54.082265],[-1.052236,54.081669],[-1.046451,54.0791],[-1.049463,54.075723],[-1.045153,54.075056],[-1.042035,54.077688],[-1.039148,54.075983],[-1.03959,54.073695],[-1.042147,54.07217],[-1.042799,54.071023],[-1.045868,54.069455],[-1.054482,54.066964],[-1.055655,54.067406],[-1.058167,54.063965],[-1.059356,54.059083],[-1.060605,54.056777],[-1.059712,54.056607],[-1.059712,54.056883],[-1.047458,54.054442],[-1.03586,54.053615],[-1.028464,54.052764],[-1.024462,54.052036],[-1.014378,54.049322],[-1.012435,54.051308],[-1.008021,54.053274],[-1.006209,54.053853],[-1.00443,54.055567],[-1.002085,54.055263],[-1.002078,54.053757],[-1.000681,54.051977],[-1.000922,54.051518],[-0.998668,54.050373],[-0.998154,54.049326],[-0.996575,54.049049],[-0.996016,54.048146],[-0.993849,54.04725],[-0.994971,54.046174],[-0.993829,54.045544],[-0.992942,54.043748],[-0.99325,54.042224],[-0.992375,54.041711],[-0.989273,54.041706],[-0.988287,54.040646],[-0.985509,54.039593],[-0.984593,54.038828],[-0.982312,54.039484],[-0.981318,54.033826],[-0.982243,54.030904],[-0.975795,54.030103],[-0.973583,54.029369],[-0.971194,54.027641],[-0.970188,54.025901],[-0.970688,54.023084],[-0.966873,54.022967],[-0.971766,54.020391],[-0.979422,54.01742],[-0.976941,54.015774],[-0.982754,54.01003],[-0.981301,54.009146],[-0.979811,54.007482],[-0.979349,54.005311],[-0.980841,54.003949],[-0.984704,54.00255],[-0.984499,54.002231],[-0.979996,54.002848],[-0.980149,54.003244],[-0.975369,54.004732],[-0.973845,54.003689],[-0.972808,54.001875],[-0.97192,53.99671],[-0.979057,53.995971],[-0.978836,53.994527],[-0.983155,53.993307],[-0.98125,53.991154],[-0.988031,53.989012],[-0.990649,53.987602],[-0.992746,53.985849],[-0.994715,53.985326],[-0.994083,53.984444],[-0.995818,53.983981],[-0.994837,53.983064],[-0.99318,53.98277],[-0.991059,53.981923],[-0.984658,53.981548],[-0.980354,53.98233],[-0.979243,53.983041],[-0.976312,53.982085],[-0.973379,53.984888],[-0.972693,53.984588],[-0.970081,53.984822],[-0.967045,53.985919],[-0.962242,53.984517],[-0.95768,53.983958],[-0.956577,53.985071],[-0.953263,53.986507],[-0.944362,53.989128],[-0.935747,53.989661],[-0.934077,53.989238],[-0.932572,53.990106],[-0.927779,53.990829],[-0.925295,53.991518],[-0.920615,53.991952],[-0.915247,53.993147],[-0.913247,53.992055],[-0.911936,53.992894],[-0.911897,53.995448],[-0.909555,53.996326],[-0.907491,53.997548],[-0.903702,53.998707],[-0.901345,53.998813],[-0.899959,53.999726],[-0.898812,53.998777],[-0.897417,53.998532],[-0.894885,53.999094],[-0.893535,53.999768],[-0.892473,54.001615],[-0.890879,54.003098],[-0.889921,54.007071],[-0.888556,54.009515],[-0.886702,54.010527],[-0.880511,54.011996],[-0.877669,54.013557],[-0.877243,54.014926],[-0.878761,54.016883],[-0.876321,54.017626],[-0.875083,54.017611],[-0.870408,54.016705],[-0.868807,54.017106],[-0.86349,54.017335],[-0.859732,54.016395],[-0.855723,54.017629],[-0.848618,54.018556],[-0.845344,54.020003],[-0.84303,54.021611],[-0.842404,54.021104],[-0.837002,54.021905],[-0.836541,54.021267],[-0.826993,54.021272],[-0.823515,54.02083],[-0.820366,54.020873],[-0.81567,54.021773],[-0.808476,54.022369],[-0.803322,54.023355],[-0.803254,54.02397],[-0.798988,54.024091],[-0.800302,54.019984],[-0.799248,54.019052],[-0.795548,54.01996],[-0.793971,54.019953],[-0.79297,54.020597],[-0.779959,54.02304],[-0.778837,54.023552],[-0.775092,54.023827],[-0.769706,54.023485],[-0.766344,54.023692],[-0.761565,54.025005],[-0.752608,54.026098],[-0.749437,54.026959],[-0.744652,54.027567],[-0.734257,54.030259],[-0.732272,54.026557],[-0.730592,54.02173],[-0.730489,54.012701],[-0.727838,54.012715],[-0.726198,54.012271],[-0.719698,54.012322],[-0.719262,54.010704],[-0.71806,54.010106],[-0.715062,54.010488],[-0.71329,54.011066],[-0.710746,54.011171],[-0.709645,54.010467],[-0.70937,54.00898],[-0.708665,54.008073],[-0.704903,54.006072],[-0.6986,54.007119],[-0.688242,54.008015],[-0.687955,54.008293],[-0.683682,54.008764],[-0.681799,54.010355],[-0.681592,54.011241],[-0.683072,54.012468],[-0.679418,54.015986],[-0.678416,54.018239],[-0.679112,54.019008],[-0.681802,54.01982],[-0.683824,54.020996],[-0.684146,54.022647],[-0.687509,54.023205],[-0.688484,54.024011],[-0.688226,54.025156],[-0.687219,54.026079],[-0.687753,54.028844],[-0.687301,54.030444],[-0.684336,54.032887],[-0.682674,54.033759],[-0.680899,54.033522],[-0.680244,54.034523],[-0.680475,54.035904],[-0.678502,54.03725],[-0.674247,54.038178],[-0.670574,54.037987],[-0.669732,54.037427],[-0.664261,54.037654],[-0.659485,54.03717],[-0.658929,54.038387],[-0.656319,54.04064],[-0.657974,54.042167],[-0.658018,54.043645],[-0.655739,54.044232],[-0.656299,54.045452],[-0.653655,54.045956],[-0.644654,54.055113],[-0.652431,54.059845],[-0.656231,54.061313],[-0.656494,54.061074],[-0.660317,54.0631],[-0.653676,54.064997],[-0.648114,54.066012],[-0.642923,54.066558],[-0.632197,54.068755],[-0.627463,54.068833],[-0.627749,54.070194],[-0.621516,54.069669],[-0.618457,54.06983],[-0.615524,54.070494],[-0.6097,54.07327],[-0.607985,54.074837],[-0.605857,54.077799],[-0.602738,54.079074],[-0.598748,54.082207],[-0.594105,54.084215],[-0.592292,54.086263],[-0.591005,54.087062],[-0.583959,54.088479],[-0.566467,54.090306],[-0.563137,54.094],[-0.556676,54.092714],[-0.550629,54.092684],[-0.545521,54.09106],[-0.541817,54.091528],[-0.535833,54.08767],[-0.534031,54.08718],[-0.527928,54.089339],[-0.526311,54.08738],[-0.525106,54.086552],[-0.524617,54.085475],[-0.519925,54.086987],[-0.513276,54.090291],[-0.502884,54.094095],[-0.49689,54.097232],[-0.494011,54.099185],[-0.489851,54.100885],[-0.465943,54.107633],[-0.468326,54.111251],[-0.45868,54.114033],[-0.459439,54.11533],[-0.454351,54.116762],[-0.454703,54.119969],[-0.453704,54.120707],[-0.45854,54.125974],[-0.452122,54.127986],[-0.443725,54.131688],[-0.438529,54.133111],[-0.430653,54.136641],[-0.427094,54.137443],[-0.43266,54.157521],[-0.430931,54.158151],[-0.433114,54.160623],[-0.433169,54.164073],[-0.422927,54.166315],[-0.424557,54.169575],[-0.422645,54.1701],[-0.422538,54.171265],[-0.418109,54.17122],[-0.41825,54.174063]]]},"properties":{"LAD22CD":"E07000167","LAD22NM":"Ryedale","BNG_E":475590,"BNG_N":478884,"LONG":-0.84278,"LAT":54.20016,"GlobalID":"8ecee3de-2d20-45b5-acb1-5399f3dfe326"},"id":176}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.212573,54.157692],[-0.21625,54.157667],[-0.218719,54.157988],[-0.220694,54.158676],[-0.227195,54.159912],[-0.233821,54.162007],[-0.245364,54.166552],[-0.263394,54.175868],[-0.271533,54.181152],[-0.277271,54.186561],[-0.280544,54.190743],[-0.283138,54.195012],[-0.285449,54.202842],[-0.284728,54.203544],[-0.284345,54.207844],[-0.283388,54.21067],[-0.281053,54.214147],[-0.277483,54.217192],[-0.275373,54.217736],[-0.271003,54.216909],[-0.266269,54.216476],[-0.269033,54.218326],[-0.273119,54.218455],[-0.273221,54.218987],[-0.275858,54.219333],[-0.277433,54.22009],[-0.282508,54.221263],[-0.286418,54.223151],[-0.289827,54.223799],[-0.292182,54.224861],[-0.293647,54.225166],[-0.296738,54.225084],[-0.299162,54.22645],[-0.302598,54.227152],[-0.312903,54.228557],[-0.313503,54.229109],[-0.313175,54.230639],[-0.31516,54.23245],[-0.317497,54.232897],[-0.318777,54.233874],[-0.3243,54.235555],[-0.328347,54.236336],[-0.334603,54.238128],[-0.337254,54.239654],[-0.337585,54.241647],[-0.339208,54.24258],[-0.345401,54.24201],[-0.34657,54.24119],[-0.349037,54.240736],[-0.351047,54.240877],[-0.356605,54.242998],[-0.363055,54.244487],[-0.36554,54.245966],[-0.369655,54.249446],[-0.369947,54.250508],[-0.369263,54.251906],[-0.368289,54.252612],[-0.366278,54.252798],[-0.366284,54.254052],[-0.367808,54.253613],[-0.37154,54.256982],[-0.375279,54.259418],[-0.375513,54.261415],[-0.376487,54.262637],[-0.378455,54.262551],[-0.381439,54.263084],[-0.38383,54.263992],[-0.388473,54.266664],[-0.389256,54.268727],[-0.391396,54.269093],[-0.392561,54.271411],[-0.394578,54.272366],[-0.396676,54.274496],[-0.397673,54.277539],[-0.397146,54.279432],[-0.395735,54.281653],[-0.392211,54.283836],[-0.387295,54.283829],[-0.386385,54.283547],[-0.384351,54.285835],[-0.384694,54.28813],[-0.386638,54.290285],[-0.388888,54.290651],[-0.394917,54.288142],[-0.396654,54.288005],[-0.399937,54.288876],[-0.406302,54.292386],[-0.407487,54.293549],[-0.410376,54.299567],[-0.410315,54.300477],[-0.408958,54.301359],[-0.409815,54.302337],[-0.407513,54.304507],[-0.407703,54.305245],[-0.411341,54.305906],[-0.412364,54.306826],[-0.414099,54.307085],[-0.415845,54.309063],[-0.415812,54.309652],[-0.417633,54.310595],[-0.418117,54.312093],[-0.417709,54.312719],[-0.418606,54.314204],[-0.418056,54.314818],[-0.419189,54.317053],[-0.418646,54.318518],[-0.418828,54.319882],[-0.417172,54.320463],[-0.419455,54.321614],[-0.421197,54.323701],[-0.420872,54.32477],[-0.421661,54.325815],[-0.419625,54.328123],[-0.418193,54.330575],[-0.417082,54.331444],[-0.420752,54.332799],[-0.421629,54.33609],[-0.42336,54.339064],[-0.42855,54.340207],[-0.431142,54.339908],[-0.432781,54.340677],[-0.430968,54.345087],[-0.431338,54.346824],[-0.432809,54.348899],[-0.433262,54.350545],[-0.436035,54.352749],[-0.439186,54.356635],[-0.439929,54.356977],[-0.44473,54.357616],[-0.446259,54.358479],[-0.446853,54.360143],[-0.445827,54.362121],[-0.445932,54.363606],[-0.447333,54.365464],[-0.447052,54.367396],[-0.449812,54.372418],[-0.454607,54.375959],[-0.457724,54.381441],[-0.461095,54.384891],[-0.463215,54.388555],[-0.468766,54.393241],[-0.471691,54.397],[-0.473757,54.397822],[-0.475238,54.398885],[-0.478647,54.399033],[-0.482234,54.401725],[-0.484545,54.402862],[-0.48688,54.405062],[-0.490141,54.406456],[-0.491556,54.407927],[-0.49442,54.406744],[-0.50021,54.406828],[-0.504196,54.407618],[-0.50798,54.409904],[-0.513405,54.411571],[-0.517835,54.414216],[-0.522915,54.416224],[-0.525286,54.418359],[-0.528882,54.422691],[-0.529161,54.423518],[-0.530876,54.424994],[-0.531349,54.427093],[-0.532291,54.428615],[-0.53236,54.43127],[-0.531694,54.431968],[-0.532696,54.43353],[-0.531506,54.434739],[-0.531335,54.436613],[-0.526358,54.438422],[-0.523579,54.439957],[-0.522191,54.441232],[-0.521178,54.44403],[-0.521588,54.445439],[-0.520828,54.446193],[-0.521447,54.446924],[-0.523969,54.448161],[-0.525702,54.448427],[-0.526236,54.449458],[-0.528736,54.450164],[-0.53095,54.450227],[-0.533301,54.451337],[-0.534664,54.452892],[-0.53399,54.453725],[-0.537154,54.45472],[-0.538716,54.455914],[-0.540291,54.457996],[-0.542512,54.459419],[-0.544812,54.45983],[-0.54543,54.460517],[-0.547305,54.461299],[-0.549726,54.461224],[-0.55014,54.462004],[-0.55366,54.463561],[-0.554826,54.464705],[-0.556869,54.465042],[-0.557447,54.466776],[-0.559365,54.467961],[-0.559572,54.469891],[-0.561429,54.471063],[-0.562034,54.472981],[-0.564008,54.475942],[-0.56629,54.477689],[-0.568736,54.478889],[-0.568963,54.47977],[-0.570765,54.479885],[-0.572612,54.481162],[-0.577477,54.482613],[-0.57884,54.483342],[-0.580205,54.48306],[-0.583845,54.483347],[-0.585121,54.483865],[-0.588141,54.485693],[-0.58963,54.488292],[-0.592834,54.487661],[-0.594892,54.488628],[-0.596809,54.488518],[-0.59841,54.489423],[-0.600376,54.489105],[-0.605343,54.490165],[-0.609765,54.490587],[-0.612324,54.489157],[-0.612892,54.488196],[-0.612721,54.487069],[-0.611483,54.486482],[-0.609844,54.483621],[-0.609967,54.482887],[-0.611385,54.48116],[-0.61309,54.479951],[-0.61367,54.477678],[-0.614865,54.478563],[-0.613785,54.479842],[-0.61349,54.481051],[-0.612232,54.481998],[-0.611766,54.48371],[-0.612576,54.483973],[-0.612675,54.485571],[-0.614183,54.48752],[-0.614642,54.488671],[-0.614161,54.490894],[-0.625616,54.491746],[-0.63177,54.493733],[-0.639928,54.495575],[-0.644498,54.495788],[-0.654786,54.497512],[-0.669136,54.501689],[-0.675033,54.506041],[-0.674314,54.507173],[-0.673958,54.510178],[-0.672679,54.510949],[-0.672632,54.512514],[-0.67579,54.513154],[-0.678487,54.51475],[-0.678376,54.516153],[-0.681058,54.517939],[-0.682348,54.519734],[-0.687808,54.520458],[-0.688615,54.520984],[-0.692288,54.520198],[-0.693886,54.52058],[-0.694697,54.521689],[-0.697416,54.522675],[-0.697459,54.523232],[-0.699797,54.525554],[-0.70238,54.525974],[-0.703844,54.526617],[-0.705307,54.528711],[-0.705058,54.52965],[-0.705751,54.530431],[-0.708251,54.531665],[-0.709938,54.531791],[-0.713021,54.533689],[-0.714604,54.53356],[-0.716374,54.534314],[-0.716322,54.532225],[-0.718393,54.530914],[-0.721827,54.530229],[-0.726585,54.530573],[-0.728724,54.52979],[-0.73071,54.528109],[-0.734589,54.527498],[-0.737933,54.527497],[-0.741902,54.527853],[-0.744581,54.528584],[-0.748795,54.531362],[-0.7495,54.533465],[-0.74802,54.534256],[-0.746964,54.535601],[-0.747819,54.537112],[-0.749218,54.537917],[-0.749726,54.540093],[-0.75108,54.54197],[-0.753314,54.542394],[-0.754478,54.543353],[-0.758236,54.543849],[-0.76031,54.543499],[-0.761871,54.543734],[-0.767228,54.546299],[-0.767628,54.547681],[-0.765836,54.548688],[-0.767841,54.551255],[-0.769591,54.552102],[-0.771639,54.552028],[-0.77425,54.55326],[-0.775389,54.55474],[-0.774489,54.557392],[-0.776248,54.556952],[-0.77897,54.557131],[-0.781566,54.557987],[-0.783747,54.559332],[-0.785629,54.558772],[-0.789735,54.558589],[-0.792207,54.559472],[-0.793967,54.558586],[-0.794265,54.557502],[-0.7961,54.556615],[-0.795547,54.554874],[-0.798787,54.555618],[-0.797252,54.554146],[-0.800581,54.551838],[-0.804925,54.550895],[-0.806465,54.551432],[-0.80812,54.551241],[-0.8096,54.551713],[-0.810528,54.551219],[-0.813066,54.552042],[-0.814734,54.551686],[-0.815676,54.552507],[-0.818921,54.550703],[-0.8204,54.549362],[-0.821844,54.549077],[-0.825275,54.549073],[-0.826985,54.548575],[-0.828002,54.547364],[-0.829772,54.546821],[-0.830851,54.545536],[-0.832498,54.545219],[-0.834801,54.543356],[-0.836662,54.542633],[-0.838666,54.5398],[-0.841873,54.537373],[-0.842154,54.53602],[-0.843902,54.534799],[-0.844596,54.53348],[-0.848647,54.530004],[-0.850701,54.526339],[-0.849928,54.524969],[-0.85065,54.523425],[-0.849948,54.519955],[-0.852236,54.51761],[-0.85129,54.513684],[-0.850207,54.511461],[-0.852327,54.510377],[-0.852347,54.505629],[-0.853321,54.502714],[-0.848615,54.495532],[-0.845059,54.492637],[-0.843942,54.491225],[-0.844139,54.48955],[-0.848531,54.487973],[-0.856262,54.487849],[-0.863494,54.489083],[-0.866979,54.489241],[-0.875781,54.491165],[-0.876337,54.495389],[-0.877173,54.494962],[-0.880645,54.496471],[-0.880825,54.497047],[-0.894213,54.496912],[-0.895786,54.495603],[-0.901416,54.494202],[-0.916366,54.492224],[-0.922947,54.491017],[-0.925397,54.491078],[-0.929035,54.491638],[-0.932611,54.491455],[-0.943988,54.488689],[-0.952952,54.488036],[-0.967829,54.497268],[-0.987387,54.500858],[-1.003401,54.503012],[-1.023801,54.502045],[-1.036852,54.494044],[-1.033909,54.492924],[-1.031586,54.491327],[-1.03049,54.489159],[-1.030589,54.488336],[-1.025797,54.485141],[-1.023075,54.483993],[-1.023,54.483356],[-1.01907,54.482506],[-1.018702,54.481377],[-1.019091,54.480154],[-1.018529,54.479696],[-1.018295,54.478008],[-1.016454,54.476643],[-1.009533,54.475525],[-1.004128,54.475481],[-0.999444,54.476019],[-0.994701,54.47737],[-0.991625,54.478812],[-0.989528,54.479499],[-0.983517,54.478877],[-0.979962,54.471942],[-0.976121,54.467678],[-0.972092,54.460846],[-0.974057,54.461242],[-0.976425,54.459756],[-0.978178,54.459496],[-0.981729,54.457672],[-0.984803,54.457452],[-0.988402,54.458816],[-0.994333,54.458117],[-0.995991,54.457456],[-0.996906,54.457993],[-1.000662,54.458685],[-1.003457,54.458333],[-1.006851,54.458483],[-1.007893,54.458267],[-1.010073,54.458837],[-1.01124,54.459632],[-1.01315,54.460016],[-1.019322,54.459634],[-1.021494,54.460006],[-1.025932,54.459158],[-1.029887,54.459316],[-1.032887,54.458736],[-1.033941,54.45899],[-1.037764,54.457433],[-1.039263,54.456221],[-1.0416,54.45508],[-1.043489,54.452829],[-1.04839,54.452146],[-1.049405,54.450797],[-1.051465,54.450075],[-1.052784,54.449186],[-1.053345,54.447277],[-1.055004,54.446035],[-1.055496,54.444067],[-1.056487,54.443279],[-1.057506,54.440917],[-1.052664,54.436959],[-1.053942,54.434],[-1.055564,54.427435],[-1.064696,54.42114],[-1.059381,54.412578],[-1.026873,54.415344],[-1.009167,54.407165],[-0.987841,54.395954],[-0.9759,54.396912],[-0.961531,54.402545],[-0.950443,54.408858],[-0.926891,54.400621],[-0.91857,54.400828],[-0.917565,54.400645],[-0.866372,54.387434],[-0.859946,54.386519],[-0.848291,54.383402],[-0.834558,54.380884],[-0.82371,54.382527],[-0.816818,54.371589],[-0.813644,54.368475],[-0.812091,54.367876],[-0.811561,54.366797],[-0.811651,54.36553],[-0.809605,54.363371],[-0.808506,54.359864],[-0.807794,54.359749],[-0.805576,54.358195],[-0.80146,54.357408],[-0.799305,54.355845],[-0.797458,54.355571],[-0.79424,54.35433],[-0.792786,54.354603],[-0.789677,54.354086],[-0.787543,54.354982],[-0.786489,54.354477],[-0.785194,54.355066],[-0.782439,54.354831],[-0.778651,54.355714],[-0.774413,54.357204],[-0.773743,54.356954],[-0.771498,54.358203],[-0.771046,54.359169],[-0.768968,54.3602],[-0.766118,54.362099],[-0.761985,54.362663],[-0.759158,54.362733],[-0.75822,54.363487],[-0.756716,54.363346],[-0.756228,54.364963],[-0.754647,54.366623],[-0.753531,54.36689],[-0.753225,54.368595],[-0.750465,54.368247],[-0.748264,54.36724],[-0.746629,54.365075],[-0.745362,54.364716],[-0.743901,54.363168],[-0.74271,54.360851],[-0.742689,54.358262],[-0.741231,54.356937],[-0.740138,54.356484],[-0.736015,54.356169],[-0.732988,54.355269],[-0.711311,54.357195],[-0.711432,54.359078],[-0.709695,54.36146],[-0.703238,54.3649],[-0.700034,54.365733],[-0.69549,54.365347],[-0.692146,54.365486],[-0.689511,54.367502],[-0.687955,54.369728],[-0.687631,54.370956],[-0.688117,54.372857],[-0.684025,54.373496],[-0.681225,54.372958],[-0.680317,54.373163],[-0.677994,54.374571],[-0.675073,54.375164],[-0.672979,54.374674],[-0.671521,54.374797],[-0.66951,54.374362],[-0.665237,54.37227],[-0.661898,54.369837],[-0.662403,54.369479],[-0.661296,54.36824],[-0.661282,54.366528],[-0.632616,54.375952],[-0.634447,54.366052],[-0.633927,54.364506],[-0.627628,54.359085],[-0.629262,54.353452],[-0.620912,54.343465],[-0.616468,54.340911],[-0.614857,54.339166],[-0.613725,54.338754],[-0.612281,54.337348],[-0.610628,54.336642],[-0.607461,54.335913],[-0.606434,54.335115],[-0.60455,54.334684],[-0.601942,54.332897],[-0.600578,54.332297],[-0.598148,54.331855],[-0.595819,54.330925],[-0.593274,54.330698],[-0.590072,54.329424],[-0.587102,54.326356],[-0.587381,54.325398],[-0.584891,54.323912],[-0.584874,54.320807],[-0.583459,54.319496],[-0.578411,54.319015],[-0.575594,54.318042],[-0.574213,54.318412],[-0.573633,54.317148],[-0.572603,54.316425],[-0.570783,54.316421],[-0.568907,54.315976],[-0.568378,54.314291],[-0.567714,54.313871],[-0.568476,54.312363],[-0.578495,54.311165],[-0.579997,54.310572],[-0.584109,54.306283],[-0.586493,54.305431],[-0.587872,54.304265],[-0.592569,54.303307],[-0.594723,54.303422],[-0.597864,54.302805],[-0.598886,54.30227],[-0.598841,54.301332],[-0.600809,54.299616],[-0.604583,54.298069],[-0.605604,54.292997],[-0.609266,54.286256],[-0.609923,54.286054],[-0.609827,54.282647],[-0.613421,54.27864],[-0.613049,54.277011],[-0.610364,54.274998],[-0.613094,54.2697],[-0.610621,54.264944],[-0.607605,54.260939],[-0.60788,54.255061],[-0.607041,54.248567],[-0.604935,54.245434],[-0.602054,54.244205],[-0.600156,54.242487],[-0.599041,54.240475],[-0.597909,54.236187],[-0.598971,54.232309],[-0.600495,54.230876],[-0.602702,54.229845],[-0.603632,54.223054],[-0.605973,54.217758],[-0.607469,54.213028],[-0.611963,54.21321],[-0.614237,54.211035],[-0.614737,54.209855],[-0.616624,54.208564],[-0.618453,54.205515],[-0.618183,54.204947],[-0.615641,54.205001],[-0.614699,54.205723],[-0.612237,54.204173],[-0.6118,54.204863],[-0.610286,54.205176],[-0.606951,54.204278],[-0.605725,54.203014],[-0.60452,54.202449],[-0.603098,54.202812],[-0.601937,54.202187],[-0.599892,54.202003],[-0.59916,54.200229],[-0.596943,54.199512],[-0.593503,54.200679],[-0.590608,54.200325],[-0.589088,54.199851],[-0.587446,54.198792],[-0.585924,54.19862],[-0.584239,54.19965],[-0.581378,54.199825],[-0.578636,54.20036],[-0.576381,54.201454],[-0.571908,54.202002],[-0.568803,54.20191],[-0.566418,54.202388],[-0.565032,54.201213],[-0.563395,54.201149],[-0.56221,54.199561],[-0.562063,54.198395],[-0.560586,54.198113],[-0.557323,54.196567],[-0.556043,54.195563],[-0.553456,54.194136],[-0.551551,54.194294],[-0.551652,54.192902],[-0.550411,54.192576],[-0.548954,54.192877],[-0.548642,54.193724],[-0.54475,54.193935],[-0.543534,54.195739],[-0.540815,54.19739],[-0.539845,54.198259],[-0.540092,54.199079],[-0.535088,54.200703],[-0.53293,54.200208],[-0.532113,54.200833],[-0.530625,54.199757],[-0.528993,54.200202],[-0.527212,54.19968],[-0.524797,54.200118],[-0.52182,54.199202],[-0.519981,54.197775],[-0.51619,54.198862],[-0.515018,54.200081],[-0.513035,54.201168],[-0.512083,54.200142],[-0.510868,54.200319],[-0.505934,54.203632],[-0.504955,54.20518],[-0.50018,54.20512],[-0.498104,54.2063],[-0.496973,54.206012],[-0.496739,54.204996],[-0.495461,54.203761],[-0.493724,54.202979],[-0.49093,54.2041],[-0.487205,54.204885],[-0.486571,54.20607],[-0.484251,54.206528],[-0.483988,54.2072],[-0.482011,54.207509],[-0.481722,54.208598],[-0.475482,54.209838],[-0.474598,54.210602],[-0.473027,54.210433],[-0.47255,54.211499],[-0.471138,54.211943],[-0.467562,54.211736],[-0.457004,54.214476],[-0.451498,54.214242],[-0.448334,54.214986],[-0.447222,54.214375],[-0.445236,54.214375],[-0.44295,54.215534],[-0.441423,54.215761],[-0.437497,54.215023],[-0.43461,54.205759],[-0.431447,54.200943],[-0.428898,54.199577],[-0.426726,54.193117],[-0.423965,54.188703],[-0.423165,54.184074],[-0.421656,54.179818],[-0.418661,54.175551],[-0.41825,54.174063],[-0.411918,54.174747],[-0.408553,54.175365],[-0.408271,54.175835],[-0.404077,54.175849],[-0.403258,54.174723],[-0.396416,54.175272],[-0.390747,54.176521],[-0.388,54.174551],[-0.382869,54.171914],[-0.38071,54.170361],[-0.374526,54.162564],[-0.373318,54.156275],[-0.375007,54.156224],[-0.374928,54.154113],[-0.363946,54.153158],[-0.360038,54.15312],[-0.355277,54.149607],[-0.350753,54.149773],[-0.346397,54.146873],[-0.342493,54.148532],[-0.336947,54.149563],[-0.335283,54.149674],[-0.328807,54.149068],[-0.323842,54.150297],[-0.323101,54.149264],[-0.323299,54.147492],[-0.322653,54.145276],[-0.313766,54.146403],[-0.311673,54.142744],[-0.307661,54.137901],[-0.304083,54.13627],[-0.300008,54.136734],[-0.291564,54.138758],[-0.290566,54.139756],[-0.288223,54.139409],[-0.283117,54.139782],[-0.276452,54.139599],[-0.272781,54.139268],[-0.269069,54.138333],[-0.26542,54.140558],[-0.252097,54.1388],[-0.245204,54.137129],[-0.237225,54.137249],[-0.229747,54.13244],[-0.229844,54.134302],[-0.229066,54.135727],[-0.226555,54.136437],[-0.222685,54.137041],[-0.221309,54.138864],[-0.22141,54.142041],[-0.216928,54.148348],[-0.212573,54.157692]]]},"properties":{"LAD22CD":"E07000168","LAD22NM":"Scarborough","BNG_E":495798,"BNG_N":495548,"LONG":-0.52778,"LAT":54.3465,"GlobalID":"316f21c5-ba99-4ad7-b288-f72e0d917c22"},"id":177}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.923518,53.880766],[-0.925385,53.880751],[-0.926835,53.882562],[-0.928584,53.88226],[-0.929801,53.881306],[-0.93047,53.879528],[-0.932678,53.879497],[-0.934974,53.880019],[-0.934453,53.881349],[-0.934521,53.882943],[-0.935603,53.884245],[-0.93817,53.885832],[-0.938612,53.887541],[-0.939591,53.887898],[-0.941584,53.887519],[-0.944072,53.888122],[-0.945155,53.886963],[-0.948249,53.886093],[-0.948027,53.884867],[-0.957503,53.88431],[-0.963669,53.882897],[-0.967709,53.882838],[-0.980939,53.878383],[-0.986908,53.877142],[-0.992833,53.875211],[-0.998544,53.880967],[-1.003005,53.886205],[-1.008205,53.889995],[-1.018208,53.888486],[-1.021543,53.888372],[-1.023748,53.886416],[-1.02708,53.886395],[-1.029402,53.885027],[-1.036065,53.883187],[-1.04652,53.880826],[-1.051151,53.878819],[-1.053475,53.877319],[-1.056808,53.876431],[-1.061156,53.875805],[-1.06496,53.874586],[-1.068551,53.879087],[-1.071111,53.879781],[-1.073232,53.879842],[-1.076303,53.88221],[-1.077281,53.882471],[-1.077671,53.883592],[-1.079302,53.883512],[-1.081303,53.882513],[-1.083989,53.882228],[-1.085781,53.88246],[-1.087472,53.884298],[-1.090051,53.884931],[-1.0912,53.885816],[-1.093708,53.884451],[-1.095331,53.884559],[-1.095613,53.88301],[-1.096385,53.882205],[-1.099721,53.880363],[-1.099791,53.877389],[-1.101499,53.875866],[-1.104544,53.875648],[-1.106357,53.875071],[-1.112343,53.87174],[-1.11706,53.867861],[-1.119325,53.866671],[-1.121719,53.866004],[-1.125816,53.86545],[-1.127065,53.864561],[-1.127715,53.863008],[-1.127239,53.86205],[-1.123895,53.859384],[-1.121831,53.858409],[-1.118463,53.857392],[-1.117862,53.856248],[-1.118077,53.854935],[-1.119596,53.852728],[-1.123561,53.849786],[-1.123904,53.848889],[-1.123554,53.845925],[-1.124158,53.84496],[-1.125679,53.843926],[-1.127074,53.843531],[-1.130701,53.84383],[-1.132743,53.84365],[-1.133637,53.842644],[-1.129782,53.83834],[-1.129251,53.835496],[-1.127743,53.833784],[-1.126258,53.83319],[-1.124011,53.833991],[-1.120317,53.836333],[-1.118141,53.836948],[-1.114611,53.837303],[-1.104805,53.837591],[-1.100025,53.837107],[-1.098721,53.836717],[-1.092899,53.834215],[-1.089532,53.832127],[-1.088473,53.83193],[-1.083606,53.83489],[-1.078703,53.836232],[-1.076374,53.836147],[-1.075542,53.835414],[-1.075295,53.832867],[-1.079397,53.828185],[-1.083657,53.824787],[-1.084126,53.82383],[-1.083863,53.822569],[-1.081561,53.820854],[-1.079382,53.819858],[-1.074368,53.8197],[-1.069838,53.818813],[-1.067134,53.817628],[-1.063652,53.815131],[-1.061405,53.813962],[-1.052726,53.811652],[-1.049203,53.811265],[-1.044192,53.81125],[-1.042264,53.810607],[-1.042509,53.809477],[-1.044807,53.808177],[-1.046217,53.806788],[-1.047547,53.803868],[-1.047745,53.796052],[-1.046229,53.792695],[-1.045794,53.790844],[-1.047659,53.78919],[-1.049959,53.788827],[-1.054536,53.788755],[-1.064548,53.787545],[-1.06583,53.786518],[-1.064412,53.785306],[-1.062388,53.784346],[-1.051129,53.781743],[-1.044747,53.77961],[-1.036494,53.77767],[-1.032704,53.777142],[-1.028196,53.777628],[-1.02678,53.777506],[-1.024049,53.776112],[-1.021335,53.77359],[-1.020763,53.772036],[-1.021576,53.770858],[-1.02274,53.770547],[-1.026886,53.77096],[-1.028402,53.770676],[-1.03018,53.769348],[-1.033281,53.765531],[-1.032414,53.764262],[-1.025855,53.760557],[-1.024139,53.760162],[-1.021045,53.760625],[-1.017962,53.762067],[-1.010821,53.764558],[-1.003184,53.769174],[-1.001687,53.769694],[-1.000044,53.7691],[-0.999067,53.766368],[-0.997749,53.765588],[-0.994646,53.765042],[-0.987675,53.765615],[-0.986183,53.765227],[-0.985427,53.763742],[-0.987387,53.761812],[-0.987598,53.7609],[-0.984975,53.75708],[-0.980032,53.752798],[-0.976129,53.750955],[-0.973166,53.750159],[-0.972785,53.750403],[-0.964191,53.750634],[-0.9567,53.752889],[-0.951579,53.753769],[-0.944565,53.756702],[-0.939746,53.758154],[-0.936332,53.759965],[-0.934266,53.761634],[-0.932093,53.76219],[-0.929924,53.763227],[-0.928306,53.765463],[-0.928354,53.770296],[-0.929438,53.773782],[-0.930321,53.774299],[-0.932535,53.774441],[-0.935434,53.776992],[-0.936687,53.779872],[-0.934279,53.784689],[-0.93411,53.788381],[-0.933496,53.789978],[-0.931176,53.791306],[-0.928047,53.797158],[-0.928547,53.79768],[-0.931072,53.798273],[-0.934233,53.801092],[-0.934499,53.801777],[-0.932886,53.803842],[-0.930429,53.804685],[-0.929552,53.80541],[-0.928098,53.809216],[-0.924845,53.81236],[-0.921773,53.814044],[-0.920086,53.815977],[-0.922347,53.817018],[-0.924222,53.816062],[-0.927267,53.819533],[-0.930262,53.820837],[-0.933209,53.820686],[-0.939084,53.822557],[-0.940558,53.823451],[-0.940272,53.83259],[-0.9435,53.835286],[-0.946542,53.842003],[-0.947025,53.844802],[-0.945627,53.84665],[-0.944995,53.848243],[-0.946353,53.850024],[-0.946315,53.851175],[-0.945275,53.852567],[-0.941997,53.854813],[-0.944972,53.857542],[-0.948056,53.861096],[-0.948132,53.862116],[-0.947411,53.863541],[-0.946139,53.864769],[-0.944647,53.865516],[-0.940598,53.866456],[-0.939052,53.867735],[-0.938726,53.869055],[-0.940784,53.872947],[-0.940746,53.874073],[-0.938174,53.875748],[-0.929759,53.876545],[-0.924898,53.878031],[-0.922687,53.879474],[-0.923518,53.880766]]],[[[-1.195638,53.92238],[-1.198812,53.922454],[-1.202126,53.923071],[-1.20513,53.924448],[-1.205143,53.925623],[-1.214308,53.926316],[-1.217609,53.925997],[-1.218762,53.925191],[-1.221789,53.925044],[-1.223596,53.925782],[-1.22684,53.927927],[-1.226618,53.92854],[-1.228036,53.929218],[-1.227192,53.929942],[-1.22768,53.931811],[-1.229202,53.932042],[-1.233552,53.934542],[-1.236128,53.934863],[-1.238748,53.933076],[-1.244948,53.931611],[-1.251902,53.935601],[-1.255793,53.935454],[-1.262573,53.934332],[-1.265452,53.935029],[-1.269493,53.934985],[-1.270856,53.934659],[-1.268935,53.931477],[-1.265962,53.930408],[-1.262698,53.927772],[-1.262434,53.927084],[-1.263433,53.92587],[-1.262609,53.925082],[-1.26196,53.923254],[-1.263274,53.921745],[-1.263766,53.920356],[-1.260807,53.919813],[-1.26659,53.917676],[-1.27027,53.916975],[-1.269099,53.916231],[-1.267553,53.914151],[-1.267991,53.911148],[-1.26927,53.907528],[-1.27013,53.906672],[-1.269232,53.902039],[-1.26679,53.899493],[-1.269209,53.898286],[-1.270338,53.896976],[-1.272099,53.895821],[-1.273538,53.893595],[-1.275524,53.892926],[-1.278552,53.891431],[-1.279248,53.89257],[-1.281687,53.892677],[-1.281249,53.893921],[-1.282552,53.895089],[-1.28456,53.894693],[-1.283482,53.897037],[-1.283709,53.897402],[-1.286846,53.898088],[-1.289033,53.899423],[-1.291651,53.899741],[-1.291474,53.900895],[-1.28878,53.901036],[-1.286969,53.902212],[-1.285452,53.900931],[-1.283858,53.900859],[-1.282146,53.901516],[-1.282456,53.902221],[-1.285131,53.902818],[-1.287737,53.904105],[-1.289192,53.904424],[-1.296724,53.902521],[-1.297681,53.902858],[-1.296609,53.904433],[-1.297276,53.904861],[-1.30387,53.904452],[-1.30665,53.90531],[-1.308482,53.905471],[-1.313723,53.904702],[-1.319484,53.903965],[-1.321782,53.902921],[-1.321786,53.901169],[-1.322271,53.900457],[-1.318145,53.897544],[-1.317731,53.896349],[-1.317823,53.894084],[-1.316777,53.892026],[-1.317931,53.891849],[-1.317547,53.890146],[-1.317954,53.88875],[-1.32002,53.888528],[-1.319997,53.885398],[-1.320805,53.883788],[-1.315607,53.881682],[-1.31576,53.879491],[-1.319693,53.878958],[-1.317082,53.878484],[-1.318408,53.877474],[-1.314797,53.868672],[-1.311784,53.866875],[-1.312603,53.865317],[-1.315414,53.863342],[-1.318893,53.862287],[-1.323262,53.861673],[-1.331554,53.861535],[-1.341971,53.858957],[-1.349926,53.857635],[-1.35297,53.856751],[-1.349435,53.854987],[-1.347015,53.854192],[-1.34275,53.851518],[-1.338429,53.851744],[-1.340461,53.849104],[-1.342138,53.845173],[-1.338225,53.844244],[-1.332344,53.840959],[-1.328157,53.841295],[-1.326557,53.840423],[-1.325422,53.838135],[-1.326001,53.835893],[-1.327379,53.834873],[-1.32974,53.835825],[-1.331799,53.834849],[-1.333499,53.834816],[-1.334021,53.83381],[-1.332773,53.832791],[-1.328304,53.830132],[-1.322314,53.827454],[-1.315369,53.8236],[-1.314029,53.823154],[-1.309674,53.822895],[-1.310399,53.819918],[-1.307092,53.817618],[-1.303624,53.816536],[-1.305106,53.815051],[-1.307293,53.814513],[-1.307602,53.813632],[-1.309392,53.813708],[-1.312435,53.814376],[-1.313625,53.809658],[-1.314872,53.809557],[-1.314602,53.807783],[-1.313942,53.806828],[-1.314168,53.804858],[-1.313624,53.800881],[-1.311729,53.795447],[-1.312827,53.789364],[-1.311644,53.788678],[-1.313636,53.78609],[-1.313811,53.781556],[-1.311604,53.779699],[-1.312598,53.779298],[-1.303464,53.774928],[-1.306788,53.773044],[-1.298651,53.772635],[-1.296362,53.771863],[-1.291962,53.767194],[-1.290399,53.764267],[-1.290416,53.763079],[-1.291968,53.761415],[-1.292699,53.760148],[-1.296749,53.758954],[-1.294697,53.756278],[-1.294942,53.755463],[-1.297532,53.755837],[-1.298273,53.755614],[-1.3015,53.755735],[-1.305563,53.754735],[-1.307736,53.755144],[-1.308509,53.756495],[-1.312239,53.755888],[-1.312616,53.754163],[-1.312089,53.75218],[-1.312833,53.751179],[-1.312803,53.749547],[-1.315357,53.743681],[-1.311576,53.744557],[-1.310036,53.744538],[-1.307226,53.74274],[-1.303831,53.741895],[-1.302043,53.741725],[-1.299742,53.741646],[-1.296471,53.739601],[-1.293668,53.739362],[-1.292174,53.738864],[-1.289216,53.736656],[-1.286657,53.735387],[-1.283764,53.732012],[-1.279712,53.729303],[-1.277684,53.726515],[-1.276119,53.7259],[-1.273073,53.725669],[-1.271962,53.724924],[-1.270935,53.723294],[-1.270567,53.720134],[-1.269496,53.717887],[-1.269511,53.715783],[-1.268517,53.714909],[-1.263591,53.71405],[-1.257701,53.711852],[-1.256343,53.71177],[-1.254253,53.712694],[-1.252941,53.712829],[-1.247988,53.711725],[-1.242805,53.712317],[-1.238675,53.712396],[-1.229573,53.714905],[-1.228756,53.714578],[-1.227593,53.71288],[-1.228009,53.710454],[-1.226541,53.709883],[-1.223975,53.710618],[-1.224635,53.712352],[-1.221729,53.712859],[-1.219812,53.714419],[-1.217139,53.711249],[-1.217836,53.709545],[-1.218796,53.709311],[-1.218443,53.707096],[-1.215642,53.706945],[-1.215131,53.70549],[-1.203986,53.702121],[-1.201212,53.701838],[-1.198818,53.700733],[-1.199678,53.698726],[-1.199062,53.696974],[-1.199016,53.694888],[-1.209768,53.694506],[-1.234729,53.692724],[-1.244417,53.69243],[-1.242432,53.680484],[-1.243958,53.67325],[-1.245162,53.673359],[-1.24655,53.672264],[-1.248781,53.671621],[-1.250219,53.669388],[-1.251766,53.667979],[-1.25232,53.666656],[-1.251192,53.662585],[-1.252297,53.661773],[-1.247971,53.656231],[-1.246961,53.655615],[-1.25116,53.651629],[-1.248777,53.649631],[-1.251684,53.648401],[-1.255217,53.648963],[-1.255369,53.644796],[-1.254953,53.643331],[-1.253662,53.641199],[-1.250642,53.638798],[-1.24269,53.633579],[-1.238058,53.626854],[-1.232844,53.621112],[-1.227913,53.622162],[-1.226666,53.621965],[-1.221433,53.623482],[-1.218845,53.623565],[-1.217469,53.624224],[-1.217365,53.629104],[-1.21837,53.631401],[-1.218471,53.633175],[-1.219637,53.634489],[-1.219387,53.636687],[-1.218601,53.636617],[-1.217681,53.640204],[-1.216301,53.640015],[-1.215647,53.641983],[-1.210893,53.640956],[-1.209827,53.643164],[-1.208128,53.642723],[-1.205323,53.642608],[-1.198468,53.640253],[-1.197229,53.638969],[-1.196115,53.638979],[-1.19452,53.638105],[-1.193695,53.636391],[-1.190314,53.635917],[-1.18857,53.635985],[-1.179699,53.637891],[-1.174451,53.638174],[-1.172394,53.639417],[-1.170373,53.639363],[-1.167774,53.640804],[-1.165402,53.64085],[-1.163133,53.641861],[-1.161383,53.641774],[-1.158793,53.64343],[-1.155548,53.643219],[-1.152298,53.642777],[-1.149659,53.638822],[-1.145743,53.63855],[-1.144841,53.637225],[-1.143516,53.636348],[-1.140125,53.635619],[-1.138899,53.633466],[-1.135407,53.632729],[-1.133442,53.633505],[-1.13057,53.63387],[-1.128872,53.634953],[-1.127076,53.638556],[-1.128479,53.640818],[-1.128996,53.642989],[-1.128037,53.643569],[-1.125,53.64398],[-1.12312,53.646017],[-1.121744,53.646719],[-1.119346,53.646845],[-1.116051,53.6458],[-1.113831,53.646913],[-1.101601,53.648588],[-1.095121,53.649989],[-1.090463,53.649869],[-1.087013,53.651336],[-1.084817,53.651727],[-1.082563,53.651567],[-1.071173,53.648942],[-1.066072,53.648891],[-1.053278,53.651537],[-1.051717,53.652534],[-1.050482,53.654949],[-1.048663,53.656057],[-1.051003,53.657557],[-1.057545,53.65763],[-1.059625,53.65839],[-1.059205,53.659121],[-1.061876,53.659214],[-1.063284,53.65748],[-1.067902,53.657276],[-1.07119,53.657905],[-1.071061,53.660022],[-1.075383,53.660566],[-1.078802,53.660458],[-1.082691,53.662044],[-1.085639,53.662393],[-1.088773,53.664477],[-1.087009,53.666603],[-1.091392,53.668625],[-1.10336,53.669499],[-1.101769,53.674393],[-1.100214,53.674383],[-1.097483,53.675292],[-1.093148,53.678194],[-1.087318,53.683317],[-1.081068,53.684592],[-1.080685,53.685274],[-1.085018,53.686959],[-1.076358,53.696752],[-1.078161,53.697758],[-1.075896,53.701452],[-1.074934,53.703996],[-1.069607,53.702889],[-1.068958,53.703992],[-1.069689,53.704358],[-1.0715,53.708206],[-1.072319,53.708804],[-1.075398,53.709015],[-1.079799,53.707843],[-1.081319,53.708273],[-1.081644,53.708972],[-1.08139,53.710993],[-1.084753,53.714595],[-1.084766,53.716931],[-1.089557,53.715381],[-1.09192,53.714169],[-1.093065,53.713036],[-1.094091,53.712763],[-1.09537,53.713177],[-1.09613,53.713971],[-1.095287,53.71556],[-1.097802,53.715643],[-1.101707,53.714349],[-1.10416,53.714453],[-1.104884,53.715367],[-1.100266,53.717256],[-1.098777,53.718739],[-1.099493,53.71918],[-1.103402,53.718389],[-1.104865,53.718647],[-1.108509,53.721312],[-1.108597,53.722686],[-1.11117,53.72284],[-1.113732,53.721063],[-1.114777,53.719357],[-1.1174,53.720077],[-1.117781,53.7208],[-1.117089,53.72272],[-1.120763,53.726135],[-1.120125,53.72677],[-1.118535,53.724279],[-1.116478,53.722428],[-1.117181,53.720853],[-1.116352,53.720046],[-1.114941,53.720009],[-1.11424,53.721253],[-1.111978,53.722899],[-1.109381,53.723362],[-1.108282,53.723016],[-1.107971,53.721389],[-1.104473,53.718805],[-1.103249,53.718754],[-1.099179,53.719549],[-1.098198,53.718795],[-1.09886,53.717841],[-1.100882,53.716653],[-1.104046,53.715529],[-1.103861,53.714664],[-1.101839,53.714581],[-1.097204,53.716068],[-1.094537,53.71584],[-1.095862,53.714129],[-1.094778,53.713174],[-1.093785,53.713044],[-1.092056,53.714458],[-1.090046,53.715453],[-1.084793,53.717414],[-1.08402,53.717332],[-1.084381,53.71495],[-1.080931,53.71107],[-1.081184,53.708945],[-1.079692,53.708128],[-1.075436,53.70926],[-1.071889,53.708996],[-1.071018,53.708288],[-1.06931,53.704596],[-1.067311,53.704649],[-1.063505,53.706801],[-1.062545,53.706862],[-1.062457,53.706874],[-1.061481,53.706929],[-1.058992,53.704802],[-1.053913,53.701593],[-1.053479,53.696999],[-1.052147,53.696939],[-1.048011,53.698685],[-1.045576,53.698709],[-1.040987,53.69624],[-1.040014,53.694588],[-1.037951,53.694347],[-1.036262,53.695731],[-1.034052,53.696635],[-1.021361,53.698249],[-1.016991,53.697952],[-1.011011,53.697067],[-1.006892,53.695547],[-1.004348,53.696629],[-1.003143,53.698633],[-1.001054,53.69909],[-0.99867,53.698966],[-0.994493,53.69763],[-0.985954,53.697804],[-0.980292,53.69712],[-0.982718,53.699142],[-0.983726,53.702566],[-0.982908,53.704267],[-0.980926,53.705167],[-0.974464,53.706324],[-0.967994,53.706993],[-0.966254,53.705959],[-0.966033,53.704602],[-0.967112,53.703527],[-0.969331,53.702811],[-0.9696,53.702281],[-0.966581,53.700803],[-0.963909,53.700677],[-0.962782,53.700971],[-0.96321,53.702726],[-0.96292,53.703565],[-0.961721,53.704274],[-0.958085,53.705074],[-0.960883,53.70672],[-0.961651,53.707656],[-0.959367,53.709923],[-0.958973,53.71101],[-0.959256,53.713658],[-0.9588,53.714516],[-0.956524,53.715147],[-0.954198,53.714855],[-0.949716,53.71307],[-0.944164,53.712709],[-0.9405,53.713573],[-0.935269,53.716433],[-0.923558,53.718878],[-0.920436,53.71907],[-0.91241,53.718902],[-0.910321,53.718517],[-0.907021,53.717195],[-0.905913,53.717183],[-0.903928,53.718628],[-0.903932,53.721191],[-0.906039,53.725381],[-0.908787,53.726686],[-0.910988,53.727161],[-0.912566,53.72889],[-0.911334,53.731524],[-0.911677,53.732343],[-0.916828,53.732402],[-0.924337,53.731354],[-0.930912,53.731138],[-0.936329,53.731339],[-0.94452,53.73247],[-0.952607,53.73536],[-0.955938,53.735412],[-0.958385,53.735099],[-0.961533,53.735663],[-0.963031,53.73713],[-0.962046,53.741117],[-0.962993,53.745081],[-0.963907,53.746525],[-0.965069,53.747369],[-0.967102,53.748126],[-0.974554,53.749694],[-0.977087,53.750535],[-0.97981,53.751762],[-0.982067,53.753242],[-0.986384,53.757342],[-0.988747,53.760947],[-0.988607,53.762105],[-0.986996,53.764223],[-0.98872,53.764613],[-0.995385,53.764447],[-0.999554,53.765635],[-1.000504,53.766642],[-1.00096,53.768352],[-1.002761,53.768197],[-1.011026,53.763603],[-1.021317,53.759878],[-1.024545,53.759522],[-1.027184,53.760352],[-1.032767,53.763534],[-1.034061,53.764745],[-1.033968,53.766096],[-1.030858,53.769836],[-1.029687,53.770826],[-1.027655,53.771495],[-1.025738,53.771588],[-1.022861,53.771082],[-1.021789,53.771675],[-1.022365,53.773727],[-1.024723,53.775901],[-1.026324,53.7768],[-1.027875,53.777091],[-1.031235,53.776656],[-1.03349,53.77668],[-1.037592,53.777324],[-1.045177,53.779178],[-1.049393,53.780771],[-1.057249,53.782443],[-1.062364,53.783894],[-1.064766,53.784887],[-1.06707,53.786589],[-1.066454,53.787877],[-1.054162,53.789321],[-1.049523,53.789381],[-1.047099,53.79006],[-1.046568,53.791334],[-1.048647,53.795854],[-1.048402,53.803595],[-1.046942,53.807035],[-1.045781,53.808218],[-1.043443,53.809713],[-1.04454,53.810696],[-1.051454,53.81094],[-1.054149,53.811384],[-1.062926,53.813947],[-1.067111,53.816921],[-1.069359,53.818048],[-1.074377,53.819239],[-1.07935,53.819334],[-1.083591,53.821349],[-1.084727,53.822824],[-1.084694,53.824489],[-1.080341,53.828111],[-1.076645,53.832524],[-1.076026,53.8346],[-1.076633,53.835628],[-1.078387,53.835813],[-1.082241,53.834825],[-1.084602,53.833879],[-1.08746,53.831748],[-1.089651,53.831504],[-1.092925,53.83357],[-1.098917,53.836352],[-1.10103,53.836888],[-1.104115,53.837096],[-1.116163,53.836785],[-1.117982,53.836516],[-1.120145,53.83577],[-1.125139,53.832855],[-1.126522,53.832724],[-1.128676,53.833349],[-1.129916,53.835301],[-1.130682,53.838527],[-1.134461,53.842687],[-1.13358,53.843909],[-1.132088,53.844303],[-1.129859,53.844299],[-1.129928,53.8448],[-1.132645,53.845485],[-1.134534,53.844972],[-1.137743,53.839763],[-1.141487,53.839207],[-1.143216,53.839724],[-1.142017,53.842134],[-1.141914,53.843298],[-1.142524,53.84444],[-1.145009,53.846546],[-1.144938,53.84755],[-1.143771,53.84895],[-1.144369,53.849779],[-1.148828,53.848895],[-1.151537,53.848827],[-1.155368,53.850012],[-1.15658,53.851132],[-1.157772,53.851306],[-1.160304,53.85029],[-1.162078,53.848022],[-1.164796,53.846933],[-1.166236,53.846821],[-1.167523,53.847446],[-1.170363,53.851445],[-1.171533,53.855381],[-1.172946,53.855963],[-1.177408,53.856122],[-1.179639,53.855405],[-1.182013,53.853624],[-1.182769,53.852047],[-1.182488,53.850096],[-1.18318,53.849661],[-1.185573,53.850088],[-1.191865,53.854057],[-1.191742,53.854271],[-1.185212,53.850176],[-1.182793,53.850411],[-1.182959,53.852603],[-1.182393,53.853872],[-1.179486,53.855722],[-1.177721,53.856269],[-1.173012,53.856171],[-1.171271,53.855571],[-1.17005,53.851499],[-1.167224,53.84757],[-1.165934,53.847016],[-1.164238,53.847365],[-1.162429,53.848253],[-1.160565,53.850333],[-1.1576,53.8515],[-1.156334,53.851268],[-1.155149,53.850144],[-1.151987,53.849031],[-1.149653,53.848986],[-1.14418,53.85001],[-1.143407,53.848947],[-1.144532,53.847652],[-1.144687,53.84654],[-1.142471,53.844796],[-1.141523,53.843247],[-1.141716,53.842041],[-1.14296,53.839916],[-1.141325,53.839472],[-1.138047,53.840102],[-1.135829,53.84321],[-1.135364,53.844592],[-1.13397,53.845507],[-1.132472,53.845689],[-1.130459,53.845288],[-1.129392,53.844758],[-1.129336,53.844094],[-1.126551,53.844037],[-1.125208,53.844715],[-1.124051,53.846512],[-1.124577,53.848606],[-1.124109,53.849863],[-1.120078,53.853022],[-1.118619,53.854885],[-1.118373,53.85604],[-1.11887,53.857121],[-1.123894,53.858932],[-1.127726,53.861949],[-1.128202,53.86332],[-1.127175,53.865129],[-1.12579,53.86584],[-1.121327,53.866358],[-1.119524,53.866984],[-1.116479,53.868733],[-1.112927,53.87185],[-1.10535,53.875836],[-1.10899,53.87736],[-1.111966,53.879062],[-1.115605,53.879684],[-1.117437,53.880361],[-1.118652,53.881416],[-1.121052,53.882649],[-1.124984,53.882676],[-1.125241,53.885608],[-1.129115,53.888983],[-1.133356,53.891056],[-1.134317,53.892564],[-1.134815,53.894744],[-1.136819,53.895943],[-1.138817,53.894178],[-1.141569,53.892644],[-1.143561,53.89249],[-1.146767,53.894611],[-1.150006,53.89364],[-1.150237,53.894994],[-1.152329,53.895738],[-1.154396,53.895929],[-1.154323,53.896676],[-1.155782,53.897348],[-1.160123,53.900432],[-1.16152,53.902584],[-1.162202,53.905537],[-1.164529,53.90917],[-1.164916,53.910576],[-1.170596,53.908821],[-1.17307,53.911281],[-1.176409,53.913969],[-1.177383,53.914333],[-1.179305,53.916898],[-1.185709,53.916063],[-1.186711,53.918443],[-1.191133,53.922582],[-1.195638,53.92238]]]]},"properties":{"LAD22CD":"E07000169","LAD22NM":"Selby","BNG_E":457551,"BNG_N":426670,"LONG":-1.12908,"LAT":53.73327,"GlobalID":"2f28282a-bafa-4685-9c6a-149813044c87"},"id":178}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.25993,53.164481],[-1.260343,53.16535],[-1.262346,53.166633],[-1.26513,53.166956],[-1.265777,53.167487],[-1.268695,53.167919],[-1.272467,53.167872],[-1.274913,53.168154],[-1.276573,53.167357],[-1.28196,53.167421],[-1.284698,53.168751],[-1.285398,53.169667],[-1.28791,53.170606],[-1.288758,53.171455],[-1.295962,53.171225],[-1.296648,53.170781],[-1.29752,53.168864],[-1.298921,53.167802],[-1.300263,53.168104],[-1.300836,53.16581],[-1.300712,53.164215],[-1.302626,53.163867],[-1.304527,53.165464],[-1.308063,53.163395],[-1.309631,53.163183],[-1.31257,53.163482],[-1.314393,53.164727],[-1.31655,53.165362],[-1.319081,53.163189],[-1.323447,53.162342],[-1.323457,53.159536],[-1.325473,53.157885],[-1.325584,53.156475],[-1.324595,53.154849],[-1.323155,53.153886],[-1.322236,53.151008],[-1.322301,53.148197],[-1.321671,53.144271],[-1.32026,53.142545],[-1.318815,53.139719],[-1.31498,53.135814],[-1.317693,53.135071],[-1.319283,53.13394],[-1.320181,53.132164],[-1.32178,53.13065],[-1.320157,53.128408],[-1.318712,53.128172],[-1.317857,53.127005],[-1.314812,53.125681],[-1.314248,53.124914],[-1.310994,53.118469],[-1.311057,53.116888],[-1.312293,53.11632],[-1.309674,53.113154],[-1.309689,53.111709],[-1.311833,53.108706],[-1.308801,53.107724],[-1.303609,53.103195],[-1.30142,53.104167],[-1.300729,53.10162],[-1.304024,53.100405],[-1.305992,53.100339],[-1.307395,53.099464],[-1.309252,53.09677],[-1.308491,53.095843],[-1.307087,53.095418],[-1.309131,53.094499],[-1.306102,53.091922],[-1.305359,53.090774],[-1.302561,53.088535],[-1.305884,53.086838],[-1.307773,53.086319],[-1.322307,53.084905],[-1.326139,53.083877],[-1.329679,53.082386],[-1.331636,53.080988],[-1.332719,53.080335],[-1.333127,53.079317],[-1.334087,53.078947],[-1.334717,53.077572],[-1.335797,53.077175],[-1.335641,53.076263],[-1.33659,53.075687],[-1.335757,53.074586],[-1.338325,53.072709],[-1.342192,53.070963],[-1.343835,53.06873],[-1.344064,53.067795],[-1.343454,53.066846],[-1.344428,53.065543],[-1.34459,53.063282],[-1.341926,53.060513],[-1.340236,53.05968],[-1.337514,53.055787],[-1.337395,53.054719],[-1.335869,53.052966],[-1.335194,53.052624],[-1.332627,53.053075],[-1.331045,53.054085],[-1.329608,53.05448],[-1.322605,53.049241],[-1.321053,53.049035],[-1.320139,53.047822],[-1.319001,53.047329],[-1.31745,53.047989],[-1.31441,53.048249],[-1.310446,53.046368],[-1.310688,53.048349],[-1.308096,53.04785],[-1.306821,53.047261],[-1.305772,53.046164],[-1.306955,53.045055],[-1.307845,53.043011],[-1.305138,53.044852],[-1.303526,53.041884],[-1.301105,53.043283],[-1.300944,53.04417],[-1.299103,53.046326],[-1.298115,53.046511],[-1.295286,53.046105],[-1.288036,53.048256],[-1.284826,53.048227],[-1.281513,53.047759],[-1.280499,53.04704],[-1.278753,53.047091],[-1.276761,53.045529],[-1.278693,53.044054],[-1.275718,53.04328],[-1.272828,53.042094],[-1.270721,53.041885],[-1.27033,53.040514],[-1.268591,53.039042],[-1.266394,53.038417],[-1.263796,53.038432],[-1.262903,53.039261],[-1.258237,53.040432],[-1.257694,53.040957],[-1.253092,53.039626],[-1.251865,53.038406],[-1.247405,53.035688],[-1.247113,53.035067],[-1.238777,53.03263],[-1.24126,53.031151],[-1.235361,53.027918],[-1.234818,53.026872],[-1.229064,53.022744],[-1.231914,53.021142],[-1.231967,53.019481],[-1.230956,53.01846],[-1.23112,53.016985],[-1.230664,53.016233],[-1.232546,53.01273],[-1.232597,53.011367],[-1.231087,53.009527],[-1.229329,53.008827],[-1.225148,53.008096],[-1.224741,53.008614],[-1.222386,53.00838],[-1.212976,53.012688],[-1.211058,53.015001],[-1.209883,53.018143],[-1.206405,53.018691],[-1.203022,53.018335],[-1.201032,53.017885],[-1.199946,53.016813],[-1.198021,53.015975],[-1.195185,53.015451],[-1.189205,53.017316],[-1.188312,53.017962],[-1.185984,53.017402],[-1.184526,53.016386],[-1.184035,53.017607],[-1.182746,53.018569],[-1.183643,53.020879],[-1.182992,53.021973],[-1.180071,53.02383],[-1.179339,53.024754],[-1.179455,53.026943],[-1.178029,53.029985],[-1.177756,53.03304],[-1.1769,53.035233],[-1.177401,53.038132],[-1.178427,53.040022],[-1.181253,53.043374],[-1.181435,53.047448],[-1.182242,53.048508],[-1.185827,53.048683],[-1.189422,53.047368],[-1.189954,53.048651],[-1.191716,53.047794],[-1.196413,53.049016],[-1.197105,53.048639],[-1.199903,53.051605],[-1.202024,53.050842],[-1.20607,53.050507],[-1.206785,53.051389],[-1.208767,53.051161],[-1.210946,53.05024],[-1.215277,53.049255],[-1.217425,53.049029],[-1.228119,53.054571],[-1.228885,53.058209],[-1.231289,53.062065],[-1.22998,53.065241],[-1.229722,53.068104],[-1.228004,53.070657],[-1.227358,53.075072],[-1.226363,53.077109],[-1.22631,53.081023],[-1.221165,53.083996],[-1.218796,53.084678],[-1.215037,53.084704],[-1.213479,53.085066],[-1.210716,53.084865],[-1.205904,53.086445],[-1.202506,53.086911],[-1.201787,53.088021],[-1.199701,53.089157],[-1.199719,53.090804],[-1.194913,53.092452],[-1.192927,53.092623],[-1.196044,53.094503],[-1.185643,53.099105],[-1.183026,53.099418],[-1.180011,53.100565],[-1.175234,53.101659],[-1.167672,53.102554],[-1.164252,53.103269],[-1.167778,53.107515],[-1.169992,53.109474],[-1.172751,53.111194],[-1.175583,53.112309],[-1.177891,53.11481],[-1.182988,53.115175],[-1.185852,53.115809],[-1.186447,53.117323],[-1.188468,53.119737],[-1.193781,53.119907],[-1.198843,53.12177],[-1.200682,53.121805],[-1.201916,53.122709],[-1.20249,53.124464],[-1.210587,53.125918],[-1.217363,53.128293],[-1.220293,53.129667],[-1.222933,53.130301],[-1.224604,53.131631],[-1.229301,53.134171],[-1.237915,53.13966],[-1.239918,53.139587],[-1.23715,53.146304],[-1.237821,53.148761],[-1.239848,53.148715],[-1.239769,53.149877],[-1.240937,53.152998],[-1.243596,53.154204],[-1.247524,53.153044],[-1.251276,53.154379],[-1.255325,53.154616],[-1.256842,53.156386],[-1.257022,53.160157],[-1.257995,53.161328],[-1.258818,53.163736],[-1.25993,53.164481]]]},"properties":{"LAD22CD":"E07000170","LAD22NM":"Ashfield","BNG_E":450035,"BNG_N":355843,"LONG":-1.25422,"LAT":53.09747,"GlobalID":"507de492-979f-4bf4-a673-3b152272ec3a"},"id":179}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.772087,53.255882],[-0.771666,53.257837],[-0.772548,53.258478],[-0.772087,53.255882]]],[[[-0.798112,53.455233],[-0.80544,53.457199],[-0.813542,53.458465],[-0.818446,53.459558],[-0.871919,53.466311],[-0.873736,53.461478],[-0.886352,53.462139],[-0.889989,53.461811],[-0.89659,53.461892],[-0.900612,53.461049],[-0.910043,53.461037],[-0.912645,53.46046],[-0.914817,53.460871],[-0.916249,53.460296],[-0.92046,53.464483],[-0.920247,53.465508],[-0.912092,53.469953],[-0.902175,53.473732],[-0.900471,53.475156],[-0.935565,53.502516],[-0.953259,53.484424],[-0.97687,53.475177],[-0.981625,53.474718],[-0.985978,53.471673],[-0.983297,53.468041],[-0.985548,53.461354],[-0.993646,53.452958],[-0.991179,53.451723],[-0.994309,53.448936],[-0.994822,53.447102],[-0.997518,53.443655],[-0.997132,53.442476],[-0.998481,53.438842],[-0.995919,53.437856],[-0.99567,53.436927],[-1.000377,53.434998],[-1.002964,53.434726],[-1.005096,53.433799],[-1.008679,53.433901],[-1.009893,53.432825],[-1.012458,53.432796],[-1.012533,53.43072],[-1.014297,53.42728],[-1.014347,53.426295],[-1.018175,53.426759],[-1.022431,53.426314],[-1.023169,53.424514],[-1.027107,53.425015],[-1.027826,53.425421],[-1.030515,53.425195],[-1.028841,53.429288],[-1.030709,53.42992],[-1.03095,53.43098],[-1.036526,53.430529],[-1.040264,53.429757],[-1.044589,53.428089],[-1.049895,53.426634],[-1.054889,53.425461],[-1.057051,53.42536],[-1.067853,53.427721],[-1.073268,53.428057],[-1.074671,53.427308],[-1.08044,53.426868],[-1.080035,53.425175],[-1.078981,53.423563],[-1.079123,53.422809],[-1.0812,53.422585],[-1.08333,53.422988],[-1.084867,53.424859],[-1.087046,53.425544],[-1.092922,53.421546],[-1.098738,53.418735],[-1.105041,53.409667],[-1.108227,53.405882],[-1.111633,53.406067],[-1.116041,53.407349],[-1.115141,53.401861],[-1.115919,53.398019],[-1.11558,53.397186],[-1.11947,53.398046],[-1.122811,53.398312],[-1.129208,53.393596],[-1.131512,53.393936],[-1.134693,53.389771],[-1.131311,53.389556],[-1.130935,53.38823],[-1.130947,53.385557],[-1.132445,53.383981],[-1.133047,53.381595],[-1.1305,53.378887],[-1.130995,53.377984],[-1.129996,53.377566],[-1.130537,53.375571],[-1.131958,53.374899],[-1.13366,53.374867],[-1.134137,53.373226],[-1.138219,53.372252],[-1.14074,53.372023],[-1.141404,53.370709],[-1.142804,53.371268],[-1.144919,53.371245],[-1.146033,53.369041],[-1.144215,53.36827],[-1.144225,53.367379],[-1.14644,53.365733],[-1.146417,53.363953],[-1.145178,53.363383],[-1.140554,53.36406],[-1.140116,53.362623],[-1.138976,53.361389],[-1.139237,53.35986],[-1.13854,53.355907],[-1.144952,53.355332],[-1.14528,53.35486],[-1.149102,53.354352],[-1.151694,53.354485],[-1.16195,53.357909],[-1.162623,53.356736],[-1.161617,53.355698],[-1.16242,53.35161],[-1.161821,53.350889],[-1.159868,53.34997],[-1.160103,53.348942],[-1.158149,53.347703],[-1.156877,53.345863],[-1.156844,53.344969],[-1.152671,53.344685],[-1.149565,53.345309],[-1.148179,53.345211],[-1.144907,53.345695],[-1.141552,53.346797],[-1.140293,53.34653],[-1.13936,53.344729],[-1.138718,53.341383],[-1.140909,53.340966],[-1.145417,53.340729],[-1.148621,53.338507],[-1.159385,53.333509],[-1.160512,53.33233],[-1.160867,53.331116],[-1.163882,53.329277],[-1.165872,53.329112],[-1.168904,53.328241],[-1.171478,53.326524],[-1.173458,53.326388],[-1.175111,53.325677],[-1.175309,53.324511],[-1.174052,53.323591],[-1.174704,53.322648],[-1.174482,53.321391],[-1.180415,53.321046],[-1.18661,53.319594],[-1.190113,53.319496],[-1.192416,53.31899],[-1.194371,53.314868],[-1.197205,53.314673],[-1.199741,53.311439],[-1.198286,53.310837],[-1.194959,53.308594],[-1.193675,53.308268],[-1.190633,53.306574],[-1.18722,53.303979],[-1.185552,53.304656],[-1.182141,53.305354],[-1.180957,53.306249],[-1.176676,53.30518],[-1.17572,53.303302],[-1.174175,53.302534],[-1.174853,53.299115],[-1.173778,53.297488],[-1.173818,53.296192],[-1.171563,53.294638],[-1.176397,53.28965],[-1.178699,53.288877],[-1.180117,53.287135],[-1.178304,53.286257],[-1.177532,53.284291],[-1.176004,53.282722],[-1.175763,53.28165],[-1.173991,53.281236],[-1.172079,53.280069],[-1.171017,53.279834],[-1.169278,53.278561],[-1.166488,53.277655],[-1.168335,53.276689],[-1.170719,53.276161],[-1.173299,53.274096],[-1.177338,53.273679],[-1.178246,53.273214],[-1.181542,53.270032],[-1.180205,53.26843],[-1.175553,53.266542],[-1.174797,53.265113],[-1.177285,53.265193],[-1.17918,53.264341],[-1.18298,53.264998],[-1.185342,53.264383],[-1.187747,53.264556],[-1.191352,53.264149],[-1.193878,53.263252],[-1.196087,53.263412],[-1.198193,53.262324],[-1.201114,53.261761],[-1.202617,53.261119],[-1.203754,53.258943],[-1.20269,53.257283],[-1.204504,53.257183],[-1.207054,53.25518],[-1.207836,53.253225],[-1.210349,53.251233],[-1.209393,53.2503],[-1.213027,53.247672],[-1.21246,53.245586],[-1.209973,53.240986],[-1.20873,53.240902],[-1.207157,53.239229],[-1.205187,53.238691],[-1.205785,53.237816],[-1.205091,53.236615],[-1.201997,53.235555],[-1.203483,53.233048],[-1.203265,53.231089],[-1.205762,53.230545],[-1.206207,53.227198],[-1.208992,53.224412],[-1.209425,53.217697],[-1.206608,53.216628],[-1.202717,53.216659],[-1.202237,53.216117],[-1.196934,53.21678],[-1.196789,53.217165],[-1.18857,53.218396],[-1.188266,53.218716],[-1.181558,53.21868],[-1.179133,53.219134],[-1.175769,53.219227],[-1.171121,53.218959],[-1.169486,53.219212],[-1.161753,53.221545],[-1.156896,53.222299],[-1.152188,53.223705],[-1.149943,53.224],[-1.146602,53.224963],[-1.139788,53.225775],[-1.132597,53.225734],[-1.123674,53.224673],[-1.122107,53.225566],[-1.123067,53.226709],[-1.122082,53.230856],[-1.119691,53.231041],[-1.119728,53.232084],[-1.116446,53.231837],[-1.111459,53.23044],[-1.108853,53.232639],[-1.104984,53.235123],[-1.103296,53.235607],[-1.09295,53.237233],[-1.086311,53.237698],[-1.072483,53.240906],[-1.068918,53.242675],[-1.06626,53.244308],[-1.066219,53.244742],[-1.058437,53.249106],[-1.052146,53.2522],[-1.046006,53.253505],[-1.031224,53.259784],[-1.027955,53.261036],[-1.027535,53.260852],[-1.027316,53.258067],[-1.025905,53.252136],[-1.023177,53.247933],[-1.023549,53.247803],[-1.012922,53.241643],[-1.011798,53.24048],[-1.010132,53.239511],[-1.006595,53.23614],[-0.996579,53.236747],[-0.983927,53.236605],[-0.969979,53.23576],[-0.964641,53.233876],[-0.961288,53.233276],[-0.957537,53.231893],[-0.952933,53.227085],[-0.950234,53.226152],[-0.947218,53.225763],[-0.949147,53.224299],[-0.948297,53.222754],[-0.949656,53.22109],[-0.948658,53.220834],[-0.948264,53.219206],[-0.949713,53.218005],[-0.949291,53.214306],[-0.947249,53.213859],[-0.944652,53.214649],[-0.93985,53.215485],[-0.934894,53.21619],[-0.929974,53.21644],[-0.921682,53.218683],[-0.920013,53.218356],[-0.916548,53.218324],[-0.907269,53.220503],[-0.901703,53.221145],[-0.899275,53.222385],[-0.898304,53.223347],[-0.896301,53.223216],[-0.894248,53.223671],[-0.888848,53.223497],[-0.886927,53.222742],[-0.883711,53.222344],[-0.877491,53.219804],[-0.875459,53.218563],[-0.872597,53.218172],[-0.869284,53.216632],[-0.867297,53.216398],[-0.866465,53.215194],[-0.864704,53.213946],[-0.862779,53.213154],[-0.860867,53.213512],[-0.857839,53.212207],[-0.854417,53.214673],[-0.852632,53.21547],[-0.848498,53.215309],[-0.848214,53.218662],[-0.83982,53.21892],[-0.830798,53.217566],[-0.831483,53.215693],[-0.835509,53.216218],[-0.836506,53.215531],[-0.836955,53.213658],[-0.83052,53.212831],[-0.832061,53.20673],[-0.827476,53.206332],[-0.826547,53.205863],[-0.824765,53.203405],[-0.824919,53.202741],[-0.823146,53.202237],[-0.821571,53.20135],[-0.819864,53.201636],[-0.817375,53.204106],[-0.815724,53.204919],[-0.803704,53.205559],[-0.798857,53.204662],[-0.791045,53.204868],[-0.787293,53.204565],[-0.785856,53.204009],[-0.787397,53.203099],[-0.78893,53.201665],[-0.790076,53.199147],[-0.781362,53.196681],[-0.780115,53.197077],[-0.779597,53.198029],[-0.777562,53.199783],[-0.77821,53.200749],[-0.78052,53.202468],[-0.780927,53.203796],[-0.779772,53.205298],[-0.776551,53.206762],[-0.776004,53.207876],[-0.777434,53.208886],[-0.778657,53.210994],[-0.77906,53.212949],[-0.776108,53.214781],[-0.777698,53.216373],[-0.777783,53.218281],[-0.778835,53.219965],[-0.7839,53.224203],[-0.783542,53.228062],[-0.782126,53.231076],[-0.778783,53.235071],[-0.778667,53.237023],[-0.777804,53.238918],[-0.778954,53.241632],[-0.779253,53.243762],[-0.777238,53.248389],[-0.779018,53.251209],[-0.778788,53.252363],[-0.776499,53.25301],[-0.771664,53.252778],[-0.77079,53.253326],[-0.772931,53.255481],[-0.773645,53.26026],[-0.773107,53.262289],[-0.765447,53.271258],[-0.764909,53.272809],[-0.766042,53.274184],[-0.77025,53.275546],[-0.773803,53.277444],[-0.775781,53.28003],[-0.778303,53.281868],[-0.779,53.28349],[-0.77803,53.285136],[-0.774057,53.288061],[-0.770815,53.289693],[-0.765586,53.294045],[-0.765076,53.295801],[-0.76573,53.298381],[-0.76467,53.299527],[-0.761946,53.300061],[-0.760079,53.299649],[-0.758899,53.298605],[-0.757889,53.296126],[-0.758354,53.294044],[-0.757673,53.293102],[-0.756369,53.292826],[-0.752561,53.293254],[-0.750783,53.294564],[-0.750282,53.296362],[-0.749333,53.301858],[-0.747871,53.304467],[-0.748619,53.305517],[-0.753131,53.308796],[-0.754096,53.310254],[-0.754829,53.314688],[-0.754363,53.320206],[-0.753176,53.321679],[-0.750688,53.323027],[-0.750469,53.324168],[-0.753052,53.324817],[-0.757148,53.324048],[-0.76077,53.324326],[-0.763155,53.327257],[-0.766014,53.328932],[-0.766954,53.330076],[-0.765798,53.331817],[-0.761967,53.33315],[-0.761369,53.333879],[-0.760738,53.336536],[-0.757216,53.339686],[-0.757809,53.341298],[-0.760344,53.342865],[-0.763855,53.344343],[-0.765213,53.345911],[-0.764736,53.348163],[-0.763686,53.349776],[-0.7624,53.350857],[-0.759476,53.351955],[-0.759149,53.353661],[-0.76036,53.354428],[-0.763946,53.355008],[-0.76635,53.355974],[-0.773398,53.363452],[-0.77441,53.364116],[-0.776783,53.36364],[-0.779058,53.361397],[-0.780917,53.360915],[-0.782971,53.361227],[-0.78678,53.362389],[-0.790087,53.362638],[-0.791503,53.363534],[-0.790609,53.36585],[-0.791227,53.368926],[-0.78902,53.371122],[-0.786534,53.374669],[-0.783213,53.376267],[-0.77993,53.377162],[-0.779481,53.379345],[-0.776772,53.377995],[-0.775856,53.377838],[-0.782246,53.38241],[-0.783992,53.383261],[-0.787018,53.383976],[-0.790404,53.385146],[-0.79074,53.386127],[-0.78923,53.386874],[-0.785222,53.386988],[-0.782399,53.387651],[-0.778217,53.389636],[-0.777048,53.391408],[-0.77765,53.396894],[-0.779461,53.398747],[-0.784397,53.400784],[-0.788079,53.403441],[-0.790775,53.407268],[-0.79174,53.409301],[-0.79204,53.41154],[-0.791313,53.412625],[-0.788896,53.414275],[-0.790798,53.414793],[-0.794674,53.414006],[-0.796721,53.414487],[-0.799468,53.415622],[-0.804128,53.416982],[-0.809292,53.419602],[-0.814169,53.423344],[-0.818301,53.425979],[-0.818528,53.428063],[-0.816637,53.43207],[-0.820018,53.437075],[-0.821109,53.440294],[-0.820295,53.441548],[-0.818748,53.44221],[-0.812077,53.443187],[-0.809866,53.44382],[-0.805151,53.448112],[-0.801382,53.453112],[-0.798112,53.455233]]]]},"properties":{"LAD22CD":"E07000171","LAD22NM":"Bassetlaw","BNG_E":468073,"BNG_N":384835,"LONG":-0.9787,"LAT":53.35604,"GlobalID":"f33e99db-8add-48f8-a74f-0cc50ca99027"},"id":180}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.225148,53.008096],[-1.229329,53.008827],[-1.231087,53.009527],[-1.232597,53.011367],[-1.232546,53.01273],[-1.230664,53.016233],[-1.23112,53.016985],[-1.230956,53.01846],[-1.231967,53.019481],[-1.231914,53.021142],[-1.229064,53.022744],[-1.234818,53.026872],[-1.235361,53.027918],[-1.24126,53.031151],[-1.238777,53.03263],[-1.247113,53.035067],[-1.247405,53.035688],[-1.251865,53.038406],[-1.253092,53.039626],[-1.257694,53.040957],[-1.258237,53.040432],[-1.262903,53.039261],[-1.263796,53.038432],[-1.266394,53.038417],[-1.268591,53.039042],[-1.27033,53.040514],[-1.270721,53.041885],[-1.272828,53.042094],[-1.275718,53.04328],[-1.278693,53.044054],[-1.276761,53.045529],[-1.278753,53.047091],[-1.280499,53.04704],[-1.281513,53.047759],[-1.284826,53.048227],[-1.288036,53.048256],[-1.295286,53.046105],[-1.298115,53.046511],[-1.299103,53.046326],[-1.300944,53.04417],[-1.301105,53.043283],[-1.303526,53.041884],[-1.305138,53.044852],[-1.307845,53.043011],[-1.306955,53.045055],[-1.305772,53.046164],[-1.306821,53.047261],[-1.308096,53.04785],[-1.310688,53.048349],[-1.310446,53.046368],[-1.31441,53.048249],[-1.31745,53.047989],[-1.319001,53.047329],[-1.320139,53.047822],[-1.321053,53.049035],[-1.322605,53.049241],[-1.329608,53.05448],[-1.331045,53.054085],[-1.332627,53.053075],[-1.335194,53.052624],[-1.335869,53.052966],[-1.336393,53.052173],[-1.335773,53.050743],[-1.334438,53.050244],[-1.333238,53.048169],[-1.334637,53.047295],[-1.332962,53.044589],[-1.333043,53.043397],[-1.333817,53.04294],[-1.333606,53.041734],[-1.334948,53.041702],[-1.334617,53.040631],[-1.33319,53.03969],[-1.332556,53.038227],[-1.332639,53.036391],[-1.333203,53.035413],[-1.331268,53.031825],[-1.33181,53.030922],[-1.329179,53.030748],[-1.327787,53.028407],[-1.325885,53.027384],[-1.32446,53.025873],[-1.321894,53.019972],[-1.318578,53.016148],[-1.320188,53.015511],[-1.318274,53.013797],[-1.319603,53.011769],[-1.319191,53.010216],[-1.315541,53.008483],[-1.314561,53.007221],[-1.313493,53.006616],[-1.313368,53.004573],[-1.312317,53.004597],[-1.31002,53.003401],[-1.307444,53.003655],[-1.306339,53.002487],[-1.30455,53.001725],[-1.30284,53.000296],[-1.302355,52.998444],[-1.303608,52.998012],[-1.303137,52.99683],[-1.301739,52.995924],[-1.302341,52.995009],[-1.301054,52.994658],[-1.30037,52.993196],[-1.301235,52.99105],[-1.299237,52.989507],[-1.297763,52.989688],[-1.298056,52.988527],[-1.296708,52.987772],[-1.295477,52.987853],[-1.294679,52.986917],[-1.294579,52.98579],[-1.297471,52.984674],[-1.294987,52.979864],[-1.290674,52.970676],[-1.289623,52.969731],[-1.28775,52.969662],[-1.287729,52.967652],[-1.289417,52.966321],[-1.288607,52.961069],[-1.290563,52.959774],[-1.291692,52.95616],[-1.292501,52.955574],[-1.290653,52.954151],[-1.288996,52.95402],[-1.288224,52.954519],[-1.28643,52.953856],[-1.28575,52.952846],[-1.284149,52.952528],[-1.282414,52.951235],[-1.282404,52.950197],[-1.281031,52.949158],[-1.282142,52.947954],[-1.28126,52.947209],[-1.282901,52.945158],[-1.280266,52.941622],[-1.281225,52.941133],[-1.280475,52.939487],[-1.279046,52.938928],[-1.279159,52.936829],[-1.277842,52.93576],[-1.278377,52.934368],[-1.278211,52.932834],[-1.280614,52.93047],[-1.281576,52.92889],[-1.283644,52.927794],[-1.285777,52.926065],[-1.285196,52.924563],[-1.28252,52.921459],[-1.282822,52.919289],[-1.283524,52.918634],[-1.283535,52.916796],[-1.281936,52.910756],[-1.280535,52.908997],[-1.275376,52.905668],[-1.274412,52.905245],[-1.271686,52.905113],[-1.267617,52.905283],[-1.265249,52.905052],[-1.259639,52.903487],[-1.256475,52.901786],[-1.254007,52.901945],[-1.253403,52.902423],[-1.251334,52.902038],[-1.250799,52.90263],[-1.24763,52.90321],[-1.245117,52.902193],[-1.247513,52.899929],[-1.246213,52.897523],[-1.243038,52.896405],[-1.24104,52.895362],[-1.239623,52.894238],[-1.239706,52.892289],[-1.235736,52.892353],[-1.233457,52.89292],[-1.230815,52.894052],[-1.230252,52.894707],[-1.227747,52.89556],[-1.222547,52.89531],[-1.220493,52.895564],[-1.21922,52.896909],[-1.220798,52.900423],[-1.220164,52.902358],[-1.214844,52.903733],[-1.21392,52.904415],[-1.213356,52.91018],[-1.212079,52.911485],[-1.210505,52.91227],[-1.208297,52.912648],[-1.205709,52.912442],[-1.199009,52.909479],[-1.197564,52.909963],[-1.191127,52.91363],[-1.187532,52.914788],[-1.182301,52.917336],[-1.19742,52.929121],[-1.196631,52.929649],[-1.198997,52.93123],[-1.200465,52.930254],[-1.202639,52.932022],[-1.205108,52.933397],[-1.20605,52.932767],[-1.20889,52.933999],[-1.209347,52.933308],[-1.215292,52.933992],[-1.214715,52.936084],[-1.216222,52.937189],[-1.218085,52.940593],[-1.22103,52.940805],[-1.222792,52.941406],[-1.224259,52.942464],[-1.22634,52.942419],[-1.226897,52.941083],[-1.231401,52.942274],[-1.234281,52.942078],[-1.234193,52.943536],[-1.235658,52.945284],[-1.23787,52.945758],[-1.241842,52.947671],[-1.244719,52.949523],[-1.245791,52.95094],[-1.246823,52.953099],[-1.245723,52.955908],[-1.243351,52.959468],[-1.242952,52.960805],[-1.241921,52.962151],[-1.239542,52.964014],[-1.239167,52.965398],[-1.237824,52.966465],[-1.231979,52.967643],[-1.235076,52.971476],[-1.236799,52.971502],[-1.239818,52.976501],[-1.239854,52.977603],[-1.240865,52.978044],[-1.242608,52.977826],[-1.243757,52.978803],[-1.244888,52.981186],[-1.246506,52.98311],[-1.246839,52.984543],[-1.245461,52.98522],[-1.242131,52.983588],[-1.239381,52.982654],[-1.235058,52.982546],[-1.226082,52.981169],[-1.224863,52.982247],[-1.223696,52.981682],[-1.222011,52.983325],[-1.224093,52.984162],[-1.22253,52.986027],[-1.217937,52.983984],[-1.215052,52.983144],[-1.213875,52.983719],[-1.213164,52.984744],[-1.210527,52.986163],[-1.203406,52.987543],[-1.208418,52.988827],[-1.212127,52.99036],[-1.219107,52.991499],[-1.217923,52.994067],[-1.213938,52.997396],[-1.216391,53.000417],[-1.220597,53.003406],[-1.220002,53.005372],[-1.218701,53.006485],[-1.221179,53.00743],[-1.222878,53.007367],[-1.225148,53.008096]]]},"properties":{"LAD22CD":"E07000172","LAD22NM":"Broxtowe","BNG_E":449829,"BNG_N":341893,"LONG":-1.25944,"LAT":52.9721,"GlobalID":"1a25358b-3922-4f37-8d9e-4509f548cf22"},"id":181}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.007086,52.985457],[-1.007836,52.987365],[-1.007254,52.987896],[-1.008766,52.989204],[-1.011018,52.989525],[-1.01289,52.988465],[-1.014589,52.989835],[-1.016807,52.988763],[-1.021519,52.992722],[-1.023305,52.991859],[-1.024725,52.993101],[-1.027496,52.992674],[-1.028976,52.993672],[-1.031167,52.992674],[-1.034189,52.996154],[-1.038118,52.99563],[-1.039358,52.998428],[-1.037257,52.999056],[-1.039207,53.000217],[-1.037963,53.001078],[-1.036638,53.003567],[-1.034213,53.005003],[-1.036581,53.006872],[-1.038183,53.00726],[-1.041165,53.006852],[-1.043167,53.007272],[-1.046354,53.00716],[-1.047947,53.007762],[-1.048893,53.009535],[-1.052909,53.011175],[-1.052592,53.013027],[-1.053896,53.01436],[-1.047768,53.017417],[-1.042553,53.019378],[-1.03221,53.020462],[-1.030286,53.02107],[-1.029392,53.023201],[-1.030612,53.024751],[-1.034284,53.025636],[-1.034695,53.026472],[-1.036912,53.027325],[-1.037107,53.028079],[-1.038893,53.028708],[-1.041876,53.031414],[-1.05672,53.03541],[-1.057715,53.037935],[-1.058912,53.039493],[-1.061938,53.040992],[-1.062881,53.042426],[-1.063857,53.043112],[-1.064331,53.044494],[-1.066649,53.045504],[-1.069331,53.045877],[-1.071301,53.047093],[-1.073691,53.047456],[-1.076022,53.048841],[-1.076534,53.050077],[-1.078443,53.051022],[-1.079136,53.052015],[-1.080483,53.052312],[-1.082817,53.054576],[-1.082679,53.055677],[-1.084537,53.057558],[-1.08445,53.058771],[-1.085652,53.060512],[-1.093431,53.067353],[-1.09138,53.069821],[-1.086673,53.073232],[-1.08643,53.07528],[-1.088273,53.077305],[-1.089503,53.078019],[-1.094316,53.07415],[-1.100828,53.076037],[-1.106534,53.075626],[-1.111445,53.076205],[-1.113959,53.077011],[-1.120005,53.076011],[-1.12242,53.075218],[-1.125453,53.074926],[-1.127332,53.074],[-1.130182,53.073607],[-1.120643,53.086749],[-1.127537,53.087041],[-1.13126,53.088209],[-1.135649,53.090551],[-1.140148,53.092352],[-1.139597,53.09609],[-1.139287,53.099645],[-1.1495,53.099955],[-1.157669,53.09901],[-1.159957,53.10396],[-1.164252,53.103269],[-1.167672,53.102554],[-1.175234,53.101659],[-1.180011,53.100565],[-1.183026,53.099418],[-1.185643,53.099105],[-1.196044,53.094503],[-1.192927,53.092623],[-1.194913,53.092452],[-1.199719,53.090804],[-1.199701,53.089157],[-1.201787,53.088021],[-1.202506,53.086911],[-1.205904,53.086445],[-1.210716,53.084865],[-1.213479,53.085066],[-1.215037,53.084704],[-1.218796,53.084678],[-1.221165,53.083996],[-1.22631,53.081023],[-1.226363,53.077109],[-1.227358,53.075072],[-1.228004,53.070657],[-1.229722,53.068104],[-1.22998,53.065241],[-1.231289,53.062065],[-1.228885,53.058209],[-1.228119,53.054571],[-1.217425,53.049029],[-1.215277,53.049255],[-1.210946,53.05024],[-1.208767,53.051161],[-1.206785,53.051389],[-1.20607,53.050507],[-1.202024,53.050842],[-1.199903,53.051605],[-1.197105,53.048639],[-1.196413,53.049016],[-1.191716,53.047794],[-1.189954,53.048651],[-1.189422,53.047368],[-1.185827,53.048683],[-1.182242,53.048508],[-1.181435,53.047448],[-1.181253,53.043374],[-1.178427,53.040022],[-1.177401,53.038132],[-1.1769,53.035233],[-1.177756,53.03304],[-1.178029,53.029985],[-1.179455,53.026943],[-1.179339,53.024754],[-1.180071,53.02383],[-1.182992,53.021973],[-1.183643,53.020879],[-1.182746,53.018569],[-1.183156,53.016761],[-1.184482,53.014446],[-1.170791,53.013966],[-1.167773,53.014273],[-1.166656,53.010194],[-1.165288,53.010422],[-1.162276,53.011632],[-1.162149,53.010664],[-1.157984,53.01062],[-1.158507,53.009642],[-1.154637,53.009518],[-1.154253,53.008253],[-1.151536,53.007657],[-1.150738,53.008371],[-1.147509,53.007286],[-1.146396,53.008248],[-1.143513,53.006501],[-1.147316,53.002796],[-1.147863,53.001107],[-1.1497,53.000243],[-1.150149,52.999079],[-1.153443,52.997437],[-1.152384,52.99664],[-1.149077,52.997677],[-1.148203,52.997242],[-1.146093,52.998378],[-1.141321,52.996577],[-1.140489,52.994802],[-1.138255,52.994844],[-1.140038,52.992592],[-1.140171,52.989538],[-1.142489,52.986288],[-1.13982,52.985947],[-1.136201,52.986523],[-1.132817,52.986515],[-1.126396,52.984792],[-1.123725,52.983466],[-1.125669,52.981607],[-1.125838,52.980611],[-1.121321,52.974908],[-1.120496,52.97457],[-1.119751,52.969369],[-1.120107,52.967825],[-1.114642,52.964624],[-1.112202,52.965283],[-1.109471,52.964153],[-1.104058,52.964083],[-1.103886,52.962124],[-1.102074,52.962494],[-1.101496,52.958938],[-1.096938,52.958038],[-1.094581,52.956724],[-1.096876,52.955521],[-1.092162,52.954836],[-1.092852,52.954405],[-1.091873,52.953164],[-1.089729,52.952544],[-1.088107,52.951583],[-1.086115,52.94857],[-1.084791,52.948181],[-1.083153,52.948608],[-1.079897,52.951163],[-1.078258,52.95306],[-1.075102,52.95546],[-1.07383,52.955856],[-1.071805,52.955807],[-1.0679,52.954628],[-1.065666,52.952757],[-1.064621,52.951128],[-1.062352,52.950315],[-1.05668,52.950718],[-1.054425,52.951013],[-1.051158,52.952169],[-1.048281,52.952625],[-1.046965,52.952521],[-1.042918,52.951307],[-1.041557,52.951262],[-1.037228,52.956449],[-1.033795,52.958355],[-1.033078,52.959189],[-1.032912,52.962237],[-1.033487,52.964533],[-1.032624,52.967002],[-1.033598,52.969047],[-1.036452,52.971813],[-1.038158,52.981566],[-1.037564,52.983584],[-1.035963,52.984828],[-1.034009,52.985725],[-1.031092,52.986025],[-1.026159,52.985859],[-1.023927,52.985138],[-1.022642,52.984277],[-1.021132,52.981933],[-1.020021,52.980966],[-1.018389,52.98035],[-1.016553,52.980244],[-1.013254,52.981112],[-1.007086,52.985457]]]},"properties":{"LAD22CD":"E07000173","LAD22NM":"Gedling","BNG_E":459184,"BNG_N":347811,"LONG":-1.11907,"LAT":53.02434,"GlobalID":"27abb141-f12c-4bfa-a256-da2f65fd5ede"},"id":182}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.177891,53.11481],[-1.170795,53.115009],[-1.167632,53.115947],[-1.165385,53.117982],[-1.161159,53.119455],[-1.152712,53.120514],[-1.150352,53.121391],[-1.147123,53.121955],[-1.1435,53.121396],[-1.14044,53.119906],[-1.1369,53.119481],[-1.136297,53.118557],[-1.134481,53.119227],[-1.130816,53.119568],[-1.127641,53.118548],[-1.125583,53.117527],[-1.120217,53.119081],[-1.127243,53.124498],[-1.127293,53.125386],[-1.126254,53.126885],[-1.126266,53.128364],[-1.127157,53.130785],[-1.126889,53.132132],[-1.128584,53.132749],[-1.1272,53.134794],[-1.130256,53.135947],[-1.129928,53.137921],[-1.128836,53.138685],[-1.129971,53.140271],[-1.130142,53.141618],[-1.127453,53.144947],[-1.122211,53.147976],[-1.118055,53.149357],[-1.11415,53.151618],[-1.111955,53.152373],[-1.111057,53.153428],[-1.11678,53.153668],[-1.118878,53.154414],[-1.122034,53.155944],[-1.126135,53.157395],[-1.12868,53.159541],[-1.131653,53.162907],[-1.132479,53.162827],[-1.146169,53.169237],[-1.151548,53.172062],[-1.152984,53.175326],[-1.147932,53.180152],[-1.141916,53.185009],[-1.140058,53.187082],[-1.138801,53.187862],[-1.136119,53.188684],[-1.127742,53.189687],[-1.12784,53.190074],[-1.124844,53.191187],[-1.120068,53.192206],[-1.115714,53.194673],[-1.113491,53.19629],[-1.111227,53.198926],[-1.10871,53.203145],[-1.104247,53.208877],[-1.104552,53.210507],[-1.103891,53.212951],[-1.103592,53.216828],[-1.10394,53.219249],[-1.102854,53.219728],[-1.09732,53.219543],[-1.094775,53.229433],[-1.095439,53.232422],[-1.098287,53.232566],[-1.098295,53.234091],[-1.099492,53.234812],[-1.103296,53.235607],[-1.104984,53.235123],[-1.108853,53.232639],[-1.111459,53.23044],[-1.116446,53.231837],[-1.119728,53.232084],[-1.119691,53.231041],[-1.122082,53.230856],[-1.123067,53.226709],[-1.122107,53.225566],[-1.123674,53.224673],[-1.132597,53.225734],[-1.139788,53.225775],[-1.146602,53.224963],[-1.149943,53.224],[-1.152188,53.223705],[-1.156896,53.222299],[-1.161753,53.221545],[-1.169486,53.219212],[-1.171121,53.218959],[-1.175769,53.219227],[-1.179133,53.219134],[-1.181558,53.21868],[-1.188266,53.218716],[-1.18857,53.218396],[-1.196789,53.217165],[-1.196934,53.21678],[-1.202237,53.216117],[-1.202717,53.216659],[-1.206608,53.216628],[-1.209425,53.217697],[-1.211044,53.215814],[-1.209027,53.212591],[-1.2082,53.211715],[-1.2056,53.210522],[-1.205543,53.209454],[-1.204738,53.208282],[-1.202842,53.208369],[-1.20097,53.20396],[-1.201438,53.203173],[-1.201535,53.198858],[-1.197316,53.19527],[-1.196737,53.193563],[-1.195817,53.192445],[-1.195055,53.189359],[-1.195305,53.187041],[-1.196936,53.184818],[-1.199299,53.183372],[-1.199271,53.182776],[-1.201192,53.182429],[-1.204292,53.182358],[-1.209401,53.181121],[-1.215661,53.180907],[-1.218398,53.178929],[-1.220465,53.178786],[-1.220948,53.179572],[-1.222595,53.18016],[-1.226734,53.178686],[-1.229125,53.178852],[-1.231651,53.178147],[-1.236203,53.178479],[-1.237419,53.179173],[-1.238766,53.17908],[-1.241689,53.178149],[-1.243333,53.177018],[-1.243671,53.176298],[-1.24527,53.175214],[-1.244607,53.173311],[-1.246309,53.172119],[-1.248235,53.171651],[-1.24949,53.170902],[-1.249071,53.169964],[-1.249848,53.168553],[-1.251692,53.167266],[-1.252904,53.166936],[-1.253396,53.165887],[-1.254678,53.164773],[-1.25993,53.164481],[-1.258818,53.163736],[-1.257995,53.161328],[-1.257022,53.160157],[-1.256842,53.156386],[-1.255325,53.154616],[-1.251276,53.154379],[-1.247524,53.153044],[-1.243596,53.154204],[-1.240937,53.152998],[-1.239769,53.149877],[-1.239848,53.148715],[-1.237821,53.148761],[-1.23715,53.146304],[-1.239918,53.139587],[-1.237915,53.13966],[-1.229301,53.134171],[-1.224604,53.131631],[-1.222933,53.130301],[-1.220293,53.129667],[-1.217363,53.128293],[-1.210587,53.125918],[-1.20249,53.124464],[-1.201916,53.122709],[-1.200682,53.121805],[-1.198843,53.12177],[-1.193781,53.119907],[-1.188468,53.119737],[-1.186447,53.117323],[-1.185852,53.115809],[-1.182988,53.115175],[-1.177891,53.11481]]]},"properties":{"LAD22CD":"E07000174","LAD22NM":"Mansfield","BNG_E":455047,"BNG_N":363637,"LONG":-1.17804,"LAT":53.16703,"GlobalID":"7327ba6d-9907-4f74-842b-d0afdfd57ed7"},"id":183}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.666577,53.239702],[-0.68061,53.251993],[-0.682352,53.251537],[-0.683542,53.254546],[-0.688027,53.258391],[-0.69113,53.257669],[-0.694764,53.258402],[-0.712976,53.258137],[-0.71952,53.257155],[-0.721767,53.256097],[-0.725926,53.255278],[-0.727129,53.255443],[-0.734151,53.254004],[-0.734822,53.253041],[-0.735075,53.251474],[-0.73418,53.249069],[-0.734865,53.247675],[-0.735084,53.243874],[-0.740577,53.243669],[-0.747215,53.244391],[-0.760367,53.245207],[-0.760753,53.245644],[-0.763211,53.245878],[-0.771053,53.24616],[-0.77105,53.246754],[-0.776496,53.246893],[-0.777953,53.244368],[-0.777996,53.242751],[-0.777008,53.23893],[-0.777933,53.236865],[-0.777555,53.234786],[-0.781122,53.23056],[-0.782516,53.227522],[-0.782848,53.22561],[-0.782158,53.223773],[-0.776305,53.218546],[-0.7768,53.216483],[-0.775055,53.215149],[-0.775132,53.214611],[-0.778203,53.212477],[-0.776818,53.209368],[-0.775077,53.207976],[-0.775089,53.206922],[-0.775931,53.206132],[-0.778914,53.204672],[-0.77953,53.203865],[-0.779235,53.202763],[-0.77649,53.200675],[-0.776343,53.199573],[-0.780458,53.195587],[-0.78108,53.193509],[-0.780529,53.191515],[-0.782015,53.19014],[-0.783356,53.189913],[-0.788036,53.19045],[-0.790329,53.189768],[-0.791926,53.18678],[-0.790176,53.18402],[-0.790017,53.182938],[-0.791766,53.182053],[-0.794384,53.181538],[-0.794435,53.180516],[-0.792729,53.179659],[-0.78799,53.179389],[-0.786515,53.179023],[-0.786732,53.178282],[-0.788924,53.178909],[-0.793409,53.179305],[-0.795542,53.180367],[-0.795804,53.181175],[-0.794546,53.182089],[-0.791785,53.182731],[-0.791242,53.184016],[-0.792994,53.185857],[-0.793191,53.186566],[-0.791008,53.190383],[-0.788035,53.191099],[-0.783599,53.190662],[-0.78175,53.191409],[-0.782173,53.194301],[-0.780971,53.196453],[-0.781362,53.196681],[-0.790076,53.199147],[-0.78893,53.201665],[-0.787397,53.203099],[-0.785856,53.204009],[-0.787293,53.204565],[-0.791045,53.204868],[-0.798857,53.204662],[-0.803704,53.205559],[-0.815724,53.204919],[-0.817375,53.204106],[-0.819864,53.201636],[-0.821571,53.20135],[-0.823146,53.202237],[-0.824919,53.202741],[-0.824765,53.203405],[-0.826547,53.205863],[-0.827476,53.206332],[-0.832061,53.20673],[-0.83052,53.212831],[-0.836955,53.213658],[-0.836506,53.215531],[-0.835509,53.216218],[-0.831483,53.215693],[-0.830798,53.217566],[-0.83982,53.21892],[-0.848214,53.218662],[-0.848498,53.215309],[-0.852632,53.21547],[-0.854417,53.214673],[-0.857839,53.212207],[-0.860867,53.213512],[-0.862779,53.213154],[-0.864704,53.213946],[-0.866465,53.215194],[-0.867297,53.216398],[-0.869284,53.216632],[-0.872597,53.218172],[-0.875459,53.218563],[-0.877491,53.219804],[-0.883711,53.222344],[-0.886927,53.222742],[-0.888848,53.223497],[-0.894248,53.223671],[-0.896301,53.223216],[-0.898304,53.223347],[-0.899275,53.222385],[-0.901703,53.221145],[-0.907269,53.220503],[-0.916548,53.218324],[-0.920013,53.218356],[-0.921682,53.218683],[-0.929974,53.21644],[-0.934894,53.21619],[-0.93985,53.215485],[-0.944652,53.214649],[-0.947249,53.213859],[-0.949291,53.214306],[-0.949713,53.218005],[-0.948264,53.219206],[-0.948658,53.220834],[-0.949656,53.22109],[-0.948297,53.222754],[-0.949147,53.224299],[-0.947218,53.225763],[-0.950234,53.226152],[-0.952933,53.227085],[-0.957537,53.231893],[-0.961288,53.233276],[-0.964641,53.233876],[-0.969979,53.23576],[-0.983927,53.236605],[-0.996579,53.236747],[-1.006595,53.23614],[-1.010132,53.239511],[-1.011798,53.24048],[-1.012922,53.241643],[-1.023549,53.247803],[-1.023177,53.247933],[-1.025905,53.252136],[-1.027316,53.258067],[-1.027535,53.260852],[-1.027955,53.261036],[-1.031224,53.259784],[-1.046006,53.253505],[-1.052146,53.2522],[-1.058437,53.249106],[-1.066219,53.244742],[-1.06626,53.244308],[-1.068918,53.242675],[-1.072483,53.240906],[-1.086311,53.237698],[-1.09295,53.237233],[-1.103296,53.235607],[-1.099492,53.234812],[-1.098295,53.234091],[-1.098287,53.232566],[-1.095439,53.232422],[-1.094775,53.229433],[-1.09732,53.219543],[-1.102854,53.219728],[-1.10394,53.219249],[-1.103592,53.216828],[-1.103891,53.212951],[-1.104552,53.210507],[-1.104247,53.208877],[-1.10871,53.203145],[-1.111227,53.198926],[-1.113491,53.19629],[-1.115714,53.194673],[-1.120068,53.192206],[-1.124844,53.191187],[-1.12784,53.190074],[-1.127742,53.189687],[-1.136119,53.188684],[-1.138801,53.187862],[-1.140058,53.187082],[-1.141916,53.185009],[-1.147932,53.180152],[-1.152984,53.175326],[-1.151548,53.172062],[-1.146169,53.169237],[-1.132479,53.162827],[-1.131653,53.162907],[-1.12868,53.159541],[-1.126135,53.157395],[-1.122034,53.155944],[-1.118878,53.154414],[-1.11678,53.153668],[-1.111057,53.153428],[-1.111955,53.152373],[-1.11415,53.151618],[-1.118055,53.149357],[-1.122211,53.147976],[-1.127453,53.144947],[-1.130142,53.141618],[-1.129971,53.140271],[-1.128836,53.138685],[-1.129928,53.137921],[-1.130256,53.135947],[-1.1272,53.134794],[-1.128584,53.132749],[-1.126889,53.132132],[-1.127157,53.130785],[-1.126266,53.128364],[-1.126254,53.126885],[-1.127293,53.125386],[-1.127243,53.124498],[-1.120217,53.119081],[-1.125583,53.117527],[-1.127641,53.118548],[-1.130816,53.119568],[-1.134481,53.119227],[-1.136297,53.118557],[-1.1369,53.119481],[-1.14044,53.119906],[-1.1435,53.121396],[-1.147123,53.121955],[-1.150352,53.121391],[-1.152712,53.120514],[-1.161159,53.119455],[-1.165385,53.117982],[-1.167632,53.115947],[-1.170795,53.115009],[-1.177891,53.11481],[-1.175583,53.112309],[-1.172751,53.111194],[-1.169992,53.109474],[-1.167778,53.107515],[-1.164252,53.103269],[-1.159957,53.10396],[-1.157669,53.09901],[-1.1495,53.099955],[-1.139287,53.099645],[-1.139597,53.09609],[-1.140148,53.092352],[-1.135649,53.090551],[-1.13126,53.088209],[-1.127537,53.087041],[-1.120643,53.086749],[-1.130182,53.073607],[-1.127332,53.074],[-1.125453,53.074926],[-1.12242,53.075218],[-1.120005,53.076011],[-1.113959,53.077011],[-1.111445,53.076205],[-1.106534,53.075626],[-1.100828,53.076037],[-1.094316,53.07415],[-1.089503,53.078019],[-1.088273,53.077305],[-1.08643,53.07528],[-1.086673,53.073232],[-1.09138,53.069821],[-1.093431,53.067353],[-1.085652,53.060512],[-1.08445,53.058771],[-1.084537,53.057558],[-1.082679,53.055677],[-1.082817,53.054576],[-1.080483,53.052312],[-1.079136,53.052015],[-1.078443,53.051022],[-1.076534,53.050077],[-1.076022,53.048841],[-1.073691,53.047456],[-1.071301,53.047093],[-1.069331,53.045877],[-1.066649,53.045504],[-1.064331,53.044494],[-1.063857,53.043112],[-1.062881,53.042426],[-1.061938,53.040992],[-1.058912,53.039493],[-1.057715,53.037935],[-1.05672,53.03541],[-1.041876,53.031414],[-1.038893,53.028708],[-1.037107,53.028079],[-1.036912,53.027325],[-1.034695,53.026472],[-1.034284,53.025636],[-1.030612,53.024751],[-1.029392,53.023201],[-1.030286,53.02107],[-1.03221,53.020462],[-1.042553,53.019378],[-1.047768,53.017417],[-1.053896,53.01436],[-1.052592,53.013027],[-1.052909,53.011175],[-1.048893,53.009535],[-1.047947,53.007762],[-1.046354,53.00716],[-1.043167,53.007272],[-1.041165,53.006852],[-1.038183,53.00726],[-1.036581,53.006872],[-1.034213,53.005003],[-1.036638,53.003567],[-1.037963,53.001078],[-1.039207,53.000217],[-1.037257,52.999056],[-1.039358,52.998428],[-1.038118,52.99563],[-1.034189,52.996154],[-1.031167,52.992674],[-1.028976,52.993672],[-1.027496,52.992674],[-1.024725,52.993101],[-1.023305,52.991859],[-1.021519,52.992722],[-1.016807,52.988763],[-1.014589,52.989835],[-1.01289,52.988465],[-1.011018,52.989525],[-1.008766,52.989204],[-1.007254,52.987896],[-1.007836,52.987365],[-1.007086,52.985457],[-1.004475,52.986106],[-0.997724,52.986017],[-0.995293,52.98639],[-0.990907,52.986557],[-0.978778,52.985634],[-0.975962,52.986326],[-0.970794,52.989678],[-0.966447,52.996657],[-0.960436,53.004264],[-0.957397,53.005912],[-0.954763,53.008317],[-0.95203,53.009618],[-0.94976,53.010374],[-0.944431,53.011248],[-0.93802,53.014115],[-0.931525,53.018839],[-0.92886,53.02111],[-0.924794,53.02702],[-0.922441,53.029237],[-0.919393,53.03102],[-0.917418,53.031568],[-0.915117,53.033496],[-0.910121,53.035928],[-0.909274,53.034134],[-0.910428,53.032081],[-0.909901,53.030152],[-0.905768,53.027245],[-0.903934,53.025476],[-0.896957,53.016624],[-0.895422,53.015536],[-0.884297,53.011257],[-0.881944,53.009171],[-0.87978,53.006353],[-0.876255,53.006997],[-0.872449,53.007137],[-0.868633,53.007967],[-0.864553,53.011344],[-0.86088,53.010119],[-0.855078,53.006674],[-0.851599,53.008524],[-0.850596,53.008524],[-0.848965,53.009657],[-0.847268,53.008872],[-0.843632,53.008177],[-0.835759,53.005696],[-0.833354,53.007724],[-0.829913,53.006548],[-0.828903,53.003191],[-0.825049,53.002253],[-0.822917,53.000986],[-0.822141,53.000104],[-0.823046,52.999467],[-0.823505,52.997076],[-0.822365,52.992624],[-0.820595,52.989667],[-0.82041,52.98782],[-0.818147,52.986625],[-0.815158,52.985661],[-0.822079,52.976914],[-0.825447,52.973333],[-0.826134,52.973511],[-0.828279,52.972218],[-0.830476,52.971624],[-0.83159,52.97057],[-0.836072,52.967921],[-0.822373,52.962474],[-0.820022,52.960464],[-0.813702,52.956994],[-0.812851,52.957464],[-0.812467,52.959135],[-0.811758,52.959825],[-0.811988,52.960803],[-0.809894,52.964968],[-0.809813,52.96598],[-0.806899,52.966727],[-0.805241,52.96809],[-0.804042,52.971619],[-0.803023,52.971725],[-0.800827,52.973167],[-0.799855,52.973169],[-0.799112,52.974349],[-0.79615,52.976731],[-0.790508,52.977224],[-0.788855,52.976693],[-0.787565,52.977679],[-0.784344,52.976419],[-0.783176,52.976935],[-0.7818,52.976446],[-0.780091,52.9773],[-0.778279,52.976923],[-0.776995,52.97786],[-0.776789,52.979005],[-0.777669,52.980389],[-0.777554,52.983807],[-0.778457,52.983699],[-0.780306,52.985115],[-0.780905,52.986427],[-0.782204,52.98759],[-0.78213,52.988473],[-0.784536,52.988568],[-0.784459,52.990145],[-0.788095,52.99177],[-0.787325,52.993207],[-0.789456,52.993938],[-0.792563,52.995884],[-0.791891,52.997475],[-0.793822,52.997866],[-0.794936,52.999967],[-0.795859,53.000594],[-0.80019,53.002194],[-0.800521,53.003827],[-0.80251,53.005361],[-0.802616,53.006385],[-0.80406,53.006385],[-0.804274,53.012246],[-0.803645,53.012955],[-0.802031,53.012113],[-0.798614,53.011011],[-0.795825,53.010598],[-0.788414,53.025853],[-0.785844,53.025741],[-0.784872,53.025183],[-0.780409,53.024402],[-0.776673,53.024711],[-0.773956,53.025535],[-0.770386,53.027318],[-0.760827,53.02941],[-0.758435,53.032387],[-0.758854,53.03517],[-0.757818,53.036477],[-0.756619,53.036676],[-0.757147,53.037865],[-0.755856,53.044],[-0.753331,53.048242],[-0.749555,53.05511],[-0.745628,53.054126],[-0.742834,53.05464],[-0.740685,53.053586],[-0.738825,53.05461],[-0.736962,53.054915],[-0.73425,53.054833],[-0.733372,53.055573],[-0.731075,53.054346],[-0.725589,53.056293],[-0.725363,53.05749],[-0.722598,53.059922],[-0.7198,53.059915],[-0.716204,53.059059],[-0.713669,53.06032],[-0.71294,53.061083],[-0.713849,53.062328],[-0.714073,53.06368],[-0.715941,53.064406],[-0.715059,53.065393],[-0.713493,53.06535],[-0.711044,53.066222],[-0.70783,53.065397],[-0.707181,53.065591],[-0.704264,53.06505],[-0.701539,53.063663],[-0.700498,53.063834],[-0.698478,53.065065],[-0.697045,53.065071],[-0.695423,53.065938],[-0.695301,53.067044],[-0.697588,53.066037],[-0.698806,53.067746],[-0.698386,53.070941],[-0.697434,53.071684],[-0.698569,53.073576],[-0.697945,53.074682],[-0.698482,53.075468],[-0.702761,53.076654],[-0.707477,53.07873],[-0.710358,53.079378],[-0.708159,53.082427],[-0.70615,53.083378],[-0.709601,53.085233],[-0.709418,53.085982],[-0.715391,53.086512],[-0.715393,53.087196],[-0.724383,53.092589],[-0.728975,53.096146],[-0.729618,53.097902],[-0.725479,53.100749],[-0.721251,53.104268],[-0.718371,53.110352],[-0.716756,53.116185],[-0.716883,53.119444],[-0.71856,53.119569],[-0.720837,53.120887],[-0.727258,53.122043],[-0.728155,53.123213],[-0.731092,53.124003],[-0.731106,53.126373],[-0.732015,53.126706],[-0.732408,53.127802],[-0.728084,53.130385],[-0.724,53.133419],[-0.718935,53.135765],[-0.715376,53.136883],[-0.717156,53.138945],[-0.718673,53.142011],[-0.721048,53.14429],[-0.72121,53.148183],[-0.722064,53.149739],[-0.722122,53.151939],[-0.723232,53.155104],[-0.716028,53.170412],[-0.718723,53.174938],[-0.718661,53.177079],[-0.725903,53.178465],[-0.729712,53.178247],[-0.730266,53.180095],[-0.737728,53.179305],[-0.75222,53.181054],[-0.764138,53.181544],[-0.762548,53.185752],[-0.762168,53.188239],[-0.753767,53.188156],[-0.742485,53.198438],[-0.730569,53.210756],[-0.724413,53.209648],[-0.720313,53.209322],[-0.714753,53.207608],[-0.709011,53.212291],[-0.70826,53.212231],[-0.697617,53.220237],[-0.686875,53.219967],[-0.686683,53.219631],[-0.675872,53.217644],[-0.676182,53.218225],[-0.674976,53.220376],[-0.674735,53.222599],[-0.673146,53.223775],[-0.672973,53.224465],[-0.671478,53.225928],[-0.670143,53.229304],[-0.669061,53.229999],[-0.668919,53.231164],[-0.666509,53.233451],[-0.666406,53.235316],[-0.667153,53.236506],[-0.667115,53.238805],[-0.666577,53.239702]]]},"properties":{"LAD22CD":"E07000175","LAD22NM":"Newark and Sherwood","BNG_E":470624,"BNG_N":357451,"LONG":-0.94643,"LAT":53.1096,"GlobalID":"bfa6ef80-7829-427f-afe7-5a3f2c70625c"},"id":184}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.820022,52.960464],[-0.822373,52.962474],[-0.836072,52.967921],[-0.83159,52.97057],[-0.830476,52.971624],[-0.828279,52.972218],[-0.826134,52.973511],[-0.825447,52.973333],[-0.822079,52.976914],[-0.815158,52.985661],[-0.818147,52.986625],[-0.82041,52.98782],[-0.820595,52.989667],[-0.822365,52.992624],[-0.823505,52.997076],[-0.823046,52.999467],[-0.822141,53.000104],[-0.822917,53.000986],[-0.825049,53.002253],[-0.828903,53.003191],[-0.829913,53.006548],[-0.833354,53.007724],[-0.835759,53.005696],[-0.843632,53.008177],[-0.847268,53.008872],[-0.848965,53.009657],[-0.850596,53.008524],[-0.851599,53.008524],[-0.855078,53.006674],[-0.86088,53.010119],[-0.864553,53.011344],[-0.868633,53.007967],[-0.872449,53.007137],[-0.876255,53.006997],[-0.87978,53.006353],[-0.881944,53.009171],[-0.884297,53.011257],[-0.895422,53.015536],[-0.896957,53.016624],[-0.903934,53.025476],[-0.905768,53.027245],[-0.909901,53.030152],[-0.910428,53.032081],[-0.909274,53.034134],[-0.910121,53.035928],[-0.915117,53.033496],[-0.917418,53.031568],[-0.919393,53.03102],[-0.922441,53.029237],[-0.924794,53.02702],[-0.92886,53.02111],[-0.931525,53.018839],[-0.93802,53.014115],[-0.944431,53.011248],[-0.94976,53.010374],[-0.95203,53.009618],[-0.954763,53.008317],[-0.957397,53.005912],[-0.960436,53.004264],[-0.966447,52.996657],[-0.970794,52.989678],[-0.975962,52.986326],[-0.978778,52.985634],[-0.990907,52.986557],[-0.995293,52.98639],[-0.997724,52.986017],[-1.004475,52.986106],[-1.007086,52.985457],[-1.013254,52.981112],[-1.016553,52.980244],[-1.018389,52.98035],[-1.020021,52.980966],[-1.021132,52.981933],[-1.022642,52.984277],[-1.023927,52.985138],[-1.026159,52.985859],[-1.031092,52.986025],[-1.034009,52.985725],[-1.035963,52.984828],[-1.037564,52.983584],[-1.038158,52.981566],[-1.036452,52.971813],[-1.033598,52.969047],[-1.032624,52.967002],[-1.033487,52.964533],[-1.032912,52.962237],[-1.033078,52.959189],[-1.033795,52.958355],[-1.037228,52.956449],[-1.041557,52.951262],[-1.042918,52.951307],[-1.046965,52.952521],[-1.048281,52.952625],[-1.051158,52.952169],[-1.054425,52.951013],[-1.05668,52.950718],[-1.062352,52.950315],[-1.064621,52.951128],[-1.065666,52.952757],[-1.0679,52.954628],[-1.071805,52.955807],[-1.07383,52.955856],[-1.075102,52.95546],[-1.078258,52.95306],[-1.079897,52.951163],[-1.083153,52.948608],[-1.084791,52.948181],[-1.086115,52.94857],[-1.090067,52.94712],[-1.095331,52.944436],[-1.097594,52.94259],[-1.099677,52.941975],[-1.10394,52.942344],[-1.109162,52.944466],[-1.111957,52.944584],[-1.118032,52.943105],[-1.121388,52.942715],[-1.126245,52.943406],[-1.129576,52.943266],[-1.131596,52.942859],[-1.134613,52.940769],[-1.137593,52.937319],[-1.139253,52.933259],[-1.140062,52.932494],[-1.141884,52.93199],[-1.143802,52.931877],[-1.146394,52.932175],[-1.148,52.932985],[-1.150353,52.935841],[-1.152289,52.937026],[-1.154159,52.934198],[-1.155495,52.930493],[-1.158893,52.912791],[-1.159015,52.909848],[-1.16001,52.90969],[-1.158663,52.905534],[-1.158604,52.900062],[-1.162682,52.900274],[-1.163378,52.899584],[-1.165865,52.899107],[-1.167058,52.898136],[-1.168718,52.897862],[-1.170291,52.896692],[-1.170076,52.895854],[-1.171935,52.893383],[-1.173844,52.892153],[-1.173554,52.891731],[-1.174927,52.889658],[-1.176813,52.889029],[-1.178809,52.889887],[-1.178204,52.891311],[-1.192047,52.895058],[-1.19123,52.896636],[-1.195457,52.897858],[-1.195884,52.897247],[-1.198922,52.897758],[-1.202813,52.899163],[-1.211302,52.902612],[-1.213233,52.900744],[-1.216573,52.900165],[-1.2175,52.900651],[-1.21415,52.903308],[-1.21392,52.904415],[-1.214844,52.903733],[-1.220164,52.902358],[-1.220798,52.900423],[-1.21922,52.896909],[-1.220493,52.895564],[-1.222547,52.89531],[-1.227747,52.89556],[-1.230252,52.894707],[-1.230815,52.894052],[-1.233457,52.89292],[-1.235736,52.892353],[-1.239706,52.892289],[-1.241282,52.892439],[-1.243859,52.89152],[-1.245857,52.890316],[-1.246245,52.888234],[-1.245238,52.887012],[-1.240688,52.884934],[-1.238986,52.883524],[-1.238448,52.881807],[-1.240056,52.880109],[-1.242616,52.879139],[-1.244827,52.878763],[-1.250252,52.879542],[-1.253611,52.879286],[-1.255829,52.878127],[-1.259909,52.875072],[-1.266104,52.873312],[-1.267889,52.873369],[-1.270148,52.871772],[-1.270783,52.869212],[-1.271534,52.868194],[-1.269657,52.867206],[-1.269504,52.866544],[-1.271579,52.865267],[-1.271527,52.864006],[-1.272755,52.862183],[-1.275283,52.86038],[-1.273792,52.8595],[-1.27067,52.858935],[-1.269007,52.858934],[-1.267135,52.859828],[-1.264567,52.858369],[-1.265084,52.856943],[-1.266759,52.856256],[-1.268215,52.856201],[-1.270604,52.85385],[-1.271087,52.851169],[-1.272206,52.84944],[-1.271093,52.847539],[-1.270841,52.84617],[-1.267771,52.845171],[-1.266212,52.842753],[-1.266398,52.842227],[-1.269072,52.840334],[-1.270514,52.839979],[-1.267572,52.838879],[-1.266934,52.83747],[-1.269336,52.836643],[-1.272331,52.83695],[-1.274364,52.836129],[-1.273983,52.833599],[-1.272151,52.832514],[-1.271354,52.831583],[-1.270889,52.828308],[-1.271253,52.824479],[-1.270885,52.823749],[-1.268945,52.823062],[-1.265088,52.820632],[-1.262051,52.820554],[-1.260943,52.820163],[-1.260018,52.818983],[-1.263378,52.81504],[-1.261927,52.810453],[-1.260022,52.807132],[-1.255364,52.804152],[-1.253895,52.804358],[-1.251789,52.805569],[-1.25073,52.80516],[-1.249009,52.805772],[-1.245368,52.806163],[-1.243808,52.805245],[-1.241512,52.805296],[-1.239836,52.804134],[-1.238238,52.80381],[-1.231871,52.800641],[-1.231144,52.798622],[-1.231895,52.796932],[-1.230836,52.796228],[-1.229263,52.793283],[-1.226507,52.792489],[-1.221953,52.791769],[-1.218234,52.793264],[-1.217127,52.793405],[-1.215259,52.794876],[-1.21124,52.79493],[-1.206924,52.794236],[-1.206279,52.793539],[-1.200289,52.793788],[-1.198484,52.793052],[-1.19865,52.792135],[-1.200046,52.791856],[-1.19773,52.789412],[-1.196138,52.790165],[-1.191599,52.792796],[-1.190962,52.794147],[-1.19141,52.794817],[-1.189171,52.795904],[-1.188889,52.796598],[-1.185785,52.798004],[-1.183126,52.798149],[-1.180217,52.799171],[-1.178404,52.801602],[-1.175168,52.803181],[-1.172102,52.803046],[-1.170472,52.803735],[-1.170595,52.804296],[-1.163276,52.806522],[-1.161878,52.806394],[-1.154074,52.806294],[-1.149924,52.80488],[-1.147461,52.805034],[-1.145002,52.80397],[-1.143964,52.803877],[-1.137275,52.805676],[-1.132988,52.80539],[-1.130893,52.805827],[-1.128827,52.807683],[-1.127417,52.808326],[-1.125725,52.810182],[-1.123053,52.810946],[-1.121248,52.812366],[-1.120598,52.814306],[-1.121513,52.817421],[-1.120067,52.817912],[-1.119163,52.819151],[-1.111552,52.820012],[-1.102041,52.820203],[-1.094191,52.821969],[-1.091485,52.82008],[-1.087872,52.821054],[-1.083748,52.822911],[-1.080757,52.823477],[-1.078705,52.824248],[-1.077058,52.824019],[-1.074435,52.824727],[-1.071882,52.823022],[-1.069462,52.822222],[-1.070066,52.820376],[-1.070183,52.817874],[-1.071534,52.816981],[-1.070961,52.81622],[-1.072004,52.815331],[-1.071738,52.814011],[-1.062204,52.816496],[-1.061757,52.815983],[-1.059205,52.81725],[-1.058554,52.81647],[-1.052581,52.815007],[-1.051768,52.813903],[-1.04727,52.81398],[-1.04219,52.81455],[-1.040664,52.81539],[-1.040217,52.816213],[-1.03753,52.816357],[-1.036289,52.815877],[-1.034819,52.816877],[-1.029919,52.818106],[-1.02799,52.819625],[-1.025586,52.819453],[-1.025145,52.820057],[-1.021933,52.822052],[-1.019629,52.822162],[-1.019207,52.821745],[-1.015549,52.82153],[-1.010181,52.821733],[-1.001678,52.820424],[-0.99858,52.820567],[-0.995676,52.82127],[-0.991535,52.819759],[-0.989004,52.81825],[-0.987668,52.819423],[-0.983491,52.82037],[-0.981314,52.821689],[-0.981446,52.822198],[-0.97993,52.823631],[-0.978137,52.824541],[-0.977377,52.826563],[-0.977167,52.828127],[-0.975725,52.828315],[-0.974778,52.829939],[-0.975359,52.830651],[-0.974924,52.833012],[-0.973915,52.834324],[-0.977364,52.83664],[-0.977075,52.840738],[-0.973074,52.84314],[-0.972318,52.843236],[-0.970613,52.844985],[-0.960852,52.843357],[-0.95919,52.84519],[-0.957774,52.845242],[-0.957454,52.846317],[-0.954969,52.847644],[-0.95461,52.849004],[-0.952772,52.850409],[-0.951737,52.850506],[-0.950306,52.851682],[-0.947835,52.851383],[-0.946272,52.85227],[-0.942414,52.853547],[-0.94184,52.854553],[-0.940114,52.855329],[-0.939186,52.856812],[-0.939389,52.858025],[-0.938675,52.858991],[-0.940551,52.859777],[-0.940827,52.861564],[-0.938463,52.861963],[-0.93541,52.863208],[-0.934231,52.8641],[-0.928122,52.866083],[-0.932717,52.870063],[-0.936064,52.871811],[-0.93999,52.875102],[-0.940574,52.876856],[-0.933908,52.876619],[-0.933698,52.877149],[-0.931574,52.878013],[-0.930347,52.878985],[-0.927875,52.878349],[-0.92596,52.878819],[-0.920683,52.87918],[-0.920457,52.879661],[-0.916925,52.878932],[-0.914851,52.880787],[-0.914339,52.882451],[-0.91178,52.882246],[-0.911977,52.883561],[-0.909123,52.883666],[-0.906035,52.884649],[-0.906527,52.885218],[-0.900892,52.887558],[-0.89904,52.887921],[-0.896264,52.889183],[-0.888996,52.891539],[-0.886986,52.891927],[-0.87872,52.895713],[-0.87432,52.898218],[-0.873009,52.898171],[-0.869504,52.900264],[-0.860243,52.90402],[-0.857634,52.905642],[-0.861256,52.908626],[-0.860441,52.909834],[-0.863748,52.911325],[-0.862894,52.913114],[-0.860485,52.915817],[-0.858259,52.917498],[-0.857504,52.918883],[-0.854156,52.920899],[-0.852982,52.921096],[-0.848227,52.923588],[-0.841373,52.928383],[-0.842406,52.928517],[-0.840597,52.930364],[-0.841333,52.931109],[-0.836778,52.935792],[-0.835331,52.9378],[-0.836219,52.938098],[-0.83489,52.939346],[-0.827541,52.941694],[-0.824361,52.94179],[-0.822539,52.944143],[-0.828057,52.944545],[-0.833909,52.94588],[-0.830882,52.948585],[-0.832856,52.9496],[-0.820022,52.960464]]]},"properties":{"LAD22CD":"E07000176","LAD22NM":"Rushcliffe","BNG_E":466606,"BNG_N":335453,"LONG":-1.01097,"LAT":52.9124,"GlobalID":"a647d234-f6d2-46cf-a6b9-e58e272797d7"},"id":185}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.118087,52.015426],[-1.119826,52.01568],[-1.12143,52.012411],[-1.123131,52.011358],[-1.125345,52.007105],[-1.126328,52.007045],[-1.126967,52.006042],[-1.131253,52.004885],[-1.13153,52.003096],[-1.133743,51.999643],[-1.134329,51.997296],[-1.140173,51.997651],[-1.143907,51.997019],[-1.148723,51.995052],[-1.15148,51.99311],[-1.15611,51.993444],[-1.156651,51.992234],[-1.163824,51.993412],[-1.172183,51.985984],[-1.174361,51.983324],[-1.176055,51.982045],[-1.176688,51.982512],[-1.180108,51.981695],[-1.183003,51.981492],[-1.184726,51.981704],[-1.18834,51.981218],[-1.19069,51.981523],[-1.194395,51.97932],[-1.19626,51.977431],[-1.198001,51.977291],[-1.203535,51.978579],[-1.206898,51.978265],[-1.217223,51.980334],[-1.22104,51.980181],[-1.223644,51.980407],[-1.227109,51.981248],[-1.229701,51.981367],[-1.230381,51.982035],[-1.232095,51.98236],[-1.234442,51.983534],[-1.236354,51.983719],[-1.23929,51.984588],[-1.241612,51.986293],[-1.247379,51.985065],[-1.249008,51.985714],[-1.250151,51.985311],[-1.251172,51.984229],[-1.252787,51.98334],[-1.257261,51.982522],[-1.259418,51.981264],[-1.260916,51.980926],[-1.267653,51.982626],[-1.270245,51.982947],[-1.280865,51.982364],[-1.281576,51.979976],[-1.283447,51.982016],[-1.284451,51.982587],[-1.287376,51.987655],[-1.287329,51.989534],[-1.283878,51.991325],[-1.282335,51.993073],[-1.284671,51.994843],[-1.283499,51.99617],[-1.282416,51.996332],[-1.283706,51.998089],[-1.282704,52.000354],[-1.28162,52.000293],[-1.280835,52.001437],[-1.28036,52.003428],[-1.277066,52.005359],[-1.277614,52.007238],[-1.278552,52.008289],[-1.279775,52.008757],[-1.283713,52.00936],[-1.284521,52.010822],[-1.282157,52.011316],[-1.28003,52.011055],[-1.278632,52.011368],[-1.278164,52.014273],[-1.280633,52.016524],[-1.280211,52.017025],[-1.281674,52.017785],[-1.281112,52.018547],[-1.282831,52.019203],[-1.28296,52.019912],[-1.28442,52.020911],[-1.283582,52.023199],[-1.284455,52.023754],[-1.28383,52.025038],[-1.286083,52.025616],[-1.285317,52.026477],[-1.29019,52.027448],[-1.293439,52.027521],[-1.294313,52.028036],[-1.293459,52.02968],[-1.2917,52.030978],[-1.292069,52.032788],[-1.293303,52.034312],[-1.294599,52.037824],[-1.295286,52.040299],[-1.296447,52.040865],[-1.297578,52.042748],[-1.300136,52.043648],[-1.300132,52.045377],[-1.302339,52.045929],[-1.302214,52.046416],[-1.30615,52.046875],[-1.307396,52.04723],[-1.311335,52.050534],[-1.31292,52.051453],[-1.30738,52.05759],[-1.309086,52.060725],[-1.30846,52.062362],[-1.307647,52.06319],[-1.307769,52.064352],[-1.30381,52.064307],[-1.302176,52.065019],[-1.301253,52.066104],[-1.300067,52.069363],[-1.305369,52.070294],[-1.306903,52.070314],[-1.305471,52.072093],[-1.303488,52.071979],[-1.303925,52.073554],[-1.301991,52.073789],[-1.30189,52.075194],[-1.298904,52.075355],[-1.297509,52.078057],[-1.299616,52.078312],[-1.299361,52.080101],[-1.308763,52.079506],[-1.313103,52.079901],[-1.316615,52.079606],[-1.31816,52.079921],[-1.319506,52.080777],[-1.320542,52.082195],[-1.319475,52.083861],[-1.321346,52.08487],[-1.320612,52.085785],[-1.321261,52.086543],[-1.320825,52.087628],[-1.316729,52.08896],[-1.316826,52.089776],[-1.312178,52.090726],[-1.307963,52.092273],[-1.304382,52.092074],[-1.30391,52.091642],[-1.299827,52.091449],[-1.297765,52.09195],[-1.295146,52.09338],[-1.287125,52.092639],[-1.285157,52.093247],[-1.280677,52.094158],[-1.276197,52.096818],[-1.271576,52.097928],[-1.269665,52.098017],[-1.262474,52.096946],[-1.2622,52.096527],[-1.258145,52.096418],[-1.25588,52.095692],[-1.24796,52.095773],[-1.248798,52.099079],[-1.250025,52.100485],[-1.25184,52.101366],[-1.251848,52.102018],[-1.254004,52.102487],[-1.252928,52.103874],[-1.257036,52.106163],[-1.25992,52.108722],[-1.264822,52.110765],[-1.270216,52.113569],[-1.272663,52.114315],[-1.27683,52.117076],[-1.278357,52.118635],[-1.281557,52.122621],[-1.282201,52.122637],[-1.284145,52.124057],[-1.288525,52.127975],[-1.290633,52.129301],[-1.293625,52.132586],[-1.293413,52.133051],[-1.29555,52.133823],[-1.295094,52.134712],[-1.297685,52.135285],[-1.297922,52.137146],[-1.299168,52.137189],[-1.299342,52.138393],[-1.302111,52.139293],[-1.30196,52.139795],[-1.305375,52.141214],[-1.304911,52.141636],[-1.308433,52.143509],[-1.308679,52.144345],[-1.30643,52.145553],[-1.308617,52.146544],[-1.309411,52.147633],[-1.311754,52.147919],[-1.310778,52.1495],[-1.312383,52.1498],[-1.313256,52.151078],[-1.315964,52.152276],[-1.317748,52.153352],[-1.318269,52.155811],[-1.319907,52.156965],[-1.319376,52.157667],[-1.321287,52.158306],[-1.320875,52.159206],[-1.324381,52.160918],[-1.323896,52.162103],[-1.325309,52.162772],[-1.328666,52.165477],[-1.330075,52.166302],[-1.329939,52.167351],[-1.331897,52.168485],[-1.333088,52.167349],[-1.333948,52.165397],[-1.334004,52.159083],[-1.338237,52.158843],[-1.342344,52.154905],[-1.343459,52.153235],[-1.341611,52.15068],[-1.34281,52.14873],[-1.341041,52.144856],[-1.343373,52.144224],[-1.346829,52.14235],[-1.349937,52.141592],[-1.350256,52.140864],[-1.349115,52.138515],[-1.348313,52.1378],[-1.34975,52.134846],[-1.352075,52.134806],[-1.355732,52.136014],[-1.359824,52.135062],[-1.362821,52.134798],[-1.364049,52.136708],[-1.369601,52.134723],[-1.370166,52.133095],[-1.371141,52.133269],[-1.375199,52.130914],[-1.382729,52.127543],[-1.383765,52.128216],[-1.385463,52.128403],[-1.386829,52.126052],[-1.387556,52.125991],[-1.390092,52.122737],[-1.389173,52.121966],[-1.391426,52.121528],[-1.392378,52.120292],[-1.392079,52.119696],[-1.393303,52.118963],[-1.392182,52.117071],[-1.3907,52.116789],[-1.38538,52.117458],[-1.38161,52.116946],[-1.378999,52.117532],[-1.37769,52.118132],[-1.374583,52.118318],[-1.370842,52.117534],[-1.371441,52.11618],[-1.370149,52.115083],[-1.370367,52.112718],[-1.36794,52.111647],[-1.366309,52.111732],[-1.365184,52.111302],[-1.365292,52.110023],[-1.363014,52.108936],[-1.361362,52.107505],[-1.361375,52.106289],[-1.359666,52.105698],[-1.358367,52.102976],[-1.358825,52.10225],[-1.35777,52.10131],[-1.360576,52.100968],[-1.362554,52.101084],[-1.366155,52.099944],[-1.367573,52.100005],[-1.371553,52.099075],[-1.374424,52.099726],[-1.378307,52.096763],[-1.3777,52.096055],[-1.3854,52.094146],[-1.385731,52.095239],[-1.387147,52.096106],[-1.387554,52.097424],[-1.390898,52.098897],[-1.395537,52.101702],[-1.396716,52.101921],[-1.400338,52.104335],[-1.400615,52.105057],[-1.402633,52.106325],[-1.402798,52.108897],[-1.403894,52.11009],[-1.411459,52.113049],[-1.414413,52.115437],[-1.41963,52.117642],[-1.424506,52.118252],[-1.426999,52.11815],[-1.431251,52.11728],[-1.437071,52.116704],[-1.441229,52.115556],[-1.444943,52.11525],[-1.447848,52.11612],[-1.448856,52.116038],[-1.453469,52.112991],[-1.449222,52.108315],[-1.448062,52.105162],[-1.448328,52.100471],[-1.446979,52.098863],[-1.447188,52.097625],[-1.453608,52.097336],[-1.453534,52.098542],[-1.458207,52.098001],[-1.459738,52.097531],[-1.465082,52.097416],[-1.466931,52.09774],[-1.467559,52.097056],[-1.470739,52.097955],[-1.471776,52.099463],[-1.474141,52.101002],[-1.477302,52.101351],[-1.480067,52.093558],[-1.486199,52.094228],[-1.487805,52.093957],[-1.488143,52.092828],[-1.48682,52.091483],[-1.484733,52.091304],[-1.485608,52.087733],[-1.487791,52.087773],[-1.488911,52.086231],[-1.489954,52.086234],[-1.490561,52.083803],[-1.494355,52.082227],[-1.493688,52.081593],[-1.493292,52.0796],[-1.490665,52.077135],[-1.492172,52.075482],[-1.493495,52.074808],[-1.495013,52.07472],[-1.499179,52.073915],[-1.500815,52.072929],[-1.501855,52.071627],[-1.500069,52.069943],[-1.502619,52.069176],[-1.501835,52.066271],[-1.499266,52.063535],[-1.497239,52.06087],[-1.497353,52.058955],[-1.499636,52.052436],[-1.50184,52.049582],[-1.503462,52.043548],[-1.504944,52.04144],[-1.506899,52.037233],[-1.50748,52.03532],[-1.5074,52.03338],[-1.510116,52.026713],[-1.510947,52.021449],[-1.513571,52.018383],[-1.51558,52.014429],[-1.521164,52.005885],[-1.52161,52.001595],[-1.522826,51.996843],[-1.521231,51.992993],[-1.518193,51.989867],[-1.513415,51.987187],[-1.510853,51.986152],[-1.503435,51.984799],[-1.50139,51.983689],[-1.500922,51.9815],[-1.496959,51.977203],[-1.495383,51.976377],[-1.493668,51.974899],[-1.492006,51.975406],[-1.487687,51.975516],[-1.484362,51.976324],[-1.480737,51.976129],[-1.477992,51.977012],[-1.473943,51.977024],[-1.472204,51.977375],[-1.470915,51.978631],[-1.467341,51.978733],[-1.462767,51.979263],[-1.460716,51.97866],[-1.458505,51.97898],[-1.456147,51.979726],[-1.454078,51.979671],[-1.450075,51.98238],[-1.44713,51.983542],[-1.441025,51.985157],[-1.437685,51.988031],[-1.437372,51.989193],[-1.435517,51.989083],[-1.433599,51.988033],[-1.431225,51.988199],[-1.427764,51.987996],[-1.426887,51.987355],[-1.424453,51.986685],[-1.426205,51.98534],[-1.426904,51.984215],[-1.426579,51.98293],[-1.423127,51.983183],[-1.421436,51.981941],[-1.418087,51.980915],[-1.41519,51.979207],[-1.412532,51.978574],[-1.410364,51.976081],[-1.410624,51.973756],[-1.409548,51.972697],[-1.408805,51.974841],[-1.406928,51.974851],[-1.406377,51.975332],[-1.406719,51.977893],[-1.404071,51.978457],[-1.401868,51.97987],[-1.399778,51.979149],[-1.396541,51.978643],[-1.384461,51.980622],[-1.382953,51.979999],[-1.377235,51.979601],[-1.37577,51.97833],[-1.374591,51.975933],[-1.373126,51.974912],[-1.371833,51.974779],[-1.370239,51.973768],[-1.36898,51.973852],[-1.368247,51.972996],[-1.368166,51.971673],[-1.365968,51.969325],[-1.364947,51.967464],[-1.362142,51.967826],[-1.361611,51.966146],[-1.361965,51.964662],[-1.360618,51.961022],[-1.36184,51.958496],[-1.361778,51.956923],[-1.361159,51.956226],[-1.360734,51.95378],[-1.36076,51.951456],[-1.361858,51.948375],[-1.356272,51.946794],[-1.352449,51.947037],[-1.349591,51.945878],[-1.348341,51.9458],[-1.344936,51.944201],[-1.344564,51.942705],[-1.345267,51.941161],[-1.343288,51.941219],[-1.340603,51.942153],[-1.33907,51.941957],[-1.332465,51.942149],[-1.336437,51.93812],[-1.338332,51.937706],[-1.339992,51.93496],[-1.330174,51.933488],[-1.330269,51.932223],[-1.329461,51.930532],[-1.33054,51.927351],[-1.325229,51.92673],[-1.325121,51.923203],[-1.324721,51.922506],[-1.318024,51.921779],[-1.314414,51.921948],[-1.312336,51.920977],[-1.306225,51.919765],[-1.306126,51.918714],[-1.305249,51.917242],[-1.306392,51.916349],[-1.301932,51.914365],[-1.299664,51.913753],[-1.298919,51.913156],[-1.298396,51.90984],[-1.298986,51.908359],[-1.300539,51.90657],[-1.302189,51.906173],[-1.303883,51.90399],[-1.303691,51.902612],[-1.302417,51.900005],[-1.300745,51.898646],[-1.297219,51.897367],[-1.294913,51.89697],[-1.293878,51.897234],[-1.292229,51.896442],[-1.291333,51.896681],[-1.289905,51.89391],[-1.291419,51.892816],[-1.297181,51.89077],[-1.29716,51.889318],[-1.297868,51.888043],[-1.296511,51.886115],[-1.293913,51.884096],[-1.288672,51.881684],[-1.286133,51.875158],[-1.28813,51.873548],[-1.294047,51.872092],[-1.294294,51.872981],[-1.296212,51.872667],[-1.302114,51.869116],[-1.299414,51.866466],[-1.294531,51.863978],[-1.295915,51.861729],[-1.297083,51.861044],[-1.304552,51.861675],[-1.307502,51.862751],[-1.309583,51.861749],[-1.311143,51.86045],[-1.316408,51.860401],[-1.323034,51.861298],[-1.324561,51.859653],[-1.326459,51.860517],[-1.328185,51.860611],[-1.333995,51.862479],[-1.339175,51.856173],[-1.338753,51.854568],[-1.337029,51.851868],[-1.336995,51.849898],[-1.339865,51.845243],[-1.340534,51.840921],[-1.341361,51.840424],[-1.336938,51.838275],[-1.337466,51.836734],[-1.338539,51.8366],[-1.337801,51.834324],[-1.340346,51.833996],[-1.340567,51.832281],[-1.342001,51.830181],[-1.337084,51.830231],[-1.332542,51.831088],[-1.326695,51.826616],[-1.326224,51.825494],[-1.328191,51.82343],[-1.328969,51.82184],[-1.331145,51.820447],[-1.33297,51.820058],[-1.338342,51.819952],[-1.332374,51.816995],[-1.334057,51.814471],[-1.336024,51.813146],[-1.337325,51.811738],[-1.335513,51.811335],[-1.33312,51.809551],[-1.325632,51.805357],[-1.326403,51.805015],[-1.326819,51.800888],[-1.325873,51.796822],[-1.325919,51.791859],[-1.324652,51.791794],[-1.322343,51.78784],[-1.320372,51.7879],[-1.317824,51.788581],[-1.317761,51.787605],[-1.316331,51.787174],[-1.315164,51.788106],[-1.313168,51.788255],[-1.309379,51.789175],[-1.306492,51.790116],[-1.304728,51.789656],[-1.305613,51.78872],[-1.304039,51.787568],[-1.305124,51.786708],[-1.303353,51.785917],[-1.305385,51.785287],[-1.304207,51.784167],[-1.304806,51.783162],[-1.303972,51.781573],[-1.30282,51.780965],[-1.30019,51.784108],[-1.297268,51.786371],[-1.292215,51.788873],[-1.289215,51.79051],[-1.286416,51.792395],[-1.28568,51.79365],[-1.284642,51.793989],[-1.28454,51.795071],[-1.282861,51.795882],[-1.279699,51.795991],[-1.280043,51.795086],[-1.277217,51.795228],[-1.276998,51.794607],[-1.271536,51.795244],[-1.27124,51.794767],[-1.268644,51.795631],[-1.267665,51.793769],[-1.266481,51.793885],[-1.266089,51.79283],[-1.263956,51.793219],[-1.263675,51.792358],[-1.261441,51.792562],[-1.258094,51.793511],[-1.253031,51.78888],[-1.252705,51.786499],[-1.247907,51.786622],[-1.246828,51.788381],[-1.244092,51.789437],[-1.244347,51.790669],[-1.246349,51.793003],[-1.248891,51.793858],[-1.253331,51.796394],[-1.253809,51.797847],[-1.252484,51.798698],[-1.250219,51.798875],[-1.24823,51.799552],[-1.246231,51.801473],[-1.245087,51.80198],[-1.245405,51.802777],[-1.243537,51.803727],[-1.242794,51.80459],[-1.243709,51.805503],[-1.243652,51.806534],[-1.244752,51.807923],[-1.241964,51.809996],[-1.239402,51.809471],[-1.239347,51.808378],[-1.236582,51.808303],[-1.236604,51.809638],[-1.230902,51.809395],[-1.226049,51.806643],[-1.224573,51.806941],[-1.221116,51.805079],[-1.222067,51.803645],[-1.22134,51.801558],[-1.215833,51.803091],[-1.210358,51.802463],[-1.210448,51.80096],[-1.208342,51.798155],[-1.205813,51.80056],[-1.203816,51.798578],[-1.2025,51.797997],[-1.198176,51.798181],[-1.194519,51.796994],[-1.190679,51.798537],[-1.191515,51.800234],[-1.188338,51.803591],[-1.188486,51.804944],[-1.18802,51.806503],[-1.188481,51.808862],[-1.186606,51.808627],[-1.187317,51.812136],[-1.172053,51.812352],[-1.170454,51.813053],[-1.16741,51.813778],[-1.165695,51.811775],[-1.167274,51.810773],[-1.167121,51.809685],[-1.164293,51.810037],[-1.159587,51.807162],[-1.153824,51.80454],[-1.151896,51.803098],[-1.150748,51.801199],[-1.152324,51.799671],[-1.15293,51.797738],[-1.154076,51.796634],[-1.151596,51.796592],[-1.149303,51.797326],[-1.146223,51.797775],[-1.142584,51.797274],[-1.142119,51.79771],[-1.136807,51.796016],[-1.132335,51.797152],[-1.126819,51.799502],[-1.125007,51.798262],[-1.125206,51.795801],[-1.125913,51.794642],[-1.123541,51.794181],[-1.121234,51.796874],[-1.117406,51.799167],[-1.119872,51.80023],[-1.120788,51.804328],[-1.12489,51.807511],[-1.124044,51.808049],[-1.122482,51.809928],[-1.120378,51.810252],[-1.117909,51.81109],[-1.117224,51.814221],[-1.116045,51.815205],[-1.113443,51.815876],[-1.110097,51.817305],[-1.114239,51.818252],[-1.117454,51.820424],[-1.119008,51.820765],[-1.123397,51.824579],[-1.123224,51.825322],[-1.126471,51.828528],[-1.127431,51.829071],[-1.130113,51.829726],[-1.130488,51.831105],[-1.133737,51.831758],[-1.140676,51.83469],[-1.132998,51.838289],[-1.12908,51.839136],[-1.12709,51.841178],[-1.124139,51.842592],[-1.121599,51.845342],[-1.117243,51.843843],[-1.112832,51.841442],[-1.108427,51.841339],[-1.102521,51.840287],[-1.100276,51.838506],[-1.097328,51.837444],[-1.092257,51.834488],[-1.089342,51.834054],[-1.087999,51.833474],[-1.086196,51.831324],[-1.080865,51.829552],[-1.07845,51.829255],[-1.075918,51.82935],[-1.073279,51.830264],[-1.072114,51.831277],[-1.071607,51.833943],[-1.068588,51.834636],[-1.067198,51.834479],[-1.066323,51.833175],[-1.061907,51.832384],[-1.059217,51.835421],[-1.048997,51.838989],[-1.048329,51.839602],[-1.051582,51.839869],[-1.055755,51.841819],[-1.061978,51.844127],[-1.062198,51.846545],[-1.063567,51.847793],[-1.061597,51.848629],[-1.066031,51.852817],[-1.066014,51.853233],[-1.063083,51.854322],[-1.0635,51.855522],[-1.06312,51.856322],[-1.064296,51.857648],[-1.06348,51.858582],[-1.064515,51.859992],[-1.064516,51.861071],[-1.066127,51.864889],[-1.065564,51.86601],[-1.064452,51.866348],[-1.065593,51.868188],[-1.064643,51.868697],[-1.069166,51.874645],[-1.071757,51.874871],[-1.074567,51.875562],[-1.076145,51.875455],[-1.076536,51.878776],[-1.074133,51.880023],[-1.07285,51.881082],[-1.070165,51.882063],[-1.069801,51.884304],[-1.069993,51.885463],[-1.068727,51.886437],[-1.069912,51.887513],[-1.070618,51.888834],[-1.073542,51.888102],[-1.075459,51.888298],[-1.078714,51.89014],[-1.08579,51.891127],[-1.090018,51.892358],[-1.090605,51.892968],[-1.093519,51.893937],[-1.092906,51.895686],[-1.091316,51.897542],[-1.08706,51.897447],[-1.084254,51.899545],[-1.085999,51.900865],[-1.085379,51.901903],[-1.08582,51.902882],[-1.085004,51.904624],[-1.086279,51.905319],[-1.085563,51.907462],[-1.082278,51.911937],[-1.082636,51.915813],[-1.080038,51.916127],[-1.079357,51.917222],[-1.081181,51.917441],[-1.083349,51.918169],[-1.085042,51.919869],[-1.086329,51.920402],[-1.086674,51.922646],[-1.085964,51.923148],[-1.082587,51.923039],[-1.082632,51.925682],[-1.08125,51.927561],[-1.078065,51.927476],[-1.075022,51.930691],[-1.077549,51.931643],[-1.070034,51.934205],[-1.064153,51.934639],[-1.062112,51.935137],[-1.060546,51.938176],[-1.059122,51.939137],[-1.0587,51.940072],[-1.055919,51.942599],[-1.055846,51.945964],[-1.054792,51.946532],[-1.054616,51.947959],[-1.055505,51.949038],[-1.059266,51.949301],[-1.063502,51.94825],[-1.064857,51.948228],[-1.066611,51.946862],[-1.070115,51.945841],[-1.070925,51.946131],[-1.072828,51.944797],[-1.07602,51.943296],[-1.078952,51.943366],[-1.080408,51.944714],[-1.078814,51.946698],[-1.081049,51.950248],[-1.083785,51.951881],[-1.086172,51.952352],[-1.089525,51.954017],[-1.088853,51.955626],[-1.095236,51.957123],[-1.093524,51.960169],[-1.091393,51.962653],[-1.088793,51.964808],[-1.087682,51.967006],[-1.085745,51.968443],[-1.08492,51.968474],[-1.083766,51.970327],[-1.084178,51.972344],[-1.082144,51.972818],[-1.07971,51.975943],[-1.078424,51.979379],[-1.079398,51.979706],[-1.078186,51.981057],[-1.062235,51.994837],[-1.057874,51.999417],[-1.053172,52.002536],[-1.057535,52.00323],[-1.059025,52.005218],[-1.058436,52.006726],[-1.058935,52.007917],[-1.060848,52.008611],[-1.063413,52.008407],[-1.06459,52.008614],[-1.067391,52.00822],[-1.069852,52.007229],[-1.073928,52.006322],[-1.075565,52.007514],[-1.075783,52.008312],[-1.078662,52.008597],[-1.080895,52.007822],[-1.080978,52.007259],[-1.082805,52.006613],[-1.085276,52.006612],[-1.086445,52.005882],[-1.088062,52.005782],[-1.089115,52.006693],[-1.090511,52.009338],[-1.091417,52.010329],[-1.094123,52.012225],[-1.093738,52.013366],[-1.094564,52.014316],[-1.096741,52.015094],[-1.099324,52.013632],[-1.100122,52.012534],[-1.103416,52.01272],[-1.105059,52.013411],[-1.10631,52.013448],[-1.107266,52.014667],[-1.11035,52.015687],[-1.11183,52.015677],[-1.11198,52.016592],[-1.115157,52.016515],[-1.115626,52.01561],[-1.118087,52.015426]]]},"properties":{"LAD22CD":"E07000177","LAD22NM":"Cherwell","BNG_E":449301,"BNG_N":221201,"LONG":-1.28506,"LAT":51.8872,"GlobalID":"4edd8429-fd5a-4ddc-8915-8d127a74cc1d"},"id":186}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.252705,51.786499],[-1.253031,51.78888],[-1.258094,51.793511],[-1.261441,51.792562],[-1.263675,51.792358],[-1.263956,51.793219],[-1.266089,51.79283],[-1.266481,51.793885],[-1.267665,51.793769],[-1.268644,51.795631],[-1.27124,51.794767],[-1.271536,51.795244],[-1.276998,51.794607],[-1.277217,51.795228],[-1.280043,51.795086],[-1.279699,51.795991],[-1.282861,51.795882],[-1.28454,51.795071],[-1.284642,51.793989],[-1.28568,51.79365],[-1.286416,51.792395],[-1.289215,51.79051],[-1.292215,51.788873],[-1.297268,51.786371],[-1.30019,51.784108],[-1.30282,51.780965],[-1.304199,51.776603],[-1.30367,51.772637],[-1.3012,51.76816],[-1.29681,51.7623],[-1.295541,51.759127],[-1.29523,51.756545],[-1.293345,51.755399],[-1.293228,51.753475],[-1.290723,51.753319],[-1.290837,51.750886],[-1.288787,51.748998],[-1.28718,51.747947],[-1.285267,51.747209],[-1.284142,51.74631],[-1.281054,51.745335],[-1.278755,51.745512],[-1.27585,51.74365],[-1.272022,51.742956],[-1.26967,51.74321],[-1.267841,51.742712],[-1.267487,51.741846],[-1.265463,51.741215],[-1.264217,51.739433],[-1.263192,51.739322],[-1.262732,51.738372],[-1.261319,51.737539],[-1.259463,51.735734],[-1.258664,51.735808],[-1.256736,51.733453],[-1.255806,51.733133],[-1.253293,51.730695],[-1.252945,51.729926],[-1.253988,51.729284],[-1.253061,51.728267],[-1.24867,51.728042],[-1.247645,51.728307],[-1.24131,51.72516],[-1.233789,51.722017],[-1.234022,51.721168],[-1.232108,51.718813],[-1.225208,51.714221],[-1.222284,51.710985],[-1.220522,51.712473],[-1.218779,51.713007],[-1.217665,51.715078],[-1.215454,51.715784],[-1.214152,51.715539],[-1.21241,51.716103],[-1.210144,51.71581],[-1.207363,51.71498],[-1.200203,51.712144],[-1.194414,51.713969],[-1.189587,51.714561],[-1.188307,51.716755],[-1.187695,51.718504],[-1.186436,51.719997],[-1.184154,51.721573],[-1.185429,51.722738],[-1.189015,51.724313],[-1.190313,51.727046],[-1.175912,51.732579],[-1.175794,51.733477],[-1.17797,51.735678],[-1.179229,51.736247],[-1.193165,51.736271],[-1.193549,51.737181],[-1.193367,51.74002],[-1.192208,51.741863],[-1.194659,51.745376],[-1.195247,51.745153],[-1.195061,51.751359],[-1.194285,51.757129],[-1.191419,51.755271],[-1.189983,51.756054],[-1.187802,51.755514],[-1.186114,51.75688],[-1.185939,51.759998],[-1.184282,51.760029],[-1.182666,51.762407],[-1.179664,51.762849],[-1.180208,51.765865],[-1.180688,51.765995],[-1.188205,51.765577],[-1.188242,51.76705],[-1.188994,51.767703],[-1.191543,51.768242],[-1.192349,51.768104],[-1.197511,51.768559],[-1.198222,51.769194],[-1.20011,51.769489],[-1.201642,51.770135],[-1.203807,51.770053],[-1.210704,51.772305],[-1.215721,51.772821],[-1.220815,51.772258],[-1.227932,51.775234],[-1.227987,51.77642],[-1.231698,51.776876],[-1.253986,51.786152],[-1.252705,51.786499]]]},"properties":{"LAD22CD":"E07000178","LAD22NM":"Oxford","BNG_E":452277,"BNG_N":206368,"LONG":-1.24405,"LAT":51.75357,"GlobalID":"46a6ed03-3592-4d72-9bec-11a84a104d1b"},"id":187}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.123541,51.794181],[-1.125913,51.794642],[-1.125206,51.795801],[-1.125007,51.798262],[-1.126819,51.799502],[-1.132335,51.797152],[-1.136807,51.796016],[-1.142119,51.79771],[-1.142584,51.797274],[-1.146223,51.797775],[-1.149303,51.797326],[-1.151596,51.796592],[-1.154076,51.796634],[-1.15293,51.797738],[-1.152324,51.799671],[-1.150748,51.801199],[-1.151896,51.803098],[-1.153824,51.80454],[-1.159587,51.807162],[-1.164293,51.810037],[-1.167121,51.809685],[-1.167274,51.810773],[-1.165695,51.811775],[-1.16741,51.813778],[-1.170454,51.813053],[-1.172053,51.812352],[-1.187317,51.812136],[-1.186606,51.808627],[-1.188481,51.808862],[-1.18802,51.806503],[-1.188486,51.804944],[-1.188338,51.803591],[-1.191515,51.800234],[-1.190679,51.798537],[-1.194519,51.796994],[-1.198176,51.798181],[-1.2025,51.797997],[-1.203816,51.798578],[-1.205813,51.80056],[-1.208342,51.798155],[-1.210448,51.80096],[-1.210358,51.802463],[-1.215833,51.803091],[-1.22134,51.801558],[-1.222067,51.803645],[-1.221116,51.805079],[-1.224573,51.806941],[-1.226049,51.806643],[-1.230902,51.809395],[-1.236604,51.809638],[-1.236582,51.808303],[-1.239347,51.808378],[-1.239402,51.809471],[-1.241964,51.809996],[-1.244752,51.807923],[-1.243652,51.806534],[-1.243709,51.805503],[-1.242794,51.80459],[-1.243537,51.803727],[-1.245405,51.802777],[-1.245087,51.80198],[-1.246231,51.801473],[-1.24823,51.799552],[-1.250219,51.798875],[-1.252484,51.798698],[-1.253809,51.797847],[-1.253331,51.796394],[-1.248891,51.793858],[-1.246349,51.793003],[-1.244347,51.790669],[-1.244092,51.789437],[-1.246828,51.788381],[-1.247907,51.786622],[-1.252705,51.786499],[-1.253986,51.786152],[-1.231698,51.776876],[-1.227987,51.77642],[-1.227932,51.775234],[-1.220815,51.772258],[-1.215721,51.772821],[-1.210704,51.772305],[-1.203807,51.770053],[-1.201642,51.770135],[-1.20011,51.769489],[-1.198222,51.769194],[-1.197511,51.768559],[-1.192349,51.768104],[-1.191543,51.768242],[-1.188994,51.767703],[-1.188242,51.76705],[-1.188205,51.765577],[-1.180688,51.765995],[-1.180208,51.765865],[-1.179664,51.762849],[-1.182666,51.762407],[-1.184282,51.760029],[-1.185939,51.759998],[-1.186114,51.75688],[-1.187802,51.755514],[-1.189983,51.756054],[-1.191419,51.755271],[-1.194285,51.757129],[-1.195061,51.751359],[-1.195247,51.745153],[-1.194659,51.745376],[-1.192208,51.741863],[-1.193367,51.74002],[-1.193549,51.737181],[-1.193165,51.736271],[-1.179229,51.736247],[-1.17797,51.735678],[-1.175794,51.733477],[-1.175912,51.732579],[-1.190313,51.727046],[-1.189015,51.724313],[-1.185429,51.722738],[-1.184154,51.721573],[-1.186436,51.719997],[-1.187695,51.718504],[-1.188307,51.716755],[-1.189587,51.714561],[-1.194414,51.713969],[-1.200203,51.712144],[-1.207363,51.71498],[-1.210144,51.71581],[-1.21241,51.716103],[-1.214152,51.715539],[-1.215454,51.715784],[-1.217665,51.715078],[-1.218779,51.713007],[-1.220522,51.712473],[-1.222284,51.710985],[-1.225208,51.714221],[-1.232108,51.718813],[-1.234022,51.721168],[-1.233789,51.722017],[-1.24131,51.72516],[-1.242619,51.721019],[-1.239384,51.717825],[-1.237334,51.717963],[-1.236892,51.715722],[-1.235419,51.714835],[-1.234913,51.713043],[-1.233576,51.711793],[-1.235319,51.711454],[-1.234429,51.709745],[-1.234689,51.707651],[-1.232937,51.70745],[-1.233147,51.70409],[-1.231346,51.70365],[-1.230653,51.702891],[-1.229958,51.700133],[-1.230822,51.699311],[-1.229004,51.696688],[-1.224302,51.69278],[-1.223267,51.691513],[-1.222084,51.68824],[-1.222369,51.686014],[-1.221754,51.68462],[-1.223078,51.682869],[-1.224619,51.681723],[-1.226256,51.678654],[-1.226875,51.675982],[-1.227763,51.67539],[-1.230324,51.674819],[-1.230882,51.67285],[-1.234927,51.671052],[-1.241263,51.669352],[-1.242786,51.668353],[-1.246689,51.66717],[-1.250817,51.66656],[-1.258356,51.66736],[-1.260144,51.669204],[-1.261631,51.669449],[-1.263269,51.670238],[-1.264121,51.669816],[-1.269542,51.670285],[-1.277405,51.668889],[-1.280117,51.667238],[-1.283799,51.66587],[-1.281571,51.659992],[-1.279385,51.658832],[-1.278644,51.658037],[-1.279656,51.656554],[-1.281127,51.653053],[-1.2832,51.650011],[-1.285154,51.649746],[-1.286557,51.650172],[-1.286947,51.649184],[-1.288634,51.648586],[-1.289454,51.646868],[-1.287769,51.64584],[-1.287123,51.642806],[-1.281669,51.643187],[-1.280428,51.643037],[-1.28003,51.644173],[-1.276779,51.644517],[-1.273861,51.645204],[-1.272949,51.646151],[-1.272727,51.647331],[-1.271059,51.647294],[-1.26969,51.647742],[-1.267253,51.647908],[-1.26612,51.64861],[-1.265613,51.649609],[-1.26322,51.650098],[-1.258288,51.649052],[-1.253342,51.64754],[-1.251205,51.64658],[-1.244352,51.645351],[-1.242244,51.645181],[-1.238472,51.643258],[-1.232585,51.641546],[-1.229007,51.641103],[-1.225777,51.641194],[-1.222533,51.641529],[-1.221877,51.642356],[-1.220273,51.642996],[-1.219095,51.641755],[-1.220736,51.639974],[-1.22175,51.639913],[-1.235473,51.630176],[-1.235666,51.629593],[-1.242018,51.624252],[-1.243067,51.622517],[-1.245903,51.623178],[-1.249255,51.623379],[-1.251988,51.623018],[-1.254162,51.622093],[-1.255724,51.620718],[-1.257201,51.617107],[-1.263811,51.618582],[-1.265694,51.618604],[-1.266242,51.617148],[-1.266359,51.614797],[-1.269828,51.61367],[-1.27327,51.611635],[-1.272786,51.610114],[-1.270482,51.609722],[-1.26912,51.608515],[-1.265731,51.607178],[-1.266085,51.604205],[-1.265063,51.603753],[-1.271526,51.600231],[-1.270634,51.598244],[-1.283968,51.586908],[-1.288677,51.581312],[-1.290225,51.577897],[-1.287659,51.577892],[-1.286392,51.575916],[-1.28413,51.574854],[-1.282558,51.576265],[-1.273632,51.581232],[-1.269389,51.58456],[-1.264718,51.584599],[-1.263312,51.584265],[-1.257999,51.583931],[-1.252995,51.584524],[-1.23341,51.582727],[-1.232734,51.582597],[-1.230062,51.580327],[-1.226815,51.582282],[-1.224813,51.581337],[-1.224268,51.58264],[-1.22168,51.58446],[-1.220815,51.584477],[-1.220223,51.585827],[-1.21904,51.585886],[-1.214121,51.588818],[-1.210664,51.589137],[-1.208677,51.589682],[-1.208858,51.591217],[-1.204017,51.592187],[-1.203339,51.590657],[-1.202274,51.590129],[-1.207648,51.579538],[-1.211693,51.573038],[-1.212635,51.572327],[-1.211772,51.570904],[-1.213961,51.57056],[-1.214234,51.569716],[-1.217201,51.564031],[-1.219149,51.562579],[-1.220633,51.560526],[-1.221765,51.560375],[-1.220731,51.557288],[-1.222788,51.551981],[-1.223675,51.552065],[-1.227974,51.546867],[-1.228704,51.543721],[-1.228705,51.541421],[-1.226792,51.535158],[-1.221438,51.536152],[-1.218859,51.536938],[-1.216578,51.536228],[-1.214945,51.536091],[-1.210135,51.536442],[-1.206129,51.53753],[-1.204644,51.537604],[-1.203232,51.536724],[-1.204202,51.534276],[-1.20539,51.533385],[-1.205975,51.531836],[-1.205004,51.530344],[-1.20465,51.528394],[-1.19057,51.529988],[-1.180337,51.531951],[-1.175181,51.533407],[-1.172761,51.533763],[-1.165992,51.533947],[-1.160798,51.53459],[-1.159375,51.534926],[-1.160157,51.536602],[-1.156038,51.537867],[-1.154652,51.538725],[-1.152674,51.539392],[-1.146937,51.540612],[-1.140375,51.542911],[-1.136315,51.539978],[-1.134679,51.536519],[-1.134446,51.533722],[-1.134664,51.532801],[-1.137733,51.528893],[-1.138896,51.526984],[-1.143536,51.523454],[-1.144038,51.522029],[-1.142536,51.520827],[-1.143265,51.519771],[-1.142053,51.516195],[-1.141064,51.515188],[-1.138674,51.514175],[-1.133697,51.511287],[-1.127647,51.511897],[-1.119464,51.511857],[-1.117948,51.51163],[-1.114785,51.510482],[-1.112895,51.509401],[-1.111384,51.507911],[-1.109027,51.504854],[-1.106969,51.501096],[-1.108031,51.500719],[-1.104365,51.492331],[-1.102777,51.490171],[-1.100228,51.488876],[-1.088362,51.485753],[-1.082644,51.487079],[-1.07727,51.487865],[-1.073045,51.489512],[-1.071148,51.489741],[-1.059709,51.491789],[-1.055423,51.492037],[-1.05135,51.49186],[-1.048677,51.490783],[-1.043594,51.489381],[-1.040744,51.487599],[-1.039682,51.486559],[-1.039509,51.485176],[-1.037397,51.483822],[-1.037329,51.482137],[-1.038684,51.479691],[-1.038979,51.476868],[-1.038494,51.476185],[-1.036558,51.475227],[-1.026595,51.470724],[-1.021772,51.467996],[-1.018205,51.466585],[-1.013564,51.466292],[-1.011207,51.467162],[-1.0075,51.46783],[-1.007939,51.471572],[-1.005963,51.472593],[-1.006929,51.473422],[-1.003807,51.473313],[-1.003265,51.474433],[-1.000803,51.474621],[-0.999816,51.475232],[-0.998181,51.47755],[-0.998712,51.480299],[-1.000619,51.480839],[-0.999976,51.481464],[-0.998051,51.481721],[-0.997834,51.482377],[-0.998399,51.484305],[-0.997084,51.484362],[-0.993837,51.485191],[-0.993375,51.486296],[-0.991489,51.485208],[-0.989029,51.485732],[-0.986937,51.48574],[-0.984121,51.484963],[-0.982263,51.485039],[-0.980084,51.485704],[-0.978613,51.485626],[-0.978632,51.487314],[-0.97765,51.488407],[-0.976084,51.488348],[-0.974321,51.486751],[-0.97175,51.487581],[-0.969188,51.490204],[-0.9646,51.491471],[-0.965095,51.492079],[-0.961805,51.493092],[-0.957481,51.493078],[-0.953903,51.488608],[-0.94981,51.486468],[-0.949175,51.486994],[-0.947011,51.486062],[-0.948036,51.485212],[-0.944501,51.481953],[-0.945568,51.481694],[-0.944912,51.479224],[-0.941137,51.474978],[-0.947323,51.472942],[-0.94653,51.471517],[-0.949222,51.470132],[-0.947182,51.466653],[-0.949246,51.46614],[-0.949441,51.464931],[-0.951561,51.465702],[-0.955184,51.465334],[-0.954363,51.464526],[-0.954394,51.462631],[-0.955453,51.461256],[-0.949168,51.459513],[-0.945989,51.459504],[-0.942348,51.460594],[-0.932661,51.465794],[-0.930642,51.46764],[-0.929807,51.46778],[-0.926867,51.467285],[-0.923668,51.46719],[-0.921698,51.467931],[-0.920451,51.471306],[-0.919277,51.472719],[-0.91687,51.474375],[-0.914573,51.474787],[-0.91334,51.475963],[-0.910608,51.476831],[-0.910079,51.477755],[-0.910586,51.479474],[-0.910211,51.482148],[-0.908186,51.483961],[-0.905809,51.485063],[-0.901868,51.485339],[-0.897652,51.487045],[-0.898262,51.488313],[-0.896627,51.489938],[-0.896385,51.491816],[-0.894267,51.492044],[-0.893447,51.492538],[-0.895284,51.493921],[-0.89386,51.494842],[-0.894002,51.496471],[-0.889739,51.498781],[-0.887249,51.499958],[-0.885686,51.50017],[-0.881908,51.501469],[-0.871486,51.502561],[-0.870605,51.503162],[-0.870025,51.504391],[-0.871067,51.505588],[-0.871113,51.507021],[-0.872253,51.508093],[-0.874469,51.509325],[-0.879478,51.511088],[-0.880209,51.511612],[-0.880796,51.513274],[-0.880263,51.515126],[-0.880524,51.516367],[-0.878497,51.518136],[-0.878218,51.523018],[-0.878796,51.523728],[-0.883907,51.527158],[-0.887998,51.530131],[-0.892619,51.532709],[-0.895793,51.533799],[-0.899805,51.536199],[-0.900294,51.537149],[-0.900127,51.540263],[-0.896882,51.544863],[-0.898298,51.545293],[-0.903194,51.545878],[-0.902134,51.548862],[-0.902825,51.553029],[-0.901681,51.556166],[-0.90624,51.556813],[-0.910207,51.557774],[-0.913601,51.561734],[-0.915958,51.561735],[-0.9171,51.562573],[-0.918524,51.561497],[-0.919546,51.561886],[-0.921385,51.564649],[-0.924146,51.563525],[-0.928228,51.565952],[-0.92779,51.568114],[-0.930412,51.568565],[-0.930582,51.569157],[-0.934249,51.569984],[-0.936674,51.571449],[-0.938427,51.571156],[-0.94002,51.576308],[-0.939401,51.580184],[-0.939822,51.582143],[-0.941333,51.584445],[-0.941471,51.585507],[-0.934338,51.58863],[-0.933197,51.588637],[-0.928548,51.590085],[-0.928165,51.59069],[-0.92488,51.590888],[-0.919696,51.59592],[-0.916899,51.59929],[-0.917127,51.600027],[-0.920175,51.603611],[-0.921867,51.603678],[-0.923942,51.604211],[-0.92914,51.604324],[-0.929803,51.604139],[-0.931213,51.602364],[-0.933667,51.60166],[-0.936179,51.602275],[-0.936018,51.603345],[-0.939176,51.604325],[-0.942399,51.604521],[-0.943139,51.605016],[-0.942563,51.607476],[-0.944133,51.609389],[-0.943983,51.610777],[-0.940079,51.614175],[-0.938645,51.617787],[-0.939459,51.618528],[-0.945719,51.61848],[-0.947534,51.620405],[-0.949794,51.620678],[-0.950071,51.622741],[-0.949489,51.625604],[-0.95003,51.628907],[-0.948873,51.631366],[-0.943591,51.630502],[-0.942317,51.631775],[-0.940111,51.632768],[-0.938217,51.635114],[-0.9354,51.635658],[-0.934586,51.636699],[-0.937538,51.641649],[-0.940212,51.643632],[-0.941621,51.644194],[-0.944607,51.64655],[-0.945143,51.648334],[-0.948341,51.649445],[-0.949951,51.650929],[-0.944984,51.649791],[-0.944002,51.651174],[-0.944453,51.652161],[-0.948181,51.652111],[-0.946318,51.653784],[-0.939793,51.654033],[-0.939536,51.654293],[-0.933169,51.652602],[-0.931497,51.653165],[-0.931435,51.655309],[-0.929431,51.655749],[-0.929185,51.653777],[-0.927251,51.651444],[-0.927652,51.654686],[-0.925173,51.654999],[-0.923215,51.656461],[-0.923098,51.656997],[-0.925051,51.659694],[-0.926547,51.660014],[-0.928343,51.661056],[-0.929536,51.663359],[-0.932213,51.664868],[-0.930796,51.666094],[-0.929353,51.666282],[-0.927817,51.66558],[-0.924889,51.665427],[-0.924911,51.666907],[-0.918636,51.67123],[-0.917729,51.6724],[-0.915694,51.67246],[-0.910381,51.673849],[-0.907022,51.673423],[-0.904703,51.672202],[-0.901204,51.670987],[-0.897042,51.670019],[-0.894746,51.668254],[-0.883971,51.667727],[-0.877707,51.668385],[-0.878601,51.67002],[-0.881368,51.67242],[-0.884135,51.673775],[-0.888933,51.673956],[-0.892143,51.674779],[-0.895069,51.674665],[-0.897897,51.676401],[-0.895764,51.677309],[-0.893813,51.679108],[-0.892465,51.678288],[-0.891017,51.67865],[-0.886764,51.681391],[-0.881836,51.680542],[-0.879896,51.680865],[-0.881902,51.684588],[-0.885664,51.686762],[-0.892647,51.689054],[-0.893817,51.690453],[-0.894773,51.692522],[-0.890753,51.697284],[-0.889257,51.699901],[-0.889563,51.701257],[-0.887235,51.703325],[-0.887071,51.705211],[-0.888577,51.707361],[-0.889676,51.70812],[-0.888641,51.709005],[-0.888253,51.712374],[-0.887624,51.71367],[-0.887683,51.718343],[-0.889396,51.720143],[-0.89134,51.721471],[-0.893464,51.722046],[-0.895446,51.721851],[-0.897165,51.722849],[-0.8997,51.724999],[-0.901657,51.728146],[-0.900593,51.729361],[-0.903336,51.731066],[-0.905383,51.733312],[-0.906095,51.73336],[-0.908755,51.735103],[-0.909682,51.736777],[-0.912782,51.737028],[-0.914806,51.737882],[-0.916931,51.736883],[-0.91897,51.738235],[-0.918624,51.73868],[-0.920387,51.740517],[-0.920344,51.742713],[-0.92094,51.744619],[-0.924115,51.747715],[-0.928478,51.745936],[-0.932015,51.749186],[-0.933205,51.75234],[-0.935983,51.753445],[-0.940406,51.752873],[-0.942369,51.75297],[-0.944908,51.753639],[-0.946958,51.755512],[-0.949683,51.755939],[-0.954123,51.757847],[-0.960585,51.758743],[-0.961833,51.758609],[-0.962998,51.759164],[-0.96815,51.75859],[-0.969761,51.758803],[-0.971431,51.758101],[-0.973853,51.758017],[-0.975245,51.758873],[-0.97618,51.760108],[-0.979612,51.760718],[-0.980973,51.760408],[-0.980593,51.75927],[-0.981216,51.758038],[-0.980737,51.757098],[-0.981657,51.755869],[-0.980819,51.753379],[-0.983353,51.752425],[-0.98625,51.752062],[-0.986882,51.753169],[-0.989088,51.753141],[-0.990617,51.754087],[-0.992738,51.754081],[-0.993499,51.754745],[-0.997449,51.753409],[-0.999471,51.754507],[-1.003742,51.755038],[-1.007585,51.754928],[-1.007394,51.755939],[-1.012238,51.755994],[-1.023611,51.755519],[-1.025219,51.755808],[-1.027085,51.757262],[-1.028218,51.757027],[-1.029828,51.757881],[-1.031971,51.756995],[-1.032662,51.755786],[-1.03256,51.753132],[-1.03122,51.752139],[-1.030552,51.749174],[-1.029615,51.748901],[-1.030013,51.746595],[-1.029623,51.745959],[-1.030436,51.744929],[-1.031606,51.744379],[-1.034487,51.744636],[-1.036068,51.744078],[-1.038342,51.744065],[-1.039041,51.744705],[-1.043375,51.744558],[-1.044103,51.745076],[-1.045472,51.744599],[-1.045567,51.745911],[-1.047273,51.746546],[-1.04816,51.747625],[-1.050731,51.748333],[-1.05325,51.749724],[-1.054973,51.752181],[-1.056313,51.751976],[-1.058244,51.752333],[-1.064114,51.754038],[-1.066385,51.753625],[-1.068241,51.754887],[-1.068663,51.75601],[-1.072892,51.758323],[-1.075058,51.758587],[-1.077784,51.758501],[-1.080852,51.756554],[-1.083088,51.760394],[-1.082721,51.760483],[-1.082801,51.764115],[-1.081408,51.76713],[-1.079276,51.769406],[-1.079928,51.770138],[-1.078849,51.771266],[-1.080819,51.772161],[-1.080761,51.772878],[-1.082706,51.773511],[-1.079946,51.77747],[-1.082948,51.780296],[-1.08574,51.781304],[-1.09671,51.782235],[-1.097603,51.780453],[-1.106362,51.78163],[-1.105897,51.781941],[-1.110651,51.783832],[-1.115382,51.786899],[-1.121944,51.787081],[-1.122091,51.788395],[-1.122864,51.788531],[-1.119992,51.792293],[-1.120439,51.792963],[-1.123541,51.794181]]]},"properties":{"LAD22CD":"E07000179","LAD22NM":"South Oxfordshire","BNG_E":463890,"BNG_N":191964,"LONG":-1.07847,"LAT":51.62288,"GlobalID":"43258f14-9d49-4f79-8194-351a5edae20f"},"id":188}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.30282,51.780965],[-1.303972,51.781573],[-1.304806,51.783162],[-1.304207,51.784167],[-1.305385,51.785287],[-1.303353,51.785917],[-1.305124,51.786708],[-1.304039,51.787568],[-1.305613,51.78872],[-1.304728,51.789656],[-1.306492,51.790116],[-1.309379,51.789175],[-1.313168,51.788255],[-1.315164,51.788106],[-1.316331,51.787174],[-1.317761,51.787605],[-1.317824,51.788581],[-1.320372,51.7879],[-1.322343,51.78784],[-1.324711,51.787702],[-1.328442,51.786396],[-1.331513,51.786199],[-1.333074,51.785287],[-1.335533,51.785418],[-1.337611,51.784554],[-1.33892,51.782871],[-1.341625,51.780872],[-1.343547,51.78008],[-1.348453,51.776923],[-1.350864,51.776081],[-1.355768,51.774998],[-1.357227,51.775541],[-1.361513,51.773636],[-1.361246,51.772881],[-1.362129,51.772057],[-1.36323,51.772299],[-1.363382,51.770751],[-1.362795,51.76995],[-1.364032,51.769389],[-1.363196,51.76845],[-1.364221,51.767806],[-1.362071,51.765904],[-1.360354,51.765497],[-1.360349,51.764385],[-1.359109,51.763618],[-1.360092,51.763084],[-1.362674,51.762579],[-1.364717,51.760865],[-1.362635,51.758992],[-1.363379,51.758551],[-1.366332,51.758331],[-1.36528,51.756727],[-1.366618,51.755899],[-1.366307,51.754984],[-1.367589,51.75377],[-1.367717,51.752889],[-1.366561,51.751672],[-1.368222,51.749392],[-1.367709,51.748494],[-1.365397,51.748337],[-1.36536,51.746358],[-1.367195,51.745297],[-1.368396,51.743494],[-1.368739,51.742012],[-1.371194,51.741135],[-1.374072,51.737401],[-1.373724,51.73639],[-1.371016,51.734714],[-1.369465,51.732754],[-1.368384,51.731996],[-1.366994,51.729635],[-1.367212,51.72789],[-1.368142,51.727104],[-1.368147,51.725718],[-1.369568,51.725275],[-1.36862,51.724096],[-1.369178,51.723019],[-1.374218,51.717234],[-1.376167,51.716742],[-1.377574,51.715579],[-1.378928,51.713564],[-1.382276,51.711787],[-1.385757,51.709024],[-1.39192,51.706296],[-1.401149,51.705738],[-1.403434,51.705881],[-1.411515,51.708972],[-1.419292,51.710293],[-1.424578,51.709901],[-1.431561,51.70863],[-1.435417,51.708361],[-1.438587,51.707772],[-1.439881,51.708174],[-1.440005,51.709325],[-1.438607,51.709326],[-1.439981,51.711349],[-1.442066,51.712383],[-1.444052,51.711656],[-1.445244,51.712056],[-1.447912,51.711989],[-1.448948,51.712265],[-1.450392,51.711577],[-1.451526,51.711652],[-1.452838,51.712639],[-1.455375,51.713201],[-1.459009,51.713304],[-1.463306,51.712395],[-1.463818,51.711667],[-1.463272,51.70998],[-1.464413,51.707646],[-1.463105,51.703823],[-1.462885,51.701528],[-1.464129,51.699932],[-1.465671,51.699156],[-1.467397,51.699742],[-1.469015,51.699381],[-1.469412,51.700153],[-1.470917,51.699932],[-1.471395,51.700783],[-1.472788,51.70031],[-1.475879,51.703906],[-1.479039,51.70385],[-1.480697,51.703317],[-1.482703,51.701666],[-1.484796,51.696803],[-1.486573,51.695702],[-1.487909,51.695597],[-1.489064,51.694259],[-1.492127,51.693886],[-1.495517,51.694723],[-1.494813,51.695627],[-1.497263,51.697675],[-1.498641,51.698274],[-1.50152,51.69828],[-1.502645,51.697795],[-1.504101,51.698333],[-1.506018,51.69831],[-1.507209,51.698709],[-1.506933,51.700033],[-1.511402,51.69963],[-1.512832,51.701147],[-1.515851,51.701749],[-1.517111,51.701688],[-1.52403,51.699483],[-1.526068,51.69967],[-1.527105,51.698256],[-1.531521,51.698418],[-1.534277,51.698184],[-1.536157,51.699083],[-1.537433,51.701249],[-1.539963,51.701744],[-1.541087,51.702677],[-1.542879,51.702189],[-1.543269,51.702992],[-1.545188,51.703239],[-1.547482,51.70184],[-1.549744,51.700874],[-1.551619,51.701299],[-1.551912,51.700392],[-1.555055,51.699334],[-1.556586,51.699436],[-1.560807,51.698633],[-1.561573,51.699368],[-1.562808,51.698697],[-1.563725,51.699186],[-1.565619,51.698685],[-1.567299,51.699672],[-1.570815,51.699478],[-1.572058,51.700366],[-1.574852,51.700107],[-1.576983,51.699585],[-1.579114,51.697653],[-1.578885,51.696855],[-1.580118,51.696121],[-1.583942,51.69508],[-1.585014,51.693475],[-1.588081,51.692707],[-1.59169,51.691025],[-1.59415,51.690254],[-1.598444,51.687934],[-1.601059,51.688859],[-1.602413,51.690494],[-1.603971,51.690886],[-1.603877,51.691539],[-1.606045,51.692256],[-1.607189,51.691899],[-1.608333,51.690851],[-1.609909,51.690679],[-1.611957,51.689924],[-1.614845,51.687686],[-1.623711,51.685358],[-1.624567,51.684753],[-1.628302,51.68385],[-1.630294,51.684019],[-1.629915,51.684936],[-1.631484,51.685785],[-1.633509,51.686319],[-1.635345,51.687556],[-1.636606,51.686764],[-1.639141,51.686808],[-1.641399,51.685383],[-1.642847,51.685585],[-1.646801,51.684798],[-1.648254,51.684087],[-1.652655,51.681525],[-1.655577,51.681808],[-1.659563,51.680756],[-1.662168,51.68154],[-1.663293,51.681295],[-1.66531,51.681776],[-1.665862,51.68105],[-1.668459,51.680438],[-1.669079,51.681271],[-1.675208,51.682535],[-1.676264,51.684211],[-1.67439,51.683709],[-1.673769,51.684767],[-1.676025,51.686847],[-1.675008,51.687328],[-1.676016,51.688407],[-1.679113,51.689397],[-1.681338,51.690397],[-1.683059,51.69011],[-1.683911,51.688804],[-1.686508,51.689293],[-1.688727,51.687563],[-1.691104,51.687307],[-1.691173,51.686684],[-1.693013,51.685717],[-1.693281,51.683879],[-1.695033,51.683219],[-1.696518,51.682116],[-1.696848,51.681018],[-1.696357,51.680134],[-1.695196,51.679785],[-1.694886,51.678575],[-1.695564,51.678053],[-1.697769,51.677466],[-1.698743,51.676472],[-1.69848,51.674219],[-1.699022,51.673124],[-1.700157,51.672271],[-1.700189,51.670742],[-1.699022,51.669513],[-1.697734,51.66961],[-1.695837,51.668764],[-1.694099,51.66876],[-1.694209,51.66642],[-1.690623,51.663784],[-1.69098,51.662338],[-1.689572,51.661113],[-1.689155,51.6596],[-1.689219,51.657356],[-1.688495,51.656788],[-1.688929,51.655693],[-1.692697,51.653391],[-1.691617,51.652658],[-1.686274,51.652382],[-1.684906,51.650988],[-1.68321,51.650111],[-1.682617,51.648825],[-1.681815,51.648616],[-1.681431,51.647402],[-1.679999,51.646632],[-1.67975,51.64482],[-1.678057,51.644318],[-1.67729,51.643143],[-1.674868,51.642179],[-1.674249,51.641181],[-1.672441,51.641503],[-1.670592,51.64081],[-1.66459,51.640375],[-1.663308,51.63993],[-1.659955,51.634991],[-1.662825,51.631218],[-1.665171,51.630056],[-1.669125,51.627545],[-1.668878,51.626018],[-1.670804,51.625082],[-1.673111,51.622604],[-1.672303,51.620295],[-1.669692,51.618889],[-1.667074,51.617907],[-1.66701,51.616264],[-1.669392,51.615176],[-1.67002,51.614067],[-1.671817,51.613568],[-1.672455,51.612892],[-1.674955,51.611751],[-1.679223,51.6138],[-1.68132,51.613562],[-1.682661,51.612519],[-1.681759,51.611753],[-1.682497,51.609456],[-1.685257,51.608622],[-1.688277,51.606587],[-1.690617,51.60545],[-1.689668,51.601647],[-1.687299,51.600141],[-1.688445,51.59853],[-1.687819,51.597363],[-1.68758,51.594685],[-1.685432,51.593681],[-1.685669,51.59247],[-1.685045,51.591829],[-1.685504,51.590971],[-1.684757,51.590327],[-1.685744,51.58956],[-1.684953,51.588675],[-1.685373,51.587597],[-1.686971,51.587346],[-1.687367,51.586709],[-1.689019,51.586171],[-1.691111,51.583524],[-1.689137,51.581956],[-1.68831,51.578815],[-1.685419,51.575988],[-1.684704,51.573818],[-1.681685,51.572755],[-1.68144,51.572143],[-1.679293,51.571454],[-1.678172,51.570191],[-1.67654,51.569439],[-1.673242,51.570606],[-1.662423,51.573563],[-1.658315,51.574199],[-1.655045,51.576506],[-1.652117,51.574194],[-1.647692,51.571952],[-1.646099,51.570088],[-1.646375,51.568657],[-1.643787,51.564075],[-1.638668,51.55932],[-1.638912,51.55892],[-1.633037,51.552538],[-1.63198,51.553133],[-1.630777,51.552076],[-1.629225,51.549661],[-1.626888,51.547567],[-1.624804,51.546051],[-1.625385,51.54554],[-1.623004,51.544218],[-1.623593,51.543617],[-1.622262,51.542354],[-1.617787,51.539184],[-1.615344,51.538104],[-1.615443,51.536722],[-1.61375,51.53651],[-1.612823,51.534131],[-1.608273,51.528874],[-1.607892,51.527493],[-1.604798,51.522721],[-1.604491,51.520492],[-1.603384,51.520336],[-1.602812,51.518295],[-1.59806,51.518697],[-1.594042,51.519779],[-1.592099,51.521485],[-1.590032,51.521739],[-1.5891,51.524491],[-1.587914,51.52486],[-1.584708,51.524912],[-1.585141,51.525667],[-1.583341,51.528316],[-1.581517,51.534467],[-1.581187,51.536995],[-1.576682,51.539062],[-1.56936,51.543283],[-1.570238,51.544512],[-1.570008,51.54738],[-1.569588,51.547544],[-1.566103,51.545562],[-1.561051,51.550294],[-1.556371,51.553006],[-1.555001,51.55337],[-1.547401,51.553083],[-1.547075,51.551397],[-1.542955,51.552325],[-1.541453,51.552059],[-1.540243,51.550952],[-1.540273,51.549517],[-1.534784,51.548385],[-1.532313,51.547192],[-1.530959,51.546069],[-1.530184,51.54693],[-1.530719,51.548096],[-1.521307,51.550896],[-1.51668,51.551185],[-1.514593,51.551159],[-1.512939,51.55076],[-1.508943,51.549064],[-1.504741,51.546659],[-1.501229,51.546695],[-1.495889,51.545662],[-1.489564,51.542811],[-1.486032,51.540566],[-1.487583,51.538893],[-1.488017,51.536244],[-1.485857,51.534079],[-1.477071,51.532647],[-1.476252,51.530781],[-1.470711,51.530009],[-1.470745,51.528607],[-1.462988,51.530191],[-1.4648,51.534788],[-1.464787,51.537949],[-1.461841,51.536478],[-1.456757,51.535458],[-1.454928,51.535378],[-1.447832,51.536427],[-1.439649,51.539565],[-1.437134,51.540008],[-1.430993,51.542585],[-1.426591,51.545599],[-1.425647,51.54201],[-1.422769,51.535765],[-1.419337,51.537724],[-1.418023,51.538975],[-1.416211,51.539649],[-1.413788,51.54208],[-1.409885,51.544702],[-1.404858,51.547235],[-1.404328,51.546309],[-1.400287,51.544765],[-1.398215,51.543423],[-1.395851,51.540345],[-1.39246,51.540424],[-1.388904,51.53989],[-1.383779,51.540426],[-1.380699,51.542259],[-1.376961,51.545779],[-1.377951,51.549687],[-1.372832,51.550575],[-1.369015,51.552208],[-1.367321,51.552467],[-1.365511,51.551143],[-1.363177,51.550044],[-1.361172,51.547984],[-1.358781,51.546606],[-1.350361,51.546884],[-1.34683,51.544013],[-1.343988,51.543378],[-1.34125,51.544057],[-1.337952,51.545777],[-1.3383,51.547511],[-1.338071,51.549305],[-1.337002,51.550892],[-1.336443,51.552834],[-1.334785,51.554872],[-1.333134,51.560377],[-1.328721,51.563712],[-1.326298,51.559582],[-1.320407,51.558939],[-1.315307,51.557265],[-1.309383,51.557179],[-1.307864,51.556796],[-1.306084,51.556897],[-1.303375,51.556589],[-1.302132,51.555141],[-1.297452,51.553407],[-1.297139,51.552879],[-1.294192,51.553847],[-1.289505,51.552312],[-1.287561,51.552846],[-1.286537,51.551574],[-1.285522,51.548331],[-1.283757,51.548623],[-1.280325,51.546755],[-1.2702,51.54462],[-1.267893,51.542168],[-1.260656,51.53779],[-1.256457,51.537018],[-1.245317,51.53775],[-1.240165,51.537658],[-1.233838,51.536294],[-1.229942,51.534614],[-1.226792,51.535158],[-1.228705,51.541421],[-1.228704,51.543721],[-1.227974,51.546867],[-1.223675,51.552065],[-1.222788,51.551981],[-1.220731,51.557288],[-1.221765,51.560375],[-1.220633,51.560526],[-1.219149,51.562579],[-1.217201,51.564031],[-1.214234,51.569716],[-1.213961,51.57056],[-1.211772,51.570904],[-1.212635,51.572327],[-1.211693,51.573038],[-1.207648,51.579538],[-1.202274,51.590129],[-1.203339,51.590657],[-1.204017,51.592187],[-1.208858,51.591217],[-1.208677,51.589682],[-1.210664,51.589137],[-1.214121,51.588818],[-1.21904,51.585886],[-1.220223,51.585827],[-1.220815,51.584477],[-1.22168,51.58446],[-1.224268,51.58264],[-1.224813,51.581337],[-1.226815,51.582282],[-1.230062,51.580327],[-1.232734,51.582597],[-1.23341,51.582727],[-1.252995,51.584524],[-1.257999,51.583931],[-1.263312,51.584265],[-1.264718,51.584599],[-1.269389,51.58456],[-1.273632,51.581232],[-1.282558,51.576265],[-1.28413,51.574854],[-1.286392,51.575916],[-1.287659,51.577892],[-1.290225,51.577897],[-1.288677,51.581312],[-1.283968,51.586908],[-1.270634,51.598244],[-1.271526,51.600231],[-1.265063,51.603753],[-1.266085,51.604205],[-1.265731,51.607178],[-1.26912,51.608515],[-1.270482,51.609722],[-1.272786,51.610114],[-1.27327,51.611635],[-1.269828,51.61367],[-1.266359,51.614797],[-1.266242,51.617148],[-1.265694,51.618604],[-1.263811,51.618582],[-1.257201,51.617107],[-1.255724,51.620718],[-1.254162,51.622093],[-1.251988,51.623018],[-1.249255,51.623379],[-1.245903,51.623178],[-1.243067,51.622517],[-1.242018,51.624252],[-1.235666,51.629593],[-1.235473,51.630176],[-1.22175,51.639913],[-1.220736,51.639974],[-1.219095,51.641755],[-1.220273,51.642996],[-1.221877,51.642356],[-1.222533,51.641529],[-1.225777,51.641194],[-1.229007,51.641103],[-1.232585,51.641546],[-1.238472,51.643258],[-1.242244,51.645181],[-1.244352,51.645351],[-1.251205,51.64658],[-1.253342,51.64754],[-1.258288,51.649052],[-1.26322,51.650098],[-1.265613,51.649609],[-1.26612,51.64861],[-1.267253,51.647908],[-1.26969,51.647742],[-1.271059,51.647294],[-1.272727,51.647331],[-1.272949,51.646151],[-1.273861,51.645204],[-1.276779,51.644517],[-1.28003,51.644173],[-1.280428,51.643037],[-1.281669,51.643187],[-1.287123,51.642806],[-1.287769,51.64584],[-1.289454,51.646868],[-1.288634,51.648586],[-1.286947,51.649184],[-1.286557,51.650172],[-1.285154,51.649746],[-1.2832,51.650011],[-1.281127,51.653053],[-1.279656,51.656554],[-1.278644,51.658037],[-1.279385,51.658832],[-1.281571,51.659992],[-1.283799,51.66587],[-1.280117,51.667238],[-1.277405,51.668889],[-1.269542,51.670285],[-1.264121,51.669816],[-1.263269,51.670238],[-1.261631,51.669449],[-1.260144,51.669204],[-1.258356,51.66736],[-1.250817,51.66656],[-1.246689,51.66717],[-1.242786,51.668353],[-1.241263,51.669352],[-1.234927,51.671052],[-1.230882,51.67285],[-1.230324,51.674819],[-1.227763,51.67539],[-1.226875,51.675982],[-1.226256,51.678654],[-1.224619,51.681723],[-1.223078,51.682869],[-1.221754,51.68462],[-1.222369,51.686014],[-1.222084,51.68824],[-1.223267,51.691513],[-1.224302,51.69278],[-1.229004,51.696688],[-1.230822,51.699311],[-1.229958,51.700133],[-1.230653,51.702891],[-1.231346,51.70365],[-1.233147,51.70409],[-1.232937,51.70745],[-1.234689,51.707651],[-1.234429,51.709745],[-1.235319,51.711454],[-1.233576,51.711793],[-1.234913,51.713043],[-1.235419,51.714835],[-1.236892,51.715722],[-1.237334,51.717963],[-1.239384,51.717825],[-1.242619,51.721019],[-1.24131,51.72516],[-1.247645,51.728307],[-1.24867,51.728042],[-1.253061,51.728267],[-1.253988,51.729284],[-1.252945,51.729926],[-1.253293,51.730695],[-1.255806,51.733133],[-1.256736,51.733453],[-1.258664,51.735808],[-1.259463,51.735734],[-1.261319,51.737539],[-1.262732,51.738372],[-1.263192,51.739322],[-1.264217,51.739433],[-1.265463,51.741215],[-1.267487,51.741846],[-1.267841,51.742712],[-1.26967,51.74321],[-1.272022,51.742956],[-1.27585,51.74365],[-1.278755,51.745512],[-1.281054,51.745335],[-1.284142,51.74631],[-1.285267,51.747209],[-1.28718,51.747947],[-1.288787,51.748998],[-1.290837,51.750886],[-1.290723,51.753319],[-1.293228,51.753475],[-1.293345,51.755399],[-1.29523,51.756545],[-1.295541,51.759127],[-1.29681,51.7623],[-1.3012,51.76816],[-1.30367,51.772637],[-1.304199,51.776603],[-1.30282,51.780965]]]},"properties":{"LAD22CD":"E07000180","LAD22NM":"Vale of White Horse","BNG_E":435693,"BNG_N":195197,"LONG":-1.48543,"LAT":51.65443,"GlobalID":"3c682435-a777-4477-a772-883dde6cb72f"},"id":189}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.322343,51.78784],[-1.324652,51.791794],[-1.325919,51.791859],[-1.325873,51.796822],[-1.326819,51.800888],[-1.326403,51.805015],[-1.325632,51.805357],[-1.33312,51.809551],[-1.335513,51.811335],[-1.337325,51.811738],[-1.336024,51.813146],[-1.334057,51.814471],[-1.332374,51.816995],[-1.338342,51.819952],[-1.33297,51.820058],[-1.331145,51.820447],[-1.328969,51.82184],[-1.328191,51.82343],[-1.326224,51.825494],[-1.326695,51.826616],[-1.332542,51.831088],[-1.337084,51.830231],[-1.342001,51.830181],[-1.340567,51.832281],[-1.340346,51.833996],[-1.337801,51.834324],[-1.338539,51.8366],[-1.337466,51.836734],[-1.336938,51.838275],[-1.341361,51.840424],[-1.340534,51.840921],[-1.339865,51.845243],[-1.336995,51.849898],[-1.337029,51.851868],[-1.338753,51.854568],[-1.339175,51.856173],[-1.333995,51.862479],[-1.328185,51.860611],[-1.326459,51.860517],[-1.324561,51.859653],[-1.323034,51.861298],[-1.316408,51.860401],[-1.311143,51.86045],[-1.309583,51.861749],[-1.307502,51.862751],[-1.304552,51.861675],[-1.297083,51.861044],[-1.295915,51.861729],[-1.294531,51.863978],[-1.299414,51.866466],[-1.302114,51.869116],[-1.296212,51.872667],[-1.294294,51.872981],[-1.294047,51.872092],[-1.28813,51.873548],[-1.286133,51.875158],[-1.288672,51.881684],[-1.293913,51.884096],[-1.296511,51.886115],[-1.297868,51.888043],[-1.29716,51.889318],[-1.297181,51.89077],[-1.291419,51.892816],[-1.289905,51.89391],[-1.291333,51.896681],[-1.292229,51.896442],[-1.293878,51.897234],[-1.294913,51.89697],[-1.297219,51.897367],[-1.300745,51.898646],[-1.302417,51.900005],[-1.303691,51.902612],[-1.303883,51.90399],[-1.302189,51.906173],[-1.300539,51.90657],[-1.298986,51.908359],[-1.298396,51.90984],[-1.298919,51.913156],[-1.299664,51.913753],[-1.301932,51.914365],[-1.306392,51.916349],[-1.305249,51.917242],[-1.306126,51.918714],[-1.306225,51.919765],[-1.312336,51.920977],[-1.314414,51.921948],[-1.318024,51.921779],[-1.324721,51.922506],[-1.325121,51.923203],[-1.325229,51.92673],[-1.33054,51.927351],[-1.329461,51.930532],[-1.330269,51.932223],[-1.330174,51.933488],[-1.339992,51.93496],[-1.338332,51.937706],[-1.336437,51.93812],[-1.332465,51.942149],[-1.33907,51.941957],[-1.340603,51.942153],[-1.343288,51.941219],[-1.345267,51.941161],[-1.344564,51.942705],[-1.344936,51.944201],[-1.348341,51.9458],[-1.349591,51.945878],[-1.352449,51.947037],[-1.356272,51.946794],[-1.361858,51.948375],[-1.36076,51.951456],[-1.360734,51.95378],[-1.361159,51.956226],[-1.361778,51.956923],[-1.36184,51.958496],[-1.360618,51.961022],[-1.361965,51.964662],[-1.361611,51.966146],[-1.362142,51.967826],[-1.364947,51.967464],[-1.365968,51.969325],[-1.368166,51.971673],[-1.368247,51.972996],[-1.36898,51.973852],[-1.370239,51.973768],[-1.371833,51.974779],[-1.373126,51.974912],[-1.374591,51.975933],[-1.37577,51.97833],[-1.377235,51.979601],[-1.382953,51.979999],[-1.384461,51.980622],[-1.396541,51.978643],[-1.399778,51.979149],[-1.401868,51.97987],[-1.404071,51.978457],[-1.406719,51.977893],[-1.406377,51.975332],[-1.406928,51.974851],[-1.408805,51.974841],[-1.409548,51.972697],[-1.410624,51.973756],[-1.410364,51.976081],[-1.412532,51.978574],[-1.41519,51.979207],[-1.418087,51.980915],[-1.421436,51.981941],[-1.423127,51.983183],[-1.426579,51.98293],[-1.426904,51.984215],[-1.426205,51.98534],[-1.424453,51.986685],[-1.426887,51.987355],[-1.427764,51.987996],[-1.431225,51.988199],[-1.433599,51.988033],[-1.435517,51.989083],[-1.437372,51.989193],[-1.437685,51.988031],[-1.441025,51.985157],[-1.44713,51.983542],[-1.450075,51.98238],[-1.454078,51.979671],[-1.456147,51.979726],[-1.458505,51.97898],[-1.460716,51.97866],[-1.462767,51.979263],[-1.467341,51.978733],[-1.470915,51.978631],[-1.472204,51.977375],[-1.473943,51.977024],[-1.477992,51.977012],[-1.480737,51.976129],[-1.484362,51.976324],[-1.487687,51.975516],[-1.492006,51.975406],[-1.493668,51.974899],[-1.495383,51.976377],[-1.496959,51.977203],[-1.500922,51.9815],[-1.50139,51.983689],[-1.503435,51.984799],[-1.510853,51.986152],[-1.513415,51.987187],[-1.518193,51.989867],[-1.521231,51.992993],[-1.522826,51.996843],[-1.524928,51.993207],[-1.526864,51.992528],[-1.527929,51.991754],[-1.52913,51.99263],[-1.534756,51.99436],[-1.535995,51.995358],[-1.5399,51.996367],[-1.543929,51.996324],[-1.546827,51.994706],[-1.549676,51.993939],[-1.550615,51.993342],[-1.553561,51.992369],[-1.554036,51.991897],[-1.557224,51.991658],[-1.556686,51.989325],[-1.554077,51.986637],[-1.553618,51.985607],[-1.549671,51.98086],[-1.563539,51.97704],[-1.568641,51.976271],[-1.580573,51.972996],[-1.588407,51.974226],[-1.600302,51.976942],[-1.596689,51.974278],[-1.595799,51.972564],[-1.591634,51.97045],[-1.59429,51.968127],[-1.594721,51.96827],[-1.596917,51.964394],[-1.605788,51.959573],[-1.612343,51.955403],[-1.613609,51.955689],[-1.616215,51.957953],[-1.617984,51.959075],[-1.619893,51.960709],[-1.621903,51.961864],[-1.621039,51.962279],[-1.622612,51.963389],[-1.623569,51.964843],[-1.626285,51.967512],[-1.629724,51.969906],[-1.63236,51.970456],[-1.634303,51.972421],[-1.636528,51.972879],[-1.635913,51.973727],[-1.643093,51.977903],[-1.656581,51.983542],[-1.657334,51.984441],[-1.665754,51.987489],[-1.664639,51.985102],[-1.664099,51.984928],[-1.664929,51.983167],[-1.665336,51.980563],[-1.667521,51.978399],[-1.668943,51.975273],[-1.66608,51.971131],[-1.664279,51.96645],[-1.662529,51.964005],[-1.660959,51.963348],[-1.657224,51.963114],[-1.652375,51.961512],[-1.653467,51.959847],[-1.655179,51.959815],[-1.655367,51.957503],[-1.652334,51.957684],[-1.648927,51.958925],[-1.645768,51.956984],[-1.643387,51.957139],[-1.638836,51.956684],[-1.635313,51.956829],[-1.632491,51.955651],[-1.628869,51.9532],[-1.625354,51.949933],[-1.622782,51.946397],[-1.615189,51.937682],[-1.617284,51.937291],[-1.61991,51.937473],[-1.623599,51.935738],[-1.628257,51.933133],[-1.630007,51.931525],[-1.633764,51.929197],[-1.636118,51.927453],[-1.637834,51.926702],[-1.640021,51.925114],[-1.64337,51.923725],[-1.64553,51.922294],[-1.64282,51.922199],[-1.641182,51.921562],[-1.64146,51.919773],[-1.642611,51.919035],[-1.644837,51.918692],[-1.644462,51.916982],[-1.643574,51.916087],[-1.645373,51.914865],[-1.644221,51.914015],[-1.643916,51.913058],[-1.642664,51.912702],[-1.641439,51.913717],[-1.637952,51.912037],[-1.636252,51.912806],[-1.634841,51.912883],[-1.634183,51.911587],[-1.635095,51.910403],[-1.635299,51.909336],[-1.634695,51.908302],[-1.635967,51.907105],[-1.633746,51.905475],[-1.635634,51.904389],[-1.635167,51.902692],[-1.635769,51.9019],[-1.633582,51.900042],[-1.633051,51.899225],[-1.634177,51.898508],[-1.637793,51.897309],[-1.639544,51.897121],[-1.641549,51.895536],[-1.643505,51.895888],[-1.644224,51.894861],[-1.647472,51.894903],[-1.648716,51.895441],[-1.651368,51.895872],[-1.6532,51.89697],[-1.655571,51.896602],[-1.657589,51.897188],[-1.658967,51.895653],[-1.66167,51.894447],[-1.661269,51.893537],[-1.663021,51.892226],[-1.66255,51.891712],[-1.66262,51.887344],[-1.663926,51.886092],[-1.666014,51.885026],[-1.666978,51.882962],[-1.666873,51.881456],[-1.668957,51.881504],[-1.669262,51.879566],[-1.668952,51.878059],[-1.667125,51.877985],[-1.667112,51.877],[-1.668041,51.876338],[-1.671649,51.875126],[-1.673573,51.874051],[-1.674462,51.872576],[-1.675569,51.872631],[-1.678866,51.869825],[-1.680782,51.869163],[-1.683547,51.868716],[-1.686351,51.866292],[-1.686868,51.8655],[-1.685052,51.864316],[-1.687192,51.862827],[-1.681157,51.85964],[-1.680589,51.854729],[-1.678694,51.852922],[-1.676385,51.85031],[-1.678685,51.849467],[-1.679208,51.845994],[-1.681128,51.841904],[-1.683054,51.840324],[-1.685427,51.836932],[-1.686462,51.834456],[-1.68604,51.830749],[-1.684607,51.825572],[-1.684163,51.825687],[-1.683126,51.820294],[-1.68112,51.816053],[-1.678093,51.817023],[-1.67686,51.817025],[-1.677814,51.812957],[-1.680274,51.807127],[-1.683753,51.801337],[-1.685739,51.799863],[-1.686877,51.798239],[-1.69345,51.794149],[-1.702148,51.790995],[-1.707721,51.7883],[-1.713849,51.786126],[-1.719489,51.783212],[-1.717526,51.781519],[-1.708404,51.777521],[-1.700705,51.770584],[-1.69925,51.764631],[-1.699649,51.764531],[-1.69848,51.761606],[-1.696431,51.757142],[-1.693678,51.753662],[-1.695652,51.752308],[-1.693925,51.749073],[-1.694866,51.748575],[-1.691644,51.746661],[-1.692678,51.746],[-1.688306,51.741986],[-1.687021,51.739884],[-1.689041,51.739146],[-1.687485,51.736798],[-1.686626,51.734136],[-1.685791,51.733394],[-1.685508,51.730634],[-1.6868,51.728519],[-1.690108,51.726389],[-1.695819,51.723773],[-1.695107,51.722381],[-1.693707,51.721588],[-1.692587,51.72002],[-1.688819,51.717382],[-1.688918,51.716541],[-1.687301,51.714555],[-1.688768,51.71361],[-1.687679,51.712826],[-1.688,51.712045],[-1.686166,51.710176],[-1.681892,51.709037],[-1.67531,51.703761],[-1.666524,51.698365],[-1.6647,51.696879],[-1.662442,51.696437],[-1.659028,51.697504],[-1.657438,51.696451],[-1.656215,51.693816],[-1.655292,51.693629],[-1.655484,51.691455],[-1.654221,51.690281],[-1.651092,51.688802],[-1.651816,51.687525],[-1.653391,51.687181],[-1.648838,51.685414],[-1.648254,51.684087],[-1.646801,51.684798],[-1.642847,51.685585],[-1.641399,51.685383],[-1.639141,51.686808],[-1.636606,51.686764],[-1.635345,51.687556],[-1.633509,51.686319],[-1.631484,51.685785],[-1.629915,51.684936],[-1.630294,51.684019],[-1.628302,51.68385],[-1.624567,51.684753],[-1.623711,51.685358],[-1.614845,51.687686],[-1.611957,51.689924],[-1.609909,51.690679],[-1.608333,51.690851],[-1.607189,51.691899],[-1.606045,51.692256],[-1.603877,51.691539],[-1.603971,51.690886],[-1.602413,51.690494],[-1.601059,51.688859],[-1.598444,51.687934],[-1.59415,51.690254],[-1.59169,51.691025],[-1.588081,51.692707],[-1.585014,51.693475],[-1.583942,51.69508],[-1.580118,51.696121],[-1.578885,51.696855],[-1.579114,51.697653],[-1.576983,51.699585],[-1.574852,51.700107],[-1.572058,51.700366],[-1.570815,51.699478],[-1.567299,51.699672],[-1.565619,51.698685],[-1.563725,51.699186],[-1.562808,51.698697],[-1.561573,51.699368],[-1.560807,51.698633],[-1.556586,51.699436],[-1.555055,51.699334],[-1.551912,51.700392],[-1.551619,51.701299],[-1.549744,51.700874],[-1.547482,51.70184],[-1.545188,51.703239],[-1.543269,51.702992],[-1.542879,51.702189],[-1.541087,51.702677],[-1.539963,51.701744],[-1.537433,51.701249],[-1.536157,51.699083],[-1.534277,51.698184],[-1.531521,51.698418],[-1.527105,51.698256],[-1.526068,51.69967],[-1.52403,51.699483],[-1.517111,51.701688],[-1.515851,51.701749],[-1.512832,51.701147],[-1.511402,51.69963],[-1.506933,51.700033],[-1.507209,51.698709],[-1.506018,51.69831],[-1.504101,51.698333],[-1.502645,51.697795],[-1.50152,51.69828],[-1.498641,51.698274],[-1.497263,51.697675],[-1.494813,51.695627],[-1.495517,51.694723],[-1.492127,51.693886],[-1.489064,51.694259],[-1.487909,51.695597],[-1.486573,51.695702],[-1.484796,51.696803],[-1.482703,51.701666],[-1.480697,51.703317],[-1.479039,51.70385],[-1.475879,51.703906],[-1.472788,51.70031],[-1.471395,51.700783],[-1.470917,51.699932],[-1.469412,51.700153],[-1.469015,51.699381],[-1.467397,51.699742],[-1.465671,51.699156],[-1.464129,51.699932],[-1.462885,51.701528],[-1.463105,51.703823],[-1.464413,51.707646],[-1.463272,51.70998],[-1.463818,51.711667],[-1.463306,51.712395],[-1.459009,51.713304],[-1.455375,51.713201],[-1.452838,51.712639],[-1.451526,51.711652],[-1.450392,51.711577],[-1.448948,51.712265],[-1.447912,51.711989],[-1.445244,51.712056],[-1.444052,51.711656],[-1.442066,51.712383],[-1.439981,51.711349],[-1.438607,51.709326],[-1.440005,51.709325],[-1.439881,51.708174],[-1.438587,51.707772],[-1.435417,51.708361],[-1.431561,51.70863],[-1.424578,51.709901],[-1.419292,51.710293],[-1.411515,51.708972],[-1.403434,51.705881],[-1.401149,51.705738],[-1.39192,51.706296],[-1.385757,51.709024],[-1.382276,51.711787],[-1.378928,51.713564],[-1.377574,51.715579],[-1.376167,51.716742],[-1.374218,51.717234],[-1.369178,51.723019],[-1.36862,51.724096],[-1.369568,51.725275],[-1.368147,51.725718],[-1.368142,51.727104],[-1.367212,51.72789],[-1.366994,51.729635],[-1.368384,51.731996],[-1.369465,51.732754],[-1.371016,51.734714],[-1.373724,51.73639],[-1.374072,51.737401],[-1.371194,51.741135],[-1.368739,51.742012],[-1.368396,51.743494],[-1.367195,51.745297],[-1.36536,51.746358],[-1.365397,51.748337],[-1.367709,51.748494],[-1.368222,51.749392],[-1.366561,51.751672],[-1.367717,51.752889],[-1.367589,51.75377],[-1.366307,51.754984],[-1.366618,51.755899],[-1.36528,51.756727],[-1.366332,51.758331],[-1.363379,51.758551],[-1.362635,51.758992],[-1.364717,51.760865],[-1.362674,51.762579],[-1.360092,51.763084],[-1.359109,51.763618],[-1.360349,51.764385],[-1.360354,51.765497],[-1.362071,51.765904],[-1.364221,51.767806],[-1.363196,51.76845],[-1.364032,51.769389],[-1.362795,51.76995],[-1.363382,51.770751],[-1.36323,51.772299],[-1.362129,51.772057],[-1.361246,51.772881],[-1.361513,51.773636],[-1.357227,51.775541],[-1.355768,51.774998],[-1.350864,51.776081],[-1.348453,51.776923],[-1.343547,51.78008],[-1.341625,51.780872],[-1.33892,51.782871],[-1.337611,51.784554],[-1.335533,51.785418],[-1.333074,51.785287],[-1.331513,51.786199],[-1.328442,51.786396],[-1.324711,51.787702],[-1.322343,51.78784]]]},"properties":{"LAD22CD":"E07000181","LAD22NM":"West Oxfordshire","BNG_E":434343,"BNG_N":215816,"LONG":-1.50292,"LAT":51.8399,"GlobalID":"e74b7cdd-387c-48ac-9ac6-f54794ff4a0f"},"id":190}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.694879,51.318094],[-2.696392,51.31757],[-2.696854,51.31614],[-2.699532,51.316846],[-2.703142,51.317076],[-2.708623,51.317177],[-2.716841,51.316801],[-2.720926,51.321527],[-2.721449,51.319471],[-2.725406,51.318359],[-2.728063,51.317226],[-2.729814,51.318058],[-2.73256,51.318804],[-2.733024,51.318383],[-2.739392,51.319815],[-2.744586,51.319281],[-2.747759,51.319775],[-2.748988,51.319124],[-2.752852,51.32012],[-2.753941,51.319775],[-2.755353,51.321393],[-2.75479,51.322864],[-2.754806,51.324548],[-2.761482,51.322112],[-2.764644,51.322577],[-2.763559,51.321618],[-2.763354,51.319899],[-2.764863,51.316819],[-2.763882,51.31505],[-2.763555,51.313386],[-2.765631,51.30903],[-2.752618,51.307581],[-2.736303,51.306517],[-2.732484,51.303895],[-2.732281,51.303319],[-2.733303,51.301699],[-2.73372,51.299706],[-2.735343,51.298562],[-2.735026,51.297053],[-2.735577,51.294981],[-2.734655,51.29257],[-2.735545,51.291045],[-2.737102,51.290109],[-2.734286,51.288532],[-2.734679,51.287269],[-2.733075,51.282347],[-2.732051,51.281529],[-2.729598,51.280615],[-2.724739,51.280454],[-2.722682,51.280046],[-2.719007,51.280465],[-2.717893,51.281307],[-2.71576,51.282085],[-2.713427,51.280314],[-2.71639,51.278612],[-2.720655,51.278066],[-2.719964,51.276117],[-2.720591,51.275588],[-2.715152,51.273654],[-2.713538,51.272779],[-2.709893,51.270108],[-2.71147,51.269252],[-2.716138,51.267668],[-2.721991,51.266214],[-2.725969,51.263256],[-2.7272,51.261217],[-2.733783,51.263917],[-2.73869,51.266448],[-2.744824,51.263949],[-2.750006,51.262234],[-2.749332,51.261906],[-2.751222,51.259573],[-2.755154,51.258301],[-2.757969,51.256928],[-2.759893,51.257779],[-2.767357,51.253055],[-2.766454,51.2523],[-2.766035,51.250965],[-2.771197,51.248862],[-2.771434,51.248527],[-2.778021,51.246941],[-2.777968,51.239287],[-2.77652,51.237491],[-2.779611,51.235858],[-2.778878,51.232963],[-2.780033,51.230994],[-2.779093,51.229439],[-2.777129,51.229404],[-2.77352,51.228785],[-2.772242,51.228],[-2.769957,51.228125],[-2.766634,51.229336],[-2.765035,51.229089],[-2.760979,51.229284],[-2.759954,51.228767],[-2.760103,51.225808],[-2.758862,51.224737],[-2.756217,51.224461],[-2.754904,51.224668],[-2.753118,51.223695],[-2.751538,51.224192],[-2.750863,51.222811],[-2.751462,51.221364],[-2.749869,51.220548],[-2.751702,51.219157],[-2.752597,51.216603],[-2.750783,51.214739],[-2.751432,51.21247],[-2.750047,51.211801],[-2.748227,51.212095],[-2.745973,51.209636],[-2.746649,51.208755],[-2.745448,51.207536],[-2.745944,51.206272],[-2.750813,51.206567],[-2.752942,51.207254],[-2.754826,51.206756],[-2.756791,51.206643],[-2.757375,51.20612],[-2.761123,51.205559],[-2.765163,51.206699],[-2.768661,51.207062],[-2.772478,51.207007],[-2.781797,51.206172],[-2.781156,51.205258],[-2.785658,51.204653],[-2.793837,51.204342],[-2.805356,51.181971],[-2.807044,51.179753],[-2.816766,51.184367],[-2.819183,51.184818],[-2.82534,51.186802],[-2.837218,51.191375],[-2.838444,51.18954],[-2.842688,51.172941],[-2.796869,51.156529],[-2.786014,51.15295],[-2.78874,51.142939],[-2.785554,51.14248],[-2.7861,51.13995],[-2.789876,51.13964],[-2.789346,51.13892],[-2.786638,51.139459],[-2.787099,51.136486],[-2.788876,51.136276],[-2.788658,51.135174],[-2.793621,51.133376],[-2.793943,51.132683],[-2.796594,51.131501],[-2.795114,51.130439],[-2.793169,51.12979],[-2.796786,51.128207],[-2.794966,51.127835],[-2.793519,51.12686],[-2.792831,51.12584],[-2.793386,51.125194],[-2.792151,51.123841],[-2.791122,51.123801],[-2.788988,51.124611],[-2.788848,51.121368],[-2.789757,51.11813],[-2.789043,51.116708],[-2.789259,51.114782],[-2.787851,51.114089],[-2.786446,51.112165],[-2.790307,51.113668],[-2.793768,51.11379],[-2.798375,51.113507],[-2.803147,51.114191],[-2.809698,51.11623],[-2.810077,51.116091],[-2.817482,51.11899],[-2.819189,51.119039],[-2.824313,51.120366],[-2.825123,51.117938],[-2.822838,51.114781],[-2.821378,51.111874],[-2.819874,51.107933],[-2.794421,51.107796],[-2.790926,51.098496],[-2.77201,51.097116],[-2.746701,51.095343],[-2.742784,51.096858],[-2.743297,51.09902],[-2.740348,51.099912],[-2.738585,51.106438],[-2.736807,51.107158],[-2.734447,51.106747],[-2.728467,51.104181],[-2.720217,51.101875],[-2.717757,51.099357],[-2.712818,51.096527],[-2.710085,51.093381],[-2.707888,51.091558],[-2.707918,51.090174],[-2.708608,51.08966],[-2.715431,51.088184],[-2.715637,51.083023],[-2.713946,51.082642],[-2.715626,51.079746],[-2.714313,51.078446],[-2.715469,51.07772],[-2.713795,51.075963],[-2.710352,51.074575],[-2.705853,51.072034],[-2.705092,51.072866],[-2.706466,51.074454],[-2.705997,51.076244],[-2.708637,51.077071],[-2.709456,51.076311],[-2.710628,51.077598],[-2.708745,51.078405],[-2.708154,51.080208],[-2.707244,51.080621],[-2.704892,51.080002],[-2.704878,51.079438],[-2.702348,51.078483],[-2.699842,51.078144],[-2.697343,51.07623],[-2.694443,51.077675],[-2.693762,51.078793],[-2.689456,51.080019],[-2.688225,51.079325],[-2.685743,51.080115],[-2.685974,51.080859],[-2.682703,51.08156],[-2.68024,51.08276],[-2.677788,51.082663],[-2.674515,51.083425],[-2.67424,51.085157],[-2.672701,51.086844],[-2.670484,51.090523],[-2.669502,51.094695],[-2.663959,51.099267],[-2.661335,51.100894],[-2.658438,51.102069],[-2.651812,51.101642],[-2.648391,51.102101],[-2.64758,51.101899],[-2.647006,51.100024],[-2.646097,51.09874],[-2.646696,51.095601],[-2.645604,51.093275],[-2.644587,51.092923],[-2.643975,51.09194],[-2.641636,51.090707],[-2.640804,51.088857],[-2.639223,51.087934],[-2.636972,51.089075],[-2.635444,51.088946],[-2.634399,51.088235],[-2.637003,51.084175],[-2.637886,51.085276],[-2.638974,51.085146],[-2.639996,51.083588],[-2.642527,51.082641],[-2.641882,51.08101],[-2.64052,51.080427],[-2.639849,51.079031],[-2.639994,51.076121],[-2.639545,51.074489],[-2.637591,51.071446],[-2.636762,51.068153],[-2.634902,51.064795],[-2.632705,51.06331],[-2.627325,51.064288],[-2.617632,51.065071],[-2.613347,51.065136],[-2.613317,51.065923],[-2.614336,51.067775],[-2.61326,51.068372],[-2.613239,51.06932],[-2.611507,51.070022],[-2.606605,51.071116],[-2.604433,51.070234],[-2.60384,51.07049],[-2.599096,51.069844],[-2.598012,51.070281],[-2.598016,51.07156],[-2.599222,51.075279],[-2.602003,51.081597],[-2.60149,51.081885],[-2.601742,51.083426],[-2.600423,51.084862],[-2.597669,51.084497],[-2.595429,51.083747],[-2.591032,51.083543],[-2.590112,51.083161],[-2.588298,51.083731],[-2.587493,51.083118],[-2.586048,51.084462],[-2.5864,51.085712],[-2.58774,51.085709],[-2.5886,51.088306],[-2.591705,51.090164],[-2.593338,51.090039],[-2.596361,51.088846],[-2.598644,51.088683],[-2.60116,51.08898],[-2.601125,51.091679],[-2.602441,51.093995],[-2.598099,51.098407],[-2.595313,51.096423],[-2.59291,51.093235],[-2.59136,51.092819],[-2.589384,51.09071],[-2.58773,51.090216],[-2.585263,51.090676],[-2.582294,51.090405],[-2.580681,51.090019],[-2.579241,51.08878],[-2.573004,51.090504],[-2.569915,51.091103],[-2.567931,51.090773],[-2.5664,51.09173],[-2.565267,51.093202],[-2.562947,51.093788],[-2.56189,51.091885],[-2.559684,51.091885],[-2.556887,51.092681],[-2.555748,51.092373],[-2.555308,51.093911],[-2.55352,51.094082],[-2.552876,51.095286],[-2.550439,51.095718],[-2.549935,51.096687],[-2.546922,51.097608],[-2.54627,51.096689],[-2.543386,51.097347],[-2.542698,51.098326],[-2.539473,51.098302],[-2.535066,51.099079],[-2.534183,51.099934],[-2.531182,51.100656],[-2.529226,51.10057],[-2.526525,51.101189],[-2.525655,51.101773],[-2.521777,51.10117],[-2.520566,51.101603],[-2.520154,51.103386],[-2.51739,51.103183],[-2.516615,51.104286],[-2.51463,51.104671],[-2.51304,51.104285],[-2.511896,51.104802],[-2.510298,51.104711],[-2.505127,51.106046],[-2.504452,51.106757],[-2.502535,51.107345],[-2.500387,51.107252],[-2.498589,51.109525],[-2.500323,51.110647],[-2.501746,51.112726],[-2.491942,51.114378],[-2.489768,51.115756],[-2.487381,51.116124],[-2.485505,51.116841],[-2.484524,51.118171],[-2.482699,51.118669],[-2.482075,51.119288],[-2.478473,51.118434],[-2.472947,51.11864],[-2.471981,51.119474],[-2.470786,51.119108],[-2.470011,51.120173],[-2.468562,51.120848],[-2.468561,51.121837],[-2.464823,51.121823],[-2.466377,51.124214],[-2.462743,51.12349],[-2.460263,51.123554],[-2.456981,51.123143],[-2.455991,51.122158],[-2.453539,51.122997],[-2.451597,51.125155],[-2.449004,51.125986],[-2.448248,51.126839],[-2.448834,51.127716],[-2.448187,51.128958],[-2.446928,51.13018],[-2.445019,51.13098],[-2.443554,51.132232],[-2.440672,51.132496],[-2.438731,51.133261],[-2.436471,51.132927],[-2.434816,51.133202],[-2.433726,51.134455],[-2.434361,51.135231],[-2.434496,51.137288],[-2.431071,51.139931],[-2.428155,51.143288],[-2.42561,51.142817],[-2.424763,51.1418],[-2.41781,51.140854],[-2.416614,51.141861],[-2.414475,51.142769],[-2.413388,51.144381],[-2.411787,51.143847],[-2.411164,51.146273],[-2.408032,51.147712],[-2.40548,51.146864],[-2.403582,51.145229],[-2.405264,51.142452],[-2.402959,51.141575],[-2.40129,51.140334],[-2.395329,51.142602],[-2.393384,51.141861],[-2.390455,51.144111],[-2.38722,51.1437],[-2.384632,51.142973],[-2.381329,51.143543],[-2.376559,51.142717],[-2.375026,51.143767],[-2.370985,51.143348],[-2.36944,51.142688],[-2.368288,51.140622],[-2.366351,51.139792],[-2.364097,51.137823],[-2.359869,51.136354],[-2.358379,51.13482],[-2.354668,51.133055],[-2.351611,51.132939],[-2.348196,51.131886],[-2.346305,51.130511],[-2.345859,51.133369],[-2.341397,51.135334],[-2.332174,51.137984],[-2.330906,51.140926],[-2.332287,51.144958],[-2.32887,51.14846],[-2.322414,51.154087],[-2.319527,51.158255],[-2.316992,51.159351],[-2.316277,51.160578],[-2.315317,51.160917],[-2.31273,51.163024],[-2.311227,51.167145],[-2.308885,51.169341],[-2.30566,51.170693],[-2.303865,51.172765],[-2.298465,51.175322],[-2.297315,51.178226],[-2.297784,51.180035],[-2.293059,51.183912],[-2.291571,51.185758],[-2.291012,51.188271],[-2.288496,51.188001],[-2.288124,51.189505],[-2.289054,51.19116],[-2.288408,51.192182],[-2.284819,51.19308],[-2.28493,51.194639],[-2.284049,51.19566],[-2.284533,51.197348],[-2.281338,51.197455],[-2.280355,51.199331],[-2.280166,51.201244],[-2.278635,51.201795],[-2.276457,51.205642],[-2.272939,51.208455],[-2.27325,51.209396],[-2.272037,51.209575],[-2.271319,51.210955],[-2.269472,51.212612],[-2.269179,51.213457],[-2.266664,51.215534],[-2.266701,51.216609],[-2.269387,51.21768],[-2.269761,51.218953],[-2.269011,51.220433],[-2.267619,51.221056],[-2.268126,51.222406],[-2.267964,51.224002],[-2.267024,51.226362],[-2.263805,51.231038],[-2.26267,51.233607],[-2.263764,51.234373],[-2.26196,51.235975],[-2.260789,51.239121],[-2.257855,51.241698],[-2.254997,51.243326],[-2.252432,51.246372],[-2.252861,51.247352],[-2.248153,51.251038],[-2.245341,51.253876],[-2.247807,51.256479],[-2.24812,51.258172],[-2.249583,51.258966],[-2.24792,51.260803],[-2.247966,51.261437],[-2.244431,51.263119],[-2.245124,51.264197],[-2.244712,51.267525],[-2.245172,51.272521],[-2.247396,51.275399],[-2.247166,51.277234],[-2.247806,51.279212],[-2.250617,51.282806],[-2.251059,51.285255],[-2.253497,51.289835],[-2.255584,51.289425],[-2.257438,51.291684],[-2.260982,51.290708],[-2.265287,51.292859],[-2.26299,51.295165],[-2.265474,51.29624],[-2.267235,51.295955],[-2.268344,51.295064],[-2.269848,51.294641],[-2.272964,51.294896],[-2.275834,51.293495],[-2.277478,51.29321],[-2.279973,51.29223],[-2.279497,51.29552],[-2.280178,51.297097],[-2.281492,51.29867],[-2.279863,51.299307],[-2.27982,51.300307],[-2.278794,51.300956],[-2.278111,51.302556],[-2.276779,51.303933],[-2.278592,51.304969],[-2.278378,51.305488],[-2.281091,51.306621],[-2.281262,51.30723],[-2.283545,51.307783],[-2.285068,51.309457],[-2.283277,51.310772],[-2.281557,51.310914],[-2.279212,51.310331],[-2.276653,51.310527],[-2.275804,51.312366],[-2.273664,51.312846],[-2.271955,51.314254],[-2.273123,51.316909],[-2.274709,51.317743],[-2.275137,51.31903],[-2.272331,51.3185],[-2.275209,51.322187],[-2.273095,51.322879],[-2.275103,51.324614],[-2.274938,51.325035],[-2.277747,51.325704],[-2.279267,51.324714],[-2.281265,51.324036],[-2.282158,51.325308],[-2.285162,51.324455],[-2.289091,51.325272],[-2.29116,51.323813],[-2.294094,51.322752],[-2.297937,51.322368],[-2.299219,51.321295],[-2.303928,51.320117],[-2.305356,51.319442],[-2.310729,51.318805],[-2.312281,51.317574],[-2.316381,51.316344],[-2.319538,51.314422],[-2.320183,51.314948],[-2.324818,51.31356],[-2.324731,51.313004],[-2.326156,51.311873],[-2.328577,51.310799],[-2.330385,51.309256],[-2.332521,51.308443],[-2.337349,51.307687],[-2.339051,51.309892],[-2.340556,51.309456],[-2.34867,51.308138],[-2.350483,51.307022],[-2.353867,51.3067],[-2.354478,51.30691],[-2.357607,51.304968],[-2.359616,51.304436],[-2.362886,51.302939],[-2.369257,51.301013],[-2.374271,51.301108],[-2.377623,51.300576],[-2.379716,51.3006],[-2.381575,51.300085],[-2.383145,51.299054],[-2.385184,51.296965],[-2.384157,51.296317],[-2.384881,51.295592],[-2.387181,51.294643],[-2.389626,51.294611],[-2.391892,51.295371],[-2.392316,51.296421],[-2.393664,51.297543],[-2.397467,51.303052],[-2.399827,51.304889],[-2.400918,51.3048],[-2.404366,51.302021],[-2.40696,51.300897],[-2.410145,51.300863],[-2.411646,51.301305],[-2.412738,51.299802],[-2.414035,51.299564],[-2.415367,51.298476],[-2.416198,51.298737],[-2.419542,51.297241],[-2.42026,51.296621],[-2.417766,51.293666],[-2.417391,51.292134],[-2.421369,51.291058],[-2.42099,51.289012],[-2.422055,51.287501],[-2.427709,51.286719],[-2.429955,51.286776],[-2.430064,51.284643],[-2.4326,51.286041],[-2.434544,51.285452],[-2.435615,51.285698],[-2.439047,51.285186],[-2.439073,51.283839],[-2.442409,51.282755],[-2.442498,51.28204],[-2.446015,51.280836],[-2.444312,51.277411],[-2.44746,51.277123],[-2.44997,51.277423],[-2.452405,51.277114],[-2.451723,51.274251],[-2.453287,51.273845],[-2.455875,51.273733],[-2.461584,51.274194],[-2.472303,51.277053],[-2.473754,51.277967],[-2.478001,51.273097],[-2.482664,51.274148],[-2.485002,51.274204],[-2.487162,51.275135],[-2.487908,51.274123],[-2.489945,51.274797],[-2.490601,51.274424],[-2.493509,51.275471],[-2.492771,51.276122],[-2.494832,51.276647],[-2.495948,51.275903],[-2.499809,51.276787],[-2.506356,51.278991],[-2.500125,51.282743],[-2.49985,51.28402],[-2.500436,51.284605],[-2.496971,51.286302],[-2.496538,51.287449],[-2.496969,51.290204],[-2.497418,51.290883],[-2.499553,51.29058],[-2.500491,51.290985],[-2.5033,51.290041],[-2.506224,51.290014],[-2.506379,51.291134],[-2.509377,51.292018],[-2.512556,51.292255],[-2.513619,51.292737],[-2.521635,51.293524],[-2.523213,51.293574],[-2.524902,51.292937],[-2.528004,51.293161],[-2.531725,51.294016],[-2.534565,51.295487],[-2.539236,51.296244],[-2.540463,51.297872],[-2.541507,51.298472],[-2.550013,51.300516],[-2.551131,51.299531],[-2.5514,51.298275],[-2.554165,51.298686],[-2.552803,51.301317],[-2.557824,51.302661],[-2.559399,51.302037],[-2.562669,51.298809],[-2.567223,51.297645],[-2.571251,51.295136],[-2.574499,51.294885],[-2.580185,51.29314],[-2.585897,51.293334],[-2.587755,51.294213],[-2.588463,51.29519],[-2.591634,51.296534],[-2.595466,51.296186],[-2.594592,51.295121],[-2.59532,51.293095],[-2.594878,51.292359],[-2.596542,51.290767],[-2.598615,51.290605],[-2.600338,51.288987],[-2.603927,51.287761],[-2.606958,51.287273],[-2.608787,51.285827],[-2.612995,51.284148],[-2.618453,51.286225],[-2.621043,51.28434],[-2.624699,51.285385],[-2.624985,51.28248],[-2.629981,51.283557],[-2.630202,51.284257],[-2.631977,51.284595],[-2.633448,51.285859],[-2.635045,51.286262],[-2.635725,51.287298],[-2.638295,51.288278],[-2.637235,51.289088],[-2.638581,51.289986],[-2.639701,51.29131],[-2.64035,51.293307],[-2.638699,51.294823],[-2.641044,51.2955],[-2.643892,51.297094],[-2.644669,51.297031],[-2.646823,51.298382],[-2.648978,51.2989],[-2.650733,51.299697],[-2.652222,51.299787],[-2.653663,51.300646],[-2.659991,51.302592],[-2.662885,51.302948],[-2.666795,51.302445],[-2.665814,51.303364],[-2.664889,51.305348],[-2.662485,51.30656],[-2.663416,51.30718],[-2.666981,51.30787],[-2.666607,51.309183],[-2.670459,51.311235],[-2.673009,51.311795],[-2.674494,51.31046],[-2.676423,51.310989],[-2.676459,51.311572],[-2.678914,51.312796],[-2.683075,51.31442],[-2.685887,51.315134],[-2.686397,51.316099],[-2.691074,51.317539],[-2.694879,51.318094]]]},"properties":{"LAD22CD":"E07000187","LAD22NM":"Mendip","BNG_E":362238,"BNG_N":144090,"LONG":-2.54178,"LAT":51.19476,"GlobalID":"6fb0145f-a560-46f1-8961-c8dea18b2d9a"},"id":191}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.934097,51.080557],[-2.93491,51.083455],[-2.937998,51.083887],[-2.939167,51.084389],[-2.940068,51.085811],[-2.943249,51.088007],[-2.945186,51.09125],[-2.949073,51.090745],[-2.9508,51.091456],[-2.953845,51.092156],[-2.958549,51.094693],[-2.96023,51.096394],[-2.965456,51.099599],[-2.966204,51.100478],[-2.966183,51.102991],[-2.96852,51.103745],[-2.970452,51.104777],[-2.971009,51.106395],[-2.972978,51.107968],[-2.973899,51.111371],[-2.977906,51.113667],[-2.979236,51.114845],[-2.981942,51.115422],[-2.984489,51.116568],[-2.987901,51.115867],[-2.99311,51.116661],[-2.995805,51.118887],[-2.996107,51.120341],[-2.998507,51.125519],[-3.001387,51.128926],[-3.001582,51.131562],[-3.003661,51.133542],[-3.002324,51.135408],[-3.002583,51.137371],[-2.997918,51.140102],[-2.996157,51.14088],[-2.993236,51.141621],[-2.992602,51.143934],[-2.993693,51.144869],[-2.995292,51.144862],[-2.997245,51.144374],[-2.999182,51.144972],[-2.999236,51.145918],[-2.99749,51.147694],[-2.997141,51.148593],[-2.999301,51.15081],[-2.998859,51.152504],[-2.997409,51.153162],[-2.991618,51.153933],[-2.992359,51.156567],[-2.98966,51.161196],[-2.991129,51.162092],[-2.995836,51.160767],[-3.002497,51.160968],[-3.004553,51.161972],[-3.005605,51.163598],[-3.003778,51.165549],[-3.003498,51.16682],[-3.005466,51.168743],[-3.007393,51.171406],[-3.009563,51.173122],[-3.011608,51.173887],[-3.020425,51.175957],[-3.023997,51.175798],[-3.027722,51.175068],[-3.029213,51.173769],[-3.028327,51.169097],[-3.029045,51.166108],[-3.030248,51.164836],[-3.033219,51.163082],[-3.036407,51.162464],[-3.040384,51.162906],[-3.043499,51.16407],[-3.055862,51.173461],[-3.05743,51.174843],[-3.059818,51.178944],[-3.056874,51.185772],[-3.055317,51.187771],[-3.053126,51.189493],[-3.04837,51.192016],[-3.045173,51.194595],[-3.041912,51.194916],[-3.039508,51.194191],[-3.035559,51.19363],[-3.033214,51.194162],[-3.030422,51.196744],[-3.029804,51.197954],[-3.029868,51.199333],[-3.033845,51.199076],[-3.037138,51.19969],[-3.041799,51.200818],[-3.043885,51.20096],[-3.046551,51.200021],[-3.051203,51.197476],[-3.055974,51.194355],[-3.057623,51.190969],[-3.055402,51.19101],[-3.054738,51.19019],[-3.055699,51.189661],[-3.058284,51.189611],[-3.061182,51.191232],[-3.059498,51.19238],[-3.057782,51.191008],[-3.057198,51.193424],[-3.058124,51.193723],[-3.060486,51.193288],[-3.061523,51.191512],[-3.063207,51.191078],[-3.066187,51.192374],[-3.063303,51.194139],[-3.060579,51.193373],[-3.057696,51.194226],[-3.054774,51.19568],[-3.050302,51.198625],[-3.046261,51.200724],[-3.044381,51.201521],[-3.042506,51.201581],[-3.035473,51.200335],[-3.028538,51.199684],[-3.027909,51.200369],[-3.026887,51.204879],[-3.027449,51.205599],[-3.026694,51.206492],[-3.025713,51.208913],[-3.025921,51.209749],[-3.024618,51.212889],[-3.020605,51.215757],[-3.020316,51.218147],[-3.022948,51.21861],[-3.025819,51.218575],[-3.028533,51.217943],[-3.029631,51.218462],[-3.034836,51.21613],[-3.047238,51.209228],[-3.054777,51.205936],[-3.052574,51.203173],[-3.056086,51.201641],[-3.056911,51.201982],[-3.058808,51.200308],[-3.059197,51.199411],[-3.067474,51.19446],[-3.070136,51.195391],[-3.079135,51.196624],[-3.081361,51.197509],[-3.083597,51.194935],[-3.085041,51.194696],[-3.085619,51.193282],[-3.088064,51.191813],[-3.088384,51.191244],[-3.092946,51.1904],[-3.096481,51.190115],[-3.098183,51.188453],[-3.096829,51.184519],[-3.099096,51.184328],[-3.103554,51.1833],[-3.106239,51.183269],[-3.107266,51.182961],[-3.107291,51.180956],[-3.10636,51.179372],[-3.106063,51.177598],[-3.10886,51.177965],[-3.112694,51.177859],[-3.112382,51.176713],[-3.115562,51.175853],[-3.116527,51.174495],[-3.115474,51.17347],[-3.114448,51.173462],[-3.114372,51.172298],[-3.112797,51.170528],[-3.11364,51.169948],[-3.119035,51.169701],[-3.120322,51.169324],[-3.123232,51.169524],[-3.124819,51.168937],[-3.128015,51.168944],[-3.131343,51.168127],[-3.136502,51.167675],[-3.134288,51.166487],[-3.133315,51.163945],[-3.135282,51.162987],[-3.138141,51.162451],[-3.140684,51.162364],[-3.142585,51.162995],[-3.144019,51.163043],[-3.152189,51.161859],[-3.156665,51.162705],[-3.158985,51.15953],[-3.161591,51.15921],[-3.161768,51.156581],[-3.163329,51.154101],[-3.165994,51.152744],[-3.169458,51.152442],[-3.172902,51.152572],[-3.175753,51.148867],[-3.17743,51.148849],[-3.177367,51.147451],[-3.178899,51.14663],[-3.180628,51.146484],[-3.185133,51.146927],[-3.186838,51.146771],[-3.190006,51.145544],[-3.192518,51.143631],[-3.19381,51.143089],[-3.198308,51.142677],[-3.201735,51.142723],[-3.204544,51.142146],[-3.205785,51.141372],[-3.212601,51.135808],[-3.213871,51.134242],[-3.215549,51.133132],[-3.216469,51.130377],[-3.215657,51.129399],[-3.208454,51.125984],[-3.205394,51.123227],[-3.199438,51.119693],[-3.194334,51.114979],[-3.193712,51.114001],[-3.193875,51.112514],[-3.190518,51.111788],[-3.186327,51.111706],[-3.1832,51.110258],[-3.18189,51.108708],[-3.179531,51.108862],[-3.175052,51.107514],[-3.168631,51.108391],[-3.168049,51.106132],[-3.168426,51.104307],[-3.165965,51.104081],[-3.162738,51.10489],[-3.161477,51.104951],[-3.159708,51.106474],[-3.158367,51.106544],[-3.158207,51.107566],[-3.156451,51.107722],[-3.155046,51.108654],[-3.153614,51.108629],[-3.151521,51.106109],[-3.147792,51.106808],[-3.146785,51.107583],[-3.142166,51.109279],[-3.141603,51.107304],[-3.14305,51.105795],[-3.142306,51.102649],[-3.140026,51.100565],[-3.140859,51.099515],[-3.142222,51.098813],[-3.147658,51.09794],[-3.150936,51.097858],[-3.153801,51.096508],[-3.15408,51.094935],[-3.151288,51.093291],[-3.15551,51.091484],[-3.159342,51.091403],[-3.159951,51.09086],[-3.157107,51.08976],[-3.149928,51.0887],[-3.150697,51.08818],[-3.153048,51.084853],[-3.149703,51.083046],[-3.147501,51.083183],[-3.147591,51.082151],[-3.145881,51.079084],[-3.143852,51.079271],[-3.143464,51.077308],[-3.141922,51.075846],[-3.138774,51.073742],[-3.138865,51.072794],[-3.137746,51.072118],[-3.134873,51.072348],[-3.131891,51.071691],[-3.129125,51.071865],[-3.121339,51.070961],[-3.115485,51.072128],[-3.114582,51.072898],[-3.104565,51.073284],[-3.102315,51.073046],[-3.100392,51.072423],[-3.099535,51.068557],[-3.100948,51.067517],[-3.095822,51.067656],[-3.094591,51.064955],[-3.089565,51.066067],[-3.090712,51.069168],[-3.090358,51.070691],[-3.08631,51.070139],[-3.084386,51.071508],[-3.077989,51.07],[-3.071173,51.067944],[-3.070678,51.068025],[-3.065222,51.066088],[-3.062353,51.065405],[-3.056874,51.065088],[-3.054387,51.065282],[-3.052723,51.064991],[-3.051423,51.066259],[-3.046452,51.06556],[-3.045401,51.065195],[-3.043439,51.063328],[-3.043161,51.062383],[-3.04052,51.061247],[-3.03555,51.060969],[-3.035873,51.059875],[-3.032702,51.06],[-3.029773,51.059383],[-3.028052,51.059788],[-3.026194,51.059388],[-3.02468,51.059843],[-3.024452,51.057014],[-3.03221,51.057086],[-3.032436,51.055546],[-3.029877,51.055351],[-3.029458,51.05085],[-3.031979,51.050858],[-3.031212,51.047914],[-3.027229,51.048382],[-3.02242,51.053638],[-3.020281,51.053553],[-3.019699,51.054134],[-3.016239,51.05479],[-3.00929,51.052494],[-3.005601,51.053219],[-3.002522,51.052585],[-3.002285,51.053014],[-3.000095,51.053445],[-2.999309,51.053948],[-2.99745,51.053784],[-2.995017,51.050888],[-2.994088,51.048775],[-2.994111,51.046509],[-2.989834,51.046828],[-2.987154,51.045919],[-2.987465,51.044169],[-2.985484,51.044136],[-2.982153,51.040821],[-2.980706,51.040869],[-2.979427,51.042079],[-2.974835,51.042737],[-2.973197,51.042596],[-2.97259,51.044034],[-2.969257,51.045649],[-2.968502,51.046594],[-2.967298,51.047006],[-2.963378,51.046418],[-2.962799,51.048136],[-2.959695,51.047374],[-2.957783,51.047431],[-2.955281,51.051455],[-2.951241,51.052321],[-2.950863,51.054295],[-2.948365,51.055117],[-2.947084,51.056983],[-2.943765,51.058032],[-2.942752,51.057652],[-2.935827,51.05717],[-2.933368,51.057248],[-2.930191,51.059888],[-2.926945,51.061591],[-2.929841,51.063145],[-2.931982,51.061916],[-2.941462,51.067313],[-2.946275,51.068584],[-2.947373,51.071145],[-2.946692,51.072354],[-2.94806,51.072761],[-2.948555,51.073916],[-2.946936,51.074862],[-2.946486,51.075895],[-2.938862,51.075652],[-2.935845,51.076532],[-2.937344,51.078641],[-2.937451,51.080097],[-2.934097,51.080557]]],[[[-3.0142,51.224555],[-3.013195,51.225599],[-3.015658,51.228507],[-3.015877,51.230066],[-3.015009,51.232309],[-3.015727,51.232844],[-3.017291,51.226737],[-3.017024,51.223966],[-3.015749,51.223135],[-3.0142,51.224555]]],[[[-2.993146,51.30102],[-2.994924,51.30271],[-2.995201,51.307558],[-2.99431,51.307336],[-2.992838,51.308139],[-2.98936,51.308863],[-2.987233,51.310675],[-2.986358,51.312464],[-2.987248,51.314654],[-2.99191,51.317376],[-2.993088,51.318849],[-2.993323,51.320161],[-2.995509,51.32156],[-2.997873,51.321771],[-2.998977,51.322223],[-3.001346,51.322161],[-3.002045,51.323642],[-3.001518,51.32425],[-3.002958,51.325142],[-3.003748,51.324963],[-3.008489,51.325627],[-3.011139,51.325216],[-3.015647,51.326566],[-3.01886,51.32697],[-3.020293,51.326443],[-3.02216,51.326396],[-3.026383,51.32784],[-3.03223,51.328082],[-3.034483,51.32868],[-3.03547,51.328536],[-3.034886,51.327116],[-3.033651,51.326242],[-3.028141,51.324207],[-3.024509,51.323591],[-3.019557,51.323558],[-3.017078,51.323149],[-3.014084,51.323461],[-3.013041,51.322636],[-3.011729,51.319909],[-3.011433,51.31744],[-3.011914,51.311254],[-3.013877,51.297765],[-3.016219,51.288069],[-3.020624,51.273072],[-3.021571,51.26598],[-3.01922,51.260492],[-3.016236,51.25729],[-3.011093,51.251058],[-3.005543,51.247431],[-3.003038,51.244921],[-3.000508,51.241619],[-2.999476,51.236908],[-3.000375,51.234502],[-3.000348,51.232869],[-3.001889,51.230061],[-3.002649,51.227815],[-3.001039,51.22682],[-2.998296,51.226372],[-2.997389,51.225479],[-2.997384,51.224547],[-2.998778,51.223688],[-2.9979,51.223021],[-2.995796,51.223618],[-2.994119,51.223503],[-2.991865,51.222305],[-2.989334,51.221984],[-2.987513,51.221078],[-2.988092,51.220424],[-2.989956,51.221438],[-2.992544,51.221677],[-2.994273,51.222674],[-2.998194,51.2221],[-3.000289,51.222966],[-3.000055,51.224402],[-2.999327,51.2255],[-3.002142,51.226028],[-3.003517,51.224021],[-3.002633,51.223263],[-3.00256,51.222334],[-3.0039,51.221416],[-3.006179,51.221325],[-3.010466,51.217567],[-3.012576,51.213997],[-3.016074,51.210348],[-3.016068,51.208893],[-3.017099,51.206406],[-3.018285,51.207116],[-3.019897,51.20366],[-3.020455,51.201745],[-3.020296,51.199812],[-3.021116,51.197876],[-3.025919,51.193491],[-3.030425,51.190648],[-3.035214,51.188784],[-3.048042,51.187902],[-3.051017,51.187147],[-3.05351,51.185097],[-3.055536,51.181521],[-3.055923,51.178526],[-3.054891,51.17621],[-3.049375,51.172658],[-3.047437,51.170676],[-3.045179,51.168981],[-3.042948,51.16598],[-3.041261,51.16487],[-3.039575,51.164227],[-3.037531,51.16387],[-3.035601,51.163892],[-3.033871,51.164402],[-3.03133,51.166479],[-3.030892,51.167476],[-3.031649,51.172815],[-3.031095,51.174723],[-3.028872,51.176169],[-3.023567,51.177193],[-3.018718,51.177143],[-3.008936,51.174285],[-3.005868,51.17194],[-3.002079,51.167392],[-3.001288,51.165566],[-3.001538,51.161797],[-2.996342,51.161731],[-2.992935,51.162786],[-2.98989,51.162695],[-2.988274,51.161378],[-2.987805,51.159666],[-2.988652,51.15845],[-2.990951,51.157198],[-2.990233,51.154506],[-2.990914,51.15343],[-2.992787,51.152825],[-2.996663,51.152858],[-2.998081,51.152329],[-2.998574,51.150983],[-2.996871,51.149505],[-2.996834,51.147566],[-2.998557,51.145891],[-2.997722,51.144862],[-2.994014,51.145238],[-2.992601,51.14477],[-2.992069,51.143962],[-2.992628,51.141679],[-2.993553,51.141097],[-2.996626,51.140397],[-3.002082,51.137363],[-3.00192,51.135397],[-3.003203,51.133566],[-3.001265,51.131645],[-3.001234,51.12935],[-2.998284,51.125732],[-2.995055,51.118326],[-2.992493,51.116781],[-2.988292,51.116087],[-2.984404,51.116708],[-2.981874,51.11555],[-2.979459,51.115171],[-2.977819,51.113827],[-2.97405,51.111787],[-2.973454,51.111054],[-2.972663,51.107819],[-2.970792,51.106449],[-2.97022,51.104815],[-2.968396,51.103859],[-2.966121,51.103214],[-2.965537,51.0999],[-2.960046,51.096519],[-2.957921,51.094528],[-2.954331,51.092585],[-2.950633,51.091615],[-2.949402,51.090996],[-2.944946,51.091358],[-2.942783,51.087818],[-2.940008,51.085986],[-2.939165,51.084675],[-2.937615,51.083995],[-2.934903,51.083663],[-2.934601,51.083303],[-2.925265,51.08513],[-2.923259,51.082879],[-2.922181,51.082913],[-2.921584,51.081805],[-2.912195,51.08516],[-2.904392,51.075126],[-2.901956,51.075469],[-2.901314,51.074272],[-2.900107,51.074189],[-2.897872,51.073088],[-2.896809,51.073012],[-2.890481,51.07054],[-2.888194,51.069099],[-2.887488,51.07018],[-2.885735,51.071196],[-2.883112,51.073475],[-2.882085,51.075499],[-2.879534,51.078151],[-2.877601,51.079125],[-2.877435,51.081281],[-2.86469,51.078795],[-2.85926,51.077972],[-2.857295,51.077947],[-2.849945,51.103175],[-2.845168,51.102003],[-2.819874,51.107933],[-2.821378,51.111874],[-2.822838,51.114781],[-2.825123,51.117938],[-2.824313,51.120366],[-2.819189,51.119039],[-2.817482,51.11899],[-2.810077,51.116091],[-2.809698,51.11623],[-2.803147,51.114191],[-2.798375,51.113507],[-2.793768,51.11379],[-2.790307,51.113668],[-2.786446,51.112165],[-2.787851,51.114089],[-2.789259,51.114782],[-2.789043,51.116708],[-2.789757,51.11813],[-2.788848,51.121368],[-2.788988,51.124611],[-2.791122,51.123801],[-2.792151,51.123841],[-2.793386,51.125194],[-2.792831,51.12584],[-2.793519,51.12686],[-2.794966,51.127835],[-2.796786,51.128207],[-2.793169,51.12979],[-2.795114,51.130439],[-2.796594,51.131501],[-2.793943,51.132683],[-2.793621,51.133376],[-2.788658,51.135174],[-2.788876,51.136276],[-2.787099,51.136486],[-2.786638,51.139459],[-2.789346,51.13892],[-2.789876,51.13964],[-2.7861,51.13995],[-2.785554,51.14248],[-2.78874,51.142939],[-2.786014,51.15295],[-2.796869,51.156529],[-2.842688,51.172941],[-2.838444,51.18954],[-2.837218,51.191375],[-2.82534,51.186802],[-2.819183,51.184818],[-2.816766,51.184367],[-2.807044,51.179753],[-2.805356,51.181971],[-2.793837,51.204342],[-2.785658,51.204653],[-2.781156,51.205258],[-2.781797,51.206172],[-2.772478,51.207007],[-2.768661,51.207062],[-2.765163,51.206699],[-2.761123,51.205559],[-2.757375,51.20612],[-2.756791,51.206643],[-2.754826,51.206756],[-2.752942,51.207254],[-2.750813,51.206567],[-2.745944,51.206272],[-2.745448,51.207536],[-2.746649,51.208755],[-2.745973,51.209636],[-2.748227,51.212095],[-2.750047,51.211801],[-2.751432,51.21247],[-2.750783,51.214739],[-2.752597,51.216603],[-2.751702,51.219157],[-2.749869,51.220548],[-2.751462,51.221364],[-2.750863,51.222811],[-2.751538,51.224192],[-2.753118,51.223695],[-2.754904,51.224668],[-2.756217,51.224461],[-2.758862,51.224737],[-2.760103,51.225808],[-2.759954,51.228767],[-2.760979,51.229284],[-2.765035,51.229089],[-2.766634,51.229336],[-2.769957,51.228125],[-2.772242,51.228],[-2.77352,51.228785],[-2.777129,51.229404],[-2.779093,51.229439],[-2.780033,51.230994],[-2.778878,51.232963],[-2.779611,51.235858],[-2.77652,51.237491],[-2.777968,51.239287],[-2.778021,51.246941],[-2.771434,51.248527],[-2.771197,51.248862],[-2.766035,51.250965],[-2.766454,51.2523],[-2.767357,51.253055],[-2.759893,51.257779],[-2.757969,51.256928],[-2.755154,51.258301],[-2.751222,51.259573],[-2.749332,51.261906],[-2.750006,51.262234],[-2.744824,51.263949],[-2.73869,51.266448],[-2.733783,51.263917],[-2.7272,51.261217],[-2.725969,51.263256],[-2.721991,51.266214],[-2.716138,51.267668],[-2.71147,51.269252],[-2.709893,51.270108],[-2.713538,51.272779],[-2.715152,51.273654],[-2.720591,51.275588],[-2.719964,51.276117],[-2.720655,51.278066],[-2.71639,51.278612],[-2.713427,51.280314],[-2.71576,51.282085],[-2.717893,51.281307],[-2.719007,51.280465],[-2.722682,51.280046],[-2.724739,51.280454],[-2.729598,51.280615],[-2.732051,51.281529],[-2.733075,51.282347],[-2.734679,51.287269],[-2.734286,51.288532],[-2.737102,51.290109],[-2.735545,51.291045],[-2.734655,51.29257],[-2.735577,51.294981],[-2.735026,51.297053],[-2.735343,51.298562],[-2.73372,51.299706],[-2.733303,51.301699],[-2.732281,51.303319],[-2.732484,51.303895],[-2.736303,51.306517],[-2.752618,51.307581],[-2.765631,51.30903],[-2.763555,51.313386],[-2.763882,51.31505],[-2.764863,51.316819],[-2.763354,51.319899],[-2.763559,51.321618],[-2.764644,51.322577],[-2.76516,51.322445],[-2.768321,51.323698],[-2.773316,51.323414],[-2.778668,51.323565],[-2.785418,51.324195],[-2.786525,51.324811],[-2.789328,51.324664],[-2.791215,51.325144],[-2.795237,51.325318],[-2.797213,51.325849],[-2.798467,51.326968],[-2.799786,51.326154],[-2.801965,51.326542],[-2.80647,51.326148],[-2.807997,51.326228],[-2.812312,51.327205],[-2.818673,51.326365],[-2.818912,51.324075],[-2.818473,51.322756],[-2.817931,51.319059],[-2.814904,51.318804],[-2.81272,51.318308],[-2.811882,51.317284],[-2.810515,51.317161],[-2.810149,51.315594],[-2.807809,51.314882],[-2.807673,51.312839],[-2.807107,51.311965],[-2.810316,51.311328],[-2.812068,51.310711],[-2.812192,51.308934],[-2.810773,51.30729],[-2.809964,51.305572],[-2.810237,51.301424],[-2.820652,51.300841],[-2.821754,51.301105],[-2.830295,51.30071],[-2.853161,51.299476],[-2.856549,51.300126],[-2.864379,51.300134],[-2.867946,51.302206],[-2.877146,51.300063],[-2.87919,51.303063],[-2.880306,51.303901],[-2.881434,51.303532],[-2.882232,51.304659],[-2.88492,51.306665],[-2.886797,51.305052],[-2.888124,51.304902],[-2.893526,51.29505],[-2.897104,51.290615],[-2.91317,51.293648],[-2.914652,51.294238],[-2.917957,51.294638],[-2.919211,51.295733],[-2.924166,51.298431],[-2.925294,51.298552],[-2.927921,51.297985],[-2.931649,51.299093],[-2.933765,51.301939],[-2.936429,51.303014],[-2.939023,51.302591],[-2.950708,51.302725],[-2.952123,51.303233],[-2.953714,51.304497],[-2.960983,51.304846],[-2.962602,51.304611],[-2.963032,51.302663],[-2.962296,51.299938],[-2.964361,51.29785],[-2.970122,51.296089],[-2.973715,51.295705],[-2.977212,51.297384],[-2.981305,51.29758],[-2.983351,51.29829],[-2.985683,51.298212],[-2.988074,51.29852],[-2.990874,51.299433],[-2.993146,51.30102]]]]},"properties":{"LAD22CD":"E07000188","LAD22NM":"Sedgemoor","BNG_E":338429,"BNG_N":143998,"LONG":-2.88246,"LAT":51.19186,"GlobalID":"f1b58c14-3a50-475e-8c7f-60487f830680"},"id":192}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.346305,51.130511],[-2.348196,51.131886],[-2.351611,51.132939],[-2.354668,51.133055],[-2.358379,51.13482],[-2.359869,51.136354],[-2.364097,51.137823],[-2.366351,51.139792],[-2.368288,51.140622],[-2.36944,51.142688],[-2.370985,51.143348],[-2.375026,51.143767],[-2.376559,51.142717],[-2.381329,51.143543],[-2.384632,51.142973],[-2.38722,51.1437],[-2.390455,51.144111],[-2.393384,51.141861],[-2.395329,51.142602],[-2.40129,51.140334],[-2.402959,51.141575],[-2.405264,51.142452],[-2.403582,51.145229],[-2.40548,51.146864],[-2.408032,51.147712],[-2.411164,51.146273],[-2.411787,51.143847],[-2.413388,51.144381],[-2.414475,51.142769],[-2.416614,51.141861],[-2.41781,51.140854],[-2.424763,51.1418],[-2.42561,51.142817],[-2.428155,51.143288],[-2.431071,51.139931],[-2.434496,51.137288],[-2.434361,51.135231],[-2.433726,51.134455],[-2.434816,51.133202],[-2.436471,51.132927],[-2.438731,51.133261],[-2.440672,51.132496],[-2.443554,51.132232],[-2.445019,51.13098],[-2.446928,51.13018],[-2.448187,51.128958],[-2.448834,51.127716],[-2.448248,51.126839],[-2.449004,51.125986],[-2.451597,51.125155],[-2.453539,51.122997],[-2.455991,51.122158],[-2.456981,51.123143],[-2.460263,51.123554],[-2.462743,51.12349],[-2.466377,51.124214],[-2.464823,51.121823],[-2.468561,51.121837],[-2.468562,51.120848],[-2.470011,51.120173],[-2.470786,51.119108],[-2.471981,51.119474],[-2.472947,51.11864],[-2.478473,51.118434],[-2.482075,51.119288],[-2.482699,51.118669],[-2.484524,51.118171],[-2.485505,51.116841],[-2.487381,51.116124],[-2.489768,51.115756],[-2.491942,51.114378],[-2.501746,51.112726],[-2.500323,51.110647],[-2.498589,51.109525],[-2.500387,51.107252],[-2.502535,51.107345],[-2.504452,51.106757],[-2.505127,51.106046],[-2.510298,51.104711],[-2.511896,51.104802],[-2.51304,51.104285],[-2.51463,51.104671],[-2.516615,51.104286],[-2.51739,51.103183],[-2.520154,51.103386],[-2.520566,51.101603],[-2.521777,51.10117],[-2.525655,51.101773],[-2.526525,51.101189],[-2.529226,51.10057],[-2.531182,51.100656],[-2.534183,51.099934],[-2.535066,51.099079],[-2.539473,51.098302],[-2.542698,51.098326],[-2.543386,51.097347],[-2.54627,51.096689],[-2.546922,51.097608],[-2.549935,51.096687],[-2.550439,51.095718],[-2.552876,51.095286],[-2.55352,51.094082],[-2.555308,51.093911],[-2.555748,51.092373],[-2.556887,51.092681],[-2.559684,51.091885],[-2.56189,51.091885],[-2.562947,51.093788],[-2.565267,51.093202],[-2.5664,51.09173],[-2.567931,51.090773],[-2.569915,51.091103],[-2.573004,51.090504],[-2.579241,51.08878],[-2.580681,51.090019],[-2.582294,51.090405],[-2.585263,51.090676],[-2.58773,51.090216],[-2.589384,51.09071],[-2.59136,51.092819],[-2.59291,51.093235],[-2.595313,51.096423],[-2.598099,51.098407],[-2.602441,51.093995],[-2.601125,51.091679],[-2.60116,51.08898],[-2.598644,51.088683],[-2.596361,51.088846],[-2.593338,51.090039],[-2.591705,51.090164],[-2.5886,51.088306],[-2.58774,51.085709],[-2.5864,51.085712],[-2.586048,51.084462],[-2.587493,51.083118],[-2.588298,51.083731],[-2.590112,51.083161],[-2.591032,51.083543],[-2.595429,51.083747],[-2.597669,51.084497],[-2.600423,51.084862],[-2.601742,51.083426],[-2.60149,51.081885],[-2.602003,51.081597],[-2.599222,51.075279],[-2.598016,51.07156],[-2.598012,51.070281],[-2.599096,51.069844],[-2.60384,51.07049],[-2.604433,51.070234],[-2.606605,51.071116],[-2.611507,51.070022],[-2.613239,51.06932],[-2.61326,51.068372],[-2.614336,51.067775],[-2.613317,51.065923],[-2.613347,51.065136],[-2.617632,51.065071],[-2.627325,51.064288],[-2.632705,51.06331],[-2.634902,51.064795],[-2.636762,51.068153],[-2.637591,51.071446],[-2.639545,51.074489],[-2.639994,51.076121],[-2.639849,51.079031],[-2.64052,51.080427],[-2.641882,51.08101],[-2.642527,51.082641],[-2.639996,51.083588],[-2.638974,51.085146],[-2.637886,51.085276],[-2.637003,51.084175],[-2.634399,51.088235],[-2.635444,51.088946],[-2.636972,51.089075],[-2.639223,51.087934],[-2.640804,51.088857],[-2.641636,51.090707],[-2.643975,51.09194],[-2.644587,51.092923],[-2.645604,51.093275],[-2.646696,51.095601],[-2.646097,51.09874],[-2.647006,51.100024],[-2.64758,51.101899],[-2.648391,51.102101],[-2.651812,51.101642],[-2.658438,51.102069],[-2.661335,51.100894],[-2.663959,51.099267],[-2.669502,51.094695],[-2.670484,51.090523],[-2.672701,51.086844],[-2.67424,51.085157],[-2.674515,51.083425],[-2.677788,51.082663],[-2.68024,51.08276],[-2.682703,51.08156],[-2.685974,51.080859],[-2.685743,51.080115],[-2.688225,51.079325],[-2.689456,51.080019],[-2.693762,51.078793],[-2.694443,51.077675],[-2.697343,51.07623],[-2.699842,51.078144],[-2.702348,51.078483],[-2.704878,51.079438],[-2.704892,51.080002],[-2.707244,51.080621],[-2.708154,51.080208],[-2.708745,51.078405],[-2.710628,51.077598],[-2.709456,51.076311],[-2.708637,51.077071],[-2.705997,51.076244],[-2.706466,51.074454],[-2.705092,51.072866],[-2.705853,51.072034],[-2.710352,51.074575],[-2.713795,51.075963],[-2.715469,51.07772],[-2.714313,51.078446],[-2.715626,51.079746],[-2.713946,51.082642],[-2.715637,51.083023],[-2.715431,51.088184],[-2.708608,51.08966],[-2.707918,51.090174],[-2.707888,51.091558],[-2.710085,51.093381],[-2.712818,51.096527],[-2.717757,51.099357],[-2.720217,51.101875],[-2.728467,51.104181],[-2.734447,51.106747],[-2.736807,51.107158],[-2.738585,51.106438],[-2.740348,51.099912],[-2.743297,51.09902],[-2.742784,51.096858],[-2.746701,51.095343],[-2.77201,51.097116],[-2.790926,51.098496],[-2.794421,51.107796],[-2.819874,51.107933],[-2.845168,51.102003],[-2.849945,51.103175],[-2.857295,51.077947],[-2.85926,51.077972],[-2.86469,51.078795],[-2.877435,51.081281],[-2.877601,51.079125],[-2.879534,51.078151],[-2.882085,51.075499],[-2.883112,51.073475],[-2.885735,51.071196],[-2.887488,51.07018],[-2.888194,51.069099],[-2.890773,51.066341],[-2.890893,51.065236],[-2.892461,51.06257],[-2.892543,51.061242],[-2.893163,51.058951],[-2.89261,51.057159],[-2.892619,51.057056],[-2.892834,51.054534],[-2.892802,51.054475],[-2.892286,51.054007],[-2.891361,51.053643],[-2.890414,51.053296],[-2.88942,51.051919],[-2.887719,51.051039],[-2.887432,51.049574],[-2.883796,51.048965],[-2.883826,51.048603],[-2.884055,51.047282],[-2.883844,51.045787],[-2.886737,51.045702],[-2.925844,51.021745],[-2.946016,51.013529],[-2.947216,51.01239],[-2.949736,51.011278],[-2.949755,51.009767],[-2.950741,51.00959],[-2.94842,51.006155],[-2.946458,51.004216],[-2.94431,51.003275],[-2.94924,51.003324],[-2.952498,51.00211],[-2.954519,51.002491],[-2.957317,51.001988],[-2.956706,51.000483],[-2.96004,50.999747],[-2.961019,51.000596],[-2.964796,50.999992],[-2.96816,51.000028],[-2.970867,50.999454],[-2.971932,50.999604],[-2.97812,50.998064],[-2.979022,50.997159],[-2.979612,50.995345],[-2.980697,50.994354],[-2.9795,50.993118],[-2.980594,50.992104],[-2.982675,50.991315],[-2.983921,50.99026],[-2.978046,50.984841],[-2.975742,50.977544],[-2.975731,50.974846],[-2.975106,50.97316],[-2.97716,50.971788],[-2.978847,50.97155],[-2.979392,50.972683],[-2.982787,50.972096],[-2.982019,50.968785],[-2.980937,50.968799],[-2.980174,50.9674],[-2.980461,50.964992],[-2.984599,50.964624],[-2.98474,50.963263],[-2.986744,50.962934],[-2.989528,50.961589],[-2.99139,50.961253],[-2.995762,50.959269],[-3.000489,50.95789],[-3.002727,50.95708],[-3.005269,50.958309],[-3.007709,50.957071],[-3.008887,50.955717],[-3.008746,50.953681],[-3.011795,50.950574],[-3.010698,50.947758],[-3.012072,50.946543],[-3.013678,50.946096],[-3.014946,50.944938],[-3.018043,50.944582],[-3.021086,50.944487],[-3.028777,50.941542],[-3.030137,50.9398],[-3.029318,50.939185],[-3.032163,50.937457],[-3.032821,50.936308],[-3.034969,50.936068],[-3.037077,50.935341],[-3.039125,50.935407],[-3.041627,50.934427],[-3.042616,50.934634],[-3.045573,50.933824],[-3.047166,50.932899],[-3.048266,50.933363],[-3.052411,50.932743],[-3.056037,50.932981],[-3.058586,50.932621],[-3.058907,50.933036],[-3.065046,50.934633],[-3.06823,50.936875],[-3.076611,50.938524],[-3.080356,50.939842],[-3.086218,50.939641],[-3.088378,50.938007],[-3.090559,50.9318],[-3.092389,50.929643],[-3.091754,50.928384],[-3.088875,50.925488],[-3.084808,50.923509],[-3.084572,50.921645],[-3.08382,50.921356],[-3.082065,50.919675],[-3.079109,50.918799],[-3.077993,50.917633],[-3.073173,50.914484],[-3.069283,50.913834],[-3.069088,50.913373],[-3.06609,50.913264],[-3.063877,50.913774],[-3.062362,50.913109],[-3.06007,50.912763],[-3.058457,50.912046],[-3.057623,50.911075],[-3.052803,50.909439],[-3.052399,50.908277],[-3.051326,50.906323],[-3.050389,50.905986],[-3.050522,50.90458],[-3.050144,50.903007],[-3.051466,50.901713],[-3.053253,50.898672],[-3.053044,50.897684],[-3.054748,50.896503],[-3.053866,50.895458],[-3.055086,50.894588],[-3.05568,50.891133],[-3.055392,50.890187],[-3.053739,50.888578],[-3.053345,50.886795],[-3.0523,50.886025],[-3.052229,50.884891],[-3.053295,50.88342],[-3.051768,50.882657],[-3.051908,50.880222],[-3.05251,50.879004],[-3.053843,50.878392],[-3.053593,50.877681],[-3.05464,50.875761],[-3.05375,50.873636],[-3.054062,50.873043],[-3.051579,50.872765],[-3.046761,50.871379],[-3.045326,50.869576],[-3.043733,50.868104],[-3.042026,50.868855],[-3.039287,50.8687],[-3.038442,50.868315],[-3.036985,50.86678],[-3.036652,50.865182],[-3.034595,50.864],[-3.034727,50.862442],[-3.032632,50.861639],[-3.033309,50.861163],[-3.034592,50.859046],[-3.036366,50.858245],[-3.035734,50.85625],[-3.037089,50.854395],[-3.036084,50.852853],[-3.036806,50.851065],[-3.034785,50.850946],[-3.031819,50.851735],[-3.021105,50.855506],[-3.018491,50.855788],[-3.0141,50.855134],[-3.012931,50.855722],[-3.012599,50.856901],[-3.01145,50.857208],[-3.006238,50.853854],[-3.00364,50.853389],[-3.001644,50.851673],[-3.000487,50.851686],[-2.998552,50.850965],[-2.996264,50.854672],[-2.994444,50.855146],[-2.993471,50.854916],[-2.99056,50.855685],[-2.98759,50.855933],[-2.984364,50.854963],[-2.97984,50.854811],[-2.976959,50.855559],[-2.973588,50.855661],[-2.973849,50.85386],[-2.974636,50.852343],[-2.972054,50.851893],[-2.971155,50.851452],[-2.968056,50.851304],[-2.970103,50.849612],[-2.971003,50.847719],[-2.972572,50.84603],[-2.972424,50.844347],[-2.971185,50.842893],[-2.969405,50.841734],[-2.968538,50.840511],[-2.969828,50.834203],[-2.966327,50.833639],[-2.965579,50.831792],[-2.96169,50.829801],[-2.962929,50.827731],[-2.959048,50.826081],[-2.957556,50.824829],[-2.95767,50.824287],[-2.955935,50.823019],[-2.954321,50.821172],[-2.952974,50.822298],[-2.951483,50.82288],[-2.94944,50.822468],[-2.947369,50.823691],[-2.948039,50.825294],[-2.947323,50.826045],[-2.946131,50.826155],[-2.946032,50.828839],[-2.944099,50.82917],[-2.943874,50.830202],[-2.944644,50.832026],[-2.94426,50.833234],[-2.943019,50.834791],[-2.941683,50.835896],[-2.939716,50.836412],[-2.938026,50.835128],[-2.934382,50.836474],[-2.934554,50.837648],[-2.93249,50.838191],[-2.932832,50.838804],[-2.930269,50.839111],[-2.930071,50.840959],[-2.928622,50.839863],[-2.922349,50.840072],[-2.920747,50.840614],[-2.919243,50.841822],[-2.916493,50.841773],[-2.914257,50.842007],[-2.913261,50.842442],[-2.912127,50.844103],[-2.910223,50.844793],[-2.906472,50.843711],[-2.90308,50.843792],[-2.901035,50.846578],[-2.898515,50.8468],[-2.897344,50.847543],[-2.89501,50.846695],[-2.894345,50.847298],[-2.892459,50.847745],[-2.892471,50.848371],[-2.890314,50.849032],[-2.890093,50.849654],[-2.886244,50.85059],[-2.884887,50.849682],[-2.882604,50.849268],[-2.882866,50.848332],[-2.880857,50.847955],[-2.880583,50.846724],[-2.879055,50.846449],[-2.877876,50.847462],[-2.878893,50.848364],[-2.876259,50.849252],[-2.874323,50.848881],[-2.873361,50.849467],[-2.871169,50.848249],[-2.869603,50.848885],[-2.866729,50.84929],[-2.864369,50.848493],[-2.861927,50.848957],[-2.860326,50.849777],[-2.857999,50.850407],[-2.854974,50.849597],[-2.852577,50.849371],[-2.850691,50.850758],[-2.845196,50.851594],[-2.84316,50.848773],[-2.842846,50.847346],[-2.838848,50.84806],[-2.837158,50.848755],[-2.831445,50.849397],[-2.829641,50.848557],[-2.828582,50.848745],[-2.829377,50.8506],[-2.828958,50.8517],[-2.827083,50.850627],[-2.825777,50.850884],[-2.82442,50.852059],[-2.823142,50.852491],[-2.822166,50.853464],[-2.820385,50.853984],[-2.816104,50.85685],[-2.812375,50.861234],[-2.812937,50.862108],[-2.811508,50.863354],[-2.810152,50.862568],[-2.808069,50.863631],[-2.807664,50.862771],[-2.80559,50.861893],[-2.807052,50.858936],[-2.807842,50.858679],[-2.802904,50.857242],[-2.799053,50.855449],[-2.795075,50.854654],[-2.793721,50.853398],[-2.792528,50.852857],[-2.787538,50.853751],[-2.7862,50.854513],[-2.784081,50.856839],[-2.782286,50.859697],[-2.780062,50.860319],[-2.775413,50.860683],[-2.771699,50.860268],[-2.767397,50.860698],[-2.761688,50.8608],[-2.760969,50.861291],[-2.760957,50.863183],[-2.759917,50.865981],[-2.757499,50.866903],[-2.755162,50.866397],[-2.754335,50.864677],[-2.753365,50.864142],[-2.750937,50.863838],[-2.73824,50.864672],[-2.737066,50.864233],[-2.733146,50.864957],[-2.729912,50.864704],[-2.72499,50.865406],[-2.723092,50.866191],[-2.721386,50.864931],[-2.717997,50.864025],[-2.714556,50.863894],[-2.714421,50.865467],[-2.713809,50.866328],[-2.71439,50.871144],[-2.711761,50.870897],[-2.711211,50.87006],[-2.707145,50.869766],[-2.704204,50.872518],[-2.702903,50.873268],[-2.699578,50.872823],[-2.697135,50.873478],[-2.695685,50.874681],[-2.696504,50.875479],[-2.695727,50.875991],[-2.684629,50.877002],[-2.680565,50.877123],[-2.678966,50.87748],[-2.671793,50.880582],[-2.668862,50.882445],[-2.666318,50.883572],[-2.664459,50.885097],[-2.661413,50.886366],[-2.660612,50.887105],[-2.658427,50.886604],[-2.65042,50.883308],[-2.649577,50.884134],[-2.646835,50.884153],[-2.64736,50.885407],[-2.646153,50.887376],[-2.647105,50.888352],[-2.643025,50.887238],[-2.642513,50.886702],[-2.640768,50.886976],[-2.6376,50.886958],[-2.630788,50.885802],[-2.627961,50.886306],[-2.627181,50.879895],[-2.62413,50.879259],[-2.623007,50.880322],[-2.620522,50.881263],[-2.617895,50.880999],[-2.616101,50.881634],[-2.614505,50.883709],[-2.612319,50.884791],[-2.611611,50.88651],[-2.610153,50.888937],[-2.610365,50.890158],[-2.609438,50.890905],[-2.610301,50.892358],[-2.61256,50.892188],[-2.614846,50.893279],[-2.614535,50.893759],[-2.616382,50.896747],[-2.615528,50.897269],[-2.616205,50.899493],[-2.617521,50.90008],[-2.617633,50.901556],[-2.618698,50.901361],[-2.619662,50.902339],[-2.618872,50.90325],[-2.619909,50.904642],[-2.621793,50.905121],[-2.624028,50.907992],[-2.6224,50.908754],[-2.622098,50.910108],[-2.620434,50.91002],[-2.620024,50.911492],[-2.617336,50.912361],[-2.616994,50.915672],[-2.615626,50.916653],[-2.615305,50.917646],[-2.616046,50.919242],[-2.614531,50.921135],[-2.615189,50.922435],[-2.614805,50.923257],[-2.613409,50.923553],[-2.609781,50.925301],[-2.606594,50.925831],[-2.6052,50.9266],[-2.604473,50.927725],[-2.604033,50.930976],[-2.604629,50.932557],[-2.606268,50.934674],[-2.607861,50.935626],[-2.612785,50.937255],[-2.614597,50.93815],[-2.615859,50.939593],[-2.615733,50.941205],[-2.614052,50.941361],[-2.613972,50.940308],[-2.612086,50.940069],[-2.608847,50.942008],[-2.608591,50.943695],[-2.607285,50.944073],[-2.607504,50.945137],[-2.606751,50.945893],[-2.605575,50.945332],[-2.604473,50.94597],[-2.601753,50.9468],[-2.601633,50.947431],[-2.599263,50.947656],[-2.5982,50.948574],[-2.599204,50.949259],[-2.597989,50.950159],[-2.598659,50.950594],[-2.598556,50.953013],[-2.599555,50.954352],[-2.598149,50.957751],[-2.598732,50.958567],[-2.598123,50.960568],[-2.596634,50.961209],[-2.595416,50.960892],[-2.59491,50.962228],[-2.595998,50.964622],[-2.597356,50.964814],[-2.597257,50.965747],[-2.599883,50.967402],[-2.599583,50.970761],[-2.59853,50.971577],[-2.598961,50.972618],[-2.598058,50.973613],[-2.598977,50.97455],[-2.60198,50.974935],[-2.603418,50.976283],[-2.60114,50.978012],[-2.595845,50.98134],[-2.59155,50.978761],[-2.589292,50.97692],[-2.586024,50.976869],[-2.586728,50.977805],[-2.584257,50.978891],[-2.583181,50.978864],[-2.580824,50.981347],[-2.578336,50.982151],[-2.576875,50.982306],[-2.574939,50.983318],[-2.57435,50.985093],[-2.574631,50.986694],[-2.569105,50.98537],[-2.562372,50.977711],[-2.560102,50.978695],[-2.556207,50.979535],[-2.555129,50.981423],[-2.553333,50.982827],[-2.550218,50.983802],[-2.548092,50.984852],[-2.545424,50.98508],[-2.545428,50.989808],[-2.544725,50.991666],[-2.547376,50.99221],[-2.551925,50.993698],[-2.55149,50.996345],[-2.548536,50.995986],[-2.547292,50.996418],[-2.546922,50.997252],[-2.547435,50.999542],[-2.535167,50.999373],[-2.535855,50.996856],[-2.535562,50.994022],[-2.529363,50.992642],[-2.526467,50.992597],[-2.526531,50.991925],[-2.523516,50.99225],[-2.520102,50.99401],[-2.518141,50.993335],[-2.516192,50.994508],[-2.512812,50.993984],[-2.508534,50.994658],[-2.502281,50.993798],[-2.497176,50.987353],[-2.492141,50.978517],[-2.488333,50.975756],[-2.488218,50.974452],[-2.490484,50.974164],[-2.490345,50.972772],[-2.48778,50.973113],[-2.485087,50.971143],[-2.480195,50.965865],[-2.475921,50.963586],[-2.474578,50.962508],[-2.476416,50.960764],[-2.475453,50.960002],[-2.474742,50.957952],[-2.473026,50.95803],[-2.470242,50.959151],[-2.466818,50.959811],[-2.463809,50.955346],[-2.461446,50.95631],[-2.458644,50.954288],[-2.45903,50.953522],[-2.457906,50.952788],[-2.460421,50.951129],[-2.458664,50.949747],[-2.455365,50.949267],[-2.452486,50.950274],[-2.448605,50.952913],[-2.445735,50.955851],[-2.444755,50.958082],[-2.443478,50.958463],[-2.442376,50.960796],[-2.443666,50.961248],[-2.442271,50.962523],[-2.444757,50.963061],[-2.44485,50.963986],[-2.447178,50.96785],[-2.441453,50.968643],[-2.441361,50.968395],[-2.436662,50.969332],[-2.433894,50.970228],[-2.431767,50.971337],[-2.431138,50.970677],[-2.427992,50.971387],[-2.424949,50.97027],[-2.421344,50.967165],[-2.419597,50.965169],[-2.419442,50.963646],[-2.418347,50.962328],[-2.416213,50.961657],[-2.414928,50.960583],[-2.403139,50.965174],[-2.397037,50.968402],[-2.392738,50.969242],[-2.383542,50.972359],[-2.381073,50.972811],[-2.374783,50.973226],[-2.365565,50.975501],[-2.362557,50.976564],[-2.358262,50.977418],[-2.353207,50.977884],[-2.351183,50.978582],[-2.345916,50.979041],[-2.344557,50.978829],[-2.344135,50.979756],[-2.344931,50.98032],[-2.343876,50.982295],[-2.344631,50.983493],[-2.344021,50.984839],[-2.345851,50.984733],[-2.346983,50.985262],[-2.350385,50.988117],[-2.351483,50.987878],[-2.352692,50.989927],[-2.354842,50.990224],[-2.35495,50.990897],[-2.361236,50.991266],[-2.364874,50.990419],[-2.365998,50.991431],[-2.367542,50.991248],[-2.368684,50.991758],[-2.370607,50.991752],[-2.372297,50.99048],[-2.374632,50.990457],[-2.37776,50.991413],[-2.377841,50.992671],[-2.378877,50.994776],[-2.380946,50.996711],[-2.38091,51.001185],[-2.381756,51.001946],[-2.381349,51.004922],[-2.379688,51.005217],[-2.379549,51.006527],[-2.376473,51.009202],[-2.375914,51.01085],[-2.378158,51.011115],[-2.378047,51.011714],[-2.371162,51.01346],[-2.369147,51.014276],[-2.369097,51.015925],[-2.367249,51.017779],[-2.363478,51.019986],[-2.361564,51.023018],[-2.360459,51.023408],[-2.360674,51.025175],[-2.35182,51.028655],[-2.349346,51.030505],[-2.347528,51.031247],[-2.347292,51.031814],[-2.344254,51.032519],[-2.34341,51.033359],[-2.342755,51.035221],[-2.341536,51.035481],[-2.338921,51.036913],[-2.337728,51.036993],[-2.335419,51.039611],[-2.332308,51.03971],[-2.330015,51.041345],[-2.32963,51.042192],[-2.330367,51.043795],[-2.331448,51.044375],[-2.333314,51.046738],[-2.332538,51.049525],[-2.33317,51.051479],[-2.340109,51.056063],[-2.342195,51.056068],[-2.344482,51.05548],[-2.346509,51.058579],[-2.349256,51.061243],[-2.349939,51.063658],[-2.349457,51.064118],[-2.349403,51.066314],[-2.349978,51.068801],[-2.349117,51.070727],[-2.347639,51.071801],[-2.347087,51.072685],[-2.34367,51.07464],[-2.342184,51.075018],[-2.337743,51.074604],[-2.334372,51.075262],[-2.329957,51.076712],[-2.328472,51.078016],[-2.326533,51.07891],[-2.325853,51.079676],[-2.327379,51.08007],[-2.327531,51.082541],[-2.328806,51.083582],[-2.329141,51.085259],[-2.330492,51.085311],[-2.335706,51.086659],[-2.339018,51.086449],[-2.3394,51.08707],[-2.341614,51.087825],[-2.345324,51.088313],[-2.347051,51.088236],[-2.353509,51.094542],[-2.354408,51.096448],[-2.360112,51.099306],[-2.36087,51.099017],[-2.36253,51.101624],[-2.362835,51.103433],[-2.363452,51.104304],[-2.362292,51.105335],[-2.362172,51.10691],[-2.360778,51.108838],[-2.362615,51.112497],[-2.363452,51.113383],[-2.362883,51.115775],[-2.36559,51.11499],[-2.364528,51.118879],[-2.363707,51.119467],[-2.361657,51.119754],[-2.361143,51.120213],[-2.357656,51.120808],[-2.356786,51.120331],[-2.352539,51.122811],[-2.35081,51.123223],[-2.349309,51.122992],[-2.34653,51.123707],[-2.344539,51.124678],[-2.343187,51.127441],[-2.344032,51.12869],[-2.346305,51.130511]]]},"properties":{"LAD22CD":"E07000189","LAD22NM":"South Somerset","BNG_E":345633,"BNG_N":120798,"LONG":-2.77588,"LAT":50.98399,"GlobalID":"ec0fd887-fe0d-4cb4-945c-9dcf98a267cf"},"id":193}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.943944,52.77376],[-1.944688,52.773535],[-1.946601,52.774197],[-1.94864,52.773985],[-1.950599,52.771663],[-1.955936,52.769168],[-1.959705,52.768389],[-1.965753,52.765521],[-1.967726,52.764986],[-1.970536,52.765026],[-1.97205,52.763444],[-1.97313,52.761558],[-1.977394,52.762437],[-1.982697,52.76206],[-1.986689,52.762985],[-1.988337,52.762829],[-1.996776,52.763644],[-1.99938,52.762893],[-2.003786,52.760655],[-2.007332,52.760799],[-2.012718,52.759637],[-2.015698,52.759677],[-2.018426,52.758861],[-2.017788,52.757138],[-2.01478,52.753511],[-2.016822,52.746578],[-2.018023,52.744295],[-2.017016,52.742566],[-2.017906,52.741517],[-2.026802,52.736318],[-2.025326,52.734597],[-2.025791,52.731916],[-2.025249,52.728394],[-2.026036,52.72665],[-2.027035,52.725823],[-2.026255,52.724679],[-2.029849,52.714011],[-2.030625,52.712153],[-2.031092,52.705104],[-2.036525,52.703635],[-2.040779,52.701764],[-2.044834,52.698434],[-2.047664,52.694178],[-2.052018,52.691268],[-2.054632,52.690059],[-2.052962,52.687974],[-2.051647,52.686978],[-2.05163,52.686122],[-2.049687,52.684577],[-2.049494,52.681506],[-2.051541,52.679744],[-2.051908,52.679002],[-2.051314,52.677974],[-2.050043,52.677212],[-2.047585,52.677547],[-2.045789,52.676018],[-2.042934,52.675898],[-2.04165,52.675196],[-2.041075,52.673666],[-2.035508,52.671172],[-2.028263,52.670978],[-2.026435,52.671848],[-2.025241,52.671793],[-2.022252,52.672557],[-2.019132,52.672749],[-2.016793,52.671803],[-2.015801,52.670541],[-2.013508,52.669536],[-2.005835,52.669528],[-2.002253,52.667603],[-2.001292,52.666737],[-2.001704,52.666052],[-2.000777,52.665096],[-2.001064,52.662417],[-2.000309,52.660012],[-1.997646,52.657842],[-1.997748,52.656771],[-1.996261,52.655155],[-1.993451,52.653076],[-1.99332,52.650908],[-1.994126,52.650274],[-1.993626,52.64925],[-1.994255,52.648014],[-1.992781,52.646101],[-1.992883,52.645336],[-1.991536,52.644652],[-1.983737,52.643609],[-1.985117,52.641613],[-1.986551,52.640409],[-1.984769,52.639653],[-1.98283,52.6413],[-1.981316,52.63983],[-1.978727,52.640068],[-1.976206,52.639697],[-1.975165,52.641346],[-1.973329,52.640601],[-1.971046,52.641491],[-1.967443,52.641575],[-1.96739,52.641006],[-1.964568,52.640796],[-1.963015,52.64377],[-1.960963,52.642815],[-1.960281,52.644163],[-1.959958,52.649212],[-1.960771,52.649276],[-1.960554,52.653712],[-1.955466,52.653607],[-1.955074,52.654137],[-1.956303,52.656225],[-1.956325,52.65702],[-1.959945,52.662037],[-1.95457,52.662641],[-1.961023,52.667878],[-1.959612,52.670709],[-1.959488,52.671916],[-1.960472,52.673039],[-1.962686,52.673785],[-1.963225,52.674633],[-1.961999,52.678225],[-1.95831,52.676827],[-1.958021,52.679276],[-1.95925,52.684149],[-1.954587,52.684525],[-1.95366,52.686647],[-1.950777,52.687975],[-1.949203,52.689277],[-1.948161,52.690833],[-1.947503,52.693641],[-1.949633,52.695668],[-1.946629,52.695676],[-1.942747,52.696906],[-1.941318,52.696852],[-1.936592,52.695593],[-1.933548,52.695956],[-1.932621,52.696314],[-1.934206,52.697801],[-1.93228,52.699756],[-1.931491,52.701614],[-1.930116,52.70297],[-1.930155,52.704351],[-1.92941,52.705006],[-1.926424,52.70652],[-1.925627,52.707607],[-1.921241,52.707919],[-1.916619,52.709316],[-1.915511,52.710639],[-1.917174,52.712004],[-1.919022,52.710297],[-1.924057,52.713552],[-1.927607,52.714372],[-1.930542,52.714567],[-1.932473,52.713765],[-1.933945,52.713691],[-1.937387,52.714083],[-1.937701,52.716273],[-1.935827,52.718703],[-1.935862,52.720855],[-1.933425,52.721149],[-1.934497,52.723733],[-1.933923,52.727647],[-1.92716,52.731439],[-1.927095,52.733013],[-1.92574,52.734932],[-1.919893,52.738081],[-1.918736,52.739214],[-1.916195,52.738951],[-1.913921,52.741426],[-1.913141,52.741769],[-1.912338,52.743213],[-1.913866,52.74596],[-1.913838,52.74727],[-1.911508,52.750834],[-1.910807,52.751191],[-1.912341,52.75242],[-1.917199,52.754656],[-1.914628,52.755942],[-1.911747,52.758329],[-1.911375,52.759053],[-1.913116,52.759939],[-1.917826,52.760921],[-1.922998,52.762492],[-1.925481,52.76376],[-1.928593,52.766107],[-1.928809,52.767183],[-1.929711,52.76807],[-1.932503,52.76781],[-1.937387,52.771395],[-1.94281,52.773052],[-1.943944,52.77376]]]},"properties":{"LAD22CD":"E07000192","LAD22NM":"Cannock Chase","BNG_E":401261,"BNG_N":311553,"LONG":-1.98277,"LAT":52.70166,"GlobalID":"80433169-53ab-45c9-a8dc-8a26e431743d"},"id":194}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.778981,53.044844],[-1.780105,53.044708],[-1.78166,53.045869],[-1.79019,53.042895],[-1.790635,53.041805],[-1.789926,53.040965],[-1.790916,53.038314],[-1.79466,53.039336],[-1.793641,53.036694],[-1.793908,53.033822],[-1.793453,53.0324],[-1.790967,53.029563],[-1.78828,53.030294],[-1.788132,53.028853],[-1.791566,53.027221],[-1.790433,53.025581],[-1.787284,53.025461],[-1.78609,53.025879],[-1.784865,53.024584],[-1.790257,53.022373],[-1.792247,53.02263],[-1.792442,53.020615],[-1.794722,53.020424],[-1.793479,53.015928],[-1.794095,53.014734],[-1.796001,53.013209],[-1.797647,53.014687],[-1.797721,53.016004],[-1.799987,53.017313],[-1.800869,53.018968],[-1.800719,53.020126],[-1.80141,53.021572],[-1.80299,53.022292],[-1.806194,53.022554],[-1.807378,53.023836],[-1.808205,53.025924],[-1.811643,53.028483],[-1.814191,53.029759],[-1.816506,53.029194],[-1.81853,53.029205],[-1.821146,53.02874],[-1.824789,53.02996],[-1.825423,53.030742],[-1.830196,53.032292],[-1.830482,53.032972],[-1.833741,53.032505],[-1.836678,53.031702],[-1.839336,53.031647],[-1.842272,53.031148],[-1.84529,53.030337],[-1.847862,53.031322],[-1.851157,53.031425],[-1.854662,53.032955],[-1.856033,53.034097],[-1.860663,53.031465],[-1.863982,53.030094],[-1.863032,53.028664],[-1.871595,53.020032],[-1.872701,53.020671],[-1.876218,53.021572],[-1.877501,53.019807],[-1.880379,53.021012],[-1.882415,53.019384],[-1.884177,53.020055],[-1.885001,53.018508],[-1.886234,53.017476],[-1.886547,53.016276],[-1.884811,53.01547],[-1.885338,53.013311],[-1.883389,53.010889],[-1.879214,53.007336],[-1.876957,53.005969],[-1.876206,53.004468],[-1.877305,53.003576],[-1.878913,53.003335],[-1.879363,53.001504],[-1.878407,52.999723],[-1.88116,52.996136],[-1.880595,52.994602],[-1.878726,52.993704],[-1.87758,52.994055],[-1.873766,52.993903],[-1.871174,52.992783],[-1.869383,52.991554],[-1.870137,52.990889],[-1.870196,52.987694],[-1.869772,52.986584],[-1.8677,52.985316],[-1.868016,52.984803],[-1.865275,52.983004],[-1.864487,52.982051],[-1.864354,52.980804],[-1.861583,52.979254],[-1.860936,52.977341],[-1.861244,52.974889],[-1.862528,52.974261],[-1.864483,52.974467],[-1.867949,52.974039],[-1.870912,52.974415],[-1.872387,52.971602],[-1.873444,52.971975],[-1.877124,52.972377],[-1.877535,52.970971],[-1.879723,52.971159],[-1.879969,52.969929],[-1.883754,52.970562],[-1.887927,52.970565],[-1.888348,52.96938],[-1.893138,52.970777],[-1.895701,52.971273],[-1.895616,52.971779],[-1.899196,52.971646],[-1.899099,52.971212],[-1.901239,52.969165],[-1.903362,52.965917],[-1.904899,52.965503],[-1.906173,52.96444],[-1.909668,52.962546],[-1.910967,52.962834],[-1.915035,52.96554],[-1.916869,52.965956],[-1.918778,52.965706],[-1.922181,52.963601],[-1.925467,52.963191],[-1.92582,52.961794],[-1.927389,52.960778],[-1.928031,52.959745],[-1.9233,52.957422],[-1.918426,52.957638],[-1.916978,52.957112],[-1.917485,52.955913],[-1.915921,52.953536],[-1.917806,52.951885],[-1.910906,52.949036],[-1.908902,52.948859],[-1.903549,52.946013],[-1.903208,52.945246],[-1.906214,52.944142],[-1.910186,52.939809],[-1.912583,52.939887],[-1.914182,52.940566],[-1.919132,52.941083],[-1.920442,52.941873],[-1.923523,52.942218],[-1.923527,52.940553],[-1.926893,52.941297],[-1.928195,52.940575],[-1.930476,52.937974],[-1.932209,52.933965],[-1.934365,52.931669],[-1.937002,52.931498],[-1.942031,52.931845],[-1.942615,52.932575],[-1.944527,52.932284],[-1.9467,52.932794],[-1.94764,52.933396],[-1.951665,52.933888],[-1.9538,52.935183],[-1.955444,52.934923],[-1.958059,52.936009],[-1.962256,52.93655],[-1.96678,52.939398],[-1.971116,52.940791],[-1.97402,52.938806],[-1.97627,52.938025],[-1.976296,52.935384],[-1.977406,52.934597],[-1.980157,52.933989],[-1.983957,52.934743],[-1.985316,52.935672],[-1.988335,52.93468],[-1.99365,52.933928],[-2.000983,52.931246],[-2.001953,52.930006],[-2.001523,52.929419],[-2.002545,52.928469],[-2.003656,52.928327],[-2.007296,52.927126],[-2.00921,52.92724],[-2.013296,52.925507],[-2.015603,52.925061],[-2.01728,52.924269],[-2.01952,52.924134],[-2.021902,52.924685],[-2.025899,52.924827],[-2.03031,52.923307],[-2.030834,52.922806],[-2.033218,52.922285],[-2.032881,52.921014],[-2.034174,52.918309],[-2.034961,52.917813],[-2.038018,52.917511],[-2.040571,52.916679],[-2.041527,52.917477],[-2.043542,52.917311],[-2.042651,52.915726],[-2.040638,52.916496],[-2.036934,52.915753],[-2.034057,52.914716],[-2.032969,52.913637],[-2.027202,52.911564],[-2.023903,52.909636],[-2.022297,52.909083],[-2.017461,52.90824],[-2.01275,52.906581],[-2.016521,52.903706],[-2.016969,52.902306],[-2.012422,52.900637],[-2.007406,52.899252],[-2.002729,52.896856],[-1.999704,52.892268],[-1.996647,52.892202],[-1.993941,52.893633],[-1.991279,52.894265],[-1.985951,52.89493],[-1.982011,52.894168],[-1.97966,52.893279],[-1.975979,52.889815],[-1.97348,52.887819],[-1.97212,52.887191],[-1.970326,52.885414],[-1.968376,52.874847],[-1.967484,52.874293],[-1.964987,52.873704],[-1.964206,52.872528],[-1.960537,52.870227],[-1.952422,52.868434],[-1.951355,52.87031],[-1.950014,52.869781],[-1.946431,52.869498],[-1.944985,52.869914],[-1.936052,52.870684],[-1.937222,52.867392],[-1.934984,52.867137],[-1.935204,52.864866],[-1.936993,52.864395],[-1.936724,52.862763],[-1.93604,52.862029],[-1.936472,52.85939],[-1.937637,52.858865],[-1.937048,52.858146],[-1.934757,52.857293],[-1.93336,52.854551],[-1.934488,52.853503],[-1.937762,52.853333],[-1.939199,52.851528],[-1.936785,52.848093],[-1.946288,52.846918],[-1.946907,52.845683],[-1.949242,52.844786],[-1.951145,52.84373],[-1.950496,52.842349],[-1.948763,52.842608],[-1.949208,52.841461],[-1.948733,52.840728],[-1.952265,52.837058],[-1.950792,52.83646],[-1.952117,52.834819],[-1.953059,52.832448],[-1.954856,52.832139],[-1.955827,52.830965],[-1.960839,52.827317],[-1.966635,52.825157],[-1.967885,52.824301],[-1.96558,52.821925],[-1.964447,52.821479],[-1.964414,52.820343],[-1.962585,52.819336],[-1.962019,52.818189],[-1.960355,52.817228],[-1.959692,52.815488],[-1.95825,52.814498],[-1.958323,52.813916],[-1.956328,52.81294],[-1.95494,52.812806],[-1.953757,52.812072],[-1.951327,52.807428],[-1.94887,52.807809],[-1.941777,52.8074],[-1.938586,52.80675],[-1.935841,52.80655],[-1.93621,52.805343],[-1.933311,52.805998],[-1.933029,52.805187],[-1.930781,52.805567],[-1.93054,52.803945],[-1.927034,52.802652],[-1.926071,52.80191],[-1.922908,52.801596],[-1.918555,52.800074],[-1.91786,52.800449],[-1.915342,52.799158],[-1.912836,52.800134],[-1.909262,52.799151],[-1.907656,52.79809],[-1.904632,52.797828],[-1.902818,52.79674],[-1.901943,52.795322],[-1.89725,52.795736],[-1.894034,52.797237],[-1.892608,52.79829],[-1.892058,52.799409],[-1.889879,52.800374],[-1.887732,52.799083],[-1.884705,52.798472],[-1.884218,52.797177],[-1.882219,52.796278],[-1.878224,52.796191],[-1.876404,52.795226],[-1.873634,52.794668],[-1.872439,52.793989],[-1.870466,52.792004],[-1.867131,52.791536],[-1.866585,52.790771],[-1.862578,52.789289],[-1.861815,52.788242],[-1.862428,52.787028],[-1.859792,52.784527],[-1.858064,52.784371],[-1.857215,52.783823],[-1.854209,52.783174],[-1.852727,52.782479],[-1.849422,52.785062],[-1.848582,52.785009],[-1.847004,52.786675],[-1.84495,52.787724],[-1.844377,52.790122],[-1.845151,52.793346],[-1.842357,52.795932],[-1.838152,52.79597],[-1.837259,52.795315],[-1.835108,52.795525],[-1.832129,52.794951],[-1.827553,52.793224],[-1.823301,52.794082],[-1.817578,52.793028],[-1.814182,52.790298],[-1.810156,52.785136],[-1.809505,52.783143],[-1.812385,52.779314],[-1.814586,52.778337],[-1.818385,52.777857],[-1.820615,52.776982],[-1.821084,52.775467],[-1.823524,52.774327],[-1.826977,52.771434],[-1.82842,52.769042],[-1.826204,52.768817],[-1.82349,52.769145],[-1.823318,52.767035],[-1.822497,52.767305],[-1.820541,52.762932],[-1.818975,52.757026],[-1.817526,52.755191],[-1.816694,52.755654],[-1.814845,52.755611],[-1.81319,52.756572],[-1.811847,52.756438],[-1.807857,52.757398],[-1.803134,52.756181],[-1.801353,52.754278],[-1.798656,52.753782],[-1.795252,52.752343],[-1.794044,52.752779],[-1.793316,52.754315],[-1.790532,52.753786],[-1.788926,52.752498],[-1.790142,52.751596],[-1.786195,52.749332],[-1.786741,52.747204],[-1.784563,52.745852],[-1.779841,52.745886],[-1.778483,52.746191],[-1.777281,52.74864],[-1.778519,52.749001],[-1.775858,52.750769],[-1.772799,52.750756],[-1.771795,52.749759],[-1.771913,52.748843],[-1.76896,52.749479],[-1.767218,52.75081],[-1.763811,52.748483],[-1.760173,52.747213],[-1.757457,52.745208],[-1.758085,52.744151],[-1.756948,52.743589],[-1.756132,52.741666],[-1.753337,52.740801],[-1.753997,52.740347],[-1.750603,52.739148],[-1.749189,52.739743],[-1.74646,52.739264],[-1.744087,52.739368],[-1.744236,52.738398],[-1.740748,52.738329],[-1.737088,52.73915],[-1.733992,52.73893],[-1.730871,52.739073],[-1.731081,52.738354],[-1.728856,52.738453],[-1.726226,52.737801],[-1.725592,52.73911],[-1.723579,52.739281],[-1.723055,52.73807],[-1.721929,52.737871],[-1.721365,52.736226],[-1.722297,52.735481],[-1.719969,52.733431],[-1.717401,52.733405],[-1.717935,52.732702],[-1.716929,52.731448],[-1.71199,52.729893],[-1.710795,52.729856],[-1.707283,52.730592],[-1.704158,52.732079],[-1.702353,52.732588],[-1.697886,52.735382],[-1.697978,52.736053],[-1.699764,52.738051],[-1.699153,52.738991],[-1.697102,52.74036],[-1.697799,52.742272],[-1.697619,52.743763],[-1.696357,52.744257],[-1.693171,52.743815],[-1.692537,52.744835],[-1.695539,52.747022],[-1.696052,52.74802],[-1.695654,52.749085],[-1.69386,52.750165],[-1.693685,52.75079],[-1.696575,52.751911],[-1.696764,52.752861],[-1.692752,52.756308],[-1.690971,52.757004],[-1.687912,52.757405],[-1.685968,52.759013],[-1.683928,52.761619],[-1.683166,52.764273],[-1.685007,52.765354],[-1.68518,52.766414],[-1.683009,52.768212],[-1.682067,52.770192],[-1.678646,52.771963],[-1.676348,52.772319],[-1.67202,52.772418],[-1.670047,52.773595],[-1.669734,52.777816],[-1.67074,52.781071],[-1.669692,52.782335],[-1.665604,52.785163],[-1.664009,52.785486],[-1.66227,52.785149],[-1.658757,52.783493],[-1.656826,52.781063],[-1.65324,52.779715],[-1.64993,52.779482],[-1.648485,52.779849],[-1.644324,52.782499],[-1.641929,52.784586],[-1.638243,52.786728],[-1.626958,52.779772],[-1.623753,52.782449],[-1.622884,52.782168],[-1.61929,52.785168],[-1.617743,52.783875],[-1.615012,52.782496],[-1.61541,52.782052],[-1.612463,52.781218],[-1.61113,52.781404],[-1.610304,52.782257],[-1.611266,52.782778],[-1.609417,52.784454],[-1.613721,52.786155],[-1.612392,52.787519],[-1.614346,52.788274],[-1.611723,52.789863],[-1.60633,52.790732],[-1.604132,52.791268],[-1.601475,52.792842],[-1.600854,52.794194],[-1.60355,52.795455],[-1.59785,52.798344],[-1.595704,52.797115],[-1.588947,52.799822],[-1.590025,52.800782],[-1.588502,52.801708],[-1.588341,52.802381],[-1.590907,52.802492],[-1.589873,52.806372],[-1.590577,52.806916],[-1.591827,52.809491],[-1.593439,52.809091],[-1.596654,52.81098],[-1.598907,52.811482],[-1.600793,52.81275],[-1.60496,52.814667],[-1.607697,52.81486],[-1.61034,52.815617],[-1.610324,52.81705],[-1.6076,52.819473],[-1.607113,52.822029],[-1.605513,52.823206],[-1.604415,52.824883],[-1.602867,52.826301],[-1.600732,52.827408],[-1.597595,52.828413],[-1.593691,52.828735],[-1.590363,52.828616],[-1.588623,52.828946],[-1.585783,52.830754],[-1.586462,52.831417],[-1.587977,52.831537],[-1.589604,52.831005],[-1.591896,52.83227],[-1.591402,52.833431],[-1.591949,52.834613],[-1.591106,52.835444],[-1.592436,52.836393],[-1.59418,52.835182],[-1.597523,52.837335],[-1.599393,52.837871],[-1.600996,52.837083],[-1.601868,52.837232],[-1.602981,52.839838],[-1.602987,52.840878],[-1.604502,52.8422],[-1.607059,52.843371],[-1.6092,52.842959],[-1.612672,52.844597],[-1.614722,52.845132],[-1.617579,52.844765],[-1.620712,52.847413],[-1.622694,52.84794],[-1.622662,52.849504],[-1.625492,52.849781],[-1.628235,52.851862],[-1.626158,52.852708],[-1.626567,52.854365],[-1.629675,52.853784],[-1.630732,52.852794],[-1.635151,52.852984],[-1.636925,52.853284],[-1.639901,52.85543],[-1.641911,52.855753],[-1.642632,52.856327],[-1.645963,52.855822],[-1.654056,52.856984],[-1.658681,52.85679],[-1.662783,52.8582],[-1.664788,52.858371],[-1.668802,52.860148],[-1.670276,52.861229],[-1.672319,52.861389],[-1.674617,52.861134],[-1.679449,52.861502],[-1.682735,52.862779],[-1.684964,52.862329],[-1.687365,52.862808],[-1.687926,52.863929],[-1.689986,52.864435],[-1.691747,52.864211],[-1.694366,52.862806],[-1.697536,52.86289],[-1.699225,52.862111],[-1.698879,52.860766],[-1.700609,52.860584],[-1.703466,52.86125],[-1.703564,52.862851],[-1.70152,52.862223],[-1.700042,52.86328],[-1.70062,52.864307],[-1.703461,52.866394],[-1.705902,52.866734],[-1.708064,52.866109],[-1.710676,52.866462],[-1.712061,52.865921],[-1.714474,52.866015],[-1.716529,52.865418],[-1.717665,52.864521],[-1.71732,52.863469],[-1.715493,52.863523],[-1.714415,52.862799],[-1.71626,52.862062],[-1.716969,52.860786],[-1.718347,52.860901],[-1.717749,52.861984],[-1.721066,52.862061],[-1.722344,52.861522],[-1.722891,52.860308],[-1.725322,52.859663],[-1.727514,52.860437],[-1.728083,52.861389],[-1.726475,52.861492],[-1.725724,52.862308],[-1.727229,52.863208],[-1.729781,52.862731],[-1.731215,52.862817],[-1.734826,52.863856],[-1.735539,52.86507],[-1.739165,52.864807],[-1.739657,52.865303],[-1.739421,52.867212],[-1.7404,52.867665],[-1.743173,52.866228],[-1.746784,52.865958],[-1.749558,52.866774],[-1.747397,52.868201],[-1.746003,52.868693],[-1.746061,52.869993],[-1.747587,52.870579],[-1.750649,52.86893],[-1.752267,52.868808],[-1.751844,52.870173],[-1.752275,52.871078],[-1.750514,52.872693],[-1.750703,52.87371],[-1.751593,52.874252],[-1.754067,52.874551],[-1.756004,52.875171],[-1.758585,52.877221],[-1.764655,52.878562],[-1.768781,52.878014],[-1.770685,52.878977],[-1.774232,52.879259],[-1.776223,52.880558],[-1.775325,52.882257],[-1.777221,52.883815],[-1.780273,52.882408],[-1.782511,52.883792],[-1.78373,52.883964],[-1.785599,52.882917],[-1.786977,52.88081],[-1.788149,52.880017],[-1.791152,52.880283],[-1.792493,52.880707],[-1.793663,52.883211],[-1.794432,52.883868],[-1.801378,52.886173],[-1.802915,52.885764],[-1.802999,52.883912],[-1.804158,52.883007],[-1.811053,52.880653],[-1.812307,52.880683],[-1.811981,52.881859],[-1.813537,52.882474],[-1.815811,52.882079],[-1.818483,52.882608],[-1.822844,52.882511],[-1.823623,52.88288],[-1.82177,52.885269],[-1.822024,52.886039],[-1.823555,52.886086],[-1.825863,52.884084],[-1.82835,52.884591],[-1.827541,52.886596],[-1.829852,52.887326],[-1.832717,52.88683],[-1.832955,52.887452],[-1.832132,52.888674],[-1.834087,52.88955],[-1.833005,52.89005],[-1.833155,52.890884],[-1.835211,52.891357],[-1.834021,52.892867],[-1.832641,52.893321],[-1.833986,52.89452],[-1.834249,52.895511],[-1.833124,52.896103],[-1.830623,52.895986],[-1.829999,52.896588],[-1.832512,52.899106],[-1.833387,52.902125],[-1.835169,52.901701],[-1.836349,52.902344],[-1.83615,52.904195],[-1.838287,52.905348],[-1.840985,52.905059],[-1.842603,52.906549],[-1.844093,52.907213],[-1.845388,52.908939],[-1.847605,52.909009],[-1.847579,52.909965],[-1.846628,52.910661],[-1.843671,52.910444],[-1.84231,52.911405],[-1.842608,52.912989],[-1.843576,52.913417],[-1.847963,52.912988],[-1.847817,52.914426],[-1.847168,52.91533],[-1.848932,52.916172],[-1.848162,52.917236],[-1.848191,52.918807],[-1.847508,52.920151],[-1.849944,52.921075],[-1.85173,52.920294],[-1.854569,52.919975],[-1.855597,52.920825],[-1.855729,52.922679],[-1.856395,52.923686],[-1.85468,52.924091],[-1.854632,52.925524],[-1.855705,52.926741],[-1.854561,52.927565],[-1.853285,52.927467],[-1.852709,52.92892],[-1.854112,52.929469],[-1.854077,52.930859],[-1.852041,52.931884],[-1.850064,52.931014],[-1.848878,52.93237],[-1.850432,52.932689],[-1.850591,52.934007],[-1.849279,52.935607],[-1.847082,52.935838],[-1.846536,52.936844],[-1.845189,52.937355],[-1.843037,52.939558],[-1.840286,52.939707],[-1.839459,52.94138],[-1.837973,52.94158],[-1.835521,52.940716],[-1.833095,52.94127],[-1.832336,52.943144],[-1.832834,52.943674],[-1.83534,52.942446],[-1.836466,52.943439],[-1.835583,52.945265],[-1.832461,52.945951],[-1.829933,52.945542],[-1.829697,52.946828],[-1.828756,52.947766],[-1.828856,52.948771],[-1.830701,52.951502],[-1.832283,52.952216],[-1.834179,52.953936],[-1.834477,52.954918],[-1.831418,52.955766],[-1.830554,52.95709],[-1.829153,52.957932],[-1.829163,52.959226],[-1.828474,52.960939],[-1.82648,52.960438],[-1.825736,52.96232],[-1.828342,52.963979],[-1.828223,52.965512],[-1.827555,52.966434],[-1.829454,52.968378],[-1.830186,52.971346],[-1.829628,52.973059],[-1.828368,52.973909],[-1.828376,52.975314],[-1.826112,52.977487],[-1.823523,52.978739],[-1.821231,52.978493],[-1.815286,52.979458],[-1.806877,52.980215],[-1.803224,52.981351],[-1.801558,52.983103],[-1.80262,52.983881],[-1.804694,52.984603],[-1.80471,52.985518],[-1.802687,52.985388],[-1.798831,52.986336],[-1.79824,52.985539],[-1.796779,52.985104],[-1.794977,52.987718],[-1.792209,52.98961],[-1.79163,52.98829],[-1.78996,52.988959],[-1.787522,52.989426],[-1.788146,52.990008],[-1.787119,52.990806],[-1.787653,52.991557],[-1.789866,52.991633],[-1.789353,52.99276],[-1.787174,52.993073],[-1.7863,52.992401],[-1.785109,52.99286],[-1.785996,52.993604],[-1.784453,52.994778],[-1.780442,52.99483],[-1.779132,52.995827],[-1.777621,52.996385],[-1.773907,52.996327],[-1.771049,52.995856],[-1.767815,52.999529],[-1.76257,52.999669],[-1.76265,53.000596],[-1.764424,53.001771],[-1.764101,53.002754],[-1.764515,53.004141],[-1.765709,53.004962],[-1.76624,53.006995],[-1.766067,53.009236],[-1.76419,53.010465],[-1.763556,53.011393],[-1.762023,53.015185],[-1.758968,53.014692],[-1.757719,53.017144],[-1.758312,53.018242],[-1.762944,53.020568],[-1.763731,53.021428],[-1.762712,53.025157],[-1.758985,53.026979],[-1.757188,53.028796],[-1.757415,53.030163],[-1.757013,53.031379],[-1.759679,53.032961],[-1.761544,53.033399],[-1.759364,53.034668],[-1.759038,53.037552],[-1.760053,53.038917],[-1.766001,53.041113],[-1.767444,53.043484],[-1.768194,53.044038],[-1.772295,53.044239],[-1.774435,53.043459],[-1.778734,53.043014],[-1.779656,53.043587],[-1.778981,53.044844]]]},"properties":{"LAD22CD":"E07000193","LAD22NM":"East Staffordshire","BNG_E":412601,"BNG_N":326569,"LONG":-1.81438,"LAT":52.83651,"GlobalID":"c0f6e183-f853-4ab0-860c-c70f0f36e12d"},"id":195}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.704158,52.732079],[-1.707283,52.730592],[-1.710795,52.729856],[-1.71199,52.729893],[-1.716929,52.731448],[-1.717935,52.732702],[-1.717401,52.733405],[-1.719969,52.733431],[-1.722297,52.735481],[-1.721365,52.736226],[-1.721929,52.737871],[-1.723055,52.73807],[-1.723579,52.739281],[-1.725592,52.73911],[-1.726226,52.737801],[-1.728856,52.738453],[-1.731081,52.738354],[-1.730871,52.739073],[-1.733992,52.73893],[-1.737088,52.73915],[-1.740748,52.738329],[-1.744236,52.738398],[-1.744087,52.739368],[-1.74646,52.739264],[-1.749189,52.739743],[-1.750603,52.739148],[-1.753997,52.740347],[-1.753337,52.740801],[-1.756132,52.741666],[-1.756948,52.743589],[-1.758085,52.744151],[-1.757457,52.745208],[-1.760173,52.747213],[-1.763811,52.748483],[-1.767218,52.75081],[-1.76896,52.749479],[-1.771913,52.748843],[-1.771795,52.749759],[-1.772799,52.750756],[-1.775858,52.750769],[-1.778519,52.749001],[-1.777281,52.74864],[-1.778483,52.746191],[-1.779841,52.745886],[-1.784563,52.745852],[-1.786741,52.747204],[-1.786195,52.749332],[-1.790142,52.751596],[-1.788926,52.752498],[-1.790532,52.753786],[-1.793316,52.754315],[-1.794044,52.752779],[-1.795252,52.752343],[-1.798656,52.753782],[-1.801353,52.754278],[-1.803134,52.756181],[-1.807857,52.757398],[-1.811847,52.756438],[-1.81319,52.756572],[-1.814845,52.755611],[-1.816694,52.755654],[-1.817526,52.755191],[-1.818975,52.757026],[-1.820541,52.762932],[-1.822497,52.767305],[-1.823318,52.767035],[-1.82349,52.769145],[-1.826204,52.768817],[-1.82842,52.769042],[-1.826977,52.771434],[-1.823524,52.774327],[-1.821084,52.775467],[-1.820615,52.776982],[-1.818385,52.777857],[-1.814586,52.778337],[-1.812385,52.779314],[-1.809505,52.783143],[-1.810156,52.785136],[-1.814182,52.790298],[-1.817578,52.793028],[-1.823301,52.794082],[-1.827553,52.793224],[-1.832129,52.794951],[-1.835108,52.795525],[-1.837259,52.795315],[-1.838152,52.79597],[-1.842357,52.795932],[-1.845151,52.793346],[-1.844377,52.790122],[-1.84495,52.787724],[-1.847004,52.786675],[-1.848582,52.785009],[-1.849422,52.785062],[-1.852727,52.782479],[-1.854209,52.783174],[-1.857215,52.783823],[-1.858064,52.784371],[-1.859792,52.784527],[-1.862428,52.787028],[-1.861815,52.788242],[-1.862578,52.789289],[-1.866585,52.790771],[-1.867131,52.791536],[-1.870466,52.792004],[-1.872439,52.793989],[-1.873634,52.794668],[-1.876404,52.795226],[-1.878224,52.796191],[-1.882219,52.796278],[-1.884218,52.797177],[-1.884705,52.798472],[-1.887732,52.799083],[-1.889879,52.800374],[-1.892058,52.799409],[-1.892608,52.79829],[-1.894034,52.797237],[-1.89725,52.795736],[-1.901943,52.795322],[-1.902818,52.79674],[-1.904632,52.797828],[-1.907656,52.79809],[-1.909262,52.799151],[-1.912836,52.800134],[-1.915342,52.799158],[-1.91786,52.800449],[-1.918555,52.800074],[-1.922908,52.801596],[-1.926071,52.80191],[-1.927034,52.802652],[-1.93054,52.803945],[-1.930781,52.805567],[-1.933029,52.805187],[-1.933311,52.805998],[-1.93621,52.805343],[-1.935841,52.80655],[-1.938586,52.80675],[-1.941777,52.8074],[-1.94887,52.807809],[-1.951327,52.807428],[-1.951169,52.803921],[-1.953046,52.801486],[-1.952631,52.800638],[-1.958131,52.798491],[-1.956051,52.797909],[-1.951764,52.795953],[-1.948043,52.793424],[-1.951374,52.791784],[-1.950693,52.789776],[-1.949198,52.789395],[-1.945277,52.789352],[-1.946397,52.785922],[-1.947108,52.785973],[-1.948385,52.783717],[-1.951299,52.78015],[-1.94772,52.778308],[-1.94573,52.776426],[-1.943944,52.77376],[-1.94281,52.773052],[-1.937387,52.771395],[-1.932503,52.76781],[-1.929711,52.76807],[-1.928809,52.767183],[-1.928593,52.766107],[-1.925481,52.76376],[-1.922998,52.762492],[-1.917826,52.760921],[-1.913116,52.759939],[-1.911375,52.759053],[-1.911747,52.758329],[-1.914628,52.755942],[-1.917199,52.754656],[-1.912341,52.75242],[-1.910807,52.751191],[-1.911508,52.750834],[-1.913838,52.74727],[-1.913866,52.74596],[-1.912338,52.743213],[-1.913141,52.741769],[-1.913921,52.741426],[-1.916195,52.738951],[-1.918736,52.739214],[-1.919893,52.738081],[-1.92574,52.734932],[-1.927095,52.733013],[-1.92716,52.731439],[-1.933923,52.727647],[-1.934497,52.723733],[-1.933425,52.721149],[-1.935862,52.720855],[-1.935827,52.718703],[-1.937701,52.716273],[-1.937387,52.714083],[-1.933945,52.713691],[-1.932473,52.713765],[-1.930542,52.714567],[-1.927607,52.714372],[-1.924057,52.713552],[-1.919022,52.710297],[-1.917174,52.712004],[-1.915511,52.710639],[-1.916619,52.709316],[-1.921241,52.707919],[-1.925627,52.707607],[-1.926424,52.70652],[-1.92941,52.705006],[-1.930155,52.704351],[-1.930116,52.70297],[-1.931491,52.701614],[-1.93228,52.699756],[-1.934206,52.697801],[-1.932621,52.696314],[-1.933548,52.695956],[-1.936592,52.695593],[-1.941318,52.696852],[-1.942747,52.696906],[-1.946629,52.695676],[-1.949633,52.695668],[-1.947503,52.693641],[-1.948161,52.690833],[-1.949203,52.689277],[-1.950777,52.687975],[-1.95366,52.686647],[-1.954587,52.684525],[-1.95925,52.684149],[-1.958021,52.679276],[-1.95831,52.676827],[-1.961999,52.678225],[-1.963225,52.674633],[-1.962686,52.673785],[-1.960472,52.673039],[-1.959488,52.671916],[-1.959612,52.670709],[-1.961023,52.667878],[-1.95457,52.662641],[-1.953664,52.662733],[-1.950218,52.659637],[-1.949518,52.659946],[-1.945725,52.657114],[-1.945402,52.656299],[-1.94036,52.656324],[-1.940486,52.656928],[-1.938636,52.657314],[-1.936952,52.659124],[-1.935474,52.659716],[-1.93352,52.661529],[-1.930272,52.659343],[-1.92859,52.6586],[-1.925806,52.65607],[-1.923684,52.655528],[-1.919592,52.656875],[-1.912842,52.658234],[-1.90866,52.654],[-1.916584,52.652258],[-1.915868,52.651473],[-1.918015,52.649895],[-1.91526,52.647964],[-1.912347,52.646476],[-1.90974,52.644279],[-1.909047,52.644747],[-1.905084,52.643208],[-1.905876,52.641782],[-1.908011,52.640071],[-1.915985,52.635286],[-1.909976,52.631769],[-1.908531,52.630363],[-1.904688,52.627768],[-1.897487,52.624756],[-1.894329,52.622662],[-1.886272,52.615615],[-1.885647,52.614784],[-1.885143,52.612671],[-1.885015,52.610531],[-1.886606,52.608377],[-1.887139,52.606631],[-1.89224,52.60006],[-1.892266,52.599152],[-1.890627,52.598063],[-1.88757,52.596684],[-1.884399,52.594428],[-1.878188,52.587707],[-1.875154,52.585693],[-1.872565,52.584945],[-1.870946,52.586757],[-1.863781,52.591225],[-1.854751,52.601311],[-1.852796,52.602493],[-1.848551,52.604653],[-1.844471,52.605224],[-1.836833,52.607354],[-1.832371,52.607807],[-1.827987,52.608715],[-1.811818,52.604409],[-1.803869,52.601332],[-1.801678,52.601073],[-1.797572,52.59917],[-1.796528,52.599123],[-1.794272,52.596103],[-1.795314,52.595099],[-1.792758,52.593779],[-1.789723,52.591543],[-1.788081,52.587863],[-1.783923,52.589107],[-1.781021,52.59126],[-1.776318,52.59222],[-1.774037,52.592127],[-1.773083,52.591041],[-1.770699,52.589395],[-1.768472,52.589116],[-1.762648,52.590542],[-1.755749,52.591665],[-1.751046,52.593409],[-1.745047,52.593735],[-1.741279,52.594321],[-1.739177,52.593538],[-1.740363,52.59023],[-1.739001,52.5893],[-1.737538,52.588995],[-1.733533,52.589082],[-1.733171,52.58857],[-1.730052,52.588308],[-1.729311,52.587933],[-1.727511,52.588327],[-1.724299,52.58844],[-1.723233,52.587834],[-1.717585,52.589115],[-1.713879,52.588818],[-1.707664,52.58745],[-1.703943,52.587633],[-1.704258,52.589227],[-1.70311,52.590255],[-1.700393,52.590913],[-1.701,52.591658],[-1.700354,52.593348],[-1.701893,52.59407],[-1.702302,52.594912],[-1.703701,52.5953],[-1.703745,52.596062],[-1.700429,52.597393],[-1.698619,52.597048],[-1.696257,52.598853],[-1.695126,52.598774],[-1.693245,52.601522],[-1.692948,52.603124],[-1.691294,52.603917],[-1.690294,52.605224],[-1.688752,52.605585],[-1.688964,52.606314],[-1.690752,52.606894],[-1.690956,52.609222],[-1.690328,52.610672],[-1.692078,52.612187],[-1.690587,52.614242],[-1.691453,52.617392],[-1.700255,52.615651],[-1.702207,52.61585],[-1.707522,52.619124],[-1.709527,52.621327],[-1.711835,52.625453],[-1.720944,52.628535],[-1.726121,52.632162],[-1.727387,52.632476],[-1.730279,52.632429],[-1.731228,52.632733],[-1.732124,52.634808],[-1.734956,52.635891],[-1.735802,52.637021],[-1.733031,52.63759],[-1.732628,52.638416],[-1.733623,52.63945],[-1.733452,52.640685],[-1.734148,52.641919],[-1.733616,52.642673],[-1.734466,52.644593],[-1.727222,52.645656],[-1.724498,52.646896],[-1.721407,52.647681],[-1.722864,52.649425],[-1.721536,52.649914],[-1.722553,52.651366],[-1.720499,52.651615],[-1.714092,52.651307],[-1.711428,52.650122],[-1.704423,52.650972],[-1.701539,52.650742],[-1.69418,52.651124],[-1.68966,52.650981],[-1.684312,52.647247],[-1.68131,52.64878],[-1.673204,52.650715],[-1.670752,52.651602],[-1.666474,52.652247],[-1.665395,52.652039],[-1.662688,52.652231],[-1.658401,52.653303],[-1.656116,52.654772],[-1.651576,52.655764],[-1.650471,52.656346],[-1.647261,52.657172],[-1.644943,52.657517],[-1.639399,52.658801],[-1.639197,52.659315],[-1.631252,52.662502],[-1.627977,52.663491],[-1.62814,52.663823],[-1.625552,52.66564],[-1.62003,52.6681],[-1.61559,52.668715],[-1.615544,52.67198],[-1.606083,52.673189],[-1.60393,52.674197],[-1.605066,52.676168],[-1.606206,52.677033],[-1.60392,52.677883],[-1.604283,52.678999],[-1.602104,52.679621],[-1.589645,52.687261],[-1.588464,52.690685],[-1.588614,52.692775],[-1.587082,52.694287],[-1.587989,52.695535],[-1.589748,52.696062],[-1.590882,52.698064],[-1.596998,52.70045],[-1.597541,52.700422],[-1.598568,52.700437],[-1.599644,52.698348],[-1.601003,52.69746],[-1.604003,52.696723],[-1.606762,52.696744],[-1.607822,52.697361],[-1.607556,52.698354],[-1.609858,52.698917],[-1.612111,52.69913],[-1.612548,52.699942],[-1.615375,52.700707],[-1.618403,52.699802],[-1.620908,52.69947],[-1.622372,52.698632],[-1.623228,52.697525],[-1.625251,52.697423],[-1.626292,52.698918],[-1.629451,52.700307],[-1.630309,52.700056],[-1.632924,52.700882],[-1.633702,52.702004],[-1.63632,52.702368],[-1.637713,52.701362],[-1.638208,52.700242],[-1.640942,52.699656],[-1.642359,52.700417],[-1.644683,52.699355],[-1.648521,52.698353],[-1.649379,52.699639],[-1.65261,52.699547],[-1.654421,52.699979],[-1.655055,52.701981],[-1.654151,52.703058],[-1.654302,52.708209],[-1.656343,52.708571],[-1.655911,52.710455],[-1.657733,52.710579],[-1.658209,52.712608],[-1.659291,52.714083],[-1.655678,52.715951],[-1.656214,52.717798],[-1.655929,52.719843],[-1.656608,52.721748],[-1.662614,52.723005],[-1.663023,52.723645],[-1.66917,52.723583],[-1.671396,52.724283],[-1.675595,52.72487],[-1.675434,52.72686],[-1.677944,52.727504],[-1.68209,52.727016],[-1.687823,52.727286],[-1.694021,52.726868],[-1.696952,52.727195],[-1.701326,52.728434],[-1.703241,52.729487],[-1.70451,52.731058],[-1.704158,52.732079]]]},"properties":{"LAD22CD":"E07000194","LAD22NM":"Lichfield","BNG_E":416283,"BNG_N":310967,"LONG":-1.76049,"LAT":52.69615,"GlobalID":"b3c31fc3-1a08-405d-83b8-1565bcca3613"},"id":196}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.181207,53.089797],[-2.18115,53.090545],[-2.183743,53.09342],[-2.184318,53.095252],[-2.185798,53.096079],[-2.18623,53.097702],[-2.188942,53.100534],[-2.189272,53.101432],[-2.193659,53.102341],[-2.195213,53.103816],[-2.19677,53.104617],[-2.199304,53.105283],[-2.200293,53.106391],[-2.203815,53.109594],[-2.205879,53.112475],[-2.209472,53.115306],[-2.211315,53.115824],[-2.212908,53.11505],[-2.21286,53.114303],[-2.2165,53.11155],[-2.217044,53.109997],[-2.218724,53.109022],[-2.22243,53.107622],[-2.22192,53.106837],[-2.222867,53.106043],[-2.223074,53.103795],[-2.224696,53.103605],[-2.227016,53.104128],[-2.230354,53.103767],[-2.231953,53.10311],[-2.233999,53.10294],[-2.237952,53.101047],[-2.238921,53.100019],[-2.238995,53.098273],[-2.240519,53.096555],[-2.242571,53.095151],[-2.243461,53.093834],[-2.246378,53.091611],[-2.246509,53.090217],[-2.247606,53.089829],[-2.249673,53.090716],[-2.249088,53.091635],[-2.250675,53.093089],[-2.253249,53.093977],[-2.253427,53.093071],[-2.255899,53.090674],[-2.258102,53.090224],[-2.260978,53.089009],[-2.267037,53.088147],[-2.268733,53.088479],[-2.269367,53.087549],[-2.271112,53.086731],[-2.277106,53.085905],[-2.274498,53.083854],[-2.275289,53.082189],[-2.278497,53.080913],[-2.285026,53.079735],[-2.288486,53.079759],[-2.290657,53.078904],[-2.29195,53.078961],[-2.294461,53.078296],[-2.295442,53.079253],[-2.295767,53.080397],[-2.296738,53.080983],[-2.299804,53.081392],[-2.301469,53.081215],[-2.301893,53.08206],[-2.303397,53.082961],[-2.306251,53.082538],[-2.309647,53.08246],[-2.314959,53.081038],[-2.31842,53.081216],[-2.322408,53.078991],[-2.32371,53.077656],[-2.32901,53.07658],[-2.329501,53.075284],[-2.328825,53.074038],[-2.329961,53.073177],[-2.330515,53.07086],[-2.331799,53.069601],[-2.335875,53.067407],[-2.336253,53.06634],[-2.338848,53.064421],[-2.339095,53.06317],[-2.341448,53.059996],[-2.344482,53.059047],[-2.346552,53.056979],[-2.348595,53.055826],[-2.350001,53.057067],[-2.351646,53.05729],[-2.353735,53.058849],[-2.35668,53.058215],[-2.357579,53.054718],[-2.359429,53.05474],[-2.361501,53.054105],[-2.361719,53.055097],[-2.366601,53.054553],[-2.370293,53.054811],[-2.373619,53.054204],[-2.37506,53.054531],[-2.376201,53.052971],[-2.377462,53.052607],[-2.381249,53.052551],[-2.382193,53.05116],[-2.380728,53.04966],[-2.383278,53.04851],[-2.38358,53.047429],[-2.382159,53.04585],[-2.383529,53.045554],[-2.382476,53.044222],[-2.382536,53.042888],[-2.383867,53.040817],[-2.384552,53.038448],[-2.383845,53.036595],[-2.384287,53.033896],[-2.386171,53.033564],[-2.384161,53.031812],[-2.382637,53.031537],[-2.381308,53.030565],[-2.379785,53.027591],[-2.384228,53.026168],[-2.381292,53.024153],[-2.38144,53.023826],[-2.377519,53.019957],[-2.370468,53.014576],[-2.373095,53.013264],[-2.373301,53.011689],[-2.374706,53.010602],[-2.376358,53.010183],[-2.378314,53.010388],[-2.380998,53.008548],[-2.383045,53.007787],[-2.381791,53.006909],[-2.380806,53.005202],[-2.380978,53.004051],[-2.380148,53.002092],[-2.379992,53.000808],[-2.380805,52.999722],[-2.380794,52.998411],[-2.379876,52.998045],[-2.377991,52.998257],[-2.376609,52.997644],[-2.377285,52.995646],[-2.376251,52.9945],[-2.376698,52.993676],[-2.378621,52.992951],[-2.378817,52.991992],[-2.379807,52.991066],[-2.378661,52.989847],[-2.377573,52.989388],[-2.375984,52.98653],[-2.375077,52.986243],[-2.373508,52.983568],[-2.371536,52.982953],[-2.370269,52.982162],[-2.368731,52.979359],[-2.370737,52.977466],[-2.373622,52.976452],[-2.374377,52.975645],[-2.376383,52.974766],[-2.379068,52.975215],[-2.379718,52.976065],[-2.381808,52.971509],[-2.382832,52.970658],[-2.379132,52.969276],[-2.379097,52.967868],[-2.377142,52.964935],[-2.379003,52.963906],[-2.380902,52.96228],[-2.38258,52.961685],[-2.38475,52.959822],[-2.386275,52.954366],[-2.386164,52.953273],[-2.387271,52.952699],[-2.391776,52.952132],[-2.393767,52.950579],[-2.397952,52.957392],[-2.399154,52.960631],[-2.402875,52.961247],[-2.40282,52.961614],[-2.405986,52.962346],[-2.410585,52.962347],[-2.410768,52.96111],[-2.412899,52.96174],[-2.413795,52.960831],[-2.410362,52.959268],[-2.408285,52.958868],[-2.407176,52.957877],[-2.407027,52.955746],[-2.405307,52.953218],[-2.405604,52.950606],[-2.404662,52.948984],[-2.404894,52.94835],[-2.408584,52.946872],[-2.410356,52.947247],[-2.413542,52.946602],[-2.414043,52.947686],[-2.416071,52.948433],[-2.416686,52.94907],[-2.418178,52.94893],[-2.418952,52.949606],[-2.420663,52.948872],[-2.425269,52.949998],[-2.427682,52.948917],[-2.428356,52.947113],[-2.42938,52.94635],[-2.432279,52.945595],[-2.433909,52.94449],[-2.437123,52.943599],[-2.43771,52.942612],[-2.437286,52.941771],[-2.439424,52.940484],[-2.441015,52.936923],[-2.443563,52.934196],[-2.444105,52.932661],[-2.445492,52.932002],[-2.445902,52.930448],[-2.446883,52.928628],[-2.448884,52.928359],[-2.450478,52.927588],[-2.450219,52.925866],[-2.450648,52.925088],[-2.453383,52.92591],[-2.455835,52.925683],[-2.456255,52.922922],[-2.457507,52.921437],[-2.457577,52.920197],[-2.456458,52.919886],[-2.455993,52.918767],[-2.456748,52.917866],[-2.455592,52.916607],[-2.455713,52.915501],[-2.456824,52.914107],[-2.459585,52.913355],[-2.460855,52.909384],[-2.462043,52.908395],[-2.463921,52.908048],[-2.466053,52.907067],[-2.467139,52.907086],[-2.468784,52.906316],[-2.470841,52.905869],[-2.469788,52.903873],[-2.468231,52.897059],[-2.465244,52.892162],[-2.462389,52.889006],[-2.457193,52.886178],[-2.456173,52.884332],[-2.457684,52.880846],[-2.45732,52.879943],[-2.455911,52.879536],[-2.454852,52.877492],[-2.451436,52.878173],[-2.449069,52.874946],[-2.446142,52.874008],[-2.444861,52.874859],[-2.44202,52.880668],[-2.440412,52.881227],[-2.43835,52.881266],[-2.435608,52.881833],[-2.431547,52.881713],[-2.428038,52.88225],[-2.425851,52.882002],[-2.424083,52.883671],[-2.420339,52.885223],[-2.419291,52.886742],[-2.416577,52.885856],[-2.41481,52.884944],[-2.411858,52.88789],[-2.407443,52.88759],[-2.40541,52.888219],[-2.40308,52.887946],[-2.400554,52.888831],[-2.398982,52.888714],[-2.396032,52.88955],[-2.393994,52.888592],[-2.392235,52.888616],[-2.390473,52.889067],[-2.386603,52.888574],[-2.384428,52.89036],[-2.382637,52.891112],[-2.380266,52.891082],[-2.378938,52.891721],[-2.379692,52.89398],[-2.380573,52.894952],[-2.380801,52.896558],[-2.382262,52.897144],[-2.3827,52.897897],[-2.382132,52.899455],[-2.382459,52.901435],[-2.381169,52.902827],[-2.380874,52.903872],[-2.382449,52.905591],[-2.382675,52.906349],[-2.379203,52.91062],[-2.379172,52.912887],[-2.377109,52.913266],[-2.373501,52.914616],[-2.371732,52.91461],[-2.369149,52.915667],[-2.368704,52.916275],[-2.366554,52.916724],[-2.365274,52.917601],[-2.361511,52.917571],[-2.357917,52.918597],[-2.354654,52.918049],[-2.353261,52.917071],[-2.350846,52.916344],[-2.350677,52.915806],[-2.348288,52.914959],[-2.347371,52.91411],[-2.346153,52.916753],[-2.343188,52.920065],[-2.341415,52.921652],[-2.340052,52.92205],[-2.339,52.923097],[-2.336452,52.924372],[-2.33319,52.926618],[-2.332857,52.928134],[-2.33035,52.928802],[-2.328078,52.92996],[-2.325302,52.92994],[-2.322596,52.93062],[-2.319612,52.932444],[-2.312368,52.930312],[-2.310629,52.931124],[-2.308798,52.930644],[-2.305954,52.932347],[-2.302052,52.930042],[-2.301155,52.930647],[-2.297816,52.931255],[-2.29641,52.931948],[-2.293503,52.930327],[-2.293196,52.92967],[-2.288902,52.928392],[-2.286,52.927109],[-2.285475,52.926618],[-2.28224,52.926907],[-2.27765,52.925917],[-2.276121,52.924679],[-2.27267,52.924467],[-2.269349,52.923303],[-2.264112,52.923696],[-2.262585,52.92759],[-2.263278,52.930304],[-2.26465,52.930399],[-2.26407,52.933599],[-2.263265,52.933965],[-2.265164,52.935016],[-2.267363,52.937735],[-2.270699,52.939134],[-2.272123,52.940682],[-2.273149,52.941162],[-2.273444,52.943325],[-2.274794,52.944376],[-2.27533,52.946545],[-2.276855,52.94776],[-2.277387,52.949288],[-2.277031,52.950162],[-2.27802,52.951247],[-2.275416,52.953893],[-2.274576,52.954318],[-2.273328,52.957757],[-2.269751,52.961795],[-2.270225,52.963372],[-2.268375,52.963662],[-2.267355,52.963193],[-2.264404,52.962849],[-2.263653,52.963506],[-2.262566,52.96569],[-2.258702,52.965079],[-2.255849,52.965611],[-2.254281,52.96407],[-2.252451,52.964428],[-2.252288,52.965636],[-2.251084,52.966394],[-2.245925,52.968263],[-2.238544,52.972052],[-2.236057,52.972708],[-2.234393,52.972584],[-2.232137,52.973819],[-2.232037,52.975041],[-2.229996,52.975795],[-2.229471,52.975375],[-2.227104,52.976375],[-2.224505,52.975951],[-2.22395,52.976989],[-2.221095,52.978703],[-2.22036,52.979517],[-2.217926,52.9805],[-2.216491,52.980319],[-2.212514,52.980579],[-2.208037,52.980637],[-2.204341,52.981398],[-2.206414,52.982866],[-2.208419,52.983204],[-2.20885,52.984045],[-2.210346,52.984779],[-2.210314,52.986906],[-2.211535,52.987159],[-2.212465,52.988184],[-2.211891,52.988647],[-2.213197,52.992477],[-2.212402,52.993347],[-2.213446,52.994473],[-2.213218,52.996484],[-2.216103,53.001432],[-2.215959,53.00246],[-2.217782,53.003988],[-2.214537,53.00614],[-2.211496,53.007035],[-2.213025,53.009756],[-2.214586,53.009463],[-2.215651,53.010881],[-2.21517,53.012454],[-2.215487,53.015305],[-2.213655,53.015964],[-2.20833,53.016716],[-2.202553,53.020024],[-2.204965,53.02314],[-2.206574,53.031554],[-2.209652,53.036264],[-2.219166,53.043738],[-2.221992,53.049875],[-2.227918,53.063731],[-2.230543,53.063422],[-2.23279,53.063719],[-2.23414,53.064393],[-2.233511,53.066218],[-2.236642,53.06788],[-2.237032,53.06955],[-2.238508,53.071171],[-2.237615,53.07241],[-2.238762,53.073339],[-2.237442,53.074337],[-2.236066,53.074766],[-2.234895,53.075903],[-2.234066,53.075622],[-2.231419,53.078026],[-2.23008,53.077742],[-2.227388,53.079539],[-2.226594,53.078977],[-2.224846,53.079484],[-2.221645,53.081024],[-2.220717,53.082162],[-2.216795,53.082686],[-2.21664,53.084646],[-2.215879,53.08531],[-2.214034,53.085681],[-2.211518,53.08674],[-2.210052,53.08562],[-2.207137,53.087048],[-2.205124,53.086742],[-2.201371,53.0867],[-2.201992,53.088004],[-2.201544,53.08903],[-2.199586,53.089469],[-2.200388,53.0917],[-2.198615,53.092719],[-2.196779,53.092396],[-2.196052,53.09176],[-2.194054,53.091414],[-2.192178,53.090687],[-2.188911,53.090085],[-2.18495,53.090134],[-2.181789,53.08938],[-2.181207,53.089797]]]},"properties":{"LAD22CD":"E07000195","LAD22NM":"Newcastle-under-Lyme","BNG_E":378199,"BNG_N":345174,"LONG":-2.32631,"LAT":53.00345,"GlobalID":"5375fc04-6382-4908-b6d3-2d8d0399df2b"},"id":197}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.026802,52.736318],[-2.028965,52.739775],[-2.031285,52.742226],[-2.032348,52.745683],[-2.033708,52.747222],[-2.037355,52.754422],[-2.042766,52.760767],[-2.044515,52.762092],[-2.047143,52.763621],[-2.047627,52.763173],[-2.051597,52.761574],[-2.053888,52.763129],[-2.053483,52.763761],[-2.055972,52.765372],[-2.060541,52.764639],[-2.063284,52.765606],[-2.064135,52.765339],[-2.066424,52.765995],[-2.072676,52.766622],[-2.074363,52.766532],[-2.076164,52.766967],[-2.073228,52.769469],[-2.069381,52.770875],[-2.067803,52.772443],[-2.065964,52.773547],[-2.068469,52.774647],[-2.069988,52.775877],[-2.074732,52.778424],[-2.077663,52.780449],[-2.079328,52.779787],[-2.081607,52.779562],[-2.086033,52.779921],[-2.087148,52.780668],[-2.089277,52.78102],[-2.091669,52.780707],[-2.095089,52.78109],[-2.094967,52.782317],[-2.096161,52.78389],[-2.093861,52.786207],[-2.095164,52.786433],[-2.096225,52.785129],[-2.099112,52.784722],[-2.097543,52.782746],[-2.098737,52.782099],[-2.09866,52.780724],[-2.099408,52.779864],[-2.100078,52.775911],[-2.098874,52.774728],[-2.098961,52.773233],[-2.100225,52.773101],[-2.102849,52.769822],[-2.105592,52.770346],[-2.107636,52.771668],[-2.109059,52.771101],[-2.111004,52.771602],[-2.1123,52.7706],[-2.112004,52.769691],[-2.114402,52.769112],[-2.116661,52.769205],[-2.116756,52.76981],[-2.124085,52.773284],[-2.128031,52.774751],[-2.129398,52.775859],[-2.130484,52.776114],[-2.132772,52.775841],[-2.134725,52.775988],[-2.13427,52.777657],[-2.137358,52.777737],[-2.136978,52.778495],[-2.137312,52.780192],[-2.138301,52.781882],[-2.13791,52.78249],[-2.138445,52.783739],[-2.141269,52.784121],[-2.147044,52.782584],[-2.145994,52.781643],[-2.149615,52.780025],[-2.150575,52.778631],[-2.151392,52.77503],[-2.154223,52.773079],[-2.156173,52.772576],[-2.154516,52.771237],[-2.155777,52.768675],[-2.155662,52.764246],[-2.156171,52.763026],[-2.15787,52.762357],[-2.159323,52.760355],[-2.157523,52.759275],[-2.155388,52.758607],[-2.157634,52.75737],[-2.15802,52.754605],[-2.161136,52.754741],[-2.159741,52.753478],[-2.160511,52.751179],[-2.159253,52.749906],[-2.159806,52.749436],[-2.158773,52.748278],[-2.158533,52.746866],[-2.159628,52.745389],[-2.159592,52.743697],[-2.160825,52.742688],[-2.163844,52.741242],[-2.165556,52.742212],[-2.168103,52.743213],[-2.168985,52.744583],[-2.173019,52.745002],[-2.173304,52.744449],[-2.177901,52.744011],[-2.178066,52.740911],[-2.177042,52.739052],[-2.178503,52.736703],[-2.179823,52.737024],[-2.180369,52.736188],[-2.183111,52.735953],[-2.183752,52.735198],[-2.186408,52.734981],[-2.187729,52.732989],[-2.188706,52.732857],[-2.191202,52.733373],[-2.194229,52.73326],[-2.196779,52.734648],[-2.200101,52.733712],[-2.201943,52.731978],[-2.206827,52.732058],[-2.216802,52.73292],[-2.218272,52.732368],[-2.217476,52.729635],[-2.220039,52.726314],[-2.219859,52.725941],[-2.226042,52.726133],[-2.228077,52.725642],[-2.229324,52.724796],[-2.231031,52.724441],[-2.23419,52.723233],[-2.236096,52.721736],[-2.239827,52.720344],[-2.241325,52.717969],[-2.24262,52.717615],[-2.243365,52.716289],[-2.245347,52.715164],[-2.247019,52.715047],[-2.248653,52.715563],[-2.250654,52.715547],[-2.254816,52.716854],[-2.25685,52.717849],[-2.258378,52.720679],[-2.258281,52.724747],[-2.257082,52.725805],[-2.256273,52.727721],[-2.253959,52.728132],[-2.255728,52.730504],[-2.262669,52.729836],[-2.263214,52.73076],[-2.265041,52.7317],[-2.265261,52.73301],[-2.264796,52.73411],[-2.266593,52.737284],[-2.267915,52.737992],[-2.269833,52.737757],[-2.273901,52.737756],[-2.273956,52.739989],[-2.274956,52.742789],[-2.277091,52.742261],[-2.277717,52.741251],[-2.280634,52.740572],[-2.283204,52.740532],[-2.285244,52.742637],[-2.287665,52.743262],[-2.290933,52.74321],[-2.292302,52.742269],[-2.29591,52.743446],[-2.297884,52.742316],[-2.299393,52.740721],[-2.301588,52.740761],[-2.305653,52.739937],[-2.307499,52.73982],[-2.310644,52.74031],[-2.312201,52.740863],[-2.313009,52.7394],[-2.313047,52.737921],[-2.314069,52.737314],[-2.31568,52.738303],[-2.316718,52.737976],[-2.315004,52.736352],[-2.315635,52.735094],[-2.315576,52.732947],[-2.314876,52.731554],[-2.315778,52.730576],[-2.316453,52.728218],[-2.314679,52.724555],[-2.308604,52.720746],[-2.317058,52.713312],[-2.319006,52.711036],[-2.321845,52.709046],[-2.323634,52.706145],[-2.324834,52.705336],[-2.32333,52.70248],[-2.322974,52.700793],[-2.320657,52.697808],[-2.319908,52.695398],[-2.31358,52.695409],[-2.313206,52.693704],[-2.307995,52.693332],[-2.307695,52.690568],[-2.304184,52.685878],[-2.303879,52.684191],[-2.303041,52.682953],[-2.29571,52.683267],[-2.292062,52.682182],[-2.287178,52.681245],[-2.280563,52.681545],[-2.277579,52.680995],[-2.273677,52.679776],[-2.266692,52.681343],[-2.264203,52.682684],[-2.261457,52.682882],[-2.257438,52.681876],[-2.251788,52.681741],[-2.250072,52.682896],[-2.24773,52.683074],[-2.24668,52.681057],[-2.244685,52.680991],[-2.243705,52.679933],[-2.244221,52.677883],[-2.243845,52.675916],[-2.242544,52.673115],[-2.240224,52.671624],[-2.240343,52.668966],[-2.239487,52.666814],[-2.239774,52.664941],[-2.238716,52.663701],[-2.238917,52.661905],[-2.246375,52.657915],[-2.247688,52.65666],[-2.242199,52.656507],[-2.23737,52.655902],[-2.234794,52.655873],[-2.235579,52.652632],[-2.23747,52.65109],[-2.236566,52.650591],[-2.235484,52.648498],[-2.232895,52.647694],[-2.234767,52.643233],[-2.235557,52.639855],[-2.236478,52.63873],[-2.236887,52.636067],[-2.238803,52.634051],[-2.240859,52.633342],[-2.243676,52.63105],[-2.243607,52.630042],[-2.246001,52.628271],[-2.246527,52.62681],[-2.247793,52.625456],[-2.248957,52.622776],[-2.250118,52.621857],[-2.250901,52.619835],[-2.250511,52.618256],[-2.252058,52.61695],[-2.253151,52.614007],[-2.255566,52.611014],[-2.255804,52.609983],[-2.257318,52.609796],[-2.263059,52.610675],[-2.268001,52.610232],[-2.270859,52.609648],[-2.274122,52.607628],[-2.279306,52.605814],[-2.283387,52.606002],[-2.290656,52.607795],[-2.297733,52.607008],[-2.309601,52.607401],[-2.311004,52.611063],[-2.313462,52.614055],[-2.315809,52.61469],[-2.320972,52.614608],[-2.3238,52.612953],[-2.323351,52.611957],[-2.323628,52.61014],[-2.32416,52.609613],[-2.323924,52.602977],[-2.325475,52.600099],[-2.325071,52.59915],[-2.323349,52.597717],[-2.322025,52.593636],[-2.318004,52.593466],[-2.308546,52.591094],[-2.306988,52.591441],[-2.302341,52.593364],[-2.301016,52.593243],[-2.298839,52.591918],[-2.300684,52.590232],[-2.30013,52.58881],[-2.296055,52.588314],[-2.294098,52.587269],[-2.294421,52.584953],[-2.289501,52.585584],[-2.281052,52.584296],[-2.278093,52.582958],[-2.278121,52.581795],[-2.273991,52.579809],[-2.270288,52.575569],[-2.262803,52.57031],[-2.262007,52.5687],[-2.263381,52.568016],[-2.26177,52.566355],[-2.261786,52.563824],[-2.260836,52.563158],[-2.26381,52.562587],[-2.267212,52.561491],[-2.268706,52.560468],[-2.26995,52.560246],[-2.271665,52.558712],[-2.274214,52.557406],[-2.278589,52.554388],[-2.279045,52.553192],[-2.282477,52.553396],[-2.281409,52.552523],[-2.276507,52.552028],[-2.267931,52.550151],[-2.26573,52.549313],[-2.262541,52.546707],[-2.260437,52.544376],[-2.256405,52.541796],[-2.261541,52.539061],[-2.264228,52.537008],[-2.269216,52.530689],[-2.263297,52.527532],[-2.261135,52.526818],[-2.260943,52.524102],[-2.261592,52.523562],[-2.27066,52.51995],[-2.273228,52.519199],[-2.281417,52.515537],[-2.286254,52.514162],[-2.288301,52.512895],[-2.29139,52.51168],[-2.293243,52.509987],[-2.293067,52.50951],[-2.296087,52.506808],[-2.296295,52.505654],[-2.298421,52.503286],[-2.30208,52.501297],[-2.306444,52.499856],[-2.307837,52.498356],[-2.307695,52.495149],[-2.308667,52.494496],[-2.312749,52.489209],[-2.311664,52.486709],[-2.31041,52.486192],[-2.310175,52.484995],[-2.309021,52.483157],[-2.307248,52.482489],[-2.306277,52.482732],[-2.303969,52.481486],[-2.29563,52.473892],[-2.294586,52.470675],[-2.294771,52.469543],[-2.292692,52.467677],[-2.291239,52.465501],[-2.291152,52.46406],[-2.289884,52.462691],[-2.288899,52.460641],[-2.289061,52.459325],[-2.290731,52.458496],[-2.290997,52.456746],[-2.287383,52.455317],[-2.286096,52.454752],[-2.294964,52.448948],[-2.291087,52.448456],[-2.28714,52.446619],[-2.287187,52.445654],[-2.285953,52.444535],[-2.286068,52.443842],[-2.279431,52.44341],[-2.275232,52.440253],[-2.272042,52.439722],[-2.269505,52.438616],[-2.266677,52.439218],[-2.264763,52.440381],[-2.262731,52.440705],[-2.261927,52.439337],[-2.261503,52.436941],[-2.260225,52.437212],[-2.256092,52.43715],[-2.254277,52.437636],[-2.248638,52.437769],[-2.244,52.437378],[-2.240551,52.436386],[-2.226747,52.435126],[-2.219209,52.435111],[-2.217877,52.435368],[-2.216638,52.434552],[-2.217348,52.43389],[-2.215995,52.433345],[-2.215685,52.432144],[-2.214673,52.431873],[-2.212112,52.432708],[-2.211352,52.430435],[-2.208593,52.429411],[-2.206441,52.429498],[-2.203699,52.428595],[-2.202639,52.427753],[-2.200837,52.427127],[-2.196996,52.427755],[-2.196327,52.427176],[-2.196948,52.425638],[-2.196346,52.424827],[-2.192876,52.423292],[-2.191387,52.423681],[-2.189046,52.425244],[-2.185809,52.42621],[-2.184029,52.425915],[-2.181701,52.424906],[-2.180692,52.425159],[-2.172043,52.425034],[-2.167707,52.42378],[-2.163811,52.423258],[-2.164171,52.423908],[-2.16406,52.427823],[-2.164851,52.430204],[-2.170319,52.439073],[-2.171263,52.44143],[-2.171789,52.441647],[-2.17537,52.453009],[-2.17642,52.454552],[-2.17635,52.455979],[-2.174924,52.458578],[-2.173889,52.461139],[-2.17426,52.463813],[-2.171554,52.465898],[-2.169362,52.469329],[-2.167513,52.471216],[-2.169097,52.472388],[-2.171805,52.472586],[-2.173764,52.474226],[-2.177873,52.479366],[-2.178482,52.482696],[-2.177631,52.485116],[-2.179516,52.488797],[-2.182248,52.49315],[-2.184269,52.49288],[-2.185176,52.494813],[-2.18866,52.494507],[-2.184609,52.500007],[-2.184784,52.500347],[-2.191749,52.503397],[-2.189421,52.504762],[-2.186619,52.504787],[-2.187684,52.506078],[-2.187983,52.508363],[-2.185647,52.50853],[-2.180516,52.510249],[-2.180256,52.510756],[-2.178244,52.511649],[-2.173817,52.512319],[-2.172805,52.51284],[-2.168386,52.513514],[-2.167153,52.513395],[-2.164637,52.514641],[-2.162073,52.51416],[-2.155176,52.515261],[-2.15267,52.515042],[-2.150548,52.514137],[-2.148781,52.514695],[-2.144124,52.517169],[-2.145289,52.517731],[-2.144517,52.51962],[-2.144583,52.521384],[-2.146043,52.52266],[-2.146066,52.523338],[-2.148099,52.523725],[-2.149847,52.524803],[-2.151569,52.525253],[-2.151989,52.526199],[-2.147025,52.528024],[-2.145944,52.528693],[-2.145974,52.529442],[-2.14423,52.530432],[-2.139387,52.532677],[-2.137376,52.533294],[-2.136749,52.534923],[-2.136309,52.537492],[-2.136889,52.538057],[-2.136485,52.54027],[-2.135813,52.540729],[-2.135473,52.543379],[-2.136789,52.543445],[-2.136962,52.544978],[-2.136055,52.545509],[-2.136827,52.546822],[-2.139151,52.548065],[-2.13489,52.551738],[-2.133457,52.553445],[-2.133487,52.554067],[-2.134922,52.554547],[-2.139066,52.558072],[-2.140957,52.558539],[-2.142236,52.557771],[-2.143695,52.555836],[-2.145274,52.554738],[-2.146793,52.55568],[-2.148917,52.554765],[-2.153249,52.554792],[-2.153055,52.553675],[-2.155342,52.553948],[-2.157361,52.55359],[-2.157721,52.554872],[-2.160034,52.55527],[-2.165569,52.555687],[-2.165006,52.553867],[-2.167081,52.553778],[-2.169044,52.554206],[-2.170143,52.556033],[-2.173049,52.554641],[-2.175535,52.554407],[-2.176391,52.556482],[-2.175935,52.559789],[-2.174807,52.560083],[-2.175526,52.564487],[-2.179632,52.56399],[-2.180959,52.566396],[-2.176975,52.566958],[-2.179206,52.571107],[-2.178573,52.57107],[-2.180337,52.574505],[-2.182589,52.574109],[-2.183445,52.576944],[-2.188278,52.574175],[-2.189432,52.57727],[-2.196406,52.577918],[-2.198121,52.579045],[-2.201803,52.57878],[-2.203323,52.581201],[-2.202189,52.58165],[-2.203963,52.583863],[-2.200057,52.583461],[-2.201253,52.585226],[-2.206696,52.585179],[-2.206877,52.586583],[-2.204201,52.586576],[-2.202474,52.58693],[-2.200563,52.58858],[-2.197836,52.588159],[-2.193477,52.58868],[-2.18931,52.588609],[-2.188497,52.59061],[-2.188424,52.594865],[-2.190938,52.602228],[-2.191932,52.603359],[-2.193045,52.603609],[-2.194602,52.605335],[-2.196384,52.60503],[-2.196697,52.60616],[-2.195199,52.607066],[-2.192093,52.606925],[-2.191954,52.607992],[-2.188535,52.608103],[-2.18721,52.60901],[-2.186617,52.606467],[-2.184255,52.606658],[-2.183902,52.606067],[-2.180314,52.604901],[-2.177688,52.607355],[-2.17375,52.609243],[-2.172454,52.610275],[-2.17102,52.610645],[-2.170715,52.609132],[-2.169157,52.609338],[-2.169553,52.610435],[-2.167611,52.611443],[-2.170964,52.614334],[-2.169291,52.615075],[-2.165864,52.615888],[-2.165017,52.616513],[-2.169524,52.618229],[-2.168357,52.618991],[-2.168463,52.619893],[-2.167499,52.620412],[-2.164612,52.619124],[-2.161732,52.61913],[-2.162787,52.621222],[-2.160288,52.621788],[-2.156053,52.623822],[-2.151554,52.624591],[-2.152427,52.627179],[-2.153023,52.627678],[-2.152983,52.629753],[-2.140286,52.629923],[-2.137239,52.629646],[-2.135087,52.632635],[-2.131544,52.635398],[-2.131644,52.637623],[-2.128673,52.637626],[-2.125973,52.637259],[-2.113801,52.63791],[-2.111635,52.635139],[-2.110252,52.635453],[-2.10937,52.634562],[-2.106635,52.634544],[-2.104995,52.635311],[-2.101251,52.635055],[-2.100813,52.633465],[-2.099249,52.632762],[-2.098571,52.631905],[-2.098923,52.628446],[-2.097983,52.627317],[-2.097319,52.625705],[-2.097375,52.623772],[-2.09481,52.620728],[-2.093175,52.619879],[-2.088396,52.619831],[-2.086268,52.616909],[-2.084921,52.613885],[-2.083112,52.612565],[-2.081782,52.612669],[-2.081002,52.611905],[-2.071747,52.612788],[-2.069878,52.612681],[-2.067326,52.612076],[-2.067356,52.613859],[-2.068707,52.618117],[-2.064522,52.619459],[-2.064,52.620746],[-2.059341,52.621679],[-2.052857,52.622216],[-2.050592,52.621213],[-2.050718,52.620523],[-2.048486,52.620551],[-2.047379,52.621422],[-2.030123,52.616954],[-2.032091,52.618733],[-2.032008,52.619465],[-2.035509,52.621799],[-2.030528,52.624003],[-2.030855,52.624725],[-2.028974,52.625507],[-2.026494,52.625578],[-2.025345,52.625019],[-2.02408,52.625286],[-2.020225,52.628094],[-2.018884,52.628571],[-2.016111,52.630255],[-2.014372,52.633167],[-2.012528,52.633469],[-2.010018,52.634617],[-2.00757,52.634805],[-2.003846,52.637153],[-1.995737,52.638321],[-1.993279,52.63817],[-1.990856,52.636672],[-1.988688,52.639137],[-1.986551,52.640409],[-1.985117,52.641613],[-1.983737,52.643609],[-1.991536,52.644652],[-1.992883,52.645336],[-1.992781,52.646101],[-1.994255,52.648014],[-1.993626,52.64925],[-1.994126,52.650274],[-1.99332,52.650908],[-1.993451,52.653076],[-1.996261,52.655155],[-1.997748,52.656771],[-1.997646,52.657842],[-2.000309,52.660012],[-2.001064,52.662417],[-2.000777,52.665096],[-2.001704,52.666052],[-2.001292,52.666737],[-2.002253,52.667603],[-2.005835,52.669528],[-2.013508,52.669536],[-2.015801,52.670541],[-2.016793,52.671803],[-2.019132,52.672749],[-2.022252,52.672557],[-2.025241,52.671793],[-2.026435,52.671848],[-2.028263,52.670978],[-2.035508,52.671172],[-2.041075,52.673666],[-2.04165,52.675196],[-2.042934,52.675898],[-2.045789,52.676018],[-2.047585,52.677547],[-2.050043,52.677212],[-2.051314,52.677974],[-2.051908,52.679002],[-2.051541,52.679744],[-2.049494,52.681506],[-2.049687,52.684577],[-2.05163,52.686122],[-2.051647,52.686978],[-2.052962,52.687974],[-2.054632,52.690059],[-2.052018,52.691268],[-2.047664,52.694178],[-2.044834,52.698434],[-2.040779,52.701764],[-2.036525,52.703635],[-2.031092,52.705104],[-2.030625,52.712153],[-2.029849,52.714011],[-2.026255,52.724679],[-2.027035,52.725823],[-2.026036,52.72665],[-2.025249,52.728394],[-2.025791,52.731916],[-2.025326,52.734597],[-2.026802,52.736318]]]},"properties":{"LAD22CD":"E07000196","LAD22NM":"South Staffordshire","BNG_E":389625,"BNG_N":311037,"LONG":-2.15495,"LAT":52.69692,"GlobalID":"33a7babc-490d-4381-87f5-e756e0005e13"},"id":198}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.212514,52.980579],[-2.216491,52.980319],[-2.217926,52.9805],[-2.22036,52.979517],[-2.221095,52.978703],[-2.22395,52.976989],[-2.224505,52.975951],[-2.227104,52.976375],[-2.229471,52.975375],[-2.229996,52.975795],[-2.232037,52.975041],[-2.232137,52.973819],[-2.234393,52.972584],[-2.236057,52.972708],[-2.238544,52.972052],[-2.245925,52.968263],[-2.251084,52.966394],[-2.252288,52.965636],[-2.252451,52.964428],[-2.254281,52.96407],[-2.255849,52.965611],[-2.258702,52.965079],[-2.262566,52.96569],[-2.263653,52.963506],[-2.264404,52.962849],[-2.267355,52.963193],[-2.268375,52.963662],[-2.270225,52.963372],[-2.269751,52.961795],[-2.273328,52.957757],[-2.274576,52.954318],[-2.275416,52.953893],[-2.27802,52.951247],[-2.277031,52.950162],[-2.277387,52.949288],[-2.276855,52.94776],[-2.27533,52.946545],[-2.274794,52.944376],[-2.273444,52.943325],[-2.273149,52.941162],[-2.272123,52.940682],[-2.270699,52.939134],[-2.267363,52.937735],[-2.265164,52.935016],[-2.263265,52.933965],[-2.26407,52.933599],[-2.26465,52.930399],[-2.263278,52.930304],[-2.262585,52.92759],[-2.264112,52.923696],[-2.269349,52.923303],[-2.27267,52.924467],[-2.276121,52.924679],[-2.27765,52.925917],[-2.28224,52.926907],[-2.285475,52.926618],[-2.286,52.927109],[-2.288902,52.928392],[-2.293196,52.92967],[-2.293503,52.930327],[-2.29641,52.931948],[-2.297816,52.931255],[-2.301155,52.930647],[-2.302052,52.930042],[-2.305954,52.932347],[-2.308798,52.930644],[-2.310629,52.931124],[-2.312368,52.930312],[-2.319612,52.932444],[-2.322596,52.93062],[-2.325302,52.92994],[-2.328078,52.92996],[-2.33035,52.928802],[-2.332857,52.928134],[-2.33319,52.926618],[-2.336452,52.924372],[-2.339,52.923097],[-2.340052,52.92205],[-2.341415,52.921652],[-2.343188,52.920065],[-2.346153,52.916753],[-2.347371,52.91411],[-2.348288,52.914959],[-2.350677,52.915806],[-2.350846,52.916344],[-2.353261,52.917071],[-2.354654,52.918049],[-2.357917,52.918597],[-2.361511,52.917571],[-2.365274,52.917601],[-2.366554,52.916724],[-2.368704,52.916275],[-2.369149,52.915667],[-2.371732,52.91461],[-2.373501,52.914616],[-2.377109,52.913266],[-2.379172,52.912887],[-2.379203,52.91062],[-2.382675,52.906349],[-2.382449,52.905591],[-2.380874,52.903872],[-2.381169,52.902827],[-2.382459,52.901435],[-2.382132,52.899455],[-2.3827,52.897897],[-2.382262,52.897144],[-2.380801,52.896558],[-2.380573,52.894952],[-2.379692,52.89398],[-2.378938,52.891721],[-2.375379,52.891473],[-2.377586,52.887638],[-2.376871,52.884554],[-2.379166,52.88351],[-2.378945,52.881669],[-2.379481,52.880894],[-2.381179,52.880021],[-2.382512,52.87661],[-2.382404,52.875699],[-2.380545,52.873133],[-2.381156,52.867063],[-2.382223,52.865756],[-2.388496,52.862234],[-2.388202,52.861221],[-2.386739,52.859972],[-2.389333,52.857224],[-2.388371,52.855785],[-2.389725,52.854548],[-2.389779,52.851807],[-2.391433,52.849926],[-2.39276,52.846911],[-2.392528,52.845621],[-2.393191,52.842404],[-2.394269,52.841042],[-2.393521,52.838697],[-2.394068,52.837913],[-2.393756,52.83662],[-2.395735,52.834421],[-2.397091,52.833854],[-2.400875,52.833731],[-2.403609,52.834854],[-2.407656,52.834605],[-2.409344,52.83359],[-2.409704,52.832567],[-2.412718,52.831047],[-2.413782,52.829607],[-2.415337,52.82914],[-2.415542,52.827711],[-2.416347,52.827006],[-2.397754,52.820014],[-2.377655,52.811643],[-2.378707,52.810844],[-2.377118,52.81031],[-2.375904,52.809238],[-2.37598,52.808072],[-2.377653,52.807147],[-2.377497,52.80601],[-2.376451,52.804778],[-2.376452,52.803629],[-2.375062,52.803098],[-2.373874,52.801774],[-2.370919,52.800332],[-2.372124,52.798292],[-2.371414,52.795285],[-2.373131,52.793944],[-2.375325,52.793909],[-2.380651,52.794726],[-2.382171,52.79323],[-2.380901,52.792371],[-2.380875,52.791113],[-2.381683,52.790669],[-2.38359,52.791152],[-2.384746,52.790433],[-2.385,52.789523],[-2.383268,52.788537],[-2.381098,52.78878],[-2.380217,52.786567],[-2.378812,52.785953],[-2.37893,52.784133],[-2.377298,52.783671],[-2.37193,52.784249],[-2.368403,52.783601],[-2.367192,52.783826],[-2.365858,52.783201],[-2.367236,52.781722],[-2.366827,52.779563],[-2.367236,52.77836],[-2.36883,52.777276],[-2.36635,52.77712],[-2.365069,52.776738],[-2.363243,52.775167],[-2.359032,52.773873],[-2.357569,52.772198],[-2.354392,52.771597],[-2.352731,52.768908],[-2.349967,52.766198],[-2.348245,52.766429],[-2.345233,52.766309],[-2.343967,52.765028],[-2.344027,52.763909],[-2.342441,52.762091],[-2.334942,52.758863],[-2.330134,52.757979],[-2.330058,52.756207],[-2.329317,52.755984],[-2.329054,52.754462],[-2.330855,52.753025],[-2.330476,52.751617],[-2.326818,52.751222],[-2.324633,52.751514],[-2.323705,52.750669],[-2.321633,52.749895],[-2.321325,52.748176],[-2.317798,52.746727],[-2.316921,52.745939],[-2.315208,52.745482],[-2.316084,52.744549],[-2.312201,52.740863],[-2.310644,52.74031],[-2.307499,52.73982],[-2.305653,52.739937],[-2.301588,52.740761],[-2.299393,52.740721],[-2.297884,52.742316],[-2.29591,52.743446],[-2.292302,52.742269],[-2.290933,52.74321],[-2.287665,52.743262],[-2.285244,52.742637],[-2.283204,52.740532],[-2.280634,52.740572],[-2.277717,52.741251],[-2.277091,52.742261],[-2.274956,52.742789],[-2.273956,52.739989],[-2.273901,52.737756],[-2.269833,52.737757],[-2.267915,52.737992],[-2.266593,52.737284],[-2.264796,52.73411],[-2.265261,52.73301],[-2.265041,52.7317],[-2.263214,52.73076],[-2.262669,52.729836],[-2.255728,52.730504],[-2.253959,52.728132],[-2.256273,52.727721],[-2.257082,52.725805],[-2.258281,52.724747],[-2.258378,52.720679],[-2.25685,52.717849],[-2.254816,52.716854],[-2.250654,52.715547],[-2.248653,52.715563],[-2.247019,52.715047],[-2.245347,52.715164],[-2.243365,52.716289],[-2.24262,52.717615],[-2.241325,52.717969],[-2.239827,52.720344],[-2.236096,52.721736],[-2.23419,52.723233],[-2.231031,52.724441],[-2.229324,52.724796],[-2.228077,52.725642],[-2.226042,52.726133],[-2.219859,52.725941],[-2.220039,52.726314],[-2.217476,52.729635],[-2.218272,52.732368],[-2.216802,52.73292],[-2.206827,52.732058],[-2.201943,52.731978],[-2.200101,52.733712],[-2.196779,52.734648],[-2.194229,52.73326],[-2.191202,52.733373],[-2.188706,52.732857],[-2.187729,52.732989],[-2.186408,52.734981],[-2.183752,52.735198],[-2.183111,52.735953],[-2.180369,52.736188],[-2.179823,52.737024],[-2.178503,52.736703],[-2.177042,52.739052],[-2.178066,52.740911],[-2.177901,52.744011],[-2.173304,52.744449],[-2.173019,52.745002],[-2.168985,52.744583],[-2.168103,52.743213],[-2.165556,52.742212],[-2.163844,52.741242],[-2.160825,52.742688],[-2.159592,52.743697],[-2.159628,52.745389],[-2.158533,52.746866],[-2.158773,52.748278],[-2.159806,52.749436],[-2.159253,52.749906],[-2.160511,52.751179],[-2.159741,52.753478],[-2.161136,52.754741],[-2.15802,52.754605],[-2.157634,52.75737],[-2.155388,52.758607],[-2.157523,52.759275],[-2.159323,52.760355],[-2.15787,52.762357],[-2.156171,52.763026],[-2.155662,52.764246],[-2.155777,52.768675],[-2.154516,52.771237],[-2.156173,52.772576],[-2.154223,52.773079],[-2.151392,52.77503],[-2.150575,52.778631],[-2.149615,52.780025],[-2.145994,52.781643],[-2.147044,52.782584],[-2.141269,52.784121],[-2.138445,52.783739],[-2.13791,52.78249],[-2.138301,52.781882],[-2.137312,52.780192],[-2.136978,52.778495],[-2.137358,52.777737],[-2.13427,52.777657],[-2.134725,52.775988],[-2.132772,52.775841],[-2.130484,52.776114],[-2.129398,52.775859],[-2.128031,52.774751],[-2.124085,52.773284],[-2.116756,52.76981],[-2.116661,52.769205],[-2.114402,52.769112],[-2.112004,52.769691],[-2.1123,52.7706],[-2.111004,52.771602],[-2.109059,52.771101],[-2.107636,52.771668],[-2.105592,52.770346],[-2.102849,52.769822],[-2.100225,52.773101],[-2.098961,52.773233],[-2.098874,52.774728],[-2.100078,52.775911],[-2.099408,52.779864],[-2.09866,52.780724],[-2.098737,52.782099],[-2.097543,52.782746],[-2.099112,52.784722],[-2.096225,52.785129],[-2.095164,52.786433],[-2.093861,52.786207],[-2.096161,52.78389],[-2.094967,52.782317],[-2.095089,52.78109],[-2.091669,52.780707],[-2.089277,52.78102],[-2.087148,52.780668],[-2.086033,52.779921],[-2.081607,52.779562],[-2.079328,52.779787],[-2.077663,52.780449],[-2.074732,52.778424],[-2.069988,52.775877],[-2.068469,52.774647],[-2.065964,52.773547],[-2.067803,52.772443],[-2.069381,52.770875],[-2.073228,52.769469],[-2.076164,52.766967],[-2.074363,52.766532],[-2.072676,52.766622],[-2.066424,52.765995],[-2.064135,52.765339],[-2.063284,52.765606],[-2.060541,52.764639],[-2.055972,52.765372],[-2.053483,52.763761],[-2.053888,52.763129],[-2.051597,52.761574],[-2.047627,52.763173],[-2.047143,52.763621],[-2.044515,52.762092],[-2.042766,52.760767],[-2.037355,52.754422],[-2.033708,52.747222],[-2.032348,52.745683],[-2.031285,52.742226],[-2.028965,52.739775],[-2.026802,52.736318],[-2.017906,52.741517],[-2.017016,52.742566],[-2.018023,52.744295],[-2.016822,52.746578],[-2.01478,52.753511],[-2.017788,52.757138],[-2.018426,52.758861],[-2.015698,52.759677],[-2.012718,52.759637],[-2.007332,52.760799],[-2.003786,52.760655],[-1.99938,52.762893],[-1.996776,52.763644],[-1.988337,52.762829],[-1.986689,52.762985],[-1.982697,52.76206],[-1.977394,52.762437],[-1.97313,52.761558],[-1.97205,52.763444],[-1.970536,52.765026],[-1.967726,52.764986],[-1.965753,52.765521],[-1.959705,52.768389],[-1.955936,52.769168],[-1.950599,52.771663],[-1.94864,52.773985],[-1.946601,52.774197],[-1.944688,52.773535],[-1.943944,52.77376],[-1.94573,52.776426],[-1.94772,52.778308],[-1.951299,52.78015],[-1.948385,52.783717],[-1.947108,52.785973],[-1.946397,52.785922],[-1.945277,52.789352],[-1.949198,52.789395],[-1.950693,52.789776],[-1.951374,52.791784],[-1.948043,52.793424],[-1.951764,52.795953],[-1.956051,52.797909],[-1.958131,52.798491],[-1.952631,52.800638],[-1.953046,52.801486],[-1.951169,52.803921],[-1.951327,52.807428],[-1.953757,52.812072],[-1.95494,52.812806],[-1.956328,52.81294],[-1.958323,52.813916],[-1.95825,52.814498],[-1.959692,52.815488],[-1.960355,52.817228],[-1.962019,52.818189],[-1.962585,52.819336],[-1.964414,52.820343],[-1.964447,52.821479],[-1.96558,52.821925],[-1.967885,52.824301],[-1.966635,52.825157],[-1.960839,52.827317],[-1.955827,52.830965],[-1.954856,52.832139],[-1.953059,52.832448],[-1.952117,52.834819],[-1.950792,52.83646],[-1.952265,52.837058],[-1.948733,52.840728],[-1.949208,52.841461],[-1.948763,52.842608],[-1.950496,52.842349],[-1.951145,52.84373],[-1.949242,52.844786],[-1.946907,52.845683],[-1.946288,52.846918],[-1.936785,52.848093],[-1.939199,52.851528],[-1.937762,52.853333],[-1.934488,52.853503],[-1.93336,52.854551],[-1.934757,52.857293],[-1.937048,52.858146],[-1.937637,52.858865],[-1.936472,52.85939],[-1.93604,52.862029],[-1.936724,52.862763],[-1.936993,52.864395],[-1.935204,52.864866],[-1.934984,52.867137],[-1.937222,52.867392],[-1.936052,52.870684],[-1.944985,52.869914],[-1.946431,52.869498],[-1.950014,52.869781],[-1.951355,52.87031],[-1.952422,52.868434],[-1.960537,52.870227],[-1.964206,52.872528],[-1.964987,52.873704],[-1.967484,52.874293],[-1.968376,52.874847],[-1.970326,52.885414],[-1.97212,52.887191],[-1.97348,52.887819],[-1.975979,52.889815],[-1.97966,52.893279],[-1.982011,52.894168],[-1.985951,52.89493],[-1.991279,52.894265],[-1.993941,52.893633],[-1.996647,52.892202],[-1.999704,52.892268],[-2.002729,52.896856],[-2.007406,52.899252],[-2.012422,52.900637],[-2.016969,52.902306],[-2.016521,52.903706],[-2.01275,52.906581],[-2.017461,52.90824],[-2.022297,52.909083],[-2.023903,52.909636],[-2.027202,52.911564],[-2.032969,52.913637],[-2.034057,52.914716],[-2.036934,52.915753],[-2.040638,52.916496],[-2.042651,52.915726],[-2.043542,52.917311],[-2.041527,52.917477],[-2.053785,52.919004],[-2.062957,52.922395],[-2.055948,52.931356],[-2.05183,52.933573],[-2.049288,52.935986],[-2.047833,52.93665],[-2.046265,52.936832],[-2.045821,52.938462],[-2.049933,52.939378],[-2.046654,52.94265],[-2.044611,52.945692],[-2.046283,52.946584],[-2.04319,52.948833],[-2.043773,52.951098],[-2.04499,52.952202],[-2.047975,52.953285],[-2.048121,52.954148],[-2.049961,52.954539],[-2.050717,52.955333],[-2.052683,52.95571],[-2.053466,52.956891],[-2.057843,52.958058],[-2.058489,52.959609],[-2.060987,52.961359],[-2.06366,52.960682],[-2.065016,52.960966],[-2.067727,52.962971],[-2.068881,52.962993],[-2.068377,52.96509],[-2.067258,52.967194],[-2.068448,52.968367],[-2.075898,52.97071],[-2.088128,52.973852],[-2.08446,52.970187],[-2.081447,52.968275],[-2.081219,52.966906],[-2.084506,52.966231],[-2.084432,52.965408],[-2.08681,52.96499],[-2.099993,52.960744],[-2.100741,52.960978],[-2.103008,52.963412],[-2.106114,52.962158],[-2.109597,52.962359],[-2.109143,52.959462],[-2.110184,52.957859],[-2.115118,52.956474],[-2.121657,52.956086],[-2.127922,52.965005],[-2.128955,52.969273],[-2.130403,52.971176],[-2.131357,52.971542],[-2.133981,52.97381],[-2.136651,52.973498],[-2.139364,52.973698],[-2.145711,52.976111],[-2.148012,52.974411],[-2.149028,52.972835],[-2.151493,52.971194],[-2.151482,52.968669],[-2.149842,52.965281],[-2.151371,52.964902],[-2.150986,52.96412],[-2.153772,52.963559],[-2.154169,52.964326],[-2.1595,52.963619],[-2.158167,52.963149],[-2.158325,52.961145],[-2.159589,52.961102],[-2.159856,52.959065],[-2.161813,52.957891],[-2.162426,52.956428],[-2.161854,52.954712],[-2.162595,52.953365],[-2.166893,52.952934],[-2.17112,52.951729],[-2.172213,52.954946],[-2.175647,52.953838],[-2.176162,52.95311],[-2.174345,52.94949],[-2.174538,52.947232],[-2.175727,52.947762],[-2.178606,52.948087],[-2.181609,52.946206],[-2.182924,52.94717],[-2.182093,52.947607],[-2.184602,52.949416],[-2.185998,52.951006],[-2.191254,52.950086],[-2.191799,52.951557],[-2.191774,52.953894],[-2.193208,52.955692],[-2.194291,52.958051],[-2.194237,52.960807],[-2.195376,52.964224],[-2.198722,52.966598],[-2.200438,52.968414],[-2.202225,52.968658],[-2.204689,52.969923],[-2.205418,52.972223],[-2.207169,52.971775],[-2.208746,52.973838],[-2.209846,52.977407],[-2.212213,52.979656],[-2.212514,52.980579]]]},"properties":{"LAD22CD":"E07000197","LAD22NM":"Stafford","BNG_E":389001,"BNG_N":327836,"LONG":-2.16475,"LAT":52.84792,"GlobalID":"aade1e6e-9656-4102-bc54-df51c5b03639"},"id":199}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.898633,53.199957],[-1.900903,53.199812],[-1.901737,53.198932],[-1.903747,53.199022],[-1.906703,53.198398],[-1.907461,53.198947],[-1.909208,53.198835],[-1.911451,53.199932],[-1.913407,53.201428],[-1.918121,53.203525],[-1.919122,53.203041],[-1.921756,53.202944],[-1.922968,53.203298],[-1.924955,53.205568],[-1.928446,53.206673],[-1.929786,53.207386],[-1.930528,53.208604],[-1.932785,53.209161],[-1.93555,53.211051],[-1.939286,53.212083],[-1.948806,53.211664],[-1.950726,53.211904],[-1.956707,53.213748],[-1.961032,53.219434],[-1.962365,53.226242],[-1.970773,53.220938],[-1.976291,53.218798],[-1.978187,53.216856],[-1.980767,53.216373],[-1.981218,53.215776],[-1.984041,53.214491],[-1.986345,53.214235],[-1.987408,53.213586],[-1.987214,53.211968],[-1.988547,53.211211],[-1.989001,53.209925],[-1.99041,53.209605],[-1.990801,53.208274],[-1.99291,53.207583],[-1.993032,53.206436],[-1.994536,53.203302],[-1.994271,53.200673],[-1.99468,53.199722],[-1.996442,53.198724],[-1.996776,53.197568],[-1.998756,53.197041],[-1.998806,53.196047],[-2.000335,53.194624],[-2.000078,53.193853],[-2.001666,53.193055],[-2.004987,53.193403],[-2.007011,53.192378],[-2.010075,53.192775],[-2.011155,53.19189],[-2.016384,53.189312],[-2.018179,53.189053],[-2.021323,53.189828],[-2.023857,53.191517],[-2.028555,53.193354],[-2.031563,53.193251],[-2.033686,53.193652],[-2.034485,53.193158],[-2.036366,53.193133],[-2.038337,53.193664],[-2.040438,53.192506],[-2.042775,53.192858],[-2.043854,53.192581],[-2.046418,53.192682],[-2.047558,53.192167],[-2.048281,53.190956],[-2.049581,53.190357],[-2.052205,53.187771],[-2.054986,53.186487],[-2.054818,53.185688],[-2.053412,53.185274],[-2.05229,53.183959],[-2.054252,53.183139],[-2.05633,53.182855],[-2.05702,53.181615],[-2.059215,53.180901],[-2.059597,53.179969],[-2.058412,53.179662],[-2.058223,53.178707],[-2.056863,53.177667],[-2.058243,53.176321],[-2.06326,53.174862],[-2.067481,53.174926],[-2.069318,53.174076],[-2.070403,53.173117],[-2.069408,53.172139],[-2.075579,53.171232],[-2.07805,53.170443],[-2.079534,53.171059],[-2.082096,53.170957],[-2.082932,53.170139],[-2.085566,53.170298],[-2.087237,53.169854],[-2.089143,53.17077],[-2.090702,53.172291],[-2.092729,53.172918],[-2.094611,53.172599],[-2.09577,53.171191],[-2.097665,53.171555],[-2.098625,53.17039],[-2.101736,53.168905],[-2.103751,53.169862],[-2.10874,53.168361],[-2.110776,53.169426],[-2.111788,53.168624],[-2.115364,53.169517],[-2.115851,53.171259],[-2.113924,53.171942],[-2.115097,53.172617],[-2.116323,53.171774],[-2.117869,53.171803],[-2.119306,53.172868],[-2.119768,53.174711],[-2.121649,53.174399],[-2.123512,53.173501],[-2.124982,53.173976],[-2.125249,53.175122],[-2.12787,53.174629],[-2.129348,53.175502],[-2.130033,53.176724],[-2.129855,53.17842],[-2.133464,53.182815],[-2.134608,53.183346],[-2.138221,53.184017],[-2.140165,53.183896],[-2.142174,53.182245],[-2.142271,53.181144],[-2.141361,53.179806],[-2.142385,53.179111],[-2.142647,53.177793],[-2.144298,53.176921],[-2.143521,53.175438],[-2.144509,53.174707],[-2.144496,53.171338],[-2.141411,53.156652],[-2.145423,53.157321],[-2.147051,53.158493],[-2.148634,53.158334],[-2.15101,53.159656],[-2.152156,53.159765],[-2.154757,53.15927],[-2.155655,53.156519],[-2.158612,53.154136],[-2.159543,53.152906],[-2.16386,53.151372],[-2.168059,53.14816],[-2.169289,53.148206],[-2.171669,53.147404],[-2.172409,53.148021],[-2.174368,53.146522],[-2.176581,53.145531],[-2.180094,53.142563],[-2.186534,53.135977],[-2.19351,53.129621],[-2.202646,53.121632],[-2.211315,53.115824],[-2.209472,53.115306],[-2.205879,53.112475],[-2.203815,53.109594],[-2.200293,53.106391],[-2.199304,53.105283],[-2.19677,53.104617],[-2.195213,53.103816],[-2.193659,53.102341],[-2.189272,53.101432],[-2.188942,53.100534],[-2.18623,53.097702],[-2.185798,53.096079],[-2.184318,53.095252],[-2.183743,53.09342],[-2.18115,53.090545],[-2.181207,53.089797],[-2.179089,53.091464],[-2.177626,53.091189],[-2.175553,53.089915],[-2.17427,53.090254],[-2.1717,53.089447],[-2.172104,53.088894],[-2.169298,53.086925],[-2.168995,53.085244],[-2.167346,53.083249],[-2.166305,53.082435],[-2.165511,53.079327],[-2.163671,53.076794],[-2.163863,53.075857],[-2.162611,53.072238],[-2.161148,53.07012],[-2.157502,53.070771],[-2.155352,53.07054],[-2.155059,53.069908],[-2.153411,53.069412],[-2.151249,53.069532],[-2.148023,53.070367],[-2.14661,53.069121],[-2.145031,53.068503],[-2.142434,53.068438],[-2.140462,53.068783],[-2.140513,53.067489],[-2.139158,53.065245],[-2.137408,53.065417],[-2.134641,53.06491],[-2.12784,53.065595],[-2.1254,53.064579],[-2.127366,53.059416],[-2.127437,53.053739],[-2.123991,53.052631],[-2.121428,53.051289],[-2.119819,53.049636],[-2.116583,53.048033],[-2.117255,53.047589],[-2.119583,53.047625],[-2.123897,53.048444],[-2.127182,53.048098],[-2.129323,53.048238],[-2.131776,53.047336],[-2.126508,53.040136],[-2.126931,53.037816],[-2.125951,53.037317],[-2.127412,53.035941],[-2.129167,53.035617],[-2.12702,53.033722],[-2.12502,53.033041],[-2.12373,53.031577],[-2.124355,53.029927],[-2.12325,53.027865],[-2.122197,53.028342],[-2.121293,53.027456],[-2.119678,53.027668],[-2.118803,53.026445],[-2.119537,53.026153],[-2.122249,53.022606],[-2.123738,53.021638],[-2.120968,53.020294],[-2.121129,53.019283],[-2.122496,53.01915],[-2.121503,53.018012],[-2.120488,53.018696],[-2.11852,53.018394],[-2.114638,53.016043],[-2.11596,53.014762],[-2.114953,53.013892],[-2.111925,53.013895],[-2.10948,53.013617],[-2.10836,53.012679],[-2.103467,53.010858],[-2.104019,53.010087],[-2.102628,53.008975],[-2.104107,53.007489],[-2.103429,53.007005],[-2.107253,53.004853],[-2.107185,53.003549],[-2.107865,53.002615],[-2.104948,52.997694],[-2.101272,52.995638],[-2.098456,52.997559],[-2.096987,52.997277],[-2.095708,52.997666],[-2.095077,52.998758],[-2.091652,52.998849],[-2.08846,52.996958],[-2.088039,52.996008],[-2.088599,52.995029],[-2.087733,52.993547],[-2.089219,52.991496],[-2.088292,52.990568],[-2.08976,52.989799],[-2.090303,52.988621],[-2.091521,52.988211],[-2.091771,52.985335],[-2.089825,52.984829],[-2.089912,52.9837],[-2.084693,52.981239],[-2.083362,52.979991],[-2.084937,52.978483],[-2.08225,52.977114],[-2.080998,52.977918],[-2.079654,52.975829],[-2.080776,52.975486],[-2.079239,52.9745],[-2.079458,52.974019],[-2.082593,52.974893],[-2.084211,52.975026],[-2.085874,52.973501],[-2.088128,52.973852],[-2.075898,52.97071],[-2.068448,52.968367],[-2.067258,52.967194],[-2.068377,52.96509],[-2.068881,52.962993],[-2.067727,52.962971],[-2.065016,52.960966],[-2.06366,52.960682],[-2.060987,52.961359],[-2.058489,52.959609],[-2.057843,52.958058],[-2.053466,52.956891],[-2.052683,52.95571],[-2.050717,52.955333],[-2.049961,52.954539],[-2.048121,52.954148],[-2.047975,52.953285],[-2.04499,52.952202],[-2.043773,52.951098],[-2.04319,52.948833],[-2.046283,52.946584],[-2.044611,52.945692],[-2.046654,52.94265],[-2.049933,52.939378],[-2.045821,52.938462],[-2.046265,52.936832],[-2.047833,52.93665],[-2.049288,52.935986],[-2.05183,52.933573],[-2.055948,52.931356],[-2.062957,52.922395],[-2.053785,52.919004],[-2.041527,52.917477],[-2.040571,52.916679],[-2.038018,52.917511],[-2.034961,52.917813],[-2.034174,52.918309],[-2.032881,52.921014],[-2.033218,52.922285],[-2.030834,52.922806],[-2.03031,52.923307],[-2.025899,52.924827],[-2.021902,52.924685],[-2.01952,52.924134],[-2.01728,52.924269],[-2.015603,52.925061],[-2.013296,52.925507],[-2.00921,52.92724],[-2.007296,52.927126],[-2.003656,52.928327],[-2.002545,52.928469],[-2.001523,52.929419],[-2.001953,52.930006],[-2.000983,52.931246],[-1.99365,52.933928],[-1.988335,52.93468],[-1.985316,52.935672],[-1.983957,52.934743],[-1.980157,52.933989],[-1.977406,52.934597],[-1.976296,52.935384],[-1.97627,52.938025],[-1.97402,52.938806],[-1.971116,52.940791],[-1.96678,52.939398],[-1.962256,52.93655],[-1.958059,52.936009],[-1.955444,52.934923],[-1.9538,52.935183],[-1.951665,52.933888],[-1.94764,52.933396],[-1.9467,52.932794],[-1.944527,52.932284],[-1.942615,52.932575],[-1.942031,52.931845],[-1.937002,52.931498],[-1.934365,52.931669],[-1.932209,52.933965],[-1.930476,52.937974],[-1.928195,52.940575],[-1.926893,52.941297],[-1.923527,52.940553],[-1.923523,52.942218],[-1.920442,52.941873],[-1.919132,52.941083],[-1.914182,52.940566],[-1.912583,52.939887],[-1.910186,52.939809],[-1.906214,52.944142],[-1.903208,52.945246],[-1.903549,52.946013],[-1.908902,52.948859],[-1.910906,52.949036],[-1.917806,52.951885],[-1.915921,52.953536],[-1.917485,52.955913],[-1.916978,52.957112],[-1.918426,52.957638],[-1.9233,52.957422],[-1.928031,52.959745],[-1.927389,52.960778],[-1.92582,52.961794],[-1.925467,52.963191],[-1.922181,52.963601],[-1.918778,52.965706],[-1.916869,52.965956],[-1.915035,52.96554],[-1.910967,52.962834],[-1.909668,52.962546],[-1.906173,52.96444],[-1.904899,52.965503],[-1.903362,52.965917],[-1.901239,52.969165],[-1.899099,52.971212],[-1.899196,52.971646],[-1.895616,52.971779],[-1.895701,52.971273],[-1.893138,52.970777],[-1.888348,52.96938],[-1.887927,52.970565],[-1.883754,52.970562],[-1.879969,52.969929],[-1.879723,52.971159],[-1.877535,52.970971],[-1.877124,52.972377],[-1.873444,52.971975],[-1.872387,52.971602],[-1.870912,52.974415],[-1.867949,52.974039],[-1.864483,52.974467],[-1.862528,52.974261],[-1.861244,52.974889],[-1.860936,52.977341],[-1.861583,52.979254],[-1.864354,52.980804],[-1.864487,52.982051],[-1.865275,52.983004],[-1.868016,52.984803],[-1.8677,52.985316],[-1.869772,52.986584],[-1.870196,52.987694],[-1.870137,52.990889],[-1.869383,52.991554],[-1.871174,52.992783],[-1.873766,52.993903],[-1.87758,52.994055],[-1.878726,52.993704],[-1.880595,52.994602],[-1.88116,52.996136],[-1.878407,52.999723],[-1.879363,53.001504],[-1.878913,53.003335],[-1.877305,53.003576],[-1.876206,53.004468],[-1.876957,53.005969],[-1.879214,53.007336],[-1.883389,53.010889],[-1.885338,53.013311],[-1.884811,53.01547],[-1.886547,53.016276],[-1.886234,53.017476],[-1.885001,53.018508],[-1.884177,53.020055],[-1.882415,53.019384],[-1.880379,53.021012],[-1.877501,53.019807],[-1.876218,53.021572],[-1.872701,53.020671],[-1.871595,53.020032],[-1.863032,53.028664],[-1.863982,53.030094],[-1.860663,53.031465],[-1.856033,53.034097],[-1.854662,53.032955],[-1.851157,53.031425],[-1.847862,53.031322],[-1.84529,53.030337],[-1.842272,53.031148],[-1.839336,53.031647],[-1.836678,53.031702],[-1.833741,53.032505],[-1.830482,53.032972],[-1.830196,53.032292],[-1.825423,53.030742],[-1.824789,53.02996],[-1.821146,53.02874],[-1.81853,53.029205],[-1.816506,53.029194],[-1.814191,53.029759],[-1.811643,53.028483],[-1.808205,53.025924],[-1.807378,53.023836],[-1.806194,53.022554],[-1.80299,53.022292],[-1.80141,53.021572],[-1.800719,53.020126],[-1.800869,53.018968],[-1.799987,53.017313],[-1.797721,53.016004],[-1.797647,53.014687],[-1.796001,53.013209],[-1.794095,53.014734],[-1.793479,53.015928],[-1.794722,53.020424],[-1.792442,53.020615],[-1.792247,53.02263],[-1.790257,53.022373],[-1.784865,53.024584],[-1.78609,53.025879],[-1.787284,53.025461],[-1.790433,53.025581],[-1.791566,53.027221],[-1.788132,53.028853],[-1.78828,53.030294],[-1.790967,53.029563],[-1.793453,53.0324],[-1.793908,53.033822],[-1.793641,53.036694],[-1.79466,53.039336],[-1.790916,53.038314],[-1.789926,53.040965],[-1.790635,53.041805],[-1.79019,53.042895],[-1.78166,53.045869],[-1.780105,53.044708],[-1.778981,53.044844],[-1.779969,53.047079],[-1.780787,53.047922],[-1.784696,53.049931],[-1.78336,53.050634],[-1.784212,53.051891],[-1.784145,53.054708],[-1.783204,53.054432],[-1.781901,53.055406],[-1.782164,53.05613],[-1.779301,53.057629],[-1.777014,53.058223],[-1.775653,53.059355],[-1.778106,53.060458],[-1.783059,53.06137],[-1.785643,53.063112],[-1.784231,53.065116],[-1.784223,53.06672],[-1.785675,53.068181],[-1.786004,53.070436],[-1.78752,53.072381],[-1.788808,53.073233],[-1.789157,53.074801],[-1.79005,53.07538],[-1.789752,53.076401],[-1.790842,53.076774],[-1.791356,53.0782],[-1.79025,53.079046],[-1.788585,53.079246],[-1.788605,53.080905],[-1.791983,53.0837],[-1.791083,53.085025],[-1.791128,53.086437],[-1.793129,53.086659],[-1.794239,53.088394],[-1.792878,53.089832],[-1.792857,53.091025],[-1.790789,53.091783],[-1.788615,53.091395],[-1.787437,53.091925],[-1.78356,53.092737],[-1.783207,53.093793],[-1.785488,53.095016],[-1.783035,53.09597],[-1.782524,53.096616],[-1.786367,53.099811],[-1.784491,53.101507],[-1.783545,53.101661],[-1.784518,53.103951],[-1.787989,53.105442],[-1.786074,53.106816],[-1.786246,53.108003],[-1.788029,53.109221],[-1.793788,53.110487],[-1.795361,53.112639],[-1.797808,53.114055],[-1.800112,53.114603],[-1.800934,53.115158],[-1.801876,53.118184],[-1.805478,53.121674],[-1.80574,53.122414],[-1.807855,53.122963],[-1.809651,53.1238],[-1.809917,53.125766],[-1.809341,53.126949],[-1.810252,53.128063],[-1.810883,53.130128],[-1.812535,53.130283],[-1.814102,53.131935],[-1.81333,53.13313],[-1.815264,53.133422],[-1.816233,53.134173],[-1.817315,53.133371],[-1.819801,53.133961],[-1.820055,53.134698],[-1.821877,53.136704],[-1.821034,53.13761],[-1.822158,53.138063],[-1.821906,53.139631],[-1.820641,53.140544],[-1.821213,53.141418],[-1.819655,53.142532],[-1.818476,53.142328],[-1.817627,53.143439],[-1.818114,53.145295],[-1.816802,53.146551],[-1.817022,53.14926],[-1.816622,53.149978],[-1.812812,53.151641],[-1.812025,53.152744],[-1.812575,53.154375],[-1.81538,53.155118],[-1.815053,53.156225],[-1.816431,53.157902],[-1.816074,53.158636],[-1.818155,53.159786],[-1.820133,53.161268],[-1.822149,53.1621],[-1.823737,53.163645],[-1.825203,53.163993],[-1.824836,53.164843],[-1.826439,53.165342],[-1.826986,53.166398],[-1.829022,53.166749],[-1.833012,53.170545],[-1.832014,53.172815],[-1.835949,53.174339],[-1.836412,53.175289],[-1.839296,53.176926],[-1.840803,53.176948],[-1.843061,53.178129],[-1.846159,53.178537],[-1.846236,53.179634],[-1.849687,53.182075],[-1.851748,53.182835],[-1.852471,53.183893],[-1.854395,53.184382],[-1.855967,53.185553],[-1.859114,53.186603],[-1.859333,53.187675],[-1.860932,53.188502],[-1.862924,53.188499],[-1.865341,53.189858],[-1.866243,53.189672],[-1.86749,53.190912],[-1.87011,53.19148],[-1.87186,53.192906],[-1.871726,53.19387],[-1.875882,53.195508],[-1.876368,53.194953],[-1.879052,53.195983],[-1.882504,53.196587],[-1.884618,53.196728],[-1.887066,53.198329],[-1.888426,53.198404],[-1.889329,53.199087],[-1.893079,53.19906],[-1.894008,53.199619],[-1.898633,53.199957]]]},"properties":{"LAD22CD":"E07000198","LAD22NM":"Staffordshire Moorlands","BNG_E":400543,"BNG_N":352443,"LONG":-1.99334,"LAT":53.06924,"GlobalID":"2150e52f-ab13-4f49-a91a-990ed5ea98b7"},"id":200}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.700393,52.590913],[-1.699252,52.59022],[-1.697802,52.590988],[-1.695873,52.590272],[-1.694491,52.590157],[-1.693891,52.589305],[-1.691498,52.589336],[-1.688629,52.588654],[-1.685691,52.589351],[-1.6859,52.593348],[-1.682882,52.593297],[-1.680321,52.593505],[-1.679224,52.592709],[-1.677665,52.593264],[-1.673646,52.592597],[-1.669066,52.592674],[-1.666664,52.592109],[-1.66564,52.592252],[-1.665298,52.594316],[-1.665708,52.595666],[-1.660782,52.59451],[-1.659874,52.595582],[-1.655099,52.595672],[-1.655509,52.596608],[-1.653008,52.597302],[-1.651578,52.598418],[-1.648864,52.598611],[-1.649137,52.600762],[-1.64518,52.603125],[-1.643777,52.603355],[-1.642913,52.605642],[-1.640978,52.606963],[-1.639778,52.608393],[-1.639087,52.610702],[-1.639841,52.614694],[-1.63905,52.615742],[-1.637063,52.617083],[-1.636015,52.619617],[-1.63868,52.620743],[-1.640156,52.62008],[-1.644118,52.620791],[-1.643087,52.623204],[-1.638181,52.625521],[-1.639781,52.627164],[-1.640981,52.629219],[-1.642093,52.630024],[-1.642509,52.631417],[-1.640183,52.634173],[-1.638189,52.637701],[-1.63895,52.638528],[-1.641049,52.639581],[-1.642423,52.64094],[-1.634248,52.643043],[-1.634513,52.644009],[-1.635968,52.645352],[-1.639545,52.647436],[-1.640596,52.649591],[-1.642601,52.651022],[-1.642058,52.652006],[-1.642881,52.654441],[-1.644943,52.657517],[-1.647261,52.657172],[-1.650471,52.656346],[-1.651576,52.655764],[-1.656116,52.654772],[-1.658401,52.653303],[-1.662688,52.652231],[-1.665395,52.652039],[-1.666474,52.652247],[-1.670752,52.651602],[-1.673204,52.650715],[-1.68131,52.64878],[-1.684312,52.647247],[-1.68966,52.650981],[-1.69418,52.651124],[-1.701539,52.650742],[-1.704423,52.650972],[-1.711428,52.650122],[-1.714092,52.651307],[-1.720499,52.651615],[-1.722553,52.651366],[-1.721536,52.649914],[-1.722864,52.649425],[-1.721407,52.647681],[-1.724498,52.646896],[-1.727222,52.645656],[-1.734466,52.644593],[-1.733616,52.642673],[-1.734148,52.641919],[-1.733452,52.640685],[-1.733623,52.63945],[-1.732628,52.638416],[-1.733031,52.63759],[-1.735802,52.637021],[-1.734956,52.635891],[-1.732124,52.634808],[-1.731228,52.632733],[-1.730279,52.632429],[-1.727387,52.632476],[-1.726121,52.632162],[-1.720944,52.628535],[-1.711835,52.625453],[-1.709527,52.621327],[-1.707522,52.619124],[-1.702207,52.61585],[-1.700255,52.615651],[-1.691453,52.617392],[-1.690587,52.614242],[-1.692078,52.612187],[-1.690328,52.610672],[-1.690956,52.609222],[-1.690752,52.606894],[-1.688964,52.606314],[-1.688752,52.605585],[-1.690294,52.605224],[-1.691294,52.603917],[-1.692948,52.603124],[-1.693245,52.601522],[-1.695126,52.598774],[-1.696257,52.598853],[-1.698619,52.597048],[-1.700429,52.597393],[-1.703745,52.596062],[-1.703701,52.5953],[-1.702302,52.594912],[-1.701893,52.59407],[-1.700354,52.593348],[-1.701,52.591658],[-1.700393,52.590913]]]},"properties":{"LAD22CD":"E07000199","LAD22NM":"Tamworth","BNG_E":421455,"BNG_N":302550,"LONG":-1.68451,"LAT":52.62031,"GlobalID":"95cfcd28-a74f-4139-826a-0695eb77f274"},"id":201}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.237248,51.95897],[1.236847,51.959104],[1.233319,51.957856],[1.233197,51.957064],[1.237034,51.95779],[1.237248,51.95897]]],[[[1.241015,51.960479],[1.240059,51.960645],[1.239468,51.960472],[1.239118,51.960635],[1.238834,51.95914],[1.239443,51.95935],[1.241276,51.959213],[1.241015,51.960479]]],[[[1.238089,51.960345],[1.237858,51.960786],[1.235054,51.960102],[1.232125,51.958191],[1.232487,51.957709],[1.236223,51.959034],[1.238089,51.960345]]],[[[1.251359,51.990343],[1.248595,51.990808],[1.249355,51.989828],[1.251359,51.990343]]],[[[1.166227,52.029863],[1.16422,52.031102],[1.160591,52.031684],[1.162696,52.030046],[1.163914,52.029637],[1.166227,52.029863]]],[[[0.814169,52.170733],[0.809606,52.172084],[0.807684,52.172151],[0.804721,52.173651],[0.800067,52.174446],[0.798401,52.174373],[0.796624,52.175211],[0.793078,52.175641],[0.792186,52.176264],[0.789401,52.176747],[0.786919,52.177894],[0.782234,52.177625],[0.779667,52.176791],[0.777132,52.176546],[0.777332,52.175702],[0.776495,52.174515],[0.768689,52.175],[0.768515,52.174274],[0.76505,52.173903],[0.762902,52.163556],[0.761592,52.161738],[0.762018,52.160443],[0.761542,52.157938],[0.759086,52.157522],[0.756899,52.159527],[0.755364,52.159509],[0.753007,52.160012],[0.749869,52.159145],[0.747605,52.15959],[0.74312,52.159692],[0.741992,52.159331],[0.740907,52.160668],[0.742263,52.161835],[0.741808,52.165049],[0.739498,52.165358],[0.738102,52.16613],[0.738715,52.16848],[0.738336,52.169971],[0.734417,52.168647],[0.732869,52.167684],[0.733003,52.167038],[0.729829,52.165715],[0.729026,52.167672],[0.728162,52.1681],[0.726427,52.166646],[0.726827,52.165978],[0.723494,52.164973],[0.720629,52.167676],[0.7201,52.168903],[0.720377,52.171298],[0.719708,52.174134],[0.716636,52.174367],[0.7157,52.175185],[0.715964,52.179281],[0.715384,52.179245],[0.714935,52.177285],[0.713891,52.177414],[0.710616,52.178566],[0.707496,52.179076],[0.705996,52.179863],[0.704122,52.180272],[0.703285,52.181079],[0.698145,52.181308],[0.694232,52.180007],[0.695863,52.177598],[0.695185,52.176968],[0.69574,52.1756],[0.693156,52.175443],[0.695521,52.172415],[0.696124,52.171],[0.697329,52.170123],[0.695061,52.168944],[0.694503,52.167271],[0.69347,52.166646],[0.692186,52.167134],[0.690872,52.166341],[0.692554,52.165874],[0.69304,52.162445],[0.6917,52.157581],[0.688961,52.157823],[0.687988,52.158665],[0.686182,52.159311],[0.685243,52.15889],[0.684861,52.157825],[0.682044,52.155997],[0.677087,52.157425],[0.674254,52.156731],[0.674128,52.157346],[0.676738,52.157533],[0.67554,52.15926],[0.67347,52.159243],[0.66832,52.15809],[0.666914,52.158144],[0.664178,52.15768],[0.66309,52.158661],[0.663418,52.160701],[0.661147,52.160527],[0.657854,52.161258],[0.656281,52.161001],[0.6536,52.161519],[0.649909,52.160411],[0.645374,52.160177],[0.645382,52.159128],[0.644615,52.158284],[0.646375,52.156945],[0.644205,52.155749],[0.641387,52.156285],[0.640182,52.152925],[0.638879,52.150955],[0.637541,52.150233],[0.639129,52.148782],[0.637932,52.148069],[0.639587,52.146913],[0.640262,52.145818],[0.638491,52.144944],[0.637785,52.143974],[0.636792,52.144014],[0.634614,52.143281],[0.633373,52.14249],[0.63372,52.141376],[0.636307,52.140172],[0.638016,52.137883],[0.636108,52.136136],[0.637942,52.135415],[0.637208,52.133393],[0.63633,52.132439],[0.634345,52.13223],[0.632838,52.130569],[0.626916,52.131],[0.626895,52.128991],[0.628754,52.128737],[0.630797,52.12734],[0.630681,52.125428],[0.628658,52.124664],[0.63096,52.122529],[0.631827,52.122385],[0.634362,52.123061],[0.635827,52.12296],[0.635995,52.122231],[0.634964,52.121147],[0.636328,52.119412],[0.633988,52.118159],[0.633847,52.116881],[0.632675,52.115235],[0.634951,52.115377],[0.635704,52.114348],[0.637287,52.114662],[0.637978,52.113514],[0.638611,52.110103],[0.642393,52.110238],[0.642597,52.109],[0.646816,52.1027],[0.650546,52.101204],[0.648847,52.100664],[0.649327,52.09954],[0.651256,52.099894],[0.652922,52.097607],[0.653528,52.095372],[0.655266,52.0909],[0.654721,52.08928],[0.654775,52.087615],[0.654147,52.086167],[0.656536,52.086203],[0.656901,52.085442],[0.658611,52.085427],[0.660861,52.083699],[0.663253,52.084107],[0.665773,52.086024],[0.668467,52.086226],[0.668934,52.085818],[0.671684,52.085838],[0.672443,52.08617],[0.673795,52.084716],[0.675972,52.084508],[0.678945,52.083886],[0.680866,52.085048],[0.68109,52.086454],[0.683116,52.08704],[0.684287,52.086947],[0.687693,52.085576],[0.688253,52.084776],[0.688142,52.083402],[0.689969,52.080093],[0.691753,52.07942],[0.692969,52.078501],[0.694714,52.078711],[0.697675,52.079602],[0.702081,52.079495],[0.703074,52.078495],[0.704806,52.078163],[0.706883,52.076745],[0.706295,52.075083],[0.706591,52.073855],[0.709478,52.073275],[0.712118,52.072242],[0.712757,52.070994],[0.710945,52.06998],[0.711338,52.068716],[0.709879,52.066987],[0.707652,52.066295],[0.707171,52.066796],[0.705158,52.066898],[0.703177,52.065273],[0.703811,52.064797],[0.703568,52.063423],[0.704973,52.062674],[0.705952,52.060887],[0.706975,52.059989],[0.707757,52.057708],[0.708865,52.056982],[0.709012,52.056055],[0.710841,52.055547],[0.710907,52.05371],[0.713046,52.053212],[0.716065,52.051167],[0.716263,52.048687],[0.712709,52.049025],[0.71196,52.048441],[0.70986,52.048635],[0.707029,52.048165],[0.703984,52.047325],[0.70266,52.047889],[0.699669,52.048298],[0.698392,52.046859],[0.698682,52.04452],[0.696975,52.042972],[0.696441,52.039484],[0.698822,52.036711],[0.702444,52.037718],[0.703781,52.036188],[0.712508,52.034869],[0.710653,52.033008],[0.708158,52.032435],[0.707426,52.030555],[0.706529,52.029525],[0.710595,52.028245],[0.712586,52.028318],[0.714396,52.027319],[0.71969,52.027903],[0.736752,52.032286],[0.739176,52.032278],[0.740818,52.031034],[0.741727,52.029444],[0.741786,52.02729],[0.740782,52.025111],[0.74128,52.023214],[0.74264,52.022714],[0.742328,52.020664],[0.741493,52.020265],[0.74241,52.016357],[0.741168,52.01497],[0.739632,52.014315],[0.737816,52.01228],[0.738655,52.01056],[0.74115,52.009333],[0.742571,52.007745],[0.745224,52.007778],[0.746411,52.006701],[0.749159,52.00555],[0.749307,52.004397],[0.750479,52.003121],[0.749635,52.002169],[0.749863,51.999858],[0.752456,51.998583],[0.757432,51.99875],[0.761047,51.997547],[0.760213,51.996594],[0.76034,51.994737],[0.759584,51.993763],[0.76154,51.993592],[0.762912,51.990866],[0.761689,51.988263],[0.75965,51.987018],[0.759668,51.985429],[0.760469,51.984532],[0.762261,51.983932],[0.767099,51.983793],[0.771061,51.982081],[0.772696,51.982568],[0.774633,51.982592],[0.773874,51.98084],[0.774034,51.980136],[0.772702,51.979027],[0.772572,51.978104],[0.773049,51.974046],[0.773948,51.972141],[0.772487,51.9709],[0.772853,51.969798],[0.774313,51.96968],[0.77608,51.96752],[0.78147,51.966513],[0.782788,51.967647],[0.785123,51.967495],[0.786432,51.966335],[0.785717,51.963979],[0.787161,51.963134],[0.791053,51.963648],[0.792795,51.963475],[0.795767,51.963729],[0.799075,51.963246],[0.799735,51.962362],[0.808018,51.96174],[0.809477,51.960821],[0.812317,51.960936],[0.814159,51.962284],[0.814553,51.963637],[0.813865,51.964308],[0.814145,51.965732],[0.815281,51.967054],[0.8164,51.967054],[0.818347,51.968246],[0.819838,51.968116],[0.821642,51.968719],[0.82465,51.96855],[0.826151,51.967721],[0.8305,51.966336],[0.833469,51.966053],[0.835859,51.96473],[0.840211,51.963391],[0.84209,51.961819],[0.85024,51.960767],[0.853884,51.962495],[0.858331,51.962965],[0.859477,51.964197],[0.858901,51.965511],[0.861574,51.966728],[0.863094,51.968271],[0.867558,51.969147],[0.870675,51.969201],[0.873201,51.968563],[0.872713,51.967175],[0.877575,51.966524],[0.880005,51.966456],[0.883027,51.967775],[0.884019,51.967659],[0.886565,51.968445],[0.888164,51.970598],[0.887899,51.97175],[0.889688,51.973387],[0.892818,51.9734],[0.893729,51.972627],[0.895692,51.972132],[0.897331,51.972262],[0.900302,51.973523],[0.903689,51.972886],[0.907672,51.972971],[0.909892,51.973497],[0.91101,51.973336],[0.912803,51.973839],[0.915514,51.974115],[0.917043,51.973968],[0.919718,51.974816],[0.920728,51.974828],[0.922564,51.976189],[0.925169,51.976194],[0.926535,51.974933],[0.926654,51.973966],[0.927704,51.972331],[0.929337,51.971452],[0.930903,51.971703],[0.935231,51.971934],[0.937263,51.972632],[0.939573,51.972367],[0.939961,51.971421],[0.942911,51.97069],[0.94882,51.972509],[0.951284,51.972714],[0.953132,51.97405],[0.953177,51.975189],[0.955935,51.976343],[0.957858,51.976259],[0.959041,51.976845],[0.96334,51.977016],[0.963328,51.976157],[0.964615,51.975684],[0.965339,51.974234],[0.964163,51.973655],[0.965206,51.972775],[0.96489,51.971961],[0.968797,51.970192],[0.970818,51.970086],[0.972029,51.968499],[0.971499,51.966998],[0.968224,51.964109],[0.968685,51.963417],[0.970983,51.962408],[0.973891,51.962382],[0.975847,51.961268],[0.980291,51.961468],[0.982478,51.962119],[0.989083,51.961379],[0.992495,51.961765],[0.995236,51.963353],[0.99871,51.963967],[1.001264,51.963405],[1.004394,51.962235],[1.005457,51.960639],[1.004944,51.959499],[1.007589,51.957543],[1.009002,51.956],[1.011561,51.95507],[1.016191,51.955386],[1.017205,51.95393],[1.018696,51.953219],[1.021118,51.954451],[1.024712,51.954902],[1.0258,51.955883],[1.028087,51.956035],[1.029037,51.957246],[1.031834,51.957357],[1.033136,51.957759],[1.034281,51.957237],[1.035459,51.957742],[1.036446,51.957037],[1.037916,51.956933],[1.039856,51.955933],[1.042083,51.956543],[1.041713,51.957399],[1.042475,51.959309],[1.045105,51.959646],[1.048331,51.95932],[1.05035,51.958455],[1.051864,51.956936],[1.051698,51.95623],[1.054046,51.9531],[1.055682,51.953584],[1.057336,51.951491],[1.060359,51.952267],[1.059355,51.953051],[1.059214,51.953977],[1.057991,51.955427],[1.059384,51.955381],[1.060811,51.954663],[1.061772,51.95348],[1.063395,51.95274],[1.064026,51.951987],[1.064239,51.950049],[1.065888,51.949016],[1.066959,51.949552],[1.067408,51.952313],[1.068356,51.952463],[1.070468,51.953851],[1.071623,51.953154],[1.072979,51.954193],[1.072362,51.955386],[1.073076,51.955835],[1.076271,51.955359],[1.08151,51.956723],[1.084198,51.958537],[1.086308,51.958885],[1.089253,51.95865],[1.092286,51.957718],[1.094333,51.957511],[1.095749,51.956183],[1.098052,51.955649],[1.100839,51.955484],[1.099996,51.954326],[1.107427,51.953814],[1.109288,51.953978],[1.110729,51.954852],[1.114146,51.955749],[1.118978,51.956213],[1.130372,51.953522],[1.131085,51.956445],[1.132249,51.957596],[1.137194,51.959233],[1.138849,51.960562],[1.144085,51.962373],[1.149104,51.963256],[1.15104,51.964802],[1.152788,51.964675],[1.158665,51.966308],[1.162932,51.968679],[1.162492,51.969265],[1.163517,51.970593],[1.165327,51.96958],[1.164396,51.969084],[1.164269,51.968062],[1.163129,51.967277],[1.165618,51.967079],[1.168813,51.966118],[1.171661,51.966123],[1.17533,51.965685],[1.177891,51.964781],[1.179231,51.963944],[1.180778,51.962253],[1.184007,51.957594],[1.187022,51.9557],[1.191061,51.955444],[1.192668,51.956018],[1.195384,51.956228],[1.199737,51.955582],[1.20757,51.955184],[1.209338,51.955321],[1.210185,51.956002],[1.212466,51.955894],[1.216586,51.953551],[1.219771,51.952866],[1.221553,51.953767],[1.223572,51.955627],[1.224457,51.955182],[1.232222,51.957049],[1.231835,51.958086],[1.233282,51.959513],[1.237421,51.961107],[1.238859,51.960172],[1.239082,51.961006],[1.239655,51.960559],[1.239888,51.960723],[1.240518,51.960696],[1.243229,51.960294],[1.245966,51.960997],[1.250334,51.960603],[1.251979,51.960101],[1.253752,51.960159],[1.255961,51.959667],[1.266837,51.955651],[1.269393,51.954306],[1.275158,51.956163],[1.27647,51.957547],[1.27818,51.958659],[1.279058,51.960283],[1.277499,51.961877],[1.276761,51.963894],[1.275108,51.964851],[1.2729,51.968215],[1.270625,51.973865],[1.270843,51.975473],[1.26886,51.975686],[1.267519,51.976398],[1.26912,51.977722],[1.268919,51.978983],[1.271095,51.979397],[1.270616,51.983545],[1.267257,51.987818],[1.263505,51.988354],[1.262771,51.988138],[1.257918,51.989612],[1.25297,51.990256],[1.248292,51.989456],[1.245995,51.991074],[1.245933,51.991644],[1.243843,51.991717],[1.240348,51.993107],[1.239901,51.992893],[1.235823,51.994468],[1.232577,51.995472],[1.22688,51.996763],[1.211833,51.996454],[1.209315,51.998334],[1.206761,52.001663],[1.20554,52.002254],[1.203434,52.004807],[1.199892,52.006005],[1.198669,52.00591],[1.194172,52.006922],[1.193187,52.006594],[1.191315,52.007037],[1.190819,52.006353],[1.188113,52.00645],[1.182268,52.008544],[1.179251,52.010905],[1.177489,52.011343],[1.175553,52.013286],[1.17437,52.013664],[1.170284,52.016529],[1.169214,52.016799],[1.166987,52.01814],[1.167069,52.018767],[1.165206,52.020223],[1.163458,52.023514],[1.16129,52.025205],[1.161986,52.026689],[1.161476,52.027116],[1.158743,52.027676],[1.156844,52.028972],[1.153494,52.032937],[1.151517,52.033266],[1.14911,52.034036],[1.146202,52.033943],[1.144315,52.033226],[1.141119,52.032823],[1.139376,52.032081],[1.136537,52.032129],[1.136296,52.030931],[1.134031,52.030451],[1.130186,52.030447],[1.128508,52.030893],[1.12598,52.032722],[1.126204,52.033607],[1.124996,52.033909],[1.122598,52.035506],[1.119755,52.03617],[1.117608,52.035322],[1.116273,52.035432],[1.112943,52.034578],[1.112762,52.037613],[1.111907,52.040436],[1.111135,52.041902],[1.10868,52.043619],[1.107275,52.046186],[1.107898,52.046745],[1.114314,52.048597],[1.1126,52.049606],[1.11136,52.051656],[1.110529,52.051658],[1.11025,52.053502],[1.113509,52.05423],[1.11682,52.055922],[1.122004,52.057425],[1.120729,52.060092],[1.122021,52.061522],[1.110293,52.069446],[1.109197,52.071004],[1.107645,52.071707],[1.105754,52.071781],[1.104823,52.070715],[1.103366,52.070158],[1.100121,52.069554],[1.097617,52.068698],[1.096552,52.066517],[1.091231,52.0654],[1.086844,52.065775],[1.0818,52.065807],[1.069654,52.065157],[1.065387,52.065392],[1.058188,52.066535],[1.057614,52.068511],[1.053389,52.070002],[1.05288,52.073042],[1.051373,52.075033],[1.049058,52.075315],[1.049033,52.07623],[1.047575,52.077865],[1.045445,52.077911],[1.045118,52.076112],[1.043541,52.075222],[1.041462,52.074578],[1.041922,52.072262],[1.040889,52.070984],[1.041504,52.069742],[1.041435,52.068618],[1.035982,52.068361],[1.032892,52.069367],[1.028939,52.06985],[1.026021,52.070887],[1.026604,52.071707],[1.026477,52.07284],[1.027908,52.074261],[1.027339,52.07463],[1.028205,52.076747],[1.027466,52.077944],[1.020501,52.083583],[1.019803,52.085275],[1.019115,52.085693],[1.020302,52.08687],[1.016759,52.089637],[1.010816,52.091634],[1.00661,52.093526],[1.007105,52.093789],[1.0051,52.097524],[1.003808,52.09861],[1.002908,52.09873],[0.996818,52.098112],[0.994331,52.097091],[0.992786,52.095983],[0.990809,52.096683],[0.987828,52.09682],[0.985721,52.097254],[0.984436,52.097124],[0.979782,52.095245],[0.979874,52.096513],[0.976384,52.096857],[0.973006,52.095365],[0.970778,52.095671],[0.973071,52.097669],[0.974796,52.099939],[0.973329,52.100745],[0.975362,52.101425],[0.974131,52.103928],[0.972832,52.104905],[0.973673,52.105294],[0.97312,52.106923],[0.970053,52.106552],[0.96622,52.104544],[0.96524,52.105439],[0.963659,52.105273],[0.962079,52.104519],[0.959302,52.104855],[0.956592,52.106079],[0.957332,52.106383],[0.953361,52.108504],[0.951547,52.110578],[0.952427,52.111336],[0.951253,52.112674],[0.951187,52.114712],[0.950568,52.119625],[0.953655,52.120281],[0.951276,52.123805],[0.949325,52.12522],[0.94659,52.125957],[0.944735,52.127646],[0.945342,52.128832],[0.944809,52.129483],[0.947637,52.131051],[0.946918,52.13148],[0.946364,52.134684],[0.947201,52.135458],[0.94566,52.136172],[0.946482,52.137105],[0.948365,52.137215],[0.948823,52.137817],[0.946727,52.142573],[0.94538,52.142556],[0.945415,52.143489],[0.944033,52.144654],[0.946551,52.145496],[0.944567,52.147336],[0.944424,52.149502],[0.942762,52.151193],[0.938416,52.152466],[0.939449,52.153389],[0.941676,52.153725],[0.93805,52.15754],[0.936836,52.15648],[0.934922,52.15585],[0.932332,52.15625],[0.930737,52.154371],[0.928795,52.154038],[0.927277,52.153036],[0.922607,52.153768],[0.921945,52.155269],[0.91832,52.155893],[0.913062,52.153486],[0.911744,52.153655],[0.907511,52.15302],[0.897946,52.150542],[0.892369,52.150472],[0.893882,52.157678],[0.888776,52.155638],[0.88158,52.154701],[0.878744,52.157592],[0.877505,52.15932],[0.874022,52.160116],[0.872321,52.163491],[0.86989,52.164547],[0.868823,52.165577],[0.863539,52.164018],[0.861922,52.163831],[0.859441,52.165936],[0.857658,52.165461],[0.859536,52.16339],[0.856296,52.162851],[0.853002,52.161862],[0.846965,52.161762],[0.843326,52.161266],[0.838006,52.161824],[0.832911,52.16198],[0.829771,52.162725],[0.825579,52.162667],[0.82118,52.164102],[0.816601,52.168221],[0.813721,52.170435],[0.814169,52.170733]]]]},"properties":{"LAD22CD":"E07000200","LAD22NM":"Babergh","BNG_E":599987,"BNG_N":244692,"LONG":0.916149,"LAT":52.0645,"GlobalID":"7caf0003-6a69-48bc-a7d8-68c1ec5fddb1"},"id":202}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.157839,52.088752],[1.154287,52.091017],[1.149336,52.092883],[1.14947,52.093728],[1.144897,52.093988],[1.142292,52.09447],[1.139552,52.093689],[1.140032,52.091792],[1.13942,52.0915],[1.139804,52.089271],[1.138533,52.088393],[1.133512,52.087874],[1.132446,52.088034],[1.12962,52.087321],[1.123363,52.087621],[1.120875,52.087404],[1.113757,52.090065],[1.112686,52.088797],[1.11099,52.089223],[1.110476,52.08841],[1.109136,52.088066],[1.10883,52.085629],[1.111311,52.085609],[1.111783,52.084843],[1.111185,52.083113],[1.109313,52.082033],[1.108543,52.080623],[1.110251,52.079399],[1.11031,52.078523],[1.111913,52.076395],[1.110469,52.075323],[1.111444,52.074704],[1.110849,52.073333],[1.109191,52.073527],[1.109197,52.071004],[1.110293,52.069446],[1.122021,52.061522],[1.120729,52.060092],[1.122004,52.057425],[1.11682,52.055922],[1.113509,52.05423],[1.11025,52.053502],[1.110529,52.051658],[1.11136,52.051656],[1.1126,52.049606],[1.114314,52.048597],[1.107898,52.046745],[1.107275,52.046186],[1.10868,52.043619],[1.111135,52.041902],[1.111907,52.040436],[1.112762,52.037613],[1.112943,52.034578],[1.116273,52.035432],[1.117608,52.035322],[1.119755,52.03617],[1.122598,52.035506],[1.124996,52.033909],[1.126204,52.033607],[1.12598,52.032722],[1.128508,52.030893],[1.130186,52.030447],[1.134031,52.030451],[1.136296,52.030931],[1.136537,52.032129],[1.139376,52.032081],[1.141119,52.032823],[1.144315,52.033226],[1.146202,52.033943],[1.14911,52.034036],[1.150889,52.034611],[1.15289,52.034838],[1.15474,52.035633],[1.155565,52.036617],[1.156136,52.038408],[1.15728,52.039183],[1.156535,52.040364],[1.160124,52.044317],[1.160244,52.046852],[1.158908,52.04959],[1.157648,52.050664],[1.155669,52.051629],[1.150142,52.05112],[1.145208,52.051446],[1.153691,52.051736],[1.155099,52.05198],[1.158043,52.050856],[1.160513,52.048954],[1.160933,52.046419],[1.163725,52.045043],[1.160965,52.041854],[1.158495,52.038283],[1.158007,52.03681],[1.158003,52.034578],[1.15972,52.032187],[1.160591,52.031684],[1.16422,52.031102],[1.166227,52.029863],[1.169719,52.030373],[1.173744,52.024316],[1.178847,52.021547],[1.180987,52.022605],[1.182849,52.022706],[1.183104,52.024471],[1.18481,52.024327],[1.18661,52.021993],[1.190085,52.023031],[1.193858,52.023717],[1.195434,52.024533],[1.201678,52.024331],[1.204231,52.023456],[1.209477,52.020769],[1.212157,52.022691],[1.21131,52.023164],[1.215032,52.025621],[1.218342,52.023796],[1.219369,52.022883],[1.22361,52.029434],[1.212064,52.03418],[1.20468,52.035839],[1.201944,52.037405],[1.203296,52.038084],[1.202101,52.038724],[1.203432,52.039705],[1.203457,52.04048],[1.205747,52.040699],[1.209212,52.048477],[1.207048,52.04869],[1.203858,52.049478],[1.205705,52.052218],[1.206197,52.053741],[1.204895,52.058425],[1.20521,52.06214],[1.206455,52.064019],[1.20355,52.06739],[1.202294,52.067951],[1.201024,52.067752],[1.199515,52.069167],[1.200119,52.069498],[1.197366,52.071151],[1.196647,52.072017],[1.196615,52.073166],[1.190994,52.074104],[1.192153,52.075129],[1.186826,52.077286],[1.188365,52.07882],[1.190003,52.079324],[1.189894,52.08045],[1.171355,52.081246],[1.170982,52.080813],[1.165834,52.080631],[1.164996,52.081066],[1.16569,52.082344],[1.162335,52.082772],[1.163591,52.084228],[1.164133,52.085884],[1.159614,52.087099],[1.159554,52.087983],[1.157839,52.088752]]]},"properties":{"LAD22CD":"E07000202","LAD22NM":"Ipswich","BNG_E":617161,"BNG_N":244456,"LONG":1.166145,"LAT":52.05592,"GlobalID":"2564530e-3d6d-4c6a-9221-84f4a16a2cd8"},"id":203}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.347101,52.404411],[1.344815,52.403717],[1.341708,52.402201],[1.340279,52.402353],[1.337809,52.401714],[1.335798,52.401966],[1.335212,52.399744],[1.333457,52.398515],[1.333365,52.397065],[1.330251,52.394317],[1.330605,52.393554],[1.325983,52.391642],[1.324717,52.39031],[1.322704,52.389105],[1.320011,52.389559],[1.317589,52.388413],[1.316171,52.388436],[1.316303,52.387391],[1.31319,52.388241],[1.311628,52.387851],[1.308602,52.388548],[1.308148,52.389462],[1.30463,52.39103],[1.302659,52.390624],[1.301516,52.391713],[1.300057,52.391395],[1.299058,52.391811],[1.296265,52.391737],[1.295455,52.390636],[1.293168,52.389531],[1.290556,52.390014],[1.288964,52.390958],[1.286235,52.39069],[1.283155,52.388992],[1.281272,52.388562],[1.281049,52.38765],[1.279206,52.386798],[1.278486,52.385082],[1.276508,52.38441],[1.272511,52.382306],[1.270827,52.380045],[1.269783,52.380235],[1.268198,52.379392],[1.268222,52.378214],[1.266534,52.376917],[1.265581,52.375572],[1.264049,52.374546],[1.26286,52.374345],[1.262354,52.372986],[1.259996,52.371099],[1.258343,52.370559],[1.255813,52.371036],[1.253473,52.370351],[1.252108,52.368387],[1.24989,52.366416],[1.248334,52.365814],[1.245602,52.365323],[1.244472,52.366062],[1.240378,52.365809],[1.238356,52.364903],[1.236662,52.365396],[1.23445,52.364854],[1.233017,52.364953],[1.233162,52.361942],[1.231807,52.361723],[1.23034,52.360251],[1.227983,52.360028],[1.226056,52.360471],[1.223009,52.359543],[1.222065,52.358477],[1.217812,52.357027],[1.216314,52.357362],[1.214945,52.355732],[1.21264,52.355387],[1.208323,52.357087],[1.206048,52.357359],[1.202915,52.359653],[1.200174,52.35982],[1.195935,52.360716],[1.19534,52.361453],[1.192922,52.361063],[1.190205,52.361803],[1.18907,52.361044],[1.187879,52.360945],[1.187017,52.359843],[1.182376,52.358783],[1.180471,52.359514],[1.179509,52.360367],[1.177301,52.360993],[1.175437,52.360059],[1.174202,52.360488],[1.172179,52.360441],[1.170866,52.359916],[1.167574,52.360247],[1.163058,52.36216],[1.161362,52.362187],[1.160971,52.361461],[1.157055,52.361305],[1.15546,52.361551],[1.150862,52.363495],[1.150503,52.364598],[1.146111,52.365067],[1.144645,52.365002],[1.143603,52.366433],[1.141548,52.366541],[1.13912,52.36717],[1.133946,52.367151],[1.132689,52.367828],[1.130333,52.367738],[1.127833,52.367145],[1.122937,52.367295],[1.120872,52.369387],[1.119452,52.369736],[1.117329,52.369718],[1.116218,52.371047],[1.113656,52.371121],[1.111459,52.371682],[1.104684,52.371257],[1.102166,52.370738],[1.099467,52.371598],[1.082483,52.373094],[1.079183,52.372384],[1.075421,52.373141],[1.073066,52.375647],[1.069714,52.376738],[1.069521,52.377822],[1.068492,52.378461],[1.065216,52.37865],[1.064648,52.377965],[1.062171,52.377358],[1.056187,52.377033],[1.053234,52.3773],[1.051315,52.378114],[1.048763,52.378038],[1.048264,52.377687],[1.044167,52.377808],[1.037722,52.377327],[1.03709,52.3791],[1.035265,52.37904],[1.034004,52.378374],[1.029957,52.378735],[1.021465,52.378033],[1.014202,52.375692],[1.006814,52.375743],[1.003467,52.374592],[0.998663,52.371757],[0.997812,52.37154],[0.990918,52.370814],[0.988401,52.371554],[0.987137,52.371524],[0.980319,52.369519],[0.977986,52.370017],[0.967471,52.370113],[0.966649,52.368748],[0.966655,52.367129],[0.967252,52.365735],[0.964621,52.36406],[0.959512,52.361852],[0.953827,52.357136],[0.953171,52.356061],[0.955098,52.355627],[0.956049,52.354407],[0.956179,52.351513],[0.957984,52.350782],[0.957427,52.347975],[0.958067,52.347579],[0.957704,52.34579],[0.956759,52.345494],[0.955705,52.341766],[0.957543,52.340736],[0.955831,52.339331],[0.955081,52.338145],[0.95323,52.336861],[0.94662,52.336457],[0.940579,52.335517],[0.937941,52.334702],[0.936116,52.335322],[0.932697,52.33573],[0.933191,52.334146],[0.932222,52.332944],[0.932271,52.331998],[0.931432,52.330402],[0.928509,52.327951],[0.926852,52.328335],[0.925692,52.327336],[0.92514,52.325587],[0.92612,52.323353],[0.926214,52.321424],[0.926809,52.320084],[0.92594,52.319279],[0.927541,52.316432],[0.930127,52.314322],[0.931124,52.312869],[0.925136,52.311737],[0.918545,52.311338],[0.919472,52.309413],[0.916814,52.308102],[0.908731,52.30613],[0.904577,52.305588],[0.908185,52.303487],[0.909018,52.304472],[0.911336,52.303481],[0.911678,52.30206],[0.908919,52.301592],[0.90316,52.303846],[0.90335,52.30181],[0.902839,52.300781],[0.900152,52.298916],[0.898313,52.299712],[0.892884,52.300102],[0.889687,52.299722],[0.882935,52.300137],[0.882865,52.298184],[0.884649,52.297412],[0.885726,52.297424],[0.885638,52.296094],[0.886875,52.295908],[0.887356,52.292719],[0.883785,52.292785],[0.8796,52.293406],[0.880339,52.295309],[0.880023,52.296014],[0.876989,52.295827],[0.87689,52.297552],[0.874329,52.298282],[0.874082,52.29949],[0.866794,52.297864],[0.868687,52.295755],[0.869003,52.293459],[0.863626,52.293267],[0.859664,52.291964],[0.855262,52.291546],[0.855557,52.286349],[0.8527,52.286183],[0.849788,52.285344],[0.842899,52.284781],[0.843898,52.284443],[0.845985,52.282711],[0.849046,52.281961],[0.849102,52.280095],[0.850465,52.278429],[0.853683,52.27707],[0.85444,52.27516],[0.852794,52.271725],[0.854119,52.270438],[0.855509,52.269764],[0.856327,52.268442],[0.85356,52.267514],[0.852059,52.265486],[0.849568,52.264804],[0.842601,52.268027],[0.840184,52.266319],[0.842502,52.263985],[0.844646,52.263227],[0.845957,52.261778],[0.843865,52.2598],[0.841919,52.26012],[0.836931,52.261976],[0.836243,52.263139],[0.83306,52.264816],[0.825826,52.266515],[0.82298,52.266269],[0.820709,52.26649],[0.817711,52.264382],[0.81299,52.265102],[0.809416,52.267051],[0.803767,52.265984],[0.801604,52.265909],[0.799441,52.264713],[0.800831,52.263659],[0.798993,52.262356],[0.802185,52.258144],[0.798225,52.256199],[0.797581,52.25123],[0.801053,52.251107],[0.804044,52.250157],[0.80777,52.249395],[0.806681,52.246439],[0.813426,52.245995],[0.813589,52.243804],[0.816922,52.241425],[0.821398,52.241535],[0.824974,52.240336],[0.827129,52.238968],[0.824162,52.238868],[0.819952,52.233379],[0.821856,52.229983],[0.820915,52.229373],[0.822774,52.227915],[0.82174,52.224936],[0.819806,52.221327],[0.817125,52.213286],[0.814208,52.207043],[0.815155,52.20391],[0.818809,52.202029],[0.819919,52.200167],[0.819416,52.198987],[0.821355,52.19899],[0.826416,52.200217],[0.827594,52.198614],[0.829283,52.197633],[0.830257,52.19904],[0.836346,52.198296],[0.835963,52.197235],[0.836693,52.196798],[0.835359,52.195825],[0.838129,52.195341],[0.838055,52.194583],[0.836041,52.192681],[0.836042,52.190121],[0.834679,52.187993],[0.832729,52.186841],[0.83335,52.184688],[0.836274,52.182169],[0.830123,52.180283],[0.829862,52.17925],[0.826997,52.179317],[0.824572,52.179715],[0.822494,52.174559],[0.817242,52.17237],[0.814169,52.170733],[0.813721,52.170435],[0.816601,52.168221],[0.82118,52.164102],[0.825579,52.162667],[0.829771,52.162725],[0.832911,52.16198],[0.838006,52.161824],[0.843326,52.161266],[0.846965,52.161762],[0.853002,52.161862],[0.856296,52.162851],[0.859536,52.16339],[0.857658,52.165461],[0.859441,52.165936],[0.861922,52.163831],[0.863539,52.164018],[0.868823,52.165577],[0.86989,52.164547],[0.872321,52.163491],[0.874022,52.160116],[0.877505,52.15932],[0.878744,52.157592],[0.88158,52.154701],[0.888776,52.155638],[0.893882,52.157678],[0.892369,52.150472],[0.897946,52.150542],[0.907511,52.15302],[0.911744,52.153655],[0.913062,52.153486],[0.91832,52.155893],[0.921945,52.155269],[0.922607,52.153768],[0.927277,52.153036],[0.928795,52.154038],[0.930737,52.154371],[0.932332,52.15625],[0.934922,52.15585],[0.936836,52.15648],[0.93805,52.15754],[0.941676,52.153725],[0.939449,52.153389],[0.938416,52.152466],[0.942762,52.151193],[0.944424,52.149502],[0.944567,52.147336],[0.946551,52.145496],[0.944033,52.144654],[0.945415,52.143489],[0.94538,52.142556],[0.946727,52.142573],[0.948823,52.137817],[0.948365,52.137215],[0.946482,52.137105],[0.94566,52.136172],[0.947201,52.135458],[0.946364,52.134684],[0.946918,52.13148],[0.947637,52.131051],[0.944809,52.129483],[0.945342,52.128832],[0.944735,52.127646],[0.94659,52.125957],[0.949325,52.12522],[0.951276,52.123805],[0.953655,52.120281],[0.950568,52.119625],[0.951187,52.114712],[0.951253,52.112674],[0.952427,52.111336],[0.951547,52.110578],[0.953361,52.108504],[0.957332,52.106383],[0.956592,52.106079],[0.959302,52.104855],[0.962079,52.104519],[0.963659,52.105273],[0.96524,52.105439],[0.96622,52.104544],[0.970053,52.106552],[0.97312,52.106923],[0.973673,52.105294],[0.972832,52.104905],[0.974131,52.103928],[0.975362,52.101425],[0.973329,52.100745],[0.974796,52.099939],[0.973071,52.097669],[0.970778,52.095671],[0.973006,52.095365],[0.976384,52.096857],[0.979874,52.096513],[0.979782,52.095245],[0.984436,52.097124],[0.985721,52.097254],[0.987828,52.09682],[0.990809,52.096683],[0.992786,52.095983],[0.994331,52.097091],[0.996818,52.098112],[1.002908,52.09873],[1.003808,52.09861],[1.0051,52.097524],[1.007105,52.093789],[1.00661,52.093526],[1.010816,52.091634],[1.016759,52.089637],[1.020302,52.08687],[1.019115,52.085693],[1.019803,52.085275],[1.020501,52.083583],[1.027466,52.077944],[1.028205,52.076747],[1.027339,52.07463],[1.027908,52.074261],[1.026477,52.07284],[1.026604,52.071707],[1.026021,52.070887],[1.028939,52.06985],[1.032892,52.069367],[1.035982,52.068361],[1.041435,52.068618],[1.041504,52.069742],[1.040889,52.070984],[1.041922,52.072262],[1.041462,52.074578],[1.043541,52.075222],[1.045118,52.076112],[1.045445,52.077911],[1.047575,52.077865],[1.049033,52.07623],[1.049058,52.075315],[1.051373,52.075033],[1.05288,52.073042],[1.053389,52.070002],[1.057614,52.068511],[1.058188,52.066535],[1.065387,52.065392],[1.069654,52.065157],[1.0818,52.065807],[1.086844,52.065775],[1.091231,52.0654],[1.096552,52.066517],[1.097617,52.068698],[1.100121,52.069554],[1.103366,52.070158],[1.104823,52.070715],[1.105754,52.071781],[1.107645,52.071707],[1.109197,52.071004],[1.109191,52.073527],[1.110849,52.073333],[1.111444,52.074704],[1.110469,52.075323],[1.111913,52.076395],[1.11031,52.078523],[1.110251,52.079399],[1.108543,52.080623],[1.109313,52.082033],[1.111185,52.083113],[1.111783,52.084843],[1.111311,52.085609],[1.10883,52.085629],[1.109136,52.088066],[1.110476,52.08841],[1.11099,52.089223],[1.112686,52.088797],[1.113757,52.090065],[1.120875,52.087404],[1.123363,52.087621],[1.12962,52.087321],[1.132446,52.088034],[1.133512,52.087874],[1.138533,52.088393],[1.139804,52.089271],[1.13942,52.0915],[1.140032,52.091792],[1.139552,52.093689],[1.142292,52.09447],[1.144897,52.093988],[1.14947,52.093728],[1.149336,52.092883],[1.154287,52.091017],[1.157839,52.088752],[1.160511,52.0915],[1.162762,52.092283],[1.160294,52.093078],[1.161509,52.094508],[1.162683,52.094649],[1.164635,52.09716],[1.166421,52.09838],[1.16723,52.099804],[1.165225,52.103578],[1.165089,52.106018],[1.164173,52.108781],[1.165513,52.113314],[1.169092,52.113205],[1.170572,52.113631],[1.17037,52.114305],[1.171891,52.115549],[1.171226,52.117288],[1.17227,52.118167],[1.17671,52.119824],[1.177767,52.1207],[1.177797,52.122129],[1.17648,52.125988],[1.176632,52.126954],[1.177953,52.127886],[1.175635,52.129158],[1.173307,52.128293],[1.172452,52.127562],[1.170203,52.127623],[1.170487,52.129315],[1.169469,52.13125],[1.171768,52.132258],[1.175353,52.132466],[1.17678,52.135735],[1.176702,52.13693],[1.18702,52.139608],[1.191403,52.139984],[1.192185,52.144154],[1.193974,52.147376],[1.195482,52.147286],[1.196632,52.148583],[1.196668,52.155004],[1.201073,52.155438],[1.202247,52.155809],[1.205204,52.158149],[1.211247,52.160048],[1.211721,52.160548],[1.215425,52.161571],[1.215043,52.164625],[1.213965,52.166538],[1.216065,52.166416],[1.219795,52.166935],[1.219812,52.167746],[1.220884,52.169294],[1.224065,52.168991],[1.224104,52.169404],[1.226993,52.169755],[1.22878,52.170434],[1.237135,52.16966],[1.239843,52.170429],[1.241476,52.175873],[1.243257,52.180016],[1.244232,52.181337],[1.247621,52.18348],[1.247502,52.184767],[1.251257,52.18607],[1.254173,52.188131],[1.254016,52.190046],[1.255158,52.189988],[1.255456,52.191153],[1.255185,52.194547],[1.256957,52.19492],[1.25724,52.197073],[1.25673,52.198365],[1.252599,52.19816],[1.249251,52.200336],[1.247747,52.20007],[1.242263,52.20034],[1.241684,52.20438],[1.242685,52.205118],[1.243038,52.207255],[1.242736,52.208209],[1.243985,52.210644],[1.241621,52.212144],[1.244336,52.213169],[1.243527,52.214403],[1.248347,52.215828],[1.243544,52.217695],[1.245399,52.219301],[1.245052,52.220358],[1.246081,52.221353],[1.246082,52.222332],[1.248889,52.225881],[1.246258,52.226825],[1.247892,52.229128],[1.250757,52.229514],[1.254162,52.230485],[1.25808,52.230877],[1.260262,52.231375],[1.268125,52.234125],[1.270462,52.235851],[1.27409,52.23725],[1.277398,52.238282],[1.279796,52.238303],[1.282021,52.239663],[1.286456,52.240461],[1.288552,52.241941],[1.293516,52.247609],[1.293368,52.250359],[1.291845,52.253164],[1.292464,52.254847],[1.293376,52.255474],[1.2973,52.256388],[1.301017,52.259016],[1.303555,52.259429],[1.309435,52.259658],[1.311078,52.258977],[1.317106,52.258694],[1.322208,52.260128],[1.324623,52.263346],[1.326169,52.263817],[1.326453,52.264642],[1.328947,52.265423],[1.3337,52.265443],[1.338534,52.266288],[1.339767,52.265926],[1.338429,52.270219],[1.337031,52.270493],[1.338168,52.271898],[1.338251,52.27276],[1.336862,52.276668],[1.338998,52.276708],[1.340647,52.280424],[1.341268,52.284448],[1.339501,52.287413],[1.336486,52.287465],[1.333893,52.287894],[1.332687,52.289929],[1.33261,52.290951],[1.330402,52.290966],[1.330077,52.292948],[1.328994,52.294521],[1.328263,52.294536],[1.328301,52.296652],[1.327591,52.298479],[1.33174,52.298413],[1.336136,52.297507],[1.338441,52.296833],[1.339928,52.29608],[1.344261,52.294982],[1.347295,52.293405],[1.347674,52.292298],[1.346555,52.290953],[1.347029,52.288829],[1.345009,52.286059],[1.344956,52.28343],[1.344431,52.28209],[1.346145,52.280099],[1.349359,52.279842],[1.350573,52.278074],[1.35045,52.276656],[1.35275,52.276489],[1.353548,52.275442],[1.355657,52.274077],[1.356336,52.275452],[1.355701,52.276331],[1.356232,52.277204],[1.35548,52.278775],[1.35968,52.27895],[1.363036,52.27783],[1.367225,52.277149],[1.371073,52.276083],[1.371968,52.275416],[1.376003,52.276089],[1.376311,52.275455],[1.381501,52.279816],[1.384178,52.280313],[1.38471,52.280765],[1.386716,52.280735],[1.388006,52.281671],[1.390789,52.283065],[1.393859,52.283357],[1.401645,52.285698],[1.398064,52.28773],[1.391269,52.290749],[1.387155,52.291654],[1.38414,52.294106],[1.382266,52.299352],[1.3833,52.300021],[1.380724,52.303546],[1.382289,52.305502],[1.384271,52.309372],[1.384022,52.310667],[1.381987,52.310421],[1.380246,52.311269],[1.380548,52.312082],[1.379307,52.313267],[1.377024,52.313585],[1.375036,52.31312],[1.37302,52.313194],[1.371017,52.313731],[1.367323,52.317866],[1.365059,52.318432],[1.360375,52.320393],[1.357476,52.322157],[1.358009,52.323033],[1.359629,52.3304],[1.360862,52.333286],[1.362161,52.334366],[1.357405,52.337278],[1.359912,52.339823],[1.361977,52.341308],[1.365243,52.342309],[1.367413,52.344723],[1.369505,52.346334],[1.374675,52.347746],[1.377437,52.347717],[1.380108,52.348621],[1.383822,52.352189],[1.38771,52.354243],[1.393789,52.355399],[1.397726,52.355486],[1.400415,52.35752],[1.407017,52.360908],[1.409508,52.363265],[1.403747,52.369459],[1.400421,52.371657],[1.399991,52.372805],[1.398715,52.373991],[1.396505,52.37508],[1.393175,52.378115],[1.391429,52.378603],[1.388518,52.380135],[1.382601,52.384668],[1.37972,52.386262],[1.378394,52.388363],[1.375729,52.389641],[1.375917,52.393354],[1.374857,52.394677],[1.371532,52.394724],[1.370924,52.395605],[1.368416,52.397269],[1.367393,52.398886],[1.364795,52.398184],[1.364244,52.398477],[1.360964,52.403523],[1.357409,52.404082],[1.352976,52.403538],[1.351495,52.403884],[1.349867,52.403342],[1.347101,52.404411]]]},"properties":{"LAD22CD":"E07000203","LAD22NM":"Mid Suffolk","BNG_E":611646,"BNG_N":262338,"LONG":1.096953,"LAT":52.21859,"GlobalID":"32166186-3695-4478-925e-24119e18545d"},"id":204}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.317698,51.393667],[-0.319833,51.392593],[-0.32586,51.39144],[-0.328672,51.392309],[-0.330786,51.394091],[-0.332264,51.395918],[-0.335807,51.398456],[-0.340637,51.403094],[-0.343788,51.40398],[-0.347081,51.405881],[-0.349891,51.40698],[-0.355109,51.409807],[-0.355357,51.410752],[-0.35914,51.411903],[-0.361238,51.41204],[-0.36474,51.411592],[-0.37386,51.408493],[-0.379428,51.407834],[-0.38335,51.408538],[-0.385697,51.409151],[-0.390465,51.409643],[-0.397047,51.407983],[-0.397193,51.408596],[-0.399922,51.407809],[-0.39933,51.407072],[-0.402768,51.405917],[-0.406045,51.405659],[-0.408158,51.40517],[-0.410635,51.404105],[-0.412934,51.40147],[-0.414632,51.400694],[-0.415837,51.399149],[-0.417141,51.398834],[-0.417198,51.397659],[-0.418948,51.397164],[-0.418686,51.395542],[-0.420708,51.394102],[-0.4216,51.392412],[-0.422698,51.391701],[-0.426135,51.390415],[-0.426546,51.388749],[-0.427667,51.386415],[-0.428855,51.385371],[-0.43209,51.384042],[-0.435617,51.384264],[-0.437513,51.385187],[-0.438137,51.386901],[-0.439977,51.388722],[-0.441591,51.389704],[-0.443423,51.389253],[-0.443783,51.387557],[-0.445004,51.386901],[-0.447583,51.386847],[-0.450219,51.388022],[-0.451891,51.387633],[-0.451956,51.386911],[-0.450255,51.38492],[-0.450523,51.38366],[-0.451978,51.382823],[-0.455167,51.383226],[-0.457879,51.381849],[-0.459586,51.3815],[-0.457991,51.380567],[-0.458049,51.379809],[-0.460141,51.379113],[-0.461641,51.376913],[-0.465009,51.376239],[-0.467624,51.37462],[-0.467488,51.373639],[-0.466385,51.372819],[-0.465571,51.370932],[-0.468248,51.370145],[-0.470022,51.367293],[-0.467651,51.366019],[-0.469293,51.365808],[-0.471495,51.364381],[-0.473301,51.364062],[-0.475468,51.364113],[-0.474854,51.363065],[-0.476137,51.361816],[-0.476087,51.359547],[-0.474558,51.359053],[-0.473486,51.358193],[-0.470679,51.357634],[-0.470108,51.357119],[-0.468435,51.357542],[-0.466972,51.356575],[-0.472491,51.353776],[-0.474511,51.352232],[-0.47841,51.350786],[-0.481156,51.349358],[-0.480683,51.347727],[-0.479655,51.34775],[-0.479207,51.345238],[-0.476769,51.343263],[-0.472821,51.342164],[-0.466072,51.342851],[-0.465498,51.341314],[-0.463654,51.340616],[-0.463571,51.338607],[-0.46117,51.337089],[-0.462071,51.336798],[-0.460981,51.33509],[-0.462489,51.333957],[-0.462838,51.332791],[-0.461935,51.331333],[-0.462344,51.32996],[-0.45615,51.331036],[-0.451452,51.330938],[-0.449921,51.330369],[-0.451275,51.328646],[-0.44557,51.326771],[-0.437163,51.327447],[-0.436607,51.326327],[-0.439063,51.326111],[-0.440089,51.325066],[-0.443648,51.324104],[-0.445699,51.324141],[-0.445932,51.317492],[-0.443828,51.313073],[-0.442957,51.307943],[-0.440312,51.304836],[-0.436726,51.303968],[-0.432369,51.304369],[-0.42856,51.303901],[-0.426386,51.304482],[-0.422121,51.304206],[-0.416056,51.304492],[-0.415407,51.303887],[-0.411794,51.303566],[-0.409393,51.303091],[-0.408578,51.30233],[-0.405398,51.297007],[-0.405327,51.294892],[-0.40393,51.294877],[-0.402291,51.296545],[-0.397594,51.298074],[-0.394742,51.297948],[-0.394078,51.298665],[-0.393971,51.300851],[-0.392738,51.301562],[-0.39294,51.306717],[-0.392001,51.308407],[-0.392778,51.309186],[-0.395055,51.310206],[-0.396123,51.310319],[-0.397592,51.312009],[-0.396927,51.312817],[-0.392388,51.312217],[-0.391364,51.311346],[-0.391243,51.310228],[-0.389996,51.310458],[-0.387481,51.309731],[-0.386639,51.310838],[-0.384361,51.312918],[-0.380425,51.313568],[-0.378827,51.31291],[-0.378523,51.311605],[-0.377453,51.310364],[-0.373733,51.30962],[-0.371924,51.309913],[-0.37108,51.311398],[-0.368651,51.312927],[-0.368079,51.314344],[-0.367301,51.314874],[-0.365621,51.313864],[-0.36522,51.312979],[-0.363722,51.312947],[-0.363956,51.311898],[-0.360316,51.311803],[-0.358198,51.31318],[-0.357041,51.315398],[-0.352499,51.319129],[-0.345336,51.322413],[-0.33817,51.324358],[-0.335773,51.325314],[-0.332264,51.327502],[-0.330656,51.32901],[-0.329093,51.330262],[-0.329695,51.332765],[-0.328956,51.340231],[-0.327883,51.343742],[-0.33051,51.348419],[-0.327923,51.352185],[-0.323729,51.354411],[-0.321506,51.357209],[-0.319769,51.359928],[-0.318262,51.363505],[-0.318482,51.365762],[-0.317482,51.371969],[-0.316671,51.373166],[-0.314318,51.374638],[-0.312652,51.374751],[-0.308672,51.375448],[-0.307971,51.376664],[-0.307869,51.378364],[-0.308495,51.380501],[-0.310608,51.384764],[-0.311765,51.385785],[-0.310846,51.386186],[-0.313111,51.388772],[-0.315959,51.387632],[-0.316737,51.388772],[-0.314112,51.390217],[-0.317698,51.393667]]]},"properties":{"LAD22CD":"E07000207","LAD22NM":"Elmbridge","BNG_E":511882,"BNG_N":163658,"LONG":-0.39441,"LAT":51.36098,"GlobalID":"3871968d-32af-4077-bbfe-0e43e1cb49ea"},"id":205}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.220941,51.329863],[-0.229823,51.336523],[-0.226827,51.337888],[-0.224091,51.340041],[-0.222277,51.340461],[-0.221786,51.341345],[-0.217265,51.343387],[-0.217778,51.345631],[-0.220186,51.35008],[-0.220421,51.35142],[-0.222092,51.351325],[-0.221975,51.353531],[-0.222737,51.357086],[-0.224058,51.359274],[-0.226944,51.362625],[-0.233192,51.36601],[-0.23395,51.365385],[-0.23678,51.366797],[-0.240891,51.367037],[-0.241151,51.366262],[-0.245405,51.366845],[-0.24468,51.369061],[-0.24503,51.380034],[-0.247894,51.380169],[-0.251638,51.379048],[-0.253948,51.378772],[-0.258421,51.378969],[-0.261149,51.3796],[-0.262469,51.377253],[-0.264679,51.375622],[-0.269065,51.373562],[-0.272546,51.372264],[-0.274023,51.370655],[-0.275833,51.370014],[-0.27656,51.368808],[-0.27982,51.367825],[-0.282162,51.366],[-0.284076,51.365148],[-0.287021,51.362666],[-0.288249,51.362117],[-0.285077,51.361211],[-0.286973,51.359373],[-0.288973,51.35871],[-0.291085,51.356559],[-0.2912,51.3552],[-0.292661,51.353615],[-0.292907,51.352374],[-0.297771,51.349261],[-0.299925,51.347669],[-0.301314,51.345293],[-0.304025,51.343047],[-0.305414,51.339479],[-0.304926,51.33675],[-0.306192,51.335084],[-0.305008,51.332976],[-0.297429,51.32586],[-0.291043,51.324818],[-0.289249,51.323133],[-0.288541,51.321667],[-0.287662,51.321118],[-0.285533,51.317084],[-0.284206,51.312857],[-0.281497,51.311293],[-0.280751,51.31042],[-0.278782,51.306324],[-0.278207,51.30214],[-0.275315,51.298323],[-0.272903,51.293372],[-0.272235,51.29233],[-0.269849,51.294101],[-0.267456,51.297581],[-0.264399,51.299545],[-0.260454,51.299248],[-0.253525,51.299419],[-0.251601,51.299625],[-0.249894,51.29866],[-0.247127,51.298043],[-0.246379,51.302232],[-0.24322,51.306909],[-0.244027,51.30942],[-0.242779,51.310004],[-0.24103,51.309798],[-0.240737,51.310576],[-0.241439,51.311553],[-0.244071,51.31134],[-0.244395,51.313007],[-0.243644,51.314315],[-0.241314,51.316156],[-0.24114,51.317304],[-0.242969,51.32128],[-0.236043,51.326307],[-0.233949,51.327297],[-0.220941,51.329863]]]},"properties":{"LAD22CD":"E07000208","LAD22NM":"Epsom and Ewell","BNG_E":521176,"BNG_N":161475,"LONG":-0.26172,"LAT":51.33945,"GlobalID":"3784ddf2-7419-4428-9084-9a1839a9bcc6"},"id":206}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.462344,51.32996],[-0.464659,51.328887],[-0.467507,51.328547],[-0.468245,51.327199],[-0.473979,51.326999],[-0.474616,51.327995],[-0.478896,51.330274],[-0.481913,51.330113],[-0.483217,51.330641],[-0.483797,51.331506],[-0.487803,51.329872],[-0.489181,51.329743],[-0.489206,51.328074],[-0.487914,51.326573],[-0.485229,51.324209],[-0.483442,51.324481],[-0.482499,51.323332],[-0.482394,51.322352],[-0.478448,51.322554],[-0.477323,51.32119],[-0.474779,51.31889],[-0.47532,51.316452],[-0.477949,51.315549],[-0.481532,51.31504],[-0.482467,51.315405],[-0.481975,51.316352],[-0.484695,51.316158],[-0.487451,51.316445],[-0.488792,51.315023],[-0.491425,51.314637],[-0.491069,51.313455],[-0.491946,51.312069],[-0.491878,51.311051],[-0.493918,51.309682],[-0.498362,51.308456],[-0.499885,51.306876],[-0.500848,51.306564],[-0.503164,51.307089],[-0.501993,51.308863],[-0.503445,51.310414],[-0.505216,51.310112],[-0.504846,51.311277],[-0.507898,51.312332],[-0.509818,51.3117],[-0.509713,51.313039],[-0.51291,51.31198],[-0.51238,51.309947],[-0.51304,51.3089],[-0.51074,51.309197],[-0.510259,51.307166],[-0.510767,51.30614],[-0.512234,51.305342],[-0.516132,51.304594],[-0.515781,51.30378],[-0.516765,51.303172],[-0.518633,51.302984],[-0.518624,51.303736],[-0.52136,51.303211],[-0.522442,51.302252],[-0.525342,51.302766],[-0.52586,51.301428],[-0.527205,51.300416],[-0.525854,51.299631],[-0.528226,51.298578],[-0.529329,51.298523],[-0.529868,51.297547],[-0.531179,51.297551],[-0.533679,51.299141],[-0.534498,51.298785],[-0.536198,51.300302],[-0.537958,51.301246],[-0.539676,51.301218],[-0.539492,51.299647],[-0.541437,51.298817],[-0.543147,51.296615],[-0.544998,51.296115],[-0.546186,51.294643],[-0.545293,51.293394],[-0.544371,51.289485],[-0.545852,51.28881],[-0.546217,51.287827],[-0.547279,51.287237],[-0.54596,51.286575],[-0.54777,51.285915],[-0.549191,51.28466],[-0.545498,51.282856],[-0.546067,51.281311],[-0.544039,51.28101],[-0.543423,51.27988],[-0.541908,51.279255],[-0.541749,51.277436],[-0.539542,51.276513],[-0.537654,51.276776],[-0.537029,51.275804],[-0.535128,51.274813],[-0.534188,51.273846],[-0.537671,51.273156],[-0.538088,51.271485],[-0.539204,51.270116],[-0.537446,51.268414],[-0.541505,51.266301],[-0.54437,51.265504],[-0.54771,51.265674],[-0.550731,51.266953],[-0.551508,51.267793],[-0.550975,51.268858],[-0.553298,51.268389],[-0.554353,51.269491],[-0.554975,51.270879],[-0.557703,51.270819],[-0.558233,51.270061],[-0.561501,51.270212],[-0.56373,51.270589],[-0.566002,51.272164],[-0.568171,51.27315],[-0.582204,51.276996],[-0.589952,51.281986],[-0.594463,51.283941],[-0.600757,51.286113],[-0.602328,51.286226],[-0.603519,51.285663],[-0.603143,51.28399],[-0.604967,51.284184],[-0.609063,51.28364],[-0.611651,51.282155],[-0.614913,51.283311],[-0.61645,51.283335],[-0.618173,51.28271],[-0.622228,51.285845],[-0.6249,51.287224],[-0.633526,51.294367],[-0.64081,51.299734],[-0.642047,51.300027],[-0.647891,51.304355],[-0.648629,51.307202],[-0.649962,51.308571],[-0.646792,51.311902],[-0.671362,51.317365],[-0.672717,51.316446],[-0.675295,51.315521],[-0.687496,51.313812],[-0.699907,51.297832],[-0.700464,51.291446],[-0.697724,51.288773],[-0.703827,51.284039],[-0.709866,51.282384],[-0.715675,51.282053],[-0.718978,51.280391],[-0.720235,51.279247],[-0.723859,51.280054],[-0.728328,51.28048],[-0.729817,51.280021],[-0.731094,51.280362],[-0.732941,51.279168],[-0.73307,51.276761],[-0.732313,51.276451],[-0.731553,51.27448],[-0.730414,51.273461],[-0.731154,51.272436],[-0.730359,51.271507],[-0.730138,51.269973],[-0.731486,51.268304],[-0.731246,51.265979],[-0.731562,51.264276],[-0.732669,51.263628],[-0.731991,51.262134],[-0.733231,51.261161],[-0.733705,51.260127],[-0.732437,51.25766],[-0.730399,51.257378],[-0.729396,51.256421],[-0.730535,51.255354],[-0.731155,51.253474],[-0.730696,51.251956],[-0.732814,51.250882],[-0.734464,51.25059],[-0.735741,51.249403],[-0.735864,51.248498],[-0.734682,51.246585],[-0.735204,51.245588],[-0.736528,51.245091],[-0.737387,51.242406],[-0.738498,51.241118],[-0.738183,51.240125],[-0.736528,51.238961],[-0.735786,51.23768],[-0.738849,51.235497],[-0.739189,51.233481],[-0.741758,51.231334],[-0.743838,51.230617],[-0.745541,51.230456],[-0.746304,51.229085],[-0.745652,51.227682],[-0.742279,51.228366],[-0.741584,51.225561],[-0.741601,51.22418],[-0.747408,51.223138],[-0.74737,51.221876],[-0.746125,51.22129],[-0.742746,51.221568],[-0.741859,51.219597],[-0.746258,51.216453],[-0.74658,51.214167],[-0.747654,51.214389],[-0.748306,51.210676],[-0.746727,51.20919],[-0.747202,51.208932],[-0.745888,51.206842],[-0.742213,51.205663],[-0.731642,51.196861],[-0.719969,51.200388],[-0.713166,51.202085],[-0.708915,51.20304],[-0.706561,51.202711],[-0.703222,51.196549],[-0.703741,51.194759],[-0.702522,51.192647],[-0.701933,51.192372],[-0.699616,51.192728],[-0.698873,51.19198],[-0.696177,51.192064],[-0.695596,51.191212],[-0.693738,51.191777],[-0.693154,51.190974],[-0.691305,51.191025],[-0.691279,51.190177],[-0.688439,51.189704],[-0.688264,51.188714],[-0.685379,51.190015],[-0.684858,51.192387],[-0.68299,51.194645],[-0.681386,51.195311],[-0.67954,51.195574],[-0.676188,51.195212],[-0.67096,51.196022],[-0.66928,51.196869],[-0.667381,51.19918],[-0.666101,51.199261],[-0.663407,51.200246],[-0.663118,51.198756],[-0.660882,51.19582],[-0.66064,51.193186],[-0.658548,51.190979],[-0.65675,51.187351],[-0.652277,51.183422],[-0.650399,51.183145],[-0.653165,51.181646],[-0.651507,51.181205],[-0.650556,51.179133],[-0.64812,51.175837],[-0.640915,51.178879],[-0.638367,51.180387],[-0.632778,51.18288],[-0.633271,51.183571],[-0.631155,51.184129],[-0.629917,51.19104],[-0.629315,51.191575],[-0.629734,51.192786],[-0.632449,51.193606],[-0.637718,51.194504],[-0.638716,51.195151],[-0.637045,51.197997],[-0.634698,51.198469],[-0.635501,51.201615],[-0.633153,51.20252],[-0.629223,51.202348],[-0.628183,51.203566],[-0.625882,51.203842],[-0.623632,51.202318],[-0.62126,51.202881],[-0.618366,51.20461],[-0.618722,51.204963],[-0.616496,51.207029],[-0.614114,51.208054],[-0.613352,51.207495],[-0.610123,51.206886],[-0.60347,51.204361],[-0.600186,51.204471],[-0.5925,51.202883],[-0.591413,51.201221],[-0.588315,51.199864],[-0.58686,51.199876],[-0.584874,51.198707],[-0.587332,51.197056],[-0.587082,51.196272],[-0.588719,51.195504],[-0.589605,51.196236],[-0.592013,51.195],[-0.593352,51.193715],[-0.593697,51.191257],[-0.590905,51.190454],[-0.588323,51.190177],[-0.586776,51.189527],[-0.583631,51.190782],[-0.581871,51.188832],[-0.577177,51.188138],[-0.576127,51.189731],[-0.578284,51.189772],[-0.577504,51.19266],[-0.574375,51.192965],[-0.574375,51.196332],[-0.574902,51.196842],[-0.573572,51.198423],[-0.57076,51.199381],[-0.569501,51.20046],[-0.565841,51.199972],[-0.562347,51.201677],[-0.56079,51.200681],[-0.555559,51.199258],[-0.55344,51.200831],[-0.552039,51.201404],[-0.550295,51.206179],[-0.5476,51.209603],[-0.544268,51.210356],[-0.543896,51.211604],[-0.542637,51.21202],[-0.537052,51.212577],[-0.535054,51.21317],[-0.532445,51.213448],[-0.530666,51.213356],[-0.529267,51.21169],[-0.527712,51.211389],[-0.526835,51.208961],[-0.524657,51.209451],[-0.52427,51.208415],[-0.519824,51.208014],[-0.516718,51.206765],[-0.511698,51.206621],[-0.508568,51.205531],[-0.505637,51.205019],[-0.506503,51.20096],[-0.503792,51.20016],[-0.502815,51.199291],[-0.50346,51.198672],[-0.505603,51.197938],[-0.507156,51.19625],[-0.504962,51.192572],[-0.50444,51.190379],[-0.504755,51.189396],[-0.504421,51.187638],[-0.505343,51.183603],[-0.501028,51.183545],[-0.498035,51.183848],[-0.495088,51.183228],[-0.49471,51.184473],[-0.491567,51.183599],[-0.491807,51.182183],[-0.490349,51.181715],[-0.490139,51.17998],[-0.489363,51.179652],[-0.4885,51.178124],[-0.48505,51.178995],[-0.481566,51.178604],[-0.47939,51.177423],[-0.475766,51.178034],[-0.475067,51.178567],[-0.4676,51.179521],[-0.466023,51.177893],[-0.464349,51.177112],[-0.459448,51.177423],[-0.456406,51.175744],[-0.447395,51.180639],[-0.447598,51.181869],[-0.443917,51.183591],[-0.44199,51.182774],[-0.437363,51.179558],[-0.434124,51.179648],[-0.432884,51.179112],[-0.431485,51.177796],[-0.431253,51.175999],[-0.429519,51.174072],[-0.427894,51.175871],[-0.42547,51.174708],[-0.42248,51.173564],[-0.419234,51.17353],[-0.418565,51.173181],[-0.41549,51.17403],[-0.412229,51.17532],[-0.408337,51.175707],[-0.408067,51.177739],[-0.409895,51.181397],[-0.409326,51.18472],[-0.411363,51.189757],[-0.409878,51.192699],[-0.411634,51.194412],[-0.414306,51.195599],[-0.417719,51.199475],[-0.418011,51.200871],[-0.422335,51.203547],[-0.428123,51.205715],[-0.430837,51.207941],[-0.433852,51.208552],[-0.436867,51.208763],[-0.438437,51.209679],[-0.438305,51.211669],[-0.436776,51.212897],[-0.435255,51.216717],[-0.434341,51.217752],[-0.430613,51.227102],[-0.426545,51.229474],[-0.425676,51.230323],[-0.426071,51.231768],[-0.42727,51.233251],[-0.430162,51.235128],[-0.433998,51.238696],[-0.434648,51.239906],[-0.433813,51.240715],[-0.432599,51.240855],[-0.429339,51.240412],[-0.427129,51.241039],[-0.42555,51.241144],[-0.421119,51.239575],[-0.418628,51.238489],[-0.415944,51.236618],[-0.410973,51.235159],[-0.402016,51.236002],[-0.396964,51.237889],[-0.397343,51.241005],[-0.396573,51.242127],[-0.396775,51.243661],[-0.395731,51.243795],[-0.395493,51.24697],[-0.39594,51.250566],[-0.394865,51.252184],[-0.394349,51.255319],[-0.392177,51.25509],[-0.39157,51.256463],[-0.389274,51.255928],[-0.390063,51.257407],[-0.390638,51.262601],[-0.38995,51.264678],[-0.387143,51.265082],[-0.388575,51.267078],[-0.389139,51.269146],[-0.390374,51.270399],[-0.390229,51.271475],[-0.392112,51.271253],[-0.393432,51.272533],[-0.392853,51.273725],[-0.393556,51.274535],[-0.392048,51.275214],[-0.393351,51.276943],[-0.394666,51.276911],[-0.396047,51.278653],[-0.397376,51.279642],[-0.39705,51.285778],[-0.395509,51.286847],[-0.394507,51.290675],[-0.39456,51.291853],[-0.396105,51.295142],[-0.396109,51.296438],[-0.394742,51.297948],[-0.397594,51.298074],[-0.402291,51.296545],[-0.40393,51.294877],[-0.405327,51.294892],[-0.405398,51.297007],[-0.408578,51.30233],[-0.409393,51.303091],[-0.411794,51.303566],[-0.415407,51.303887],[-0.416056,51.304492],[-0.422121,51.304206],[-0.426386,51.304482],[-0.42856,51.303901],[-0.432369,51.304369],[-0.436726,51.303968],[-0.440312,51.304836],[-0.442957,51.307943],[-0.443828,51.313073],[-0.445932,51.317492],[-0.445699,51.324141],[-0.443648,51.324104],[-0.440089,51.325066],[-0.439063,51.326111],[-0.436607,51.326327],[-0.437163,51.327447],[-0.44557,51.326771],[-0.451275,51.328646],[-0.449921,51.330369],[-0.451452,51.330938],[-0.45615,51.331036],[-0.462344,51.32996]]]},"properties":{"LAD22CD":"E07000209","LAD22NM":"Guildford","BNG_E":500408,"BNG_N":151481,"LONG":-0.56257,"LAT":51.25366,"GlobalID":"a42ec844-1901-4ccd-8c7b-87a75f7aaab7"},"id":207}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.272235,51.29233],[-0.272903,51.293372],[-0.275315,51.298323],[-0.278207,51.30214],[-0.278782,51.306324],[-0.280751,51.31042],[-0.281497,51.311293],[-0.284206,51.312857],[-0.285533,51.317084],[-0.287662,51.321118],[-0.288541,51.321667],[-0.289249,51.323133],[-0.291043,51.324818],[-0.297429,51.32586],[-0.305008,51.332976],[-0.306192,51.335084],[-0.307612,51.334608],[-0.31093,51.332389],[-0.313693,51.331415],[-0.316742,51.329146],[-0.318956,51.327956],[-0.323947,51.326716],[-0.328291,51.326463],[-0.330116,51.327517],[-0.330656,51.32901],[-0.332264,51.327502],[-0.335773,51.325314],[-0.33817,51.324358],[-0.345336,51.322413],[-0.352499,51.319129],[-0.357041,51.315398],[-0.358198,51.31318],[-0.360316,51.311803],[-0.363956,51.311898],[-0.363722,51.312947],[-0.36522,51.312979],[-0.365621,51.313864],[-0.367301,51.314874],[-0.368079,51.314344],[-0.368651,51.312927],[-0.37108,51.311398],[-0.371924,51.309913],[-0.373733,51.30962],[-0.377453,51.310364],[-0.378523,51.311605],[-0.378827,51.31291],[-0.380425,51.313568],[-0.384361,51.312918],[-0.386639,51.310838],[-0.387481,51.309731],[-0.389996,51.310458],[-0.391243,51.310228],[-0.391364,51.311346],[-0.392388,51.312217],[-0.396927,51.312817],[-0.397592,51.312009],[-0.396123,51.310319],[-0.395055,51.310206],[-0.392778,51.309186],[-0.392001,51.308407],[-0.39294,51.306717],[-0.392738,51.301562],[-0.393971,51.300851],[-0.394078,51.298665],[-0.394742,51.297948],[-0.396109,51.296438],[-0.396105,51.295142],[-0.39456,51.291853],[-0.394507,51.290675],[-0.395509,51.286847],[-0.39705,51.285778],[-0.397376,51.279642],[-0.396047,51.278653],[-0.394666,51.276911],[-0.393351,51.276943],[-0.392048,51.275214],[-0.393556,51.274535],[-0.392853,51.273725],[-0.393432,51.272533],[-0.392112,51.271253],[-0.390229,51.271475],[-0.390374,51.270399],[-0.389139,51.269146],[-0.388575,51.267078],[-0.387143,51.265082],[-0.38995,51.264678],[-0.390638,51.262601],[-0.390063,51.257407],[-0.389274,51.255928],[-0.39157,51.256463],[-0.392177,51.25509],[-0.394349,51.255319],[-0.394865,51.252184],[-0.39594,51.250566],[-0.395493,51.24697],[-0.395731,51.243795],[-0.396775,51.243661],[-0.396573,51.242127],[-0.397343,51.241005],[-0.396964,51.237889],[-0.402016,51.236002],[-0.410973,51.235159],[-0.415944,51.236618],[-0.418628,51.238489],[-0.421119,51.239575],[-0.42555,51.241144],[-0.427129,51.241039],[-0.429339,51.240412],[-0.432599,51.240855],[-0.433813,51.240715],[-0.434648,51.239906],[-0.433998,51.238696],[-0.430162,51.235128],[-0.42727,51.233251],[-0.426071,51.231768],[-0.425676,51.230323],[-0.426545,51.229474],[-0.430613,51.227102],[-0.434341,51.217752],[-0.435255,51.216717],[-0.436776,51.212897],[-0.438305,51.211669],[-0.438437,51.209679],[-0.436867,51.208763],[-0.433852,51.208552],[-0.430837,51.207941],[-0.428123,51.205715],[-0.422335,51.203547],[-0.418011,51.200871],[-0.417719,51.199475],[-0.414306,51.195599],[-0.411634,51.194412],[-0.409878,51.192699],[-0.411363,51.189757],[-0.409326,51.18472],[-0.409895,51.181397],[-0.408067,51.177739],[-0.408337,51.175707],[-0.412229,51.17532],[-0.41549,51.17403],[-0.418565,51.173181],[-0.418442,51.172219],[-0.416191,51.168607],[-0.416624,51.167077],[-0.415692,51.163221],[-0.415212,51.158448],[-0.41597,51.15498],[-0.41484,51.152321],[-0.414561,51.150177],[-0.415115,51.145038],[-0.414837,51.14247],[-0.415332,51.140106],[-0.41595,51.139135],[-0.415709,51.137536],[-0.416325,51.132401],[-0.41531,51.132188],[-0.415821,51.131131],[-0.413721,51.128139],[-0.413303,51.125431],[-0.417007,51.124704],[-0.417948,51.121407],[-0.417861,51.118179],[-0.418358,51.117025],[-0.418299,51.114355],[-0.418638,51.113844],[-0.418448,51.110149],[-0.419522,51.10802],[-0.419798,51.106765],[-0.419204,51.105205],[-0.411179,51.106777],[-0.409482,51.107527],[-0.406848,51.107324],[-0.401932,51.107794],[-0.400219,51.10842],[-0.400923,51.109694],[-0.399162,51.110103],[-0.399651,51.111609],[-0.398094,51.112342],[-0.396504,51.112176],[-0.395501,51.11388],[-0.391525,51.116511],[-0.390345,51.11473],[-0.385699,51.114962],[-0.384631,51.114741],[-0.383101,51.116994],[-0.379352,51.117108],[-0.375955,51.116709],[-0.370141,51.11741],[-0.36734,51.117436],[-0.36518,51.117978],[-0.36363,51.118789],[-0.360452,51.119191],[-0.35924,51.119778],[-0.359665,51.120573],[-0.358034,51.12103],[-0.355326,51.120047],[-0.353963,51.118753],[-0.352704,51.118293],[-0.350495,51.118273],[-0.34662,51.118956],[-0.344329,51.118926],[-0.342051,51.119905],[-0.33625,51.120974],[-0.331619,51.122465],[-0.330569,51.123054],[-0.329683,51.124263],[-0.326427,51.125815],[-0.32061,51.125115],[-0.318216,51.124349],[-0.312552,51.124019],[-0.309627,51.124541],[-0.308867,51.125048],[-0.305594,51.124448],[-0.300347,51.124736],[-0.291598,51.12691],[-0.289316,51.128139],[-0.287814,51.129853],[-0.28639,51.130492],[-0.284642,51.130637],[-0.282162,51.130131],[-0.279397,51.129974],[-0.275291,51.130309],[-0.26719,51.132909],[-0.265929,51.133914],[-0.264671,51.135662],[-0.260503,51.138086],[-0.254613,51.13905],[-0.255496,51.14051],[-0.255168,51.144141],[-0.251506,51.143589],[-0.25009,51.144256],[-0.248521,51.144069],[-0.246592,51.145935],[-0.244195,51.144406],[-0.243253,51.145559],[-0.238698,51.14681],[-0.236067,51.14671],[-0.236273,51.145879],[-0.230148,51.145955],[-0.229041,51.145657],[-0.226631,51.148176],[-0.222881,51.148099],[-0.219312,51.14919],[-0.216982,51.14936],[-0.215884,51.148236],[-0.214235,51.148464],[-0.214307,51.150303],[-0.211575,51.150413],[-0.211189,51.152527],[-0.212142,51.155455],[-0.206518,51.155164],[-0.20411,51.155711],[-0.195922,51.162302],[-0.194927,51.162447],[-0.19051,51.16202],[-0.188885,51.162413],[-0.186866,51.161666],[-0.186272,51.162122],[-0.186771,51.163852],[-0.185298,51.16482],[-0.179157,51.167084],[-0.177617,51.1673],[-0.176706,51.16685],[-0.177357,51.168928],[-0.176713,51.170208],[-0.178913,51.170979],[-0.179144,51.171939],[-0.180205,51.172574],[-0.182007,51.172403],[-0.182911,51.173278],[-0.182759,51.174632],[-0.185735,51.175348],[-0.187338,51.176452],[-0.187495,51.177505],[-0.189793,51.178334],[-0.189769,51.178868],[-0.187696,51.180323],[-0.189658,51.181071],[-0.191447,51.181287],[-0.192631,51.180732],[-0.195919,51.180766],[-0.198597,51.181385],[-0.200593,51.180634],[-0.198077,51.17637],[-0.196924,51.17536],[-0.19793,51.174534],[-0.200001,51.174262],[-0.201877,51.173638],[-0.202589,51.174238],[-0.206878,51.172563],[-0.209701,51.172309],[-0.214478,51.174336],[-0.218035,51.173987],[-0.219978,51.176267],[-0.22173,51.175022],[-0.223762,51.174931],[-0.225432,51.177106],[-0.227736,51.178131],[-0.228983,51.179209],[-0.228943,51.18026],[-0.234599,51.181265],[-0.236676,51.182673],[-0.236167,51.183429],[-0.237241,51.184473],[-0.239121,51.184065],[-0.243061,51.182833],[-0.243213,51.183878],[-0.245138,51.186615],[-0.244966,51.18813],[-0.24369,51.188207],[-0.242901,51.189507],[-0.241403,51.189118],[-0.23818,51.18939],[-0.238362,51.187766],[-0.237038,51.186909],[-0.235171,51.187126],[-0.233447,51.186617],[-0.22847,51.187452],[-0.227277,51.189225],[-0.227165,51.191579],[-0.224375,51.191912],[-0.221816,51.191868],[-0.220906,51.190828],[-0.218936,51.190937],[-0.218066,51.191614],[-0.21556,51.192281],[-0.215825,51.192908],[-0.212821,51.193319],[-0.214861,51.195003],[-0.215968,51.196802],[-0.215766,51.198097],[-0.214658,51.199473],[-0.217673,51.200872],[-0.219361,51.201983],[-0.2207,51.200247],[-0.219852,51.199277],[-0.221468,51.198295],[-0.220989,51.196085],[-0.223585,51.195958],[-0.224143,51.1992],[-0.225117,51.201285],[-0.224743,51.202167],[-0.223353,51.202029],[-0.223052,51.20387],[-0.226196,51.204183],[-0.226503,51.205783],[-0.228339,51.206986],[-0.229549,51.206948],[-0.231556,51.204772],[-0.232672,51.204316],[-0.234869,51.20627],[-0.230724,51.207253],[-0.233558,51.209031],[-0.232428,51.20972],[-0.230397,51.210177],[-0.228633,51.209824],[-0.226459,51.210739],[-0.225071,51.212322],[-0.227323,51.213923],[-0.231526,51.213228],[-0.233022,51.213422],[-0.234836,51.214551],[-0.23376,51.215295],[-0.233764,51.216334],[-0.234559,51.219026],[-0.236005,51.219895],[-0.234846,51.220913],[-0.236048,51.221773],[-0.235388,51.222364],[-0.2376,51.22281],[-0.239068,51.223499],[-0.240967,51.223886],[-0.242177,51.223738],[-0.242901,51.224764],[-0.245522,51.224462],[-0.246436,51.223981],[-0.249132,51.224244],[-0.249129,51.225386],[-0.250244,51.225903],[-0.250729,51.227162],[-0.24934,51.227881],[-0.250217,51.228578],[-0.248783,51.229119],[-0.249914,51.231063],[-0.248909,51.232288],[-0.247862,51.232525],[-0.247182,51.234138],[-0.245654,51.235103],[-0.244857,51.236311],[-0.240985,51.237088],[-0.238949,51.237302],[-0.237774,51.236974],[-0.233737,51.238019],[-0.230691,51.240106],[-0.231801,51.242237],[-0.229993,51.24502],[-0.229253,51.245059],[-0.229526,51.247581],[-0.226544,51.247554],[-0.226566,51.249203],[-0.231541,51.250042],[-0.230302,51.250835],[-0.227907,51.251369],[-0.227956,51.252822],[-0.22598,51.253787],[-0.226744,51.255901],[-0.232012,51.258117],[-0.240687,51.260647],[-0.240913,51.259863],[-0.243486,51.260154],[-0.243747,51.259508],[-0.247637,51.259136],[-0.248879,51.260233],[-0.250866,51.260619],[-0.253348,51.260548],[-0.25457,51.259011],[-0.258793,51.257702],[-0.260835,51.25783],[-0.261335,51.259357],[-0.264122,51.260994],[-0.265744,51.261387],[-0.266464,51.262565],[-0.265775,51.265745],[-0.266874,51.268645],[-0.266126,51.273151],[-0.267055,51.274406],[-0.266888,51.276717],[-0.266167,51.27863],[-0.268873,51.284112],[-0.26948,51.286547],[-0.270247,51.287365],[-0.270216,51.289077],[-0.272235,51.29233]]]},"properties":{"LAD22CD":"E07000210","LAD22NM":"Mole Valley","BNG_E":518377,"BNG_N":148953,"LONG":-0.30603,"LAT":51.22749,"GlobalID":"f50d4e59-47dd-45e0-8721-04712ff22508"},"id":208}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.156543,51.321509],[-0.158635,51.323976],[-0.1606,51.323241],[-0.164187,51.32604],[-0.163567,51.326213],[-0.164362,51.328126],[-0.162291,51.328889],[-0.163077,51.330264],[-0.170066,51.329474],[-0.169895,51.330246],[-0.172858,51.330013],[-0.174139,51.333212],[-0.17502,51.33381],[-0.187459,51.340812],[-0.193229,51.342626],[-0.19732,51.343595],[-0.198558,51.342299],[-0.199558,51.341884],[-0.201199,51.339884],[-0.202051,51.340141],[-0.213031,51.335541],[-0.211906,51.333308],[-0.214095,51.330351],[-0.216084,51.329827],[-0.220941,51.329863],[-0.233949,51.327297],[-0.236043,51.326307],[-0.242969,51.32128],[-0.24114,51.317304],[-0.241314,51.316156],[-0.243644,51.314315],[-0.244395,51.313007],[-0.244071,51.31134],[-0.241439,51.311553],[-0.240737,51.310576],[-0.24103,51.309798],[-0.242779,51.310004],[-0.244027,51.30942],[-0.24322,51.306909],[-0.246379,51.302232],[-0.247127,51.298043],[-0.249894,51.29866],[-0.251601,51.299625],[-0.253525,51.299419],[-0.260454,51.299248],[-0.264399,51.299545],[-0.267456,51.297581],[-0.269849,51.294101],[-0.272235,51.29233],[-0.270216,51.289077],[-0.270247,51.287365],[-0.26948,51.286547],[-0.268873,51.284112],[-0.266167,51.27863],[-0.266888,51.276717],[-0.267055,51.274406],[-0.266126,51.273151],[-0.266874,51.268645],[-0.265775,51.265745],[-0.266464,51.262565],[-0.265744,51.261387],[-0.264122,51.260994],[-0.261335,51.259357],[-0.260835,51.25783],[-0.258793,51.257702],[-0.25457,51.259011],[-0.253348,51.260548],[-0.250866,51.260619],[-0.248879,51.260233],[-0.247637,51.259136],[-0.243747,51.259508],[-0.243486,51.260154],[-0.240913,51.259863],[-0.240687,51.260647],[-0.232012,51.258117],[-0.226744,51.255901],[-0.22598,51.253787],[-0.227956,51.252822],[-0.227907,51.251369],[-0.230302,51.250835],[-0.231541,51.250042],[-0.226566,51.249203],[-0.226544,51.247554],[-0.229526,51.247581],[-0.229253,51.245059],[-0.229993,51.24502],[-0.231801,51.242237],[-0.230691,51.240106],[-0.233737,51.238019],[-0.237774,51.236974],[-0.238949,51.237302],[-0.240985,51.237088],[-0.244857,51.236311],[-0.245654,51.235103],[-0.247182,51.234138],[-0.247862,51.232525],[-0.248909,51.232288],[-0.249914,51.231063],[-0.248783,51.229119],[-0.250217,51.228578],[-0.24934,51.227881],[-0.250729,51.227162],[-0.250244,51.225903],[-0.249129,51.225386],[-0.249132,51.224244],[-0.246436,51.223981],[-0.245522,51.224462],[-0.242901,51.224764],[-0.242177,51.223738],[-0.240967,51.223886],[-0.239068,51.223499],[-0.2376,51.22281],[-0.235388,51.222364],[-0.236048,51.221773],[-0.234846,51.220913],[-0.236005,51.219895],[-0.234559,51.219026],[-0.233764,51.216334],[-0.23376,51.215295],[-0.234836,51.214551],[-0.233022,51.213422],[-0.231526,51.213228],[-0.227323,51.213923],[-0.225071,51.212322],[-0.226459,51.210739],[-0.228633,51.209824],[-0.230397,51.210177],[-0.232428,51.20972],[-0.233558,51.209031],[-0.230724,51.207253],[-0.234869,51.20627],[-0.232672,51.204316],[-0.231556,51.204772],[-0.229549,51.206948],[-0.228339,51.206986],[-0.226503,51.205783],[-0.226196,51.204183],[-0.223052,51.20387],[-0.223353,51.202029],[-0.224743,51.202167],[-0.225117,51.201285],[-0.224143,51.1992],[-0.223585,51.195958],[-0.220989,51.196085],[-0.221468,51.198295],[-0.219852,51.199277],[-0.2207,51.200247],[-0.219361,51.201983],[-0.217673,51.200872],[-0.214658,51.199473],[-0.215766,51.198097],[-0.215968,51.196802],[-0.214861,51.195003],[-0.212821,51.193319],[-0.215825,51.192908],[-0.21556,51.192281],[-0.218066,51.191614],[-0.218936,51.190937],[-0.220906,51.190828],[-0.221816,51.191868],[-0.224375,51.191912],[-0.227165,51.191579],[-0.227277,51.189225],[-0.22847,51.187452],[-0.233447,51.186617],[-0.235171,51.187126],[-0.237038,51.186909],[-0.238362,51.187766],[-0.23818,51.18939],[-0.241403,51.189118],[-0.242901,51.189507],[-0.24369,51.188207],[-0.244966,51.18813],[-0.245138,51.186615],[-0.243213,51.183878],[-0.243061,51.182833],[-0.239121,51.184065],[-0.237241,51.184473],[-0.236167,51.183429],[-0.236676,51.182673],[-0.234599,51.181265],[-0.228943,51.18026],[-0.228983,51.179209],[-0.227736,51.178131],[-0.225432,51.177106],[-0.223762,51.174931],[-0.22173,51.175022],[-0.219978,51.176267],[-0.218035,51.173987],[-0.214478,51.174336],[-0.209701,51.172309],[-0.206878,51.172563],[-0.202589,51.174238],[-0.201877,51.173638],[-0.200001,51.174262],[-0.19793,51.174534],[-0.196924,51.17536],[-0.198077,51.17637],[-0.200593,51.180634],[-0.198597,51.181385],[-0.195919,51.180766],[-0.192631,51.180732],[-0.191447,51.181287],[-0.189658,51.181071],[-0.187696,51.180323],[-0.189769,51.178868],[-0.189793,51.178334],[-0.187495,51.177505],[-0.187338,51.176452],[-0.185735,51.175348],[-0.182759,51.174632],[-0.182911,51.173278],[-0.182007,51.172403],[-0.180205,51.172574],[-0.179144,51.171939],[-0.178913,51.170979],[-0.176713,51.170208],[-0.177357,51.168928],[-0.176706,51.16685],[-0.166935,51.161592],[-0.164166,51.16052],[-0.160893,51.159823],[-0.156423,51.159597],[-0.154514,51.16004],[-0.153143,51.159844],[-0.146233,51.160278],[-0.140463,51.160047],[-0.140359,51.160416],[-0.135797,51.160741],[-0.128254,51.16279],[-0.127719,51.16504],[-0.12898,51.174791],[-0.131693,51.175481],[-0.132207,51.175902],[-0.13491,51.176498],[-0.135131,51.177359],[-0.136367,51.177932],[-0.135885,51.179312],[-0.136696,51.181204],[-0.139419,51.182546],[-0.141667,51.184852],[-0.140324,51.185969],[-0.141491,51.186443],[-0.143508,51.186535],[-0.142955,51.190392],[-0.141602,51.190672],[-0.141555,51.191473],[-0.139366,51.192986],[-0.137776,51.195971],[-0.137024,51.200569],[-0.137904,51.203991],[-0.13775,51.206609],[-0.136747,51.20754],[-0.135655,51.210527],[-0.135869,51.212074],[-0.143745,51.210744],[-0.145502,51.210733],[-0.144536,51.21322],[-0.144734,51.216257],[-0.145372,51.216454],[-0.147444,51.220007],[-0.149558,51.222067],[-0.152901,51.226312],[-0.154961,51.23069],[-0.15364,51.233411],[-0.152247,51.235037],[-0.151447,51.234925],[-0.150322,51.236027],[-0.149278,51.234541],[-0.148024,51.234204],[-0.145308,51.237297],[-0.146023,51.239566],[-0.145288,51.241592],[-0.143076,51.243876],[-0.142734,51.245786],[-0.144373,51.247927],[-0.144898,51.250229],[-0.145738,51.251214],[-0.1442,51.251807],[-0.142949,51.253323],[-0.139448,51.253338],[-0.135136,51.254717],[-0.131793,51.25417],[-0.131523,51.256559],[-0.129625,51.259891],[-0.127608,51.261652],[-0.126802,51.261737],[-0.126822,51.264094],[-0.128635,51.264147],[-0.130094,51.265605],[-0.129674,51.266525],[-0.132037,51.26902],[-0.132023,51.269683],[-0.129987,51.272557],[-0.130249,51.274359],[-0.131495,51.276833],[-0.130248,51.281088],[-0.130424,51.283511],[-0.131057,51.284817],[-0.126798,51.284917],[-0.127337,51.286438],[-0.124293,51.286759],[-0.126057,51.288385],[-0.126278,51.289529],[-0.130531,51.293117],[-0.131459,51.294711],[-0.13111,51.295474],[-0.134431,51.298378],[-0.136328,51.298268],[-0.137314,51.300781],[-0.140962,51.29956],[-0.142833,51.29998],[-0.143559,51.30126],[-0.145625,51.299828],[-0.148452,51.300704],[-0.149815,51.300204],[-0.153361,51.301678],[-0.155318,51.301274],[-0.156684,51.303589],[-0.157735,51.304427],[-0.155024,51.305791],[-0.154509,51.306449],[-0.157163,51.306709],[-0.154316,51.310318],[-0.156228,51.310421],[-0.158331,51.310985],[-0.15717,51.31339],[-0.159314,51.315956],[-0.159581,51.317105],[-0.161178,51.317523],[-0.16188,51.319626],[-0.156543,51.321509]]]},"properties":{"LAD22CD":"E07000211","LAD22NM":"Reigate and Banstead","BNG_E":525786,"BNG_N":152574,"LONG":-0.19871,"LAT":51.25846,"GlobalID":"ed206e70-13f3-4cc6-8ff0-8491aaa45885"},"id":209}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.522765,51.4353],[-0.527582,51.435692],[-0.531406,51.43643],[-0.5346,51.437412],[-0.538363,51.439011],[-0.548185,51.441872],[-0.550445,51.443473],[-0.551818,51.4435],[-0.554052,51.441515],[-0.555567,51.441486],[-0.55662,51.442],[-0.559292,51.444346],[-0.563142,51.445751],[-0.564945,51.448038],[-0.56782,51.45008],[-0.571675,51.451008],[-0.579676,51.444747],[-0.584503,51.443657],[-0.585379,51.442366],[-0.588366,51.442368],[-0.591053,51.441142],[-0.593022,51.441824],[-0.59422,51.441468],[-0.594142,51.439314],[-0.605125,51.431312],[-0.604956,51.421381],[-0.605155,51.41736],[-0.606683,51.414111],[-0.611296,51.408709],[-0.614385,51.403093],[-0.618369,51.399026],[-0.617212,51.398759],[-0.615609,51.397648],[-0.616587,51.397014],[-0.61542,51.396376],[-0.619635,51.392824],[-0.618495,51.392388],[-0.6165,51.392408],[-0.60891,51.38985],[-0.607248,51.389701],[-0.605974,51.388382],[-0.604152,51.388091],[-0.603048,51.387277],[-0.598,51.386301],[-0.594416,51.376526],[-0.587484,51.375048],[-0.579301,51.372174],[-0.573954,51.370822],[-0.573006,51.367998],[-0.572782,51.365463],[-0.569625,51.360337],[-0.560355,51.362015],[-0.555234,51.361936],[-0.550785,51.35654],[-0.550025,51.354264],[-0.551239,51.353271],[-0.548492,51.349164],[-0.54855,51.348021],[-0.546173,51.347598],[-0.544903,51.347864],[-0.543705,51.347142],[-0.542202,51.347456],[-0.53779,51.346434],[-0.534049,51.347483],[-0.533445,51.346559],[-0.530352,51.34557],[-0.524198,51.345058],[-0.52314,51.343807],[-0.520774,51.344866],[-0.520203,51.343179],[-0.518844,51.343773],[-0.517905,51.342575],[-0.51933,51.341704],[-0.517795,51.341025],[-0.515625,51.338858],[-0.499046,51.343578],[-0.486411,51.347362],[-0.481905,51.349557],[-0.481156,51.349358],[-0.47841,51.350786],[-0.474511,51.352232],[-0.472491,51.353776],[-0.466972,51.356575],[-0.468435,51.357542],[-0.470108,51.357119],[-0.470679,51.357634],[-0.473486,51.358193],[-0.474558,51.359053],[-0.476087,51.359547],[-0.476137,51.361816],[-0.474854,51.363065],[-0.475468,51.364113],[-0.473301,51.364062],[-0.471495,51.364381],[-0.469293,51.365808],[-0.467651,51.366019],[-0.470022,51.367293],[-0.468248,51.370145],[-0.465571,51.370932],[-0.466385,51.372819],[-0.467488,51.373639],[-0.467624,51.37462],[-0.465009,51.376239],[-0.461641,51.376913],[-0.460141,51.379113],[-0.458049,51.379809],[-0.457991,51.380567],[-0.460733,51.379328],[-0.461465,51.378584],[-0.462796,51.378435],[-0.463501,51.37909],[-0.461812,51.380407],[-0.46127,51.381474],[-0.462296,51.382255],[-0.464776,51.381834],[-0.469955,51.381892],[-0.47102,51.382551],[-0.469832,51.384952],[-0.470136,51.385882],[-0.47226,51.387653],[-0.476476,51.390114],[-0.478667,51.390089],[-0.480637,51.387591],[-0.481841,51.386773],[-0.483755,51.386544],[-0.485104,51.387071],[-0.486423,51.388881],[-0.486876,51.392087],[-0.486389,51.393058],[-0.486893,51.395526],[-0.487863,51.396755],[-0.491082,51.398738],[-0.491947,51.400469],[-0.491156,51.403101],[-0.493031,51.405766],[-0.492517,51.410308],[-0.493203,51.411887],[-0.494569,51.412916],[-0.498116,51.414076],[-0.499772,51.414079],[-0.500801,51.413276],[-0.500117,51.411524],[-0.501168,51.41062],[-0.503244,51.410803],[-0.503737,51.411396],[-0.501657,51.414397],[-0.502681,51.415886],[-0.506371,51.417311],[-0.507686,51.417393],[-0.511218,51.416888],[-0.512596,51.417377],[-0.512875,51.419002],[-0.509848,51.424163],[-0.509633,51.42622],[-0.510206,51.429358],[-0.511203,51.430678],[-0.517454,51.433759],[-0.522765,51.4353]]]},"properties":{"LAD22CD":"E07000212","LAD22NM":"Runnymede","BNG_E":501777,"BNG_N":166979,"LONG":-0.53855,"LAT":51.39273,"GlobalID":"ca1c3f37-bc79-4df0-a4ee-7212a9f52574"},"id":210}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.509702,51.469176],[-0.511183,51.469277],[-0.513583,51.468418],[-0.515661,51.468269],[-0.517137,51.469884],[-0.518729,51.47079],[-0.521221,51.471448],[-0.524359,51.471528],[-0.52996,51.470168],[-0.529646,51.469294],[-0.532072,51.464491],[-0.535302,51.460512],[-0.536951,51.459608],[-0.540478,51.458385],[-0.540577,51.457095],[-0.526732,51.44751],[-0.529406,51.445496],[-0.531063,51.44489],[-0.530641,51.443773],[-0.531437,51.441713],[-0.530131,51.440977],[-0.527729,51.44089],[-0.52454,51.43988],[-0.524069,51.438827],[-0.525232,51.437564],[-0.524532,51.435929],[-0.522765,51.4353],[-0.517454,51.433759],[-0.511203,51.430678],[-0.510206,51.429358],[-0.509633,51.42622],[-0.509848,51.424163],[-0.512875,51.419002],[-0.512596,51.417377],[-0.511218,51.416888],[-0.507686,51.417393],[-0.506371,51.417311],[-0.502681,51.415886],[-0.501657,51.414397],[-0.503737,51.411396],[-0.503244,51.410803],[-0.501168,51.41062],[-0.500117,51.411524],[-0.500801,51.413276],[-0.499772,51.414079],[-0.498116,51.414076],[-0.494569,51.412916],[-0.493203,51.411887],[-0.492517,51.410308],[-0.493031,51.405766],[-0.491156,51.403101],[-0.491947,51.400469],[-0.491082,51.398738],[-0.487863,51.396755],[-0.486893,51.395526],[-0.486389,51.393058],[-0.486876,51.392087],[-0.486423,51.388881],[-0.485104,51.387071],[-0.483755,51.386544],[-0.481841,51.386773],[-0.480637,51.387591],[-0.478667,51.390089],[-0.476476,51.390114],[-0.47226,51.387653],[-0.470136,51.385882],[-0.469832,51.384952],[-0.47102,51.382551],[-0.469955,51.381892],[-0.464776,51.381834],[-0.462296,51.382255],[-0.46127,51.381474],[-0.461812,51.380407],[-0.463501,51.37909],[-0.462796,51.378435],[-0.461465,51.378584],[-0.460733,51.379328],[-0.457991,51.380567],[-0.459586,51.3815],[-0.457879,51.381849],[-0.455167,51.383226],[-0.451978,51.382823],[-0.450523,51.38366],[-0.450255,51.38492],[-0.451956,51.386911],[-0.451891,51.387633],[-0.450219,51.388022],[-0.447583,51.386847],[-0.445004,51.386901],[-0.443783,51.387557],[-0.443423,51.389253],[-0.441591,51.389704],[-0.439977,51.388722],[-0.438137,51.386901],[-0.437513,51.385187],[-0.435617,51.384264],[-0.43209,51.384042],[-0.428855,51.385371],[-0.427667,51.386415],[-0.426546,51.388749],[-0.426135,51.390415],[-0.422698,51.391701],[-0.4216,51.392412],[-0.420708,51.394102],[-0.418686,51.395542],[-0.418948,51.397164],[-0.417198,51.397659],[-0.417141,51.398834],[-0.415837,51.399149],[-0.414632,51.400694],[-0.412934,51.40147],[-0.410635,51.404105],[-0.408158,51.40517],[-0.406045,51.405659],[-0.402768,51.405917],[-0.39933,51.407072],[-0.399922,51.407809],[-0.397193,51.408596],[-0.397047,51.407983],[-0.390465,51.409643],[-0.385697,51.409151],[-0.38335,51.408538],[-0.383778,51.410119],[-0.386636,51.410412],[-0.389177,51.41032],[-0.38965,51.410693],[-0.390293,51.414338],[-0.386123,51.414281],[-0.386594,51.415022],[-0.386762,51.417654],[-0.387694,51.419328],[-0.386642,51.420081],[-0.391342,51.422326],[-0.394512,51.423238],[-0.398105,51.423556],[-0.40176,51.423312],[-0.405362,51.42248],[-0.408442,51.423835],[-0.409007,51.425451],[-0.410869,51.427342],[-0.413086,51.427855],[-0.412453,51.428782],[-0.414353,51.429296],[-0.413806,51.430075],[-0.417901,51.431028],[-0.419079,51.432359],[-0.421154,51.432171],[-0.423499,51.430878],[-0.427486,51.43082],[-0.427832,51.429252],[-0.429535,51.428798],[-0.43264,51.429018],[-0.439983,51.430626],[-0.439752,51.43462],[-0.447717,51.435003],[-0.44629,51.439996],[-0.453661,51.438494],[-0.456475,51.438225],[-0.455391,51.442119],[-0.457444,51.442999],[-0.457462,51.449091],[-0.461482,51.448992],[-0.46132,51.452391],[-0.459294,51.452715],[-0.458645,51.45631],[-0.461279,51.457215],[-0.469588,51.457984],[-0.47356,51.458634],[-0.475877,51.460086],[-0.477121,51.461337],[-0.485863,51.461314],[-0.48961,51.461785],[-0.49221,51.462972],[-0.493862,51.462723],[-0.496986,51.465876],[-0.50035,51.46713],[-0.503737,51.467706],[-0.506279,51.467713],[-0.507317,51.466917],[-0.510277,51.467505],[-0.509702,51.469176]]]},"properties":{"LAD22CD":"E07000213","LAD22NM":"Spelthorne","BNG_E":507012,"BNG_N":169622,"LONG":-0.46254,"LAT":51.41552,"GlobalID":"541d5dfe-6c19-4508-bb25-a94c1ba7e514"},"id":211}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.54855,51.348021],[-0.548492,51.349164],[-0.551239,51.353271],[-0.550025,51.354264],[-0.550785,51.35654],[-0.555234,51.361936],[-0.560355,51.362015],[-0.569625,51.360337],[-0.572782,51.365463],[-0.573006,51.367998],[-0.573954,51.370822],[-0.579301,51.372174],[-0.587484,51.375048],[-0.594416,51.376526],[-0.598,51.386301],[-0.603048,51.387277],[-0.604152,51.388091],[-0.605974,51.388382],[-0.607248,51.389701],[-0.60891,51.38985],[-0.6165,51.392408],[-0.618495,51.392388],[-0.618007,51.392056],[-0.621819,51.390039],[-0.623495,51.389543],[-0.620516,51.388475],[-0.618842,51.387463],[-0.617194,51.385817],[-0.616344,51.38354],[-0.618045,51.38338],[-0.61925,51.384992],[-0.620923,51.385172],[-0.624939,51.382883],[-0.625931,51.382873],[-0.628218,51.384235],[-0.632507,51.384304],[-0.636184,51.385188],[-0.638522,51.386658],[-0.640461,51.387372],[-0.646679,51.385384],[-0.647037,51.385932],[-0.650738,51.385663],[-0.652376,51.38679],[-0.655301,51.387246],[-0.658169,51.386281],[-0.664347,51.385739],[-0.667634,51.384571],[-0.697007,51.374395],[-0.710485,51.37067],[-0.724294,51.368461],[-0.731853,51.366431],[-0.735336,51.36501],[-0.737725,51.362317],[-0.739611,51.359125],[-0.744326,51.354569],[-0.748053,51.352348],[-0.749752,51.349934],[-0.752357,51.348539],[-0.754086,51.346271],[-0.756974,51.344245],[-0.759435,51.34347],[-0.758193,51.340568],[-0.761432,51.340409],[-0.764662,51.33703],[-0.768969,51.335486],[-0.77268,51.332843],[-0.775466,51.331959],[-0.774655,51.330621],[-0.772221,51.328458],[-0.770651,51.327531],[-0.769207,51.327866],[-0.768203,51.326676],[-0.766343,51.325951],[-0.764991,51.324668],[-0.766062,51.322901],[-0.765064,51.322661],[-0.764399,51.321552],[-0.763052,51.32041],[-0.762903,51.318731],[-0.762312,51.317465],[-0.761072,51.316944],[-0.759249,51.317162],[-0.758291,51.315925],[-0.756448,51.314667],[-0.755584,51.313509],[-0.753573,51.312795],[-0.751268,51.312561],[-0.749624,51.311447],[-0.748639,51.31163],[-0.747369,51.310439],[-0.74639,51.310619],[-0.744167,51.309295],[-0.744424,51.308233],[-0.74359,51.307456],[-0.743571,51.305715],[-0.742322,51.305538],[-0.741606,51.303688],[-0.739393,51.301355],[-0.739223,51.299915],[-0.739811,51.298658],[-0.739974,51.296127],[-0.739307,51.295125],[-0.739347,51.294026],[-0.738238,51.292897],[-0.736688,51.292424],[-0.737231,51.289674],[-0.73609,51.288353],[-0.736363,51.287526],[-0.735129,51.285433],[-0.733394,51.283401],[-0.733349,51.281791],[-0.731213,51.281362],[-0.731094,51.280362],[-0.729817,51.280021],[-0.728328,51.28048],[-0.723859,51.280054],[-0.720235,51.279247],[-0.718978,51.280391],[-0.715675,51.282053],[-0.709866,51.282384],[-0.703827,51.284039],[-0.697724,51.288773],[-0.700464,51.291446],[-0.699907,51.297832],[-0.687496,51.313812],[-0.675295,51.315521],[-0.672717,51.316446],[-0.671362,51.317365],[-0.646792,51.311902],[-0.636984,51.314182],[-0.634505,51.315277],[-0.633015,51.3144],[-0.627991,51.316445],[-0.62732,51.318775],[-0.624338,51.319224],[-0.623506,51.319906],[-0.624378,51.320699],[-0.625551,51.320782],[-0.626927,51.324483],[-0.624959,51.32734],[-0.625216,51.329109],[-0.626236,51.330478],[-0.625595,51.333541],[-0.626024,51.334789],[-0.624681,51.33482],[-0.623842,51.333632],[-0.622481,51.33445],[-0.6204,51.33318],[-0.616245,51.332036],[-0.61346,51.332158],[-0.61381,51.33348],[-0.615247,51.335942],[-0.608146,51.339695],[-0.599063,51.339636],[-0.594017,51.339961],[-0.589801,51.339866],[-0.587627,51.338244],[-0.582203,51.336502],[-0.578568,51.336069],[-0.576898,51.336264],[-0.573808,51.338211],[-0.574278,51.340994],[-0.572816,51.342299],[-0.569706,51.342827],[-0.56879,51.343334],[-0.566219,51.343551],[-0.563953,51.343063],[-0.561936,51.343245],[-0.560815,51.344098],[-0.559901,51.343832],[-0.557484,51.344768],[-0.553527,51.345142],[-0.551715,51.346073],[-0.549994,51.347667],[-0.54855,51.348021]]]},"properties":{"LAD22CD":"E07000214","LAD22NM":"Surrey Heath","BNG_E":491362,"BNG_N":160483,"LONG":-0.68986,"LAT":51.3361,"GlobalID":"52329abf-019e-44b5-a66c-225d7adc52c5"},"id":212}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.002295,51.329139],[-0.000503,51.328778],[-0.001677,51.330307],[-0.007209,51.333387],[-0.009141,51.333906],[-0.010874,51.333628],[-0.013604,51.331526],[-0.014328,51.329805],[-0.01594,51.332014],[-0.017782,51.332933],[-0.020557,51.337144],[-0.022057,51.3381],[-0.025958,51.33856],[-0.030681,51.337515],[-0.032771,51.337438],[-0.034495,51.338083],[-0.037893,51.338704],[-0.039816,51.337227],[-0.041967,51.33381],[-0.046554,51.333483],[-0.048474,51.332789],[-0.050261,51.332639],[-0.051081,51.330845],[-0.04907,51.328608],[-0.047828,51.32651],[-0.047869,51.325245],[-0.049766,51.325267],[-0.051267,51.323438],[-0.051307,51.322448],[-0.052481,51.322382],[-0.054883,51.321257],[-0.056252,51.321664],[-0.058393,51.320383],[-0.060658,51.320064],[-0.062079,51.3192],[-0.063994,51.318637],[-0.070028,51.318893],[-0.071017,51.321233],[-0.07512,51.320198],[-0.078924,51.319769],[-0.078831,51.31809],[-0.080194,51.317822],[-0.084803,51.315867],[-0.081893,51.312609],[-0.081932,51.310647],[-0.086578,51.308859],[-0.088825,51.307219],[-0.088732,51.305105],[-0.089706,51.303975],[-0.090717,51.303954],[-0.091168,51.301473],[-0.094387,51.300613],[-0.096031,51.301518],[-0.097377,51.301114],[-0.097245,51.300295],[-0.094324,51.299354],[-0.10114,51.296287],[-0.103002,51.295859],[-0.111052,51.292253],[-0.114823,51.292434],[-0.115117,51.291464],[-0.116981,51.289374],[-0.117775,51.287095],[-0.124293,51.286759],[-0.127337,51.286438],[-0.126798,51.284917],[-0.131057,51.284817],[-0.130424,51.283511],[-0.130248,51.281088],[-0.131495,51.276833],[-0.130249,51.274359],[-0.129987,51.272557],[-0.132023,51.269683],[-0.132037,51.26902],[-0.129674,51.266525],[-0.130094,51.265605],[-0.128635,51.264147],[-0.126822,51.264094],[-0.126802,51.261737],[-0.127608,51.261652],[-0.129625,51.259891],[-0.131523,51.256559],[-0.131793,51.25417],[-0.135136,51.254717],[-0.139448,51.253338],[-0.142949,51.253323],[-0.1442,51.251807],[-0.145738,51.251214],[-0.144898,51.250229],[-0.144373,51.247927],[-0.142734,51.245786],[-0.143076,51.243876],[-0.145288,51.241592],[-0.146023,51.239566],[-0.145308,51.237297],[-0.148024,51.234204],[-0.149278,51.234541],[-0.150322,51.236027],[-0.151447,51.234925],[-0.152247,51.235037],[-0.15364,51.233411],[-0.154961,51.23069],[-0.152901,51.226312],[-0.149558,51.222067],[-0.147444,51.220007],[-0.145372,51.216454],[-0.144734,51.216257],[-0.144536,51.21322],[-0.145502,51.210733],[-0.143745,51.210744],[-0.135869,51.212074],[-0.135655,51.210527],[-0.136747,51.20754],[-0.13775,51.206609],[-0.137904,51.203991],[-0.137024,51.200569],[-0.137776,51.195971],[-0.139366,51.192986],[-0.141555,51.191473],[-0.141602,51.190672],[-0.142955,51.190392],[-0.143508,51.186535],[-0.141491,51.186443],[-0.140324,51.185969],[-0.141667,51.184852],[-0.139419,51.182546],[-0.136696,51.181204],[-0.135885,51.179312],[-0.136367,51.177932],[-0.135131,51.177359],[-0.13491,51.176498],[-0.132207,51.175902],[-0.131693,51.175481],[-0.12898,51.174791],[-0.127719,51.16504],[-0.128254,51.16279],[-0.135797,51.160741],[-0.140359,51.160416],[-0.140463,51.160047],[-0.135984,51.159738],[-0.133136,51.159229],[-0.13503,51.155981],[-0.136331,51.146383],[-0.137572,51.14216],[-0.131743,51.141491],[-0.131025,51.139483],[-0.127402,51.139536],[-0.127561,51.140341],[-0.125133,51.140892],[-0.124521,51.140317],[-0.120982,51.140731],[-0.117829,51.140575],[-0.117252,51.141606],[-0.114965,51.140702],[-0.111644,51.140375],[-0.109169,51.139367],[-0.093691,51.138426],[-0.085389,51.142751],[-0.082613,51.142638],[-0.081066,51.142204],[-0.076313,51.142296],[-0.073963,51.141778],[-0.06708,51.141107],[-0.063204,51.141258],[-0.056326,51.136765],[-0.053017,51.137839],[-0.044556,51.139387],[-0.041464,51.13959],[-0.037382,51.139211],[-0.033241,51.139261],[-0.03123,51.138666],[-0.024603,51.138581],[-0.021227,51.139385],[-0.020056,51.139289],[-0.020351,51.141013],[-0.016694,51.141015],[-0.01442,51.139687],[-0.010196,51.138751],[-0.009897,51.138223],[-0.007652,51.13868],[-0.004325,51.137965],[0.00107,51.139584],[0.007036,51.138972],[0.011629,51.138927],[0.015634,51.13925],[0.016932,51.139106],[0.019918,51.139951],[0.02098,51.139299],[0.023289,51.139055],[0.027361,51.13985],[0.029328,51.140011],[0.031596,51.139794],[0.035236,51.140384],[0.038368,51.140285],[0.042939,51.141634],[0.050016,51.14265],[0.049891,51.143912],[0.051851,51.144925],[0.053076,51.147462],[0.054249,51.148315],[0.054682,51.150434],[0.052414,51.150746],[0.051223,51.151684],[0.050841,51.153515],[0.051434,51.154375],[0.051494,51.157245],[0.048901,51.158817],[0.047514,51.161243],[0.048624,51.164418],[0.046945,51.16487],[0.046392,51.166206],[0.047087,51.167718],[0.046251,51.169193],[0.046562,51.171468],[0.046176,51.171831],[0.046694,51.173478],[0.048231,51.174331],[0.048697,51.175591],[0.050499,51.176282],[0.051777,51.177755],[0.051685,51.178697],[0.0526,51.180624],[0.052286,51.181227],[0.049811,51.182905],[0.049437,51.185017],[0.04736,51.18556],[0.047359,51.186336],[0.045167,51.188615],[0.047325,51.189999],[0.047823,51.191742],[0.046017,51.192159],[0.044545,51.191853],[0.044051,51.192622],[0.042775,51.192991],[0.042534,51.194048],[0.041399,51.195841],[0.039682,51.197822],[0.038387,51.198833],[0.038309,51.199765],[0.039158,51.200873],[0.035794,51.204214],[0.036697,51.205181],[0.03729,51.20706],[0.03539,51.208486],[0.033771,51.210554],[0.033588,51.211324],[0.034721,51.213482],[0.033599,51.214338],[0.036279,51.216582],[0.041148,51.216624],[0.041449,51.218251],[0.043167,51.220162],[0.042951,51.221794],[0.042314,51.222577],[0.042834,51.22461],[0.043685,51.225827],[0.042302,51.227377],[0.043039,51.229083],[0.043863,51.229783],[0.043809,51.230887],[0.045135,51.231947],[0.046059,51.233319],[0.048053,51.233845],[0.05286,51.236527],[0.05393,51.238143],[0.053557,51.239325],[0.055393,51.240558],[0.056239,51.243176],[0.057365,51.244062],[0.058243,51.247778],[0.05705,51.251291],[0.055131,51.25238],[0.053843,51.254078],[0.054266,51.256586],[0.053252,51.258165],[0.051942,51.262683],[0.04968,51.265694],[0.04961,51.268032],[0.048032,51.270121],[0.045396,51.27666],[0.045361,51.277922],[0.046328,51.279551],[0.048171,51.285653],[0.04674,51.288592],[0.044788,51.290721],[0.042625,51.292037],[0.042399,51.292679],[0.043313,51.296582],[0.044298,51.298581],[0.043093,51.299054],[0.04262,51.301329],[0.040917,51.302721],[0.036337,51.305863],[0.032909,51.307521],[0.030281,51.305558],[0.027978,51.304685],[0.024839,51.302155],[0.023599,51.299704],[0.020953,51.296778],[0.020874,51.295572],[0.019101,51.291684],[0.015009,51.291786],[0.012158,51.299598],[0.008391,51.310361],[0.010348,51.31614],[0.006583,51.315652],[0.005545,51.318444],[0.00487,51.322076],[0.002295,51.329139]]]},"properties":{"LAD22CD":"E07000215","LAD22NM":"Tandridge","BNG_E":536365,"BNG_N":150325,"LONG":-0.04805,"LAT":51.23581,"GlobalID":"f635f8a4-36f1-4024-9015-1ea09a6fa016"},"id":213}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.745541,51.230456],[-0.750255,51.231012],[-0.7521,51.23199],[-0.758721,51.233881],[-0.761176,51.234893],[-0.769728,51.236442],[-0.771363,51.238035],[-0.771472,51.238996],[-0.775857,51.24191],[-0.777894,51.24214],[-0.781929,51.241671],[-0.784424,51.242005],[-0.786901,51.241865],[-0.790231,51.242416],[-0.793047,51.241617],[-0.797187,51.239621],[-0.80174,51.239039],[-0.803458,51.241511],[-0.80475,51.245065],[-0.806212,51.244773],[-0.807569,51.242967],[-0.813433,51.241531],[-0.813658,51.240348],[-0.816255,51.239364],[-0.820778,51.239271],[-0.820864,51.234478],[-0.82369,51.234301],[-0.826609,51.23438],[-0.82799,51.233085],[-0.82847,51.230681],[-0.828975,51.225455],[-0.832104,51.224123],[-0.834634,51.22199],[-0.836138,51.219589],[-0.839567,51.216854],[-0.84011,51.215201],[-0.842516,51.213921],[-0.846807,51.212364],[-0.848912,51.210716],[-0.847055,51.208852],[-0.846092,51.206551],[-0.847028,51.205983],[-0.845494,51.204382],[-0.843812,51.201709],[-0.845752,51.200787],[-0.845532,51.200134],[-0.843759,51.198912],[-0.842633,51.199349],[-0.837163,51.194323],[-0.835346,51.191666],[-0.830189,51.188382],[-0.8283,51.186005],[-0.828086,51.18485],[-0.827181,51.184657],[-0.825427,51.181232],[-0.826808,51.177539],[-0.82773,51.177024],[-0.827119,51.174591],[-0.829157,51.16782],[-0.830373,51.16272],[-0.830024,51.162485],[-0.831303,51.159099],[-0.830922,51.155721],[-0.833808,51.149758],[-0.834204,51.147582],[-0.83233,51.147734],[-0.828374,51.145266],[-0.825969,51.145765],[-0.824822,51.147589],[-0.823338,51.146406],[-0.817388,51.147751],[-0.817845,51.148038],[-0.816795,51.149513],[-0.815654,51.150155],[-0.812566,51.151188],[-0.813564,51.151846],[-0.811029,51.152384],[-0.809438,51.153594],[-0.806861,51.153912],[-0.806897,51.154498],[-0.80473,51.155364],[-0.803382,51.154177],[-0.803417,51.153037],[-0.802297,51.152687],[-0.798396,51.152527],[-0.799144,51.151407],[-0.796968,51.150894],[-0.794997,51.149517],[-0.793558,51.145475],[-0.793756,51.144829],[-0.792525,51.143682],[-0.791283,51.139413],[-0.790143,51.138572],[-0.786918,51.137533],[-0.784777,51.1361],[-0.781023,51.135219],[-0.780509,51.134438],[-0.780901,51.132785],[-0.780582,51.131271],[-0.782583,51.130146],[-0.78302,51.129315],[-0.782347,51.12851],[-0.779287,51.127591],[-0.777763,51.126899],[-0.774074,51.123094],[-0.772293,51.12175],[-0.770661,51.121021],[-0.769519,51.118865],[-0.769281,51.117142],[-0.764467,51.115266],[-0.761837,51.114935],[-0.76041,51.115378],[-0.758288,51.115313],[-0.756152,51.114202],[-0.753036,51.113181],[-0.750203,51.113469],[-0.748473,51.112387],[-0.745526,51.112188],[-0.74685,51.108445],[-0.747565,51.107777],[-0.745715,51.106421],[-0.744688,51.106411],[-0.749273,51.103246],[-0.756286,51.104577],[-0.759865,51.104868],[-0.764912,51.102909],[-0.763727,51.102725],[-0.761334,51.103825],[-0.759815,51.103908],[-0.758623,51.102337],[-0.757996,51.10063],[-0.754313,51.095876],[-0.755647,51.094328],[-0.758553,51.092033],[-0.7589,51.090847],[-0.757505,51.088836],[-0.757383,51.087771],[-0.754729,51.086609],[-0.753481,51.086456],[-0.749168,51.085891],[-0.746861,51.085148],[-0.74574,51.084477],[-0.74393,51.085507],[-0.740921,51.08515],[-0.737795,51.085139],[-0.735107,51.083842],[-0.732382,51.083714],[-0.730932,51.082437],[-0.730608,51.080847],[-0.729875,51.080062],[-0.72529,51.078166],[-0.722831,51.077792],[-0.722314,51.079351],[-0.720024,51.078701],[-0.718625,51.077865],[-0.71477,51.077415],[-0.712836,51.077937],[-0.710573,51.077914],[-0.708839,51.078519],[-0.706683,51.078761],[-0.704496,51.076904],[-0.7019,51.076051],[-0.700518,51.0745],[-0.698127,51.073775],[-0.698629,51.073057],[-0.695933,51.072324],[-0.694351,51.072984],[-0.690567,51.073847],[-0.687425,51.075514],[-0.682473,51.07533],[-0.678808,51.076343],[-0.675572,51.07645],[-0.672543,51.077228],[-0.669061,51.077393],[-0.66587,51.080675],[-0.664092,51.081725],[-0.657379,51.08231],[-0.654455,51.083386],[-0.65023,51.083568],[-0.648009,51.083428],[-0.645936,51.08439],[-0.642642,51.084471],[-0.637839,51.085346],[-0.633735,51.086616],[-0.631419,51.088253],[-0.629082,51.089004],[-0.624664,51.088044],[-0.621124,51.088194],[-0.615194,51.084715],[-0.610699,51.083002],[-0.607536,51.082385],[-0.604022,51.080127],[-0.600644,51.079669],[-0.594542,51.08013],[-0.590522,51.082056],[-0.588016,51.084317],[-0.577593,51.086654],[-0.569757,51.085748],[-0.56651,51.084383],[-0.563057,51.083696],[-0.558474,51.082999],[-0.556135,51.084338],[-0.553113,51.084043],[-0.549991,51.083252],[-0.547641,51.083483],[-0.541342,51.08321],[-0.541252,51.082244],[-0.539485,51.08227],[-0.537318,51.08355],[-0.535523,51.083176],[-0.535124,51.084096],[-0.532619,51.086091],[-0.534488,51.08694],[-0.536129,51.088776],[-0.535855,51.089779],[-0.536582,51.090729],[-0.535595,51.093065],[-0.534979,51.093579],[-0.532423,51.093171],[-0.528821,51.092019],[-0.526388,51.091867],[-0.527288,51.090927],[-0.526946,51.089606],[-0.524138,51.089902],[-0.523171,51.091607],[-0.52092,51.091379],[-0.520414,51.090887],[-0.515231,51.090588],[-0.513309,51.089466],[-0.511621,51.08979],[-0.508441,51.08871],[-0.50694,51.088759],[-0.505377,51.088262],[-0.503022,51.088548],[-0.501641,51.090244],[-0.500184,51.090292],[-0.496262,51.092233],[-0.495496,51.09339],[-0.492127,51.094484],[-0.490875,51.094425],[-0.490356,51.096039],[-0.489212,51.096178],[-0.48852,51.097341],[-0.48299,51.096186],[-0.479009,51.097316],[-0.474816,51.096954],[-0.470321,51.098483],[-0.460914,51.099052],[-0.456775,51.100566],[-0.454262,51.100358],[-0.45202,51.099535],[-0.449501,51.100557],[-0.446352,51.10059],[-0.44485,51.099593],[-0.443794,51.101083],[-0.441059,51.101736],[-0.438827,51.100297],[-0.442343,51.099092],[-0.442504,51.098128],[-0.441214,51.09774],[-0.437244,51.098207],[-0.435549,51.099689],[-0.433049,51.100693],[-0.428277,51.101387],[-0.426532,51.102488],[-0.421782,51.103482],[-0.420959,51.104416],[-0.419204,51.105205],[-0.419798,51.106765],[-0.419522,51.10802],[-0.418448,51.110149],[-0.418638,51.113844],[-0.418299,51.114355],[-0.418358,51.117025],[-0.417861,51.118179],[-0.417948,51.121407],[-0.417007,51.124704],[-0.413303,51.125431],[-0.413721,51.128139],[-0.415821,51.131131],[-0.41531,51.132188],[-0.416325,51.132401],[-0.415709,51.137536],[-0.41595,51.139135],[-0.415332,51.140106],[-0.414837,51.14247],[-0.415115,51.145038],[-0.414561,51.150177],[-0.41484,51.152321],[-0.41597,51.15498],[-0.415212,51.158448],[-0.415692,51.163221],[-0.416624,51.167077],[-0.416191,51.168607],[-0.418442,51.172219],[-0.418565,51.173181],[-0.419234,51.17353],[-0.42248,51.173564],[-0.42547,51.174708],[-0.427894,51.175871],[-0.429519,51.174072],[-0.431253,51.175999],[-0.431485,51.177796],[-0.432884,51.179112],[-0.434124,51.179648],[-0.437363,51.179558],[-0.44199,51.182774],[-0.443917,51.183591],[-0.447598,51.181869],[-0.447395,51.180639],[-0.456406,51.175744],[-0.459448,51.177423],[-0.464349,51.177112],[-0.466023,51.177893],[-0.4676,51.179521],[-0.475067,51.178567],[-0.475766,51.178034],[-0.47939,51.177423],[-0.481566,51.178604],[-0.48505,51.178995],[-0.4885,51.178124],[-0.489363,51.179652],[-0.490139,51.17998],[-0.490349,51.181715],[-0.491807,51.182183],[-0.491567,51.183599],[-0.49471,51.184473],[-0.495088,51.183228],[-0.498035,51.183848],[-0.501028,51.183545],[-0.505343,51.183603],[-0.504421,51.187638],[-0.504755,51.189396],[-0.50444,51.190379],[-0.504962,51.192572],[-0.507156,51.19625],[-0.505603,51.197938],[-0.50346,51.198672],[-0.502815,51.199291],[-0.503792,51.20016],[-0.506503,51.20096],[-0.505637,51.205019],[-0.508568,51.205531],[-0.511698,51.206621],[-0.516718,51.206765],[-0.519824,51.208014],[-0.52427,51.208415],[-0.524657,51.209451],[-0.526835,51.208961],[-0.527712,51.211389],[-0.529267,51.21169],[-0.530666,51.213356],[-0.532445,51.213448],[-0.535054,51.21317],[-0.537052,51.212577],[-0.542637,51.21202],[-0.543896,51.211604],[-0.544268,51.210356],[-0.5476,51.209603],[-0.550295,51.206179],[-0.552039,51.201404],[-0.55344,51.200831],[-0.555559,51.199258],[-0.56079,51.200681],[-0.562347,51.201677],[-0.565841,51.199972],[-0.569501,51.20046],[-0.57076,51.199381],[-0.573572,51.198423],[-0.574902,51.196842],[-0.574375,51.196332],[-0.574375,51.192965],[-0.577504,51.19266],[-0.578284,51.189772],[-0.576127,51.189731],[-0.577177,51.188138],[-0.581871,51.188832],[-0.583631,51.190782],[-0.586776,51.189527],[-0.588323,51.190177],[-0.590905,51.190454],[-0.593697,51.191257],[-0.593352,51.193715],[-0.592013,51.195],[-0.589605,51.196236],[-0.588719,51.195504],[-0.587082,51.196272],[-0.587332,51.197056],[-0.584874,51.198707],[-0.58686,51.199876],[-0.588315,51.199864],[-0.591413,51.201221],[-0.5925,51.202883],[-0.600186,51.204471],[-0.60347,51.204361],[-0.610123,51.206886],[-0.613352,51.207495],[-0.614114,51.208054],[-0.616496,51.207029],[-0.618722,51.204963],[-0.618366,51.20461],[-0.62126,51.202881],[-0.623632,51.202318],[-0.625882,51.203842],[-0.628183,51.203566],[-0.629223,51.202348],[-0.633153,51.20252],[-0.635501,51.201615],[-0.634698,51.198469],[-0.637045,51.197997],[-0.638716,51.195151],[-0.637718,51.194504],[-0.632449,51.193606],[-0.629734,51.192786],[-0.629315,51.191575],[-0.629917,51.19104],[-0.631155,51.184129],[-0.633271,51.183571],[-0.632778,51.18288],[-0.638367,51.180387],[-0.640915,51.178879],[-0.64812,51.175837],[-0.650556,51.179133],[-0.651507,51.181205],[-0.653165,51.181646],[-0.650399,51.183145],[-0.652277,51.183422],[-0.65675,51.187351],[-0.658548,51.190979],[-0.66064,51.193186],[-0.660882,51.19582],[-0.663118,51.198756],[-0.663407,51.200246],[-0.666101,51.199261],[-0.667381,51.19918],[-0.66928,51.196869],[-0.67096,51.196022],[-0.676188,51.195212],[-0.67954,51.195574],[-0.681386,51.195311],[-0.68299,51.194645],[-0.684858,51.192387],[-0.685379,51.190015],[-0.688264,51.188714],[-0.688439,51.189704],[-0.691279,51.190177],[-0.691305,51.191025],[-0.693154,51.190974],[-0.693738,51.191777],[-0.695596,51.191212],[-0.696177,51.192064],[-0.698873,51.19198],[-0.699616,51.192728],[-0.701933,51.192372],[-0.702522,51.192647],[-0.703741,51.194759],[-0.703222,51.196549],[-0.706561,51.202711],[-0.708915,51.20304],[-0.713166,51.202085],[-0.719969,51.200388],[-0.731642,51.196861],[-0.742213,51.205663],[-0.745888,51.206842],[-0.747202,51.208932],[-0.746727,51.20919],[-0.748306,51.210676],[-0.747654,51.214389],[-0.74658,51.214167],[-0.746258,51.216453],[-0.741859,51.219597],[-0.742746,51.221568],[-0.746125,51.22129],[-0.74737,51.221876],[-0.747408,51.223138],[-0.741601,51.22418],[-0.741584,51.225561],[-0.742279,51.228366],[-0.745652,51.227682],[-0.746304,51.229085],[-0.745541,51.230456]]]},"properties":{"LAD22CD":"E07000216","LAD22NM":"Waverley","BNG_E":496363,"BNG_N":140635,"LONG":-0.62343,"LAT":51.15686,"GlobalID":"fac93e99-474a-4f86-8981-431f06461ec5"},"id":214}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.481156,51.349358],[-0.481905,51.349557],[-0.486411,51.347362],[-0.499046,51.343578],[-0.515625,51.338858],[-0.517795,51.341025],[-0.51933,51.341704],[-0.517905,51.342575],[-0.518844,51.343773],[-0.520203,51.343179],[-0.520774,51.344866],[-0.52314,51.343807],[-0.524198,51.345058],[-0.530352,51.34557],[-0.533445,51.346559],[-0.534049,51.347483],[-0.53779,51.346434],[-0.542202,51.347456],[-0.543705,51.347142],[-0.544903,51.347864],[-0.546173,51.347598],[-0.54855,51.348021],[-0.549994,51.347667],[-0.551715,51.346073],[-0.553527,51.345142],[-0.557484,51.344768],[-0.559901,51.343832],[-0.560815,51.344098],[-0.561936,51.343245],[-0.563953,51.343063],[-0.566219,51.343551],[-0.56879,51.343334],[-0.569706,51.342827],[-0.572816,51.342299],[-0.574278,51.340994],[-0.573808,51.338211],[-0.576898,51.336264],[-0.578568,51.336069],[-0.582203,51.336502],[-0.587627,51.338244],[-0.589801,51.339866],[-0.594017,51.339961],[-0.599063,51.339636],[-0.608146,51.339695],[-0.615247,51.335942],[-0.61381,51.33348],[-0.61346,51.332158],[-0.616245,51.332036],[-0.6204,51.33318],[-0.622481,51.33445],[-0.623842,51.333632],[-0.624681,51.33482],[-0.626024,51.334789],[-0.625595,51.333541],[-0.626236,51.330478],[-0.625216,51.329109],[-0.624959,51.32734],[-0.626927,51.324483],[-0.625551,51.320782],[-0.624378,51.320699],[-0.623506,51.319906],[-0.624338,51.319224],[-0.62732,51.318775],[-0.627991,51.316445],[-0.633015,51.3144],[-0.634505,51.315277],[-0.636984,51.314182],[-0.646792,51.311902],[-0.649962,51.308571],[-0.648629,51.307202],[-0.647891,51.304355],[-0.642047,51.300027],[-0.64081,51.299734],[-0.633526,51.294367],[-0.6249,51.287224],[-0.622228,51.285845],[-0.618173,51.28271],[-0.61645,51.283335],[-0.614913,51.283311],[-0.611651,51.282155],[-0.609063,51.28364],[-0.604967,51.284184],[-0.603143,51.28399],[-0.603519,51.285663],[-0.602328,51.286226],[-0.600757,51.286113],[-0.594463,51.283941],[-0.589952,51.281986],[-0.582204,51.276996],[-0.568171,51.27315],[-0.566002,51.272164],[-0.56373,51.270589],[-0.561501,51.270212],[-0.558233,51.270061],[-0.557703,51.270819],[-0.554975,51.270879],[-0.554353,51.269491],[-0.553298,51.268389],[-0.550975,51.268858],[-0.551508,51.267793],[-0.550731,51.266953],[-0.54771,51.265674],[-0.54437,51.265504],[-0.541505,51.266301],[-0.537446,51.268414],[-0.539204,51.270116],[-0.538088,51.271485],[-0.537671,51.273156],[-0.534188,51.273846],[-0.535128,51.274813],[-0.537029,51.275804],[-0.537654,51.276776],[-0.539542,51.276513],[-0.541749,51.277436],[-0.541908,51.279255],[-0.543423,51.27988],[-0.544039,51.28101],[-0.546067,51.281311],[-0.545498,51.282856],[-0.549191,51.28466],[-0.54777,51.285915],[-0.54596,51.286575],[-0.547279,51.287237],[-0.546217,51.287827],[-0.545852,51.28881],[-0.544371,51.289485],[-0.545293,51.293394],[-0.546186,51.294643],[-0.544998,51.296115],[-0.543147,51.296615],[-0.541437,51.298817],[-0.539492,51.299647],[-0.539676,51.301218],[-0.537958,51.301246],[-0.536198,51.300302],[-0.534498,51.298785],[-0.533679,51.299141],[-0.531179,51.297551],[-0.529868,51.297547],[-0.529329,51.298523],[-0.528226,51.298578],[-0.525854,51.299631],[-0.527205,51.300416],[-0.52586,51.301428],[-0.525342,51.302766],[-0.522442,51.302252],[-0.52136,51.303211],[-0.518624,51.303736],[-0.518633,51.302984],[-0.516765,51.303172],[-0.515781,51.30378],[-0.516132,51.304594],[-0.512234,51.305342],[-0.510767,51.30614],[-0.510259,51.307166],[-0.51074,51.309197],[-0.51304,51.3089],[-0.51238,51.309947],[-0.51291,51.31198],[-0.509713,51.313039],[-0.509818,51.3117],[-0.507898,51.312332],[-0.504846,51.311277],[-0.505216,51.310112],[-0.503445,51.310414],[-0.501993,51.308863],[-0.503164,51.307089],[-0.500848,51.306564],[-0.499885,51.306876],[-0.498362,51.308456],[-0.493918,51.309682],[-0.491878,51.311051],[-0.491946,51.312069],[-0.491069,51.313455],[-0.491425,51.314637],[-0.488792,51.315023],[-0.487451,51.316445],[-0.484695,51.316158],[-0.481975,51.316352],[-0.482467,51.315405],[-0.481532,51.31504],[-0.477949,51.315549],[-0.47532,51.316452],[-0.474779,51.31889],[-0.477323,51.32119],[-0.478448,51.322554],[-0.482394,51.322352],[-0.482499,51.323332],[-0.483442,51.324481],[-0.485229,51.324209],[-0.487914,51.326573],[-0.489206,51.328074],[-0.489181,51.329743],[-0.487803,51.329872],[-0.483797,51.331506],[-0.483217,51.330641],[-0.481913,51.330113],[-0.478896,51.330274],[-0.474616,51.327995],[-0.473979,51.326999],[-0.468245,51.327199],[-0.467507,51.328547],[-0.464659,51.328887],[-0.462344,51.32996],[-0.461935,51.331333],[-0.462838,51.332791],[-0.462489,51.333957],[-0.460981,51.33509],[-0.462071,51.336798],[-0.46117,51.337089],[-0.463571,51.338607],[-0.463654,51.340616],[-0.465498,51.341314],[-0.466072,51.342851],[-0.472821,51.342164],[-0.476769,51.343263],[-0.479207,51.345238],[-0.479655,51.34775],[-0.480683,51.347727],[-0.481156,51.349358]]]},"properties":{"LAD22CD":"E07000217","LAD22NM":"Woking","BNG_E":499087,"BNG_N":157542,"LONG":-0.57982,"LAT":51.30837,"GlobalID":"2627c4a5-c587-44e9-923e-7f87a290ad7d"},"id":215}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.551772,52.667455],[-1.552807,52.668462],[-1.554792,52.669455],[-1.560021,52.671321],[-1.56604,52.674425],[-1.570428,52.675843],[-1.569159,52.676774],[-1.566475,52.677602],[-1.569106,52.679667],[-1.57031,52.679726],[-1.576864,52.67836],[-1.579427,52.679626],[-1.581431,52.682448],[-1.58446,52.685104],[-1.589645,52.687261],[-1.602104,52.679621],[-1.604283,52.678999],[-1.60392,52.677883],[-1.606206,52.677033],[-1.605066,52.676168],[-1.60393,52.674197],[-1.606083,52.673189],[-1.615544,52.67198],[-1.61559,52.668715],[-1.62003,52.6681],[-1.625552,52.66564],[-1.62814,52.663823],[-1.627977,52.663491],[-1.631252,52.662502],[-1.639197,52.659315],[-1.639399,52.658801],[-1.644943,52.657517],[-1.642881,52.654441],[-1.642058,52.652006],[-1.642601,52.651022],[-1.640596,52.649591],[-1.639545,52.647436],[-1.635968,52.645352],[-1.634513,52.644009],[-1.634248,52.643043],[-1.642423,52.64094],[-1.641049,52.639581],[-1.63895,52.638528],[-1.638189,52.637701],[-1.640183,52.634173],[-1.642509,52.631417],[-1.642093,52.630024],[-1.640981,52.629219],[-1.639781,52.627164],[-1.638181,52.625521],[-1.643087,52.623204],[-1.644118,52.620791],[-1.640156,52.62008],[-1.63868,52.620743],[-1.636015,52.619617],[-1.637063,52.617083],[-1.63905,52.615742],[-1.639841,52.614694],[-1.639087,52.610702],[-1.639778,52.608393],[-1.640978,52.606963],[-1.642913,52.605642],[-1.643777,52.603355],[-1.64518,52.603125],[-1.649137,52.600762],[-1.648864,52.598611],[-1.651578,52.598418],[-1.653008,52.597302],[-1.655509,52.596608],[-1.655099,52.595672],[-1.659874,52.595582],[-1.660782,52.59451],[-1.665708,52.595666],[-1.665298,52.594316],[-1.66564,52.592252],[-1.666664,52.592109],[-1.669066,52.592674],[-1.673646,52.592597],[-1.677665,52.593264],[-1.679224,52.592709],[-1.680321,52.593505],[-1.682882,52.593297],[-1.6859,52.593348],[-1.685691,52.589351],[-1.688629,52.588654],[-1.691498,52.589336],[-1.693891,52.589305],[-1.694491,52.590157],[-1.695873,52.590272],[-1.697802,52.590988],[-1.699252,52.59022],[-1.700393,52.590913],[-1.70311,52.590255],[-1.704258,52.589227],[-1.703943,52.587633],[-1.707664,52.58745],[-1.713879,52.588818],[-1.717585,52.589115],[-1.723233,52.587834],[-1.724299,52.58844],[-1.727511,52.588327],[-1.729311,52.587933],[-1.730052,52.588308],[-1.733171,52.58857],[-1.733533,52.589082],[-1.737538,52.588995],[-1.739001,52.5893],[-1.740363,52.59023],[-1.739177,52.593538],[-1.741279,52.594321],[-1.745047,52.593735],[-1.751046,52.593409],[-1.755749,52.591665],[-1.762648,52.590542],[-1.768472,52.589116],[-1.770699,52.589395],[-1.773083,52.591041],[-1.774037,52.592127],[-1.776318,52.59222],[-1.781021,52.59126],[-1.783923,52.589107],[-1.788081,52.587863],[-1.788461,52.586911],[-1.788277,52.584587],[-1.7868,52.583072],[-1.784836,52.581742],[-1.781359,52.58027],[-1.780268,52.578859],[-1.779496,52.578698],[-1.778684,52.57658],[-1.778833,52.575814],[-1.776649,52.574569],[-1.771283,52.575113],[-1.769688,52.574983],[-1.768134,52.574295],[-1.7682,52.572988],[-1.767017,52.571227],[-1.765907,52.570925],[-1.763546,52.570979],[-1.764529,52.569381],[-1.766793,52.568727],[-1.767902,52.568075],[-1.770341,52.567882],[-1.773908,52.565636],[-1.77423,52.564628],[-1.770152,52.563577],[-1.766914,52.561618],[-1.766919,52.559854],[-1.767731,52.558806],[-1.766294,52.557886],[-1.76534,52.556677],[-1.763424,52.556619],[-1.759953,52.555668],[-1.757813,52.555571],[-1.7564,52.55588],[-1.75576,52.554788],[-1.753577,52.545302],[-1.752106,52.543841],[-1.746428,52.541713],[-1.748993,52.541262],[-1.748361,52.536521],[-1.750915,52.536278],[-1.750412,52.533972],[-1.749086,52.531422],[-1.746854,52.531315],[-1.743527,52.532693],[-1.742347,52.531306],[-1.739422,52.531911],[-1.73867,52.529085],[-1.736916,52.529079],[-1.731571,52.527717],[-1.730419,52.525961],[-1.728851,52.524467],[-1.730507,52.523158],[-1.731837,52.522923],[-1.734826,52.523429],[-1.736325,52.522504],[-1.741637,52.52073],[-1.743869,52.520641],[-1.745823,52.52007],[-1.748762,52.520768],[-1.751341,52.520598],[-1.75381,52.521213],[-1.754319,52.518476],[-1.757039,52.518298],[-1.757077,52.517827],[-1.754923,52.515732],[-1.754091,52.515777],[-1.753258,52.514115],[-1.753523,52.512967],[-1.747246,52.510205],[-1.744494,52.508319],[-1.743242,52.506958],[-1.73308,52.491962],[-1.729989,52.488865],[-1.722527,52.48268],[-1.719029,52.480478],[-1.714802,52.478656],[-1.715273,52.478417],[-1.712684,52.476506],[-1.710712,52.473844],[-1.710818,52.471672],[-1.709858,52.46643],[-1.708477,52.465613],[-1.708517,52.46446],[-1.706606,52.462596],[-1.704128,52.460664],[-1.700408,52.458703],[-1.697449,52.45478],[-1.690023,52.44866],[-1.686479,52.446324],[-1.685346,52.445051],[-1.684418,52.441527],[-1.68355,52.440535],[-1.682033,52.439717],[-1.678145,52.438707],[-1.676596,52.437909],[-1.677154,52.436357],[-1.670744,52.436788],[-1.666586,52.435472],[-1.664544,52.440035],[-1.664889,52.442675],[-1.662287,52.444299],[-1.658319,52.441975],[-1.654868,52.440755],[-1.652793,52.440674],[-1.650703,52.441271],[-1.648221,52.44162],[-1.646996,52.442097],[-1.645251,52.442097],[-1.643257,52.443062],[-1.641397,52.443344],[-1.638301,52.445376],[-1.637393,52.447592],[-1.634957,52.448686],[-1.634599,52.450185],[-1.633644,52.450741],[-1.633155,52.452066],[-1.629715,52.453773],[-1.626919,52.456182],[-1.624662,52.45703],[-1.625944,52.459305],[-1.625785,52.460562],[-1.62688,52.462237],[-1.624452,52.463539],[-1.621729,52.463429],[-1.618318,52.464138],[-1.616602,52.463459],[-1.614213,52.463],[-1.612201,52.461094],[-1.610714,52.458603],[-1.606016,52.458241],[-1.603828,52.456698],[-1.602348,52.456466],[-1.60016,52.454819],[-1.598547,52.454332],[-1.596695,52.455656],[-1.595487,52.45592],[-1.595743,52.45759],[-1.596517,52.458443],[-1.594921,52.46069],[-1.593057,52.461572],[-1.589986,52.461103],[-1.589863,52.461912],[-1.585645,52.46017],[-1.578704,52.458151],[-1.577521,52.458438],[-1.574044,52.457924],[-1.568421,52.456089],[-1.562959,52.455981],[-1.561192,52.455223],[-1.558523,52.456665],[-1.554289,52.456445],[-1.553988,52.456856],[-1.551421,52.457044],[-1.54923,52.459301],[-1.547561,52.45959],[-1.545261,52.461457],[-1.539791,52.464799],[-1.536877,52.465904],[-1.533781,52.468442],[-1.530813,52.469635],[-1.530337,52.470372],[-1.53133,52.470948],[-1.53558,52.470988],[-1.538877,52.471678],[-1.540097,52.472309],[-1.545229,52.472601],[-1.541034,52.473815],[-1.538039,52.474275],[-1.531857,52.474596],[-1.521765,52.476111],[-1.514823,52.476267],[-1.513809,52.477863],[-1.513773,52.479857],[-1.51441,52.48061],[-1.514526,52.483547],[-1.515819,52.485314],[-1.51733,52.486244],[-1.523301,52.488305],[-1.521277,52.493422],[-1.524365,52.493743],[-1.529411,52.495937],[-1.530429,52.497168],[-1.531658,52.497893],[-1.531932,52.500599],[-1.532515,52.501348],[-1.536276,52.503818],[-1.54229,52.50607],[-1.541396,52.508203],[-1.542983,52.508417],[-1.546079,52.508103],[-1.5465,52.509861],[-1.549512,52.510807],[-1.551048,52.512832],[-1.553391,52.513406],[-1.555223,52.517387],[-1.554661,52.517479],[-1.553062,52.519661],[-1.556081,52.52173],[-1.554882,52.524925],[-1.551679,52.526771],[-1.554439,52.528024],[-1.556188,52.531636],[-1.552548,52.533997],[-1.549882,52.534403],[-1.544936,52.533875],[-1.540771,52.535314],[-1.539289,52.535611],[-1.535221,52.535129],[-1.533663,52.534411],[-1.532006,52.534319],[-1.527511,52.535776],[-1.524055,52.536113],[-1.51833,52.537352],[-1.511978,52.537502],[-1.503823,52.538693],[-1.501714,52.538739],[-1.498731,52.53978],[-1.4985,52.541303],[-1.497052,52.542374],[-1.495609,52.541267],[-1.492695,52.54042],[-1.48771,52.54132],[-1.485199,52.54092],[-1.4825,52.542969],[-1.479961,52.543916],[-1.473131,52.547465],[-1.464612,52.550257],[-1.461992,52.55052],[-1.459994,52.55159],[-1.464048,52.553093],[-1.502706,52.564471],[-1.522868,52.570601],[-1.521514,52.571829],[-1.52299,52.573546],[-1.525988,52.57408],[-1.526701,52.575314],[-1.526678,52.576631],[-1.52592,52.57766],[-1.525919,52.579014],[-1.525196,52.580376],[-1.525607,52.581264],[-1.528919,52.583315],[-1.531265,52.583384],[-1.532149,52.584433],[-1.531674,52.585745],[-1.534733,52.58718],[-1.537532,52.589054],[-1.537469,52.589566],[-1.542627,52.589432],[-1.544158,52.589674],[-1.546152,52.59058],[-1.546588,52.591384],[-1.549248,52.592914],[-1.549986,52.592646],[-1.552675,52.593748],[-1.553696,52.593611],[-1.556275,52.594085],[-1.556994,52.59565],[-1.558033,52.596152],[-1.560757,52.596156],[-1.557068,52.601361],[-1.557073,52.609279],[-1.554276,52.613497],[-1.554455,52.614761],[-1.556383,52.615187],[-1.560583,52.617059],[-1.561249,52.619828],[-1.56441,52.619937],[-1.566876,52.620621],[-1.567583,52.622642],[-1.566011,52.625968],[-1.566483,52.629253],[-1.565881,52.630324],[-1.56461,52.631242],[-1.56651,52.63235],[-1.571019,52.634038],[-1.571,52.63612],[-1.565696,52.63627],[-1.559014,52.637259],[-1.556047,52.638276],[-1.553307,52.640779],[-1.550631,52.641128],[-1.546993,52.64227],[-1.544824,52.644134],[-1.544287,52.64568],[-1.542804,52.64762],[-1.542795,52.648239],[-1.544292,52.649467],[-1.544958,52.650563],[-1.544661,52.651559],[-1.542422,52.653626],[-1.54729,52.655973],[-1.546099,52.659062],[-1.552182,52.666898],[-1.551772,52.667455]]]},"properties":{"LAD22CD":"E07000218","LAD22NM":"North Warwickshire","BNG_E":425570,"BNG_N":296399,"LONG":-1.6242,"LAT":52.56484,"GlobalID":"8af8dd2d-e9bc-4022-94db-b16404b78868"},"id":216}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.417344,52.534455],[-1.417376,52.536089],[-1.418338,52.536498],[-1.418958,52.537768],[-1.426976,52.540646],[-1.428913,52.540916],[-1.459221,52.551978],[-1.459994,52.55159],[-1.461992,52.55052],[-1.464612,52.550257],[-1.473131,52.547465],[-1.479961,52.543916],[-1.4825,52.542969],[-1.485199,52.54092],[-1.48771,52.54132],[-1.492695,52.54042],[-1.495609,52.541267],[-1.497052,52.542374],[-1.4985,52.541303],[-1.498731,52.53978],[-1.501714,52.538739],[-1.503823,52.538693],[-1.511978,52.537502],[-1.51833,52.537352],[-1.524055,52.536113],[-1.527511,52.535776],[-1.532006,52.534319],[-1.533663,52.534411],[-1.535221,52.535129],[-1.539289,52.535611],[-1.540771,52.535314],[-1.544936,52.533875],[-1.549882,52.534403],[-1.552548,52.533997],[-1.556188,52.531636],[-1.554439,52.528024],[-1.551679,52.526771],[-1.554882,52.524925],[-1.556081,52.52173],[-1.553062,52.519661],[-1.554661,52.517479],[-1.555223,52.517387],[-1.553391,52.513406],[-1.551048,52.512832],[-1.549512,52.510807],[-1.5465,52.509861],[-1.546079,52.508103],[-1.542983,52.508417],[-1.541396,52.508203],[-1.54229,52.50607],[-1.536276,52.503818],[-1.532515,52.501348],[-1.531932,52.500599],[-1.531658,52.497893],[-1.530429,52.497168],[-1.529411,52.495937],[-1.524365,52.493743],[-1.521277,52.493422],[-1.523301,52.488305],[-1.51733,52.486244],[-1.515819,52.485314],[-1.514526,52.483547],[-1.51441,52.48061],[-1.513773,52.479857],[-1.513809,52.477863],[-1.514823,52.476267],[-1.521765,52.476111],[-1.531857,52.474596],[-1.538039,52.474275],[-1.541034,52.473815],[-1.545229,52.472601],[-1.540097,52.472309],[-1.538877,52.471678],[-1.53558,52.470988],[-1.53133,52.470948],[-1.530337,52.470372],[-1.530813,52.469635],[-1.533781,52.468442],[-1.536877,52.465904],[-1.539791,52.464799],[-1.537015,52.462426],[-1.535034,52.459477],[-1.529677,52.457088],[-1.525915,52.456361],[-1.52157,52.456322],[-1.517569,52.456784],[-1.519051,52.455158],[-1.519655,52.453342],[-1.505034,52.450089],[-1.502854,52.450831],[-1.498716,52.451015],[-1.495853,52.452229],[-1.491711,52.455024],[-1.491982,52.458585],[-1.489668,52.458033],[-1.488197,52.458496],[-1.486842,52.457649],[-1.484698,52.457267],[-1.483017,52.458087],[-1.479206,52.457106],[-1.472828,52.45638],[-1.466305,52.458503],[-1.462014,52.457842],[-1.461333,52.455779],[-1.459053,52.455158],[-1.451424,52.460163],[-1.449361,52.460821],[-1.437623,52.468047],[-1.428128,52.467107],[-1.42121,52.463029],[-1.421044,52.464477],[-1.417001,52.464536],[-1.410411,52.466566],[-1.408561,52.473802],[-1.406946,52.476484],[-1.405023,52.476391],[-1.40463,52.47828],[-1.406199,52.480347],[-1.405703,52.480682],[-1.404791,52.483101],[-1.406075,52.483337],[-1.405877,52.484846],[-1.408453,52.485197],[-1.40884,52.486434],[-1.410604,52.486238],[-1.411774,52.488639],[-1.409661,52.490207],[-1.409639,52.491344],[-1.407658,52.492199],[-1.406868,52.493657],[-1.405704,52.497057],[-1.402812,52.500835],[-1.404646,52.501708],[-1.403887,52.502381],[-1.407506,52.50372],[-1.405796,52.505765],[-1.405413,52.506857],[-1.406923,52.50883],[-1.406678,52.509656],[-1.407386,52.510986],[-1.405462,52.513134],[-1.407546,52.515337],[-1.413845,52.516678],[-1.416757,52.516787],[-1.419702,52.516412],[-1.422267,52.51494],[-1.424142,52.514446],[-1.42695,52.515199],[-1.427952,52.515134],[-1.428869,52.516191],[-1.426836,52.517471],[-1.426896,52.518288],[-1.425401,52.519007],[-1.425649,52.519668],[-1.424609,52.52075],[-1.424955,52.521799],[-1.424401,52.524783],[-1.423315,52.526406],[-1.422021,52.526594],[-1.421464,52.527465],[-1.42138,52.529611],[-1.422573,52.530456],[-1.422666,52.53157],[-1.418486,52.533447],[-1.417344,52.534455]]]},"properties":{"LAD22CD":"E07000219","LAD22NM":"Nuneaton and Bedworth","BNG_E":435419,"BNG_N":289352,"LONG":-1.47965,"LAT":52.50094,"GlobalID":"08b661fe-fc62-4f78-b7ee-3bb1657b2060"},"id":217}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.325088,52.501042],[-1.338443,52.505778],[-1.34179,52.507368],[-1.364955,52.515942],[-1.368153,52.516453],[-1.368236,52.517226],[-1.373542,52.518078],[-1.373251,52.519127],[-1.380418,52.521493],[-1.395127,52.527046],[-1.415206,52.534388],[-1.417344,52.534455],[-1.418486,52.533447],[-1.422666,52.53157],[-1.422573,52.530456],[-1.42138,52.529611],[-1.421464,52.527465],[-1.422021,52.526594],[-1.423315,52.526406],[-1.424401,52.524783],[-1.424955,52.521799],[-1.424609,52.52075],[-1.425649,52.519668],[-1.425401,52.519007],[-1.426896,52.518288],[-1.426836,52.517471],[-1.428869,52.516191],[-1.427952,52.515134],[-1.42695,52.515199],[-1.424142,52.514446],[-1.422267,52.51494],[-1.419702,52.516412],[-1.416757,52.516787],[-1.413845,52.516678],[-1.407546,52.515337],[-1.405462,52.513134],[-1.407386,52.510986],[-1.406678,52.509656],[-1.406923,52.50883],[-1.405413,52.506857],[-1.405796,52.505765],[-1.407506,52.50372],[-1.403887,52.502381],[-1.404646,52.501708],[-1.402812,52.500835],[-1.405704,52.497057],[-1.406868,52.493657],[-1.407658,52.492199],[-1.409639,52.491344],[-1.409661,52.490207],[-1.411774,52.488639],[-1.410604,52.486238],[-1.40884,52.486434],[-1.408453,52.485197],[-1.405877,52.484846],[-1.406075,52.483337],[-1.404791,52.483101],[-1.405703,52.480682],[-1.406199,52.480347],[-1.40463,52.47828],[-1.405023,52.476391],[-1.406946,52.476484],[-1.408561,52.473802],[-1.410411,52.466566],[-1.417001,52.464536],[-1.421044,52.464477],[-1.42121,52.463029],[-1.428128,52.467107],[-1.437623,52.468047],[-1.449361,52.460821],[-1.451424,52.460163],[-1.459053,52.455158],[-1.458746,52.454751],[-1.46042,52.453639],[-1.452165,52.449658],[-1.446053,52.447546],[-1.445474,52.448298],[-1.443647,52.447422],[-1.445015,52.446427],[-1.446655,52.442602],[-1.439817,52.440274],[-1.440094,52.439686],[-1.431865,52.437526],[-1.431694,52.43679],[-1.42993,52.436793],[-1.428786,52.435779],[-1.425208,52.434797],[-1.424146,52.434],[-1.423938,52.432908],[-1.42443,52.430708],[-1.432399,52.415692],[-1.434713,52.412685],[-1.438055,52.410121],[-1.437098,52.407676],[-1.432644,52.402713],[-1.431032,52.400275],[-1.430876,52.398124],[-1.432658,52.395039],[-1.43582,52.392265],[-1.444965,52.386377],[-1.44949,52.384248],[-1.458446,52.381797],[-1.463126,52.379664],[-1.46146,52.377449],[-1.462924,52.376403],[-1.460402,52.374808],[-1.464014,52.373267],[-1.462512,52.372448],[-1.460373,52.370439],[-1.461254,52.36951],[-1.462799,52.369283],[-1.46479,52.367858],[-1.464984,52.367138],[-1.463019,52.366614],[-1.461945,52.364316],[-1.462357,52.363663],[-1.460569,52.363159],[-1.46142,52.361527],[-1.462294,52.360798],[-1.464106,52.360511],[-1.464987,52.359935],[-1.464914,52.358077],[-1.464001,52.357987],[-1.461513,52.358914],[-1.455085,52.35684],[-1.4512,52.357048],[-1.448051,52.353677],[-1.449395,52.353509],[-1.452362,52.352457],[-1.45528,52.349885],[-1.456502,52.349255],[-1.456199,52.346777],[-1.45433,52.346101],[-1.450356,52.345527],[-1.445777,52.345876],[-1.443643,52.345536],[-1.446018,52.343547],[-1.447958,52.340638],[-1.446523,52.340334],[-1.444136,52.341067],[-1.442908,52.338217],[-1.443169,52.336727],[-1.44174,52.334575],[-1.44175,52.333398],[-1.440329,52.332742],[-1.439473,52.331523],[-1.435976,52.328417],[-1.431683,52.326845],[-1.428581,52.326827],[-1.427483,52.326093],[-1.425006,52.32664],[-1.421612,52.326367],[-1.420106,52.326846],[-1.418038,52.326327],[-1.4167,52.325577],[-1.416222,52.324104],[-1.416168,52.322112],[-1.413556,52.320577],[-1.412643,52.320904],[-1.409276,52.320733],[-1.406973,52.319121],[-1.406078,52.316618],[-1.406635,52.315291],[-1.409045,52.31536],[-1.411252,52.313762],[-1.410423,52.313205],[-1.413525,52.312261],[-1.415647,52.312516],[-1.416434,52.313575],[-1.418727,52.313232],[-1.419908,52.312266],[-1.418963,52.311693],[-1.421132,52.309084],[-1.420859,52.308106],[-1.419502,52.306872],[-1.419408,52.303754],[-1.414793,52.303131],[-1.40902,52.302899],[-1.408492,52.304174],[-1.405751,52.303951],[-1.398304,52.302451],[-1.392234,52.301766],[-1.389151,52.300855],[-1.389762,52.300288],[-1.38312,52.297112],[-1.378947,52.294787],[-1.375661,52.293627],[-1.370532,52.291383],[-1.36781,52.289659],[-1.368229,52.289163],[-1.364562,52.287994],[-1.363965,52.286441],[-1.362519,52.285167],[-1.362351,52.283413],[-1.359257,52.282923],[-1.360668,52.28098],[-1.355174,52.280432],[-1.354806,52.279138],[-1.346568,52.27745],[-1.3465,52.276285],[-1.341025,52.274852],[-1.33847,52.273152],[-1.3357,52.271823],[-1.328145,52.269419],[-1.324786,52.268007],[-1.322725,52.267738],[-1.321394,52.266675],[-1.31574,52.267017],[-1.315734,52.265699],[-1.314735,52.265544],[-1.313329,52.26279],[-1.312544,52.262822],[-1.30943,52.260719],[-1.31163,52.259921],[-1.309015,52.257473],[-1.30622,52.258888],[-1.305469,52.260137],[-1.29948,52.264252],[-1.298151,52.26459],[-1.29573,52.264433],[-1.293339,52.265404],[-1.292491,52.267038],[-1.290239,52.269119],[-1.289754,52.270482],[-1.287992,52.271079],[-1.287803,52.273626],[-1.2815,52.270055],[-1.275465,52.267913],[-1.27367,52.266836],[-1.276516,52.266607],[-1.276486,52.265206],[-1.272508,52.263088],[-1.272927,52.262511],[-1.271348,52.261416],[-1.267322,52.260683],[-1.264974,52.259242],[-1.259604,52.257199],[-1.259478,52.256503],[-1.253587,52.255663],[-1.251278,52.25505],[-1.247551,52.253396],[-1.245034,52.252973],[-1.239213,52.252734],[-1.232999,52.253259],[-1.232459,52.254101],[-1.230165,52.2554],[-1.228012,52.255902],[-1.226545,52.257701],[-1.223941,52.258734],[-1.223709,52.259966],[-1.22063,52.260648],[-1.217081,52.262678],[-1.215885,52.264035],[-1.216556,52.26536],[-1.215732,52.266374],[-1.217591,52.267762],[-1.217005,52.268812],[-1.219336,52.270361],[-1.218774,52.271123],[-1.220132,52.27298],[-1.220961,52.273555],[-1.220024,52.276053],[-1.221691,52.276451],[-1.221773,52.278706],[-1.221173,52.279406],[-1.223371,52.281673],[-1.222543,52.282239],[-1.222817,52.284664],[-1.223834,52.285419],[-1.223482,52.286264],[-1.225417,52.288164],[-1.227672,52.289298],[-1.228699,52.288696],[-1.230951,52.288774],[-1.230749,52.28953],[-1.233783,52.290328],[-1.231831,52.294278],[-1.228859,52.295171],[-1.228956,52.297957],[-1.226492,52.298185],[-1.226416,52.30062],[-1.224795,52.301489],[-1.223882,52.302755],[-1.220902,52.303357],[-1.220907,52.305852],[-1.217537,52.305984],[-1.217159,52.307209],[-1.215558,52.308829],[-1.212179,52.310804],[-1.210491,52.313575],[-1.209234,52.315204],[-1.212013,52.316081],[-1.212992,52.315723],[-1.215161,52.316945],[-1.223099,52.318552],[-1.225891,52.318956],[-1.231311,52.320021],[-1.234217,52.320161],[-1.235079,52.320556],[-1.237036,52.32032],[-1.242079,52.321899],[-1.244729,52.321463],[-1.247636,52.321956],[-1.248781,52.3233],[-1.252364,52.324073],[-1.253396,52.32405],[-1.257279,52.325515],[-1.260894,52.327864],[-1.265267,52.328377],[-1.264422,52.329078],[-1.264198,52.330647],[-1.262454,52.33219],[-1.263075,52.33288],[-1.262444,52.334083],[-1.258016,52.337259],[-1.252983,52.338854],[-1.250744,52.339154],[-1.249256,52.339937],[-1.248577,52.340978],[-1.245574,52.341873],[-1.243546,52.341993],[-1.241333,52.342609],[-1.23339,52.346516],[-1.229822,52.347057],[-1.227536,52.346502],[-1.225899,52.346664],[-1.223919,52.347493],[-1.223782,52.348618],[-1.220262,52.349735],[-1.214087,52.34965],[-1.212108,52.348955],[-1.208138,52.349641],[-1.206182,52.350852],[-1.204205,52.35127],[-1.202306,52.35237],[-1.19698,52.35274],[-1.195641,52.353085],[-1.19241,52.351762],[-1.191495,52.351768],[-1.187825,52.353088],[-1.186616,52.354272],[-1.184243,52.353668],[-1.183818,52.354626],[-1.179235,52.354377],[-1.178193,52.355113],[-1.175019,52.356251],[-1.174691,52.360547],[-1.172127,52.361301],[-1.20265,52.396622],[-1.201613,52.396732],[-1.224386,52.423006],[-1.236444,52.435727],[-1.240743,52.440135],[-1.242918,52.43968],[-1.257831,52.453893],[-1.293594,52.484261],[-1.305948,52.493395],[-1.307827,52.49454],[-1.325088,52.501042]]]},"properties":{"LAD22CD":"E07000220","LAD22NM":"Rugby","BNG_E":446498,"BNG_N":276244,"LONG":-1.31828,"LAT":52.38228,"GlobalID":"fd36b60f-cb8e-4b3b-b6aa-e0e89e3ef73b"},"id":218}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.775753,52.347964],[-1.77768,52.34774],[-1.784523,52.350112],[-1.783746,52.350948],[-1.784894,52.353065],[-1.788009,52.355186],[-1.791816,52.356818],[-1.797799,52.358464],[-1.799595,52.358633],[-1.803301,52.362442],[-1.805491,52.363292],[-1.80696,52.36594],[-1.80791,52.366623],[-1.812804,52.366596],[-1.813242,52.365772],[-1.819207,52.366311],[-1.824284,52.365654],[-1.824532,52.366415],[-1.826893,52.366134],[-1.829566,52.367267],[-1.830309,52.366003],[-1.833073,52.366146],[-1.83498,52.367404],[-1.836679,52.366693],[-1.838105,52.366607],[-1.841546,52.365211],[-1.842936,52.365163],[-1.849654,52.366716],[-1.863168,52.366574],[-1.863344,52.367031],[-1.868103,52.368052],[-1.86993,52.368032],[-1.872034,52.367599],[-1.873688,52.366089],[-1.873464,52.365343],[-1.876125,52.363582],[-1.876666,52.363765],[-1.879658,52.362555],[-1.880864,52.362665],[-1.884318,52.361722],[-1.887805,52.36146],[-1.888974,52.361093],[-1.88701,52.357005],[-1.885408,52.356169],[-1.884506,52.354523],[-1.884777,52.353571],[-1.876229,52.345573],[-1.875161,52.342992],[-1.874755,52.340193],[-1.873079,52.337298],[-1.871168,52.335962],[-1.868256,52.333016],[-1.86532,52.333347],[-1.864831,52.333093],[-1.867466,52.331234],[-1.86667,52.318254],[-1.867188,52.318121],[-1.868569,52.314589],[-1.870386,52.312609],[-1.874888,52.312463],[-1.880934,52.310933],[-1.878755,52.308529],[-1.877579,52.306393],[-1.876289,52.305496],[-1.875997,52.304247],[-1.877696,52.300599],[-1.879451,52.29968],[-1.8826,52.294693],[-1.883695,52.294119],[-1.884274,52.291981],[-1.885798,52.291741],[-1.885496,52.290561],[-1.886585,52.288407],[-1.886003,52.287359],[-1.88648,52.286633],[-1.891413,52.285866],[-1.89369,52.283414],[-1.895563,52.282721],[-1.896555,52.283755],[-1.900799,52.283491],[-1.900732,52.282258],[-1.903618,52.280749],[-1.903299,52.279767],[-1.905365,52.278812],[-1.911996,52.276918],[-1.914543,52.275387],[-1.916852,52.275171],[-1.921106,52.276476],[-1.92387,52.276092],[-1.926169,52.276126],[-1.927396,52.275479],[-1.930349,52.27567],[-1.934725,52.27715],[-1.937401,52.276153],[-1.938687,52.270498],[-1.938074,52.268863],[-1.935838,52.265996],[-1.935749,52.264507],[-1.934387,52.264594],[-1.934765,52.262912],[-1.936415,52.262757],[-1.935815,52.261518],[-1.936571,52.260407],[-1.934115,52.25999],[-1.935415,52.256863],[-1.934411,52.254493],[-1.935328,52.254507],[-1.934611,52.252018],[-1.933669,52.249822],[-1.931241,52.247881],[-1.931911,52.247553],[-1.928182,52.244835],[-1.926697,52.242749],[-1.925432,52.242571],[-1.923922,52.240184],[-1.925444,52.239015],[-1.925356,52.23818],[-1.923865,52.234109],[-1.920945,52.229929],[-1.917522,52.223825],[-1.917423,52.218346],[-1.919772,52.214059],[-1.920118,52.210263],[-1.921832,52.21021],[-1.923176,52.208854],[-1.926776,52.208928],[-1.93034,52.208027],[-1.932092,52.20645],[-1.933656,52.206111],[-1.935634,52.204121],[-1.936567,52.202512],[-1.936478,52.200706],[-1.935666,52.199992],[-1.936583,52.197134],[-1.934841,52.192893],[-1.935756,52.191241],[-1.935853,52.18987],[-1.937709,52.188215],[-1.939116,52.185291],[-1.939775,52.18171],[-1.941352,52.177819],[-1.944576,52.174766],[-1.949409,52.172955],[-1.956108,52.174151],[-1.960675,52.174025],[-1.961669,52.172529],[-1.961966,52.170736],[-1.960448,52.16951],[-1.960408,52.168672],[-1.95137,52.169191],[-1.947213,52.167948],[-1.945546,52.170356],[-1.943475,52.170935],[-1.935483,52.169557],[-1.935343,52.168248],[-1.934554,52.167825],[-1.934957,52.165992],[-1.934119,52.165394],[-1.937299,52.163408],[-1.937736,52.16131],[-1.939693,52.160316],[-1.939227,52.158907],[-1.941982,52.157269],[-1.944303,52.155333],[-1.942127,52.154396],[-1.940077,52.153042],[-1.93361,52.153528],[-1.921887,52.153006],[-1.91838,52.149353],[-1.916878,52.146716],[-1.913433,52.144984],[-1.910887,52.144378],[-1.907323,52.142737],[-1.9051,52.142737],[-1.904357,52.14154],[-1.904184,52.140019],[-1.902189,52.137723],[-1.902604,52.134253],[-1.90126,52.134752],[-1.900216,52.135726],[-1.892904,52.13861],[-1.890578,52.141705],[-1.888253,52.143518],[-1.885118,52.146853],[-1.885009,52.147498],[-1.88634,52.148566],[-1.88973,52.148432],[-1.890475,52.148852],[-1.891856,52.147878],[-1.89423,52.148251],[-1.895067,52.150805],[-1.893507,52.151089],[-1.893859,52.151938],[-1.892067,52.154155],[-1.891812,52.155066],[-1.889104,52.156349],[-1.886527,52.156115],[-1.885522,52.156422],[-1.883827,52.155811],[-1.882657,52.155976],[-1.88064,52.154853],[-1.8789,52.155058],[-1.876154,52.154839],[-1.869076,52.153166],[-1.866927,52.153008],[-1.866107,52.150305],[-1.866802,52.150068],[-1.863878,52.147038],[-1.865727,52.145961],[-1.866962,52.14464],[-1.863266,52.142846],[-1.859708,52.140509],[-1.854188,52.138521],[-1.849837,52.139384],[-1.848338,52.140347],[-1.847295,52.141888],[-1.84581,52.142654],[-1.846909,52.147186],[-1.850971,52.146471],[-1.851904,52.14797],[-1.847563,52.148634],[-1.84823,52.149973],[-1.839672,52.152714],[-1.839319,52.151803],[-1.83752,52.150437],[-1.833543,52.148137],[-1.831004,52.148307],[-1.83147,52.145674],[-1.828675,52.146345],[-1.823348,52.145925],[-1.825304,52.14271],[-1.825443,52.141812],[-1.827845,52.141245],[-1.824612,52.138725],[-1.824854,52.137449],[-1.823218,52.136382],[-1.81732,52.138596],[-1.810889,52.13992],[-1.808434,52.139876],[-1.802346,52.137637],[-1.79967,52.136277],[-1.785548,52.132059],[-1.786583,52.131367],[-1.789925,52.130486],[-1.789208,52.129844],[-1.790273,52.128951],[-1.79277,52.127824],[-1.793319,52.125464],[-1.795774,52.124442],[-1.793913,52.123867],[-1.792992,52.122862],[-1.793318,52.121778],[-1.791004,52.120194],[-1.78777,52.119511],[-1.780628,52.120143],[-1.780699,52.119016],[-1.778423,52.11828],[-1.775105,52.118204],[-1.773092,52.116792],[-1.770589,52.116124],[-1.7697,52.115314],[-1.764632,52.115885],[-1.763223,52.116366],[-1.76246,52.115233],[-1.760285,52.116251],[-1.759201,52.114966],[-1.767649,52.112593],[-1.766222,52.109637],[-1.763711,52.108506],[-1.762528,52.107351],[-1.758867,52.106076],[-1.757684,52.103162],[-1.755041,52.101236],[-1.754128,52.10093],[-1.754837,52.099292],[-1.75354,52.097667],[-1.751791,52.096923],[-1.750941,52.095431],[-1.746885,52.093251],[-1.742398,52.09224],[-1.739715,52.091414],[-1.737893,52.091748],[-1.732887,52.095054],[-1.7322,52.097003],[-1.730219,52.097994],[-1.728543,52.097998],[-1.729635,52.095255],[-1.73019,52.095246],[-1.730509,52.092786],[-1.728399,52.090974],[-1.728848,52.08876],[-1.728071,52.088384],[-1.729452,52.084066],[-1.729067,52.081514],[-1.728159,52.081446],[-1.730672,52.073399],[-1.728153,52.072748],[-1.728782,52.071569],[-1.724225,52.06955],[-1.722992,52.069513],[-1.720675,52.068784],[-1.717071,52.068208],[-1.71428,52.066728],[-1.711812,52.066636],[-1.712671,52.06834],[-1.712219,52.070667],[-1.709882,52.073349],[-1.707993,52.072501],[-1.701732,52.072809],[-1.701579,52.070292],[-1.703361,52.067536],[-1.704049,52.063271],[-1.70544,52.061557],[-1.705141,52.059707],[-1.702987,52.057494],[-1.702502,52.056226],[-1.699561,52.05463],[-1.692358,52.054379],[-1.69018,52.054736],[-1.690013,52.053181],[-1.688637,52.051833],[-1.690607,52.051448],[-1.691164,52.048243],[-1.693041,52.045006],[-1.694796,52.042939],[-1.695002,52.040525],[-1.693981,52.039528],[-1.691851,52.039759],[-1.689765,52.038196],[-1.685699,52.037393],[-1.683707,52.037797],[-1.683303,52.03733],[-1.680978,52.037376],[-1.678203,52.036534],[-1.676397,52.036705],[-1.673348,52.036042],[-1.67065,52.036728],[-1.667133,52.036073],[-1.66484,52.031775],[-1.659093,52.031626],[-1.65644,52.032178],[-1.655575,52.034796],[-1.65355,52.035402],[-1.650968,52.035199],[-1.648095,52.033993],[-1.646122,52.034684],[-1.644218,52.034577],[-1.643369,52.035291],[-1.639253,52.037239],[-1.634868,52.036995],[-1.632212,52.035918],[-1.629107,52.037285],[-1.628494,52.036911],[-1.626879,52.037896],[-1.626683,52.038502],[-1.624418,52.038981],[-1.625062,52.037683],[-1.624227,52.036212],[-1.622563,52.036079],[-1.621461,52.035233],[-1.619268,52.03494],[-1.618907,52.034176],[-1.617507,52.033395],[-1.617531,52.031598],[-1.618474,52.030561],[-1.618733,52.029086],[-1.620145,52.027712],[-1.620958,52.027686],[-1.624551,52.026405],[-1.627034,52.027381],[-1.628405,52.027207],[-1.635263,52.021982],[-1.638649,52.020487],[-1.642612,52.015312],[-1.643302,52.0129],[-1.642162,52.011406],[-1.641936,52.010299],[-1.642838,52.009203],[-1.644489,52.008763],[-1.648603,52.006765],[-1.651547,52.005724],[-1.653022,52.004562],[-1.655357,52.003399],[-1.657437,52.001007],[-1.659045,51.999828],[-1.661101,51.999389],[-1.665819,51.997247],[-1.669888,51.99309],[-1.669279,51.989219],[-1.665754,51.987489],[-1.657334,51.984441],[-1.656581,51.983542],[-1.643093,51.977903],[-1.635913,51.973727],[-1.636528,51.972879],[-1.634303,51.972421],[-1.63236,51.970456],[-1.629724,51.969906],[-1.626285,51.967512],[-1.623569,51.964843],[-1.622612,51.963389],[-1.621039,51.962279],[-1.621903,51.961864],[-1.619893,51.960709],[-1.617984,51.959075],[-1.616215,51.957953],[-1.613609,51.955689],[-1.612343,51.955403],[-1.605788,51.959573],[-1.596917,51.964394],[-1.594721,51.96827],[-1.59429,51.968127],[-1.591634,51.97045],[-1.595799,51.972564],[-1.596689,51.974278],[-1.600302,51.976942],[-1.588407,51.974226],[-1.580573,51.972996],[-1.568641,51.976271],[-1.563539,51.97704],[-1.549671,51.98086],[-1.553618,51.985607],[-1.554077,51.986637],[-1.556686,51.989325],[-1.557224,51.991658],[-1.554036,51.991897],[-1.553561,51.992369],[-1.550615,51.993342],[-1.549676,51.993939],[-1.546827,51.994706],[-1.543929,51.996324],[-1.5399,51.996367],[-1.535995,51.995358],[-1.534756,51.99436],[-1.52913,51.99263],[-1.527929,51.991754],[-1.526864,51.992528],[-1.524928,51.993207],[-1.522826,51.996843],[-1.52161,52.001595],[-1.521164,52.005885],[-1.51558,52.014429],[-1.513571,52.018383],[-1.510947,52.021449],[-1.510116,52.026713],[-1.5074,52.03338],[-1.50748,52.03532],[-1.506899,52.037233],[-1.504944,52.04144],[-1.503462,52.043548],[-1.50184,52.049582],[-1.499636,52.052436],[-1.497353,52.058955],[-1.497239,52.06087],[-1.499266,52.063535],[-1.501835,52.066271],[-1.502619,52.069176],[-1.500069,52.069943],[-1.501855,52.071627],[-1.500815,52.072929],[-1.499179,52.073915],[-1.495013,52.07472],[-1.493495,52.074808],[-1.492172,52.075482],[-1.490665,52.077135],[-1.493292,52.0796],[-1.493688,52.081593],[-1.494355,52.082227],[-1.490561,52.083803],[-1.489954,52.086234],[-1.488911,52.086231],[-1.487791,52.087773],[-1.485608,52.087733],[-1.484733,52.091304],[-1.48682,52.091483],[-1.488143,52.092828],[-1.487805,52.093957],[-1.486199,52.094228],[-1.480067,52.093558],[-1.477302,52.101351],[-1.474141,52.101002],[-1.471776,52.099463],[-1.470739,52.097955],[-1.467559,52.097056],[-1.466931,52.09774],[-1.465082,52.097416],[-1.459738,52.097531],[-1.458207,52.098001],[-1.453534,52.098542],[-1.453608,52.097336],[-1.447188,52.097625],[-1.446979,52.098863],[-1.448328,52.100471],[-1.448062,52.105162],[-1.449222,52.108315],[-1.453469,52.112991],[-1.448856,52.116038],[-1.447848,52.11612],[-1.444943,52.11525],[-1.441229,52.115556],[-1.437071,52.116704],[-1.431251,52.11728],[-1.426999,52.11815],[-1.424506,52.118252],[-1.41963,52.117642],[-1.414413,52.115437],[-1.411459,52.113049],[-1.403894,52.11009],[-1.402798,52.108897],[-1.402633,52.106325],[-1.400615,52.105057],[-1.400338,52.104335],[-1.396716,52.101921],[-1.395537,52.101702],[-1.390898,52.098897],[-1.387554,52.097424],[-1.387147,52.096106],[-1.385731,52.095239],[-1.3854,52.094146],[-1.3777,52.096055],[-1.378307,52.096763],[-1.374424,52.099726],[-1.371553,52.099075],[-1.367573,52.100005],[-1.366155,52.099944],[-1.362554,52.101084],[-1.360576,52.100968],[-1.35777,52.10131],[-1.358825,52.10225],[-1.358367,52.102976],[-1.359666,52.105698],[-1.361375,52.106289],[-1.361362,52.107505],[-1.363014,52.108936],[-1.365292,52.110023],[-1.365184,52.111302],[-1.366309,52.111732],[-1.36794,52.111647],[-1.370367,52.112718],[-1.370149,52.115083],[-1.371441,52.11618],[-1.370842,52.117534],[-1.374583,52.118318],[-1.37769,52.118132],[-1.378999,52.117532],[-1.38161,52.116946],[-1.38538,52.117458],[-1.3907,52.116789],[-1.392182,52.117071],[-1.393303,52.118963],[-1.392079,52.119696],[-1.392378,52.120292],[-1.391426,52.121528],[-1.389173,52.121966],[-1.390092,52.122737],[-1.387556,52.125991],[-1.386829,52.126052],[-1.385463,52.128403],[-1.383765,52.128216],[-1.382729,52.127543],[-1.375199,52.130914],[-1.371141,52.133269],[-1.370166,52.133095],[-1.369601,52.134723],[-1.364049,52.136708],[-1.362821,52.134798],[-1.359824,52.135062],[-1.355732,52.136014],[-1.352075,52.134806],[-1.34975,52.134846],[-1.348313,52.1378],[-1.349115,52.138515],[-1.350256,52.140864],[-1.349937,52.141592],[-1.346829,52.14235],[-1.343373,52.144224],[-1.341041,52.144856],[-1.34281,52.14873],[-1.341611,52.15068],[-1.343459,52.153235],[-1.342344,52.154905],[-1.338237,52.158843],[-1.334004,52.159083],[-1.333948,52.165397],[-1.333088,52.167349],[-1.331897,52.168485],[-1.331591,52.169521],[-1.332292,52.17054],[-1.331116,52.171416],[-1.332333,52.172324],[-1.331482,52.174137],[-1.328639,52.17702],[-1.326509,52.178397],[-1.322813,52.181801],[-1.319946,52.181361],[-1.318191,52.181417],[-1.318195,52.183006],[-1.317447,52.184855],[-1.316161,52.18666],[-1.314387,52.188112],[-1.313135,52.190468],[-1.308859,52.189779],[-1.300595,52.191775],[-1.294894,52.191681],[-1.290788,52.192133],[-1.283644,52.191601],[-1.281195,52.191953],[-1.281138,52.195775],[-1.277573,52.195809],[-1.274075,52.1954],[-1.271424,52.196368],[-1.268003,52.196531],[-1.262539,52.195962],[-1.254982,52.197831],[-1.25478,52.198889],[-1.25736,52.205614],[-1.257308,52.208576],[-1.259862,52.211853],[-1.260917,52.215993],[-1.264153,52.216556],[-1.26774,52.217757],[-1.270956,52.219233],[-1.273782,52.221354],[-1.275276,52.222014],[-1.27636,52.223138],[-1.276908,52.225182],[-1.275676,52.226322],[-1.273511,52.226765],[-1.272594,52.227511],[-1.278432,52.228707],[-1.278618,52.230067],[-1.280147,52.233385],[-1.282714,52.23632],[-1.283972,52.237102],[-1.284644,52.238577],[-1.27997,52.238632],[-1.275373,52.238032],[-1.266891,52.235242],[-1.266353,52.236705],[-1.267621,52.237438],[-1.266065,52.238888],[-1.266769,52.239469],[-1.266152,52.24083],[-1.264799,52.241881],[-1.25807,52.244674],[-1.25448,52.247568],[-1.251746,52.248641],[-1.250483,52.248302],[-1.246682,52.2491],[-1.240568,52.247961],[-1.237767,52.248435],[-1.23516,52.249271],[-1.234704,52.250448],[-1.232369,52.251227],[-1.232058,52.251686],[-1.232999,52.253259],[-1.239213,52.252734],[-1.245034,52.252973],[-1.247551,52.253396],[-1.251278,52.25505],[-1.253587,52.255663],[-1.259478,52.256503],[-1.259604,52.257199],[-1.264974,52.259242],[-1.267322,52.260683],[-1.271348,52.261416],[-1.272927,52.262511],[-1.272508,52.263088],[-1.276486,52.265206],[-1.276516,52.266607],[-1.27367,52.266836],[-1.275465,52.267913],[-1.2815,52.270055],[-1.287803,52.273626],[-1.287992,52.271079],[-1.289754,52.270482],[-1.290239,52.269119],[-1.292491,52.267038],[-1.293339,52.265404],[-1.29573,52.264433],[-1.298151,52.26459],[-1.29948,52.264252],[-1.305469,52.260137],[-1.30622,52.258888],[-1.309015,52.257473],[-1.31163,52.259921],[-1.30943,52.260719],[-1.312544,52.262822],[-1.313329,52.26279],[-1.314735,52.265544],[-1.315734,52.265699],[-1.31574,52.267017],[-1.321394,52.266675],[-1.322725,52.267738],[-1.324786,52.268007],[-1.328145,52.269419],[-1.3357,52.271823],[-1.33847,52.273152],[-1.341025,52.274852],[-1.3465,52.276285],[-1.346568,52.27745],[-1.354806,52.279138],[-1.355174,52.280432],[-1.360668,52.28098],[-1.359257,52.282923],[-1.362351,52.283413],[-1.362519,52.285167],[-1.363965,52.286441],[-1.364562,52.287994],[-1.368229,52.289163],[-1.36781,52.289659],[-1.370532,52.291383],[-1.375661,52.293627],[-1.378947,52.294787],[-1.38312,52.297112],[-1.389762,52.300288],[-1.389151,52.300855],[-1.392234,52.301766],[-1.398304,52.302451],[-1.405751,52.303951],[-1.408492,52.304174],[-1.40902,52.302899],[-1.414793,52.303131],[-1.419408,52.303754],[-1.421481,52.303588],[-1.422827,52.3017],[-1.424005,52.301787],[-1.426494,52.300751],[-1.426252,52.299474],[-1.424163,52.299627],[-1.422927,52.299095],[-1.421802,52.297956],[-1.423651,52.296469],[-1.424564,52.296496],[-1.426921,52.294238],[-1.428075,52.295144],[-1.435641,52.293634],[-1.440911,52.294546],[-1.443983,52.295343],[-1.448473,52.294072],[-1.447934,52.291384],[-1.445879,52.287728],[-1.44276,52.284141],[-1.441928,52.282129],[-1.439223,52.281761],[-1.439666,52.278766],[-1.435094,52.276442],[-1.436096,52.274519],[-1.434863,52.273908],[-1.435216,52.272788],[-1.43821,52.271857],[-1.441119,52.271477],[-1.444136,52.27209],[-1.448507,52.271383],[-1.450988,52.271845],[-1.453417,52.271926],[-1.454743,52.270835],[-1.458927,52.270252],[-1.463033,52.265138],[-1.465567,52.263672],[-1.46959,52.264794],[-1.471162,52.26397],[-1.472285,52.263902],[-1.474661,52.262788],[-1.475825,52.261202],[-1.477658,52.26174],[-1.483467,52.255296],[-1.484954,52.254434],[-1.486624,52.252761],[-1.488738,52.249434],[-1.491053,52.247007],[-1.495076,52.24207],[-1.497564,52.240074],[-1.498864,52.241021],[-1.498919,52.238994],[-1.500105,52.237563],[-1.502107,52.237934],[-1.500024,52.239588],[-1.502186,52.2415],[-1.504567,52.241016],[-1.506553,52.241276],[-1.50764,52.240838],[-1.508688,52.241636],[-1.510953,52.242226],[-1.512989,52.242176],[-1.516317,52.240805],[-1.519309,52.238216],[-1.519701,52.235975],[-1.520773,52.235456],[-1.521731,52.230307],[-1.523484,52.229338],[-1.525256,52.226696],[-1.528199,52.22515],[-1.535246,52.226491],[-1.539682,52.228342],[-1.539826,52.227868],[-1.548539,52.22764],[-1.555022,52.228232],[-1.554298,52.230943],[-1.560059,52.231646],[-1.563136,52.228029],[-1.563691,52.225654],[-1.564641,52.22428],[-1.567351,52.221569],[-1.567416,52.219483],[-1.568009,52.218004],[-1.5726,52.218015],[-1.572787,52.216983],[-1.575108,52.216335],[-1.575324,52.217312],[-1.576725,52.217273],[-1.577595,52.217997],[-1.579392,52.218069],[-1.581252,52.220374],[-1.581223,52.220878],[-1.584494,52.221587],[-1.585164,52.223652],[-1.587107,52.224568],[-1.588776,52.223619],[-1.589904,52.223817],[-1.593177,52.223525],[-1.597277,52.225322],[-1.603087,52.224631],[-1.604003,52.222804],[-1.605899,52.222365],[-1.607796,52.220997],[-1.61007,52.220471],[-1.611851,52.219017],[-1.617485,52.216605],[-1.618915,52.215244],[-1.619663,52.214026],[-1.621227,52.213807],[-1.620303,52.218124],[-1.621241,52.220385],[-1.623851,52.221453],[-1.625566,52.222578],[-1.626372,52.224774],[-1.625319,52.226868],[-1.622393,52.227007],[-1.618082,52.228318],[-1.616514,52.229309],[-1.613497,52.230354],[-1.612312,52.229638],[-1.610333,52.229718],[-1.609032,52.230312],[-1.609235,52.232326],[-1.605787,52.235026],[-1.605675,52.236037],[-1.606415,52.237312],[-1.607878,52.238367],[-1.609591,52.238764],[-1.610707,52.238555],[-1.612357,52.237437],[-1.617665,52.236903],[-1.6206,52.237246],[-1.622854,52.238065],[-1.624941,52.238442],[-1.62394,52.239343],[-1.624715,52.239833],[-1.625789,52.241568],[-1.626863,52.240696],[-1.627575,52.242357],[-1.624577,52.24214],[-1.622473,52.243324],[-1.621362,52.244421],[-1.623395,52.245516],[-1.626415,52.246523],[-1.626405,52.247047],[-1.629613,52.246824],[-1.635916,52.247349],[-1.638035,52.249222],[-1.637987,52.249943],[-1.640948,52.252347],[-1.641111,52.25315],[-1.644902,52.25556],[-1.643454,52.256609],[-1.64593,52.258271],[-1.648976,52.258174],[-1.649049,52.257518],[-1.65158,52.257816],[-1.653041,52.257135],[-1.653406,52.256365],[-1.655562,52.256986],[-1.65736,52.257143],[-1.658686,52.255808],[-1.66035,52.255718],[-1.661873,52.256256],[-1.664201,52.256091],[-1.665966,52.256783],[-1.666856,52.257955],[-1.668519,52.258212],[-1.669389,52.259965],[-1.674002,52.263043],[-1.675825,52.265386],[-1.676482,52.269754],[-1.676073,52.270225],[-1.674113,52.269923],[-1.67526,52.271787],[-1.675176,52.273857],[-1.672769,52.277782],[-1.669341,52.280782],[-1.667153,52.282171],[-1.665826,52.283781],[-1.66691,52.28511],[-1.66909,52.285816],[-1.674235,52.286417],[-1.677258,52.285953],[-1.679328,52.286743],[-1.680303,52.285512],[-1.682235,52.284267],[-1.683599,52.284003],[-1.68549,52.282801],[-1.690262,52.284348],[-1.692619,52.285933],[-1.695235,52.28694],[-1.697453,52.289407],[-1.69997,52.291251],[-1.703883,52.291239],[-1.712293,52.289683],[-1.717167,52.293299],[-1.718113,52.294936],[-1.719762,52.296321],[-1.722718,52.29709],[-1.723764,52.29846],[-1.725459,52.297767],[-1.726646,52.29675],[-1.729994,52.296169],[-1.734704,52.293968],[-1.73619,52.295512],[-1.737239,52.295891],[-1.738613,52.297744],[-1.737356,52.298973],[-1.737718,52.299993],[-1.740159,52.301356],[-1.741265,52.302365],[-1.743719,52.302956],[-1.746651,52.302716],[-1.747727,52.304745],[-1.74985,52.304768],[-1.751852,52.305212],[-1.754808,52.305022],[-1.761665,52.308006],[-1.760769,52.308749],[-1.760727,52.310285],[-1.763538,52.312614],[-1.764766,52.314549],[-1.766567,52.315817],[-1.769015,52.319339],[-1.768079,52.323811],[-1.767606,52.328599],[-1.771957,52.338445],[-1.773766,52.341049],[-1.775753,52.347964]]]},"properties":{"LAD22CD":"E07000221","LAD22NM":"Stratford-on-Avon","BNG_E":425019,"BNG_N":251536,"LONG":-1.63565,"LAT":52.16154,"GlobalID":"9f73822d-a8b7-42af-933b-a1c54171aca4"},"id":219}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.601068,52.389299],[-1.603284,52.388194],[-1.601994,52.387418],[-1.603423,52.385986],[-1.605033,52.385739],[-1.605169,52.3839],[-1.607509,52.384626],[-1.608806,52.382997],[-1.610283,52.382507],[-1.606915,52.381008],[-1.60802,52.376355],[-1.611691,52.374668],[-1.61636,52.374593],[-1.618145,52.376256],[-1.618237,52.373402],[-1.617041,52.372623],[-1.618531,52.371579],[-1.619022,52.370557],[-1.622234,52.371743],[-1.623676,52.371779],[-1.624837,52.370257],[-1.626616,52.369194],[-1.620967,52.367884],[-1.623401,52.365551],[-1.626495,52.366647],[-1.629767,52.365107],[-1.631573,52.365705],[-1.633448,52.364243],[-1.636459,52.365169],[-1.638087,52.364009],[-1.641754,52.362536],[-1.644065,52.362217],[-1.647767,52.358073],[-1.648418,52.356743],[-1.65131,52.356421],[-1.653086,52.359938],[-1.660888,52.36567],[-1.66405,52.363969],[-1.666812,52.364949],[-1.668105,52.364494],[-1.669985,52.36491],[-1.672533,52.363128],[-1.675055,52.363794],[-1.67794,52.364134],[-1.684557,52.36313],[-1.684707,52.362536],[-1.683691,52.360397],[-1.685685,52.358224],[-1.685863,52.356904],[-1.684931,52.356011],[-1.687544,52.354437],[-1.691363,52.353118],[-1.692626,52.351558],[-1.693885,52.351013],[-1.696232,52.354381],[-1.698092,52.355732],[-1.700017,52.354755],[-1.704089,52.35421],[-1.707215,52.355157],[-1.71027,52.355021],[-1.711373,52.355378],[-1.712837,52.356802],[-1.715094,52.357949],[-1.717141,52.358145],[-1.718337,52.358692],[-1.718757,52.357339],[-1.720209,52.357274],[-1.720825,52.359068],[-1.720088,52.36317],[-1.718023,52.366016],[-1.71773,52.367838],[-1.718233,52.369478],[-1.720258,52.372574],[-1.720863,52.37197],[-1.723282,52.37077],[-1.725639,52.370639],[-1.727569,52.369855],[-1.729799,52.370129],[-1.73054,52.370727],[-1.734031,52.370718],[-1.735234,52.370062],[-1.736546,52.368434],[-1.738323,52.364972],[-1.7379,52.362766],[-1.738289,52.362068],[-1.740928,52.360045],[-1.741408,52.357172],[-1.742331,52.356871],[-1.743573,52.355375],[-1.748774,52.354771],[-1.751086,52.355071],[-1.752158,52.355909],[-1.753776,52.356124],[-1.759631,52.35841],[-1.759987,52.359206],[-1.759606,52.362552],[-1.7628,52.364275],[-1.767061,52.364712],[-1.770075,52.364657],[-1.772026,52.365363],[-1.77574,52.365916],[-1.779225,52.36454],[-1.78017,52.363827],[-1.779229,52.360157],[-1.77892,52.357808],[-1.778226,52.356566],[-1.776555,52.355135],[-1.773509,52.356663],[-1.773152,52.355536],[-1.77478,52.354533],[-1.771886,52.351287],[-1.774686,52.350456],[-1.776214,52.349634],[-1.775753,52.347964],[-1.773766,52.341049],[-1.771957,52.338445],[-1.767606,52.328599],[-1.768079,52.323811],[-1.769015,52.319339],[-1.766567,52.315817],[-1.764766,52.314549],[-1.763538,52.312614],[-1.760727,52.310285],[-1.760769,52.308749],[-1.761665,52.308006],[-1.754808,52.305022],[-1.751852,52.305212],[-1.74985,52.304768],[-1.747727,52.304745],[-1.746651,52.302716],[-1.743719,52.302956],[-1.741265,52.302365],[-1.740159,52.301356],[-1.737718,52.299993],[-1.737356,52.298973],[-1.738613,52.297744],[-1.737239,52.295891],[-1.73619,52.295512],[-1.734704,52.293968],[-1.729994,52.296169],[-1.726646,52.29675],[-1.725459,52.297767],[-1.723764,52.29846],[-1.722718,52.29709],[-1.719762,52.296321],[-1.718113,52.294936],[-1.717167,52.293299],[-1.712293,52.289683],[-1.703883,52.291239],[-1.69997,52.291251],[-1.697453,52.289407],[-1.695235,52.28694],[-1.692619,52.285933],[-1.690262,52.284348],[-1.68549,52.282801],[-1.683599,52.284003],[-1.682235,52.284267],[-1.680303,52.285512],[-1.679328,52.286743],[-1.677258,52.285953],[-1.674235,52.286417],[-1.66909,52.285816],[-1.66691,52.28511],[-1.665826,52.283781],[-1.667153,52.282171],[-1.669341,52.280782],[-1.672769,52.277782],[-1.675176,52.273857],[-1.67526,52.271787],[-1.674113,52.269923],[-1.676073,52.270225],[-1.676482,52.269754],[-1.675825,52.265386],[-1.674002,52.263043],[-1.669389,52.259965],[-1.668519,52.258212],[-1.666856,52.257955],[-1.665966,52.256783],[-1.664201,52.256091],[-1.661873,52.256256],[-1.66035,52.255718],[-1.658686,52.255808],[-1.65736,52.257143],[-1.655562,52.256986],[-1.653406,52.256365],[-1.653041,52.257135],[-1.65158,52.257816],[-1.649049,52.257518],[-1.648976,52.258174],[-1.64593,52.258271],[-1.643454,52.256609],[-1.644902,52.25556],[-1.641111,52.25315],[-1.640948,52.252347],[-1.637987,52.249943],[-1.638035,52.249222],[-1.635916,52.247349],[-1.629613,52.246824],[-1.626405,52.247047],[-1.626415,52.246523],[-1.623395,52.245516],[-1.621362,52.244421],[-1.622473,52.243324],[-1.624577,52.24214],[-1.627575,52.242357],[-1.626863,52.240696],[-1.625789,52.241568],[-1.624715,52.239833],[-1.62394,52.239343],[-1.624941,52.238442],[-1.622854,52.238065],[-1.6206,52.237246],[-1.617665,52.236903],[-1.612357,52.237437],[-1.610707,52.238555],[-1.609591,52.238764],[-1.607878,52.238367],[-1.606415,52.237312],[-1.605675,52.236037],[-1.605787,52.235026],[-1.609235,52.232326],[-1.609032,52.230312],[-1.610333,52.229718],[-1.612312,52.229638],[-1.613497,52.230354],[-1.616514,52.229309],[-1.618082,52.228318],[-1.622393,52.227007],[-1.625319,52.226868],[-1.626372,52.224774],[-1.625566,52.222578],[-1.623851,52.221453],[-1.621241,52.220385],[-1.620303,52.218124],[-1.621227,52.213807],[-1.619663,52.214026],[-1.618915,52.215244],[-1.617485,52.216605],[-1.611851,52.219017],[-1.61007,52.220471],[-1.607796,52.220997],[-1.605899,52.222365],[-1.604003,52.222804],[-1.603087,52.224631],[-1.597277,52.225322],[-1.593177,52.223525],[-1.589904,52.223817],[-1.588776,52.223619],[-1.587107,52.224568],[-1.585164,52.223652],[-1.584494,52.221587],[-1.581223,52.220878],[-1.581252,52.220374],[-1.579392,52.218069],[-1.577595,52.217997],[-1.576725,52.217273],[-1.575324,52.217312],[-1.575108,52.216335],[-1.572787,52.216983],[-1.5726,52.218015],[-1.568009,52.218004],[-1.567416,52.219483],[-1.567351,52.221569],[-1.564641,52.22428],[-1.563691,52.225654],[-1.563136,52.228029],[-1.560059,52.231646],[-1.554298,52.230943],[-1.555022,52.228232],[-1.548539,52.22764],[-1.539826,52.227868],[-1.539682,52.228342],[-1.535246,52.226491],[-1.528199,52.22515],[-1.525256,52.226696],[-1.523484,52.229338],[-1.521731,52.230307],[-1.520773,52.235456],[-1.519701,52.235975],[-1.519309,52.238216],[-1.516317,52.240805],[-1.512989,52.242176],[-1.510953,52.242226],[-1.508688,52.241636],[-1.50764,52.240838],[-1.506553,52.241276],[-1.504567,52.241016],[-1.502186,52.2415],[-1.500024,52.239588],[-1.502107,52.237934],[-1.500105,52.237563],[-1.498919,52.238994],[-1.498864,52.241021],[-1.497564,52.240074],[-1.495076,52.24207],[-1.491053,52.247007],[-1.488738,52.249434],[-1.486624,52.252761],[-1.484954,52.254434],[-1.483467,52.255296],[-1.477658,52.26174],[-1.475825,52.261202],[-1.474661,52.262788],[-1.472285,52.263902],[-1.471162,52.26397],[-1.46959,52.264794],[-1.465567,52.263672],[-1.463033,52.265138],[-1.458927,52.270252],[-1.454743,52.270835],[-1.453417,52.271926],[-1.450988,52.271845],[-1.448507,52.271383],[-1.444136,52.27209],[-1.441119,52.271477],[-1.43821,52.271857],[-1.435216,52.272788],[-1.434863,52.273908],[-1.436096,52.274519],[-1.435094,52.276442],[-1.439666,52.278766],[-1.439223,52.281761],[-1.441928,52.282129],[-1.44276,52.284141],[-1.445879,52.287728],[-1.447934,52.291384],[-1.448473,52.294072],[-1.443983,52.295343],[-1.440911,52.294546],[-1.435641,52.293634],[-1.428075,52.295144],[-1.426921,52.294238],[-1.424564,52.296496],[-1.423651,52.296469],[-1.421802,52.297956],[-1.422927,52.299095],[-1.424163,52.299627],[-1.426252,52.299474],[-1.426494,52.300751],[-1.424005,52.301787],[-1.422827,52.3017],[-1.421481,52.303588],[-1.419408,52.303754],[-1.419502,52.306872],[-1.420859,52.308106],[-1.421132,52.309084],[-1.418963,52.311693],[-1.419908,52.312266],[-1.418727,52.313232],[-1.416434,52.313575],[-1.415647,52.312516],[-1.413525,52.312261],[-1.410423,52.313205],[-1.411252,52.313762],[-1.409045,52.31536],[-1.406635,52.315291],[-1.406078,52.316618],[-1.406973,52.319121],[-1.409276,52.320733],[-1.412643,52.320904],[-1.413556,52.320577],[-1.416168,52.322112],[-1.416222,52.324104],[-1.4167,52.325577],[-1.418038,52.326327],[-1.420106,52.326846],[-1.421612,52.326367],[-1.425006,52.32664],[-1.427483,52.326093],[-1.428581,52.326827],[-1.431683,52.326845],[-1.435976,52.328417],[-1.439473,52.331523],[-1.440329,52.332742],[-1.44175,52.333398],[-1.44174,52.334575],[-1.443169,52.336727],[-1.442908,52.338217],[-1.444136,52.341067],[-1.446523,52.340334],[-1.447958,52.340638],[-1.446018,52.343547],[-1.443643,52.345536],[-1.445777,52.345876],[-1.450356,52.345527],[-1.45433,52.346101],[-1.456199,52.346777],[-1.456502,52.349255],[-1.45528,52.349885],[-1.452362,52.352457],[-1.449395,52.353509],[-1.448051,52.353677],[-1.4512,52.357048],[-1.455085,52.35684],[-1.461513,52.358914],[-1.464001,52.357987],[-1.464914,52.358077],[-1.464987,52.359935],[-1.464106,52.360511],[-1.462294,52.360798],[-1.46142,52.361527],[-1.460569,52.363159],[-1.462357,52.363663],[-1.461945,52.364316],[-1.463019,52.366614],[-1.464984,52.367138],[-1.46479,52.367858],[-1.462799,52.369283],[-1.461254,52.36951],[-1.460373,52.370439],[-1.462512,52.372448],[-1.464014,52.373267],[-1.466333,52.374536],[-1.464696,52.375531],[-1.466609,52.377204],[-1.471008,52.376473],[-1.475914,52.374709],[-1.48041,52.374318],[-1.482278,52.377119],[-1.486605,52.37683],[-1.504499,52.377807],[-1.50817,52.375822],[-1.509362,52.373108],[-1.513916,52.369063],[-1.514693,52.369981],[-1.517978,52.371939],[-1.51847,52.373547],[-1.520001,52.373094],[-1.521084,52.37455],[-1.519811,52.375553],[-1.522781,52.377514],[-1.524652,52.379401],[-1.52992,52.377863],[-1.532662,52.376216],[-1.535479,52.377609],[-1.545677,52.369271],[-1.541893,52.366633],[-1.546808,52.365357],[-1.549391,52.366339],[-1.552413,52.363892],[-1.555006,52.365103],[-1.557455,52.365733],[-1.555843,52.367752],[-1.558254,52.368655],[-1.556907,52.369731],[-1.555552,52.372057],[-1.556761,52.372464],[-1.554901,52.373696],[-1.554993,52.374424],[-1.559302,52.375599],[-1.562635,52.376891],[-1.563146,52.37919],[-1.564818,52.382295],[-1.567799,52.384778],[-1.570538,52.384213],[-1.568776,52.38367],[-1.569562,52.382898],[-1.571374,52.383365],[-1.573018,52.382537],[-1.576708,52.382788],[-1.575789,52.384576],[-1.580116,52.384894],[-1.587997,52.38611],[-1.593944,52.387894],[-1.594717,52.387458],[-1.597693,52.388043],[-1.601068,52.389299]]]},"properties":{"LAD22CD":"E07000222","LAD22NM":"Warwick","BNG_E":428484,"BNG_N":267113,"LONG":-1.58369,"LAT":52.30142,"GlobalID":"a78aa6c5-f26b-45ce-9414-8cd35069a0a6"},"id":220}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.279146,50.830863],[-0.280255,50.831191],[-0.28132,50.830449],[-0.279326,50.830043],[-0.279146,50.830863]]],[[[-0.216046,50.827585],[-0.215295,50.830369],[-0.216585,50.830682],[-0.216666,50.832962],[-0.217571,50.832917],[-0.222906,50.839089],[-0.225966,50.842931],[-0.227645,50.844406],[-0.228404,50.845634],[-0.229325,50.845734],[-0.230616,50.848318],[-0.234334,50.85111],[-0.235383,50.852412],[-0.236382,50.857522],[-0.238994,50.858722],[-0.239753,50.861952],[-0.241505,50.862876],[-0.244717,50.863435],[-0.244971,50.863809],[-0.248473,50.864137],[-0.249608,50.867991],[-0.248978,50.870648],[-0.249722,50.871024],[-0.255303,50.871551],[-0.258935,50.871207],[-0.256436,50.865873],[-0.256579,50.862335],[-0.259219,50.862155],[-0.26222,50.862347],[-0.269491,50.863716],[-0.280045,50.863249],[-0.28795,50.864152],[-0.290389,50.863845],[-0.290936,50.862741],[-0.292506,50.862895],[-0.296358,50.864243],[-0.299461,50.864197],[-0.299879,50.864671],[-0.301107,50.864205],[-0.301792,50.861618],[-0.30102,50.860793],[-0.298585,50.861135],[-0.296005,50.860514],[-0.29418,50.859714],[-0.292667,50.858463],[-0.293047,50.855999],[-0.295028,50.854814],[-0.295348,50.854071],[-0.293149,50.853324],[-0.290337,50.851014],[-0.29029,50.849836],[-0.292136,50.848996],[-0.292181,50.848064],[-0.288964,50.847159],[-0.287351,50.846199],[-0.287075,50.843902],[-0.287253,50.841168],[-0.287664,50.840551],[-0.281696,50.834042],[-0.279223,50.83216],[-0.275937,50.831368],[-0.271039,50.831923],[-0.26944,50.831726],[-0.25798,50.831689],[-0.252087,50.831108],[-0.248701,50.830011],[-0.247228,50.830669],[-0.241606,50.83077],[-0.238155,50.830501],[-0.237987,50.829419],[-0.243952,50.829182],[-0.245003,50.82823],[-0.24164,50.828064],[-0.240819,50.828355],[-0.237944,50.827981],[-0.237164,50.82874],[-0.230232,50.82877],[-0.216046,50.827585]]],[[[-0.364598,50.874526],[-0.366474,50.874738],[-0.369808,50.873198],[-0.37126,50.871663],[-0.371182,50.869786],[-0.368172,50.866522],[-0.366763,50.864025],[-0.366753,50.860904],[-0.367453,50.860532],[-0.368048,50.858308],[-0.367119,50.856244],[-0.368996,50.855282],[-0.367234,50.851808],[-0.36686,50.849033],[-0.365415,50.846926],[-0.362094,50.84689],[-0.360248,50.846246],[-0.358521,50.843534],[-0.359475,50.842445],[-0.359366,50.839677],[-0.359732,50.838237],[-0.359565,50.83665],[-0.358837,50.834189],[-0.357117,50.834325],[-0.358343,50.830639],[-0.354172,50.829592],[-0.353195,50.829042],[-0.355708,50.827699],[-0.354305,50.826821],[-0.353262,50.825236],[-0.351794,50.824902],[-0.350741,50.822872],[-0.349426,50.822549],[-0.344179,50.823356],[-0.342873,50.82231],[-0.340755,50.822376],[-0.338736,50.822064],[-0.334184,50.819073],[-0.332652,50.81742],[-0.328124,50.818891],[-0.323879,50.819501],[-0.309271,50.821786],[-0.303199,50.823203],[-0.296963,50.823724],[-0.294047,50.824449],[-0.291469,50.824622],[-0.290564,50.825065],[-0.276189,50.826831],[-0.252147,50.825895],[-0.249529,50.826093],[-0.248483,50.826563],[-0.249001,50.827916],[-0.250017,50.828024],[-0.251107,50.829147],[-0.251399,50.830313],[-0.254444,50.830126],[-0.256827,50.830799],[-0.266891,50.831035],[-0.267063,50.83065],[-0.269753,50.830667],[-0.272223,50.829909],[-0.274204,50.829869],[-0.275355,50.829434],[-0.283943,50.82912],[-0.284597,50.829687],[-0.280312,50.831363],[-0.284324,50.833601],[-0.285343,50.835555],[-0.287403,50.837333],[-0.289242,50.839532],[-0.289494,50.841407],[-0.288843,50.84376],[-0.28815,50.844195],[-0.288385,50.845833],[-0.292346,50.847208],[-0.293041,50.848948],[-0.291195,50.850896],[-0.293163,50.852729],[-0.295584,50.853601],[-0.29612,50.854244],[-0.295387,50.855208],[-0.293387,50.856364],[-0.293208,50.858579],[-0.296178,50.860243],[-0.298682,50.860868],[-0.301298,50.860544],[-0.302198,50.861305],[-0.301501,50.864423],[-0.299248,50.86514],[-0.29869,50.86626],[-0.302859,50.866134],[-0.307598,50.866505],[-0.309516,50.865247],[-0.313593,50.86453],[-0.316107,50.864669],[-0.320446,50.865426],[-0.325465,50.863828],[-0.331583,50.863063],[-0.339726,50.86254],[-0.343787,50.862933],[-0.344551,50.863962],[-0.349121,50.864441],[-0.349116,50.86596],[-0.351944,50.867369],[-0.352984,50.86828],[-0.355838,50.86955],[-0.359872,50.872543],[-0.364598,50.874526]]]]},"properties":{"LAD22CD":"E07000223","LAD22NM":"Adur","BNG_E":518076,"BNG_N":106472,"LONG":-0.32417,"LAT":50.84572,"GlobalID":"e6d8c4eb-b138-4405-a083-3fb328f4ddf0"},"id":221}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.526057,50.867036],[-0.52591,50.868579],[-0.527907,50.870619],[-0.532306,50.873415],[-0.536927,50.87374],[-0.535726,50.872408],[-0.536051,50.867641],[-0.537272,50.866395],[-0.539449,50.865908],[-0.532915,50.864522],[-0.531346,50.864456],[-0.526057,50.867036]]],[[[-0.54854,50.892936],[-0.547256,50.892195],[-0.547195,50.889985],[-0.545426,50.889483],[-0.54417,50.890018],[-0.542965,50.891216],[-0.54313,50.893601],[-0.543989,50.894812],[-0.54331,50.895279],[-0.543436,50.896723],[-0.543413,50.896391],[-0.546325,50.895375],[-0.54854,50.892936]]],[[[-0.364598,50.874526],[-0.363528,50.876234],[-0.364029,50.876848],[-0.366226,50.876898],[-0.366096,50.879276],[-0.366707,50.88222],[-0.366516,50.884474],[-0.363896,50.88848],[-0.371757,50.887277],[-0.380064,50.885593],[-0.38187,50.887021],[-0.385495,50.888734],[-0.386634,50.887275],[-0.388512,50.889479],[-0.388719,50.892346],[-0.392716,50.893373],[-0.394295,50.892038],[-0.395956,50.891907],[-0.40146,50.886885],[-0.405964,50.884174],[-0.407866,50.881889],[-0.40862,50.879904],[-0.412087,50.880656],[-0.413161,50.879588],[-0.412301,50.88531],[-0.413153,50.885687],[-0.417016,50.886155],[-0.420337,50.886113],[-0.422155,50.886714],[-0.424868,50.886331],[-0.426532,50.887854],[-0.427378,50.891037],[-0.427374,50.893169],[-0.431077,50.892791],[-0.431053,50.889516],[-0.434147,50.885372],[-0.437024,50.8825],[-0.439984,50.877527],[-0.446853,50.880481],[-0.447934,50.879724],[-0.449526,50.882179],[-0.452484,50.890874],[-0.452412,50.892752],[-0.451503,50.895467],[-0.455358,50.896881],[-0.457308,50.895755],[-0.459136,50.89362],[-0.461274,50.892149],[-0.462174,50.890621],[-0.461904,50.889165],[-0.464921,50.883971],[-0.471548,50.884999],[-0.473235,50.884781],[-0.476588,50.885056],[-0.47528,50.894344],[-0.48202,50.894382],[-0.479629,50.896343],[-0.480265,50.898444],[-0.482842,50.899097],[-0.483831,50.898095],[-0.486709,50.89743],[-0.486168,50.896929],[-0.487975,50.895941],[-0.489285,50.894784],[-0.493039,50.892401],[-0.49242,50.891321],[-0.490765,50.885275],[-0.493117,50.885263],[-0.494441,50.890853],[-0.498517,50.898221],[-0.499918,50.899883],[-0.502973,50.896957],[-0.514927,50.888943],[-0.51928,50.889814],[-0.520736,50.887652],[-0.523768,50.885959],[-0.523967,50.883913],[-0.524792,50.882984],[-0.527174,50.882968],[-0.529275,50.881418],[-0.530759,50.881747],[-0.532825,50.881151],[-0.534028,50.88244],[-0.535619,50.885806],[-0.538179,50.886223],[-0.541408,50.885218],[-0.545388,50.884917],[-0.547139,50.884514],[-0.547402,50.883574],[-0.543938,50.881407],[-0.54251,50.881941],[-0.540095,50.881683],[-0.539134,50.879917],[-0.539862,50.87873],[-0.541522,50.877757],[-0.540461,50.874493],[-0.535779,50.873867],[-0.533482,50.873907],[-0.531201,50.87331],[-0.529368,50.871674],[-0.527264,50.870807],[-0.525717,50.868979],[-0.525376,50.867353],[-0.530676,50.864299],[-0.53256,50.864173],[-0.542083,50.86625],[-0.544215,50.866073],[-0.546337,50.860332],[-0.545431,50.859721],[-0.540978,50.859224],[-0.538992,50.8582],[-0.538687,50.857328],[-0.539782,50.855827],[-0.540895,50.853292],[-0.541896,50.852598],[-0.546795,50.851078],[-0.548911,50.851469],[-0.550237,50.853263],[-0.551712,50.853662],[-0.559205,50.851924],[-0.56052,50.851287],[-0.562506,50.84879],[-0.565221,50.843705],[-0.564928,50.841796],[-0.564159,50.841272],[-0.564572,50.84007],[-0.563409,50.839099],[-0.563174,50.837803],[-0.564613,50.836972],[-0.569389,50.836198],[-0.570617,50.834597],[-0.570384,50.832997],[-0.56761,50.831972],[-0.566373,50.830362],[-0.566552,50.829088],[-0.568065,50.828541],[-0.572438,50.828521],[-0.575658,50.826731],[-0.575624,50.825864],[-0.572822,50.823924],[-0.572368,50.822268],[-0.573571,50.820916],[-0.573664,50.819707],[-0.572057,50.81717],[-0.57109,50.816391],[-0.569835,50.816533],[-0.567699,50.818443],[-0.565994,50.819324],[-0.563801,50.819417],[-0.56193,50.818929],[-0.560899,50.818223],[-0.560182,50.813216],[-0.559377,50.812307],[-0.556163,50.811395],[-0.552706,50.811606],[-0.549527,50.810434],[-0.547263,50.808626],[-0.544731,50.807591],[-0.543415,50.805899],[-0.541734,50.801912],[-0.538129,50.802193],[-0.522745,50.802089],[-0.507375,50.802475],[-0.495178,50.802518],[-0.485602,50.80285],[-0.474959,50.802837],[-0.456063,50.802045],[-0.450706,50.802649],[-0.444407,50.80237],[-0.440273,50.802684],[-0.439505,50.803077],[-0.435982,50.803139],[-0.436606,50.804518],[-0.43836,50.810632],[-0.439267,50.812485],[-0.440348,50.812833],[-0.441937,50.817329],[-0.443659,50.82146],[-0.445111,50.827493],[-0.4437,50.831578],[-0.443588,50.833078],[-0.445935,50.834767],[-0.446532,50.836326],[-0.443345,50.837192],[-0.446007,50.839854],[-0.438544,50.840676],[-0.431873,50.839703],[-0.425275,50.839852],[-0.422297,50.840679],[-0.422019,50.845143],[-0.423022,50.848115],[-0.421958,50.850854],[-0.422883,50.851768],[-0.424148,50.854855],[-0.424298,50.856926],[-0.422794,50.860235],[-0.420048,50.860083],[-0.416071,50.856343],[-0.415586,50.855181],[-0.411154,50.85383],[-0.40928,50.852264],[-0.407281,50.852831],[-0.406897,50.853583],[-0.403324,50.856485],[-0.396923,50.858085],[-0.395346,50.859106],[-0.392457,50.859655],[-0.388237,50.859531],[-0.382786,50.862708],[-0.381267,50.863224],[-0.378845,50.86263],[-0.377859,50.861465],[-0.375125,50.861449],[-0.371256,50.860773],[-0.367453,50.860532],[-0.366753,50.860904],[-0.366763,50.864025],[-0.368172,50.866522],[-0.371182,50.869786],[-0.37126,50.871663],[-0.369808,50.873198],[-0.366474,50.874738],[-0.364598,50.874526]]],[[[-0.553535,50.901686],[-0.555677,50.902695],[-0.558888,50.901777],[-0.558557,50.901013],[-0.559734,50.900365],[-0.569808,50.899709],[-0.575076,50.899843],[-0.579574,50.899254],[-0.586264,50.901104],[-0.588519,50.901302],[-0.590391,50.901844],[-0.59319,50.901724],[-0.593698,50.902803],[-0.60496,50.901469],[-0.607291,50.902646],[-0.608119,50.902378],[-0.617385,50.905562],[-0.623169,50.90463],[-0.625122,50.905],[-0.628101,50.904772],[-0.630465,50.905196],[-0.633653,50.904843],[-0.635704,50.903447],[-0.637106,50.901783],[-0.638529,50.902459],[-0.641706,50.900936],[-0.644581,50.900764],[-0.646727,50.900028],[-0.649202,50.900012],[-0.648292,50.902359],[-0.648823,50.904004],[-0.648577,50.905388],[-0.651978,50.905861],[-0.654945,50.905679],[-0.654713,50.904889],[-0.655231,50.903136],[-0.657767,50.902408],[-0.658203,50.887538],[-0.649794,50.885784],[-0.650341,50.883542],[-0.652791,50.881443],[-0.652744,50.880863],[-0.654013,50.879343],[-0.652577,50.878896],[-0.652121,50.875997],[-0.652575,50.874652],[-0.652242,50.871739],[-0.650375,50.866901],[-0.65692,50.86627],[-0.662335,50.865277],[-0.671742,50.864851],[-0.681125,50.863285],[-0.681423,50.861851],[-0.686095,50.854724],[-0.689362,50.851988],[-0.690939,50.849217],[-0.690577,50.847387],[-0.691042,50.846345],[-0.693665,50.846518],[-0.69417,50.844805],[-0.692305,50.844039],[-0.69273,50.84308],[-0.692897,50.83993],[-0.692716,50.835883],[-0.690215,50.832889],[-0.688045,50.828698],[-0.687702,50.825585],[-0.686219,50.822782],[-0.686708,50.819536],[-0.689018,50.81693],[-0.689897,50.812815],[-0.700926,50.813351],[-0.703997,50.812174],[-0.706057,50.811619],[-0.707324,50.810896],[-0.707998,50.809785],[-0.709889,50.808171],[-0.711102,50.807977],[-0.713301,50.808301],[-0.718557,50.807329],[-0.718376,50.806375],[-0.719419,50.80524],[-0.722318,50.807333],[-0.723936,50.807855],[-0.730036,50.809182],[-0.732061,50.808878],[-0.734741,50.809443],[-0.735846,50.807944],[-0.735461,50.807028],[-0.735341,50.804165],[-0.733911,50.803078],[-0.733973,50.802234],[-0.736134,50.79866],[-0.736719,50.798231],[-0.73926,50.79764],[-0.73741,50.796159],[-0.73562,50.79529],[-0.734706,50.793723],[-0.737922,50.793663],[-0.738925,50.792976],[-0.738511,50.792004],[-0.740576,50.79145],[-0.745198,50.791526],[-0.749283,50.79064],[-0.755092,50.790685],[-0.754978,50.786339],[-0.753838,50.785195],[-0.751022,50.785138],[-0.751694,50.783323],[-0.750104,50.782596],[-0.749957,50.781404],[-0.751139,50.781448],[-0.756042,50.783764],[-0.757672,50.781228],[-0.759775,50.780514],[-0.758839,50.779225],[-0.758992,50.776864],[-0.761269,50.777769],[-0.763633,50.777679],[-0.763168,50.776162],[-0.764519,50.775444],[-0.764786,50.773589],[-0.763114,50.772915],[-0.762373,50.773026],[-0.755431,50.772011],[-0.755689,50.770746],[-0.757383,50.769806],[-0.756723,50.767366],[-0.755505,50.766043],[-0.752568,50.764381],[-0.750364,50.764041],[-0.750449,50.762569],[-0.750526,50.762409],[-0.750569,50.761677],[-0.753108,50.760546],[-0.754292,50.758949],[-0.752568,50.75805],[-0.750497,50.758501],[-0.746985,50.760858],[-0.745754,50.762677],[-0.743623,50.764083],[-0.740852,50.765185],[-0.736003,50.768086],[-0.728372,50.771084],[-0.716502,50.774028],[-0.702568,50.777098],[-0.702168,50.777446],[-0.693936,50.778838],[-0.682491,50.779831],[-0.676224,50.781175],[-0.671815,50.781707],[-0.655805,50.784447],[-0.654927,50.785449],[-0.653209,50.786143],[-0.648073,50.786979],[-0.642272,50.787363],[-0.629719,50.787886],[-0.627406,50.788526],[-0.619291,50.789977],[-0.617087,50.790641],[-0.611808,50.79095],[-0.610529,50.790587],[-0.607044,50.790847],[-0.605449,50.790557],[-0.603942,50.791049],[-0.602462,50.790774],[-0.6012,50.791248],[-0.59955,50.791221],[-0.597493,50.792071],[-0.594946,50.792418],[-0.593363,50.792256],[-0.592544,50.792865],[-0.591024,50.792865],[-0.589516,50.794085],[-0.587955,50.794561],[-0.580978,50.795183],[-0.577246,50.79608],[-0.576063,50.796777],[-0.569334,50.798358],[-0.560307,50.799724],[-0.550219,50.800282],[-0.54361,50.800034],[-0.541992,50.800248],[-0.543546,50.803701],[-0.544681,50.804314],[-0.544568,50.80562],[-0.546469,50.807424],[-0.548467,50.807658],[-0.548336,50.808258],[-0.549645,50.809334],[-0.551873,50.810523],[-0.553618,50.810828],[-0.556834,50.810528],[-0.560093,50.81201],[-0.560816,50.812633],[-0.561582,50.81772],[-0.562938,50.818754],[-0.564689,50.818931],[-0.566187,50.81854],[-0.568709,50.816523],[-0.570161,50.815847],[-0.571566,50.815915],[-0.572801,50.816732],[-0.574468,50.820308],[-0.573229,50.822292],[-0.573237,50.823168],[-0.576373,50.825609],[-0.576009,50.827201],[-0.573496,50.828696],[-0.571064,50.8292],[-0.568102,50.829055],[-0.567023,50.829481],[-0.567478,50.831031],[-0.57072,50.832599],[-0.571363,50.834378],[-0.570755,50.835835],[-0.568386,50.836923],[-0.565235,50.83721],[-0.56368,50.837896],[-0.565764,50.840243],[-0.565434,50.84216],[-0.565716,50.844032],[-0.563057,50.848818],[-0.561301,50.851111],[-0.560299,50.851859],[-0.551985,50.854019],[-0.549292,50.853222],[-0.548931,50.851974],[-0.547655,50.851401],[-0.546076,50.851561],[-0.541577,50.853208],[-0.539315,50.857326],[-0.539454,50.858041],[-0.54081,50.8588],[-0.546334,50.859682],[-0.547068,50.860236],[-0.546736,50.861585],[-0.544867,50.866316],[-0.542853,50.866737],[-0.53976,50.866231],[-0.538594,50.866304],[-0.536894,50.867087],[-0.53649,50.867921],[-0.53633,50.872723],[-0.537763,50.873751],[-0.540878,50.874278],[-0.542008,50.876897],[-0.54189,50.878064],[-0.539595,50.879811],[-0.539805,50.881021],[-0.540895,50.881634],[-0.542323,50.881705],[-0.545243,50.880493],[-0.548765,50.879965],[-0.555447,50.881762],[-0.558954,50.884454],[-0.561265,50.887752],[-0.560225,50.889231],[-0.559103,50.890028],[-0.549001,50.892916],[-0.546929,50.895267],[-0.544787,50.89638],[-0.543653,50.897434],[-0.543779,50.898018],[-0.546205,50.899376],[-0.547256,50.899428],[-0.547734,50.899347],[-0.550549,50.898799],[-0.553535,50.901686]]]]},"properties":{"LAD22CD":"E07000224","LAD22NM":"Arun","BNG_E":495144,"BNG_N":105723,"LONG":-0.64999,"LAT":50.84321,"GlobalID":"4384cc82-4bbc-43c0-ac18-9b27d1e964fd"},"id":222}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.820302,50.746506],[-0.820015,50.747417],[-0.820835,50.749182],[-0.82197,50.749984],[-0.823097,50.749532],[-0.822015,50.748331],[-0.821115,50.746453],[-0.820302,50.746506]]],[[[-0.758474,50.760049],[-0.760989,50.759521],[-0.75944,50.758083],[-0.757929,50.758362],[-0.756147,50.757762],[-0.755425,50.758354],[-0.758641,50.75969],[-0.758474,50.760049]]],[[[-0.754292,50.758949],[-0.753108,50.760546],[-0.754304,50.760051],[-0.754292,50.758949]]],[[[-0.75128,50.761865],[-0.751375,50.762353],[-0.754289,50.763202],[-0.754437,50.761949],[-0.751896,50.761421],[-0.75128,50.761865]]],[[[-0.775668,50.763455],[-0.780554,50.76363],[-0.778173,50.762792],[-0.775668,50.763455]]],[[[-0.542575,50.913367],[-0.536401,50.913374],[-0.536286,50.913793],[-0.537486,50.915865],[-0.539195,50.915504],[-0.540267,50.914131],[-0.542575,50.913367]]],[[[-0.523278,50.981974],[-0.524532,50.982338],[-0.525158,50.984264],[-0.524918,50.986874],[-0.523676,50.987588],[-0.523643,50.988774],[-0.522136,50.988653],[-0.521191,50.990312],[-0.519246,50.990129],[-0.517964,50.990806],[-0.516639,50.989594],[-0.51505,50.990175],[-0.510362,50.990169],[-0.509877,50.989853],[-0.507361,50.990394],[-0.506722,50.992989],[-0.508054,50.994042],[-0.507723,50.995062],[-0.508806,50.996094],[-0.511102,50.996308],[-0.515215,50.996135],[-0.517182,50.997235],[-0.517646,50.998553],[-0.51631,51.000747],[-0.514745,51.00141],[-0.513902,51.002416],[-0.512537,51.002414],[-0.510914,51.003913],[-0.511493,51.00515],[-0.51078,51.005829],[-0.51104,51.00673],[-0.510537,51.007943],[-0.509252,51.008141],[-0.507472,51.007633],[-0.506617,51.006753],[-0.504368,51.00628],[-0.503243,51.009041],[-0.501097,51.00971],[-0.499102,51.009098],[-0.498901,51.010357],[-0.496896,51.011133],[-0.495947,51.010372],[-0.492442,51.011169],[-0.489472,51.009563],[-0.486221,51.010106],[-0.48429,51.010872],[-0.483495,51.011622],[-0.484305,51.012173],[-0.484445,51.013464],[-0.485638,51.014123],[-0.486972,51.015851],[-0.485348,51.016477],[-0.484161,51.018196],[-0.481597,51.018384],[-0.480603,51.01947],[-0.47865,51.019392],[-0.477059,51.019856],[-0.476844,51.020606],[-0.477606,51.023057],[-0.476508,51.023487],[-0.476671,51.024721],[-0.475146,51.025465],[-0.476568,51.02666],[-0.475464,51.027018],[-0.474953,51.028074],[-0.47613,51.028458],[-0.474868,51.029829],[-0.476279,51.030768],[-0.476131,51.03247],[-0.474046,51.033028],[-0.474434,51.035659],[-0.475901,51.036295],[-0.475379,51.038091],[-0.476061,51.038768],[-0.478987,51.038024],[-0.481164,51.038128],[-0.48277,51.038643],[-0.48382,51.040143],[-0.483527,51.041673],[-0.481395,51.042677],[-0.479126,51.044756],[-0.478735,51.04696],[-0.479215,51.04816],[-0.477604,51.049997],[-0.478125,51.050607],[-0.476499,51.051867],[-0.477121,51.054377],[-0.475653,51.056408],[-0.476364,51.057356],[-0.479614,51.057062],[-0.481983,51.055896],[-0.483804,51.056483],[-0.483559,51.05734],[-0.484287,51.058663],[-0.483182,51.058832],[-0.484288,51.060666],[-0.483449,51.061406],[-0.484536,51.062468],[-0.48353,51.063711],[-0.48137,51.064508],[-0.480605,51.063735],[-0.479365,51.063589],[-0.478755,51.067312],[-0.48013,51.067837],[-0.484269,51.068616],[-0.486478,51.070197],[-0.48738,51.078887],[-0.487147,51.080007],[-0.489041,51.084965],[-0.488724,51.086593],[-0.490061,51.089705],[-0.491268,51.091163],[-0.492127,51.094484],[-0.495496,51.09339],[-0.496262,51.092233],[-0.500184,51.090292],[-0.501641,51.090244],[-0.503022,51.088548],[-0.505377,51.088262],[-0.50694,51.088759],[-0.508441,51.08871],[-0.511621,51.08979],[-0.513309,51.089466],[-0.515231,51.090588],[-0.520414,51.090887],[-0.52092,51.091379],[-0.523171,51.091607],[-0.524138,51.089902],[-0.526946,51.089606],[-0.527288,51.090927],[-0.526388,51.091867],[-0.528821,51.092019],[-0.532423,51.093171],[-0.534979,51.093579],[-0.535595,51.093065],[-0.536582,51.090729],[-0.535855,51.089779],[-0.536129,51.088776],[-0.534488,51.08694],[-0.532619,51.086091],[-0.535124,51.084096],[-0.535523,51.083176],[-0.537318,51.08355],[-0.539485,51.08227],[-0.541252,51.082244],[-0.541342,51.08321],[-0.547641,51.083483],[-0.549991,51.083252],[-0.553113,51.084043],[-0.556135,51.084338],[-0.558474,51.082999],[-0.563057,51.083696],[-0.56651,51.084383],[-0.569757,51.085748],[-0.577593,51.086654],[-0.588016,51.084317],[-0.590522,51.082056],[-0.594542,51.08013],[-0.600644,51.079669],[-0.604022,51.080127],[-0.607536,51.082385],[-0.610699,51.083002],[-0.615194,51.084715],[-0.621124,51.088194],[-0.624664,51.088044],[-0.629082,51.089004],[-0.631419,51.088253],[-0.633735,51.086616],[-0.637839,51.085346],[-0.642642,51.084471],[-0.645936,51.08439],[-0.648009,51.083428],[-0.65023,51.083568],[-0.654455,51.083386],[-0.657379,51.08231],[-0.664092,51.081725],[-0.66587,51.080675],[-0.669061,51.077393],[-0.672543,51.077228],[-0.675572,51.07645],[-0.678808,51.076343],[-0.682473,51.07533],[-0.687425,51.075514],[-0.690567,51.073847],[-0.694351,51.072984],[-0.695933,51.072324],[-0.698629,51.073057],[-0.698127,51.073775],[-0.700518,51.0745],[-0.7019,51.076051],[-0.704496,51.076904],[-0.706683,51.078761],[-0.708839,51.078519],[-0.710573,51.077914],[-0.712836,51.077937],[-0.71477,51.077415],[-0.718625,51.077865],[-0.720024,51.078701],[-0.722314,51.079351],[-0.722831,51.077792],[-0.72529,51.078166],[-0.729875,51.080062],[-0.730608,51.080847],[-0.730932,51.082437],[-0.732382,51.083714],[-0.735107,51.083842],[-0.737795,51.085139],[-0.740921,51.08515],[-0.74393,51.085507],[-0.74574,51.084477],[-0.746861,51.085148],[-0.749168,51.085891],[-0.753481,51.086456],[-0.755104,51.085284],[-0.757548,51.085052],[-0.759166,51.085499],[-0.761555,51.085537],[-0.764087,51.085145],[-0.765235,51.084393],[-0.766601,51.084628],[-0.77221,51.08256],[-0.77434,51.081528],[-0.775818,51.081195],[-0.777287,51.079792],[-0.780787,51.079375],[-0.782278,51.077281],[-0.782703,51.07593],[-0.7844,51.075097],[-0.785614,51.073166],[-0.78809,51.07202],[-0.793019,51.067634],[-0.79547,51.064911],[-0.797763,51.063556],[-0.800211,51.063317],[-0.802757,51.06398],[-0.805833,51.064118],[-0.80825,51.063414],[-0.811549,51.062975],[-0.813255,51.065581],[-0.814505,51.06668],[-0.815523,51.065465],[-0.815567,51.062397],[-0.817294,51.061228],[-0.819912,51.060686],[-0.822965,51.061896],[-0.826369,51.061325],[-0.827332,51.062229],[-0.829887,51.063571],[-0.829682,51.067158],[-0.829143,51.067769],[-0.831419,51.068513],[-0.837291,51.069203],[-0.838432,51.068507],[-0.842848,51.066887],[-0.846037,51.064208],[-0.850113,51.059336],[-0.849537,51.056429],[-0.850214,51.051829],[-0.850786,51.051044],[-0.851216,51.047605],[-0.852811,51.044843],[-0.860679,51.041884],[-0.86703,51.038505],[-0.87854,51.029567],[-0.882657,51.026862],[-0.88382,51.026505],[-0.885886,51.0266],[-0.887878,51.026232],[-0.89196,51.024751],[-0.893085,51.023795],[-0.89528,51.023379],[-0.897061,51.021924],[-0.898508,51.017667],[-0.897088,51.016319],[-0.897807,51.010315],[-0.89685,51.008883],[-0.894286,51.006942],[-0.893412,51.005351],[-0.893347,51.002743],[-0.895835,51.000892],[-0.896885,51.001431],[-0.897968,51.001073],[-0.89971,51.001277],[-0.901793,51.000208],[-0.901917,50.999157],[-0.903947,50.998578],[-0.905622,50.996817],[-0.906007,50.995736],[-0.907925,50.994092],[-0.907576,50.990628],[-0.911739,50.987141],[-0.912391,50.985726],[-0.913661,50.984703],[-0.915154,50.981114],[-0.916542,50.980301],[-0.917692,50.978664],[-0.915228,50.971444],[-0.916421,50.97001],[-0.916978,50.968605],[-0.92074,50.964557],[-0.924855,50.962356],[-0.929274,50.958347],[-0.929544,50.956064],[-0.928082,50.954804],[-0.926521,50.952525],[-0.928944,50.952349],[-0.930193,50.948151],[-0.931847,50.94558],[-0.937793,50.944448],[-0.94211,50.942894],[-0.94114,50.942453],[-0.937307,50.942117],[-0.935319,50.941103],[-0.934409,50.938992],[-0.931185,50.935283],[-0.931013,50.934464],[-0.929,50.932574],[-0.928135,50.931104],[-0.927639,50.927839],[-0.924013,50.924199],[-0.92598,50.923076],[-0.93624,50.919789],[-0.938125,50.919446],[-0.940245,50.918054],[-0.941801,50.915728],[-0.942837,50.913247],[-0.945834,50.910824],[-0.946795,50.909512],[-0.948645,50.905009],[-0.949554,50.90498],[-0.95037,50.901309],[-0.950189,50.89846],[-0.951982,50.897002],[-0.955606,50.891119],[-0.957582,50.89063],[-0.951449,50.886352],[-0.947104,50.884106],[-0.945331,50.880339],[-0.941227,50.87763],[-0.939503,50.875468],[-0.939471,50.874245],[-0.938608,50.873721],[-0.938727,50.872567],[-0.936938,50.870068],[-0.93507,50.868936],[-0.931932,50.868424],[-0.929367,50.866768],[-0.929223,50.86611],[-0.927041,50.865028],[-0.92645,50.864092],[-0.928124,50.862675],[-0.928248,50.86153],[-0.929792,50.858528],[-0.93123,50.857233],[-0.932033,50.855668],[-0.933446,50.854793],[-0.932762,50.85391],[-0.932829,50.852066],[-0.933727,50.851839],[-0.934427,50.849672],[-0.933566,50.847556],[-0.932388,50.846745],[-0.932239,50.845608],[-0.931854,50.843961],[-0.930908,50.843841],[-0.930852,50.842682],[-0.929811,50.841847],[-0.931716,50.841564],[-0.93157,50.840561],[-0.938726,50.830578],[-0.939588,50.830117],[-0.941448,50.827444],[-0.941064,50.826372],[-0.941775,50.824733],[-0.94244,50.824298],[-0.940081,50.823176],[-0.940129,50.821934],[-0.941637,50.821085],[-0.939094,50.819093],[-0.938542,50.81782],[-0.939649,50.816841],[-0.942302,50.816314],[-0.942627,50.815381],[-0.933303,50.813928],[-0.927529,50.811721],[-0.922349,50.808201],[-0.920892,50.806021],[-0.91737,50.804811],[-0.915092,50.802737],[-0.911924,50.801197],[-0.911453,50.800194],[-0.909358,50.798796],[-0.907704,50.798517],[-0.907021,50.799334],[-0.906606,50.801247],[-0.909177,50.801159],[-0.910018,50.801702],[-0.909314,50.802926],[-0.910465,50.80596],[-0.909915,50.806527],[-0.909169,50.809565],[-0.909625,50.812093],[-0.909292,50.813679],[-0.90753,50.816754],[-0.908761,50.819812],[-0.909714,50.821262],[-0.908069,50.8225],[-0.909872,50.823373],[-0.910458,50.824156],[-0.913979,50.831302],[-0.912913,50.832178],[-0.913748,50.834093],[-0.916534,50.836247],[-0.915924,50.83833],[-0.913765,50.83924],[-0.912823,50.83999],[-0.909879,50.839523],[-0.90879,50.837756],[-0.907096,50.838238],[-0.904301,50.838328],[-0.898479,50.838044],[-0.897858,50.838907],[-0.89456,50.838382],[-0.893629,50.837741],[-0.892545,50.834757],[-0.892973,50.832766],[-0.895511,50.832569],[-0.896486,50.83192],[-0.895357,50.830672],[-0.895447,50.828215],[-0.894286,50.825889],[-0.892674,50.824821],[-0.891849,50.82341],[-0.892172,50.818431],[-0.890405,50.816505],[-0.886667,50.814459],[-0.882253,50.812686],[-0.877374,50.811842],[-0.875907,50.812907],[-0.874969,50.814526],[-0.874218,50.814367],[-0.87488,50.816891],[-0.874484,50.818079],[-0.869868,50.822954],[-0.870473,50.824244],[-0.867872,50.825267],[-0.867228,50.826052],[-0.865362,50.827171],[-0.866181,50.827859],[-0.867061,50.829646],[-0.86673,50.83017],[-0.870109,50.831807],[-0.871885,50.831475],[-0.872355,50.832166],[-0.869905,50.833082],[-0.868572,50.834169],[-0.870144,50.837006],[-0.869084,50.839611],[-0.869468,50.840018],[-0.867938,50.841081],[-0.866716,50.838547],[-0.861727,50.837888],[-0.862098,50.838841],[-0.859522,50.839867],[-0.858413,50.839677],[-0.858411,50.838649],[-0.85985,50.837728],[-0.859166,50.836393],[-0.859442,50.835391],[-0.860718,50.835389],[-0.860843,50.832227],[-0.861283,50.829142],[-0.860749,50.828267],[-0.858945,50.827969],[-0.858053,50.828419],[-0.853901,50.829288],[-0.851907,50.828789],[-0.851188,50.827646],[-0.854653,50.8272],[-0.855655,50.826712],[-0.858036,50.823593],[-0.86293,50.823543],[-0.865238,50.821283],[-0.86594,50.820049],[-0.86728,50.819658],[-0.869908,50.817747],[-0.869868,50.816526],[-0.868484,50.814499],[-0.868155,50.812897],[-0.864999,50.811568],[-0.864215,50.812281],[-0.862498,50.812306],[-0.857882,50.810736],[-0.856052,50.81169],[-0.853438,50.81161],[-0.852743,50.81195],[-0.851252,50.810801],[-0.853664,50.810796],[-0.855592,50.810275],[-0.856143,50.808882],[-0.857094,50.807989],[-0.856219,50.807082],[-0.854191,50.807108],[-0.853266,50.806445],[-0.851897,50.806571],[-0.849155,50.805401],[-0.842722,50.804634],[-0.841317,50.806433],[-0.837048,50.809126],[-0.83434,50.810042],[-0.834461,50.810371],[-0.830159,50.810927],[-0.829422,50.812164],[-0.830373,50.812401],[-0.826242,50.813933],[-0.822948,50.814219],[-0.819761,50.81686],[-0.820865,50.82045],[-0.819953,50.822173],[-0.81639,50.824956],[-0.816168,50.827128],[-0.81806,50.827826],[-0.817064,50.829555],[-0.812489,50.832144],[-0.812724,50.833567],[-0.808861,50.830609],[-0.810838,50.829653],[-0.810298,50.828279],[-0.809594,50.828087],[-0.810051,50.826537],[-0.811463,50.825985],[-0.810915,50.824252],[-0.812691,50.821977],[-0.815392,50.820563],[-0.815874,50.819429],[-0.814976,50.818664],[-0.814125,50.816421],[-0.814409,50.814261],[-0.816734,50.813097],[-0.818356,50.811496],[-0.819863,50.81114],[-0.821712,50.810215],[-0.824697,50.810212],[-0.825417,50.807865],[-0.824909,50.805843],[-0.825464,50.804397],[-0.828018,50.804461],[-0.830247,50.803884],[-0.831531,50.80454],[-0.833466,50.804881],[-0.835051,50.804659],[-0.836306,50.804023],[-0.838834,50.801275],[-0.840928,50.800449],[-0.844403,50.799659],[-0.844929,50.800054],[-0.849502,50.800802],[-0.850569,50.80155],[-0.855691,50.802991],[-0.86054,50.802878],[-0.861753,50.804503],[-0.864693,50.805674],[-0.865973,50.807264],[-0.867099,50.807348],[-0.868519,50.808283],[-0.870584,50.808301],[-0.873517,50.807661],[-0.877927,50.807655],[-0.881518,50.805932],[-0.883877,50.803233],[-0.885099,50.803682],[-0.887583,50.802771],[-0.888583,50.801296],[-0.890828,50.799811],[-0.89166,50.797972],[-0.892628,50.793273],[-0.894475,50.790223],[-0.89802,50.789225],[-0.899695,50.789879],[-0.901413,50.789935],[-0.904271,50.785909],[-0.904062,50.783636],[-0.905158,50.78208],[-0.909113,50.781961],[-0.912503,50.780897],[-0.915317,50.780679],[-0.91406,50.783739],[-0.912461,50.784949],[-0.910472,50.785559],[-0.910154,50.786519],[-0.908784,50.786404],[-0.908045,50.787035],[-0.911019,50.788712],[-0.912478,50.789822],[-0.915506,50.788901],[-0.916016,50.787275],[-0.915787,50.781897],[-0.916666,50.780984],[-0.915664,50.77989],[-0.911683,50.777076],[-0.906839,50.774322],[-0.898448,50.771742],[-0.886087,50.768715],[-0.863919,50.762061],[-0.841449,50.752792],[-0.823544,50.743763],[-0.821895,50.744305],[-0.825957,50.745305],[-0.82519,50.745864],[-0.821818,50.746735],[-0.823818,50.74751],[-0.823718,50.748781],[-0.825979,50.750071],[-0.830804,50.749648],[-0.831745,50.750521],[-0.828248,50.750106],[-0.827149,50.75119],[-0.825836,50.751701],[-0.826171,50.752683],[-0.824849,50.75416],[-0.822706,50.754354],[-0.821455,50.756173],[-0.823239,50.757527],[-0.825443,50.758322],[-0.82396,50.760121],[-0.82203,50.759599],[-0.821065,50.758246],[-0.8199,50.757801],[-0.819206,50.755181],[-0.823938,50.75217],[-0.823648,50.751413],[-0.819948,50.74925],[-0.819218,50.747841],[-0.81942,50.746904],[-0.818558,50.744818],[-0.81695,50.743767],[-0.815102,50.743403],[-0.813471,50.742695],[-0.812491,50.743226],[-0.810842,50.742874],[-0.809137,50.743354],[-0.807502,50.745503],[-0.80915,50.745632],[-0.808032,50.747574],[-0.806689,50.746411],[-0.807781,50.744501],[-0.807078,50.7414],[-0.807517,50.741024],[-0.811513,50.740063],[-0.814721,50.740289],[-0.816809,50.741537],[-0.818569,50.741334],[-0.819413,50.740564],[-0.817698,50.739533],[-0.817939,50.738679],[-0.816301,50.738196],[-0.810819,50.734468],[-0.810083,50.733295],[-0.807844,50.732905],[-0.804809,50.73096],[-0.804496,50.730289],[-0.799849,50.726547],[-0.793648,50.723437],[-0.789089,50.722444],[-0.786426,50.722439],[-0.78334,50.72563],[-0.779715,50.727795],[-0.77567,50.7305],[-0.771853,50.734077],[-0.769551,50.736963],[-0.766877,50.739177],[-0.76589,50.74083],[-0.762803,50.74335],[-0.762448,50.74781],[-0.76014,50.750385],[-0.756238,50.75337],[-0.749958,50.756688],[-0.751056,50.757261],[-0.754309,50.757113],[-0.755347,50.755559],[-0.758274,50.753487],[-0.759751,50.753153],[-0.761754,50.751183],[-0.763542,50.753849],[-0.763354,50.754731],[-0.764154,50.755431],[-0.767042,50.759275],[-0.769113,50.760386],[-0.770581,50.760546],[-0.771965,50.761673],[-0.774842,50.762077],[-0.776728,50.762649],[-0.77733,50.761798],[-0.779307,50.762113],[-0.78391,50.76023],[-0.785666,50.760143],[-0.780422,50.765406],[-0.77795,50.766068],[-0.780048,50.767946],[-0.779891,50.76887],[-0.777507,50.768191],[-0.776246,50.767327],[-0.77336,50.767427],[-0.773988,50.768311],[-0.770988,50.768894],[-0.770975,50.767643],[-0.768756,50.768303],[-0.768297,50.767746],[-0.766526,50.76732],[-0.765219,50.768107],[-0.764141,50.770122],[-0.765419,50.770229],[-0.767441,50.771443],[-0.766858,50.772757],[-0.764838,50.772372],[-0.763114,50.772915],[-0.764786,50.773589],[-0.764519,50.775444],[-0.763168,50.776162],[-0.763633,50.777679],[-0.761269,50.777769],[-0.758992,50.776864],[-0.758839,50.779225],[-0.759775,50.780514],[-0.757672,50.781228],[-0.756042,50.783764],[-0.751139,50.781448],[-0.749957,50.781404],[-0.750104,50.782596],[-0.751694,50.783323],[-0.751022,50.785138],[-0.753838,50.785195],[-0.754978,50.786339],[-0.755092,50.790685],[-0.749283,50.79064],[-0.745198,50.791526],[-0.740576,50.79145],[-0.738511,50.792004],[-0.738925,50.792976],[-0.737922,50.793663],[-0.734706,50.793723],[-0.73562,50.79529],[-0.73741,50.796159],[-0.73926,50.79764],[-0.736719,50.798231],[-0.736134,50.79866],[-0.733973,50.802234],[-0.733911,50.803078],[-0.735341,50.804165],[-0.735461,50.807028],[-0.735846,50.807944],[-0.734741,50.809443],[-0.732061,50.808878],[-0.730036,50.809182],[-0.723936,50.807855],[-0.722318,50.807333],[-0.719419,50.80524],[-0.718376,50.806375],[-0.718557,50.807329],[-0.713301,50.808301],[-0.711102,50.807977],[-0.709889,50.808171],[-0.707998,50.809785],[-0.707324,50.810896],[-0.706057,50.811619],[-0.703997,50.812174],[-0.700926,50.813351],[-0.689897,50.812815],[-0.689018,50.81693],[-0.686708,50.819536],[-0.686219,50.822782],[-0.687702,50.825585],[-0.688045,50.828698],[-0.690215,50.832889],[-0.692716,50.835883],[-0.692897,50.83993],[-0.69273,50.84308],[-0.692305,50.844039],[-0.69417,50.844805],[-0.693665,50.846518],[-0.691042,50.846345],[-0.690577,50.847387],[-0.690939,50.849217],[-0.689362,50.851988],[-0.686095,50.854724],[-0.681423,50.861851],[-0.681125,50.863285],[-0.671742,50.864851],[-0.662335,50.865277],[-0.65692,50.86627],[-0.650375,50.866901],[-0.652242,50.871739],[-0.652575,50.874652],[-0.652121,50.875997],[-0.652577,50.878896],[-0.654013,50.879343],[-0.652744,50.880863],[-0.652791,50.881443],[-0.650341,50.883542],[-0.649794,50.885784],[-0.658203,50.887538],[-0.657767,50.902408],[-0.655231,50.903136],[-0.654713,50.904889],[-0.654945,50.905679],[-0.651978,50.905861],[-0.648577,50.905388],[-0.648823,50.904004],[-0.648292,50.902359],[-0.649202,50.900012],[-0.646727,50.900028],[-0.644581,50.900764],[-0.641706,50.900936],[-0.638529,50.902459],[-0.637106,50.901783],[-0.635704,50.903447],[-0.633653,50.904843],[-0.630465,50.905196],[-0.628101,50.904772],[-0.625122,50.905],[-0.623169,50.90463],[-0.617385,50.905562],[-0.608119,50.902378],[-0.607291,50.902646],[-0.60496,50.901469],[-0.593698,50.902803],[-0.59319,50.901724],[-0.590391,50.901844],[-0.588519,50.901302],[-0.586264,50.901104],[-0.579574,50.899254],[-0.575076,50.899843],[-0.569808,50.899709],[-0.559734,50.900365],[-0.558557,50.901013],[-0.558888,50.901777],[-0.555677,50.902695],[-0.553535,50.901686],[-0.555446,50.903274],[-0.55609,50.905258],[-0.553341,50.908743],[-0.551986,50.912822],[-0.5509,50.913641],[-0.550213,50.914089],[-0.54831,50.914182],[-0.544885,50.914125],[-0.544523,50.914041],[-0.542729,50.913622],[-0.540592,50.914318],[-0.539669,50.915628],[-0.53728,50.916382],[-0.537191,50.916489],[-0.538415,50.917399],[-0.543143,50.918967],[-0.545274,50.920412],[-0.546916,50.920896],[-0.550321,50.922607],[-0.552309,50.92297],[-0.552504,50.923563],[-0.556067,50.923477],[-0.556633,50.924863],[-0.555985,50.925829],[-0.557621,50.929067],[-0.561441,50.929899],[-0.564923,50.931186],[-0.568367,50.934249],[-0.56902,50.935784],[-0.568789,50.942347],[-0.565784,50.945809],[-0.563677,50.949353],[-0.561469,50.95001],[-0.559526,50.951469],[-0.557385,50.951906],[-0.551475,50.952565],[-0.550368,50.953733],[-0.546893,50.954487],[-0.544932,50.952998],[-0.545199,50.952012],[-0.544408,50.951578],[-0.545333,50.950334],[-0.544075,50.948026],[-0.542213,50.948575],[-0.540189,50.948104],[-0.5377,50.948214],[-0.5375,50.948885],[-0.535108,50.949344],[-0.53375,50.950245],[-0.53262,50.953154],[-0.532509,50.953307],[-0.53217,50.953772],[-0.534165,50.953954],[-0.535668,50.95497],[-0.535831,50.955713],[-0.534977,50.956384],[-0.535425,50.957185],[-0.532605,50.958612],[-0.530939,50.960193],[-0.52968,50.960186],[-0.527658,50.961468],[-0.527709,50.963273],[-0.526904,50.963891],[-0.530482,50.966238],[-0.530965,50.967145],[-0.528504,50.971897],[-0.528331,50.973325],[-0.526689,50.974016],[-0.527176,50.974524],[-0.529117,50.97505],[-0.529835,50.977468],[-0.529343,50.978892],[-0.528688,50.979146],[-0.525094,50.980458],[-0.523278,50.981974]]]]},"properties":{"LAD22CD":"E07000225","LAD22NM":"Chichester","BNG_E":490285,"BNG_N":116600,"LONG":-0.7163,"LAT":50.94177,"GlobalID":"60affffa-8e7a-48f1-8db2-1e723e7b539b"},"id":223}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.140463,51.160047],[-0.146233,51.160278],[-0.153143,51.159844],[-0.154514,51.16004],[-0.156423,51.159597],[-0.160893,51.159823],[-0.164166,51.16052],[-0.166935,51.161592],[-0.176706,51.16685],[-0.177617,51.1673],[-0.179157,51.167084],[-0.185298,51.16482],[-0.186771,51.163852],[-0.186272,51.162122],[-0.186866,51.161666],[-0.188885,51.162413],[-0.19051,51.16202],[-0.194927,51.162447],[-0.195922,51.162302],[-0.20411,51.155711],[-0.206518,51.155164],[-0.212142,51.155455],[-0.211189,51.152527],[-0.211575,51.150413],[-0.214307,51.150303],[-0.214235,51.148464],[-0.215884,51.148236],[-0.216982,51.14936],[-0.219312,51.14919],[-0.222881,51.148099],[-0.226631,51.148176],[-0.229041,51.145657],[-0.230148,51.145955],[-0.236273,51.145879],[-0.236067,51.14671],[-0.238698,51.14681],[-0.243253,51.145559],[-0.244195,51.144406],[-0.246592,51.145935],[-0.248521,51.144069],[-0.25009,51.144256],[-0.251506,51.143589],[-0.255168,51.144141],[-0.255496,51.14051],[-0.254613,51.13905],[-0.252122,51.139815],[-0.249029,51.141755],[-0.240824,51.143114],[-0.237544,51.142424],[-0.22627,51.142457],[-0.219292,51.141862],[-0.216661,51.14203],[-0.214347,51.141444],[-0.206389,51.140817],[-0.202997,51.13958],[-0.200274,51.139092],[-0.203304,51.137154],[-0.203535,51.13615],[-0.20522,51.135313],[-0.206395,51.135524],[-0.207557,51.134129],[-0.209731,51.133693],[-0.210952,51.133008],[-0.211702,51.131345],[-0.213236,51.130874],[-0.213827,51.129921],[-0.216286,51.129442],[-0.217118,51.128815],[-0.219254,51.128836],[-0.219154,51.126946],[-0.221462,51.125526],[-0.22202,51.124212],[-0.221094,51.121666],[-0.221279,51.119863],[-0.222122,51.119342],[-0.222343,51.115752],[-0.223087,51.115171],[-0.226335,51.115446],[-0.226928,51.113305],[-0.231268,51.112709],[-0.234004,51.113121],[-0.235873,51.111802],[-0.236892,51.109441],[-0.235999,51.108707],[-0.231425,51.107806],[-0.231598,51.10683],[-0.230874,51.104681],[-0.231543,51.103926],[-0.230539,51.102199],[-0.231279,51.09904],[-0.232491,51.097351],[-0.222369,51.098726],[-0.219372,51.099566],[-0.219812,51.097667],[-0.219031,51.097395],[-0.21769,51.091934],[-0.214407,51.092751],[-0.214872,51.091329],[-0.211809,51.091933],[-0.211303,51.089157],[-0.211978,51.086584],[-0.21191,51.086239],[-0.207772,51.086344],[-0.201052,51.084885],[-0.1964,51.084806],[-0.195581,51.086147],[-0.190987,51.087742],[-0.174044,51.089287],[-0.172542,51.089896],[-0.168833,51.090546],[-0.16448,51.092004],[-0.162128,51.092444],[-0.16087,51.093201],[-0.153943,51.096485],[-0.150616,51.099251],[-0.147884,51.100814],[-0.139509,51.108051],[-0.137367,51.111545],[-0.137016,51.112999],[-0.136809,51.116838],[-0.137785,51.119072],[-0.13794,51.12058],[-0.138755,51.120555],[-0.140874,51.12403],[-0.141427,51.127716],[-0.141053,51.130062],[-0.139469,51.132478],[-0.140038,51.13424],[-0.139878,51.136175],[-0.137572,51.14216],[-0.136331,51.146383],[-0.13503,51.155981],[-0.133136,51.159229],[-0.135984,51.159738],[-0.140463,51.160047]]]},"properties":{"LAD22CD":"E07000226","LAD22NM":"Crawley","BNG_E":526390,"BNG_N":137581,"LONG":-0.19533,"LAT":51.12357,"GlobalID":"25b1165b-a29e-4a1f-81b1-4046ad1cf3b4"},"id":224}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.5509,50.913641],[-0.54831,50.914182],[-0.550213,50.914089],[-0.5509,50.913641]]],[[[-0.545274,50.920412],[-0.545155,50.921322],[-0.547829,50.923764],[-0.548487,50.925366],[-0.54766,50.926642],[-0.54736,50.929601],[-0.54308,50.930494],[-0.541281,50.931605],[-0.539575,50.931546],[-0.534694,50.933154],[-0.533737,50.934034],[-0.534112,50.936682],[-0.529024,50.938452],[-0.527434,50.938114],[-0.525447,50.938407],[-0.524722,50.936376],[-0.522712,50.935454],[-0.518763,50.935845],[-0.512652,50.935713],[-0.511764,50.936404],[-0.511679,50.937509],[-0.513092,50.939666],[-0.513011,50.94082],[-0.513771,50.942061],[-0.512318,50.943196],[-0.509676,50.943863],[-0.508402,50.943193],[-0.506479,50.943378],[-0.502838,50.946162],[-0.503384,50.947915],[-0.502457,50.94907],[-0.503233,50.950069],[-0.502253,50.951721],[-0.503389,50.953062],[-0.505528,50.953784],[-0.512516,50.95407],[-0.516092,50.955437],[-0.51945,50.956239],[-0.520535,50.955921],[-0.524006,50.953439],[-0.527087,50.952545],[-0.528708,50.951756],[-0.530171,50.952845],[-0.53262,50.953154],[-0.53375,50.950245],[-0.535108,50.949344],[-0.5375,50.948885],[-0.5377,50.948214],[-0.540189,50.948104],[-0.542213,50.948575],[-0.544075,50.948026],[-0.545333,50.950334],[-0.544408,50.951578],[-0.545199,50.952012],[-0.544932,50.952998],[-0.546893,50.954487],[-0.550368,50.953733],[-0.551475,50.952565],[-0.557385,50.951906],[-0.559526,50.951469],[-0.561469,50.95001],[-0.563677,50.949353],[-0.565784,50.945809],[-0.568789,50.942347],[-0.56902,50.935784],[-0.568367,50.934249],[-0.564923,50.931186],[-0.561441,50.929899],[-0.557621,50.929067],[-0.555985,50.925829],[-0.556633,50.924863],[-0.556067,50.923477],[-0.552504,50.923563],[-0.552309,50.92297],[-0.550321,50.922607],[-0.546916,50.920896],[-0.545274,50.920412]]],[[[-0.502877,50.953645],[-0.504355,50.954274],[-0.503798,50.954925],[-0.504651,50.955916],[-0.509301,50.956441],[-0.516734,50.955737],[-0.512818,50.954251],[-0.505737,50.953918],[-0.503165,50.953137],[-0.502877,50.953645]]],[[[-0.211978,51.086584],[-0.211303,51.089157],[-0.211809,51.091933],[-0.214872,51.091329],[-0.214407,51.092751],[-0.21769,51.091934],[-0.219031,51.097395],[-0.219812,51.097667],[-0.219372,51.099566],[-0.222369,51.098726],[-0.232491,51.097351],[-0.231279,51.09904],[-0.230539,51.102199],[-0.231543,51.103926],[-0.230874,51.104681],[-0.231598,51.10683],[-0.231425,51.107806],[-0.235999,51.108707],[-0.236892,51.109441],[-0.235873,51.111802],[-0.234004,51.113121],[-0.231268,51.112709],[-0.226928,51.113305],[-0.226335,51.115446],[-0.223087,51.115171],[-0.222343,51.115752],[-0.222122,51.119342],[-0.221279,51.119863],[-0.221094,51.121666],[-0.22202,51.124212],[-0.221462,51.125526],[-0.219154,51.126946],[-0.219254,51.128836],[-0.217118,51.128815],[-0.216286,51.129442],[-0.213827,51.129921],[-0.213236,51.130874],[-0.211702,51.131345],[-0.210952,51.133008],[-0.209731,51.133693],[-0.207557,51.134129],[-0.206395,51.135524],[-0.20522,51.135313],[-0.203535,51.13615],[-0.203304,51.137154],[-0.200274,51.139092],[-0.202997,51.13958],[-0.206389,51.140817],[-0.214347,51.141444],[-0.216661,51.14203],[-0.219292,51.141862],[-0.22627,51.142457],[-0.237544,51.142424],[-0.240824,51.143114],[-0.249029,51.141755],[-0.252122,51.139815],[-0.254613,51.13905],[-0.260503,51.138086],[-0.264671,51.135662],[-0.265929,51.133914],[-0.26719,51.132909],[-0.275291,51.130309],[-0.279397,51.129974],[-0.282162,51.130131],[-0.284642,51.130637],[-0.28639,51.130492],[-0.287814,51.129853],[-0.289316,51.128139],[-0.291598,51.12691],[-0.300347,51.124736],[-0.305594,51.124448],[-0.308867,51.125048],[-0.309627,51.124541],[-0.312552,51.124019],[-0.318216,51.124349],[-0.32061,51.125115],[-0.326427,51.125815],[-0.329683,51.124263],[-0.330569,51.123054],[-0.331619,51.122465],[-0.33625,51.120974],[-0.342051,51.119905],[-0.344329,51.118926],[-0.34662,51.118956],[-0.350495,51.118273],[-0.352704,51.118293],[-0.353963,51.118753],[-0.355326,51.120047],[-0.358034,51.12103],[-0.359665,51.120573],[-0.35924,51.119778],[-0.360452,51.119191],[-0.36363,51.118789],[-0.36518,51.117978],[-0.36734,51.117436],[-0.370141,51.11741],[-0.375955,51.116709],[-0.379352,51.117108],[-0.383101,51.116994],[-0.384631,51.114741],[-0.385699,51.114962],[-0.390345,51.11473],[-0.391525,51.116511],[-0.395501,51.11388],[-0.396504,51.112176],[-0.398094,51.112342],[-0.399651,51.111609],[-0.399162,51.110103],[-0.400923,51.109694],[-0.400219,51.10842],[-0.401932,51.107794],[-0.406848,51.107324],[-0.409482,51.107527],[-0.411179,51.106777],[-0.419204,51.105205],[-0.420959,51.104416],[-0.421782,51.103482],[-0.426532,51.102488],[-0.428277,51.101387],[-0.433049,51.100693],[-0.435549,51.099689],[-0.437244,51.098207],[-0.441214,51.09774],[-0.442504,51.098128],[-0.442343,51.099092],[-0.438827,51.100297],[-0.441059,51.101736],[-0.443794,51.101083],[-0.44485,51.099593],[-0.446352,51.10059],[-0.449501,51.100557],[-0.45202,51.099535],[-0.454262,51.100358],[-0.456775,51.100566],[-0.460914,51.099052],[-0.470321,51.098483],[-0.474816,51.096954],[-0.479009,51.097316],[-0.48299,51.096186],[-0.48852,51.097341],[-0.489212,51.096178],[-0.490356,51.096039],[-0.490875,51.094425],[-0.492127,51.094484],[-0.491268,51.091163],[-0.490061,51.089705],[-0.488724,51.086593],[-0.489041,51.084965],[-0.487147,51.080007],[-0.48738,51.078887],[-0.486478,51.070197],[-0.484269,51.068616],[-0.48013,51.067837],[-0.478755,51.067312],[-0.479365,51.063589],[-0.480605,51.063735],[-0.48137,51.064508],[-0.48353,51.063711],[-0.484536,51.062468],[-0.483449,51.061406],[-0.484288,51.060666],[-0.483182,51.058832],[-0.484287,51.058663],[-0.483559,51.05734],[-0.483804,51.056483],[-0.481983,51.055896],[-0.479614,51.057062],[-0.476364,51.057356],[-0.475653,51.056408],[-0.477121,51.054377],[-0.476499,51.051867],[-0.478125,51.050607],[-0.477604,51.049997],[-0.479215,51.04816],[-0.478735,51.04696],[-0.479126,51.044756],[-0.481395,51.042677],[-0.483527,51.041673],[-0.48382,51.040143],[-0.48277,51.038643],[-0.481164,51.038128],[-0.478987,51.038024],[-0.476061,51.038768],[-0.475379,51.038091],[-0.475901,51.036295],[-0.474434,51.035659],[-0.474046,51.033028],[-0.476131,51.03247],[-0.476279,51.030768],[-0.474868,51.029829],[-0.47613,51.028458],[-0.474953,51.028074],[-0.475464,51.027018],[-0.476568,51.02666],[-0.475146,51.025465],[-0.476671,51.024721],[-0.476508,51.023487],[-0.477606,51.023057],[-0.476844,51.020606],[-0.477059,51.019856],[-0.47865,51.019392],[-0.480603,51.01947],[-0.481597,51.018384],[-0.484161,51.018196],[-0.485348,51.016477],[-0.486972,51.015851],[-0.485638,51.014123],[-0.484445,51.013464],[-0.484305,51.012173],[-0.483495,51.011622],[-0.48429,51.010872],[-0.486221,51.010106],[-0.489472,51.009563],[-0.492442,51.011169],[-0.495947,51.010372],[-0.496896,51.011133],[-0.498901,51.010357],[-0.499102,51.009098],[-0.501097,51.00971],[-0.503243,51.009041],[-0.504368,51.00628],[-0.506617,51.006753],[-0.507472,51.007633],[-0.509252,51.008141],[-0.510537,51.007943],[-0.51104,51.00673],[-0.51078,51.005829],[-0.511493,51.00515],[-0.510914,51.003913],[-0.512537,51.002414],[-0.513902,51.002416],[-0.514745,51.00141],[-0.51631,51.000747],[-0.517646,50.998553],[-0.517182,50.997235],[-0.515215,50.996135],[-0.511102,50.996308],[-0.508806,50.996094],[-0.507723,50.995062],[-0.508054,50.994042],[-0.506722,50.992989],[-0.507361,50.990394],[-0.509877,50.989853],[-0.510362,50.990169],[-0.51505,50.990175],[-0.516639,50.989594],[-0.517964,50.990806],[-0.519246,50.990129],[-0.521191,50.990312],[-0.522136,50.988653],[-0.523643,50.988774],[-0.523676,50.987588],[-0.524918,50.986874],[-0.525158,50.984264],[-0.524532,50.982338],[-0.523278,50.981974],[-0.524824,50.980505],[-0.528094,50.979125],[-0.529538,50.978154],[-0.529686,50.977696],[-0.528808,50.975033],[-0.527681,50.974709],[-0.526855,50.974478],[-0.526585,50.974062],[-0.52699,50.973689],[-0.528146,50.973327],[-0.528537,50.971604],[-0.529025,50.970596],[-0.530542,50.9671],[-0.53011,50.966335],[-0.528457,50.965521],[-0.526751,50.964152],[-0.526726,50.963742],[-0.52755,50.963161],[-0.52741,50.961439],[-0.529496,50.960023],[-0.531305,50.959599],[-0.532456,50.958312],[-0.534948,50.957196],[-0.534708,50.956481],[-0.535144,50.955291],[-0.534005,50.954254],[-0.532144,50.954114],[-0.531786,50.953379],[-0.530056,50.953162],[-0.529015,50.952563],[-0.526651,50.953247],[-0.524213,50.953548],[-0.52087,50.955917],[-0.519065,50.956375],[-0.517129,50.955954],[-0.509046,50.956592],[-0.504793,50.956225],[-0.503478,50.95497],[-0.504109,50.954327],[-0.502543,50.953692],[-0.502791,50.95268],[-0.50183,50.951776],[-0.502717,50.950163],[-0.502073,50.949133],[-0.503,50.947806],[-0.502392,50.946701],[-0.502728,50.945684],[-0.506227,50.94316],[-0.508534,50.942967],[-0.510129,50.943492],[-0.512116,50.943058],[-0.513527,50.941917],[-0.512652,50.940845],[-0.512629,50.939714],[-0.511413,50.938147],[-0.511121,50.936423],[-0.513437,50.935312],[-0.518335,50.935576],[-0.522934,50.935271],[-0.524906,50.936095],[-0.52602,50.938093],[-0.52779,50.937801],[-0.529141,50.938182],[-0.53343,50.936243],[-0.533357,50.934114],[-0.534502,50.93302],[-0.54304,50.930112],[-0.546189,50.9297],[-0.547173,50.929305],[-0.546359,50.927391],[-0.547825,50.925247],[-0.54746,50.923917],[-0.544872,50.921499],[-0.544711,50.92021],[-0.542243,50.918931],[-0.538092,50.917679],[-0.536546,50.916579],[-0.537486,50.915865],[-0.536286,50.913793],[-0.536401,50.913374],[-0.542575,50.913367],[-0.545811,50.914106],[-0.548955,50.914026],[-0.551156,50.91329],[-0.551983,50.911692],[-0.552482,50.908916],[-0.555728,50.905055],[-0.55503,50.903391],[-0.554041,50.902919],[-0.550393,50.899053],[-0.547149,50.899686],[-0.545629,50.899485],[-0.543492,50.89817],[-0.543436,50.896723],[-0.54331,50.895279],[-0.543989,50.894812],[-0.54313,50.893601],[-0.542965,50.891216],[-0.54417,50.890018],[-0.545426,50.889483],[-0.547195,50.889985],[-0.547256,50.892195],[-0.54854,50.892936],[-0.550517,50.892118],[-0.558827,50.889878],[-0.559761,50.889212],[-0.560056,50.888898],[-0.560794,50.88774],[-0.558639,50.88457],[-0.555256,50.88202],[-0.548864,50.880243],[-0.545791,50.880643],[-0.543938,50.881407],[-0.547402,50.883574],[-0.547139,50.884514],[-0.545388,50.884917],[-0.541408,50.885218],[-0.538179,50.886223],[-0.535619,50.885806],[-0.534028,50.88244],[-0.532825,50.881151],[-0.530759,50.881747],[-0.529275,50.881418],[-0.527174,50.882968],[-0.524792,50.882984],[-0.523967,50.883913],[-0.523768,50.885959],[-0.520736,50.887652],[-0.51928,50.889814],[-0.514927,50.888943],[-0.502973,50.896957],[-0.499918,50.899883],[-0.498517,50.898221],[-0.494441,50.890853],[-0.493117,50.885263],[-0.490765,50.885275],[-0.49242,50.891321],[-0.493039,50.892401],[-0.489285,50.894784],[-0.487975,50.895941],[-0.486168,50.896929],[-0.486709,50.89743],[-0.483831,50.898095],[-0.482842,50.899097],[-0.480265,50.898444],[-0.479629,50.896343],[-0.48202,50.894382],[-0.47528,50.894344],[-0.476588,50.885056],[-0.473235,50.884781],[-0.471548,50.884999],[-0.464921,50.883971],[-0.461904,50.889165],[-0.462174,50.890621],[-0.461274,50.892149],[-0.459136,50.89362],[-0.457308,50.895755],[-0.455358,50.896881],[-0.451503,50.895467],[-0.452412,50.892752],[-0.452484,50.890874],[-0.449526,50.882179],[-0.447934,50.879724],[-0.446853,50.880481],[-0.439984,50.877527],[-0.437024,50.8825],[-0.434147,50.885372],[-0.431053,50.889516],[-0.431077,50.892791],[-0.427374,50.893169],[-0.427378,50.891037],[-0.426532,50.887854],[-0.424868,50.886331],[-0.422155,50.886714],[-0.420337,50.886113],[-0.417016,50.886155],[-0.413153,50.885687],[-0.412301,50.88531],[-0.413161,50.879588],[-0.412087,50.880656],[-0.40862,50.879904],[-0.407866,50.881889],[-0.405964,50.884174],[-0.40146,50.886885],[-0.395956,50.891907],[-0.394295,50.892038],[-0.392716,50.893373],[-0.388719,50.892346],[-0.388512,50.889479],[-0.386634,50.887275],[-0.385495,50.888734],[-0.38187,50.887021],[-0.380064,50.885593],[-0.371757,50.887277],[-0.363896,50.88848],[-0.366516,50.884474],[-0.366707,50.88222],[-0.366096,50.879276],[-0.366226,50.876898],[-0.364029,50.876848],[-0.363528,50.876234],[-0.364598,50.874526],[-0.359872,50.872543],[-0.355838,50.86955],[-0.352984,50.86828],[-0.351944,50.867369],[-0.349116,50.86596],[-0.349121,50.864441],[-0.344551,50.863962],[-0.343787,50.862933],[-0.339726,50.86254],[-0.331583,50.863063],[-0.325465,50.863828],[-0.320446,50.865426],[-0.316107,50.864669],[-0.313593,50.86453],[-0.309516,50.865247],[-0.307598,50.866505],[-0.302859,50.866134],[-0.29869,50.86626],[-0.298431,50.865531],[-0.299879,50.864671],[-0.299461,50.864197],[-0.296358,50.864243],[-0.292506,50.862895],[-0.290936,50.862741],[-0.290389,50.863845],[-0.28795,50.864152],[-0.280045,50.863249],[-0.269491,50.863716],[-0.26222,50.862347],[-0.259219,50.862155],[-0.256579,50.862335],[-0.256436,50.865873],[-0.258935,50.871207],[-0.255303,50.871551],[-0.249722,50.871024],[-0.248978,50.870648],[-0.249608,50.867991],[-0.248473,50.864137],[-0.244971,50.863809],[-0.240576,50.865202],[-0.239798,50.866048],[-0.239238,50.867886],[-0.242406,50.868317],[-0.244342,50.869022],[-0.24866,50.873071],[-0.248404,50.874962],[-0.246864,50.876289],[-0.245552,50.876284],[-0.245061,50.880612],[-0.243791,50.884889],[-0.243837,50.888692],[-0.243339,50.891722],[-0.243945,50.895771],[-0.243235,50.899261],[-0.24381,50.901467],[-0.243526,50.902117],[-0.241641,50.902157],[-0.244155,50.907363],[-0.241857,50.907714],[-0.239584,50.907689],[-0.23613,50.908207],[-0.234013,50.909868],[-0.233484,50.911293],[-0.22628,50.91166],[-0.224462,50.911391],[-0.223784,50.911784],[-0.226818,50.912684],[-0.226879,50.914204],[-0.225777,50.916003],[-0.227711,50.918241],[-0.229233,50.918799],[-0.228542,50.920904],[-0.228661,50.922156],[-0.22937,50.922652],[-0.229818,50.925302],[-0.229353,50.925967],[-0.230072,50.926887],[-0.22999,50.927888],[-0.231505,50.928942],[-0.230262,50.930015],[-0.230271,50.932023],[-0.229489,50.933492],[-0.230121,50.935341],[-0.231617,50.935386],[-0.231695,50.936325],[-0.228255,50.938566],[-0.227643,50.942374],[-0.224456,50.942946],[-0.225058,50.945306],[-0.224812,50.948465],[-0.229861,50.94861],[-0.238747,50.950049],[-0.240233,50.951269],[-0.240897,50.952853],[-0.240972,50.957443],[-0.240451,50.958983],[-0.241143,50.961651],[-0.240836,50.963718],[-0.241507,50.96785],[-0.241076,50.971805],[-0.238249,50.976682],[-0.233934,50.981684],[-0.23279,50.983602],[-0.229756,50.986421],[-0.229547,50.987005],[-0.230964,50.989178],[-0.236139,50.987174],[-0.24182,50.986755],[-0.241997,50.990726],[-0.241071,50.991503],[-0.239325,50.991973],[-0.239168,50.992684],[-0.236261,50.992774],[-0.236691,50.996308],[-0.234996,50.998676],[-0.234827,50.99957],[-0.235004,51.004255],[-0.235745,51.005728],[-0.234688,51.00628],[-0.232661,51.008367],[-0.232762,51.009849],[-0.232015,51.010847],[-0.238041,51.012062],[-0.245137,51.012261],[-0.245498,51.014132],[-0.244585,51.015706],[-0.243048,51.01691],[-0.240992,51.016969],[-0.239951,51.017408],[-0.238519,51.019467],[-0.236945,51.020258],[-0.236649,51.021084],[-0.23786,51.022173],[-0.242179,51.023272],[-0.242633,51.02377],[-0.249082,51.024947],[-0.247947,51.027965],[-0.24806,51.031042],[-0.247086,51.033428],[-0.243948,51.034576],[-0.240757,51.035066],[-0.23931,51.034534],[-0.235833,51.035795],[-0.236097,51.036247],[-0.229237,51.037908],[-0.228127,51.037717],[-0.228225,51.035323],[-0.226523,51.034617],[-0.225306,51.037241],[-0.224058,51.037935],[-0.222438,51.037634],[-0.219146,51.038133],[-0.221589,51.0404],[-0.221744,51.041082],[-0.226758,51.041568],[-0.225996,51.044078],[-0.22356,51.04563],[-0.222327,51.047579],[-0.221216,51.047985],[-0.219405,51.051782],[-0.223172,51.05726],[-0.222628,51.060211],[-0.221991,51.060743],[-0.220142,51.060987],[-0.218625,51.061889],[-0.217789,51.063618],[-0.215494,51.064152],[-0.212214,51.064115],[-0.21182,51.064453],[-0.21126,51.067854],[-0.21297,51.071955],[-0.212305,51.072201],[-0.212566,51.075361],[-0.211515,51.075149],[-0.210865,51.078727],[-0.211487,51.082831],[-0.212734,51.084907],[-0.211978,51.086584]]]]},"properties":{"LAD22CD":"E07000227","LAD22NM":"Horsham","BNG_E":513674,"BNG_N":123840,"LONG":-0.38126,"LAT":51.00272,"GlobalID":"c16f0000-1bc6-4263-986d-4a7fcac95af7"},"id":225}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.027361,51.13985],[0.023289,51.139055],[0.02098,51.139299],[0.019918,51.139951],[0.016932,51.139106],[0.015634,51.13925],[0.011629,51.138927],[0.007036,51.138972],[0.00107,51.139584],[-0.004325,51.137965],[-0.007652,51.13868],[-0.009897,51.138223],[-0.010196,51.138751],[-0.01442,51.139687],[-0.016694,51.141015],[-0.020351,51.141013],[-0.020056,51.139289],[-0.021227,51.139385],[-0.024603,51.138581],[-0.03123,51.138666],[-0.033241,51.139261],[-0.037382,51.139211],[-0.041464,51.13959],[-0.044556,51.139387],[-0.053017,51.137839],[-0.056326,51.136765],[-0.063204,51.141258],[-0.06708,51.141107],[-0.073963,51.141778],[-0.076313,51.142296],[-0.081066,51.142204],[-0.082613,51.142638],[-0.085389,51.142751],[-0.093691,51.138426],[-0.109169,51.139367],[-0.111644,51.140375],[-0.114965,51.140702],[-0.117252,51.141606],[-0.117829,51.140575],[-0.120982,51.140731],[-0.124521,51.140317],[-0.125133,51.140892],[-0.127561,51.140341],[-0.127402,51.139536],[-0.131025,51.139483],[-0.131743,51.141491],[-0.137572,51.14216],[-0.139878,51.136175],[-0.140038,51.13424],[-0.139469,51.132478],[-0.141053,51.130062],[-0.141427,51.127716],[-0.140874,51.12403],[-0.138755,51.120555],[-0.13794,51.12058],[-0.137785,51.119072],[-0.136809,51.116838],[-0.137016,51.112999],[-0.137367,51.111545],[-0.139509,51.108051],[-0.147884,51.100814],[-0.150616,51.099251],[-0.153943,51.096485],[-0.16087,51.093201],[-0.162128,51.092444],[-0.16448,51.092004],[-0.168833,51.090546],[-0.172542,51.089896],[-0.174044,51.089287],[-0.190987,51.087742],[-0.195581,51.086147],[-0.1964,51.084806],[-0.201052,51.084885],[-0.207772,51.086344],[-0.21191,51.086239],[-0.211978,51.086584],[-0.212734,51.084907],[-0.211487,51.082831],[-0.210865,51.078727],[-0.211515,51.075149],[-0.212566,51.075361],[-0.212305,51.072201],[-0.21297,51.071955],[-0.21126,51.067854],[-0.21182,51.064453],[-0.212214,51.064115],[-0.215494,51.064152],[-0.217789,51.063618],[-0.218625,51.061889],[-0.220142,51.060987],[-0.221991,51.060743],[-0.222628,51.060211],[-0.223172,51.05726],[-0.219405,51.051782],[-0.221216,51.047985],[-0.222327,51.047579],[-0.22356,51.04563],[-0.225996,51.044078],[-0.226758,51.041568],[-0.221744,51.041082],[-0.221589,51.0404],[-0.219146,51.038133],[-0.222438,51.037634],[-0.224058,51.037935],[-0.225306,51.037241],[-0.226523,51.034617],[-0.228225,51.035323],[-0.228127,51.037717],[-0.229237,51.037908],[-0.236097,51.036247],[-0.235833,51.035795],[-0.23931,51.034534],[-0.240757,51.035066],[-0.243948,51.034576],[-0.247086,51.033428],[-0.24806,51.031042],[-0.247947,51.027965],[-0.249082,51.024947],[-0.242633,51.02377],[-0.242179,51.023272],[-0.23786,51.022173],[-0.236649,51.021084],[-0.236945,51.020258],[-0.238519,51.019467],[-0.239951,51.017408],[-0.240992,51.016969],[-0.243048,51.01691],[-0.244585,51.015706],[-0.245498,51.014132],[-0.245137,51.012261],[-0.238041,51.012062],[-0.232015,51.010847],[-0.232762,51.009849],[-0.232661,51.008367],[-0.234688,51.00628],[-0.235745,51.005728],[-0.235004,51.004255],[-0.234827,50.99957],[-0.234996,50.998676],[-0.236691,50.996308],[-0.236261,50.992774],[-0.239168,50.992684],[-0.239325,50.991973],[-0.241071,50.991503],[-0.241997,50.990726],[-0.24182,50.986755],[-0.236139,50.987174],[-0.230964,50.989178],[-0.229547,50.987005],[-0.229756,50.986421],[-0.23279,50.983602],[-0.233934,50.981684],[-0.238249,50.976682],[-0.241076,50.971805],[-0.241507,50.96785],[-0.240836,50.963718],[-0.241143,50.961651],[-0.240451,50.958983],[-0.240972,50.957443],[-0.240897,50.952853],[-0.240233,50.951269],[-0.238747,50.950049],[-0.229861,50.94861],[-0.224812,50.948465],[-0.225058,50.945306],[-0.224456,50.942946],[-0.227643,50.942374],[-0.228255,50.938566],[-0.231695,50.936325],[-0.231617,50.935386],[-0.230121,50.935341],[-0.229489,50.933492],[-0.230271,50.932023],[-0.230262,50.930015],[-0.231505,50.928942],[-0.22999,50.927888],[-0.230072,50.926887],[-0.229353,50.925967],[-0.229818,50.925302],[-0.22937,50.922652],[-0.228661,50.922156],[-0.228542,50.920904],[-0.229233,50.918799],[-0.227711,50.918241],[-0.225777,50.916003],[-0.226879,50.914204],[-0.226818,50.912684],[-0.223784,50.911784],[-0.224462,50.911391],[-0.22628,50.91166],[-0.233484,50.911293],[-0.234013,50.909868],[-0.23613,50.908207],[-0.239584,50.907689],[-0.241857,50.907714],[-0.244155,50.907363],[-0.241641,50.902157],[-0.243526,50.902117],[-0.24381,50.901467],[-0.243235,50.899261],[-0.243945,50.895771],[-0.243339,50.891722],[-0.243837,50.888692],[-0.243791,50.884889],[-0.245061,50.880612],[-0.245552,50.876284],[-0.246864,50.876289],[-0.248404,50.874962],[-0.24866,50.873071],[-0.244342,50.869022],[-0.242406,50.868317],[-0.239238,50.867886],[-0.238754,50.869719],[-0.237551,50.87179],[-0.23382,50.875158],[-0.232671,50.875939],[-0.22672,50.878181],[-0.225523,50.878068],[-0.224647,50.877239],[-0.224555,50.876292],[-0.214147,50.875179],[-0.213882,50.870465],[-0.209257,50.870505],[-0.205402,50.870087],[-0.202637,50.875857],[-0.200921,50.874914],[-0.198988,50.870121],[-0.197354,50.869551],[-0.194371,50.869645],[-0.189219,50.869028],[-0.187735,50.86857],[-0.189748,50.874416],[-0.187725,50.875586],[-0.186271,50.875674],[-0.185073,50.876585],[-0.181861,50.880905],[-0.181303,50.88365],[-0.182423,50.888325],[-0.180783,50.888352],[-0.177814,50.890472],[-0.169333,50.889933],[-0.168612,50.892368],[-0.165865,50.892332],[-0.168173,50.885587],[-0.167631,50.884802],[-0.168466,50.881914],[-0.168126,50.880748],[-0.161661,50.880965],[-0.159437,50.8803],[-0.155459,50.879777],[-0.152973,50.879862],[-0.153176,50.884902],[-0.152526,50.885444],[-0.144612,50.88698],[-0.142095,50.885818],[-0.142406,50.88429],[-0.137141,50.884579],[-0.13501,50.886634],[-0.133979,50.888177],[-0.13337,50.89398],[-0.131876,50.896358],[-0.130863,50.900278],[-0.130574,50.907847],[-0.130092,50.909512],[-0.13077,50.909764],[-0.129708,50.911381],[-0.129603,50.914253],[-0.128387,50.918935],[-0.126696,50.921114],[-0.125163,50.924486],[-0.122478,50.9283],[-0.120728,50.929898],[-0.119873,50.932874],[-0.120447,50.938695],[-0.120065,50.940527],[-0.11794,50.940593],[-0.117859,50.941491],[-0.119976,50.941699],[-0.118059,50.945256],[-0.111099,50.943677],[-0.108916,50.943803],[-0.105427,50.94311],[-0.104177,50.947276],[-0.104986,50.949289],[-0.105237,50.951738],[-0.106301,50.953986],[-0.106212,50.954683],[-0.108122,50.956913],[-0.10783,50.957905],[-0.108349,50.95876],[-0.108022,50.960573],[-0.105518,50.964403],[-0.10936,50.965042],[-0.108555,50.96698],[-0.110385,50.967807],[-0.112669,50.967341],[-0.116309,50.967176],[-0.115124,50.969779],[-0.116107,50.970369],[-0.116318,50.973454],[-0.115215,50.976077],[-0.114062,50.976509],[-0.111752,50.976353],[-0.111642,50.976907],[-0.10998,50.978219],[-0.108814,50.980242],[-0.104411,50.980288],[-0.102702,50.980843],[-0.101665,50.980077],[-0.101812,50.979387],[-0.098107,50.979378],[-0.097341,50.978789],[-0.094189,50.979369],[-0.093068,50.979228],[-0.09314,50.980598],[-0.092283,50.983297],[-0.091856,50.983289],[-0.086832,50.987853],[-0.086668,50.988912],[-0.085291,50.989652],[-0.082391,50.989092],[-0.083821,50.990719],[-0.078766,50.990872],[-0.076785,50.991453],[-0.075463,50.991101],[-0.07362,50.991675],[-0.070525,50.991345],[-0.068528,50.989556],[-0.067189,50.989064],[-0.065697,50.985785],[-0.065559,50.983669],[-0.066236,50.982813],[-0.065186,50.982121],[-0.065044,50.981163],[-0.063769,50.980818],[-0.063713,50.979212],[-0.061266,50.978384],[-0.05998,50.979503],[-0.058432,50.979998],[-0.056518,50.979994],[-0.053537,50.979478],[-0.050135,50.980378],[-0.048757,50.981135],[-0.046986,50.981208],[-0.0454,50.980493],[-0.044454,50.979614],[-0.039586,50.97931],[-0.037867,50.978822],[-0.037072,50.977384],[-0.034666,50.977453],[-0.032026,50.979584],[-0.029318,50.979229],[-0.024604,50.980025],[-0.023533,50.982242],[-0.020076,50.985404],[-0.020231,50.986189],[-0.018775,50.988966],[-0.018832,50.992334],[-0.018146,50.995292],[-0.018484,50.995914],[-0.017607,50.998971],[-0.01779,51.000167],[-0.01641,51.002514],[-0.017373,51.003197],[-0.020097,51.003468],[-0.019152,51.004418],[-0.018578,51.006697],[-0.019944,51.007994],[-0.019888,51.009441],[-0.018429,51.010729],[-0.018329,51.012521],[-0.016651,51.01381],[-0.016008,51.014803],[-0.019415,51.015719],[-0.019479,51.016629],[-0.021514,51.017115],[-0.020044,51.018614],[-0.019722,51.019513],[-0.021578,51.020738],[-0.019636,51.021582],[-0.020461,51.022583],[-0.02001,51.024644],[-0.020752,51.027475],[-0.017093,51.027774],[-0.014968,51.028835],[-0.013501,51.029119],[-0.012074,51.028788],[-0.011212,51.029431],[-0.010118,51.031294],[-0.008215,51.032473],[-0.008044,51.034186],[-0.005399,51.034882],[-0.002566,51.035212],[-0.00064,51.036959],[-0.001889,51.037714],[-0.00423,51.038289],[-0.007517,51.038046],[-0.007904,51.038988],[-0.006619,51.040072],[-0.007638,51.040958],[-0.00271,51.042316],[-0.002017,51.043068],[-0.002094,51.044589],[-0.003509,51.04682],[-0.00181,51.048436],[0.002022,51.048933],[0.004039,51.04988],[0.00772,51.050907],[0.011255,51.052993],[0.013725,51.057013],[0.010491,51.057304],[0.008732,51.05692],[0.007844,51.057978],[0.006116,51.057521],[0.004186,51.057748],[0.001662,51.057516],[0.002024,51.055655],[-0.002552,51.055505],[-0.003777,51.056308],[-0.005924,51.056818],[-0.008548,51.056458],[-0.008475,51.057637],[-0.010403,51.059253],[-0.01114,51.060956],[-0.011421,51.06268],[-0.009764,51.063537],[-0.010214,51.065],[-0.011108,51.065852],[-0.013144,51.06651],[-0.01497,51.069352],[-0.013992,51.070435],[-0.013257,51.073967],[-0.016849,51.074226],[-0.019582,51.075669],[-0.021842,51.075947],[-0.024011,51.075818],[-0.026852,51.075113],[-0.028044,51.081868],[-0.031535,51.087838],[-0.031784,51.091337],[-0.031052,51.092569],[-0.035127,51.092445],[-0.036193,51.092997],[-0.035485,51.093833],[-0.030835,51.094213],[-0.028046,51.093129],[-0.026991,51.091743],[-0.02617,51.09175],[-0.025375,51.094208],[-0.022349,51.095375],[-0.021333,51.096755],[-0.019563,51.09599],[-0.017668,51.097],[-0.01582,51.09656],[-0.014211,51.096811],[-0.013844,51.097548],[-0.012002,51.096342],[-0.010866,51.096499],[-0.008056,51.097762],[-0.007065,51.099146],[-0.004242,51.099177],[-0.000663,51.100982],[0.001374,51.101445],[0.00294,51.102292],[0.007811,51.102556],[0.010473,51.102182],[0.011365,51.102605],[0.008754,51.104414],[0.006463,51.104656],[0.00503,51.105258],[0.00575,51.106246],[0.006918,51.106747],[0.006729,51.10772],[0.008583,51.108829],[0.009505,51.110392],[0.013175,51.106077],[0.015701,51.104559],[0.018618,51.103575],[0.021526,51.106965],[0.023916,51.107892],[0.02545,51.10902],[0.027043,51.108574],[0.031892,51.108644],[0.032336,51.108099],[0.034216,51.108622],[0.035419,51.109839],[0.037533,51.11042],[0.039288,51.109426],[0.041309,51.110251],[0.044565,51.110649],[0.04422,51.111124],[0.041316,51.110843],[0.041515,51.112213],[0.040028,51.111778],[0.036801,51.112248],[0.037453,51.113194],[0.036521,51.115092],[0.034589,51.114971],[0.034178,51.115936],[0.032759,51.116579],[0.028152,51.11772],[0.026889,51.121799],[0.025205,51.12344],[0.026362,51.125433],[0.026455,51.126693],[0.025289,51.128208],[0.026046,51.131914],[0.027812,51.133179],[0.027227,51.135555],[0.026089,51.137021],[0.027361,51.13985]]]},"properties":{"LAD22CD":"E07000228","LAD22NM":"Mid Sussex","BNG_E":533054,"BNG_N":130623,"LONG":-0.10272,"LAT":51.05953,"GlobalID":"1c2f614f-a781-4ceb-86b6-83fa188c3079"},"id":226}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.367453,50.860532],[-0.371256,50.860773],[-0.375125,50.861449],[-0.377859,50.861465],[-0.378845,50.86263],[-0.381267,50.863224],[-0.382786,50.862708],[-0.388237,50.859531],[-0.392457,50.859655],[-0.395346,50.859106],[-0.396923,50.858085],[-0.403324,50.856485],[-0.406897,50.853583],[-0.407281,50.852831],[-0.40928,50.852264],[-0.411154,50.85383],[-0.415586,50.855181],[-0.416071,50.856343],[-0.420048,50.860083],[-0.422794,50.860235],[-0.424298,50.856926],[-0.424148,50.854855],[-0.422883,50.851768],[-0.421958,50.850854],[-0.423022,50.848115],[-0.422019,50.845143],[-0.422297,50.840679],[-0.425275,50.839852],[-0.431873,50.839703],[-0.438544,50.840676],[-0.446007,50.839854],[-0.443345,50.837192],[-0.446532,50.836326],[-0.445935,50.834767],[-0.443588,50.833078],[-0.4437,50.831578],[-0.445111,50.827493],[-0.443659,50.82146],[-0.441937,50.817329],[-0.440348,50.812833],[-0.439267,50.812485],[-0.43836,50.810632],[-0.436606,50.804518],[-0.435982,50.803139],[-0.422567,50.804342],[-0.420869,50.805085],[-0.405714,50.805647],[-0.399948,50.805732],[-0.388413,50.806783],[-0.378229,50.80801],[-0.372519,50.808589],[-0.363833,50.810024],[-0.363423,50.810412],[-0.357278,50.812015],[-0.35234,50.812635],[-0.348533,50.813598],[-0.343707,50.814382],[-0.33604,50.816222],[-0.332652,50.81742],[-0.334184,50.819073],[-0.338736,50.822064],[-0.340755,50.822376],[-0.342873,50.82231],[-0.344179,50.823356],[-0.349426,50.822549],[-0.350741,50.822872],[-0.351794,50.824902],[-0.353262,50.825236],[-0.354305,50.826821],[-0.355708,50.827699],[-0.353195,50.829042],[-0.354172,50.829592],[-0.358343,50.830639],[-0.357117,50.834325],[-0.358837,50.834189],[-0.359565,50.83665],[-0.359732,50.838237],[-0.359366,50.839677],[-0.359475,50.842445],[-0.358521,50.843534],[-0.360248,50.846246],[-0.362094,50.84689],[-0.365415,50.846926],[-0.36686,50.849033],[-0.367234,50.851808],[-0.368996,50.855282],[-0.367119,50.856244],[-0.368048,50.858308],[-0.367453,50.860532]]]},"properties":{"LAD22CD":"E07000229","LAD22NM":"Worthing","BNG_E":512679,"BNG_N":104948,"LONG":-0.40127,"LAT":50.8331,"GlobalID":"352bf89f-8ce0-43ae-a390-e52358f24faf"},"id":227}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.01699,52.432683],[-2.024767,52.434882],[-2.024881,52.434042],[-2.023684,52.432609],[-2.026039,52.432094],[-2.02619,52.43016],[-2.028971,52.428847],[-2.029706,52.427301],[-2.036988,52.427546],[-2.038111,52.428802],[-2.037868,52.430075],[-2.036876,52.43099],[-2.037661,52.431561],[-2.037593,52.433073],[-2.039843,52.437558],[-2.038631,52.438979],[-2.037131,52.439839],[-2.037881,52.441558],[-2.044551,52.440678],[-2.046386,52.439956],[-2.047091,52.440407],[-2.04916,52.43968],[-2.051484,52.440829],[-2.053595,52.440617],[-2.055711,52.441314],[-2.058491,52.440767],[-2.059631,52.439369],[-2.05923,52.438866],[-2.059309,52.435397],[-2.058698,52.435028],[-2.058648,52.433577],[-2.05916,52.432625],[-2.058942,52.430792],[-2.059516,52.428857],[-2.060713,52.427538],[-2.062468,52.427431],[-2.065788,52.428087],[-2.066707,52.429741],[-2.063825,52.4307],[-2.06235,52.432455],[-2.067546,52.432558],[-2.068009,52.432964],[-2.067626,52.434721],[-2.069767,52.434335],[-2.070971,52.433702],[-2.074812,52.433998],[-2.077936,52.433938],[-2.078264,52.433045],[-2.079892,52.432272],[-2.082105,52.431731],[-2.084613,52.432145],[-2.08605,52.432925],[-2.086972,52.434648],[-2.087221,52.436814],[-2.088736,52.440128],[-2.090471,52.441079],[-2.090263,52.442639],[-2.094138,52.443766],[-2.093281,52.445283],[-2.095672,52.444917],[-2.098565,52.445284],[-2.10224,52.443962],[-2.10525,52.444208],[-2.107025,52.442206],[-2.108777,52.441223],[-2.111757,52.437278],[-2.112897,52.437415],[-2.114643,52.43566],[-2.117248,52.43436],[-2.119663,52.434719],[-2.122882,52.433421],[-2.12776,52.432705],[-2.129697,52.43221],[-2.129021,52.430918],[-2.12927,52.429901],[-2.13046,52.429632],[-2.132275,52.429924],[-2.133091,52.427618],[-2.13548,52.42806],[-2.136027,52.426268],[-2.143575,52.426055],[-2.146603,52.426373],[-2.164851,52.430204],[-2.16406,52.427823],[-2.164171,52.423908],[-2.163811,52.423258],[-2.167707,52.42378],[-2.164671,52.42151],[-2.163928,52.419219],[-2.163953,52.417144],[-2.162016,52.416169],[-2.160322,52.416477],[-2.158264,52.409284],[-2.154466,52.409799],[-2.145736,52.409567],[-2.144255,52.41002],[-2.144501,52.411403],[-2.134036,52.4103],[-2.128496,52.406052],[-2.127733,52.40462],[-2.126248,52.403304],[-2.126023,52.402244],[-2.129236,52.400762],[-2.132034,52.39819],[-2.135182,52.398566],[-2.137856,52.395526],[-2.136192,52.395394],[-2.137701,52.393899],[-2.133395,52.391883],[-2.132251,52.390007],[-2.129896,52.388797],[-2.131461,52.387886],[-2.132521,52.386196],[-2.131119,52.385381],[-2.128447,52.382123],[-2.124352,52.374211],[-2.123135,52.372993],[-2.12209,52.366853],[-2.120096,52.363848],[-2.1209,52.363022],[-2.120967,52.360606],[-2.119566,52.359526],[-2.119213,52.357889],[-2.121425,52.358858],[-2.124314,52.359282],[-2.125801,52.358662],[-2.128545,52.358474],[-2.130759,52.35793],[-2.131246,52.356487],[-2.132427,52.355372],[-2.132466,52.354655],[-2.134115,52.353282],[-2.135342,52.353051],[-2.135527,52.351591],[-2.137169,52.34998],[-2.133017,52.348013],[-2.132006,52.350117],[-2.129723,52.352049],[-2.127325,52.351975],[-2.129086,52.350677],[-2.131471,52.34708],[-2.129032,52.345641],[-2.126386,52.345569],[-2.125341,52.343947],[-2.123094,52.342764],[-2.124752,52.341993],[-2.124681,52.340264],[-2.121291,52.340334],[-2.119283,52.341458],[-2.117417,52.341634],[-2.116465,52.338764],[-2.114198,52.338522],[-2.113283,52.337162],[-2.113515,52.336318],[-2.11523,52.335129],[-2.117533,52.335331],[-2.118475,52.332088],[-2.11615,52.3271],[-2.117614,52.326568],[-2.117298,52.325177],[-2.11859,52.325171],[-2.117863,52.323032],[-2.115748,52.322097],[-2.118591,52.31904],[-2.122194,52.316625],[-2.124055,52.314503],[-2.117126,52.313145],[-2.114482,52.313459],[-2.11234,52.314426],[-2.10996,52.314609],[-2.107514,52.314431],[-2.102167,52.31345],[-2.098799,52.313586],[-2.095643,52.314543],[-2.095104,52.313366],[-2.08633,52.314525],[-2.085164,52.313499],[-2.085278,52.312141],[-2.087232,52.309894],[-2.088708,52.306339],[-2.090402,52.304922],[-2.089683,52.303404],[-2.087678,52.303519],[-2.084881,52.296953],[-2.087515,52.294275],[-2.09169,52.288561],[-2.089338,52.289485],[-2.087585,52.289049],[-2.084296,52.28886],[-2.076742,52.289079],[-2.074196,52.288635],[-2.070821,52.287292],[-2.061853,52.284743],[-2.060889,52.284194],[-2.057812,52.284292],[-2.055543,52.284705],[-2.051201,52.286972],[-2.047012,52.287863],[-2.043319,52.287398],[-2.041525,52.286517],[-2.038388,52.28563],[-2.033888,52.282639],[-2.030467,52.282544],[-2.027616,52.28101],[-2.024819,52.280382],[-2.022901,52.278433],[-2.020915,52.278727],[-2.02002,52.279554],[-2.01505,52.278516],[-2.011693,52.278366],[-2.010354,52.278743],[-2.009154,52.27806],[-2.00797,52.278681],[-2.006309,52.278531],[-2.005018,52.279086],[-2.00246,52.279582],[-1.997953,52.283598],[-1.999175,52.285634],[-2.002018,52.288139],[-1.994862,52.290515],[-1.992798,52.290613],[-1.990896,52.29205],[-1.988427,52.289902],[-1.984151,52.2921],[-1.985182,52.293393],[-1.983715,52.295027],[-1.984047,52.295397],[-1.983413,52.298756],[-1.98484,52.298963],[-1.984983,52.300093],[-1.981597,52.299332],[-1.979108,52.300898],[-1.976492,52.30371],[-1.979873,52.306064],[-1.982006,52.308306],[-1.980663,52.309228],[-1.977889,52.309876],[-1.973996,52.308394],[-1.968644,52.313019],[-1.969571,52.315027],[-1.960582,52.314728],[-1.96009,52.316217],[-1.958337,52.317591],[-1.957056,52.317635],[-1.955761,52.318997],[-1.955098,52.320998],[-1.952603,52.319861],[-1.9517,52.320945],[-1.950067,52.322019],[-1.944874,52.321517],[-1.942932,52.320909],[-1.942574,52.321697],[-1.94095,52.323237],[-1.93931,52.323759],[-1.934699,52.324176],[-1.926325,52.323707],[-1.922065,52.322477],[-1.9158,52.322753],[-1.91415,52.323075],[-1.912153,52.32297],[-1.909388,52.323515],[-1.908784,52.320473],[-1.899006,52.321783],[-1.897545,52.321547],[-1.895025,52.321849],[-1.891869,52.321426],[-1.890985,52.320422],[-1.890085,52.318234],[-1.880934,52.310933],[-1.874888,52.312463],[-1.870386,52.312609],[-1.868569,52.314589],[-1.867188,52.318121],[-1.86667,52.318254],[-1.867466,52.331234],[-1.864831,52.333093],[-1.86532,52.333347],[-1.868256,52.333016],[-1.871168,52.335962],[-1.873079,52.337298],[-1.874755,52.340193],[-1.875161,52.342992],[-1.876229,52.345573],[-1.884777,52.353571],[-1.884506,52.354523],[-1.885408,52.356169],[-1.88701,52.357005],[-1.888974,52.361093],[-1.887805,52.36146],[-1.884318,52.361722],[-1.880864,52.362665],[-1.879658,52.362555],[-1.876666,52.363765],[-1.876125,52.363582],[-1.873464,52.365343],[-1.873688,52.366089],[-1.872034,52.367599],[-1.870524,52.368624],[-1.870277,52.369937],[-1.869054,52.370198],[-1.86761,52.372299],[-1.866561,52.373245],[-1.865257,52.373637],[-1.865009,52.37449],[-1.863473,52.375975],[-1.863018,52.377522],[-1.861892,52.378478],[-1.86133,52.380057],[-1.8618,52.381444],[-1.860941,52.383175],[-1.861324,52.38387],[-1.857181,52.386571],[-1.858238,52.387352],[-1.848767,52.394304],[-1.846482,52.397262],[-1.845474,52.400406],[-1.850646,52.401823],[-1.851704,52.400554],[-1.853438,52.401544],[-1.856985,52.402761],[-1.861767,52.403601],[-1.863453,52.404626],[-1.864779,52.404815],[-1.868647,52.40421],[-1.868747,52.404737],[-1.872278,52.404691],[-1.872291,52.402194],[-1.877862,52.402445],[-1.878354,52.399898],[-1.882697,52.399813],[-1.886193,52.404357],[-1.887112,52.404686],[-1.892381,52.404433],[-1.896133,52.403327],[-1.90069,52.403835],[-1.904588,52.403146],[-1.906626,52.404094],[-1.909667,52.404447],[-1.910812,52.406691],[-1.913675,52.407464],[-1.91465,52.406755],[-1.915303,52.403164],[-1.916469,52.401544],[-1.918297,52.400134],[-1.918578,52.398193],[-1.922437,52.396856],[-1.924383,52.396693],[-1.928273,52.393139],[-1.928073,52.392891],[-1.932072,52.390505],[-1.932859,52.390325],[-1.934636,52.38789],[-1.936346,52.387905],[-1.939672,52.3896],[-1.94545,52.390696],[-1.952543,52.393321],[-1.953614,52.393371],[-1.958912,52.388248],[-1.960435,52.389093],[-1.964927,52.392188],[-1.966362,52.389465],[-1.970546,52.389657],[-1.971621,52.389216],[-1.972458,52.388126],[-1.975578,52.387111],[-1.978927,52.387872],[-1.983625,52.387334],[-1.98819,52.384503],[-1.988078,52.383596],[-1.988971,52.382642],[-1.99288,52.381952],[-1.994511,52.381181],[-1.998053,52.381083],[-2.000117,52.381663],[-2.001279,52.383565],[-2.002211,52.384196],[-2.005001,52.384155],[-2.006137,52.38567],[-2.00846,52.386962],[-2.011353,52.38618],[-2.012951,52.3887],[-2.013366,52.392073],[-2.014184,52.394225],[-2.015075,52.394669],[-2.016903,52.394261],[-2.018074,52.394949],[-2.019271,52.396302],[-2.020687,52.399356],[-2.021653,52.400189],[-2.025103,52.400667],[-2.02841,52.400432],[-2.030954,52.40089],[-2.033641,52.402328],[-2.033432,52.403038],[-2.028058,52.406432],[-2.027313,52.407119],[-2.027535,52.408105],[-2.024177,52.406371],[-2.020478,52.406868],[-2.017549,52.405582],[-2.015071,52.406123],[-2.014275,52.40688],[-2.012675,52.407319],[-2.012349,52.408205],[-2.0128,52.40951],[-2.010859,52.409558],[-2.009238,52.410388],[-2.008097,52.40862],[-2.006442,52.409134],[-2.004639,52.409223],[-2.004193,52.410966],[-2.002077,52.410871],[-2.001013,52.410309],[-1.997796,52.409736],[-1.996926,52.410354],[-1.995609,52.412496],[-1.993245,52.413573],[-1.991075,52.413559],[-1.988862,52.414122],[-1.986037,52.416726],[-1.988219,52.416989],[-1.988697,52.416369],[-1.991042,52.415413],[-1.997061,52.417426],[-1.99701,52.417942],[-1.999018,52.418713],[-2.000368,52.420244],[-2.002043,52.420988],[-2.001276,52.421872],[-2.001649,52.422999],[-2.004317,52.426371],[-2.004686,52.42841],[-2.007297,52.428094],[-2.009741,52.426522],[-2.013178,52.42872],[-2.013783,52.429552],[-2.015459,52.428611],[-2.01528,52.432174],[-2.01699,52.432683]]]},"properties":{"LAD22CD":"E07000234","LAD22NM":"Bromsgrove","BNG_E":399840,"BNG_N":273736,"LONG":-2.00376,"LAT":52.36169,"GlobalID":"15bd8f7c-b858-4fa1-a0be-04e16f075f5f"},"id":228}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.414924,52.368255],[-2.416126,52.368526],[-2.418128,52.368037],[-2.420221,52.368058],[-2.421923,52.367305],[-2.42284,52.366279],[-2.424485,52.366385],[-2.426337,52.365832],[-2.429212,52.366852],[-2.431185,52.367166],[-2.435343,52.36628],[-2.437851,52.366427],[-2.44069,52.366999],[-2.446994,52.367179],[-2.4491,52.367657],[-2.451393,52.36751],[-2.454988,52.367899],[-2.456181,52.367403],[-2.457653,52.367824],[-2.458366,52.367221],[-2.460877,52.367559],[-2.462858,52.366997],[-2.463903,52.365134],[-2.467749,52.364552],[-2.469826,52.365519],[-2.469547,52.366396],[-2.472735,52.36597],[-2.47477,52.367145],[-2.476223,52.365629],[-2.473425,52.362838],[-2.473449,52.362005],[-2.474513,52.36152],[-2.47418,52.360613],[-2.475578,52.359739],[-2.479885,52.360273],[-2.482515,52.360037],[-2.48389,52.360492],[-2.486743,52.358893],[-2.486099,52.358354],[-2.485153,52.356231],[-2.488327,52.355398],[-2.487724,52.354312],[-2.483793,52.353184],[-2.483481,52.352194],[-2.481792,52.35112],[-2.481631,52.349518],[-2.482843,52.348924],[-2.484355,52.34456],[-2.482103,52.341624],[-2.479658,52.340211],[-2.478221,52.338422],[-2.478382,52.337938],[-2.48107,52.335855],[-2.481012,52.334413],[-2.480112,52.333828],[-2.479858,52.332597],[-2.482792,52.331174],[-2.488051,52.330629],[-2.490191,52.329459],[-2.494373,52.329314],[-2.495236,52.329682],[-2.498041,52.329077],[-2.502945,52.329],[-2.505734,52.328073],[-2.506999,52.328279],[-2.507835,52.329053],[-2.509982,52.32951],[-2.513205,52.329214],[-2.513911,52.330771],[-2.510628,52.332553],[-2.509074,52.332438],[-2.50841,52.333257],[-2.50862,52.334751],[-2.511343,52.336256],[-2.51213,52.33711],[-2.516392,52.337984],[-2.517782,52.338622],[-2.521907,52.341848],[-2.523964,52.341852],[-2.526816,52.342491],[-2.529715,52.342635],[-2.531467,52.343379],[-2.5337,52.343676],[-2.53561,52.344317],[-2.53915,52.344139],[-2.538994,52.343144],[-2.540966,52.34189],[-2.546778,52.33982],[-2.548379,52.338581],[-2.549326,52.337205],[-2.55122,52.337086],[-2.554313,52.334734],[-2.555505,52.334369],[-2.557009,52.335043],[-2.559355,52.334292],[-2.560603,52.333456],[-2.562219,52.333108],[-2.562358,52.331872],[-2.56087,52.329834],[-2.561905,52.327218],[-2.56122,52.325951],[-2.562645,52.324569],[-2.562701,52.323701],[-2.563948,52.32289],[-2.562777,52.321429],[-2.564153,52.320279],[-2.564736,52.318857],[-2.563928,52.317495],[-2.562766,52.317224],[-2.561942,52.315386],[-2.562278,52.314477],[-2.563467,52.31389],[-2.562492,52.312329],[-2.563877,52.311535],[-2.564839,52.312671],[-2.566742,52.313334],[-2.567632,52.314356],[-2.570427,52.315123],[-2.573381,52.317188],[-2.574853,52.317576],[-2.576483,52.316736],[-2.578509,52.316899],[-2.579991,52.316524],[-2.582425,52.315069],[-2.584501,52.313172],[-2.587239,52.313524],[-2.589804,52.313192],[-2.595089,52.313886],[-2.600526,52.310198],[-2.602792,52.309375],[-2.605812,52.307639],[-2.610002,52.306281],[-2.613029,52.306633],[-2.614639,52.307645],[-2.616056,52.307983],[-2.617679,52.30763],[-2.618035,52.306957],[-2.619074,52.305632],[-2.623115,52.306463],[-2.626929,52.306128],[-2.629717,52.306658],[-2.631656,52.305686],[-2.633338,52.306069],[-2.633833,52.307396],[-2.636325,52.308953],[-2.637257,52.308148],[-2.63876,52.307696],[-2.643226,52.308178],[-2.645378,52.306199],[-2.647555,52.305281],[-2.652908,52.305806],[-2.654018,52.305272],[-2.658371,52.304997],[-2.659401,52.305365],[-2.661621,52.304833],[-2.663206,52.303937],[-2.661053,52.300395],[-2.65944,52.300192],[-2.657208,52.299216],[-2.655974,52.299133],[-2.652419,52.295247],[-2.648199,52.293932],[-2.644221,52.29375],[-2.644532,52.292219],[-2.644159,52.29021],[-2.642219,52.288141],[-2.639877,52.286375],[-2.635375,52.286077],[-2.631689,52.287071],[-2.629455,52.287278],[-2.626257,52.288897],[-2.624888,52.287581],[-2.623436,52.287047],[-2.623202,52.284565],[-2.620636,52.282855],[-2.618449,52.282228],[-2.616549,52.28283],[-2.616611,52.285315],[-2.614441,52.286459],[-2.612607,52.28676],[-2.604307,52.286621],[-2.600525,52.284942],[-2.598967,52.283542],[-2.600439,52.281825],[-2.597931,52.281618],[-2.597507,52.280346],[-2.599554,52.279848],[-2.596934,52.278188],[-2.596449,52.276593],[-2.599106,52.276086],[-2.601661,52.276488],[-2.604386,52.275495],[-2.606731,52.275665],[-2.607814,52.273028],[-2.610627,52.271244],[-2.609952,52.269305],[-2.612494,52.267792],[-2.614395,52.265716],[-2.616264,52.264691],[-2.623007,52.262235],[-2.628294,52.26116],[-2.627878,52.260204],[-2.63088,52.257453],[-2.63136,52.254198],[-2.631106,52.252938],[-2.634233,52.250755],[-2.633245,52.249688],[-2.632843,52.247689],[-2.634266,52.247231],[-2.631461,52.243786],[-2.630515,52.243706],[-2.628871,52.240349],[-2.621595,52.242],[-2.620472,52.242043],[-2.616272,52.243348],[-2.614908,52.2418],[-2.610656,52.242599],[-2.610252,52.243701],[-2.608529,52.243762],[-2.604374,52.242822],[-2.601914,52.243858],[-2.599843,52.243798],[-2.596468,52.244258],[-2.592832,52.245282],[-2.589664,52.245802],[-2.588678,52.246275],[-2.587304,52.247763],[-2.585439,52.248298],[-2.580655,52.248305],[-2.576141,52.247753],[-2.574573,52.249625],[-2.574206,52.252731],[-2.569985,52.252816],[-2.569163,52.250833],[-2.567371,52.250141],[-2.559649,52.251945],[-2.554592,52.251997],[-2.552701,52.252363],[-2.552501,52.251281],[-2.54795,52.249698],[-2.541088,52.253021],[-2.538978,52.252607],[-2.539016,52.251529],[-2.535814,52.250767],[-2.534132,52.25129],[-2.531673,52.253277],[-2.528994,52.251697],[-2.529416,52.250719],[-2.528868,52.249676],[-2.527432,52.249215],[-2.52582,52.248097],[-2.525139,52.248847],[-2.523394,52.249374],[-2.522441,52.251728],[-2.520998,52.252113],[-2.518391,52.254274],[-2.515518,52.256007],[-2.513638,52.255739],[-2.510179,52.256459],[-2.506763,52.256625],[-2.50136,52.257436],[-2.495651,52.256941],[-2.49468,52.261301],[-2.493355,52.263],[-2.493598,52.264035],[-2.496302,52.266669],[-2.499336,52.268597],[-2.50098,52.269226],[-2.504067,52.272279],[-2.50423,52.275155],[-2.503562,52.275544],[-2.503113,52.27745],[-2.500774,52.277755],[-2.497232,52.277387],[-2.495667,52.277606],[-2.4937,52.278372],[-2.492007,52.278176],[-2.489167,52.280955],[-2.487033,52.281337],[-2.485016,52.282319],[-2.483605,52.283587],[-2.483382,52.284375],[-2.475961,52.285637],[-2.472212,52.285588],[-2.467456,52.283327],[-2.465309,52.284104],[-2.463576,52.285192],[-2.455836,52.284844],[-2.451403,52.285083],[-2.451263,52.282811],[-2.448154,52.280648],[-2.4441,52.278565],[-2.441762,52.278399],[-2.440239,52.278755],[-2.440189,52.277444],[-2.438449,52.277099],[-2.438181,52.276259],[-2.434103,52.275781],[-2.434385,52.275346],[-2.432155,52.273075],[-2.430621,52.272768],[-2.429838,52.271457],[-2.427996,52.27061],[-2.430767,52.270432],[-2.434338,52.269004],[-2.43707,52.268829],[-2.436928,52.26817],[-2.437877,52.266654],[-2.440477,52.266316],[-2.441671,52.265388],[-2.449831,52.263332],[-2.4529,52.263222],[-2.455126,52.262685],[-2.456927,52.261196],[-2.459764,52.260666],[-2.461834,52.258736],[-2.465087,52.25772],[-2.467681,52.255952],[-2.468099,52.256038],[-2.47259,52.252821],[-2.473649,52.250725],[-2.474702,52.241359],[-2.471219,52.240529],[-2.466503,52.237642],[-2.464858,52.234374],[-2.462214,52.235041],[-2.456011,52.235742],[-2.450902,52.236714],[-2.450531,52.236232],[-2.445188,52.236378],[-2.444083,52.235634],[-2.441799,52.236017],[-2.437144,52.237615],[-2.434619,52.236954],[-2.433232,52.237043],[-2.426292,52.236123],[-2.423065,52.23726],[-2.420027,52.235271],[-2.41673,52.233767],[-2.414209,52.231723],[-2.411344,52.231454],[-2.409373,52.230643],[-2.406903,52.230787],[-2.405311,52.231263],[-2.402092,52.23106],[-2.399404,52.231833],[-2.396479,52.231475],[-2.395241,52.231034],[-2.393288,52.231001],[-2.392068,52.230325],[-2.390292,52.230352],[-2.388926,52.22935],[-2.389398,52.22734],[-2.38743,52.22634],[-2.385911,52.226451],[-2.3844,52.225235],[-2.384247,52.224592],[-2.385302,52.222993],[-2.386456,52.222233],[-2.388053,52.221888],[-2.389586,52.222074],[-2.393773,52.224249],[-2.396509,52.224764],[-2.398357,52.223833],[-2.397335,52.222319],[-2.397648,52.221677],[-2.400728,52.221372],[-2.402969,52.221774],[-2.404041,52.221248],[-2.403559,52.219589],[-2.401553,52.217389],[-2.401579,52.215401],[-2.399853,52.214518],[-2.39701,52.212352],[-2.392894,52.210328],[-2.392443,52.209391],[-2.393477,52.207661],[-2.395195,52.206893],[-2.396095,52.205686],[-2.397322,52.205775],[-2.39917,52.206933],[-2.402659,52.20715],[-2.402217,52.20531],[-2.400384,52.2023],[-2.40048,52.201717],[-2.403219,52.201774],[-2.404905,52.202761],[-2.406938,52.203205],[-2.408543,52.20154],[-2.40832,52.200594],[-2.409062,52.199509],[-2.408711,52.196365],[-2.410343,52.195458],[-2.411101,52.193288],[-2.413738,52.191923],[-2.414636,52.190214],[-2.417693,52.189449],[-2.419147,52.187972],[-2.417896,52.186576],[-2.418129,52.185938],[-2.41611,52.185202],[-2.415068,52.183262],[-2.41665,52.182171],[-2.418956,52.181663],[-2.420303,52.180445],[-2.423246,52.17987],[-2.425462,52.177017],[-2.422798,52.174744],[-2.422011,52.172413],[-2.426292,52.17253],[-2.429067,52.172337],[-2.430663,52.171867],[-2.432996,52.172033],[-2.435423,52.171004],[-2.434621,52.169827],[-2.435175,52.168217],[-2.432884,52.167257],[-2.431073,52.165189],[-2.426464,52.161477],[-2.427285,52.160815],[-2.426993,52.15837],[-2.424918,52.157137],[-2.423218,52.155538],[-2.425077,52.154471],[-2.424706,52.153559],[-2.422371,52.151497],[-2.421317,52.149619],[-2.417672,52.147557],[-2.415485,52.145879],[-2.415195,52.14524],[-2.412395,52.145377],[-2.409646,52.145972],[-2.406796,52.145942],[-2.401857,52.148087],[-2.400189,52.148257],[-2.396958,52.147889],[-2.395339,52.146976],[-2.393972,52.146749],[-2.392381,52.147644],[-2.391743,52.149176],[-2.390423,52.150004],[-2.389886,52.150948],[-2.388627,52.150612],[-2.388056,52.152049],[-2.386361,52.152608],[-2.384489,52.15381],[-2.381291,52.154225],[-2.379321,52.155112],[-2.377927,52.154653],[-2.37693,52.153604],[-2.375423,52.152818],[-2.372672,52.152632],[-2.371584,52.152095],[-2.369695,52.152119],[-2.366527,52.151528],[-2.365231,52.151003],[-2.362525,52.151144],[-2.358722,52.151896],[-2.356454,52.14847],[-2.351402,52.144624],[-2.351835,52.142832],[-2.350173,52.140895],[-2.348547,52.138164],[-2.348363,52.136701],[-2.344608,52.132591],[-2.350536,52.129122],[-2.352771,52.128518],[-2.354448,52.12872],[-2.355548,52.128217],[-2.35609,52.127083],[-2.356204,52.12416],[-2.355393,52.12307],[-2.355603,52.121855],[-2.354537,52.119384],[-2.352631,52.114193],[-2.353658,52.112967],[-2.351588,52.109725],[-2.34999,52.106088],[-2.350129,52.104156],[-2.352148,52.103486],[-2.350438,52.100107],[-2.349586,52.099441],[-2.349118,52.095646],[-2.342988,52.095355],[-2.341106,52.0957],[-2.340371,52.096515],[-2.338298,52.095449],[-2.338502,52.092429],[-2.337963,52.089885],[-2.338504,52.087909],[-2.338089,52.086454],[-2.338729,52.082537],[-2.338473,52.080547],[-2.340504,52.078541],[-2.34005,52.075899],[-2.339195,52.074528],[-2.339911,52.071616],[-2.339261,52.069712],[-2.339425,52.068924],[-2.341464,52.063943],[-2.343214,52.062593],[-2.344377,52.061129],[-2.347455,52.061606],[-2.349687,52.057871],[-2.350855,52.057371],[-2.351548,52.056375],[-2.350211,52.054773],[-2.350082,52.053719],[-2.347393,52.053022],[-2.346951,52.049926],[-2.348595,52.048911],[-2.348953,52.048019],[-2.348237,52.041176],[-2.348514,52.037966],[-2.349919,52.036516],[-2.347985,52.03582],[-2.347533,52.033282],[-2.348163,52.031954],[-2.350268,52.030804],[-2.350649,52.029961],[-2.35205,52.024863],[-2.350823,52.022471],[-2.351379,52.021359],[-2.35098,52.020099],[-2.349377,52.017848],[-2.350468,52.016484],[-2.351856,52.015691],[-2.352543,52.013535],[-2.351062,52.013159],[-2.349271,52.011458],[-2.347574,52.01129],[-2.345687,52.010327],[-2.344001,52.00877],[-2.341903,52.008767],[-2.340493,52.00674],[-2.336337,52.007785],[-2.333809,52.007669],[-2.333045,52.007263],[-2.329423,52.006829],[-2.326109,52.005629],[-2.32471,52.003567],[-2.325793,52.000704],[-2.325657,51.999591],[-2.323513,51.999457],[-2.322826,51.997477],[-2.323256,51.996287],[-2.320657,51.992128],[-2.321165,51.990481],[-2.322329,51.988817],[-2.322329,51.986463],[-2.322922,51.984466],[-2.322449,51.982501],[-2.322597,51.980904],[-2.324685,51.978941],[-2.325325,51.976649],[-2.326533,51.975788],[-2.323696,51.975621],[-2.31262,51.976505],[-2.308777,51.974438],[-2.309264,51.973772],[-2.307927,51.972818],[-2.309048,51.972162],[-2.309466,51.970647],[-2.305788,51.970833],[-2.303703,51.968656],[-2.300433,51.966775],[-2.297242,51.967599],[-2.293304,51.969665],[-2.288291,51.970668],[-2.280562,51.970574],[-2.27697,51.969485],[-2.273646,51.969445],[-2.270556,51.968939],[-2.267766,51.968083],[-2.263619,51.967354],[-2.258692,51.967816],[-2.2565,51.967106],[-2.25136,51.966565],[-2.251824,51.967706],[-2.25111,51.968758],[-2.248906,51.968225],[-2.246237,51.971497],[-2.24397,51.972903],[-2.242861,51.974144],[-2.243311,51.975171],[-2.237633,51.980921],[-2.234044,51.985973],[-2.233171,51.986711],[-2.227806,51.988626],[-2.228982,51.990848],[-2.226398,51.990783],[-2.22443,51.992782],[-2.223302,51.992883],[-2.220613,51.995497],[-2.216951,51.994077],[-2.214446,51.995385],[-2.215675,51.995846],[-2.213436,51.996742],[-2.211689,51.996656],[-2.205586,51.995342],[-2.205643,51.996391],[-2.202886,51.996363],[-2.203046,51.995346],[-2.200828,51.994807],[-2.200463,51.995734],[-2.198413,51.995574],[-2.197098,51.994347],[-2.195202,51.994365],[-2.190365,51.991557],[-2.185084,51.990561],[-2.183693,51.990852],[-2.181702,51.991888],[-2.179426,51.994848],[-2.179846,51.99681],[-2.181503,51.999111],[-2.179454,51.999258],[-2.174907,51.996141],[-2.171737,51.994838],[-2.170266,51.99467],[-2.166583,51.995261],[-2.164728,51.996073],[-2.164004,51.996888],[-2.163555,52.001561],[-2.164128,52.0034],[-2.165519,52.004785],[-2.172135,52.008461],[-2.184066,52.013901],[-2.187683,52.01908],[-2.183052,52.019753],[-2.176906,52.022559],[-2.177127,52.023946],[-2.178313,52.025629],[-2.177592,52.027215],[-2.178561,52.028577],[-2.178109,52.029209],[-2.179397,52.031953],[-2.179158,52.033504],[-2.180549,52.035482],[-2.18068,52.041728],[-2.180409,52.042301],[-2.178165,52.043693],[-2.176981,52.045474],[-2.174107,52.047052],[-2.171381,52.047573],[-2.170061,52.050059],[-2.169734,52.05552],[-2.173505,52.0553],[-2.175392,52.058651],[-2.169953,52.059246],[-2.16556,52.060881],[-2.161358,52.060514],[-2.158128,52.061226],[-2.155036,52.063539],[-2.153157,52.069834],[-2.153355,52.071348],[-2.151036,52.073534],[-2.151292,52.074227],[-2.149978,52.075426],[-2.149757,52.076772],[-2.155811,52.076537],[-2.156791,52.082479],[-2.158319,52.08453],[-2.157105,52.085577],[-2.156243,52.088976],[-2.154826,52.090265],[-2.155341,52.093398],[-2.151652,52.093428],[-2.151729,52.094916],[-2.149549,52.099737],[-2.148794,52.099652],[-2.148754,52.103251],[-2.151706,52.105896],[-2.151846,52.107458],[-2.155227,52.107725],[-2.156807,52.107448],[-2.158758,52.107867],[-2.159674,52.10879],[-2.162373,52.109322],[-2.16927,52.108348],[-2.171837,52.108749],[-2.173335,52.109304],[-2.175916,52.110776],[-2.176419,52.112443],[-2.180928,52.11332],[-2.181496,52.115223],[-2.184611,52.117265],[-2.185815,52.117733],[-2.18393,52.119968],[-2.187626,52.122154],[-2.190986,52.123001],[-2.195425,52.124741],[-2.195297,52.126089],[-2.193727,52.129242],[-2.192149,52.130209],[-2.190614,52.130542],[-2.18809,52.130018],[-2.185707,52.130342],[-2.182527,52.132214],[-2.177265,52.134407],[-2.174477,52.135098],[-2.172839,52.135011],[-2.173551,52.136858],[-2.17243,52.137926],[-2.17174,52.140436],[-2.169234,52.140781],[-2.167744,52.141784],[-2.164922,52.142829],[-2.16788,52.144204],[-2.166692,52.145601],[-2.169464,52.144806],[-2.18013,52.145583],[-2.18603,52.145479],[-2.189576,52.14602],[-2.19461,52.15128],[-2.195964,52.154984],[-2.196868,52.155846],[-2.196285,52.158648],[-2.197239,52.162415],[-2.19971,52.164648],[-2.20169,52.167138],[-2.203372,52.167317],[-2.205325,52.165635],[-2.207414,52.164454],[-2.211556,52.164196],[-2.211036,52.162536],[-2.214318,52.161673],[-2.217602,52.161995],[-2.217769,52.163096],[-2.21968,52.165437],[-2.220478,52.167354],[-2.222,52.168329],[-2.225732,52.168111],[-2.227326,52.166994],[-2.22533,52.166428],[-2.224073,52.165522],[-2.225756,52.164839],[-2.226579,52.16385],[-2.228373,52.164537],[-2.228592,52.167569],[-2.23007,52.168662],[-2.231667,52.168979],[-2.232761,52.1697],[-2.2354,52.169277],[-2.236945,52.169535],[-2.23895,52.169134],[-2.242371,52.170242],[-2.243475,52.169019],[-2.246017,52.169181],[-2.247311,52.169723],[-2.245274,52.171216],[-2.245564,52.172983],[-2.247061,52.173973],[-2.246329,52.175322],[-2.247063,52.176064],[-2.246577,52.17704],[-2.248995,52.178521],[-2.249511,52.180328],[-2.25033,52.180983],[-2.252974,52.18056],[-2.253806,52.182059],[-2.252608,52.183495],[-2.254093,52.183635],[-2.257318,52.182622],[-2.260858,52.182452],[-2.261452,52.184197],[-2.263199,52.18466],[-2.26233,52.185474],[-2.261837,52.189806],[-2.261236,52.190706],[-2.260015,52.190697],[-2.259473,52.191491],[-2.2581,52.191315],[-2.257358,52.192122],[-2.260438,52.192096],[-2.260538,52.193844],[-2.260019,52.195052],[-2.260533,52.196343],[-2.257078,52.196704],[-2.255003,52.196167],[-2.251418,52.196645],[-2.250245,52.197426],[-2.25091,52.199765],[-2.247096,52.201889],[-2.247247,52.204112],[-2.2488,52.204296],[-2.249789,52.205881],[-2.247756,52.208448],[-2.247983,52.210525],[-2.245673,52.211323],[-2.243023,52.208966],[-2.242291,52.208965],[-2.238219,52.210651],[-2.234886,52.211457],[-2.237749,52.214202],[-2.243538,52.217464],[-2.243986,52.219989],[-2.243272,52.221854],[-2.240792,52.225418],[-2.24174,52.227319],[-2.242213,52.230065],[-2.241796,52.232101],[-2.239588,52.234412],[-2.235997,52.235179],[-2.233017,52.236575],[-2.232639,52.237052],[-2.233629,52.238521],[-2.235352,52.240065],[-2.23575,52.241577],[-2.233371,52.245761],[-2.231625,52.247746],[-2.231321,52.248834],[-2.232073,52.250155],[-2.233879,52.251186],[-2.234914,52.252708],[-2.235614,52.252799],[-2.237329,52.25565],[-2.238131,52.256153],[-2.237916,52.257099],[-2.244106,52.260174],[-2.248137,52.263998],[-2.251894,52.266756],[-2.256125,52.267976],[-2.26049,52.26827],[-2.265153,52.268047],[-2.267166,52.268285],[-2.271522,52.269682],[-2.274812,52.271522],[-2.275111,52.272768],[-2.274409,52.275716],[-2.270927,52.280141],[-2.270389,52.282845],[-2.271029,52.286129],[-2.2749,52.292747],[-2.274818,52.295592],[-2.275712,52.297919],[-2.276047,52.301356],[-2.274983,52.304997],[-2.27489,52.30873],[-2.27384,52.311265],[-2.265287,52.319506],[-2.26515,52.320988],[-2.266415,52.323605],[-2.271938,52.326966],[-2.27389,52.328932],[-2.275654,52.328731],[-2.275532,52.328022],[-2.276915,52.327401],[-2.277911,52.32775],[-2.279867,52.326896],[-2.287066,52.325799],[-2.291363,52.324673],[-2.290275,52.323127],[-2.294579,52.32191],[-2.296576,52.323211],[-2.299164,52.32236],[-2.303292,52.328109],[-2.304526,52.329244],[-2.304671,52.330948],[-2.305287,52.332013],[-2.303877,52.332858],[-2.30615,52.333563],[-2.305331,52.335138],[-2.30864,52.33529],[-2.307081,52.336134],[-2.304826,52.335772],[-2.305265,52.337778],[-2.306412,52.339181],[-2.309086,52.339719],[-2.310932,52.34055],[-2.314398,52.33983],[-2.315678,52.338595],[-2.318216,52.337444],[-2.320878,52.33693],[-2.32383,52.335332],[-2.324452,52.333704],[-2.323405,52.333421],[-2.321957,52.332132],[-2.319681,52.33153],[-2.321962,52.330186],[-2.323329,52.327427],[-2.324475,52.326663],[-2.32466,52.32532],[-2.325689,52.324288],[-2.323889,52.323785],[-2.324171,52.323235],[-2.329044,52.320236],[-2.331258,52.319897],[-2.332041,52.319256],[-2.336466,52.31869],[-2.339692,52.320014],[-2.345486,52.320484],[-2.352127,52.319243],[-2.352822,52.318518],[-2.358194,52.316278],[-2.359456,52.315381],[-2.363283,52.314851],[-2.365821,52.317863],[-2.366837,52.318045],[-2.369247,52.317302],[-2.371239,52.317341],[-2.373198,52.319729],[-2.372237,52.320231],[-2.372341,52.321623],[-2.370351,52.32372],[-2.369817,52.326807],[-2.371747,52.326547],[-2.374797,52.325112],[-2.375841,52.325206],[-2.37944,52.324161],[-2.381062,52.324255],[-2.385239,52.322687],[-2.387574,52.322386],[-2.389537,52.321227],[-2.394553,52.321877],[-2.397788,52.324953],[-2.40301,52.32673],[-2.403412,52.324034],[-2.412235,52.324882],[-2.413363,52.325475],[-2.415088,52.323927],[-2.415569,52.3225],[-2.417481,52.322416],[-2.41815,52.32291],[-2.424074,52.322681],[-2.427165,52.32188],[-2.428067,52.322311],[-2.431466,52.32285],[-2.434084,52.322644],[-2.43651,52.324027],[-2.434904,52.326648],[-2.433396,52.3275],[-2.433654,52.328591],[-2.433068,52.329905],[-2.428564,52.330538],[-2.426097,52.332368],[-2.420992,52.33306],[-2.421188,52.333601],[-2.423295,52.335254],[-2.423669,52.336132],[-2.42495,52.33669],[-2.422724,52.338635],[-2.420693,52.342334],[-2.421526,52.343331],[-2.420521,52.344159],[-2.420962,52.345592],[-2.42208,52.346946],[-2.422069,52.349028],[-2.419525,52.351393],[-2.417581,52.352107],[-2.414019,52.35477],[-2.413996,52.355414],[-2.411753,52.357783],[-2.411789,52.359563],[-2.413314,52.360716],[-2.413353,52.361284],[-2.414996,52.362828],[-2.416155,52.364616],[-2.41507,52.366491],[-2.414924,52.368255]]]},"properties":{"LAD22CD":"E07000235","LAD22NM":"Malvern Hills","BNG_E":377465,"BNG_N":252197,"LONG":-2.33089,"LAT":52.16758,"GlobalID":"bd62f9db-6e34-4258-aa63-8e608aff0942"},"id":229}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.880934,52.310933],[-1.890085,52.318234],[-1.890985,52.320422],[-1.891869,52.321426],[-1.895025,52.321849],[-1.897545,52.321547],[-1.899006,52.321783],[-1.908784,52.320473],[-1.909388,52.323515],[-1.912153,52.32297],[-1.91415,52.323075],[-1.9158,52.322753],[-1.922065,52.322477],[-1.926325,52.323707],[-1.934699,52.324176],[-1.93931,52.323759],[-1.94095,52.323237],[-1.942574,52.321697],[-1.942932,52.320909],[-1.944874,52.321517],[-1.950067,52.322019],[-1.9517,52.320945],[-1.952603,52.319861],[-1.955098,52.320998],[-1.955761,52.318997],[-1.957056,52.317635],[-1.958337,52.317591],[-1.96009,52.316217],[-1.960582,52.314728],[-1.969571,52.315027],[-1.968644,52.313019],[-1.973996,52.308394],[-1.977889,52.309876],[-1.980663,52.309228],[-1.982006,52.308306],[-1.979873,52.306064],[-1.976492,52.30371],[-1.979108,52.300898],[-1.981597,52.299332],[-1.984983,52.300093],[-1.98484,52.298963],[-1.983413,52.298756],[-1.984047,52.295397],[-1.983715,52.295027],[-1.985182,52.293393],[-1.984151,52.2921],[-1.988427,52.289902],[-1.990896,52.29205],[-1.992798,52.290613],[-1.994862,52.290515],[-2.002018,52.288139],[-1.999175,52.285634],[-1.997953,52.283598],[-2.00246,52.279582],[-2.00391,52.278605],[-2.002492,52.276805],[-2.005404,52.275677],[-2.007044,52.275386],[-2.003198,52.273632],[-2.004208,52.272022],[-2.00583,52.270593],[-2.007162,52.270253],[-2.009796,52.270905],[-2.01553,52.270002],[-2.01539,52.267251],[-2.01324,52.266128],[-2.013987,52.26568],[-2.012091,52.26304],[-2.01124,52.262885],[-2.011355,52.26008],[-2.013334,52.257633],[-2.013764,52.25647],[-2.01311,52.255403],[-2.013725,52.253235],[-2.015414,52.252372],[-2.017275,52.247075],[-2.017886,52.243666],[-2.01891,52.241472],[-2.018864,52.240508],[-2.01674,52.237275],[-2.014474,52.236697],[-2.009518,52.236101],[-2.007958,52.236671],[-2.006424,52.23627],[-2.005853,52.235589],[-1.997488,52.236189],[-1.9974,52.235773],[-1.994656,52.235271],[-1.993081,52.236294],[-1.994023,52.239861],[-1.991324,52.239474],[-1.990372,52.23842],[-1.983522,52.237681],[-1.981612,52.238203],[-1.97508,52.236758],[-1.972927,52.237579],[-1.967585,52.237025],[-1.966203,52.239104],[-1.965,52.240115],[-1.963205,52.239839],[-1.961387,52.240774],[-1.959552,52.240685],[-1.957881,52.241693],[-1.957606,52.24282],[-1.95503,52.244069],[-1.952995,52.243682],[-1.951262,52.245085],[-1.951661,52.24717],[-1.949774,52.248101],[-1.947426,52.24829],[-1.946054,52.251183],[-1.942221,52.25175],[-1.939097,52.251742],[-1.934611,52.252018],[-1.935328,52.254507],[-1.934411,52.254493],[-1.935415,52.256863],[-1.934115,52.25999],[-1.936571,52.260407],[-1.935815,52.261518],[-1.936415,52.262757],[-1.934765,52.262912],[-1.934387,52.264594],[-1.935749,52.264507],[-1.935838,52.265996],[-1.938074,52.268863],[-1.938687,52.270498],[-1.937401,52.276153],[-1.934725,52.27715],[-1.930349,52.27567],[-1.927396,52.275479],[-1.926169,52.276126],[-1.92387,52.276092],[-1.921106,52.276476],[-1.916852,52.275171],[-1.914543,52.275387],[-1.911996,52.276918],[-1.905365,52.278812],[-1.903299,52.279767],[-1.903618,52.280749],[-1.900732,52.282258],[-1.900799,52.283491],[-1.896555,52.283755],[-1.895563,52.282721],[-1.89369,52.283414],[-1.891413,52.285866],[-1.88648,52.286633],[-1.886003,52.287359],[-1.886585,52.288407],[-1.885496,52.290561],[-1.885798,52.291741],[-1.884274,52.291981],[-1.883695,52.294119],[-1.8826,52.294693],[-1.879451,52.29968],[-1.877696,52.300599],[-1.875997,52.304247],[-1.876289,52.305496],[-1.877579,52.306393],[-1.878755,52.308529],[-1.880934,52.310933]]]},"properties":{"LAD22CD":"E07000236","LAD22NM":"Redditch","BNG_E":403705,"BNG_N":265253,"LONG":-1.9471,"LAT":52.28541,"GlobalID":"1413bd18-d600-4ace-97a4-d84e2a1a36b4"},"id":230}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.203372,52.167317],[-2.199824,52.168213],[-2.200025,52.169487],[-2.196751,52.169742],[-2.195268,52.170375],[-2.191684,52.170252],[-2.191001,52.170907],[-2.189638,52.170479],[-2.186724,52.172597],[-2.186336,52.174515],[-2.188493,52.175612],[-2.186058,52.176703],[-2.187377,52.178167],[-2.184947,52.178583],[-2.184862,52.179932],[-2.182717,52.181905],[-2.182875,52.182903],[-2.179678,52.183666],[-2.179818,52.184057],[-2.171153,52.18456],[-2.16852,52.191911],[-2.167412,52.196426],[-2.164978,52.200127],[-2.162633,52.203394],[-2.158431,52.212117],[-2.157367,52.212632],[-2.157788,52.21339],[-2.159701,52.213278],[-2.162692,52.214156],[-2.167633,52.21638],[-2.168295,52.216851],[-2.171132,52.21767],[-2.188878,52.221201],[-2.194248,52.223492],[-2.209157,52.224829],[-2.211144,52.225582],[-2.218568,52.229696],[-2.222474,52.231383],[-2.22673,52.227867],[-2.228427,52.224807],[-2.23348,52.226795],[-2.235065,52.225328],[-2.234958,52.223648],[-2.235858,52.222346],[-2.239897,52.222716],[-2.239956,52.221486],[-2.243272,52.221854],[-2.243986,52.219989],[-2.243538,52.217464],[-2.237749,52.214202],[-2.234886,52.211457],[-2.238219,52.210651],[-2.242291,52.208965],[-2.243023,52.208966],[-2.245673,52.211323],[-2.247983,52.210525],[-2.247756,52.208448],[-2.249789,52.205881],[-2.2488,52.204296],[-2.247247,52.204112],[-2.247096,52.201889],[-2.25091,52.199765],[-2.250245,52.197426],[-2.251418,52.196645],[-2.255003,52.196167],[-2.257078,52.196704],[-2.260533,52.196343],[-2.260019,52.195052],[-2.260538,52.193844],[-2.260438,52.192096],[-2.257358,52.192122],[-2.2581,52.191315],[-2.259473,52.191491],[-2.260015,52.190697],[-2.261236,52.190706],[-2.261837,52.189806],[-2.26233,52.185474],[-2.263199,52.18466],[-2.261452,52.184197],[-2.260858,52.182452],[-2.257318,52.182622],[-2.254093,52.183635],[-2.252608,52.183495],[-2.253806,52.182059],[-2.252974,52.18056],[-2.25033,52.180983],[-2.249511,52.180328],[-2.248995,52.178521],[-2.246577,52.17704],[-2.247063,52.176064],[-2.246329,52.175322],[-2.247061,52.173973],[-2.245564,52.172983],[-2.245274,52.171216],[-2.247311,52.169723],[-2.246017,52.169181],[-2.243475,52.169019],[-2.242371,52.170242],[-2.23895,52.169134],[-2.236945,52.169535],[-2.2354,52.169277],[-2.232761,52.1697],[-2.231667,52.168979],[-2.23007,52.168662],[-2.228592,52.167569],[-2.228373,52.164537],[-2.226579,52.16385],[-2.225756,52.164839],[-2.224073,52.165522],[-2.22533,52.166428],[-2.227326,52.166994],[-2.225732,52.168111],[-2.222,52.168329],[-2.220478,52.167354],[-2.21968,52.165437],[-2.217769,52.163096],[-2.217602,52.161995],[-2.214318,52.161673],[-2.211036,52.162536],[-2.211556,52.164196],[-2.207414,52.164454],[-2.205325,52.165635],[-2.203372,52.167317]]]},"properties":{"LAD22CD":"E07000237","LAD22NM":"Worcester","BNG_E":385725,"BNG_N":255196,"LONG":-2.21025,"LAT":52.19482,"GlobalID":"5061d8b3-8f67-48f1-8ac9-7f1f6a2e9da6"},"id":231}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.137169,52.34998],[-2.13924,52.348365],[-2.142044,52.347967],[-2.143129,52.346746],[-2.146258,52.345243],[-2.148859,52.346308],[-2.150962,52.343678],[-2.151956,52.341535],[-2.152589,52.338798],[-2.151926,52.337002],[-2.154381,52.335265],[-2.155034,52.33394],[-2.156506,52.332816],[-2.156068,52.331052],[-2.157606,52.330967],[-2.159909,52.330227],[-2.163284,52.327523],[-2.164476,52.325986],[-2.167641,52.324458],[-2.167516,52.320346],[-2.167901,52.319315],[-2.166799,52.318388],[-2.16908,52.317249],[-2.173049,52.317286],[-2.174538,52.316651],[-2.175307,52.319837],[-2.174702,52.324623],[-2.173155,52.327853],[-2.172076,52.328551],[-2.170801,52.331576],[-2.173654,52.331743],[-2.175247,52.331369],[-2.17794,52.331763],[-2.181233,52.331049],[-2.182721,52.330363],[-2.185005,52.330079],[-2.187262,52.329209],[-2.190467,52.328938],[-2.190466,52.331992],[-2.192484,52.333491],[-2.192626,52.334622],[-2.193461,52.335309],[-2.191944,52.337382],[-2.193012,52.337956],[-2.193048,52.338878],[-2.193916,52.34],[-2.195203,52.340367],[-2.19558,52.34128],[-2.200934,52.34428],[-2.202929,52.345198],[-2.205023,52.345633],[-2.204665,52.347765],[-2.205311,52.350749],[-2.207449,52.351542],[-2.207866,52.353267],[-2.210593,52.354454],[-2.210196,52.355001],[-2.211811,52.355942],[-2.220079,52.359363],[-2.230044,52.361083],[-2.233735,52.361032],[-2.241607,52.36035],[-2.242962,52.360833],[-2.245684,52.361036],[-2.248261,52.355463],[-2.245703,52.354923],[-2.246763,52.353252],[-2.245822,52.353027],[-2.249444,52.34886],[-2.251682,52.345857],[-2.249513,52.345675],[-2.252014,52.344378],[-2.254002,52.341128],[-2.257016,52.341697],[-2.261226,52.340665],[-2.261721,52.339683],[-2.260733,52.33842],[-2.263096,52.338141],[-2.263304,52.336855],[-2.264075,52.335948],[-2.26633,52.335938],[-2.268061,52.336646],[-2.269213,52.336283],[-2.269715,52.335166],[-2.267965,52.333754],[-2.271776,52.332632],[-2.269375,52.331852],[-2.265549,52.330131],[-2.261947,52.329459],[-2.260369,52.328307],[-2.261153,52.326401],[-2.264398,52.325572],[-2.264642,52.323408],[-2.266415,52.323605],[-2.26515,52.320988],[-2.265287,52.319506],[-2.27384,52.311265],[-2.27489,52.30873],[-2.274983,52.304997],[-2.276047,52.301356],[-2.275712,52.297919],[-2.274818,52.295592],[-2.2749,52.292747],[-2.271029,52.286129],[-2.270389,52.282845],[-2.270927,52.280141],[-2.274409,52.275716],[-2.275111,52.272768],[-2.274812,52.271522],[-2.271522,52.269682],[-2.267166,52.268285],[-2.265153,52.268047],[-2.26049,52.26827],[-2.256125,52.267976],[-2.251894,52.266756],[-2.248137,52.263998],[-2.244106,52.260174],[-2.237916,52.257099],[-2.238131,52.256153],[-2.237329,52.25565],[-2.235614,52.252799],[-2.234914,52.252708],[-2.233879,52.251186],[-2.232073,52.250155],[-2.231321,52.248834],[-2.231625,52.247746],[-2.233371,52.245761],[-2.23575,52.241577],[-2.235352,52.240065],[-2.233629,52.238521],[-2.232639,52.237052],[-2.233017,52.236575],[-2.235997,52.235179],[-2.239588,52.234412],[-2.241796,52.232101],[-2.242213,52.230065],[-2.24174,52.227319],[-2.240792,52.225418],[-2.243272,52.221854],[-2.239956,52.221486],[-2.239897,52.222716],[-2.235858,52.222346],[-2.234958,52.223648],[-2.235065,52.225328],[-2.23348,52.226795],[-2.228427,52.224807],[-2.22673,52.227867],[-2.222474,52.231383],[-2.218568,52.229696],[-2.211144,52.225582],[-2.209157,52.224829],[-2.194248,52.223492],[-2.188878,52.221201],[-2.171132,52.21767],[-2.168295,52.216851],[-2.167633,52.21638],[-2.162692,52.214156],[-2.159701,52.213278],[-2.157788,52.21339],[-2.157367,52.212632],[-2.158431,52.212117],[-2.162633,52.203394],[-2.164978,52.200127],[-2.167412,52.196426],[-2.16852,52.191911],[-2.171153,52.18456],[-2.179818,52.184057],[-2.179678,52.183666],[-2.182875,52.182903],[-2.182717,52.181905],[-2.184862,52.179932],[-2.184947,52.178583],[-2.187377,52.178167],[-2.186058,52.176703],[-2.188493,52.175612],[-2.186336,52.174515],[-2.186724,52.172597],[-2.189638,52.170479],[-2.191001,52.170907],[-2.191684,52.170252],[-2.195268,52.170375],[-2.196751,52.169742],[-2.200025,52.169487],[-2.199824,52.168213],[-2.203372,52.167317],[-2.20169,52.167138],[-2.19971,52.164648],[-2.197239,52.162415],[-2.196285,52.158648],[-2.196868,52.155846],[-2.195964,52.154984],[-2.19461,52.15128],[-2.189576,52.14602],[-2.18603,52.145479],[-2.18013,52.145583],[-2.169464,52.144806],[-2.166692,52.145601],[-2.16788,52.144204],[-2.164922,52.142829],[-2.167744,52.141784],[-2.169234,52.140781],[-2.17174,52.140436],[-2.17243,52.137926],[-2.173551,52.136858],[-2.172839,52.135011],[-2.174477,52.135098],[-2.177265,52.134407],[-2.182527,52.132214],[-2.185707,52.130342],[-2.18809,52.130018],[-2.190614,52.130542],[-2.192149,52.130209],[-2.193727,52.129242],[-2.195297,52.126089],[-2.195425,52.124741],[-2.190986,52.123001],[-2.187626,52.122154],[-2.18393,52.119968],[-2.185815,52.117733],[-2.184611,52.117265],[-2.181496,52.115223],[-2.180928,52.11332],[-2.176419,52.112443],[-2.175916,52.110776],[-2.173335,52.109304],[-2.171837,52.108749],[-2.16927,52.108348],[-2.162373,52.109322],[-2.159674,52.10879],[-2.158758,52.107867],[-2.156807,52.107448],[-2.155227,52.107725],[-2.151846,52.107458],[-2.151706,52.105896],[-2.148754,52.103251],[-2.148794,52.099652],[-2.149549,52.099737],[-2.151729,52.094916],[-2.151652,52.093428],[-2.155341,52.093398],[-2.154826,52.090265],[-2.156243,52.088976],[-2.157105,52.085577],[-2.158319,52.08453],[-2.156791,52.082479],[-2.155811,52.076537],[-2.149757,52.076772],[-2.149978,52.075426],[-2.151292,52.074227],[-2.151036,52.073534],[-2.153355,52.071348],[-2.153157,52.069834],[-2.155036,52.063539],[-2.158128,52.061226],[-2.161358,52.060514],[-2.16556,52.060881],[-2.169953,52.059246],[-2.175392,52.058651],[-2.173505,52.0553],[-2.169734,52.05552],[-2.170061,52.050059],[-2.171381,52.047573],[-2.170526,52.047065],[-2.168314,52.048709],[-2.16641,52.049032],[-2.164628,52.050004],[-2.162393,52.050506],[-2.158134,52.050206],[-2.155525,52.049345],[-2.155254,52.048517],[-2.149489,52.046932],[-2.147218,52.046764],[-2.141522,52.045636],[-2.133717,52.046335],[-2.126314,52.043223],[-2.120444,52.042155],[-2.118384,52.042109],[-2.11721,52.039262],[-2.11609,52.03787],[-2.115597,52.036279],[-2.11722,52.033614],[-2.117923,52.033072],[-2.125886,52.030504],[-2.129293,52.029793],[-2.136539,52.029302],[-2.139397,52.027892],[-2.141172,52.024537],[-2.142274,52.019776],[-2.144646,52.016692],[-2.145218,52.014723],[-2.146072,52.013696],[-2.147725,52.012952],[-2.149655,52.011256],[-2.150782,52.006628],[-2.146288,52.004579],[-2.145408,52.004759],[-2.143736,52.004096],[-2.141729,52.004583],[-2.139064,52.00395],[-2.140819,52.002396],[-2.139496,52.001544],[-2.139321,51.999415],[-2.136847,51.999853],[-2.135202,51.999704],[-2.133248,52.001685],[-2.133426,52.002513],[-2.131926,52.003994],[-2.132029,52.005322],[-2.130709,52.006459],[-2.129631,52.006298],[-2.127147,52.007281],[-2.125857,52.009046],[-2.12386,52.01001],[-2.12336,52.010905],[-2.120374,52.011697],[-2.120071,52.013176],[-2.118546,52.013946],[-2.116346,52.014567],[-2.111571,52.014799],[-2.108728,52.014279],[-2.107605,52.014587],[-2.105352,52.013999],[-2.102376,52.013832],[-2.099736,52.013192],[-2.097674,52.013063],[-2.097712,52.011784],[-2.096792,52.011404],[-2.093921,52.0118],[-2.092356,52.011113],[-2.091359,52.011423],[-2.084873,52.010479],[-2.08348,52.011089],[-2.080771,52.010765],[-2.078845,52.011698],[-2.076749,52.011041],[-2.074589,52.011802],[-2.072479,52.01155],[-2.070985,52.011805],[-2.068131,52.013121],[-2.063868,52.014173],[-2.060784,52.014681],[-2.060238,52.014208],[-2.059916,52.010826],[-2.059294,52.009474],[-2.057195,52.009822],[-2.053213,52.008637],[-2.051557,52.008753],[-2.049299,52.007013],[-2.050089,52.006019],[-2.049514,52.003796],[-2.044955,52.003649],[-2.038356,52.004601],[-2.036837,52.006043],[-2.036782,52.007016],[-2.037948,52.00794],[-2.038253,52.009563],[-2.030846,52.009771],[-2.026997,52.010588],[-2.028084,52.012345],[-2.029271,52.01284],[-2.02166,52.015655],[-2.02366,52.016953],[-2.019643,52.018694],[-2.016977,52.020257],[-2.013424,52.021348],[-2.007686,52.023885],[-1.998565,52.029668],[-1.997558,52.029898],[-1.99519,52.026563],[-1.992579,52.029288],[-1.984136,52.035879],[-1.963588,52.036127],[-1.956701,52.037146],[-1.954023,52.037099],[-1.951388,52.037725],[-1.950843,52.035975],[-1.949191,52.035182],[-1.948004,52.033989],[-1.947521,52.031895],[-1.945813,52.031669],[-1.942245,52.032361],[-1.939915,52.032278],[-1.933764,52.030842],[-1.93173,52.029959],[-1.931071,52.030243],[-1.929622,52.032296],[-1.927045,52.036661],[-1.923198,52.035642],[-1.922157,52.035615],[-1.920529,52.03814],[-1.91914,52.038857],[-1.916685,52.042099],[-1.915695,52.041694],[-1.913446,52.044461],[-1.909109,52.042661],[-1.90324,52.038892],[-1.896431,52.035905],[-1.891334,52.03283],[-1.888011,52.031462],[-1.885014,52.029501],[-1.879306,52.026947],[-1.876433,52.025285],[-1.873574,52.024328],[-1.867296,52.017965],[-1.862269,52.017485],[-1.863794,52.014417],[-1.862019,52.013357],[-1.861544,52.012628],[-1.859885,52.012737],[-1.857106,52.0112],[-1.856755,52.010645],[-1.854803,52.010202],[-1.85107,52.008403],[-1.847254,52.007657],[-1.844476,52.008325],[-1.843281,52.008088],[-1.841308,52.006917],[-1.840025,52.007308],[-1.83905,52.006783],[-1.835309,52.009162],[-1.835667,52.011232],[-1.834408,52.014611],[-1.834122,52.01702],[-1.83566,52.022503],[-1.826238,52.029146],[-1.825023,52.030933],[-1.828951,52.032074],[-1.830626,52.032832],[-1.829087,52.03633],[-1.830127,52.037687],[-1.829751,52.039072],[-1.832407,52.040134],[-1.832944,52.041764],[-1.83484,52.043288],[-1.834586,52.04373],[-1.838889,52.043707],[-1.847814,52.046537],[-1.853842,52.049761],[-1.857325,52.052247],[-1.860243,52.052144],[-1.863449,52.053418],[-1.861814,52.055833],[-1.861403,52.058311],[-1.862878,52.063432],[-1.864989,52.066278],[-1.871682,52.065426],[-1.874406,52.069991],[-1.872918,52.070162],[-1.869499,52.071385],[-1.872005,52.071917],[-1.869045,52.073857],[-1.863179,52.073775],[-1.855607,52.074441],[-1.854365,52.072869],[-1.853389,52.072367],[-1.850884,52.074555],[-1.849185,52.077279],[-1.84662,52.079421],[-1.837637,52.074275],[-1.834466,52.073111],[-1.8318,52.073215],[-1.829786,52.075269],[-1.822466,52.08114],[-1.818944,52.085404],[-1.817818,52.084794],[-1.816127,52.079612],[-1.813944,52.078726],[-1.812737,52.078744],[-1.812283,52.081934],[-1.813121,52.082754],[-1.80936,52.085885],[-1.809187,52.087217],[-1.809793,52.08756],[-1.806459,52.092669],[-1.802289,52.096941],[-1.795534,52.100771],[-1.791724,52.099611],[-1.790135,52.100592],[-1.788259,52.103634],[-1.789668,52.106237],[-1.785685,52.107038],[-1.778373,52.109479],[-1.773932,52.110631],[-1.771013,52.111874],[-1.767649,52.112593],[-1.759201,52.114966],[-1.760285,52.116251],[-1.76246,52.115233],[-1.763223,52.116366],[-1.764632,52.115885],[-1.7697,52.115314],[-1.770589,52.116124],[-1.773092,52.116792],[-1.775105,52.118204],[-1.778423,52.11828],[-1.780699,52.119016],[-1.780628,52.120143],[-1.78777,52.119511],[-1.791004,52.120194],[-1.793318,52.121778],[-1.792992,52.122862],[-1.793913,52.123867],[-1.795774,52.124442],[-1.793319,52.125464],[-1.79277,52.127824],[-1.790273,52.128951],[-1.789208,52.129844],[-1.789925,52.130486],[-1.786583,52.131367],[-1.785548,52.132059],[-1.79967,52.136277],[-1.802346,52.137637],[-1.808434,52.139876],[-1.810889,52.13992],[-1.81732,52.138596],[-1.823218,52.136382],[-1.824854,52.137449],[-1.824612,52.138725],[-1.827845,52.141245],[-1.825443,52.141812],[-1.825304,52.14271],[-1.823348,52.145925],[-1.828675,52.146345],[-1.83147,52.145674],[-1.831004,52.148307],[-1.833543,52.148137],[-1.83752,52.150437],[-1.839319,52.151803],[-1.839672,52.152714],[-1.84823,52.149973],[-1.847563,52.148634],[-1.851904,52.14797],[-1.850971,52.146471],[-1.846909,52.147186],[-1.84581,52.142654],[-1.847295,52.141888],[-1.848338,52.140347],[-1.849837,52.139384],[-1.854188,52.138521],[-1.859708,52.140509],[-1.863266,52.142846],[-1.866962,52.14464],[-1.865727,52.145961],[-1.863878,52.147038],[-1.866802,52.150068],[-1.866107,52.150305],[-1.866927,52.153008],[-1.869076,52.153166],[-1.876154,52.154839],[-1.8789,52.155058],[-1.88064,52.154853],[-1.882657,52.155976],[-1.883827,52.155811],[-1.885522,52.156422],[-1.886527,52.156115],[-1.889104,52.156349],[-1.891812,52.155066],[-1.892067,52.154155],[-1.893859,52.151938],[-1.893507,52.151089],[-1.895067,52.150805],[-1.89423,52.148251],[-1.891856,52.147878],[-1.890475,52.148852],[-1.88973,52.148432],[-1.88634,52.148566],[-1.885009,52.147498],[-1.885118,52.146853],[-1.888253,52.143518],[-1.890578,52.141705],[-1.892904,52.13861],[-1.900216,52.135726],[-1.90126,52.134752],[-1.902604,52.134253],[-1.902189,52.137723],[-1.904184,52.140019],[-1.904357,52.14154],[-1.9051,52.142737],[-1.907323,52.142737],[-1.910887,52.144378],[-1.913433,52.144984],[-1.916878,52.146716],[-1.91838,52.149353],[-1.921887,52.153006],[-1.93361,52.153528],[-1.940077,52.153042],[-1.942127,52.154396],[-1.944303,52.155333],[-1.941982,52.157269],[-1.939227,52.158907],[-1.939693,52.160316],[-1.937736,52.16131],[-1.937299,52.163408],[-1.934119,52.165394],[-1.934957,52.165992],[-1.934554,52.167825],[-1.935343,52.168248],[-1.935483,52.169557],[-1.943475,52.170935],[-1.945546,52.170356],[-1.947213,52.167948],[-1.95137,52.169191],[-1.960408,52.168672],[-1.960448,52.16951],[-1.961966,52.170736],[-1.961669,52.172529],[-1.960675,52.174025],[-1.956108,52.174151],[-1.949409,52.172955],[-1.944576,52.174766],[-1.941352,52.177819],[-1.939775,52.18171],[-1.939116,52.185291],[-1.937709,52.188215],[-1.935853,52.18987],[-1.935756,52.191241],[-1.934841,52.192893],[-1.936583,52.197134],[-1.935666,52.199992],[-1.936478,52.200706],[-1.936567,52.202512],[-1.935634,52.204121],[-1.933656,52.206111],[-1.932092,52.20645],[-1.93034,52.208027],[-1.926776,52.208928],[-1.923176,52.208854],[-1.921832,52.21021],[-1.920118,52.210263],[-1.919772,52.214059],[-1.917423,52.218346],[-1.917522,52.223825],[-1.920945,52.229929],[-1.923865,52.234109],[-1.925356,52.23818],[-1.925444,52.239015],[-1.923922,52.240184],[-1.925432,52.242571],[-1.926697,52.242749],[-1.928182,52.244835],[-1.931911,52.247553],[-1.931241,52.247881],[-1.933669,52.249822],[-1.934611,52.252018],[-1.939097,52.251742],[-1.942221,52.25175],[-1.946054,52.251183],[-1.947426,52.24829],[-1.949774,52.248101],[-1.951661,52.24717],[-1.951262,52.245085],[-1.952995,52.243682],[-1.95503,52.244069],[-1.957606,52.24282],[-1.957881,52.241693],[-1.959552,52.240685],[-1.961387,52.240774],[-1.963205,52.239839],[-1.965,52.240115],[-1.966203,52.239104],[-1.967585,52.237025],[-1.972927,52.237579],[-1.97508,52.236758],[-1.981612,52.238203],[-1.983522,52.237681],[-1.990372,52.23842],[-1.991324,52.239474],[-1.994023,52.239861],[-1.993081,52.236294],[-1.994656,52.235271],[-1.9974,52.235773],[-1.997488,52.236189],[-2.005853,52.235589],[-2.006424,52.23627],[-2.007958,52.236671],[-2.009518,52.236101],[-2.014474,52.236697],[-2.01674,52.237275],[-2.018864,52.240508],[-2.01891,52.241472],[-2.017886,52.243666],[-2.017275,52.247075],[-2.015414,52.252372],[-2.013725,52.253235],[-2.01311,52.255403],[-2.013764,52.25647],[-2.013334,52.257633],[-2.011355,52.26008],[-2.01124,52.262885],[-2.012091,52.26304],[-2.013987,52.26568],[-2.01324,52.266128],[-2.01539,52.267251],[-2.01553,52.270002],[-2.009796,52.270905],[-2.007162,52.270253],[-2.00583,52.270593],[-2.004208,52.272022],[-2.003198,52.273632],[-2.007044,52.275386],[-2.005404,52.275677],[-2.002492,52.276805],[-2.00391,52.278605],[-2.00246,52.279582],[-2.005018,52.279086],[-2.006309,52.278531],[-2.00797,52.278681],[-2.009154,52.27806],[-2.010354,52.278743],[-2.011693,52.278366],[-2.01505,52.278516],[-2.02002,52.279554],[-2.020915,52.278727],[-2.022901,52.278433],[-2.024819,52.280382],[-2.027616,52.28101],[-2.030467,52.282544],[-2.033888,52.282639],[-2.038388,52.28563],[-2.041525,52.286517],[-2.043319,52.287398],[-2.047012,52.287863],[-2.051201,52.286972],[-2.055543,52.284705],[-2.057812,52.284292],[-2.060889,52.284194],[-2.061853,52.284743],[-2.070821,52.287292],[-2.074196,52.288635],[-2.076742,52.289079],[-2.084296,52.28886],[-2.087585,52.289049],[-2.089338,52.289485],[-2.09169,52.288561],[-2.087515,52.294275],[-2.084881,52.296953],[-2.087678,52.303519],[-2.089683,52.303404],[-2.090402,52.304922],[-2.088708,52.306339],[-2.087232,52.309894],[-2.085278,52.312141],[-2.085164,52.313499],[-2.08633,52.314525],[-2.095104,52.313366],[-2.095643,52.314543],[-2.098799,52.313586],[-2.102167,52.31345],[-2.107514,52.314431],[-2.10996,52.314609],[-2.11234,52.314426],[-2.114482,52.313459],[-2.117126,52.313145],[-2.124055,52.314503],[-2.122194,52.316625],[-2.118591,52.31904],[-2.115748,52.322097],[-2.117863,52.323032],[-2.11859,52.325171],[-2.117298,52.325177],[-2.117614,52.326568],[-2.11615,52.3271],[-2.118475,52.332088],[-2.117533,52.335331],[-2.11523,52.335129],[-2.113515,52.336318],[-2.113283,52.337162],[-2.114198,52.338522],[-2.116465,52.338764],[-2.117417,52.341634],[-2.119283,52.341458],[-2.121291,52.340334],[-2.124681,52.340264],[-2.124752,52.341993],[-2.123094,52.342764],[-2.125341,52.343947],[-2.126386,52.345569],[-2.129032,52.345641],[-2.131471,52.34708],[-2.129086,52.350677],[-2.127325,52.351975],[-2.129723,52.352049],[-2.132006,52.350117],[-2.133017,52.348013],[-2.137169,52.34998]]]},"properties":{"LAD22CD":"E07000238","LAD22NM":"Wychavon","BNG_E":398991,"BNG_N":247839,"LONG":-2.01614,"LAT":52.12886,"GlobalID":"79a5e6e2-b8f6-4719-bbf4-a0b3a2f63d24"},"id":232}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.167707,52.42378],[-2.172043,52.425034],[-2.180692,52.425159],[-2.181701,52.424906],[-2.184029,52.425915],[-2.185809,52.42621],[-2.189046,52.425244],[-2.191387,52.423681],[-2.192876,52.423292],[-2.196346,52.424827],[-2.196948,52.425638],[-2.196327,52.427176],[-2.196996,52.427755],[-2.200837,52.427127],[-2.202639,52.427753],[-2.203699,52.428595],[-2.206441,52.429498],[-2.208593,52.429411],[-2.211352,52.430435],[-2.212112,52.432708],[-2.214673,52.431873],[-2.215685,52.432144],[-2.215995,52.433345],[-2.217348,52.43389],[-2.216638,52.434552],[-2.217877,52.435368],[-2.219209,52.435111],[-2.226747,52.435126],[-2.240551,52.436386],[-2.244,52.437378],[-2.248638,52.437769],[-2.254277,52.437636],[-2.256092,52.43715],[-2.260225,52.437212],[-2.261503,52.436941],[-2.261927,52.439337],[-2.262731,52.440705],[-2.264763,52.440381],[-2.266677,52.439218],[-2.269505,52.438616],[-2.272042,52.439722],[-2.275232,52.440253],[-2.279431,52.44341],[-2.286068,52.443842],[-2.285953,52.444535],[-2.287187,52.445654],[-2.28714,52.446619],[-2.291087,52.448456],[-2.294964,52.448948],[-2.286096,52.454752],[-2.287383,52.455317],[-2.293777,52.451218],[-2.295936,52.450557],[-2.30097,52.447963],[-2.303328,52.44753],[-2.304111,52.446442],[-2.306185,52.445946],[-2.30697,52.444967],[-2.306814,52.443898],[-2.309597,52.441827],[-2.310169,52.440854],[-2.310143,52.437883],[-2.31175,52.437531],[-2.321551,52.436219],[-2.325186,52.437497],[-2.325956,52.438301],[-2.329115,52.437447],[-2.333119,52.435355],[-2.337068,52.436644],[-2.338776,52.435826],[-2.340617,52.437044],[-2.342742,52.437593],[-2.343939,52.438805],[-2.345109,52.439333],[-2.350781,52.438306],[-2.352776,52.438697],[-2.355352,52.439821],[-2.359726,52.439563],[-2.360937,52.439744],[-2.363528,52.439426],[-2.363298,52.437158],[-2.364156,52.431939],[-2.362766,52.425777],[-2.363829,52.425964],[-2.363934,52.424539],[-2.366559,52.423045],[-2.36518,52.421776],[-2.365929,52.419153],[-2.364681,52.41778],[-2.366493,52.41649],[-2.367648,52.414406],[-2.366672,52.412121],[-2.367223,52.41051],[-2.365936,52.409191],[-2.366021,52.407817],[-2.368894,52.404147],[-2.372946,52.401964],[-2.369961,52.401505],[-2.364266,52.399246],[-2.361313,52.398985],[-2.357155,52.397862],[-2.351572,52.395963],[-2.347391,52.393697],[-2.345972,52.393816],[-2.343432,52.393089],[-2.342182,52.393178],[-2.334037,52.388782],[-2.333593,52.388205],[-2.335533,52.385347],[-2.337236,52.38552],[-2.339546,52.384405],[-2.34207,52.384832],[-2.343524,52.385941],[-2.346577,52.385997],[-2.34923,52.385552],[-2.350146,52.385725],[-2.350637,52.387728],[-2.352633,52.388937],[-2.354533,52.388908],[-2.355823,52.388175],[-2.360033,52.386775],[-2.361263,52.387009],[-2.363052,52.388153],[-2.367352,52.388063],[-2.371668,52.385854],[-2.374486,52.384742],[-2.375639,52.384732],[-2.377912,52.383151],[-2.382644,52.384136],[-2.387442,52.384488],[-2.389297,52.383214],[-2.38918,52.382102],[-2.390673,52.381528],[-2.39204,52.382598],[-2.392462,52.383718],[-2.393594,52.384371],[-2.401375,52.382579],[-2.405379,52.383065],[-2.406839,52.383956],[-2.407425,52.385267],[-2.407246,52.38616],[-2.408624,52.387018],[-2.410474,52.387153],[-2.411114,52.386123],[-2.411001,52.385057],[-2.412391,52.383672],[-2.413375,52.381999],[-2.414728,52.381242],[-2.415159,52.378984],[-2.414798,52.377891],[-2.413073,52.376793],[-2.412942,52.376088],[-2.411656,52.375549],[-2.41032,52.3741],[-2.409624,52.37261],[-2.410397,52.371466],[-2.410397,52.370019],[-2.412091,52.369551],[-2.413348,52.368646],[-2.414924,52.368255],[-2.41507,52.366491],[-2.416155,52.364616],[-2.414996,52.362828],[-2.413353,52.361284],[-2.413314,52.360716],[-2.411789,52.359563],[-2.411753,52.357783],[-2.413996,52.355414],[-2.414019,52.35477],[-2.417581,52.352107],[-2.419525,52.351393],[-2.422069,52.349028],[-2.42208,52.346946],[-2.420962,52.345592],[-2.420521,52.344159],[-2.421526,52.343331],[-2.420693,52.342334],[-2.422724,52.338635],[-2.42495,52.33669],[-2.423669,52.336132],[-2.423295,52.335254],[-2.421188,52.333601],[-2.420992,52.33306],[-2.426097,52.332368],[-2.428564,52.330538],[-2.433068,52.329905],[-2.433654,52.328591],[-2.433396,52.3275],[-2.434904,52.326648],[-2.43651,52.324027],[-2.434084,52.322644],[-2.431466,52.32285],[-2.428067,52.322311],[-2.427165,52.32188],[-2.424074,52.322681],[-2.41815,52.32291],[-2.417481,52.322416],[-2.415569,52.3225],[-2.415088,52.323927],[-2.413363,52.325475],[-2.412235,52.324882],[-2.403412,52.324034],[-2.40301,52.32673],[-2.397788,52.324953],[-2.394553,52.321877],[-2.389537,52.321227],[-2.387574,52.322386],[-2.385239,52.322687],[-2.381062,52.324255],[-2.37944,52.324161],[-2.375841,52.325206],[-2.374797,52.325112],[-2.371747,52.326547],[-2.369817,52.326807],[-2.370351,52.32372],[-2.372341,52.321623],[-2.372237,52.320231],[-2.373198,52.319729],[-2.371239,52.317341],[-2.369247,52.317302],[-2.366837,52.318045],[-2.365821,52.317863],[-2.363283,52.314851],[-2.359456,52.315381],[-2.358194,52.316278],[-2.352822,52.318518],[-2.352127,52.319243],[-2.345486,52.320484],[-2.339692,52.320014],[-2.336466,52.31869],[-2.332041,52.319256],[-2.331258,52.319897],[-2.329044,52.320236],[-2.324171,52.323235],[-2.323889,52.323785],[-2.325689,52.324288],[-2.32466,52.32532],[-2.324475,52.326663],[-2.323329,52.327427],[-2.321962,52.330186],[-2.319681,52.33153],[-2.321957,52.332132],[-2.323405,52.333421],[-2.324452,52.333704],[-2.32383,52.335332],[-2.320878,52.33693],[-2.318216,52.337444],[-2.315678,52.338595],[-2.314398,52.33983],[-2.310932,52.34055],[-2.309086,52.339719],[-2.306412,52.339181],[-2.305265,52.337778],[-2.304826,52.335772],[-2.307081,52.336134],[-2.30864,52.33529],[-2.305331,52.335138],[-2.30615,52.333563],[-2.303877,52.332858],[-2.305287,52.332013],[-2.304671,52.330948],[-2.304526,52.329244],[-2.303292,52.328109],[-2.299164,52.32236],[-2.296576,52.323211],[-2.294579,52.32191],[-2.290275,52.323127],[-2.291363,52.324673],[-2.287066,52.325799],[-2.279867,52.326896],[-2.277911,52.32775],[-2.276915,52.327401],[-2.275532,52.328022],[-2.275654,52.328731],[-2.27389,52.328932],[-2.271938,52.326966],[-2.266415,52.323605],[-2.264642,52.323408],[-2.264398,52.325572],[-2.261153,52.326401],[-2.260369,52.328307],[-2.261947,52.329459],[-2.265549,52.330131],[-2.269375,52.331852],[-2.271776,52.332632],[-2.267965,52.333754],[-2.269715,52.335166],[-2.269213,52.336283],[-2.268061,52.336646],[-2.26633,52.335938],[-2.264075,52.335948],[-2.263304,52.336855],[-2.263096,52.338141],[-2.260733,52.33842],[-2.261721,52.339683],[-2.261226,52.340665],[-2.257016,52.341697],[-2.254002,52.341128],[-2.252014,52.344378],[-2.249513,52.345675],[-2.251682,52.345857],[-2.249444,52.34886],[-2.245822,52.353027],[-2.246763,52.353252],[-2.245703,52.354923],[-2.248261,52.355463],[-2.245684,52.361036],[-2.242962,52.360833],[-2.241607,52.36035],[-2.233735,52.361032],[-2.230044,52.361083],[-2.220079,52.359363],[-2.211811,52.355942],[-2.210196,52.355001],[-2.210593,52.354454],[-2.207866,52.353267],[-2.207449,52.351542],[-2.205311,52.350749],[-2.204665,52.347765],[-2.205023,52.345633],[-2.202929,52.345198],[-2.200934,52.34428],[-2.19558,52.34128],[-2.195203,52.340367],[-2.193916,52.34],[-2.193048,52.338878],[-2.193012,52.337956],[-2.191944,52.337382],[-2.193461,52.335309],[-2.192626,52.334622],[-2.192484,52.333491],[-2.190466,52.331992],[-2.190467,52.328938],[-2.187262,52.329209],[-2.185005,52.330079],[-2.182721,52.330363],[-2.181233,52.331049],[-2.17794,52.331763],[-2.175247,52.331369],[-2.173654,52.331743],[-2.170801,52.331576],[-2.172076,52.328551],[-2.173155,52.327853],[-2.174702,52.324623],[-2.175307,52.319837],[-2.174538,52.316651],[-2.173049,52.317286],[-2.16908,52.317249],[-2.166799,52.318388],[-2.167901,52.319315],[-2.167516,52.320346],[-2.167641,52.324458],[-2.164476,52.325986],[-2.163284,52.327523],[-2.159909,52.330227],[-2.157606,52.330967],[-2.156068,52.331052],[-2.156506,52.332816],[-2.155034,52.33394],[-2.154381,52.335265],[-2.151926,52.337002],[-2.152589,52.338798],[-2.151956,52.341535],[-2.150962,52.343678],[-2.148859,52.346308],[-2.146258,52.345243],[-2.143129,52.346746],[-2.142044,52.347967],[-2.13924,52.348365],[-2.137169,52.34998],[-2.135527,52.351591],[-2.135342,52.353051],[-2.134115,52.353282],[-2.132466,52.354655],[-2.132427,52.355372],[-2.131246,52.356487],[-2.130759,52.35793],[-2.128545,52.358474],[-2.125801,52.358662],[-2.124314,52.359282],[-2.121425,52.358858],[-2.119213,52.357889],[-2.119566,52.359526],[-2.120967,52.360606],[-2.1209,52.363022],[-2.120096,52.363848],[-2.12209,52.366853],[-2.123135,52.372993],[-2.124352,52.374211],[-2.128447,52.382123],[-2.131119,52.385381],[-2.132521,52.386196],[-2.131461,52.387886],[-2.129896,52.388797],[-2.132251,52.390007],[-2.133395,52.391883],[-2.137701,52.393899],[-2.136192,52.395394],[-2.137856,52.395526],[-2.135182,52.398566],[-2.132034,52.39819],[-2.129236,52.400762],[-2.126023,52.402244],[-2.126248,52.403304],[-2.127733,52.40462],[-2.128496,52.406052],[-2.134036,52.4103],[-2.144501,52.411403],[-2.144255,52.41002],[-2.145736,52.409567],[-2.154466,52.409799],[-2.158264,52.409284],[-2.160322,52.416477],[-2.162016,52.416169],[-2.163953,52.417144],[-2.163928,52.419219],[-2.164671,52.42151],[-2.167707,52.42378]]]},"properties":{"LAD22CD":"E07000239","LAD22NM":"Wyre Forest","BNG_E":384106,"BNG_N":276388,"LONG":-2.23494,"LAT":52.3853,"GlobalID":"f9027a4e-12ed-4bb9-affd-8c623417709f"},"id":233}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.273536,51.835365],[-0.280095,51.834736],[-0.284541,51.834936],[-0.290787,51.835673],[-0.29199,51.834806],[-0.29599,51.834307],[-0.295841,51.834872],[-0.298343,51.835339],[-0.299395,51.834928],[-0.301076,51.835737],[-0.302538,51.835945],[-0.30532,51.835146],[-0.307792,51.835103],[-0.315539,51.836366],[-0.319398,51.836655],[-0.320372,51.837905],[-0.322251,51.839083],[-0.323318,51.843105],[-0.323226,51.844836],[-0.327707,51.846792],[-0.329381,51.846925],[-0.333379,51.84804],[-0.337075,51.848635],[-0.339486,51.849606],[-0.341455,51.848337],[-0.342277,51.847394],[-0.342039,51.846641],[-0.344305,51.845376],[-0.352858,51.842154],[-0.356031,51.840513],[-0.357672,51.840016],[-0.358967,51.841408],[-0.363303,51.842105],[-0.364058,51.841183],[-0.36495,51.837917],[-0.367526,51.835105],[-0.36854,51.832868],[-0.36873,51.831083],[-0.370766,51.830567],[-0.373229,51.829269],[-0.373959,51.829191],[-0.380838,51.831103],[-0.39274,51.835572],[-0.398,51.837183],[-0.404859,51.840607],[-0.4086,51.838789],[-0.412687,51.838119],[-0.416313,51.835703],[-0.417588,51.831994],[-0.417937,51.828685],[-0.419939,51.825887],[-0.418975,51.822731],[-0.419727,51.820955],[-0.414112,51.819086],[-0.415494,51.818227],[-0.421815,51.815797],[-0.42429,51.813045],[-0.427501,51.81163],[-0.42717,51.809744],[-0.428829,51.806765],[-0.425204,51.804854],[-0.422897,51.803273],[-0.420952,51.802256],[-0.415923,51.802069],[-0.411969,51.800279],[-0.412439,51.799136],[-0.409363,51.797306],[-0.411428,51.795312],[-0.412161,51.793325],[-0.41366,51.793315],[-0.413368,51.791185],[-0.416409,51.790849],[-0.419722,51.79098],[-0.427305,51.792076],[-0.429951,51.79044],[-0.434897,51.789042],[-0.440584,51.786878],[-0.439391,51.78453],[-0.434625,51.780189],[-0.432959,51.779647],[-0.430324,51.777545],[-0.431458,51.776663],[-0.430707,51.77328],[-0.430822,51.771888],[-0.43008,51.77021],[-0.428443,51.770241],[-0.429739,51.767905],[-0.42589,51.76639],[-0.422832,51.76599],[-0.423357,51.762479],[-0.422819,51.760156],[-0.423461,51.756277],[-0.42439,51.753818],[-0.425702,51.752886],[-0.423746,51.750688],[-0.421025,51.748761],[-0.424044,51.745706],[-0.424567,51.745825],[-0.426557,51.744343],[-0.423771,51.742626],[-0.42208,51.740837],[-0.418131,51.737186],[-0.418148,51.735336],[-0.416165,51.732612],[-0.415228,51.73202],[-0.411888,51.732075],[-0.410116,51.729969],[-0.409274,51.725815],[-0.4075,51.725641],[-0.406599,51.724418],[-0.409363,51.723725],[-0.40954,51.721888],[-0.408923,51.72128],[-0.40246,51.721159],[-0.403454,51.719635],[-0.402557,51.71807],[-0.405873,51.7138],[-0.404419,51.713415],[-0.404991,51.712544],[-0.403015,51.712174],[-0.39642,51.709509],[-0.392717,51.708418],[-0.383655,51.7076],[-0.380775,51.706989],[-0.380803,51.705202],[-0.378732,51.70427],[-0.37886,51.701692],[-0.377213,51.701667],[-0.377164,51.700036],[-0.376175,51.698157],[-0.376466,51.69702],[-0.375723,51.695618],[-0.375943,51.693832],[-0.375558,51.692912],[-0.375358,51.692512],[-0.374208,51.689543],[-0.371999,51.687591],[-0.369624,51.687987],[-0.366765,51.689132],[-0.364185,51.689344],[-0.362759,51.689136],[-0.359087,51.690661],[-0.358213,51.691474],[-0.355736,51.691555],[-0.356029,51.692968],[-0.355868,51.695303],[-0.356569,51.696042],[-0.355408,51.698044],[-0.353624,51.698485],[-0.352542,51.697804],[-0.351027,51.69864],[-0.350542,51.699395],[-0.347792,51.698434],[-0.346063,51.69877],[-0.344255,51.697881],[-0.342253,51.697596],[-0.33685,51.697719],[-0.335042,51.698149],[-0.334082,51.698804],[-0.33336,51.701514],[-0.332101,51.702136],[-0.329561,51.702148],[-0.326711,51.703484],[-0.325954,51.70231],[-0.324642,51.697291],[-0.322332,51.69348],[-0.318309,51.69507],[-0.316175,51.696681],[-0.313296,51.696195],[-0.311323,51.697296],[-0.30923,51.697898],[-0.306327,51.697708],[-0.30002,51.696525],[-0.301029,51.698584],[-0.299267,51.69938],[-0.301976,51.708067],[-0.295222,51.709155],[-0.293969,51.709792],[-0.29576,51.711185],[-0.286491,51.713138],[-0.283846,51.714262],[-0.283498,51.714815],[-0.279621,51.717492],[-0.278831,51.719241],[-0.276954,51.721285],[-0.280863,51.720854],[-0.28231,51.721485],[-0.285917,51.720785],[-0.286393,51.72118],[-0.284119,51.722884],[-0.283671,51.724287],[-0.289467,51.72799],[-0.289022,51.728888],[-0.285298,51.731656],[-0.284365,51.732949],[-0.282703,51.73378],[-0.276524,51.735215],[-0.272979,51.735429],[-0.270195,51.737111],[-0.26611,51.738145],[-0.264281,51.737883],[-0.262117,51.736719],[-0.260056,51.733924],[-0.255136,51.729537],[-0.249754,51.731174],[-0.25035,51.73258],[-0.2483,51.732445],[-0.246852,51.731481],[-0.244428,51.731892],[-0.245968,51.734328],[-0.246457,51.738161],[-0.244846,51.741139],[-0.241581,51.742402],[-0.242609,51.744595],[-0.242382,51.745002],[-0.245592,51.751771],[-0.249507,51.749245],[-0.253059,51.747717],[-0.255874,51.749264],[-0.255075,51.749976],[-0.257295,51.751848],[-0.255747,51.753432],[-0.258082,51.754691],[-0.257114,51.754953],[-0.259266,51.756183],[-0.261252,51.758525],[-0.25864,51.760246],[-0.262537,51.763329],[-0.262356,51.763625],[-0.268834,51.769793],[-0.271902,51.769078],[-0.273326,51.770654],[-0.275838,51.772249],[-0.27554,51.772936],[-0.276905,51.774911],[-0.277428,51.77808],[-0.274041,51.782802],[-0.273918,51.786556],[-0.272603,51.788001],[-0.271212,51.79101],[-0.271579,51.791969],[-0.274391,51.794191],[-0.277543,51.797786],[-0.276729,51.798085],[-0.275297,51.799706],[-0.269774,51.800654],[-0.263746,51.802436],[-0.256461,51.803263],[-0.252962,51.805115],[-0.250994,51.805454],[-0.248957,51.80647],[-0.245868,51.807086],[-0.243783,51.809383],[-0.243429,51.812792],[-0.246622,51.81479],[-0.248312,51.816834],[-0.248644,51.818241],[-0.250189,51.81971],[-0.251649,51.820341],[-0.252259,51.821717],[-0.255164,51.822655],[-0.261496,51.828385],[-0.263669,51.832409],[-0.265057,51.833842],[-0.266587,51.83452],[-0.273536,51.835365]]]},"properties":{"LAD22CD":"E07000240","LAD22NM":"St Albans","BNG_E":514580,"BNG_N":209623,"LONG":-0.3407,"LAT":51.77356,"GlobalID":"bdff77c1-1336-4ef9-9178-5ace32d137e8"},"id":234}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.172785,51.856588],[-0.175994,51.856754],[-0.176075,51.858514],[-0.178582,51.859043],[-0.180961,51.860133],[-0.185895,51.860246],[-0.186403,51.859423],[-0.189665,51.857799],[-0.190499,51.858227],[-0.191813,51.85732],[-0.196832,51.85938],[-0.1976,51.857694],[-0.198742,51.857772],[-0.200098,51.856451],[-0.200887,51.856627],[-0.20422,51.85504],[-0.204945,51.855276],[-0.20669,51.854263],[-0.205173,51.853305],[-0.203644,51.85323],[-0.202004,51.85152],[-0.199063,51.849732],[-0.197635,51.85023],[-0.196415,51.849549],[-0.197176,51.848926],[-0.197555,51.846138],[-0.19943,51.844592],[-0.199163,51.843957],[-0.201462,51.843536],[-0.203948,51.844899],[-0.205414,51.84438],[-0.208129,51.841965],[-0.210602,51.840443],[-0.211987,51.840574],[-0.214572,51.839603],[-0.215244,51.840046],[-0.212705,51.841567],[-0.212181,51.842495],[-0.208233,51.844697],[-0.205963,51.846399],[-0.208716,51.84758],[-0.211301,51.849358],[-0.210414,51.849854],[-0.212926,51.851396],[-0.2165,51.848948],[-0.21826,51.846634],[-0.222346,51.844699],[-0.223025,51.84622],[-0.223949,51.84664],[-0.225758,51.844544],[-0.225996,51.843719],[-0.223423,51.841314],[-0.224195,51.840215],[-0.222577,51.839009],[-0.218682,51.838414],[-0.220192,51.837621],[-0.219847,51.836688],[-0.223402,51.835305],[-0.221657,51.834097],[-0.224911,51.833234],[-0.226372,51.834464],[-0.226925,51.835895],[-0.225681,51.837645],[-0.229129,51.836064],[-0.230727,51.836771],[-0.235989,51.836239],[-0.23708,51.836451],[-0.239009,51.834994],[-0.240435,51.834959],[-0.242427,51.835886],[-0.241714,51.836343],[-0.244904,51.838822],[-0.244953,51.839417],[-0.243043,51.841805],[-0.243011,51.842726],[-0.245028,51.843511],[-0.245275,51.844583],[-0.247959,51.846234],[-0.253945,51.844537],[-0.257025,51.845448],[-0.259559,51.844759],[-0.266394,51.841776],[-0.268129,51.842208],[-0.27302,51.83969],[-0.272795,51.836506],[-0.273536,51.835365],[-0.266587,51.83452],[-0.265057,51.833842],[-0.263669,51.832409],[-0.261496,51.828385],[-0.255164,51.822655],[-0.252259,51.821717],[-0.251649,51.820341],[-0.250189,51.81971],[-0.248644,51.818241],[-0.248312,51.816834],[-0.246622,51.81479],[-0.243429,51.812792],[-0.243783,51.809383],[-0.245868,51.807086],[-0.248957,51.80647],[-0.250994,51.805454],[-0.252962,51.805115],[-0.256461,51.803263],[-0.263746,51.802436],[-0.269774,51.800654],[-0.275297,51.799706],[-0.276729,51.798085],[-0.277543,51.797786],[-0.274391,51.794191],[-0.271579,51.791969],[-0.271212,51.79101],[-0.272603,51.788001],[-0.273918,51.786556],[-0.274041,51.782802],[-0.277428,51.77808],[-0.276905,51.774911],[-0.27554,51.772936],[-0.275838,51.772249],[-0.273326,51.770654],[-0.271902,51.769078],[-0.268834,51.769793],[-0.262356,51.763625],[-0.262537,51.763329],[-0.25864,51.760246],[-0.261252,51.758525],[-0.259266,51.756183],[-0.257114,51.754953],[-0.258082,51.754691],[-0.255747,51.753432],[-0.257295,51.751848],[-0.255075,51.749976],[-0.255874,51.749264],[-0.253059,51.747717],[-0.249507,51.749245],[-0.245592,51.751771],[-0.242382,51.745002],[-0.242609,51.744595],[-0.241581,51.742402],[-0.244846,51.741139],[-0.246457,51.738161],[-0.245968,51.734328],[-0.244428,51.731892],[-0.246852,51.731481],[-0.2483,51.732445],[-0.25035,51.73258],[-0.249754,51.731174],[-0.255136,51.729537],[-0.252253,51.726755],[-0.250784,51.724625],[-0.241063,51.715778],[-0.240539,51.713125],[-0.241048,51.710421],[-0.239292,51.707929],[-0.238972,51.706142],[-0.237331,51.705919],[-0.235197,51.710095],[-0.234271,51.710761],[-0.232233,51.71138],[-0.229744,51.711677],[-0.227036,51.712697],[-0.22337,51.71284],[-0.221048,51.713569],[-0.218394,51.713713],[-0.214752,51.711276],[-0.210792,51.710267],[-0.207751,51.710405],[-0.206486,51.709638],[-0.204737,51.709913],[-0.202622,51.709741],[-0.199431,51.709858],[-0.195804,51.7092],[-0.194614,51.708298],[-0.190458,51.707082],[-0.189857,51.707809],[-0.187633,51.706988],[-0.183327,51.706522],[-0.181422,51.706006],[-0.177736,51.703964],[-0.173721,51.702643],[-0.172115,51.702742],[-0.169722,51.701489],[-0.164497,51.700397],[-0.163118,51.699858],[-0.163493,51.688115],[-0.157992,51.687241],[-0.153258,51.685857],[-0.14937,51.685518],[-0.144658,51.686335],[-0.138401,51.688209],[-0.13465,51.688807],[-0.13025,51.688916],[-0.122183,51.688546],[-0.118099,51.688963],[-0.112897,51.690822],[-0.109621,51.691493],[-0.105779,51.691876],[-0.106061,51.692618],[-0.105668,51.694344],[-0.106401,51.696747],[-0.107491,51.705514],[-0.107172,51.707998],[-0.107568,51.711171],[-0.107332,51.712789],[-0.105529,51.71357],[-0.108021,51.714119],[-0.111876,51.717073],[-0.113379,51.718707],[-0.114083,51.720807],[-0.110239,51.723176],[-0.107938,51.72533],[-0.10751,51.725358],[-0.105487,51.727681],[-0.105265,51.728911],[-0.103138,51.729246],[-0.101851,51.730122],[-0.102378,51.731745],[-0.101459,51.732976],[-0.098654,51.735946],[-0.096989,51.737695],[-0.095768,51.740674],[-0.092141,51.743209],[-0.096105,51.744411],[-0.101194,51.745133],[-0.102381,51.742808],[-0.105188,51.741558],[-0.108636,51.741788],[-0.112563,51.74156],[-0.116639,51.742147],[-0.120746,51.741678],[-0.123667,51.741726],[-0.125949,51.74129],[-0.128383,51.74142],[-0.128266,51.739216],[-0.135008,51.73891],[-0.138408,51.737276],[-0.138388,51.739025],[-0.139087,51.739986],[-0.139,51.742314],[-0.139654,51.744315],[-0.138591,51.747635],[-0.138633,51.750636],[-0.138159,51.751513],[-0.142678,51.754719],[-0.14378,51.757497],[-0.142894,51.758354],[-0.142716,51.76297],[-0.143453,51.767198],[-0.142616,51.769087],[-0.143415,51.773479],[-0.143269,51.774247],[-0.152443,51.780369],[-0.159129,51.786108],[-0.162472,51.787411],[-0.164559,51.789315],[-0.164825,51.790868],[-0.164528,51.792242],[-0.166705,51.792554],[-0.165278,51.793446],[-0.163976,51.794856],[-0.160329,51.796526],[-0.157677,51.796297],[-0.157406,51.798285],[-0.156006,51.799024],[-0.150228,51.79913],[-0.149997,51.801829],[-0.152723,51.802165],[-0.153901,51.803079],[-0.1566,51.804024],[-0.156608,51.804432],[-0.161399,51.805077],[-0.160016,51.807005],[-0.165944,51.809098],[-0.16846,51.809192],[-0.174012,51.810076],[-0.183598,51.815066],[-0.182292,51.817457],[-0.181261,51.817129],[-0.17969,51.819916],[-0.173814,51.823652],[-0.172731,51.824215],[-0.1713,51.827022],[-0.169469,51.828593],[-0.168433,51.831162],[-0.168354,51.832096],[-0.16981,51.834264],[-0.174215,51.836843],[-0.16987,51.838108],[-0.173505,51.839354],[-0.175537,51.838718],[-0.178528,51.841185],[-0.176802,51.841899],[-0.173404,51.839984],[-0.171996,51.84016],[-0.170003,51.83912],[-0.168883,51.839989],[-0.168907,51.843444],[-0.167431,51.843674],[-0.167165,51.844556],[-0.167307,51.847197],[-0.166715,51.84773],[-0.166438,51.849402],[-0.169623,51.854073],[-0.171607,51.854467],[-0.170909,51.855479],[-0.172785,51.856588]]]},"properties":{"LAD22CD":"E07000241","LAD22NM":"Welwyn Hatfield","BNG_E":525345,"BNG_N":208467,"LONG":-0.18518,"LAT":51.76087,"GlobalID":"3eb03562-0c08-408c-b4a6-4095d9cd4d81"},"id":235}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.069061,51.984043],[0.066907,51.979807],[0.064739,51.980443],[0.058428,51.981323],[0.04858,51.984567],[0.043714,51.984807],[0.043529,51.986029],[0.044573,51.986944],[0.042324,51.987264],[0.041706,51.98655],[0.038541,51.9864],[0.037756,51.986852],[0.037838,51.988461],[0.038346,51.988946],[0.035026,51.989629],[0.032269,51.987038],[0.026218,51.987984],[0.022648,51.988071],[0.023271,51.984371],[0.016211,51.983864],[0.015964,51.984149],[0.012722,51.98397],[0.012905,51.982475],[0.010089,51.982253],[0.008806,51.984795],[0.00701,51.984883],[0.00579,51.983755],[0.003475,51.983521],[0.002015,51.984241],[0.000248,51.983802],[-0.001503,51.986977],[-0.002024,51.989442],[-0.001246,51.98956],[-0.0018,51.99265],[-0.003036,51.993446],[-0.010009,51.993325],[-0.013498,51.996375],[-0.023734,51.99717],[-0.0231,51.996159],[-0.023096,51.994962],[-0.025652,51.995154],[-0.026487,51.98741],[-0.029931,51.987346],[-0.03153,51.984919],[-0.030629,51.983814],[-0.032735,51.983415],[-0.038104,51.981668],[-0.0406,51.981385],[-0.047953,51.979737],[-0.047084,51.978127],[-0.045302,51.978073],[-0.043506,51.977358],[-0.040876,51.974961],[-0.040037,51.973009],[-0.038535,51.971417],[-0.038582,51.969122],[-0.04019,51.967701],[-0.042176,51.967686],[-0.045915,51.964771],[-0.051146,51.962609],[-0.057025,51.958442],[-0.058825,51.957752],[-0.062635,51.957715],[-0.06554,51.956845],[-0.067078,51.959694],[-0.068444,51.964426],[-0.0696,51.966337],[-0.070723,51.971293],[-0.074657,51.971164],[-0.075319,51.969541],[-0.077716,51.969093],[-0.077873,51.967655],[-0.077183,51.967196],[-0.080236,51.966017],[-0.085914,51.961673],[-0.087613,51.961729],[-0.088732,51.960003],[-0.088364,51.959552],[-0.092525,51.956238],[-0.094194,51.956011],[-0.097464,51.954439],[-0.098246,51.955148],[-0.10433,51.953989],[-0.107012,51.953959],[-0.106247,51.94878],[-0.107263,51.946326],[-0.107543,51.943919],[-0.110155,51.941901],[-0.115703,51.942493],[-0.117005,51.94204],[-0.120165,51.942188],[-0.120806,51.940815],[-0.120527,51.939829],[-0.118427,51.937033],[-0.116675,51.936176],[-0.11755,51.93425],[-0.120584,51.930966],[-0.119144,51.930603],[-0.119283,51.928298],[-0.122365,51.929051],[-0.124783,51.929301],[-0.130027,51.931423],[-0.138339,51.932988],[-0.142771,51.932437],[-0.145267,51.934055],[-0.148499,51.933131],[-0.150694,51.931844],[-0.151656,51.930859],[-0.154799,51.9296],[-0.152267,51.926484],[-0.155245,51.925531],[-0.155244,51.923909],[-0.160048,51.921292],[-0.159923,51.920196],[-0.162186,51.920342],[-0.158829,51.91875],[-0.156711,51.916524],[-0.156346,51.914816],[-0.156385,51.909007],[-0.157955,51.905837],[-0.157338,51.904757],[-0.155493,51.903667],[-0.156523,51.903231],[-0.159459,51.903725],[-0.160117,51.901066],[-0.155797,51.900364],[-0.155072,51.898784],[-0.15302,51.898998],[-0.154599,51.895994],[-0.156348,51.894201],[-0.156152,51.892566],[-0.155167,51.892242],[-0.157933,51.888681],[-0.157386,51.886661],[-0.161144,51.884967],[-0.160103,51.884427],[-0.159127,51.885143],[-0.157097,51.885842],[-0.157291,51.886577],[-0.155121,51.887078],[-0.152591,51.885493],[-0.151296,51.885393],[-0.15499,51.882542],[-0.155437,51.878874],[-0.156102,51.877591],[-0.152997,51.876192],[-0.149583,51.875158],[-0.148103,51.872038],[-0.146818,51.870572],[-0.148421,51.869268],[-0.157167,51.871481],[-0.158698,51.872153],[-0.173585,51.875331],[-0.171197,51.873594],[-0.170396,51.871146],[-0.170573,51.870398],[-0.167229,51.868201],[-0.16725,51.865541],[-0.166667,51.863573],[-0.164495,51.861833],[-0.169529,51.859297],[-0.169019,51.858108],[-0.169628,51.857232],[-0.172785,51.856588],[-0.170909,51.855479],[-0.171607,51.854467],[-0.169623,51.854073],[-0.166438,51.849402],[-0.166715,51.84773],[-0.167307,51.847197],[-0.167165,51.844556],[-0.167431,51.843674],[-0.168907,51.843444],[-0.168883,51.839989],[-0.170003,51.83912],[-0.171996,51.84016],[-0.173404,51.839984],[-0.176802,51.841899],[-0.178528,51.841185],[-0.175537,51.838718],[-0.173505,51.839354],[-0.16987,51.838108],[-0.174215,51.836843],[-0.16981,51.834264],[-0.168354,51.832096],[-0.168433,51.831162],[-0.169469,51.828593],[-0.1713,51.827022],[-0.172731,51.824215],[-0.173814,51.823652],[-0.17969,51.819916],[-0.181261,51.817129],[-0.182292,51.817457],[-0.183598,51.815066],[-0.174012,51.810076],[-0.16846,51.809192],[-0.165944,51.809098],[-0.160016,51.807005],[-0.161399,51.805077],[-0.156608,51.804432],[-0.1566,51.804024],[-0.153901,51.803079],[-0.152723,51.802165],[-0.149997,51.801829],[-0.150228,51.79913],[-0.156006,51.799024],[-0.157406,51.798285],[-0.157677,51.796297],[-0.160329,51.796526],[-0.163976,51.794856],[-0.165278,51.793446],[-0.166705,51.792554],[-0.164528,51.792242],[-0.164825,51.790868],[-0.164559,51.789315],[-0.162472,51.787411],[-0.159129,51.786108],[-0.152443,51.780369],[-0.143269,51.774247],[-0.143415,51.773479],[-0.142616,51.769087],[-0.143453,51.767198],[-0.142716,51.76297],[-0.142894,51.758354],[-0.14378,51.757497],[-0.142678,51.754719],[-0.138159,51.751513],[-0.138633,51.750636],[-0.138591,51.747635],[-0.139654,51.744315],[-0.139,51.742314],[-0.139087,51.739986],[-0.138388,51.739025],[-0.138408,51.737276],[-0.135008,51.73891],[-0.128266,51.739216],[-0.128383,51.74142],[-0.125949,51.74129],[-0.123667,51.741726],[-0.120746,51.741678],[-0.116639,51.742147],[-0.112563,51.74156],[-0.108636,51.741788],[-0.105188,51.741558],[-0.102381,51.742808],[-0.101194,51.745133],[-0.096105,51.744411],[-0.092141,51.743209],[-0.095768,51.740674],[-0.096989,51.737695],[-0.098654,51.735946],[-0.088801,51.735314],[-0.081247,51.734392],[-0.069177,51.734272],[-0.065437,51.734733],[-0.062856,51.734512],[-0.058351,51.7347],[-0.055079,51.736987],[-0.055076,51.740792],[-0.055466,51.742536],[-0.052409,51.742345],[-0.050759,51.744178],[-0.050746,51.747001],[-0.049931,51.750901],[-0.050306,51.750922],[-0.048848,51.761346],[-0.048783,51.764918],[-0.047896,51.768813],[-0.045619,51.770231],[-0.044606,51.770234],[-0.038879,51.772575],[-0.034646,51.772816],[-0.032591,51.773677],[-0.030354,51.77155],[-0.028207,51.7714],[-0.028012,51.772149],[-0.025455,51.772112],[-0.026078,51.774333],[-0.024174,51.774107],[-0.023027,51.773504],[-0.0212,51.773922],[-0.021225,51.775064],[-0.019976,51.775581],[-0.019456,51.778404],[-0.01992,51.779716],[-0.018125,51.779662],[-0.018134,51.780519],[-0.012708,51.780505],[-0.012468,51.779137],[0.005574,51.780069],[0.002005,51.77575],[0.002806,51.774025],[0.004159,51.772812],[0.005229,51.770923],[0.00731,51.769073],[0.00867,51.768545],[0.009196,51.767708],[0.010478,51.767301],[0.01205,51.766126],[0.012082,51.764922],[0.014029,51.76438],[0.015999,51.765602],[0.016649,51.766988],[0.018044,51.767281],[0.017447,51.768733],[0.018137,51.769695],[0.026799,51.77418],[0.030834,51.775198],[0.035787,51.775746],[0.042314,51.775131],[0.046775,51.775319],[0.051748,51.776054],[0.053341,51.776858],[0.054907,51.778285],[0.057663,51.779674],[0.059729,51.782942],[0.060869,51.783527],[0.063683,51.783953],[0.068254,51.783939],[0.069831,51.783318],[0.077054,51.782472],[0.079691,51.782962],[0.080691,51.783583],[0.084618,51.783381],[0.085994,51.783817],[0.087197,51.783561],[0.089014,51.784264],[0.090967,51.78407],[0.09256,51.784512],[0.095725,51.783406],[0.096923,51.783602],[0.099254,51.783231],[0.100997,51.783952],[0.10216,51.784916],[0.103572,51.785091],[0.10732,51.78794],[0.111153,51.788451],[0.115375,51.788704],[0.118707,51.790068],[0.12052,51.790176],[0.122043,51.791243],[0.123881,51.793681],[0.125433,51.7945],[0.128908,51.795306],[0.129161,51.79588],[0.132452,51.795853],[0.135857,51.795047],[0.13893,51.795747],[0.141452,51.797213],[0.144003,51.797205],[0.146141,51.796244],[0.148174,51.795953],[0.150767,51.797049],[0.151551,51.7992],[0.150454,51.800962],[0.151124,51.802738],[0.15345,51.803026],[0.154074,51.80352],[0.155509,51.806462],[0.155324,51.807282],[0.158187,51.810069],[0.158699,51.812388],[0.158309,51.813517],[0.162269,51.814594],[0.167008,51.81328],[0.168,51.814965],[0.170387,51.816562],[0.172583,51.816304],[0.173305,51.817537],[0.173022,51.818881],[0.170158,51.819297],[0.169305,51.818262],[0.164746,51.81923],[0.164669,51.81971],[0.166251,51.822154],[0.163553,51.822938],[0.162232,51.825209],[0.161209,51.825947],[0.161574,51.827601],[0.163013,51.828806],[0.165406,51.829545],[0.166123,51.830707],[0.165221,51.831903],[0.163381,51.831815],[0.161698,51.832134],[0.161915,51.833065],[0.160906,51.834052],[0.16158,51.835947],[0.161819,51.840753],[0.163164,51.844774],[0.165166,51.846934],[0.164774,51.847637],[0.164834,51.849651],[0.166804,51.850737],[0.168363,51.850598],[0.17084,51.849711],[0.173398,51.84977],[0.173535,51.85137],[0.171199,51.852382],[0.173064,51.854281],[0.169471,51.856016],[0.171532,51.856624],[0.171215,51.857606],[0.172407,51.858015],[0.170468,51.861622],[0.174348,51.862065],[0.177913,51.863036],[0.182814,51.86356],[0.181993,51.86464],[0.18274,51.865095],[0.185014,51.864746],[0.186372,51.863514],[0.187538,51.864194],[0.187083,51.864973],[0.19425,51.865778],[0.195594,51.868086],[0.194262,51.869916],[0.193617,51.871641],[0.192857,51.872352],[0.193409,51.873253],[0.189827,51.874242],[0.187572,51.875314],[0.185955,51.876662],[0.185016,51.87837],[0.182901,51.878374],[0.181825,51.879644],[0.180038,51.880675],[0.177878,51.880802],[0.177142,51.882046],[0.174976,51.882813],[0.177015,51.884441],[0.175442,51.884815],[0.17801,51.885982],[0.175985,51.887294],[0.17815,51.888258],[0.179649,51.889807],[0.182223,51.890647],[0.183664,51.893641],[0.180575,51.89389],[0.179349,51.895554],[0.175388,51.894616],[0.167739,51.894137],[0.16899,51.891799],[0.165741,51.891197],[0.164643,51.891934],[0.163231,51.891548],[0.162206,51.892089],[0.157068,51.890068],[0.150431,51.888225],[0.146982,51.886699],[0.141503,51.888196],[0.141257,51.887349],[0.139384,51.88734],[0.139583,51.885383],[0.132309,51.8846],[0.129228,51.883929],[0.12762,51.883946],[0.127237,51.884968],[0.124761,51.884586],[0.123826,51.889304],[0.124784,51.892428],[0.123868,51.897473],[0.12277,51.900553],[0.12351,51.903083],[0.121764,51.911195],[0.122348,51.91585],[0.122922,51.91733],[0.122604,51.919192],[0.124258,51.921669],[0.12486,51.923539],[0.12445,51.924015],[0.12114,51.925265],[0.12035,51.927151],[0.12183,51.92856],[0.121127,51.930331],[0.118633,51.933992],[0.118786,51.937581],[0.118196,51.940504],[0.118118,51.945599],[0.118443,51.947169],[0.116777,51.951589],[0.116019,51.953067],[0.114925,51.954122],[0.114736,51.955836],[0.113759,51.957128],[0.111245,51.958994],[0.110605,51.960172],[0.106421,51.962625],[0.10561,51.963486],[0.104347,51.965999],[0.104503,51.967732],[0.10555,51.970113],[0.107012,51.971818],[0.101523,51.976167],[0.099285,51.976518],[0.097845,51.97721],[0.097418,51.978847],[0.098288,51.980544],[0.098096,51.98234],[0.09646,51.984326],[0.083999,51.98137],[0.076845,51.980812],[0.071922,51.981547],[0.069445,51.982986],[0.069061,51.984043]]]},"properties":{"LAD22CD":"E07000242","LAD22NM":"East Hertfordshire","BNG_E":537995,"BNG_N":220370,"LONG":0.002739,"LAT":51.86485,"GlobalID":"f8397918-4513-40cd-9f74-24b15a0d1d5a"},"id":236}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.162186,51.920342],[-0.163479,51.921746],[-0.163165,51.922276],[-0.164629,51.926861],[-0.166511,51.926721],[-0.168075,51.927956],[-0.172516,51.928557],[-0.174117,51.929334],[-0.175672,51.930603],[-0.184607,51.932413],[-0.18713,51.929893],[-0.18795,51.928467],[-0.190307,51.928672],[-0.193143,51.927699],[-0.195171,51.92924],[-0.194384,51.930434],[-0.19713,51.930469],[-0.19854,51.928793],[-0.200403,51.92924],[-0.202352,51.930556],[-0.204928,51.928545],[-0.207426,51.929775],[-0.209999,51.928388],[-0.210263,51.930018],[-0.216707,51.930564],[-0.217187,51.930109],[-0.220068,51.930968],[-0.22657,51.930113],[-0.224885,51.929352],[-0.227725,51.926947],[-0.22701,51.925891],[-0.227701,51.924569],[-0.226487,51.923973],[-0.225434,51.924187],[-0.224659,51.922486],[-0.225917,51.922238],[-0.226072,51.920833],[-0.229306,51.917232],[-0.22808,51.91694],[-0.228714,51.913112],[-0.229987,51.911369],[-0.231476,51.908511],[-0.232962,51.907274],[-0.234372,51.905255],[-0.232092,51.904239],[-0.232663,51.903617],[-0.228876,51.903473],[-0.229826,51.902695],[-0.230092,51.901211],[-0.229338,51.899446],[-0.230536,51.898889],[-0.229679,51.898098],[-0.227713,51.898931],[-0.225922,51.897587],[-0.224859,51.895585],[-0.225276,51.893236],[-0.218997,51.895964],[-0.216013,51.896142],[-0.215469,51.894277],[-0.212696,51.894253],[-0.209929,51.891876],[-0.20851,51.890122],[-0.210664,51.889652],[-0.209274,51.886919],[-0.207633,51.885464],[-0.205898,51.883134],[-0.2048,51.883521],[-0.204204,51.880138],[-0.200854,51.881737],[-0.197957,51.882161],[-0.195957,51.882943],[-0.19329,51.882601],[-0.191903,51.882924],[-0.18467,51.878453],[-0.180221,51.87685],[-0.173585,51.875331],[-0.158698,51.872153],[-0.157167,51.871481],[-0.148421,51.869268],[-0.146818,51.870572],[-0.148103,51.872038],[-0.149583,51.875158],[-0.152997,51.876192],[-0.156102,51.877591],[-0.155437,51.878874],[-0.15499,51.882542],[-0.151296,51.885393],[-0.152591,51.885493],[-0.155121,51.887078],[-0.157291,51.886577],[-0.157097,51.885842],[-0.159127,51.885143],[-0.160103,51.884427],[-0.161144,51.884967],[-0.157386,51.886661],[-0.157933,51.888681],[-0.155167,51.892242],[-0.156152,51.892566],[-0.156348,51.894201],[-0.154599,51.895994],[-0.15302,51.898998],[-0.155072,51.898784],[-0.155797,51.900364],[-0.160117,51.901066],[-0.159459,51.903725],[-0.156523,51.903231],[-0.155493,51.903667],[-0.157338,51.904757],[-0.157955,51.905837],[-0.156385,51.909007],[-0.156346,51.914816],[-0.156711,51.916524],[-0.158829,51.91875],[-0.162186,51.920342]]]},"properties":{"LAD22CD":"E07000243","LAD22NM":"Stevenage","BNG_E":524622,"BNG_N":224531,"LONG":-0.18987,"LAT":51.90539,"GlobalID":"8578696b-8ff8-4f64-9816-71f8ccc2fdf5"},"id":237}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.366086,52.013821],[1.36479,52.013711],[1.364071,52.011742],[1.365186,52.011069],[1.366046,52.012194],[1.366086,52.013821]]],[[[1.338947,52.039337],[1.339455,52.04071],[1.338833,52.040965],[1.337362,52.039494],[1.335718,52.038698],[1.338672,52.037815],[1.338947,52.039337]]],[[[1.342506,52.04426],[1.341075,52.043911],[1.343342,52.041688],[1.341668,52.041263],[1.342825,52.039796],[1.34413,52.039413],[1.344338,52.038546],[1.346429,52.038794],[1.347678,52.039653],[1.347712,52.04066],[1.346436,52.042685],[1.344435,52.043078],[1.343109,52.042435],[1.342506,52.04426]]],[[[1.47567,52.054796],[1.477369,52.055691],[1.478394,52.056719],[1.484162,52.059343],[1.484262,52.060831],[1.4817,52.059211],[1.478628,52.058418],[1.475551,52.055666],[1.47567,52.054796]]],[[[1.527185,52.080517],[1.525961,52.080478],[1.524544,52.079776],[1.522392,52.07662],[1.519833,52.073647],[1.514175,52.069596],[1.514201,52.069034],[1.510794,52.068008],[1.507791,52.067821],[1.505389,52.068385],[1.502939,52.069471],[1.500852,52.068545],[1.499312,52.066486],[1.499975,52.065532],[1.504455,52.065682],[1.510159,52.066841],[1.512313,52.067658],[1.51494,52.067679],[1.516651,52.068733],[1.523104,52.071539],[1.530036,52.074234],[1.536832,52.07645],[1.537908,52.077468],[1.53815,52.079002],[1.535405,52.078679],[1.527185,52.080517]]],[[[1.572975,52.152703],[1.571538,52.154586],[1.569321,52.155304],[1.56803,52.152673],[1.568515,52.151684],[1.57056,52.151711],[1.572975,52.152703]]],[[[1.511624,52.160732],[1.51219,52.160791],[1.511942,52.161433],[1.50946,52.162401],[1.510171,52.16106],[1.511624,52.160732]]],[[[1.616624,52.31984],[1.610701,52.319296],[1.611018,52.317756],[1.611948,52.317917],[1.613447,52.319278],[1.616624,52.31984]]],[[[1.635311,52.33206],[1.636272,52.331215],[1.637884,52.331005],[1.636455,52.329851],[1.636977,52.328597],[1.635747,52.328241],[1.635259,52.32923],[1.633691,52.329586],[1.63031,52.328721],[1.630322,52.327433],[1.633516,52.3291],[1.634432,52.329026],[1.636037,52.327938],[1.636962,52.328048],[1.637197,52.330237],[1.638714,52.330495],[1.637551,52.331564],[1.636229,52.331279],[1.635311,52.33206]]],[[[1.682732,52.476185],[1.681821,52.476513],[1.681377,52.474828],[1.682004,52.47438],[1.685647,52.473528],[1.686917,52.473544],[1.688325,52.473088],[1.689149,52.473557],[1.686544,52.474421],[1.682732,52.476185]]],[[[1.740234,52.532086],[1.726004,52.530642],[1.724403,52.533557],[1.716757,52.535469],[1.710234,52.537879],[1.707995,52.539454],[1.705594,52.539974],[1.704137,52.542147],[1.704002,52.543534],[1.702576,52.544425],[1.700524,52.544947],[1.698177,52.544253],[1.696121,52.544133],[1.693144,52.545075],[1.690425,52.544967],[1.689705,52.547098],[1.686114,52.54938],[1.68438,52.54991],[1.682682,52.548217],[1.680272,52.547765],[1.678247,52.548105],[1.676344,52.549126],[1.674436,52.549574],[1.667975,52.550247],[1.665677,52.549655],[1.662347,52.547854],[1.659177,52.544884],[1.658868,52.544196],[1.659154,52.542251],[1.65429,52.541632],[1.651306,52.540124],[1.64888,52.539507],[1.646141,52.539779],[1.642936,52.539597],[1.638889,52.537624],[1.637861,52.537596],[1.637866,52.535686],[1.638292,52.533782],[1.631263,52.532305],[1.636536,52.52794],[1.63354,52.526627],[1.630957,52.526182],[1.628914,52.526131],[1.628785,52.523015],[1.631226,52.520734],[1.63971,52.517127],[1.645731,52.515922],[1.647608,52.514532],[1.647396,52.512767],[1.645554,52.510036],[1.645385,52.508782],[1.647071,52.507118],[1.652238,52.504456],[1.654052,52.501763],[1.655909,52.501137],[1.659101,52.501192],[1.666737,52.503186],[1.667861,52.503735],[1.670708,52.50421],[1.671845,52.504121],[1.67375,52.503294],[1.674895,52.501768],[1.675531,52.498894],[1.67619,52.497855],[1.680891,52.496644],[1.682678,52.495349],[1.68272,52.491431],[1.68183,52.488338],[1.682883,52.483047],[1.682121,52.477001],[1.687997,52.474368],[1.69065,52.473781],[1.691731,52.474478],[1.69665,52.47598],[1.698557,52.475451],[1.698706,52.474276],[1.700538,52.474031],[1.702713,52.474709],[1.703529,52.47541],[1.705391,52.475548],[1.708899,52.476526],[1.709812,52.477606],[1.711281,52.477572],[1.710055,52.476249],[1.710534,52.474982],[1.709721,52.474133],[1.707472,52.474609],[1.705167,52.473753],[1.705829,52.473308],[1.705743,52.472009],[1.706345,52.471236],[1.703103,52.470891],[1.699849,52.471588],[1.697623,52.473018],[1.695278,52.473592],[1.693495,52.473708],[1.690736,52.4733],[1.689435,52.473572],[1.688578,52.473137],[1.688073,52.472979],[1.6812,52.474332],[1.682356,52.482767],[1.681345,52.487214],[1.68148,52.489342],[1.677212,52.486898],[1.676295,52.484192],[1.674503,52.483284],[1.672284,52.482698],[1.671014,52.480868],[1.671799,52.477898],[1.670902,52.476046],[1.66377,52.474801],[1.662646,52.473946],[1.661145,52.470435],[1.65982,52.468789],[1.658755,52.468183],[1.655199,52.467676],[1.652863,52.468459],[1.650624,52.470802],[1.648651,52.471608],[1.646577,52.471777],[1.644611,52.470943],[1.643597,52.468882],[1.641299,52.467771],[1.638837,52.467518],[1.636241,52.46657],[1.635495,52.465472],[1.635514,52.463545],[1.634704,52.46278],[1.626916,52.462208],[1.616833,52.463322],[1.614043,52.464822],[1.611139,52.465883],[1.60673,52.466474],[1.605016,52.468105],[1.603805,52.471452],[1.600418,52.472042],[1.597457,52.47323],[1.595891,52.475198],[1.593888,52.475632],[1.591387,52.477041],[1.587715,52.478304],[1.586008,52.478438],[1.583837,52.477009],[1.582405,52.476587],[1.576133,52.47648],[1.574489,52.475245],[1.572531,52.474858],[1.569681,52.474898],[1.568309,52.474474],[1.567091,52.473268],[1.566784,52.472963],[1.565797,52.471986],[1.56651,52.469984],[1.566214,52.468587],[1.563043,52.466777],[1.562116,52.465484],[1.563096,52.462578],[1.563066,52.461391],[1.559424,52.458284],[1.557262,52.457444],[1.55516,52.458818],[1.551098,52.459032],[1.549696,52.458642],[1.547778,52.459483],[1.547469,52.461138],[1.545253,52.461624],[1.544161,52.462802],[1.542741,52.461826],[1.541439,52.461819],[1.541068,52.461929],[1.538349,52.463139],[1.53784,52.464311],[1.535651,52.46551],[1.535476,52.466259],[1.529215,52.468317],[1.525778,52.468009],[1.524151,52.46729],[1.522792,52.465806],[1.52381,52.46509],[1.52363,52.464095],[1.521692,52.461669],[1.519067,52.461817],[1.516859,52.462875],[1.514487,52.463297],[1.510494,52.462476],[1.509025,52.462552],[1.50792,52.461707],[1.506891,52.462362],[1.501691,52.463228],[1.501268,52.463941],[1.499404,52.464239],[1.497417,52.465327],[1.49511,52.465927],[1.494838,52.466396],[1.496099,52.467605],[1.494126,52.46767],[1.490385,52.468778],[1.488095,52.468518],[1.483329,52.471718],[1.479739,52.471265],[1.479977,52.471839],[1.47745,52.471],[1.475201,52.469713],[1.47363,52.469324],[1.471831,52.467464],[1.46934,52.465886],[1.466297,52.465318],[1.464305,52.464477],[1.462405,52.46068],[1.460692,52.459508],[1.459472,52.459104],[1.458649,52.458056],[1.455912,52.458263],[1.453971,52.457655],[1.452362,52.457569],[1.450615,52.456643],[1.445829,52.45602],[1.441099,52.456712],[1.436949,52.459252],[1.434372,52.461905],[1.434939,52.464559],[1.4278,52.467915],[1.427206,52.470007],[1.426349,52.470579],[1.423008,52.471194],[1.42015,52.471047],[1.417957,52.470161],[1.417528,52.469131],[1.416011,52.468112],[1.414063,52.465269],[1.410823,52.463955],[1.411608,52.462909],[1.411018,52.461597],[1.414641,52.459838],[1.417392,52.459035],[1.420297,52.458723],[1.421174,52.458073],[1.425785,52.457272],[1.427911,52.457495],[1.431007,52.456886],[1.433857,52.45543],[1.433049,52.45465],[1.432797,52.453228],[1.433456,52.452773],[1.434114,52.450257],[1.434864,52.449967],[1.434961,52.448033],[1.433425,52.447399],[1.432105,52.446106],[1.432538,52.445296],[1.430079,52.445164],[1.427766,52.445709],[1.426241,52.445421],[1.42519,52.446276],[1.423868,52.446583],[1.421559,52.446143],[1.41951,52.445231],[1.418693,52.445639],[1.416233,52.444944],[1.414215,52.4455],[1.412413,52.444935],[1.411848,52.444224],[1.410292,52.444744],[1.407914,52.444409],[1.406292,52.443651],[1.407381,52.442119],[1.405807,52.442302],[1.404823,52.441463],[1.402383,52.44158],[1.40181,52.442085],[1.397539,52.440861],[1.39672,52.439379],[1.395297,52.439651],[1.393203,52.438935],[1.393166,52.43797],[1.391948,52.437748],[1.390911,52.436829],[1.392458,52.43605],[1.393182,52.435077],[1.392071,52.434045],[1.386286,52.432076],[1.38305,52.432496],[1.382395,52.431712],[1.379968,52.432051],[1.375735,52.429865],[1.372599,52.430455],[1.371286,52.430039],[1.371511,52.429286],[1.370497,52.428506],[1.368275,52.428851],[1.368144,52.427048],[1.363509,52.426962],[1.357757,52.424121],[1.357476,52.422243],[1.356369,52.421108],[1.356858,52.419127],[1.358577,52.418158],[1.358918,52.417415],[1.360682,52.416374],[1.360234,52.414642],[1.361255,52.413198],[1.357281,52.411548],[1.35238,52.410696],[1.350283,52.409506],[1.3484,52.408872],[1.34631,52.408998],[1.346627,52.40781],[1.3461,52.406414],[1.347192,52.405698],[1.347101,52.404411],[1.349867,52.403342],[1.351495,52.403884],[1.352976,52.403538],[1.357409,52.404082],[1.360964,52.403523],[1.364244,52.398477],[1.364795,52.398184],[1.367393,52.398886],[1.368416,52.397269],[1.370924,52.395605],[1.371532,52.394724],[1.374857,52.394677],[1.375917,52.393354],[1.375729,52.389641],[1.378394,52.388363],[1.37972,52.386262],[1.382601,52.384668],[1.388518,52.380135],[1.391429,52.378603],[1.393175,52.378115],[1.396505,52.37508],[1.398715,52.373991],[1.399991,52.372805],[1.400421,52.371657],[1.403747,52.369459],[1.409508,52.363265],[1.407017,52.360908],[1.400415,52.35752],[1.397726,52.355486],[1.393789,52.355399],[1.38771,52.354243],[1.383822,52.352189],[1.380108,52.348621],[1.377437,52.347717],[1.374675,52.347746],[1.369505,52.346334],[1.367413,52.344723],[1.365243,52.342309],[1.361977,52.341308],[1.359912,52.339823],[1.357405,52.337278],[1.362161,52.334366],[1.360862,52.333286],[1.359629,52.3304],[1.358009,52.323033],[1.357476,52.322157],[1.360375,52.320393],[1.365059,52.318432],[1.367323,52.317866],[1.371017,52.313731],[1.37302,52.313194],[1.375036,52.31312],[1.377024,52.313585],[1.379307,52.313267],[1.380548,52.312082],[1.380246,52.311269],[1.381987,52.310421],[1.384022,52.310667],[1.384271,52.309372],[1.382289,52.305502],[1.380724,52.303546],[1.3833,52.300021],[1.382266,52.299352],[1.38414,52.294106],[1.387155,52.291654],[1.391269,52.290749],[1.398064,52.28773],[1.401645,52.285698],[1.393859,52.283357],[1.390789,52.283065],[1.388006,52.281671],[1.386716,52.280735],[1.38471,52.280765],[1.384178,52.280313],[1.381501,52.279816],[1.376311,52.275455],[1.376003,52.276089],[1.371968,52.275416],[1.371073,52.276083],[1.367225,52.277149],[1.363036,52.27783],[1.35968,52.27895],[1.35548,52.278775],[1.356232,52.277204],[1.355701,52.276331],[1.356336,52.275452],[1.355657,52.274077],[1.353548,52.275442],[1.35275,52.276489],[1.35045,52.276656],[1.350573,52.278074],[1.349359,52.279842],[1.346145,52.280099],[1.344431,52.28209],[1.344956,52.28343],[1.345009,52.286059],[1.347029,52.288829],[1.346555,52.290953],[1.347674,52.292298],[1.347295,52.293405],[1.344261,52.294982],[1.339928,52.29608],[1.338441,52.296833],[1.336136,52.297507],[1.33174,52.298413],[1.327591,52.298479],[1.328301,52.296652],[1.328263,52.294536],[1.328994,52.294521],[1.330077,52.292948],[1.330402,52.290966],[1.33261,52.290951],[1.332687,52.289929],[1.333893,52.287894],[1.336486,52.287465],[1.339501,52.287413],[1.341268,52.284448],[1.340647,52.280424],[1.338998,52.276708],[1.336862,52.276668],[1.338251,52.27276],[1.338168,52.271898],[1.337031,52.270493],[1.338429,52.270219],[1.339767,52.265926],[1.338534,52.266288],[1.3337,52.265443],[1.328947,52.265423],[1.326453,52.264642],[1.326169,52.263817],[1.324623,52.263346],[1.322208,52.260128],[1.317106,52.258694],[1.311078,52.258977],[1.309435,52.259658],[1.303555,52.259429],[1.301017,52.259016],[1.2973,52.256388],[1.293376,52.255474],[1.292464,52.254847],[1.291845,52.253164],[1.293368,52.250359],[1.293516,52.247609],[1.288552,52.241941],[1.286456,52.240461],[1.282021,52.239663],[1.279796,52.238303],[1.277398,52.238282],[1.27409,52.23725],[1.270462,52.235851],[1.268125,52.234125],[1.260262,52.231375],[1.25808,52.230877],[1.254162,52.230485],[1.250757,52.229514],[1.247892,52.229128],[1.246258,52.226825],[1.248889,52.225881],[1.246082,52.222332],[1.246081,52.221353],[1.245052,52.220358],[1.245399,52.219301],[1.243544,52.217695],[1.248347,52.215828],[1.243527,52.214403],[1.244336,52.213169],[1.241621,52.212144],[1.243985,52.210644],[1.242736,52.208209],[1.243038,52.207255],[1.242685,52.205118],[1.241684,52.20438],[1.242263,52.20034],[1.247747,52.20007],[1.249251,52.200336],[1.252599,52.19816],[1.25673,52.198365],[1.25724,52.197073],[1.256957,52.19492],[1.255185,52.194547],[1.255456,52.191153],[1.255158,52.189988],[1.254016,52.190046],[1.254173,52.188131],[1.251257,52.18607],[1.247502,52.184767],[1.247621,52.18348],[1.244232,52.181337],[1.243257,52.180016],[1.241476,52.175873],[1.239843,52.170429],[1.237135,52.16966],[1.22878,52.170434],[1.226993,52.169755],[1.224104,52.169404],[1.224065,52.168991],[1.220884,52.169294],[1.219812,52.167746],[1.219795,52.166935],[1.216065,52.166416],[1.213965,52.166538],[1.215043,52.164625],[1.215425,52.161571],[1.211721,52.160548],[1.211247,52.160048],[1.205204,52.158149],[1.202247,52.155809],[1.201073,52.155438],[1.196668,52.155004],[1.196632,52.148583],[1.195482,52.147286],[1.193974,52.147376],[1.192185,52.144154],[1.191403,52.139984],[1.18702,52.139608],[1.176702,52.13693],[1.17678,52.135735],[1.175353,52.132466],[1.171768,52.132258],[1.169469,52.13125],[1.170487,52.129315],[1.170203,52.127623],[1.172452,52.127562],[1.173307,52.128293],[1.175635,52.129158],[1.177953,52.127886],[1.176632,52.126954],[1.17648,52.125988],[1.177797,52.122129],[1.177767,52.1207],[1.17671,52.119824],[1.17227,52.118167],[1.171226,52.117288],[1.171891,52.115549],[1.17037,52.114305],[1.170572,52.113631],[1.169092,52.113205],[1.165513,52.113314],[1.164173,52.108781],[1.165089,52.106018],[1.165225,52.103578],[1.16723,52.099804],[1.166421,52.09838],[1.164635,52.09716],[1.162683,52.094649],[1.161509,52.094508],[1.160294,52.093078],[1.162762,52.092283],[1.160511,52.0915],[1.157839,52.088752],[1.159554,52.087983],[1.159614,52.087099],[1.164133,52.085884],[1.163591,52.084228],[1.162335,52.082772],[1.16569,52.082344],[1.164996,52.081066],[1.165834,52.080631],[1.170982,52.080813],[1.171355,52.081246],[1.189894,52.08045],[1.190003,52.079324],[1.188365,52.07882],[1.186826,52.077286],[1.192153,52.075129],[1.190994,52.074104],[1.196615,52.073166],[1.196647,52.072017],[1.197366,52.071151],[1.200119,52.069498],[1.199515,52.069167],[1.201024,52.067752],[1.202294,52.067951],[1.20355,52.06739],[1.206455,52.064019],[1.20521,52.06214],[1.204895,52.058425],[1.206197,52.053741],[1.205705,52.052218],[1.203858,52.049478],[1.207048,52.04869],[1.209212,52.048477],[1.205747,52.040699],[1.203457,52.04048],[1.203432,52.039705],[1.202101,52.038724],[1.203296,52.038084],[1.201944,52.037405],[1.20468,52.035839],[1.212064,52.03418],[1.22361,52.029434],[1.219369,52.022883],[1.218342,52.023796],[1.215032,52.025621],[1.21131,52.023164],[1.212157,52.022691],[1.209477,52.020769],[1.204231,52.023456],[1.201678,52.024331],[1.195434,52.024533],[1.193858,52.023717],[1.190085,52.023031],[1.18661,52.021993],[1.18481,52.024327],[1.183104,52.024471],[1.182849,52.022706],[1.180987,52.022605],[1.178847,52.021547],[1.182506,52.019562],[1.184885,52.016864],[1.187934,52.015204],[1.191317,52.014895],[1.192723,52.015325],[1.197678,52.015364],[1.200351,52.014867],[1.202965,52.013529],[1.207217,52.01265],[1.210322,52.011512],[1.211713,52.010501],[1.215408,52.00652],[1.219288,52.005898],[1.225161,52.006114],[1.227161,52.006589],[1.23001,52.006361],[1.232691,52.005506],[1.235752,52.003921],[1.246132,51.999672],[1.248582,51.998812],[1.252591,51.998075],[1.253123,51.997408],[1.256913,51.99651],[1.258225,51.997399],[1.25671,51.997839],[1.255302,51.999394],[1.256842,52.002154],[1.258092,52.00144],[1.25803,51.999693],[1.261049,51.99851],[1.263089,51.998312],[1.263627,51.996316],[1.264263,51.99579],[1.267133,51.995546],[1.268224,51.99691],[1.269236,51.996564],[1.268762,51.99547],[1.271449,51.995836],[1.276612,51.993659],[1.279761,51.992471],[1.279496,51.991761],[1.28242,51.990911],[1.283287,51.990052],[1.281681,51.982998],[1.283164,51.984916],[1.284596,51.984764],[1.287373,51.981256],[1.286599,51.980488],[1.281248,51.980171],[1.280779,51.977566],[1.281363,51.972299],[1.281716,51.971094],[1.283151,51.970487],[1.282351,51.969884],[1.283867,51.967555],[1.282601,51.966099],[1.31568,51.95141],[1.31586,51.950924],[1.312562,51.95062],[1.316903,51.942721],[1.318082,51.942926],[1.316801,51.945309],[1.318649,51.945691],[1.319857,51.941162],[1.31971,51.93936],[1.318335,51.937148],[1.317699,51.934892],[1.317895,51.933496],[1.319154,51.932369],[1.322856,51.935558],[1.328136,51.94153],[1.334603,51.946778],[1.339773,51.952511],[1.344503,51.956925],[1.34713,51.958239],[1.350632,51.959309],[1.359523,51.961485],[1.363571,51.963009],[1.366797,51.963674],[1.368071,51.963661],[1.369716,51.964342],[1.372472,51.966626],[1.380163,51.974372],[1.386266,51.977307],[1.388166,51.97855],[1.389137,51.980038],[1.389347,51.98429],[1.39148,51.98938],[1.389669,51.98978],[1.388401,51.989132],[1.386185,51.989938],[1.386804,51.991335],[1.385644,51.9922],[1.384416,51.995156],[1.3819,51.997469],[1.378449,51.99957],[1.373469,52.00174],[1.369008,52.002465],[1.368268,52.002287],[1.364523,52.004098],[1.361085,52.006126],[1.358694,52.009846],[1.358779,52.012652],[1.359324,52.014711],[1.359367,52.018082],[1.358296,52.02019],[1.356319,52.022168],[1.354842,52.023038],[1.34912,52.025276],[1.345652,52.025759],[1.342351,52.026012],[1.340105,52.025313],[1.339446,52.024277],[1.337373,52.024397],[1.337021,52.025237],[1.339039,52.026665],[1.340766,52.027379],[1.341231,52.028399],[1.33917,52.031422],[1.340095,52.034054],[1.339085,52.035293],[1.341104,52.035601],[1.34285,52.036938],[1.340514,52.038093],[1.338192,52.036452],[1.338234,52.035543],[1.336837,52.035198],[1.336601,52.037092],[1.335288,52.038927],[1.337176,52.039505],[1.338807,52.041112],[1.338822,52.042095],[1.337679,52.042304],[1.33878,52.044078],[1.340041,52.045041],[1.341556,52.041626],[1.341096,52.04066],[1.342107,52.039956],[1.341095,52.038192],[1.343302,52.037211],[1.344546,52.038126],[1.343388,52.039335],[1.341212,52.040724],[1.342039,52.041836],[1.341266,52.042425],[1.340387,52.04427],[1.341392,52.044752],[1.339553,52.046042],[1.337707,52.046633],[1.33371,52.048407],[1.334344,52.049577],[1.331944,52.052538],[1.332,52.053917],[1.331512,52.055087],[1.33155,52.056499],[1.332941,52.058396],[1.332352,52.059391],[1.329477,52.060992],[1.328699,52.060845],[1.327221,52.062233],[1.324489,52.062746],[1.322301,52.064796],[1.320173,52.064761],[1.318652,52.065415],[1.319514,52.066048],[1.324109,52.067416],[1.324383,52.067688],[1.32311,52.070528],[1.320136,52.072574],[1.319172,52.072846],[1.317437,52.076141],[1.313863,52.075985],[1.310756,52.077262],[1.308696,52.076191],[1.307778,52.076793],[1.304455,52.076957],[1.303085,52.076403],[1.301166,52.076531],[1.297912,52.075724],[1.294735,52.075664],[1.295308,52.077962],[1.297144,52.077757],[1.299688,52.078],[1.300334,52.077697],[1.302492,52.078175],[1.307109,52.078291],[1.308936,52.07861],[1.31096,52.078545],[1.313599,52.07777],[1.311894,52.080556],[1.314792,52.08313],[1.317307,52.084232],[1.317367,52.085103],[1.316015,52.085916],[1.317261,52.088979],[1.320626,52.09049],[1.322576,52.090765],[1.322362,52.091956],[1.325129,52.093971],[1.325655,52.095602],[1.328142,52.095999],[1.329406,52.097782],[1.330395,52.098256],[1.329877,52.099847],[1.330928,52.101008],[1.333108,52.101891],[1.336349,52.102566],[1.337081,52.103715],[1.338268,52.103683],[1.33958,52.102334],[1.33747,52.101794],[1.337409,52.100727],[1.33814,52.099953],[1.336715,52.099129],[1.332336,52.097966],[1.330885,52.096761],[1.331671,52.096276],[1.332012,52.094213],[1.330629,52.09316],[1.328783,52.093266],[1.327595,52.092911],[1.327136,52.091987],[1.327336,52.090425],[1.325933,52.089111],[1.324101,52.088431],[1.321223,52.088026],[1.319709,52.086251],[1.320338,52.084482],[1.318981,52.080503],[1.319592,52.079676],[1.321221,52.079213],[1.324202,52.076725],[1.324052,52.076018],[1.325536,52.075712],[1.328973,52.072885],[1.330121,52.071561],[1.329918,52.068943],[1.330886,52.068255],[1.337719,52.066576],[1.339351,52.065793],[1.338938,52.06492],[1.341068,52.065095],[1.343763,52.064142],[1.34349,52.062127],[1.342312,52.061245],[1.343863,52.060316],[1.3447,52.057631],[1.344105,52.056095],[1.340982,52.052996],[1.342759,52.052304],[1.343747,52.052714],[1.351904,52.04546],[1.352277,52.04499],[1.351466,52.040927],[1.352137,52.039628],[1.35157,52.037996],[1.34946,52.036294],[1.344796,52.033747],[1.344266,52.03247],[1.345404,52.030706],[1.349447,52.029107],[1.351024,52.029279],[1.351594,52.028644],[1.354419,52.02771],[1.35656,52.026716],[1.358918,52.026367],[1.359533,52.025064],[1.361877,52.022909],[1.362987,52.022534],[1.364426,52.021144],[1.364518,52.019917],[1.366056,52.018972],[1.365645,52.015517],[1.366535,52.015301],[1.366214,52.011311],[1.364143,52.010515],[1.365926,52.00836],[1.370137,52.006201],[1.375032,52.005012],[1.382602,52.002437],[1.387906,52.000276],[1.389645,51.999107],[1.392151,51.996587],[1.39325,51.99778],[1.394349,51.99752],[1.394366,51.996204],[1.392621,51.996347],[1.394601,51.992772],[1.394658,51.990722],[1.393974,51.990455],[1.394039,51.987496],[1.393799,51.98653],[1.408792,51.992318],[1.414799,51.99521],[1.423651,52.00052],[1.42973,52.005476],[1.431235,52.005751],[1.432969,52.008131],[1.43457,52.008542],[1.435799,52.014395],[1.441517,52.021841],[1.442979,52.023916],[1.445769,52.027376],[1.447902,52.029335],[1.449964,52.030638],[1.452924,52.031805],[1.456166,52.032534],[1.455731,52.035522],[1.457146,52.037326],[1.461847,52.045867],[1.463387,52.047732],[1.462795,52.047942],[1.460801,52.044493],[1.460321,52.045609],[1.458481,52.044546],[1.458342,52.043497],[1.456948,52.043106],[1.454951,52.043553],[1.450688,52.043202],[1.451119,52.044179],[1.452985,52.044239],[1.454411,52.043726],[1.457711,52.043344],[1.457843,52.044864],[1.460196,52.045846],[1.460898,52.047006],[1.463339,52.048657],[1.464465,52.048783],[1.468415,52.051471],[1.469634,52.051725],[1.471501,52.052956],[1.474425,52.054241],[1.472864,52.055069],[1.475443,52.055841],[1.478461,52.058521],[1.481616,52.059347],[1.48409,52.060924],[1.48587,52.060859],[1.488925,52.062406],[1.493069,52.063343],[1.495354,52.064319],[1.496045,52.065395],[1.496566,52.067773],[1.49985,52.070127],[1.499919,52.071033],[1.494378,52.071136],[1.492115,52.071787],[1.489789,52.072986],[1.489021,52.075091],[1.489708,52.07827],[1.48939,52.079771],[1.490702,52.081597],[1.492877,52.083112],[1.494907,52.083924],[1.496411,52.085336],[1.496839,52.08731],[1.495818,52.091365],[1.49286,52.094811],[1.493503,52.097077],[1.493232,52.097817],[1.491835,52.098204],[1.487315,52.098071],[1.485642,52.098487],[1.48464,52.100054],[1.485884,52.101522],[1.482834,52.103042],[1.482574,52.10421],[1.484833,52.104809],[1.485631,52.10547],[1.483904,52.10924],[1.486868,52.105654],[1.485868,52.104603],[1.483534,52.104279],[1.483589,52.103173],[1.486863,52.102378],[1.487785,52.101456],[1.486178,52.099843],[1.487445,52.098952],[1.488976,52.099624],[1.49275,52.099873],[1.49344,52.100484],[1.495737,52.098658],[1.496144,52.097451],[1.495841,52.096476],[1.494184,52.094948],[1.496974,52.092938],[1.49819,52.091314],[1.498301,52.08579],[1.49598,52.083165],[1.492429,52.081432],[1.491023,52.08032],[1.491165,52.079304],[1.490332,52.074975],[1.49076,52.073414],[1.491789,52.07259],[1.494825,52.072089],[1.500451,52.072093],[1.503543,52.071059],[1.506088,52.071007],[1.509293,52.069554],[1.510438,52.069564],[1.512534,52.070503],[1.515017,52.072329],[1.517406,52.074508],[1.521441,52.079743],[1.523405,52.081159],[1.524885,52.081768],[1.526746,52.081843],[1.534994,52.080564],[1.537901,52.081081],[1.537926,52.082147],[1.536872,52.084156],[1.535979,52.087649],[1.536747,52.089357],[1.538334,52.090618],[1.542148,52.091721],[1.546448,52.091877],[1.549373,52.091529],[1.552527,52.092108],[1.55478,52.093482],[1.557782,52.096077],[1.566045,52.100301],[1.566925,52.101559],[1.567091,52.102729],[1.565378,52.106509],[1.565141,52.107949],[1.566,52.109996],[1.566222,52.111811],[1.568391,52.113202],[1.576399,52.115884],[1.581896,52.119777],[1.584098,52.122741],[1.58392,52.124526],[1.584762,52.126266],[1.586521,52.128147],[1.587803,52.128968],[1.589111,52.131171],[1.589659,52.136481],[1.592329,52.139171],[1.595386,52.141066],[1.59472,52.142162],[1.591875,52.141892],[1.586265,52.140437],[1.583822,52.140272],[1.580516,52.140754],[1.57401,52.142585],[1.571258,52.144056],[1.568303,52.148476],[1.568802,52.150301],[1.569947,52.151372],[1.568143,52.151641],[1.567908,52.152667],[1.56924,52.155346],[1.567718,52.156101],[1.562979,52.154851],[1.56187,52.153912],[1.561948,52.153002],[1.560155,52.152697],[1.558912,52.15181],[1.557752,52.15206],[1.557815,52.153632],[1.555979,52.153347],[1.554811,52.152514],[1.554442,52.150508],[1.553337,52.150206],[1.551438,52.150784],[1.549049,52.152214],[1.547038,52.152322],[1.54603,52.153057],[1.544853,52.152688],[1.542827,52.153558],[1.543747,52.155091],[1.540068,52.156157],[1.537076,52.156344],[1.534161,52.157395],[1.532965,52.156671],[1.529984,52.156516],[1.528873,52.157091],[1.525757,52.156849],[1.523933,52.155784],[1.524046,52.15431],[1.524779,52.153657],[1.52441,52.152049],[1.521541,52.150686],[1.519019,52.150485],[1.517683,52.15009],[1.514406,52.150411],[1.510631,52.15104],[1.509047,52.152161],[1.506359,52.153122],[1.504948,52.154108],[1.505546,52.1556],[1.504326,52.155894],[1.504282,52.158455],[1.501576,52.160545],[1.501024,52.161621],[1.502383,52.162185],[1.498901,52.162907],[1.499218,52.164505],[1.501839,52.165052],[1.502999,52.163759],[1.50619,52.164452],[1.509184,52.164174],[1.509547,52.162481],[1.511738,52.161576],[1.511966,52.161775],[1.512288,52.160762],[1.51158,52.159602],[1.513065,52.15898],[1.511842,52.156442],[1.51003,52.156142],[1.511196,52.155069],[1.515657,52.1571],[1.516181,52.158316],[1.518418,52.157753],[1.519696,52.158925],[1.523846,52.160902],[1.527865,52.1612],[1.528735,52.16267],[1.528623,52.163452],[1.531182,52.163095],[1.534425,52.164281],[1.535504,52.165071],[1.53721,52.165295],[1.548944,52.164772],[1.554279,52.165449],[1.555624,52.164551],[1.557684,52.16242],[1.556786,52.161438],[1.553474,52.161067],[1.555592,52.158709],[1.55872,52.158988],[1.563448,52.160401],[1.565067,52.159973],[1.566767,52.160377],[1.568288,52.159975],[1.571718,52.159762],[1.575957,52.158],[1.579902,52.154945],[1.580289,52.15299],[1.579086,52.15136],[1.576944,52.150144],[1.571885,52.14872],[1.571274,52.148005],[1.573292,52.145463],[1.575378,52.14421],[1.580544,52.142511],[1.583632,52.142255],[1.587469,52.142886],[1.592304,52.14504],[1.597288,52.144218],[1.598536,52.142212],[1.598128,52.139659],[1.59549,52.136996],[1.594751,52.135053],[1.594441,52.13216],[1.593353,52.129887],[1.58988,52.127347],[1.588948,52.125907],[1.588094,52.122257],[1.586936,52.119784],[1.583458,52.117671],[1.581457,52.115698],[1.580678,52.115733],[1.577459,52.113287],[1.575367,52.112393],[1.570793,52.111547],[1.568745,52.109817],[1.568508,52.10766],[1.570823,52.103041],[1.569946,52.100356],[1.568139,52.098747],[1.567805,52.097881],[1.564964,52.096555],[1.562017,52.09478],[1.557315,52.090978],[1.554877,52.089877],[1.549956,52.08924],[1.545469,52.089445],[1.541977,52.090024],[1.540587,52.089449],[1.539589,52.088134],[1.539663,52.087223],[1.541596,52.083751],[1.541582,52.079182],[1.545526,52.080146],[1.549295,52.081437],[1.556662,52.085111],[1.559055,52.085873],[1.562143,52.086189],[1.56407,52.087492],[1.564638,52.090026],[1.567755,52.091459],[1.570273,52.091733],[1.578179,52.091115],[1.580459,52.091401],[1.580594,52.089998],[1.580158,52.088519],[1.574739,52.087644],[1.574255,52.089317],[1.575807,52.089546],[1.576216,52.090246],[1.575518,52.091091],[1.57055,52.091503],[1.56715,52.090975],[1.565001,52.089891],[1.565092,52.088624],[1.564558,52.087397],[1.562255,52.085837],[1.55945,52.085683],[1.556815,52.084845],[1.550163,52.081355],[1.543495,52.078996],[1.54117,52.077584],[1.537437,52.074725],[1.527416,52.071477],[1.523031,52.069641],[1.519059,52.067518],[1.515417,52.066441],[1.512407,52.06628],[1.510582,52.065575],[1.506084,52.064662],[1.503588,52.063735],[1.499426,52.063083],[1.490772,52.060428],[1.484301,52.057327],[1.479528,52.05399],[1.470028,52.049799],[1.466829,52.047622],[1.469283,52.04792],[1.482166,52.054367],[1.490703,52.057795],[1.498307,52.060267],[1.518226,52.065952],[1.526749,52.068484],[1.540552,52.072794],[1.56489,52.079892],[1.574436,52.083696],[1.578287,52.085959],[1.5797,52.087106],[1.582398,52.090775],[1.587674,52.102875],[1.590628,52.111874],[1.593582,52.126743],[1.595023,52.131012],[1.597182,52.135342],[1.606689,52.161449],[1.610119,52.169526],[1.612254,52.172953],[1.619625,52.182369],[1.623113,52.188538],[1.622543,52.192821],[1.622601,52.20472],[1.62434,52.215369],[1.624901,52.225474],[1.625976,52.230373],[1.628833,52.238925],[1.629009,52.245872],[1.63023,52.267289],[1.631107,52.271299],[1.634469,52.279445],[1.641037,52.291024],[1.644192,52.295339],[1.649761,52.300336],[1.660651,52.307852],[1.672415,52.3141],[1.670469,52.315069],[1.66881,52.315098],[1.666803,52.316293],[1.661816,52.319995],[1.659169,52.322191],[1.65834,52.323779],[1.652905,52.324143],[1.651901,52.324052],[1.648183,52.325464],[1.648349,52.325713],[1.645525,52.328243],[1.644381,52.328666],[1.640691,52.32921],[1.638253,52.330045],[1.638001,52.3283],[1.636488,52.327341],[1.634827,52.327536],[1.63384,52.328654],[1.630044,52.326405],[1.629765,52.3258],[1.631289,52.325143],[1.631397,52.324327],[1.629487,52.323695],[1.62881,52.322244],[1.624909,52.320954],[1.623028,52.320626],[1.619791,52.319317],[1.619164,52.318111],[1.616605,52.316726],[1.613621,52.316604],[1.609747,52.316143],[1.608538,52.315501],[1.606481,52.31609],[1.605427,52.317523],[1.604372,52.317986],[1.604687,52.318959],[1.603146,52.320217],[1.601969,52.320327],[1.600262,52.322424],[1.597383,52.323836],[1.596208,52.32687],[1.59739,52.328325],[1.598882,52.329408],[1.60068,52.329902],[1.604794,52.32905],[1.606033,52.328338],[1.606366,52.326054],[1.610181,52.320411],[1.611561,52.321949],[1.611318,52.322429],[1.613131,52.324213],[1.612439,52.326756],[1.614214,52.32744],[1.615971,52.327605],[1.62037,52.329545],[1.623826,52.330194],[1.626117,52.330219],[1.630657,52.331247],[1.630858,52.332137],[1.633289,52.331308],[1.634594,52.33249],[1.635692,52.332058],[1.636245,52.331409],[1.637459,52.331747],[1.638717,52.331211],[1.63906,52.330377],[1.64083,52.329659],[1.645013,52.329055],[1.649739,52.325687],[1.651666,52.324949],[1.656222,52.324603],[1.658804,52.324984],[1.660288,52.322178],[1.662536,52.320286],[1.668049,52.316508],[1.669951,52.315968],[1.674868,52.313639],[1.677469,52.316573],[1.679863,52.322244],[1.682183,52.325196],[1.685659,52.331009],[1.686879,52.335046],[1.687443,52.339398],[1.689825,52.346011],[1.693581,52.352207],[1.69846,52.358207],[1.702715,52.364957],[1.70475,52.36661],[1.709822,52.375379],[1.720324,52.388421],[1.727768,52.400085],[1.730037,52.405988],[1.732179,52.418164],[1.733149,52.427151],[1.732794,52.430073],[1.731719,52.431046],[1.729616,52.431908],[1.730436,52.436898],[1.733019,52.44485],[1.736144,52.451274],[1.741826,52.458967],[1.746548,52.466325],[1.749517,52.470009],[1.75068,52.471004],[1.750514,52.472589],[1.744858,52.472662],[1.742357,52.472132],[1.739914,52.472243],[1.73827,52.473049],[1.731408,52.474261],[1.728388,52.474429],[1.728092,52.474963],[1.725932,52.474756],[1.725647,52.475582],[1.724447,52.475905],[1.723159,52.476949],[1.721297,52.476649],[1.721184,52.475805],[1.716903,52.473747],[1.716033,52.473034],[1.713726,52.473175],[1.712751,52.47375],[1.710928,52.473479],[1.71217,52.475005],[1.715842,52.47489],[1.717788,52.475468],[1.718179,52.476044],[1.72165,52.477618],[1.725104,52.47736],[1.727114,52.476285],[1.730645,52.475369],[1.742914,52.473241],[1.744964,52.473432],[1.748454,52.472996],[1.750702,52.473099],[1.751048,52.473637],[1.755668,52.473345],[1.754452,52.474182],[1.755729,52.475755],[1.757665,52.476934],[1.760481,52.476273],[1.759038,52.474604],[1.755914,52.472775],[1.75779,52.472361],[1.759749,52.473903],[1.761292,52.476453],[1.762116,52.480261],[1.763233,52.481201],[1.761981,52.483635],[1.761214,52.487334],[1.758082,52.496185],[1.755718,52.500113],[1.7531,52.50599],[1.748134,52.517645],[1.740234,52.532086]]]]},"properties":{"LAD22CD":"E07000244","LAD22NM":"East Suffolk","BNG_E":636043,"BNG_N":266272,"LONG":1.456186,"LAT":52.24399,"GlobalID":"9582656f-1305-4f2c-85d1-c5ebe13da823"},"id":238}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.967471,52.370113],[0.965304,52.370397],[0.963176,52.371603],[0.957014,52.371913],[0.955337,52.372846],[0.954113,52.374545],[0.950898,52.375147],[0.949651,52.376184],[0.948306,52.375778],[0.94696,52.375983],[0.94654,52.37689],[0.945145,52.377877],[0.942274,52.378945],[0.941686,52.381108],[0.940033,52.382504],[0.940332,52.382937],[0.937377,52.384276],[0.936542,52.385222],[0.936754,52.386673],[0.9337,52.38728],[0.932722,52.387972],[0.931486,52.387889],[0.930232,52.388838],[0.927213,52.388281],[0.924205,52.38916],[0.921329,52.389572],[0.917454,52.388699],[0.915818,52.388974],[0.913118,52.388768],[0.910086,52.3873],[0.909212,52.38751],[0.907715,52.386217],[0.904928,52.385783],[0.903157,52.386661],[0.900736,52.386639],[0.89744,52.388249],[0.894529,52.388142],[0.892516,52.389049],[0.892327,52.390315],[0.891125,52.390799],[0.883592,52.391217],[0.880942,52.391758],[0.874846,52.389922],[0.872336,52.389902],[0.868688,52.390478],[0.866873,52.390346],[0.863458,52.391293],[0.861806,52.39298],[0.859708,52.393424],[0.856873,52.395186],[0.857107,52.398091],[0.855439,52.399441],[0.849251,52.399558],[0.84093,52.400796],[0.838316,52.400724],[0.835444,52.40003],[0.829866,52.397294],[0.829383,52.396138],[0.827646,52.394905],[0.824388,52.394567],[0.823137,52.393728],[0.81834,52.393673],[0.816605,52.393963],[0.814812,52.393417],[0.812783,52.390918],[0.808172,52.389524],[0.804389,52.389502],[0.803657,52.38925],[0.800725,52.389784],[0.796131,52.391242],[0.794853,52.391115],[0.792,52.389859],[0.785927,52.386489],[0.783761,52.38626],[0.779549,52.387269],[0.777353,52.386758],[0.775254,52.386959],[0.773435,52.386327],[0.772569,52.386679],[0.770295,52.389806],[0.765966,52.390357],[0.762681,52.388966],[0.762438,52.388117],[0.7607,52.386767],[0.759136,52.386498],[0.75431,52.384272],[0.752541,52.38406],[0.749844,52.382926],[0.74691,52.383364],[0.744877,52.384905],[0.744637,52.385952],[0.743397,52.387395],[0.740966,52.388189],[0.740563,52.388945],[0.74139,52.390199],[0.740997,52.392234],[0.738613,52.393093],[0.737589,52.395138],[0.733344,52.395389],[0.722219,52.393692],[0.716033,52.394021],[0.712438,52.394623],[0.708184,52.396048],[0.694737,52.396862],[0.690769,52.397531],[0.684861,52.399038],[0.673412,52.404223],[0.672002,52.405107],[0.668473,52.409062],[0.672199,52.412832],[0.67382,52.415321],[0.680611,52.420986],[0.683154,52.422569],[0.684812,52.424909],[0.690103,52.426742],[0.691413,52.427726],[0.692221,52.429066],[0.696149,52.43328],[0.705057,52.438309],[0.714849,52.444514],[0.717552,52.446719],[0.718793,52.449647],[0.713309,52.450118],[0.705587,52.452587],[0.701157,52.451337],[0.696928,52.451371],[0.694471,52.451017],[0.683973,52.453165],[0.681504,52.454175],[0.678617,52.454619],[0.674785,52.457673],[0.672616,52.458947],[0.671975,52.46031],[0.668327,52.462083],[0.666156,52.462506],[0.663542,52.462129],[0.660584,52.460143],[0.658801,52.459511],[0.65817,52.45876],[0.656698,52.458244],[0.656331,52.457267],[0.65468,52.457386],[0.651399,52.456961],[0.649903,52.455668],[0.648518,52.455365],[0.649276,52.454474],[0.647173,52.452913],[0.645413,52.453624],[0.645207,52.452595],[0.642976,52.452316],[0.64222,52.451047],[0.638681,52.45103],[0.636117,52.45138],[0.633547,52.45037],[0.629193,52.45003],[0.628079,52.451174],[0.629418,52.452584],[0.629798,52.454065],[0.622481,52.453701],[0.622177,52.454353],[0.6204,52.454437],[0.619406,52.452726],[0.621918,52.451693],[0.621867,52.451265],[0.619032,52.449539],[0.6156,52.448908],[0.60986,52.450319],[0.60848,52.451628],[0.609479,52.452716],[0.601892,52.452946],[0.599662,52.453228],[0.598413,52.453993],[0.595847,52.454285],[0.593233,52.453629],[0.591482,52.453991],[0.588431,52.453537],[0.58685,52.452932],[0.586316,52.452208],[0.582501,52.451861],[0.577951,52.452532],[0.572259,52.451982],[0.567958,52.453467],[0.563152,52.453476],[0.559152,52.45586],[0.554821,52.456028],[0.549519,52.454572],[0.549035,52.453279],[0.547821,52.452038],[0.544502,52.451613],[0.54262,52.450316],[0.540372,52.450342],[0.537497,52.45118],[0.533602,52.451612],[0.531937,52.453325],[0.530377,52.453594],[0.528069,52.452713],[0.526994,52.449927],[0.523836,52.4482],[0.5231,52.448223],[0.520705,52.449358],[0.516408,52.450526],[0.515402,52.450386],[0.513531,52.44925],[0.507817,52.450586],[0.503538,52.450029],[0.500924,52.450235],[0.49995,52.449902],[0.498064,52.448141],[0.496042,52.447279],[0.493309,52.44794],[0.48551,52.447741],[0.480925,52.446906],[0.478161,52.445575],[0.475729,52.44673],[0.473067,52.445905],[0.469571,52.44614],[0.467266,52.445283],[0.466834,52.445944],[0.459387,52.447257],[0.458065,52.44559],[0.457008,52.44497],[0.452829,52.446414],[0.451459,52.44777],[0.449879,52.44767],[0.449428,52.445829],[0.445539,52.447372],[0.444449,52.445549],[0.441004,52.444794],[0.439128,52.443485],[0.440042,52.442151],[0.439141,52.440739],[0.436275,52.440319],[0.433355,52.438923],[0.431209,52.438413],[0.430669,52.437357],[0.429344,52.436427],[0.428,52.435072],[0.425337,52.434143],[0.423207,52.433966],[0.425313,52.430327],[0.417654,52.42813],[0.374777,52.409729],[0.382085,52.396273],[0.384606,52.392252],[0.389106,52.387374],[0.400214,52.37295],[0.407328,52.363092],[0.407691,52.361512],[0.409956,52.360191],[0.415597,52.35979],[0.419225,52.357936],[0.418761,52.356708],[0.420532,52.355844],[0.419568,52.353654],[0.419558,52.352561],[0.420808,52.352022],[0.422642,52.352362],[0.425131,52.3521],[0.427521,52.353704],[0.429529,52.352851],[0.431369,52.352747],[0.432972,52.352222],[0.435444,52.352183],[0.4373,52.350601],[0.440854,52.349113],[0.442501,52.348832],[0.442508,52.34693],[0.441573,52.345905],[0.441583,52.344751],[0.440379,52.342088],[0.438335,52.340556],[0.437483,52.338652],[0.437773,52.337683],[0.436947,52.337118],[0.437642,52.335294],[0.431814,52.332566],[0.430251,52.331362],[0.424221,52.329216],[0.42909,52.32391],[0.429629,52.320052],[0.431376,52.315825],[0.43883,52.316816],[0.441134,52.316473],[0.442805,52.317157],[0.445654,52.317666],[0.447989,52.316913],[0.4575,52.316296],[0.458993,52.315482],[0.459013,52.314314],[0.460498,52.311665],[0.461407,52.310994],[0.462093,52.308815],[0.464554,52.307824],[0.46629,52.307925],[0.469356,52.307078],[0.471112,52.305513],[0.471469,52.304437],[0.47411,52.303983],[0.476508,52.30316],[0.477327,52.30196],[0.479144,52.301847],[0.481533,52.299734],[0.482501,52.299712],[0.483965,52.298245],[0.485431,52.297533],[0.485525,52.295278],[0.488396,52.296079],[0.496344,52.291179],[0.501349,52.289297],[0.504701,52.286365],[0.504769,52.284716],[0.501211,52.284865],[0.499104,52.284613],[0.498869,52.283787],[0.500164,52.282839],[0.497717,52.281893],[0.498081,52.281321],[0.496824,52.280251],[0.496872,52.27771],[0.49508,52.275797],[0.498679,52.27397],[0.498803,52.273021],[0.495801,52.273294],[0.494211,52.271989],[0.459545,52.265646],[0.453801,52.263694],[0.432644,52.258099],[0.425287,52.256256],[0.424206,52.255872],[0.419627,52.25976],[0.409547,52.269035],[0.403714,52.274495],[0.394663,52.278899],[0.395354,52.280455],[0.393438,52.281173],[0.385363,52.282998],[0.385944,52.285878],[0.385536,52.289644],[0.386302,52.28997],[0.382723,52.293266],[0.378727,52.293523],[0.378433,52.291814],[0.377869,52.291252],[0.37626,52.293562],[0.370978,52.294849],[0.368869,52.296521],[0.360736,52.297814],[0.35877,52.297358],[0.360634,52.293572],[0.358653,52.290234],[0.359222,52.289158],[0.353078,52.285085],[0.35065,52.28296],[0.352655,52.282317],[0.355459,52.279855],[0.355225,52.279322],[0.349068,52.273692],[0.342415,52.269954],[0.344057,52.269808],[0.340002,52.267688],[0.344752,52.264569],[0.342775,52.263476],[0.350765,52.258344],[0.358101,52.252508],[0.360893,52.249422],[0.356027,52.246819],[0.356665,52.246288],[0.35141,52.244702],[0.346313,52.243626],[0.342684,52.242343],[0.357423,52.234158],[0.371249,52.226556],[0.384648,52.234006],[0.39496,52.23068],[0.408809,52.239051],[0.411507,52.240117],[0.415272,52.238119],[0.421335,52.239691],[0.420676,52.241962],[0.420931,52.24271],[0.417361,52.246262],[0.414518,52.247861],[0.426965,52.253603],[0.42976,52.251502],[0.432273,52.251562],[0.434195,52.249503],[0.443404,52.242637],[0.446263,52.242942],[0.446056,52.243596],[0.449276,52.243667],[0.450421,52.243335],[0.453336,52.247555],[0.455561,52.247594],[0.459632,52.243819],[0.465112,52.240376],[0.470783,52.240975],[0.471857,52.240343],[0.477921,52.234527],[0.476128,52.233945],[0.480337,52.232682],[0.483003,52.232197],[0.4857,52.23406],[0.484164,52.234798],[0.486116,52.2365],[0.489327,52.238532],[0.490021,52.237713],[0.491754,52.238892],[0.492752,52.237989],[0.494931,52.239258],[0.50089,52.235539],[0.50736,52.230003],[0.513229,52.2281],[0.514484,52.226779],[0.513058,52.225178],[0.513241,52.222943],[0.512551,52.218241],[0.512821,52.213689],[0.50865,52.213981],[0.508673,52.212327],[0.507374,52.212352],[0.506699,52.208524],[0.50313,52.207036],[0.504073,52.204208],[0.502891,52.204003],[0.502133,52.203047],[0.501701,52.199032],[0.500692,52.197472],[0.502555,52.196027],[0.499772,52.194559],[0.500653,52.193294],[0.499161,52.192144],[0.49683,52.191314],[0.496821,52.189824],[0.494975,52.188733],[0.494623,52.186598],[0.495056,52.185517],[0.493847,52.184578],[0.494575,52.184153],[0.493964,52.181496],[0.493164,52.181066],[0.494171,52.178183],[0.493032,52.17619],[0.493221,52.175584],[0.491084,52.174291],[0.491257,52.171987],[0.48875,52.171603],[0.487465,52.169797],[0.488763,52.169154],[0.489789,52.168046],[0.492667,52.167417],[0.491333,52.165102],[0.48973,52.165663],[0.48745,52.164503],[0.48593,52.165165],[0.482436,52.165676],[0.481716,52.166301],[0.479264,52.165965],[0.478636,52.167605],[0.477241,52.167571],[0.474455,52.165858],[0.472457,52.163992],[0.47073,52.163259],[0.47019,52.164945],[0.468374,52.167736],[0.463703,52.170544],[0.46101,52.171416],[0.457142,52.171237],[0.454185,52.172732],[0.452191,52.173204],[0.448213,52.171983],[0.446597,52.171768],[0.444747,52.170942],[0.443304,52.168594],[0.443554,52.166458],[0.444361,52.164746],[0.441095,52.164981],[0.438706,52.165712],[0.437075,52.164202],[0.438279,52.163037],[0.438186,52.160721],[0.435916,52.159495],[0.43064,52.159497],[0.42712,52.160386],[0.426163,52.15992],[0.421838,52.160379],[0.417276,52.159307],[0.420477,52.156746],[0.420886,52.155639],[0.419788,52.152833],[0.419457,52.150632],[0.419689,52.146771],[0.418453,52.145536],[0.418584,52.142446],[0.419692,52.139439],[0.418283,52.134356],[0.417311,52.133108],[0.413746,52.134101],[0.411731,52.133961],[0.410002,52.134398],[0.406847,52.130884],[0.404706,52.129285],[0.40654,52.127882],[0.407732,52.126214],[0.409438,52.12583],[0.40919,52.124264],[0.408577,52.123705],[0.405795,52.122765],[0.396362,52.122359],[0.39488,52.121547],[0.395228,52.119674],[0.39834,52.118792],[0.38959,52.117471],[0.389323,52.116221],[0.388169,52.114403],[0.388581,52.113532],[0.385494,52.11034],[0.385231,52.106615],[0.383695,52.105409],[0.381804,52.102701],[0.382587,52.101148],[0.384004,52.100727],[0.38592,52.099555],[0.388688,52.099212],[0.388212,52.098263],[0.386864,52.097305],[0.389193,52.097138],[0.392372,52.096078],[0.394997,52.095968],[0.394667,52.09488],[0.392477,52.095019],[0.390833,52.089014],[0.39085,52.088483],[0.393874,52.08817],[0.393382,52.086508],[0.39418,52.084354],[0.397182,52.083012],[0.399508,52.084159],[0.401711,52.082595],[0.400236,52.081035],[0.400605,52.080125],[0.402996,52.078203],[0.401663,52.076432],[0.403679,52.075131],[0.400908,52.074032],[0.400893,52.073019],[0.401971,52.072487],[0.407092,52.070794],[0.406203,52.069175],[0.403326,52.066251],[0.404638,52.065502],[0.406267,52.065347],[0.409698,52.064278],[0.414582,52.065078],[0.418785,52.064905],[0.420657,52.066075],[0.42297,52.066889],[0.424565,52.067014],[0.426138,52.067693],[0.428794,52.067678],[0.428989,52.068366],[0.43107,52.068392],[0.43538,52.069083],[0.437058,52.070297],[0.438125,52.072312],[0.441231,52.072253],[0.442306,52.071719],[0.446099,52.072117],[0.44426,52.070195],[0.443951,52.068518],[0.446744,52.068841],[0.447018,52.067818],[0.449543,52.067573],[0.451803,52.067912],[0.451874,52.069401],[0.452715,52.069381],[0.453829,52.071141],[0.456027,52.070932],[0.461823,52.072335],[0.460243,52.072949],[0.459066,52.074686],[0.458116,52.074876],[0.458159,52.076123],[0.462586,52.076203],[0.465271,52.076561],[0.466604,52.078387],[0.470268,52.075933],[0.469871,52.074347],[0.470794,52.073463],[0.474721,52.075193],[0.475836,52.074454],[0.475467,52.073522],[0.481028,52.072263],[0.482985,52.072479],[0.484139,52.070324],[0.487146,52.069627],[0.490246,52.06708],[0.489288,52.065586],[0.487287,52.063977],[0.487727,52.062467],[0.490103,52.059956],[0.492399,52.058729],[0.494689,52.058103],[0.495001,52.057461],[0.498402,52.057143],[0.500501,52.056201],[0.500488,52.053846],[0.504588,52.054475],[0.506114,52.055406],[0.506557,52.056334],[0.509208,52.057569],[0.509051,52.058148],[0.511054,52.059831],[0.514844,52.059298],[0.515803,52.058649],[0.517268,52.05886],[0.519294,52.05733],[0.523152,52.056773],[0.524853,52.057082],[0.530045,52.059438],[0.53439,52.059733],[0.5371,52.059108],[0.538524,52.057916],[0.542263,52.057759],[0.543108,52.058509],[0.546213,52.059697],[0.546667,52.061297],[0.547604,52.061997],[0.550306,52.062225],[0.551744,52.062821],[0.549671,52.064056],[0.549463,52.065125],[0.550329,52.066282],[0.55008,52.067163],[0.551487,52.06881],[0.555143,52.069151],[0.558442,52.070047],[0.5615,52.071122],[0.562407,52.070756],[0.564934,52.071002],[0.568397,52.069693],[0.571777,52.069086],[0.576261,52.071166],[0.5763,52.072872],[0.577838,52.073905],[0.578976,52.073527],[0.582578,52.074488],[0.582133,52.075852],[0.584321,52.075544],[0.58496,52.074139],[0.585928,52.074459],[0.591306,52.074665],[0.593252,52.075042],[0.594802,52.074177],[0.596368,52.076312],[0.5985,52.075329],[0.600101,52.075655],[0.602704,52.077038],[0.603453,52.077042],[0.604396,52.079459],[0.605489,52.080228],[0.607445,52.080919],[0.608878,52.080627],[0.609183,52.079952],[0.612201,52.078828],[0.618203,52.077551],[0.619461,52.076582],[0.620426,52.076978],[0.620256,52.07879],[0.622683,52.079282],[0.625721,52.079273],[0.62678,52.079861],[0.626794,52.081042],[0.628112,52.081667],[0.631776,52.081864],[0.632952,52.082813],[0.632577,52.084526],[0.634573,52.086283],[0.637266,52.086643],[0.637885,52.086169],[0.641783,52.086249],[0.642342,52.085563],[0.645402,52.084873],[0.646623,52.085109],[0.647788,52.084146],[0.651878,52.08315],[0.652902,52.083419],[0.654719,52.085057],[0.656901,52.085442],[0.656536,52.086203],[0.654147,52.086167],[0.654775,52.087615],[0.654721,52.08928],[0.655266,52.0909],[0.653528,52.095372],[0.652922,52.097607],[0.651256,52.099894],[0.649327,52.09954],[0.648847,52.100664],[0.650546,52.101204],[0.646816,52.1027],[0.642597,52.109],[0.642393,52.110238],[0.638611,52.110103],[0.637978,52.113514],[0.637287,52.114662],[0.635704,52.114348],[0.634951,52.115377],[0.632675,52.115235],[0.633847,52.116881],[0.633988,52.118159],[0.636328,52.119412],[0.634964,52.121147],[0.635995,52.122231],[0.635827,52.12296],[0.634362,52.123061],[0.631827,52.122385],[0.63096,52.122529],[0.628658,52.124664],[0.630681,52.125428],[0.630797,52.12734],[0.628754,52.128737],[0.626895,52.128991],[0.626916,52.131],[0.632838,52.130569],[0.634345,52.13223],[0.63633,52.132439],[0.637208,52.133393],[0.637942,52.135415],[0.636108,52.136136],[0.638016,52.137883],[0.636307,52.140172],[0.63372,52.141376],[0.633373,52.14249],[0.634614,52.143281],[0.636792,52.144014],[0.637785,52.143974],[0.638491,52.144944],[0.640262,52.145818],[0.639587,52.146913],[0.637932,52.148069],[0.639129,52.148782],[0.637541,52.150233],[0.638879,52.150955],[0.640182,52.152925],[0.641387,52.156285],[0.644205,52.155749],[0.646375,52.156945],[0.644615,52.158284],[0.645382,52.159128],[0.645374,52.160177],[0.649909,52.160411],[0.6536,52.161519],[0.656281,52.161001],[0.657854,52.161258],[0.661147,52.160527],[0.663418,52.160701],[0.66309,52.158661],[0.664178,52.15768],[0.666914,52.158144],[0.66832,52.15809],[0.67347,52.159243],[0.67554,52.15926],[0.676738,52.157533],[0.674128,52.157346],[0.674254,52.156731],[0.677087,52.157425],[0.682044,52.155997],[0.684861,52.157825],[0.685243,52.15889],[0.686182,52.159311],[0.687988,52.158665],[0.688961,52.157823],[0.6917,52.157581],[0.69304,52.162445],[0.692554,52.165874],[0.690872,52.166341],[0.692186,52.167134],[0.69347,52.166646],[0.694503,52.167271],[0.695061,52.168944],[0.697329,52.170123],[0.696124,52.171],[0.695521,52.172415],[0.693156,52.175443],[0.69574,52.1756],[0.695185,52.176968],[0.695863,52.177598],[0.694232,52.180007],[0.698145,52.181308],[0.703285,52.181079],[0.704122,52.180272],[0.705996,52.179863],[0.707496,52.179076],[0.710616,52.178566],[0.713891,52.177414],[0.714935,52.177285],[0.715384,52.179245],[0.715964,52.179281],[0.7157,52.175185],[0.716636,52.174367],[0.719708,52.174134],[0.720377,52.171298],[0.7201,52.168903],[0.720629,52.167676],[0.723494,52.164973],[0.726827,52.165978],[0.726427,52.166646],[0.728162,52.1681],[0.729026,52.167672],[0.729829,52.165715],[0.733003,52.167038],[0.732869,52.167684],[0.734417,52.168647],[0.738336,52.169971],[0.738715,52.16848],[0.738102,52.16613],[0.739498,52.165358],[0.741808,52.165049],[0.742263,52.161835],[0.740907,52.160668],[0.741992,52.159331],[0.74312,52.159692],[0.747605,52.15959],[0.749869,52.159145],[0.753007,52.160012],[0.755364,52.159509],[0.756899,52.159527],[0.759086,52.157522],[0.761542,52.157938],[0.762018,52.160443],[0.761592,52.161738],[0.762902,52.163556],[0.76505,52.173903],[0.768515,52.174274],[0.768689,52.175],[0.776495,52.174515],[0.777332,52.175702],[0.777132,52.176546],[0.779667,52.176791],[0.782234,52.177625],[0.786919,52.177894],[0.789401,52.176747],[0.792186,52.176264],[0.793078,52.175641],[0.796624,52.175211],[0.798401,52.174373],[0.800067,52.174446],[0.804721,52.173651],[0.807684,52.172151],[0.809606,52.172084],[0.814169,52.170733],[0.817242,52.17237],[0.822494,52.174559],[0.824572,52.179715],[0.826997,52.179317],[0.829862,52.17925],[0.830123,52.180283],[0.836274,52.182169],[0.83335,52.184688],[0.832729,52.186841],[0.834679,52.187993],[0.836042,52.190121],[0.836041,52.192681],[0.838055,52.194583],[0.838129,52.195341],[0.835359,52.195825],[0.836693,52.196798],[0.835963,52.197235],[0.836346,52.198296],[0.830257,52.19904],[0.829283,52.197633],[0.827594,52.198614],[0.826416,52.200217],[0.821355,52.19899],[0.819416,52.198987],[0.819919,52.200167],[0.818809,52.202029],[0.815155,52.20391],[0.814208,52.207043],[0.817125,52.213286],[0.819806,52.221327],[0.82174,52.224936],[0.822774,52.227915],[0.820915,52.229373],[0.821856,52.229983],[0.819952,52.233379],[0.824162,52.238868],[0.827129,52.238968],[0.824974,52.240336],[0.821398,52.241535],[0.816922,52.241425],[0.813589,52.243804],[0.813426,52.245995],[0.806681,52.246439],[0.80777,52.249395],[0.804044,52.250157],[0.801053,52.251107],[0.797581,52.25123],[0.798225,52.256199],[0.802185,52.258144],[0.798993,52.262356],[0.800831,52.263659],[0.799441,52.264713],[0.801604,52.265909],[0.803767,52.265984],[0.809416,52.267051],[0.81299,52.265102],[0.817711,52.264382],[0.820709,52.26649],[0.82298,52.266269],[0.825826,52.266515],[0.83306,52.264816],[0.836243,52.263139],[0.836931,52.261976],[0.841919,52.26012],[0.843865,52.2598],[0.845957,52.261778],[0.844646,52.263227],[0.842502,52.263985],[0.840184,52.266319],[0.842601,52.268027],[0.849568,52.264804],[0.852059,52.265486],[0.85356,52.267514],[0.856327,52.268442],[0.855509,52.269764],[0.854119,52.270438],[0.852794,52.271725],[0.85444,52.27516],[0.853683,52.27707],[0.850465,52.278429],[0.849102,52.280095],[0.849046,52.281961],[0.845985,52.282711],[0.843898,52.284443],[0.842899,52.284781],[0.849788,52.285344],[0.8527,52.286183],[0.855557,52.286349],[0.855262,52.291546],[0.859664,52.291964],[0.863626,52.293267],[0.869003,52.293459],[0.868687,52.295755],[0.866794,52.297864],[0.874082,52.29949],[0.874329,52.298282],[0.87689,52.297552],[0.876989,52.295827],[0.880023,52.296014],[0.880339,52.295309],[0.8796,52.293406],[0.883785,52.292785],[0.887356,52.292719],[0.886875,52.295908],[0.885638,52.296094],[0.885726,52.297424],[0.884649,52.297412],[0.882865,52.298184],[0.882935,52.300137],[0.889687,52.299722],[0.892884,52.300102],[0.898313,52.299712],[0.900152,52.298916],[0.902839,52.300781],[0.90335,52.30181],[0.90316,52.303846],[0.908919,52.301592],[0.911678,52.30206],[0.911336,52.303481],[0.909018,52.304472],[0.908185,52.303487],[0.904577,52.305588],[0.908731,52.30613],[0.916814,52.308102],[0.919472,52.309413],[0.918545,52.311338],[0.925136,52.311737],[0.931124,52.312869],[0.930127,52.314322],[0.927541,52.316432],[0.92594,52.319279],[0.926809,52.320084],[0.926214,52.321424],[0.92612,52.323353],[0.92514,52.325587],[0.925692,52.327336],[0.926852,52.328335],[0.928509,52.327951],[0.931432,52.330402],[0.932271,52.331998],[0.932222,52.332944],[0.933191,52.334146],[0.932697,52.33573],[0.936116,52.335322],[0.937941,52.334702],[0.940579,52.335517],[0.94662,52.336457],[0.95323,52.336861],[0.955081,52.338145],[0.955831,52.339331],[0.957543,52.340736],[0.955705,52.341766],[0.956759,52.345494],[0.957704,52.34579],[0.958067,52.347579],[0.957427,52.347975],[0.957984,52.350782],[0.956179,52.351513],[0.956049,52.354407],[0.955098,52.355627],[0.953171,52.356061],[0.953827,52.357136],[0.959512,52.361852],[0.964621,52.36406],[0.967252,52.365735],[0.966655,52.367129],[0.966649,52.368748],[0.967471,52.370113]]]},"properties":{"LAD22CD":"E07000245","LAD22NM":"West Suffolk","BNG_E":580944,"BNG_N":271124,"LONG":0.652769,"LAT":52.30842,"GlobalID":"8f913fac-1459-40ae-b0d3-c103ca9d0370"},"id":239}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.926945,51.061591],[-2.924945,51.06271],[-2.921452,51.064117],[-2.920976,51.064907],[-2.919186,51.065565],[-2.917197,51.067876],[-2.919873,51.070822],[-2.922417,51.072086],[-2.923844,51.073235],[-2.926856,51.074346],[-2.927964,51.075823],[-2.933626,51.079684],[-2.934097,51.080557],[-2.937451,51.080097],[-2.937344,51.078641],[-2.935845,51.076532],[-2.938862,51.075652],[-2.946486,51.075895],[-2.946936,51.074862],[-2.948555,51.073916],[-2.94806,51.072761],[-2.946692,51.072354],[-2.947373,51.071145],[-2.946275,51.068584],[-2.941462,51.067313],[-2.931982,51.061916],[-2.929841,51.063145],[-2.926945,51.061591]]],[[[-2.888194,51.069099],[-2.890481,51.07054],[-2.896809,51.073012],[-2.897872,51.073088],[-2.900107,51.074189],[-2.901314,51.074272],[-2.901956,51.075469],[-2.904392,51.075126],[-2.912195,51.08516],[-2.921584,51.081805],[-2.922181,51.082913],[-2.923259,51.082879],[-2.925265,51.08513],[-2.934601,51.083303],[-2.933707,51.079998],[-2.927874,51.075947],[-2.926809,51.074533],[-2.923394,51.073193],[-2.922387,51.072252],[-2.919662,51.070869],[-2.917322,51.068579],[-2.916797,51.067268],[-2.911548,51.065179],[-2.907834,51.063056],[-2.905644,51.0613],[-2.901776,51.061131],[-2.896697,51.062154],[-2.894799,51.061539],[-2.893184,51.061496],[-2.892543,51.061242],[-2.892461,51.06257],[-2.890893,51.065236],[-2.890773,51.066341],[-2.888194,51.069099]]],[[[-3.054777,51.205936],[-3.059388,51.203833],[-3.064485,51.202705],[-3.066777,51.202485],[-3.071012,51.201415],[-3.076322,51.201252],[-3.080618,51.201928],[-3.090248,51.205596],[-3.094022,51.206558],[-3.096299,51.206778],[-3.10057,51.208156],[-3.10326,51.208469],[-3.106178,51.207804],[-3.107189,51.207959],[-3.113182,51.206951],[-3.11502,51.207119],[-3.121028,51.208642],[-3.123295,51.210278],[-3.126551,51.21139],[-3.127251,51.210921],[-3.131746,51.210818],[-3.136321,51.209847],[-3.144351,51.209052],[-3.148667,51.20918],[-3.153942,51.208774],[-3.156507,51.208153],[-3.159265,51.205444],[-3.164699,51.202528],[-3.171992,51.202149],[-3.180695,51.199731],[-3.188202,51.202396],[-3.190452,51.20274],[-3.195787,51.202392],[-3.199976,51.201548],[-3.202213,51.201402],[-3.206517,51.199712],[-3.21632,51.194282],[-3.218664,51.193959],[-3.219825,51.194148],[-3.221645,51.193163],[-3.225815,51.193044],[-3.228364,51.192006],[-3.231724,51.191201],[-3.237035,51.191094],[-3.243827,51.188726],[-3.250056,51.187408],[-3.254033,51.187347],[-3.256838,51.187735],[-3.26224,51.185748],[-3.265892,51.183462],[-3.269204,51.182006],[-3.27598,51.179769],[-3.278075,51.179582],[-3.280141,51.180494],[-3.282738,51.180191],[-3.284119,51.180636],[-3.2861,51.181924],[-3.288659,51.181664],[-3.292259,51.182225],[-3.296584,51.182221],[-3.299597,51.181707],[-3.302241,51.18085],[-3.303147,51.180983],[-3.307908,51.179633],[-3.312456,51.179479],[-3.319372,51.180484],[-3.320153,51.181188],[-3.319752,51.182167],[-3.322858,51.18265],[-3.32471,51.182478],[-3.325249,51.183017],[-3.327107,51.182877],[-3.327708,51.181947],[-3.331951,51.182996],[-3.336414,51.183314],[-3.345774,51.181364],[-3.352529,51.181538],[-3.354103,51.182128],[-3.363304,51.184044],[-3.372401,51.184851],[-3.376116,51.184622],[-3.38472,51.182965],[-3.39542,51.18243],[-3.404755,51.182621],[-3.407735,51.182956],[-3.411613,51.183896],[-3.415273,51.185585],[-3.41849,51.188318],[-3.4235,51.190175],[-3.426724,51.192493],[-3.432396,51.195533],[-3.433667,51.197138],[-3.435815,51.19883],[-3.437548,51.202305],[-3.442009,51.2065],[-3.443466,51.207279],[-3.446863,51.208267],[-3.447602,51.208902],[-3.454195,51.208848],[-3.45524,51.209529],[-3.460631,51.208006],[-3.46415,51.207514],[-3.465435,51.207813],[-3.467708,51.207648],[-3.470945,51.208297],[-3.472898,51.209264],[-3.473795,51.212578],[-3.474752,51.213568],[-3.473794,51.214229],[-3.475883,51.21464],[-3.479035,51.216994],[-3.483766,51.219175],[-3.486234,51.219841],[-3.489527,51.220338],[-3.492939,51.222573],[-3.496887,51.223973],[-3.49821,51.224009],[-3.502997,51.222995],[-3.508173,51.223938],[-3.512914,51.225949],[-3.517855,51.226274],[-3.520783,51.227207],[-3.528378,51.228861],[-3.533621,51.230657],[-3.543007,51.232385],[-3.548406,51.232342],[-3.555554,51.233279],[-3.557359,51.232525],[-3.559196,51.232613],[-3.563498,51.23143],[-3.567808,51.231398],[-3.569961,51.23186],[-3.573456,51.231509],[-3.574972,51.231957],[-3.577171,51.231853],[-3.578709,51.232142],[-3.578726,51.231013],[-3.580559,51.229365],[-3.586179,51.225522],[-3.590684,51.223262],[-3.598931,51.220825],[-3.602896,51.220301],[-3.606551,51.220276],[-3.610836,51.219585],[-3.608105,51.218965],[-3.607586,51.21961],[-3.605906,51.218518],[-3.606648,51.217292],[-3.609444,51.217353],[-3.609882,51.218278],[-3.612296,51.218732],[-3.617589,51.216843],[-3.622016,51.216669],[-3.624326,51.217562],[-3.625623,51.218944],[-3.62792,51.219123],[-3.630454,51.221336],[-3.629645,51.221719],[-3.630609,51.222991],[-3.631976,51.223608],[-3.636351,51.222835],[-3.641296,51.222907],[-3.645999,51.224114],[-3.649586,51.224487],[-3.655026,51.224452],[-3.65704,51.225137],[-3.658619,51.224992],[-3.665149,51.225843],[-3.667133,51.225907],[-3.671663,51.226714],[-3.674189,51.226679],[-3.681384,51.227294],[-3.691061,51.228564],[-3.69458,51.229366],[-3.698448,51.231075],[-3.700727,51.231238],[-3.703931,51.230808],[-3.708074,51.23204],[-3.715001,51.231682],[-3.720022,51.232678],[-3.720845,51.233105],[-3.721954,51.232475],[-3.723119,51.230531],[-3.727067,51.229436],[-3.727318,51.22704],[-3.7267,51.225645],[-3.728304,51.225101],[-3.729253,51.223909],[-3.733201,51.222725],[-3.728737,51.218851],[-3.729046,51.216755],[-3.730887,51.216012],[-3.731573,51.215131],[-3.730824,51.213027],[-3.729412,51.211535],[-3.727735,51.208428],[-3.728464,51.207047],[-3.727987,51.20458],[-3.726372,51.202741],[-3.727068,51.201214],[-3.726211,51.199423],[-3.727008,51.197463],[-3.729001,51.19463],[-3.732021,51.193622],[-3.732088,51.190969],[-3.72945,51.188296],[-3.726002,51.186355],[-3.724422,51.183921],[-3.72509,51.18247],[-3.723826,51.180727],[-3.726033,51.178934],[-3.728061,51.178728],[-3.732852,51.177066],[-3.735493,51.176949],[-3.738099,51.177329],[-3.739589,51.177112],[-3.742115,51.175972],[-3.745875,51.175557],[-3.751179,51.17709],[-3.757301,51.17731],[-3.777183,51.173507],[-3.78211,51.17228],[-3.786304,51.171927],[-3.793381,51.17275],[-3.79599,51.174544],[-3.806268,51.177873],[-3.81189,51.177632],[-3.815569,51.178504],[-3.817519,51.17853],[-3.824359,51.176115],[-3.832281,51.177563],[-3.838447,51.177098],[-3.839821,51.176674],[-3.838923,51.174959],[-3.837496,51.167358],[-3.836463,51.165038],[-3.835351,51.154107],[-3.832069,51.151186],[-3.834472,51.144859],[-3.834738,51.141383],[-3.834102,51.140197],[-3.834491,51.138381],[-3.83115,51.135377],[-3.82525,51.131249],[-3.822115,51.126954],[-3.816409,51.122665],[-3.813728,51.121049],[-3.807176,51.117919],[-3.804289,51.115685],[-3.797501,51.114076],[-3.791437,51.111371],[-3.787035,51.110168],[-3.780121,51.107705],[-3.776909,51.106935],[-3.767396,51.105783],[-3.75755,51.100539],[-3.750874,51.095128],[-3.745491,51.092536],[-3.741344,51.089852],[-3.73863,51.088683],[-3.730048,51.086777],[-3.722468,51.082901],[-3.719948,51.080821],[-3.714907,51.080177],[-3.709251,51.080688],[-3.70759,51.080453],[-3.706132,51.080692],[-3.704326,51.080406],[-3.701518,51.080757],[-3.697863,51.080391],[-3.69649,51.08096],[-3.692445,51.080559],[-3.68878,51.078448],[-3.687298,51.076167],[-3.682368,51.073354],[-3.679639,51.072714],[-3.675633,51.07282],[-3.672805,51.071193],[-3.669833,51.070398],[-3.666384,51.070191],[-3.664919,51.0695],[-3.664799,51.067631],[-3.664337,51.067154],[-3.656202,51.065074],[-3.653226,51.064733],[-3.65029,51.064076],[-3.65088,51.0616],[-3.652311,51.060395],[-3.652331,51.059642],[-3.649826,51.059415],[-3.648836,51.058564],[-3.645412,51.057877],[-3.642448,51.058537],[-3.63997,51.057819],[-3.638073,51.056626],[-3.635354,51.056297],[-3.633656,51.057017],[-3.631279,51.059523],[-3.62809,51.059783],[-3.624304,51.061239],[-3.62131,51.060663],[-3.61935,51.059962],[-3.614693,51.056567],[-3.612413,51.056217],[-3.611222,51.05758],[-3.61033,51.057947],[-3.607585,51.057314],[-3.604845,51.057564],[-3.603831,51.057077],[-3.602959,51.055784],[-3.601429,51.055398],[-3.596875,51.055918],[-3.596018,51.054897],[-3.596611,51.053736],[-3.597552,51.053531],[-3.599826,51.051741],[-3.60033,51.050642],[-3.599948,51.047491],[-3.599171,51.046402],[-3.598282,51.04273],[-3.597513,51.041694],[-3.59815,51.040504],[-3.598169,51.036972],[-3.602461,51.03266],[-3.602698,51.029956],[-3.610742,51.024494],[-3.611205,51.023662],[-3.610898,51.02165],[-3.611871,51.018852],[-3.614655,51.01549],[-3.614213,51.013766],[-3.614625,51.012716],[-3.612086,51.011714],[-3.610109,51.009988],[-3.609746,51.007983],[-3.603208,51.007233],[-3.591647,51.006166],[-3.578252,51.005588],[-3.570984,51.004726],[-3.569186,51.005034],[-3.563477,51.004936],[-3.559626,51.005251],[-3.554309,51.004605],[-3.550044,51.00446],[-3.548396,51.004752],[-3.5415,51.004216],[-3.538368,51.004592],[-3.534388,51.00449],[-3.53505,51.003347],[-3.527564,51.005522],[-3.527042,51.006082],[-3.527325,51.007644],[-3.526277,51.009759],[-3.523236,51.0098],[-3.522621,51.010791],[-3.523032,51.012983],[-3.518882,51.014795],[-3.520701,51.015847],[-3.520565,51.016654],[-3.521739,51.017892],[-3.520319,51.018959],[-3.520991,51.020828],[-3.519371,51.022534],[-3.520493,51.024096],[-3.519563,51.025397],[-3.51485,51.02555],[-3.513096,51.025876],[-3.50975,51.027045],[-3.50505,51.029906],[-3.502962,51.030343],[-3.495592,51.031021],[-3.488526,51.032421],[-3.484264,51.03381],[-3.478346,51.031596],[-3.475339,51.02966],[-3.472459,51.029181],[-3.468526,51.02805],[-3.463689,51.025262],[-3.461839,51.025563],[-3.459752,51.025251],[-3.45431,51.026699],[-3.450492,51.025589],[-3.446436,51.025864],[-3.446407,51.027421],[-3.445447,51.028068],[-3.440231,51.029129],[-3.436782,51.030261],[-3.430852,51.030921],[-3.429273,51.030636],[-3.426815,51.031405],[-3.421304,51.030778],[-3.418748,51.029627],[-3.417821,51.028676],[-3.415702,51.027836],[-3.41506,51.027199],[-3.415998,51.024476],[-3.415769,51.023623],[-3.412965,51.021385],[-3.414174,51.019703],[-3.407535,51.019523],[-3.402927,51.020117],[-3.399779,51.019728],[-3.389904,51.019776],[-3.380488,51.018486],[-3.37908,51.01659],[-3.378897,51.015609],[-3.380846,51.013391],[-3.380141,51.011562],[-3.380488,51.008137],[-3.380868,51.006698],[-3.38241,51.004537],[-3.381419,50.999208],[-3.381911,50.998248],[-3.381684,50.997041],[-3.382101,50.995924],[-3.383428,50.994537],[-3.382656,50.991873],[-3.383073,50.991031],[-3.382996,50.989279],[-3.381301,50.986794],[-3.380471,50.984312],[-3.380468,50.982539],[-3.379235,50.980576],[-3.378664,50.977508],[-3.372452,50.977279],[-3.369158,50.978581],[-3.366172,50.978946],[-3.364643,50.978825],[-3.362274,50.978126],[-3.359817,50.978103],[-3.355299,50.979322],[-3.351544,50.97976],[-3.350761,50.980119],[-3.33941,50.981112],[-3.335217,50.982779],[-3.33367,50.982788],[-3.331342,50.981788],[-3.330835,50.981098],[-3.327841,50.979855],[-3.327155,50.979125],[-3.325882,50.979093],[-3.323178,50.977529],[-3.323673,50.976865],[-3.322843,50.975612],[-3.323458,50.974481],[-3.321372,50.972772],[-3.320412,50.972418],[-3.320314,50.970999],[-3.317666,50.970368],[-3.315757,50.969639],[-3.312153,50.9675],[-3.305468,50.964958],[-3.301819,50.963057],[-3.300278,50.961757],[-3.30156,50.960576],[-3.300095,50.958702],[-3.298283,50.958126],[-3.295629,50.956649],[-3.293848,50.955139],[-3.292461,50.954899],[-3.29007,50.955117],[-3.28441,50.953764],[-3.276504,50.95087],[-3.2725,50.949015],[-3.264294,50.946582],[-3.262138,50.944093],[-3.256706,50.943337],[-3.254831,50.941846],[-3.244329,50.942966],[-3.240262,50.942902],[-3.232515,50.944147],[-3.228073,50.943822],[-3.226303,50.943987],[-3.218347,50.943281],[-3.195783,50.947508],[-3.188919,50.948559],[-3.184543,50.948666],[-3.171828,50.947412],[-3.166479,50.947713],[-3.165371,50.946511],[-3.163946,50.945973],[-3.165227,50.944141],[-3.170205,50.939762],[-3.171319,50.936849],[-3.172461,50.935781],[-3.173073,50.931527],[-3.173557,50.930651],[-3.172874,50.928638],[-3.173475,50.926924],[-3.172438,50.925638],[-3.17528,50.924567],[-3.176225,50.923874],[-3.17755,50.923893],[-3.180299,50.922929],[-3.179166,50.920085],[-3.180226,50.918751],[-3.182881,50.916631],[-3.184289,50.914479],[-3.186242,50.913103],[-3.187963,50.910344],[-3.180462,50.908474],[-3.177526,50.908175],[-3.175832,50.907645],[-3.172737,50.907889],[-3.170556,50.90759],[-3.171478,50.905993],[-3.171856,50.90277],[-3.170397,50.900373],[-3.167756,50.900824],[-3.163892,50.900648],[-3.162962,50.900927],[-3.159364,50.900812],[-3.156156,50.900075],[-3.154134,50.898017],[-3.15392,50.895265],[-3.152877,50.893828],[-3.147923,50.891746],[-3.144186,50.891396],[-3.140145,50.892071],[-3.139626,50.891461],[-3.135126,50.895114],[-3.1311,50.897247],[-3.126341,50.90172],[-3.123265,50.899453],[-3.122079,50.89816],[-3.118291,50.899359],[-3.115871,50.900803],[-3.112053,50.902403],[-3.109587,50.902438],[-3.106997,50.902851],[-3.103569,50.90411],[-3.101471,50.904075],[-3.099475,50.904649],[-3.095451,50.904928],[-3.089851,50.906114],[-3.087893,50.906255],[-3.080546,50.905435],[-3.078088,50.905435],[-3.060071,50.908455],[-3.057197,50.908418],[-3.056219,50.908043],[-3.053112,50.908742],[-3.052399,50.908277],[-3.052803,50.909439],[-3.057623,50.911075],[-3.058457,50.912046],[-3.06007,50.912763],[-3.062362,50.913109],[-3.063877,50.913774],[-3.06609,50.913264],[-3.069088,50.913373],[-3.069283,50.913834],[-3.073173,50.914484],[-3.077993,50.917633],[-3.079109,50.918799],[-3.082065,50.919675],[-3.08382,50.921356],[-3.084572,50.921645],[-3.084808,50.923509],[-3.088875,50.925488],[-3.091754,50.928384],[-3.092389,50.929643],[-3.090559,50.9318],[-3.088378,50.938007],[-3.086218,50.939641],[-3.080356,50.939842],[-3.076611,50.938524],[-3.06823,50.936875],[-3.065046,50.934633],[-3.058907,50.933036],[-3.058586,50.932621],[-3.056037,50.932981],[-3.052411,50.932743],[-3.048266,50.933363],[-3.047166,50.932899],[-3.045573,50.933824],[-3.042616,50.934634],[-3.041627,50.934427],[-3.039125,50.935407],[-3.037077,50.935341],[-3.034969,50.936068],[-3.032821,50.936308],[-3.032163,50.937457],[-3.029318,50.939185],[-3.030137,50.9398],[-3.028777,50.941542],[-3.021086,50.944487],[-3.018043,50.944582],[-3.014946,50.944938],[-3.013678,50.946096],[-3.012072,50.946543],[-3.010698,50.947758],[-3.011795,50.950574],[-3.008746,50.953681],[-3.008887,50.955717],[-3.007709,50.957071],[-3.005269,50.958309],[-3.002727,50.95708],[-3.000489,50.95789],[-2.995762,50.959269],[-2.99139,50.961253],[-2.989528,50.961589],[-2.986744,50.962934],[-2.98474,50.963263],[-2.984599,50.964624],[-2.980461,50.964992],[-2.980174,50.9674],[-2.980937,50.968799],[-2.982019,50.968785],[-2.982787,50.972096],[-2.979392,50.972683],[-2.978847,50.97155],[-2.97716,50.971788],[-2.975106,50.97316],[-2.975731,50.974846],[-2.975742,50.977544],[-2.978046,50.984841],[-2.983921,50.99026],[-2.982675,50.991315],[-2.980594,50.992104],[-2.9795,50.993118],[-2.980697,50.994354],[-2.979612,50.995345],[-2.979022,50.997159],[-2.97812,50.998064],[-2.971932,50.999604],[-2.970867,50.999454],[-2.96816,51.000028],[-2.964796,50.999992],[-2.961019,51.000596],[-2.96004,50.999747],[-2.956706,51.000483],[-2.957317,51.001988],[-2.954519,51.002491],[-2.952498,51.00211],[-2.94924,51.003324],[-2.94431,51.003275],[-2.946458,51.004216],[-2.94842,51.006155],[-2.950741,51.00959],[-2.949755,51.009767],[-2.949736,51.011278],[-2.947216,51.01239],[-2.946016,51.013529],[-2.925844,51.021745],[-2.886737,51.045702],[-2.883844,51.045787],[-2.884055,51.047282],[-2.883919,51.048975],[-2.887605,51.049515],[-2.887937,51.050998],[-2.889511,51.051823],[-2.890557,51.053241],[-2.892463,51.053927],[-2.892949,51.054434],[-2.893212,51.0552],[-2.892696,51.05739],[-2.892945,51.058054],[-2.893394,51.058854],[-2.892781,51.061276],[-2.894966,51.061459],[-2.896713,51.062037],[-2.901759,51.061018],[-2.905288,51.061058],[-2.906906,51.06192],[-2.908328,51.063252],[-2.911797,51.065158],[-2.917122,51.06729],[-2.919198,51.065423],[-2.920824,51.064886],[-2.921441,51.064027],[-2.92506,51.062541],[-2.928165,51.0606],[-2.929949,51.059833],[-2.931683,51.058121],[-2.932937,51.057344],[-2.933368,51.057248],[-2.935827,51.05717],[-2.942752,51.057652],[-2.943765,51.058032],[-2.947084,51.056983],[-2.948365,51.055117],[-2.950863,51.054295],[-2.951241,51.052321],[-2.955281,51.051455],[-2.957783,51.047431],[-2.959695,51.047374],[-2.962799,51.048136],[-2.963378,51.046418],[-2.967298,51.047006],[-2.968502,51.046594],[-2.969257,51.045649],[-2.97259,51.044034],[-2.973197,51.042596],[-2.974835,51.042737],[-2.979427,51.042079],[-2.980706,51.040869],[-2.982153,51.040821],[-2.985484,51.044136],[-2.987465,51.044169],[-2.987154,51.045919],[-2.989834,51.046828],[-2.994111,51.046509],[-2.994088,51.048775],[-2.995017,51.050888],[-2.99745,51.053784],[-2.999309,51.053948],[-3.000095,51.053445],[-3.002285,51.053014],[-3.002522,51.052585],[-3.005601,51.053219],[-3.00929,51.052494],[-3.016239,51.05479],[-3.019699,51.054134],[-3.020281,51.053553],[-3.02242,51.053638],[-3.027229,51.048382],[-3.031212,51.047914],[-3.031979,51.050858],[-3.029458,51.05085],[-3.029877,51.055351],[-3.032436,51.055546],[-3.03221,51.057086],[-3.024452,51.057014],[-3.02468,51.059843],[-3.026194,51.059388],[-3.028052,51.059788],[-3.029773,51.059383],[-3.032702,51.06],[-3.035873,51.059875],[-3.03555,51.060969],[-3.04052,51.061247],[-3.043161,51.062383],[-3.043439,51.063328],[-3.045401,51.065195],[-3.046452,51.06556],[-3.051423,51.066259],[-3.052723,51.064991],[-3.054387,51.065282],[-3.056874,51.065088],[-3.062353,51.065405],[-3.065222,51.066088],[-3.070678,51.068025],[-3.071173,51.067944],[-3.077989,51.07],[-3.084386,51.071508],[-3.08631,51.070139],[-3.090358,51.070691],[-3.090712,51.069168],[-3.089565,51.066067],[-3.094591,51.064955],[-3.095822,51.067656],[-3.100948,51.067517],[-3.099535,51.068557],[-3.100392,51.072423],[-3.102315,51.073046],[-3.104565,51.073284],[-3.114582,51.072898],[-3.115485,51.072128],[-3.121339,51.070961],[-3.129125,51.071865],[-3.131891,51.071691],[-3.134873,51.072348],[-3.137746,51.072118],[-3.138865,51.072794],[-3.138774,51.073742],[-3.141922,51.075846],[-3.143464,51.077308],[-3.143852,51.079271],[-3.145881,51.079084],[-3.147591,51.082151],[-3.147501,51.083183],[-3.149703,51.083046],[-3.153048,51.084853],[-3.150697,51.08818],[-3.149928,51.0887],[-3.157107,51.08976],[-3.159951,51.09086],[-3.159342,51.091403],[-3.15551,51.091484],[-3.151288,51.093291],[-3.15408,51.094935],[-3.153801,51.096508],[-3.150936,51.097858],[-3.147658,51.09794],[-3.142222,51.098813],[-3.140859,51.099515],[-3.140026,51.100565],[-3.142306,51.102649],[-3.14305,51.105795],[-3.141603,51.107304],[-3.142166,51.109279],[-3.146785,51.107583],[-3.147792,51.106808],[-3.151521,51.106109],[-3.153614,51.108629],[-3.155046,51.108654],[-3.156451,51.107722],[-3.158207,51.107566],[-3.158367,51.106544],[-3.159708,51.106474],[-3.161477,51.104951],[-3.162738,51.10489],[-3.165965,51.104081],[-3.168426,51.104307],[-3.168049,51.106132],[-3.168631,51.108391],[-3.175052,51.107514],[-3.179531,51.108862],[-3.18189,51.108708],[-3.1832,51.110258],[-3.186327,51.111706],[-3.190518,51.111788],[-3.193875,51.112514],[-3.193712,51.114001],[-3.194334,51.114979],[-3.199438,51.119693],[-3.205394,51.123227],[-3.208454,51.125984],[-3.215657,51.129399],[-3.216469,51.130377],[-3.215549,51.133132],[-3.213871,51.134242],[-3.212601,51.135808],[-3.205785,51.141372],[-3.204544,51.142146],[-3.201735,51.142723],[-3.198308,51.142677],[-3.19381,51.143089],[-3.192518,51.143631],[-3.190006,51.145544],[-3.186838,51.146771],[-3.185133,51.146927],[-3.180628,51.146484],[-3.178899,51.14663],[-3.177367,51.147451],[-3.17743,51.148849],[-3.175753,51.148867],[-3.172902,51.152572],[-3.169458,51.152442],[-3.165994,51.152744],[-3.163329,51.154101],[-3.161768,51.156581],[-3.161591,51.15921],[-3.158985,51.15953],[-3.156665,51.162705],[-3.152189,51.161859],[-3.144019,51.163043],[-3.142585,51.162995],[-3.140684,51.162364],[-3.138141,51.162451],[-3.135282,51.162987],[-3.133315,51.163945],[-3.134288,51.166487],[-3.136502,51.167675],[-3.131343,51.168127],[-3.128015,51.168944],[-3.124819,51.168937],[-3.123232,51.169524],[-3.120322,51.169324],[-3.119035,51.169701],[-3.11364,51.169948],[-3.112797,51.170528],[-3.114372,51.172298],[-3.114448,51.173462],[-3.115474,51.17347],[-3.116527,51.174495],[-3.115562,51.175853],[-3.112382,51.176713],[-3.112694,51.177859],[-3.10886,51.177965],[-3.106063,51.177598],[-3.10636,51.179372],[-3.107291,51.180956],[-3.107266,51.182961],[-3.106239,51.183269],[-3.103554,51.1833],[-3.099096,51.184328],[-3.096829,51.184519],[-3.098183,51.188453],[-3.096481,51.190115],[-3.092946,51.1904],[-3.088384,51.191244],[-3.088064,51.191813],[-3.085619,51.193282],[-3.085041,51.194696],[-3.083597,51.194935],[-3.081361,51.197509],[-3.079135,51.196624],[-3.070136,51.195391],[-3.067474,51.19446],[-3.059197,51.199411],[-3.058808,51.200308],[-3.056911,51.201982],[-3.056086,51.201641],[-3.052574,51.203173],[-3.054777,51.205936]]]]},"properties":{"LAD22CD":"E07000246","LAD22NM":"Somerset West and Taunton","BNG_E":304961,"BNG_N":130227,"LONG":-3.35764,"LAT":51.06348,"GlobalID":"3f1ac43e-72e6-4659-8ded-6795639b90dc"},"id":240}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.379132,53.63087],[-2.383831,53.631286],[-2.385016,53.631819],[-2.385949,53.633015],[-2.397846,53.632208],[-2.398729,53.631705],[-2.400794,53.629063],[-2.400012,53.62828],[-2.40121,53.624599],[-2.403542,53.624406],[-2.404444,53.625058],[-2.409822,53.625395],[-2.413832,53.624686],[-2.416243,53.623695],[-2.419928,53.62361],[-2.421697,53.623836],[-2.426355,53.626516],[-2.425883,53.628203],[-2.426144,53.63501],[-2.430654,53.638462],[-2.432652,53.641382],[-2.438725,53.646045],[-2.442286,53.643783],[-2.443078,53.64241],[-2.446743,53.641448],[-2.448846,53.642071],[-2.450271,53.641432],[-2.448878,53.639058],[-2.447968,53.636636],[-2.449242,53.63558],[-2.44968,53.633378],[-2.448392,53.631862],[-2.44925,53.63112],[-2.450644,53.627805],[-2.453404,53.627959],[-2.454917,53.626927],[-2.45622,53.626807],[-2.456817,53.625729],[-2.458289,53.624631],[-2.456483,53.623946],[-2.455265,53.624129],[-2.453179,53.622777],[-2.453781,53.621974],[-2.457524,53.620985],[-2.4597,53.620043],[-2.463409,53.622004],[-2.46602,53.621699],[-2.467083,53.620969],[-2.470443,53.619891],[-2.472993,53.616632],[-2.479196,53.617036],[-2.494827,53.622143],[-2.507931,53.625404],[-2.511323,53.626995],[-2.525158,53.618684],[-2.529375,53.617024],[-2.531114,53.615487],[-2.533495,53.615064],[-2.537152,53.612717],[-2.538049,53.61132],[-2.540518,53.610274],[-2.542743,53.610048],[-2.544932,53.60917],[-2.549811,53.608143],[-2.552218,53.607356],[-2.552646,53.604986],[-2.555786,53.604374],[-2.557291,53.603048],[-2.557261,53.601798],[-2.558148,53.600477],[-2.55898,53.600329],[-2.55959,53.598913],[-2.561711,53.598631],[-2.569278,53.595597],[-2.574004,53.594291],[-2.57535,53.59523],[-2.576742,53.59733],[-2.578125,53.597914],[-2.580886,53.600024],[-2.58061,53.601979],[-2.582419,53.603543],[-2.583065,53.604695],[-2.586732,53.606045],[-2.587393,53.607897],[-2.589758,53.608123],[-2.591469,53.609002],[-2.591681,53.60976],[-2.593478,53.610002],[-2.595926,53.610815],[-2.597599,53.609065],[-2.600735,53.608418],[-2.602645,53.60876],[-2.604889,53.607031],[-2.608647,53.606338],[-2.611272,53.604983],[-2.612248,53.603882],[-2.615158,53.602824],[-2.615303,53.59986],[-2.616027,53.598308],[-2.617939,53.596909],[-2.617396,53.595836],[-2.6188,53.595388],[-2.61992,53.594257],[-2.621293,53.594501],[-2.622788,53.593617],[-2.625907,53.593683],[-2.62844,53.591057],[-2.62861,53.590457],[-2.627511,53.589442],[-2.623787,53.589639],[-2.62098,53.590353],[-2.619748,53.590971],[-2.618008,53.591102],[-2.615503,53.590641],[-2.612352,53.590493],[-2.606154,53.588312],[-2.603204,53.588203],[-2.601716,53.58883],[-2.596143,53.588817],[-2.59536,53.588059],[-2.58971,53.586653],[-2.585075,53.58508],[-2.582013,53.582755],[-2.577605,53.581003],[-2.577671,53.579459],[-2.578986,53.578388],[-2.5784,53.577431],[-2.575164,53.57677],[-2.573275,53.574213],[-2.568434,53.572029],[-2.565782,53.57008],[-2.565646,53.5687],[-2.567233,53.567587],[-2.568535,53.564711],[-2.564395,53.563676],[-2.5613,53.562146],[-2.560137,53.562109],[-2.559647,53.561146],[-2.563165,53.560312],[-2.562281,53.55751],[-2.559824,53.555566],[-2.561132,53.554828],[-2.560991,53.553327],[-2.562652,53.55284],[-2.56254,53.551964],[-2.563986,53.551192],[-2.566951,53.550804],[-2.568027,53.549991],[-2.567513,53.548005],[-2.566246,53.547394],[-2.563054,53.547375],[-2.559353,53.546193],[-2.558131,53.544457],[-2.559412,53.543813],[-2.559151,53.542397],[-2.561749,53.540354],[-2.56183,53.5389],[-2.560323,53.537996],[-2.556831,53.538069],[-2.554392,53.537336],[-2.553701,53.536188],[-2.551518,53.535923],[-2.551072,53.5352],[-2.549142,53.534481],[-2.54501,53.533334],[-2.543781,53.532564],[-2.54249,53.530547],[-2.541627,53.530432],[-2.539802,53.528929],[-2.536214,53.52755],[-2.534617,53.524648],[-2.53376,53.524016],[-2.533747,53.523014],[-2.529057,53.523067],[-2.52798,53.523986],[-2.527633,53.525611],[-2.526639,53.52549],[-2.525404,53.526394],[-2.523154,53.526654],[-2.522685,53.527135],[-2.520539,53.527243],[-2.519687,53.527933],[-2.517186,53.52847],[-2.515815,53.52926],[-2.515379,53.531217],[-2.516229,53.533881],[-2.515337,53.534457],[-2.515535,53.535823],[-2.513015,53.536306],[-2.510165,53.534105],[-2.509265,53.534638],[-2.509077,53.535678],[-2.507973,53.536499],[-2.506888,53.538804],[-2.503356,53.538565],[-2.502185,53.537853],[-2.499211,53.538049],[-2.49647,53.5367],[-2.490164,53.535572],[-2.489692,53.534589],[-2.482282,53.533436],[-2.478387,53.533542],[-2.472418,53.531737],[-2.469437,53.532013],[-2.466075,53.530696],[-2.461517,53.53069],[-2.451097,53.528605],[-2.448128,53.528107],[-2.447808,53.52937],[-2.444608,53.530925],[-2.443109,53.532351],[-2.44125,53.535162],[-2.441963,53.53614],[-2.440981,53.538698],[-2.438101,53.540038],[-2.437147,53.542253],[-2.42965,53.541291],[-2.421441,53.540997],[-2.412896,53.538854],[-2.408773,53.538309],[-2.400108,53.53858],[-2.398464,53.538318],[-2.394638,53.537048],[-2.389891,53.533453],[-2.385381,53.531525],[-2.370455,53.528833],[-2.368594,53.528202],[-2.368066,53.529206],[-2.354389,53.526241],[-2.350774,53.529663],[-2.353536,53.53022],[-2.352757,53.532328],[-2.354653,53.53275],[-2.353869,53.533914],[-2.352684,53.533691],[-2.351423,53.535751],[-2.348633,53.535665],[-2.348609,53.537242],[-2.345928,53.537453],[-2.34189,53.536418],[-2.338194,53.533614],[-2.33699,53.535808],[-2.337739,53.537023],[-2.34136,53.54134],[-2.341785,53.543241],[-2.34148,53.545882],[-2.343854,53.545268],[-2.347545,53.547354],[-2.351278,53.54777],[-2.35586,53.549325],[-2.362429,53.550457],[-2.362328,53.551345],[-2.367221,53.551666],[-2.373589,53.553914],[-2.371771,53.554317],[-2.368204,53.553302],[-2.366715,53.553347],[-2.363926,53.555473],[-2.362186,53.556115],[-2.361476,53.555495],[-2.360975,53.553369],[-2.359711,53.552792],[-2.358296,53.553233],[-2.357069,53.554385],[-2.356657,53.556131],[-2.355916,53.556698],[-2.357286,53.557861],[-2.356015,53.560345],[-2.357315,53.563254],[-2.36099,53.568276],[-2.366349,53.568508],[-2.368181,53.569359],[-2.369545,53.570457],[-2.370958,53.570734],[-2.373647,53.570354],[-2.373858,53.572087],[-2.372614,53.572837],[-2.373236,53.573928],[-2.373515,53.576478],[-2.374811,53.577941],[-2.374495,53.58019],[-2.376638,53.582027],[-2.376008,53.582418],[-2.375303,53.585912],[-2.376001,53.586579],[-2.376494,53.58883],[-2.375051,53.589642],[-2.37461,53.590475],[-2.377058,53.592917],[-2.376901,53.593285],[-2.372926,53.594028],[-2.36897,53.595513],[-2.368384,53.596054],[-2.369455,53.597417],[-2.366804,53.600135],[-2.366321,53.601918],[-2.364614,53.603009],[-2.365142,53.604268],[-2.363676,53.606072],[-2.363641,53.607787],[-2.364543,53.609047],[-2.362995,53.610307],[-2.368569,53.61555],[-2.369419,53.615254],[-2.374193,53.616187],[-2.376305,53.617494],[-2.376018,53.618226],[-2.377646,53.620521],[-2.37681,53.622066],[-2.378021,53.623276],[-2.383456,53.625545],[-2.38118,53.627339],[-2.379043,53.627041],[-2.379295,53.62927],[-2.379132,53.63087]]]},"properties":{"LAD22CD":"E08000001","LAD22NM":"Bolton","BNG_E":368352,"BNG_N":409873,"LONG":-2.47952,"LAT":53.58449,"GlobalID":"69cd22fe-2679-4858-931a-58dfaf6bebb3"},"id":241}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.271787,53.614514],[-2.272551,53.618512],[-2.275808,53.61885],[-2.277745,53.618709],[-2.278289,53.620339],[-2.280727,53.620926],[-2.282854,53.620263],[-2.282458,53.623106],[-2.284496,53.625375],[-2.283512,53.626994],[-2.284867,53.628108],[-2.285835,53.630664],[-2.286675,53.631609],[-2.288899,53.632825],[-2.288786,53.633656],[-2.289994,53.635245],[-2.291305,53.636332],[-2.292318,53.638009],[-2.295041,53.64012],[-2.295738,53.641496],[-2.297594,53.648437],[-2.297618,53.651899],[-2.297189,53.65257],[-2.295598,53.653089],[-2.295358,53.655711],[-2.293864,53.656147],[-2.293825,53.657971],[-2.295901,53.662714],[-2.295692,53.664297],[-2.298959,53.66669],[-2.300105,53.667027],[-2.301136,53.666117],[-2.302982,53.665228],[-2.304011,53.663902],[-2.305988,53.662969],[-2.307736,53.660964],[-2.311774,53.659813],[-2.311892,53.659174],[-2.313466,53.658624],[-2.313967,53.65696],[-2.315582,53.655807],[-2.31556,53.655078],[-2.318442,53.655197],[-2.320407,53.65603],[-2.325328,53.655456],[-2.326562,53.655638],[-2.333402,53.655187],[-2.353339,53.658483],[-2.3554,53.659454],[-2.35557,53.664507],[-2.361607,53.665071],[-2.371236,53.667081],[-2.368972,53.663319],[-2.362641,53.655989],[-2.362969,53.654916],[-2.365456,53.652029],[-2.36614,53.65065],[-2.367068,53.647611],[-2.366678,53.646788],[-2.367055,53.645062],[-2.369208,53.6451],[-2.370475,53.644712],[-2.372495,53.642294],[-2.370106,53.638086],[-2.368334,53.636574],[-2.368559,53.635078],[-2.370221,53.633263],[-2.370921,53.632015],[-2.376289,53.631813],[-2.376644,53.631142],[-2.379132,53.63087],[-2.379295,53.62927],[-2.379043,53.627041],[-2.38118,53.627339],[-2.383456,53.625545],[-2.378021,53.623276],[-2.37681,53.622066],[-2.377646,53.620521],[-2.376018,53.618226],[-2.376305,53.617494],[-2.374193,53.616187],[-2.369419,53.615254],[-2.368569,53.61555],[-2.362995,53.610307],[-2.364543,53.609047],[-2.363641,53.607787],[-2.363676,53.606072],[-2.365142,53.604268],[-2.364614,53.603009],[-2.366321,53.601918],[-2.366804,53.600135],[-2.369455,53.597417],[-2.368384,53.596054],[-2.36897,53.595513],[-2.372926,53.594028],[-2.376901,53.593285],[-2.377058,53.592917],[-2.37461,53.590475],[-2.375051,53.589642],[-2.376494,53.58883],[-2.376001,53.586579],[-2.375303,53.585912],[-2.376008,53.582418],[-2.376638,53.582027],[-2.374495,53.58019],[-2.374811,53.577941],[-2.373515,53.576478],[-2.373236,53.573928],[-2.372614,53.572837],[-2.373858,53.572087],[-2.373647,53.570354],[-2.370958,53.570734],[-2.369545,53.570457],[-2.368181,53.569359],[-2.366349,53.568508],[-2.36099,53.568276],[-2.357315,53.563254],[-2.356015,53.560345],[-2.357286,53.557861],[-2.355916,53.556698],[-2.356657,53.556131],[-2.357069,53.554385],[-2.358296,53.553233],[-2.359711,53.552792],[-2.360975,53.553369],[-2.361476,53.555495],[-2.362186,53.556115],[-2.363926,53.555473],[-2.366715,53.553347],[-2.368204,53.553302],[-2.371771,53.554317],[-2.373589,53.553914],[-2.367221,53.551666],[-2.362328,53.551345],[-2.362429,53.550457],[-2.35586,53.549325],[-2.351278,53.54777],[-2.347545,53.547354],[-2.343854,53.545268],[-2.34148,53.545882],[-2.341785,53.543241],[-2.34136,53.54134],[-2.337739,53.537023],[-2.33699,53.535808],[-2.338194,53.533614],[-2.335207,53.531347],[-2.328361,53.529583],[-2.324517,53.527268],[-2.319459,53.527005],[-2.312267,53.527531],[-2.310473,53.527187],[-2.302864,53.521875],[-2.302071,53.520397],[-2.302598,53.517727],[-2.30226,53.517087],[-2.297697,53.515655],[-2.295981,53.515763],[-2.294355,53.515411],[-2.291742,53.514015],[-2.290787,53.512022],[-2.289521,53.512767],[-2.285099,53.513574],[-2.282532,53.515242],[-2.280542,53.515859],[-2.274468,53.516419],[-2.271574,53.517495],[-2.270717,53.517316],[-2.259015,53.51842],[-2.256964,53.517947],[-2.256491,53.520259],[-2.254222,53.520667],[-2.254414,53.521667],[-2.252867,53.522495],[-2.253478,53.524253],[-2.251455,53.524016],[-2.251785,53.525761],[-2.248805,53.524806],[-2.246645,53.529236],[-2.256756,53.527168],[-2.26248,53.525],[-2.264115,53.52469],[-2.265849,53.527003],[-2.266023,53.530231],[-2.267398,53.5338],[-2.268645,53.535923],[-2.26846,53.537102],[-2.267525,53.538044],[-2.258759,53.543155],[-2.253024,53.543986],[-2.251737,53.544609],[-2.248021,53.54416],[-2.239358,53.54008],[-2.238449,53.538792],[-2.23723,53.53886],[-2.23632,53.54068],[-2.234364,53.541728],[-2.234165,53.543364],[-2.235639,53.547396],[-2.236263,53.551086],[-2.237411,53.553661],[-2.241721,53.557152],[-2.23654,53.559226],[-2.239057,53.560911],[-2.241536,53.561305],[-2.244226,53.562046],[-2.246491,53.561578],[-2.248095,53.563187],[-2.247164,53.563427],[-2.245861,53.565483],[-2.243291,53.567797],[-2.245525,53.568603],[-2.245127,53.570264],[-2.244025,53.570159],[-2.243305,53.571704],[-2.246691,53.573684],[-2.250322,53.576599],[-2.250679,53.578435],[-2.25449,53.580862],[-2.254581,53.582466],[-2.25924,53.58527],[-2.261063,53.584747],[-2.265496,53.585603],[-2.267611,53.584448],[-2.267794,53.582294],[-2.269094,53.580337],[-2.273599,53.579304],[-2.277637,53.580117],[-2.277633,53.580893],[-2.278953,53.582085],[-2.280393,53.582095],[-2.281439,53.582743],[-2.282444,53.584124],[-2.282438,53.586723],[-2.278582,53.585463],[-2.277989,53.585987],[-2.278059,53.587329],[-2.278794,53.588489],[-2.27855,53.589505],[-2.27664,53.591515],[-2.275465,53.591543],[-2.271986,53.590239],[-2.270133,53.589161],[-2.269318,53.589994],[-2.269977,53.591962],[-2.266292,53.591388],[-2.263983,53.592518],[-2.259222,53.592182],[-2.258382,53.593715],[-2.258256,53.595025],[-2.25555,53.597127],[-2.252864,53.597972],[-2.250473,53.599133],[-2.247618,53.599403],[-2.245567,53.599131],[-2.245059,53.601109],[-2.246452,53.601861],[-2.248165,53.602135],[-2.250465,53.604915],[-2.251003,53.607213],[-2.255726,53.606122],[-2.259405,53.606071],[-2.261807,53.606594],[-2.264411,53.607642],[-2.266618,53.609154],[-2.271787,53.614514]]]},"properties":{"LAD22CD":"E08000002","LAD22NM":"Bury","BNG_E":379658,"BNG_N":410768,"LONG":-2.3088,"LAT":53.5931,"GlobalID":"587621e4-e1f4-418d-9ddf-92e9254fa875"},"id":242}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.23723,53.53886],[-2.238449,53.538792],[-2.239358,53.54008],[-2.248021,53.54416],[-2.251737,53.544609],[-2.253024,53.543986],[-2.258759,53.543155],[-2.267525,53.538044],[-2.26846,53.537102],[-2.268645,53.535923],[-2.267398,53.5338],[-2.266023,53.530231],[-2.265849,53.527003],[-2.264115,53.52469],[-2.26248,53.525],[-2.256756,53.527168],[-2.246645,53.529236],[-2.248805,53.524806],[-2.251785,53.525761],[-2.251455,53.524016],[-2.253478,53.524253],[-2.252867,53.522495],[-2.254414,53.521667],[-2.254222,53.520667],[-2.256491,53.520259],[-2.256964,53.517947],[-2.250234,53.516304],[-2.246916,53.514324],[-2.245228,53.512157],[-2.248081,53.509421],[-2.249213,53.509531],[-2.250327,53.508049],[-2.248856,53.507128],[-2.245765,53.506464],[-2.245336,53.504911],[-2.246567,53.503851],[-2.247077,53.50239],[-2.251533,53.5039],[-2.254954,53.500371],[-2.254293,53.499597],[-2.255423,53.499119],[-2.25402,53.497685],[-2.254856,53.497343],[-2.252504,53.495323],[-2.253482,53.493471],[-2.251628,53.492975],[-2.250677,53.492152],[-2.250488,53.490085],[-2.249108,53.489316],[-2.248645,53.488241],[-2.24526,53.486737],[-2.245638,53.48514],[-2.248938,53.483207],[-2.253044,53.481805],[-2.255787,53.480612],[-2.260113,53.477839],[-2.262678,53.476733],[-2.264056,53.473638],[-2.26532,53.472729],[-2.265096,53.472511],[-2.268161,53.469707],[-2.265707,53.469733],[-2.264565,53.46877],[-2.264572,53.467888],[-2.262703,53.467435],[-2.259948,53.465594],[-2.257919,53.462384],[-2.2559,53.462175],[-2.253764,53.462761],[-2.253023,53.461338],[-2.253687,53.459946],[-2.258187,53.458825],[-2.271466,53.450732],[-2.276708,53.450542],[-2.27938,53.450185],[-2.279756,53.449197],[-2.286217,53.449119],[-2.28965,53.445077],[-2.291812,53.44538],[-2.293261,53.443626],[-2.291506,53.44313],[-2.289871,53.441289],[-2.291493,53.439211],[-2.295439,53.438799],[-2.294304,53.436062],[-2.295569,53.435867],[-2.299699,53.437325],[-2.300201,53.436348],[-2.299866,53.433434],[-2.296032,53.432471],[-2.293277,53.432676],[-2.289104,53.432038],[-2.286747,53.430231],[-2.285933,53.429225],[-2.285331,53.427243],[-2.283652,53.425008],[-2.280629,53.42392],[-2.27565,53.423295],[-2.273621,53.422501],[-2.275441,53.419406],[-2.278194,53.418314],[-2.278423,53.417534],[-2.277848,53.41547],[-2.281546,53.415284],[-2.283087,53.416023],[-2.284509,53.416138],[-2.287263,53.414919],[-2.288885,53.415378],[-2.290905,53.4142],[-2.293943,53.413582],[-2.296525,53.411877],[-2.297271,53.411004],[-2.297716,53.408364],[-2.300694,53.40976],[-2.303579,53.409584],[-2.305902,53.410057],[-2.307245,53.409786],[-2.312712,53.409823],[-2.315858,53.410896],[-2.318235,53.411121],[-2.319919,53.411624],[-2.30734,53.397415],[-2.305013,53.397088],[-2.303594,53.395054],[-2.300152,53.392154],[-2.299715,53.388467],[-2.299762,53.387013],[-2.299148,53.386099],[-2.300215,53.384987],[-2.299874,53.384331],[-2.296547,53.382252],[-2.294211,53.381714],[-2.292683,53.380801],[-2.288585,53.376893],[-2.286343,53.375847],[-2.290117,53.372701],[-2.290563,53.372705],[-2.292664,53.370269],[-2.296237,53.363124],[-2.298595,53.360825],[-2.300086,53.360007],[-2.306039,53.358382],[-2.313998,53.357425],[-2.314301,53.356732],[-2.312745,53.3561],[-2.312221,53.354773],[-2.309233,53.354371],[-2.307905,53.353533],[-2.305621,53.353146],[-2.304524,53.352255],[-2.303582,53.350723],[-2.301436,53.350412],[-2.301451,53.349053],[-2.29917,53.350033],[-2.298885,53.34902],[-2.29693,53.348584],[-2.298318,53.346732],[-2.296712,53.346047],[-2.296454,53.344948],[-2.298145,53.344443],[-2.297459,53.343809],[-2.302836,53.340993],[-2.301328,53.340122],[-2.29786,53.341901],[-2.296727,53.342056],[-2.295817,53.343044],[-2.291279,53.34302],[-2.290054,53.342292],[-2.287934,53.343086],[-2.285867,53.345019],[-2.286706,53.345528],[-2.284636,53.346508],[-2.280646,53.345968],[-2.27837,53.348612],[-2.273344,53.350376],[-2.271808,53.350699],[-2.267077,53.350573],[-2.266848,53.351711],[-2.264194,53.352979],[-2.264612,53.353978],[-2.261103,53.356141],[-2.258041,53.357044],[-2.258937,53.359461],[-2.256447,53.360677],[-2.254099,53.360854],[-2.249592,53.360592],[-2.245205,53.361139],[-2.244193,53.361044],[-2.244144,53.359779],[-2.24079,53.359574],[-2.236934,53.370197],[-2.238676,53.370798],[-2.23901,53.372131],[-2.240266,53.374027],[-2.241461,53.374868],[-2.24132,53.3761],[-2.242108,53.377969],[-2.241278,53.37882],[-2.241198,53.381158],[-2.24307,53.383025],[-2.242441,53.38399],[-2.242985,53.384962],[-2.242434,53.385662],[-2.242625,53.387691],[-2.246222,53.38783],[-2.245734,53.390239],[-2.243914,53.390401],[-2.244467,53.391337],[-2.246025,53.391383],[-2.245985,53.393821],[-2.244406,53.394081],[-2.246828,53.39606],[-2.242545,53.397778],[-2.242538,53.399475],[-2.240605,53.399789],[-2.238143,53.400822],[-2.236132,53.401058],[-2.227717,53.400856],[-2.224892,53.401379],[-2.222567,53.401196],[-2.219987,53.40261],[-2.219344,53.403876],[-2.219454,53.405076],[-2.212595,53.406968],[-2.214973,53.409707],[-2.215476,53.41089],[-2.2146,53.413241],[-2.213428,53.418915],[-2.209668,53.417947],[-2.208426,53.419159],[-2.206493,53.418976],[-2.206219,53.420104],[-2.207693,53.42008],[-2.20493,53.422367],[-2.2045,53.422176],[-2.20186,53.423622],[-2.199065,53.427044],[-2.196898,53.428109],[-2.193141,53.427653],[-2.193076,53.429248],[-2.191352,53.435128],[-2.188702,53.434873],[-2.187137,53.435228],[-2.186595,53.436001],[-2.183909,53.435199],[-2.181728,53.435134],[-2.181089,53.43469],[-2.177802,53.433699],[-2.176755,53.433016],[-2.175293,53.434365],[-2.17395,53.443862],[-2.171964,53.447262],[-2.17288,53.448001],[-2.167412,53.449417],[-2.166044,53.453648],[-2.161283,53.45182],[-2.161694,53.453145],[-2.159877,53.453345],[-2.160364,53.454283],[-2.158451,53.454937],[-2.152119,53.457721],[-2.150279,53.457942],[-2.149241,53.45941],[-2.150775,53.460214],[-2.150173,53.46079],[-2.152783,53.463247],[-2.149973,53.463711],[-2.149146,53.465152],[-2.14785,53.465786],[-2.147926,53.466626],[-2.146864,53.467498],[-2.147848,53.469043],[-2.149894,53.470913],[-2.150391,53.472778],[-2.155433,53.474444],[-2.155924,53.475319],[-2.158561,53.475296],[-2.161565,53.47485],[-2.162232,53.476294],[-2.165439,53.477258],[-2.165969,53.479557],[-2.167689,53.480111],[-2.167538,53.481096],[-2.168482,53.482933],[-2.169664,53.486782],[-2.168925,53.487181],[-2.169027,53.488523],[-2.166227,53.488868],[-2.166638,53.490858],[-2.165969,53.491573],[-2.16397,53.491397],[-2.16303,53.492849],[-2.164019,53.494707],[-2.163237,53.496033],[-2.163412,53.496779],[-2.161644,53.49742],[-2.161865,53.498326],[-2.164377,53.499521],[-2.165932,53.498983],[-2.168537,53.500999],[-2.172603,53.50244],[-2.175513,53.50265],[-2.178701,53.505849],[-2.178267,53.506767],[-2.176746,53.507008],[-2.174273,53.509],[-2.174082,53.510602],[-2.173296,53.5118],[-2.171635,53.512541],[-2.171393,53.513176],[-2.168624,53.513566],[-2.167152,53.513375],[-2.164392,53.513592],[-2.163083,53.512918],[-2.161163,53.512876],[-2.160404,53.513974],[-2.158748,53.514558],[-2.158188,53.515379],[-2.156449,53.516298],[-2.154761,53.518033],[-2.15628,53.518846],[-2.159188,53.522127],[-2.164791,53.520166],[-2.169147,53.523585],[-2.170502,53.523953],[-2.170216,53.527598],[-2.172116,53.527119],[-2.186014,53.529059],[-2.193883,53.531641],[-2.200583,53.53176],[-2.204509,53.532498],[-2.205812,53.533085],[-2.206771,53.534213],[-2.206929,53.5358],[-2.20565,53.536898],[-2.207545,53.538481],[-2.208536,53.538443],[-2.210921,53.540768],[-2.213065,53.542158],[-2.217695,53.542415],[-2.21781,53.543464],[-2.218725,53.543907],[-2.220783,53.542676],[-2.22776,53.541581],[-2.228862,53.540692],[-2.233513,53.540165],[-2.234131,53.539195],[-2.23723,53.53886]]]},"properties":{"LAD22CD":"E08000003","LAD22NM":"Manchester","BNG_E":384591,"BNG_N":397063,"LONG":-2.23359,"LAT":53.47009,"GlobalID":"b460cc45-66c2-490e-aeba-dbd509e723cf"},"id":243}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.009471,53.616779],[-2.014773,53.615349],[-2.018652,53.61597],[-2.023036,53.615839],[-2.024586,53.617395],[-2.02644,53.620805],[-2.026172,53.62242],[-2.026816,53.624167],[-2.029372,53.621703],[-2.02999,53.62052],[-2.030165,53.617672],[-2.03265,53.615126],[-2.032801,53.611896],[-2.031346,53.610225],[-2.034828,53.604424],[-2.036591,53.604009],[-2.035827,53.602932],[-2.042327,53.600433],[-2.048531,53.599772],[-2.053896,53.598387],[-2.055953,53.597162],[-2.055096,53.594609],[-2.059882,53.592487],[-2.067318,53.592409],[-2.06768,53.593538],[-2.069882,53.594993],[-2.081069,53.59529],[-2.083938,53.594421],[-2.085476,53.595461],[-2.087157,53.595705],[-2.088224,53.59668],[-2.09072,53.5974],[-2.092464,53.596661],[-2.097663,53.596086],[-2.099868,53.59776],[-2.101578,53.597357],[-2.105608,53.59764],[-2.107337,53.599377],[-2.108616,53.599032],[-2.110638,53.599709],[-2.112571,53.598893],[-2.111766,53.597116],[-2.112714,53.592772],[-2.118354,53.592625],[-2.123172,53.589858],[-2.124055,53.589053],[-2.125845,53.586498],[-2.136718,53.583084],[-2.136913,53.583297],[-2.146756,53.583747],[-2.156581,53.582288],[-2.152435,53.579016],[-2.152095,53.576264],[-2.152486,53.574537],[-2.151851,53.574239],[-2.15093,53.567124],[-2.155209,53.565366],[-2.157237,53.564842],[-2.157791,53.564287],[-2.159502,53.564549],[-2.163606,53.563293],[-2.1659,53.561255],[-2.168148,53.560185],[-2.168717,53.558832],[-2.171993,53.558232],[-2.172254,53.552678],[-2.171757,53.551362],[-2.169941,53.551383],[-2.16944,53.546159],[-2.173178,53.541555],[-2.175186,53.539572],[-2.175546,53.538386],[-2.178015,53.537341],[-2.179818,53.53466],[-2.186014,53.529059],[-2.172116,53.527119],[-2.170216,53.527598],[-2.170502,53.523953],[-2.169147,53.523585],[-2.164791,53.520166],[-2.159188,53.522127],[-2.15628,53.518846],[-2.154761,53.518033],[-2.156449,53.516298],[-2.158188,53.515379],[-2.158748,53.514558],[-2.160404,53.513974],[-2.161163,53.512876],[-2.163083,53.512918],[-2.164392,53.513592],[-2.167152,53.513375],[-2.168624,53.513566],[-2.171393,53.513176],[-2.171635,53.512541],[-2.173296,53.5118],[-2.174082,53.510602],[-2.174273,53.509],[-2.176746,53.507008],[-2.178267,53.506767],[-2.178701,53.505849],[-2.175513,53.50265],[-2.172603,53.50244],[-2.168537,53.500999],[-2.165932,53.498983],[-2.164377,53.499521],[-2.161865,53.498326],[-2.161644,53.49742],[-2.163412,53.496779],[-2.163237,53.496033],[-2.164019,53.494707],[-2.16303,53.492849],[-2.161998,53.493354],[-2.159137,53.493227],[-2.157707,53.494383],[-2.154675,53.493456],[-2.154083,53.492846],[-2.151079,53.493154],[-2.148413,53.492909],[-2.146979,53.493799],[-2.145429,53.491973],[-2.140939,53.491128],[-2.138139,53.491799],[-2.136226,53.491904],[-2.135204,53.495271],[-2.131633,53.498142],[-2.13042,53.498525],[-2.127537,53.498498],[-2.124447,53.499659],[-2.123318,53.500667],[-2.120693,53.501262],[-2.119685,53.505727],[-2.118226,53.505749],[-2.115407,53.506459],[-2.113038,53.507677],[-2.110789,53.508332],[-2.103312,53.509671],[-2.102356,53.510996],[-2.099963,53.511726],[-2.09965,53.513255],[-2.097325,53.514786],[-2.095174,53.515854],[-2.09544,53.517643],[-2.093425,53.51812],[-2.092939,53.519528],[-2.093258,53.520617],[-2.078367,53.520631],[-2.077205,53.520274],[-2.075166,53.520661],[-2.074832,53.521242],[-2.071142,53.521302],[-2.070697,53.521736],[-2.064729,53.522813],[-2.06421,53.52126],[-2.061867,53.522311],[-2.058394,53.522964],[-2.056206,53.522183],[-2.054148,53.522269],[-2.054447,53.523826],[-2.053115,53.525579],[-2.053284,53.526828],[-2.05626,53.529294],[-2.057301,53.529267],[-2.056936,53.530676],[-2.054917,53.531393],[-2.051116,53.530432],[-2.044467,53.529877],[-2.038283,53.529895],[-2.034974,53.530325],[-2.034486,53.529398],[-2.032453,53.530257],[-2.030549,53.53017],[-2.026799,53.529426],[-2.024708,53.528533],[-2.023156,53.528397],[-2.020319,53.526001],[-2.018093,53.524831],[-2.01753,53.523725],[-2.018776,53.521434],[-2.016815,53.521202],[-2.009133,53.519127],[-2.003033,53.520212],[-1.996927,53.522065],[-1.991477,53.519845],[-1.988824,53.518386],[-1.986953,53.516704],[-1.981947,53.515265],[-1.97782,53.514433],[-1.973056,53.512442],[-1.96673,53.510379],[-1.963386,53.509827],[-1.961259,53.507281],[-1.959474,53.505907],[-1.95742,53.505344],[-1.955673,53.504456],[-1.951333,53.504199],[-1.946889,53.504546],[-1.942428,53.50661],[-1.938248,53.506403],[-1.935502,53.505787],[-1.928778,53.508089],[-1.926077,53.508663],[-1.9244,53.509573],[-1.921973,53.509955],[-1.917499,53.513078],[-1.916767,53.514496],[-1.921862,53.517177],[-1.922694,53.518376],[-1.926781,53.520949],[-1.923477,53.522958],[-1.922605,53.526335],[-1.922445,53.530815],[-1.91739,53.532197],[-1.915776,53.532947],[-1.914254,53.536708],[-1.911891,53.538033],[-1.909621,53.538391],[-1.912885,53.551644],[-1.91937,53.550879],[-1.921579,53.553],[-1.924449,53.552554],[-1.925666,53.553189],[-1.928702,53.555585],[-1.942726,53.561641],[-1.944595,53.568686],[-1.9464,53.571506],[-1.95032,53.574165],[-1.950925,53.573638],[-1.953708,53.575686],[-1.953689,53.576031],[-1.956581,53.577571],[-1.966864,53.580017],[-1.971163,53.584156],[-1.978244,53.586788],[-1.981646,53.589338],[-1.990715,53.599476],[-1.994764,53.603387],[-1.995875,53.605115],[-1.999607,53.607943],[-2.007514,53.612535],[-2.007675,53.614376],[-2.008536,53.614811],[-2.009471,53.616779]]]},"properties":{"LAD22CD":"E08000004","LAD22NM":"Oldham","BNG_E":396603,"BNG_N":406784,"LONG":-2.05274,"LAT":53.55768,"GlobalID":"e9108961-f5f0-4d7d-ad6c-364ea0313a21"},"id":244}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.026816,53.624167],[-2.030904,53.629218],[-2.029746,53.630837],[-2.029029,53.634224],[-2.029997,53.636169],[-2.036927,53.638198],[-2.041143,53.640845],[-2.04158,53.642487],[-2.041577,53.645418],[-2.040706,53.648378],[-2.039679,53.648983],[-2.040527,53.650918],[-2.036587,53.655313],[-2.035694,53.657618],[-2.03571,53.659328],[-2.037095,53.662343],[-2.044835,53.665469],[-2.048524,53.667689],[-2.04962,53.66878],[-2.052202,53.669448],[-2.054393,53.673032],[-2.054858,53.675663],[-2.053495,53.677892],[-2.050735,53.679516],[-2.048902,53.680227],[-2.051242,53.683692],[-2.055545,53.682663],[-2.056224,53.683141],[-2.06058,53.682694],[-2.06182,53.682844],[-2.071247,53.678864],[-2.073399,53.67751],[-2.075483,53.677257],[-2.077531,53.677442],[-2.080407,53.678344],[-2.083167,53.678075],[-2.084058,53.677665],[-2.083761,53.67593],[-2.084391,53.672962],[-2.086073,53.671934],[-2.087122,53.67081],[-2.090287,53.67097],[-2.092907,53.670161],[-2.096191,53.671594],[-2.09704,53.672626],[-2.114142,53.671138],[-2.118085,53.671245],[-2.125387,53.674838],[-2.126718,53.676881],[-2.126879,53.6796],[-2.127678,53.681557],[-2.129863,53.683103],[-2.132854,53.684397],[-2.134127,53.685734],[-2.135986,53.684477],[-2.137919,53.683884],[-2.139715,53.682809],[-2.141092,53.678973],[-2.142258,53.678006],[-2.144641,53.67948],[-2.146328,53.682232],[-2.148138,53.68201],[-2.147952,53.678569],[-2.148602,53.674499],[-2.153453,53.668884],[-2.155029,53.664248],[-2.158917,53.660326],[-2.163939,53.654766],[-2.164168,53.653374],[-2.163701,53.652027],[-2.160599,53.648296],[-2.161136,53.642248],[-2.161835,53.641285],[-2.185396,53.638224],[-2.181834,53.64035],[-2.180468,53.64055],[-2.182706,53.642975],[-2.182674,53.644425],[-2.183527,53.645248],[-2.181074,53.645701],[-2.182407,53.648258],[-2.189584,53.648025],[-2.190345,53.649178],[-2.195418,53.650626],[-2.196563,53.650687],[-2.197738,53.652068],[-2.205229,53.654349],[-2.204456,53.656075],[-2.206878,53.657048],[-2.207899,53.659475],[-2.207162,53.660734],[-2.214842,53.665206],[-2.215997,53.667092],[-2.217729,53.668981],[-2.221628,53.668993],[-2.223638,53.669854],[-2.224813,53.669887],[-2.225824,53.670768],[-2.23308,53.668847],[-2.236575,53.667007],[-2.245879,53.663519],[-2.247504,53.661123],[-2.252725,53.657535],[-2.253514,53.656538],[-2.257296,53.655299],[-2.259587,53.655121],[-2.261442,53.654123],[-2.262908,53.651685],[-2.265623,53.650627],[-2.266645,53.649622],[-2.266973,53.648421],[-2.269866,53.646137],[-2.269063,53.645447],[-2.26959,53.644019],[-2.267209,53.642683],[-2.267667,53.640999],[-2.265448,53.639445],[-2.263828,53.630001],[-2.262509,53.626434],[-2.262998,53.625012],[-2.260463,53.624344],[-2.260205,53.622323],[-2.259629,53.621746],[-2.259955,53.620627],[-2.256769,53.620398],[-2.259235,53.619256],[-2.259119,53.618337],[-2.257917,53.616466],[-2.260579,53.616233],[-2.266477,53.614539],[-2.266856,53.615643],[-2.269044,53.616166],[-2.271787,53.614514],[-2.266618,53.609154],[-2.264411,53.607642],[-2.261807,53.606594],[-2.259405,53.606071],[-2.255726,53.606122],[-2.251003,53.607213],[-2.250465,53.604915],[-2.248165,53.602135],[-2.246452,53.601861],[-2.245059,53.601109],[-2.245567,53.599131],[-2.247618,53.599403],[-2.250473,53.599133],[-2.252864,53.597972],[-2.25555,53.597127],[-2.258256,53.595025],[-2.258382,53.593715],[-2.259222,53.592182],[-2.263983,53.592518],[-2.266292,53.591388],[-2.269977,53.591962],[-2.269318,53.589994],[-2.270133,53.589161],[-2.271986,53.590239],[-2.275465,53.591543],[-2.27664,53.591515],[-2.27855,53.589505],[-2.278794,53.588489],[-2.278059,53.587329],[-2.277989,53.585987],[-2.278582,53.585463],[-2.282438,53.586723],[-2.282444,53.584124],[-2.281439,53.582743],[-2.280393,53.582095],[-2.278953,53.582085],[-2.277633,53.580893],[-2.277637,53.580117],[-2.273599,53.579304],[-2.269094,53.580337],[-2.267794,53.582294],[-2.267611,53.584448],[-2.265496,53.585603],[-2.261063,53.584747],[-2.25924,53.58527],[-2.254581,53.582466],[-2.25449,53.580862],[-2.250679,53.578435],[-2.250322,53.576599],[-2.246691,53.573684],[-2.243305,53.571704],[-2.244025,53.570159],[-2.245127,53.570264],[-2.245525,53.568603],[-2.243291,53.567797],[-2.245861,53.565483],[-2.247164,53.563427],[-2.248095,53.563187],[-2.246491,53.561578],[-2.244226,53.562046],[-2.241536,53.561305],[-2.239057,53.560911],[-2.23654,53.559226],[-2.241721,53.557152],[-2.237411,53.553661],[-2.236263,53.551086],[-2.235639,53.547396],[-2.234165,53.543364],[-2.234364,53.541728],[-2.23632,53.54068],[-2.23723,53.53886],[-2.234131,53.539195],[-2.233513,53.540165],[-2.228862,53.540692],[-2.22776,53.541581],[-2.220783,53.542676],[-2.218725,53.543907],[-2.21781,53.543464],[-2.217695,53.542415],[-2.213065,53.542158],[-2.210921,53.540768],[-2.208536,53.538443],[-2.207545,53.538481],[-2.20565,53.536898],[-2.206929,53.5358],[-2.206771,53.534213],[-2.205812,53.533085],[-2.204509,53.532498],[-2.200583,53.53176],[-2.193883,53.531641],[-2.186014,53.529059],[-2.179818,53.53466],[-2.178015,53.537341],[-2.175546,53.538386],[-2.175186,53.539572],[-2.173178,53.541555],[-2.16944,53.546159],[-2.169941,53.551383],[-2.171757,53.551362],[-2.172254,53.552678],[-2.171993,53.558232],[-2.168717,53.558832],[-2.168148,53.560185],[-2.1659,53.561255],[-2.163606,53.563293],[-2.159502,53.564549],[-2.157791,53.564287],[-2.157237,53.564842],[-2.155209,53.565366],[-2.15093,53.567124],[-2.151851,53.574239],[-2.152486,53.574537],[-2.152095,53.576264],[-2.152435,53.579016],[-2.156581,53.582288],[-2.146756,53.583747],[-2.136913,53.583297],[-2.136718,53.583084],[-2.125845,53.586498],[-2.124055,53.589053],[-2.123172,53.589858],[-2.118354,53.592625],[-2.112714,53.592772],[-2.111766,53.597116],[-2.112571,53.598893],[-2.110638,53.599709],[-2.108616,53.599032],[-2.107337,53.599377],[-2.105608,53.59764],[-2.101578,53.597357],[-2.099868,53.59776],[-2.097663,53.596086],[-2.092464,53.596661],[-2.09072,53.5974],[-2.088224,53.59668],[-2.087157,53.595705],[-2.085476,53.595461],[-2.083938,53.594421],[-2.081069,53.59529],[-2.069882,53.594993],[-2.06768,53.593538],[-2.067318,53.592409],[-2.059882,53.592487],[-2.055096,53.594609],[-2.055953,53.597162],[-2.053896,53.598387],[-2.048531,53.599772],[-2.042327,53.600433],[-2.035827,53.602932],[-2.036591,53.604009],[-2.034828,53.604424],[-2.031346,53.610225],[-2.032801,53.611896],[-2.03265,53.615126],[-2.030165,53.617672],[-2.02999,53.62052],[-2.029372,53.621703],[-2.026816,53.624167]]]},"properties":{"LAD22CD":"E08000005","LAD22NM":"Rochdale","BNG_E":390315,"BNG_N":412326,"LONG":-2.14784,"LAT":53.60741,"GlobalID":"28b37efa-be3a-43fd-8ec3-9413533aedd2"},"id":245}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.338194,53.533614],[-2.34189,53.536418],[-2.345928,53.537453],[-2.348609,53.537242],[-2.348633,53.535665],[-2.351423,53.535751],[-2.352684,53.533691],[-2.353869,53.533914],[-2.354653,53.53275],[-2.352757,53.532328],[-2.353536,53.53022],[-2.350774,53.529663],[-2.354389,53.526241],[-2.368066,53.529206],[-2.368594,53.528202],[-2.370455,53.528833],[-2.385381,53.531525],[-2.389891,53.533453],[-2.394638,53.537048],[-2.398464,53.538318],[-2.400108,53.53858],[-2.408773,53.538309],[-2.412896,53.538854],[-2.421441,53.540997],[-2.42965,53.541291],[-2.437147,53.542253],[-2.438101,53.540038],[-2.440981,53.538698],[-2.441963,53.53614],[-2.44125,53.535162],[-2.443109,53.532351],[-2.444608,53.530925],[-2.447808,53.52937],[-2.448128,53.528107],[-2.451097,53.528605],[-2.454113,53.526222],[-2.432432,53.522367],[-2.427197,53.52156],[-2.421637,53.519928],[-2.418272,53.51812],[-2.414539,53.514893],[-2.415758,53.513478],[-2.415344,53.512045],[-2.419456,53.512157],[-2.418715,53.510364],[-2.422289,53.509117],[-2.421369,53.508317],[-2.422262,53.50755],[-2.420507,53.50679],[-2.430429,53.504792],[-2.430195,53.50183],[-2.433107,53.500971],[-2.433074,53.499652],[-2.431622,53.498032],[-2.433591,53.497142],[-2.436237,53.493753],[-2.438507,53.492402],[-2.438268,53.491837],[-2.436254,53.490486],[-2.435637,53.487208],[-2.436433,53.486696],[-2.436732,53.484691],[-2.438547,53.482084],[-2.43447,53.465044],[-2.465143,53.462252],[-2.476758,53.462443],[-2.479159,53.461779],[-2.480884,53.461893],[-2.483524,53.460703],[-2.486616,53.460436],[-2.488042,53.460774],[-2.489714,53.460282],[-2.489608,53.459581],[-2.486894,53.458141],[-2.486106,53.455191],[-2.482826,53.453868],[-2.478774,53.450047],[-2.475987,53.448238],[-2.476043,53.44746],[-2.478265,53.444318],[-2.478154,53.443417],[-2.474102,53.439383],[-2.470799,53.43891],[-2.466339,53.437036],[-2.463321,53.437016],[-2.461724,53.436369],[-2.45926,53.433159],[-2.455129,53.429984],[-2.454068,53.428276],[-2.451544,53.426709],[-2.450315,53.42408],[-2.448995,53.422875],[-2.449188,53.420535],[-2.451275,53.418674],[-2.450751,53.417386],[-2.449362,53.416755],[-2.449378,53.415891],[-2.426824,53.425101],[-2.422387,53.427339],[-2.419286,53.42956],[-2.417278,53.43157],[-2.413519,53.437532],[-2.412793,53.439664],[-2.410752,53.442116],[-2.409565,53.445735],[-2.407171,53.449169],[-2.403235,53.453226],[-2.399236,53.456488],[-2.395645,53.45884],[-2.386857,53.463136],[-2.37995,53.465243],[-2.377122,53.466519],[-2.362121,53.471699],[-2.352177,53.474725],[-2.329467,53.479995],[-2.324008,53.480362],[-2.319203,53.479651],[-2.316357,53.4787],[-2.304404,53.473095],[-2.300447,53.471377],[-2.283893,53.465342],[-2.28126,53.464862],[-2.279101,53.465387],[-2.272595,53.469757],[-2.269725,53.471175],[-2.26532,53.472729],[-2.264056,53.473638],[-2.262678,53.476733],[-2.260113,53.477839],[-2.255787,53.480612],[-2.253044,53.481805],[-2.248938,53.483207],[-2.245638,53.48514],[-2.24526,53.486737],[-2.248645,53.488241],[-2.249108,53.489316],[-2.250488,53.490085],[-2.250677,53.492152],[-2.251628,53.492975],[-2.253482,53.493471],[-2.252504,53.495323],[-2.254856,53.497343],[-2.25402,53.497685],[-2.255423,53.499119],[-2.254293,53.499597],[-2.254954,53.500371],[-2.251533,53.5039],[-2.247077,53.50239],[-2.246567,53.503851],[-2.245336,53.504911],[-2.245765,53.506464],[-2.248856,53.507128],[-2.250327,53.508049],[-2.249213,53.509531],[-2.248081,53.509421],[-2.245228,53.512157],[-2.246916,53.514324],[-2.250234,53.516304],[-2.256964,53.517947],[-2.259015,53.51842],[-2.270717,53.517316],[-2.271574,53.517495],[-2.274468,53.516419],[-2.280542,53.515859],[-2.282532,53.515242],[-2.285099,53.513574],[-2.289521,53.512767],[-2.290787,53.512022],[-2.291742,53.514015],[-2.294355,53.515411],[-2.295981,53.515763],[-2.297697,53.515655],[-2.30226,53.517087],[-2.302598,53.517727],[-2.302071,53.520397],[-2.302864,53.521875],[-2.310473,53.527187],[-2.312267,53.527531],[-2.319459,53.527005],[-2.324517,53.527268],[-2.328361,53.529583],[-2.335207,53.531347],[-2.338194,53.533614]]]},"properties":{"LAD22CD":"E08000006","LAD22NM":"Salford","BNG_E":374556,"BNG_N":398128,"LONG":-2.38485,"LAT":53.47927,"GlobalID":"d7c1b39a-cca6-41c4-8b48-004279b845ca"},"id":246}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.158451,53.454937],[-2.160364,53.454283],[-2.159877,53.453345],[-2.161694,53.453145],[-2.161283,53.45182],[-2.166044,53.453648],[-2.167412,53.449417],[-2.17288,53.448001],[-2.171964,53.447262],[-2.17395,53.443862],[-2.175293,53.434365],[-2.176755,53.433016],[-2.177802,53.433699],[-2.181089,53.43469],[-2.181728,53.435134],[-2.183909,53.435199],[-2.186595,53.436001],[-2.187137,53.435228],[-2.188702,53.434873],[-2.191352,53.435128],[-2.193076,53.429248],[-2.193141,53.427653],[-2.196898,53.428109],[-2.199065,53.427044],[-2.20186,53.423622],[-2.2045,53.422176],[-2.20493,53.422367],[-2.207693,53.42008],[-2.206219,53.420104],[-2.206493,53.418976],[-2.208426,53.419159],[-2.209668,53.417947],[-2.213428,53.418915],[-2.2146,53.413241],[-2.215476,53.41089],[-2.214973,53.409707],[-2.212595,53.406968],[-2.219454,53.405076],[-2.219344,53.403876],[-2.219987,53.40261],[-2.222567,53.401196],[-2.224892,53.401379],[-2.227717,53.400856],[-2.236132,53.401058],[-2.238143,53.400822],[-2.240605,53.399789],[-2.242538,53.399475],[-2.242545,53.397778],[-2.246828,53.39606],[-2.244406,53.394081],[-2.245985,53.393821],[-2.246025,53.391383],[-2.244467,53.391337],[-2.243914,53.390401],[-2.245734,53.390239],[-2.246222,53.38783],[-2.242625,53.387691],[-2.242434,53.385662],[-2.242985,53.384962],[-2.242441,53.38399],[-2.24307,53.383025],[-2.241198,53.381158],[-2.241278,53.37882],[-2.242108,53.377969],[-2.24132,53.3761],[-2.241461,53.374868],[-2.240266,53.374027],[-2.23901,53.372131],[-2.238676,53.370798],[-2.236934,53.370197],[-2.24079,53.359574],[-2.237593,53.359253],[-2.232811,53.360271],[-2.232982,53.358795],[-2.228763,53.359356],[-2.224625,53.35938],[-2.223046,53.3598],[-2.22031,53.359428],[-2.219552,53.35849],[-2.216142,53.358867],[-2.216218,53.358131],[-2.214632,53.357935],[-2.21454,53.356719],[-2.210666,53.357285],[-2.20741,53.356799],[-2.208292,53.354997],[-2.201937,53.354809],[-2.201871,53.355428],[-2.192573,53.354057],[-2.189082,53.352791],[-2.185441,53.35266],[-2.185492,53.352011],[-2.188015,53.348737],[-2.185302,53.346948],[-2.184829,53.346992],[-2.180977,53.344044],[-2.182753,53.343129],[-2.190732,53.342127],[-2.192699,53.341032],[-2.192809,53.339846],[-2.194163,53.33865],[-2.190494,53.337644],[-2.189108,53.335269],[-2.184877,53.332691],[-2.18305,53.332504],[-2.182169,53.331751],[-2.179982,53.331063],[-2.178474,53.331258],[-2.176061,53.331066],[-2.173879,53.331408],[-2.169146,53.331185],[-2.16889,53.330546],[-2.166137,53.329679],[-2.165988,53.329178],[-2.163265,53.328143],[-2.160136,53.32765],[-2.158442,53.328936],[-2.155914,53.328054],[-2.154165,53.327795],[-2.152536,53.328553],[-2.151765,53.332209],[-2.151323,53.332925],[-2.151034,53.336119],[-2.150009,53.338297],[-2.146665,53.340612],[-2.144099,53.342871],[-2.147718,53.34483],[-2.151191,53.348133],[-2.149661,53.349633],[-2.147092,53.350473],[-2.147166,53.351129],[-2.145734,53.351728],[-2.142533,53.35419],[-2.140327,53.355052],[-2.138197,53.356891],[-2.139169,53.357767],[-2.139871,53.360155],[-2.139228,53.361581],[-2.139693,53.362901],[-2.139481,53.364615],[-2.137714,53.366611],[-2.136513,53.366994],[-2.133377,53.364986],[-2.129221,53.364963],[-2.128149,53.364615],[-2.124471,53.362347],[-2.123196,53.361947],[-2.120706,53.363878],[-2.119414,53.364205],[-2.114405,53.36464],[-2.107439,53.364774],[-2.105623,53.365186],[-2.103929,53.366082],[-2.101014,53.365871],[-2.098941,53.366292],[-2.094952,53.366036],[-2.092737,53.364491],[-2.090792,53.364076],[-2.087,53.361606],[-2.083867,53.360135],[-2.083758,53.359554],[-2.081368,53.359178],[-2.078553,53.358149],[-2.078036,53.358469],[-2.075626,53.357774],[-2.072121,53.35794],[-2.071178,53.357564],[-2.068929,53.358036],[-2.068078,53.357394],[-2.06504,53.357724],[-2.063463,53.358836],[-2.061164,53.358438],[-2.059677,53.35891],[-2.05826,53.36127],[-2.056337,53.362413],[-2.056961,53.36373],[-2.056253,53.364309],[-2.055321,53.366891],[-2.051988,53.367399],[-2.050113,53.369083],[-2.04863,53.369443],[-2.046669,53.369369],[-2.043953,53.37063],[-2.043022,53.371716],[-2.041107,53.3727],[-2.040564,53.374088],[-2.038854,53.372986],[-2.038421,53.371892],[-2.032632,53.372034],[-2.030957,53.371515],[-2.031059,53.370262],[-2.028624,53.370734],[-2.030835,53.372916],[-2.033783,53.375092],[-2.030691,53.375188],[-2.028037,53.373954],[-2.026209,53.373618],[-2.024068,53.374173],[-2.023417,53.374954],[-2.021472,53.375059],[-2.021996,53.375958],[-2.02063,53.376161],[-2.020944,53.377598],[-2.017084,53.377833],[-2.018593,53.380206],[-2.019715,53.380595],[-2.01698,53.381498],[-2.015113,53.380567],[-2.013062,53.384105],[-2.004643,53.386327],[-2.005176,53.392395],[-2.004481,53.393761],[-2.00177,53.396491],[-1.997387,53.403537],[-1.996184,53.404668],[-1.995149,53.407762],[-1.99399,53.409185],[-1.993301,53.411909],[-1.993965,53.413182],[-1.99233,53.415193],[-2.000254,53.415271],[-2.005093,53.415028],[-2.010649,53.416727],[-2.013697,53.41589],[-2.015225,53.416627],[-2.014769,53.417851],[-2.017019,53.418142],[-2.016676,53.419303],[-2.02371,53.420552],[-2.02344,53.421752],[-2.020996,53.42126],[-2.021284,53.422576],[-2.019725,53.425119],[-2.020475,53.426692],[-2.024146,53.427954],[-2.026256,53.429865],[-2.030526,53.428454],[-2.034045,53.428752],[-2.035525,53.427507],[-2.039069,53.427182],[-2.039609,53.427869],[-2.042163,53.428741],[-2.045748,53.429359],[-2.047453,53.430063],[-2.04917,53.430034],[-2.050486,53.43089],[-2.05579,53.431771],[-2.058367,53.431012],[-2.059877,53.429978],[-2.061728,53.429883],[-2.06213,53.428979],[-2.065178,53.430164],[-2.067293,53.428699],[-2.071153,53.427832],[-2.074705,53.425972],[-2.076443,53.427007],[-2.077626,53.426178],[-2.079135,53.426109],[-2.083007,53.426831],[-2.084615,53.42789],[-2.086078,53.429832],[-2.085386,53.430136],[-2.085425,53.432451],[-2.086318,53.432784],[-2.084036,53.434097],[-2.0865,53.434727],[-2.087202,53.436205],[-2.088873,53.437259],[-2.091215,53.437622],[-2.09281,53.437539],[-2.093968,53.436475],[-2.09661,53.43706],[-2.098135,53.43612],[-2.096844,53.433558],[-2.100736,53.433538],[-2.102707,53.432621],[-2.107552,53.433843],[-2.110901,53.436468],[-2.111236,53.437542],[-2.116009,53.440731],[-2.117378,53.439397],[-2.115212,53.439403],[-2.114903,53.438615],[-2.117313,53.437245],[-2.120698,53.437016],[-2.119359,53.438827],[-2.12265,53.441042],[-2.123767,53.440615],[-2.123775,53.439571],[-2.122379,53.438272],[-2.123021,53.437674],[-2.129188,53.439481],[-2.130723,53.439435],[-2.133497,53.438316],[-2.136437,53.439135],[-2.137703,53.437745],[-2.141388,53.439177],[-2.142687,53.442254],[-2.144573,53.443655],[-2.142904,53.444561],[-2.145948,53.445542],[-2.146981,53.445491],[-2.148822,53.446582],[-2.148379,53.447416],[-2.14925,53.448505],[-2.152443,53.450299],[-2.154653,53.451048],[-2.158451,53.454937]]]},"properties":{"LAD22CD":"E08000007","LAD22NM":"Stockport","BNG_E":391806,"BNG_N":388264,"LONG":-2.12467,"LAT":53.39116,"GlobalID":"aa78794a-b62f-4de8-9604-09bd2e410074"},"id":247}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.963386,53.509827],[-1.96673,53.510379],[-1.973056,53.512442],[-1.97782,53.514433],[-1.981947,53.515265],[-1.986953,53.516704],[-1.988824,53.518386],[-1.991477,53.519845],[-1.996927,53.522065],[-2.003033,53.520212],[-2.009133,53.519127],[-2.016815,53.521202],[-2.018776,53.521434],[-2.01753,53.523725],[-2.018093,53.524831],[-2.020319,53.526001],[-2.023156,53.528397],[-2.024708,53.528533],[-2.026799,53.529426],[-2.030549,53.53017],[-2.032453,53.530257],[-2.034486,53.529398],[-2.034974,53.530325],[-2.038283,53.529895],[-2.044467,53.529877],[-2.051116,53.530432],[-2.054917,53.531393],[-2.056936,53.530676],[-2.057301,53.529267],[-2.05626,53.529294],[-2.053284,53.526828],[-2.053115,53.525579],[-2.054447,53.523826],[-2.054148,53.522269],[-2.056206,53.522183],[-2.058394,53.522964],[-2.061867,53.522311],[-2.06421,53.52126],[-2.064729,53.522813],[-2.070697,53.521736],[-2.071142,53.521302],[-2.074832,53.521242],[-2.075166,53.520661],[-2.077205,53.520274],[-2.078367,53.520631],[-2.093258,53.520617],[-2.092939,53.519528],[-2.093425,53.51812],[-2.09544,53.517643],[-2.095174,53.515854],[-2.097325,53.514786],[-2.09965,53.513255],[-2.099963,53.511726],[-2.102356,53.510996],[-2.103312,53.509671],[-2.110789,53.508332],[-2.113038,53.507677],[-2.115407,53.506459],[-2.118226,53.505749],[-2.119685,53.505727],[-2.120693,53.501262],[-2.123318,53.500667],[-2.124447,53.499659],[-2.127537,53.498498],[-2.13042,53.498525],[-2.131633,53.498142],[-2.135204,53.495271],[-2.136226,53.491904],[-2.138139,53.491799],[-2.140939,53.491128],[-2.145429,53.491973],[-2.146979,53.493799],[-2.148413,53.492909],[-2.151079,53.493154],[-2.154083,53.492846],[-2.154675,53.493456],[-2.157707,53.494383],[-2.159137,53.493227],[-2.161998,53.493354],[-2.16303,53.492849],[-2.16397,53.491397],[-2.165969,53.491573],[-2.166638,53.490858],[-2.166227,53.488868],[-2.169027,53.488523],[-2.168925,53.487181],[-2.169664,53.486782],[-2.168482,53.482933],[-2.167538,53.481096],[-2.167689,53.480111],[-2.165969,53.479557],[-2.165439,53.477258],[-2.162232,53.476294],[-2.161565,53.47485],[-2.158561,53.475296],[-2.155924,53.475319],[-2.155433,53.474444],[-2.150391,53.472778],[-2.149894,53.470913],[-2.147848,53.469043],[-2.146864,53.467498],[-2.147926,53.466626],[-2.14785,53.465786],[-2.149146,53.465152],[-2.149973,53.463711],[-2.152783,53.463247],[-2.150173,53.46079],[-2.150775,53.460214],[-2.149241,53.45941],[-2.150279,53.457942],[-2.152119,53.457721],[-2.158451,53.454937],[-2.154653,53.451048],[-2.152443,53.450299],[-2.14925,53.448505],[-2.148379,53.447416],[-2.148822,53.446582],[-2.146981,53.445491],[-2.145948,53.445542],[-2.142904,53.444561],[-2.144573,53.443655],[-2.142687,53.442254],[-2.141388,53.439177],[-2.137703,53.437745],[-2.136437,53.439135],[-2.133497,53.438316],[-2.130723,53.439435],[-2.129188,53.439481],[-2.123021,53.437674],[-2.122379,53.438272],[-2.123775,53.439571],[-2.123767,53.440615],[-2.12265,53.441042],[-2.119359,53.438827],[-2.120698,53.437016],[-2.117313,53.437245],[-2.114903,53.438615],[-2.115212,53.439403],[-2.117378,53.439397],[-2.116009,53.440731],[-2.111236,53.437542],[-2.110901,53.436468],[-2.107552,53.433843],[-2.102707,53.432621],[-2.100736,53.433538],[-2.096844,53.433558],[-2.098135,53.43612],[-2.09661,53.43706],[-2.093968,53.436475],[-2.09281,53.437539],[-2.091215,53.437622],[-2.088873,53.437259],[-2.087202,53.436205],[-2.0865,53.434727],[-2.084036,53.434097],[-2.086318,53.432784],[-2.085425,53.432451],[-2.085386,53.430136],[-2.086078,53.429832],[-2.084615,53.42789],[-2.083007,53.426831],[-2.079135,53.426109],[-2.077626,53.426178],[-2.076443,53.427007],[-2.074705,53.425972],[-2.071153,53.427832],[-2.067293,53.428699],[-2.065178,53.430164],[-2.06213,53.428979],[-2.061728,53.429883],[-2.059877,53.429978],[-2.058367,53.431012],[-2.05579,53.431771],[-2.050486,53.43089],[-2.04917,53.430034],[-2.047453,53.430063],[-2.045748,53.429359],[-2.042163,53.428741],[-2.039609,53.427869],[-2.039069,53.427182],[-2.035525,53.427507],[-2.034045,53.428752],[-2.030526,53.428454],[-2.026256,53.429865],[-2.025765,53.430093],[-2.027322,53.431886],[-2.026735,53.432686],[-2.022755,53.433098],[-2.02245,53.434322],[-2.019519,53.435787],[-2.017849,53.438392],[-2.016565,53.438098],[-2.014721,53.439571],[-2.012298,53.439917],[-2.010043,53.437259],[-2.007173,53.435701],[-2.004216,53.435922],[-2.005433,53.437143],[-2.004692,53.438011],[-2.006416,53.440445],[-2.008306,53.441452],[-2.006608,53.442411],[-2.003764,53.442901],[-2.002532,53.444118],[-1.999377,53.44585],[-1.996391,53.445772],[-1.994765,53.446914],[-1.995034,53.450597],[-1.993148,53.452295],[-1.989448,53.454021],[-1.986901,53.454316],[-1.985562,53.455759],[-1.987659,53.456878],[-1.98743,53.458903],[-1.988161,53.460598],[-1.980913,53.46287],[-1.981533,53.464505],[-1.984008,53.466127],[-1.98421,53.466824],[-1.986731,53.467505],[-1.987614,53.469589],[-1.988531,53.470025],[-1.988163,53.472084],[-1.987373,53.472774],[-1.989311,53.475395],[-1.98782,53.48111],[-1.985705,53.481742],[-1.984668,53.483232],[-1.981465,53.485262],[-1.976647,53.486319],[-1.974631,53.487935],[-1.973431,53.490657],[-1.972263,53.491618],[-1.972198,53.492832],[-1.971223,53.493653],[-1.970777,53.495224],[-1.972493,53.499047],[-1.971975,53.500203],[-1.97272,53.502486],[-1.971319,53.504559],[-1.967439,53.506639],[-1.966938,53.507351],[-1.963386,53.509827]]]},"properties":{"LAD22CD":"E08000008","LAD22NM":"Tameside","BNG_E":394987,"BNG_N":397995,"LONG":-2.077,"LAT":53.47867,"GlobalID":"1ea8ab6a-1eda-4429-9302-b10295cc4c3b"},"id":248}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.26532,53.472729],[-2.269725,53.471175],[-2.272595,53.469757],[-2.279101,53.465387],[-2.28126,53.464862],[-2.283893,53.465342],[-2.300447,53.471377],[-2.304404,53.473095],[-2.316357,53.4787],[-2.319203,53.479651],[-2.324008,53.480362],[-2.329467,53.479995],[-2.352177,53.474725],[-2.362121,53.471699],[-2.377122,53.466519],[-2.37995,53.465243],[-2.386857,53.463136],[-2.395645,53.45884],[-2.399236,53.456488],[-2.403235,53.453226],[-2.407171,53.449169],[-2.409565,53.445735],[-2.410752,53.442116],[-2.412793,53.439664],[-2.413519,53.437532],[-2.417278,53.43157],[-2.419286,53.42956],[-2.422387,53.427339],[-2.426824,53.425101],[-2.449378,53.415891],[-2.45078,53.4153],[-2.453682,53.413213],[-2.456257,53.410824],[-2.462102,53.403852],[-2.465977,53.400748],[-2.471733,53.397751],[-2.478456,53.396218],[-2.475713,53.394204],[-2.473645,53.393737],[-2.472647,53.392709],[-2.471044,53.392338],[-2.468173,53.393058],[-2.468189,53.393863],[-2.466281,53.394074],[-2.465906,53.39482],[-2.464081,53.39417],[-2.463258,53.394727],[-2.460863,53.393953],[-2.459948,53.394316],[-2.458254,53.393898],[-2.455435,53.394272],[-2.454496,53.393907],[-2.450828,53.394916],[-2.448439,53.3948],[-2.44527,53.392861],[-2.445482,53.392185],[-2.442793,53.391971],[-2.441655,53.391003],[-2.438575,53.39157],[-2.438787,53.390099],[-2.436995,53.389257],[-2.433871,53.389453],[-2.43334,53.388237],[-2.431997,53.387715],[-2.429778,53.388397],[-2.428362,53.388426],[-2.42659,53.387461],[-2.423274,53.387218],[-2.422447,53.386353],[-2.420346,53.386707],[-2.418563,53.386174],[-2.417146,53.384719],[-2.414434,53.384534],[-2.41262,53.384001],[-2.410597,53.383866],[-2.407895,53.382657],[-2.408485,53.382088],[-2.407121,53.379824],[-2.400095,53.377306],[-2.399458,53.376495],[-2.400865,53.376001],[-2.400698,53.375221],[-2.396165,53.374488],[-2.393047,53.372477],[-2.390637,53.371863],[-2.390279,53.370701],[-2.387125,53.371091],[-2.386381,53.3703],[-2.383413,53.369973],[-2.382239,53.370265],[-2.378171,53.366819],[-2.377949,53.366004],[-2.375657,53.365324],[-2.373353,53.365637],[-2.370368,53.364485],[-2.366911,53.364455],[-2.365027,53.363106],[-2.364006,53.363314],[-2.363307,53.364546],[-2.361923,53.364041],[-2.359275,53.364355],[-2.360416,53.3656],[-2.360108,53.36687],[-2.357083,53.366894],[-2.357337,53.368366],[-2.356587,53.368548],[-2.35208,53.368111],[-2.350975,53.366522],[-2.349006,53.365898],[-2.348074,53.366225],[-2.347763,53.367842],[-2.343693,53.366556],[-2.340952,53.367479],[-2.340084,53.367373],[-2.338591,53.366222],[-2.337226,53.366822],[-2.335145,53.365908],[-2.332905,53.365492],[-2.331756,53.363936],[-2.329897,53.363938],[-2.329596,53.363125],[-2.330921,53.361906],[-2.327939,53.360458],[-2.326538,53.361385],[-2.324399,53.36138],[-2.323424,53.358267],[-2.322722,53.359192],[-2.321266,53.359471],[-2.319855,53.358598],[-2.317952,53.359119],[-2.315196,53.359052],[-2.313941,53.358358],[-2.313998,53.357425],[-2.306039,53.358382],[-2.300086,53.360007],[-2.298595,53.360825],[-2.296237,53.363124],[-2.292664,53.370269],[-2.290563,53.372705],[-2.290117,53.372701],[-2.286343,53.375847],[-2.288585,53.376893],[-2.292683,53.380801],[-2.294211,53.381714],[-2.296547,53.382252],[-2.299874,53.384331],[-2.300215,53.384987],[-2.299148,53.386099],[-2.299762,53.387013],[-2.299715,53.388467],[-2.300152,53.392154],[-2.303594,53.395054],[-2.305013,53.397088],[-2.30734,53.397415],[-2.319919,53.411624],[-2.318235,53.411121],[-2.315858,53.410896],[-2.312712,53.409823],[-2.307245,53.409786],[-2.305902,53.410057],[-2.303579,53.409584],[-2.300694,53.40976],[-2.297716,53.408364],[-2.297271,53.411004],[-2.296525,53.411877],[-2.293943,53.413582],[-2.290905,53.4142],[-2.288885,53.415378],[-2.287263,53.414919],[-2.284509,53.416138],[-2.283087,53.416023],[-2.281546,53.415284],[-2.277848,53.41547],[-2.278423,53.417534],[-2.278194,53.418314],[-2.275441,53.419406],[-2.273621,53.422501],[-2.27565,53.423295],[-2.280629,53.42392],[-2.283652,53.425008],[-2.285331,53.427243],[-2.285933,53.429225],[-2.286747,53.430231],[-2.289104,53.432038],[-2.293277,53.432676],[-2.296032,53.432471],[-2.299866,53.433434],[-2.300201,53.436348],[-2.299699,53.437325],[-2.295569,53.435867],[-2.294304,53.436062],[-2.295439,53.438799],[-2.291493,53.439211],[-2.289871,53.441289],[-2.291506,53.44313],[-2.293261,53.443626],[-2.291812,53.44538],[-2.28965,53.445077],[-2.286217,53.449119],[-2.279756,53.449197],[-2.27938,53.450185],[-2.276708,53.450542],[-2.271466,53.450732],[-2.258187,53.458825],[-2.253687,53.459946],[-2.253023,53.461338],[-2.253764,53.462761],[-2.2559,53.462175],[-2.257919,53.462384],[-2.259948,53.465594],[-2.262703,53.467435],[-2.264572,53.467888],[-2.264565,53.46877],[-2.265707,53.469733],[-2.268161,53.469707],[-2.265096,53.472511],[-2.26532,53.472729]]]},"properties":{"LAD22CD":"E08000009","LAD22NM":"Trafford","BNG_E":375790,"BNG_N":391162,"LONG":-2.36572,"LAT":53.41671,"GlobalID":"6eba5d45-fc55-406e-9fda-8db3fdd8c025"},"id":249}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.625907,53.593683],[-2.627495,53.595251],[-2.628232,53.595317],[-2.628047,53.597098],[-2.629834,53.599165],[-2.631378,53.599914],[-2.631762,53.603243],[-2.632205,53.603533],[-2.631284,53.605218],[-2.632367,53.606539],[-2.632097,53.607265],[-2.634592,53.608283],[-2.636608,53.60773],[-2.639251,53.607394],[-2.640342,53.607607],[-2.643747,53.607189],[-2.646947,53.60725],[-2.650097,53.606136],[-2.652568,53.605868],[-2.655141,53.60445],[-2.658865,53.604173],[-2.659371,53.603648],[-2.664949,53.603223],[-2.666602,53.603466],[-2.667994,53.604334],[-2.670545,53.605098],[-2.673053,53.60477],[-2.674003,53.604998],[-2.677593,53.604975],[-2.680152,53.604042],[-2.684073,53.60392],[-2.685782,53.603271],[-2.689313,53.604303],[-2.689914,53.603813],[-2.692587,53.596146],[-2.693659,53.591822],[-2.69337,53.589414],[-2.694226,53.589382],[-2.696762,53.590267],[-2.698182,53.591333],[-2.700064,53.591214],[-2.702813,53.58983],[-2.702761,53.587246],[-2.705995,53.586665],[-2.70748,53.586694],[-2.7082,53.585896],[-2.710407,53.585046],[-2.711645,53.582825],[-2.714375,53.581678],[-2.714944,53.580656],[-2.714497,53.578997],[-2.714802,53.578353],[-2.717764,53.577007],[-2.717679,53.576023],[-2.715606,53.575077],[-2.71766,53.572559],[-2.715773,53.571058],[-2.715659,53.570243],[-2.714307,53.568766],[-2.712391,53.568326],[-2.712594,53.56749],[-2.711044,53.565698],[-2.71127,53.564768],[-2.70952,53.564032],[-2.707934,53.564211],[-2.705208,53.563485],[-2.704214,53.56265],[-2.705319,53.561197],[-2.704819,53.559192],[-2.70708,53.557173],[-2.707778,53.55465],[-2.709186,53.554284],[-2.710263,53.553066],[-2.710146,53.550773],[-2.710872,53.54969],[-2.712568,53.548837],[-2.716105,53.545588],[-2.717915,53.544619],[-2.718608,53.54356],[-2.715901,53.539394],[-2.714559,53.53828],[-2.716382,53.537888],[-2.716576,53.535262],[-2.717002,53.534242],[-2.716297,53.533784],[-2.717187,53.529655],[-2.718089,53.528759],[-2.717926,53.527211],[-2.720944,53.525061],[-2.724877,53.524406],[-2.726233,53.523791],[-2.730525,53.520598],[-2.72846,53.51826],[-2.727388,53.517858],[-2.726758,53.514842],[-2.723506,53.511756],[-2.723778,53.510366],[-2.719183,53.511847],[-2.717509,53.510994],[-2.715581,53.51068],[-2.714256,53.512606],[-2.710007,53.514642],[-2.708478,53.513353],[-2.707073,53.506685],[-2.705461,53.504788],[-2.703823,53.505097],[-2.703148,53.503978],[-2.700719,53.504616],[-2.699079,53.503071],[-2.698893,53.502032],[-2.696756,53.501865],[-2.692961,53.502208],[-2.690255,53.501319],[-2.688302,53.501472],[-2.685901,53.500873],[-2.683273,53.500912],[-2.682586,53.500296],[-2.677761,53.498842],[-2.671604,53.499083],[-2.668493,53.500167],[-2.666322,53.499768],[-2.664808,53.496742],[-2.664881,53.495961],[-2.663872,53.49468],[-2.661374,53.49368],[-2.662931,53.4928],[-2.65992,53.492245],[-2.656732,53.492523],[-2.655916,53.490339],[-2.654064,53.486461],[-2.651913,53.485348],[-2.648004,53.482207],[-2.645532,53.48073],[-2.64554,53.480252],[-2.637413,53.480429],[-2.633147,53.481026],[-2.631094,53.480873],[-2.618785,53.481842],[-2.615918,53.481756],[-2.613967,53.481186],[-2.612138,53.481138],[-2.612171,53.477317],[-2.611872,53.475],[-2.607864,53.470828],[-2.608989,53.470316],[-2.610665,53.47054],[-2.611237,53.469932],[-2.614549,53.470361],[-2.615112,53.467856],[-2.615888,53.468075],[-2.616765,53.466243],[-2.61514,53.465013],[-2.615434,53.463691],[-2.613737,53.462693],[-2.613111,53.461775],[-2.61023,53.461596],[-2.609101,53.46101],[-2.606824,53.461523],[-2.603494,53.46091],[-2.600851,53.461218],[-2.599225,53.460958],[-2.599516,53.45959],[-2.598817,53.4583],[-2.596105,53.456453],[-2.592931,53.45575],[-2.58866,53.456121],[-2.588357,53.455499],[-2.586705,53.455167],[-2.58315,53.453328],[-2.584736,53.452175],[-2.583909,53.451741],[-2.583319,53.448872],[-2.582518,53.448209],[-2.578932,53.447475],[-2.576743,53.446057],[-2.574631,53.447995],[-2.573748,53.451199],[-2.570552,53.456724],[-2.57039,53.458475],[-2.549076,53.461486],[-2.552639,53.467813],[-2.550485,53.468062],[-2.502705,53.479727],[-2.496335,53.480929],[-2.492742,53.479377],[-2.489146,53.475848],[-2.490439,53.473147],[-2.491398,53.472146],[-2.491677,53.469886],[-2.491087,53.469025],[-2.491124,53.467537],[-2.49227,53.465154],[-2.489863,53.462218],[-2.489714,53.460282],[-2.488042,53.460774],[-2.486616,53.460436],[-2.483524,53.460703],[-2.480884,53.461893],[-2.479159,53.461779],[-2.476758,53.462443],[-2.465143,53.462252],[-2.43447,53.465044],[-2.438547,53.482084],[-2.436732,53.484691],[-2.436433,53.486696],[-2.435637,53.487208],[-2.436254,53.490486],[-2.438268,53.491837],[-2.438507,53.492402],[-2.436237,53.493753],[-2.433591,53.497142],[-2.431622,53.498032],[-2.433074,53.499652],[-2.433107,53.500971],[-2.430195,53.50183],[-2.430429,53.504792],[-2.420507,53.50679],[-2.422262,53.50755],[-2.421369,53.508317],[-2.422289,53.509117],[-2.418715,53.510364],[-2.419456,53.512157],[-2.415344,53.512045],[-2.415758,53.513478],[-2.414539,53.514893],[-2.418272,53.51812],[-2.421637,53.519928],[-2.427197,53.52156],[-2.432432,53.522367],[-2.454113,53.526222],[-2.451097,53.528605],[-2.461517,53.53069],[-2.466075,53.530696],[-2.469437,53.532013],[-2.472418,53.531737],[-2.478387,53.533542],[-2.482282,53.533436],[-2.489692,53.534589],[-2.490164,53.535572],[-2.49647,53.5367],[-2.499211,53.538049],[-2.502185,53.537853],[-2.503356,53.538565],[-2.506888,53.538804],[-2.507973,53.536499],[-2.509077,53.535678],[-2.509265,53.534638],[-2.510165,53.534105],[-2.513015,53.536306],[-2.515535,53.535823],[-2.515337,53.534457],[-2.516229,53.533881],[-2.515379,53.531217],[-2.515815,53.52926],[-2.517186,53.52847],[-2.519687,53.527933],[-2.520539,53.527243],[-2.522685,53.527135],[-2.523154,53.526654],[-2.525404,53.526394],[-2.526639,53.52549],[-2.527633,53.525611],[-2.52798,53.523986],[-2.529057,53.523067],[-2.533747,53.523014],[-2.53376,53.524016],[-2.534617,53.524648],[-2.536214,53.52755],[-2.539802,53.528929],[-2.541627,53.530432],[-2.54249,53.530547],[-2.543781,53.532564],[-2.54501,53.533334],[-2.549142,53.534481],[-2.551072,53.5352],[-2.551518,53.535923],[-2.553701,53.536188],[-2.554392,53.537336],[-2.556831,53.538069],[-2.560323,53.537996],[-2.56183,53.5389],[-2.561749,53.540354],[-2.559151,53.542397],[-2.559412,53.543813],[-2.558131,53.544457],[-2.559353,53.546193],[-2.563054,53.547375],[-2.566246,53.547394],[-2.567513,53.548005],[-2.568027,53.549991],[-2.566951,53.550804],[-2.563986,53.551192],[-2.56254,53.551964],[-2.562652,53.55284],[-2.560991,53.553327],[-2.561132,53.554828],[-2.559824,53.555566],[-2.562281,53.55751],[-2.563165,53.560312],[-2.559647,53.561146],[-2.560137,53.562109],[-2.5613,53.562146],[-2.564395,53.563676],[-2.568535,53.564711],[-2.567233,53.567587],[-2.565646,53.5687],[-2.565782,53.57008],[-2.568434,53.572029],[-2.573275,53.574213],[-2.575164,53.57677],[-2.5784,53.577431],[-2.578986,53.578388],[-2.577671,53.579459],[-2.577605,53.581003],[-2.582013,53.582755],[-2.585075,53.58508],[-2.58971,53.586653],[-2.59536,53.588059],[-2.596143,53.588817],[-2.601716,53.58883],[-2.603204,53.588203],[-2.606154,53.588312],[-2.612352,53.590493],[-2.615503,53.590641],[-2.618008,53.591102],[-2.619748,53.590971],[-2.62098,53.590353],[-2.623787,53.589639],[-2.627511,53.589442],[-2.62861,53.590457],[-2.62844,53.591057],[-2.625907,53.593683]]]},"properties":{"LAD22CD":"E08000010","LAD22NM":"Wigan","BNG_E":362136,"BNG_N":402125,"LONG":-2.57247,"LAT":53.51444,"GlobalID":"a889197b-5d3a-4170-8d0d-8617aecd8ba5"},"id":250}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.824965,53.485209],[-2.825575,53.482782],[-2.844421,53.48413],[-2.843397,53.487892],[-2.844448,53.489019],[-2.843938,53.490211],[-2.849837,53.493139],[-2.850462,53.49326],[-2.859179,53.492114],[-2.861478,53.491079],[-2.866423,53.492544],[-2.869683,53.493981],[-2.872026,53.496232],[-2.873333,53.500039],[-2.881501,53.502751],[-2.884234,53.503096],[-2.886223,53.503754],[-2.88799,53.503832],[-2.889648,53.502866],[-2.892363,53.503215],[-2.893802,53.502964],[-2.897697,53.501428],[-2.89842,53.500815],[-2.898688,53.499371],[-2.896385,53.496701],[-2.89675,53.495422],[-2.899176,53.493861],[-2.899607,53.491683],[-2.903867,53.491674],[-2.905248,53.491976],[-2.910015,53.487518],[-2.912325,53.483644],[-2.914268,53.482534],[-2.919559,53.482073],[-2.917161,53.480137],[-2.916843,53.479261],[-2.919081,53.478068],[-2.918962,53.476892],[-2.922615,53.474983],[-2.920041,53.473265],[-2.921087,53.472641],[-2.918658,53.468312],[-2.915758,53.468852],[-2.914379,53.465008],[-2.912503,53.465259],[-2.905963,53.464986],[-2.904925,53.465245],[-2.90394,53.467532],[-2.905929,53.470179],[-2.900315,53.469159],[-2.89515,53.467178],[-2.894696,53.46493],[-2.893037,53.463403],[-2.889978,53.462412],[-2.890102,53.461496],[-2.887799,53.460543],[-2.883406,53.458104],[-2.882021,53.45775],[-2.878426,53.455918],[-2.875122,53.454756],[-2.874157,53.453909],[-2.872089,53.453222],[-2.869641,53.450554],[-2.868432,53.449947],[-2.867628,53.448615],[-2.868352,53.44638],[-2.868245,53.444698],[-2.870054,53.443634],[-2.870592,53.442528],[-2.870123,53.441695],[-2.870843,53.437973],[-2.873416,53.436519],[-2.872661,53.435218],[-2.868789,53.432962],[-2.869386,53.432726],[-2.867477,53.428725],[-2.866178,53.428023],[-2.869455,53.426085],[-2.870098,53.425154],[-2.868224,53.42393],[-2.868885,53.423236],[-2.867682,53.419726],[-2.866308,53.419176],[-2.865927,53.418302],[-2.868695,53.415588],[-2.871163,53.412385],[-2.881331,53.416141],[-2.884097,53.416876],[-2.888235,53.414526],[-2.89111,53.412359],[-2.892364,53.411828],[-2.892411,53.410762],[-2.89168,53.409907],[-2.890543,53.406926],[-2.88168,53.408041],[-2.881414,53.407178],[-2.879749,53.405656],[-2.875347,53.401009],[-2.872747,53.401699],[-2.871866,53.400382],[-2.870456,53.399324],[-2.866403,53.39848],[-2.85622,53.39496],[-2.849742,53.397322],[-2.84804,53.396955],[-2.845014,53.398056],[-2.837345,53.399869],[-2.83667,53.398266],[-2.834583,53.396377],[-2.833554,53.396097],[-2.833322,53.394883],[-2.832446,53.393686],[-2.832009,53.391981],[-2.83287,53.390752],[-2.832713,53.389914],[-2.83365,53.388941],[-2.831547,53.387588],[-2.829937,53.38707],[-2.828707,53.385907],[-2.826153,53.384922],[-2.825064,53.383723],[-2.822705,53.382123],[-2.821955,53.380667],[-2.824197,53.380089],[-2.825113,53.380551],[-2.827921,53.380324],[-2.829068,53.380989],[-2.830885,53.38098],[-2.832443,53.381617],[-2.83498,53.381206],[-2.841722,53.381577],[-2.844432,53.382057],[-2.846599,53.381872],[-2.847942,53.381154],[-2.851847,53.380893],[-2.856189,53.37875],[-2.853995,53.377028],[-2.852405,53.372241],[-2.852025,53.369406],[-2.853668,53.365678],[-2.853496,53.363514],[-2.852084,53.361232],[-2.846339,53.353981],[-2.840406,53.347331],[-2.83217,53.346663],[-2.828712,53.346969],[-2.8232,53.348054],[-2.822498,53.347773],[-2.818804,53.348001],[-2.816954,53.348811],[-2.81622,53.350341],[-2.811948,53.352889],[-2.809065,53.355081],[-2.800901,53.355898],[-2.787302,53.35629],[-2.784828,53.360717],[-2.784564,53.361931],[-2.780915,53.366212],[-2.781912,53.367491],[-2.780248,53.369932],[-2.78229,53.370412],[-2.781283,53.371692],[-2.779739,53.375571],[-2.778889,53.375658],[-2.778542,53.377398],[-2.777052,53.379679],[-2.775622,53.380727],[-2.773165,53.381057],[-2.772078,53.382964],[-2.769311,53.383889],[-2.767593,53.383778],[-2.764525,53.382699],[-2.760581,53.382346],[-2.758659,53.380997],[-2.757654,53.380738],[-2.757775,53.382879],[-2.760271,53.384336],[-2.752597,53.385924],[-2.751426,53.387057],[-2.74923,53.388312],[-2.748142,53.388501],[-2.747106,53.392393],[-2.75005,53.392383],[-2.750648,53.393788],[-2.745287,53.394571],[-2.743396,53.395285],[-2.745321,53.397195],[-2.746265,53.398963],[-2.745175,53.402097],[-2.747423,53.402313],[-2.75492,53.400978],[-2.76639,53.400067],[-2.77226,53.400147],[-2.786776,53.401188],[-2.786687,53.402208],[-2.784124,53.407074],[-2.785593,53.411331],[-2.785691,53.415029],[-2.778777,53.415693],[-2.778205,53.416303],[-2.78246,53.418681],[-2.781384,53.420412],[-2.780206,53.420574],[-2.776202,53.426687],[-2.778719,53.42774],[-2.779666,53.427694],[-2.782017,53.428597],[-2.783572,53.428595],[-2.786029,53.429372],[-2.787936,53.430376],[-2.793337,53.431042],[-2.793962,53.433867],[-2.797747,53.433757],[-2.796809,53.436013],[-2.799186,53.436115],[-2.800124,53.437089],[-2.803079,53.437557],[-2.80503,53.43866],[-2.805349,53.440118],[-2.803973,53.441443],[-2.798952,53.44136],[-2.796767,53.440631],[-2.79507,53.44323],[-2.800259,53.449143],[-2.804188,53.451394],[-2.805281,53.45368],[-2.805107,53.455537],[-2.807004,53.455831],[-2.806273,53.463217],[-2.804408,53.467236],[-2.818712,53.466891],[-2.818653,53.470149],[-2.816752,53.477852],[-2.822949,53.48269],[-2.824965,53.485209]]]},"properties":{"LAD22CD":"E08000011","LAD22NM":"Knowsley","BNG_E":344762,"BNG_N":393778,"LONG":-2.83297,"LAT":53.43788,"GlobalID":"acd59f96-33cb-4c3c-8ad4-4a676c0e681d"},"id":251}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.922615,53.474983],[-2.927186,53.473973],[-2.933358,53.473145],[-2.933397,53.473861],[-2.939835,53.473613],[-2.939829,53.473327],[-2.946124,53.472961],[-2.94788,53.47304],[-2.954845,53.47265],[-2.956307,53.472993],[-2.958078,53.468754],[-2.959628,53.467663],[-2.961918,53.46831],[-2.967283,53.467763],[-2.969842,53.465977],[-2.969552,53.465746],[-2.973823,53.462757],[-2.973407,53.460151],[-2.971649,53.456238],[-2.971585,53.452264],[-2.973012,53.449921],[-2.973731,53.449714],[-2.973378,53.447312],[-2.974859,53.447402],[-2.974973,53.446507],[-2.976264,53.445285],[-2.974915,53.443324],[-2.977608,53.442846],[-2.979087,53.443334],[-2.979831,53.442542],[-2.990455,53.440588],[-2.992695,53.440318],[-2.993992,53.441526],[-3.000215,53.4404],[-2.999976,53.439992],[-3.007546,53.438368],[-3.008752,53.438381],[-3.007155,53.433254],[-3.006349,53.427312],[-3.006935,53.4264],[-3.005933,53.42562],[-3.005674,53.422324],[-3.004742,53.421819],[-3.005425,53.420744],[-3.005164,53.419335],[-3.003131,53.412578],[-3.001846,53.410326],[-2.999602,53.40773],[-2.98891,53.391686],[-2.988073,53.391094],[-2.987951,53.38999],[-2.984973,53.386503],[-2.983432,53.386066],[-2.983067,53.384719],[-2.978631,53.381203],[-2.974652,53.378777],[-2.973574,53.378726],[-2.972564,53.377605],[-2.9693,53.375804],[-2.967648,53.375608],[-2.963776,53.373471],[-2.945736,53.36719],[-2.930141,53.360598],[-2.923651,53.357366],[-2.922439,53.357252],[-2.918921,53.354931],[-2.915919,53.35372],[-2.914441,53.352146],[-2.90987,53.34954],[-2.908244,53.348122],[-2.904897,53.345687],[-2.903227,53.344854],[-2.878159,53.334199],[-2.87187,53.332477],[-2.864928,53.330145],[-2.854973,53.327472],[-2.84052,53.326805],[-2.83641,53.327018],[-2.833031,53.328512],[-2.82883,53.330977],[-2.826654,53.331661],[-2.831531,53.335127],[-2.832457,53.337289],[-2.831066,53.337772],[-2.827327,53.337873],[-2.823483,53.337388],[-2.822329,53.340694],[-2.82021,53.340407],[-2.819841,53.341201],[-2.818,53.342981],[-2.819869,53.343678],[-2.818977,53.34529],[-2.818804,53.348001],[-2.822498,53.347773],[-2.8232,53.348054],[-2.828712,53.346969],[-2.83217,53.346663],[-2.840406,53.347331],[-2.846339,53.353981],[-2.852084,53.361232],[-2.853496,53.363514],[-2.853668,53.365678],[-2.852025,53.369406],[-2.852405,53.372241],[-2.853995,53.377028],[-2.856189,53.37875],[-2.851847,53.380893],[-2.847942,53.381154],[-2.846599,53.381872],[-2.844432,53.382057],[-2.841722,53.381577],[-2.83498,53.381206],[-2.832443,53.381617],[-2.830885,53.38098],[-2.829068,53.380989],[-2.827921,53.380324],[-2.825113,53.380551],[-2.824197,53.380089],[-2.821955,53.380667],[-2.822705,53.382123],[-2.825064,53.383723],[-2.826153,53.384922],[-2.828707,53.385907],[-2.829937,53.38707],[-2.831547,53.387588],[-2.83365,53.388941],[-2.832713,53.389914],[-2.83287,53.390752],[-2.832009,53.391981],[-2.832446,53.393686],[-2.833322,53.394883],[-2.833554,53.396097],[-2.834583,53.396377],[-2.83667,53.398266],[-2.837345,53.399869],[-2.845014,53.398056],[-2.84804,53.396955],[-2.849742,53.397322],[-2.85622,53.39496],[-2.866403,53.39848],[-2.870456,53.399324],[-2.871866,53.400382],[-2.872747,53.401699],[-2.875347,53.401009],[-2.879749,53.405656],[-2.881414,53.407178],[-2.88168,53.408041],[-2.890543,53.406926],[-2.89168,53.409907],[-2.892411,53.410762],[-2.892364,53.411828],[-2.89111,53.412359],[-2.888235,53.414526],[-2.884097,53.416876],[-2.881331,53.416141],[-2.871163,53.412385],[-2.868695,53.415588],[-2.865927,53.418302],[-2.866308,53.419176],[-2.867682,53.419726],[-2.868885,53.423236],[-2.868224,53.42393],[-2.870098,53.425154],[-2.869455,53.426085],[-2.866178,53.428023],[-2.867477,53.428725],[-2.869386,53.432726],[-2.868789,53.432962],[-2.872661,53.435218],[-2.873416,53.436519],[-2.870843,53.437973],[-2.870123,53.441695],[-2.870592,53.442528],[-2.870054,53.443634],[-2.868245,53.444698],[-2.868352,53.44638],[-2.867628,53.448615],[-2.868432,53.449947],[-2.869641,53.450554],[-2.872089,53.453222],[-2.874157,53.453909],[-2.875122,53.454756],[-2.878426,53.455918],[-2.882021,53.45775],[-2.883406,53.458104],[-2.887799,53.460543],[-2.890102,53.461496],[-2.889978,53.462412],[-2.893037,53.463403],[-2.894696,53.46493],[-2.89515,53.467178],[-2.900315,53.469159],[-2.905929,53.470179],[-2.90394,53.467532],[-2.904925,53.465245],[-2.905963,53.464986],[-2.912503,53.465259],[-2.914379,53.465008],[-2.915758,53.468852],[-2.918658,53.468312],[-2.921087,53.472641],[-2.920041,53.473265],[-2.922615,53.474983]]]},"properties":{"LAD22CD":"E08000012","LAD22NM":"Liverpool","BNG_E":339361,"BNG_N":390553,"LONG":-2.91364,"LAT":53.4083,"GlobalID":"83b51342-339b-4da1-a25d-f60db25639cb"},"id":252}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.730525,53.520598],[-2.7314,53.519708],[-2.735924,53.519656],[-2.741036,53.518459],[-2.746985,53.516712],[-2.748293,53.516071],[-2.752829,53.516036],[-2.756016,53.514622],[-2.758701,53.514081],[-2.759832,53.512537],[-2.768873,53.513571],[-2.770015,53.514121],[-2.769902,53.515768],[-2.770895,53.518209],[-2.772521,53.520042],[-2.774843,53.52402],[-2.782477,53.53143],[-2.788704,53.527011],[-2.791574,53.525442],[-2.793594,53.522158],[-2.794592,53.521302],[-2.800543,53.519385],[-2.805613,53.518531],[-2.808881,53.517258],[-2.810476,53.516203],[-2.810821,53.514448],[-2.810451,53.513856],[-2.815675,53.512855],[-2.81674,53.512174],[-2.821508,53.505107],[-2.82259,53.50512],[-2.819916,53.496527],[-2.820387,53.494381],[-2.82404,53.489592],[-2.824965,53.485209],[-2.822949,53.48269],[-2.816752,53.477852],[-2.818653,53.470149],[-2.818712,53.466891],[-2.804408,53.467236],[-2.806273,53.463217],[-2.807004,53.455831],[-2.805107,53.455537],[-2.805281,53.45368],[-2.804188,53.451394],[-2.800259,53.449143],[-2.79507,53.44323],[-2.796767,53.440631],[-2.798952,53.44136],[-2.803973,53.441443],[-2.805349,53.440118],[-2.80503,53.43866],[-2.803079,53.437557],[-2.800124,53.437089],[-2.799186,53.436115],[-2.796809,53.436013],[-2.797747,53.433757],[-2.793962,53.433867],[-2.793337,53.431042],[-2.787936,53.430376],[-2.786029,53.429372],[-2.783572,53.428595],[-2.782017,53.428597],[-2.779666,53.427694],[-2.778719,53.42774],[-2.776202,53.426687],[-2.780206,53.420574],[-2.781384,53.420412],[-2.78246,53.418681],[-2.778205,53.416303],[-2.778777,53.415693],[-2.785691,53.415029],[-2.785593,53.411331],[-2.784124,53.407074],[-2.786687,53.402208],[-2.786776,53.401188],[-2.77226,53.400147],[-2.76639,53.400067],[-2.75492,53.400978],[-2.747423,53.402313],[-2.745175,53.402097],[-2.743864,53.402553],[-2.740373,53.40142],[-2.728936,53.399671],[-2.720314,53.399987],[-2.71659,53.399045],[-2.71612,53.39688],[-2.712804,53.390626],[-2.710222,53.389941],[-2.710344,53.38929],[-2.705081,53.387932],[-2.705042,53.386746],[-2.701076,53.386846],[-2.690633,53.385388],[-2.676317,53.387619],[-2.676034,53.389868],[-2.676611,53.393547],[-2.674816,53.398013],[-2.673795,53.398388],[-2.673109,53.399742],[-2.671377,53.400174],[-2.672356,53.407762],[-2.672927,53.407873],[-2.673025,53.41008],[-2.672136,53.411807],[-2.671877,53.415287],[-2.670745,53.415255],[-2.666856,53.416264],[-2.667094,53.418646],[-2.6718,53.418897],[-2.67232,53.422025],[-2.670063,53.424176],[-2.666567,53.426359],[-2.665674,53.427855],[-2.663784,53.428461],[-2.663853,53.429667],[-2.664819,53.431302],[-2.666442,53.431843],[-2.670319,53.43229],[-2.672725,53.432037],[-2.675268,53.432965],[-2.676046,53.435455],[-2.674182,53.43529],[-2.671683,53.43594],[-2.671837,53.437868],[-2.668845,53.439395],[-2.668772,53.441044],[-2.670292,53.441301],[-2.678844,53.439123],[-2.678879,53.439696],[-2.682168,53.439234],[-2.679829,53.442229],[-2.681338,53.442577],[-2.680278,53.444718],[-2.67869,53.444273],[-2.678223,53.446328],[-2.677354,53.448065],[-2.677504,53.449415],[-2.678613,53.450578],[-2.677167,53.452754],[-2.674462,53.452915],[-2.673475,53.45266],[-2.672604,53.450991],[-2.670661,53.449926],[-2.668495,53.450001],[-2.665132,53.449162],[-2.663874,53.449491],[-2.659946,53.448981],[-2.658787,53.4477],[-2.657916,53.447446],[-2.654743,53.448118],[-2.65236,53.448164],[-2.651096,53.447728],[-2.649378,53.446362],[-2.647983,53.446654],[-2.646057,53.44536],[-2.645657,53.444305],[-2.641891,53.443892],[-2.639535,53.444423],[-2.632408,53.44166],[-2.63141,53.44015],[-2.632089,53.43794],[-2.630043,53.435145],[-2.627463,53.434413],[-2.625433,53.436526],[-2.621018,53.437047],[-2.620299,53.437833],[-2.61801,53.438668],[-2.616055,53.440706],[-2.612087,53.441688],[-2.611423,53.442275],[-2.606344,53.442822],[-2.602486,53.442431],[-2.600606,53.443514],[-2.598897,53.443397],[-2.597051,53.442561],[-2.596231,53.442666],[-2.59589,53.44533],[-2.596659,53.448179],[-2.598685,53.450414],[-2.591597,53.446548],[-2.585296,53.439807],[-2.584597,53.440393],[-2.582314,53.441159],[-2.576743,53.446057],[-2.578932,53.447475],[-2.582518,53.448209],[-2.583319,53.448872],[-2.583909,53.451741],[-2.584736,53.452175],[-2.58315,53.453328],[-2.586705,53.455167],[-2.588357,53.455499],[-2.58866,53.456121],[-2.592931,53.45575],[-2.596105,53.456453],[-2.598817,53.4583],[-2.599516,53.45959],[-2.599225,53.460958],[-2.600851,53.461218],[-2.603494,53.46091],[-2.606824,53.461523],[-2.609101,53.46101],[-2.61023,53.461596],[-2.613111,53.461775],[-2.613737,53.462693],[-2.615434,53.463691],[-2.61514,53.465013],[-2.616765,53.466243],[-2.615888,53.468075],[-2.615112,53.467856],[-2.614549,53.470361],[-2.611237,53.469932],[-2.610665,53.47054],[-2.608989,53.470316],[-2.607864,53.470828],[-2.611872,53.475],[-2.612171,53.477317],[-2.612138,53.481138],[-2.613967,53.481186],[-2.615918,53.481756],[-2.618785,53.481842],[-2.631094,53.480873],[-2.633147,53.481026],[-2.637413,53.480429],[-2.64554,53.480252],[-2.645532,53.48073],[-2.648004,53.482207],[-2.651913,53.485348],[-2.654064,53.486461],[-2.655916,53.490339],[-2.656732,53.492523],[-2.65992,53.492245],[-2.662931,53.4928],[-2.661374,53.49368],[-2.663872,53.49468],[-2.664881,53.495961],[-2.664808,53.496742],[-2.666322,53.499768],[-2.668493,53.500167],[-2.671604,53.499083],[-2.677761,53.498842],[-2.682586,53.500296],[-2.683273,53.500912],[-2.685901,53.500873],[-2.688302,53.501472],[-2.690255,53.501319],[-2.692961,53.502208],[-2.696756,53.501865],[-2.698893,53.502032],[-2.699079,53.503071],[-2.700719,53.504616],[-2.703148,53.503978],[-2.703823,53.505097],[-2.705461,53.504788],[-2.707073,53.506685],[-2.708478,53.513353],[-2.710007,53.514642],[-2.714256,53.512606],[-2.715581,53.51068],[-2.717509,53.510994],[-2.719183,53.511847],[-2.723778,53.510366],[-2.723506,53.511756],[-2.726758,53.514842],[-2.727388,53.517858],[-2.72846,53.51826],[-2.730525,53.520598]]]},"properties":{"LAD22CD":"E08000013","LAD22NM":"St. Helens","BNG_E":353412,"BNG_N":395992,"LONG":-2.7031,"LAT":53.45862,"GlobalID":"531ae877-d458-4df4-843b-f3a0d1192a7d"},"id":253}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.950303,53.691549],[-2.952505,53.691362],[-2.951428,53.690554],[-2.949794,53.691037],[-2.950303,53.691549]]],[[[-2.954109,53.695369],[-2.955921,53.695946],[-2.958016,53.696181],[-2.959181,53.69578],[-2.961993,53.695906],[-2.962683,53.694948],[-2.962301,53.693805],[-2.959973,53.692538],[-2.958583,53.692109],[-2.95746,53.69103],[-2.954883,53.692574],[-2.952924,53.691574],[-2.950471,53.691718],[-2.954109,53.695369]]],[[[-2.949712,53.690955],[-2.951274,53.690426],[-2.950766,53.687621],[-2.950986,53.686257],[-2.952441,53.685486],[-2.953422,53.684082],[-2.953846,53.682197],[-2.954409,53.682334],[-2.953615,53.684309],[-2.952665,53.68557],[-2.951252,53.686382],[-2.951109,53.688671],[-2.952097,53.6902],[-2.95194,53.690674],[-2.954902,53.691765],[-2.956146,53.690264],[-2.957373,53.690085],[-2.959984,53.691787],[-2.961384,53.692095],[-2.96458,53.693467],[-2.9651,53.695989],[-2.964443,53.69741],[-2.96531,53.698225],[-2.969394,53.698323],[-2.975494,53.697127],[-2.977205,53.696484],[-2.977835,53.69292],[-2.979458,53.690107],[-2.982817,53.689323],[-2.984777,53.689742],[-2.986473,53.689631],[-2.988104,53.688139],[-2.988269,53.686129],[-2.985694,53.686402],[-2.985241,53.685697],[-2.987939,53.684644],[-2.98974,53.682656],[-2.994173,53.680423],[-2.997354,53.679701],[-2.997493,53.678795],[-3.000264,53.678506],[-3.000899,53.677246],[-3.002337,53.676951],[-3.005248,53.677426],[-3.007986,53.678944],[-3.01076,53.678768],[-3.013128,53.679364],[-3.01407,53.679149],[-3.015213,53.677584],[-3.015782,53.675746],[-3.0156,53.67292],[-3.014062,53.67],[-3.011067,53.667076],[-3.010291,53.666996],[-3.008703,53.669288],[-3.006306,53.671382],[-3.003508,53.671876],[-3.003198,53.6701],[-3.004032,53.668962],[-3.004666,53.666358],[-3.005663,53.664692],[-3.008136,53.662916],[-3.010713,53.660217],[-3.011206,53.660402],[-3.014492,53.658483],[-3.017791,53.654173],[-3.019844,53.652846],[-3.02139,53.652517],[-3.022184,53.651445],[-3.02447,53.650446],[-3.026453,53.650133],[-3.027073,53.648742],[-3.028473,53.648263],[-3.030466,53.646962],[-3.031978,53.64447],[-3.034645,53.642685],[-3.037489,53.640476],[-3.038097,53.639422],[-3.040042,53.637799],[-3.040908,53.636349],[-3.042952,53.634575],[-3.044243,53.632799],[-3.045868,53.631853],[-3.047373,53.629258],[-3.051066,53.627831],[-3.053866,53.626101],[-3.057448,53.621106],[-3.058791,53.621114],[-3.059943,53.618121],[-3.060928,53.617328],[-3.06559,53.610145],[-3.067918,53.606723],[-3.068608,53.607273],[-3.074782,53.598836],[-3.078138,53.596134],[-3.085411,53.587405],[-3.090466,53.580209],[-3.095572,53.573885],[-3.098353,53.569077],[-3.102356,53.561172],[-3.104381,53.553707],[-3.104791,53.546934],[-3.103996,53.546015],[-3.10395,53.542858],[-3.103,53.541866],[-3.102898,53.538897],[-3.101311,53.536385],[-3.099409,53.536417],[-3.098134,53.535585],[-3.098127,53.534374],[-3.097086,53.53339],[-3.096745,53.53226],[-3.093977,53.531622],[-3.089977,53.529281],[-3.086558,53.526009],[-3.08525,53.525209],[-3.08379,53.525106],[-3.080278,53.524002],[-3.077308,53.522776],[-3.07276,53.520451],[-3.070106,53.519798],[-3.068317,53.5199],[-3.067243,53.520496],[-3.068052,53.521949],[-3.066031,53.52245],[-3.064152,53.520715],[-3.06433,53.519776],[-3.06315,53.518436],[-3.063896,53.516846],[-3.065246,53.516003],[-3.063207,53.511016],[-3.063412,53.510506],[-3.062543,53.507252],[-3.063737,53.505469],[-3.062809,53.504679],[-3.061828,53.502898],[-3.055881,53.490279],[-3.051547,53.48594],[-3.046029,53.478597],[-3.04447,53.47746],[-3.043191,53.475627],[-3.041768,53.474478],[-3.037703,53.468251],[-3.038057,53.467761],[-3.041161,53.466275],[-3.041414,53.4655],[-3.028743,53.455509],[-3.018719,53.449899],[-3.0172,53.449593],[-3.01133,53.442371],[-3.008752,53.438381],[-3.007546,53.438368],[-2.999976,53.439992],[-3.000215,53.4404],[-2.993992,53.441526],[-2.992695,53.440318],[-2.990455,53.440588],[-2.979831,53.442542],[-2.979087,53.443334],[-2.977608,53.442846],[-2.974915,53.443324],[-2.976264,53.445285],[-2.974973,53.446507],[-2.974859,53.447402],[-2.973378,53.447312],[-2.973731,53.449714],[-2.973012,53.449921],[-2.971585,53.452264],[-2.971649,53.456238],[-2.973407,53.460151],[-2.973823,53.462757],[-2.969552,53.465746],[-2.969842,53.465977],[-2.967283,53.467763],[-2.961918,53.46831],[-2.959628,53.467663],[-2.958078,53.468754],[-2.956307,53.472993],[-2.954845,53.47265],[-2.94788,53.47304],[-2.946124,53.472961],[-2.939829,53.473327],[-2.939835,53.473613],[-2.933397,53.473861],[-2.933358,53.473145],[-2.927186,53.473973],[-2.922615,53.474983],[-2.918962,53.476892],[-2.919081,53.478068],[-2.916843,53.479261],[-2.917161,53.480137],[-2.919559,53.482073],[-2.914268,53.482534],[-2.912325,53.483644],[-2.910015,53.487518],[-2.905248,53.491976],[-2.903867,53.491674],[-2.899607,53.491683],[-2.899176,53.493861],[-2.89675,53.495422],[-2.896385,53.496701],[-2.898688,53.499371],[-2.89842,53.500815],[-2.897697,53.501428],[-2.893802,53.502964],[-2.892363,53.503215],[-2.889648,53.502866],[-2.88799,53.503832],[-2.892389,53.511146],[-2.887722,53.514559],[-2.88458,53.51915],[-2.884056,53.51956],[-2.881208,53.520002],[-2.881716,53.520544],[-2.886302,53.521079],[-2.889086,53.522211],[-2.891663,53.522151],[-2.895112,53.521355],[-2.896673,53.522002],[-2.898518,53.521584],[-2.899771,53.522069],[-2.901539,53.521637],[-2.906005,53.5217],[-2.907761,53.522439],[-2.908749,53.522373],[-2.912638,53.523566],[-2.914442,53.523303],[-2.915956,53.52401],[-2.919059,53.524379],[-2.921814,53.525467],[-2.92301,53.52522],[-2.925615,53.52691],[-2.925874,53.528791],[-2.926937,53.530011],[-2.931233,53.531247],[-2.933787,53.533415],[-2.933584,53.534437],[-2.935221,53.536047],[-2.936055,53.538417],[-2.938717,53.538523],[-2.941236,53.539899],[-2.941986,53.541015],[-2.944699,53.541241],[-2.945451,53.542829],[-2.947849,53.54434],[-2.950877,53.54429],[-2.955013,53.546075],[-2.957722,53.545628],[-2.959803,53.54559],[-2.963199,53.54637],[-2.965884,53.547901],[-2.970199,53.547091],[-2.970725,53.547729],[-2.972548,53.547961],[-2.975164,53.547251],[-2.977282,53.546222],[-2.97846,53.543996],[-2.978377,53.542885],[-2.976444,53.540658],[-2.974364,53.539632],[-2.972782,53.537124],[-2.972819,53.536145],[-2.970474,53.534153],[-2.966822,53.527393],[-2.963248,53.524837],[-2.962998,53.522903],[-2.96417,53.519661],[-2.964143,53.518606],[-2.968143,53.517907],[-2.972944,53.515446],[-2.975994,53.515291],[-2.977111,53.51644],[-2.980584,53.518793],[-2.982532,53.519546],[-2.983443,53.520724],[-2.985955,53.52159],[-2.988166,53.521386],[-2.989596,53.521647],[-2.990324,53.52278],[-2.991523,53.522992],[-2.992922,53.523974],[-2.99477,53.523985],[-2.994979,53.524981],[-2.996607,53.525918],[-2.99956,53.52658],[-3.000889,53.527357],[-3.001202,53.52828],[-3.004668,53.529231],[-3.008201,53.52941],[-3.009316,53.530553],[-3.009147,53.531708],[-3.010802,53.5325],[-3.012332,53.531881],[-3.01385,53.532401],[-3.014073,53.534614],[-3.015586,53.534832],[-3.0165,53.535765],[-3.018555,53.535474],[-3.019635,53.536499],[-3.023927,53.53793],[-3.025091,53.539006],[-3.027072,53.537993],[-3.028136,53.539007],[-3.029352,53.538986],[-3.031067,53.538238],[-3.031867,53.537259],[-3.034313,53.537979],[-3.035487,53.539123],[-3.036748,53.538546],[-3.038684,53.538299],[-3.039267,53.538718],[-3.038706,53.540117],[-3.040588,53.541733],[-3.042137,53.54136],[-3.042994,53.540382],[-3.044614,53.540844],[-3.044085,53.541682],[-3.045725,53.543445],[-3.040619,53.548829],[-3.038809,53.551905],[-3.0387,53.553155],[-3.040163,53.556155],[-3.039279,53.559186],[-3.040987,53.562472],[-3.040589,53.565002],[-3.039754,53.565703],[-3.032175,53.568997],[-3.02262,53.569598],[-3.022893,53.573632],[-3.021581,53.574016],[-3.020709,53.583675],[-3.029551,53.584681],[-3.029548,53.585322],[-3.031323,53.585502],[-3.033343,53.58512],[-3.033024,53.586591],[-3.035423,53.586795],[-3.035985,53.587222],[-3.033694,53.588067],[-3.032372,53.589299],[-3.032646,53.590791],[-3.03197,53.59296],[-3.031421,53.593305],[-3.031044,53.596317],[-3.032373,53.596943],[-3.032148,53.59853],[-3.030241,53.599459],[-3.030109,53.600744],[-3.028078,53.603082],[-3.026002,53.603858],[-3.024684,53.605269],[-3.021816,53.606247],[-3.020628,53.607144],[-3.020025,53.608962],[-3.014099,53.611277],[-3.011782,53.612952],[-3.011347,53.614916],[-3.006835,53.616976],[-3.005368,53.620433],[-3.001764,53.62249],[-3.001752,53.623492],[-3.000397,53.624259],[-3.000729,53.624976],[-2.997334,53.626886],[-2.993721,53.628271],[-2.992923,53.627283],[-2.981823,53.622205],[-2.966511,53.631865],[-2.962339,53.637322],[-2.957912,53.640799],[-2.958777,53.642517],[-2.949968,53.652335],[-2.948161,53.653758],[-2.942354,53.65629],[-2.941371,53.657871],[-2.940144,53.65861],[-2.941985,53.663152],[-2.944958,53.666163],[-2.947438,53.667349],[-2.943972,53.67297],[-2.943748,53.676303],[-2.94422,53.677763],[-2.945107,53.678566],[-2.947802,53.679236],[-2.952097,53.681513],[-2.952494,53.682279],[-2.949157,53.686866],[-2.946786,53.688018],[-2.949712,53.690955]]]]},"properties":{"LAD22CD":"E08000014","LAD22NM":"Sefton","BNG_E":334282,"BNG_N":398832,"LONG":-2.99177,"LAT":53.4821,"GlobalID":"b5eba363-070d-40e5-a36b-9999779cfa90"},"id":254}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.118433,53.291931],[-3.121294,53.29263],[-3.121291,53.293249],[-3.123924,53.29292],[-3.124978,53.291824],[-3.124236,53.291196],[-3.125688,53.290363],[-3.123055,53.289324],[-3.118433,53.291931]]],[[[-3.117089,53.292688],[-3.117777,53.293834],[-3.120559,53.294114],[-3.121219,53.292754],[-3.118311,53.292],[-3.117089,53.292688]]],[[[-3.114093,53.294378],[-3.116934,53.295186],[-3.119075,53.295231],[-3.119719,53.294355],[-3.117714,53.293991],[-3.116347,53.293107],[-3.114093,53.294378]]],[[[-3.205073,53.3719],[-3.206233,53.371006],[-3.204342,53.370191],[-3.203951,53.370937],[-3.205073,53.3719]]],[[[-3.224398,53.380026],[-3.223926,53.380306],[-3.22844,53.38377],[-3.228278,53.382253],[-3.226243,53.380518],[-3.224398,53.380026]]],[[[-2.928781,53.308283],[-2.932827,53.310548],[-2.940127,53.316193],[-2.946637,53.322454],[-2.948238,53.323335],[-2.949472,53.323091],[-2.95258,53.326872],[-2.957806,53.331474],[-2.959692,53.335901],[-2.963617,53.342048],[-2.966944,53.34492],[-2.967927,53.346691],[-2.967882,53.34741],[-2.973606,53.353423],[-2.977952,53.357353],[-2.983866,53.362228],[-2.986286,53.361525],[-2.989531,53.362988],[-2.994684,53.367776],[-2.995451,53.368005],[-2.996816,53.369716],[-3.001462,53.373761],[-3.001407,53.37485],[-2.999297,53.375677],[-3.001547,53.377926],[-3.0036,53.37764],[-3.004957,53.379103],[-3.006813,53.382472],[-3.005977,53.382839],[-3.00711,53.384577],[-3.006265,53.384849],[-3.007333,53.386629],[-3.00788,53.388366],[-3.008889,53.393733],[-3.008134,53.393968],[-3.00875,53.395455],[-3.01123,53.398664],[-3.013782,53.403426],[-3.015299,53.403814],[-3.014502,53.405862],[-3.016833,53.411582],[-3.023984,53.418267],[-3.027105,53.422081],[-3.032748,53.430953],[-3.034602,53.436326],[-3.034631,53.436954],[-3.036418,53.438952],[-3.036658,53.439783],[-3.039257,53.441038],[-3.041411,53.442904],[-3.043207,53.441795],[-3.044622,53.441545],[-3.056732,53.4401],[-3.060427,53.439354],[-3.071402,53.435724],[-3.073363,53.435374],[-3.079724,53.432104],[-3.081575,53.430662],[-3.089862,53.426912],[-3.094889,53.424289],[-3.096825,53.424012],[-3.098668,53.422359],[-3.100781,53.421451],[-3.103714,53.420748],[-3.106196,53.420831],[-3.118938,53.416553],[-3.126193,53.41464],[-3.140996,53.4119],[-3.143351,53.410887],[-3.170427,53.402339],[-3.175423,53.400148],[-3.177742,53.399663],[-3.178731,53.399108],[-3.179927,53.397502],[-3.193047,53.389173],[-3.197311,53.387278],[-3.200175,53.387479],[-3.200038,53.385765],[-3.20266,53.384874],[-3.204145,53.382933],[-3.203917,53.381187],[-3.202177,53.380589],[-3.201928,53.379104],[-3.202344,53.376913],[-3.200993,53.376692],[-3.199926,53.375697],[-3.197055,53.374471],[-3.196151,53.373137],[-3.194116,53.372345],[-3.19304,53.370198],[-3.18875,53.366971],[-3.186187,53.364387],[-3.181387,53.363843],[-3.179954,53.36238],[-3.178434,53.361577],[-3.176925,53.361375],[-3.16938,53.353771],[-3.168552,53.353494],[-3.162468,53.348363],[-3.157547,53.346003],[-3.156278,53.346074],[-3.15447,53.34537],[-3.149939,53.342515],[-3.148135,53.341844],[-3.137897,53.333728],[-3.134653,53.331569],[-3.130869,53.329992],[-3.123581,53.32509],[-3.123912,53.324638],[-3.122382,53.323725],[-3.117685,53.322031],[-3.115532,53.320795],[-3.112807,53.318337],[-3.111706,53.317997],[-3.106664,53.314114],[-3.103761,53.311209],[-3.104081,53.311085],[-3.107293,53.314425],[-3.109405,53.31534],[-3.112187,53.317691],[-3.1138,53.318399],[-3.114818,53.319736],[-3.1184,53.322057],[-3.122545,53.323535],[-3.123728,53.324234],[-3.126103,53.324999],[-3.127261,53.326321],[-3.130141,53.327853],[-3.132083,53.328061],[-3.133837,53.329298],[-3.135422,53.329251],[-3.136378,53.328494],[-3.136837,53.326057],[-3.134498,53.322945],[-3.134143,53.32172],[-3.132188,53.320428],[-3.132644,53.319502],[-3.134611,53.3183],[-3.136171,53.317835],[-3.134988,53.315706],[-3.132878,53.315955],[-3.131099,53.314464],[-3.126672,53.314059],[-3.124274,53.312512],[-3.121037,53.312868],[-3.119936,53.31255],[-3.119957,53.310177],[-3.123477,53.309922],[-3.125039,53.30938],[-3.128304,53.309072],[-3.126821,53.306337],[-3.122561,53.304],[-3.118387,53.303884],[-3.123884,53.302988],[-3.125828,53.304709],[-3.127628,53.305401],[-3.129383,53.306601],[-3.130976,53.305323],[-3.132091,53.306909],[-3.133489,53.307852],[-3.135401,53.306621],[-3.137164,53.306904],[-3.137423,53.306165],[-3.140301,53.306516],[-3.14078,53.306124],[-3.139846,53.304376],[-3.139692,53.302662],[-3.138264,53.30147],[-3.137103,53.299718],[-3.137157,53.297876],[-3.136384,53.29676],[-3.133915,53.296867],[-3.132954,53.297295],[-3.13163,53.296587],[-3.131967,53.295288],[-3.130095,53.294498],[-3.127436,53.294353],[-3.12491,53.295826],[-3.122004,53.295946],[-3.118544,53.296852],[-3.115702,53.296518],[-3.113799,53.295961],[-3.113212,53.294875],[-3.109363,53.297045],[-3.109194,53.29714],[-3.091292,53.30723],[-3.083081,53.310786],[-3.080976,53.31192],[-3.080394,53.313246],[-3.078141,53.315068],[-3.076391,53.314448],[-3.074166,53.316381],[-3.068272,53.314195],[-3.064253,53.312197],[-3.059659,53.309004],[-3.05121,53.310672],[-3.048391,53.310961],[-3.048164,53.309612],[-3.045861,53.307357],[-3.042315,53.306526],[-3.041657,53.305199],[-3.039245,53.305442],[-3.038475,53.30515],[-3.036577,53.3024],[-3.036597,53.300985],[-3.031355,53.29853],[-3.030509,53.299229],[-3.02614,53.297749],[-3.023984,53.299385],[-3.022002,53.29844],[-3.021268,53.29901],[-3.018553,53.300007],[-3.012837,53.298971],[-3.011238,53.300134],[-3.005374,53.301413],[-3.002181,53.30256],[-2.995334,53.305621],[-2.992738,53.307109],[-2.984738,53.305325],[-2.980164,53.304659],[-2.979528,53.304275],[-2.974134,53.30321],[-2.971268,53.302025],[-2.969073,53.30184],[-2.96533,53.302991],[-2.961499,53.303806],[-2.960026,53.303321],[-2.958276,53.304119],[-2.954685,53.304254],[-2.951623,53.303876],[-2.949382,53.303169],[-2.946587,53.305526],[-2.939552,53.310416],[-2.931603,53.306069],[-2.928781,53.308283]]]]},"properties":{"LAD22CD":"E08000015","LAD22NM":"Wirral","BNG_E":329110,"BNG_N":386965,"LONG":-3.06701,"LAT":53.37478,"GlobalID":"d14c41cf-002f-44a0-a7d8-5424b1dcf3a5"},"id":255}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.348734,53.583348],[-1.351434,53.581081],[-1.3539,53.583404],[-1.354591,53.586217],[-1.356373,53.588985],[-1.354621,53.592116],[-1.35612,53.595366],[-1.359927,53.59682],[-1.360227,53.598628],[-1.363845,53.601806],[-1.371425,53.604894],[-1.374463,53.605497],[-1.376703,53.606478],[-1.379024,53.606594],[-1.381602,53.605445],[-1.384179,53.603757],[-1.392769,53.601423],[-1.396136,53.599831],[-1.400185,53.598668],[-1.401816,53.600235],[-1.405251,53.600408],[-1.405961,53.601059],[-1.412755,53.601303],[-1.415294,53.603279],[-1.421618,53.603193],[-1.423278,53.603497],[-1.424896,53.604484],[-1.428784,53.604998],[-1.430071,53.606815],[-1.432925,53.608942],[-1.43426,53.608111],[-1.435546,53.608113],[-1.436557,53.606547],[-1.439193,53.607062],[-1.441876,53.60944],[-1.444647,53.610527],[-1.446852,53.612617],[-1.44804,53.611694],[-1.455507,53.6077],[-1.459073,53.606202],[-1.46042,53.606037],[-1.472954,53.600834],[-1.473996,53.601405],[-1.47486,53.600094],[-1.47857,53.59836],[-1.479287,53.596953],[-1.481258,53.596335],[-1.482907,53.595107],[-1.484313,53.594958],[-1.485089,53.597001],[-1.489493,53.596241],[-1.492134,53.596993],[-1.492911,53.598959],[-1.491581,53.602769],[-1.49512,53.60319],[-1.496563,53.597374],[-1.501389,53.599833],[-1.507225,53.597692],[-1.508048,53.5983],[-1.510871,53.597214],[-1.512904,53.597002],[-1.517739,53.598637],[-1.518671,53.599719],[-1.524353,53.597722],[-1.528381,53.597033],[-1.529833,53.594069],[-1.533385,53.593655],[-1.536431,53.593763],[-1.536555,53.595177],[-1.537927,53.595196],[-1.53981,53.597512],[-1.54118,53.597683],[-1.542952,53.599265],[-1.544663,53.599479],[-1.546438,53.601245],[-1.546548,53.602257],[-1.548983,53.603157],[-1.550705,53.604351],[-1.55707,53.605184],[-1.558735,53.606902],[-1.560453,53.607552],[-1.562918,53.60771],[-1.566155,53.606658],[-1.571985,53.608609],[-1.577205,53.607536],[-1.580441,53.606101],[-1.583532,53.60562],[-1.584553,53.605898],[-1.586453,53.607174],[-1.588107,53.606489],[-1.589939,53.607104],[-1.591151,53.606781],[-1.588073,53.603769],[-1.586899,53.603785],[-1.585618,53.602009],[-1.585192,53.600532],[-1.586617,53.599843],[-1.586143,53.599025],[-1.586506,53.596831],[-1.587979,53.593487],[-1.589632,53.593889],[-1.590855,53.592421],[-1.594932,53.59091],[-1.597676,53.590239],[-1.597969,53.589398],[-1.601752,53.587759],[-1.6004,53.586204],[-1.602573,53.584936],[-1.602311,53.582967],[-1.600704,53.581122],[-1.599286,53.580775],[-1.597988,53.579743],[-1.599674,53.579066],[-1.600266,53.577339],[-1.598373,53.5766],[-1.606189,53.572947],[-1.607191,53.571505],[-1.609658,53.572029],[-1.610808,53.570049],[-1.612157,53.56877],[-1.612165,53.567626],[-1.614395,53.565069],[-1.61644,53.564514],[-1.615632,53.563028],[-1.619404,53.563123],[-1.622835,53.562873],[-1.627041,53.563598],[-1.633301,53.563187],[-1.633492,53.562958],[-1.637805,53.562296],[-1.646577,53.562366],[-1.648235,53.562195],[-1.649694,53.561534],[-1.650798,53.56167],[-1.651884,53.56073],[-1.65656,53.560558],[-1.658049,53.559766],[-1.660869,53.559592],[-1.663931,53.557501],[-1.661754,53.555817],[-1.661911,53.553693],[-1.667401,53.553423],[-1.670602,53.554153],[-1.699037,53.55381],[-1.704127,53.56025],[-1.723178,53.559927],[-1.725266,53.555407],[-1.72636,53.554497],[-1.724408,53.552236],[-1.727249,53.550328],[-1.729208,53.547503],[-1.733097,53.545128],[-1.74011,53.54207],[-1.741556,53.541071],[-1.7425,53.541053],[-1.755819,53.536681],[-1.765495,53.535659],[-1.771784,53.533859],[-1.776811,53.535508],[-1.785348,53.534789],[-1.788596,53.535555],[-1.791703,53.535382],[-1.794637,53.534196],[-1.797431,53.533888],[-1.801256,53.535105],[-1.804103,53.536555],[-1.804283,53.537013],[-1.822229,53.521091],[-1.822589,53.520018],[-1.820793,53.518507],[-1.819524,53.513428],[-1.8136,53.512098],[-1.809933,53.511893],[-1.806871,53.51209],[-1.800779,53.511379],[-1.810399,53.50634],[-1.80776,53.506099],[-1.80395,53.505073],[-1.799034,53.504666],[-1.796288,53.503153],[-1.795866,53.499493],[-1.795082,53.498191],[-1.795001,53.495919],[-1.795856,53.495266],[-1.795847,53.494286],[-1.797952,53.493386],[-1.800263,53.493355],[-1.80025,53.488107],[-1.801853,53.486549],[-1.801471,53.480992],[-1.791973,53.48199],[-1.790453,53.482511],[-1.787261,53.484379],[-1.783648,53.484799],[-1.780415,53.48437],[-1.773703,53.482503],[-1.771054,53.482428],[-1.765992,53.481075],[-1.76398,53.481415],[-1.761899,53.481249],[-1.760517,53.480764],[-1.757461,53.48105],[-1.754144,53.480648],[-1.751106,53.479918],[-1.748987,53.479857],[-1.746312,53.478994],[-1.743331,53.479339],[-1.739694,53.477222],[-1.73775,53.477651],[-1.736339,53.479382],[-1.736458,53.48061],[-1.737671,53.481571],[-1.736116,53.48379],[-1.735386,53.486604],[-1.733579,53.488093],[-1.731983,53.490897],[-1.730366,53.491322],[-1.722808,53.491529],[-1.720038,53.492348],[-1.719519,53.492929],[-1.717256,53.49394],[-1.716076,53.494083],[-1.715661,53.495469],[-1.713655,53.496668],[-1.714066,53.497858],[-1.712293,53.498696],[-1.71101,53.501259],[-1.707279,53.501356],[-1.703305,53.501846],[-1.702983,53.502898],[-1.701089,53.503121],[-1.698458,53.502542],[-1.693371,53.500188],[-1.690711,53.49946],[-1.688976,53.499692],[-1.6874,53.499036],[-1.684467,53.499468],[-1.683985,53.498887],[-1.681116,53.499927],[-1.68045,53.500522],[-1.669053,53.50067],[-1.658843,53.498395],[-1.65509,53.496796],[-1.647977,53.494816],[-1.641262,53.494081],[-1.638987,53.493366],[-1.633833,53.492391],[-1.624447,53.492125],[-1.6211,53.491828],[-1.614947,53.490568],[-1.614458,53.493154],[-1.61151,53.493206],[-1.609604,53.492255],[-1.609353,53.491669],[-1.606591,53.492907],[-1.602371,53.491592],[-1.602228,53.491908],[-1.590363,53.489991],[-1.58702,53.48816],[-1.582295,53.487566],[-1.576354,53.486167],[-1.57489,53.48602],[-1.569154,53.486468],[-1.565757,53.486041],[-1.56506,53.484905],[-1.559269,53.48357],[-1.557744,53.482243],[-1.557359,53.480266],[-1.549658,53.478494],[-1.546567,53.47463],[-1.544223,53.47275],[-1.544487,53.472211],[-1.548121,53.471332],[-1.545373,53.469849],[-1.542345,53.465018],[-1.539475,53.462576],[-1.539047,53.461715],[-1.540318,53.461051],[-1.539455,53.457729],[-1.541143,53.45592],[-1.551384,53.455455],[-1.552549,53.45278],[-1.548735,53.45113],[-1.547384,53.449886],[-1.550437,53.44763],[-1.551213,53.446146],[-1.548112,53.44479],[-1.546184,53.441888],[-1.540802,53.44098],[-1.537405,53.440878],[-1.534984,53.439936],[-1.53399,53.438611],[-1.531937,53.438722],[-1.527717,53.438553],[-1.526364,53.439074],[-1.525543,53.440263],[-1.523747,53.441307],[-1.523242,53.443081],[-1.520924,53.444354],[-1.52067,53.445792],[-1.519163,53.447283],[-1.518333,53.449313],[-1.516533,53.450291],[-1.513171,53.451423],[-1.514926,53.453866],[-1.518183,53.457242],[-1.517398,53.458327],[-1.51503,53.459639],[-1.516313,53.460585],[-1.514862,53.461805],[-1.514814,53.463667],[-1.511779,53.465759],[-1.507856,53.466621],[-1.507577,53.468441],[-1.505003,53.471777],[-1.500168,53.475658],[-1.494619,53.481074],[-1.495251,53.485216],[-1.494749,53.486269],[-1.491589,53.486641],[-1.487482,53.486011],[-1.484451,53.484697],[-1.479827,53.480962],[-1.477695,53.479913],[-1.474537,53.479151],[-1.466895,53.47806],[-1.465154,53.478299],[-1.463201,53.47772],[-1.461684,53.476364],[-1.460317,53.475788],[-1.456525,53.471935],[-1.455219,53.471751],[-1.45679,53.473565],[-1.451758,53.476243],[-1.450445,53.477394],[-1.450777,53.482237],[-1.452207,53.484929],[-1.443905,53.488286],[-1.442021,53.490583],[-1.440933,53.491108],[-1.435609,53.488444],[-1.43301,53.487961],[-1.427965,53.485854],[-1.426068,53.487401],[-1.425537,53.488677],[-1.422777,53.49027],[-1.422111,53.489796],[-1.419918,53.489838],[-1.419179,53.491086],[-1.417071,53.492214],[-1.415179,53.492512],[-1.416853,53.493606],[-1.416488,53.494434],[-1.411737,53.496214],[-1.409701,53.498479],[-1.412154,53.499236],[-1.40863,53.503323],[-1.405544,53.504395],[-1.405582,53.504846],[-1.396311,53.505301],[-1.396994,53.505698],[-1.380788,53.513957],[-1.37905,53.514526],[-1.378132,53.514201],[-1.370575,53.514733],[-1.368882,53.515223],[-1.360148,53.512968],[-1.350284,53.513978],[-1.34505,53.513997],[-1.34118,53.514796],[-1.334585,53.514383],[-1.33033,53.514665],[-1.326011,53.512329],[-1.324651,53.513094],[-1.322418,53.513147],[-1.320638,53.513957],[-1.318468,53.513099],[-1.315279,53.512878],[-1.312443,53.513794],[-1.311301,53.512884],[-1.310274,53.512812],[-1.307647,53.51382],[-1.30373,53.513835],[-1.29939,53.51519],[-1.296598,53.514974],[-1.288616,53.515771],[-1.286319,53.514588],[-1.283161,53.515697],[-1.282781,53.51652],[-1.281284,53.516492],[-1.278492,53.519337],[-1.276505,53.520633],[-1.286172,53.52676],[-1.285394,53.527837],[-1.283256,53.527253],[-1.281397,53.528946],[-1.27583,53.528118],[-1.276039,53.530392],[-1.279922,53.530889],[-1.281323,53.531474],[-1.283229,53.530366],[-1.285044,53.531589],[-1.284546,53.532331],[-1.286659,53.532841],[-1.287812,53.532092],[-1.28965,53.534036],[-1.293809,53.53581],[-1.286982,53.53767],[-1.289354,53.540749],[-1.287881,53.541052],[-1.288568,53.543835],[-1.293652,53.546972],[-1.297457,53.551382],[-1.30128,53.553038],[-1.304043,53.55477],[-1.315091,53.556186],[-1.317226,53.557608],[-1.320752,53.558223],[-1.32276,53.557425],[-1.326807,53.558185],[-1.326722,53.558687],[-1.328951,53.560857],[-1.330649,53.561539],[-1.332601,53.563718],[-1.336964,53.567056],[-1.337403,53.568098],[-1.338435,53.568756],[-1.339224,53.570071],[-1.341791,53.572367],[-1.344878,53.576488],[-1.345727,53.576927],[-1.344951,53.578182],[-1.346793,53.579716],[-1.347514,53.579687],[-1.34717,53.582353],[-1.348734,53.583348]]]},"properties":{"LAD22CD":"E08000016","LAD22NM":"Barnsley","BNG_E":429979,"BNG_N":403327,"LONG":-1.54925,"LAT":53.52577,"GlobalID":"53f4f88a-ba49-4890-a7e0-229550888239"},"id":256}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.989984,53.65898],[-0.990279,53.657892],[-0.991923,53.655714],[-0.9916,53.654515],[-0.989899,53.652907],[-0.990744,53.650466],[-0.988675,53.647865],[-0.988501,53.64475],[-0.984159,53.63799],[-0.983953,53.633464],[-0.98332,53.632226],[-0.983041,53.62937],[-0.982025,53.627786],[-0.982327,53.625669],[-0.981554,53.624374],[-0.982212,53.621797],[-0.986422,53.616952],[-0.988509,53.615381],[-0.992376,53.613281],[-0.995838,53.611827],[-0.99848,53.611265],[-1.01805,53.606744],[-1.020807,53.605345],[-1.028556,53.604089],[-1.033466,53.601452],[-1.035614,53.601357],[-1.040631,53.601799],[-1.05163,53.601461],[-1.053838,53.600754],[-1.06391,53.596224],[-1.07121,53.594431],[-1.072647,53.594361],[-1.075742,53.595527],[-1.080454,53.595276],[-1.08623,53.594709],[-1.087292,53.594381],[-1.090859,53.592071],[-1.090357,53.590183],[-1.086064,53.587229],[-1.084853,53.585016],[-1.082656,53.583514],[-1.08089,53.572466],[-1.082434,53.567068],[-1.082768,53.567194],[-1.081352,53.571893],[-1.082974,53.583461],[-1.085361,53.585189],[-1.086342,53.587138],[-1.088332,53.588251],[-1.091182,53.590822],[-1.091132,53.592205],[-1.087178,53.594768],[-1.080547,53.59554],[-1.075645,53.595881],[-1.072762,53.59478],[-1.071596,53.594663],[-1.064707,53.596278],[-1.05401,53.60105],[-1.05157,53.601745],[-1.039837,53.602097],[-1.035133,53.601557],[-1.033157,53.601784],[-1.029173,53.604188],[-1.021106,53.605577],[-1.018694,53.606754],[-1.010569,53.608756],[-0.995621,53.612165],[-0.991555,53.613997],[-0.986844,53.617057],[-0.983264,53.620797],[-0.981947,53.623423],[-0.981968,53.624364],[-0.982829,53.625844],[-0.982523,53.627771],[-0.98367,53.629674],[-0.983788,53.631835],[-0.984489,53.633438],[-0.984565,53.637677],[-0.989243,53.645157],[-0.989184,53.647678],[-0.990743,53.649382],[-0.991423,53.650797],[-0.990505,53.65292],[-0.992188,53.654292],[-0.992538,53.655366],[-0.99223,53.656596],[-0.990614,53.658574],[-0.990984,53.661064],[-0.99881,53.658689],[-1.009975,53.658778],[-1.018999,53.657977],[-1.023451,53.656975],[-1.029362,53.65497],[-1.033339,53.65521],[-1.037223,53.654496],[-1.038786,53.654813],[-1.041287,53.656035],[-1.04449,53.65676],[-1.046346,53.656719],[-1.048663,53.656057],[-1.050482,53.654949],[-1.051717,53.652534],[-1.053278,53.651537],[-1.066072,53.648891],[-1.071173,53.648942],[-1.082563,53.651567],[-1.084817,53.651727],[-1.087013,53.651336],[-1.090463,53.649869],[-1.095121,53.649989],[-1.101601,53.648588],[-1.113831,53.646913],[-1.116051,53.6458],[-1.119346,53.646845],[-1.121744,53.646719],[-1.12312,53.646017],[-1.125,53.64398],[-1.128037,53.643569],[-1.128996,53.642989],[-1.128479,53.640818],[-1.127076,53.638556],[-1.128872,53.634953],[-1.13057,53.63387],[-1.133442,53.633505],[-1.135407,53.632729],[-1.138899,53.633466],[-1.140125,53.635619],[-1.143516,53.636348],[-1.144841,53.637225],[-1.145743,53.63855],[-1.149659,53.638822],[-1.152298,53.642777],[-1.155548,53.643219],[-1.158793,53.64343],[-1.161383,53.641774],[-1.163133,53.641861],[-1.165402,53.64085],[-1.167774,53.640804],[-1.170373,53.639363],[-1.172394,53.639417],[-1.174451,53.638174],[-1.179699,53.637891],[-1.18857,53.635985],[-1.190314,53.635917],[-1.193695,53.636391],[-1.19452,53.638105],[-1.196115,53.638979],[-1.197229,53.638969],[-1.198468,53.640253],[-1.205323,53.642608],[-1.208128,53.642723],[-1.209827,53.643164],[-1.210893,53.640956],[-1.215647,53.641983],[-1.216301,53.640015],[-1.217681,53.640204],[-1.218601,53.636617],[-1.219387,53.636687],[-1.219637,53.634489],[-1.218471,53.633175],[-1.21837,53.631401],[-1.217365,53.629104],[-1.217469,53.624224],[-1.218845,53.623565],[-1.221433,53.623482],[-1.226666,53.621965],[-1.227913,53.622162],[-1.232844,53.621112],[-1.231233,53.61886],[-1.229505,53.618955],[-1.228483,53.617531],[-1.229174,53.616876],[-1.233335,53.616669],[-1.236557,53.617047],[-1.244131,53.617099],[-1.24825,53.616353],[-1.244865,53.608163],[-1.2522,53.607113],[-1.250692,53.604039],[-1.248959,53.601933],[-1.24721,53.600705],[-1.250611,53.599794],[-1.250258,53.601113],[-1.25399,53.600666],[-1.257638,53.599852],[-1.25779,53.59834],[-1.254838,53.596924],[-1.252911,53.597117],[-1.258058,53.594856],[-1.256727,53.593055],[-1.258028,53.591997],[-1.262204,53.591574],[-1.262836,53.590833],[-1.264221,53.591322],[-1.2682,53.589497],[-1.2694,53.59008],[-1.272895,53.590135],[-1.275378,53.589748],[-1.276694,53.589979],[-1.279402,53.587626],[-1.277816,53.586045],[-1.27934,53.585397],[-1.280101,53.584286],[-1.282286,53.58302],[-1.286035,53.582374],[-1.28825,53.580732],[-1.291042,53.579845],[-1.292603,53.579824],[-1.296814,53.577971],[-1.298644,53.577455],[-1.30782,53.575367],[-1.309979,53.575781],[-1.311772,53.576671],[-1.314173,53.576716],[-1.318431,53.577473],[-1.322125,53.579653],[-1.324873,53.579913],[-1.326415,53.579325],[-1.328282,53.579133],[-1.333206,53.579409],[-1.335,53.579998],[-1.336344,53.581052],[-1.337909,53.58114],[-1.340303,53.581825],[-1.34115,53.582418],[-1.346407,53.58399],[-1.347768,53.584188],[-1.348734,53.583348],[-1.34717,53.582353],[-1.347514,53.579687],[-1.346793,53.579716],[-1.344951,53.578182],[-1.345727,53.576927],[-1.344878,53.576488],[-1.341791,53.572367],[-1.339224,53.570071],[-1.338435,53.568756],[-1.337403,53.568098],[-1.336964,53.567056],[-1.332601,53.563718],[-1.330649,53.561539],[-1.328951,53.560857],[-1.326722,53.558687],[-1.326807,53.558185],[-1.32276,53.557425],[-1.320752,53.558223],[-1.317226,53.557608],[-1.315091,53.556186],[-1.304043,53.55477],[-1.30128,53.553038],[-1.297457,53.551382],[-1.293652,53.546972],[-1.288568,53.543835],[-1.287881,53.541052],[-1.289354,53.540749],[-1.286982,53.53767],[-1.293809,53.53581],[-1.28965,53.534036],[-1.287812,53.532092],[-1.286659,53.532841],[-1.284546,53.532331],[-1.285044,53.531589],[-1.283229,53.530366],[-1.281323,53.531474],[-1.279922,53.530889],[-1.276039,53.530392],[-1.27583,53.528118],[-1.281397,53.528946],[-1.283256,53.527253],[-1.285394,53.527837],[-1.286172,53.52676],[-1.276505,53.520633],[-1.278492,53.519337],[-1.281284,53.516492],[-1.282781,53.51652],[-1.283161,53.515697],[-1.286319,53.514588],[-1.288616,53.515771],[-1.296598,53.514974],[-1.29939,53.51519],[-1.30373,53.513835],[-1.307647,53.51382],[-1.310274,53.512812],[-1.311301,53.512884],[-1.312443,53.513794],[-1.312597,53.513249],[-1.311048,53.511818],[-1.31202,53.507974],[-1.313488,53.503028],[-1.313229,53.501989],[-1.310058,53.497933],[-1.299311,53.493076],[-1.29495,53.49193],[-1.291543,53.491691],[-1.291014,53.490593],[-1.292676,53.489747],[-1.292245,53.488644],[-1.293935,53.487714],[-1.292789,53.486462],[-1.29319,53.485755],[-1.295468,53.485147],[-1.299677,53.4846],[-1.301382,53.483368],[-1.300766,53.482548],[-1.298692,53.483129],[-1.298524,53.481666],[-1.296015,53.480574],[-1.29709,53.479096],[-1.296694,53.477346],[-1.298768,53.476198],[-1.297012,53.475167],[-1.294998,53.476582],[-1.281522,53.479615],[-1.282144,53.47891],[-1.280878,53.478411],[-1.279267,53.479532],[-1.280168,53.480212],[-1.276281,53.48194],[-1.275351,53.482842],[-1.274031,53.482635],[-1.273591,53.483948],[-1.269817,53.485846],[-1.268105,53.485395],[-1.26363,53.483629],[-1.261247,53.483284],[-1.256494,53.480966],[-1.254242,53.480993],[-1.249926,53.476824],[-1.25175,53.474221],[-1.255247,53.472136],[-1.255034,53.471509],[-1.257509,53.468745],[-1.25756,53.467038],[-1.25911,53.465191],[-1.259321,53.464148],[-1.258493,53.4598],[-1.257138,53.459001],[-1.256377,53.457198],[-1.253092,53.455838],[-1.252368,53.454377],[-1.256939,53.456075],[-1.258213,53.455469],[-1.256732,53.452205],[-1.255664,53.451578],[-1.254818,53.450309],[-1.25181,53.448693],[-1.253115,53.446015],[-1.253806,53.445362],[-1.253411,53.444157],[-1.25373,53.443001],[-1.250759,53.440772],[-1.237521,53.441158],[-1.240203,53.434523],[-1.238099,53.432754],[-1.232766,53.433519],[-1.228828,53.433374],[-1.22563,53.433728],[-1.22332,53.433644],[-1.220324,53.434641],[-1.216513,53.435036],[-1.209773,53.432251],[-1.206854,53.4317],[-1.199654,53.43184],[-1.19734,53.431555],[-1.195628,53.432932],[-1.196463,53.435319],[-1.195129,53.437135],[-1.192886,53.436343],[-1.193,53.43565],[-1.185836,53.435268],[-1.185806,53.433775],[-1.182233,53.433898],[-1.174249,53.4354],[-1.170003,53.435229],[-1.168703,53.434268],[-1.166725,53.431155],[-1.16487,53.429951],[-1.162855,53.427956],[-1.160493,53.424352],[-1.158169,53.424234],[-1.152535,53.424974],[-1.145853,53.426341],[-1.145249,53.42601],[-1.14082,53.425254],[-1.136757,53.425142],[-1.135654,53.424128],[-1.136128,53.423667],[-1.143764,53.417958],[-1.14489,53.416011],[-1.145946,53.412325],[-1.135977,53.410876],[-1.13377,53.409886],[-1.133398,53.408743],[-1.123803,53.40987],[-1.122096,53.410353],[-1.118922,53.410236],[-1.118046,53.410942],[-1.115692,53.409589],[-1.116271,53.408531],[-1.116041,53.407349],[-1.111633,53.406067],[-1.108227,53.405882],[-1.105041,53.409667],[-1.098738,53.418735],[-1.092922,53.421546],[-1.087046,53.425544],[-1.084867,53.424859],[-1.08333,53.422988],[-1.0812,53.422585],[-1.079123,53.422809],[-1.078981,53.423563],[-1.080035,53.425175],[-1.08044,53.426868],[-1.074671,53.427308],[-1.073268,53.428057],[-1.067853,53.427721],[-1.057051,53.42536],[-1.054889,53.425461],[-1.049895,53.426634],[-1.044589,53.428089],[-1.040264,53.429757],[-1.036526,53.430529],[-1.03095,53.43098],[-1.030709,53.42992],[-1.028841,53.429288],[-1.030515,53.425195],[-1.027826,53.425421],[-1.027107,53.425015],[-1.023169,53.424514],[-1.022431,53.426314],[-1.018175,53.426759],[-1.014347,53.426295],[-1.014297,53.42728],[-1.012533,53.43072],[-1.012458,53.432796],[-1.009893,53.432825],[-1.008679,53.433901],[-1.005096,53.433799],[-1.002964,53.434726],[-1.000377,53.434998],[-0.99567,53.436927],[-0.995919,53.437856],[-0.998481,53.438842],[-0.997132,53.442476],[-0.997518,53.443655],[-0.994822,53.447102],[-0.994309,53.448936],[-0.991179,53.451723],[-0.993646,53.452958],[-0.985548,53.461354],[-0.983297,53.468041],[-0.985978,53.471673],[-0.981625,53.474718],[-0.97687,53.475177],[-0.953259,53.484424],[-0.935565,53.502516],[-0.935775,53.502814],[-0.932094,53.510672],[-0.950009,53.513657],[-0.947917,53.519516],[-0.948474,53.520373],[-0.946059,53.527189],[-0.946544,53.527342],[-0.943716,53.530643],[-0.934329,53.530045],[-0.925261,53.532601],[-0.908195,53.533668],[-0.900436,53.532623],[-0.897313,53.532964],[-0.892271,53.537616],[-0.895594,53.54206],[-0.899834,53.544478],[-0.901266,53.547908],[-0.900505,53.549627],[-0.900303,53.555659],[-0.89431,53.565578],[-0.89186,53.565308],[-0.890995,53.566559],[-0.901118,53.568724],[-0.896238,53.582917],[-0.897927,53.583277],[-0.886897,53.601027],[-0.886666,53.609358],[-0.887393,53.609958],[-0.881359,53.61696],[-0.865339,53.637708],[-0.922174,53.652521],[-0.939876,53.65758],[-0.946845,53.659142],[-0.947626,53.658662],[-0.957796,53.658526],[-0.989984,53.65898]]]},"properties":{"LAD22CD":"E08000017","LAD22NM":"Doncaster","BNG_E":459167,"BNG_N":403735,"LONG":-1.10894,"LAT":53.52697,"GlobalID":"d0f2665d-bd24-4725-a616-7dc7fad0c0e9"},"id":257}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.312443,53.513794],[-1.315279,53.512878],[-1.318468,53.513099],[-1.320638,53.513957],[-1.322418,53.513147],[-1.324651,53.513094],[-1.326011,53.512329],[-1.33033,53.514665],[-1.334585,53.514383],[-1.34118,53.514796],[-1.34505,53.513997],[-1.350284,53.513978],[-1.360148,53.512968],[-1.368882,53.515223],[-1.370575,53.514733],[-1.378132,53.514201],[-1.37905,53.514526],[-1.380788,53.513957],[-1.396994,53.505698],[-1.396311,53.505301],[-1.405582,53.504846],[-1.405544,53.504395],[-1.40863,53.503323],[-1.412154,53.499236],[-1.409701,53.498479],[-1.411737,53.496214],[-1.416488,53.494434],[-1.416853,53.493606],[-1.415179,53.492512],[-1.417071,53.492214],[-1.419179,53.491086],[-1.419918,53.489838],[-1.422111,53.489796],[-1.422777,53.49027],[-1.425537,53.488677],[-1.426068,53.487401],[-1.427965,53.485854],[-1.43301,53.487961],[-1.435609,53.488444],[-1.440933,53.491108],[-1.442021,53.490583],[-1.443905,53.488286],[-1.452207,53.484929],[-1.450777,53.482237],[-1.450445,53.477394],[-1.451758,53.476243],[-1.45679,53.473565],[-1.455219,53.471751],[-1.445253,53.458641],[-1.444931,53.457116],[-1.443714,53.455648],[-1.444261,53.454523],[-1.444248,53.450801],[-1.44293,53.447278],[-1.440316,53.444119],[-1.436547,53.440531],[-1.433337,53.438284],[-1.425649,53.433914],[-1.418083,53.429855],[-1.415767,53.427226],[-1.412271,53.424665],[-1.411436,53.423338],[-1.409946,53.422757],[-1.409721,53.421493],[-1.408504,53.420349],[-1.403898,53.422771],[-1.39832,53.424625],[-1.397291,53.424818],[-1.396217,53.423859],[-1.387303,53.425124],[-1.382364,53.42539],[-1.380439,53.424169],[-1.379664,53.422401],[-1.382333,53.421531],[-1.382331,53.421039],[-1.384418,53.420542],[-1.39353,53.420003],[-1.392659,53.418378],[-1.389383,53.418615],[-1.389188,53.417797],[-1.391673,53.415289],[-1.389957,53.412267],[-1.387105,53.410969],[-1.386387,53.410293],[-1.38463,53.407284],[-1.38295,53.405486],[-1.382069,53.405098],[-1.38177,53.403919],[-1.383037,53.403467],[-1.381764,53.401044],[-1.377441,53.399231],[-1.376991,53.398314],[-1.379187,53.396811],[-1.375922,53.394365],[-1.376247,53.392826],[-1.379082,53.391852],[-1.381826,53.39019],[-1.386273,53.388514],[-1.388349,53.387373],[-1.389949,53.386068],[-1.39118,53.383319],[-1.385648,53.382915],[-1.379865,53.381077],[-1.366436,53.372568],[-1.363743,53.370161],[-1.361082,53.366592],[-1.351962,53.366513],[-1.346309,53.362441],[-1.345161,53.361204],[-1.340346,53.358496],[-1.337752,53.35352],[-1.335398,53.351915],[-1.332077,53.352415],[-1.330589,53.351011],[-1.331166,53.349275],[-1.328636,53.348897],[-1.325986,53.34128],[-1.325568,53.336956],[-1.324823,53.333536],[-1.324669,53.32881],[-1.324757,53.327091],[-1.322298,53.327527],[-1.321613,53.3255],[-1.31837,53.326007],[-1.313678,53.327321],[-1.313006,53.329362],[-1.310537,53.329354],[-1.311439,53.330253],[-1.310508,53.331906],[-1.311494,53.332115],[-1.3123,53.334165],[-1.305973,53.33377],[-1.302209,53.332526],[-1.299072,53.332533],[-1.297392,53.331427],[-1.297097,53.330652],[-1.293232,53.328682],[-1.291231,53.327976],[-1.288589,53.326228],[-1.290109,53.32314],[-1.293948,53.322784],[-1.295159,53.321791],[-1.295687,53.319709],[-1.294735,53.315271],[-1.293665,53.313981],[-1.285308,53.311611],[-1.282012,53.309463],[-1.27643,53.309213],[-1.27411,53.310525],[-1.271549,53.309311],[-1.26964,53.309096],[-1.269448,53.307858],[-1.267813,53.305818],[-1.264148,53.305399],[-1.261314,53.303942],[-1.258176,53.303413],[-1.255016,53.30239],[-1.254294,53.301755],[-1.251033,53.301891],[-1.247882,53.302689],[-1.246166,53.302416],[-1.244944,53.301693],[-1.24333,53.301649],[-1.241549,53.302467],[-1.238735,53.304452],[-1.237197,53.306114],[-1.232305,53.308277],[-1.230441,53.308558],[-1.221819,53.305196],[-1.219878,53.304078],[-1.218737,53.304053],[-1.212501,53.305451],[-1.209808,53.30532],[-1.205708,53.30429],[-1.203239,53.304223],[-1.202108,53.306057],[-1.203027,53.307227],[-1.199741,53.311439],[-1.197205,53.314673],[-1.194371,53.314868],[-1.192416,53.31899],[-1.190113,53.319496],[-1.18661,53.319594],[-1.180415,53.321046],[-1.174482,53.321391],[-1.174704,53.322648],[-1.174052,53.323591],[-1.175309,53.324511],[-1.175111,53.325677],[-1.173458,53.326388],[-1.171478,53.326524],[-1.168904,53.328241],[-1.165872,53.329112],[-1.163882,53.329277],[-1.160867,53.331116],[-1.160512,53.33233],[-1.159385,53.333509],[-1.148621,53.338507],[-1.145417,53.340729],[-1.140909,53.340966],[-1.138718,53.341383],[-1.13936,53.344729],[-1.140293,53.34653],[-1.141552,53.346797],[-1.144907,53.345695],[-1.148179,53.345211],[-1.149565,53.345309],[-1.152671,53.344685],[-1.156844,53.344969],[-1.156877,53.345863],[-1.158149,53.347703],[-1.160103,53.348942],[-1.159868,53.34997],[-1.161821,53.350889],[-1.16242,53.35161],[-1.161617,53.355698],[-1.162623,53.356736],[-1.16195,53.357909],[-1.151694,53.354485],[-1.149102,53.354352],[-1.14528,53.35486],[-1.144952,53.355332],[-1.13854,53.355907],[-1.139237,53.35986],[-1.138976,53.361389],[-1.140116,53.362623],[-1.140554,53.36406],[-1.145178,53.363383],[-1.146417,53.363953],[-1.14644,53.365733],[-1.144225,53.367379],[-1.144215,53.36827],[-1.146033,53.369041],[-1.144919,53.371245],[-1.142804,53.371268],[-1.141404,53.370709],[-1.14074,53.372023],[-1.138219,53.372252],[-1.134137,53.373226],[-1.13366,53.374867],[-1.131958,53.374899],[-1.130537,53.375571],[-1.129996,53.377566],[-1.130995,53.377984],[-1.1305,53.378887],[-1.133047,53.381595],[-1.132445,53.383981],[-1.130947,53.385557],[-1.130935,53.38823],[-1.131311,53.389556],[-1.134693,53.389771],[-1.131512,53.393936],[-1.129208,53.393596],[-1.122811,53.398312],[-1.11947,53.398046],[-1.11558,53.397186],[-1.115919,53.398019],[-1.115141,53.401861],[-1.116041,53.407349],[-1.116271,53.408531],[-1.115692,53.409589],[-1.118046,53.410942],[-1.118922,53.410236],[-1.122096,53.410353],[-1.123803,53.40987],[-1.133398,53.408743],[-1.13377,53.409886],[-1.135977,53.410876],[-1.145946,53.412325],[-1.14489,53.416011],[-1.143764,53.417958],[-1.136128,53.423667],[-1.135654,53.424128],[-1.136757,53.425142],[-1.14082,53.425254],[-1.145249,53.42601],[-1.145853,53.426341],[-1.152535,53.424974],[-1.158169,53.424234],[-1.160493,53.424352],[-1.162855,53.427956],[-1.16487,53.429951],[-1.166725,53.431155],[-1.168703,53.434268],[-1.170003,53.435229],[-1.174249,53.4354],[-1.182233,53.433898],[-1.185806,53.433775],[-1.185836,53.435268],[-1.193,53.43565],[-1.192886,53.436343],[-1.195129,53.437135],[-1.196463,53.435319],[-1.195628,53.432932],[-1.19734,53.431555],[-1.199654,53.43184],[-1.206854,53.4317],[-1.209773,53.432251],[-1.216513,53.435036],[-1.220324,53.434641],[-1.22332,53.433644],[-1.22563,53.433728],[-1.228828,53.433374],[-1.232766,53.433519],[-1.238099,53.432754],[-1.240203,53.434523],[-1.237521,53.441158],[-1.250759,53.440772],[-1.25373,53.443001],[-1.253411,53.444157],[-1.253806,53.445362],[-1.253115,53.446015],[-1.25181,53.448693],[-1.254818,53.450309],[-1.255664,53.451578],[-1.256732,53.452205],[-1.258213,53.455469],[-1.256939,53.456075],[-1.252368,53.454377],[-1.253092,53.455838],[-1.256377,53.457198],[-1.257138,53.459001],[-1.258493,53.4598],[-1.259321,53.464148],[-1.25911,53.465191],[-1.25756,53.467038],[-1.257509,53.468745],[-1.255034,53.471509],[-1.255247,53.472136],[-1.25175,53.474221],[-1.249926,53.476824],[-1.254242,53.480993],[-1.256494,53.480966],[-1.261247,53.483284],[-1.26363,53.483629],[-1.268105,53.485395],[-1.269817,53.485846],[-1.273591,53.483948],[-1.274031,53.482635],[-1.275351,53.482842],[-1.276281,53.48194],[-1.280168,53.480212],[-1.279267,53.479532],[-1.280878,53.478411],[-1.282144,53.47891],[-1.281522,53.479615],[-1.294998,53.476582],[-1.297012,53.475167],[-1.298768,53.476198],[-1.296694,53.477346],[-1.29709,53.479096],[-1.296015,53.480574],[-1.298524,53.481666],[-1.298692,53.483129],[-1.300766,53.482548],[-1.301382,53.483368],[-1.299677,53.4846],[-1.295468,53.485147],[-1.29319,53.485755],[-1.292789,53.486462],[-1.293935,53.487714],[-1.292245,53.488644],[-1.292676,53.489747],[-1.291014,53.490593],[-1.291543,53.491691],[-1.29495,53.49193],[-1.299311,53.493076],[-1.310058,53.497933],[-1.313229,53.501989],[-1.313488,53.503028],[-1.31202,53.507974],[-1.311048,53.511818],[-1.312597,53.513249],[-1.312443,53.513794]]]},"properties":{"LAD22CD":"E08000018","LAD22NM":"Rotherham","BNG_E":447542,"BNG_N":388980,"LONG":-1.28651,"LAT":53.39553,"GlobalID":"eb160ea1-5b41-4786-bff5-1cbb59a614e3"},"id":258}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.455219,53.471751],[-1.456525,53.471935],[-1.460317,53.475788],[-1.461684,53.476364],[-1.463201,53.47772],[-1.465154,53.478299],[-1.466895,53.47806],[-1.474537,53.479151],[-1.477695,53.479913],[-1.479827,53.480962],[-1.484451,53.484697],[-1.487482,53.486011],[-1.491589,53.486641],[-1.494749,53.486269],[-1.495251,53.485216],[-1.494619,53.481074],[-1.500168,53.475658],[-1.505003,53.471777],[-1.507577,53.468441],[-1.507856,53.466621],[-1.511779,53.465759],[-1.514814,53.463667],[-1.514862,53.461805],[-1.516313,53.460585],[-1.51503,53.459639],[-1.517398,53.458327],[-1.518183,53.457242],[-1.514926,53.453866],[-1.513171,53.451423],[-1.516533,53.450291],[-1.518333,53.449313],[-1.519163,53.447283],[-1.52067,53.445792],[-1.520924,53.444354],[-1.523242,53.443081],[-1.523747,53.441307],[-1.525543,53.440263],[-1.526364,53.439074],[-1.527717,53.438553],[-1.531937,53.438722],[-1.53399,53.438611],[-1.534984,53.439936],[-1.537405,53.440878],[-1.540802,53.44098],[-1.546184,53.441888],[-1.548112,53.44479],[-1.551213,53.446146],[-1.550437,53.44763],[-1.547384,53.449886],[-1.548735,53.45113],[-1.552549,53.45278],[-1.551384,53.455455],[-1.541143,53.45592],[-1.539455,53.457729],[-1.540318,53.461051],[-1.539047,53.461715],[-1.539475,53.462576],[-1.542345,53.465018],[-1.545373,53.469849],[-1.548121,53.471332],[-1.544487,53.472211],[-1.544223,53.47275],[-1.546567,53.47463],[-1.549658,53.478494],[-1.557359,53.480266],[-1.557744,53.482243],[-1.559269,53.48357],[-1.56506,53.484905],[-1.565757,53.486041],[-1.569154,53.486468],[-1.57489,53.48602],[-1.576354,53.486167],[-1.582295,53.487566],[-1.58702,53.48816],[-1.590363,53.489991],[-1.602228,53.491908],[-1.602371,53.491592],[-1.606591,53.492907],[-1.609353,53.491669],[-1.609604,53.492255],[-1.61151,53.493206],[-1.614458,53.493154],[-1.614947,53.490568],[-1.6211,53.491828],[-1.624447,53.492125],[-1.633833,53.492391],[-1.638987,53.493366],[-1.641262,53.494081],[-1.647977,53.494816],[-1.65509,53.496796],[-1.658843,53.498395],[-1.669053,53.50067],[-1.68045,53.500522],[-1.681116,53.499927],[-1.683985,53.498887],[-1.684467,53.499468],[-1.6874,53.499036],[-1.688976,53.499692],[-1.690711,53.49946],[-1.693371,53.500188],[-1.698458,53.502542],[-1.701089,53.503121],[-1.702983,53.502898],[-1.703305,53.501846],[-1.707279,53.501356],[-1.71101,53.501259],[-1.712293,53.498696],[-1.714066,53.497858],[-1.713655,53.496668],[-1.715661,53.495469],[-1.716076,53.494083],[-1.717256,53.49394],[-1.719519,53.492929],[-1.720038,53.492348],[-1.722808,53.491529],[-1.730366,53.491322],[-1.731983,53.490897],[-1.733579,53.488093],[-1.735386,53.486604],[-1.736116,53.48379],[-1.737671,53.481571],[-1.736458,53.48061],[-1.736339,53.479382],[-1.73775,53.477651],[-1.739694,53.477222],[-1.743331,53.479339],[-1.746312,53.478994],[-1.748987,53.479857],[-1.751106,53.479918],[-1.754144,53.480648],[-1.757461,53.48105],[-1.760517,53.480764],[-1.761899,53.481249],[-1.76398,53.481415],[-1.765992,53.481075],[-1.771054,53.482428],[-1.773703,53.482503],[-1.780415,53.48437],[-1.783648,53.484799],[-1.787261,53.484379],[-1.790453,53.482511],[-1.791973,53.48199],[-1.801471,53.480992],[-1.798328,53.478675],[-1.796847,53.478928],[-1.795328,53.478403],[-1.794319,53.477259],[-1.792329,53.476681],[-1.790706,53.475691],[-1.786446,53.47535],[-1.785703,53.475719],[-1.780809,53.474969],[-1.779063,53.474221],[-1.77797,53.472479],[-1.77804,53.470454],[-1.77704,53.469875],[-1.7762,53.468326],[-1.772724,53.467018],[-1.770496,53.466933],[-1.769951,53.465727],[-1.768438,53.464767],[-1.76469,53.463952],[-1.759398,53.463561],[-1.758188,53.463891],[-1.755712,53.463923],[-1.753658,53.464852],[-1.752154,53.464924],[-1.747827,53.464063],[-1.745264,53.461992],[-1.746487,53.460714],[-1.747082,53.457938],[-1.748167,53.45733],[-1.746658,53.455502],[-1.747128,53.454277],[-1.746213,53.452071],[-1.74657,53.451273],[-1.744276,53.448447],[-1.744661,53.44731],[-1.743909,53.446392],[-1.743675,53.445014],[-1.745465,53.442689],[-1.747115,53.441001],[-1.749313,53.439873],[-1.749728,53.439119],[-1.748561,53.435602],[-1.744897,53.432419],[-1.744273,53.431297],[-1.744122,53.429573],[-1.746258,53.427783],[-1.746719,53.426165],[-1.745009,53.42529],[-1.739762,53.420988],[-1.735075,53.419692],[-1.732399,53.417184],[-1.729951,53.415986],[-1.725153,53.417638],[-1.723348,53.418916],[-1.71832,53.419427],[-1.714019,53.41907],[-1.710881,53.417512],[-1.708532,53.417339],[-1.703945,53.414909],[-1.703234,53.413722],[-1.703851,53.412633],[-1.703001,53.410663],[-1.704127,53.408285],[-1.703974,53.405814],[-1.704966,53.405056],[-1.694521,53.401161],[-1.681829,53.401781],[-1.67298,53.396943],[-1.668089,53.393071],[-1.665113,53.393535],[-1.659008,53.393495],[-1.654717,53.393027],[-1.653818,53.391911],[-1.653531,53.384852],[-1.656022,53.381709],[-1.661777,53.376293],[-1.663292,53.374248],[-1.662708,53.373163],[-1.663913,53.369331],[-1.663951,53.366893],[-1.657877,53.364175],[-1.630592,53.356161],[-1.628349,53.353799],[-1.625604,53.352062],[-1.615628,53.350849],[-1.590548,53.345921],[-1.591465,53.344948],[-1.601576,53.342609],[-1.604248,53.342415],[-1.607644,53.342708],[-1.608812,53.343303],[-1.612303,53.343219],[-1.612141,53.341619],[-1.614372,53.338835],[-1.615736,53.33782],[-1.616798,53.336385],[-1.619512,53.335381],[-1.622113,53.333674],[-1.622086,53.331677],[-1.623704,53.331167],[-1.623575,53.330465],[-1.62643,53.329221],[-1.627266,53.328541],[-1.627919,53.325848],[-1.626839,53.325369],[-1.632727,53.320839],[-1.628232,53.316399],[-1.625494,53.316424],[-1.619434,53.318257],[-1.609202,53.322664],[-1.603888,53.319136],[-1.601525,53.318205],[-1.600606,53.316968],[-1.600674,53.315673],[-1.599198,53.314615],[-1.599093,53.311318],[-1.590379,53.318298],[-1.586774,53.319927],[-1.586902,53.321404],[-1.584902,53.321588],[-1.578924,53.316695],[-1.581288,53.316427],[-1.583005,53.315722],[-1.58124,53.314307],[-1.580534,53.311738],[-1.573158,53.312772],[-1.573906,53.31338],[-1.570494,53.314366],[-1.5675,53.314762],[-1.566089,53.313569],[-1.564091,53.313632],[-1.56226,53.315796],[-1.561365,53.315821],[-1.560176,53.313696],[-1.55849,53.313716],[-1.555752,53.311549],[-1.556553,53.311444],[-1.559124,53.309741],[-1.559688,53.308244],[-1.561827,53.306602],[-1.556852,53.305467],[-1.554791,53.306091],[-1.553539,53.305896],[-1.550396,53.306227],[-1.549076,53.306983],[-1.546859,53.306648],[-1.542604,53.305289],[-1.541656,53.30467],[-1.539235,53.304533],[-1.536769,53.304749],[-1.533115,53.306225],[-1.533407,53.307652],[-1.531842,53.308751],[-1.532014,53.309896],[-1.529411,53.310925],[-1.528197,53.310326],[-1.526185,53.310403],[-1.52579,53.312102],[-1.524185,53.312457],[-1.521631,53.311735],[-1.521196,53.312855],[-1.519115,53.312295],[-1.517339,53.312206],[-1.516131,53.312601],[-1.515896,53.313406],[-1.510488,53.316046],[-1.502132,53.317582],[-1.500715,53.315902],[-1.493095,53.31673],[-1.491066,53.317379],[-1.484716,53.318749],[-1.4825,53.318884],[-1.47969,53.318721],[-1.479599,53.31933],[-1.476917,53.319284],[-1.469623,53.317188],[-1.467866,53.317158],[-1.467208,53.31801],[-1.463223,53.319788],[-1.461667,53.320212],[-1.459736,53.319736],[-1.457262,53.320714],[-1.45728,53.321764],[-1.455228,53.321869],[-1.455825,53.323474],[-1.45431,53.324279],[-1.45637,53.325112],[-1.456594,53.326302],[-1.458037,53.326412],[-1.460239,53.327246],[-1.461698,53.32845],[-1.459936,53.329704],[-1.458276,53.328729],[-1.456637,53.32939],[-1.45988,53.330689],[-1.453937,53.330717],[-1.450804,53.33157],[-1.443031,53.337262],[-1.442136,53.337384],[-1.440873,53.336371],[-1.436736,53.337449],[-1.433612,53.33769],[-1.427792,53.33615],[-1.42349,53.335941],[-1.420867,53.334568],[-1.416115,53.337013],[-1.41451,53.338335],[-1.41259,53.338811],[-1.413027,53.339617],[-1.411034,53.341992],[-1.408747,53.341965],[-1.406786,53.340851],[-1.407565,53.340096],[-1.406396,53.339399],[-1.390698,53.335981],[-1.388916,53.336233],[-1.386573,53.334885],[-1.38792,53.334522],[-1.38873,53.33318],[-1.390725,53.331641],[-1.390341,53.331021],[-1.391205,53.32829],[-1.390429,53.326077],[-1.392004,53.322649],[-1.389933,53.318511],[-1.387863,53.318402],[-1.386739,53.317632],[-1.383659,53.317827],[-1.380616,53.316994],[-1.377039,53.317424],[-1.37413,53.31725],[-1.371646,53.316081],[-1.36545,53.315877],[-1.364168,53.315204],[-1.362623,53.315036],[-1.361923,53.315772],[-1.362947,53.317565],[-1.361778,53.318486],[-1.353473,53.319109],[-1.347238,53.318869],[-1.347308,53.318551],[-1.343053,53.317904],[-1.340895,53.316988],[-1.341629,53.316081],[-1.34026,53.315535],[-1.337668,53.31587],[-1.336549,53.316604],[-1.336581,53.317965],[-1.334525,53.320334],[-1.334562,53.321018],[-1.332311,53.322057],[-1.332417,53.3235],[-1.328165,53.326806],[-1.328769,53.327696],[-1.327664,53.329129],[-1.324669,53.32881],[-1.324823,53.333536],[-1.325568,53.336956],[-1.325986,53.34128],[-1.328636,53.348897],[-1.331166,53.349275],[-1.330589,53.351011],[-1.332077,53.352415],[-1.335398,53.351915],[-1.337752,53.35352],[-1.340346,53.358496],[-1.345161,53.361204],[-1.346309,53.362441],[-1.351962,53.366513],[-1.361082,53.366592],[-1.363743,53.370161],[-1.366436,53.372568],[-1.379865,53.381077],[-1.385648,53.382915],[-1.39118,53.383319],[-1.389949,53.386068],[-1.388349,53.387373],[-1.386273,53.388514],[-1.381826,53.39019],[-1.379082,53.391852],[-1.376247,53.392826],[-1.375922,53.394365],[-1.379187,53.396811],[-1.376991,53.398314],[-1.377441,53.399231],[-1.381764,53.401044],[-1.383037,53.403467],[-1.38177,53.403919],[-1.382069,53.405098],[-1.38295,53.405486],[-1.38463,53.407284],[-1.386387,53.410293],[-1.387105,53.410969],[-1.389957,53.412267],[-1.391673,53.415289],[-1.389188,53.417797],[-1.389383,53.418615],[-1.392659,53.418378],[-1.39353,53.420003],[-1.384418,53.420542],[-1.382331,53.421039],[-1.382333,53.421531],[-1.379664,53.422401],[-1.380439,53.424169],[-1.382364,53.42539],[-1.387303,53.425124],[-1.396217,53.423859],[-1.397291,53.424818],[-1.39832,53.424625],[-1.403898,53.422771],[-1.408504,53.420349],[-1.409721,53.421493],[-1.409946,53.422757],[-1.411436,53.423338],[-1.412271,53.424665],[-1.415767,53.427226],[-1.418083,53.429855],[-1.425649,53.433914],[-1.433337,53.438284],[-1.436547,53.440531],[-1.440316,53.444119],[-1.44293,53.447278],[-1.444248,53.450801],[-1.444261,53.454523],[-1.443714,53.455648],[-1.444931,53.457116],[-1.445253,53.458641],[-1.455219,53.471751]]]},"properties":{"LAD22CD":"E08000019","LAD22NM":"Sheffield","BNG_E":430511,"BNG_N":389736,"LONG":-1.54254,"LAT":53.40358,"GlobalID":"7af73645-33f3-4658-a9fd-f9aae4368f57"},"id":259}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.637889,55.064769],[-1.639757,55.069166],[-1.641807,55.070751],[-1.645574,55.076831],[-1.647681,55.079389],[-1.661847,55.078412],[-1.679717,55.075042],[-1.685834,55.073488],[-1.69104,55.072719],[-1.690564,55.070418],[-1.691297,55.069701],[-1.696724,55.070532],[-1.696819,55.070845],[-1.700939,55.071218],[-1.701015,55.070866],[-1.70458,55.070929],[-1.704714,55.068612],[-1.704068,55.065847],[-1.713774,55.065463],[-1.710576,55.052793],[-1.698028,55.052395],[-1.696874,55.051225],[-1.695567,55.050646],[-1.694681,55.049455],[-1.695096,55.048646],[-1.693982,55.046114],[-1.695025,55.042915],[-1.700211,55.043626],[-1.700794,55.042906],[-1.703721,55.042303],[-1.707355,55.042081],[-1.70862,55.04135],[-1.711578,55.041239],[-1.711159,55.039489],[-1.716944,55.038626],[-1.714448,55.034024],[-1.721621,55.03407],[-1.721622,55.03364],[-1.724987,55.033149],[-1.726929,55.033165],[-1.728694,55.032227],[-1.731902,55.031689],[-1.732329,55.029998],[-1.735103,55.029558],[-1.739321,55.029595],[-1.739179,55.028376],[-1.737982,55.026983],[-1.739288,55.026834],[-1.740091,55.025508],[-1.740033,55.024581],[-1.742678,55.024079],[-1.750245,55.024021],[-1.751058,55.015614],[-1.756344,55.015944],[-1.756911,55.010375],[-1.756564,55.003263],[-1.759563,55.003019],[-1.773843,55.004139],[-1.774174,55.002703],[-1.773576,54.996158],[-1.775021,54.994976],[-1.775685,54.98963],[-1.774265,54.988392],[-1.772621,54.987613],[-1.769681,54.981373],[-1.766654,54.981163],[-1.763433,54.981306],[-1.757096,54.982553],[-1.753328,54.98299],[-1.750488,54.982873],[-1.746176,54.982013],[-1.72611,54.97535],[-1.724932,54.973623],[-1.725823,54.971213],[-1.72544,54.970497],[-1.723256,54.969166],[-1.720237,54.968202],[-1.714885,54.967582],[-1.711008,54.967626],[-1.709343,54.968247],[-1.707644,54.969953],[-1.705918,54.970813],[-1.702576,54.971264],[-1.702625,54.972484],[-1.693492,54.969688],[-1.69134,54.968076],[-1.683959,54.965929],[-1.667713,54.964822],[-1.658816,54.964061],[-1.647427,54.961464],[-1.639454,54.96035],[-1.634043,54.960145],[-1.627579,54.960315],[-1.623882,54.961088],[-1.620393,54.962444],[-1.615441,54.964851],[-1.615598,54.965141],[-1.608179,54.968016],[-1.600165,54.970177],[-1.596821,54.970955],[-1.591781,54.971129],[-1.588435,54.970584],[-1.588049,54.970815],[-1.58066,54.966078],[-1.577182,54.965186],[-1.570213,54.965428],[-1.567221,54.965129],[-1.560822,54.963122],[-1.554031,54.960006],[-1.551625,54.960059],[-1.545685,54.961998],[-1.543417,54.962132],[-1.540752,54.963003],[-1.537834,54.964591],[-1.536928,54.965393],[-1.535034,54.977509],[-1.534935,54.978615],[-1.532305,54.982621],[-1.530891,54.984242],[-1.5337,54.98575],[-1.537898,54.982957],[-1.539986,54.983319],[-1.539788,54.984478],[-1.538833,54.985663],[-1.538386,54.987041],[-1.540443,54.989891],[-1.545782,54.989025],[-1.546976,54.992105],[-1.547917,54.992621],[-1.549338,54.990472],[-1.550207,54.990539],[-1.55229,54.989702],[-1.556358,54.993371],[-1.558634,54.992797],[-1.561251,54.991435],[-1.562981,54.992317],[-1.56059,54.995879],[-1.558932,55.000014],[-1.558504,55.005544],[-1.561606,55.006227],[-1.563816,55.00592],[-1.567486,55.004717],[-1.571981,55.003923],[-1.572618,55.006803],[-1.574702,55.006585],[-1.574441,55.005682],[-1.577137,55.005325],[-1.579215,55.009792],[-1.583921,55.008887],[-1.587965,55.008638],[-1.600267,55.009838],[-1.600902,55.010851],[-1.601026,55.012365],[-1.599063,55.017566],[-1.594163,55.023798],[-1.591805,55.024655],[-1.587777,55.025433],[-1.587335,55.026006],[-1.590727,55.030861],[-1.592104,55.034662],[-1.592638,55.03894],[-1.593962,55.03935],[-1.610347,55.040474],[-1.616589,55.041294],[-1.619462,55.040473],[-1.622396,55.038956],[-1.622432,55.040165],[-1.62384,55.039931],[-1.626069,55.040223],[-1.6262,55.041425],[-1.638508,55.041551],[-1.639714,55.044082],[-1.638335,55.045813],[-1.634231,55.047961],[-1.632209,55.048229],[-1.63706,55.061777],[-1.639689,55.063584],[-1.63939,55.064315],[-1.637889,55.064769]]]},"properties":{"LAD22CD":"E08000021","LAD22NM":"Newcastle upon Tyne","BNG_E":422287,"BNG_N":569661,"LONG":-1.65297,"LAT":55.021,"GlobalID":"436354bd-5fed-4c48-9cf4-5949c5aa180c"},"id":260}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.461796,55.074317],[-1.464072,55.074629],[-1.466646,55.07441],[-1.467372,55.074935],[-1.470717,55.074486],[-1.474137,55.072357],[-1.474264,55.071325],[-1.477475,55.070329],[-1.479645,55.067209],[-1.482272,55.066975],[-1.483629,55.06616],[-1.486642,55.066042],[-1.488461,55.065571],[-1.492298,55.066014],[-1.487372,55.055868],[-1.487767,55.053587],[-1.490553,55.054452],[-1.49298,55.0544],[-1.492938,55.053828],[-1.49623,55.052107],[-1.502164,55.050242],[-1.502932,55.050343],[-1.504726,55.049259],[-1.508822,55.048039],[-1.510274,55.055052],[-1.515341,55.055029],[-1.515085,55.054128],[-1.51993,55.054771],[-1.526149,55.054514],[-1.526162,55.05395],[-1.532394,55.054126],[-1.53988,55.061583],[-1.540684,55.061184],[-1.541046,55.059809],[-1.542862,55.058427],[-1.54513,55.057872],[-1.547549,55.056671],[-1.550586,55.05607],[-1.556297,55.054157],[-1.559765,55.054478],[-1.566497,55.054559],[-1.57065,55.055244],[-1.572346,55.055837],[-1.57508,55.05562],[-1.576854,55.056606],[-1.577166,55.05926],[-1.57854,55.063081],[-1.581431,55.063006],[-1.584275,55.062435],[-1.588525,55.06341],[-1.589861,55.064027],[-1.592115,55.064225],[-1.594935,55.064087],[-1.595632,55.063625],[-1.599141,55.064276],[-1.60107,55.065128],[-1.603671,55.064746],[-1.605622,55.065114],[-1.607476,55.064263],[-1.610708,55.064428],[-1.611882,55.064223],[-1.61504,55.064691],[-1.621367,55.066452],[-1.631069,55.065138],[-1.632902,55.065902],[-1.633961,55.065121],[-1.636271,55.065206],[-1.637889,55.064769],[-1.63939,55.064315],[-1.639689,55.063584],[-1.63706,55.061777],[-1.632209,55.048229],[-1.634231,55.047961],[-1.638335,55.045813],[-1.639714,55.044082],[-1.638508,55.041551],[-1.6262,55.041425],[-1.626069,55.040223],[-1.62384,55.039931],[-1.622432,55.040165],[-1.622396,55.038956],[-1.619462,55.040473],[-1.616589,55.041294],[-1.610347,55.040474],[-1.593962,55.03935],[-1.592638,55.03894],[-1.592104,55.034662],[-1.590727,55.030861],[-1.587335,55.026006],[-1.587777,55.025433],[-1.591805,55.024655],[-1.594163,55.023798],[-1.599063,55.017566],[-1.601026,55.012365],[-1.600902,55.010851],[-1.600267,55.009838],[-1.587965,55.008638],[-1.583921,55.008887],[-1.579215,55.009792],[-1.577137,55.005325],[-1.574441,55.005682],[-1.574702,55.006585],[-1.572618,55.006803],[-1.571981,55.003923],[-1.567486,55.004717],[-1.563816,55.00592],[-1.561606,55.006227],[-1.558504,55.005544],[-1.558932,55.000014],[-1.56059,54.995879],[-1.562981,54.992317],[-1.561251,54.991435],[-1.558634,54.992797],[-1.556358,54.993371],[-1.55229,54.989702],[-1.550207,54.990539],[-1.549338,54.990472],[-1.547917,54.992621],[-1.546976,54.992105],[-1.545782,54.989025],[-1.540443,54.989891],[-1.538386,54.987041],[-1.538833,54.985663],[-1.539788,54.984478],[-1.539986,54.983319],[-1.537898,54.982957],[-1.5337,54.98575],[-1.530891,54.984242],[-1.531285,54.986181],[-1.530449,54.986306],[-1.529622,54.984719],[-1.523777,54.9869],[-1.519516,54.987777],[-1.502521,54.988492],[-1.504808,54.992278],[-1.501891,54.989573],[-1.501782,54.988527],[-1.488951,54.988539],[-1.485572,54.988204],[-1.481977,54.988224],[-1.473344,54.988963],[-1.474624,54.990128],[-1.470566,54.990577],[-1.471815,54.989162],[-1.460789,54.988561],[-1.458576,54.988911],[-1.456506,54.988566],[-1.453246,54.989811],[-1.448716,54.993069],[-1.447424,54.995881],[-1.448913,54.995372],[-1.449607,54.993945],[-1.455071,54.994919],[-1.455015,54.996827],[-1.452638,54.996453],[-1.449515,54.996489],[-1.447497,54.997189],[-1.446336,54.997997],[-1.445473,55.000972],[-1.445246,55.002735],[-1.442643,55.006357],[-1.436691,55.008392],[-1.432728,55.009043],[-1.432328,55.010547],[-1.429738,55.013319],[-1.42585,55.014012],[-1.422282,55.013772],[-1.417672,55.014111],[-1.41628,55.015274],[-1.41737,55.016661],[-1.415852,55.016848],[-1.415394,55.018437],[-1.417188,55.01891],[-1.418484,55.018503],[-1.420714,55.019579],[-1.420088,55.020376],[-1.419863,55.022992],[-1.422409,55.022814],[-1.42393,55.023629],[-1.42717,55.026435],[-1.429881,55.030501],[-1.429835,55.031558],[-1.428557,55.033053],[-1.431746,55.03344],[-1.432457,55.03435],[-1.431848,55.035904],[-1.430643,55.037166],[-1.428518,55.037916],[-1.432327,55.038602],[-1.431428,55.040297],[-1.43179,55.04089],[-1.436545,55.042412],[-1.439531,55.044223],[-1.441557,55.044776],[-1.445785,55.048255],[-1.448464,55.050786],[-1.451864,55.055496],[-1.453564,55.060393],[-1.454938,55.062254],[-1.455043,55.064167],[-1.454274,55.065793],[-1.452032,55.066893],[-1.452135,55.068659],[-1.451472,55.070086],[-1.453245,55.069887],[-1.455933,55.070166],[-1.457921,55.071309],[-1.459013,55.07261],[-1.458906,55.073597],[-1.461796,55.074317]]]},"properties":{"LAD22CD":"E08000022","LAD22NM":"North Tyneside","BNG_E":431471,"BNG_N":570602,"LONG":-1.50923,"LAT":55.02896,"GlobalID":"c133b200-124a-4515-bd4b-6a3b12a492b9"},"id":261}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.363964,54.944129],[-1.363235,54.945033],[-1.360568,54.946512],[-1.359849,54.947768],[-1.358084,54.948222],[-1.35616,54.950388],[-1.357057,54.95337],[-1.355415,54.954443],[-1.35545,54.955746],[-1.353282,54.957561],[-1.355087,54.958906],[-1.355658,54.960583],[-1.354937,54.961395],[-1.355894,54.962673],[-1.356816,54.9648],[-1.35855,54.966852],[-1.360104,54.968024],[-1.360203,54.968884],[-1.361546,54.969973],[-1.360796,54.970975],[-1.361785,54.971877],[-1.363618,54.971925],[-1.36549,54.973248],[-1.367185,54.972974],[-1.368194,54.97392],[-1.370955,54.974335],[-1.373409,54.975763],[-1.374887,54.976134],[-1.377526,54.977764],[-1.380844,54.980329],[-1.38196,54.982097],[-1.380438,54.98358],[-1.381192,54.985539],[-1.385022,54.986177],[-1.385762,54.987444],[-1.387828,54.987887],[-1.388608,54.988881],[-1.391326,54.988234],[-1.39344,54.988309],[-1.393387,54.989209],[-1.394346,54.990046],[-1.394306,54.990932],[-1.397031,54.99161],[-1.399782,54.991775],[-1.401246,54.992578],[-1.400762,54.993215],[-1.403887,54.993533],[-1.407468,54.995736],[-1.410896,54.998894],[-1.414389,55.003927],[-1.414162,55.005199],[-1.409563,55.008066],[-1.409696,55.008241],[-1.418604,55.003231],[-1.421479,55.004251],[-1.424561,55.006093],[-1.425248,55.007749],[-1.426377,55.007675],[-1.427605,55.006732],[-1.429289,55.007236],[-1.437554,55.005082],[-1.439637,55.003967],[-1.440402,55.001735],[-1.440126,55.000812],[-1.440122,54.99722],[-1.441464,54.995482],[-1.443673,54.993465],[-1.449368,54.98722],[-1.44799,54.986658],[-1.449087,54.98537],[-1.45028,54.984897],[-1.4515,54.986418],[-1.461597,54.984646],[-1.462327,54.984102],[-1.465995,54.984188],[-1.468374,54.984712],[-1.471879,54.986077],[-1.471923,54.984016],[-1.469082,54.980914],[-1.471333,54.981804],[-1.471891,54.983318],[-1.472658,54.983935],[-1.472368,54.986182],[-1.475586,54.986526],[-1.479335,54.985753],[-1.481365,54.985847],[-1.491991,54.985862],[-1.502944,54.986167],[-1.511038,54.986177],[-1.516733,54.985819],[-1.519279,54.985469],[-1.524528,54.984143],[-1.526206,54.982963],[-1.528388,54.982112],[-1.530081,54.980615],[-1.531834,54.977672],[-1.532645,54.973481],[-1.532706,54.969674],[-1.534215,54.964987],[-1.531505,54.964475],[-1.529347,54.963355],[-1.5307,54.957978],[-1.527782,54.957124],[-1.526354,54.958084],[-1.522413,54.957386],[-1.519644,54.957555],[-1.518983,54.959265],[-1.516225,54.958138],[-1.51533,54.95735],[-1.515218,54.956058],[-1.518567,54.952175],[-1.518063,54.947048],[-1.516344,54.94538],[-1.512366,54.936821],[-1.510365,54.932104],[-1.511218,54.931666],[-1.510012,54.930485],[-1.508175,54.930384],[-1.505315,54.930923],[-1.500264,54.930524],[-1.496336,54.93106],[-1.49197,54.930119],[-1.488673,54.930611],[-1.485637,54.92909],[-1.483588,54.928369],[-1.481967,54.928823],[-1.481113,54.929795],[-1.466448,54.930139],[-1.460576,54.930191],[-1.460919,54.931979],[-1.457387,54.932684],[-1.454749,54.933461],[-1.449094,54.934088],[-1.447911,54.933511],[-1.44251,54.93356],[-1.441602,54.932899],[-1.432785,54.932836],[-1.43183,54.92982],[-1.426366,54.931207],[-1.425989,54.930461],[-1.419371,54.929924],[-1.418504,54.932685],[-1.416878,54.933977],[-1.412472,54.935807],[-1.406814,54.937002],[-1.402669,54.938661],[-1.397138,54.939741],[-1.392014,54.939493],[-1.391664,54.938912],[-1.389328,54.938153],[-1.38722,54.938088],[-1.384291,54.938744],[-1.381086,54.9382],[-1.378822,54.936952],[-1.376993,54.937336],[-1.375684,54.93691],[-1.374349,54.943536],[-1.366152,54.942864],[-1.365716,54.94418],[-1.363964,54.944129]]]},"properties":{"LAD22CD":"E08000023","LAD22NM":"South Tyneside","BNG_E":435514,"BNG_N":564057,"LONG":-1.44679,"LAT":54.96988,"GlobalID":"cc7a8736-6b7f-41c9-8286-d4caa838c344"},"id":262}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.347565,54.860589],[-1.348346,54.862246],[-1.347609,54.863003],[-1.347468,54.864752],[-1.35022,54.867508],[-1.354621,54.873476],[-1.355637,54.875903],[-1.355648,54.878148],[-1.355123,54.879371],[-1.354063,54.880031],[-1.356597,54.883166],[-1.359789,54.888908],[-1.359464,54.888964],[-1.360824,54.893103],[-1.35999,54.893862],[-1.361607,54.898227],[-1.360662,54.898529],[-1.360937,54.899853],[-1.359721,54.901016],[-1.358231,54.901479],[-1.357294,54.902581],[-1.352273,54.905068],[-1.354868,54.904823],[-1.355357,54.90551],[-1.353049,54.906391],[-1.354523,54.90938],[-1.357282,54.910975],[-1.359567,54.914003],[-1.361325,54.917208],[-1.363309,54.915697],[-1.364411,54.91586],[-1.363761,54.913592],[-1.361561,54.912952],[-1.36201,54.912378],[-1.364055,54.913099],[-1.366485,54.913575],[-1.370838,54.910063],[-1.372068,54.909605],[-1.377168,54.910095],[-1.382085,54.909334],[-1.38738,54.909689],[-1.392038,54.911517],[-1.393641,54.91353],[-1.393664,54.915927],[-1.395315,54.91661],[-1.398274,54.916434],[-1.401871,54.913705],[-1.405886,54.913288],[-1.407482,54.912865],[-1.410995,54.913639],[-1.414447,54.915755],[-1.416703,54.916306],[-1.421469,54.916464],[-1.423566,54.916166],[-1.42493,54.915373],[-1.428003,54.915037],[-1.431717,54.914116],[-1.43384,54.912914],[-1.434999,54.911708],[-1.438778,54.911127],[-1.439276,54.91169],[-1.445794,54.910274],[-1.449115,54.909191],[-1.451805,54.907878],[-1.458312,54.903579],[-1.458469,54.900439],[-1.460795,54.898284],[-1.461996,54.898108],[-1.464043,54.89879],[-1.46478,54.901015],[-1.466913,54.903158],[-1.469213,54.903554],[-1.472339,54.903269],[-1.473852,54.902271],[-1.476923,54.898487],[-1.480756,54.895424],[-1.486944,54.892282],[-1.49372,54.890663],[-1.496205,54.888278],[-1.498228,54.887427],[-1.500764,54.886847],[-1.504327,54.88226],[-1.506336,54.880643],[-1.507407,54.880451],[-1.510492,54.881095],[-1.512755,54.880733],[-1.518193,54.878123],[-1.519208,54.87595],[-1.517154,54.875723],[-1.516667,54.874973],[-1.513813,54.874796],[-1.50667,54.871141],[-1.508316,54.868936],[-1.50959,54.866035],[-1.510311,54.863109],[-1.510271,54.860105],[-1.507802,54.851389],[-1.507055,54.847015],[-1.506223,54.846237],[-1.503319,54.83663],[-1.502892,54.834445],[-1.50428,54.83123],[-1.497813,54.823613],[-1.497509,54.822628],[-1.49374,54.823472],[-1.49029,54.820182],[-1.492394,54.818617],[-1.492301,54.817831],[-1.494306,54.816012],[-1.487504,54.812683],[-1.485338,54.811981],[-1.48433,54.810467],[-1.481856,54.809651],[-1.485024,54.808488],[-1.491099,54.804315],[-1.494331,54.80117],[-1.493509,54.799998],[-1.490727,54.799304],[-1.485093,54.799682],[-1.481906,54.799058],[-1.48005,54.799764],[-1.477878,54.800073],[-1.47235,54.799948],[-1.468028,54.800307],[-1.460175,54.801694],[-1.456033,54.800915],[-1.454602,54.800022],[-1.448267,54.801007],[-1.444022,54.80247],[-1.442877,54.801976],[-1.440256,54.801525],[-1.441312,54.800534],[-1.440708,54.799689],[-1.437531,54.800527],[-1.430229,54.801559],[-1.429326,54.801025],[-1.42433,54.803089],[-1.422548,54.803173],[-1.42268,54.804021],[-1.423894,54.80541],[-1.421563,54.812126],[-1.421725,54.813287],[-1.419218,54.814205],[-1.417849,54.818215],[-1.415839,54.818451],[-1.414374,54.819388],[-1.414369,54.821234],[-1.41326,54.822153],[-1.413125,54.824559],[-1.414214,54.825901],[-1.415666,54.826346],[-1.415509,54.82743],[-1.416822,54.828745],[-1.416051,54.82943],[-1.416496,54.830637],[-1.420703,54.833669],[-1.421608,54.838092],[-1.421537,54.839476],[-1.419181,54.839802],[-1.416704,54.840926],[-1.412007,54.841901],[-1.411911,54.843127],[-1.41358,54.844862],[-1.409187,54.845188],[-1.40751,54.845729],[-1.40475,54.845505],[-1.400005,54.846613],[-1.397294,54.846447],[-1.396463,54.845866],[-1.393412,54.846228],[-1.392536,54.845685],[-1.387158,54.846559],[-1.383919,54.848146],[-1.381664,54.84716],[-1.378569,54.849995],[-1.376733,54.851091],[-1.373817,54.853963],[-1.368866,54.857626],[-1.363928,54.858225],[-1.360181,54.857833],[-1.355787,54.858981],[-1.354078,54.860278],[-1.352357,54.860619],[-1.34944,54.860073],[-1.347565,54.860589]]],[[[-1.519959,54.876017],[-1.519121,54.877921],[-1.517695,54.878929],[-1.513836,54.880882],[-1.511574,54.881474],[-1.506598,54.881034],[-1.504552,54.882876],[-1.501268,54.887159],[-1.49693,54.888426],[-1.493934,54.891076],[-1.486219,54.89313],[-1.481246,54.895915],[-1.477231,54.899564],[-1.474863,54.902846],[-1.473471,54.903614],[-1.470142,54.904045],[-1.46671,54.903709],[-1.464236,54.901714],[-1.463041,54.899083],[-1.461687,54.898608],[-1.460607,54.89905],[-1.459485,54.900424],[-1.459631,54.903488],[-1.458404,54.90459],[-1.455224,54.906126],[-1.45191,54.908883],[-1.448898,54.910373],[-1.442153,54.91256],[-1.436667,54.913556],[-1.43282,54.915598],[-1.427115,54.917024],[-1.424732,54.917763],[-1.421045,54.918005],[-1.41733,54.917715],[-1.415009,54.917113],[-1.413885,54.917442],[-1.40977,54.9144],[-1.406279,54.9145],[-1.405018,54.914225],[-1.402659,54.914666],[-1.399489,54.917086],[-1.395821,54.917932],[-1.393499,54.917364],[-1.392142,54.916529],[-1.391652,54.915277],[-1.391621,54.912819],[-1.390564,54.912008],[-1.387006,54.910485],[-1.383,54.910155],[-1.381998,54.910523],[-1.377204,54.911174],[-1.373267,54.910852],[-1.370969,54.911705],[-1.369161,54.914019],[-1.369444,54.916122],[-1.367082,54.917753],[-1.368542,54.918477],[-1.366799,54.919555],[-1.365598,54.91796],[-1.362813,54.918716],[-1.363474,54.920042],[-1.363318,54.922889],[-1.36613,54.926108],[-1.365689,54.926412],[-1.36713,54.928537],[-1.365474,54.929708],[-1.365422,54.931146],[-1.367485,54.932953],[-1.367889,54.934428],[-1.36752,54.937008],[-1.366341,54.939841],[-1.364633,54.942131],[-1.363964,54.944129],[-1.365716,54.94418],[-1.366152,54.942864],[-1.374349,54.943536],[-1.375684,54.93691],[-1.376993,54.937336],[-1.378822,54.936952],[-1.381086,54.9382],[-1.384291,54.938744],[-1.38722,54.938088],[-1.389328,54.938153],[-1.391664,54.938912],[-1.392014,54.939493],[-1.397138,54.939741],[-1.402669,54.938661],[-1.406814,54.937002],[-1.412472,54.935807],[-1.416878,54.933977],[-1.418504,54.932685],[-1.419371,54.929924],[-1.425989,54.930461],[-1.426366,54.931207],[-1.43183,54.92982],[-1.432785,54.932836],[-1.441602,54.932899],[-1.44251,54.93356],[-1.447911,54.933511],[-1.449094,54.934088],[-1.454749,54.933461],[-1.457387,54.932684],[-1.460919,54.931979],[-1.460576,54.930191],[-1.466448,54.930139],[-1.481113,54.929795],[-1.481967,54.928823],[-1.483588,54.928369],[-1.485637,54.92909],[-1.488673,54.930611],[-1.49197,54.930119],[-1.496336,54.93106],[-1.500264,54.930524],[-1.505315,54.930923],[-1.508175,54.930384],[-1.510012,54.930485],[-1.511218,54.931666],[-1.512089,54.932114],[-1.514519,54.931715],[-1.517244,54.930781],[-1.519024,54.931125],[-1.524687,54.933155],[-1.528578,54.933134],[-1.530721,54.932577],[-1.532574,54.931362],[-1.535687,54.932104],[-1.543053,54.931383],[-1.547133,54.930625],[-1.552171,54.928461],[-1.553266,54.92769],[-1.556705,54.929978],[-1.568892,54.924625],[-1.567155,54.923194],[-1.565542,54.920066],[-1.563133,54.917093],[-1.560037,54.914592],[-1.55708,54.909211],[-1.55707,54.907895],[-1.558673,54.906518],[-1.560092,54.906332],[-1.562785,54.905089],[-1.561612,54.904566],[-1.559782,54.902938],[-1.558196,54.90266],[-1.558521,54.891481],[-1.557062,54.890983],[-1.557219,54.888191],[-1.558528,54.888191],[-1.558655,54.886426],[-1.558156,54.885649],[-1.556129,54.884796],[-1.558592,54.884378],[-1.559411,54.882037],[-1.560366,54.879904],[-1.562428,54.87776],[-1.56181,54.875717],[-1.553164,54.875958],[-1.541569,54.873459],[-1.538959,54.875453],[-1.537481,54.874387],[-1.536154,54.874739],[-1.533375,54.87645],[-1.532853,54.877854],[-1.531782,54.878188],[-1.530013,54.877122],[-1.52737,54.87699],[-1.525641,54.877606],[-1.522913,54.876217],[-1.519959,54.876017]]]]},"properties":{"LAD22CD":"E08000024","LAD22NM":"Sunderland","BNG_E":436470,"BNG_N":551524,"LONG":-1.43344,"LAT":54.85719,"GlobalID":"90d2804a-9ef6-4eb2-95a9-bf21a13cb117"},"id":263}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.788081,52.587863],[-1.789723,52.591543],[-1.792758,52.593779],[-1.795314,52.595099],[-1.794272,52.596103],[-1.796528,52.599123],[-1.797572,52.59917],[-1.801678,52.601073],[-1.803869,52.601332],[-1.811818,52.604409],[-1.827987,52.608715],[-1.832371,52.607807],[-1.836833,52.607354],[-1.844471,52.605224],[-1.848551,52.604653],[-1.852796,52.602493],[-1.854751,52.601311],[-1.863781,52.591225],[-1.870946,52.586757],[-1.872565,52.584945],[-1.875925,52.580362],[-1.878519,52.569636],[-1.882746,52.567457],[-1.888499,52.563826],[-1.891631,52.562456],[-1.896682,52.558858],[-1.898096,52.556623],[-1.899793,52.554999],[-1.90128,52.554414],[-1.908157,52.553227],[-1.911835,52.551944],[-1.9168,52.548644],[-1.918158,52.547307],[-1.91981,52.546343],[-1.92119,52.546051],[-1.93315,52.545813],[-1.929942,52.543588],[-1.92944,52.542822],[-1.930348,52.533357],[-1.929441,52.531299],[-1.932482,52.532659],[-1.933779,52.532741],[-1.937247,52.532007],[-1.941511,52.533643],[-1.945788,52.533881],[-1.947469,52.533434],[-1.949797,52.530491],[-1.951242,52.529795],[-1.957566,52.529735],[-1.958085,52.531405],[-1.960238,52.531348],[-1.96048,52.530224],[-1.962079,52.527962],[-1.960108,52.524897],[-1.959493,52.52229],[-1.958039,52.519979],[-1.958795,52.518415],[-1.9602,52.517066],[-1.962108,52.515937],[-1.962644,52.513662],[-1.962266,52.512651],[-1.959569,52.509667],[-1.961976,52.509876],[-1.962235,52.508336],[-1.96115,52.506617],[-1.963025,52.504897],[-1.955484,52.502635],[-1.955524,52.501596],[-1.951038,52.501518],[-1.945713,52.499972],[-1.938132,52.498425],[-1.941414,52.497543],[-1.94431,52.495735],[-1.943825,52.494417],[-1.945683,52.493167],[-1.943029,52.491512],[-1.943938,52.489936],[-1.945946,52.490212],[-1.947091,52.487491],[-1.948429,52.487],[-1.949705,52.487142],[-1.95072,52.485494],[-1.949519,52.485227],[-1.950777,52.483247],[-1.952487,52.483361],[-1.956123,52.482308],[-1.959202,52.482869],[-1.961391,52.482777],[-1.964689,52.481514],[-1.967032,52.478953],[-1.968692,52.477862],[-1.969025,52.476794],[-1.965374,52.475323],[-1.96713,52.474198],[-1.965745,52.473362],[-1.968317,52.47224],[-1.977242,52.467431],[-1.981714,52.466291],[-1.987957,52.465366],[-1.997723,52.463113],[-2.002087,52.463398],[-2.004392,52.462592],[-2.007905,52.461914],[-2.013244,52.462191],[-2.013084,52.460284],[-2.011757,52.457222],[-2.011505,52.455365],[-2.012121,52.452193],[-2.013512,52.449659],[-2.013233,52.448356],[-2.015268,52.447659],[-2.016512,52.446732],[-2.017435,52.443256],[-2.017001,52.440674],[-2.01699,52.432683],[-2.01528,52.432174],[-2.015459,52.428611],[-2.013783,52.429552],[-2.013178,52.42872],[-2.009741,52.426522],[-2.007297,52.428094],[-2.004686,52.42841],[-2.004317,52.426371],[-2.001649,52.422999],[-2.001276,52.421872],[-2.002043,52.420988],[-2.000368,52.420244],[-1.999018,52.418713],[-1.99701,52.417942],[-1.997061,52.417426],[-1.991042,52.415413],[-1.988697,52.416369],[-1.988219,52.416989],[-1.986037,52.416726],[-1.988862,52.414122],[-1.991075,52.413559],[-1.993245,52.413573],[-1.995609,52.412496],[-1.996926,52.410354],[-1.997796,52.409736],[-2.001013,52.410309],[-2.002077,52.410871],[-2.004193,52.410966],[-2.004639,52.409223],[-2.006442,52.409134],[-2.008097,52.40862],[-2.009238,52.410388],[-2.010859,52.409558],[-2.0128,52.40951],[-2.012349,52.408205],[-2.012675,52.407319],[-2.014275,52.40688],[-2.015071,52.406123],[-2.017549,52.405582],[-2.020478,52.406868],[-2.024177,52.406371],[-2.027535,52.408105],[-2.027313,52.407119],[-2.028058,52.406432],[-2.033432,52.403038],[-2.033641,52.402328],[-2.030954,52.40089],[-2.02841,52.400432],[-2.025103,52.400667],[-2.021653,52.400189],[-2.020687,52.399356],[-2.019271,52.396302],[-2.018074,52.394949],[-2.016903,52.394261],[-2.015075,52.394669],[-2.014184,52.394225],[-2.013366,52.392073],[-2.012951,52.3887],[-2.011353,52.38618],[-2.00846,52.386962],[-2.006137,52.38567],[-2.005001,52.384155],[-2.002211,52.384196],[-2.001279,52.383565],[-2.000117,52.381663],[-1.998053,52.381083],[-1.994511,52.381181],[-1.99288,52.381952],[-1.988971,52.382642],[-1.988078,52.383596],[-1.98819,52.384503],[-1.983625,52.387334],[-1.978927,52.387872],[-1.975578,52.387111],[-1.972458,52.388126],[-1.971621,52.389216],[-1.970546,52.389657],[-1.966362,52.389465],[-1.964927,52.392188],[-1.960435,52.389093],[-1.958912,52.388248],[-1.953614,52.393371],[-1.952543,52.393321],[-1.94545,52.390696],[-1.939672,52.3896],[-1.936346,52.387905],[-1.934636,52.38789],[-1.932859,52.390325],[-1.932072,52.390505],[-1.928073,52.392891],[-1.928273,52.393139],[-1.924383,52.396693],[-1.922437,52.396856],[-1.918578,52.398193],[-1.918297,52.400134],[-1.916469,52.401544],[-1.915303,52.403164],[-1.91465,52.406755],[-1.913675,52.407464],[-1.910812,52.406691],[-1.909667,52.404447],[-1.906626,52.404094],[-1.904588,52.403146],[-1.90069,52.403835],[-1.896133,52.403327],[-1.892381,52.404433],[-1.887112,52.404686],[-1.886193,52.404357],[-1.882697,52.399813],[-1.878354,52.399898],[-1.877862,52.402445],[-1.872291,52.402194],[-1.872278,52.404691],[-1.868747,52.404737],[-1.869197,52.40781],[-1.867114,52.408787],[-1.866252,52.409823],[-1.866645,52.411045],[-1.864771,52.410999],[-1.864131,52.410087],[-1.862759,52.409336],[-1.857811,52.408419],[-1.853943,52.408559],[-1.850836,52.410446],[-1.849434,52.410789],[-1.847818,52.409966],[-1.843609,52.410524],[-1.842365,52.412615],[-1.83906,52.41435],[-1.833729,52.418153],[-1.83441,52.418564],[-1.832892,52.419514],[-1.830725,52.422796],[-1.827999,52.425569],[-1.82703,52.427789],[-1.825263,52.429306],[-1.81924,52.4309],[-1.817315,52.432367],[-1.81611,52.437821],[-1.814482,52.437744],[-1.813399,52.4385],[-1.811905,52.440489],[-1.811572,52.442344],[-1.812271,52.443013],[-1.809574,52.444777],[-1.808276,52.446532],[-1.806679,52.449681],[-1.806067,52.44976],[-1.806254,52.451567],[-1.805124,52.453331],[-1.804913,52.454429],[-1.800314,52.458296],[-1.798744,52.45747],[-1.795683,52.455051],[-1.793989,52.454301],[-1.789421,52.452772],[-1.788981,52.453096],[-1.782704,52.45086],[-1.777951,52.450188],[-1.777478,52.450632],[-1.772478,52.450717],[-1.769015,52.451103],[-1.762767,52.451195],[-1.761392,52.450923],[-1.759601,52.451911],[-1.754978,52.456284],[-1.763379,52.463846],[-1.763748,52.466119],[-1.761717,52.467179],[-1.75873,52.467218],[-1.759324,52.468954],[-1.756692,52.471539],[-1.755804,52.471902],[-1.759162,52.475407],[-1.7586,52.476575],[-1.759096,52.479522],[-1.758872,52.4804],[-1.759806,52.482933],[-1.761561,52.485223],[-1.760861,52.486423],[-1.763094,52.486627],[-1.763432,52.487328],[-1.762325,52.488578],[-1.762359,52.490108],[-1.761008,52.49158],[-1.760839,52.493634],[-1.759899,52.494719],[-1.756959,52.496754],[-1.755837,52.499495],[-1.758891,52.499769],[-1.764183,52.499884],[-1.764174,52.5008],[-1.770271,52.501297],[-1.772456,52.501632],[-1.779395,52.501167],[-1.782165,52.501187],[-1.782541,52.501623],[-1.792092,52.503001],[-1.797442,52.502684],[-1.799295,52.5037],[-1.799359,52.504863],[-1.798691,52.505625],[-1.794307,52.506583],[-1.79392,52.508839],[-1.784613,52.509923],[-1.773602,52.513248],[-1.768484,52.514244],[-1.764401,52.514493],[-1.760494,52.514327],[-1.753523,52.512967],[-1.753258,52.514115],[-1.754091,52.515777],[-1.754923,52.515732],[-1.757077,52.517827],[-1.757039,52.518298],[-1.754319,52.518476],[-1.75381,52.521213],[-1.751341,52.520598],[-1.748762,52.520768],[-1.745823,52.52007],[-1.743869,52.520641],[-1.741637,52.52073],[-1.736325,52.522504],[-1.734826,52.523429],[-1.731837,52.522923],[-1.730507,52.523158],[-1.728851,52.524467],[-1.730419,52.525961],[-1.731571,52.527717],[-1.736916,52.529079],[-1.73867,52.529085],[-1.739422,52.531911],[-1.742347,52.531306],[-1.743527,52.532693],[-1.746854,52.531315],[-1.749086,52.531422],[-1.750412,52.533972],[-1.750915,52.536278],[-1.748361,52.536521],[-1.748993,52.541262],[-1.746428,52.541713],[-1.752106,52.543841],[-1.753577,52.545302],[-1.75576,52.554788],[-1.7564,52.55588],[-1.757813,52.555571],[-1.759953,52.555668],[-1.763424,52.556619],[-1.76534,52.556677],[-1.766294,52.557886],[-1.767731,52.558806],[-1.766919,52.559854],[-1.766914,52.561618],[-1.770152,52.563577],[-1.77423,52.564628],[-1.773908,52.565636],[-1.770341,52.567882],[-1.767902,52.568075],[-1.766793,52.568727],[-1.764529,52.569381],[-1.763546,52.570979],[-1.765907,52.570925],[-1.767017,52.571227],[-1.7682,52.572988],[-1.768134,52.574295],[-1.769688,52.574983],[-1.771283,52.575113],[-1.776649,52.574569],[-1.778833,52.575814],[-1.778684,52.57658],[-1.779496,52.578698],[-1.780268,52.578859],[-1.781359,52.58027],[-1.784836,52.581742],[-1.7868,52.583072],[-1.788277,52.584587],[-1.788461,52.586911],[-1.788081,52.587863]]]},"properties":{"LAD22CD":"E08000025","LAD22NM":"Birmingham","BNG_E":408150,"BNG_N":287352,"LONG":-1.88141,"LAT":52.48404,"GlobalID":"2549f1bd-c7fa-4d79-8ba8-51ad2d74054a"},"id":264}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.459053,52.455158],[-1.461333,52.455779],[-1.462014,52.457842],[-1.466305,52.458503],[-1.472828,52.45638],[-1.479206,52.457106],[-1.483017,52.458087],[-1.484698,52.457267],[-1.486842,52.457649],[-1.488197,52.458496],[-1.489668,52.458033],[-1.491982,52.458585],[-1.491711,52.455024],[-1.495853,52.452229],[-1.498716,52.451015],[-1.502854,52.450831],[-1.505034,52.450089],[-1.519655,52.453342],[-1.519051,52.455158],[-1.517569,52.456784],[-1.52157,52.456322],[-1.525915,52.456361],[-1.529677,52.457088],[-1.535034,52.459477],[-1.537015,52.462426],[-1.539791,52.464799],[-1.545261,52.461457],[-1.547561,52.45959],[-1.54923,52.459301],[-1.551421,52.457044],[-1.553988,52.456856],[-1.554289,52.456445],[-1.558523,52.456665],[-1.561192,52.455223],[-1.562959,52.455981],[-1.568421,52.456089],[-1.574044,52.457924],[-1.577521,52.458438],[-1.578704,52.458151],[-1.585645,52.46017],[-1.589863,52.461912],[-1.589986,52.461103],[-1.593057,52.461572],[-1.594921,52.46069],[-1.596517,52.458443],[-1.595743,52.45759],[-1.595487,52.45592],[-1.593541,52.453504],[-1.594795,52.453051],[-1.59365,52.451823],[-1.595902,52.451395],[-1.595305,52.450077],[-1.593681,52.448575],[-1.592846,52.445358],[-1.595229,52.439926],[-1.596683,52.438444],[-1.598983,52.439503],[-1.605693,52.440051],[-1.609564,52.437976],[-1.609577,52.436556],[-1.608943,52.435712],[-1.609736,52.434903],[-1.609745,52.433629],[-1.606236,52.432921],[-1.606549,52.431001],[-1.608113,52.431098],[-1.611397,52.432134],[-1.614445,52.427965],[-1.613288,52.427215],[-1.610584,52.426262],[-1.607242,52.425835],[-1.606453,52.425387],[-1.609382,52.424111],[-1.611095,52.422341],[-1.604706,52.41868],[-1.6022,52.415828],[-1.60461,52.415913],[-1.603395,52.40776],[-1.605876,52.407286],[-1.605799,52.405927],[-1.603676,52.404482],[-1.601331,52.404648],[-1.601225,52.403738],[-1.604308,52.403473],[-1.604274,52.400009],[-1.601589,52.395939],[-1.60077,52.395056],[-1.600017,52.39287],[-1.60104,52.392869],[-1.601606,52.391482],[-1.603143,52.390362],[-1.601068,52.389299],[-1.597693,52.388043],[-1.594717,52.387458],[-1.593944,52.387894],[-1.587997,52.38611],[-1.580116,52.384894],[-1.575789,52.384576],[-1.576708,52.382788],[-1.573018,52.382537],[-1.571374,52.383365],[-1.569562,52.382898],[-1.568776,52.38367],[-1.570538,52.384213],[-1.567799,52.384778],[-1.564818,52.382295],[-1.563146,52.37919],[-1.562635,52.376891],[-1.559302,52.375599],[-1.554993,52.374424],[-1.554901,52.373696],[-1.556761,52.372464],[-1.555552,52.372057],[-1.556907,52.369731],[-1.558254,52.368655],[-1.555843,52.367752],[-1.557455,52.365733],[-1.555006,52.365103],[-1.552413,52.363892],[-1.549391,52.366339],[-1.546808,52.365357],[-1.541893,52.366633],[-1.545677,52.369271],[-1.535479,52.377609],[-1.532662,52.376216],[-1.52992,52.377863],[-1.524652,52.379401],[-1.522781,52.377514],[-1.519811,52.375553],[-1.521084,52.37455],[-1.520001,52.373094],[-1.51847,52.373547],[-1.517978,52.371939],[-1.514693,52.369981],[-1.513916,52.369063],[-1.509362,52.373108],[-1.50817,52.375822],[-1.504499,52.377807],[-1.486605,52.37683],[-1.482278,52.377119],[-1.48041,52.374318],[-1.475914,52.374709],[-1.471008,52.376473],[-1.466609,52.377204],[-1.464696,52.375531],[-1.466333,52.374536],[-1.464014,52.373267],[-1.460402,52.374808],[-1.462924,52.376403],[-1.46146,52.377449],[-1.463126,52.379664],[-1.458446,52.381797],[-1.44949,52.384248],[-1.444965,52.386377],[-1.43582,52.392265],[-1.432658,52.395039],[-1.430876,52.398124],[-1.431032,52.400275],[-1.432644,52.402713],[-1.437098,52.407676],[-1.438055,52.410121],[-1.434713,52.412685],[-1.432399,52.415692],[-1.42443,52.430708],[-1.423938,52.432908],[-1.424146,52.434],[-1.425208,52.434797],[-1.428786,52.435779],[-1.42993,52.436793],[-1.431694,52.43679],[-1.431865,52.437526],[-1.440094,52.439686],[-1.439817,52.440274],[-1.446655,52.442602],[-1.445015,52.446427],[-1.443647,52.447422],[-1.445474,52.448298],[-1.446053,52.447546],[-1.452165,52.449658],[-1.46042,52.453639],[-1.458746,52.454751],[-1.459053,52.455158]]]},"properties":{"LAD22CD":"E08000026","LAD22NM":"Coventry","BNG_E":432807,"BNG_N":279689,"LONG":-1.51908,"LAT":52.41423,"GlobalID":"9406f82d-df7c-4e41-a9c1-a31628e96a03"},"id":265}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.073942,52.54988],[-2.075271,52.553118],[-2.078044,52.556925],[-2.079779,52.557027],[-2.080811,52.55658],[-2.081368,52.555208],[-2.081459,52.553124],[-2.082192,52.552531],[-2.085007,52.552828],[-2.086421,52.551412],[-2.090345,52.549574],[-2.090052,52.548862],[-2.093697,52.547454],[-2.094182,52.548126],[-2.096197,52.546471],[-2.097314,52.546022],[-2.102319,52.546101],[-2.106104,52.545479],[-2.108245,52.543945],[-2.109638,52.546491],[-2.111985,52.546069],[-2.111468,52.547093],[-2.112201,52.547955],[-2.114523,52.547301],[-2.114656,52.548726],[-2.117231,52.552078],[-2.121527,52.556815],[-2.127598,52.558207],[-2.12721,52.556163],[-2.128331,52.5553],[-2.128382,52.553837],[-2.131692,52.554176],[-2.133487,52.554067],[-2.133457,52.553445],[-2.13489,52.551738],[-2.139151,52.548065],[-2.136827,52.546822],[-2.136055,52.545509],[-2.136962,52.544978],[-2.136789,52.543445],[-2.135473,52.543379],[-2.135813,52.540729],[-2.136485,52.54027],[-2.136889,52.538057],[-2.136309,52.537492],[-2.136749,52.534923],[-2.137376,52.533294],[-2.139387,52.532677],[-2.14423,52.530432],[-2.145974,52.529442],[-2.145944,52.528693],[-2.147025,52.528024],[-2.151989,52.526199],[-2.151569,52.525253],[-2.149847,52.524803],[-2.148099,52.523725],[-2.146066,52.523338],[-2.146043,52.52266],[-2.144583,52.521384],[-2.144517,52.51962],[-2.145289,52.517731],[-2.144124,52.517169],[-2.148781,52.514695],[-2.150548,52.514137],[-2.15267,52.515042],[-2.155176,52.515261],[-2.162073,52.51416],[-2.164637,52.514641],[-2.167153,52.513395],[-2.168386,52.513514],[-2.172805,52.51284],[-2.173817,52.512319],[-2.178244,52.511649],[-2.180256,52.510756],[-2.180516,52.510249],[-2.185647,52.50853],[-2.187983,52.508363],[-2.187684,52.506078],[-2.186619,52.504787],[-2.189421,52.504762],[-2.191749,52.503397],[-2.184784,52.500347],[-2.184609,52.500007],[-2.18866,52.494507],[-2.185176,52.494813],[-2.184269,52.49288],[-2.182248,52.49315],[-2.179516,52.488797],[-2.177631,52.485116],[-2.178482,52.482696],[-2.177873,52.479366],[-2.173764,52.474226],[-2.171805,52.472586],[-2.169097,52.472388],[-2.167513,52.471216],[-2.169362,52.469329],[-2.171554,52.465898],[-2.17426,52.463813],[-2.173889,52.461139],[-2.174924,52.458578],[-2.17635,52.455979],[-2.17642,52.454552],[-2.17537,52.453009],[-2.171789,52.441647],[-2.171263,52.44143],[-2.170319,52.439073],[-2.164851,52.430204],[-2.146603,52.426373],[-2.143575,52.426055],[-2.136027,52.426268],[-2.13548,52.42806],[-2.133091,52.427618],[-2.132275,52.429924],[-2.13046,52.429632],[-2.12927,52.429901],[-2.129021,52.430918],[-2.129697,52.43221],[-2.12776,52.432705],[-2.122882,52.433421],[-2.119663,52.434719],[-2.117248,52.43436],[-2.114643,52.43566],[-2.112897,52.437415],[-2.111757,52.437278],[-2.108777,52.441223],[-2.107025,52.442206],[-2.10525,52.444208],[-2.10224,52.443962],[-2.098565,52.445284],[-2.095672,52.444917],[-2.093281,52.445283],[-2.094138,52.443766],[-2.090263,52.442639],[-2.090471,52.441079],[-2.088736,52.440128],[-2.087221,52.436814],[-2.086972,52.434648],[-2.08605,52.432925],[-2.084613,52.432145],[-2.082105,52.431731],[-2.079892,52.432272],[-2.078264,52.433045],[-2.077936,52.433938],[-2.074812,52.433998],[-2.070971,52.433702],[-2.069767,52.434335],[-2.067626,52.434721],[-2.068009,52.432964],[-2.067546,52.432558],[-2.06235,52.432455],[-2.063825,52.4307],[-2.066707,52.429741],[-2.065788,52.428087],[-2.062468,52.427431],[-2.060713,52.427538],[-2.059516,52.428857],[-2.058942,52.430792],[-2.05916,52.432625],[-2.058648,52.433577],[-2.058698,52.435028],[-2.059309,52.435397],[-2.05923,52.438866],[-2.059631,52.439369],[-2.058491,52.440767],[-2.055711,52.441314],[-2.053595,52.440617],[-2.051484,52.440829],[-2.04916,52.43968],[-2.047091,52.440407],[-2.046386,52.439956],[-2.044551,52.440678],[-2.037881,52.441558],[-2.037131,52.439839],[-2.038631,52.438979],[-2.039843,52.437558],[-2.037593,52.433073],[-2.037661,52.431561],[-2.036876,52.43099],[-2.037868,52.430075],[-2.038111,52.428802],[-2.036988,52.427546],[-2.029706,52.427301],[-2.028971,52.428847],[-2.02619,52.43016],[-2.026039,52.432094],[-2.023684,52.432609],[-2.024881,52.434042],[-2.024767,52.434882],[-2.01699,52.432683],[-2.017001,52.440674],[-2.017435,52.443256],[-2.016512,52.446732],[-2.015268,52.447659],[-2.013233,52.448356],[-2.013512,52.449659],[-2.012121,52.452193],[-2.011505,52.455365],[-2.011757,52.457222],[-2.013084,52.460284],[-2.013244,52.462191],[-2.012885,52.462505],[-2.013015,52.464724],[-2.014374,52.470248],[-2.015573,52.471937],[-2.018468,52.474426],[-2.020976,52.477165],[-2.022162,52.479862],[-2.023462,52.479631],[-2.030032,52.476789],[-2.031293,52.476939],[-2.034594,52.474852],[-2.037462,52.473737],[-2.041032,52.473198],[-2.042431,52.47254],[-2.044727,52.470684],[-2.047108,52.470052],[-2.047497,52.467515],[-2.049405,52.466566],[-2.051073,52.463776],[-2.052894,52.464392],[-2.055086,52.463292],[-2.056787,52.462913],[-2.059017,52.461975],[-2.061885,52.462451],[-2.063305,52.462234],[-2.0645,52.461504],[-2.066364,52.461555],[-2.07221,52.460743],[-2.073962,52.461428],[-2.07434,52.463417],[-2.076116,52.464329],[-2.077936,52.46405],[-2.079224,52.463024],[-2.081767,52.463751],[-2.083422,52.465809],[-2.084634,52.4658],[-2.085778,52.466741],[-2.089176,52.467935],[-2.090901,52.467795],[-2.093636,52.468318],[-2.097083,52.468394],[-2.096506,52.470432],[-2.095339,52.470628],[-2.095463,52.472003],[-2.09425,52.473601],[-2.092503,52.473766],[-2.091328,52.474425],[-2.089665,52.474659],[-2.086478,52.474101],[-2.08198,52.475952],[-2.079933,52.47641],[-2.078154,52.477924],[-2.07552,52.477191],[-2.073283,52.477398],[-2.072902,52.478847],[-2.07146,52.480106],[-2.071601,52.480633],[-2.069012,52.482727],[-2.068024,52.48436],[-2.069143,52.4844],[-2.068074,52.486258],[-2.066981,52.485376],[-2.064323,52.487169],[-2.06686,52.489743],[-2.069626,52.490771],[-2.070279,52.491858],[-2.069758,52.494403],[-2.068543,52.495295],[-2.068847,52.496378],[-2.0671,52.497141],[-2.06769,52.49816],[-2.065864,52.498068],[-2.064175,52.499494],[-2.063121,52.499948],[-2.063541,52.500951],[-2.062959,52.502087],[-2.060924,52.502569],[-2.060911,52.504477],[-2.061625,52.505728],[-2.061388,52.507083],[-2.062443,52.507722],[-2.061386,52.509576],[-2.059975,52.509397],[-2.057885,52.510895],[-2.057258,52.512271],[-2.06045,52.512745],[-2.06322,52.51372],[-2.064337,52.514411],[-2.067835,52.519047],[-2.071438,52.521847],[-2.075782,52.524087],[-2.079591,52.524085],[-2.079623,52.528037],[-2.077676,52.532006],[-2.077121,52.532734],[-2.078545,52.533348],[-2.07927,52.535446],[-2.075916,52.534105],[-2.074122,52.53751],[-2.075227,52.537742],[-2.074654,52.539019],[-2.073567,52.538785],[-2.072995,52.541838],[-2.072859,52.545863],[-2.073942,52.54988]]]},"properties":{"LAD22CD":"E08000027","LAD22NM":"Dudley","BNG_E":393191,"BNG_N":288584,"LONG":-2.10171,"LAT":52.49513,"GlobalID":"f4086b1c-d913-4791-b360-7dccb0185ec9"},"id":266}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.918158,52.547307],[-1.923094,52.551074],[-1.925036,52.552069],[-1.929379,52.553549],[-1.933067,52.553841],[-1.932571,52.556142],[-1.934653,52.557448],[-1.932603,52.55933],[-1.933927,52.560034],[-1.936438,52.560407],[-1.937955,52.55991],[-1.940284,52.56065],[-1.942309,52.560761],[-1.942846,52.559903],[-1.944222,52.559908],[-1.947767,52.557482],[-1.949326,52.556657],[-1.952753,52.557092],[-1.951873,52.561498],[-1.954069,52.562212],[-1.955068,52.561798],[-1.959933,52.561667],[-1.964144,52.563227],[-1.966845,52.562573],[-1.967115,52.559481],[-1.974537,52.559019],[-1.974431,52.557859],[-1.975497,52.55556],[-1.979245,52.558738],[-1.980553,52.558566],[-1.983724,52.560363],[-1.986227,52.561216],[-1.989051,52.563016],[-1.992892,52.564071],[-1.994408,52.563939],[-1.999799,52.565223],[-2.005778,52.566886],[-2.010979,52.569065],[-2.012498,52.568421],[-2.016145,52.568415],[-2.016811,52.569085],[-2.027049,52.564606],[-2.025369,52.56228],[-2.031373,52.560306],[-2.034853,52.558479],[-2.037513,52.55783],[-2.04062,52.554144],[-2.04151,52.553992],[-2.048462,52.551742],[-2.050983,52.552729],[-2.050766,52.550515],[-2.061469,52.546923],[-2.063369,52.548931],[-2.066616,52.54832],[-2.069011,52.547447],[-2.07038,52.55018],[-2.072125,52.550248],[-2.073942,52.54988],[-2.072859,52.545863],[-2.072995,52.541838],[-2.073567,52.538785],[-2.074654,52.539019],[-2.075227,52.537742],[-2.074122,52.53751],[-2.075916,52.534105],[-2.07927,52.535446],[-2.078545,52.533348],[-2.077121,52.532734],[-2.077676,52.532006],[-2.079623,52.528037],[-2.079591,52.524085],[-2.075782,52.524087],[-2.071438,52.521847],[-2.067835,52.519047],[-2.064337,52.514411],[-2.06322,52.51372],[-2.06045,52.512745],[-2.057258,52.512271],[-2.057885,52.510895],[-2.059975,52.509397],[-2.061386,52.509576],[-2.062443,52.507722],[-2.061388,52.507083],[-2.061625,52.505728],[-2.060911,52.504477],[-2.060924,52.502569],[-2.062959,52.502087],[-2.063541,52.500951],[-2.063121,52.499948],[-2.064175,52.499494],[-2.065864,52.498068],[-2.06769,52.49816],[-2.0671,52.497141],[-2.068847,52.496378],[-2.068543,52.495295],[-2.069758,52.494403],[-2.070279,52.491858],[-2.069626,52.490771],[-2.06686,52.489743],[-2.064323,52.487169],[-2.066981,52.485376],[-2.068074,52.486258],[-2.069143,52.4844],[-2.068024,52.48436],[-2.069012,52.482727],[-2.071601,52.480633],[-2.07146,52.480106],[-2.072902,52.478847],[-2.073283,52.477398],[-2.07552,52.477191],[-2.078154,52.477924],[-2.079933,52.47641],[-2.08198,52.475952],[-2.086478,52.474101],[-2.089665,52.474659],[-2.091328,52.474425],[-2.092503,52.473766],[-2.09425,52.473601],[-2.095463,52.472003],[-2.095339,52.470628],[-2.096506,52.470432],[-2.097083,52.468394],[-2.093636,52.468318],[-2.090901,52.467795],[-2.089176,52.467935],[-2.085778,52.466741],[-2.084634,52.4658],[-2.083422,52.465809],[-2.081767,52.463751],[-2.079224,52.463024],[-2.077936,52.46405],[-2.076116,52.464329],[-2.07434,52.463417],[-2.073962,52.461428],[-2.07221,52.460743],[-2.066364,52.461555],[-2.0645,52.461504],[-2.063305,52.462234],[-2.061885,52.462451],[-2.059017,52.461975],[-2.056787,52.462913],[-2.055086,52.463292],[-2.052894,52.464392],[-2.051073,52.463776],[-2.049405,52.466566],[-2.047497,52.467515],[-2.047108,52.470052],[-2.044727,52.470684],[-2.042431,52.47254],[-2.041032,52.473198],[-2.037462,52.473737],[-2.034594,52.474852],[-2.031293,52.476939],[-2.030032,52.476789],[-2.023462,52.479631],[-2.022162,52.479862],[-2.020976,52.477165],[-2.018468,52.474426],[-2.015573,52.471937],[-2.014374,52.470248],[-2.013015,52.464724],[-2.012885,52.462505],[-2.013244,52.462191],[-2.007905,52.461914],[-2.004392,52.462592],[-2.002087,52.463398],[-1.997723,52.463113],[-1.987957,52.465366],[-1.981714,52.466291],[-1.977242,52.467431],[-1.968317,52.47224],[-1.965745,52.473362],[-1.96713,52.474198],[-1.965374,52.475323],[-1.969025,52.476794],[-1.968692,52.477862],[-1.967032,52.478953],[-1.964689,52.481514],[-1.961391,52.482777],[-1.959202,52.482869],[-1.956123,52.482308],[-1.952487,52.483361],[-1.950777,52.483247],[-1.949519,52.485227],[-1.95072,52.485494],[-1.949705,52.487142],[-1.948429,52.487],[-1.947091,52.487491],[-1.945946,52.490212],[-1.943938,52.489936],[-1.943029,52.491512],[-1.945683,52.493167],[-1.943825,52.494417],[-1.94431,52.495735],[-1.941414,52.497543],[-1.938132,52.498425],[-1.945713,52.499972],[-1.951038,52.501518],[-1.955524,52.501596],[-1.955484,52.502635],[-1.963025,52.504897],[-1.96115,52.506617],[-1.962235,52.508336],[-1.961976,52.509876],[-1.959569,52.509667],[-1.962266,52.512651],[-1.962644,52.513662],[-1.962108,52.515937],[-1.9602,52.517066],[-1.958795,52.518415],[-1.958039,52.519979],[-1.959493,52.52229],[-1.960108,52.524897],[-1.962079,52.527962],[-1.96048,52.530224],[-1.960238,52.531348],[-1.958085,52.531405],[-1.957566,52.529735],[-1.951242,52.529795],[-1.949797,52.530491],[-1.947469,52.533434],[-1.945788,52.533881],[-1.941511,52.533643],[-1.937247,52.532007],[-1.933779,52.532741],[-1.932482,52.532659],[-1.929441,52.531299],[-1.930348,52.533357],[-1.92944,52.542822],[-1.929942,52.543588],[-1.93315,52.545813],[-1.92119,52.546051],[-1.91981,52.546343],[-1.918158,52.547307]]]},"properties":{"LAD22CD":"E08000028","LAD22NM":"Sandwell","BNG_E":399573,"BNG_N":290764,"LONG":-2.00771,"LAT":52.51477,"GlobalID":"772be013-37ca-4f2e-847c-677757442b60"},"id":267}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.595487,52.45592],[-1.596695,52.455656],[-1.598547,52.454332],[-1.60016,52.454819],[-1.602348,52.456466],[-1.603828,52.456698],[-1.606016,52.458241],[-1.610714,52.458603],[-1.612201,52.461094],[-1.614213,52.463],[-1.616602,52.463459],[-1.618318,52.464138],[-1.621729,52.463429],[-1.624452,52.463539],[-1.62688,52.462237],[-1.625785,52.460562],[-1.625944,52.459305],[-1.624662,52.45703],[-1.626919,52.456182],[-1.629715,52.453773],[-1.633155,52.452066],[-1.633644,52.450741],[-1.634599,52.450185],[-1.634957,52.448686],[-1.637393,52.447592],[-1.638301,52.445376],[-1.641397,52.443344],[-1.643257,52.443062],[-1.645251,52.442097],[-1.646996,52.442097],[-1.648221,52.44162],[-1.650703,52.441271],[-1.652793,52.440674],[-1.654868,52.440755],[-1.658319,52.441975],[-1.662287,52.444299],[-1.664889,52.442675],[-1.664544,52.440035],[-1.666586,52.435472],[-1.670744,52.436788],[-1.677154,52.436357],[-1.676596,52.437909],[-1.678145,52.438707],[-1.682033,52.439717],[-1.68355,52.440535],[-1.684418,52.441527],[-1.685346,52.445051],[-1.686479,52.446324],[-1.690023,52.44866],[-1.697449,52.45478],[-1.700408,52.458703],[-1.704128,52.460664],[-1.706606,52.462596],[-1.708517,52.46446],[-1.708477,52.465613],[-1.709858,52.46643],[-1.710818,52.471672],[-1.710712,52.473844],[-1.712684,52.476506],[-1.715273,52.478417],[-1.714802,52.478656],[-1.719029,52.480478],[-1.722527,52.48268],[-1.729989,52.488865],[-1.73308,52.491962],[-1.743242,52.506958],[-1.744494,52.508319],[-1.747246,52.510205],[-1.753523,52.512967],[-1.760494,52.514327],[-1.764401,52.514493],[-1.768484,52.514244],[-1.773602,52.513248],[-1.784613,52.509923],[-1.79392,52.508839],[-1.794307,52.506583],[-1.798691,52.505625],[-1.799359,52.504863],[-1.799295,52.5037],[-1.797442,52.502684],[-1.792092,52.503001],[-1.782541,52.501623],[-1.782165,52.501187],[-1.779395,52.501167],[-1.772456,52.501632],[-1.770271,52.501297],[-1.764174,52.5008],[-1.764183,52.499884],[-1.758891,52.499769],[-1.755837,52.499495],[-1.756959,52.496754],[-1.759899,52.494719],[-1.760839,52.493634],[-1.761008,52.49158],[-1.762359,52.490108],[-1.762325,52.488578],[-1.763432,52.487328],[-1.763094,52.486627],[-1.760861,52.486423],[-1.761561,52.485223],[-1.759806,52.482933],[-1.758872,52.4804],[-1.759096,52.479522],[-1.7586,52.476575],[-1.759162,52.475407],[-1.755804,52.471902],[-1.756692,52.471539],[-1.759324,52.468954],[-1.75873,52.467218],[-1.761717,52.467179],[-1.763748,52.466119],[-1.763379,52.463846],[-1.754978,52.456284],[-1.759601,52.451911],[-1.761392,52.450923],[-1.762767,52.451195],[-1.769015,52.451103],[-1.772478,52.450717],[-1.777478,52.450632],[-1.777951,52.450188],[-1.782704,52.45086],[-1.788981,52.453096],[-1.789421,52.452772],[-1.793989,52.454301],[-1.795683,52.455051],[-1.798744,52.45747],[-1.800314,52.458296],[-1.804913,52.454429],[-1.805124,52.453331],[-1.806254,52.451567],[-1.806067,52.44976],[-1.806679,52.449681],[-1.808276,52.446532],[-1.809574,52.444777],[-1.812271,52.443013],[-1.811572,52.442344],[-1.811905,52.440489],[-1.813399,52.4385],[-1.814482,52.437744],[-1.81611,52.437821],[-1.817315,52.432367],[-1.81924,52.4309],[-1.825263,52.429306],[-1.82703,52.427789],[-1.827999,52.425569],[-1.830725,52.422796],[-1.832892,52.419514],[-1.83441,52.418564],[-1.833729,52.418153],[-1.83906,52.41435],[-1.842365,52.412615],[-1.843609,52.410524],[-1.847818,52.409966],[-1.849434,52.410789],[-1.850836,52.410446],[-1.853943,52.408559],[-1.857811,52.408419],[-1.862759,52.409336],[-1.864131,52.410087],[-1.864771,52.410999],[-1.866645,52.411045],[-1.866252,52.409823],[-1.867114,52.408787],[-1.869197,52.40781],[-1.868747,52.404737],[-1.868647,52.40421],[-1.864779,52.404815],[-1.863453,52.404626],[-1.861767,52.403601],[-1.856985,52.402761],[-1.853438,52.401544],[-1.851704,52.400554],[-1.850646,52.401823],[-1.845474,52.400406],[-1.846482,52.397262],[-1.848767,52.394304],[-1.858238,52.387352],[-1.857181,52.386571],[-1.861324,52.38387],[-1.860941,52.383175],[-1.8618,52.381444],[-1.86133,52.380057],[-1.861892,52.378478],[-1.863018,52.377522],[-1.863473,52.375975],[-1.865009,52.37449],[-1.865257,52.373637],[-1.866561,52.373245],[-1.86761,52.372299],[-1.869054,52.370198],[-1.870277,52.369937],[-1.870524,52.368624],[-1.872034,52.367599],[-1.86993,52.368032],[-1.868103,52.368052],[-1.863344,52.367031],[-1.863168,52.366574],[-1.849654,52.366716],[-1.842936,52.365163],[-1.841546,52.365211],[-1.838105,52.366607],[-1.836679,52.366693],[-1.83498,52.367404],[-1.833073,52.366146],[-1.830309,52.366003],[-1.829566,52.367267],[-1.826893,52.366134],[-1.824532,52.366415],[-1.824284,52.365654],[-1.819207,52.366311],[-1.813242,52.365772],[-1.812804,52.366596],[-1.80791,52.366623],[-1.80696,52.36594],[-1.805491,52.363292],[-1.803301,52.362442],[-1.799595,52.358633],[-1.797799,52.358464],[-1.791816,52.356818],[-1.788009,52.355186],[-1.784894,52.353065],[-1.783746,52.350948],[-1.784523,52.350112],[-1.77768,52.34774],[-1.775753,52.347964],[-1.776214,52.349634],[-1.774686,52.350456],[-1.771886,52.351287],[-1.77478,52.354533],[-1.773152,52.355536],[-1.773509,52.356663],[-1.776555,52.355135],[-1.778226,52.356566],[-1.77892,52.357808],[-1.779229,52.360157],[-1.78017,52.363827],[-1.779225,52.36454],[-1.77574,52.365916],[-1.772026,52.365363],[-1.770075,52.364657],[-1.767061,52.364712],[-1.7628,52.364275],[-1.759606,52.362552],[-1.759987,52.359206],[-1.759631,52.35841],[-1.753776,52.356124],[-1.752158,52.355909],[-1.751086,52.355071],[-1.748774,52.354771],[-1.743573,52.355375],[-1.742331,52.356871],[-1.741408,52.357172],[-1.740928,52.360045],[-1.738289,52.362068],[-1.7379,52.362766],[-1.738323,52.364972],[-1.736546,52.368434],[-1.735234,52.370062],[-1.734031,52.370718],[-1.73054,52.370727],[-1.729799,52.370129],[-1.727569,52.369855],[-1.725639,52.370639],[-1.723282,52.37077],[-1.720863,52.37197],[-1.720258,52.372574],[-1.718233,52.369478],[-1.71773,52.367838],[-1.718023,52.366016],[-1.720088,52.36317],[-1.720825,52.359068],[-1.720209,52.357274],[-1.718757,52.357339],[-1.718337,52.358692],[-1.717141,52.358145],[-1.715094,52.357949],[-1.712837,52.356802],[-1.711373,52.355378],[-1.71027,52.355021],[-1.707215,52.355157],[-1.704089,52.35421],[-1.700017,52.354755],[-1.698092,52.355732],[-1.696232,52.354381],[-1.693885,52.351013],[-1.692626,52.351558],[-1.691363,52.353118],[-1.687544,52.354437],[-1.684931,52.356011],[-1.685863,52.356904],[-1.685685,52.358224],[-1.683691,52.360397],[-1.684707,52.362536],[-1.684557,52.36313],[-1.67794,52.364134],[-1.675055,52.363794],[-1.672533,52.363128],[-1.669985,52.36491],[-1.668105,52.364494],[-1.666812,52.364949],[-1.66405,52.363969],[-1.660888,52.36567],[-1.653086,52.359938],[-1.65131,52.356421],[-1.648418,52.356743],[-1.647767,52.358073],[-1.644065,52.362217],[-1.641754,52.362536],[-1.638087,52.364009],[-1.636459,52.365169],[-1.633448,52.364243],[-1.631573,52.365705],[-1.629767,52.365107],[-1.626495,52.366647],[-1.623401,52.365551],[-1.620967,52.367884],[-1.626616,52.369194],[-1.624837,52.370257],[-1.623676,52.371779],[-1.622234,52.371743],[-1.619022,52.370557],[-1.618531,52.371579],[-1.617041,52.372623],[-1.618237,52.373402],[-1.618145,52.376256],[-1.61636,52.374593],[-1.611691,52.374668],[-1.60802,52.376355],[-1.606915,52.381008],[-1.610283,52.382507],[-1.608806,52.382997],[-1.607509,52.384626],[-1.605169,52.3839],[-1.605033,52.385739],[-1.603423,52.385986],[-1.601994,52.387418],[-1.603284,52.388194],[-1.601068,52.389299],[-1.603143,52.390362],[-1.601606,52.391482],[-1.60104,52.392869],[-1.600017,52.39287],[-1.60077,52.395056],[-1.601589,52.395939],[-1.604274,52.400009],[-1.604308,52.403473],[-1.601225,52.403738],[-1.601331,52.404648],[-1.603676,52.404482],[-1.605799,52.405927],[-1.605876,52.407286],[-1.603395,52.40776],[-1.60461,52.415913],[-1.6022,52.415828],[-1.604706,52.41868],[-1.611095,52.422341],[-1.609382,52.424111],[-1.606453,52.425387],[-1.607242,52.425835],[-1.610584,52.426262],[-1.613288,52.427215],[-1.614445,52.427965],[-1.611397,52.432134],[-1.608113,52.431098],[-1.606549,52.431001],[-1.606236,52.432921],[-1.609745,52.433629],[-1.609736,52.434903],[-1.608943,52.435712],[-1.609577,52.436556],[-1.609564,52.437976],[-1.605693,52.440051],[-1.598983,52.439503],[-1.596683,52.438444],[-1.595229,52.439926],[-1.592846,52.445358],[-1.593681,52.448575],[-1.595305,52.450077],[-1.595902,52.451395],[-1.59365,52.451823],[-1.594795,52.453051],[-1.593541,52.453504],[-1.595487,52.45592]]]},"properties":{"LAD22CD":"E08000029","LAD22NM":"Solihull","BNG_E":419434,"BNG_N":281483,"LONG":-1.71558,"LAT":52.431,"GlobalID":"e8537ecd-6a85-4fcb-b29c-fb31c221dbfb"},"id":268}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.872565,52.584945],[-1.875154,52.585693],[-1.878188,52.587707],[-1.884399,52.594428],[-1.88757,52.596684],[-1.890627,52.598063],[-1.892266,52.599152],[-1.89224,52.60006],[-1.887139,52.606631],[-1.886606,52.608377],[-1.885015,52.610531],[-1.885143,52.612671],[-1.885647,52.614784],[-1.886272,52.615615],[-1.894329,52.622662],[-1.897487,52.624756],[-1.904688,52.627768],[-1.908531,52.630363],[-1.909976,52.631769],[-1.915985,52.635286],[-1.908011,52.640071],[-1.905876,52.641782],[-1.905084,52.643208],[-1.909047,52.644747],[-1.90974,52.644279],[-1.912347,52.646476],[-1.91526,52.647964],[-1.918015,52.649895],[-1.915868,52.651473],[-1.916584,52.652258],[-1.90866,52.654],[-1.912842,52.658234],[-1.919592,52.656875],[-1.923684,52.655528],[-1.925806,52.65607],[-1.92859,52.6586],[-1.930272,52.659343],[-1.93352,52.661529],[-1.935474,52.659716],[-1.936952,52.659124],[-1.938636,52.657314],[-1.940486,52.656928],[-1.94036,52.656324],[-1.945402,52.656299],[-1.945725,52.657114],[-1.949518,52.659946],[-1.950218,52.659637],[-1.953664,52.662733],[-1.95457,52.662641],[-1.959945,52.662037],[-1.956325,52.65702],[-1.956303,52.656225],[-1.955074,52.654137],[-1.955466,52.653607],[-1.960554,52.653712],[-1.960771,52.649276],[-1.959958,52.649212],[-1.960281,52.644163],[-1.960963,52.642815],[-1.963015,52.64377],[-1.964568,52.640796],[-1.96739,52.641006],[-1.967443,52.641575],[-1.971046,52.641491],[-1.973329,52.640601],[-1.975165,52.641346],[-1.976206,52.639697],[-1.978727,52.640068],[-1.981316,52.63983],[-1.98283,52.6413],[-1.984769,52.639653],[-1.986551,52.640409],[-1.988688,52.639137],[-1.990856,52.636672],[-1.993279,52.63817],[-1.995737,52.638321],[-2.003846,52.637153],[-2.00757,52.634805],[-2.010018,52.634617],[-2.012528,52.633469],[-2.014372,52.633167],[-2.016111,52.630255],[-2.018884,52.628571],[-2.020225,52.628094],[-2.02408,52.625286],[-2.025345,52.625019],[-2.026494,52.625578],[-2.028974,52.625507],[-2.030855,52.624725],[-2.030528,52.624003],[-2.035509,52.621799],[-2.032008,52.619465],[-2.032091,52.618733],[-2.030123,52.616954],[-2.047379,52.621422],[-2.048486,52.620551],[-2.050718,52.620523],[-2.05275,52.617312],[-2.048022,52.616035],[-2.051067,52.609254],[-2.05156,52.606333],[-2.054599,52.600848],[-2.056995,52.598275],[-2.05787,52.598002],[-2.061044,52.598003],[-2.061964,52.597608],[-2.066332,52.597766],[-2.065715,52.596839],[-2.06611,52.594414],[-2.068557,52.593104],[-2.070868,52.59436],[-2.070859,52.593063],[-2.073211,52.591014],[-2.074393,52.588158],[-2.075755,52.587055],[-2.077793,52.586128],[-2.068649,52.583377],[-2.068208,52.582141],[-2.066874,52.58211],[-2.063046,52.580018],[-2.056743,52.5775],[-2.055166,52.576575],[-2.058165,52.574746],[-2.057096,52.573762],[-2.055428,52.573008],[-2.050859,52.57244],[-2.050022,52.572141],[-2.053089,52.568682],[-2.05364,52.566156],[-2.05719,52.56515],[-2.05795,52.564217],[-2.05663,52.562027],[-2.055351,52.560992],[-2.056613,52.560051],[-2.05847,52.560026],[-2.060164,52.558671],[-2.061953,52.558249],[-2.050983,52.552729],[-2.048462,52.551742],[-2.04151,52.553992],[-2.04062,52.554144],[-2.037513,52.55783],[-2.034853,52.558479],[-2.031373,52.560306],[-2.025369,52.56228],[-2.027049,52.564606],[-2.016811,52.569085],[-2.016145,52.568415],[-2.012498,52.568421],[-2.010979,52.569065],[-2.005778,52.566886],[-1.999799,52.565223],[-1.994408,52.563939],[-1.992892,52.564071],[-1.989051,52.563016],[-1.986227,52.561216],[-1.983724,52.560363],[-1.980553,52.558566],[-1.979245,52.558738],[-1.975497,52.55556],[-1.974431,52.557859],[-1.974537,52.559019],[-1.967115,52.559481],[-1.966845,52.562573],[-1.964144,52.563227],[-1.959933,52.561667],[-1.955068,52.561798],[-1.954069,52.562212],[-1.951873,52.561498],[-1.952753,52.557092],[-1.949326,52.556657],[-1.947767,52.557482],[-1.944222,52.559908],[-1.942846,52.559903],[-1.942309,52.560761],[-1.940284,52.56065],[-1.937955,52.55991],[-1.936438,52.560407],[-1.933927,52.560034],[-1.932603,52.55933],[-1.934653,52.557448],[-1.932571,52.556142],[-1.933067,52.553841],[-1.929379,52.553549],[-1.925036,52.552069],[-1.923094,52.551074],[-1.918158,52.547307],[-1.9168,52.548644],[-1.911835,52.551944],[-1.908157,52.553227],[-1.90128,52.554414],[-1.899793,52.554999],[-1.898096,52.556623],[-1.896682,52.558858],[-1.891631,52.562456],[-1.888499,52.563826],[-1.882746,52.567457],[-1.878519,52.569636],[-1.875925,52.580362],[-1.872565,52.584945]]]},"properties":{"LAD22CD":"E08000030","LAD22NM":"Walsall","BNG_E":402098,"BNG_N":300804,"LONG":-1.97044,"LAT":52.60503,"GlobalID":"b2ce7e49-921a-4489-a1d2-08a697feba24"},"id":269}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.050718,52.620523],[-2.050592,52.621213],[-2.052857,52.622216],[-2.059341,52.621679],[-2.064,52.620746],[-2.064522,52.619459],[-2.068707,52.618117],[-2.067356,52.613859],[-2.067326,52.612076],[-2.069878,52.612681],[-2.071747,52.612788],[-2.081002,52.611905],[-2.081782,52.612669],[-2.083112,52.612565],[-2.084921,52.613885],[-2.086268,52.616909],[-2.088396,52.619831],[-2.093175,52.619879],[-2.09481,52.620728],[-2.097375,52.623772],[-2.097319,52.625705],[-2.097983,52.627317],[-2.098923,52.628446],[-2.098571,52.631905],[-2.099249,52.632762],[-2.100813,52.633465],[-2.101251,52.635055],[-2.104995,52.635311],[-2.106635,52.634544],[-2.10937,52.634562],[-2.110252,52.635453],[-2.111635,52.635139],[-2.113801,52.63791],[-2.125973,52.637259],[-2.128673,52.637626],[-2.131644,52.637623],[-2.131544,52.635398],[-2.135087,52.632635],[-2.137239,52.629646],[-2.140286,52.629923],[-2.152983,52.629753],[-2.153023,52.627678],[-2.152427,52.627179],[-2.151554,52.624591],[-2.156053,52.623822],[-2.160288,52.621788],[-2.162787,52.621222],[-2.161732,52.61913],[-2.164612,52.619124],[-2.167499,52.620412],[-2.168463,52.619893],[-2.168357,52.618991],[-2.169524,52.618229],[-2.165017,52.616513],[-2.165864,52.615888],[-2.169291,52.615075],[-2.170964,52.614334],[-2.167611,52.611443],[-2.169553,52.610435],[-2.169157,52.609338],[-2.170715,52.609132],[-2.17102,52.610645],[-2.172454,52.610275],[-2.17375,52.609243],[-2.177688,52.607355],[-2.180314,52.604901],[-2.183902,52.606067],[-2.184255,52.606658],[-2.186617,52.606467],[-2.18721,52.60901],[-2.188535,52.608103],[-2.191954,52.607992],[-2.192093,52.606925],[-2.195199,52.607066],[-2.196697,52.60616],[-2.196384,52.60503],[-2.194602,52.605335],[-2.193045,52.603609],[-2.191932,52.603359],[-2.190938,52.602228],[-2.188424,52.594865],[-2.188497,52.59061],[-2.18931,52.588609],[-2.193477,52.58868],[-2.197836,52.588159],[-2.200563,52.58858],[-2.202474,52.58693],[-2.204201,52.586576],[-2.206877,52.586583],[-2.206696,52.585179],[-2.201253,52.585226],[-2.200057,52.583461],[-2.203963,52.583863],[-2.202189,52.58165],[-2.203323,52.581201],[-2.201803,52.57878],[-2.198121,52.579045],[-2.196406,52.577918],[-2.189432,52.57727],[-2.188278,52.574175],[-2.183445,52.576944],[-2.182589,52.574109],[-2.180337,52.574505],[-2.178573,52.57107],[-2.179206,52.571107],[-2.176975,52.566958],[-2.180959,52.566396],[-2.179632,52.56399],[-2.175526,52.564487],[-2.174807,52.560083],[-2.175935,52.559789],[-2.176391,52.556482],[-2.175535,52.554407],[-2.173049,52.554641],[-2.170143,52.556033],[-2.169044,52.554206],[-2.167081,52.553778],[-2.165006,52.553867],[-2.165569,52.555687],[-2.160034,52.55527],[-2.157721,52.554872],[-2.157361,52.55359],[-2.155342,52.553948],[-2.153055,52.553675],[-2.153249,52.554792],[-2.148917,52.554765],[-2.146793,52.55568],[-2.145274,52.554738],[-2.143695,52.555836],[-2.142236,52.557771],[-2.140957,52.558539],[-2.139066,52.558072],[-2.134922,52.554547],[-2.133487,52.554067],[-2.131692,52.554176],[-2.128382,52.553837],[-2.128331,52.5553],[-2.12721,52.556163],[-2.127598,52.558207],[-2.121527,52.556815],[-2.117231,52.552078],[-2.114656,52.548726],[-2.114523,52.547301],[-2.112201,52.547955],[-2.111468,52.547093],[-2.111985,52.546069],[-2.109638,52.546491],[-2.108245,52.543945],[-2.106104,52.545479],[-2.102319,52.546101],[-2.097314,52.546022],[-2.096197,52.546471],[-2.094182,52.548126],[-2.093697,52.547454],[-2.090052,52.548862],[-2.090345,52.549574],[-2.086421,52.551412],[-2.085007,52.552828],[-2.082192,52.552531],[-2.081459,52.553124],[-2.081368,52.555208],[-2.080811,52.55658],[-2.079779,52.557027],[-2.078044,52.556925],[-2.075271,52.553118],[-2.073942,52.54988],[-2.072125,52.550248],[-2.07038,52.55018],[-2.069011,52.547447],[-2.066616,52.54832],[-2.063369,52.548931],[-2.061469,52.546923],[-2.050766,52.550515],[-2.050983,52.552729],[-2.061953,52.558249],[-2.060164,52.558671],[-2.05847,52.560026],[-2.056613,52.560051],[-2.055351,52.560992],[-2.05663,52.562027],[-2.05795,52.564217],[-2.05719,52.56515],[-2.05364,52.566156],[-2.053089,52.568682],[-2.050022,52.572141],[-2.050859,52.57244],[-2.055428,52.573008],[-2.057096,52.573762],[-2.058165,52.574746],[-2.055166,52.576575],[-2.056743,52.5775],[-2.063046,52.580018],[-2.066874,52.58211],[-2.068208,52.582141],[-2.068649,52.583377],[-2.077793,52.586128],[-2.075755,52.587055],[-2.074393,52.588158],[-2.073211,52.591014],[-2.070859,52.593063],[-2.070868,52.59436],[-2.068557,52.593104],[-2.06611,52.594414],[-2.065715,52.596839],[-2.066332,52.597766],[-2.061964,52.597608],[-2.061044,52.598003],[-2.05787,52.598002],[-2.056995,52.598275],[-2.054599,52.600848],[-2.05156,52.606333],[-2.051067,52.609254],[-2.048022,52.616035],[-2.05275,52.617312],[-2.050718,52.620523]]]},"properties":{"LAD22CD":"E08000031","LAD22NM":"Wolverhampton","BNG_E":391463,"BNG_N":300016,"LONG":-2.12746,"LAT":52.59788,"GlobalID":"2238d4f2-79fd-4f09-971f-420339ec1137"},"id":270}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.878883,53.954274],[-1.879942,53.955902],[-1.879816,53.956806],[-1.878141,53.958992],[-1.878724,53.962392],[-1.879513,53.962839],[-1.882242,53.963137],[-1.885459,53.963017],[-1.88553,53.96194],[-1.887417,53.960151],[-1.889706,53.959275],[-1.890514,53.957343],[-1.893138,53.955384],[-1.895712,53.955078],[-1.898841,53.955391],[-1.903573,53.957236],[-1.9035,53.958275],[-1.906274,53.958378],[-1.908499,53.957558],[-1.91196,53.95695],[-1.913164,53.955992],[-1.916996,53.955516],[-1.919122,53.954917],[-1.920102,53.955658],[-1.92277,53.955634],[-1.92798,53.950459],[-1.930863,53.950268],[-1.934236,53.951913],[-1.941613,53.952518],[-1.94399,53.956188],[-1.950684,53.956743],[-1.949362,53.953012],[-1.958205,53.953953],[-1.966181,53.951558],[-1.965049,53.948235],[-1.963515,53.947582],[-1.963054,53.945796],[-1.962385,53.945321],[-1.96229,53.943208],[-1.968829,53.943934],[-1.970527,53.943333],[-1.969961,53.941889],[-1.967778,53.940401],[-1.963077,53.933404],[-1.968019,53.931825],[-1.965917,53.930426],[-1.96589,53.927887],[-1.967241,53.927522],[-1.970415,53.928437],[-1.970218,53.929084],[-1.971922,53.92998],[-1.976867,53.926418],[-1.973946,53.924055],[-1.961706,53.918287],[-1.959647,53.915536],[-1.957453,53.913588],[-1.956837,53.913738],[-1.953226,53.911706],[-1.95341,53.906526],[-1.952567,53.903533],[-1.964785,53.903349],[-1.968428,53.903843],[-1.974886,53.901179],[-1.976976,53.900924],[-1.97935,53.901179],[-1.978936,53.897939],[-1.981108,53.896974],[-1.980778,53.895127],[-1.981313,53.894251],[-1.978623,53.890809],[-1.977252,53.887738],[-1.978098,53.8842],[-1.976128,53.878896],[-1.97698,53.875601],[-1.978724,53.873806],[-1.980199,53.871115],[-1.982359,53.868862],[-1.987653,53.867737],[-1.995482,53.868679],[-1.999456,53.872065],[-2.013038,53.870519],[-2.013485,53.869738],[-2.021631,53.871497],[-2.031709,53.858594],[-2.038351,53.855222],[-2.045072,53.85125],[-2.046131,53.850141],[-2.045075,53.838896],[-2.046925,53.82951],[-2.061251,53.825635],[-2.050294,53.819875],[-2.036933,53.814556],[-2.036156,53.81397],[-2.03567,53.812597],[-2.031946,53.809749],[-2.031617,53.809103],[-2.027118,53.809021],[-2.018276,53.807697],[-2.009658,53.807102],[-1.995904,53.799621],[-1.986765,53.796151],[-1.980849,53.786353],[-1.959716,53.784271],[-1.95072,53.786012],[-1.947089,53.786806],[-1.929377,53.78761],[-1.926979,53.787489],[-1.914628,53.781588],[-1.895556,53.780894],[-1.888982,53.780884],[-1.887522,53.779623],[-1.885743,53.779927],[-1.880682,53.7799],[-1.878447,53.778856],[-1.874245,53.778826],[-1.873352,53.778595],[-1.87187,53.775346],[-1.872846,53.771044],[-1.871905,53.770116],[-1.87261,53.767785],[-1.871735,53.763692],[-1.872035,53.762773],[-1.87018,53.761232],[-1.869392,53.759734],[-1.869542,53.758264],[-1.872396,53.755711],[-1.871908,53.754823],[-1.869436,53.755267],[-1.868351,53.753329],[-1.866292,53.752414],[-1.865099,53.752724],[-1.864915,53.75131],[-1.863675,53.751149],[-1.862325,53.752395],[-1.859533,53.752224],[-1.855556,53.75082],[-1.856247,53.749923],[-1.855456,53.748308],[-1.852829,53.749529],[-1.854184,53.75105],[-1.852606,53.752657],[-1.850804,53.753431],[-1.848368,53.753543],[-1.846384,53.753236],[-1.844417,53.754956],[-1.840238,53.755629],[-1.839072,53.757513],[-1.837918,53.758254],[-1.836934,53.759685],[-1.834202,53.759281],[-1.832333,53.760896],[-1.827837,53.763733],[-1.825942,53.762988],[-1.823965,53.763746],[-1.820981,53.764209],[-1.815502,53.763793],[-1.812577,53.76387],[-1.812117,53.764259],[-1.809368,53.764381],[-1.806257,53.761596],[-1.805471,53.761453],[-1.802089,53.759328],[-1.802445,53.758854],[-1.801736,53.757329],[-1.802507,53.756681],[-1.801141,53.75558],[-1.801081,53.75494],[-1.798429,53.75465],[-1.794563,53.753051],[-1.794328,53.751552],[-1.793423,53.749289],[-1.794076,53.74857],[-1.795772,53.747944],[-1.7941,53.74549],[-1.791562,53.744168],[-1.789012,53.743239],[-1.788802,53.742501],[-1.78554,53.741991],[-1.784774,53.740859],[-1.785128,53.739828],[-1.781995,53.738871],[-1.781229,53.738059],[-1.779339,53.737085],[-1.778966,53.734791],[-1.779711,53.734084],[-1.77861,53.732107],[-1.779157,53.731567],[-1.778574,53.729654],[-1.776329,53.728294],[-1.774695,53.726688],[-1.773711,53.724356],[-1.772514,53.725197],[-1.771091,53.725428],[-1.770086,53.726252],[-1.769184,53.727264],[-1.766772,53.72816],[-1.765797,53.729146],[-1.763796,53.730211],[-1.761867,53.73279],[-1.760909,53.734645],[-1.754786,53.734707],[-1.749923,53.734239],[-1.745901,53.73449],[-1.747157,53.737992],[-1.74585,53.742304],[-1.747479,53.742731],[-1.745931,53.743692],[-1.747352,53.746691],[-1.740815,53.74791],[-1.733762,53.746922],[-1.733918,53.748199],[-1.733154,53.748979],[-1.731192,53.749915],[-1.730394,53.751301],[-1.728713,53.751595],[-1.727287,53.75286],[-1.726377,53.754302],[-1.726503,53.755056],[-1.725593,53.756159],[-1.722218,53.758834],[-1.719563,53.759524],[-1.717916,53.760447],[-1.713703,53.761712],[-1.714432,53.762458],[-1.710631,53.762853],[-1.709112,53.762471],[-1.70488,53.764848],[-1.702937,53.764079],[-1.701534,53.764066],[-1.697798,53.762426],[-1.695789,53.761781],[-1.693825,53.760706],[-1.689977,53.759944],[-1.690627,53.758398],[-1.686996,53.757685],[-1.686653,53.758091],[-1.681621,53.756469],[-1.677807,53.759413],[-1.677437,53.760149],[-1.675512,53.760608],[-1.67321,53.762039],[-1.669994,53.762136],[-1.665548,53.763844],[-1.663745,53.765087],[-1.662917,53.76675],[-1.659619,53.767258],[-1.656487,53.767248],[-1.65461,53.766519],[-1.653035,53.766525],[-1.649564,53.768198],[-1.649563,53.768996],[-1.647658,53.770109],[-1.646478,53.771422],[-1.642738,53.772376],[-1.641045,53.773391],[-1.641285,53.774098],[-1.640391,53.776293],[-1.640624,53.779976],[-1.644061,53.779598],[-1.647804,53.779537],[-1.651781,53.779862],[-1.65551,53.779733],[-1.656184,53.779983],[-1.659377,53.779659],[-1.661676,53.779679],[-1.664499,53.780113],[-1.667819,53.779227],[-1.672886,53.780139],[-1.674234,53.780005],[-1.67593,53.780434],[-1.677568,53.782325],[-1.680265,53.783547],[-1.681794,53.784968],[-1.682271,53.786415],[-1.6858,53.785284],[-1.688145,53.78578],[-1.688769,53.785325],[-1.691094,53.785101],[-1.693472,53.784343],[-1.697132,53.784217],[-1.701187,53.783493],[-1.711996,53.78307],[-1.707876,53.786695],[-1.707218,53.787967],[-1.707941,53.789925],[-1.70977,53.791172],[-1.711097,53.791629],[-1.708528,53.794303],[-1.703691,53.801808],[-1.701293,53.80252],[-1.706616,53.804081],[-1.706133,53.806496],[-1.708298,53.810094],[-1.706904,53.81256],[-1.707895,53.813653],[-1.708014,53.81569],[-1.704974,53.823184],[-1.706332,53.825654],[-1.705566,53.827657],[-1.706641,53.828581],[-1.704978,53.830833],[-1.704888,53.831817],[-1.703724,53.832538],[-1.704702,53.834465],[-1.703144,53.836354],[-1.705053,53.837121],[-1.70325,53.839964],[-1.70368,53.842348],[-1.702389,53.843357],[-1.70099,53.845399],[-1.696495,53.847334],[-1.695165,53.849486],[-1.694343,53.850042],[-1.69305,53.852963],[-1.695047,53.855336],[-1.695092,53.857538],[-1.696295,53.857643],[-1.699701,53.857176],[-1.699861,53.857775],[-1.702111,53.857844],[-1.702146,53.860548],[-1.705105,53.860284],[-1.706609,53.861077],[-1.70695,53.862129],[-1.708238,53.862568],[-1.708421,53.864302],[-1.710341,53.863495],[-1.712634,53.865116],[-1.715286,53.866245],[-1.716673,53.865106],[-1.71884,53.864134],[-1.720329,53.864878],[-1.724658,53.865069],[-1.725645,53.865668],[-1.728295,53.865772],[-1.72863,53.864981],[-1.731342,53.864833],[-1.733711,53.864198],[-1.736199,53.864123],[-1.738235,53.863611],[-1.738523,53.86445],[-1.742944,53.863346],[-1.746355,53.863379],[-1.746363,53.864132],[-1.744421,53.865589],[-1.753558,53.867473],[-1.754024,53.866032],[-1.757976,53.866608],[-1.759662,53.863692],[-1.760995,53.863847],[-1.761087,53.864855],[-1.763243,53.865902],[-1.7643,53.866968],[-1.767449,53.866777],[-1.769301,53.867249],[-1.769198,53.867989],[-1.772161,53.868718],[-1.771903,53.869328],[-1.773836,53.87036],[-1.775845,53.870555],[-1.778336,53.871863],[-1.778919,53.873988],[-1.779465,53.874356],[-1.778655,53.875621],[-1.779432,53.87651],[-1.778738,53.878572],[-1.780801,53.878807],[-1.78144,53.879427],[-1.784532,53.88049],[-1.794781,53.880482],[-1.798407,53.884748],[-1.800421,53.885962],[-1.794963,53.894628],[-1.787465,53.8969],[-1.77668,53.893852],[-1.779527,53.891192],[-1.773465,53.889029],[-1.770208,53.890237],[-1.767577,53.889812],[-1.767301,53.890217],[-1.763389,53.888803],[-1.757956,53.88514],[-1.756355,53.884706],[-1.750224,53.885163],[-1.749164,53.88572],[-1.74248,53.884878],[-1.742073,53.885425],[-1.737743,53.886649],[-1.735121,53.886989],[-1.729597,53.886365],[-1.729231,53.885762],[-1.725431,53.885689],[-1.727185,53.887752],[-1.722631,53.890885],[-1.720597,53.891319],[-1.717251,53.891133],[-1.717272,53.892342],[-1.720887,53.893761],[-1.724938,53.89386],[-1.726955,53.894438],[-1.728603,53.894218],[-1.731085,53.895768],[-1.731,53.897011],[-1.732065,53.89851],[-1.732328,53.89997],[-1.731382,53.90062],[-1.730871,53.901966],[-1.731244,53.902646],[-1.730644,53.9044],[-1.729334,53.906379],[-1.728871,53.908279],[-1.727229,53.908977],[-1.727216,53.910197],[-1.729018,53.910322],[-1.733698,53.911891],[-1.738702,53.912899],[-1.742164,53.91458],[-1.745997,53.918538],[-1.746071,53.920904],[-1.745042,53.922378],[-1.745626,53.923004],[-1.749731,53.922603],[-1.754483,53.921104],[-1.757235,53.92141],[-1.762429,53.924109],[-1.765426,53.924723],[-1.767828,53.924011],[-1.768963,53.921567],[-1.77228,53.920887],[-1.775979,53.921488],[-1.779929,53.925418],[-1.780979,53.927856],[-1.782444,53.929441],[-1.785088,53.929728],[-1.794142,53.929238],[-1.79801,53.929714],[-1.796365,53.930909],[-1.796273,53.933564],[-1.797388,53.934219],[-1.797176,53.935616],[-1.799037,53.936762],[-1.802863,53.935957],[-1.803539,53.93793],[-1.805089,53.939023],[-1.806226,53.938666],[-1.811311,53.938779],[-1.815068,53.93835],[-1.817054,53.938584],[-1.820157,53.938054],[-1.823393,53.938351],[-1.824019,53.939041],[-1.82594,53.938249],[-1.8302,53.938017],[-1.830125,53.940383],[-1.835566,53.939483],[-1.838438,53.939677],[-1.841723,53.939377],[-1.845024,53.939884],[-1.847689,53.940773],[-1.847739,53.938591],[-1.848657,53.936027],[-1.845499,53.935264],[-1.836999,53.932364],[-1.8362,53.93142],[-1.839893,53.931526],[-1.843334,53.932963],[-1.847154,53.9326],[-1.849984,53.931412],[-1.85223,53.930973],[-1.854622,53.931517],[-1.855869,53.932236],[-1.859505,53.932513],[-1.862208,53.933643],[-1.86298,53.934443],[-1.862494,53.937444],[-1.861736,53.939125],[-1.862107,53.940569],[-1.864349,53.941273],[-1.866398,53.942512],[-1.872014,53.943867],[-1.874151,53.945088],[-1.875017,53.946055],[-1.876297,53.948905],[-1.876273,53.951298],[-1.8777,53.953321],[-1.878883,53.954274]]]},"properties":{"LAD22CD":"E08000032","LAD22NM":"Bradford","BNG_E":408395,"BNG_N":438626,"LONG":-1.87389,"LAT":53.84382,"GlobalID":"405ff12c-787d-4945-8ff3-2a8356f63f91"},"id":271}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.770086,53.726252],[-1.771091,53.725428],[-1.772514,53.725197],[-1.773711,53.724356],[-1.774695,53.726688],[-1.776329,53.728294],[-1.778574,53.729654],[-1.779157,53.731567],[-1.77861,53.732107],[-1.779711,53.734084],[-1.778966,53.734791],[-1.779339,53.737085],[-1.781229,53.738059],[-1.781995,53.738871],[-1.785128,53.739828],[-1.784774,53.740859],[-1.78554,53.741991],[-1.788802,53.742501],[-1.789012,53.743239],[-1.791562,53.744168],[-1.7941,53.74549],[-1.795772,53.747944],[-1.794076,53.74857],[-1.793423,53.749289],[-1.794328,53.751552],[-1.794563,53.753051],[-1.798429,53.75465],[-1.801081,53.75494],[-1.801141,53.75558],[-1.802507,53.756681],[-1.801736,53.757329],[-1.802445,53.758854],[-1.802089,53.759328],[-1.805471,53.761453],[-1.806257,53.761596],[-1.809368,53.764381],[-1.812117,53.764259],[-1.812577,53.76387],[-1.815502,53.763793],[-1.820981,53.764209],[-1.823965,53.763746],[-1.825942,53.762988],[-1.827837,53.763733],[-1.832333,53.760896],[-1.834202,53.759281],[-1.836934,53.759685],[-1.837918,53.758254],[-1.839072,53.757513],[-1.840238,53.755629],[-1.844417,53.754956],[-1.846384,53.753236],[-1.848368,53.753543],[-1.850804,53.753431],[-1.852606,53.752657],[-1.854184,53.75105],[-1.852829,53.749529],[-1.855456,53.748308],[-1.856247,53.749923],[-1.855556,53.75082],[-1.859533,53.752224],[-1.862325,53.752395],[-1.863675,53.751149],[-1.864915,53.75131],[-1.865099,53.752724],[-1.866292,53.752414],[-1.868351,53.753329],[-1.869436,53.755267],[-1.871908,53.754823],[-1.872396,53.755711],[-1.869542,53.758264],[-1.869392,53.759734],[-1.87018,53.761232],[-1.872035,53.762773],[-1.871735,53.763692],[-1.87261,53.767785],[-1.871905,53.770116],[-1.872846,53.771044],[-1.87187,53.775346],[-1.873352,53.778595],[-1.874245,53.778826],[-1.878447,53.778856],[-1.880682,53.7799],[-1.885743,53.779927],[-1.887522,53.779623],[-1.888982,53.780884],[-1.895556,53.780894],[-1.914628,53.781588],[-1.926979,53.787489],[-1.929377,53.78761],[-1.947089,53.786806],[-1.95072,53.786012],[-1.959716,53.784271],[-1.980849,53.786353],[-1.986765,53.796151],[-1.995904,53.799621],[-2.009658,53.807102],[-2.018276,53.807697],[-2.027118,53.809021],[-2.031617,53.809103],[-2.031946,53.809749],[-2.03567,53.812597],[-2.036156,53.81397],[-2.036933,53.814556],[-2.050294,53.819875],[-2.061251,53.825635],[-2.084859,53.818554],[-2.092078,53.814092],[-2.096395,53.812478],[-2.102792,53.809305],[-2.112279,53.805708],[-2.126274,53.799483],[-2.128359,53.799031],[-2.127799,53.798265],[-2.127856,53.794663],[-2.129006,53.793677],[-2.129722,53.791632],[-2.129216,53.79092],[-2.125696,53.789653],[-2.124816,53.788055],[-2.127323,53.786112],[-2.130485,53.785138],[-2.132174,53.783414],[-2.135462,53.781248],[-2.136363,53.780104],[-2.135032,53.776843],[-2.131342,53.774409],[-2.130464,53.772389],[-2.130069,53.768284],[-2.130783,53.765162],[-2.130074,53.763087],[-2.131586,53.758067],[-2.129522,53.75459],[-2.131303,53.751376],[-2.134471,53.748935],[-2.136659,53.748404],[-2.138927,53.747425],[-2.141646,53.745741],[-2.141863,53.743907],[-2.141141,53.743248],[-2.140949,53.741807],[-2.143091,53.739116],[-2.144834,53.738986],[-2.143769,53.737339],[-2.145215,53.73687],[-2.145408,53.736055],[-2.147802,53.735393],[-2.148459,53.734216],[-2.152153,53.735325],[-2.153068,53.734458],[-2.156091,53.735324],[-2.156864,53.734904],[-2.156196,53.733666],[-2.156982,53.733159],[-2.159641,53.732908],[-2.16025,53.732322],[-2.163918,53.731263],[-2.165021,53.729841],[-2.166133,53.729103],[-2.166692,53.727811],[-2.170116,53.725615],[-2.171395,53.725215],[-2.173294,53.723012],[-2.169735,53.719418],[-2.171342,53.718837],[-2.171131,53.71808],[-2.171998,53.717165],[-2.169276,53.715736],[-2.166832,53.713513],[-2.165757,53.710197],[-2.164056,53.709171],[-2.162532,53.707252],[-2.162047,53.704366],[-2.162583,53.699221],[-2.161107,53.697665],[-2.150447,53.694588],[-2.145255,53.692295],[-2.147272,53.688855],[-2.148177,53.68612],[-2.146328,53.682232],[-2.144641,53.67948],[-2.142258,53.678006],[-2.141092,53.678973],[-2.139715,53.682809],[-2.137919,53.683884],[-2.135986,53.684477],[-2.134127,53.685734],[-2.132854,53.684397],[-2.129863,53.683103],[-2.127678,53.681557],[-2.126879,53.6796],[-2.126718,53.676881],[-2.125387,53.674838],[-2.118085,53.671245],[-2.114142,53.671138],[-2.09704,53.672626],[-2.096191,53.671594],[-2.092907,53.670161],[-2.090287,53.67097],[-2.087122,53.67081],[-2.086073,53.671934],[-2.084391,53.672962],[-2.083761,53.67593],[-2.084058,53.677665],[-2.083167,53.678075],[-2.080407,53.678344],[-2.077531,53.677442],[-2.075483,53.677257],[-2.073399,53.67751],[-2.071247,53.678864],[-2.06182,53.682844],[-2.06058,53.682694],[-2.056224,53.683141],[-2.055545,53.682663],[-2.051242,53.683692],[-2.048902,53.680227],[-2.050735,53.679516],[-2.053495,53.677892],[-2.054858,53.675663],[-2.054393,53.673032],[-2.052202,53.669448],[-2.04962,53.66878],[-2.048524,53.667689],[-2.044835,53.665469],[-2.037095,53.662343],[-2.03571,53.659328],[-2.035694,53.657618],[-2.036587,53.655313],[-2.040527,53.650918],[-2.039679,53.648983],[-2.040706,53.648378],[-2.041577,53.645418],[-2.04158,53.642487],[-2.041143,53.640845],[-2.036927,53.638198],[-2.029997,53.636169],[-2.029029,53.634224],[-2.029746,53.630837],[-2.030904,53.629218],[-2.026816,53.624167],[-2.026172,53.62242],[-2.02644,53.620805],[-2.024586,53.617395],[-2.023036,53.615839],[-2.018652,53.61597],[-2.014773,53.615349],[-2.009471,53.616779],[-2.00412,53.619493],[-2.004542,53.62241],[-1.993711,53.623923],[-1.986522,53.623927],[-1.979508,53.62306],[-1.972744,53.625773],[-1.966093,53.629415],[-1.964429,53.631794],[-1.963216,53.632731],[-1.957372,53.634139],[-1.947817,53.637372],[-1.941327,53.640777],[-1.935953,53.645194],[-1.934152,53.64834],[-1.929543,53.648344],[-1.92656,53.647599],[-1.91083,53.645596],[-1.906997,53.645426],[-1.905181,53.644955],[-1.903313,53.645089],[-1.897798,53.644651],[-1.894599,53.645422],[-1.894266,53.646627],[-1.892249,53.647941],[-1.892733,53.648516],[-1.882308,53.653852],[-1.875271,53.656902],[-1.875024,53.658069],[-1.873339,53.657887],[-1.868962,53.659183],[-1.867987,53.660165],[-1.867003,53.659506],[-1.864796,53.661056],[-1.863445,53.661069],[-1.862182,53.662148],[-1.860406,53.662688],[-1.855654,53.663459],[-1.852242,53.664206],[-1.852927,53.66481],[-1.849663,53.665947],[-1.847792,53.664536],[-1.843566,53.666122],[-1.847524,53.667755],[-1.849378,53.669172],[-1.851189,53.669673],[-1.851298,53.670419],[-1.853531,53.671889],[-1.851104,53.672812],[-1.842345,53.671897],[-1.841188,53.671376],[-1.838403,53.670887],[-1.835534,53.668975],[-1.831563,53.67019],[-1.827992,53.669856],[-1.825724,53.670256],[-1.818776,53.672912],[-1.815874,53.675608],[-1.812153,53.677602],[-1.809615,53.678384],[-1.804273,53.679397],[-1.803104,53.680164],[-1.795344,53.681365],[-1.789323,53.682797],[-1.787134,53.682489],[-1.78003,53.683591],[-1.778407,53.684533],[-1.774642,53.685575],[-1.769962,53.687725],[-1.765979,53.688763],[-1.763462,53.689048],[-1.760722,53.690422],[-1.7607,53.691509],[-1.759851,53.692677],[-1.751964,53.692959],[-1.747737,53.694529],[-1.746296,53.694468],[-1.743875,53.692296],[-1.741573,53.69137],[-1.740828,53.689816],[-1.740562,53.687064],[-1.738838,53.685399],[-1.736654,53.684789],[-1.735987,53.682475],[-1.732348,53.680516],[-1.731406,53.680362],[-1.730416,53.681654],[-1.727225,53.682811],[-1.732184,53.684581],[-1.731153,53.685552],[-1.734022,53.688082],[-1.735529,53.689685],[-1.733239,53.694805],[-1.737298,53.698184],[-1.738568,53.698368],[-1.739539,53.699455],[-1.736956,53.702278],[-1.738754,53.702336],[-1.738644,53.704105],[-1.739613,53.704474],[-1.73582,53.709097],[-1.736038,53.710291],[-1.738825,53.71216],[-1.737753,53.713021],[-1.735871,53.713243],[-1.736825,53.714132],[-1.741197,53.716916],[-1.743987,53.715614],[-1.744481,53.715834],[-1.744973,53.718263],[-1.747813,53.718932],[-1.748061,53.719468],[-1.75103,53.719721],[-1.755409,53.720736],[-1.755405,53.723115],[-1.753985,53.723097],[-1.753637,53.72586],[-1.756804,53.72617],[-1.759883,53.725261],[-1.765935,53.726314],[-1.770086,53.726252]]]},"properties":{"LAD22CD":"E08000033","LAD22NM":"Calderdale","BNG_E":402617,"BNG_N":424896,"LONG":-1.96182,"LAT":53.72048,"GlobalID":"1e5832f5-89d8-4fbb-aee8-a4e80368bc18"},"id":272}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.681621,53.756469],[-1.686653,53.758091],[-1.686996,53.757685],[-1.690627,53.758398],[-1.689977,53.759944],[-1.693825,53.760706],[-1.695789,53.761781],[-1.697798,53.762426],[-1.701534,53.764066],[-1.702937,53.764079],[-1.70488,53.764848],[-1.709112,53.762471],[-1.710631,53.762853],[-1.714432,53.762458],[-1.713703,53.761712],[-1.717916,53.760447],[-1.719563,53.759524],[-1.722218,53.758834],[-1.725593,53.756159],[-1.726503,53.755056],[-1.726377,53.754302],[-1.727287,53.75286],[-1.728713,53.751595],[-1.730394,53.751301],[-1.731192,53.749915],[-1.733154,53.748979],[-1.733918,53.748199],[-1.733762,53.746922],[-1.740815,53.74791],[-1.747352,53.746691],[-1.745931,53.743692],[-1.747479,53.742731],[-1.74585,53.742304],[-1.747157,53.737992],[-1.745901,53.73449],[-1.749923,53.734239],[-1.754786,53.734707],[-1.760909,53.734645],[-1.761867,53.73279],[-1.763796,53.730211],[-1.765797,53.729146],[-1.766772,53.72816],[-1.769184,53.727264],[-1.770086,53.726252],[-1.765935,53.726314],[-1.759883,53.725261],[-1.756804,53.72617],[-1.753637,53.72586],[-1.753985,53.723097],[-1.755405,53.723115],[-1.755409,53.720736],[-1.75103,53.719721],[-1.748061,53.719468],[-1.747813,53.718932],[-1.744973,53.718263],[-1.744481,53.715834],[-1.743987,53.715614],[-1.741197,53.716916],[-1.736825,53.714132],[-1.735871,53.713243],[-1.737753,53.713021],[-1.738825,53.71216],[-1.736038,53.710291],[-1.73582,53.709097],[-1.739613,53.704474],[-1.738644,53.704105],[-1.738754,53.702336],[-1.736956,53.702278],[-1.739539,53.699455],[-1.738568,53.698368],[-1.737298,53.698184],[-1.733239,53.694805],[-1.735529,53.689685],[-1.734022,53.688082],[-1.731153,53.685552],[-1.732184,53.684581],[-1.727225,53.682811],[-1.730416,53.681654],[-1.731406,53.680362],[-1.732348,53.680516],[-1.735987,53.682475],[-1.736654,53.684789],[-1.738838,53.685399],[-1.740562,53.687064],[-1.740828,53.689816],[-1.741573,53.69137],[-1.743875,53.692296],[-1.746296,53.694468],[-1.747737,53.694529],[-1.751964,53.692959],[-1.759851,53.692677],[-1.7607,53.691509],[-1.760722,53.690422],[-1.763462,53.689048],[-1.765979,53.688763],[-1.769962,53.687725],[-1.774642,53.685575],[-1.778407,53.684533],[-1.78003,53.683591],[-1.787134,53.682489],[-1.789323,53.682797],[-1.795344,53.681365],[-1.803104,53.680164],[-1.804273,53.679397],[-1.809615,53.678384],[-1.812153,53.677602],[-1.815874,53.675608],[-1.818776,53.672912],[-1.825724,53.670256],[-1.827992,53.669856],[-1.831563,53.67019],[-1.835534,53.668975],[-1.838403,53.670887],[-1.841188,53.671376],[-1.842345,53.671897],[-1.851104,53.672812],[-1.853531,53.671889],[-1.851298,53.670419],[-1.851189,53.669673],[-1.849378,53.669172],[-1.847524,53.667755],[-1.843566,53.666122],[-1.847792,53.664536],[-1.849663,53.665947],[-1.852927,53.66481],[-1.852242,53.664206],[-1.855654,53.663459],[-1.860406,53.662688],[-1.862182,53.662148],[-1.863445,53.661069],[-1.864796,53.661056],[-1.867003,53.659506],[-1.867987,53.660165],[-1.868962,53.659183],[-1.873339,53.657887],[-1.875024,53.658069],[-1.875271,53.656902],[-1.882308,53.653852],[-1.892733,53.648516],[-1.892249,53.647941],[-1.894266,53.646627],[-1.894599,53.645422],[-1.897798,53.644651],[-1.903313,53.645089],[-1.905181,53.644955],[-1.906997,53.645426],[-1.91083,53.645596],[-1.92656,53.647599],[-1.929543,53.648344],[-1.934152,53.64834],[-1.935953,53.645194],[-1.941327,53.640777],[-1.947817,53.637372],[-1.957372,53.634139],[-1.963216,53.632731],[-1.964429,53.631794],[-1.966093,53.629415],[-1.972744,53.625773],[-1.979508,53.62306],[-1.986522,53.623927],[-1.993711,53.623923],[-2.004542,53.62241],[-2.00412,53.619493],[-2.009471,53.616779],[-2.008536,53.614811],[-2.007675,53.614376],[-2.007514,53.612535],[-1.999607,53.607943],[-1.995875,53.605115],[-1.994764,53.603387],[-1.990715,53.599476],[-1.981646,53.589338],[-1.978244,53.586788],[-1.971163,53.584156],[-1.966864,53.580017],[-1.956581,53.577571],[-1.953689,53.576031],[-1.953708,53.575686],[-1.950925,53.573638],[-1.95032,53.574165],[-1.9464,53.571506],[-1.944595,53.568686],[-1.942726,53.561641],[-1.928702,53.555585],[-1.925666,53.553189],[-1.924449,53.552554],[-1.921579,53.553],[-1.91937,53.550879],[-1.912885,53.551644],[-1.909621,53.538391],[-1.90889,53.538734],[-1.904275,53.53848],[-1.902114,53.538645],[-1.898356,53.537796],[-1.89411,53.533612],[-1.887046,53.535869],[-1.882687,53.539151],[-1.875854,53.54041],[-1.873493,53.54043],[-1.870647,53.539278],[-1.863429,53.534965],[-1.859536,53.53365],[-1.856647,53.53002],[-1.852379,53.527157],[-1.850625,53.526219],[-1.847036,53.525426],[-1.845684,53.524727],[-1.843991,53.522561],[-1.844244,53.521783],[-1.841821,53.519909],[-1.839535,53.519823],[-1.835265,53.520595],[-1.828929,53.523183],[-1.827151,53.523508],[-1.822747,53.521913],[-1.822229,53.521091],[-1.804283,53.537013],[-1.804103,53.536555],[-1.801256,53.535105],[-1.797431,53.533888],[-1.794637,53.534196],[-1.791703,53.535382],[-1.788596,53.535555],[-1.785348,53.534789],[-1.776811,53.535508],[-1.771784,53.533859],[-1.765495,53.535659],[-1.755819,53.536681],[-1.7425,53.541053],[-1.741556,53.541071],[-1.74011,53.54207],[-1.733097,53.545128],[-1.729208,53.547503],[-1.727249,53.550328],[-1.724408,53.552236],[-1.72636,53.554497],[-1.725266,53.555407],[-1.723178,53.559927],[-1.704127,53.56025],[-1.699037,53.55381],[-1.670602,53.554153],[-1.667401,53.553423],[-1.661911,53.553693],[-1.661754,53.555817],[-1.663931,53.557501],[-1.660869,53.559592],[-1.658049,53.559766],[-1.65656,53.560558],[-1.651884,53.56073],[-1.650798,53.56167],[-1.649694,53.561534],[-1.648235,53.562195],[-1.646577,53.562366],[-1.637805,53.562296],[-1.633492,53.562958],[-1.633301,53.563187],[-1.627041,53.563598],[-1.622835,53.562873],[-1.619404,53.563123],[-1.615632,53.563028],[-1.61644,53.564514],[-1.614395,53.565069],[-1.612165,53.567626],[-1.612157,53.56877],[-1.610808,53.570049],[-1.609658,53.572029],[-1.607191,53.571505],[-1.606189,53.572947],[-1.598373,53.5766],[-1.600266,53.577339],[-1.599674,53.579066],[-1.597988,53.579743],[-1.599286,53.580775],[-1.600704,53.581122],[-1.602311,53.582967],[-1.602573,53.584936],[-1.6004,53.586204],[-1.601752,53.587759],[-1.597969,53.589398],[-1.597676,53.590239],[-1.594932,53.59091],[-1.590855,53.592421],[-1.589632,53.593889],[-1.587979,53.593487],[-1.586506,53.596831],[-1.586143,53.599025],[-1.586617,53.599843],[-1.585192,53.600532],[-1.585618,53.602009],[-1.586899,53.603785],[-1.588073,53.603769],[-1.591151,53.606781],[-1.589939,53.607104],[-1.588107,53.606489],[-1.586453,53.607174],[-1.586089,53.608287],[-1.586868,53.609014],[-1.586689,53.610351],[-1.588469,53.611251],[-1.58947,53.612833],[-1.591633,53.614009],[-1.591911,53.614669],[-1.594665,53.615555],[-1.594229,53.616095],[-1.59571,53.616873],[-1.59853,53.617145],[-1.600698,53.618172],[-1.602358,53.617401],[-1.604219,53.618647],[-1.605452,53.618703],[-1.606096,53.619566],[-1.607514,53.619573],[-1.608222,53.621532],[-1.611867,53.623977],[-1.613676,53.624573],[-1.614572,53.625926],[-1.611958,53.626756],[-1.610276,53.627979],[-1.615693,53.630238],[-1.615637,53.631831],[-1.612139,53.632708],[-1.613584,53.633763],[-1.615797,53.634721],[-1.617192,53.637716],[-1.61944,53.639136],[-1.622037,53.637396],[-1.623165,53.638108],[-1.623768,53.639394],[-1.6226,53.641454],[-1.622198,53.642945],[-1.620781,53.643635],[-1.6192,53.646321],[-1.620834,53.647775],[-1.621816,53.64951],[-1.621621,53.6501],[-1.623374,53.651379],[-1.623979,53.653065],[-1.624745,53.653956],[-1.621596,53.654631],[-1.621323,53.655365],[-1.617772,53.655413],[-1.616742,53.65576],[-1.611125,53.656199],[-1.608483,53.657147],[-1.606307,53.657008],[-1.603149,53.658037],[-1.602251,53.657901],[-1.598459,53.658386],[-1.595233,53.659835],[-1.592592,53.659087],[-1.591848,53.66081],[-1.590309,53.661054],[-1.591415,53.662349],[-1.59123,53.662871],[-1.595138,53.664719],[-1.599115,53.667394],[-1.602879,53.669199],[-1.606717,53.669137],[-1.608495,53.670961],[-1.608025,53.672357],[-1.61028,53.672538],[-1.614094,53.673767],[-1.61472,53.674755],[-1.615217,53.677581],[-1.610818,53.677874],[-1.607502,53.679087],[-1.60505,53.679393],[-1.603532,53.682386],[-1.602229,53.683979],[-1.598838,53.683698],[-1.59588,53.686788],[-1.593078,53.688962],[-1.59192,53.689335],[-1.592303,53.691564],[-1.595493,53.691281],[-1.6025,53.692172],[-1.602158,53.696251],[-1.60137,53.696459],[-1.599578,53.698077],[-1.598376,53.699781],[-1.595814,53.700621],[-1.595018,53.699996],[-1.591227,53.701362],[-1.589918,53.702288],[-1.586466,53.703044],[-1.584206,53.70309],[-1.576465,53.704624],[-1.571122,53.706405],[-1.571024,53.707032],[-1.576791,53.709446],[-1.578573,53.709808],[-1.578561,53.710854],[-1.57978,53.712479],[-1.583382,53.714601],[-1.583704,53.716153],[-1.585167,53.716584],[-1.587792,53.716553],[-1.589852,53.717955],[-1.596985,53.71933],[-1.60158,53.719821],[-1.605456,53.721183],[-1.610476,53.720995],[-1.618166,53.718913],[-1.61954,53.719315],[-1.621448,53.718606],[-1.623372,53.718547],[-1.622904,53.721094],[-1.624942,53.721429],[-1.625262,53.723299],[-1.626871,53.723826],[-1.626676,53.724667],[-1.62914,53.72605],[-1.631852,53.728778],[-1.632723,53.732317],[-1.633702,53.733941],[-1.634514,53.736187],[-1.636314,53.737908],[-1.636288,53.739464],[-1.636813,53.741071],[-1.635864,53.742587],[-1.637754,53.743818],[-1.638719,53.744916],[-1.638645,53.746156],[-1.63954,53.746769],[-1.639674,53.747766],[-1.658444,53.745458],[-1.658368,53.74662],[-1.660841,53.746849],[-1.663968,53.747615],[-1.675664,53.752637],[-1.676709,53.753982],[-1.681621,53.756469]]]},"properties":{"LAD22CD":"E08000034","LAD22NM":"Kirklees","BNG_E":414586,"BNG_N":416223,"LONG":-1.78085,"LAT":53.64233,"GlobalID":"43d4b3be-8c42-4ed6-9d76-3d52333184aa"},"id":273}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.313723,53.904702],[-1.310847,53.905951],[-1.306111,53.906453],[-1.302731,53.907393],[-1.300588,53.907486],[-1.300702,53.908571],[-1.302014,53.909688],[-1.301195,53.914551],[-1.300113,53.917147],[-1.300082,53.919106],[-1.297204,53.921682],[-1.298452,53.921988],[-1.300332,53.920663],[-1.301421,53.921198],[-1.300935,53.922365],[-1.305309,53.921157],[-1.30731,53.921494],[-1.304243,53.924964],[-1.297089,53.926423],[-1.29426,53.926574],[-1.29418,53.927064],[-1.296761,53.928659],[-1.30042,53.929417],[-1.302223,53.927405],[-1.305277,53.927124],[-1.306597,53.924293],[-1.308992,53.924098],[-1.306962,53.934424],[-1.30862,53.934358],[-1.312334,53.935262],[-1.315397,53.935093],[-1.316379,53.935487],[-1.320582,53.936049],[-1.321107,53.937018],[-1.322816,53.936565],[-1.325567,53.937933],[-1.329212,53.937992],[-1.331103,53.938485],[-1.332459,53.939752],[-1.335035,53.939473],[-1.336273,53.938499],[-1.337529,53.940132],[-1.339539,53.94081],[-1.342051,53.940542],[-1.343935,53.939923],[-1.342858,53.943272],[-1.341565,53.943941],[-1.339841,53.945564],[-1.340405,53.945888],[-1.342792,53.944943],[-1.348208,53.944957],[-1.354871,53.943655],[-1.358561,53.941701],[-1.361953,53.941483],[-1.366278,53.941902],[-1.37038,53.943043],[-1.371801,53.942827],[-1.37497,53.940967],[-1.381683,53.940487],[-1.386472,53.94319],[-1.396657,53.941893],[-1.397183,53.942535],[-1.399903,53.941422],[-1.400447,53.940097],[-1.400658,53.9375],[-1.402875,53.936507],[-1.40767,53.936173],[-1.410584,53.931324],[-1.410629,53.930155],[-1.408806,53.929616],[-1.40671,53.92785],[-1.41362,53.928335],[-1.418836,53.928121],[-1.428114,53.92944],[-1.429784,53.928899],[-1.432344,53.927451],[-1.433553,53.926355],[-1.433154,53.924911],[-1.431471,53.923243],[-1.432117,53.920826],[-1.431283,53.916091],[-1.430136,53.913821],[-1.431401,53.913272],[-1.432552,53.911083],[-1.434408,53.910179],[-1.436436,53.91335],[-1.438058,53.914041],[-1.440446,53.913903],[-1.442877,53.912919],[-1.445517,53.909673],[-1.447755,53.908849],[-1.450129,53.907381],[-1.451552,53.907055],[-1.454903,53.907441],[-1.460556,53.906841],[-1.4631,53.906014],[-1.465451,53.907334],[-1.464961,53.909018],[-1.467414,53.910757],[-1.470978,53.911349],[-1.473459,53.91123],[-1.475433,53.911574],[-1.481617,53.910763],[-1.486027,53.910912],[-1.489007,53.911819],[-1.491871,53.91446],[-1.494672,53.915337],[-1.500399,53.915077],[-1.504361,53.913491],[-1.506331,53.912177],[-1.509859,53.911401],[-1.516374,53.911782],[-1.522506,53.911143],[-1.526473,53.909809],[-1.528597,53.908699],[-1.532563,53.908971],[-1.535119,53.909963],[-1.537216,53.910291],[-1.543515,53.910018],[-1.545063,53.910119],[-1.548198,53.910959],[-1.549417,53.9107],[-1.549105,53.908667],[-1.550485,53.906944],[-1.550127,53.904352],[-1.551228,53.903063],[-1.552577,53.903008],[-1.555219,53.904456],[-1.557047,53.904872],[-1.559312,53.904904],[-1.561564,53.903933],[-1.562883,53.90393],[-1.566212,53.909978],[-1.568689,53.910912],[-1.584067,53.909153],[-1.585479,53.907158],[-1.586248,53.904701],[-1.585243,53.902985],[-1.58535,53.901916],[-1.586859,53.901252],[-1.592939,53.901989],[-1.594475,53.902708],[-1.598304,53.903452],[-1.601086,53.905339],[-1.601776,53.906853],[-1.601319,53.907925],[-1.598895,53.90889],[-1.599993,53.909776],[-1.607187,53.908989],[-1.608629,53.908434],[-1.612035,53.906185],[-1.620537,53.903395],[-1.62307,53.903555],[-1.626076,53.90489],[-1.627926,53.905327],[-1.63116,53.905162],[-1.637927,53.905542],[-1.641081,53.907134],[-1.64226,53.907364],[-1.645792,53.907137],[-1.648606,53.905919],[-1.652029,53.905723],[-1.653618,53.906873],[-1.654417,53.908332],[-1.653946,53.909333],[-1.652412,53.910387],[-1.653214,53.911752],[-1.655083,53.912484],[-1.662683,53.913153],[-1.66664,53.912883],[-1.669398,53.911496],[-1.670509,53.91126],[-1.680022,53.910332],[-1.684627,53.910588],[-1.684571,53.911986],[-1.688199,53.911742],[-1.689171,53.912646],[-1.687633,53.914384],[-1.68702,53.916389],[-1.690166,53.916719],[-1.690324,53.917406],[-1.696347,53.917138],[-1.698613,53.916795],[-1.700779,53.917382],[-1.702243,53.91845],[-1.703716,53.918677],[-1.704776,53.918199],[-1.707083,53.919131],[-1.706113,53.917071],[-1.708034,53.917004],[-1.708958,53.918035],[-1.712488,53.917558],[-1.713197,53.917944],[-1.716433,53.917635],[-1.716089,53.917165],[-1.717536,53.913378],[-1.717584,53.911814],[-1.718702,53.910474],[-1.717959,53.908543],[-1.720549,53.909981],[-1.721566,53.911616],[-1.723576,53.911734],[-1.725652,53.910561],[-1.727216,53.910197],[-1.727229,53.908977],[-1.728871,53.908279],[-1.729334,53.906379],[-1.730644,53.9044],[-1.731244,53.902646],[-1.730871,53.901966],[-1.731382,53.90062],[-1.732328,53.89997],[-1.732065,53.89851],[-1.731,53.897011],[-1.731085,53.895768],[-1.728603,53.894218],[-1.726955,53.894438],[-1.724938,53.89386],[-1.720887,53.893761],[-1.717272,53.892342],[-1.717251,53.891133],[-1.720597,53.891319],[-1.722631,53.890885],[-1.727185,53.887752],[-1.725431,53.885689],[-1.729231,53.885762],[-1.729597,53.886365],[-1.735121,53.886989],[-1.737743,53.886649],[-1.742073,53.885425],[-1.74248,53.884878],[-1.749164,53.88572],[-1.750224,53.885163],[-1.756355,53.884706],[-1.757956,53.88514],[-1.763389,53.888803],[-1.767301,53.890217],[-1.767577,53.889812],[-1.770208,53.890237],[-1.773465,53.889029],[-1.779527,53.891192],[-1.77668,53.893852],[-1.787465,53.8969],[-1.794963,53.894628],[-1.800421,53.885962],[-1.798407,53.884748],[-1.794781,53.880482],[-1.784532,53.88049],[-1.78144,53.879427],[-1.780801,53.878807],[-1.778738,53.878572],[-1.779432,53.87651],[-1.778655,53.875621],[-1.779465,53.874356],[-1.778919,53.873988],[-1.778336,53.871863],[-1.775845,53.870555],[-1.773836,53.87036],[-1.771903,53.869328],[-1.772161,53.868718],[-1.769198,53.867989],[-1.769301,53.867249],[-1.767449,53.866777],[-1.7643,53.866968],[-1.763243,53.865902],[-1.761087,53.864855],[-1.760995,53.863847],[-1.759662,53.863692],[-1.757976,53.866608],[-1.754024,53.866032],[-1.753558,53.867473],[-1.744421,53.865589],[-1.746363,53.864132],[-1.746355,53.863379],[-1.742944,53.863346],[-1.738523,53.86445],[-1.738235,53.863611],[-1.736199,53.864123],[-1.733711,53.864198],[-1.731342,53.864833],[-1.72863,53.864981],[-1.728295,53.865772],[-1.725645,53.865668],[-1.724658,53.865069],[-1.720329,53.864878],[-1.71884,53.864134],[-1.716673,53.865106],[-1.715286,53.866245],[-1.712634,53.865116],[-1.710341,53.863495],[-1.708421,53.864302],[-1.708238,53.862568],[-1.70695,53.862129],[-1.706609,53.861077],[-1.705105,53.860284],[-1.702146,53.860548],[-1.702111,53.857844],[-1.699861,53.857775],[-1.699701,53.857176],[-1.696295,53.857643],[-1.695092,53.857538],[-1.695047,53.855336],[-1.69305,53.852963],[-1.694343,53.850042],[-1.695165,53.849486],[-1.696495,53.847334],[-1.70099,53.845399],[-1.702389,53.843357],[-1.70368,53.842348],[-1.70325,53.839964],[-1.705053,53.837121],[-1.703144,53.836354],[-1.704702,53.834465],[-1.703724,53.832538],[-1.704888,53.831817],[-1.704978,53.830833],[-1.706641,53.828581],[-1.705566,53.827657],[-1.706332,53.825654],[-1.704974,53.823184],[-1.708014,53.81569],[-1.707895,53.813653],[-1.706904,53.81256],[-1.708298,53.810094],[-1.706133,53.806496],[-1.706616,53.804081],[-1.701293,53.80252],[-1.703691,53.801808],[-1.708528,53.794303],[-1.711097,53.791629],[-1.70977,53.791172],[-1.707941,53.789925],[-1.707218,53.787967],[-1.707876,53.786695],[-1.711996,53.78307],[-1.701187,53.783493],[-1.697132,53.784217],[-1.693472,53.784343],[-1.691094,53.785101],[-1.688769,53.785325],[-1.688145,53.78578],[-1.6858,53.785284],[-1.682271,53.786415],[-1.681794,53.784968],[-1.680265,53.783547],[-1.677568,53.782325],[-1.67593,53.780434],[-1.674234,53.780005],[-1.672886,53.780139],[-1.667819,53.779227],[-1.664499,53.780113],[-1.661676,53.779679],[-1.659377,53.779659],[-1.656184,53.779983],[-1.65551,53.779733],[-1.651781,53.779862],[-1.647804,53.779537],[-1.644061,53.779598],[-1.640624,53.779976],[-1.640391,53.776293],[-1.641285,53.774098],[-1.641045,53.773391],[-1.642738,53.772376],[-1.646478,53.771422],[-1.647658,53.770109],[-1.649563,53.768996],[-1.649564,53.768198],[-1.653035,53.766525],[-1.65461,53.766519],[-1.656487,53.767248],[-1.659619,53.767258],[-1.662917,53.76675],[-1.663745,53.765087],[-1.665548,53.763844],[-1.669994,53.762136],[-1.67321,53.762039],[-1.675512,53.760608],[-1.677437,53.760149],[-1.677807,53.759413],[-1.681621,53.756469],[-1.676709,53.753982],[-1.675664,53.752637],[-1.663968,53.747615],[-1.660841,53.746849],[-1.658368,53.74662],[-1.658444,53.745458],[-1.639674,53.747766],[-1.63954,53.746769],[-1.638645,53.746156],[-1.638719,53.744916],[-1.637754,53.743818],[-1.635864,53.742587],[-1.636813,53.741071],[-1.636288,53.739464],[-1.636314,53.737908],[-1.634514,53.736187],[-1.633702,53.733941],[-1.632723,53.732317],[-1.631852,53.728778],[-1.62914,53.72605],[-1.626676,53.724667],[-1.626871,53.723826],[-1.625262,53.723299],[-1.624942,53.721429],[-1.622904,53.721094],[-1.623372,53.718547],[-1.621448,53.718606],[-1.61954,53.719315],[-1.618166,53.718913],[-1.610476,53.720995],[-1.605456,53.721183],[-1.60158,53.719821],[-1.596985,53.71933],[-1.589852,53.717955],[-1.587792,53.716553],[-1.585167,53.716584],[-1.583704,53.716153],[-1.583382,53.714601],[-1.57978,53.712479],[-1.578561,53.710854],[-1.578573,53.709808],[-1.576791,53.709446],[-1.571024,53.707032],[-1.571122,53.706405],[-1.566508,53.704078],[-1.564631,53.702771],[-1.564307,53.701685],[-1.562925,53.70146],[-1.559323,53.698984],[-1.557887,53.699979],[-1.557026,53.701364],[-1.555053,53.70322],[-1.553955,53.702431],[-1.552088,53.705505],[-1.547142,53.710137],[-1.540674,53.713154],[-1.53398,53.714958],[-1.532746,53.716232],[-1.51866,53.723849],[-1.513222,53.727534],[-1.511215,53.729406],[-1.510396,53.72969],[-1.505634,53.729149],[-1.505963,53.727043],[-1.503786,53.726912],[-1.501872,53.725804],[-1.504377,53.725001],[-1.501552,53.723756],[-1.4988,53.723434],[-1.495728,53.722308],[-1.491421,53.722167],[-1.489264,53.723119],[-1.488298,53.727757],[-1.461729,53.727985],[-1.457173,53.72741],[-1.454567,53.728101],[-1.44315,53.728227],[-1.439076,53.727359],[-1.434625,53.725683],[-1.429121,53.721651],[-1.428257,53.721342],[-1.425192,53.722874],[-1.423093,53.72353],[-1.421973,53.723454],[-1.419679,53.722105],[-1.416394,53.722274],[-1.411978,53.723104],[-1.406786,53.721705],[-1.401538,53.719674],[-1.398951,53.719388],[-1.397354,53.720189],[-1.396158,53.722762],[-1.394487,53.723777],[-1.381712,53.726623],[-1.376074,53.729499],[-1.37412,53.729815],[-1.369737,53.729404],[-1.367949,53.729615],[-1.361024,53.731936],[-1.357804,53.731448],[-1.356481,53.731525],[-1.340083,53.736357],[-1.338277,53.736495],[-1.333366,53.735667],[-1.329298,53.736615],[-1.326492,53.736143],[-1.324394,53.734946],[-1.323087,53.734824],[-1.320253,53.735691],[-1.315917,53.739734],[-1.31379,53.740954],[-1.311607,53.741002],[-1.309761,53.739576],[-1.308204,53.739105],[-1.302043,53.741725],[-1.303831,53.741895],[-1.307226,53.74274],[-1.310036,53.744538],[-1.311576,53.744557],[-1.315357,53.743681],[-1.312803,53.749547],[-1.312833,53.751179],[-1.312089,53.75218],[-1.312616,53.754163],[-1.312239,53.755888],[-1.308509,53.756495],[-1.307736,53.755144],[-1.305563,53.754735],[-1.3015,53.755735],[-1.298273,53.755614],[-1.297532,53.755837],[-1.294942,53.755463],[-1.294697,53.756278],[-1.296749,53.758954],[-1.292699,53.760148],[-1.291968,53.761415],[-1.290416,53.763079],[-1.290399,53.764267],[-1.291962,53.767194],[-1.296362,53.771863],[-1.298651,53.772635],[-1.306788,53.773044],[-1.303464,53.774928],[-1.312598,53.779298],[-1.311604,53.779699],[-1.313811,53.781556],[-1.313636,53.78609],[-1.311644,53.788678],[-1.312827,53.789364],[-1.311729,53.795447],[-1.313624,53.800881],[-1.314168,53.804858],[-1.313942,53.806828],[-1.314602,53.807783],[-1.314872,53.809557],[-1.313625,53.809658],[-1.312435,53.814376],[-1.309392,53.813708],[-1.307602,53.813632],[-1.307293,53.814513],[-1.305106,53.815051],[-1.303624,53.816536],[-1.307092,53.817618],[-1.310399,53.819918],[-1.309674,53.822895],[-1.314029,53.823154],[-1.315369,53.8236],[-1.322314,53.827454],[-1.328304,53.830132],[-1.332773,53.832791],[-1.334021,53.83381],[-1.333499,53.834816],[-1.331799,53.834849],[-1.32974,53.835825],[-1.327379,53.834873],[-1.326001,53.835893],[-1.325422,53.838135],[-1.326557,53.840423],[-1.328157,53.841295],[-1.332344,53.840959],[-1.338225,53.844244],[-1.342138,53.845173],[-1.340461,53.849104],[-1.338429,53.851744],[-1.34275,53.851518],[-1.347015,53.854192],[-1.349435,53.854987],[-1.35297,53.856751],[-1.349926,53.857635],[-1.341971,53.858957],[-1.331554,53.861535],[-1.323262,53.861673],[-1.318893,53.862287],[-1.315414,53.863342],[-1.312603,53.865317],[-1.311784,53.866875],[-1.314797,53.868672],[-1.318408,53.877474],[-1.317082,53.878484],[-1.319693,53.878958],[-1.31576,53.879491],[-1.315607,53.881682],[-1.320805,53.883788],[-1.319997,53.885398],[-1.32002,53.888528],[-1.317954,53.88875],[-1.317547,53.890146],[-1.317931,53.891849],[-1.316777,53.892026],[-1.317823,53.894084],[-1.317731,53.896349],[-1.318145,53.897544],[-1.322271,53.900457],[-1.321786,53.901169],[-1.321782,53.902921],[-1.319484,53.903965],[-1.313723,53.904702]]]},"properties":{"LAD22CD":"E08000035","LAD22NM":"Leeds","BNG_E":432528,"BNG_N":436384,"LONG":-1.50736,"LAT":53.82273,"GlobalID":"daee6c4b-1279-4c29-9c18-ea7f7b6320c5"},"id":274}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.232844,53.621112],[-1.238058,53.626854],[-1.24269,53.633579],[-1.250642,53.638798],[-1.253662,53.641199],[-1.254953,53.643331],[-1.255369,53.644796],[-1.255217,53.648963],[-1.251684,53.648401],[-1.248777,53.649631],[-1.25116,53.651629],[-1.246961,53.655615],[-1.247971,53.656231],[-1.252297,53.661773],[-1.251192,53.662585],[-1.25232,53.666656],[-1.251766,53.667979],[-1.250219,53.669388],[-1.248781,53.671621],[-1.24655,53.672264],[-1.245162,53.673359],[-1.243958,53.67325],[-1.242432,53.680484],[-1.244417,53.69243],[-1.234729,53.692724],[-1.209768,53.694506],[-1.199016,53.694888],[-1.199062,53.696974],[-1.199678,53.698726],[-1.198818,53.700733],[-1.201212,53.701838],[-1.203986,53.702121],[-1.215131,53.70549],[-1.215642,53.706945],[-1.218443,53.707096],[-1.218796,53.709311],[-1.217836,53.709545],[-1.217139,53.711249],[-1.219812,53.714419],[-1.221729,53.712859],[-1.224635,53.712352],[-1.223975,53.710618],[-1.226541,53.709883],[-1.228009,53.710454],[-1.227593,53.71288],[-1.228756,53.714578],[-1.229573,53.714905],[-1.238675,53.712396],[-1.242805,53.712317],[-1.247988,53.711725],[-1.252941,53.712829],[-1.254253,53.712694],[-1.256343,53.71177],[-1.257701,53.711852],[-1.263591,53.71405],[-1.268517,53.714909],[-1.269511,53.715783],[-1.269496,53.717887],[-1.270567,53.720134],[-1.270935,53.723294],[-1.271962,53.724924],[-1.273073,53.725669],[-1.276119,53.7259],[-1.277684,53.726515],[-1.279712,53.729303],[-1.283764,53.732012],[-1.286657,53.735387],[-1.289216,53.736656],[-1.292174,53.738864],[-1.293668,53.739362],[-1.296471,53.739601],[-1.299742,53.741646],[-1.302043,53.741725],[-1.308204,53.739105],[-1.309761,53.739576],[-1.311607,53.741002],[-1.31379,53.740954],[-1.315917,53.739734],[-1.320253,53.735691],[-1.323087,53.734824],[-1.324394,53.734946],[-1.326492,53.736143],[-1.329298,53.736615],[-1.333366,53.735667],[-1.338277,53.736495],[-1.340083,53.736357],[-1.356481,53.731525],[-1.357804,53.731448],[-1.361024,53.731936],[-1.367949,53.729615],[-1.369737,53.729404],[-1.37412,53.729815],[-1.376074,53.729499],[-1.381712,53.726623],[-1.394487,53.723777],[-1.396158,53.722762],[-1.397354,53.720189],[-1.398951,53.719388],[-1.401538,53.719674],[-1.406786,53.721705],[-1.411978,53.723104],[-1.416394,53.722274],[-1.419679,53.722105],[-1.421973,53.723454],[-1.423093,53.72353],[-1.425192,53.722874],[-1.428257,53.721342],[-1.429121,53.721651],[-1.434625,53.725683],[-1.439076,53.727359],[-1.44315,53.728227],[-1.454567,53.728101],[-1.457173,53.72741],[-1.461729,53.727985],[-1.488298,53.727757],[-1.489264,53.723119],[-1.491421,53.722167],[-1.495728,53.722308],[-1.4988,53.723434],[-1.501552,53.723756],[-1.504377,53.725001],[-1.501872,53.725804],[-1.503786,53.726912],[-1.505963,53.727043],[-1.505634,53.729149],[-1.510396,53.72969],[-1.511215,53.729406],[-1.513222,53.727534],[-1.51866,53.723849],[-1.532746,53.716232],[-1.53398,53.714958],[-1.540674,53.713154],[-1.547142,53.710137],[-1.552088,53.705505],[-1.553955,53.702431],[-1.555053,53.70322],[-1.557026,53.701364],[-1.557887,53.699979],[-1.559323,53.698984],[-1.562925,53.70146],[-1.564307,53.701685],[-1.564631,53.702771],[-1.566508,53.704078],[-1.571122,53.706405],[-1.576465,53.704624],[-1.584206,53.70309],[-1.586466,53.703044],[-1.589918,53.702288],[-1.591227,53.701362],[-1.595018,53.699996],[-1.595814,53.700621],[-1.598376,53.699781],[-1.599578,53.698077],[-1.60137,53.696459],[-1.602158,53.696251],[-1.6025,53.692172],[-1.595493,53.691281],[-1.592303,53.691564],[-1.59192,53.689335],[-1.593078,53.688962],[-1.59588,53.686788],[-1.598838,53.683698],[-1.602229,53.683979],[-1.603532,53.682386],[-1.60505,53.679393],[-1.607502,53.679087],[-1.610818,53.677874],[-1.615217,53.677581],[-1.61472,53.674755],[-1.614094,53.673767],[-1.61028,53.672538],[-1.608025,53.672357],[-1.608495,53.670961],[-1.606717,53.669137],[-1.602879,53.669199],[-1.599115,53.667394],[-1.595138,53.664719],[-1.59123,53.662871],[-1.591415,53.662349],[-1.590309,53.661054],[-1.591848,53.66081],[-1.592592,53.659087],[-1.595233,53.659835],[-1.598459,53.658386],[-1.602251,53.657901],[-1.603149,53.658037],[-1.606307,53.657008],[-1.608483,53.657147],[-1.611125,53.656199],[-1.616742,53.65576],[-1.617772,53.655413],[-1.621323,53.655365],[-1.621596,53.654631],[-1.624745,53.653956],[-1.623979,53.653065],[-1.623374,53.651379],[-1.621621,53.6501],[-1.621816,53.64951],[-1.620834,53.647775],[-1.6192,53.646321],[-1.620781,53.643635],[-1.622198,53.642945],[-1.6226,53.641454],[-1.623768,53.639394],[-1.623165,53.638108],[-1.622037,53.637396],[-1.61944,53.639136],[-1.617192,53.637716],[-1.615797,53.634721],[-1.613584,53.633763],[-1.612139,53.632708],[-1.615637,53.631831],[-1.615693,53.630238],[-1.610276,53.627979],[-1.611958,53.626756],[-1.614572,53.625926],[-1.613676,53.624573],[-1.611867,53.623977],[-1.608222,53.621532],[-1.607514,53.619573],[-1.606096,53.619566],[-1.605452,53.618703],[-1.604219,53.618647],[-1.602358,53.617401],[-1.600698,53.618172],[-1.59853,53.617145],[-1.59571,53.616873],[-1.594229,53.616095],[-1.594665,53.615555],[-1.591911,53.614669],[-1.591633,53.614009],[-1.58947,53.612833],[-1.588469,53.611251],[-1.586689,53.610351],[-1.586868,53.609014],[-1.586089,53.608287],[-1.586453,53.607174],[-1.584553,53.605898],[-1.583532,53.60562],[-1.580441,53.606101],[-1.577205,53.607536],[-1.571985,53.608609],[-1.566155,53.606658],[-1.562918,53.60771],[-1.560453,53.607552],[-1.558735,53.606902],[-1.55707,53.605184],[-1.550705,53.604351],[-1.548983,53.603157],[-1.546548,53.602257],[-1.546438,53.601245],[-1.544663,53.599479],[-1.542952,53.599265],[-1.54118,53.597683],[-1.53981,53.597512],[-1.537927,53.595196],[-1.536555,53.595177],[-1.536431,53.593763],[-1.533385,53.593655],[-1.529833,53.594069],[-1.528381,53.597033],[-1.524353,53.597722],[-1.518671,53.599719],[-1.517739,53.598637],[-1.512904,53.597002],[-1.510871,53.597214],[-1.508048,53.5983],[-1.507225,53.597692],[-1.501389,53.599833],[-1.496563,53.597374],[-1.49512,53.60319],[-1.491581,53.602769],[-1.492911,53.598959],[-1.492134,53.596993],[-1.489493,53.596241],[-1.485089,53.597001],[-1.484313,53.594958],[-1.482907,53.595107],[-1.481258,53.596335],[-1.479287,53.596953],[-1.47857,53.59836],[-1.47486,53.600094],[-1.473996,53.601405],[-1.472954,53.600834],[-1.46042,53.606037],[-1.459073,53.606202],[-1.455507,53.6077],[-1.44804,53.611694],[-1.446852,53.612617],[-1.444647,53.610527],[-1.441876,53.60944],[-1.439193,53.607062],[-1.436557,53.606547],[-1.435546,53.608113],[-1.43426,53.608111],[-1.432925,53.608942],[-1.430071,53.606815],[-1.428784,53.604998],[-1.424896,53.604484],[-1.423278,53.603497],[-1.421618,53.603193],[-1.415294,53.603279],[-1.412755,53.601303],[-1.405961,53.601059],[-1.405251,53.600408],[-1.401816,53.600235],[-1.400185,53.598668],[-1.396136,53.599831],[-1.392769,53.601423],[-1.384179,53.603757],[-1.381602,53.605445],[-1.379024,53.606594],[-1.376703,53.606478],[-1.374463,53.605497],[-1.371425,53.604894],[-1.363845,53.601806],[-1.360227,53.598628],[-1.359927,53.59682],[-1.35612,53.595366],[-1.354621,53.592116],[-1.356373,53.588985],[-1.354591,53.586217],[-1.3539,53.583404],[-1.351434,53.581081],[-1.348734,53.583348],[-1.347768,53.584188],[-1.346407,53.58399],[-1.34115,53.582418],[-1.340303,53.581825],[-1.337909,53.58114],[-1.336344,53.581052],[-1.335,53.579998],[-1.333206,53.579409],[-1.328282,53.579133],[-1.326415,53.579325],[-1.324873,53.579913],[-1.322125,53.579653],[-1.318431,53.577473],[-1.314173,53.576716],[-1.311772,53.576671],[-1.309979,53.575781],[-1.30782,53.575367],[-1.298644,53.577455],[-1.296814,53.577971],[-1.292603,53.579824],[-1.291042,53.579845],[-1.28825,53.580732],[-1.286035,53.582374],[-1.282286,53.58302],[-1.280101,53.584286],[-1.27934,53.585397],[-1.277816,53.586045],[-1.279402,53.587626],[-1.276694,53.589979],[-1.275378,53.589748],[-1.272895,53.590135],[-1.2694,53.59008],[-1.2682,53.589497],[-1.264221,53.591322],[-1.262836,53.590833],[-1.262204,53.591574],[-1.258028,53.591997],[-1.256727,53.593055],[-1.258058,53.594856],[-1.252911,53.597117],[-1.254838,53.596924],[-1.25779,53.59834],[-1.257638,53.599852],[-1.25399,53.600666],[-1.250258,53.601113],[-1.250611,53.599794],[-1.24721,53.600705],[-1.248959,53.601933],[-1.250692,53.604039],[-1.2522,53.607113],[-1.244865,53.608163],[-1.24825,53.616353],[-1.244131,53.617099],[-1.236557,53.617047],[-1.233335,53.616669],[-1.229174,53.616876],[-1.228483,53.617531],[-1.229505,53.618955],[-1.231233,53.61886],[-1.232844,53.621112]]]},"properties":{"LAD22CD":"E08000036","LAD22NM":"Wakefield","BNG_E":438366,"BNG_N":418235,"LONG":-1.42092,"LAT":53.65922,"GlobalID":"f0861669-9651-4739-ad33-c0fd92dbefcf"},"id":275}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.534215,54.964987],[-1.533931,54.964559],[-1.535322,54.962287],[-1.536541,54.961291],[-1.538227,54.960656],[-1.542138,54.96031],[-1.544717,54.96039],[-1.54784,54.959905],[-1.549535,54.958977],[-1.552433,54.958037],[-1.556018,54.958505],[-1.558511,54.959634],[-1.562851,54.96222],[-1.568255,54.963874],[-1.57207,54.964078],[-1.576447,54.963316],[-1.580418,54.964158],[-1.58275,54.965433],[-1.588055,54.969189],[-1.591035,54.969852],[-1.59409,54.969928],[-1.598143,54.96944],[-1.604558,54.967937],[-1.610008,54.965627],[-1.614324,54.963202],[-1.615203,54.962267],[-1.619559,54.960632],[-1.629671,54.95786],[-1.631978,54.956956],[-1.634935,54.956938],[-1.637393,54.957833],[-1.641738,54.957967],[-1.642742,54.958494],[-1.648341,54.95937],[-1.649005,54.958867],[-1.659564,54.961944],[-1.670733,54.96348],[-1.676317,54.96396],[-1.67909,54.963307],[-1.683355,54.964141],[-1.690305,54.9662],[-1.69742,54.969484],[-1.701471,54.970291],[-1.703232,54.970277],[-1.705752,54.969788],[-1.707712,54.967035],[-1.709764,54.966198],[-1.718858,54.966791],[-1.723235,54.967928],[-1.726875,54.96966],[-1.728031,54.971281],[-1.727378,54.973781],[-1.728494,54.974986],[-1.746743,54.981054],[-1.750488,54.981833],[-1.753401,54.981975],[-1.763996,54.980201],[-1.772542,54.980523],[-1.776206,54.981159],[-1.784771,54.98385],[-1.784892,54.984255],[-1.788515,54.984267],[-1.792755,54.9833],[-1.7963,54.981685],[-1.799323,54.979822],[-1.80267,54.978762],[-1.803713,54.978118],[-1.807831,54.97749],[-1.812808,54.976286],[-1.813045,54.97471],[-1.811664,54.972738],[-1.812559,54.972011],[-1.812347,54.97108],[-1.81395,54.969327],[-1.815969,54.968851],[-1.81504,54.967927],[-1.819005,54.966154],[-1.820056,54.966376],[-1.822009,54.965638],[-1.822454,54.963838],[-1.823269,54.962819],[-1.824427,54.962441],[-1.822771,54.960357],[-1.824079,54.959206],[-1.822533,54.956496],[-1.822923,54.955747],[-1.824362,54.955131],[-1.825294,54.955691],[-1.827147,54.955257],[-1.828764,54.955393],[-1.831276,54.954743],[-1.832889,54.953316],[-1.833774,54.951243],[-1.832039,54.949731],[-1.832202,54.949134],[-1.831173,54.947804],[-1.829607,54.946694],[-1.829775,54.945837],[-1.8312,54.944856],[-1.827076,54.941669],[-1.825152,54.940956],[-1.824477,54.939392],[-1.825687,54.937594],[-1.827166,54.936569],[-1.826521,54.934193],[-1.825626,54.933668],[-1.827288,54.931213],[-1.827105,54.930202],[-1.833497,54.9305],[-1.841149,54.929725],[-1.841604,54.927991],[-1.843997,54.927045],[-1.844366,54.925902],[-1.846741,54.922715],[-1.848532,54.920935],[-1.851893,54.918751],[-1.851952,54.91745],[-1.850445,54.915202],[-1.8489,54.914478],[-1.844988,54.914214],[-1.842379,54.913331],[-1.839672,54.913147],[-1.836365,54.912077],[-1.833969,54.911569],[-1.831189,54.910622],[-1.82664,54.910094],[-1.826797,54.909607],[-1.823597,54.90801],[-1.822071,54.906096],[-1.820641,54.905778],[-1.819256,54.90592],[-1.81665,54.905348],[-1.814817,54.90534],[-1.810496,54.906649],[-1.807384,54.907249],[-1.805806,54.906245],[-1.805759,54.905227],[-1.804617,54.904556],[-1.80277,54.904582],[-1.800073,54.9061],[-1.798826,54.905664],[-1.796222,54.9037],[-1.794101,54.903949],[-1.794009,54.905187],[-1.791106,54.908018],[-1.791109,54.908737],[-1.785813,54.909119],[-1.782464,54.910037],[-1.781757,54.911543],[-1.776419,54.909972],[-1.772703,54.907855],[-1.769252,54.906715],[-1.768108,54.906921],[-1.768245,54.908923],[-1.766396,54.909563],[-1.765359,54.908555],[-1.76207,54.908304],[-1.76022,54.90907],[-1.759875,54.910791],[-1.757086,54.911576],[-1.755432,54.912657],[-1.751861,54.91654],[-1.750572,54.91742],[-1.748312,54.91767],[-1.746218,54.916508],[-1.742403,54.917375],[-1.739626,54.916839],[-1.737591,54.9187],[-1.734161,54.918169],[-1.730985,54.916436],[-1.727713,54.912783],[-1.728032,54.911504],[-1.727636,54.910399],[-1.725862,54.909714],[-1.724908,54.9088],[-1.72306,54.910133],[-1.721204,54.908239],[-1.719206,54.908009],[-1.717018,54.908436],[-1.716416,54.907751],[-1.713297,54.908829],[-1.710389,54.909137],[-1.700578,54.909286],[-1.698765,54.908872],[-1.698487,54.908067],[-1.6967,54.906643],[-1.69757,54.906234],[-1.695657,54.904727],[-1.693998,54.904118],[-1.693391,54.903222],[-1.690573,54.902666],[-1.690769,54.904614],[-1.689158,54.905761],[-1.68955,54.906517],[-1.687655,54.907917],[-1.683477,54.908539],[-1.681951,54.907797],[-1.676353,54.909422],[-1.674778,54.90956],[-1.676844,54.903437],[-1.677974,54.901775],[-1.678134,54.899845],[-1.67659,54.899103],[-1.675255,54.897942],[-1.669232,54.895651],[-1.665559,54.895211],[-1.663045,54.895943],[-1.66138,54.894275],[-1.659308,54.893168],[-1.659951,54.890664],[-1.656497,54.890765],[-1.655854,54.892143],[-1.65351,54.893006],[-1.650012,54.893626],[-1.64848,54.891736],[-1.647349,54.888602],[-1.646621,54.888396],[-1.646593,54.885591],[-1.64798,54.885485],[-1.647753,54.884162],[-1.646719,54.882728],[-1.646346,54.881395],[-1.64762,54.880951],[-1.650655,54.880744],[-1.650982,54.879667],[-1.64901,54.879559],[-1.64543,54.878811],[-1.64369,54.878804],[-1.639973,54.8798],[-1.639195,54.88069],[-1.636599,54.881019],[-1.634973,54.88254],[-1.631536,54.883996],[-1.631116,54.884833],[-1.629083,54.88476],[-1.627411,54.886447],[-1.623572,54.887368],[-1.622261,54.886715],[-1.621201,54.887476],[-1.618744,54.887059],[-1.618985,54.888715],[-1.618319,54.890134],[-1.61649,54.891077],[-1.611915,54.895287],[-1.610261,54.895346],[-1.606894,54.897077],[-1.607102,54.898407],[-1.605164,54.898222],[-1.600948,54.898725],[-1.600711,54.899841],[-1.597703,54.901583],[-1.594165,54.902019],[-1.593649,54.900859],[-1.591821,54.899794],[-1.589707,54.896237],[-1.588536,54.895467],[-1.588194,54.894457],[-1.586293,54.894163],[-1.58397,54.892821],[-1.584041,54.89165],[-1.582716,54.888835],[-1.57991,54.87777],[-1.575877,54.878298],[-1.575912,54.878954],[-1.57148,54.879372],[-1.568071,54.880472],[-1.562011,54.88084],[-1.559411,54.882037],[-1.558592,54.884378],[-1.556129,54.884796],[-1.558156,54.885649],[-1.558655,54.886426],[-1.558528,54.888191],[-1.557219,54.888191],[-1.557062,54.890983],[-1.558521,54.891481],[-1.558196,54.90266],[-1.559782,54.902938],[-1.561612,54.904566],[-1.562785,54.905089],[-1.560092,54.906332],[-1.558673,54.906518],[-1.55707,54.907895],[-1.55708,54.909211],[-1.560037,54.914592],[-1.563133,54.917093],[-1.565542,54.920066],[-1.567155,54.923194],[-1.568892,54.924625],[-1.556705,54.929978],[-1.553266,54.92769],[-1.552171,54.928461],[-1.547133,54.930625],[-1.543053,54.931383],[-1.535687,54.932104],[-1.532574,54.931362],[-1.530721,54.932577],[-1.528578,54.933134],[-1.524687,54.933155],[-1.519024,54.931125],[-1.517244,54.930781],[-1.514519,54.931715],[-1.512089,54.932114],[-1.511218,54.931666],[-1.510365,54.932104],[-1.512366,54.936821],[-1.516344,54.94538],[-1.518063,54.947048],[-1.518567,54.952175],[-1.515218,54.956058],[-1.51533,54.95735],[-1.516225,54.958138],[-1.518983,54.959265],[-1.519644,54.957555],[-1.522413,54.957386],[-1.526354,54.958084],[-1.527782,54.957124],[-1.5307,54.957978],[-1.529347,54.963355],[-1.531505,54.964475],[-1.534215,54.964987]]]},"properties":{"LAD22CD":"E08000037","LAD22NM":"Gateshead","BNG_E":420158,"BNG_N":559652,"LONG":-1.68696,"LAT":54.93115,"GlobalID":"1ee1ddb9-9138-40af-913b-1f8ea8bf4e51"},"id":276}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.085192,51.520336],[-0.086201,51.518811],[-0.089981,51.519973],[-0.089674,51.520718],[-0.094319,51.521485],[-0.095063,51.523139],[-0.097945,51.522877],[-0.097383,51.521594],[-0.097653,51.520723],[-0.100254,51.520131],[-0.105322,51.518545],[-0.107807,51.517767],[-0.113795,51.518259],[-0.111581,51.51534],[-0.111076,51.513827],[-0.112389,51.51277],[-0.111477,51.510834],[-0.099874,51.510827],[-0.095231,51.51018],[-0.09192,51.509415],[-0.088643,51.508971],[-0.080313,51.508075],[-0.079461,51.507824],[-0.078815,51.509461],[-0.076212,51.51056],[-0.075518,51.509736],[-0.072813,51.510237],[-0.073052,51.511808],[-0.074003,51.514478],[-0.076877,51.51663],[-0.078174,51.518471],[-0.079413,51.518885],[-0.078534,51.521505],[-0.081041,51.521973],[-0.081773,51.520745],[-0.083123,51.519852],[-0.085192,51.520336]]]},"properties":{"LAD22CD":"E09000001","LAD22NM":"City of London","BNG_E":532381,"BNG_N":181359,"LONG":-0.09353,"LAT":51.51565,"GlobalID":"ca161e31-08ce-4319-abd9-f0a8928a49a7"},"id":277}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.075651,51.52983],[0.075342,51.531204],[0.072889,51.533491],[0.07294,51.534513],[0.071025,51.537143],[0.070494,51.538459],[0.069058,51.538838],[0.069399,51.54028],[0.068451,51.540745],[0.06859,51.542091],[0.069344,51.544154],[0.068352,51.544392],[0.066882,51.541749],[0.066993,51.53961],[0.068915,51.537189],[0.069204,51.536348],[0.071756,51.532907],[0.072598,51.530752],[0.07348,51.529443],[0.074567,51.529693],[0.075651,51.52983]]],[[[0.15867,51.512233],[0.159179,51.514516],[0.162287,51.52137],[0.162331,51.52234],[0.164449,51.527014],[0.165963,51.528793],[0.168694,51.531191],[0.17079,51.532626],[0.17381,51.537408],[0.175035,51.538495],[0.17923,51.54029],[0.180397,51.544113],[0.182593,51.54584],[0.186013,51.547535],[0.187496,51.550202],[0.189598,51.551457],[0.190169,51.552721],[0.187877,51.554098],[0.186922,51.555793],[0.18504,51.556785],[0.184413,51.557659],[0.184792,51.559875],[0.182665,51.561247],[0.183999,51.563857],[0.183508,51.564636],[0.17866,51.564942],[0.1763,51.564716],[0.173415,51.5651],[0.168624,51.563603],[0.166368,51.563272],[0.161897,51.561608],[0.154361,51.566112],[0.151301,51.568087],[0.150415,51.567842],[0.148736,51.568638],[0.146703,51.568797],[0.146675,51.569431],[0.149736,51.56971],[0.148988,51.573149],[0.147944,51.573124],[0.148031,51.575789],[0.147012,51.575708],[0.147452,51.580813],[0.148564,51.580774],[0.150973,51.583829],[0.151276,51.589884],[0.150619,51.591374],[0.151137,51.595451],[0.149882,51.597015],[0.147649,51.596797],[0.148206,51.598968],[0.1466,51.599436],[0.137595,51.593894],[0.129579,51.590048],[0.131022,51.587524],[0.126386,51.586725],[0.12726,51.58393],[0.128084,51.582857],[0.127759,51.581636],[0.132555,51.581307],[0.133564,51.579953],[0.130824,51.579365],[0.131643,51.577085],[0.129194,51.576312],[0.129447,51.573952],[0.130906,51.573339],[0.131577,51.571826],[0.129907,51.571538],[0.130459,51.570282],[0.129324,51.566525],[0.12768,51.566161],[0.125029,51.564341],[0.119052,51.563052],[0.119742,51.562506],[0.117487,51.55918],[0.120491,51.558573],[0.118901,51.557371],[0.117085,51.556912],[0.113273,51.557267],[0.112737,51.556525],[0.114748,51.555323],[0.111139,51.552485],[0.108423,51.552696],[0.104316,51.549842],[0.099768,51.548427],[0.093523,51.545859],[0.092268,51.548637],[0.091537,51.548303],[0.085892,51.547344],[0.08166,51.545585],[0.081512,51.54517],[0.07796,51.544052],[0.07681,51.544585],[0.075549,51.544011],[0.071957,51.543811],[0.069711,51.544066],[0.068928,51.542062],[0.069926,51.540846],[0.069467,51.538975],[0.070451,51.539097],[0.071305,51.537228],[0.073962,51.533197],[0.075479,51.531913],[0.076402,51.529816],[0.07809,51.52967],[0.08109,51.527719],[0.083346,51.527115],[0.085782,51.525994],[0.088859,51.526858],[0.090543,51.526092],[0.09217,51.526726],[0.093283,51.524688],[0.092829,51.522627],[0.095742,51.520107],[0.095314,51.518914],[0.09562,51.516988],[0.099055,51.514948],[0.106635,51.513952],[0.108826,51.514166],[0.114464,51.515742],[0.114287,51.515983],[0.118992,51.518147],[0.122648,51.519087],[0.126742,51.519571],[0.132433,51.518832],[0.133204,51.519085],[0.136279,51.518557],[0.139287,51.517618],[0.143745,51.515057],[0.145506,51.515141],[0.145847,51.514324],[0.151713,51.512748],[0.15808,51.512005],[0.15867,51.512233]]]]},"properties":{"LAD22CD":"E09000002","LAD22NM":"Barking and Dagenham","BNG_E":547757,"BNG_N":185111,"LONG":0.129479,"LAT":51.54555,"GlobalID":"02beafdb-e414-4111-a64c-54b43bf278a2"},"id":278}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.182086,51.668604],[-0.185804,51.66851],[-0.187791,51.667879],[-0.191067,51.663897],[-0.192531,51.664749],[-0.196665,51.665482],[-0.194852,51.668305],[-0.199005,51.668207],[-0.199872,51.67017],[-0.203353,51.670126],[-0.202609,51.669315],[-0.20223,51.667805],[-0.205635,51.668601],[-0.20796,51.666594],[-0.209839,51.667563],[-0.211134,51.666955],[-0.207864,51.662861],[-0.212135,51.661354],[-0.213393,51.662378],[-0.218895,51.660062],[-0.219801,51.660661],[-0.226044,51.657626],[-0.228058,51.658591],[-0.228919,51.659976],[-0.234228,51.658253],[-0.234707,51.659001],[-0.236678,51.658775],[-0.237971,51.657789],[-0.240994,51.656836],[-0.243625,51.656689],[-0.247866,51.655248],[-0.249348,51.656058],[-0.25125,51.655539],[-0.249856,51.654615],[-0.251557,51.647953],[-0.25449,51.64368],[-0.256172,51.643492],[-0.257354,51.64184],[-0.260449,51.642539],[-0.261605,51.643992],[-0.263272,51.644833],[-0.264359,51.643627],[-0.266767,51.644111],[-0.268346,51.643834],[-0.268247,51.642386],[-0.270037,51.642087],[-0.272867,51.642099],[-0.274177,51.639308],[-0.278613,51.638323],[-0.281391,51.638346],[-0.283874,51.637795],[-0.2855,51.636949],[-0.287787,51.636513],[-0.291868,51.636478],[-0.294383,51.63565],[-0.296127,51.635447],[-0.304455,51.63635],[-0.305574,51.634121],[-0.304461,51.632034],[-0.292636,51.621745],[-0.287542,51.617154],[-0.281011,51.612278],[-0.278326,51.6098],[-0.267132,51.600373],[-0.259767,51.594195],[-0.257396,51.592026],[-0.253105,51.589045],[-0.248259,51.584367],[-0.251713,51.583384],[-0.25431,51.581587],[-0.254606,51.579674],[-0.252598,51.574926],[-0.251331,51.573138],[-0.253106,51.572441],[-0.252486,51.571508],[-0.249404,51.568907],[-0.247,51.568622],[-0.245984,51.57096],[-0.246692,51.571571],[-0.241991,51.572808],[-0.241084,51.57212],[-0.23764,51.572474],[-0.233417,51.571983],[-0.228794,51.567971],[-0.225465,51.565868],[-0.220633,51.561671],[-0.218626,51.559421],[-0.213477,51.555189],[-0.210004,51.556754],[-0.208826,51.555738],[-0.205968,51.556418],[-0.205791,51.555308],[-0.199385,51.556195],[-0.199635,51.556982],[-0.198454,51.558762],[-0.196793,51.559186],[-0.196895,51.560624],[-0.194827,51.560484],[-0.192295,51.561541],[-0.191115,51.561638],[-0.19032,51.562852],[-0.189618,51.565256],[-0.186143,51.566923],[-0.183786,51.567501],[-0.183694,51.567975],[-0.180809,51.569439],[-0.178281,51.570034],[-0.178053,51.570434],[-0.174382,51.569256],[-0.173436,51.571102],[-0.17126,51.572432],[-0.171156,51.573615],[-0.169459,51.573984],[-0.169728,51.576402],[-0.168063,51.576929],[-0.166813,51.578657],[-0.167036,51.581755],[-0.16619,51.582044],[-0.165721,51.583224],[-0.163721,51.584329],[-0.161322,51.585278],[-0.159618,51.584463],[-0.157941,51.585736],[-0.15868,51.586633],[-0.158615,51.587978],[-0.160248,51.58798],[-0.159455,51.591582],[-0.161761,51.597479],[-0.156296,51.60537],[-0.154618,51.604139],[-0.153287,51.602681],[-0.153438,51.600873],[-0.153005,51.599233],[-0.151355,51.597451],[-0.14447,51.600129],[-0.144174,51.601113],[-0.142,51.603788],[-0.143078,51.606349],[-0.143425,51.608849],[-0.13876,51.610195],[-0.144511,51.615487],[-0.142034,51.61628],[-0.140614,51.617735],[-0.135436,51.621692],[-0.134196,51.623958],[-0.133514,51.626358],[-0.132462,51.627206],[-0.131115,51.629021],[-0.131121,51.629665],[-0.129121,51.632269],[-0.131331,51.63258],[-0.133269,51.633268],[-0.134508,51.634698],[-0.13841,51.636516],[-0.142293,51.639316],[-0.145077,51.642649],[-0.147895,51.642084],[-0.149022,51.644181],[-0.149148,51.645264],[-0.151304,51.645283],[-0.152142,51.645825],[-0.151042,51.647208],[-0.152248,51.647987],[-0.149894,51.648795],[-0.150994,51.650079],[-0.152245,51.649848],[-0.152539,51.65147],[-0.153476,51.652699],[-0.153756,51.654667],[-0.154762,51.655534],[-0.16049,51.656754],[-0.163479,51.658169],[-0.165016,51.658227],[-0.185866,51.662836],[-0.182086,51.668604]]]},"properties":{"LAD22CD":"E09000003","LAD22NM":"Barnet","BNG_E":523472,"BNG_N":191753,"LONG":-0.21821,"LAT":51.61108,"GlobalID":"6e6f5560-6736-4f16-a972-1c0ad66fc68a"},"id":279}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.203049,51.457952],[0.202613,51.458345],[0.204437,51.459979],[0.207504,51.461598],[0.210239,51.462502],[0.209979,51.465571],[0.210951,51.467354],[0.211014,51.468434],[0.20816,51.470839],[0.208856,51.471745],[0.211356,51.473228],[0.211266,51.475276],[0.211902,51.475829],[0.215661,51.47686],[0.216274,51.477472],[0.215988,51.479485],[0.217665,51.480411],[0.211681,51.482711],[0.209217,51.481816],[0.205067,51.480886],[0.202264,51.480597],[0.20215,51.478991],[0.200115,51.478948],[0.200582,51.480066],[0.198566,51.479679],[0.193807,51.479323],[0.192723,51.479768],[0.190311,51.479729],[0.183319,51.481155],[0.178344,51.483377],[0.176065,51.485248],[0.174537,51.486927],[0.173526,51.487361],[0.172496,51.488826],[0.171646,51.497717],[0.170022,51.500059],[0.166577,51.503455],[0.164486,51.504538],[0.160339,51.505477],[0.153945,51.50605],[0.152841,51.506372],[0.149914,51.506395],[0.147924,51.506821],[0.14686,51.506671],[0.137458,51.510206],[0.137262,51.510007],[0.132223,51.512272],[0.12894,51.513217],[0.125051,51.512992],[0.120213,51.511447],[0.120528,51.511093],[0.120975,51.5008],[0.121298,51.491106],[0.122044,51.482995],[0.124185,51.476847],[0.120903,51.478453],[0.118471,51.478903],[0.115537,51.476195],[0.114011,51.47517],[0.111985,51.473072],[0.10819,51.476117],[0.106176,51.475016],[0.104904,51.475528],[0.103352,51.474586],[0.102005,51.474464],[0.100259,51.475227],[0.09825,51.475452],[0.096576,51.473258],[0.094493,51.473269],[0.091328,51.472077],[0.089119,51.470451],[0.087053,51.46997],[0.084808,51.46873],[0.083238,51.466477],[0.082313,51.466641],[0.082135,51.464757],[0.082629,51.463607],[0.082256,51.461127],[0.082942,51.459829],[0.078855,51.459149],[0.081413,51.457788],[0.08574,51.456448],[0.086855,51.450435],[0.087872,51.448704],[0.088113,51.447255],[0.087407,51.445743],[0.08637,51.445307],[0.087427,51.443284],[0.084734,51.442603],[0.08446,51.441977],[0.081809,51.43997],[0.080852,51.440378],[0.078825,51.438136],[0.07784,51.436442],[0.076576,51.436869],[0.07498,51.435869],[0.076521,51.43485],[0.075367,51.431985],[0.081168,51.430644],[0.083213,51.429869],[0.089224,51.423994],[0.095128,51.420083],[0.104491,51.415221],[0.107598,51.414094],[0.113124,51.412906],[0.11992,51.4134],[0.125434,51.414779],[0.12827,51.414959],[0.132845,51.414247],[0.139207,51.411587],[0.148869,51.408429],[0.149312,51.409141],[0.152932,51.408708],[0.15377,51.411265],[0.149752,51.411658],[0.14916,51.412435],[0.151154,51.415063],[0.151055,51.417616],[0.154094,51.417762],[0.154636,51.41847],[0.151159,51.42043],[0.153135,51.422322],[0.153763,51.427523],[0.1553,51.428975],[0.155875,51.430877],[0.158632,51.430127],[0.159837,51.429203],[0.160695,51.429674],[0.163923,51.428932],[0.16559,51.430349],[0.166851,51.432072],[0.16669,51.435051],[0.168714,51.43748],[0.170899,51.441202],[0.172797,51.443031],[0.173806,51.442979],[0.176017,51.442006],[0.178725,51.443477],[0.180887,51.443523],[0.181084,51.444182],[0.184277,51.444655],[0.187465,51.446875],[0.187644,51.448698],[0.188851,51.44913],[0.191012,51.448788],[0.192083,51.450842],[0.19302,51.451702],[0.197965,51.451831],[0.200234,51.452596],[0.201387,51.453851],[0.2034,51.454386],[0.203835,51.455983],[0.202608,51.45623],[0.203049,51.457952]]]},"properties":{"LAD22CD":"E09000004","LAD22NM":"Bexley","BNG_E":549202,"BNG_N":175434,"LONG":0.146212,"LAT":51.45822,"GlobalID":"03d0ec73-74c1-4f65-9f73-5fe419171081"},"id":280}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.267132,51.600373],[-0.271117,51.598316],[-0.272978,51.598374],[-0.276952,51.596895],[-0.276492,51.596517],[-0.283308,51.595752],[-0.290398,51.59357],[-0.289069,51.592911],[-0.286581,51.592266],[-0.28463,51.591011],[-0.28334,51.588884],[-0.282248,51.58574],[-0.282447,51.58505],[-0.300768,51.587243],[-0.304067,51.58716],[-0.306793,51.586557],[-0.313052,51.584264],[-0.320684,51.580256],[-0.326669,51.5786],[-0.325412,51.576042],[-0.324719,51.573175],[-0.322132,51.569656],[-0.325052,51.568259],[-0.329723,51.567088],[-0.328647,51.565945],[-0.328228,51.562512],[-0.329764,51.562364],[-0.331195,51.561461],[-0.334886,51.557833],[-0.335562,51.556585],[-0.327001,51.555012],[-0.317756,51.551618],[-0.312536,51.549026],[-0.311472,51.54756],[-0.308578,51.546449],[-0.307101,51.545325],[-0.308511,51.543202],[-0.304703,51.539863],[-0.305944,51.53943],[-0.306234,51.534231],[-0.307478,51.533067],[-0.302709,51.531984],[-0.299534,51.533253],[-0.296566,51.535242],[-0.29515,51.534893],[-0.293271,51.534973],[-0.286729,51.536757],[-0.282462,51.538666],[-0.277775,51.535073],[-0.278987,51.53321],[-0.280928,51.532578],[-0.281486,51.533242],[-0.283516,51.53282],[-0.284016,51.533519],[-0.289365,51.531669],[-0.285729,51.52918],[-0.280456,51.528407],[-0.277173,51.529234],[-0.27057,51.530045],[-0.268998,51.52974],[-0.266587,51.530514],[-0.26041,51.534536],[-0.257786,51.535339],[-0.256428,51.534938],[-0.256026,51.533954],[-0.25075,51.534185],[-0.247335,51.533516],[-0.246288,51.532754],[-0.243405,51.531787],[-0.237326,51.53202],[-0.2344,51.532639],[-0.23137,51.531091],[-0.228479,51.530354],[-0.227658,51.529924],[-0.225423,51.530165],[-0.22378,51.529965],[-0.217955,51.528642],[-0.216005,51.52793],[-0.215859,51.529727],[-0.21508,51.53026],[-0.215183,51.531391],[-0.211027,51.531961],[-0.207624,51.532822],[-0.203021,51.532901],[-0.198274,51.530447],[-0.197774,51.527902],[-0.196544,51.527656],[-0.192868,51.532135],[-0.192349,51.533212],[-0.193011,51.533991],[-0.191459,51.536291],[-0.201908,51.545289],[-0.203712,51.54696],[-0.213477,51.555189],[-0.218626,51.559421],[-0.220633,51.561671],[-0.225465,51.565868],[-0.228794,51.567971],[-0.233417,51.571983],[-0.23764,51.572474],[-0.241084,51.57212],[-0.241991,51.572808],[-0.246692,51.571571],[-0.245984,51.57096],[-0.247,51.568622],[-0.249404,51.568907],[-0.252486,51.571508],[-0.253106,51.572441],[-0.251331,51.573138],[-0.252598,51.574926],[-0.254606,51.579674],[-0.25431,51.581587],[-0.251713,51.583384],[-0.248259,51.584367],[-0.253105,51.589045],[-0.257396,51.592026],[-0.259767,51.594195],[-0.267132,51.600373]]]},"properties":{"LAD22CD":"E09000005","LAD22NM":"Brent","BNG_E":519615,"BNG_N":186468,"LONG":-0.27568,"LAT":51.56441,"GlobalID":"b04d962f-8d90-43c1-aa0d-f6fc53546036"},"id":281}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.075367,51.431985],[0.073498,51.43126],[0.071969,51.429654],[0.066961,51.426722],[0.066605,51.426015],[0.064221,51.425369],[0.063228,51.424203],[0.061734,51.423735],[0.060928,51.425074],[0.058616,51.424596],[0.054853,51.427522],[0.051075,51.43153],[0.047811,51.433753],[0.043337,51.437747],[0.042211,51.439481],[0.039807,51.440992],[0.03557,51.442446],[0.033497,51.443592],[0.030603,51.444317],[0.029385,51.441705],[0.028603,51.440454],[0.02884,51.438786],[0.024817,51.438238],[0.025402,51.43569],[0.027266,51.436559],[0.028702,51.436406],[0.029092,51.434666],[0.028611,51.434031],[0.032478,51.431893],[0.033727,51.431699],[0.037725,51.433347],[0.037548,51.431379],[0.039055,51.424671],[0.036212,51.422365],[0.025437,51.428989],[0.021161,51.426844],[0.018801,51.427051],[0.016074,51.426208],[0.014134,51.426175],[0.014422,51.425232],[0.01184,51.424051],[0.009993,51.422483],[0.008103,51.423043],[0.007376,51.421379],[0.006324,51.421015],[0.005254,51.419315],[0.005698,51.418514],[0.00355,51.41742],[0.001755,51.418558],[-0.000051,51.417645],[-0.000728,51.415912],[-0.003378,51.41566],[-0.003258,51.41505],[-0.004968,51.414589],[-0.006601,51.41466],[-0.010519,51.413551],[-0.014236,51.413657],[-0.014127,51.4151],[-0.017961,51.415055],[-0.017821,51.415743],[-0.021014,51.416019],[-0.022529,51.417541],[-0.021358,51.418412],[-0.020751,51.41994],[-0.020928,51.420923],[-0.02258,51.421562],[-0.024401,51.423154],[-0.025982,51.423621],[-0.030081,51.425645],[-0.031972,51.425536],[-0.031794,51.42471],[-0.034201,51.4251],[-0.03746,51.424992],[-0.03845,51.423958],[-0.041043,51.424245],[-0.041582,51.423654],[-0.046263,51.422366],[-0.047205,51.422859],[-0.051748,51.422517],[-0.051783,51.423581],[-0.054755,51.423727],[-0.055129,51.422938],[-0.058098,51.423177],[-0.062578,51.425197],[-0.065816,51.425328],[-0.067889,51.425926],[-0.068856,51.425616],[-0.070501,51.42617],[-0.073919,51.426151],[-0.07494,51.425699],[-0.078295,51.420605],[-0.078562,51.419875],[-0.081064,51.417308],[-0.08039,51.415544],[-0.076502,51.414436],[-0.075149,51.41354],[-0.072731,51.412693],[-0.073518,51.410472],[-0.072833,51.408483],[-0.070184,51.406255],[-0.068566,51.403844],[-0.066385,51.402583],[-0.063763,51.401564],[-0.06216,51.401533],[-0.060156,51.399551],[-0.059387,51.399252],[-0.056828,51.400503],[-0.052965,51.401461],[-0.050629,51.399563],[-0.052104,51.398291],[-0.050952,51.397125],[-0.05348,51.394918],[-0.051692,51.39358],[-0.047738,51.393036],[-0.044683,51.390502],[-0.042746,51.389451],[-0.036499,51.388461],[-0.037872,51.383231],[-0.036902,51.378953],[-0.03677,51.376996],[-0.029733,51.377343],[-0.028245,51.378198],[-0.028014,51.379358],[-0.026795,51.379374],[-0.026126,51.376451],[-0.023566,51.37222],[-0.023783,51.371316],[-0.023092,51.367008],[-0.024469,51.366781],[-0.023563,51.365293],[-0.022251,51.365878],[-0.018907,51.36279],[-0.018261,51.361253],[-0.015618,51.358873],[-0.013098,51.35721],[-0.011861,51.357283],[-0.008658,51.355826],[-0.005307,51.352578],[-0.004602,51.349565],[-0.002892,51.345523],[0.000872,51.333595],[0.003312,51.332156],[0.002295,51.329139],[0.00487,51.322076],[0.005545,51.318444],[0.006583,51.315652],[0.010348,51.31614],[0.008391,51.310361],[0.012158,51.299598],[0.015009,51.291786],[0.019101,51.291684],[0.020874,51.295572],[0.020953,51.296778],[0.023599,51.299704],[0.024839,51.302155],[0.027978,51.304685],[0.030281,51.305558],[0.032909,51.307521],[0.036337,51.305863],[0.040917,51.302721],[0.04262,51.301329],[0.043093,51.299054],[0.044298,51.298581],[0.043313,51.296582],[0.042399,51.292679],[0.044767,51.293087],[0.045731,51.294004],[0.048494,51.293722],[0.05079,51.293987],[0.05439,51.292089],[0.05605,51.292395],[0.05851,51.289354],[0.067563,51.290383],[0.073368,51.291605],[0.08158,51.291839],[0.085693,51.293084],[0.089262,51.296086],[0.091185,51.296827],[0.086339,51.300172],[0.085432,51.302519],[0.082816,51.305634],[0.084878,51.306045],[0.084086,51.308049],[0.084748,51.308346],[0.083572,51.310528],[0.08507,51.312599],[0.085642,51.314785],[0.085029,51.316023],[0.086822,51.317193],[0.087785,51.318312],[0.092777,51.319811],[0.09618,51.321293],[0.100176,51.324072],[0.100792,51.325585],[0.103241,51.325996],[0.104902,51.327413],[0.107238,51.327524],[0.109759,51.326684],[0.110154,51.328036],[0.114211,51.327398],[0.115743,51.329507],[0.120246,51.332137],[0.121684,51.333636],[0.120011,51.33474],[0.118299,51.338405],[0.119014,51.338684],[0.118471,51.339982],[0.117283,51.339781],[0.116681,51.341303],[0.117232,51.343164],[0.118456,51.344148],[0.122239,51.344657],[0.125213,51.345868],[0.131669,51.345194],[0.131777,51.345507],[0.136958,51.344175],[0.137189,51.345876],[0.138714,51.347525],[0.142617,51.350736],[0.142876,51.352659],[0.143631,51.353018],[0.144049,51.354862],[0.145114,51.355764],[0.145895,51.358225],[0.144848,51.358435],[0.145379,51.360338],[0.144501,51.361061],[0.145048,51.362851],[0.148348,51.366372],[0.147285,51.36702],[0.148876,51.368124],[0.149438,51.369163],[0.151622,51.368384],[0.152058,51.369694],[0.150127,51.370157],[0.151206,51.372187],[0.1496,51.373583],[0.151736,51.375436],[0.152537,51.37523],[0.153236,51.378036],[0.150974,51.379085],[0.151133,51.379896],[0.149613,51.38009],[0.150373,51.381093],[0.150466,51.383447],[0.149787,51.383671],[0.149992,51.385841],[0.148902,51.387572],[0.148654,51.388668],[0.149835,51.390872],[0.147534,51.392156],[0.147741,51.392801],[0.158274,51.39224],[0.162384,51.39249],[0.15898,51.395821],[0.157728,51.398147],[0.157361,51.400783],[0.155249,51.403971],[0.152817,51.406269],[0.1511,51.406642],[0.148692,51.408131],[0.148869,51.408429],[0.139207,51.411587],[0.132845,51.414247],[0.12827,51.414959],[0.125434,51.414779],[0.11992,51.4134],[0.113124,51.412906],[0.107598,51.414094],[0.104491,51.415221],[0.095128,51.420083],[0.089224,51.423994],[0.083213,51.429869],[0.081168,51.430644],[0.075367,51.431985]]]},"properties":{"LAD22CD":"E09000006","LAD22NM":"Bromley","BNG_E":542036,"BNG_N":165708,"LONG":0.039246,"LAT":51.37267,"GlobalID":"26485559-46e7-4dd7-ba40-e30c0853307e"},"id":282}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.14239,51.569123],[-0.14383,51.569915],[-0.150325,51.571576],[-0.158837,51.572196],[-0.16043,51.57279],[-0.164275,51.572504],[-0.167348,51.572973],[-0.17126,51.572432],[-0.173436,51.571102],[-0.174382,51.569256],[-0.178053,51.570434],[-0.178281,51.570034],[-0.180809,51.569439],[-0.183694,51.567975],[-0.183786,51.567501],[-0.186143,51.566923],[-0.189618,51.565256],[-0.19032,51.562852],[-0.191115,51.561638],[-0.192295,51.561541],[-0.194827,51.560484],[-0.196895,51.560624],[-0.196793,51.559186],[-0.198454,51.558762],[-0.199635,51.556982],[-0.199385,51.556195],[-0.205791,51.555308],[-0.205968,51.556418],[-0.208826,51.555738],[-0.210004,51.556754],[-0.213477,51.555189],[-0.203712,51.54696],[-0.201908,51.545289],[-0.191459,51.536291],[-0.188749,51.534526],[-0.187726,51.535036],[-0.183849,51.538381],[-0.180156,51.539563],[-0.178328,51.539795],[-0.173897,51.539479],[-0.174116,51.538202],[-0.173486,51.537634],[-0.171956,51.538385],[-0.170865,51.537795],[-0.169518,51.538599],[-0.164936,51.535781],[-0.160462,51.537283],[-0.159416,51.536364],[-0.152707,51.537521],[-0.147171,51.525043],[-0.14579,51.525272],[-0.145173,51.523996],[-0.142876,51.52388],[-0.137008,51.518886],[-0.135233,51.518935],[-0.134045,51.517563],[-0.130806,51.517103],[-0.129827,51.514479],[-0.129042,51.513453],[-0.127328,51.512667],[-0.122869,51.515146],[-0.119468,51.514507],[-0.114693,51.516042],[-0.113834,51.514822],[-0.111581,51.51534],[-0.113795,51.518259],[-0.107807,51.517767],[-0.105322,51.518545],[-0.106995,51.522191],[-0.108254,51.522094],[-0.108966,51.523021],[-0.112537,51.523796],[-0.114228,51.525519],[-0.112924,51.526411],[-0.115407,51.527724],[-0.115991,51.529845],[-0.11987,51.530939],[-0.12253,51.530728],[-0.122375,51.536887],[-0.12305,51.5385],[-0.125063,51.541143],[-0.127178,51.547665],[-0.130137,51.54962],[-0.131001,51.551514],[-0.134354,51.553623],[-0.13523,51.55459],[-0.137153,51.555399],[-0.141006,51.560432],[-0.140656,51.564555],[-0.14239,51.569123]]]},"properties":{"LAD22CD":"E09000007","LAD22NM":"Camden","BNG_E":527492,"BNG_N":184284,"LONG":-0.16289,"LAT":51.54306,"GlobalID":"6a361a97-05ea-4d9a-a30b-d51bd4dd8227"},"id":283}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.078562,51.419875],[-0.083218,51.41974],[-0.086284,51.419284],[-0.088338,51.420005],[-0.092702,51.422554],[-0.094863,51.42282],[-0.096847,51.422676],[-0.105962,51.422594],[-0.109259,51.423178],[-0.112624,51.423243],[-0.115592,51.420631],[-0.119814,51.418802],[-0.122491,51.415027],[-0.124081,51.414597],[-0.124452,51.413365],[-0.127722,51.412321],[-0.128173,51.410936],[-0.128455,51.411012],[-0.129454,51.409575],[-0.13126,51.409503],[-0.132455,51.408407],[-0.131508,51.404929],[-0.13048,51.403276],[-0.127964,51.401698],[-0.124133,51.397613],[-0.129664,51.393651],[-0.128731,51.393481],[-0.134354,51.390885],[-0.132611,51.390126],[-0.133234,51.38955],[-0.129468,51.387185],[-0.130634,51.386265],[-0.12951,51.385286],[-0.128632,51.382494],[-0.130274,51.382219],[-0.128054,51.380498],[-0.126694,51.377065],[-0.125808,51.375604],[-0.126648,51.374909],[-0.124719,51.373661],[-0.124745,51.372942],[-0.123314,51.371189],[-0.122073,51.365807],[-0.124083,51.365395],[-0.122335,51.364529],[-0.121277,51.364733],[-0.120904,51.36331],[-0.122028,51.36098],[-0.121835,51.359064],[-0.12469,51.358866],[-0.124171,51.35743],[-0.121404,51.35773],[-0.120152,51.353045],[-0.11909,51.353143],[-0.11734,51.346647],[-0.116894,51.345754],[-0.118905,51.345509],[-0.125899,51.345238],[-0.126831,51.344856],[-0.127322,51.347187],[-0.132867,51.345436],[-0.132491,51.344299],[-0.136244,51.344408],[-0.136706,51.344756],[-0.141532,51.343413],[-0.14457,51.34209],[-0.143439,51.340561],[-0.144499,51.339497],[-0.147522,51.33878],[-0.145592,51.33243],[-0.144042,51.330668],[-0.149305,51.328764],[-0.144428,51.326476],[-0.144247,51.325908],[-0.145559,51.323502],[-0.147931,51.322683],[-0.149012,51.322786],[-0.150569,51.322171],[-0.152057,51.322269],[-0.152713,51.323003],[-0.156543,51.321509],[-0.16188,51.319626],[-0.161178,51.317523],[-0.159581,51.317105],[-0.159314,51.315956],[-0.15717,51.31339],[-0.158331,51.310985],[-0.156228,51.310421],[-0.154316,51.310318],[-0.157163,51.306709],[-0.154509,51.306449],[-0.155024,51.305791],[-0.157735,51.304427],[-0.156684,51.303589],[-0.155318,51.301274],[-0.153361,51.301678],[-0.149815,51.300204],[-0.148452,51.300704],[-0.145625,51.299828],[-0.143559,51.30126],[-0.142833,51.29998],[-0.140962,51.29956],[-0.137314,51.300781],[-0.136328,51.298268],[-0.134431,51.298378],[-0.13111,51.295474],[-0.131459,51.294711],[-0.130531,51.293117],[-0.126278,51.289529],[-0.126057,51.288385],[-0.124293,51.286759],[-0.117775,51.287095],[-0.116981,51.289374],[-0.115117,51.291464],[-0.114823,51.292434],[-0.111052,51.292253],[-0.103002,51.295859],[-0.10114,51.296287],[-0.094324,51.299354],[-0.097245,51.300295],[-0.097377,51.301114],[-0.096031,51.301518],[-0.094387,51.300613],[-0.091168,51.301473],[-0.090717,51.303954],[-0.089706,51.303975],[-0.088732,51.305105],[-0.088825,51.307219],[-0.086578,51.308859],[-0.081932,51.310647],[-0.081893,51.312609],[-0.084803,51.315867],[-0.080194,51.317822],[-0.078831,51.31809],[-0.078924,51.319769],[-0.07512,51.320198],[-0.071017,51.321233],[-0.070028,51.318893],[-0.063994,51.318637],[-0.062079,51.3192],[-0.060658,51.320064],[-0.058393,51.320383],[-0.056252,51.321664],[-0.054883,51.321257],[-0.052481,51.322382],[-0.051307,51.322448],[-0.051267,51.323438],[-0.049766,51.325267],[-0.047869,51.325245],[-0.047828,51.32651],[-0.04907,51.328608],[-0.051081,51.330845],[-0.050261,51.332639],[-0.048474,51.332789],[-0.046554,51.333483],[-0.041967,51.33381],[-0.039816,51.337227],[-0.037893,51.338704],[-0.034495,51.338083],[-0.032771,51.337438],[-0.030681,51.337515],[-0.025958,51.33856],[-0.022057,51.3381],[-0.020557,51.337144],[-0.017782,51.332933],[-0.01594,51.332014],[-0.014328,51.329805],[-0.013604,51.331526],[-0.010874,51.333628],[-0.009141,51.333906],[-0.007209,51.333387],[-0.001677,51.330307],[-0.000503,51.328778],[0.002295,51.329139],[0.003312,51.332156],[0.000872,51.333595],[-0.002892,51.345523],[-0.004602,51.349565],[-0.005307,51.352578],[-0.008658,51.355826],[-0.011861,51.357283],[-0.013098,51.35721],[-0.015618,51.358873],[-0.018261,51.361253],[-0.018907,51.36279],[-0.022251,51.365878],[-0.023563,51.365293],[-0.024469,51.366781],[-0.023092,51.367008],[-0.023783,51.371316],[-0.023566,51.37222],[-0.026126,51.376451],[-0.026795,51.379374],[-0.028014,51.379358],[-0.028245,51.378198],[-0.029733,51.377343],[-0.03677,51.376996],[-0.036902,51.378953],[-0.037872,51.383231],[-0.036499,51.388461],[-0.042746,51.389451],[-0.044683,51.390502],[-0.047738,51.393036],[-0.051692,51.39358],[-0.05348,51.394918],[-0.050952,51.397125],[-0.052104,51.398291],[-0.050629,51.399563],[-0.052965,51.401461],[-0.056828,51.400503],[-0.059387,51.399252],[-0.060156,51.399551],[-0.06216,51.401533],[-0.063763,51.401564],[-0.066385,51.402583],[-0.068566,51.403844],[-0.070184,51.406255],[-0.072833,51.408483],[-0.073518,51.410472],[-0.072731,51.412693],[-0.075149,51.41354],[-0.076502,51.414436],[-0.08039,51.415544],[-0.081064,51.417308],[-0.078562,51.419875]]]},"properties":{"LAD22CD":"E09000008","LAD22NM":"Croydon","BNG_E":533922,"BNG_N":164745,"LONG":-0.07761,"LAT":51.36598,"GlobalID":"cd44d53d-eb81-4913-81a7-8b6d70f072fe"},"id":284}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.246288,51.532754],[-0.247335,51.533516],[-0.25075,51.534185],[-0.256026,51.533954],[-0.256428,51.534938],[-0.257786,51.535339],[-0.26041,51.534536],[-0.266587,51.530514],[-0.268998,51.52974],[-0.27057,51.530045],[-0.277173,51.529234],[-0.280456,51.528407],[-0.285729,51.52918],[-0.289365,51.531669],[-0.284016,51.533519],[-0.283516,51.53282],[-0.281486,51.533242],[-0.280928,51.532578],[-0.278987,51.53321],[-0.277775,51.535073],[-0.282462,51.538666],[-0.286729,51.536757],[-0.293271,51.534973],[-0.29515,51.534893],[-0.296566,51.535242],[-0.299534,51.533253],[-0.302709,51.531984],[-0.307478,51.533067],[-0.306234,51.534231],[-0.305944,51.53943],[-0.304703,51.539863],[-0.308511,51.543202],[-0.307101,51.545325],[-0.308578,51.546449],[-0.311472,51.54756],[-0.312536,51.549026],[-0.317756,51.551618],[-0.327001,51.555012],[-0.335562,51.556585],[-0.338303,51.557226],[-0.343959,51.557794],[-0.347533,51.559685],[-0.362327,51.557282],[-0.36252,51.556027],[-0.366568,51.555322],[-0.372834,51.553718],[-0.373887,51.553911],[-0.37584,51.553062],[-0.377787,51.554988],[-0.377668,51.554689],[-0.385249,51.551172],[-0.393924,51.548698],[-0.394868,51.547638],[-0.3987,51.547892],[-0.397865,51.545663],[-0.396222,51.545533],[-0.395252,51.542549],[-0.397652,51.542326],[-0.404832,51.542508],[-0.416758,51.540162],[-0.419388,51.539906],[-0.418141,51.539151],[-0.419454,51.53836],[-0.417446,51.537803],[-0.417377,51.536612],[-0.415319,51.536568],[-0.413831,51.535751],[-0.413461,51.534693],[-0.392325,51.531402],[-0.389258,51.5308],[-0.387095,51.529557],[-0.386523,51.530392],[-0.380978,51.529417],[-0.376364,51.528889],[-0.37616,51.524916],[-0.381755,51.518635],[-0.384968,51.516364],[-0.389002,51.514736],[-0.390423,51.513203],[-0.392841,51.507795],[-0.393566,51.50697],[-0.39985,51.504431],[-0.402756,51.503645],[-0.40386,51.502932],[-0.406885,51.499695],[-0.389299,51.495161],[-0.387084,51.494688],[-0.384546,51.494695],[-0.381825,51.495226],[-0.377872,51.496605],[-0.377864,51.495448],[-0.375819,51.495402],[-0.373781,51.49193],[-0.371851,51.490471],[-0.367905,51.491798],[-0.368356,51.492297],[-0.365361,51.493326],[-0.363711,51.4947],[-0.363605,51.495479],[-0.358006,51.497786],[-0.350679,51.499109],[-0.349767,51.49903],[-0.342092,51.496041],[-0.335341,51.496212],[-0.331239,51.49555],[-0.329954,51.495076],[-0.327419,51.496029],[-0.326137,51.49503],[-0.324737,51.496013],[-0.323412,51.4959],[-0.31919,51.494223],[-0.315767,51.495904],[-0.315711,51.495347],[-0.311903,51.49197],[-0.308381,51.493585],[-0.305419,51.494539],[-0.305829,51.496181],[-0.301334,51.495227],[-0.301089,51.494418],[-0.297531,51.49489],[-0.299923,51.497813],[-0.300694,51.499345],[-0.294028,51.501563],[-0.286788,51.500664],[-0.28571,51.50078],[-0.280761,51.502851],[-0.277874,51.499489],[-0.272459,51.496149],[-0.271403,51.494804],[-0.268901,51.494012],[-0.255409,51.494978],[-0.25549,51.496276],[-0.252764,51.499906],[-0.253061,51.501401],[-0.253343,51.502883],[-0.255067,51.504321],[-0.253741,51.504555],[-0.247988,51.504359],[-0.24568,51.504626],[-0.246488,51.506733],[-0.245072,51.50677],[-0.246627,51.511247],[-0.248977,51.513887],[-0.250582,51.518542],[-0.250282,51.520158],[-0.2518,51.522107],[-0.252506,51.525089],[-0.250272,51.527186],[-0.250445,51.528343],[-0.246932,51.530731],[-0.246971,51.531785],[-0.246288,51.532754]]]},"properties":{"LAD22CD":"E09000009","LAD22NM":"Ealing","BNG_E":517057,"BNG_N":181960,"LONG":-0.31407,"LAT":51.52443,"GlobalID":"44398460-68f0-4b7a-b057-a44a0da1b743"},"id":285}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.011919,51.680878],[-0.019772,51.681151],[-0.028377,51.682332],[-0.0334,51.682495],[-0.043672,51.683097],[-0.044243,51.683435],[-0.04716,51.683455],[-0.04918,51.684272],[-0.051694,51.683535],[-0.0566,51.682989],[-0.062017,51.683008],[-0.066341,51.683845],[-0.078995,51.688914],[-0.08391,51.689965],[-0.094777,51.690114],[-0.099536,51.691115],[-0.105779,51.691876],[-0.109621,51.691493],[-0.112897,51.690822],[-0.118099,51.688963],[-0.122183,51.688546],[-0.13025,51.688916],[-0.13465,51.688807],[-0.138401,51.688209],[-0.144658,51.686335],[-0.14937,51.685518],[-0.153258,51.685857],[-0.157992,51.687241],[-0.163493,51.688115],[-0.163607,51.682403],[-0.172473,51.673091],[-0.175658,51.673163],[-0.176712,51.6721],[-0.182086,51.668604],[-0.185866,51.662836],[-0.165016,51.658227],[-0.163479,51.658169],[-0.16049,51.656754],[-0.154762,51.655534],[-0.153756,51.654667],[-0.153476,51.652699],[-0.152539,51.65147],[-0.152245,51.649848],[-0.150994,51.650079],[-0.149894,51.648795],[-0.152248,51.647987],[-0.151042,51.647208],[-0.152142,51.645825],[-0.151304,51.645283],[-0.149148,51.645264],[-0.149022,51.644181],[-0.147895,51.642084],[-0.145077,51.642649],[-0.142293,51.639316],[-0.13841,51.636516],[-0.134508,51.634698],[-0.133269,51.633268],[-0.131331,51.63258],[-0.129121,51.632269],[-0.131121,51.629665],[-0.131115,51.629021],[-0.132462,51.627206],[-0.133514,51.626358],[-0.134196,51.623958],[-0.135436,51.621692],[-0.140614,51.617735],[-0.142034,51.61628],[-0.144511,51.615487],[-0.13876,51.610195],[-0.135258,51.611217],[-0.127877,51.609441],[-0.126311,51.609304],[-0.124872,51.609947],[-0.123518,51.608709],[-0.119178,51.608367],[-0.114445,51.608403],[-0.110794,51.608614],[-0.109865,51.608256],[-0.101486,51.60852],[-0.097461,51.608522],[-0.095788,51.6093],[-0.095133,51.608659],[-0.092462,51.608849],[-0.0856,51.608471],[-0.076648,51.608412],[-0.070845,51.608794],[-0.06502,51.608589],[-0.054354,51.608865],[-0.052891,51.608102],[-0.050206,51.607357],[-0.041426,51.605633],[-0.035252,51.608233],[-0.033995,51.609488],[-0.034162,51.610303],[-0.035549,51.612006],[-0.035364,51.612982],[-0.032395,51.616623],[-0.025972,51.621764],[-0.023393,51.625278],[-0.01524,51.635506],[-0.013251,51.639848],[-0.012259,51.646234],[-0.011837,51.648848],[-0.01178,51.653035],[-0.008941,51.660218],[-0.009086,51.661009],[-0.011494,51.663891],[-0.011219,51.667606],[-0.010559,51.669137],[-0.011371,51.670702],[-0.011351,51.671918],[-0.010329,51.676665],[-0.011066,51.68087],[-0.011919,51.680878]]]},"properties":{"LAD22CD":"E09000010","LAD22NM":"Enfield","BNG_E":532829,"BNG_N":196197,"LONG":-0.08147,"LAT":51.64888,"GlobalID":"ff1b00fb-d390-4657-8791-7f977b06749c"},"id":286}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.017093,51.480408],[-0.016391,51.481465],[-0.018134,51.481964],[-0.018826,51.48348],[-0.022701,51.484557],[-0.024717,51.485484],[-0.025175,51.485022],[-0.025793,51.482189],[-0.026374,51.481508],[-0.023135,51.480738],[-0.023042,51.479629],[-0.017849,51.48088],[-0.017093,51.480408]]],[[[0.075367,51.431985],[0.076521,51.43485],[0.07498,51.435869],[0.076576,51.436869],[0.07784,51.436442],[0.078825,51.438136],[0.080852,51.440378],[0.081809,51.43997],[0.08446,51.441977],[0.084734,51.442603],[0.087427,51.443284],[0.08637,51.445307],[0.087407,51.445743],[0.088113,51.447255],[0.087872,51.448704],[0.086855,51.450435],[0.08574,51.456448],[0.081413,51.457788],[0.078855,51.459149],[0.082942,51.459829],[0.082256,51.461127],[0.082629,51.463607],[0.082135,51.464757],[0.082313,51.466641],[0.083238,51.466477],[0.084808,51.46873],[0.087053,51.46997],[0.089119,51.470451],[0.091328,51.472077],[0.094493,51.473269],[0.096576,51.473258],[0.09825,51.475452],[0.100259,51.475227],[0.102005,51.474464],[0.103352,51.474586],[0.104904,51.475528],[0.106176,51.475016],[0.10819,51.476117],[0.111985,51.473072],[0.114011,51.47517],[0.115537,51.476195],[0.118471,51.478903],[0.120903,51.478453],[0.124185,51.476847],[0.122044,51.482995],[0.121298,51.491106],[0.120975,51.5008],[0.120528,51.511093],[0.120213,51.511447],[0.113488,51.510147],[0.106886,51.509413],[0.099459,51.509639],[0.094567,51.508954],[0.091985,51.508984],[0.088032,51.505501],[0.087645,51.503919],[0.086663,51.503547],[0.082315,51.498941],[0.076245,51.495846],[0.075745,51.496045],[0.070332,51.495128],[0.064104,51.494676],[0.057569,51.494442],[0.040298,51.495428],[0.029044,51.493848],[0.024293,51.49382],[0.01796,51.495049],[0.013881,51.496995],[0.005147,51.504396],[0.003258,51.504939],[0.000821,51.504532],[-0.000739,51.503799],[-0.001742,51.502842],[-0.002229,51.501271],[-0.002186,51.499842],[-0.000978,51.496277],[-0.000214,51.495229],[0.00072,51.495442],[0.002687,51.491866],[0.002402,51.489528],[0.001376,51.487815],[-0.003268,51.484864],[-0.007256,51.483775],[-0.009934,51.483604],[-0.011134,51.483021],[-0.013541,51.482896],[-0.017899,51.483195],[-0.017909,51.482548],[-0.015714,51.481638],[-0.016832,51.480097],[-0.018371,51.479366],[-0.019076,51.47821],[-0.019001,51.477049],[-0.020476,51.476583],[-0.021167,51.475263],[-0.022562,51.475358],[-0.022573,51.474112],[-0.019975,51.473004],[-0.018659,51.470686],[-0.019114,51.470009],[-0.016537,51.469226],[-0.015065,51.468036],[-0.013106,51.46894],[-0.015159,51.471769],[-0.014044,51.472676],[-0.012493,51.472341],[-0.008118,51.472757],[-0.000958,51.471812],[0.012105,51.47317],[0.015001,51.473081],[0.01553,51.471316],[0.016699,51.469514],[0.01261,51.469808],[0.013265,51.466839],[0.011537,51.466236],[0.009095,51.465873],[0.009903,51.459631],[0.011536,51.456615],[0.014035,51.455728],[0.017545,51.455033],[0.01835,51.451575],[0.01956,51.451707],[0.019885,51.450732],[0.0151,51.45001],[0.021973,51.448944],[0.022968,51.447205],[0.021239,51.446692],[0.021517,51.444443],[0.020624,51.444209],[0.021509,51.442735],[0.025442,51.441738],[0.027794,51.441511],[0.029385,51.441705],[0.030603,51.444317],[0.033497,51.443592],[0.03557,51.442446],[0.039807,51.440992],[0.042211,51.439481],[0.043337,51.437747],[0.047811,51.433753],[0.051075,51.43153],[0.054853,51.427522],[0.058616,51.424596],[0.060928,51.425074],[0.061734,51.423735],[0.063228,51.424203],[0.064221,51.425369],[0.066605,51.426015],[0.066961,51.426722],[0.071969,51.429654],[0.073498,51.43126],[0.075367,51.431985]]]]},"properties":{"LAD22CD":"E09000011","LAD22NM":"Greenwich","BNG_E":542507,"BNG_N":175879,"LONG":0.050093,"LAT":51.46394,"GlobalID":"93082bf2-ac29-477e-a339-b32305132f29"},"id":287}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.061159,51.577786],[-0.066753,51.576622],[-0.066719,51.576358],[-0.072391,51.575631],[-0.074423,51.575681],[-0.076242,51.574936],[-0.080851,51.57564],[-0.085662,51.57504],[-0.086847,51.574294],[-0.089955,51.574388],[-0.091364,51.574006],[-0.093558,51.573977],[-0.094685,51.573591],[-0.097638,51.573655],[-0.09603,51.570656],[-0.098074,51.569105],[-0.104371,51.564778],[-0.098562,51.56084],[-0.096006,51.561229],[-0.091721,51.560229],[-0.090389,51.557577],[-0.090377,51.554152],[-0.088558,51.553945],[-0.087526,51.552825],[-0.085478,51.552164],[-0.080261,51.551911],[-0.079413,51.551654],[-0.077723,51.549466],[-0.076415,51.547319],[-0.076813,51.546081],[-0.08381,51.54659],[-0.083634,51.545066],[-0.086591,51.537257],[-0.093141,51.534394],[-0.097007,51.532984],[-0.095087,51.530054],[-0.095376,51.5292],[-0.08863,51.527388],[-0.087414,51.52596],[-0.084996,51.526205],[-0.084725,51.525417],[-0.085417,51.524513],[-0.084197,51.523903],[-0.085192,51.520336],[-0.083123,51.519852],[-0.081773,51.520745],[-0.081041,51.521973],[-0.078534,51.521505],[-0.076458,51.522046],[-0.075742,51.523681],[-0.076457,51.524313],[-0.076641,51.526347],[-0.077274,51.527305],[-0.075715,51.528358],[-0.074576,51.529852],[-0.072829,51.530657],[-0.066253,51.531226],[-0.065009,51.532904],[-0.06219,51.533259],[-0.06286,51.534919],[-0.062433,51.535532],[-0.060074,51.534196],[-0.058758,51.534105],[-0.05468,51.535154],[-0.052856,51.53494],[-0.052377,51.535931],[-0.050913,51.536462],[-0.049701,51.536347],[-0.04716,51.535449],[-0.044966,51.535781],[-0.041494,51.537443],[-0.037422,51.541281],[-0.037734,51.541798],[-0.033183,51.544686],[-0.029554,51.543091],[-0.028991,51.542273],[-0.025585,51.543339],[-0.019853,51.543583],[-0.01655,51.54333],[-0.017431,51.547539],[-0.018914,51.550484],[-0.018967,51.5516],[-0.01714,51.551577],[-0.017477,51.553394],[-0.018443,51.555177],[-0.023006,51.557272],[-0.023941,51.557374],[-0.02435,51.558658],[-0.025863,51.559925],[-0.028525,51.561074],[-0.030031,51.561365],[-0.033281,51.560623],[-0.036389,51.561506],[-0.038811,51.561162],[-0.04005,51.56178],[-0.042363,51.561368],[-0.045127,51.561792],[-0.047193,51.562662],[-0.046701,51.564381],[-0.051151,51.567725],[-0.053133,51.568575],[-0.054266,51.570198],[-0.056373,51.570796],[-0.058405,51.572526],[-0.061159,51.577786]]]},"properties":{"LAD22CD":"E09000012","LAD22NM":"Hackney","BNG_E":534560,"BNG_N":185787,"LONG":-0.06045,"LAT":51.55492,"GlobalID":"da999d5c-e005-4ba6-b7f4-28deb12005fe"},"id":288}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.228479,51.530354],[-0.23137,51.531091],[-0.2344,51.532639],[-0.237326,51.53202],[-0.243405,51.531787],[-0.246288,51.532754],[-0.246971,51.531785],[-0.246932,51.530731],[-0.250445,51.528343],[-0.250272,51.527186],[-0.252506,51.525089],[-0.2518,51.522107],[-0.250282,51.520158],[-0.250582,51.518542],[-0.248977,51.513887],[-0.246627,51.511247],[-0.245072,51.50677],[-0.246488,51.506733],[-0.24568,51.504626],[-0.247988,51.504359],[-0.253741,51.504555],[-0.255067,51.504321],[-0.253343,51.502883],[-0.253061,51.501401],[-0.251298,51.499847],[-0.249212,51.496951],[-0.245269,51.498385],[-0.244398,51.497944],[-0.245584,51.490157],[-0.244495,51.488713],[-0.24306,51.489433],[-0.240494,51.4901],[-0.234369,51.490411],[-0.232785,51.490187],[-0.228669,51.488827],[-0.225006,51.484306],[-0.224077,51.482434],[-0.223548,51.477393],[-0.222554,51.474745],[-0.221502,51.473482],[-0.216784,51.469606],[-0.210532,51.467137],[-0.202757,51.465339],[-0.199528,51.465005],[-0.194159,51.464841],[-0.190436,51.465262],[-0.186285,51.466528],[-0.184472,51.467683],[-0.183064,51.469217],[-0.180989,51.4726],[-0.179363,51.477623],[-0.180414,51.477707],[-0.182468,51.477114],[-0.183852,51.477435],[-0.186524,51.479871],[-0.188261,51.480965],[-0.193597,51.485814],[-0.195964,51.487373],[-0.198198,51.488065],[-0.202361,51.491665],[-0.203084,51.493372],[-0.207364,51.496148],[-0.207978,51.496023],[-0.210247,51.498129],[-0.214109,51.500771],[-0.215021,51.502189],[-0.216986,51.504466],[-0.217966,51.506146],[-0.21594,51.506402],[-0.215179,51.507648],[-0.215798,51.509116],[-0.217865,51.509761],[-0.219263,51.509576],[-0.220247,51.511734],[-0.222452,51.515411],[-0.226539,51.519579],[-0.228276,51.521098],[-0.226706,51.521978],[-0.226596,51.524797],[-0.227171,51.524794],[-0.227388,51.527894],[-0.228704,51.52988],[-0.228479,51.530354]]]},"properties":{"LAD22CD":"E09000013","LAD22NM":"Hammersmith and Fulham","BNG_E":523867,"BNG_N":177993,"LONG":-0.21735,"LAT":51.48733,"GlobalID":"02350ede-6074-4755-a3cd-fbdae80ac73e"},"id":289}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.041426,51.605633],[-0.050206,51.607357],[-0.052891,51.608102],[-0.054354,51.608865],[-0.06502,51.608589],[-0.070845,51.608794],[-0.076648,51.608412],[-0.0856,51.608471],[-0.092462,51.608849],[-0.095133,51.608659],[-0.095788,51.6093],[-0.097461,51.608522],[-0.101486,51.60852],[-0.109865,51.608256],[-0.110794,51.608614],[-0.114445,51.608403],[-0.119178,51.608367],[-0.123518,51.608709],[-0.124872,51.609947],[-0.126311,51.609304],[-0.127877,51.609441],[-0.135258,51.611217],[-0.13876,51.610195],[-0.143425,51.608849],[-0.143078,51.606349],[-0.142,51.603788],[-0.144174,51.601113],[-0.14447,51.600129],[-0.151355,51.597451],[-0.153005,51.599233],[-0.153438,51.600873],[-0.153287,51.602681],[-0.154618,51.604139],[-0.156296,51.60537],[-0.161761,51.597479],[-0.159455,51.591582],[-0.160248,51.58798],[-0.158615,51.587978],[-0.15868,51.586633],[-0.157941,51.585736],[-0.159618,51.584463],[-0.161322,51.585278],[-0.163721,51.584329],[-0.165721,51.583224],[-0.16619,51.582044],[-0.167036,51.581755],[-0.166813,51.578657],[-0.168063,51.576929],[-0.169728,51.576402],[-0.169459,51.573984],[-0.171156,51.573615],[-0.17126,51.572432],[-0.167348,51.572973],[-0.164275,51.572504],[-0.16043,51.57279],[-0.158837,51.572196],[-0.150325,51.571576],[-0.14383,51.569915],[-0.14239,51.569123],[-0.14068,51.5694],[-0.133394,51.572873],[-0.131364,51.573566],[-0.127471,51.574156],[-0.124855,51.5741],[-0.12375,51.574665],[-0.119625,51.575508],[-0.115559,51.572575],[-0.115017,51.570577],[-0.110687,51.568611],[-0.104846,51.564638],[-0.104371,51.564778],[-0.098074,51.569105],[-0.09603,51.570656],[-0.097638,51.573655],[-0.094685,51.573591],[-0.093558,51.573977],[-0.091364,51.574006],[-0.089955,51.574388],[-0.086847,51.574294],[-0.085662,51.57504],[-0.080851,51.57564],[-0.076242,51.574936],[-0.074423,51.575681],[-0.072391,51.575631],[-0.066719,51.576358],[-0.066753,51.576622],[-0.061159,51.577786],[-0.062221,51.57917],[-0.0618,51.580154],[-0.057922,51.582444],[-0.055703,51.584277],[-0.054627,51.585986],[-0.052146,51.587749],[-0.053458,51.589913],[-0.052354,51.593546],[-0.050491,51.596647],[-0.046444,51.59979],[-0.043515,51.602815],[-0.041426,51.605633]]]},"properties":{"LAD22CD":"E09000014","LAD22NM":"Haringey","BNG_E":531262,"BNG_N":189349,"LONG":-0.10667,"LAT":51.58771,"GlobalID":"f25c93f1-2c48-43b8-b52c-f85fea6d5e49"},"id":290}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.267132,51.600373],[-0.278326,51.6098],[-0.281011,51.612278],[-0.287542,51.617154],[-0.292636,51.621745],[-0.304461,51.632034],[-0.305574,51.634121],[-0.304455,51.63635],[-0.305377,51.637108],[-0.312319,51.638961],[-0.316672,51.640536],[-0.31755,51.640216],[-0.319793,51.638221],[-0.326546,51.636719],[-0.329983,51.635336],[-0.332583,51.633742],[-0.338284,51.629473],[-0.339859,51.630738],[-0.345106,51.628331],[-0.349222,51.62691],[-0.359679,51.625262],[-0.361793,51.62373],[-0.362621,51.623505],[-0.363432,51.622538],[-0.365537,51.621334],[-0.368175,51.620652],[-0.37584,51.618188],[-0.382026,51.617423],[-0.384572,51.616168],[-0.385872,51.61582],[-0.392679,51.615183],[-0.399465,51.613408],[-0.40405,51.613184],[-0.403216,51.609099],[-0.401761,51.60662],[-0.402508,51.605191],[-0.402338,51.60194],[-0.401261,51.599686],[-0.399946,51.598222],[-0.400312,51.597423],[-0.397675,51.596877],[-0.396486,51.59509],[-0.395468,51.590202],[-0.394451,51.590451],[-0.392012,51.588331],[-0.391013,51.583067],[-0.391551,51.58156],[-0.388593,51.577757],[-0.387492,51.57529],[-0.388055,51.574972],[-0.385687,51.572148],[-0.38644,51.571556],[-0.383276,51.567251],[-0.382378,51.564711],[-0.38236,51.562899],[-0.380288,51.560678],[-0.380272,51.55911],[-0.377787,51.554988],[-0.37584,51.553062],[-0.373887,51.553911],[-0.372834,51.553718],[-0.366568,51.555322],[-0.36252,51.556027],[-0.362327,51.557282],[-0.347533,51.559685],[-0.343959,51.557794],[-0.338303,51.557226],[-0.335562,51.556585],[-0.334886,51.557833],[-0.331195,51.561461],[-0.329764,51.562364],[-0.328228,51.562512],[-0.328647,51.565945],[-0.329723,51.567088],[-0.325052,51.568259],[-0.322132,51.569656],[-0.324719,51.573175],[-0.325412,51.576042],[-0.326669,51.5786],[-0.320684,51.580256],[-0.313052,51.584264],[-0.306793,51.586557],[-0.304067,51.58716],[-0.300768,51.587243],[-0.282447,51.58505],[-0.282248,51.58574],[-0.28334,51.588884],[-0.28463,51.591011],[-0.286581,51.592266],[-0.289069,51.592911],[-0.290398,51.59357],[-0.283308,51.595752],[-0.276492,51.596517],[-0.276952,51.596895],[-0.272978,51.598374],[-0.271117,51.598316],[-0.267132,51.600373]]]},"properties":{"LAD22CD":"E09000015","LAD22NM":"Harrow","BNG_E":515356,"BNG_N":189736,"LONG":-0.33603,"LAT":51.59467,"GlobalID":"c0613906-00be-4071-8c9b-86d4b6a243be"},"id":291}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.313035,51.565818],[0.29029,51.564299],[0.286694,51.571536],[0.287155,51.572721],[0.286653,51.573581],[0.28506,51.574163],[0.282029,51.578831],[0.27384,51.586862],[0.272099,51.587747],[0.271346,51.589742],[0.270282,51.591097],[0.269335,51.595275],[0.270339,51.59731],[0.269879,51.599575],[0.264398,51.599769],[0.258251,51.60092],[0.257913,51.601275],[0.254816,51.601337],[0.253916,51.60192],[0.256625,51.603606],[0.257156,51.604925],[0.257999,51.604912],[0.258079,51.606507],[0.261677,51.607461],[0.263115,51.60732],[0.264562,51.608321],[0.259262,51.612095],[0.257692,51.614182],[0.252794,51.617429],[0.237351,51.624073],[0.224088,51.631738],[0.222077,51.630126],[0.217547,51.629093],[0.212109,51.627187],[0.208499,51.626682],[0.203614,51.625173],[0.200311,51.624936],[0.194775,51.625715],[0.189814,51.625104],[0.185997,51.625522],[0.185932,51.624373],[0.182785,51.625726],[0.180612,51.625736],[0.180397,51.624473],[0.175304,51.623588],[0.168901,51.62142],[0.165841,51.622379],[0.16253,51.622577],[0.155545,51.62334],[0.151073,51.623247],[0.138184,51.623545],[0.144498,51.616683],[0.145502,51.614556],[0.147496,51.612351],[0.148708,51.608683],[0.148614,51.604495],[0.149512,51.602905],[0.148206,51.598968],[0.147649,51.596797],[0.149882,51.597015],[0.151137,51.595451],[0.150619,51.591374],[0.151276,51.589884],[0.150973,51.583829],[0.148564,51.580774],[0.147452,51.580813],[0.147012,51.575708],[0.148031,51.575789],[0.147944,51.573124],[0.148988,51.573149],[0.149736,51.56971],[0.146675,51.569431],[0.146703,51.568797],[0.148736,51.568638],[0.150415,51.567842],[0.151301,51.568087],[0.154361,51.566112],[0.161897,51.561608],[0.166368,51.563272],[0.168624,51.563603],[0.173415,51.5651],[0.1763,51.564716],[0.17866,51.564942],[0.183508,51.564636],[0.183999,51.563857],[0.182665,51.561247],[0.184792,51.559875],[0.184413,51.557659],[0.18504,51.556785],[0.186922,51.555793],[0.187877,51.554098],[0.190169,51.552721],[0.189598,51.551457],[0.187496,51.550202],[0.186013,51.547535],[0.182593,51.54584],[0.180397,51.544113],[0.17923,51.54029],[0.175035,51.538495],[0.17381,51.537408],[0.17079,51.532626],[0.168694,51.531191],[0.165963,51.528793],[0.164449,51.527014],[0.162331,51.52234],[0.162287,51.52137],[0.159179,51.514516],[0.15867,51.512233],[0.159939,51.511763],[0.165002,51.51165],[0.166202,51.510674],[0.172209,51.50833],[0.174103,51.507993],[0.17853,51.505274],[0.180272,51.502173],[0.18018,51.50136],[0.182515,51.4994],[0.182868,51.497911],[0.183751,51.497154],[0.182491,51.496524],[0.183316,51.495371],[0.183866,51.492242],[0.184787,51.490707],[0.187482,51.488575],[0.187658,51.487885],[0.189174,51.487712],[0.191597,51.488085],[0.196314,51.488158],[0.201046,51.489148],[0.209641,51.489769],[0.210693,51.490185],[0.211932,51.491044],[0.213074,51.495022],[0.214157,51.49604],[0.215487,51.49662],[0.217026,51.496583],[0.221654,51.497811],[0.223606,51.497907],[0.224361,51.497326],[0.227907,51.49886],[0.229965,51.499366],[0.226614,51.504489],[0.226021,51.50588],[0.226603,51.506567],[0.228956,51.506804],[0.233441,51.50667],[0.239847,51.507279],[0.241919,51.50796],[0.241502,51.510621],[0.240307,51.510755],[0.239974,51.513053],[0.241142,51.513743],[0.237176,51.519334],[0.240195,51.519351],[0.243936,51.518337],[0.244906,51.518759],[0.244299,51.520472],[0.240724,51.521207],[0.241038,51.522606],[0.242858,51.524392],[0.245837,51.523516],[0.24709,51.525092],[0.246324,51.526532],[0.248291,51.527551],[0.248965,51.528674],[0.250852,51.528819],[0.251536,51.525971],[0.252333,51.52479],[0.253834,51.517886],[0.258928,51.517764],[0.260303,51.518371],[0.263683,51.51787],[0.264035,51.521084],[0.265009,51.522901],[0.266638,51.522956],[0.266751,51.524513],[0.265387,51.524956],[0.265347,51.53215],[0.270706,51.533093],[0.27634,51.532928],[0.281762,51.533942],[0.288075,51.534554],[0.29044,51.53466],[0.297755,51.535319],[0.297205,51.537662],[0.300859,51.538135],[0.300723,51.538756],[0.31004,51.539292],[0.310527,51.539652],[0.322441,51.540518],[0.33159,51.540797],[0.331429,51.540045],[0.334024,51.540504],[0.333333,51.541262],[0.333902,51.542494],[0.331445,51.545943],[0.329468,51.546564],[0.327979,51.548561],[0.327816,51.550995],[0.325157,51.553058],[0.322306,51.552782],[0.322053,51.554199],[0.318897,51.555191],[0.318435,51.55678],[0.3165,51.557686],[0.315295,51.557835],[0.313035,51.565818]]]},"properties":{"LAD22CD":"E09000016","LAD22NM":"Havering","BNG_E":555032,"BNG_N":187514,"LONG":0.235368,"LAT":51.56519,"GlobalID":"0e692cb7-5d62-4fa3-879b-72a1f42b6cf3"},"id":292}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.40405,51.613184],[-0.411001,51.613792],[-0.416617,51.616425],[-0.420903,51.616933],[-0.426482,51.617007],[-0.428396,51.617752],[-0.43273,51.618349],[-0.438282,51.619922],[-0.440575,51.620073],[-0.443256,51.619503],[-0.445549,51.619625],[-0.448879,51.615325],[-0.455348,51.612701],[-0.45716,51.612302],[-0.45976,51.613142],[-0.469169,51.616831],[-0.476691,51.621901],[-0.487858,51.626763],[-0.489027,51.627594],[-0.491537,51.630767],[-0.493548,51.630558],[-0.497043,51.631698],[-0.499262,51.63048],[-0.500231,51.628655],[-0.497634,51.626672],[-0.498342,51.624784],[-0.500025,51.623678],[-0.500155,51.622068],[-0.49926,51.621109],[-0.496809,51.620501],[-0.49539,51.618688],[-0.497044,51.614917],[-0.497886,51.614248],[-0.497894,51.613238],[-0.498946,51.611107],[-0.498317,51.609477],[-0.498571,51.608297],[-0.497263,51.604903],[-0.497164,51.603221],[-0.496314,51.602398],[-0.496687,51.601379],[-0.497637,51.600879],[-0.499104,51.601378],[-0.500332,51.601251],[-0.500596,51.59969],[-0.500545,51.598522],[-0.499635,51.596703],[-0.499402,51.595315],[-0.498569,51.594444],[-0.498783,51.593076],[-0.499542,51.592143],[-0.497913,51.590961],[-0.49721,51.589339],[-0.495741,51.588116],[-0.494942,51.586547],[-0.494825,51.584777],[-0.489603,51.581772],[-0.488553,51.579619],[-0.489466,51.578155],[-0.488061,51.576458],[-0.484026,51.575127],[-0.485534,51.573841],[-0.485061,51.572299],[-0.484013,51.571196],[-0.484763,51.566871],[-0.482579,51.565726],[-0.483222,51.56514],[-0.482245,51.563915],[-0.482794,51.562822],[-0.480753,51.561781],[-0.480421,51.560814],[-0.477519,51.560282],[-0.476596,51.558031],[-0.47733,51.555272],[-0.478882,51.554836],[-0.482665,51.551522],[-0.484228,51.551455],[-0.486597,51.550034],[-0.488149,51.54743],[-0.489514,51.547181],[-0.489312,51.546383],[-0.491393,51.546078],[-0.490782,51.545042],[-0.492098,51.542448],[-0.491807,51.541573],[-0.493585,51.541005],[-0.49549,51.538429],[-0.493329,51.535837],[-0.490482,51.534157],[-0.491189,51.533273],[-0.490129,51.532071],[-0.489887,51.530437],[-0.488974,51.529089],[-0.489456,51.527619],[-0.49082,51.526444],[-0.490257,51.524585],[-0.490522,51.522483],[-0.491173,51.52128],[-0.490367,51.520169],[-0.491631,51.518897],[-0.49233,51.517077],[-0.4912,51.515257],[-0.489561,51.514078],[-0.489922,51.513414],[-0.489787,51.511527],[-0.485536,51.510028],[-0.483512,51.5081],[-0.483212,51.507238],[-0.483921,51.505625],[-0.485045,51.505075],[-0.485148,51.502607],[-0.486241,51.501825],[-0.486167,51.500911],[-0.488745,51.500207],[-0.489744,51.498967],[-0.488848,51.498566],[-0.489469,51.497576],[-0.488587,51.496769],[-0.488674,51.495969],[-0.490025,51.494748],[-0.491445,51.493064],[-0.494831,51.492658],[-0.494942,51.491317],[-0.49863,51.489261],[-0.497978,51.488882],[-0.499676,51.486834],[-0.4987,51.48608],[-0.501955,51.482858],[-0.503495,51.48052],[-0.505942,51.472479],[-0.507671,51.470117],[-0.509702,51.469176],[-0.510277,51.467505],[-0.507317,51.466917],[-0.506279,51.467713],[-0.503737,51.467706],[-0.50035,51.46713],[-0.496986,51.465876],[-0.493862,51.462723],[-0.49221,51.462972],[-0.48961,51.461785],[-0.485863,51.461314],[-0.477121,51.461337],[-0.475877,51.460086],[-0.47356,51.458634],[-0.469588,51.457984],[-0.461279,51.457215],[-0.458645,51.45631],[-0.455768,51.455254],[-0.449401,51.453845],[-0.443983,51.453266],[-0.441459,51.456807],[-0.435041,51.456854],[-0.436613,51.457684],[-0.433578,51.461739],[-0.421705,51.466703],[-0.411134,51.469882],[-0.411312,51.470457],[-0.412958,51.471423],[-0.414727,51.473392],[-0.415824,51.474012],[-0.41493,51.476053],[-0.415011,51.477204],[-0.416808,51.480865],[-0.416821,51.482535],[-0.414666,51.485655],[-0.413965,51.487198],[-0.412617,51.488581],[-0.411388,51.49499],[-0.410546,51.496219],[-0.410871,51.497714],[-0.409265,51.500316],[-0.406885,51.499695],[-0.40386,51.502932],[-0.402756,51.503645],[-0.39985,51.504431],[-0.393566,51.50697],[-0.392841,51.507795],[-0.390423,51.513203],[-0.389002,51.514736],[-0.384968,51.516364],[-0.381755,51.518635],[-0.37616,51.524916],[-0.376364,51.528889],[-0.380978,51.529417],[-0.386523,51.530392],[-0.387095,51.529557],[-0.389258,51.5308],[-0.392325,51.531402],[-0.413461,51.534693],[-0.413831,51.535751],[-0.415319,51.536568],[-0.417377,51.536612],[-0.417446,51.537803],[-0.419454,51.53836],[-0.418141,51.539151],[-0.419388,51.539906],[-0.416758,51.540162],[-0.404832,51.542508],[-0.397652,51.542326],[-0.395252,51.542549],[-0.396222,51.545533],[-0.397865,51.545663],[-0.3987,51.547892],[-0.394868,51.547638],[-0.393924,51.548698],[-0.385249,51.551172],[-0.377668,51.554689],[-0.377787,51.554988],[-0.380272,51.55911],[-0.380288,51.560678],[-0.38236,51.562899],[-0.382378,51.564711],[-0.383276,51.567251],[-0.38644,51.571556],[-0.385687,51.572148],[-0.388055,51.574972],[-0.387492,51.57529],[-0.388593,51.577757],[-0.391551,51.58156],[-0.391013,51.583067],[-0.392012,51.588331],[-0.394451,51.590451],[-0.395468,51.590202],[-0.396486,51.59509],[-0.397675,51.596877],[-0.400312,51.597423],[-0.399946,51.598222],[-0.401261,51.599686],[-0.402338,51.60194],[-0.402508,51.605191],[-0.401761,51.60662],[-0.403216,51.609099],[-0.40405,51.613184]]]},"properties":{"LAD22CD":"E09000017","LAD22NM":"Hillingdon","BNG_E":508166,"BNG_N":183120,"LONG":-0.44182,"LAT":51.53663,"GlobalID":"b69ea2fe-55cb-41e9-ac58-628c723b3196"},"id":293}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.319776,51.47068],[-0.32122,51.469561],[-0.3213,51.466875],[-0.319776,51.47068]]],[[[-0.253061,51.501401],[-0.252764,51.499906],[-0.25549,51.496276],[-0.255409,51.494978],[-0.268901,51.494012],[-0.271403,51.494804],[-0.272459,51.496149],[-0.277874,51.499489],[-0.280761,51.502851],[-0.28571,51.50078],[-0.286788,51.500664],[-0.294028,51.501563],[-0.300694,51.499345],[-0.299923,51.497813],[-0.297531,51.49489],[-0.301089,51.494418],[-0.301334,51.495227],[-0.305829,51.496181],[-0.305419,51.494539],[-0.308381,51.493585],[-0.311903,51.49197],[-0.315711,51.495347],[-0.315767,51.495904],[-0.31919,51.494223],[-0.323412,51.4959],[-0.324737,51.496013],[-0.326137,51.49503],[-0.327419,51.496029],[-0.329954,51.495076],[-0.331239,51.49555],[-0.335341,51.496212],[-0.342092,51.496041],[-0.349767,51.49903],[-0.350679,51.499109],[-0.358006,51.497786],[-0.363605,51.495479],[-0.363711,51.4947],[-0.365361,51.493326],[-0.368356,51.492297],[-0.367905,51.491798],[-0.371851,51.490471],[-0.373781,51.49193],[-0.375819,51.495402],[-0.377864,51.495448],[-0.377872,51.496605],[-0.381825,51.495226],[-0.384546,51.494695],[-0.387084,51.494688],[-0.389299,51.495161],[-0.406885,51.499695],[-0.409265,51.500316],[-0.410871,51.497714],[-0.410546,51.496219],[-0.411388,51.49499],[-0.412617,51.488581],[-0.413965,51.487198],[-0.414666,51.485655],[-0.416821,51.482535],[-0.416808,51.480865],[-0.415011,51.477204],[-0.41493,51.476053],[-0.415824,51.474012],[-0.414727,51.473392],[-0.412958,51.471423],[-0.411312,51.470457],[-0.411134,51.469882],[-0.421705,51.466703],[-0.433578,51.461739],[-0.436613,51.457684],[-0.435041,51.456854],[-0.441459,51.456807],[-0.443983,51.453266],[-0.449401,51.453845],[-0.455768,51.455254],[-0.458645,51.45631],[-0.459294,51.452715],[-0.46132,51.452391],[-0.461482,51.448992],[-0.457462,51.449091],[-0.457444,51.442999],[-0.455391,51.442119],[-0.456475,51.438225],[-0.453661,51.438494],[-0.44629,51.439996],[-0.447717,51.435003],[-0.439752,51.43462],[-0.439983,51.430626],[-0.43264,51.429018],[-0.429535,51.428798],[-0.427832,51.429252],[-0.427486,51.43082],[-0.423499,51.430878],[-0.421154,51.432171],[-0.419079,51.432359],[-0.417901,51.431028],[-0.413806,51.430075],[-0.414353,51.429296],[-0.412453,51.428782],[-0.413086,51.427855],[-0.410869,51.427342],[-0.409007,51.425451],[-0.408442,51.423835],[-0.405362,51.42248],[-0.40176,51.423312],[-0.398105,51.423556],[-0.394512,51.423238],[-0.391342,51.422326],[-0.391109,51.423163],[-0.385496,51.420748],[-0.384091,51.422672],[-0.388067,51.427879],[-0.387889,51.428732],[-0.383293,51.432128],[-0.376142,51.435527],[-0.377912,51.43631],[-0.377871,51.436802],[-0.367079,51.441713],[-0.372872,51.443641],[-0.373932,51.443024],[-0.376071,51.443073],[-0.378223,51.442491],[-0.379608,51.443229],[-0.379769,51.444388],[-0.38285,51.445049],[-0.386245,51.446732],[-0.386297,51.448202],[-0.387672,51.449369],[-0.384546,51.449895],[-0.383766,51.44951],[-0.375254,51.456284],[-0.373024,51.457473],[-0.36845,51.456869],[-0.367808,51.457433],[-0.365042,51.457803],[-0.362846,51.45767],[-0.359797,51.458219],[-0.35641,51.458406],[-0.35344,51.458182],[-0.352818,51.456862],[-0.348683,51.456765],[-0.346019,51.457267],[-0.345033,51.457919],[-0.342658,51.458107],[-0.341702,51.459021],[-0.340112,51.459239],[-0.340609,51.457258],[-0.338951,51.45589],[-0.337715,51.455483],[-0.336271,51.455686],[-0.333008,51.455407],[-0.331394,51.45729],[-0.330346,51.457882],[-0.32839,51.457952],[-0.327026,51.456999],[-0.325548,51.458116],[-0.326443,51.459345],[-0.326483,51.460532],[-0.326893,51.461158],[-0.326778,51.461643],[-0.325554,51.463352],[-0.325313,51.463688],[-0.324825,51.464368],[-0.323454,51.465333],[-0.322902,51.465366],[-0.321774,51.465432],[-0.322234,51.469037],[-0.321446,51.470489],[-0.319066,51.471494],[-0.312171,51.473708],[-0.306931,51.47621],[-0.304119,51.479607],[-0.300929,51.481702],[-0.299718,51.483258],[-0.299966,51.484136],[-0.298851,51.485296],[-0.292462,51.487464],[-0.287447,51.487613],[-0.281566,51.486287],[-0.276717,51.483338],[-0.273062,51.476968],[-0.269125,51.473551],[-0.265679,51.471924],[-0.262135,51.471357],[-0.258066,51.471659],[-0.254652,51.472908],[-0.252697,51.475058],[-0.251528,51.477334],[-0.251401,51.482178],[-0.24943,51.485564],[-0.247638,51.487341],[-0.244495,51.488713],[-0.245584,51.490157],[-0.244398,51.497944],[-0.245269,51.498385],[-0.249212,51.496951],[-0.251298,51.499847],[-0.253061,51.501401]]]]},"properties":{"LAD22CD":"E09000018","LAD22NM":"Hounslow","BNG_E":512742,"BNG_N":174965,"LONG":-0.37847,"LAT":51.46243,"GlobalID":"fc69ed4f-2712-4aff-84cf-b759a1e3901d"},"id":294}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.104371,51.564778],[-0.104846,51.564638],[-0.110687,51.568611],[-0.115017,51.570577],[-0.115559,51.572575],[-0.119625,51.575508],[-0.12375,51.574665],[-0.124855,51.5741],[-0.127471,51.574156],[-0.131364,51.573566],[-0.133394,51.572873],[-0.14068,51.5694],[-0.14239,51.569123],[-0.140656,51.564555],[-0.141006,51.560432],[-0.137153,51.555399],[-0.13523,51.55459],[-0.134354,51.553623],[-0.131001,51.551514],[-0.130137,51.54962],[-0.127178,51.547665],[-0.125063,51.541143],[-0.12305,51.5385],[-0.122375,51.536887],[-0.12253,51.530728],[-0.11987,51.530939],[-0.115991,51.529845],[-0.115407,51.527724],[-0.112924,51.526411],[-0.114228,51.525519],[-0.112537,51.523796],[-0.108966,51.523021],[-0.108254,51.522094],[-0.106995,51.522191],[-0.105322,51.518545],[-0.100254,51.520131],[-0.097653,51.520723],[-0.097383,51.521594],[-0.097945,51.522877],[-0.095063,51.523139],[-0.094319,51.521485],[-0.089674,51.520718],[-0.089981,51.519973],[-0.086201,51.518811],[-0.085192,51.520336],[-0.084197,51.523903],[-0.085417,51.524513],[-0.084725,51.525417],[-0.084996,51.526205],[-0.087414,51.52596],[-0.08863,51.527388],[-0.095376,51.5292],[-0.095087,51.530054],[-0.097007,51.532984],[-0.093141,51.534394],[-0.086591,51.537257],[-0.083634,51.545066],[-0.08381,51.54659],[-0.076813,51.546081],[-0.076415,51.547319],[-0.077723,51.549466],[-0.079413,51.551654],[-0.080261,51.551911],[-0.085478,51.552164],[-0.087526,51.552825],[-0.088558,51.553945],[-0.090377,51.554152],[-0.090389,51.557577],[-0.091721,51.560229],[-0.096006,51.561229],[-0.098562,51.56084],[-0.104371,51.564778]]]},"properties":{"LAD22CD":"E09000019","LAD22NM":"Islington","BNG_E":531158,"BNG_N":184647,"LONG":-0.10992,"LAT":51.54548,"GlobalID":"dd985ecd-14d2-47b5-8163-ceacacdee156"},"id":295}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.216005,51.52793],[-0.217955,51.528642],[-0.22378,51.529965],[-0.225423,51.530165],[-0.227658,51.529924],[-0.228479,51.530354],[-0.228704,51.52988],[-0.227388,51.527894],[-0.227171,51.524794],[-0.226596,51.524797],[-0.226706,51.521978],[-0.228276,51.521098],[-0.226539,51.519579],[-0.222452,51.515411],[-0.220247,51.511734],[-0.219263,51.509576],[-0.217865,51.509761],[-0.215798,51.509116],[-0.215179,51.507648],[-0.21594,51.506402],[-0.217966,51.506146],[-0.216986,51.504466],[-0.215021,51.502189],[-0.214109,51.500771],[-0.210247,51.498129],[-0.207978,51.496023],[-0.207364,51.496148],[-0.203084,51.493372],[-0.202361,51.491665],[-0.198198,51.488065],[-0.195964,51.487373],[-0.193597,51.485814],[-0.188261,51.480965],[-0.186524,51.479871],[-0.183852,51.477435],[-0.182163,51.477385],[-0.179262,51.477994],[-0.177514,51.480103],[-0.175759,51.48162],[-0.16378,51.483636],[-0.150024,51.485462],[-0.150171,51.486093],[-0.155849,51.489607],[-0.155173,51.490049],[-0.155797,51.491452],[-0.154794,51.491964],[-0.155984,51.493223],[-0.154995,51.493855],[-0.156072,51.497763],[-0.15785,51.499019],[-0.158448,51.50225],[-0.160999,51.501591],[-0.162575,51.500294],[-0.165481,51.498698],[-0.167615,51.498304],[-0.16839,51.499022],[-0.173543,51.498222],[-0.179547,51.497779],[-0.180312,51.501462],[-0.184235,51.501795],[-0.187909,51.51018],[-0.192122,51.509874],[-0.192961,51.511815],[-0.194041,51.511758],[-0.19505,51.515033],[-0.199179,51.514553],[-0.199916,51.516848],[-0.201457,51.517802],[-0.203743,51.520624],[-0.202645,51.520901],[-0.200624,51.520712],[-0.201615,51.522744],[-0.203857,51.523461],[-0.205878,51.52574],[-0.207296,51.526241],[-0.212674,51.526868],[-0.215547,51.526722],[-0.216005,51.52793]]]},"properties":{"LAD22CD":"E09000020","LAD22NM":"Kensington and Chelsea","BNG_E":525757,"BNG_N":179053,"LONG":-0.18976,"LAT":51.49644,"GlobalID":"ecd87040-a1e5-4734-a725-1aa37b61a07f"},"id":296}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.239677,51.389294],[-0.240085,51.391194],[-0.241668,51.39387],[-0.244572,51.394662],[-0.247401,51.397582],[-0.246598,51.399215],[-0.246823,51.400484],[-0.245213,51.401702],[-0.244674,51.403846],[-0.24533,51.407071],[-0.247081,51.407889],[-0.247127,51.409517],[-0.249577,51.414905],[-0.249619,51.418528],[-0.2511,51.422315],[-0.252931,51.423209],[-0.252238,51.425737],[-0.254224,51.429317],[-0.253304,51.430844],[-0.25106,51.432565],[-0.251231,51.434168],[-0.253087,51.435298],[-0.254067,51.43729],[-0.264576,51.432917],[-0.270939,51.429542],[-0.280436,51.421856],[-0.286596,51.420172],[-0.290617,51.42899],[-0.292999,51.428939],[-0.293388,51.426512],[-0.294768,51.426461],[-0.295443,51.427644],[-0.297472,51.42856],[-0.301596,51.431429],[-0.301758,51.430391],[-0.30592,51.431362],[-0.306408,51.43015],[-0.309761,51.432144],[-0.310656,51.43221],[-0.312801,51.430344],[-0.314448,51.428259],[-0.310367,51.426365],[-0.308382,51.424996],[-0.306869,51.423288],[-0.306009,51.421234],[-0.308287,51.415247],[-0.309074,51.409302],[-0.308766,51.402202],[-0.309328,51.400452],[-0.312126,51.398142],[-0.312564,51.397402],[-0.317698,51.393667],[-0.314112,51.390217],[-0.316737,51.388772],[-0.315959,51.387632],[-0.313111,51.388772],[-0.310846,51.386186],[-0.311765,51.385785],[-0.310608,51.384764],[-0.308495,51.380501],[-0.307869,51.378364],[-0.307971,51.376664],[-0.308672,51.375448],[-0.312652,51.374751],[-0.314318,51.374638],[-0.316671,51.373166],[-0.317482,51.371969],[-0.318482,51.365762],[-0.318262,51.363505],[-0.319769,51.359928],[-0.321506,51.357209],[-0.323729,51.354411],[-0.327923,51.352185],[-0.33051,51.348419],[-0.327883,51.343742],[-0.328956,51.340231],[-0.329695,51.332765],[-0.329093,51.330262],[-0.330656,51.32901],[-0.330116,51.327517],[-0.328291,51.326463],[-0.323947,51.326716],[-0.318956,51.327956],[-0.316742,51.329146],[-0.313693,51.331415],[-0.31093,51.332389],[-0.307612,51.334608],[-0.306192,51.335084],[-0.304926,51.33675],[-0.305414,51.339479],[-0.304025,51.343047],[-0.301314,51.345293],[-0.299925,51.347669],[-0.297771,51.349261],[-0.292907,51.352374],[-0.292661,51.353615],[-0.2912,51.3552],[-0.291085,51.356559],[-0.288973,51.35871],[-0.286973,51.359373],[-0.285077,51.361211],[-0.288249,51.362117],[-0.287021,51.362666],[-0.284076,51.365148],[-0.282162,51.366],[-0.27982,51.367825],[-0.27656,51.368808],[-0.275833,51.370014],[-0.274023,51.370655],[-0.272546,51.372264],[-0.269065,51.373562],[-0.264679,51.375622],[-0.262469,51.377253],[-0.261149,51.3796],[-0.258421,51.378969],[-0.253948,51.378772],[-0.251638,51.379048],[-0.247894,51.380169],[-0.24503,51.380034],[-0.244276,51.383065],[-0.243235,51.382597],[-0.241597,51.384524],[-0.238721,51.386094],[-0.239677,51.389294]]]},"properties":{"LAD22CD":"E09000021","LAD22NM":"Kingston upon Thames","BNG_E":519508,"BNG_N":167389,"LONG":-0.28367,"LAT":51.39296,"GlobalID":"71468c76-3785-4628-8d77-2c1da91023c4"},"id":297}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.108857,51.508426],[-0.111003,51.508492],[-0.11512,51.50766],[-0.116844,51.506953],[-0.118229,51.505835],[-0.119381,51.503814],[-0.121354,51.494374],[-0.122122,51.4919],[-0.124205,51.487854],[-0.124885,51.487858],[-0.126999,51.485816],[-0.1285,51.485045],[-0.126339,51.484467],[-0.127475,51.482022],[-0.129925,51.481178],[-0.133878,51.475674],[-0.135205,51.474289],[-0.134703,51.473308],[-0.135769,51.472715],[-0.136896,51.473088],[-0.138324,51.471963],[-0.140318,51.471593],[-0.142652,51.470065],[-0.143075,51.47052],[-0.150594,51.467616],[-0.150445,51.465978],[-0.151206,51.465885],[-0.150942,51.463837],[-0.149666,51.461298],[-0.149365,51.459363],[-0.148134,51.456405],[-0.147353,51.452964],[-0.147704,51.45234],[-0.142291,51.450983],[-0.143116,51.449709],[-0.144813,51.448437],[-0.145569,51.446017],[-0.145381,51.444918],[-0.143594,51.441838],[-0.13786,51.441696],[-0.135878,51.442006],[-0.137658,51.438582],[-0.139887,51.437021],[-0.139733,51.435665],[-0.137834,51.433778],[-0.136497,51.433915],[-0.135238,51.430335],[-0.138364,51.430486],[-0.138896,51.424573],[-0.137826,51.421106],[-0.14038,51.419249],[-0.144981,51.415798],[-0.144324,51.41535],[-0.147058,51.413804],[-0.14806,51.41287],[-0.144844,51.412388],[-0.142556,51.413342],[-0.13808,51.411804],[-0.134078,51.410992],[-0.133538,51.412576],[-0.132689,51.412348],[-0.127871,51.412006],[-0.127722,51.412321],[-0.124452,51.413365],[-0.124081,51.414597],[-0.122491,51.415027],[-0.119814,51.418802],[-0.115592,51.420631],[-0.112624,51.423243],[-0.109259,51.423178],[-0.105962,51.422594],[-0.096847,51.422676],[-0.094863,51.42282],[-0.092702,51.422554],[-0.088338,51.420005],[-0.086284,51.419284],[-0.083218,51.41974],[-0.078562,51.419875],[-0.078295,51.420605],[-0.079833,51.422134],[-0.080876,51.42186],[-0.081735,51.423378],[-0.083459,51.423004],[-0.084035,51.425691],[-0.085909,51.428504],[-0.088198,51.429335],[-0.089345,51.432017],[-0.091019,51.437553],[-0.092896,51.441082],[-0.094427,51.443235],[-0.095065,51.445412],[-0.096038,51.446726],[-0.099134,51.448975],[-0.099962,51.450273],[-0.100763,51.450336],[-0.101454,51.452211],[-0.10108,51.453927],[-0.095813,51.457415],[-0.094948,51.458787],[-0.092246,51.461056],[-0.090658,51.463317],[-0.090063,51.465831],[-0.092757,51.469869],[-0.094143,51.470673],[-0.095975,51.469867],[-0.098829,51.471872],[-0.100654,51.474447],[-0.099975,51.476865],[-0.108215,51.48029],[-0.104036,51.480904],[-0.107189,51.48365],[-0.10636,51.484899],[-0.108461,51.485849],[-0.10327,51.491255],[-0.104853,51.493528],[-0.110931,51.495468],[-0.111467,51.496459],[-0.110258,51.496763],[-0.108267,51.500443],[-0.105917,51.502033],[-0.107393,51.503036],[-0.106403,51.503367],[-0.106486,51.505063],[-0.107339,51.507072],[-0.108165,51.506922],[-0.108857,51.508426]]]},"properties":{"LAD22CD":"E09000022","LAD22NM":"Lambeth","BNG_E":531117,"BNG_N":175629,"LONG":-0.11386,"LAT":51.46445,"GlobalID":"10baa875-f0f2-4ed1-86b4-2e4a6394026d"},"id":298}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.024717,51.485484],[-0.027554,51.487222],[-0.029386,51.488938],[-0.032399,51.493113],[-0.037293,51.492221],[-0.039294,51.492962],[-0.041027,51.49183],[-0.040318,51.491063],[-0.042477,51.490244],[-0.04599,51.490275],[-0.046541,51.490745],[-0.05144,51.489439],[-0.050083,51.488336],[-0.0526,51.487558],[-0.053534,51.485796],[-0.053072,51.485164],[-0.052786,51.482645],[-0.054242,51.478584],[-0.052681,51.47801],[-0.052731,51.472934],[-0.051661,51.469752],[-0.052256,51.469214],[-0.050856,51.46758],[-0.050863,51.466638],[-0.048181,51.465898],[-0.045974,51.463975],[-0.045211,51.462205],[-0.045217,51.459407],[-0.046131,51.456962],[-0.044607,51.456577],[-0.041623,51.45499],[-0.046125,51.449873],[-0.049061,51.450112],[-0.053762,51.448709],[-0.057538,51.450337],[-0.061801,51.447796],[-0.063058,51.446184],[-0.063718,51.444225],[-0.063845,51.442526],[-0.065001,51.441157],[-0.064028,51.440849],[-0.063431,51.43754],[-0.064395,51.437041],[-0.065809,51.434631],[-0.066683,51.433922],[-0.069503,51.432682],[-0.07219,51.432458],[-0.072839,51.432084],[-0.075023,51.429179],[-0.073919,51.426151],[-0.070501,51.42617],[-0.068856,51.425616],[-0.067889,51.425926],[-0.065816,51.425328],[-0.062578,51.425197],[-0.058098,51.423177],[-0.055129,51.422938],[-0.054755,51.423727],[-0.051783,51.423581],[-0.051748,51.422517],[-0.047205,51.422859],[-0.046263,51.422366],[-0.041582,51.423654],[-0.041043,51.424245],[-0.03845,51.423958],[-0.03746,51.424992],[-0.034201,51.4251],[-0.031794,51.42471],[-0.031972,51.425536],[-0.030081,51.425645],[-0.025982,51.423621],[-0.024401,51.423154],[-0.02258,51.421562],[-0.020928,51.420923],[-0.020751,51.41994],[-0.021358,51.418412],[-0.022529,51.417541],[-0.021014,51.416019],[-0.017821,51.415743],[-0.017961,51.415055],[-0.014127,51.4151],[-0.014236,51.413657],[-0.010519,51.413551],[-0.006601,51.41466],[-0.004968,51.414589],[-0.003258,51.41505],[-0.003378,51.41566],[-0.000728,51.415912],[-0.000051,51.417645],[0.001755,51.418558],[0.00355,51.41742],[0.005698,51.418514],[0.005254,51.419315],[0.006324,51.421015],[0.007376,51.421379],[0.008103,51.423043],[0.009993,51.422483],[0.01184,51.424051],[0.014422,51.425232],[0.014134,51.426175],[0.016074,51.426208],[0.018801,51.427051],[0.021161,51.426844],[0.025437,51.428989],[0.036212,51.422365],[0.039055,51.424671],[0.037548,51.431379],[0.037725,51.433347],[0.033727,51.431699],[0.032478,51.431893],[0.028611,51.434031],[0.029092,51.434666],[0.028702,51.436406],[0.027266,51.436559],[0.025402,51.43569],[0.024817,51.438238],[0.02884,51.438786],[0.028603,51.440454],[0.029385,51.441705],[0.027794,51.441511],[0.025442,51.441738],[0.021509,51.442735],[0.020624,51.444209],[0.021517,51.444443],[0.021239,51.446692],[0.022968,51.447205],[0.021973,51.448944],[0.0151,51.45001],[0.019885,51.450732],[0.01956,51.451707],[0.01835,51.451575],[0.017545,51.455033],[0.014035,51.455728],[0.011536,51.456615],[0.009903,51.459631],[0.009095,51.465873],[0.011537,51.466236],[0.013265,51.466839],[0.01261,51.469808],[0.016699,51.469514],[0.01553,51.471316],[0.015001,51.473081],[0.012105,51.47317],[-0.000958,51.471812],[-0.008118,51.472757],[-0.012493,51.472341],[-0.014044,51.472676],[-0.015159,51.471769],[-0.013106,51.46894],[-0.015065,51.468036],[-0.016537,51.469226],[-0.019114,51.470009],[-0.018659,51.470686],[-0.019975,51.473004],[-0.022573,51.474112],[-0.022562,51.475358],[-0.020954,51.475676],[-0.020597,51.476694],[-0.020556,51.476723],[-0.019388,51.47719],[-0.019167,51.479651],[-0.017093,51.480408],[-0.017849,51.48088],[-0.023042,51.479629],[-0.023135,51.480738],[-0.026374,51.481508],[-0.025793,51.482189],[-0.025175,51.485022],[-0.024717,51.485484]]]},"properties":{"LAD22CD":"E09000023","LAD22NM":"Lewisham","BNG_E":537889,"BNG_N":173344,"LONG":-0.01733,"LAT":51.44231,"GlobalID":"d36cdaa9-4dfe-44ba-aae1-f63248c5d819"},"id":299}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.14038,51.419249],[-0.144455,51.417752],[-0.149316,51.419855],[-0.151302,51.419852],[-0.159858,51.422628],[-0.161574,51.419864],[-0.1684,51.42091],[-0.173572,51.423182],[-0.178673,51.424313],[-0.181915,51.424735],[-0.184068,51.426379],[-0.184528,51.427623],[-0.18423,51.431275],[-0.185737,51.433164],[-0.187265,51.432986],[-0.187395,51.432097],[-0.189772,51.431351],[-0.191161,51.433462],[-0.190241,51.434804],[-0.189191,51.438547],[-0.190643,51.438919],[-0.189847,51.440278],[-0.190021,51.441474],[-0.204498,51.438968],[-0.212522,51.437831],[-0.215711,51.437746],[-0.217823,51.438679],[-0.220414,51.438449],[-0.224253,51.43886],[-0.2313,51.438139],[-0.240688,51.43522],[-0.25106,51.432565],[-0.253304,51.430844],[-0.254224,51.429317],[-0.252238,51.425737],[-0.252931,51.423209],[-0.2511,51.422315],[-0.249619,51.418528],[-0.249577,51.414905],[-0.247127,51.409517],[-0.247081,51.407889],[-0.24533,51.407071],[-0.244674,51.403846],[-0.245213,51.401702],[-0.246823,51.400484],[-0.246598,51.399215],[-0.247401,51.397582],[-0.244572,51.394662],[-0.241668,51.39387],[-0.240085,51.391194],[-0.239677,51.389294],[-0.234634,51.390538],[-0.233904,51.387708],[-0.227718,51.383953],[-0.223197,51.382046],[-0.218081,51.380182],[-0.212961,51.38481],[-0.213347,51.385006],[-0.209769,51.388252],[-0.205003,51.386091],[-0.203493,51.387225],[-0.200285,51.384966],[-0.193926,51.387871],[-0.193176,51.387865],[-0.190445,51.386202],[-0.188387,51.385434],[-0.184506,51.387513],[-0.182647,51.388054],[-0.17924,51.389834],[-0.174843,51.393417],[-0.172846,51.392649],[-0.171292,51.39251],[-0.167584,51.39006],[-0.166436,51.389694],[-0.165265,51.387978],[-0.161745,51.388131],[-0.160961,51.387819],[-0.15803,51.389258],[-0.144353,51.390679],[-0.143158,51.390401],[-0.141878,51.389355],[-0.134354,51.390885],[-0.128731,51.393481],[-0.129664,51.393651],[-0.124133,51.397613],[-0.127964,51.401698],[-0.13048,51.403276],[-0.131508,51.404929],[-0.132455,51.408407],[-0.13126,51.409503],[-0.129454,51.409575],[-0.128455,51.411012],[-0.128173,51.410936],[-0.127722,51.412321],[-0.127871,51.412006],[-0.132689,51.412348],[-0.133538,51.412576],[-0.134078,51.410992],[-0.13808,51.411804],[-0.142556,51.413342],[-0.144844,51.412388],[-0.14806,51.41287],[-0.147058,51.413804],[-0.144324,51.41535],[-0.144981,51.415798],[-0.14038,51.419249]]]},"properties":{"LAD22CD":"E09000024","LAD22NM":"Merton","BNG_E":526069,"BNG_N":169507,"LONG":-0.18867,"LAT":51.41057,"GlobalID":"b87153c8-4a6d-40ba-af87-0092bed4fdc7"},"id":300}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.068352,51.544392],[0.068744,51.547537],[0.067818,51.553062],[0.066973,51.553026],[0.066615,51.554728],[0.064988,51.556411],[0.063615,51.557308],[0.060077,51.556465],[0.058298,51.557849],[0.057149,51.558109],[0.055732,51.559338],[0.054491,51.559651],[0.054124,51.560859],[0.051533,51.562205],[0.050345,51.56399],[0.041955,51.561452],[0.042878,51.558374],[0.044366,51.557601],[0.046328,51.554815],[0.035435,51.555255],[0.032205,51.554578],[0.025369,51.554064],[0.025304,51.555548],[0.02379,51.55553],[0.022504,51.556166],[0.020369,51.556269],[0.021559,51.55488],[0.016972,51.553184],[0.016269,51.553225],[0.014601,51.554956],[0.00965,51.553435],[0.010848,51.552262],[0.009536,51.551239],[0.005531,51.550661],[0.005203,51.552134],[-0.000159,51.55174],[-0.003635,51.550921],[-0.004169,51.551043],[-0.008653,51.549929],[-0.009444,51.552218],[-0.010836,51.552626],[-0.016943,51.551406],[-0.01714,51.551577],[-0.018967,51.5516],[-0.018914,51.550484],[-0.017431,51.547539],[-0.01655,51.54333],[-0.016092,51.542477],[-0.016595,51.54139],[-0.019444,51.53826],[-0.021268,51.537007],[-0.019663,51.535585],[-0.018948,51.534139],[-0.018071,51.533439],[-0.01801,51.532224],[-0.017147,51.531315],[-0.013679,51.529845],[-0.010688,51.529281],[-0.010268,51.528482],[-0.008641,51.527556],[-0.007534,51.526237],[-0.008091,51.523835],[-0.007863,51.523025],[-0.006942,51.526063],[-0.004186,51.526871],[-0.002301,51.52716],[-0.000776,51.528141],[0.001109,51.531095],[0.001821,51.530315],[0.000662,51.528311],[-0.002088,51.52703],[-0.006511,51.525684],[-0.007224,51.522821],[-0.008658,51.520759],[-0.008554,51.520046],[-0.006556,51.51896],[-0.005124,51.516921],[-0.004035,51.517889],[-0.002537,51.518482],[0.003151,51.515832],[0.004389,51.514701],[0.00257,51.510972],[0.003712,51.51104],[0.004281,51.513411],[0.006322,51.51461],[0.008121,51.513341],[0.008176,51.512545],[0.006574,51.510028],[0.009834,51.50917],[0.010473,51.508581],[0.009691,51.506837],[0.013085,51.504449],[0.017132,51.500997],[0.019676,51.499639],[0.022359,51.498902],[0.026802,51.498625],[0.034961,51.499645],[0.043472,51.499908],[0.049305,51.499555],[0.057615,51.498449],[0.060125,51.498357],[0.069694,51.499193],[0.073666,51.50036],[0.075262,51.502265],[0.077803,51.50458],[0.077975,51.505146],[0.080252,51.5084],[0.080996,51.508596],[0.083681,51.510973],[0.083317,51.511523],[0.08484,51.51237],[0.088074,51.513671],[0.090534,51.514298],[0.09026,51.514796],[0.094001,51.514985],[0.095612,51.515463],[0.094772,51.516487],[0.093935,51.518973],[0.094458,51.520303],[0.091824,51.522546],[0.092251,51.524143],[0.092088,51.525624],[0.089676,51.525584],[0.088862,51.526232],[0.086486,51.5256],[0.085201,51.525582],[0.083094,51.52661],[0.080106,51.527507],[0.077986,51.52912],[0.075184,51.529511],[0.07348,51.529443],[0.072598,51.530752],[0.071756,51.532907],[0.069204,51.536348],[0.068915,51.537189],[0.066993,51.53961],[0.066882,51.541749],[0.068352,51.544392]]]},"properties":{"LAD22CD":"E09000025","LAD22NM":"Newham","BNG_E":540714,"BNG_N":183344,"LONG":0.027275,"LAT":51.53147,"GlobalID":"9c8f7930-19d2-4445-8cbc-ec82c97e006c"},"id":301}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.138184,51.623545],[0.13581,51.623547],[0.129187,51.621443],[0.128879,51.620698],[0.126098,51.619643],[0.124198,51.617506],[0.119307,51.615368],[0.118606,51.615367],[0.116715,51.616922],[0.109632,51.613962],[0.103838,51.612551],[0.103414,51.613454],[0.100168,51.612725],[0.098068,51.615422],[0.092285,51.613574],[0.093641,51.61248],[0.094692,51.610747],[0.093717,51.609755],[0.092651,51.609477],[0.091714,51.60748],[0.092581,51.606197],[0.08963,51.605518],[0.088922,51.604854],[0.087145,51.604467],[0.084475,51.606359],[0.07917,51.607047],[0.072824,51.60469],[0.065967,51.606321],[0.064011,51.607225],[0.062999,51.606912],[0.060698,51.608277],[0.052631,51.612015],[0.048921,51.613571],[0.048483,51.614981],[0.050176,51.616391],[0.052001,51.616809],[0.05343,51.616341],[0.054391,51.6176],[0.053098,51.618423],[0.04786,51.617411],[0.043705,51.616942],[0.040787,51.615729],[0.040214,51.616411],[0.037545,51.6179],[0.037478,51.618326],[0.032782,51.622243],[0.028963,51.624674],[0.029082,51.625113],[0.026834,51.625907],[0.024588,51.627518],[0.021814,51.628827],[0.020992,51.628909],[0.02058,51.627335],[0.018488,51.6228],[0.016216,51.621778],[0.015841,51.620912],[0.014341,51.620304],[0.014526,51.618903],[0.008708,51.619075],[0.016278,51.616853],[0.021259,51.612273],[0.021398,51.611144],[0.019145,51.60779],[0.012931,51.599055],[0.012116,51.59215],[0.013396,51.583787],[0.015528,51.583385],[0.01526,51.581708],[0.01744,51.577457],[0.017409,51.574413],[0.01649,51.57289],[0.018042,51.572022],[0.01891,51.572349],[0.019156,51.569851],[0.017695,51.570003],[0.019016,51.567019],[0.018848,51.566311],[0.017536,51.565642],[0.014462,51.565603],[0.014217,51.561326],[0.014782,51.55944],[0.017158,51.558798],[0.020369,51.556269],[0.022504,51.556166],[0.02379,51.55553],[0.025304,51.555548],[0.025369,51.554064],[0.032205,51.554578],[0.035435,51.555255],[0.046328,51.554815],[0.044366,51.557601],[0.042878,51.558374],[0.041955,51.561452],[0.050345,51.56399],[0.051533,51.562205],[0.054124,51.560859],[0.054491,51.559651],[0.055732,51.559338],[0.057149,51.558109],[0.058298,51.557849],[0.060077,51.556465],[0.063615,51.557308],[0.064988,51.556411],[0.066615,51.554728],[0.066973,51.553026],[0.067818,51.553062],[0.068744,51.547537],[0.068352,51.544392],[0.069344,51.544154],[0.069711,51.544066],[0.071957,51.543811],[0.075549,51.544011],[0.07681,51.544585],[0.07796,51.544052],[0.081512,51.54517],[0.08166,51.545585],[0.085892,51.547344],[0.091537,51.548303],[0.092268,51.548637],[0.093523,51.545859],[0.099768,51.548427],[0.104316,51.549842],[0.108423,51.552696],[0.111139,51.552485],[0.114748,51.555323],[0.112737,51.556525],[0.113273,51.557267],[0.117085,51.556912],[0.118901,51.557371],[0.120491,51.558573],[0.117487,51.55918],[0.119742,51.562506],[0.119052,51.563052],[0.125029,51.564341],[0.12768,51.566161],[0.129324,51.566525],[0.130459,51.570282],[0.129907,51.571538],[0.131577,51.571826],[0.130906,51.573339],[0.129447,51.573952],[0.129194,51.576312],[0.131643,51.577085],[0.130824,51.579365],[0.133564,51.579953],[0.132555,51.581307],[0.127759,51.581636],[0.128084,51.582857],[0.12726,51.58393],[0.126386,51.586725],[0.131022,51.587524],[0.129579,51.590048],[0.137595,51.593894],[0.1466,51.599436],[0.148206,51.598968],[0.149512,51.602905],[0.148614,51.604495],[0.148708,51.608683],[0.147496,51.612351],[0.145502,51.614556],[0.144498,51.616683],[0.138184,51.623545]]]},"properties":{"LAD22CD":"E09000026","LAD22NM":"Redbridge","BNG_E":543512,"BNG_N":189477,"LONG":0.070085,"LAT":51.58588,"GlobalID":"99ba6dad-da62-46a4-b8fa-469bc55d8001"},"id":302}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.32176,51.445828],[-0.321753,51.446236],[-0.325787,51.445723],[-0.328068,51.443966],[-0.32176,51.445828]]],[[[-0.223409,51.471497],[-0.222919,51.471839],[-0.224871,51.473684],[-0.226623,51.476185],[-0.226837,51.480967],[-0.228018,51.485118],[-0.231315,51.48788],[-0.233149,51.48856],[-0.235636,51.488999],[-0.238996,51.48886],[-0.241079,51.488282],[-0.2484,51.483834],[-0.249379,51.482065],[-0.249218,51.479216],[-0.249656,51.476084],[-0.251477,51.473629],[-0.253378,51.47223],[-0.255678,51.47117],[-0.258554,51.47043],[-0.264027,51.470216],[-0.267826,51.47123],[-0.272441,51.473969],[-0.273986,51.475649],[-0.277941,51.482056],[-0.280387,51.483776],[-0.284433,51.485902],[-0.287292,51.4865],[-0.290003,51.48634],[-0.295263,51.484826],[-0.302583,51.479248],[-0.306804,51.474934],[-0.310048,51.473473],[-0.314596,51.471794],[-0.317716,51.471005],[-0.318581,51.470206],[-0.319213,51.46844],[-0.319771,51.464672],[-0.316931,51.46247],[-0.31388,51.460725],[-0.307993,51.458808],[-0.305037,51.456456],[-0.302802,51.453398],[-0.30282,51.451307],[-0.305757,51.448599],[-0.309565,51.447271],[-0.317059,51.44576],[-0.321711,51.445367],[-0.327791,51.443444],[-0.329139,51.442685],[-0.330078,51.441592],[-0.330084,51.43966],[-0.32802,51.436695],[-0.327596,51.434383],[-0.325853,51.432323],[-0.323354,51.430867],[-0.31907,51.430012],[-0.318486,51.429094],[-0.322332,51.429889],[-0.324794,51.430852],[-0.327223,51.432426],[-0.328455,51.433907],[-0.329068,51.436663],[-0.330577,51.438468],[-0.331845,51.439172],[-0.331208,51.439741],[-0.331632,51.441264],[-0.33037,51.44296],[-0.327187,51.445643],[-0.32515,51.446533],[-0.3215,51.446861],[-0.318898,51.44643],[-0.315745,51.446906],[-0.308855,51.448677],[-0.305634,51.450441],[-0.304351,51.451621],[-0.303892,51.45329],[-0.305948,51.456156],[-0.307534,51.457212],[-0.30891,51.45755],[-0.311259,51.458767],[-0.313996,51.459713],[-0.318963,51.462661],[-0.321738,51.465364],[-0.32371,51.465107],[-0.324396,51.4645],[-0.326125,51.462432],[-0.326815,51.461319],[-0.326389,51.46088],[-0.326351,51.460838],[-0.326483,51.460532],[-0.326443,51.459345],[-0.325548,51.458116],[-0.327026,51.456999],[-0.32839,51.457952],[-0.330346,51.457882],[-0.331394,51.45729],[-0.333008,51.455407],[-0.336271,51.455686],[-0.337715,51.455483],[-0.338951,51.45589],[-0.340609,51.457258],[-0.340112,51.459239],[-0.341702,51.459021],[-0.342658,51.458107],[-0.345033,51.457919],[-0.346019,51.457267],[-0.348683,51.456765],[-0.352818,51.456862],[-0.35344,51.458182],[-0.35641,51.458406],[-0.359797,51.458219],[-0.362846,51.45767],[-0.365042,51.457803],[-0.367808,51.457433],[-0.36845,51.456869],[-0.373024,51.457473],[-0.375254,51.456284],[-0.383766,51.44951],[-0.384546,51.449895],[-0.387672,51.449369],[-0.386297,51.448202],[-0.386245,51.446732],[-0.38285,51.445049],[-0.379769,51.444388],[-0.379608,51.443229],[-0.378223,51.442491],[-0.376071,51.443073],[-0.373932,51.443024],[-0.372872,51.443641],[-0.367079,51.441713],[-0.377871,51.436802],[-0.377912,51.43631],[-0.376142,51.435527],[-0.383293,51.432128],[-0.387889,51.428732],[-0.388067,51.427879],[-0.384091,51.422672],[-0.385496,51.420748],[-0.391109,51.423163],[-0.391342,51.422326],[-0.386642,51.420081],[-0.387694,51.419328],[-0.386762,51.417654],[-0.386594,51.415022],[-0.386123,51.414281],[-0.390293,51.414338],[-0.38965,51.410693],[-0.389177,51.41032],[-0.386636,51.410412],[-0.383778,51.410119],[-0.38335,51.408538],[-0.379428,51.407834],[-0.37386,51.408493],[-0.36474,51.411592],[-0.361238,51.41204],[-0.35914,51.411903],[-0.355357,51.410752],[-0.355109,51.409807],[-0.349891,51.40698],[-0.347081,51.405881],[-0.343788,51.40398],[-0.340637,51.403094],[-0.335807,51.398456],[-0.332264,51.395918],[-0.330786,51.394091],[-0.328672,51.392309],[-0.32586,51.39144],[-0.319833,51.392593],[-0.317698,51.393667],[-0.312564,51.397402],[-0.312126,51.398142],[-0.309328,51.400452],[-0.308766,51.402202],[-0.309074,51.409302],[-0.308287,51.415247],[-0.306009,51.421234],[-0.306869,51.423288],[-0.308382,51.424996],[-0.310367,51.426365],[-0.314448,51.428259],[-0.312801,51.430344],[-0.310656,51.43221],[-0.309761,51.432144],[-0.306408,51.43015],[-0.30592,51.431362],[-0.301758,51.430391],[-0.301596,51.431429],[-0.297472,51.42856],[-0.295443,51.427644],[-0.294768,51.426461],[-0.293388,51.426512],[-0.292999,51.428939],[-0.290617,51.42899],[-0.286596,51.420172],[-0.280436,51.421856],[-0.270939,51.429542],[-0.264576,51.432917],[-0.254067,51.43729],[-0.242706,51.441918],[-0.241606,51.443133],[-0.247303,51.44918],[-0.25909,51.454932],[-0.258318,51.457333],[-0.256786,51.459855],[-0.25802,51.460269],[-0.255997,51.463041],[-0.252892,51.465216],[-0.243953,51.46523],[-0.239533,51.464839],[-0.233291,51.463991],[-0.233625,51.466037],[-0.232807,51.466634],[-0.233424,51.468145],[-0.232924,51.471679],[-0.232592,51.472615],[-0.231085,51.472834],[-0.227049,51.471447],[-0.223613,51.470761],[-0.223409,51.471497]]]]},"properties":{"LAD22CD":"E09000027","LAD22NM":"Richmond upon Thames","BNG_E":519005,"BNG_N":172650,"LONG":-0.28914,"LAT":51.44035,"GlobalID":"0a070b44-1c93-43d4-ab27-bc1964fe62cb"},"id":303}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.104676,51.508615],[-0.108857,51.508426],[-0.108165,51.506922],[-0.107339,51.507072],[-0.106486,51.505063],[-0.106403,51.503367],[-0.107393,51.503036],[-0.105917,51.502033],[-0.108267,51.500443],[-0.110258,51.496763],[-0.111467,51.496459],[-0.110931,51.495468],[-0.104853,51.493528],[-0.10327,51.491255],[-0.108461,51.485849],[-0.10636,51.484899],[-0.107189,51.48365],[-0.104036,51.480904],[-0.108215,51.48029],[-0.099975,51.476865],[-0.100654,51.474447],[-0.098829,51.471872],[-0.095975,51.469867],[-0.094143,51.470673],[-0.092757,51.469869],[-0.090063,51.465831],[-0.090658,51.463317],[-0.092246,51.461056],[-0.094948,51.458787],[-0.095813,51.457415],[-0.10108,51.453927],[-0.101454,51.452211],[-0.100763,51.450336],[-0.099962,51.450273],[-0.099134,51.448975],[-0.096038,51.446726],[-0.095065,51.445412],[-0.094427,51.443235],[-0.092896,51.441082],[-0.091019,51.437553],[-0.089345,51.432017],[-0.088198,51.429335],[-0.085909,51.428504],[-0.084035,51.425691],[-0.083459,51.423004],[-0.081735,51.423378],[-0.080876,51.42186],[-0.079833,51.422134],[-0.078295,51.420605],[-0.07494,51.425699],[-0.073919,51.426151],[-0.075023,51.429179],[-0.072839,51.432084],[-0.07219,51.432458],[-0.069503,51.432682],[-0.066683,51.433922],[-0.065809,51.434631],[-0.064395,51.437041],[-0.063431,51.43754],[-0.064028,51.440849],[-0.065001,51.441157],[-0.063845,51.442526],[-0.063718,51.444225],[-0.063058,51.446184],[-0.061801,51.447796],[-0.057538,51.450337],[-0.053762,51.448709],[-0.049061,51.450112],[-0.046125,51.449873],[-0.041623,51.45499],[-0.044607,51.456577],[-0.046131,51.456962],[-0.045217,51.459407],[-0.045211,51.462205],[-0.045974,51.463975],[-0.048181,51.465898],[-0.050863,51.466638],[-0.050856,51.46758],[-0.052256,51.469214],[-0.051661,51.469752],[-0.052731,51.472934],[-0.052681,51.47801],[-0.054242,51.478584],[-0.052786,51.482645],[-0.053072,51.485164],[-0.053534,51.485796],[-0.0526,51.487558],[-0.050083,51.488336],[-0.05144,51.489439],[-0.046541,51.490745],[-0.04599,51.490275],[-0.042477,51.490244],[-0.040318,51.491063],[-0.041027,51.49183],[-0.039294,51.492962],[-0.037293,51.492221],[-0.032399,51.493113],[-0.032549,51.496009],[-0.032944,51.496942],[-0.03249,51.498284],[-0.032322,51.504349],[-0.034195,51.506304],[-0.037264,51.507231],[-0.041302,51.507491],[-0.044367,51.506951],[-0.048009,51.504768],[-0.050722,51.5029],[-0.057255,51.500854],[-0.063789,51.50063],[-0.070778,51.50221],[-0.072718,51.503603],[-0.07612,51.504411],[-0.081135,51.50594],[-0.084688,51.506623],[-0.092077,51.50723],[-0.096113,51.508378],[-0.104151,51.508544],[-0.104676,51.508615]]]},"properties":{"LAD22CD":"E09000028","LAD22NM":"Southwark","BNG_E":533945,"BNG_N":175863,"LONG":-0.07309,"LAT":51.46589,"GlobalID":"9ce29eb6-2275-4019-b8ef-c58e5b87e8b7"},"id":304}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.134354,51.390885],[-0.141878,51.389355],[-0.143158,51.390401],[-0.144353,51.390679],[-0.15803,51.389258],[-0.160961,51.387819],[-0.161745,51.388131],[-0.165265,51.387978],[-0.166436,51.389694],[-0.167584,51.39006],[-0.171292,51.39251],[-0.172846,51.392649],[-0.174843,51.393417],[-0.17924,51.389834],[-0.182647,51.388054],[-0.184506,51.387513],[-0.188387,51.385434],[-0.190445,51.386202],[-0.193176,51.387865],[-0.193926,51.387871],[-0.200285,51.384966],[-0.203493,51.387225],[-0.205003,51.386091],[-0.209769,51.388252],[-0.213347,51.385006],[-0.212961,51.38481],[-0.218081,51.380182],[-0.223197,51.382046],[-0.227718,51.383953],[-0.233904,51.387708],[-0.234634,51.390538],[-0.239677,51.389294],[-0.238721,51.386094],[-0.241597,51.384524],[-0.243235,51.382597],[-0.244276,51.383065],[-0.24503,51.380034],[-0.24468,51.369061],[-0.245405,51.366845],[-0.241151,51.366262],[-0.240891,51.367037],[-0.23678,51.366797],[-0.23395,51.365385],[-0.233192,51.36601],[-0.226944,51.362625],[-0.224058,51.359274],[-0.222737,51.357086],[-0.221975,51.353531],[-0.222092,51.351325],[-0.220421,51.35142],[-0.220186,51.35008],[-0.217778,51.345631],[-0.217265,51.343387],[-0.221786,51.341345],[-0.222277,51.340461],[-0.224091,51.340041],[-0.226827,51.337888],[-0.229823,51.336523],[-0.220941,51.329863],[-0.216084,51.329827],[-0.214095,51.330351],[-0.211906,51.333308],[-0.213031,51.335541],[-0.202051,51.340141],[-0.201199,51.339884],[-0.199558,51.341884],[-0.198558,51.342299],[-0.19732,51.343595],[-0.193229,51.342626],[-0.187459,51.340812],[-0.17502,51.33381],[-0.174139,51.333212],[-0.172858,51.330013],[-0.169895,51.330246],[-0.170066,51.329474],[-0.163077,51.330264],[-0.162291,51.328889],[-0.164362,51.328126],[-0.163567,51.326213],[-0.164187,51.32604],[-0.1606,51.323241],[-0.158635,51.323976],[-0.156543,51.321509],[-0.152713,51.323003],[-0.152057,51.322269],[-0.150569,51.322171],[-0.149012,51.322786],[-0.147931,51.322683],[-0.145559,51.323502],[-0.144247,51.325908],[-0.144428,51.326476],[-0.149305,51.328764],[-0.144042,51.330668],[-0.145592,51.33243],[-0.147522,51.33878],[-0.144499,51.339497],[-0.143439,51.340561],[-0.14457,51.34209],[-0.141532,51.343413],[-0.136706,51.344756],[-0.136244,51.344408],[-0.132491,51.344299],[-0.132867,51.345436],[-0.127322,51.347187],[-0.126831,51.344856],[-0.125899,51.345238],[-0.118905,51.345509],[-0.116894,51.345754],[-0.11734,51.346647],[-0.11909,51.353143],[-0.120152,51.353045],[-0.121404,51.35773],[-0.124171,51.35743],[-0.12469,51.358866],[-0.121835,51.359064],[-0.122028,51.36098],[-0.120904,51.36331],[-0.121277,51.364733],[-0.122335,51.364529],[-0.124083,51.365395],[-0.122073,51.365807],[-0.123314,51.371189],[-0.124745,51.372942],[-0.124719,51.373661],[-0.126648,51.374909],[-0.125808,51.375604],[-0.126694,51.377065],[-0.128054,51.380498],[-0.130274,51.382219],[-0.128632,51.382494],[-0.12951,51.385286],[-0.130634,51.386265],[-0.129468,51.387185],[-0.133234,51.38955],[-0.132611,51.390126],[-0.134354,51.390885]]]},"properties":{"LAD22CD":"E09000029","LAD22NM":"Sutton","BNG_E":527356,"BNG_N":163640,"LONG":-0.17227,"LAT":51.35756,"GlobalID":"965a8c26-37bb-43ec-8fbc-58bbec871776"},"id":305}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.01655,51.54333],[-0.019853,51.543583],[-0.025585,51.543339],[-0.028991,51.542273],[-0.029554,51.543091],[-0.033183,51.544686],[-0.037734,51.541798],[-0.037422,51.541281],[-0.041494,51.537443],[-0.044966,51.535781],[-0.04716,51.535449],[-0.049701,51.536347],[-0.050913,51.536462],[-0.052377,51.535931],[-0.052856,51.53494],[-0.05468,51.535154],[-0.058758,51.534105],[-0.060074,51.534196],[-0.062433,51.535532],[-0.06286,51.534919],[-0.06219,51.533259],[-0.065009,51.532904],[-0.066253,51.531226],[-0.072829,51.530657],[-0.074576,51.529852],[-0.075715,51.528358],[-0.077274,51.527305],[-0.076641,51.526347],[-0.076457,51.524313],[-0.075742,51.523681],[-0.076458,51.522046],[-0.078534,51.521505],[-0.079413,51.518885],[-0.078174,51.518471],[-0.076877,51.51663],[-0.074003,51.514478],[-0.073052,51.511808],[-0.072813,51.510237],[-0.075518,51.509736],[-0.076212,51.51056],[-0.078815,51.509461],[-0.079461,51.507824],[-0.074759,51.506714],[-0.073768,51.506195],[-0.071272,51.505779],[-0.068665,51.504536],[-0.062578,51.503098],[-0.05963,51.502826],[-0.056163,51.503877],[-0.050421,51.507593],[-0.046058,51.509356],[-0.042105,51.5098],[-0.035917,51.509382],[-0.033164,51.508683],[-0.030415,51.507242],[-0.028457,51.505667],[-0.026748,51.50334],[-0.027413,51.501813],[-0.027873,51.494685],[-0.025699,51.490695],[-0.023824,51.488946],[-0.02098,51.487329],[-0.016377,51.486142],[-0.0115,51.48614],[-0.006669,51.487084],[-0.004621,51.488137],[-0.003687,51.488984],[-0.003059,51.490876],[-0.003299,51.492271],[-0.005606,51.495837],[-0.006956,51.498342],[-0.007743,51.500804],[-0.007219,51.503119],[-0.005391,51.505032],[-0.003434,51.506623],[-0.001733,51.507476],[0.003676,51.50838],[0.005801,51.508265],[0.00879,51.507368],[0.008957,51.508838],[0.006351,51.509373],[0.005583,51.510026],[0.007393,51.512728],[0.006694,51.513924],[0.005537,51.513522],[0.004327,51.510595],[0.002808,51.510386],[0.001759,51.510912],[0.003589,51.514545],[0.002673,51.515517],[-0.002593,51.517791],[-0.003454,51.517614],[-0.004374,51.516411],[-0.005971,51.516422],[-0.006724,51.518299],[-0.009166,51.519895],[-0.009351,51.521822],[-0.007863,51.523025],[-0.008091,51.523835],[-0.007534,51.526237],[-0.008641,51.527556],[-0.010268,51.528482],[-0.010688,51.529281],[-0.013679,51.529845],[-0.017147,51.531315],[-0.01801,51.532224],[-0.018071,51.533439],[-0.018948,51.534139],[-0.019663,51.535585],[-0.021268,51.537007],[-0.019444,51.53826],[-0.016595,51.54139],[-0.016092,51.542477],[-0.01655,51.54333]]]},"properties":{"LAD22CD":"E09000030","LAD22NM":"Tower Hamlets","BNG_E":536340,"BNG_N":181452,"LONG":-0.03647,"LAT":51.51554,"GlobalID":"0e11feee-f806-42c6-a2ce-73e7cf7a7359"},"id":306}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.021814,51.628827],[0.02389,51.630797],[0.024329,51.632389],[0.025738,51.634565],[0.024712,51.636052],[0.025159,51.637289],[0.023083,51.637718],[0.022719,51.641115],[0.020079,51.640447],[0.017421,51.640258],[0.009899,51.64145],[0.001067,51.641762],[-0.000495,51.643711],[-0.003984,51.642717],[-0.00456,51.643538],[-0.006657,51.643333],[-0.008192,51.643609],[-0.008446,51.644498],[-0.007344,51.646162],[-0.009214,51.646528],[-0.012259,51.646234],[-0.013251,51.639848],[-0.01524,51.635506],[-0.023393,51.625278],[-0.025972,51.621764],[-0.032395,51.616623],[-0.035364,51.612982],[-0.035549,51.612006],[-0.034162,51.610303],[-0.033995,51.609488],[-0.035252,51.608233],[-0.041426,51.605633],[-0.043515,51.602815],[-0.046444,51.59979],[-0.050491,51.596647],[-0.052354,51.593546],[-0.053458,51.589913],[-0.052146,51.587749],[-0.054627,51.585986],[-0.055703,51.584277],[-0.057922,51.582444],[-0.0618,51.580154],[-0.062221,51.57917],[-0.061159,51.577786],[-0.058405,51.572526],[-0.056373,51.570796],[-0.054266,51.570198],[-0.053133,51.568575],[-0.051151,51.567725],[-0.046701,51.564381],[-0.047193,51.562662],[-0.045127,51.561792],[-0.042363,51.561368],[-0.04005,51.56178],[-0.038811,51.561162],[-0.036389,51.561506],[-0.033281,51.560623],[-0.030031,51.561365],[-0.028525,51.561074],[-0.025863,51.559925],[-0.02435,51.558658],[-0.023941,51.557374],[-0.023006,51.557272],[-0.018443,51.555177],[-0.017477,51.553394],[-0.01714,51.551577],[-0.016943,51.551406],[-0.010836,51.552626],[-0.009444,51.552218],[-0.008653,51.549929],[-0.004169,51.551043],[-0.003635,51.550921],[-0.000159,51.55174],[0.005203,51.552134],[0.005531,51.550661],[0.009536,51.551239],[0.010848,51.552262],[0.00965,51.553435],[0.014601,51.554956],[0.016269,51.553225],[0.016972,51.553184],[0.021559,51.55488],[0.020369,51.556269],[0.017158,51.558798],[0.014782,51.55944],[0.014217,51.561326],[0.014462,51.565603],[0.017536,51.565642],[0.018848,51.566311],[0.019016,51.567019],[0.017695,51.570003],[0.019156,51.569851],[0.01891,51.572349],[0.018042,51.572022],[0.01649,51.57289],[0.017409,51.574413],[0.01744,51.577457],[0.01526,51.581708],[0.015528,51.583385],[0.013396,51.583787],[0.012116,51.59215],[0.012931,51.599055],[0.019145,51.60779],[0.021398,51.611144],[0.021259,51.612273],[0.016278,51.616853],[0.008708,51.619075],[0.014526,51.618903],[0.014341,51.620304],[0.015841,51.620912],[0.016216,51.621778],[0.018488,51.6228],[0.02058,51.627335],[0.020992,51.628909],[0.021814,51.628827]]]},"properties":{"LAD22CD":"E09000031","LAD22NM":"Waltham Forest","BNG_E":537327,"BNG_N":190277,"LONG":-0.01881,"LAT":51.59461,"GlobalID":"999cd5a9-8a44-44cd-a60b-efa11b4b9962"},"id":307}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.14038,51.419249],[-0.137826,51.421106],[-0.138896,51.424573],[-0.138364,51.430486],[-0.135238,51.430335],[-0.136497,51.433915],[-0.137834,51.433778],[-0.139733,51.435665],[-0.139887,51.437021],[-0.137658,51.438582],[-0.135878,51.442006],[-0.13786,51.441696],[-0.143594,51.441838],[-0.145381,51.444918],[-0.145569,51.446017],[-0.144813,51.448437],[-0.143116,51.449709],[-0.142291,51.450983],[-0.147704,51.45234],[-0.147353,51.452964],[-0.148134,51.456405],[-0.149365,51.459363],[-0.149666,51.461298],[-0.150942,51.463837],[-0.151206,51.465885],[-0.150445,51.465978],[-0.150594,51.467616],[-0.143075,51.47052],[-0.142652,51.470065],[-0.140318,51.471593],[-0.138324,51.471963],[-0.136896,51.473088],[-0.135769,51.472715],[-0.134703,51.473308],[-0.135205,51.474289],[-0.133878,51.475674],[-0.129925,51.481178],[-0.127475,51.482022],[-0.126339,51.484467],[-0.1285,51.485045],[-0.132057,51.483736],[-0.136725,51.482793],[-0.140039,51.482735],[-0.146251,51.48356],[-0.148932,51.483608],[-0.166243,51.48133],[-0.171633,51.480264],[-0.173955,51.47908],[-0.175263,51.477754],[-0.175663,51.476184],[-0.176855,51.474882],[-0.178512,51.470771],[-0.180957,51.467581],[-0.183599,51.465461],[-0.187122,51.464228],[-0.190363,51.463405],[-0.194794,51.462911],[-0.199104,51.462709],[-0.203675,51.463195],[-0.207268,51.4639],[-0.212758,51.465545],[-0.218043,51.468192],[-0.222487,51.471508],[-0.223409,51.471497],[-0.223613,51.470761],[-0.227049,51.471447],[-0.231085,51.472834],[-0.232592,51.472615],[-0.232924,51.471679],[-0.233424,51.468145],[-0.232807,51.466634],[-0.233625,51.466037],[-0.233291,51.463991],[-0.239533,51.464839],[-0.243953,51.46523],[-0.252892,51.465216],[-0.255997,51.463041],[-0.25802,51.460269],[-0.256786,51.459855],[-0.258318,51.457333],[-0.25909,51.454932],[-0.247303,51.44918],[-0.241606,51.443133],[-0.242706,51.441918],[-0.254067,51.43729],[-0.253087,51.435298],[-0.251231,51.434168],[-0.25106,51.432565],[-0.240688,51.43522],[-0.2313,51.438139],[-0.224253,51.43886],[-0.220414,51.438449],[-0.217823,51.438679],[-0.215711,51.437746],[-0.212522,51.437831],[-0.204498,51.438968],[-0.190021,51.441474],[-0.189847,51.440278],[-0.190643,51.438919],[-0.189191,51.438547],[-0.190241,51.434804],[-0.191161,51.433462],[-0.189772,51.431351],[-0.187395,51.432097],[-0.187265,51.432986],[-0.185737,51.433164],[-0.18423,51.431275],[-0.184528,51.427623],[-0.184068,51.426379],[-0.181915,51.424735],[-0.178673,51.424313],[-0.173572,51.423182],[-0.1684,51.42091],[-0.161574,51.419864],[-0.159858,51.422628],[-0.151302,51.419852],[-0.149316,51.419855],[-0.144455,51.417752],[-0.14038,51.419249]]]},"properties":{"LAD22CD":"E09000032","LAD22NM":"Wandsworth","BNG_E":525151,"BNG_N":174138,"LONG":-0.20023,"LAT":51.4524,"GlobalID":"7477d94c-0507-4eee-b66a-3361b9ba7c11"},"id":308}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.111581,51.51534],[-0.113834,51.514822],[-0.114693,51.516042],[-0.119468,51.514507],[-0.122869,51.515146],[-0.127328,51.512667],[-0.129042,51.513453],[-0.129827,51.514479],[-0.130806,51.517103],[-0.134045,51.517563],[-0.135233,51.518935],[-0.137008,51.518886],[-0.142876,51.52388],[-0.145173,51.523996],[-0.14579,51.525272],[-0.147171,51.525043],[-0.152707,51.537521],[-0.159416,51.536364],[-0.160462,51.537283],[-0.164936,51.535781],[-0.169518,51.538599],[-0.170865,51.537795],[-0.171956,51.538385],[-0.173486,51.537634],[-0.174116,51.538202],[-0.173897,51.539479],[-0.178328,51.539795],[-0.180156,51.539563],[-0.183849,51.538381],[-0.187726,51.535036],[-0.188749,51.534526],[-0.191459,51.536291],[-0.193011,51.533991],[-0.192349,51.533212],[-0.192868,51.532135],[-0.196544,51.527656],[-0.197774,51.527902],[-0.198274,51.530447],[-0.203021,51.532901],[-0.207624,51.532822],[-0.211027,51.531961],[-0.215183,51.531391],[-0.21508,51.53026],[-0.215859,51.529727],[-0.216005,51.52793],[-0.215547,51.526722],[-0.212674,51.526868],[-0.207296,51.526241],[-0.205878,51.52574],[-0.203857,51.523461],[-0.201615,51.522744],[-0.200624,51.520712],[-0.202645,51.520901],[-0.203743,51.520624],[-0.201457,51.517802],[-0.199916,51.516848],[-0.199179,51.514553],[-0.19505,51.515033],[-0.194041,51.511758],[-0.192961,51.511815],[-0.192122,51.509874],[-0.187909,51.51018],[-0.184235,51.501795],[-0.180312,51.501462],[-0.179547,51.497779],[-0.173543,51.498222],[-0.16839,51.499022],[-0.167615,51.498304],[-0.165481,51.498698],[-0.162575,51.500294],[-0.160999,51.501591],[-0.158448,51.50225],[-0.15785,51.499019],[-0.156072,51.497763],[-0.154995,51.493855],[-0.155984,51.493223],[-0.154794,51.491964],[-0.155797,51.491452],[-0.155173,51.490049],[-0.155849,51.489607],[-0.150171,51.486093],[-0.150024,51.485462],[-0.146453,51.485677],[-0.140038,51.484821],[-0.1381,51.484807],[-0.132498,51.48573],[-0.128407,51.48819],[-0.125395,51.49164],[-0.124707,51.494711],[-0.123055,51.504228],[-0.122393,51.506061],[-0.121129,51.50775],[-0.119543,51.509062],[-0.116893,51.510104],[-0.111477,51.510834],[-0.112389,51.51277],[-0.111076,51.513827],[-0.111581,51.51534]]]},"properties":{"LAD22CD":"E09000033","LAD22NM":"Westminster","BNG_E":528268,"BNG_N":180870,"LONG":-0.15295,"LAT":51.5122,"GlobalID":"abead364-e1c9-4d38-abe9-6bd7298e0583"},"id":309}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.869265,54.688943],[-5.869365,54.689556],[-5.875781,54.692914],[-5.876729,54.692323],[-5.882906,54.695596],[-5.886938,54.693404],[-5.888048,54.694558],[-5.890656,54.695883],[-5.890951,54.69876],[-5.889136,54.700916],[-5.888965,54.70288],[-5.891639,54.706236],[-5.891888,54.708205],[-5.889562,54.709425],[-5.889931,54.71053],[-5.897897,54.708991],[-5.898069,54.708689],[-5.901873,54.70861],[-5.902795,54.708819],[-5.900973,54.711236],[-5.907857,54.712746],[-5.909869,54.713336],[-5.911065,54.71437],[-5.911679,54.716795],[-5.911061,54.720035],[-5.905382,54.724647],[-5.89749,54.738659],[-5.89582,54.738787],[-5.895454,54.742171],[-5.894935,54.743509],[-5.893331,54.745342],[-5.89754,54.748889],[-5.906187,54.750589],[-5.908185,54.754845],[-5.897848,54.758991],[-5.902869,54.762092],[-5.906106,54.764566],[-5.906938,54.765822],[-5.902709,54.766582],[-5.903476,54.767572],[-5.898671,54.76904],[-5.899128,54.769563],[-5.894363,54.770553],[-5.892646,54.771351],[-5.88845,54.772452],[-5.893309,54.774226],[-5.896664,54.775861],[-5.899797,54.778085],[-5.900845,54.779683],[-5.90179,54.780348],[-5.903302,54.779667],[-5.903412,54.778753],[-5.907294,54.778387],[-5.90793,54.779022],[-5.910354,54.778327],[-5.919248,54.773699],[-5.923044,54.772338],[-5.926711,54.773753],[-5.92811,54.773393],[-5.930092,54.774442],[-5.932707,54.774845],[-5.939262,54.774321],[-5.94148,54.773267],[-5.943481,54.775927],[-5.945884,54.778227],[-5.94958,54.780211],[-5.95678,54.776954],[-5.962896,54.773662],[-5.966258,54.774713],[-5.96675,54.776021],[-5.965214,54.777314],[-5.964936,54.77831],[-5.968843,54.78128],[-5.970615,54.78069],[-5.970698,54.782116],[-5.972615,54.782771],[-5.97348,54.782409],[-5.974917,54.783282],[-5.975961,54.782802],[-5.975517,54.781782],[-5.976735,54.780793],[-5.975997,54.779991],[-5.978621,54.778611],[-5.982384,54.7774],[-5.982634,54.776023],[-5.98782,54.774049],[-5.988714,54.776022],[-5.990736,54.778476],[-5.993235,54.779673],[-5.993295,54.781144],[-5.998459,54.784184],[-6.000641,54.785044],[-6.00207,54.785045],[-6.00463,54.785807],[-6.006883,54.787311],[-6.010396,54.788162],[-6.013096,54.788364],[-6.01199,54.791865],[-6.010836,54.800151],[-6.019557,54.800454],[-6.055095,54.798337],[-6.051024,54.79635],[-6.050571,54.794246],[-6.049698,54.792739],[-6.04978,54.791833],[-6.054617,54.79292],[-6.056262,54.793868],[-6.064944,54.796618],[-6.067909,54.797241],[-6.080818,54.796363],[-6.077279,54.794782],[-6.074768,54.794111],[-6.073997,54.791749],[-6.079511,54.792266],[-6.081054,54.793136],[-6.082389,54.793034],[-6.087927,54.794155],[-6.090879,54.793816],[-6.098735,54.794181],[-6.100872,54.793875],[-6.10364,54.792627],[-6.108644,54.801393],[-6.10907,54.803153],[-6.108401,54.805993],[-6.120209,54.809033],[-6.121139,54.808316],[-6.125857,54.807602],[-6.129665,54.806469],[-6.132748,54.807276],[-6.134838,54.806253],[-6.137151,54.806096],[-6.140717,54.806401],[-6.143277,54.807071],[-6.144818,54.808167],[-6.140979,54.810549],[-6.144763,54.811848],[-6.150493,54.810312],[-6.153548,54.810703],[-6.154455,54.809845],[-6.163316,54.810688],[-6.168056,54.810803],[-6.169038,54.811641],[-6.172988,54.811921],[-6.175422,54.809037],[-6.176887,54.808084],[-6.180215,54.808429],[-6.182226,54.807509],[-6.18388,54.807266],[-6.185985,54.806413],[-6.190053,54.806647],[-6.191978,54.806479],[-6.195871,54.805667],[-6.197997,54.80637],[-6.199951,54.806007],[-6.197718,54.80299],[-6.198532,54.801277],[-6.199425,54.801296],[-6.199823,54.798061],[-6.203069,54.796853],[-6.204756,54.795631],[-6.207187,54.796001],[-6.207809,54.794984],[-6.211548,54.793244],[-6.213272,54.79394],[-6.215422,54.793575],[-6.213649,54.79043],[-6.215996,54.789929],[-6.221964,54.790161],[-6.223954,54.790518],[-6.228171,54.788534],[-6.232855,54.78838],[-6.235164,54.788867],[-6.237296,54.791426],[-6.239419,54.792683],[-6.241679,54.7925],[-6.243844,54.793215],[-6.249887,54.793583],[-6.255034,54.795971],[-6.258101,54.796336],[-6.261821,54.797549],[-6.265233,54.79806],[-6.268635,54.798967],[-6.269151,54.798842],[-6.26946,54.796001],[-6.264693,54.792023],[-6.26408,54.790859],[-6.267578,54.79126],[-6.274528,54.790815],[-6.277033,54.79034],[-6.281403,54.791866],[-6.2831,54.791652],[-6.285094,54.790072],[-6.289271,54.789709],[-6.29084,54.790142],[-6.299173,54.795094],[-6.303064,54.796391],[-6.304607,54.795245],[-6.303366,54.794042],[-6.303559,54.793076],[-6.30663,54.792376],[-6.307982,54.791044],[-6.309801,54.790139],[-6.312814,54.792436],[-6.319452,54.794521],[-6.320805,54.791158],[-6.32211,54.790722],[-6.323942,54.791085],[-6.328778,54.795064],[-6.331907,54.797062],[-6.3337,54.797562],[-6.331884,54.799001],[-6.335881,54.800078],[-6.338682,54.801314],[-6.341939,54.79948],[-6.343031,54.799737],[-6.345461,54.801058],[-6.347798,54.801028],[-6.351219,54.799915],[-6.352976,54.799689],[-6.35451,54.798927],[-6.35415,54.797616],[-6.356143,54.797938],[-6.360665,54.796865],[-6.362818,54.79375],[-6.363471,54.79236],[-6.363249,54.791434],[-6.365324,54.790224],[-6.365212,54.788342],[-6.370662,54.785265],[-6.381452,54.782766],[-6.38333,54.780023],[-6.386128,54.779172],[-6.389634,54.779346],[-6.391295,54.779707],[-6.393804,54.779396],[-6.396552,54.77993],[-6.397308,54.780972],[-6.398796,54.781146],[-6.400788,54.782227],[-6.401938,54.782298],[-6.404364,54.781467],[-6.406286,54.781978],[-6.408208,54.783259],[-6.411222,54.782761],[-6.412814,54.783443],[-6.414089,54.783352],[-6.419851,54.785224],[-6.42129,54.786081],[-6.423961,54.785312],[-6.4266,54.784111],[-6.427656,54.785286],[-6.428879,54.785543],[-6.433248,54.788963],[-6.434533,54.789442],[-6.435452,54.788859],[-6.435218,54.787304],[-6.436244,54.786255],[-6.441355,54.786872],[-6.443527,54.787477],[-6.444116,54.786593],[-6.446032,54.786118],[-6.447608,54.784864],[-6.460183,54.78465],[-6.462865,54.784323],[-6.477987,54.780956],[-6.478776,54.77803],[-6.481199,54.775912],[-6.478717,54.772817],[-6.47025,54.766777],[-6.469048,54.764778],[-6.467271,54.764265],[-6.465606,54.764611],[-6.463493,54.766751],[-6.461539,54.766905],[-6.460773,54.764766],[-6.458134,54.761884],[-6.462336,54.759415],[-6.465738,54.754306],[-6.486846,54.736655],[-6.496855,54.713725],[-6.470124,54.685308],[-6.408039,54.648895],[-6.426937,54.5683],[-6.3247,54.591361],[-6.30559,54.572955],[-6.282131,54.580097],[-6.295471,54.596746],[-6.264802,54.597221],[-6.264617,54.598007],[-6.261049,54.595393],[-6.260057,54.592968],[-6.257366,54.59115],[-6.255293,54.59051],[-6.254691,54.589582],[-6.253095,54.589367],[-6.250636,54.589844],[-6.249857,54.589404],[-6.247496,54.58923],[-6.2465,54.589658],[-6.240361,54.588156],[-6.239165,54.588605],[-6.238004,54.588012],[-6.236008,54.588369],[-6.235974,54.589093],[-6.233171,54.590054],[-6.232111,54.590889],[-6.230257,54.590562],[-6.229613,54.592468],[-6.231668,54.592546],[-6.231928,54.593821],[-6.230048,54.594128],[-6.230836,54.596867],[-6.2294,54.59722],[-6.224902,54.600404],[-6.222506,54.599993],[-6.218443,54.602122],[-6.210865,54.598674],[-6.210144,54.599541],[-6.20844,54.599422],[-6.206611,54.600063],[-6.204519,54.599903],[-6.20376,54.599339],[-6.201055,54.599662],[-6.198839,54.600739],[-6.197749,54.601753],[-6.196456,54.601804],[-6.19364,54.600508],[-6.192057,54.601875],[-6.193047,54.602437],[-6.189379,54.602777],[-6.188987,54.603366],[-6.183329,54.603876],[-6.181193,54.603452],[-6.179561,54.603931],[-6.177671,54.603921],[-6.176877,54.603312],[-6.174218,54.603653],[-6.173408,54.603337],[-6.170533,54.603898],[-6.169875,54.604897],[-6.162735,54.605755],[-6.15993,54.608734],[-6.156506,54.610584],[-6.150165,54.610285],[-6.146511,54.611212],[-6.149621,54.613822],[-6.150248,54.614946],[-6.149835,54.617708],[-6.150129,54.619018],[-6.149747,54.620463],[-6.148338,54.620746],[-6.145926,54.619862],[-6.141484,54.618908],[-6.137531,54.620711],[-6.137197,54.619674],[-6.138686,54.619398],[-6.134641,54.617833],[-6.133089,54.617747],[-6.132501,54.618629],[-6.128903,54.618103],[-6.123088,54.618714],[-6.120458,54.619975],[-6.116175,54.620423],[-6.114819,54.621167],[-6.114903,54.622265],[-6.112824,54.622141],[-6.110561,54.622836],[-6.106258,54.622874],[-6.106084,54.622241],[-6.102305,54.62172],[-6.098455,54.622862],[-6.095762,54.622377],[-6.089057,54.624044],[-6.088566,54.624446],[-6.086265,54.623718],[-6.081997,54.622986],[-6.082055,54.622238],[-6.079995,54.621113],[-6.079214,54.619733],[-6.076767,54.619688],[-6.073816,54.619984],[-6.071591,54.618995],[-6.069851,54.618877],[-6.069299,54.616469],[-6.067443,54.615915],[-6.066622,54.614105],[-6.063185,54.613021],[-6.061592,54.611717],[-6.059854,54.611966],[-6.059455,54.61116],[-6.057792,54.610819],[-6.057081,54.609924],[-6.055297,54.609404],[-6.053417,54.608039],[-6.0504,54.607313],[-6.048271,54.606266],[-6.046522,54.605973],[-6.046035,54.607447],[-6.043694,54.609927],[-6.04303,54.612327],[-6.042059,54.613008],[-6.022138,54.611777],[-6.02286,54.614576],[-6.022809,54.625563],[-6.023949,54.628681],[-6.024531,54.628823],[-6.015687,54.636382],[-6.001586,54.644417],[-5.999286,54.646034],[-5.999851,54.647238],[-5.997105,54.648709],[-5.996348,54.649674],[-5.993201,54.651304],[-5.993168,54.652302],[-5.992094,54.654001],[-5.988839,54.655287],[-5.987929,54.656472],[-5.987087,54.658574],[-5.984933,54.656815],[-5.984961,54.654225],[-5.983153,54.652772],[-5.980652,54.652076],[-5.980289,54.650392],[-5.979397,54.649604],[-5.976286,54.648915],[-5.97444,54.648099],[-5.971879,54.645388],[-5.965836,54.646405],[-5.961573,54.64873],[-5.95779,54.649816],[-5.952784,54.651743],[-5.949825,54.652417],[-5.948683,54.65478],[-5.952342,54.65721],[-5.954997,54.65804],[-5.954542,54.659103],[-5.955034,54.659996],[-5.953414,54.66152],[-5.951698,54.665075],[-5.945974,54.662998],[-5.940604,54.661784],[-5.938542,54.660955],[-5.932264,54.655292],[-5.927681,54.651811],[-5.917739,54.646748],[-5.916593,54.645703],[-5.914628,54.648245],[-5.913866,54.648058],[-5.911774,54.64867],[-5.912982,54.649356],[-5.905594,54.655649],[-5.904372,54.657227],[-5.903641,54.659154],[-5.901244,54.659845],[-5.901826,54.660886],[-5.901923,54.664018],[-5.900109,54.665892],[-5.899064,54.6685],[-5.898951,54.671543],[-5.896704,54.674136],[-5.889806,54.678252],[-5.884797,54.680116],[-5.87957,54.68347],[-5.873679,54.68558],[-5.869265,54.688943]]]},"properties":{"LAD22CD":"N09000001","LAD22NM":"Antrim and Newtownabbey","BNG_E":130813,"BNG_N":541285,"LONG":-6.1776,"LAT":54.69386,"GlobalID":"1776148f-f261-4236-98ae-fbc4a12cd896"},"id":310}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.019529,54.370587],[-6.021222,54.371445],[-6.023191,54.37335],[-6.021916,54.374224],[-6.020709,54.376053],[-6.021725,54.377623],[-6.023189,54.377161],[-6.027032,54.378584],[-6.033524,54.378518],[-6.036668,54.378323],[-6.039333,54.377163],[-6.042391,54.378849],[-6.044958,54.380919],[-6.043104,54.38276],[-6.038682,54.383452],[-6.038129,54.384368],[-6.041228,54.384704],[-6.04246,54.384528],[-6.046213,54.386635],[-6.049279,54.386648],[-6.051269,54.388615],[-6.054495,54.387353],[-6.055507,54.385887],[-6.057585,54.386373],[-6.060689,54.386078],[-6.062168,54.386746],[-6.063946,54.386761],[-6.065304,54.387621],[-6.064338,54.388674],[-6.06636,54.390241],[-6.064386,54.391655],[-6.06485,54.394109],[-6.064868,54.397361],[-6.066445,54.397203],[-6.065932,54.398765],[-6.063705,54.400031],[-6.061186,54.400584],[-6.055655,54.40064],[-6.055593,54.401962],[-6.054915,54.402815],[-6.057146,54.40403],[-6.058995,54.404537],[-6.064591,54.407739],[-6.069685,54.408915],[-6.072442,54.410774],[-6.074009,54.411097],[-6.077511,54.410841],[-6.078334,54.40956],[-6.080148,54.410351],[-6.083118,54.409686],[-6.087351,54.410252],[-6.088164,54.411551],[-6.087786,54.412517],[-6.08978,54.41387],[-6.091771,54.416344],[-6.095373,54.418717],[-6.097627,54.418392],[-6.100545,54.420178],[-6.101054,54.419903],[-6.105705,54.422199],[-6.112468,54.423979],[-6.118096,54.427314],[-6.119767,54.428594],[-6.119647,54.429244],[-6.122411,54.430533],[-6.123392,54.431529],[-6.126034,54.432454],[-6.128557,54.432717],[-6.13473,54.43578],[-6.136773,54.436193],[-6.146483,54.435961],[-6.148931,54.436148],[-6.152768,54.435288],[-6.156727,54.434806],[-6.157813,54.435027],[-6.159916,54.434326],[-6.161787,54.436114],[-6.161812,54.437361],[-6.159747,54.437973],[-6.159255,54.439604],[-6.155166,54.441507],[-6.156159,54.443093],[-6.157498,54.444248],[-6.161651,54.443859],[-6.163874,54.444219],[-6.166526,54.443538],[-6.1723,54.44331],[-6.173417,54.442999],[-6.176451,54.441162],[-6.179554,54.440962],[-6.181489,54.441233],[-6.183458,54.440466],[-6.184931,54.438697],[-6.186057,54.43813],[-6.19358,54.43761],[-6.200729,54.438629],[-6.203186,54.437721],[-6.20308,54.43634],[-6.201925,54.435613],[-6.203221,54.434107],[-6.204729,54.433988],[-6.208994,54.432634],[-6.211152,54.432838],[-6.21172,54.434115],[-6.211501,54.435481],[-6.212443,54.435845],[-6.213339,54.437146],[-6.213391,54.438728],[-6.21257,54.440112],[-6.214705,54.440854],[-6.213345,54.441898],[-6.212371,54.443601],[-6.209763,54.445102],[-6.210833,54.446022],[-6.213322,54.44704],[-6.21364,54.44771],[-6.217773,54.449527],[-6.216557,54.45044],[-6.218263,54.45129],[-6.217697,54.452431],[-6.220253,54.453267],[-6.22072,54.452743],[-6.225255,54.452916],[-6.224677,54.454308],[-6.226238,54.45437],[-6.229138,54.456069],[-6.230265,54.457714],[-6.232368,54.458539],[-6.23345,54.459464],[-6.236342,54.460762],[-6.236994,54.462326],[-6.239106,54.463069],[-6.240653,54.462955],[-6.243263,54.465002],[-6.240591,54.465425],[-6.239937,54.466627],[-6.240602,54.467475],[-6.243317,54.468077],[-6.243211,54.469914],[-6.241803,54.471095],[-6.241615,54.472903],[-6.243348,54.475433],[-6.246064,54.475986],[-6.248111,54.475346],[-6.251275,54.477058],[-6.251871,54.478105],[-6.253345,54.478158],[-6.25543,54.479408],[-6.259012,54.479631],[-6.258392,54.480715],[-6.256415,54.48165],[-6.257693,54.482651],[-6.256047,54.483685],[-6.254181,54.487968],[-6.252198,54.48766],[-6.248589,54.48816],[-6.250596,54.489982],[-6.250144,54.491752],[-6.245961,54.491784],[-6.242615,54.49048],[-6.240478,54.490632],[-6.239466,54.492164],[-6.241881,54.493155],[-6.241127,54.494386],[-6.240037,54.494492],[-6.240503,54.49633],[-6.243056,54.498338],[-6.24238,54.499233],[-6.242135,54.500745],[-6.243238,54.500997],[-6.247385,54.503155],[-6.250087,54.502963],[-6.249777,54.504104],[-6.25648,54.504663],[-6.258655,54.505229],[-6.26078,54.507259],[-6.258806,54.508114],[-6.256677,54.507207],[-6.255078,54.508531],[-6.257148,54.509225],[-6.269546,54.517606],[-6.272003,54.517973],[-6.274125,54.51964],[-6.273455,54.521423],[-6.275048,54.522111],[-6.274155,54.523278],[-6.275979,54.523703],[-6.275441,54.525148],[-6.27358,54.525162],[-6.272251,54.526009],[-6.27043,54.529155],[-6.269927,54.530942],[-6.270919,54.533331],[-6.273033,54.533168],[-6.276418,54.534066],[-6.27488,54.535425],[-6.278637,54.538322],[-6.27507,54.541593],[-6.278317,54.549203],[-6.278679,54.557513],[-6.291741,54.561495],[-6.299949,54.568459],[-6.302133,54.56963],[-6.303064,54.571023],[-6.30559,54.572955],[-6.3247,54.591361],[-6.426937,54.5683],[-6.449421,54.563222],[-6.542193,54.542182],[-6.579405,54.517851],[-6.579768,54.516869],[-6.57932,54.514542],[-6.577867,54.513173],[-6.578695,54.511803],[-6.580258,54.51057],[-6.582312,54.509568],[-6.587601,54.508214],[-6.590045,54.50727],[-6.591109,54.506],[-6.591537,54.504249],[-6.592276,54.503688],[-6.597729,54.502842],[-6.602604,54.503135],[-6.603505,54.50353],[-6.603117,54.504573],[-6.604687,54.506789],[-6.605521,54.507046],[-6.608633,54.507005],[-6.610991,54.507341],[-6.618596,54.504824],[-6.622486,54.502696],[-6.624025,54.502902],[-6.626372,54.50461],[-6.629076,54.504326],[-6.631025,54.5033],[-6.631894,54.500361],[-6.634533,54.498139],[-6.635867,54.497581],[-6.638753,54.497292],[-6.639151,54.494634],[-6.640586,54.492772],[-6.640598,54.490694],[-6.641488,54.489968],[-6.646209,54.48785],[-6.649751,54.487573],[-6.6516,54.486794],[-6.650397,54.4856],[-6.651265,54.483992],[-6.649896,54.481625],[-6.652795,54.47975],[-6.653517,54.478392],[-6.652119,54.475578],[-6.649995,54.473528],[-6.650115,54.471277],[-6.651279,54.469709],[-6.65745,54.46774],[-6.659447,54.466767],[-6.661216,54.464451],[-6.666904,54.463595],[-6.668808,54.462976],[-6.6699,54.460368],[-6.671681,54.458275],[-6.670775,54.455498],[-6.67255,54.452922],[-6.673687,54.452394],[-6.675429,54.450589],[-6.678311,54.449195],[-6.681201,54.449554],[-6.682523,54.44823],[-6.682959,54.446827],[-6.687114,54.444573],[-6.689627,54.444292],[-6.692647,54.44473],[-6.697142,54.442996],[-6.698369,54.441365],[-6.698115,54.439575],[-6.698947,54.437504],[-6.697195,54.435417],[-6.695389,54.43504],[-6.694223,54.432605],[-6.694945,54.430939],[-6.694742,54.429697],[-6.697491,54.429044],[-6.701361,54.429859],[-6.703742,54.428479],[-6.703554,54.42772],[-6.704749,54.42682],[-6.704299,54.425716],[-6.704923,54.424539],[-6.705287,54.421092],[-6.701796,54.418315],[-6.701556,54.416623],[-6.705507,54.414822],[-6.706762,54.41393],[-6.706715,54.412377],[-6.704933,54.409882],[-6.705402,54.407858],[-6.706311,54.407049],[-6.709559,54.406447],[-6.711012,54.403993],[-6.713407,54.404574],[-6.71598,54.402935],[-6.718249,54.402825],[-6.721044,54.401951],[-6.722908,54.401701],[-6.729147,54.401762],[-6.731557,54.402974],[-6.731793,54.404776],[-6.730095,54.405478],[-6.731372,54.407044],[-6.734816,54.40891],[-6.736828,54.409397],[-6.741757,54.409526],[-6.74579,54.408847],[-6.747569,54.409577],[-6.748024,54.41048],[-6.749839,54.410849],[-6.751141,54.409481],[-6.753869,54.40913],[-6.756786,54.407169],[-6.758621,54.406836],[-6.763331,54.407378],[-6.764505,54.408405],[-6.768989,54.410473],[-6.770001,54.411471],[-6.770313,54.413008],[-6.771835,54.414061],[-6.774683,54.414254],[-6.778967,54.413789],[-6.785114,54.41411],[-6.78561,54.415461],[-6.787651,54.415776],[-6.793127,54.415536],[-6.795197,54.414697],[-6.795825,54.412615],[-6.797654,54.410621],[-6.797751,54.408731],[-6.799061,54.409258],[-6.800671,54.40848],[-6.800405,54.407457],[-6.801512,54.406138],[-6.801627,54.402592],[-6.803343,54.402204],[-6.805264,54.400908],[-6.806369,54.400664],[-6.805617,54.399223],[-6.808089,54.399296],[-6.808747,54.397368],[-6.807133,54.39526],[-6.806674,54.39362],[-6.807305,54.391855],[-6.805206,54.39037],[-6.808151,54.386345],[-6.807532,54.385397],[-6.805636,54.384116],[-6.806064,54.383184],[-6.805229,54.382028],[-6.806101,54.381091],[-6.805553,54.379713],[-6.806848,54.378377],[-6.809191,54.377963],[-6.808858,54.376842],[-6.809958,54.375653],[-6.812262,54.375301],[-6.813223,54.373428],[-6.809823,54.373034],[-6.811128,54.371958],[-6.813624,54.372128],[-6.813699,54.368586],[-6.815057,54.368458],[-6.815881,54.367245],[-6.814767,54.366262],[-6.816348,54.365233],[-6.821354,54.364255],[-6.820633,54.363424],[-6.821092,54.361668],[-6.822316,54.36011],[-6.823325,54.361508],[-6.825342,54.360163],[-6.826403,54.360581],[-6.827727,54.359977],[-6.827818,54.358323],[-6.829167,54.357204],[-6.829245,54.356349],[-6.8315,54.354335],[-6.833503,54.351681],[-6.832265,54.349151],[-6.832128,54.347669],[-6.832681,54.346609],[-6.835731,54.343782],[-6.835942,54.338881],[-6.837637,54.337395],[-6.837763,54.335893],[-6.838545,54.335398],[-6.840398,54.335501],[-6.841709,54.333557],[-6.844661,54.33279],[-6.848449,54.333049],[-6.850032,54.33255],[-6.852513,54.332287],[-6.854817,54.330885],[-6.854908,54.329517],[-6.856597,54.329765],[-6.860057,54.330928],[-6.86304,54.330658],[-6.864807,54.330191],[-6.866408,54.328032],[-6.866568,54.326641],[-6.865966,54.325718],[-6.864469,54.324849],[-6.865134,54.324057],[-6.864239,54.315427],[-6.862111,54.314683],[-6.857225,54.313696],[-6.858106,54.312508],[-6.857542,54.311709],[-6.857835,54.310055],[-6.85865,54.308939],[-6.860395,54.308228],[-6.859432,54.30707],[-6.858361,54.306766],[-6.858897,54.304549],[-6.859982,54.304007],[-6.857379,54.302323],[-6.854491,54.301556],[-6.853666,54.300645],[-6.853276,54.299072],[-6.851645,54.297453],[-6.852332,54.295642],[-6.854054,54.294569],[-6.853597,54.292752],[-6.851837,54.292085],[-6.854967,54.29012],[-6.856656,54.290133],[-6.858695,54.289493],[-6.861293,54.289374],[-6.861231,54.288131],[-6.862193,54.287283],[-6.861804,54.285919],[-6.860287,54.284904],[-6.859343,54.282708],[-6.860012,54.28193],[-6.862346,54.281219],[-6.866507,54.282524],[-6.868937,54.282224],[-6.868354,54.284576],[-6.86857,54.285735],[-6.870489,54.287727],[-6.872645,54.287527],[-6.873245,54.288046],[-6.875897,54.287437],[-6.875845,54.285743],[-6.878783,54.285125],[-6.877731,54.283756],[-6.876422,54.283679],[-6.875527,54.282154],[-6.877282,54.281485],[-6.878883,54.279135],[-6.87753,54.277814],[-6.875267,54.276997],[-6.872498,54.276512],[-6.872252,54.275825],[-6.868258,54.275678],[-6.866464,54.274686],[-6.866504,54.271876],[-6.867225,54.271587],[-6.866404,54.269782],[-6.863377,54.270083],[-6.860863,54.269451],[-6.859228,54.268476],[-6.854456,54.26926],[-6.853389,54.269132],[-6.852713,54.265113],[-6.848676,54.265706],[-6.844962,54.266954],[-6.844009,54.265956],[-6.842097,54.265778],[-6.840236,54.267843],[-6.837471,54.266441],[-6.837131,54.264666],[-6.834298,54.262467],[-6.830721,54.26157],[-6.828628,54.261557],[-6.828031,54.260368],[-6.829977,54.258547],[-6.830492,54.257502],[-6.829794,54.255291],[-6.830339,54.25325],[-6.829675,54.251479],[-6.829983,54.247594],[-6.828487,54.247359],[-6.82729,54.246458],[-6.827196,54.24471],[-6.825596,54.244059],[-6.825327,54.243152],[-6.823388,54.240776],[-6.82081,54.23946],[-6.81997,54.238651],[-6.821018,54.236023],[-6.820346,54.233458],[-6.820689,54.232717],[-6.819638,54.232039],[-6.819142,54.230527],[-6.817737,54.229903],[-6.815892,54.227198],[-6.817186,54.225603],[-6.817058,54.223121],[-6.815985,54.223503],[-6.812586,54.223486],[-6.809535,54.224821],[-6.807653,54.223784],[-6.805779,54.223388],[-6.80282,54.22157],[-6.801297,54.221219],[-6.801981,54.219886],[-6.801883,54.21864],[-6.803402,54.217196],[-6.803256,54.215303],[-6.80191,54.213314],[-6.797601,54.212818],[-6.796859,54.210982],[-6.795587,54.210461],[-6.795788,54.209085],[-6.791405,54.208767],[-6.785216,54.206099],[-6.782214,54.203762],[-6.778064,54.201521],[-6.777668,54.19962],[-6.776477,54.199017],[-6.774458,54.199031],[-6.771485,54.200381],[-6.769588,54.2007],[-6.768879,54.199715],[-6.767128,54.198642],[-6.756843,54.199154],[-6.755697,54.197634],[-6.751815,54.195176],[-6.749915,54.191588],[-6.75011,54.190996],[-6.748703,54.189823],[-6.746739,54.189002],[-6.746139,54.188309],[-6.745536,54.184411],[-6.742466,54.182319],[-6.73952,54.181628],[-6.736024,54.185889],[-6.732845,54.185625],[-6.728258,54.182537],[-6.723557,54.181658],[-6.721936,54.182112],[-6.722363,54.184696],[-6.721616,54.185496],[-6.721821,54.187287],[-6.720741,54.187695],[-6.719599,54.188989],[-6.713861,54.191536],[-6.715011,54.194736],[-6.714448,54.195419],[-6.711957,54.196853],[-6.711005,54.198158],[-6.706834,54.200189],[-6.702268,54.20044],[-6.699805,54.200072],[-6.696299,54.199053],[-6.695684,54.200017],[-6.692765,54.200347],[-6.688639,54.194926],[-6.685323,54.194132],[-6.683789,54.193308],[-6.681534,54.193612],[-6.6805,54.195193],[-6.679278,54.195749],[-6.678036,54.194351],[-6.674387,54.192304],[-6.668729,54.192672],[-6.665885,54.193262],[-6.663813,54.189733],[-6.662096,54.188216],[-6.659531,54.184875],[-6.657993,54.184796],[-6.650036,54.179718],[-6.647156,54.179237],[-6.644966,54.179876],[-6.644682,54.180729],[-6.645182,54.18286],[-6.643482,54.184133],[-6.642387,54.185539],[-6.638643,54.18568],[-6.638091,54.186388],[-6.638429,54.187819],[-6.639448,54.188937],[-6.638137,54.190235],[-6.637811,54.191216],[-6.635284,54.191572],[-6.63292,54.192208],[-6.630571,54.194378],[-6.629242,54.194753],[-6.626289,54.194734],[-6.623701,54.196394],[-6.620358,54.196465],[-6.616488,54.198435],[-6.616519,54.202166],[-6.615338,54.202651],[-6.614871,54.203943],[-6.611802,54.206562],[-6.611682,54.20828],[-6.613009,54.21262],[-6.603472,54.215134],[-6.602249,54.215234],[-6.600919,54.216933],[-6.600829,54.219064],[-6.597983,54.219265],[-6.594223,54.220248],[-6.589449,54.219044],[-6.588835,54.21911],[-6.58757,54.217465],[-6.587265,54.214056],[-6.585186,54.214274],[-6.579422,54.215551],[-6.574747,54.21858],[-6.572911,54.224321],[-6.563067,54.227208],[-6.556432,54.230438],[-6.555738,54.228185],[-6.551578,54.22691],[-6.550698,54.227318],[-6.550081,54.228866],[-6.547077,54.229867],[-6.546467,54.23056],[-6.543594,54.231337],[-6.5424,54.232234],[-6.540047,54.232019],[-6.537824,54.23248],[-6.535978,54.233725],[-6.5356,54.234569],[-6.534195,54.235254],[-6.532339,54.235174],[-6.530578,54.236254],[-6.528222,54.2362],[-6.526377,54.237253],[-6.525468,54.237252],[-6.523478,54.235506],[-6.523806,54.234164],[-6.522845,54.233155],[-6.51878,54.233091],[-6.516739,54.232164],[-6.516364,54.231393],[-6.514919,54.231086],[-6.512972,54.229631],[-6.511428,54.230017],[-6.510423,54.228316],[-6.508444,54.227926],[-6.507113,54.226535],[-6.505027,54.225799],[-6.504785,54.228088],[-6.503962,54.22935],[-6.50226,54.230067],[-6.499882,54.232204],[-6.49938,54.233129],[-6.497601,54.233307],[-6.495026,54.232159],[-6.494636,54.232533],[-6.491128,54.232905],[-6.491862,54.234443],[-6.488407,54.235237],[-6.486304,54.239777],[-6.48651,54.241833],[-6.484399,54.242296],[-6.482187,54.241846],[-6.480418,54.245683],[-6.478363,54.247689],[-6.475922,54.24816],[-6.47506,54.250226],[-6.47126,54.252193],[-6.467714,54.255095],[-6.466767,54.254121],[-6.464141,54.253114],[-6.463432,54.252003],[-6.458808,54.252224],[-6.45131,54.256482],[-6.45096,54.258085],[-6.448202,54.260151],[-6.447711,54.261172],[-6.445025,54.262875],[-6.443911,54.265145],[-6.44048,54.267419],[-6.43478,54.267921],[-6.428869,54.267744],[-6.424532,54.26795],[-6.420422,54.26751],[-6.417261,54.268199],[-6.412805,54.270698],[-6.410556,54.270818],[-6.407545,54.27209],[-6.403702,54.273017],[-6.388735,54.272765],[-6.386489,54.27208],[-6.385262,54.272149],[-6.380462,54.270685],[-6.380057,54.269414],[-6.378489,54.268294],[-6.376594,54.267737],[-6.374658,54.267638],[-6.374666,54.266175],[-6.374079,54.265485],[-6.370748,54.265775],[-6.368745,54.265442],[-6.36619,54.265957],[-6.367269,54.266622],[-6.367348,54.26974],[-6.363638,54.271124],[-6.36096,54.271265],[-6.358231,54.272202],[-6.356959,54.272256],[-6.356286,54.273625],[-6.355192,54.274317],[-6.350313,54.273705],[-6.345365,54.272157],[-6.34247,54.26976],[-6.34093,54.267465],[-6.338906,54.265721],[-6.337142,54.264692],[-6.33206,54.26329],[-6.329093,54.263724],[-6.326309,54.264597],[-6.323003,54.266693],[-6.318261,54.266641],[-6.314505,54.266926],[-6.314542,54.268035],[-6.310199,54.265746],[-6.306264,54.265046],[-6.305287,54.26618],[-6.303435,54.267372],[-6.300968,54.265957],[-6.297927,54.265155],[-6.29564,54.266325],[-6.291634,54.265302],[-6.289454,54.26516],[-6.288153,54.266744],[-6.288151,54.269037],[-6.287179,54.270981],[-6.285709,54.271555],[-6.282965,54.271311],[-6.280075,54.271873],[-6.277466,54.268632],[-6.276325,54.265445],[-6.27407,54.264722],[-6.269023,54.261475],[-6.266621,54.262147],[-6.263679,54.2623],[-6.260505,54.260434],[-6.259248,54.259333],[-6.254968,54.257905],[-6.253273,54.258036],[-6.247899,54.260178],[-6.246506,54.261096],[-6.245234,54.263216],[-6.242442,54.263839],[-6.242512,54.263136],[-6.239401,54.262242],[-6.235386,54.260274],[-6.233961,54.259171],[-6.229897,54.257718],[-6.222278,54.257863],[-6.213311,54.258733],[-6.212992,54.257679],[-6.210635,54.255032],[-6.209735,54.252952],[-6.207252,54.25139],[-6.203664,54.251185],[-6.199972,54.250477],[-6.198098,54.250504],[-6.197397,54.250024],[-6.194842,54.249884],[-6.192236,54.248647],[-6.190532,54.248591],[-6.186143,54.245943],[-6.182392,54.244302],[-6.189902,54.237661],[-6.181977,54.237283],[-6.18167,54.233731],[-6.182175,54.232616],[-6.182354,54.229324],[-6.180103,54.226914],[-6.179128,54.228125],[-6.176223,54.229975],[-6.172565,54.230532],[-6.169866,54.230236],[-6.168328,54.228687],[-6.167837,54.226507],[-6.165784,54.226057],[-6.165035,54.224776],[-6.16458,54.222406],[-6.161255,54.219034],[-6.157789,54.221673],[-6.155068,54.224993],[-6.152989,54.225327],[-6.153631,54.226124],[-6.150794,54.228579],[-6.151612,54.230958],[-6.14971,54.232843],[-6.146603,54.232534],[-6.14431,54.233212],[-6.143976,54.233732],[-6.139304,54.236606],[-6.13877,54.237398],[-6.139205,54.241311],[-6.137135,54.242867],[-6.131037,54.243061],[-6.130163,54.242049],[-6.127101,54.242824],[-6.123924,54.242499],[-6.122631,54.243171],[-6.120913,54.24597],[-6.119814,54.244681],[-6.120086,54.243711],[-6.117307,54.244115],[-6.115971,54.243614],[-6.11623,54.242206],[-6.114259,54.241923],[-6.112432,54.24206],[-6.107843,54.240228],[-6.107138,54.240784],[-6.107853,54.2423],[-6.107069,54.243552],[-6.103128,54.244815],[-6.103124,54.245728],[-6.100195,54.247823],[-6.096172,54.246581],[-6.09449,54.2472],[-6.093487,54.24822],[-6.090763,54.24684],[-6.086906,54.247345],[-6.083867,54.246331],[-6.080956,54.246338],[-6.079934,54.246883],[-6.080703,54.250213],[-6.079882,54.252974],[-6.077206,54.253784],[-6.074649,54.253908],[-6.071097,54.254521],[-6.067214,54.254058],[-6.062211,54.251538],[-6.058619,54.248898],[-6.053226,54.246156],[-6.052915,54.244538],[-6.051181,54.245038],[-6.05014,54.246245],[-6.046239,54.246366],[-6.047376,54.249058],[-6.046176,54.249994],[-6.0464,54.250755],[-6.0453,54.251839],[-6.043818,54.254595],[-6.043996,54.255274],[-6.043014,54.256344],[-6.043301,54.2589],[-6.04063,54.25922],[-6.039818,54.260189],[-6.039833,54.263256],[-6.043438,54.262835],[-6.046125,54.264532],[-6.049375,54.263833],[-6.052017,54.264354],[-6.053656,54.264001],[-6.058011,54.264021],[-6.060804,54.263589],[-6.062966,54.263953],[-6.064861,54.263461],[-6.066566,54.263673],[-6.066855,54.262465],[-6.072992,54.262402],[-6.076664,54.2636],[-6.077628,54.265744],[-6.076898,54.266869],[-6.075252,54.267914],[-6.074152,54.269536],[-6.065213,54.270399],[-6.063623,54.271568],[-6.067441,54.273098],[-6.069164,54.277579],[-6.070785,54.279156],[-6.073338,54.279686],[-6.072631,54.281182],[-6.07062,54.281126],[-6.069086,54.281568],[-6.067324,54.281395],[-6.065407,54.280688],[-6.061623,54.280405],[-6.059843,54.281014],[-6.060539,54.28402],[-6.06028,54.284987],[-6.062851,54.286887],[-6.061914,54.289288],[-6.060893,54.28941],[-6.060869,54.291528],[-6.06292,54.293013],[-6.064228,54.29273],[-6.067917,54.293699],[-6.070676,54.293736],[-6.072957,54.294337],[-6.076814,54.296148],[-6.080258,54.298749],[-6.082538,54.299524],[-6.083368,54.301349],[-6.084418,54.302385],[-6.085934,54.302972],[-6.086494,54.30455],[-6.087508,54.305091],[-6.090382,54.308135],[-6.093004,54.309884],[-6.094331,54.310144],[-6.096529,54.311426],[-6.09708,54.312598],[-6.10186,54.316846],[-6.102902,54.317105],[-6.105372,54.318591],[-6.102829,54.321018],[-6.099794,54.322102],[-6.100187,54.32449],[-6.100883,54.32482],[-6.100803,54.326152],[-6.097256,54.326972],[-6.094255,54.326898],[-6.093234,54.327551],[-6.086604,54.328328],[-6.08253,54.327727],[-6.079733,54.328244],[-6.075017,54.327643],[-6.073656,54.326064],[-6.071039,54.325174],[-6.064571,54.327034],[-6.064187,54.333373],[-6.06143,54.336744],[-6.052325,54.342755],[-6.04338,54.347741],[-6.041792,54.351153],[-6.041652,54.352539],[-6.042574,54.353866],[-6.040354,54.355746],[-6.035636,54.356228],[-6.032964,54.357197],[-6.031712,54.35886],[-6.030865,54.36098],[-6.029958,54.361074],[-6.027487,54.362398],[-6.029391,54.363258],[-6.029574,54.364299],[-6.026569,54.365085],[-6.026186,54.365824],[-6.024426,54.367067],[-6.021966,54.367771],[-6.022106,54.368632],[-6.019529,54.370587]]]},"properties":{"LAD22CD":"N09000002","LAD22NM":"Armagh City, Banbridge and Craigavon","BNG_E":112110,"BNG_N":508158,"LONG":-6.43455,"LAT":54.3867,"GlobalID":"842db5b9-2562-45a2-81c4-0a03f6a066b1"},"id":311}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.913866,54.648058],[-5.914628,54.648245],[-5.916593,54.645703],[-5.917739,54.646748],[-5.927681,54.651811],[-5.932264,54.655292],[-5.938542,54.660955],[-5.940604,54.661784],[-5.945974,54.662998],[-5.951698,54.665075],[-5.953414,54.66152],[-5.955034,54.659996],[-5.954542,54.659103],[-5.954997,54.65804],[-5.952342,54.65721],[-5.948683,54.65478],[-5.949825,54.652417],[-5.952784,54.651743],[-5.95779,54.649816],[-5.961573,54.64873],[-5.965836,54.646405],[-5.971879,54.645388],[-5.97444,54.648099],[-5.976286,54.648915],[-5.979397,54.649604],[-5.980289,54.650392],[-5.980652,54.652076],[-5.983153,54.652772],[-5.984961,54.654225],[-5.984933,54.656815],[-5.987087,54.658574],[-5.987929,54.656472],[-5.988839,54.655287],[-5.992094,54.654001],[-5.993168,54.652302],[-5.993201,54.651304],[-5.996348,54.649674],[-5.997105,54.648709],[-5.999851,54.647238],[-5.999286,54.646034],[-6.001586,54.644417],[-6.015687,54.636382],[-6.024531,54.628823],[-6.023949,54.628681],[-6.022809,54.625563],[-6.02286,54.614576],[-6.022138,54.611777],[-6.042059,54.613008],[-6.04303,54.612327],[-6.043694,54.609927],[-6.046035,54.607447],[-6.046522,54.605973],[-6.045971,54.605507],[-6.045287,54.601165],[-6.041343,54.596297],[-6.040937,54.593629],[-6.041801,54.590583],[-6.043307,54.589901],[-6.04451,54.589991],[-6.046455,54.588299],[-6.046362,54.587334],[-6.044916,54.586231],[-6.043951,54.584646],[-6.044771,54.584307],[-6.045197,54.581776],[-6.043312,54.578187],[-6.042187,54.570965],[-6.043195,54.569926],[-6.045187,54.569793],[-6.04585,54.567675],[-6.044327,54.567145],[-6.043809,54.565684],[-6.041989,54.564175],[-6.043987,54.562794],[-6.046191,54.562865],[-6.049039,54.562199],[-6.050165,54.561389],[-6.051907,54.561672],[-6.054846,54.561078],[-6.059304,54.557968],[-6.06021,54.557926],[-6.061185,54.556376],[-6.0607,54.555201],[-6.058709,54.554292],[-6.054571,54.552831],[-6.048519,54.551334],[-6.046535,54.549341],[-6.042173,54.546852],[-6.038302,54.548502],[-6.036033,54.547276],[-6.035117,54.547762],[-6.033371,54.547192],[-6.031438,54.547738],[-6.029411,54.547279],[-6.02815,54.54574],[-6.022936,54.547176],[-6.019803,54.548684],[-6.017629,54.550906],[-6.011942,54.54782],[-6.01034,54.547314],[-6.008427,54.547507],[-6.005871,54.546749],[-6.005115,54.545901],[-6.003172,54.54479],[-6.001447,54.545513],[-6.000331,54.542452],[-6.000652,54.54073],[-5.999229,54.540774],[-5.99882,54.542403],[-5.997752,54.542336],[-5.994679,54.543004],[-5.991294,54.542276],[-5.990268,54.541776],[-5.98817,54.53858],[-5.98833,54.537375],[-5.986773,54.536716],[-5.985036,54.535154],[-5.983123,54.535324],[-5.981208,54.535953],[-5.979002,54.535395],[-5.978056,54.53427],[-5.978928,54.532498],[-5.977277,54.530826],[-5.975862,54.531771],[-5.974401,54.531475],[-5.972971,54.5328],[-5.968984,54.533528],[-5.9671,54.536174],[-5.963782,54.536587],[-5.961454,54.537646],[-5.960406,54.538752],[-5.958169,54.537385],[-5.958415,54.535885],[-5.957301,54.535457],[-5.954499,54.535976],[-5.950763,54.537622],[-5.950414,54.537391],[-5.946357,54.538377],[-5.946618,54.539633],[-5.945359,54.541394],[-5.943241,54.542347],[-5.942393,54.543756],[-5.936379,54.541529],[-5.934178,54.540281],[-5.932982,54.543803],[-5.930501,54.545263],[-5.932283,54.546552],[-5.926695,54.54939],[-5.918979,54.554831],[-5.915413,54.558627],[-5.910685,54.561393],[-5.911358,54.563325],[-5.913815,54.566034],[-5.913158,54.566754],[-5.909837,54.566891],[-5.905512,54.565261],[-5.907341,54.564132],[-5.904201,54.562855],[-5.899994,54.562801],[-5.897741,54.561565],[-5.892593,54.562496],[-5.890841,54.562415],[-5.890189,54.561868],[-5.882387,54.564487],[-5.87495,54.565886],[-5.867428,54.567727],[-5.86404,54.567091],[-5.857913,54.568345],[-5.857608,54.569854],[-5.855348,54.571698],[-5.855354,54.573126],[-5.854495,54.573487],[-5.849527,54.574039],[-5.842957,54.577461],[-5.84135,54.57867],[-5.838401,54.577314],[-5.834963,54.577786],[-5.83426,54.577326],[-5.831803,54.579141],[-5.829838,54.579955],[-5.825931,54.580869],[-5.823847,54.581766],[-5.825644,54.586106],[-5.827282,54.588384],[-5.8257,54.58877],[-5.824539,54.590441],[-5.817757,54.589905],[-5.818723,54.590436],[-5.818469,54.592965],[-5.82063,54.594385],[-5.817098,54.594915],[-5.817884,54.596399],[-5.814882,54.597217],[-5.815081,54.598109],[-5.814169,54.599107],[-5.816897,54.598944],[-5.815759,54.600034],[-5.813263,54.601316],[-5.813243,54.602102],[-5.811986,54.603418],[-5.811549,54.604993],[-5.812111,54.607309],[-5.809393,54.608616],[-5.808404,54.610777],[-5.809346,54.611727],[-5.809852,54.613611],[-5.810649,54.614663],[-5.810119,54.615601],[-5.811555,54.615357],[-5.81564,54.613806],[-5.818117,54.613293],[-5.823821,54.612811],[-5.831746,54.610664],[-5.83143,54.612756],[-5.829954,54.615965],[-5.830285,54.616832],[-5.833593,54.616464],[-5.838262,54.616499],[-5.838592,54.617581],[-5.84377,54.617346],[-5.844558,54.618563],[-5.846908,54.618861],[-5.848704,54.619556],[-5.846697,54.620926],[-5.847582,54.621443],[-5.851833,54.62089],[-5.859519,54.623639],[-5.854562,54.628257],[-5.854697,54.630599],[-5.856123,54.633748],[-5.875835,54.638611],[-5.913866,54.648058]]]},"properties":{"LAD22CD":"N09000003","LAD22NM":"Belfast","BNG_E":146465,"BNG_N":529747,"LONG":-5.92535,"LAT":54.59853,"GlobalID":"64343e73-f4d5-45d5-a816-e1fd19482086"},"id":312}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.977927,55.056319],[-5.982252,55.057914],[-5.995646,55.059379],[-5.997868,55.059123],[-6.001559,55.059224],[-6.009146,55.058312],[-6.013062,55.056686],[-6.025029,55.057247],[-6.027926,55.056408],[-6.034263,55.055603],[-6.043455,55.052987],[-6.048775,55.055104],[-6.052072,55.056938],[-6.056504,55.060433],[-6.059518,55.064105],[-6.057311,55.06484],[-6.057199,55.065586],[-6.055378,55.066606],[-6.055109,55.067749],[-6.055877,55.069842],[-6.054555,55.07081],[-6.055488,55.071215],[-6.053674,55.072993],[-6.054119,55.07402],[-6.053145,55.075269],[-6.054191,55.075633],[-6.05432,55.078959],[-6.053103,55.079418],[-6.054124,55.080257],[-6.052807,55.081658],[-6.055147,55.081581],[-6.056272,55.083017],[-6.056294,55.084787],[-6.05488,55.085552],[-6.050961,55.088582],[-6.049189,55.089395],[-6.048982,55.091611],[-6.043016,55.095761],[-6.041722,55.097802],[-6.038431,55.101121],[-6.037865,55.102594],[-6.036959,55.103261],[-6.03468,55.113311],[-6.035941,55.115725],[-6.035763,55.117839],[-6.036474,55.119602],[-6.03638,55.122996],[-6.037704,55.124227],[-6.03893,55.124744],[-6.039217,55.125639],[-6.041524,55.125581],[-6.042574,55.126459],[-6.043029,55.128525],[-6.042184,55.131025],[-6.040476,55.132765],[-6.038103,55.133],[-6.036245,55.133754],[-6.036261,55.134327],[-6.031833,55.137395],[-6.030582,55.137547],[-6.028565,55.139184],[-6.027215,55.13906],[-6.026479,55.140457],[-6.027136,55.140999],[-6.027052,55.143105],[-6.026557,55.14396],[-6.026758,55.148487],[-6.027424,55.150571],[-6.026914,55.151863],[-6.026854,55.155945],[-6.0273,55.157777],[-6.026976,55.158442],[-6.027987,55.16139],[-6.032005,55.166545],[-6.032285,55.167594],[-6.034158,55.169389],[-6.035949,55.170077],[-6.044312,55.171239],[-6.045962,55.171594],[-6.050136,55.174706],[-6.051616,55.175294],[-6.052615,55.176571],[-6.053318,55.178453],[-6.052892,55.179883],[-6.05392,55.182573],[-6.057186,55.184363],[-6.059144,55.186232],[-6.060078,55.187978],[-6.061733,55.189231],[-6.063206,55.189179],[-6.064952,55.190053],[-6.065709,55.191142],[-6.065095,55.193734],[-6.065292,55.194414],[-6.0627,55.195283],[-6.063293,55.196454],[-6.062437,55.197011],[-6.063549,55.198061],[-6.066264,55.197689],[-6.067492,55.196853],[-6.074246,55.198216],[-6.075118,55.197971],[-6.080663,55.200369],[-6.082646,55.201617],[-6.084317,55.201937],[-6.088239,55.203599],[-6.089828,55.203704],[-6.093101,55.204808],[-6.09399,55.204678],[-6.097492,55.206013],[-6.102347,55.208823],[-6.10373,55.208709],[-6.108099,55.210146],[-6.113734,55.209088],[-6.115551,55.209028],[-6.117138,55.209544],[-6.118671,55.211361],[-6.11962,55.211161],[-6.122739,55.21314],[-6.122718,55.214668],[-6.123589,55.215651],[-6.12607,55.216786],[-6.129716,55.217779],[-6.130615,55.219599],[-6.133372,55.22131],[-6.133538,55.222308],[-6.134845,55.224035],[-6.137818,55.225067],[-6.140769,55.227054],[-6.146931,55.228018],[-6.155827,55.227494],[-6.160241,55.226119],[-6.163091,55.223814],[-6.166792,55.22238],[-6.167456,55.220713],[-6.169312,55.21913],[-6.170051,55.219219],[-6.17284,55.217293],[-6.173655,55.216213],[-6.176798,55.21514],[-6.176902,55.214638],[-6.181,55.213305],[-6.182964,55.213288],[-6.190511,55.211368],[-6.191833,55.211638],[-6.193277,55.21116],[-6.197198,55.210857],[-6.199131,55.211028],[-6.200029,55.211701],[-6.203914,55.211676],[-6.2086,55.210105],[-6.207866,55.20959],[-6.209126,55.208422],[-6.211641,55.208404],[-6.213534,55.207447],[-6.215062,55.207306],[-6.217385,55.20777],[-6.221035,55.207173],[-6.222399,55.206124],[-6.229939,55.204604],[-6.234229,55.204347],[-6.238556,55.204511],[-6.239635,55.205811],[-6.240958,55.205978],[-6.24118,55.208016],[-6.243775,55.208824],[-6.247058,55.211398],[-6.249702,55.212117],[-6.255409,55.212538],[-6.256162,55.212034],[-6.258032,55.212162],[-6.261132,55.212992],[-6.263889,55.214977],[-6.264974,55.215029],[-6.265515,55.216065],[-6.266713,55.216033],[-6.267535,55.216898],[-6.268942,55.217107],[-6.269049,55.218222],[-6.271397,55.219392],[-6.273058,55.221191],[-6.275111,55.221033],[-6.278189,55.221885],[-6.279915,55.221949],[-6.284649,55.223304],[-6.288216,55.224744],[-6.291026,55.226967],[-6.29185,55.228122],[-6.291322,55.230351],[-6.293347,55.229455],[-6.296817,55.231159],[-6.301558,55.229883],[-6.30458,55.230253],[-6.306604,55.229656],[-6.309693,55.229324],[-6.313485,55.229776],[-6.315204,55.230262],[-6.31577,55.231084],[-6.31859,55.232544],[-6.328501,55.235339],[-6.330585,55.236505],[-6.333499,55.239627],[-6.338301,55.238667],[-6.343143,55.238606],[-6.348017,55.239428],[-6.350757,55.241015],[-6.351943,55.242661],[-6.353749,55.242545],[-6.355003,55.241348],[-6.356169,55.24155],[-6.359591,55.240876],[-6.361622,55.241255],[-6.363549,55.243561],[-6.364468,55.243375],[-6.366399,55.244447],[-6.368417,55.244782],[-6.368665,55.245599],[-6.37045,55.245436],[-6.370733,55.243861],[-6.372364,55.243802],[-6.372518,55.242922],[-6.374665,55.242113],[-6.379335,55.242097],[-6.381498,55.242466],[-6.38212,55.24127],[-6.384025,55.240219],[-6.384813,55.238542],[-6.389822,55.235713],[-6.392694,55.234665],[-6.398192,55.23328],[-6.403575,55.232605],[-6.410249,55.232268],[-6.413406,55.232805],[-6.416558,55.234762],[-6.415909,55.235386],[-6.417898,55.237204],[-6.421174,55.236935],[-6.422964,55.237657],[-6.426873,55.236706],[-6.429319,55.23833],[-6.429789,55.237574],[-6.433712,55.238007],[-6.434697,55.238864],[-6.437104,55.238991],[-6.437693,55.238425],[-6.436837,55.237542],[-6.438377,55.23711],[-6.439126,55.237925],[-6.44106,55.238059],[-6.442197,55.239913],[-6.444277,55.239189],[-6.446874,55.23939],[-6.448268,55.238955],[-6.449786,55.239387],[-6.453233,55.238901],[-6.454515,55.239471],[-6.456688,55.239539],[-6.457151,55.241293],[-6.458843,55.242807],[-6.460208,55.242261],[-6.461968,55.242348],[-6.462726,55.2437],[-6.462041,55.244731],[-6.463119,55.245646],[-6.463705,55.247525],[-6.465814,55.247209],[-6.469161,55.249493],[-6.471051,55.251325],[-6.47454,55.25196],[-6.47521,55.251033],[-6.476787,55.252141],[-6.478884,55.251195],[-6.480562,55.251315],[-6.482596,55.251942],[-6.486948,55.251133],[-6.48598,55.250099],[-6.48749,55.249498],[-6.488562,55.248515],[-6.491458,55.248197],[-6.493138,55.247406],[-6.494717,55.248224],[-6.49692,55.248503],[-6.497726,55.247635],[-6.497184,55.246697],[-6.499264,55.246025],[-6.500825,55.246536],[-6.503055,55.246183],[-6.504976,55.246782],[-6.504278,55.244532],[-6.506251,55.243591],[-6.507097,55.240381],[-6.512995,55.240169],[-6.513329,55.238635],[-6.514345,55.238189],[-6.51791,55.238619],[-6.519895,55.238485],[-6.518381,55.236654],[-6.51817,55.235605],[-6.520438,55.235138],[-6.523301,55.235885],[-6.524496,55.235907],[-6.524617,55.234155],[-6.526054,55.235051],[-6.527981,55.234137],[-6.530461,55.234127],[-6.53263,55.232576],[-6.532032,55.231819],[-6.532393,55.230614],[-6.533347,55.230111],[-6.532671,55.229017],[-6.528693,55.228624],[-6.528585,55.226369],[-6.529447,55.22497],[-6.532661,55.222165],[-6.537167,55.219533],[-6.540282,55.22024],[-6.543354,55.219831],[-6.545787,55.220076],[-6.546509,55.218955],[-6.544761,55.217273],[-6.546247,55.216232],[-6.548538,55.21585],[-6.55122,55.216508],[-6.552422,55.219316],[-6.554185,55.21962],[-6.556622,55.218637],[-6.557887,55.217266],[-6.559776,55.218018],[-6.560853,55.216837],[-6.56256,55.217596],[-6.563948,55.21766],[-6.564312,55.216016],[-6.566629,55.216332],[-6.568873,55.216252],[-6.569372,55.21557],[-6.57127,55.215402],[-6.57417,55.214638],[-6.575576,55.213498],[-6.577913,55.213539],[-6.578133,55.212026],[-6.58282,55.210963],[-6.582384,55.210387],[-6.584603,55.209777],[-6.588217,55.209474],[-6.587687,55.208979],[-6.590099,55.208228],[-6.591525,55.208728],[-6.599469,55.20743],[-6.600539,55.206782],[-6.602539,55.207167],[-6.604577,55.206304],[-6.606718,55.205935],[-6.611086,55.206051],[-6.623429,55.208065],[-6.629804,55.208442],[-6.633533,55.207803],[-6.644008,55.205216],[-6.647428,55.204906],[-6.650501,55.205053],[-6.651195,55.205949],[-6.651853,55.208148],[-6.65447,55.208505],[-6.656565,55.210704],[-6.657963,55.212776],[-6.65956,55.212205],[-6.660868,55.211013],[-6.662503,55.21222],[-6.664088,55.21198],[-6.663636,55.210811],[-6.659767,55.207231],[-6.658392,55.207276],[-6.656506,55.206119],[-6.657228,55.205634],[-6.656155,55.204664],[-6.655808,55.203513],[-6.656536,55.201855],[-6.659288,55.19946],[-6.661137,55.198602],[-6.665248,55.199135],[-6.668285,55.199029],[-6.671367,55.199568],[-6.673132,55.199357],[-6.673952,55.198438],[-6.676323,55.199053],[-6.679553,55.198251],[-6.680619,55.198735],[-6.684195,55.197376],[-6.687074,55.196818],[-6.689976,55.195385],[-6.695067,55.196591],[-6.695641,55.195201],[-6.697465,55.195491],[-6.698723,55.193784],[-6.703971,55.193271],[-6.704353,55.192232],[-6.708519,55.193231],[-6.70944,55.191958],[-6.712068,55.19115],[-6.712901,55.189454],[-6.714304,55.188734],[-6.716632,55.188918],[-6.722811,55.189871],[-6.722989,55.188355],[-6.720803,55.186752],[-6.720086,55.184079],[-6.723267,55.183205],[-6.724776,55.181536],[-6.724039,55.181101],[-6.725109,55.179816],[-6.726305,55.179539],[-6.725844,55.177855],[-6.726135,55.176939],[-6.725004,55.175086],[-6.726298,55.174399],[-6.725348,55.173385],[-6.727481,55.173196],[-6.728057,55.17224],[-6.753519,55.168542],[-6.765966,55.168054],[-6.76934,55.167385],[-6.771818,55.169739],[-6.773086,55.172064],[-6.775016,55.171774],[-6.774633,55.169489],[-6.782946,55.168333],[-6.790925,55.167779],[-6.793061,55.168456],[-6.794624,55.168148],[-6.798458,55.168126],[-6.801727,55.16862],[-6.805812,55.168797],[-6.806489,55.168166],[-6.810679,55.168454],[-6.815787,55.167408],[-6.82064,55.167216],[-6.823007,55.167284],[-6.829803,55.167031],[-6.83337,55.166469],[-6.834108,55.166756],[-6.847095,55.166796],[-6.865239,55.167345],[-6.8756,55.168064],[-6.892066,55.170151],[-6.911806,55.173708],[-6.922873,55.176983],[-6.928617,55.179411],[-6.945419,55.188292],[-6.952715,55.192705],[-6.963875,55.194893],[-6.967271,55.194565],[-6.965794,55.191413],[-6.966133,55.190929],[-6.963785,55.188352],[-6.961272,55.182146],[-6.961671,55.180668],[-6.961203,55.178488],[-6.96164,55.177334],[-6.963119,55.170193],[-6.963671,55.164582],[-6.964468,55.163956],[-6.96555,55.161337],[-6.9665,55.15645],[-6.966921,55.156289],[-6.967625,55.15271],[-6.96849,55.152223],[-6.969747,55.149896],[-6.969689,55.147884],[-6.972638,55.145705],[-6.972776,55.144085],[-6.973621,55.142248],[-6.975963,55.140384],[-6.976165,55.139288],[-6.975761,55.137427],[-6.977528,55.136605],[-6.978567,55.135054],[-6.978919,55.133755],[-6.981085,55.13141],[-6.982908,55.128923],[-6.983471,55.127521],[-6.984276,55.127086],[-6.985165,55.125353],[-6.985638,55.123514],[-6.987053,55.122486],[-6.987228,55.121508],[-6.988254,55.12059],[-6.988881,55.117273],[-6.98929,55.116435],[-6.993937,55.114298],[-6.992511,55.11221],[-6.990817,55.111057],[-6.991234,55.110189],[-6.992744,55.110229],[-6.993464,55.108827],[-6.99301,55.107971],[-6.997792,55.105861],[-7.006324,55.10701],[-7.008554,55.107014],[-7.011496,55.106461],[-7.016128,55.104117],[-7.021065,55.100262],[-7.023102,55.096033],[-7.023565,55.091528],[-7.025032,55.090584],[-7.023736,55.089586],[-7.023293,55.086951],[-7.016396,55.081938],[-7.014733,55.079701],[-7.014471,55.07773],[-7.015354,55.076039],[-7.017952,55.07339],[-7.021988,55.070272],[-7.027425,55.066973],[-7.045479,55.058255],[-7.046025,55.056375],[-7.044318,55.054951],[-7.044151,55.053278],[-7.044935,55.052537],[-7.044283,55.051663],[-7.045639,55.051114],[-7.047406,55.051001],[-7.049324,55.0517],[-7.048491,55.053183],[-7.047037,55.053701],[-7.049682,55.055153],[-7.050316,55.054128],[-7.049579,55.053293],[-7.051756,55.050637],[-7.054028,55.049557],[-7.057862,55.04867],[-7.060402,55.047611],[-7.062571,55.047647],[-7.075091,55.045818],[-7.080331,55.046567],[-7.083114,55.045218],[-7.087247,55.044732],[-7.089774,55.044774],[-7.09206,55.045515],[-7.092922,55.04541],[-7.096579,55.043896],[-7.110715,55.042545],[-7.118234,55.042556],[-7.119848,55.043062],[-7.121512,55.042438],[-7.124778,55.042028],[-7.131658,55.04202],[-7.138042,55.04319],[-7.140412,55.044095],[-7.1458,55.045086],[-7.147117,55.046676],[-7.147881,55.046731],[-7.148721,55.044439],[-7.157708,55.03675],[-7.158372,55.035262],[-7.161216,55.035167],[-7.166722,55.033965],[-7.161076,55.030125],[-7.159577,55.030044],[-7.158306,55.029402],[-7.157677,55.028433],[-7.15643,55.027851],[-7.155893,55.026895],[-7.156466,55.025273],[-7.152356,55.022463],[-7.14886,55.020828],[-7.146674,55.01931],[-7.145278,55.017444],[-7.144259,55.014666],[-7.144274,55.013052],[-7.14224,55.009193],[-7.141275,55.008063],[-7.135539,55.003996],[-7.1341,55.00507],[-7.129361,54.998348],[-7.128947,54.996366],[-7.130261,54.995163],[-7.129269,54.993449],[-7.130758,54.991404],[-7.1302,54.989986],[-7.128062,54.987393],[-7.127495,54.985289],[-7.125515,54.985105],[-7.120722,54.986764],[-7.118434,54.988219],[-7.108674,54.989459],[-7.095103,54.986123],[-7.095014,54.985585],[-7.088681,54.987684],[-7.081882,54.985831],[-7.082008,54.977688],[-7.083584,54.97468],[-7.089794,54.970608],[-7.09234,54.965674],[-7.092253,54.96441],[-7.09366,54.962372],[-7.093189,54.959129],[-7.090584,54.957402],[-7.090892,54.955947],[-7.089842,54.952863],[-7.090945,54.950782],[-7.090838,54.94818],[-7.092075,54.947157],[-7.090564,54.945656],[-7.087946,54.944526],[-7.08438,54.937197],[-7.086933,54.932965],[-7.087523,54.929648],[-7.088488,54.927471],[-7.086888,54.927347],[-7.08524,54.927835],[-7.083267,54.927582],[-7.08152,54.926655],[-7.078945,54.926337],[-7.074413,54.925036],[-7.074452,54.923882],[-7.070419,54.922712],[-7.066457,54.922965],[-7.063106,54.922216],[-7.059719,54.922534],[-7.060683,54.919187],[-7.062406,54.917659],[-7.060887,54.916773],[-7.059144,54.916514],[-7.055468,54.916542],[-7.053094,54.916239],[-7.051079,54.915516],[-7.045731,54.914705],[-7.044459,54.913988],[-7.037026,54.906323],[-7.036266,54.904753],[-7.036393,54.894919],[-7.037203,54.893976],[-7.03611,54.89246],[-7.03652,54.890019],[-7.03547,54.888457],[-7.029928,54.888976],[-7.027566,54.888479],[-7.023371,54.886991],[-7.020158,54.886993],[-7.021869,54.885045],[-7.026016,54.883095],[-7.028809,54.882716],[-7.028997,54.881057],[-7.0317,54.878398],[-7.033165,54.87624],[-7.034865,54.874634],[-7.036966,54.873571],[-7.036445,54.871996],[-7.034614,54.870035],[-7.036417,54.869567],[-7.038019,54.868164],[-7.040054,54.867452],[-7.039884,54.866522],[-7.038745,54.866313],[-7.035798,54.864209],[-7.035285,54.857503],[-7.033709,54.857119],[-7.034161,54.854195],[-7.035519,54.850752],[-7.039696,54.845532],[-7.037575,54.844895],[-7.036871,54.844307],[-7.034502,54.844109],[-7.032473,54.842719],[-7.032199,54.842132],[-7.029586,54.841273],[-7.027206,54.839065],[-7.024195,54.838489],[-7.022647,54.837588],[-7.021096,54.83758],[-7.020101,54.836897],[-7.017449,54.836256],[-7.016143,54.835305],[-7.015013,54.833147],[-7.01572,54.83246],[-7.01478,54.830904],[-7.013417,54.829718],[-7.012683,54.828514],[-7.008836,54.82613],[-7.009042,54.822383],[-7.007785,54.820951],[-7.005068,54.820809],[-6.99696,54.825709],[-6.996168,54.826862],[-6.996305,54.827819],[-6.994017,54.829594],[-6.990352,54.830132],[-6.988243,54.833024],[-6.980032,54.830073],[-6.975329,54.828698],[-6.97269,54.828238],[-6.97056,54.828798],[-6.96577,54.831086],[-6.961609,54.83059],[-6.953919,54.830597],[-6.948293,54.833592],[-6.947102,54.833784],[-6.940775,54.831649],[-6.935901,54.830751],[-6.935413,54.82956],[-6.932013,54.826464],[-6.927582,54.825051],[-6.925663,54.823889],[-6.922918,54.823604],[-6.921261,54.821673],[-6.920244,54.821117],[-6.914674,54.82031],[-6.912936,54.820418],[-6.910565,54.821917],[-6.907725,54.822685],[-6.899858,54.823852],[-6.898797,54.824418],[-6.89326,54.830237],[-6.890731,54.831509],[-6.887859,54.831834],[-6.887282,54.834884],[-6.887476,54.853034],[-6.86536,54.856818],[-6.863415,54.856835],[-6.858153,54.857622],[-6.85686,54.857283],[-6.851795,54.85097],[-6.834914,54.849769],[-6.818752,54.845553],[-6.803445,54.846598],[-6.794752,54.853962],[-6.793074,54.856852],[-6.791082,54.857592],[-6.789432,54.859048],[-6.783266,54.862147],[-6.784124,54.863481],[-6.782483,54.864284],[-6.782913,54.866008],[-6.784063,54.868625],[-6.785839,54.870026],[-6.783037,54.870541],[-6.777402,54.872403],[-6.774429,54.87236],[-6.770776,54.871818],[-6.76913,54.873204],[-6.76912,54.875664],[-6.771393,54.878122],[-6.769993,54.884073],[-6.768393,54.885577],[-6.768588,54.886173],[-6.765014,54.888726],[-6.764414,54.890341],[-6.764742,54.8937],[-6.762755,54.896752],[-6.759267,54.898666],[-6.759139,54.901611],[-6.758443,54.90308],[-6.76127,54.906133],[-6.764332,54.905718],[-6.765902,54.904885],[-6.76975,54.9044],[-6.773555,54.905762],[-6.775202,54.907549],[-6.775958,54.907703],[-6.778126,54.909329],[-6.775092,54.910979],[-6.776536,54.912653],[-6.776712,54.91376],[-6.774057,54.915768],[-6.771797,54.915415],[-6.76897,54.91623],[-6.767743,54.917317],[-6.76594,54.917746],[-6.757788,54.921741],[-6.753766,54.921647],[-6.751019,54.922196],[-6.747927,54.923596],[-6.743956,54.923922],[-6.741862,54.924713],[-6.738551,54.925378],[-6.739018,54.928835],[-6.72555,54.931074],[-6.72096,54.930786],[-6.708388,54.931789],[-6.707275,54.930895],[-6.706331,54.928933],[-6.702778,54.927402],[-6.703213,54.923747],[-6.702466,54.923058],[-6.699515,54.921674],[-6.698204,54.918877],[-6.695355,54.918993],[-6.692751,54.916866],[-6.691465,54.916298],[-6.690384,54.917301],[-6.686994,54.918518],[-6.68029,54.920009],[-6.675869,54.918431],[-6.672187,54.918902],[-6.66842,54.920697],[-6.670252,54.923405],[-6.668766,54.924048],[-6.657854,54.922432],[-6.648342,54.928842],[-6.648182,54.929781],[-6.645396,54.931218],[-6.644699,54.932611],[-6.64569,54.93401],[-6.644726,54.934917],[-6.644366,54.93737],[-6.636412,54.937265],[-6.618401,54.93824],[-6.615907,54.933847],[-6.612904,54.934395],[-6.61226,54.933287],[-6.610769,54.933086],[-6.610006,54.932197],[-6.606497,54.931976],[-6.601072,54.932895],[-6.600816,54.93214],[-6.597401,54.93074],[-6.594355,54.930307],[-6.592554,54.928108],[-6.589419,54.927657],[-6.588609,54.927265],[-6.585947,54.923546],[-6.584494,54.923872],[-6.584053,54.925759],[-6.580921,54.9293],[-6.580724,54.93012],[-6.576882,54.929829],[-6.574892,54.927925],[-6.566911,54.931823],[-6.56673,54.932332],[-6.561524,54.932263],[-6.560584,54.931602],[-6.558435,54.931207],[-6.557499,54.936105],[-6.556073,54.937102],[-6.552981,54.935902],[-6.551824,54.93709],[-6.548306,54.935869],[-6.547334,54.936832],[-6.545433,54.934453],[-6.542852,54.932732],[-6.537757,54.933564],[-6.539992,54.935837],[-6.540142,54.936527],[-6.542123,54.937151],[-6.542769,54.937763],[-6.541834,54.939928],[-6.539573,54.942159],[-6.541359,54.94389],[-6.541245,54.945082],[-6.539541,54.944707],[-6.539644,54.949195],[-6.538524,54.952047],[-6.535041,54.951154],[-6.530692,54.947504],[-6.527472,54.946848],[-6.525282,54.945752],[-6.522056,54.942205],[-6.518666,54.940863],[-6.517621,54.937546],[-6.516014,54.934814],[-6.513535,54.932724],[-6.510658,54.929041],[-6.508233,54.926937],[-6.506427,54.92399],[-6.500826,54.918793],[-6.499709,54.919407],[-6.493463,54.920607],[-6.492949,54.921783],[-6.491261,54.922038],[-6.488168,54.921122],[-6.486185,54.919698],[-6.483891,54.919941],[-6.479033,54.922315],[-6.476856,54.921066],[-6.473062,54.923765],[-6.470996,54.924631],[-6.46877,54.924884],[-6.468373,54.924323],[-6.464785,54.922157],[-6.46195,54.923492],[-6.45873,54.922491],[-6.453426,54.923114],[-6.451599,54.92426],[-6.448674,54.922898],[-6.446137,54.922423],[-6.44471,54.922682],[-6.441241,54.919567],[-6.434031,54.918202],[-6.428189,54.916172],[-6.423084,54.91681],[-6.42521,54.918474],[-6.429377,54.936649],[-6.423531,54.937059],[-6.420968,54.936601],[-6.419557,54.936982],[-6.417867,54.938061],[-6.415978,54.937379],[-6.414526,54.93743],[-6.412658,54.938456],[-6.411129,54.938867],[-6.408763,54.940518],[-6.411901,54.944335],[-6.416259,54.944409],[-6.419011,54.945134],[-6.422062,54.949227],[-6.423587,54.950265],[-6.427831,54.948863],[-6.429264,54.950137],[-6.434973,54.953203],[-6.43691,54.953534],[-6.44089,54.955396],[-6.44914,54.964669],[-6.445808,54.964887],[-6.441027,54.96649],[-6.438319,54.965796],[-6.435196,54.9642],[-6.431113,54.963707],[-6.428362,54.96446],[-6.427704,54.96554],[-6.428847,54.967141],[-6.426642,54.968985],[-6.425866,54.97202],[-6.424549,54.972979],[-6.422255,54.972377],[-6.420616,54.967855],[-6.405328,54.966583],[-6.402327,54.966639],[-6.401535,54.966988],[-6.398892,54.970095],[-6.396297,54.970741],[-6.395277,54.970449],[-6.396261,54.975906],[-6.394955,54.97706],[-6.392774,54.977697],[-6.392715,54.981219],[-6.391514,54.981573],[-6.389336,54.979272],[-6.383877,54.980519],[-6.379383,54.979188],[-6.377251,54.978197],[-6.376038,54.975449],[-6.373677,54.975288],[-6.372119,54.974404],[-6.357975,54.975405],[-6.357135,54.975868],[-6.35777,54.977001],[-6.357724,54.979478],[-6.358876,54.98025],[-6.359174,54.981993],[-6.348546,54.982906],[-6.346664,54.983426],[-6.345896,54.984487],[-6.344599,54.984901],[-6.346541,54.988069],[-6.341701,54.986861],[-6.335097,54.986744],[-6.332909,54.98429],[-6.32393,54.979159],[-6.321842,54.981445],[-6.323335,54.984647],[-6.325916,54.987351],[-6.324121,54.988564],[-6.322945,54.992928],[-6.321004,54.993056],[-6.321441,54.994789],[-6.320676,54.995372],[-6.321697,54.996959],[-6.321105,54.99791],[-6.322702,54.999124],[-6.323162,55.00011],[-6.320038,55.001705],[-6.320089,55.002547],[-6.318609,55.003368],[-6.32447,55.007105],[-6.324703,55.010242],[-6.321579,55.010829],[-6.31995,55.008755],[-6.316852,55.007992],[-6.315699,55.006452],[-6.312188,55.008421],[-6.307018,55.009755],[-6.303581,55.009796],[-6.301775,55.010229],[-6.300625,55.009366],[-6.298555,55.008594],[-6.296717,55.008574],[-6.295303,55.007743],[-6.294153,55.007804],[-6.290351,55.006551],[-6.287648,55.005909],[-6.286153,55.004459],[-6.283819,55.004353],[-6.282397,55.005139],[-6.280182,55.004827],[-6.279234,55.006093],[-6.277448,55.006263],[-6.275181,55.006977],[-6.274318,55.007708],[-6.272361,55.008303],[-6.268905,55.010328],[-6.231652,55.016091],[-6.227578,55.017406],[-6.225064,55.019814],[-6.205323,55.029645],[-6.197309,55.028801],[-6.18619,55.026115],[-6.181772,55.034453],[-6.166634,55.031039],[-6.164568,55.027961],[-6.162681,55.026806],[-6.161907,55.025321],[-6.159458,55.023451],[-6.157165,55.019572],[-6.158165,55.01715],[-6.157143,55.016239],[-6.157754,55.015111],[-6.157226,55.014286],[-6.159242,55.012323],[-6.158577,55.011851],[-6.156733,55.01204],[-6.15517,55.011581],[-6.155047,55.008905],[-6.153458,55.006894],[-6.151626,55.007755],[-6.147268,55.00697],[-6.141091,54.993975],[-6.135612,54.990521],[-6.131851,54.988771],[-6.132619,54.988229],[-6.126521,54.986918],[-6.117166,54.98727],[-6.104761,54.98474],[-6.098959,54.983983],[-6.076164,54.995867],[-6.077266,55.000486],[-6.076399,55.001243],[-6.074417,55.001851],[-6.074205,55.002791],[-6.072637,55.003361],[-6.069994,55.005361],[-6.069496,55.006279],[-6.067561,55.007293],[-6.067152,55.008513],[-6.065211,55.00874],[-6.064437,55.009577],[-6.061679,55.010181],[-6.033877,55.026824],[-6.029274,55.033523],[-6.027482,55.034425],[-6.025619,55.035941],[-6.025704,55.036981],[-6.018099,55.038365],[-6.01837,55.037587],[-6.017053,55.035148],[-6.015117,55.03554],[-6.008937,55.042256],[-6.000997,55.043213],[-5.996524,55.043371],[-5.996479,55.044733],[-5.982491,55.051665],[-5.981878,55.053361],[-5.97904,55.055059],[-5.977927,55.056319]]],[[[-6.243023,55.312886],[-6.245866,55.310711],[-6.24544,55.309896],[-6.247269,55.309417],[-6.249883,55.310658],[-6.250019,55.309698],[-6.253576,55.30964],[-6.256721,55.311067],[-6.258419,55.310349],[-6.257424,55.309152],[-6.258358,55.307574],[-6.261088,55.306454],[-6.263801,55.306356],[-6.265896,55.305533],[-6.267567,55.306116],[-6.269387,55.306098],[-6.270086,55.307029],[-6.272714,55.306077],[-6.273,55.304478],[-6.276231,55.303135],[-6.278007,55.301847],[-6.280664,55.302443],[-6.280244,55.301474],[-6.281548,55.300935],[-6.282094,55.299615],[-6.281394,55.298915],[-6.282538,55.297493],[-6.284289,55.297079],[-6.284251,55.295569],[-6.287707,55.294351],[-6.283356,55.29242],[-6.279582,55.292523],[-6.278733,55.291744],[-6.274806,55.291465],[-6.272399,55.291732],[-6.267951,55.2929],[-6.266627,55.292854],[-6.263158,55.291078],[-6.261666,55.289831],[-6.254972,55.291981],[-6.252442,55.292083],[-6.250617,55.291677],[-6.245996,55.292929],[-6.236688,55.294568],[-6.232557,55.295],[-6.228562,55.296039],[-6.222304,55.295675],[-6.217453,55.294789],[-6.209334,55.293854],[-6.199707,55.293167],[-6.198632,55.292874],[-6.194008,55.292613],[-6.193285,55.29191],[-6.194625,55.29067],[-6.194172,55.290051],[-6.191523,55.288788],[-6.192113,55.288158],[-6.191125,55.286324],[-6.189715,55.284941],[-6.197072,55.282124],[-6.198753,55.27973],[-6.201507,55.277237],[-6.201793,55.275381],[-6.200778,55.273823],[-6.200855,55.27131],[-6.200441,55.270566],[-6.201002,55.269487],[-6.200026,55.26769],[-6.19912,55.265032],[-6.195775,55.263011],[-6.195256,55.261613],[-6.192007,55.26068],[-6.193172,55.25991],[-6.190892,55.258461],[-6.189531,55.26086],[-6.187131,55.262243],[-6.185838,55.263414],[-6.185842,55.264238],[-6.183807,55.265967],[-6.183331,55.267104],[-6.182196,55.267056],[-6.18448,55.269541],[-6.180933,55.272114],[-6.181993,55.27286],[-6.180784,55.273967],[-6.18095,55.274871],[-6.182356,55.275808],[-6.18168,55.277173],[-6.181922,55.279983],[-6.17979,55.281],[-6.179193,55.281796],[-6.176301,55.283331],[-6.178091,55.283682],[-6.177108,55.28593],[-6.178031,55.286972],[-6.176483,55.288981],[-6.176149,55.291272],[-6.173813,55.292212],[-6.174979,55.293478],[-6.174691,55.294222],[-6.172061,55.295127],[-6.170985,55.296452],[-6.169119,55.296841],[-6.16877,55.298355],[-6.170312,55.299461],[-6.170069,55.300721],[-6.170736,55.301563],[-6.173642,55.302053],[-6.17623,55.303449],[-6.177418,55.302856],[-6.179525,55.303372],[-6.181555,55.303318],[-6.190634,55.304237],[-6.194097,55.30564],[-6.195562,55.306584],[-6.199434,55.307231],[-6.20167,55.306897],[-6.202616,55.305664],[-6.206132,55.305973],[-6.210878,55.305892],[-6.212031,55.306299],[-6.219397,55.306248],[-6.224268,55.307731],[-6.226692,55.307824],[-6.228705,55.309068],[-6.230817,55.30909],[-6.234038,55.30994],[-6.238821,55.312423],[-6.239864,55.312543],[-6.240699,55.311474],[-6.243023,55.312886]]]]},"properties":{"LAD22CD":"N09000004","LAD22NM":"Causeway Coast and Glens","BNG_E":106168,"BNG_N":581420,"LONG":-6.5996,"LAT":55.03962,"GlobalID":"1130baa1-a5ae-4907-b8a1-538450acc007"},"id":313}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.147881,55.046731],[-7.148993,55.046659],[-7.14917,55.049486],[-7.148519,55.04991],[-7.148875,55.057334],[-7.150164,55.057092],[-7.156485,55.058858],[-7.162193,55.059734],[-7.184142,55.060953],[-7.215012,55.056887],[-7.215846,55.058819],[-7.224015,55.06084],[-7.226527,55.060946],[-7.228037,55.060262],[-7.230121,55.05865],[-7.235142,55.053736],[-7.235459,55.051237],[-7.233639,55.048218],[-7.244938,55.045949],[-7.252597,55.044176],[-7.255066,55.046206],[-7.25459,55.048477],[-7.255422,55.051984],[-7.254355,55.053263],[-7.25277,55.053482],[-7.252226,55.054708],[-7.251285,55.055029],[-7.246357,55.0635],[-7.251697,55.064312],[-7.252111,55.062717],[-7.252823,55.062233],[-7.256301,55.062535],[-7.257432,55.063539],[-7.256986,55.064787],[-7.257271,55.066484],[-7.262203,55.065865],[-7.264957,55.066678],[-7.267727,55.065969],[-7.268986,55.06494],[-7.270675,55.064206],[-7.2735,55.0635],[-7.274538,55.061996],[-7.274965,55.06021],[-7.27711,55.058207],[-7.276999,55.057347],[-7.278096,55.054343],[-7.286039,55.049089],[-7.289897,55.047447],[-7.295057,55.052298],[-7.300254,55.056129],[-7.3081,55.052447],[-7.31331,55.049495],[-7.315368,55.048029],[-7.316063,55.046281],[-7.317441,55.046114],[-7.319103,55.0451],[-7.32252,55.045174],[-7.326038,55.046374],[-7.3295,55.048552],[-7.334282,55.050161],[-7.340244,55.050811],[-7.345962,55.050841],[-7.347021,55.050508],[-7.34543,55.048825],[-7.348495,55.047942],[-7.349287,55.047089],[-7.351259,55.046554],[-7.356905,55.04576],[-7.358617,55.044686],[-7.359003,55.043339],[-7.361323,55.041448],[-7.36161,55.04061],[-7.363139,55.040221],[-7.364256,55.038238],[-7.367392,55.038596],[-7.368819,55.036738],[-7.371406,55.034229],[-7.372861,55.033531],[-7.373639,55.032162],[-7.374886,55.031579],[-7.377377,55.028698],[-7.386758,55.024286],[-7.392253,55.022354],[-7.392009,55.020215],[-7.395077,55.018648],[-7.397258,55.016429],[-7.397742,55.01426],[-7.397205,55.012724],[-7.399387,55.009074],[-7.400981,55.008206],[-7.403802,55.007289],[-7.40223,55.006757],[-7.406388,55.003319],[-7.404721,55.001535],[-7.399112,54.998776],[-7.394767,54.999505],[-7.392268,54.997855],[-7.392969,54.995924],[-7.392746,54.994709],[-7.397318,54.992794],[-7.39926,54.991275],[-7.400413,54.990843],[-7.402029,54.987914],[-7.401887,54.986982],[-7.402535,54.985569],[-7.404396,54.985138],[-7.404855,54.984141],[-7.406459,54.983867],[-7.407932,54.982617],[-7.405617,54.981136],[-7.404626,54.979562],[-7.406875,54.978069],[-7.405219,54.977116],[-7.404751,54.975675],[-7.403027,54.974465],[-7.403212,54.972953],[-7.401161,54.97221],[-7.402435,54.970678],[-7.40278,54.969014],[-7.40362,54.968411],[-7.40286,54.967446],[-7.408263,54.963671],[-7.403578,54.961166],[-7.402892,54.959591],[-7.408033,54.955231],[-7.407186,54.954131],[-7.404032,54.951962],[-7.403048,54.94974],[-7.399151,54.947374],[-7.39776,54.946079],[-7.392893,54.94545],[-7.403281,54.942469],[-7.406057,54.942195],[-7.408641,54.942397],[-7.410736,54.943019],[-7.415786,54.943477],[-7.419948,54.943168],[-7.423517,54.943395],[-7.425824,54.943227],[-7.435148,54.940858],[-7.443373,54.938011],[-7.446056,54.936806],[-7.448013,54.935222],[-7.449168,54.930843],[-7.448933,54.9238],[-7.448153,54.919074],[-7.44592,54.912845],[-7.446006,54.910985],[-7.447189,54.908729],[-7.452369,54.902475],[-7.453162,54.90042],[-7.4533,54.898427],[-7.452262,54.893201],[-7.447153,54.887029],[-7.445091,54.883863],[-7.444591,54.88131],[-7.442947,54.879406],[-7.442655,54.877059],[-7.443962,54.871244],[-7.445158,54.869373],[-7.450524,54.864303],[-7.456042,54.860082],[-7.457198,54.857304],[-7.456546,54.854795],[-7.457835,54.853591],[-7.461415,54.853934],[-7.46226,54.853395],[-7.461802,54.849822],[-7.464304,54.847614],[-7.466932,54.84415],[-7.468799,54.842434],[-7.470718,54.839709],[-7.470926,54.836228],[-7.471653,54.83492],[-7.474432,54.833509],[-7.481098,54.831841],[-7.482083,54.830949],[-7.482483,54.827425],[-7.484612,54.824034],[-7.494179,54.819566],[-7.49622,54.818831],[-7.500134,54.818143],[-7.501632,54.817611],[-7.507906,54.813642],[-7.51078,54.812749],[-7.51386,54.811286],[-7.518232,54.808258],[-7.523011,54.807652],[-7.529047,54.807728],[-7.529883,54.806738],[-7.530238,54.805051],[-7.528297,54.803482],[-7.529372,54.802518],[-7.531859,54.802207],[-7.535647,54.802302],[-7.539866,54.800884],[-7.542663,54.798697],[-7.542654,54.796162],[-7.5466,54.793649],[-7.547017,54.792492],[-7.550093,54.789391],[-7.548054,54.788072],[-7.546838,54.78813],[-7.545408,54.78678],[-7.545439,54.784842],[-7.544025,54.782507],[-7.545459,54.781739],[-7.543912,54.779691],[-7.545235,54.778883],[-7.545186,54.777826],[-7.548105,54.774988],[-7.548894,54.772694],[-7.547598,54.770818],[-7.547438,54.769062],[-7.5469,54.768427],[-7.54784,54.766345],[-7.547283,54.765762],[-7.547045,54.761871],[-7.548991,54.758698],[-7.548335,54.75539],[-7.543722,54.753156],[-7.541958,54.752839],[-7.539595,54.751463],[-7.538573,54.74985],[-7.536178,54.747496],[-7.538745,54.747297],[-7.544045,54.74369],[-7.544119,54.742717],[-7.546332,54.74228],[-7.549976,54.740529],[-7.553675,54.742375],[-7.554882,54.743809],[-7.558547,54.745314],[-7.562749,54.745015],[-7.564959,54.743979],[-7.57043,54.743905],[-7.579185,54.741795],[-7.579817,54.743561],[-7.57885,54.745566],[-7.576195,54.748826],[-7.577808,54.750315],[-7.582951,54.750477],[-7.587431,54.749908],[-7.589618,54.744841],[-7.589333,54.743738],[-7.592047,54.744179],[-7.594863,54.745133],[-7.601641,54.746027],[-7.60229,54.745567],[-7.606695,54.744249],[-7.608496,54.74406],[-7.612519,54.74437],[-7.618376,54.743403],[-7.620937,54.745464],[-7.637396,54.751542],[-7.647184,54.747273],[-7.652046,54.744518],[-7.657882,54.742247],[-7.66035,54.74171],[-7.663432,54.739882],[-7.664067,54.739852],[-7.672339,54.735891],[-7.673624,54.734684],[-7.677055,54.733126],[-7.678135,54.730937],[-7.688435,54.730075],[-7.698207,54.726377],[-7.697576,54.725492],[-7.697799,54.723814],[-7.702568,54.725645],[-7.705254,54.725767],[-7.706555,54.72544],[-7.712375,54.72614],[-7.714781,54.724708],[-7.727735,54.718783],[-7.736065,54.716958],[-7.736094,54.714616],[-7.740459,54.712914],[-7.741608,54.711815],[-7.742129,54.710306],[-7.743099,54.709626],[-7.743147,54.70837],[-7.743897,54.706911],[-7.745137,54.706334],[-7.745688,54.705246],[-7.747035,54.704469],[-7.750707,54.7043],[-7.751528,54.705069],[-7.753601,54.70523],[-7.755326,54.705895],[-7.754567,54.707542],[-7.757039,54.707592],[-7.758686,54.706762],[-7.760223,54.70669],[-7.763238,54.707818],[-7.766364,54.70816],[-7.770924,54.709137],[-7.773932,54.708867],[-7.77498,54.70964],[-7.778844,54.710432],[-7.778908,54.711459],[-7.77709,54.711926],[-7.777528,54.713118],[-7.778707,54.713311],[-7.778677,54.714369],[-7.77952,54.715901],[-7.7817,54.717324],[-7.785444,54.718226],[-7.786917,54.717987],[-7.787825,54.719002],[-7.789428,54.71966],[-7.792241,54.719261],[-7.795268,54.720043],[-7.799506,54.71907],[-7.801141,54.718396],[-7.802353,54.719278],[-7.805462,54.718696],[-7.808762,54.721133],[-7.807766,54.721824],[-7.808197,54.72266],[-7.810751,54.72309],[-7.811844,54.724129],[-7.812953,54.726356],[-7.815351,54.728499],[-7.817547,54.729155],[-7.817337,54.731887],[-7.818449,54.73385],[-7.820342,54.734047],[-7.820912,54.734865],[-7.822179,54.734896],[-7.825531,54.736013],[-7.827282,54.735465],[-7.830643,54.735564],[-7.83227,54.736202],[-7.833587,54.736053],[-7.837432,54.736468],[-7.838098,54.735468],[-7.839921,54.735218],[-7.840663,54.733949],[-7.842068,54.733536],[-7.845903,54.731556],[-7.847592,54.731247],[-7.847737,54.729986],[-7.848518,54.729368],[-7.852141,54.728656],[-7.853506,54.727776],[-7.855866,54.72691],[-7.876273,54.706777],[-7.877252,54.70623],[-7.877974,54.704719],[-7.879857,54.703598],[-7.880215,54.702713],[-7.882634,54.703001],[-7.883951,54.703846],[-7.887166,54.703895],[-7.888353,54.70345],[-7.89108,54.703491],[-7.893063,54.702505],[-7.89599,54.70044],[-7.898469,54.701587],[-7.900877,54.702022],[-7.901356,54.702512],[-7.904525,54.702036],[-7.90605,54.703216],[-7.907688,54.703662],[-7.908935,54.703249],[-7.909258,54.701549],[-7.911586,54.70101],[-7.917341,54.7022],[-7.918851,54.702761],[-7.921751,54.69601],[-7.921009,54.695489],[-7.918216,54.696149],[-7.91706,54.695205],[-7.913411,54.69436],[-7.91166,54.692982],[-7.910594,54.690381],[-7.908449,54.689214],[-7.900031,54.690876],[-7.900332,54.689516],[-7.898782,54.688014],[-7.899249,54.685036],[-7.903779,54.682867],[-7.904157,54.682076],[-7.906701,54.68126],[-7.908736,54.679444],[-7.909934,54.679165],[-7.914254,54.67631],[-7.914857,54.675372],[-7.913027,54.67455],[-7.911635,54.671322],[-7.911669,54.669714],[-7.910603,54.668228],[-7.908101,54.666176],[-7.906036,54.66633],[-7.904907,54.665399],[-7.905956,54.664367],[-7.9048,54.662765],[-7.901709,54.661554],[-7.900581,54.661584],[-7.899503,54.660575],[-7.898652,54.659023],[-7.897451,54.658237],[-7.894897,54.657557],[-7.894024,54.656573],[-7.892151,54.655964],[-7.890853,54.656558],[-7.887957,54.65707],[-7.88417,54.656114],[-7.882506,54.6552],[-7.880677,54.655986],[-7.878062,54.655763],[-7.873013,54.654115],[-7.871916,54.653229],[-7.868702,54.653097],[-7.867475,54.652474],[-7.866061,54.65266],[-7.865208,54.651481],[-7.863856,54.651904],[-7.861835,54.651098],[-7.857336,54.650526],[-7.856516,54.647193],[-7.856876,54.645319],[-7.855324,54.644168],[-7.854735,54.642742],[-7.855635,54.641419],[-7.857359,54.640654],[-7.857884,54.639038],[-7.85745,54.638386],[-7.855687,54.637875],[-7.853994,54.636916],[-7.851577,54.636269],[-7.851558,54.634744],[-7.853483,54.634823],[-7.853019,54.633353],[-7.855002,54.633023],[-7.85548,54.63215],[-7.852175,54.630727],[-7.847769,54.632308],[-7.846771,54.63237],[-7.845663,54.633611],[-7.843295,54.634039],[-7.841203,54.633481],[-7.83998,54.634175],[-7.837026,54.633903],[-7.834809,54.634093],[-7.834587,54.633364],[-7.831886,54.633569],[-7.829085,54.633094],[-7.826919,54.63463],[-7.823651,54.63587],[-7.819186,54.640569],[-7.816445,54.64063],[-7.817159,54.64166],[-7.814715,54.642804],[-7.813811,54.641908],[-7.814746,54.641435],[-7.810926,54.640568],[-7.809037,54.63965],[-7.807222,54.637387],[-7.806192,54.637033],[-7.805706,54.634992],[-7.802018,54.633482],[-7.798546,54.633341],[-7.796768,54.633509],[-7.79561,54.63281],[-7.791272,54.633615],[-7.788819,54.632965],[-7.78444,54.633378],[-7.780255,54.63017],[-7.77957,54.628909],[-7.780068,54.627587],[-7.779078,54.626859],[-7.777765,54.626838],[-7.775621,54.625139],[-7.772499,54.621463],[-7.76671,54.623076],[-7.765132,54.62302],[-7.758641,54.62508],[-7.757955,54.624712],[-7.757355,54.623187],[-7.757698,54.621991],[-7.7549,54.620596],[-7.754808,54.619125],[-7.750017,54.619499],[-7.748674,54.619187],[-7.744152,54.620321],[-7.742358,54.618002],[-7.739276,54.618935],[-7.739424,54.620458],[-7.738608,54.622812],[-7.729694,54.625624],[-7.725782,54.627651],[-7.72206,54.627733],[-7.720215,54.628141],[-7.71898,54.628995],[-7.717225,54.628907],[-7.713407,54.630686],[-7.712528,54.631393],[-7.71045,54.634851],[-7.708508,54.634756],[-7.706771,54.633633],[-7.705421,54.63208],[-7.705758,54.630958],[-7.704908,54.629971],[-7.70418,54.627485],[-7.704951,54.625074],[-7.704583,54.62469],[-7.706114,54.623383],[-7.707164,54.619638],[-7.703998,54.6186],[-7.699587,54.618511],[-7.697421,54.619038],[-7.694253,54.619168],[-7.695853,54.618069],[-7.69514,54.616916],[-7.695006,54.613682],[-7.696626,54.612737],[-7.696569,54.61202],[-7.698326,54.610701],[-7.69861,54.609976],[-7.701119,54.610485],[-7.703899,54.609253],[-7.70425,54.608517],[-7.701937,54.609146],[-7.700445,54.607641],[-7.696613,54.608059],[-7.692094,54.610587],[-7.686937,54.613931],[-7.684553,54.614193],[-7.68263,54.61499],[-7.678973,54.61526],[-7.679416,54.615831],[-7.677319,54.617395],[-7.677404,54.619107],[-7.6759,54.619557],[-7.675289,54.620362],[-7.670788,54.620147],[-7.668695,54.620932],[-7.666176,54.621057],[-7.664846,54.621645],[-7.663845,54.623639],[-7.660548,54.625241],[-7.658438,54.625895],[-7.658335,54.626734],[-7.656035,54.626949],[-7.653603,54.626543],[-7.651228,54.627809],[-7.649763,54.627945],[-7.648473,54.627136],[-7.643647,54.626436],[-7.642801,54.626557],[-7.640637,54.62559],[-7.637735,54.627017],[-7.634258,54.627967],[-7.632611,54.628005],[-7.631494,54.627404],[-7.627557,54.627833],[-7.621586,54.626917],[-7.617845,54.625128],[-7.617222,54.626729],[-7.619285,54.629806],[-7.617285,54.631484],[-7.616103,54.632943],[-7.612401,54.632286],[-7.603796,54.632918],[-7.597026,54.634848],[-7.587598,54.634507],[-7.584584,54.633708],[-7.58085,54.633345],[-7.579464,54.63272],[-7.578073,54.631052],[-7.576584,54.630578],[-7.575536,54.62969],[-7.573686,54.629697],[-7.57552,54.630991],[-7.575538,54.632143],[-7.576571,54.63336],[-7.57531,54.635475],[-7.576846,54.636555],[-7.575382,54.64024],[-7.568133,54.644485],[-7.567447,54.645344],[-7.562469,54.647419],[-7.560563,54.647068],[-7.557086,54.6474],[-7.555895,54.646895],[-7.551103,54.647282],[-7.551597,54.643544],[-7.553832,54.640602],[-7.55303,54.639306],[-7.551292,54.638698],[-7.544486,54.640218],[-7.533788,54.641752],[-7.531678,54.644992],[-7.526141,54.64582],[-7.521949,54.647475],[-7.52009,54.648964],[-7.516709,54.648532],[-7.514895,54.649891],[-7.511183,54.65386],[-7.507738,54.651749],[-7.506416,54.651587],[-7.502449,54.652191],[-7.497645,54.649977],[-7.495388,54.649349],[-7.493619,54.649552],[-7.492312,54.650536],[-7.491863,54.651577],[-7.489925,54.653051],[-7.488121,54.653764],[-7.484879,54.654209],[-7.482295,54.653823],[-7.48081,54.653141],[-7.480296,54.652082],[-7.480954,54.650229],[-7.479613,54.648096],[-7.475664,54.647398],[-7.472848,54.645967],[-7.469469,54.645595],[-7.466185,54.644926],[-7.465898,54.644455],[-7.46292,54.645108],[-7.461185,54.644764],[-7.46106,54.643702],[-7.45887,54.641934],[-7.454053,54.641139],[-7.451412,54.640404],[-7.448601,54.641049],[-7.448231,54.642664],[-7.449639,54.644204],[-7.446905,54.64512],[-7.444904,54.644992],[-7.443604,54.646107],[-7.441261,54.647135],[-7.441062,54.648116],[-7.443602,54.650077],[-7.440504,54.656145],[-7.439778,54.656877],[-7.433275,54.660691],[-7.427362,54.665954],[-7.426352,54.667354],[-7.422307,54.666902],[-7.416219,54.668696],[-7.412668,54.672884],[-7.404948,54.679532],[-7.402342,54.682376],[-7.39707,54.68403],[-7.396343,54.685263],[-7.396698,54.686298],[-7.396397,54.688218],[-7.395408,54.690099],[-7.392517,54.693141],[-7.384123,54.696505],[-7.378164,54.698046],[-7.364607,54.699846],[-7.360144,54.700804],[-7.357052,54.701073],[-7.355856,54.700682],[-7.354082,54.701124],[-7.354749,54.703392],[-7.357288,54.706521],[-7.353807,54.706793],[-7.351716,54.707676],[-7.349307,54.707642],[-7.348521,54.708722],[-7.34611,54.709869],[-7.341942,54.710157],[-7.33815,54.711884],[-7.336371,54.713372],[-7.333108,54.714103],[-7.327425,54.714082],[-7.320089,54.713369],[-7.318608,54.717658],[-7.31948,54.724582],[-7.31819,54.726059],[-7.316315,54.727016],[-7.3163,54.729131],[-7.315863,54.729643],[-7.318571,54.731328],[-7.321368,54.732095],[-7.320362,54.733741],[-7.318125,54.734875],[-7.31453,54.735063],[-7.307198,54.738368],[-7.304119,54.738634],[-7.300592,54.738075],[-7.297131,54.738988],[-7.289189,54.739572],[-7.284481,54.740603],[-7.281291,54.738817],[-7.275969,54.737834],[-7.273392,54.737794],[-7.271638,54.737156],[-7.271295,54.736184],[-7.273675,54.732474],[-7.271983,54.730799],[-7.270405,54.730972],[-7.267326,54.732105],[-7.263094,54.731462],[-7.261791,54.731008],[-7.260173,54.733246],[-7.260806,54.734669],[-7.258863,54.73616],[-7.258637,54.736973],[-7.256511,54.737664],[-7.254424,54.737906],[-7.253435,54.740285],[-7.253793,54.741591],[-7.251312,54.743051],[-7.249437,54.743547],[-7.243375,54.74717],[-7.238328,54.749596],[-7.237648,54.749546],[-7.234168,54.750628],[-7.227318,54.751998],[-7.224291,54.752206],[-7.219542,54.751889],[-7.217137,54.752133],[-7.214053,54.752978],[-7.208184,54.753651],[-7.200576,54.752692],[-7.191873,54.75079],[-7.179867,54.750475],[-7.171628,54.750608],[-7.168602,54.75007],[-7.151089,54.749886],[-7.144104,54.751376],[-7.142295,54.751294],[-7.139101,54.751787],[-7.135442,54.7519],[-7.127687,54.751274],[-7.124311,54.751398],[-7.118131,54.749424],[-7.116525,54.751118],[-7.112202,54.753973],[-7.108464,54.754275],[-7.104806,54.754982],[-7.096177,54.7602],[-7.086956,54.76215],[-7.086389,54.762987],[-7.081578,54.765832],[-7.063497,54.766376],[-7.057069,54.767926],[-7.052342,54.768425],[-7.048135,54.769553],[-7.045767,54.76962],[-7.039983,54.770481],[-7.034823,54.771858],[-7.032721,54.770776],[-7.013371,54.776802],[-7.00625,54.779896],[-6.981019,54.780542],[-6.97915,54.779914],[-6.97003,54.772768],[-6.967425,54.772384],[-6.958898,54.773288],[-6.952326,54.77229],[-6.95004,54.773108],[-6.945396,54.774078],[-6.940873,54.773633],[-6.92855,54.772829],[-6.922964,54.773168],[-6.920672,54.775116],[-6.9173,54.776196],[-6.913042,54.776941],[-6.911161,54.777815],[-6.904282,54.783289],[-6.903024,54.786531],[-6.906707,54.791289],[-6.916527,54.798613],[-6.918494,54.799869],[-6.922534,54.801595],[-6.923294,54.802586],[-6.922319,54.804678],[-6.917111,54.807701],[-6.915533,54.811065],[-6.912688,54.813476],[-6.91201,54.816906],[-6.912936,54.820418],[-6.914674,54.82031],[-6.920244,54.821117],[-6.921261,54.821673],[-6.922918,54.823604],[-6.925663,54.823889],[-6.927582,54.825051],[-6.932013,54.826464],[-6.935413,54.82956],[-6.935901,54.830751],[-6.940775,54.831649],[-6.947102,54.833784],[-6.948293,54.833592],[-6.953919,54.830597],[-6.961609,54.83059],[-6.96577,54.831086],[-6.97056,54.828798],[-6.97269,54.828238],[-6.975329,54.828698],[-6.980032,54.830073],[-6.988243,54.833024],[-6.990352,54.830132],[-6.994017,54.829594],[-6.996305,54.827819],[-6.996168,54.826862],[-6.99696,54.825709],[-7.005068,54.820809],[-7.007785,54.820951],[-7.009042,54.822383],[-7.008836,54.82613],[-7.012683,54.828514],[-7.013417,54.829718],[-7.01478,54.830904],[-7.01572,54.83246],[-7.015013,54.833147],[-7.016143,54.835305],[-7.017449,54.836256],[-7.020101,54.836897],[-7.021096,54.83758],[-7.022647,54.837588],[-7.024195,54.838489],[-7.027206,54.839065],[-7.029586,54.841273],[-7.032199,54.842132],[-7.032473,54.842719],[-7.034502,54.844109],[-7.036871,54.844307],[-7.037575,54.844895],[-7.039696,54.845532],[-7.035519,54.850752],[-7.034161,54.854195],[-7.033709,54.857119],[-7.035285,54.857503],[-7.035798,54.864209],[-7.038745,54.866313],[-7.039884,54.866522],[-7.040054,54.867452],[-7.038019,54.868164],[-7.036417,54.869567],[-7.034614,54.870035],[-7.036445,54.871996],[-7.036966,54.873571],[-7.034865,54.874634],[-7.033165,54.87624],[-7.0317,54.878398],[-7.028997,54.881057],[-7.028809,54.882716],[-7.026016,54.883095],[-7.021869,54.885045],[-7.020158,54.886993],[-7.023371,54.886991],[-7.027566,54.888479],[-7.029928,54.888976],[-7.03547,54.888457],[-7.03652,54.890019],[-7.03611,54.89246],[-7.037203,54.893976],[-7.036393,54.894919],[-7.036266,54.904753],[-7.037026,54.906323],[-7.044459,54.913988],[-7.045731,54.914705],[-7.051079,54.915516],[-7.053094,54.916239],[-7.055468,54.916542],[-7.059144,54.916514],[-7.060887,54.916773],[-7.062406,54.917659],[-7.060683,54.919187],[-7.059719,54.922534],[-7.063106,54.922216],[-7.066457,54.922965],[-7.070419,54.922712],[-7.074452,54.923882],[-7.074413,54.925036],[-7.078945,54.926337],[-7.08152,54.926655],[-7.083267,54.927582],[-7.08524,54.927835],[-7.086888,54.927347],[-7.088488,54.927471],[-7.087523,54.929648],[-7.086933,54.932965],[-7.08438,54.937197],[-7.087946,54.944526],[-7.090564,54.945656],[-7.092075,54.947157],[-7.090838,54.94818],[-7.090945,54.950782],[-7.089842,54.952863],[-7.090892,54.955947],[-7.090584,54.957402],[-7.093189,54.959129],[-7.09366,54.962372],[-7.092253,54.96441],[-7.09234,54.965674],[-7.089794,54.970608],[-7.083584,54.97468],[-7.082008,54.977688],[-7.081882,54.985831],[-7.088681,54.987684],[-7.095014,54.985585],[-7.095103,54.986123],[-7.108674,54.989459],[-7.118434,54.988219],[-7.120722,54.986764],[-7.125515,54.985105],[-7.127495,54.985289],[-7.128062,54.987393],[-7.1302,54.989986],[-7.130758,54.991404],[-7.129269,54.993449],[-7.130261,54.995163],[-7.128947,54.996366],[-7.129361,54.998348],[-7.1341,55.00507],[-7.135539,55.003996],[-7.141275,55.008063],[-7.14224,55.009193],[-7.144274,55.013052],[-7.144259,55.014666],[-7.145278,55.017444],[-7.146674,55.01931],[-7.14886,55.020828],[-7.152356,55.022463],[-7.156466,55.025273],[-7.155893,55.026895],[-7.15643,55.027851],[-7.157677,55.028433],[-7.158306,55.029402],[-7.159577,55.030044],[-7.161076,55.030125],[-7.166722,55.033965],[-7.161216,55.035167],[-7.158372,55.035262],[-7.157708,55.03675],[-7.148721,55.044439],[-7.147881,55.046731]]]},"properties":{"LAD22CD":"N09000005","LAD22NM":"Derry City and Strabane","BNG_E":51779,"BNG_N":559566,"LONG":-7.42064,"LAT":54.80904,"GlobalID":"fcd7207e-3a8e-497d-bab8-3a542117508e"},"id":314}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.940873,54.773633],[-6.945396,54.774078],[-6.95004,54.773108],[-6.952326,54.77229],[-6.958898,54.773288],[-6.967425,54.772384],[-6.97003,54.772768],[-6.97915,54.779914],[-6.981019,54.780542],[-7.00625,54.779896],[-7.013371,54.776802],[-7.032721,54.770776],[-7.034823,54.771858],[-7.039983,54.770481],[-7.045767,54.76962],[-7.048135,54.769553],[-7.052342,54.768425],[-7.057069,54.767926],[-7.063497,54.766376],[-7.081578,54.765832],[-7.086389,54.762987],[-7.086956,54.76215],[-7.096177,54.7602],[-7.104806,54.754982],[-7.108464,54.754275],[-7.112202,54.753973],[-7.116525,54.751118],[-7.118131,54.749424],[-7.124311,54.751398],[-7.127687,54.751274],[-7.135442,54.7519],[-7.139101,54.751787],[-7.142295,54.751294],[-7.144104,54.751376],[-7.151089,54.749886],[-7.168602,54.75007],[-7.171628,54.750608],[-7.179867,54.750475],[-7.191873,54.75079],[-7.200576,54.752692],[-7.208184,54.753651],[-7.214053,54.752978],[-7.217137,54.752133],[-7.219542,54.751889],[-7.224291,54.752206],[-7.227318,54.751998],[-7.234168,54.750628],[-7.237648,54.749546],[-7.238328,54.749596],[-7.243375,54.74717],[-7.249437,54.743547],[-7.251312,54.743051],[-7.253793,54.741591],[-7.253435,54.740285],[-7.254424,54.737906],[-7.256511,54.737664],[-7.258637,54.736973],[-7.258863,54.73616],[-7.260806,54.734669],[-7.260173,54.733246],[-7.261791,54.731008],[-7.263094,54.731462],[-7.267326,54.732105],[-7.270405,54.730972],[-7.271983,54.730799],[-7.273675,54.732474],[-7.271295,54.736184],[-7.271638,54.737156],[-7.273392,54.737794],[-7.275969,54.737834],[-7.281291,54.738817],[-7.284481,54.740603],[-7.289189,54.739572],[-7.297131,54.738988],[-7.300592,54.738075],[-7.304119,54.738634],[-7.307198,54.738368],[-7.31453,54.735063],[-7.318125,54.734875],[-7.320362,54.733741],[-7.321368,54.732095],[-7.318571,54.731328],[-7.315863,54.729643],[-7.3163,54.729131],[-7.316315,54.727016],[-7.31819,54.726059],[-7.31948,54.724582],[-7.318608,54.717658],[-7.320089,54.713369],[-7.327425,54.714082],[-7.333108,54.714103],[-7.336371,54.713372],[-7.33815,54.711884],[-7.341942,54.710157],[-7.34611,54.709869],[-7.348521,54.708722],[-7.349307,54.707642],[-7.351716,54.707676],[-7.353807,54.706793],[-7.357288,54.706521],[-7.354749,54.703392],[-7.354082,54.701124],[-7.355856,54.700682],[-7.357052,54.701073],[-7.360144,54.700804],[-7.364607,54.699846],[-7.378164,54.698046],[-7.384123,54.696505],[-7.392517,54.693141],[-7.395408,54.690099],[-7.396397,54.688218],[-7.396698,54.686298],[-7.396343,54.685263],[-7.39707,54.68403],[-7.402342,54.682376],[-7.404948,54.679532],[-7.412668,54.672884],[-7.416219,54.668696],[-7.422307,54.666902],[-7.426352,54.667354],[-7.427362,54.665954],[-7.433275,54.660691],[-7.439778,54.656877],[-7.440504,54.656145],[-7.443602,54.650077],[-7.441062,54.648116],[-7.441261,54.647135],[-7.443604,54.646107],[-7.444904,54.644992],[-7.446905,54.64512],[-7.449639,54.644204],[-7.448231,54.642664],[-7.448601,54.641049],[-7.451412,54.640404],[-7.454053,54.641139],[-7.45887,54.641934],[-7.46106,54.643702],[-7.461185,54.644764],[-7.46292,54.645108],[-7.465898,54.644455],[-7.466185,54.644926],[-7.469469,54.645595],[-7.472848,54.645967],[-7.475664,54.647398],[-7.479613,54.648096],[-7.480954,54.650229],[-7.480296,54.652082],[-7.48081,54.653141],[-7.482295,54.653823],[-7.484879,54.654209],[-7.488121,54.653764],[-7.489925,54.653051],[-7.491863,54.651577],[-7.492312,54.650536],[-7.493619,54.649552],[-7.495388,54.649349],[-7.497645,54.649977],[-7.502449,54.652191],[-7.506416,54.651587],[-7.507738,54.651749],[-7.511183,54.65386],[-7.514895,54.649891],[-7.516709,54.648532],[-7.52009,54.648964],[-7.521949,54.647475],[-7.526141,54.64582],[-7.531678,54.644992],[-7.533788,54.641752],[-7.544486,54.640218],[-7.551292,54.638698],[-7.55303,54.639306],[-7.553832,54.640602],[-7.551597,54.643544],[-7.551103,54.647282],[-7.555895,54.646895],[-7.557086,54.6474],[-7.560563,54.647068],[-7.562469,54.647419],[-7.567447,54.645344],[-7.568133,54.644485],[-7.575382,54.64024],[-7.576846,54.636555],[-7.57531,54.635475],[-7.576571,54.63336],[-7.575538,54.632143],[-7.57552,54.630991],[-7.573686,54.629697],[-7.575536,54.62969],[-7.576584,54.630578],[-7.578073,54.631052],[-7.579464,54.63272],[-7.58085,54.633345],[-7.584584,54.633708],[-7.587598,54.634507],[-7.597026,54.634848],[-7.603796,54.632918],[-7.612401,54.632286],[-7.616103,54.632943],[-7.617285,54.631484],[-7.619285,54.629806],[-7.617222,54.626729],[-7.617845,54.625128],[-7.621586,54.626917],[-7.627557,54.627833],[-7.631494,54.627404],[-7.632611,54.628005],[-7.634258,54.627967],[-7.637735,54.627017],[-7.640637,54.62559],[-7.642801,54.626557],[-7.643647,54.626436],[-7.648473,54.627136],[-7.649763,54.627945],[-7.651228,54.627809],[-7.653603,54.626543],[-7.656035,54.626949],[-7.658335,54.626734],[-7.658438,54.625895],[-7.660548,54.625241],[-7.663845,54.623639],[-7.664846,54.621645],[-7.666176,54.621057],[-7.668695,54.620932],[-7.670788,54.620147],[-7.675289,54.620362],[-7.6759,54.619557],[-7.677404,54.619107],[-7.677319,54.617395],[-7.679416,54.615831],[-7.678973,54.61526],[-7.68263,54.61499],[-7.684553,54.614193],[-7.686937,54.613931],[-7.692094,54.610587],[-7.696613,54.608059],[-7.700445,54.607641],[-7.701937,54.609146],[-7.70425,54.608517],[-7.706239,54.607366],[-7.709248,54.606728],[-7.714267,54.606286],[-7.718418,54.606395],[-7.718812,54.605785],[-7.722429,54.604981],[-7.72439,54.604253],[-7.728011,54.603563],[-7.731982,54.602207],[-7.73674,54.601724],[-7.737172,54.600696],[-7.738978,54.600501],[-7.741781,54.599471],[-7.742363,54.599687],[-7.745245,54.599054],[-7.745353,54.59997],[-7.749667,54.599544],[-7.750355,54.598612],[-7.752237,54.598857],[-7.753331,54.597717],[-7.755423,54.597116],[-7.756161,54.596112],[-7.758755,54.595367],[-7.76112,54.594248],[-7.76077,54.593494],[-7.763854,54.590118],[-7.76265,54.588714],[-7.759696,54.587643],[-7.763054,54.585928],[-7.765067,54.585706],[-7.767486,54.586229],[-7.775844,54.583271],[-7.778157,54.5832],[-7.779315,54.582475],[-7.781407,54.582234],[-7.787845,54.580269],[-7.792156,54.580935],[-7.792295,54.581798],[-7.793925,54.581998],[-7.797744,54.579717],[-7.796177,54.578401],[-7.798132,54.577097],[-7.799339,54.578007],[-7.800324,54.576656],[-7.799654,54.575442],[-7.799583,54.573999],[-7.798054,54.573294],[-7.797347,54.571685],[-7.800684,54.570453],[-7.801628,54.568644],[-7.805784,54.567168],[-7.806324,54.566118],[-7.808237,54.566181],[-7.809495,54.566723],[-7.81189,54.565499],[-7.812329,54.564263],[-7.81871,54.563433],[-7.820524,54.561928],[-7.822891,54.560624],[-7.82263,54.559752],[-7.824077,54.558386],[-7.82646,54.557174],[-7.828529,54.556731],[-7.829402,54.555953],[-7.829581,54.554508],[-7.830442,54.554407],[-7.833994,54.552405],[-7.833069,54.55021],[-7.831753,54.549224],[-7.824863,54.546567],[-7.824662,54.544468],[-7.828991,54.543026],[-7.830691,54.540869],[-7.840618,54.538696],[-7.843236,54.537297],[-7.844968,54.537462],[-7.847118,54.535834],[-7.848894,54.535187],[-7.851261,54.533068],[-7.852533,54.533513],[-7.8533,54.534602],[-7.857316,54.536599],[-7.858866,54.536674],[-7.865207,54.535616],[-7.866824,54.535041],[-7.870192,54.534634],[-7.870774,54.535436],[-7.872381,54.5353],[-7.877152,54.535843],[-7.879694,54.535765],[-7.881618,54.535043],[-7.883341,54.536384],[-7.886247,54.536896],[-7.887043,54.536213],[-7.890679,54.536849],[-7.893067,54.536451],[-7.89382,54.53524],[-7.895409,54.53507],[-7.899492,54.535755],[-7.900034,54.536142],[-7.902511,54.536062],[-7.908368,54.537618],[-7.913733,54.535979],[-7.920284,54.536843],[-7.922914,54.536194],[-7.925423,54.53484],[-7.934794,54.533883],[-7.938298,54.53315],[-7.941187,54.533789],[-7.943652,54.535701],[-7.945044,54.536102],[-7.947572,54.535489],[-7.95046,54.533709],[-7.954284,54.534353],[-7.957136,54.537083],[-7.957777,54.53821],[-7.960311,54.538247],[-7.959353,54.539486],[-7.960913,54.540839],[-7.965399,54.543034],[-7.969629,54.544156],[-7.970497,54.546893],[-7.973484,54.547351],[-7.978499,54.545368],[-7.992145,54.543133],[-8.006694,54.546003],[-8.008698,54.542848],[-8.01356,54.537912],[-8.013867,54.536547],[-8.014945,54.535876],[-8.014593,54.535178],[-8.01288,54.534201],[-8.013583,54.533219],[-8.015321,54.5323],[-8.017963,54.53204],[-8.018202,54.529762],[-8.021443,54.528098],[-8.021856,54.527016],[-8.023413,54.526522],[-8.024454,54.524648],[-8.026803,54.522121],[-8.029819,54.520912],[-8.030192,54.519556],[-8.032123,54.51829],[-8.032438,54.517397],[-8.033772,54.516477],[-8.034747,54.514398],[-8.03629,54.514036],[-8.037219,54.513293],[-8.037126,54.512454],[-8.040583,54.509458],[-8.041079,54.508188],[-8.040189,54.507377],[-8.04248,54.506558],[-8.042527,54.505727],[-8.040945,54.504202],[-8.039233,54.503256],[-8.043717,54.489229],[-8.043331,54.487791],[-8.046193,54.487782],[-8.048284,54.488158],[-8.052291,54.487785],[-8.053436,54.487969],[-8.056425,54.487236],[-8.057947,54.487374],[-8.065851,54.48672],[-8.077486,54.487284],[-8.077358,54.488],[-8.079242,54.488333],[-8.081589,54.488079],[-8.08135,54.487101],[-8.086347,54.487589],[-8.089756,54.487157],[-8.089781,54.486554],[-8.099331,54.484281],[-8.098822,54.483346],[-8.096464,54.48245],[-8.096191,54.481531],[-8.097743,54.480726],[-8.097938,54.479508],[-8.095059,54.479578],[-8.094459,54.478624],[-8.091832,54.476415],[-8.097126,54.476885],[-8.098699,54.477364],[-8.100873,54.47711],[-8.104106,54.477232],[-8.105319,54.476286],[-8.113898,54.476448],[-8.115341,54.475346],[-8.114696,54.474152],[-8.116104,54.473015],[-8.114162,54.472207],[-8.112212,54.470362],[-8.113598,54.470145],[-8.115465,54.469127],[-8.127044,54.469073],[-8.149334,54.469991],[-8.154149,54.469541],[-8.165447,54.469132],[-8.174528,54.467362],[-8.175429,54.46624],[-8.178196,54.464845],[-8.170804,54.464621],[-8.170432,54.46379],[-8.171134,54.46276],[-8.170136,54.460641],[-8.168217,54.459364],[-8.166052,54.458858],[-8.165534,54.458328],[-8.162857,54.457858],[-8.150032,54.454056],[-8.145511,54.452269],[-8.143508,54.450731],[-8.144131,54.45014],[-8.14705,54.449011],[-8.14662,54.447522],[-8.149083,54.446406],[-8.150936,54.444659],[-8.154562,54.444472],[-8.156919,54.444781],[-8.161344,54.443986],[-8.162596,54.442072],[-8.159444,54.439048],[-8.154333,54.43708],[-8.098379,54.406676],[-8.09621,54.403895],[-8.094361,54.403521],[-8.091242,54.40154],[-8.091408,54.400986],[-8.090138,54.39965],[-8.088317,54.398558],[-8.086062,54.398233],[-8.084858,54.397475],[-8.084102,54.395983],[-8.084179,54.394744],[-8.079293,54.39214],[-8.078175,54.390278],[-8.077001,54.389946],[-8.075378,54.387758],[-8.074391,54.384869],[-8.07137,54.383526],[-8.068606,54.380752],[-8.06838,54.379347],[-8.066068,54.377284],[-8.065111,54.375325],[-8.064263,54.374893],[-8.065059,54.373534],[-8.062105,54.372666],[-8.061037,54.371732],[-8.058986,54.371148],[-8.06006,54.369927],[-8.058029,54.370009],[-8.05704,54.368191],[-8.059012,54.367916],[-8.0594,54.367382],[-8.058118,54.365824],[-8.05594,54.366018],[-8.053889,54.365844],[-8.052709,54.366595],[-8.050268,54.366073],[-8.049393,54.364932],[-8.048384,54.364531],[-8.047805,54.362793],[-8.044456,54.363038],[-8.040177,54.362715],[-8.037726,54.359371],[-8.035173,54.357737],[-8.03208,54.356766],[-8.029999,54.357596],[-8.026522,54.359993],[-8.023179,54.359106],[-8.021416,54.357256],[-8.019028,54.356787],[-8.017413,54.357572],[-8.013403,54.358196],[-8.013323,54.358692],[-8.011333,54.360187],[-8.00846,54.361307],[-8.005671,54.36057],[-8.001099,54.358233],[-7.998198,54.355759],[-7.999656,54.3544],[-8.002011,54.350663],[-8.000234,54.347243],[-7.997527,54.346217],[-7.996234,54.346356],[-7.992233,54.345971],[-7.990755,54.345034],[-7.988897,54.345213],[-7.987185,54.344279],[-7.986236,54.341993],[-7.983588,54.339888],[-7.983936,54.339457],[-7.983378,54.336293],[-7.98118,54.334853],[-7.972974,54.330891],[-7.964118,54.320532],[-7.962389,54.312524],[-7.946959,54.304488],[-7.931085,54.303409],[-7.926726,54.304594],[-7.919247,54.303219],[-7.915771,54.297162],[-7.911633,54.296092],[-7.90655,54.296726],[-7.902246,54.30152],[-7.888934,54.300633],[-7.885997,54.29743],[-7.88453,54.296808],[-7.88519,54.296044],[-7.884895,54.294893],[-7.883007,54.294077],[-7.88187,54.292043],[-7.880211,54.292889],[-7.877031,54.29344],[-7.87539,54.294732],[-7.870993,54.29377],[-7.862637,54.293579],[-7.864269,54.289757],[-7.866278,54.288599],[-7.86841,54.288859],[-7.871466,54.288336],[-7.871495,54.284639],[-7.870901,54.283826],[-7.87242,54.283321],[-7.872444,54.282019],[-7.873515,54.281244],[-7.873905,54.279143],[-7.872039,54.27858],[-7.871535,54.277647],[-7.872379,54.2772],[-7.872476,54.275321],[-7.873203,54.274156],[-7.873005,54.271775],[-7.873494,54.270038],[-7.872456,54.268047],[-7.873554,54.266304],[-7.867395,54.262773],[-7.866549,54.260993],[-7.865787,54.260409],[-7.861217,54.260357],[-7.861965,54.259045],[-7.862356,54.256036],[-7.862954,54.255309],[-7.861888,54.254561],[-7.862827,54.252742],[-7.85965,54.243157],[-7.860226,54.239891],[-7.860547,54.231618],[-7.860075,54.231225],[-7.860813,54.229705],[-7.859133,54.225927],[-7.858244,54.224883],[-7.856712,54.223976],[-7.856117,54.222794],[-7.857074,54.221374],[-7.862264,54.218584],[-7.860995,54.217655],[-7.852055,54.21468],[-7.840134,54.209797],[-7.820526,54.203823],[-7.812231,54.200991],[-7.804435,54.207119],[-7.793158,54.207505],[-7.790642,54.207311],[-7.789703,54.207557],[-7.787518,54.207169],[-7.785826,54.207564],[-7.783132,54.207515],[-7.782361,54.208613],[-7.781298,54.208821],[-7.777884,54.208506],[-7.776067,54.208666],[-7.773279,54.20727],[-7.771248,54.207436],[-7.769915,54.208979],[-7.76862,54.208706],[-7.769417,54.207536],[-7.763031,54.207595],[-7.762009,54.208398],[-7.759648,54.208552],[-7.758158,54.209261],[-7.75506,54.20995],[-7.74913,54.209544],[-7.747289,54.206081],[-7.745309,54.204462],[-7.739962,54.203627],[-7.732041,54.204915],[-7.72924,54.204727],[-7.728047,54.204075],[-7.726501,54.204153],[-7.723949,54.203525],[-7.720882,54.204203],[-7.717331,54.204533],[-7.714756,54.204286],[-7.711358,54.203238],[-7.702794,54.207898],[-7.700343,54.20664],[-7.696797,54.205672],[-7.695202,54.204373],[-7.692904,54.203968],[-7.689981,54.207118],[-7.688402,54.207795],[-7.686196,54.207864],[-7.685774,54.206916],[-7.687254,54.206786],[-7.689318,54.203689],[-7.689007,54.201886],[-7.687963,54.200453],[-7.689239,54.199716],[-7.688699,54.198605],[-7.685053,54.197862],[-7.684529,54.197009],[-7.686097,54.193563],[-7.684287,54.193467],[-7.683404,54.194097],[-7.68122,54.193444],[-7.679877,54.191992],[-7.679781,54.190872],[-7.680727,54.189375],[-7.679659,54.188303],[-7.680398,54.187599],[-7.678768,54.186632],[-7.67893,54.185268],[-7.678312,54.184725],[-7.678241,54.183331],[-7.677361,54.182116],[-7.674472,54.181246],[-7.672784,54.181584],[-7.67026,54.183728],[-7.669383,54.183923],[-7.66803,54.186725],[-7.665286,54.188061],[-7.661345,54.187128],[-7.658338,54.18594],[-7.656901,54.185771],[-7.656471,54.184085],[-7.655599,54.183887],[-7.654529,54.182282],[-7.652088,54.180961],[-7.650602,54.180666],[-7.649194,54.178888],[-7.646256,54.177234],[-7.646404,54.176083],[-7.636447,54.171932],[-7.630449,54.170262],[-7.628841,54.168887],[-7.628936,54.167676],[-7.627466,54.167031],[-7.626084,54.165541],[-7.627371,54.161187],[-7.626003,54.160655],[-7.626584,54.15792],[-7.626066,54.153379],[-7.612177,54.147319],[-7.61016,54.145615],[-7.611191,54.14391],[-7.607661,54.142833],[-7.601184,54.142472],[-7.592803,54.139998],[-7.587801,54.141533],[-7.585125,54.14173],[-7.583857,54.1426],[-7.583077,54.14178],[-7.580175,54.14112],[-7.577018,54.14175],[-7.574473,54.14114],[-7.574658,54.139903],[-7.576158,54.137923],[-7.576301,54.134658],[-7.575083,54.133053],[-7.570019,54.133002],[-7.56933,54.131799],[-7.56773,54.130687],[-7.568103,54.129969],[-7.566521,54.126702],[-7.561228,54.127181],[-7.559303,54.127944],[-7.557967,54.127098],[-7.556469,54.127167],[-7.55565,54.126019],[-7.553142,54.125117],[-7.550194,54.122964],[-7.548183,54.122228],[-7.547397,54.122571],[-7.546443,54.124151],[-7.546924,54.125473],[-7.545403,54.126521],[-7.547261,54.127309],[-7.547857,54.128931],[-7.545832,54.12907],[-7.545431,54.128288],[-7.542411,54.128942],[-7.541224,54.128477],[-7.539554,54.127175],[-7.538372,54.127396],[-7.536664,54.12871],[-7.538038,54.130899],[-7.535504,54.132647],[-7.532317,54.133238],[-7.531247,54.134849],[-7.528939,54.135871],[-7.528031,54.135678],[-7.527216,54.134497],[-7.523926,54.133474],[-7.522795,54.132262],[-7.522614,54.130853],[-7.520489,54.129805],[-7.517201,54.130488],[-7.510246,54.129986],[-7.50328,54.126269],[-7.501841,54.126758],[-7.499888,54.126144],[-7.496299,54.126094],[-7.495499,54.125377],[-7.493568,54.124663],[-7.492732,54.123193],[-7.486219,54.123557],[-7.481823,54.122321],[-7.480133,54.122366],[-7.477316,54.123823],[-7.476655,54.125062],[-7.473476,54.126078],[-7.472726,54.126737],[-7.473504,54.130217],[-7.472499,54.132535],[-7.472569,54.133394],[-7.467917,54.134424],[-7.467146,54.137164],[-7.468653,54.138728],[-7.469308,54.1409],[-7.466925,54.142045],[-7.46469,54.141598],[-7.463457,54.141703],[-7.461033,54.142941],[-7.456968,54.143886],[-7.454503,54.14486],[-7.453498,54.145892],[-7.452724,54.147787],[-7.443149,54.154017],[-7.436817,54.153283],[-7.432119,54.152165],[-7.427642,54.154799],[-7.419054,54.154597],[-7.417476,54.154919],[-7.414551,54.156157],[-7.410366,54.156327],[-7.409276,54.155429],[-7.409736,54.153188],[-7.412921,54.148629],[-7.415618,54.146567],[-7.41865,54.145555],[-7.423327,54.143283],[-7.425822,54.141244],[-7.425578,54.140233],[-7.421201,54.13697],[-7.419669,54.136851],[-7.413611,54.13901],[-7.403863,54.141028],[-7.400859,54.140975],[-7.39499,54.137482],[-7.392326,54.136877],[-7.390454,54.136984],[-7.38853,54.137763],[-7.384404,54.141434],[-7.376285,54.142031],[-7.37495,54.141385],[-7.373602,54.139638],[-7.3741,54.137951],[-7.376394,54.136762],[-7.38283,54.134827],[-7.393408,54.127018],[-7.394591,54.125455],[-7.394982,54.122833],[-7.393507,54.12078],[-7.392713,54.12032],[-7.390163,54.121186],[-7.389053,54.122843],[-7.387441,54.12333],[-7.385339,54.123348],[-7.382133,54.12384],[-7.380744,54.124369],[-7.376002,54.128634],[-7.370955,54.130931],[-7.369563,54.131259],[-7.366483,54.130776],[-7.364339,54.131557],[-7.360894,54.130191],[-7.357626,54.127693],[-7.356236,54.127278],[-7.352452,54.124052],[-7.350374,54.124253],[-7.348969,54.123036],[-7.347202,54.122609],[-7.346949,54.12182],[-7.347688,54.12036],[-7.347387,54.119032],[-7.348166,54.11747],[-7.346994,54.116622],[-7.345103,54.116123],[-7.343181,54.116127],[-7.341428,54.117984],[-7.33844,54.116811],[-7.336133,54.11724],[-7.334965,54.120594],[-7.329668,54.12281],[-7.327889,54.124713],[-7.325459,54.123553],[-7.324038,54.122495],[-7.324385,54.121596],[-7.325565,54.121056],[-7.324763,54.118894],[-7.324997,54.117952],[-7.322939,54.117431],[-7.322343,54.116537],[-7.322162,54.114958],[-7.319766,54.113449],[-7.31811,54.114782],[-7.314991,54.115362],[-7.314528,54.116682],[-7.312643,54.116858],[-7.311039,54.11747],[-7.30928,54.117171],[-7.30839,54.117643],[-7.306732,54.119535],[-7.306155,54.123475],[-7.307428,54.124116],[-7.316916,54.127055],[-7.312857,54.131857],[-7.317616,54.133469],[-7.319506,54.13453],[-7.319481,54.137559],[-7.320319,54.138003],[-7.323002,54.138164],[-7.326202,54.136626],[-7.328051,54.135274],[-7.329675,54.136395],[-7.331648,54.139698],[-7.330501,54.141146],[-7.334057,54.143617],[-7.336556,54.144205],[-7.33951,54.14432],[-7.340277,54.146951],[-7.33806,54.147824],[-7.334113,54.148334],[-7.327093,54.151531],[-7.325874,54.153426],[-7.323947,54.155088],[-7.319408,54.157708],[-7.320932,54.159446],[-7.318506,54.159888],[-7.318785,54.160686],[-7.314615,54.163275],[-7.31385,54.16457],[-7.312444,54.164566],[-7.311589,54.165561],[-7.31104,54.167423],[-7.30868,54.16729],[-7.307555,54.167662],[-7.305397,54.166919],[-7.30357,54.166936],[-7.301235,54.166238],[-7.293873,54.169907],[-7.292769,54.17077],[-7.292171,54.172056],[-7.287533,54.170215],[-7.285917,54.169206],[-7.280595,54.167741],[-7.284232,54.162579],[-7.284825,54.160069],[-7.286641,54.157951],[-7.285302,54.154738],[-7.28463,54.153968],[-7.290754,54.149308],[-7.299714,54.149393],[-7.302146,54.144197],[-7.290518,54.140887],[-7.284998,54.139884],[-7.286188,54.1366],[-7.289416,54.134186],[-7.292036,54.131328],[-7.29347,54.130685],[-7.29535,54.131779],[-7.296803,54.131299],[-7.298511,54.133651],[-7.301241,54.133745],[-7.303542,54.132893],[-7.305481,54.132876],[-7.309762,54.132231],[-7.306536,54.128291],[-7.304789,54.127531],[-7.303883,54.126669],[-7.304561,54.125945],[-7.304393,54.123053],[-7.301533,54.121608],[-7.298646,54.120682],[-7.296243,54.120731],[-7.292691,54.11921],[-7.290817,54.1199],[-7.288834,54.121363],[-7.286771,54.121603],[-7.284797,54.122896],[-7.280366,54.122491],[-7.278799,54.123372],[-7.280052,54.124676],[-7.280419,54.126325],[-7.278386,54.129737],[-7.276468,54.130471],[-7.276376,54.131246],[-7.274789,54.132525],[-7.271011,54.134296],[-7.269825,54.135523],[-7.266389,54.136462],[-7.263743,54.137562],[-7.263759,54.14035],[-7.262759,54.141338],[-7.263059,54.142336],[-7.264593,54.143432],[-7.264733,54.145382],[-7.262686,54.147525],[-7.259845,54.148264],[-7.25914,54.148948],[-7.259381,54.152918],[-7.257382,54.154985],[-7.256154,54.154638],[-7.253351,54.155799],[-7.254469,54.158814],[-7.2556,54.159764],[-7.257905,54.15974],[-7.259334,54.16097],[-7.259357,54.162254],[-7.260438,54.162796],[-7.258868,54.163576],[-7.258202,54.165073],[-7.256034,54.165142],[-7.254205,54.166713],[-7.251909,54.167032],[-7.251303,54.167531],[-7.247086,54.168363],[-7.24708,54.16892],[-7.244285,54.169793],[-7.243503,54.169277],[-7.241105,54.169799],[-7.241468,54.171268],[-7.244646,54.172805],[-7.246173,54.173163],[-7.248505,54.172629],[-7.252176,54.17285],[-7.25374,54.177152],[-7.257021,54.176201],[-7.259081,54.17749],[-7.259196,54.1789],[-7.257501,54.179834],[-7.257294,54.181913],[-7.260366,54.184182],[-7.259954,54.185158],[-7.258531,54.186396],[-7.257294,54.188709],[-7.257768,54.189645],[-7.256852,54.190361],[-7.259649,54.191661],[-7.259891,54.192354],[-7.257128,54.193524],[-7.251739,54.194225],[-7.246402,54.193868],[-7.245146,54.19276],[-7.241909,54.193682],[-7.236949,54.193513],[-7.236673,54.196338],[-7.233813,54.197908],[-7.237479,54.198977],[-7.240837,54.19914],[-7.243482,54.200742],[-7.244673,54.200401],[-7.248207,54.198238],[-7.250047,54.19801],[-7.251103,54.199388],[-7.250241,54.201286],[-7.248686,54.202688],[-7.249937,54.203515],[-7.248854,54.204556],[-7.245323,54.20496],[-7.242708,54.206384],[-7.239882,54.206944],[-7.237012,54.205948],[-7.23454,54.206227],[-7.232589,54.205723],[-7.232255,54.207273],[-7.2347,54.208312],[-7.232914,54.209432],[-7.23349,54.210989],[-7.232056,54.211216],[-7.231058,54.212003],[-7.228929,54.212539],[-7.226428,54.214705],[-7.222683,54.215006],[-7.221871,54.215875],[-7.219904,54.215793],[-7.215679,54.213462],[-7.212455,54.213763],[-7.210056,54.212908],[-7.20785,54.213228],[-7.206429,54.214301],[-7.204923,54.214535],[-7.203563,54.21532],[-7.201053,54.215908],[-7.199627,54.215721],[-7.19611,54.217696],[-7.195786,54.219026],[-7.196337,54.219556],[-7.192581,54.222689],[-7.191284,54.224317],[-7.189115,54.224981],[-7.187627,54.224522],[-7.185757,54.224724],[-7.185779,54.223603],[-7.184782,54.222003],[-7.186053,54.220943],[-7.185644,54.220191],[-7.182965,54.220089],[-7.182078,54.220632],[-7.180269,54.220781],[-7.178658,54.219015],[-7.17747,54.218346],[-7.175015,54.218517],[-7.171953,54.217702],[-7.166464,54.219466],[-7.163122,54.220009],[-7.161259,54.21983],[-7.159301,54.220824],[-7.156346,54.221347],[-7.15412,54.220965],[-7.151946,54.223588],[-7.150321,54.223976],[-7.148856,54.224839],[-7.145799,54.224825],[-7.148278,54.225985],[-7.147439,54.227535],[-7.147429,54.230135],[-7.150735,54.231728],[-7.150474,54.23405],[-7.149252,54.235216],[-7.147711,54.236024],[-7.146962,54.237158],[-7.146887,54.239858],[-7.154284,54.242895],[-7.158515,54.243764],[-7.159836,54.243774],[-7.158825,54.245669],[-7.155801,54.246901],[-7.154595,54.24821],[-7.152503,54.248848],[-7.151976,54.249648],[-7.14908,54.250817],[-7.14502,54.25115],[-7.143375,54.251748],[-7.142289,54.253278],[-7.143091,54.255727],[-7.144122,54.256532],[-7.146897,54.256984],[-7.151283,54.258453],[-7.150833,54.259631],[-7.152424,54.259756],[-7.153054,54.262032],[-7.154531,54.263338],[-7.154533,54.26606],[-7.156609,54.267932],[-7.159153,54.268623],[-7.159288,54.269134],[-7.158009,54.270779],[-7.16149,54.273719],[-7.16314,54.274201],[-7.165759,54.273],[-7.168189,54.273054],[-7.169267,54.273524],[-7.170606,54.272757],[-7.172496,54.273042],[-7.17421,54.272808],[-7.17749,54.270635],[-7.178932,54.27264],[-7.180138,54.27268],[-7.180931,54.274093],[-7.181007,54.275815],[-7.18049,54.276841],[-7.178711,54.278249],[-7.177366,54.278448],[-7.174487,54.279596],[-7.174016,54.282273],[-7.172105,54.283714],[-7.172487,54.285084],[-7.173751,54.286167],[-7.178454,54.28638],[-7.179611,54.286788],[-7.182535,54.286545],[-7.181507,54.287599],[-7.182384,54.288235],[-7.184744,54.287672],[-7.186652,54.28804],[-7.188483,54.288996],[-7.189474,54.290351],[-7.194716,54.29152],[-7.196172,54.292538],[-7.198829,54.293118],[-7.199917,54.293876],[-7.202143,54.293956],[-7.20368,54.294831],[-7.207806,54.294477],[-7.213031,54.299701],[-7.208411,54.302792],[-7.207469,54.304152],[-7.207589,54.304953],[-7.206025,54.305748],[-7.20426,54.305834],[-7.202034,54.307931],[-7.200734,54.30785],[-7.198331,54.310682],[-7.197247,54.310974],[-7.194523,54.310896],[-7.192537,54.312001],[-7.188547,54.310695],[-7.18581,54.310445],[-7.18426,54.310862],[-7.183395,54.30939],[-7.180638,54.309287],[-7.179991,54.309789],[-7.179787,54.311433],[-7.180296,54.312381],[-7.179806,54.313372],[-7.180241,54.314896],[-7.178895,54.316267],[-7.179703,54.319079],[-7.18078,54.320159],[-7.180789,54.324587],[-7.181785,54.325623],[-7.181457,54.327629],[-7.182547,54.328619],[-7.182554,54.329577],[-7.181393,54.331978],[-7.182771,54.333605],[-7.18484,54.335022],[-7.187483,54.335832],[-7.189671,54.337744],[-7.190641,54.33925],[-7.194012,54.340872],[-7.195191,54.342066],[-7.201802,54.341869],[-7.202898,54.341129],[-7.20164,54.337468],[-7.203486,54.33689],[-7.206042,54.337102],[-7.207808,54.336725],[-7.209497,54.335571],[-7.212321,54.33482],[-7.215973,54.334383],[-7.217365,54.334505],[-7.21942,54.333743],[-7.221899,54.334142],[-7.223671,54.333899],[-7.22429,54.332865],[-7.226208,54.332136],[-7.227438,54.330406],[-7.227954,54.327072],[-7.229571,54.326839],[-7.233012,54.327089],[-7.234949,54.326938],[-7.236196,54.325661],[-7.237789,54.325291],[-7.241003,54.327053],[-7.242097,54.328115],[-7.243706,54.32741],[-7.247086,54.327094],[-7.248126,54.328879],[-7.250665,54.329725],[-7.251814,54.33065],[-7.253386,54.331055],[-7.25409,54.332273],[-7.259333,54.333104],[-7.259563,54.333759],[-7.263651,54.336821],[-7.263374,54.338402],[-7.262064,54.339175],[-7.261979,54.340524],[-7.2666,54.341414],[-7.269127,54.342415],[-7.270092,54.343313],[-7.271586,54.34355],[-7.27305,54.344696],[-7.272601,54.346166],[-7.271554,54.347656],[-7.272125,54.349022],[-7.272163,54.351808],[-7.271545,54.353894],[-7.272275,54.356133],[-7.274654,54.357508],[-7.272877,54.35935],[-7.272037,54.361193],[-7.275404,54.36215],[-7.277115,54.363687],[-7.276857,54.364789],[-7.277331,54.366707],[-7.279379,54.368097],[-7.280144,54.369146],[-7.280485,54.37075],[-7.281352,54.371665],[-7.28424,54.372579],[-7.285896,54.371684],[-7.288486,54.371953],[-7.290645,54.370296],[-7.293639,54.36988],[-7.29823,54.368771],[-7.301999,54.369163],[-7.30143,54.368436],[-7.303555,54.367494],[-7.30542,54.368217],[-7.308719,54.368232],[-7.309919,54.368752],[-7.310622,54.370474],[-7.311816,54.371268],[-7.315395,54.371335],[-7.317383,54.370744],[-7.318445,54.369634],[-7.322217,54.368544],[-7.322175,54.369437],[-7.324401,54.370129],[-7.3263,54.369796],[-7.330829,54.370407],[-7.333814,54.371742],[-7.33525,54.371773],[-7.33173,54.37408],[-7.332958,54.377194],[-7.332223,54.378658],[-7.333194,54.379706],[-7.335742,54.380362],[-7.336041,54.381327],[-7.340803,54.383262],[-7.341688,54.384642],[-7.339989,54.38567],[-7.338163,54.386107],[-7.336317,54.387614],[-7.336459,54.388411],[-7.337778,54.389817],[-7.338535,54.392461],[-7.334701,54.394933],[-7.334014,54.396276],[-7.331212,54.396297],[-7.32986,54.397616],[-7.32997,54.398217],[-7.331781,54.398707],[-7.332359,54.400582],[-7.333705,54.40216],[-7.332353,54.403892],[-7.332467,54.405067],[-7.336936,54.405963],[-7.339286,54.407671],[-7.343418,54.408781],[-7.345472,54.408605],[-7.346367,54.409695],[-7.348595,54.411259],[-7.347645,54.413131],[-7.351031,54.416197],[-7.357923,54.418082],[-7.35994,54.418334],[-7.362219,54.419927],[-7.360818,54.421406],[-7.35857,54.422117],[-7.360814,54.425341],[-7.362772,54.43212],[-7.367836,54.437592],[-7.36637,54.437723],[-7.360061,54.439651],[-7.341365,54.444055],[-7.335511,54.444951],[-7.330666,54.445041],[-7.327057,54.443874],[-7.325244,54.443819],[-7.32316,54.444914],[-7.320766,54.444951],[-7.318276,54.443053],[-7.3159,54.442385],[-7.314041,54.442587],[-7.312167,54.44337],[-7.308819,54.443216],[-7.307059,54.443807],[-7.305784,54.443261],[-7.304311,54.443649],[-7.302979,54.443178],[-7.299845,54.443361],[-7.297696,54.443773],[-7.295645,54.443635],[-7.294363,54.44396],[-7.294205,54.444759],[-7.29256,54.446036],[-7.288636,54.446161],[-7.287683,54.447627],[-7.289006,54.448677],[-7.289076,54.450325],[-7.288297,54.450796],[-7.285322,54.451504],[-7.283413,54.45099],[-7.280001,54.450913],[-7.276129,54.451675],[-7.274235,54.454434],[-7.272236,54.453765],[-7.270226,54.455019],[-7.27066,54.456379],[-7.271646,54.457074],[-7.271741,54.458256],[-7.273947,54.459207],[-7.271477,54.460127],[-7.269565,54.458829],[-7.267672,54.458837],[-7.265797,54.4583],[-7.26406,54.45733],[-7.263776,54.455192],[-7.261707,54.453808],[-7.259155,54.452772],[-7.253731,54.451077],[-7.251606,54.452168],[-7.250259,54.452183],[-7.247143,54.453646],[-7.244337,54.454258],[-7.242152,54.456105],[-7.23662,54.454577],[-7.234502,54.459147],[-7.232231,54.458326],[-7.229453,54.458231],[-7.228132,54.460721],[-7.226152,54.461177],[-7.226825,54.462411],[-7.22522,54.463282],[-7.223861,54.464999],[-7.220288,54.465964],[-7.219037,54.465413],[-7.216543,54.465269],[-7.216875,54.466621],[-7.216452,54.467619],[-7.214889,54.467312],[-7.213208,54.46642],[-7.210811,54.468276],[-7.208381,54.467087],[-7.201972,54.46635],[-7.19946,54.466328],[-7.197892,54.469127],[-7.198648,54.471971],[-7.199653,54.473149],[-7.2017,54.473871],[-7.203706,54.476548],[-7.203702,54.477964],[-7.20161,54.477519],[-7.196331,54.477327],[-7.188354,54.472625],[-7.186094,54.472812],[-7.184714,54.474393],[-7.18209,54.475423],[-7.178821,54.475461],[-7.179172,54.474773],[-7.177675,54.474303],[-7.17368,54.473861],[-7.171426,54.474302],[-7.16783,54.476466],[-7.160994,54.472583],[-7.155509,54.473259],[-7.152559,54.476157],[-7.151679,54.47757],[-7.150428,54.478289],[-7.148051,54.478434],[-7.1444,54.479409],[-7.142505,54.478487],[-7.140389,54.480167],[-7.136046,54.481448],[-7.132334,54.477816],[-7.13035,54.476406],[-7.127845,54.476027],[-7.125532,54.475175],[-7.12201,54.475526],[-7.119163,54.476989],[-7.118643,54.478679],[-7.11683,54.480324],[-7.119696,54.483493],[-7.123323,54.484659],[-7.123195,54.486139],[-7.122465,54.486907],[-7.117673,54.486169],[-7.116481,54.485453],[-7.114334,54.485143],[-7.112667,54.484434],[-7.111561,54.485187],[-7.109691,54.485566],[-7.107814,54.487109],[-7.10932,54.49014],[-7.108007,54.492619],[-7.105318,54.493295],[-7.104955,54.494838],[-7.10391,54.495471],[-7.104817,54.496567],[-7.102647,54.498802],[-7.100869,54.499082],[-7.100221,54.500398],[-7.098401,54.500224],[-7.094838,54.500754],[-7.092351,54.501624],[-7.090502,54.50372],[-7.085235,54.50521],[-7.083006,54.504983],[-7.079759,54.505123],[-7.077838,54.504562],[-7.077072,54.505307],[-7.075651,54.505417],[-7.073424,54.506423],[-7.072983,54.504995],[-7.073774,54.502839],[-7.072029,54.502877],[-7.071101,54.503589],[-7.068171,54.504253],[-7.066648,54.506615],[-7.059022,54.502692],[-7.052534,54.501572],[-7.054048,54.503266],[-7.05269,54.504647],[-7.051327,54.504591],[-7.051381,54.505841],[-7.050648,54.50636],[-7.047822,54.506699],[-7.044884,54.505824],[-7.041688,54.505339],[-7.040185,54.505692],[-7.041281,54.512873],[-7.038429,54.51418],[-7.040117,54.517982],[-7.037112,54.519109],[-7.034447,54.520574],[-7.033392,54.521702],[-7.033249,54.523456],[-7.02995,54.525889],[-7.027183,54.524927],[-7.023995,54.524475],[-7.022799,54.523683],[-7.019882,54.524422],[-7.017249,54.525497],[-7.010665,54.525197],[-7.009658,54.52466],[-7.00716,54.527059],[-7.006746,54.528445],[-7.004965,54.530377],[-7.003614,54.530586],[-7.000967,54.532273],[-6.997527,54.53292],[-6.996113,54.534128],[-6.995242,54.536543],[-6.992004,54.535903],[-6.989982,54.536598],[-6.981014,54.54157],[-6.980151,54.542357],[-6.977728,54.543317],[-6.975407,54.543727],[-6.973671,54.545126],[-6.973596,54.547874],[-6.972379,54.548974],[-6.976465,54.549727],[-6.979309,54.550779],[-6.980844,54.551749],[-6.982484,54.554159],[-6.984492,54.555157],[-6.98585,54.555367],[-6.98662,54.556481],[-6.985676,54.558149],[-6.983357,54.558436],[-6.981853,54.560406],[-6.979274,54.561344],[-6.978938,54.563513],[-6.975715,54.566266],[-6.973836,54.56719],[-6.971538,54.566978],[-6.970267,54.567513],[-6.970782,54.570744],[-6.9731,54.571732],[-6.973728,54.573758],[-6.97539,54.573609],[-6.977295,54.574189],[-6.978566,54.573966],[-6.980736,54.57442],[-6.982945,54.575612],[-6.981423,54.578236],[-6.983847,54.579241],[-6.987243,54.579287],[-6.987209,54.580318],[-6.989446,54.58153],[-6.988656,54.5821],[-6.987026,54.581255],[-6.986388,54.581873],[-6.979744,54.58065],[-6.979262,54.580292],[-6.975204,54.579517],[-6.97052,54.579622],[-6.970576,54.586979],[-6.963969,54.588566],[-6.965415,54.593156],[-6.966588,54.595716],[-6.967824,54.597131],[-6.962721,54.600025],[-6.951667,54.605367],[-6.949008,54.607424],[-6.948867,54.60803],[-6.955843,54.609484],[-6.956808,54.611106],[-6.959337,54.611033],[-6.962124,54.612397],[-6.962244,54.613576],[-6.963103,54.615012],[-6.961028,54.616352],[-6.961496,54.617472],[-6.963169,54.617798],[-6.963358,54.618432],[-6.961922,54.619697],[-6.961755,54.620816],[-6.960809,54.622052],[-6.963053,54.622717],[-6.964336,54.623718],[-6.966615,54.626515],[-6.966567,54.62752],[-6.968652,54.629018],[-6.969109,54.629945],[-6.970997,54.631207],[-6.973457,54.631232],[-6.973948,54.632272],[-6.973771,54.633865],[-6.97445,54.634658],[-6.976702,54.634959],[-6.978021,54.635493],[-6.978162,54.637091],[-6.975997,54.639183],[-6.977164,54.640062],[-6.976673,54.641761],[-6.977817,54.642215],[-6.977889,54.643281],[-6.979265,54.644459],[-6.979224,54.645925],[-6.980788,54.647937],[-6.983873,54.648045],[-6.984794,54.649429],[-6.986437,54.650175],[-6.98652,54.650746],[-6.989322,54.651978],[-6.98911,54.652823],[-6.984462,54.655491],[-6.983843,54.656891],[-6.978335,54.657369],[-6.977945,54.657955],[-6.975489,54.658694],[-6.97219,54.660979],[-6.972075,54.66309],[-6.970247,54.663751],[-6.974003,54.664447],[-6.978974,54.664149],[-6.981192,54.664496],[-6.982614,54.665197],[-6.985697,54.66517],[-6.987093,54.665851],[-6.988621,54.667602],[-6.989663,54.668138],[-6.991724,54.668006],[-7.00346,54.671522],[-7.004098,54.67278],[-7.004065,54.675532],[-6.999936,54.678358],[-7.00074,54.679842],[-7.003224,54.68005],[-7.004057,54.68094],[-7.004828,54.683287],[-6.998541,54.687331],[-6.998431,54.691188],[-6.995742,54.692559],[-6.994612,54.694187],[-6.994652,54.695256],[-6.998443,54.697512],[-6.999133,54.698791],[-7.001517,54.69917],[-7.00149,54.700255],[-6.999915,54.702021],[-6.996751,54.702947],[-6.995904,54.703813],[-6.995076,54.705878],[-6.997492,54.709358],[-6.998429,54.709851],[-7.001092,54.710014],[-7.002173,54.710639],[-7.0024,54.712281],[-7.003714,54.71412],[-7.008722,54.714601],[-7.010145,54.715019],[-7.011065,54.71715],[-7.011939,54.718046],[-7.003615,54.723629],[-7.007436,54.731348],[-7.001355,54.73396],[-6.996314,54.738185],[-6.991427,54.741204],[-6.985442,54.743157],[-6.976503,54.743237],[-6.968671,54.74431],[-6.959039,54.747695],[-6.949213,54.750712],[-6.941622,54.752238],[-6.940105,54.758068],[-6.937894,54.762053],[-6.936837,54.766225],[-6.940873,54.773633]]]},"properties":{"LAD22CD":"N09000006","LAD22NM":"Fermanagh and Omagh","BNG_E":41233,"BNG_N":513013,"LONG":-7.5271,"LAT":54.38521,"GlobalID":"ad85a41f-3e2f-475b-9c74-44d6e228c020"},"id":315}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.046522,54.605973],[-6.048271,54.606266],[-6.0504,54.607313],[-6.053417,54.608039],[-6.055297,54.609404],[-6.057081,54.609924],[-6.057792,54.610819],[-6.059455,54.61116],[-6.059854,54.611966],[-6.061592,54.611717],[-6.063185,54.613021],[-6.066622,54.614105],[-6.067443,54.615915],[-6.069299,54.616469],[-6.069851,54.618877],[-6.071591,54.618995],[-6.073816,54.619984],[-6.076767,54.619688],[-6.079214,54.619733],[-6.079995,54.621113],[-6.082055,54.622238],[-6.081997,54.622986],[-6.086265,54.623718],[-6.088566,54.624446],[-6.089057,54.624044],[-6.095762,54.622377],[-6.098455,54.622862],[-6.102305,54.62172],[-6.106084,54.622241],[-6.106258,54.622874],[-6.110561,54.622836],[-6.112824,54.622141],[-6.114903,54.622265],[-6.114819,54.621167],[-6.116175,54.620423],[-6.120458,54.619975],[-6.123088,54.618714],[-6.128903,54.618103],[-6.132501,54.618629],[-6.133089,54.617747],[-6.134641,54.617833],[-6.138686,54.619398],[-6.137197,54.619674],[-6.137531,54.620711],[-6.141484,54.618908],[-6.145926,54.619862],[-6.148338,54.620746],[-6.149747,54.620463],[-6.150129,54.619018],[-6.149835,54.617708],[-6.150248,54.614946],[-6.149621,54.613822],[-6.146511,54.611212],[-6.150165,54.610285],[-6.156506,54.610584],[-6.15993,54.608734],[-6.162735,54.605755],[-6.169875,54.604897],[-6.170533,54.603898],[-6.173408,54.603337],[-6.174218,54.603653],[-6.176877,54.603312],[-6.177671,54.603921],[-6.179561,54.603931],[-6.181193,54.603452],[-6.183329,54.603876],[-6.188987,54.603366],[-6.189379,54.602777],[-6.193047,54.602437],[-6.192057,54.601875],[-6.19364,54.600508],[-6.196456,54.601804],[-6.197749,54.601753],[-6.198839,54.600739],[-6.201055,54.599662],[-6.20376,54.599339],[-6.204519,54.599903],[-6.206611,54.600063],[-6.20844,54.599422],[-6.210144,54.599541],[-6.210865,54.598674],[-6.218443,54.602122],[-6.222506,54.599993],[-6.224902,54.600404],[-6.2294,54.59722],[-6.230836,54.596867],[-6.230048,54.594128],[-6.231928,54.593821],[-6.231668,54.592546],[-6.229613,54.592468],[-6.230257,54.590562],[-6.232111,54.590889],[-6.233171,54.590054],[-6.235974,54.589093],[-6.236008,54.588369],[-6.238004,54.588012],[-6.239165,54.588605],[-6.240361,54.588156],[-6.2465,54.589658],[-6.247496,54.58923],[-6.249857,54.589404],[-6.250636,54.589844],[-6.253095,54.589367],[-6.254691,54.589582],[-6.255293,54.59051],[-6.257366,54.59115],[-6.260057,54.592968],[-6.261049,54.595393],[-6.264617,54.598007],[-6.264802,54.597221],[-6.295471,54.596746],[-6.282131,54.580097],[-6.30559,54.572955],[-6.303064,54.571023],[-6.302133,54.56963],[-6.299949,54.568459],[-6.291741,54.561495],[-6.278679,54.557513],[-6.278317,54.549203],[-6.27507,54.541593],[-6.278637,54.538322],[-6.27488,54.535425],[-6.276418,54.534066],[-6.273033,54.533168],[-6.270919,54.533331],[-6.269927,54.530942],[-6.27043,54.529155],[-6.272251,54.526009],[-6.27358,54.525162],[-6.275441,54.525148],[-6.275979,54.523703],[-6.274155,54.523278],[-6.275048,54.522111],[-6.273455,54.521423],[-6.274125,54.51964],[-6.272003,54.517973],[-6.269546,54.517606],[-6.257148,54.509225],[-6.255078,54.508531],[-6.256677,54.507207],[-6.258806,54.508114],[-6.26078,54.507259],[-6.258655,54.505229],[-6.25648,54.504663],[-6.249777,54.504104],[-6.250087,54.502963],[-6.247385,54.503155],[-6.243238,54.500997],[-6.242135,54.500745],[-6.24238,54.499233],[-6.243056,54.498338],[-6.240503,54.49633],[-6.240037,54.494492],[-6.241127,54.494386],[-6.241881,54.493155],[-6.239466,54.492164],[-6.240478,54.490632],[-6.242615,54.49048],[-6.245961,54.491784],[-6.250144,54.491752],[-6.250596,54.489982],[-6.248589,54.48816],[-6.252198,54.48766],[-6.254181,54.487968],[-6.256047,54.483685],[-6.257693,54.482651],[-6.256415,54.48165],[-6.258392,54.480715],[-6.259012,54.479631],[-6.25543,54.479408],[-6.253345,54.478158],[-6.251871,54.478105],[-6.251275,54.477058],[-6.248111,54.475346],[-6.246064,54.475986],[-6.243348,54.475433],[-6.241615,54.472903],[-6.241803,54.471095],[-6.243211,54.469914],[-6.243317,54.468077],[-6.240602,54.467475],[-6.239937,54.466627],[-6.240591,54.465425],[-6.243263,54.465002],[-6.240653,54.462955],[-6.239106,54.463069],[-6.236994,54.462326],[-6.236342,54.460762],[-6.23345,54.459464],[-6.232368,54.458539],[-6.230265,54.457714],[-6.229138,54.456069],[-6.226238,54.45437],[-6.224677,54.454308],[-6.225255,54.452916],[-6.22072,54.452743],[-6.220253,54.453267],[-6.217697,54.452431],[-6.218263,54.45129],[-6.216557,54.45044],[-6.217773,54.449527],[-6.21364,54.44771],[-6.213322,54.44704],[-6.210833,54.446022],[-6.209763,54.445102],[-6.212371,54.443601],[-6.213345,54.441898],[-6.214705,54.440854],[-6.21257,54.440112],[-6.213391,54.438728],[-6.213339,54.437146],[-6.212443,54.435845],[-6.211501,54.435481],[-6.21172,54.434115],[-6.211152,54.432838],[-6.208994,54.432634],[-6.204729,54.433988],[-6.203221,54.434107],[-6.201925,54.435613],[-6.20308,54.43634],[-6.203186,54.437721],[-6.200729,54.438629],[-6.19358,54.43761],[-6.186057,54.43813],[-6.184931,54.438697],[-6.183458,54.440466],[-6.181489,54.441233],[-6.179554,54.440962],[-6.176451,54.441162],[-6.173417,54.442999],[-6.1723,54.44331],[-6.166526,54.443538],[-6.163874,54.444219],[-6.161651,54.443859],[-6.157498,54.444248],[-6.156159,54.443093],[-6.155166,54.441507],[-6.159255,54.439604],[-6.159747,54.437973],[-6.161812,54.437361],[-6.161787,54.436114],[-6.159916,54.434326],[-6.157813,54.435027],[-6.156727,54.434806],[-6.152768,54.435288],[-6.148931,54.436148],[-6.146483,54.435961],[-6.136773,54.436193],[-6.13473,54.43578],[-6.128557,54.432717],[-6.126034,54.432454],[-6.123392,54.431529],[-6.122411,54.430533],[-6.119647,54.429244],[-6.119767,54.428594],[-6.118096,54.427314],[-6.112468,54.423979],[-6.105705,54.422199],[-6.101054,54.419903],[-6.100545,54.420178],[-6.097627,54.418392],[-6.095373,54.418717],[-6.091771,54.416344],[-6.08978,54.41387],[-6.087786,54.412517],[-6.088164,54.411551],[-6.087351,54.410252],[-6.083118,54.409686],[-6.080148,54.410351],[-6.078334,54.40956],[-6.077511,54.410841],[-6.074009,54.411097],[-6.072442,54.410774],[-6.069685,54.408915],[-6.064591,54.407739],[-6.058995,54.404537],[-6.057146,54.40403],[-6.054915,54.402815],[-6.055593,54.401962],[-6.055655,54.40064],[-6.061186,54.400584],[-6.063705,54.400031],[-6.065932,54.398765],[-6.066445,54.397203],[-6.064868,54.397361],[-6.06485,54.394109],[-6.064386,54.391655],[-6.06636,54.390241],[-6.064338,54.388674],[-6.065304,54.387621],[-6.063946,54.386761],[-6.062168,54.386746],[-6.060689,54.386078],[-6.057585,54.386373],[-6.055507,54.385887],[-6.054495,54.387353],[-6.051269,54.388615],[-6.049279,54.386648],[-6.046213,54.386635],[-6.04246,54.384528],[-6.041228,54.384704],[-6.038129,54.384368],[-6.038682,54.383452],[-6.043104,54.38276],[-6.044958,54.380919],[-6.042391,54.378849],[-6.039333,54.377163],[-6.036668,54.378323],[-6.033524,54.378518],[-6.027032,54.378584],[-6.023189,54.377161],[-6.021725,54.377623],[-6.020709,54.376053],[-6.021916,54.374224],[-6.023191,54.37335],[-6.021222,54.371445],[-6.019529,54.370587],[-6.018373,54.371689],[-6.01302,54.372149],[-6.00932,54.372857],[-6.005026,54.372794],[-5.997645,54.374064],[-5.992863,54.374169],[-5.985083,54.376939],[-5.978282,54.381536],[-5.974463,54.382836],[-5.971309,54.384487],[-5.969614,54.38308],[-5.967735,54.383219],[-5.958747,54.380697],[-5.95342,54.380607],[-5.951026,54.379581],[-5.948964,54.380439],[-5.948053,54.381245],[-5.946791,54.381398],[-5.945861,54.382233],[-5.942715,54.382748],[-5.941179,54.383746],[-5.941944,54.388364],[-5.940973,54.389869],[-5.941458,54.390955],[-5.938392,54.391202],[-5.93953,54.394079],[-5.938439,54.394977],[-5.940113,54.396131],[-5.940146,54.398156],[-5.943076,54.398478],[-5.945539,54.398276],[-5.951711,54.403833],[-5.947921,54.403825],[-5.944922,54.404543],[-5.946195,54.40763],[-5.945016,54.409519],[-5.946445,54.41126],[-5.946316,54.414445],[-5.94554,54.414801],[-5.94316,54.414743],[-5.938709,54.416066],[-5.93403,54.419276],[-5.933423,54.420245],[-5.931101,54.421275],[-5.928236,54.422166],[-5.928264,54.422987],[-5.926441,54.423309],[-5.925273,54.424025],[-5.928923,54.427422],[-5.931654,54.429178],[-5.930575,54.430408],[-5.924591,54.431406],[-5.922379,54.432679],[-5.920141,54.432642],[-5.91583,54.43344],[-5.917435,54.434667],[-5.917083,54.436905],[-5.920707,54.439412],[-5.91851,54.440457],[-5.918025,54.441105],[-5.919129,54.444015],[-5.918462,54.445836],[-5.917327,54.446796],[-5.918895,54.447568],[-5.915663,54.448398],[-5.916438,54.45006],[-5.909914,54.449552],[-5.90756,54.449748],[-5.906681,54.451834],[-5.902807,54.45325],[-5.900771,54.454826],[-5.901203,54.456798],[-5.904804,54.458847],[-5.904414,54.461587],[-5.903242,54.46226],[-5.894928,54.464217],[-5.891652,54.465511],[-5.887823,54.465882],[-5.886373,54.466283],[-5.884269,54.466145],[-5.877403,54.467318],[-5.878068,54.469475],[-5.876749,54.471397],[-5.877161,54.473106],[-5.875706,54.475013],[-5.873425,54.475905],[-5.873664,54.477272],[-5.874704,54.47791],[-5.872582,54.479234],[-5.86967,54.480453],[-5.869465,54.479871],[-5.866578,54.479893],[-5.86437,54.480352],[-5.861768,54.47956],[-5.859368,54.479182],[-5.860866,54.481099],[-5.859837,54.482058],[-5.8599,54.483447],[-5.858818,54.485358],[-5.856777,54.487001],[-5.85335,54.487423],[-5.848509,54.484541],[-5.846315,54.485375],[-5.846767,54.488441],[-5.847345,54.489291],[-5.846445,54.491532],[-5.842471,54.492575],[-5.840408,54.491067],[-5.837645,54.490283],[-5.835676,54.490222],[-5.832149,54.489321],[-5.831405,54.490612],[-5.8301,54.491571],[-5.826724,54.492435],[-5.825831,54.495064],[-5.824485,54.495505],[-5.82816,54.499769],[-5.830607,54.499025],[-5.834091,54.50143],[-5.831047,54.503089],[-5.833904,54.504787],[-5.829378,54.507351],[-5.830523,54.508313],[-5.830442,54.509521],[-5.831157,54.510687],[-5.831238,54.512137],[-5.829812,54.512538],[-5.828738,54.515419],[-5.829911,54.516374],[-5.830437,54.518472],[-5.830181,54.519193],[-5.831495,54.52016],[-5.830161,54.521014],[-5.828348,54.523584],[-5.828165,54.525027],[-5.825748,54.527731],[-5.823861,54.528138],[-5.819932,54.528084],[-5.816084,54.53194],[-5.817159,54.532784],[-5.816249,54.534534],[-5.817499,54.534963],[-5.818701,54.536116],[-5.817477,54.536427],[-5.81376,54.536315],[-5.811036,54.537435],[-5.810382,54.539646],[-5.804784,54.544328],[-5.802565,54.545044],[-5.801661,54.54436],[-5.80003,54.544724],[-5.797326,54.544398],[-5.795957,54.544537],[-5.793977,54.545752],[-5.794375,54.547463],[-5.794153,54.548561],[-5.791874,54.550235],[-5.794696,54.551173],[-5.796767,54.5515],[-5.799285,54.55504],[-5.800161,54.560715],[-5.79609,54.564905],[-5.793801,54.564611],[-5.792886,54.564866],[-5.788361,54.5672],[-5.788489,54.56838],[-5.79141,54.568943],[-5.790011,54.571133],[-5.787944,54.571765],[-5.785543,54.572044],[-5.783677,54.57412],[-5.781351,54.575501],[-5.780992,54.576218],[-5.773595,54.576924],[-5.772956,54.575671],[-5.771254,54.57544],[-5.76775,54.576879],[-5.766553,54.578161],[-5.766093,54.579908],[-5.765362,54.58057],[-5.761107,54.580978],[-5.758495,54.581535],[-5.758727,54.584928],[-5.761039,54.584839],[-5.762962,54.585346],[-5.765371,54.586843],[-5.767887,54.591786],[-5.770077,54.591456],[-5.770911,54.593901],[-5.77448,54.594035],[-5.773085,54.597565],[-5.772999,54.599627],[-5.771533,54.600476],[-5.769849,54.600713],[-5.770027,54.602545],[-5.768644,54.603829],[-5.769533,54.604773],[-5.769106,54.607107],[-5.769763,54.610075],[-5.771336,54.611026],[-5.772077,54.613408],[-5.775491,54.612852],[-5.780034,54.613318],[-5.7814,54.614038],[-5.782493,54.6152],[-5.783829,54.615777],[-5.784136,54.616607],[-5.785593,54.617166],[-5.787416,54.619653],[-5.794825,54.618824],[-5.798971,54.617578],[-5.79853,54.616694],[-5.803472,54.615691],[-5.807592,54.616166],[-5.808484,54.616548],[-5.810119,54.615601],[-5.810649,54.614663],[-5.809852,54.613611],[-5.809346,54.611727],[-5.808404,54.610777],[-5.809393,54.608616],[-5.812111,54.607309],[-5.811549,54.604993],[-5.811986,54.603418],[-5.813243,54.602102],[-5.813263,54.601316],[-5.815759,54.600034],[-5.816897,54.598944],[-5.814169,54.599107],[-5.815081,54.598109],[-5.814882,54.597217],[-5.817884,54.596399],[-5.817098,54.594915],[-5.82063,54.594385],[-5.818469,54.592965],[-5.818723,54.590436],[-5.817757,54.589905],[-5.824539,54.590441],[-5.8257,54.58877],[-5.827282,54.588384],[-5.825644,54.586106],[-5.823847,54.581766],[-5.825931,54.580869],[-5.829838,54.579955],[-5.831803,54.579141],[-5.83426,54.577326],[-5.834963,54.577786],[-5.838401,54.577314],[-5.84135,54.57867],[-5.842957,54.577461],[-5.849527,54.574039],[-5.854495,54.573487],[-5.855354,54.573126],[-5.855348,54.571698],[-5.857608,54.569854],[-5.857913,54.568345],[-5.86404,54.567091],[-5.867428,54.567727],[-5.87495,54.565886],[-5.882387,54.564487],[-5.890189,54.561868],[-5.890841,54.562415],[-5.892593,54.562496],[-5.897741,54.561565],[-5.899994,54.562801],[-5.904201,54.562855],[-5.907341,54.564132],[-5.905512,54.565261],[-5.909837,54.566891],[-5.913158,54.566754],[-5.913815,54.566034],[-5.911358,54.563325],[-5.910685,54.561393],[-5.915413,54.558627],[-5.918979,54.554831],[-5.926695,54.54939],[-5.932283,54.546552],[-5.930501,54.545263],[-5.932982,54.543803],[-5.934178,54.540281],[-5.936379,54.541529],[-5.942393,54.543756],[-5.943241,54.542347],[-5.945359,54.541394],[-5.946618,54.539633],[-5.946357,54.538377],[-5.950414,54.537391],[-5.950763,54.537622],[-5.954499,54.535976],[-5.957301,54.535457],[-5.958415,54.535885],[-5.958169,54.537385],[-5.960406,54.538752],[-5.961454,54.537646],[-5.963782,54.536587],[-5.9671,54.536174],[-5.968984,54.533528],[-5.972971,54.5328],[-5.974401,54.531475],[-5.975862,54.531771],[-5.977277,54.530826],[-5.978928,54.532498],[-5.978056,54.53427],[-5.979002,54.535395],[-5.981208,54.535953],[-5.983123,54.535324],[-5.985036,54.535154],[-5.986773,54.536716],[-5.98833,54.537375],[-5.98817,54.53858],[-5.990268,54.541776],[-5.991294,54.542276],[-5.994679,54.543004],[-5.997752,54.542336],[-5.99882,54.542403],[-5.999229,54.540774],[-6.000652,54.54073],[-6.000331,54.542452],[-6.001447,54.545513],[-6.003172,54.54479],[-6.005115,54.545901],[-6.005871,54.546749],[-6.008427,54.547507],[-6.01034,54.547314],[-6.011942,54.54782],[-6.017629,54.550906],[-6.019803,54.548684],[-6.022936,54.547176],[-6.02815,54.54574],[-6.029411,54.547279],[-6.031438,54.547738],[-6.033371,54.547192],[-6.035117,54.547762],[-6.036033,54.547276],[-6.038302,54.548502],[-6.042173,54.546852],[-6.046535,54.549341],[-6.048519,54.551334],[-6.054571,54.552831],[-6.058709,54.554292],[-6.0607,54.555201],[-6.061185,54.556376],[-6.06021,54.557926],[-6.059304,54.557968],[-6.054846,54.561078],[-6.051907,54.561672],[-6.050165,54.561389],[-6.049039,54.562199],[-6.046191,54.562865],[-6.043987,54.562794],[-6.041989,54.564175],[-6.043809,54.565684],[-6.044327,54.567145],[-6.04585,54.567675],[-6.045187,54.569793],[-6.043195,54.569926],[-6.042187,54.570965],[-6.043312,54.578187],[-6.045197,54.581776],[-6.044771,54.584307],[-6.043951,54.584646],[-6.044916,54.586231],[-6.046362,54.587334],[-6.046455,54.588299],[-6.04451,54.589991],[-6.043307,54.589901],[-6.041801,54.590583],[-6.040937,54.593629],[-6.041343,54.596297],[-6.045287,54.601165],[-6.045971,54.605507],[-6.046522,54.605973]]]},"properties":{"LAD22CD":"N09000007","LAD22NM":"Lisburn and Castlereagh","BNG_E":138712,"BNG_N":518920,"LONG":-6.03545,"LAT":54.49752,"GlobalID":"5ac8cb70-ffb4-47f6-82b3-937c8e0286b5"},"id":316}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.869265,54.688943],[-5.864148,54.691102],[-5.862076,54.692761],[-5.855767,54.695915],[-5.850953,54.696548],[-5.85176,54.698465],[-5.850534,54.699389],[-5.846882,54.698897],[-5.845973,54.700383],[-5.843171,54.70192],[-5.842954,54.703644],[-5.843349,54.704424],[-5.841716,54.705288],[-5.831018,54.709011],[-5.826122,54.709359],[-5.823767,54.709824],[-5.821352,54.709567],[-5.81926,54.710065],[-5.817111,54.709484],[-5.81273,54.709847],[-5.809926,54.710624],[-5.808742,54.710285],[-5.806682,54.710862],[-5.807562,54.712648],[-5.806665,54.714399],[-5.795342,54.719476],[-5.791263,54.720994],[-5.779671,54.72326],[-5.774096,54.72357],[-5.769389,54.722987],[-5.76675,54.723058],[-5.765551,54.720527],[-5.761628,54.721529],[-5.758,54.722893],[-5.758449,54.724286],[-5.754281,54.725442],[-5.752504,54.725479],[-5.74939,54.726349],[-5.745838,54.728187],[-5.741096,54.733354],[-5.736278,54.736855],[-5.7341,54.738274],[-5.732747,54.737475],[-5.727361,54.738058],[-5.722005,54.741418],[-5.720976,54.741527],[-5.71873,54.743344],[-5.711141,54.745996],[-5.710335,54.749979],[-5.709357,54.752182],[-5.706413,54.755362],[-5.704747,54.755852],[-5.703475,54.75815],[-5.7006,54.760183],[-5.699078,54.760227],[-5.696909,54.763175],[-5.693364,54.765645],[-5.691233,54.766587],[-5.689082,54.767023],[-5.689844,54.768154],[-5.691101,54.768767],[-5.69246,54.770721],[-5.694117,54.771651],[-5.694717,54.773256],[-5.695784,54.774187],[-5.695129,54.774883],[-5.695288,54.778916],[-5.693757,54.783376],[-5.692688,54.783874],[-5.693678,54.786061],[-5.693278,54.789439],[-5.693617,54.791417],[-5.692361,54.793436],[-5.691459,54.800041],[-5.690457,54.801948],[-5.690482,54.802989],[-5.691592,54.805959],[-5.692306,54.806798],[-5.692096,54.807916],[-5.693001,54.809218],[-5.692434,54.809626],[-5.694313,54.811347],[-5.693996,54.811679],[-5.696686,54.813922],[-5.697718,54.815616],[-5.700727,54.818867],[-5.701081,54.820555],[-5.70262,54.822125],[-5.703757,54.824324],[-5.704725,54.824652],[-5.708235,54.829187],[-5.708969,54.831189],[-5.710857,54.832634],[-5.712427,54.835334],[-5.713426,54.835911],[-5.715395,54.837965],[-5.715353,54.838502],[-5.718901,54.841359],[-5.719088,54.842005],[-5.722183,54.844281],[-5.723301,54.84563],[-5.72635,54.84816],[-5.727287,54.848483],[-5.728826,54.847448],[-5.730702,54.847514],[-5.732267,54.848649],[-5.740207,54.852601],[-5.747101,54.855483],[-5.74955,54.856196],[-5.751654,54.856005],[-5.752554,54.85703],[-5.756354,54.857649],[-5.758714,54.858748],[-5.761505,54.858453],[-5.763828,54.859352],[-5.764823,54.858053],[-5.762639,54.854267],[-5.764036,54.853197],[-5.76707,54.852303],[-5.770173,54.852011],[-5.773743,54.853242],[-5.773317,54.854167],[-5.77475,54.855349],[-5.775692,54.855438],[-5.77696,54.856567],[-5.780829,54.858734],[-5.782444,54.857977],[-5.783602,54.856518],[-5.78374,54.854926],[-5.782412,54.852724],[-5.783369,54.85154],[-5.787041,54.850587],[-5.789069,54.851836],[-5.798666,54.852232],[-5.799417,54.852931],[-5.799687,54.854292],[-5.801889,54.854837],[-5.805539,54.857068],[-5.806896,54.8585],[-5.807104,54.859791],[-5.808835,54.861759],[-5.808498,54.862295],[-5.811853,54.867119],[-5.816164,54.869686],[-5.817323,54.870985],[-5.819473,54.872162],[-5.822827,54.87561],[-5.82417,54.876369],[-5.825873,54.876081],[-5.830185,54.87755],[-5.83227,54.877408],[-5.834429,54.878062],[-5.838629,54.881167],[-5.840335,54.88425],[-5.840574,54.886853],[-5.842045,54.888798],[-5.84349,54.889847],[-5.842685,54.891703],[-5.841436,54.892192],[-5.841719,54.895195],[-5.843679,54.899547],[-5.84531,54.900799],[-5.848186,54.901153],[-5.848979,54.900387],[-5.853011,54.900442],[-5.855425,54.899088],[-5.858958,54.898729],[-5.862852,54.899862],[-5.865897,54.90209],[-5.872179,54.904433],[-5.87444,54.904876],[-5.876044,54.905651],[-5.879065,54.907683],[-5.883777,54.913329],[-5.8841,54.914473],[-5.883799,54.916265],[-5.88735,54.918948],[-5.888142,54.922564],[-5.890539,54.926007],[-5.891095,54.928989],[-5.893368,54.931955],[-5.894551,54.934751],[-5.899567,54.940903],[-5.900409,54.942725],[-5.901557,54.943893],[-5.90464,54.945278],[-5.905412,54.946478],[-5.905346,54.948005],[-5.907642,54.949095],[-5.91201,54.952533],[-5.91453,54.956139],[-5.919992,54.961789],[-5.924281,54.963901],[-5.925865,54.965528],[-5.930926,54.968118],[-5.937468,54.969884],[-5.94149,54.970525],[-5.946263,54.970809],[-5.949625,54.97024],[-5.95172,54.968955],[-5.956554,54.969285],[-5.958875,54.970469],[-5.961118,54.973038],[-5.960688,54.974614],[-5.961963,54.976713],[-5.965951,54.979298],[-5.970286,54.981062],[-5.971179,54.981117],[-5.976675,54.980193],[-5.980337,54.979011],[-5.983331,54.97899],[-5.985287,54.979936],[-5.98801,54.981885],[-5.988305,54.983179],[-5.990581,54.984136],[-5.992662,54.986427],[-5.993615,54.988342],[-5.993712,54.989833],[-5.991871,54.991221],[-5.989661,54.992412],[-5.988935,54.994329],[-5.988051,54.998566],[-5.98825,55.000474],[-5.985337,55.003035],[-5.982531,55.003837],[-5.978211,55.007412],[-5.978785,55.009983],[-5.979991,55.011735],[-5.978889,55.013688],[-5.976814,55.015204],[-5.976823,55.017888],[-5.975784,55.020074],[-5.972629,55.022367],[-5.972684,55.024048],[-5.973313,55.02511],[-5.973104,55.031041],[-5.971197,55.034055],[-5.96805,55.037302],[-5.967748,55.038882],[-5.966918,55.039772],[-5.966271,55.042833],[-5.96547,55.043797],[-5.964191,55.044205],[-5.964997,55.045831],[-5.964234,55.048266],[-5.966134,55.050284],[-5.967016,55.052403],[-5.970653,55.053327],[-5.977927,55.056319],[-5.97904,55.055059],[-5.981878,55.053361],[-5.982491,55.051665],[-5.996479,55.044733],[-5.996524,55.043371],[-6.000997,55.043213],[-6.008937,55.042256],[-6.015117,55.03554],[-6.017053,55.035148],[-6.01837,55.037587],[-6.018099,55.038365],[-6.025704,55.036981],[-6.025619,55.035941],[-6.027482,55.034425],[-6.029274,55.033523],[-6.033877,55.026824],[-6.061679,55.010181],[-6.064437,55.009577],[-6.065211,55.00874],[-6.067152,55.008513],[-6.067561,55.007293],[-6.069496,55.006279],[-6.069994,55.005361],[-6.072637,55.003361],[-6.074205,55.002791],[-6.074417,55.001851],[-6.076399,55.001243],[-6.077266,55.000486],[-6.076164,54.995867],[-6.098959,54.983983],[-6.104761,54.98474],[-6.117166,54.98727],[-6.126521,54.986918],[-6.132619,54.988229],[-6.131851,54.988771],[-6.135612,54.990521],[-6.141091,54.993975],[-6.147268,55.00697],[-6.151626,55.007755],[-6.153458,55.006894],[-6.155047,55.008905],[-6.15517,55.011581],[-6.156733,55.01204],[-6.158577,55.011851],[-6.159242,55.012323],[-6.157226,55.014286],[-6.157754,55.015111],[-6.157143,55.016239],[-6.158165,55.01715],[-6.157165,55.019572],[-6.159458,55.023451],[-6.161907,55.025321],[-6.162681,55.026806],[-6.164568,55.027961],[-6.166634,55.031039],[-6.181772,55.034453],[-6.18619,55.026115],[-6.197309,55.028801],[-6.205323,55.029645],[-6.225064,55.019814],[-6.227578,55.017406],[-6.231652,55.016091],[-6.268905,55.010328],[-6.272361,55.008303],[-6.274318,55.007708],[-6.275181,55.006977],[-6.277448,55.006263],[-6.279234,55.006093],[-6.280182,55.004827],[-6.282397,55.005139],[-6.283819,55.004353],[-6.286153,55.004459],[-6.287648,55.005909],[-6.290351,55.006551],[-6.294153,55.007804],[-6.295303,55.007743],[-6.296717,55.008574],[-6.298555,55.008594],[-6.300625,55.009366],[-6.301775,55.010229],[-6.303581,55.009796],[-6.307018,55.009755],[-6.312188,55.008421],[-6.315699,55.006452],[-6.316852,55.007992],[-6.31995,55.008755],[-6.321579,55.010829],[-6.324703,55.010242],[-6.32447,55.007105],[-6.318609,55.003368],[-6.320089,55.002547],[-6.320038,55.001705],[-6.323162,55.00011],[-6.322702,54.999124],[-6.321105,54.99791],[-6.321697,54.996959],[-6.320676,54.995372],[-6.321441,54.994789],[-6.321004,54.993056],[-6.322945,54.992928],[-6.324121,54.988564],[-6.325916,54.987351],[-6.323335,54.984647],[-6.321842,54.981445],[-6.32393,54.979159],[-6.332909,54.98429],[-6.335097,54.986744],[-6.341701,54.986861],[-6.346541,54.988069],[-6.344599,54.984901],[-6.345896,54.984487],[-6.346664,54.983426],[-6.348546,54.982906],[-6.359174,54.981993],[-6.358876,54.98025],[-6.357724,54.979478],[-6.35777,54.977001],[-6.357135,54.975868],[-6.357975,54.975405],[-6.372119,54.974404],[-6.373677,54.975288],[-6.376038,54.975449],[-6.377251,54.978197],[-6.379383,54.979188],[-6.383877,54.980519],[-6.389336,54.979272],[-6.391514,54.981573],[-6.392715,54.981219],[-6.392774,54.977697],[-6.394955,54.97706],[-6.396261,54.975906],[-6.395277,54.970449],[-6.396297,54.970741],[-6.398892,54.970095],[-6.401535,54.966988],[-6.402327,54.966639],[-6.405328,54.966583],[-6.420616,54.967855],[-6.422255,54.972377],[-6.424549,54.972979],[-6.425866,54.97202],[-6.426642,54.968985],[-6.428847,54.967141],[-6.427704,54.96554],[-6.428362,54.96446],[-6.431113,54.963707],[-6.435196,54.9642],[-6.438319,54.965796],[-6.441027,54.96649],[-6.445808,54.964887],[-6.44914,54.964669],[-6.44089,54.955396],[-6.43691,54.953534],[-6.434973,54.953203],[-6.429264,54.950137],[-6.427831,54.948863],[-6.423587,54.950265],[-6.422062,54.949227],[-6.419011,54.945134],[-6.416259,54.944409],[-6.411901,54.944335],[-6.408763,54.940518],[-6.411129,54.938867],[-6.412658,54.938456],[-6.414526,54.93743],[-6.415978,54.937379],[-6.417867,54.938061],[-6.419557,54.936982],[-6.420968,54.936601],[-6.423531,54.937059],[-6.429377,54.936649],[-6.42521,54.918474],[-6.423084,54.91681],[-6.428189,54.916172],[-6.434031,54.918202],[-6.441241,54.919567],[-6.44471,54.922682],[-6.446137,54.922423],[-6.448674,54.922898],[-6.451599,54.92426],[-6.453426,54.923114],[-6.45873,54.922491],[-6.46195,54.923492],[-6.464785,54.922157],[-6.468373,54.924323],[-6.46877,54.924884],[-6.470996,54.924631],[-6.473062,54.923765],[-6.476856,54.921066],[-6.479033,54.922315],[-6.483891,54.919941],[-6.486185,54.919698],[-6.488168,54.921122],[-6.491261,54.922038],[-6.492949,54.921783],[-6.493463,54.920607],[-6.499709,54.919407],[-6.500826,54.918793],[-6.499888,54.917302],[-6.500042,54.91579],[-6.500712,54.915265],[-6.503468,54.914342],[-6.503994,54.912811],[-6.506296,54.911793],[-6.50722,54.908292],[-6.504368,54.90546],[-6.503405,54.900883],[-6.501433,54.898828],[-6.501696,54.896406],[-6.499756,54.894675],[-6.499816,54.892784],[-6.498771,54.889761],[-6.497004,54.88838],[-6.492088,54.886755],[-6.490652,54.885696],[-6.488877,54.883077],[-6.488951,54.881323],[-6.488013,54.878968],[-6.487745,54.87616],[-6.486708,54.875159],[-6.483306,54.874336],[-6.481385,54.868946],[-6.481265,54.867047],[-6.476548,54.861864],[-6.47495,54.856652],[-6.472187,54.853493],[-6.473294,54.850663],[-6.471225,54.845923],[-6.472634,54.843078],[-6.472424,54.841323],[-6.471281,54.840679],[-6.468734,54.840065],[-6.467722,54.839179],[-6.46752,54.835061],[-6.466632,54.833396],[-6.461481,54.829054],[-6.458263,54.824655],[-6.45848,54.823514],[-6.460682,54.822104],[-6.461122,54.821387],[-6.459315,54.818555],[-6.459886,54.816877],[-6.46283,54.815967],[-6.471889,54.812515],[-6.47884,54.794218],[-6.47797,54.783254],[-6.477987,54.780956],[-6.462865,54.784323],[-6.460183,54.78465],[-6.447608,54.784864],[-6.446032,54.786118],[-6.444116,54.786593],[-6.443527,54.787477],[-6.441355,54.786872],[-6.436244,54.786255],[-6.435218,54.787304],[-6.435452,54.788859],[-6.434533,54.789442],[-6.433248,54.788963],[-6.428879,54.785543],[-6.427656,54.785286],[-6.4266,54.784111],[-6.423961,54.785312],[-6.42129,54.786081],[-6.419851,54.785224],[-6.414089,54.783352],[-6.412814,54.783443],[-6.411222,54.782761],[-6.408208,54.783259],[-6.406286,54.781978],[-6.404364,54.781467],[-6.401938,54.782298],[-6.400788,54.782227],[-6.398796,54.781146],[-6.397308,54.780972],[-6.396552,54.77993],[-6.393804,54.779396],[-6.391295,54.779707],[-6.389634,54.779346],[-6.386128,54.779172],[-6.38333,54.780023],[-6.381452,54.782766],[-6.370662,54.785265],[-6.365212,54.788342],[-6.365324,54.790224],[-6.363249,54.791434],[-6.363471,54.79236],[-6.362818,54.79375],[-6.360665,54.796865],[-6.356143,54.797938],[-6.35415,54.797616],[-6.35451,54.798927],[-6.352976,54.799689],[-6.351219,54.799915],[-6.347798,54.801028],[-6.345461,54.801058],[-6.343031,54.799737],[-6.341939,54.79948],[-6.338682,54.801314],[-6.335881,54.800078],[-6.331884,54.799001],[-6.3337,54.797562],[-6.331907,54.797062],[-6.328778,54.795064],[-6.323942,54.791085],[-6.32211,54.790722],[-6.320805,54.791158],[-6.319452,54.794521],[-6.312814,54.792436],[-6.309801,54.790139],[-6.307982,54.791044],[-6.30663,54.792376],[-6.303559,54.793076],[-6.303366,54.794042],[-6.304607,54.795245],[-6.303064,54.796391],[-6.299173,54.795094],[-6.29084,54.790142],[-6.289271,54.789709],[-6.285094,54.790072],[-6.2831,54.791652],[-6.281403,54.791866],[-6.277033,54.79034],[-6.274528,54.790815],[-6.267578,54.79126],[-6.26408,54.790859],[-6.264693,54.792023],[-6.26946,54.796001],[-6.269151,54.798842],[-6.268635,54.798967],[-6.265233,54.79806],[-6.261821,54.797549],[-6.258101,54.796336],[-6.255034,54.795971],[-6.249887,54.793583],[-6.243844,54.793215],[-6.241679,54.7925],[-6.239419,54.792683],[-6.237296,54.791426],[-6.235164,54.788867],[-6.232855,54.78838],[-6.228171,54.788534],[-6.223954,54.790518],[-6.221964,54.790161],[-6.215996,54.789929],[-6.213649,54.79043],[-6.215422,54.793575],[-6.213272,54.79394],[-6.211548,54.793244],[-6.207809,54.794984],[-6.207187,54.796001],[-6.204756,54.795631],[-6.203069,54.796853],[-6.199823,54.798061],[-6.199425,54.801296],[-6.198532,54.801277],[-6.197718,54.80299],[-6.199951,54.806007],[-6.197997,54.80637],[-6.195871,54.805667],[-6.191978,54.806479],[-6.190053,54.806647],[-6.185985,54.806413],[-6.18388,54.807266],[-6.182226,54.807509],[-6.180215,54.808429],[-6.176887,54.808084],[-6.175422,54.809037],[-6.172988,54.811921],[-6.169038,54.811641],[-6.168056,54.810803],[-6.163316,54.810688],[-6.154455,54.809845],[-6.153548,54.810703],[-6.150493,54.810312],[-6.144763,54.811848],[-6.140979,54.810549],[-6.144818,54.808167],[-6.143277,54.807071],[-6.140717,54.806401],[-6.137151,54.806096],[-6.134838,54.806253],[-6.132748,54.807276],[-6.129665,54.806469],[-6.125857,54.807602],[-6.121139,54.808316],[-6.120209,54.809033],[-6.108401,54.805993],[-6.10907,54.803153],[-6.108644,54.801393],[-6.10364,54.792627],[-6.100872,54.793875],[-6.098735,54.794181],[-6.090879,54.793816],[-6.087927,54.794155],[-6.082389,54.793034],[-6.081054,54.793136],[-6.079511,54.792266],[-6.073997,54.791749],[-6.074768,54.794111],[-6.077279,54.794782],[-6.080818,54.796363],[-6.067909,54.797241],[-6.064944,54.796618],[-6.056262,54.793868],[-6.054617,54.79292],[-6.04978,54.791833],[-6.049698,54.792739],[-6.050571,54.794246],[-6.051024,54.79635],[-6.055095,54.798337],[-6.019557,54.800454],[-6.010836,54.800151],[-6.01199,54.791865],[-6.013096,54.788364],[-6.010396,54.788162],[-6.006883,54.787311],[-6.00463,54.785807],[-6.00207,54.785045],[-6.000641,54.785044],[-5.998459,54.784184],[-5.993295,54.781144],[-5.993235,54.779673],[-5.990736,54.778476],[-5.988714,54.776022],[-5.98782,54.774049],[-5.982634,54.776023],[-5.982384,54.7774],[-5.978621,54.778611],[-5.975997,54.779991],[-5.976735,54.780793],[-5.975517,54.781782],[-5.975961,54.782802],[-5.974917,54.783282],[-5.97348,54.782409],[-5.972615,54.782771],[-5.970698,54.782116],[-5.970615,54.78069],[-5.968843,54.78128],[-5.964936,54.77831],[-5.965214,54.777314],[-5.96675,54.776021],[-5.966258,54.774713],[-5.962896,54.773662],[-5.95678,54.776954],[-5.94958,54.780211],[-5.945884,54.778227],[-5.943481,54.775927],[-5.94148,54.773267],[-5.939262,54.774321],[-5.932707,54.774845],[-5.930092,54.774442],[-5.92811,54.773393],[-5.926711,54.773753],[-5.923044,54.772338],[-5.919248,54.773699],[-5.910354,54.778327],[-5.90793,54.779022],[-5.907294,54.778387],[-5.903412,54.778753],[-5.903302,54.779667],[-5.90179,54.780348],[-5.900845,54.779683],[-5.899797,54.778085],[-5.896664,54.775861],[-5.893309,54.774226],[-5.88845,54.772452],[-5.892646,54.771351],[-5.894363,54.770553],[-5.899128,54.769563],[-5.898671,54.76904],[-5.903476,54.767572],[-5.902709,54.766582],[-5.906938,54.765822],[-5.906106,54.764566],[-5.902869,54.762092],[-5.897848,54.758991],[-5.908185,54.754845],[-5.906187,54.750589],[-5.89754,54.748889],[-5.893331,54.745342],[-5.894935,54.743509],[-5.895454,54.742171],[-5.89582,54.738787],[-5.89749,54.738659],[-5.905382,54.724647],[-5.911061,54.720035],[-5.911679,54.716795],[-5.911065,54.71437],[-5.909869,54.713336],[-5.907857,54.712746],[-5.900973,54.711236],[-5.902795,54.708819],[-5.901873,54.70861],[-5.898069,54.708689],[-5.897897,54.708991],[-5.889931,54.71053],[-5.889562,54.709425],[-5.891888,54.708205],[-5.891639,54.706236],[-5.888965,54.70288],[-5.889136,54.700916],[-5.890951,54.69876],[-5.890656,54.695883],[-5.888048,54.694558],[-5.886938,54.693404],[-5.882906,54.695596],[-5.876729,54.692323],[-5.875781,54.692914],[-5.869365,54.689556],[-5.869265,54.688943]]]},"properties":{"LAD22CD":"N09000008","LAD22NM":"Mid and East Antrim","BNG_E":133943,"BNG_N":560151,"LONG":-6.14645,"LAT":54.86462,"GlobalID":"3bca82c4-7e80-4284-a912-f07dbdeaf20d"},"id":317}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.500826,54.918793],[-6.506427,54.92399],[-6.508233,54.926937],[-6.510658,54.929041],[-6.513535,54.932724],[-6.516014,54.934814],[-6.517621,54.937546],[-6.518666,54.940863],[-6.522056,54.942205],[-6.525282,54.945752],[-6.527472,54.946848],[-6.530692,54.947504],[-6.535041,54.951154],[-6.538524,54.952047],[-6.539644,54.949195],[-6.539541,54.944707],[-6.541245,54.945082],[-6.541359,54.94389],[-6.539573,54.942159],[-6.541834,54.939928],[-6.542769,54.937763],[-6.542123,54.937151],[-6.540142,54.936527],[-6.539992,54.935837],[-6.537757,54.933564],[-6.542852,54.932732],[-6.545433,54.934453],[-6.547334,54.936832],[-6.548306,54.935869],[-6.551824,54.93709],[-6.552981,54.935902],[-6.556073,54.937102],[-6.557499,54.936105],[-6.558435,54.931207],[-6.560584,54.931602],[-6.561524,54.932263],[-6.56673,54.932332],[-6.566911,54.931823],[-6.574892,54.927925],[-6.576882,54.929829],[-6.580724,54.93012],[-6.580921,54.9293],[-6.584053,54.925759],[-6.584494,54.923872],[-6.585947,54.923546],[-6.588609,54.927265],[-6.589419,54.927657],[-6.592554,54.928108],[-6.594355,54.930307],[-6.597401,54.93074],[-6.600816,54.93214],[-6.601072,54.932895],[-6.606497,54.931976],[-6.610006,54.932197],[-6.610769,54.933086],[-6.61226,54.933287],[-6.612904,54.934395],[-6.615907,54.933847],[-6.618401,54.93824],[-6.636412,54.937265],[-6.644366,54.93737],[-6.644726,54.934917],[-6.64569,54.93401],[-6.644699,54.932611],[-6.645396,54.931218],[-6.648182,54.929781],[-6.648342,54.928842],[-6.657854,54.922432],[-6.668766,54.924048],[-6.670252,54.923405],[-6.66842,54.920697],[-6.672187,54.918902],[-6.675869,54.918431],[-6.68029,54.920009],[-6.686994,54.918518],[-6.690384,54.917301],[-6.691465,54.916298],[-6.692751,54.916866],[-6.695355,54.918993],[-6.698204,54.918877],[-6.699515,54.921674],[-6.702466,54.923058],[-6.703213,54.923747],[-6.702778,54.927402],[-6.706331,54.928933],[-6.707275,54.930895],[-6.708388,54.931789],[-6.72096,54.930786],[-6.72555,54.931074],[-6.739018,54.928835],[-6.738551,54.925378],[-6.741862,54.924713],[-6.743956,54.923922],[-6.747927,54.923596],[-6.751019,54.922196],[-6.753766,54.921647],[-6.757788,54.921741],[-6.76594,54.917746],[-6.767743,54.917317],[-6.76897,54.91623],[-6.771797,54.915415],[-6.774057,54.915768],[-6.776712,54.91376],[-6.776536,54.912653],[-6.775092,54.910979],[-6.778126,54.909329],[-6.775958,54.907703],[-6.775202,54.907549],[-6.773555,54.905762],[-6.76975,54.9044],[-6.765902,54.904885],[-6.764332,54.905718],[-6.76127,54.906133],[-6.758443,54.90308],[-6.759139,54.901611],[-6.759267,54.898666],[-6.762755,54.896752],[-6.764742,54.8937],[-6.764414,54.890341],[-6.765014,54.888726],[-6.768588,54.886173],[-6.768393,54.885577],[-6.769993,54.884073],[-6.771393,54.878122],[-6.76912,54.875664],[-6.76913,54.873204],[-6.770776,54.871818],[-6.774429,54.87236],[-6.777402,54.872403],[-6.783037,54.870541],[-6.785839,54.870026],[-6.784063,54.868625],[-6.782913,54.866008],[-6.782483,54.864284],[-6.784124,54.863481],[-6.783266,54.862147],[-6.789432,54.859048],[-6.791082,54.857592],[-6.793074,54.856852],[-6.794752,54.853962],[-6.803445,54.846598],[-6.818752,54.845553],[-6.834914,54.849769],[-6.851795,54.85097],[-6.85686,54.857283],[-6.858153,54.857622],[-6.863415,54.856835],[-6.86536,54.856818],[-6.887476,54.853034],[-6.887282,54.834884],[-6.887859,54.831834],[-6.890731,54.831509],[-6.89326,54.830237],[-6.898797,54.824418],[-6.899858,54.823852],[-6.907725,54.822685],[-6.910565,54.821917],[-6.912936,54.820418],[-6.91201,54.816906],[-6.912688,54.813476],[-6.915533,54.811065],[-6.917111,54.807701],[-6.922319,54.804678],[-6.923294,54.802586],[-6.922534,54.801595],[-6.918494,54.799869],[-6.916527,54.798613],[-6.906707,54.791289],[-6.903024,54.786531],[-6.904282,54.783289],[-6.911161,54.777815],[-6.913042,54.776941],[-6.9173,54.776196],[-6.920672,54.775116],[-6.922964,54.773168],[-6.92855,54.772829],[-6.940873,54.773633],[-6.936837,54.766225],[-6.937894,54.762053],[-6.940105,54.758068],[-6.941622,54.752238],[-6.949213,54.750712],[-6.959039,54.747695],[-6.968671,54.74431],[-6.976503,54.743237],[-6.985442,54.743157],[-6.991427,54.741204],[-6.996314,54.738185],[-7.001355,54.73396],[-7.007436,54.731348],[-7.003615,54.723629],[-7.011939,54.718046],[-7.011065,54.71715],[-7.010145,54.715019],[-7.008722,54.714601],[-7.003714,54.71412],[-7.0024,54.712281],[-7.002173,54.710639],[-7.001092,54.710014],[-6.998429,54.709851],[-6.997492,54.709358],[-6.995076,54.705878],[-6.995904,54.703813],[-6.996751,54.702947],[-6.999915,54.702021],[-7.00149,54.700255],[-7.001517,54.69917],[-6.999133,54.698791],[-6.998443,54.697512],[-6.994652,54.695256],[-6.994612,54.694187],[-6.995742,54.692559],[-6.998431,54.691188],[-6.998541,54.687331],[-7.004828,54.683287],[-7.004057,54.68094],[-7.003224,54.68005],[-7.00074,54.679842],[-6.999936,54.678358],[-7.004065,54.675532],[-7.004098,54.67278],[-7.00346,54.671522],[-6.991724,54.668006],[-6.989663,54.668138],[-6.988621,54.667602],[-6.987093,54.665851],[-6.985697,54.66517],[-6.982614,54.665197],[-6.981192,54.664496],[-6.978974,54.664149],[-6.974003,54.664447],[-6.970247,54.663751],[-6.972075,54.66309],[-6.97219,54.660979],[-6.975489,54.658694],[-6.977945,54.657955],[-6.978335,54.657369],[-6.983843,54.656891],[-6.984462,54.655491],[-6.98911,54.652823],[-6.989322,54.651978],[-6.98652,54.650746],[-6.986437,54.650175],[-6.984794,54.649429],[-6.983873,54.648045],[-6.980788,54.647937],[-6.979224,54.645925],[-6.979265,54.644459],[-6.977889,54.643281],[-6.977817,54.642215],[-6.976673,54.641761],[-6.977164,54.640062],[-6.975997,54.639183],[-6.978162,54.637091],[-6.978021,54.635493],[-6.976702,54.634959],[-6.97445,54.634658],[-6.973771,54.633865],[-6.973948,54.632272],[-6.973457,54.631232],[-6.970997,54.631207],[-6.969109,54.629945],[-6.968652,54.629018],[-6.966567,54.62752],[-6.966615,54.626515],[-6.964336,54.623718],[-6.963053,54.622717],[-6.960809,54.622052],[-6.961755,54.620816],[-6.961922,54.619697],[-6.963358,54.618432],[-6.963169,54.617798],[-6.961496,54.617472],[-6.961028,54.616352],[-6.963103,54.615012],[-6.962244,54.613576],[-6.962124,54.612397],[-6.959337,54.611033],[-6.956808,54.611106],[-6.955843,54.609484],[-6.948867,54.60803],[-6.949008,54.607424],[-6.951667,54.605367],[-6.962721,54.600025],[-6.967824,54.597131],[-6.966588,54.595716],[-6.965415,54.593156],[-6.963969,54.588566],[-6.970576,54.586979],[-6.97052,54.579622],[-6.975204,54.579517],[-6.979262,54.580292],[-6.979744,54.58065],[-6.986388,54.581873],[-6.987026,54.581255],[-6.988656,54.5821],[-6.989446,54.58153],[-6.987209,54.580318],[-6.987243,54.579287],[-6.983847,54.579241],[-6.981423,54.578236],[-6.982945,54.575612],[-6.980736,54.57442],[-6.978566,54.573966],[-6.977295,54.574189],[-6.97539,54.573609],[-6.973728,54.573758],[-6.9731,54.571732],[-6.970782,54.570744],[-6.970267,54.567513],[-6.971538,54.566978],[-6.973836,54.56719],[-6.975715,54.566266],[-6.978938,54.563513],[-6.979274,54.561344],[-6.981853,54.560406],[-6.983357,54.558436],[-6.985676,54.558149],[-6.98662,54.556481],[-6.98585,54.555367],[-6.984492,54.555157],[-6.982484,54.554159],[-6.980844,54.551749],[-6.979309,54.550779],[-6.976465,54.549727],[-6.972379,54.548974],[-6.973596,54.547874],[-6.973671,54.545126],[-6.975407,54.543727],[-6.977728,54.543317],[-6.980151,54.542357],[-6.981014,54.54157],[-6.989982,54.536598],[-6.992004,54.535903],[-6.995242,54.536543],[-6.996113,54.534128],[-6.997527,54.53292],[-7.000967,54.532273],[-7.003614,54.530586],[-7.004965,54.530377],[-7.006746,54.528445],[-7.00716,54.527059],[-7.009658,54.52466],[-7.010665,54.525197],[-7.017249,54.525497],[-7.019882,54.524422],[-7.022799,54.523683],[-7.023995,54.524475],[-7.027183,54.524927],[-7.02995,54.525889],[-7.033249,54.523456],[-7.033392,54.521702],[-7.034447,54.520574],[-7.037112,54.519109],[-7.040117,54.517982],[-7.038429,54.51418],[-7.041281,54.512873],[-7.040185,54.505692],[-7.041688,54.505339],[-7.044884,54.505824],[-7.047822,54.506699],[-7.050648,54.50636],[-7.051381,54.505841],[-7.051327,54.504591],[-7.05269,54.504647],[-7.054048,54.503266],[-7.052534,54.501572],[-7.059022,54.502692],[-7.066648,54.506615],[-7.068171,54.504253],[-7.071101,54.503589],[-7.072029,54.502877],[-7.073774,54.502839],[-7.072983,54.504995],[-7.073424,54.506423],[-7.075651,54.505417],[-7.077072,54.505307],[-7.077838,54.504562],[-7.079759,54.505123],[-7.083006,54.504983],[-7.085235,54.50521],[-7.090502,54.50372],[-7.092351,54.501624],[-7.094838,54.500754],[-7.098401,54.500224],[-7.100221,54.500398],[-7.100869,54.499082],[-7.102647,54.498802],[-7.104817,54.496567],[-7.10391,54.495471],[-7.104955,54.494838],[-7.105318,54.493295],[-7.108007,54.492619],[-7.10932,54.49014],[-7.107814,54.487109],[-7.109691,54.485566],[-7.111561,54.485187],[-7.112667,54.484434],[-7.114334,54.485143],[-7.116481,54.485453],[-7.117673,54.486169],[-7.122465,54.486907],[-7.123195,54.486139],[-7.123323,54.484659],[-7.119696,54.483493],[-7.11683,54.480324],[-7.118643,54.478679],[-7.119163,54.476989],[-7.12201,54.475526],[-7.125532,54.475175],[-7.127845,54.476027],[-7.13035,54.476406],[-7.132334,54.477816],[-7.136046,54.481448],[-7.140389,54.480167],[-7.142505,54.478487],[-7.1444,54.479409],[-7.148051,54.478434],[-7.150428,54.478289],[-7.151679,54.47757],[-7.152559,54.476157],[-7.155509,54.473259],[-7.160994,54.472583],[-7.16783,54.476466],[-7.171426,54.474302],[-7.17368,54.473861],[-7.177675,54.474303],[-7.179172,54.474773],[-7.178821,54.475461],[-7.18209,54.475423],[-7.184714,54.474393],[-7.186094,54.472812],[-7.188354,54.472625],[-7.196331,54.477327],[-7.20161,54.477519],[-7.203702,54.477964],[-7.203706,54.476548],[-7.2017,54.473871],[-7.199653,54.473149],[-7.198648,54.471971],[-7.197892,54.469127],[-7.19946,54.466328],[-7.201972,54.46635],[-7.208381,54.467087],[-7.210811,54.468276],[-7.213208,54.46642],[-7.214889,54.467312],[-7.216452,54.467619],[-7.216875,54.466621],[-7.216543,54.465269],[-7.219037,54.465413],[-7.220288,54.465964],[-7.223861,54.464999],[-7.22522,54.463282],[-7.226825,54.462411],[-7.226152,54.461177],[-7.228132,54.460721],[-7.229453,54.458231],[-7.232231,54.458326],[-7.234502,54.459147],[-7.23662,54.454577],[-7.242152,54.456105],[-7.244337,54.454258],[-7.247143,54.453646],[-7.250259,54.452183],[-7.251606,54.452168],[-7.253731,54.451077],[-7.259155,54.452772],[-7.261707,54.453808],[-7.263776,54.455192],[-7.26406,54.45733],[-7.265797,54.4583],[-7.267672,54.458837],[-7.269565,54.458829],[-7.271477,54.460127],[-7.273947,54.459207],[-7.271741,54.458256],[-7.271646,54.457074],[-7.27066,54.456379],[-7.270226,54.455019],[-7.272236,54.453765],[-7.274235,54.454434],[-7.276129,54.451675],[-7.280001,54.450913],[-7.283413,54.45099],[-7.285322,54.451504],[-7.288297,54.450796],[-7.289076,54.450325],[-7.289006,54.448677],[-7.287683,54.447627],[-7.288636,54.446161],[-7.29256,54.446036],[-7.294205,54.444759],[-7.294363,54.44396],[-7.295645,54.443635],[-7.297696,54.443773],[-7.299845,54.443361],[-7.302979,54.443178],[-7.304311,54.443649],[-7.305784,54.443261],[-7.307059,54.443807],[-7.308819,54.443216],[-7.312167,54.44337],[-7.314041,54.442587],[-7.3159,54.442385],[-7.318276,54.443053],[-7.320766,54.444951],[-7.32316,54.444914],[-7.325244,54.443819],[-7.327057,54.443874],[-7.330666,54.445041],[-7.335511,54.444951],[-7.341365,54.444055],[-7.360061,54.439651],[-7.36637,54.437723],[-7.367836,54.437592],[-7.362772,54.43212],[-7.360814,54.425341],[-7.35857,54.422117],[-7.360818,54.421406],[-7.362219,54.419927],[-7.35994,54.418334],[-7.357923,54.418082],[-7.351031,54.416197],[-7.347645,54.413131],[-7.348595,54.411259],[-7.346367,54.409695],[-7.345472,54.408605],[-7.343418,54.408781],[-7.339286,54.407671],[-7.336936,54.405963],[-7.332467,54.405067],[-7.332353,54.403892],[-7.333705,54.40216],[-7.332359,54.400582],[-7.331781,54.398707],[-7.32997,54.398217],[-7.32986,54.397616],[-7.331212,54.396297],[-7.334014,54.396276],[-7.334701,54.394933],[-7.338535,54.392461],[-7.337778,54.389817],[-7.336459,54.388411],[-7.336317,54.387614],[-7.338163,54.386107],[-7.339989,54.38567],[-7.341688,54.384642],[-7.340803,54.383262],[-7.336041,54.381327],[-7.335742,54.380362],[-7.333194,54.379706],[-7.332223,54.378658],[-7.332958,54.377194],[-7.33173,54.37408],[-7.33525,54.371773],[-7.333814,54.371742],[-7.330829,54.370407],[-7.3263,54.369796],[-7.324401,54.370129],[-7.322175,54.369437],[-7.322217,54.368544],[-7.318445,54.369634],[-7.317383,54.370744],[-7.315395,54.371335],[-7.311816,54.371268],[-7.310622,54.370474],[-7.309919,54.368752],[-7.308719,54.368232],[-7.30542,54.368217],[-7.303555,54.367494],[-7.30143,54.368436],[-7.301999,54.369163],[-7.29823,54.368771],[-7.293639,54.36988],[-7.290645,54.370296],[-7.288486,54.371953],[-7.285896,54.371684],[-7.28424,54.372579],[-7.281352,54.371665],[-7.280485,54.37075],[-7.280144,54.369146],[-7.279379,54.368097],[-7.277331,54.366707],[-7.276857,54.364789],[-7.277115,54.363687],[-7.275404,54.36215],[-7.272037,54.361193],[-7.272877,54.35935],[-7.274654,54.357508],[-7.272275,54.356133],[-7.271545,54.353894],[-7.272163,54.351808],[-7.272125,54.349022],[-7.271554,54.347656],[-7.272601,54.346166],[-7.27305,54.344696],[-7.271586,54.34355],[-7.270092,54.343313],[-7.269127,54.342415],[-7.2666,54.341414],[-7.261979,54.340524],[-7.262064,54.339175],[-7.263374,54.338402],[-7.263651,54.336821],[-7.259563,54.333759],[-7.259333,54.333104],[-7.25409,54.332273],[-7.253386,54.331055],[-7.251814,54.33065],[-7.250665,54.329725],[-7.248126,54.328879],[-7.247086,54.327094],[-7.243706,54.32741],[-7.242097,54.328115],[-7.241003,54.327053],[-7.237789,54.325291],[-7.236196,54.325661],[-7.234949,54.326938],[-7.233012,54.327089],[-7.229571,54.326839],[-7.227954,54.327072],[-7.227438,54.330406],[-7.226208,54.332136],[-7.22429,54.332865],[-7.223671,54.333899],[-7.221899,54.334142],[-7.21942,54.333743],[-7.217365,54.334505],[-7.215973,54.334383],[-7.212321,54.33482],[-7.209497,54.335571],[-7.207808,54.336725],[-7.206042,54.337102],[-7.203486,54.33689],[-7.20164,54.337468],[-7.202898,54.341129],[-7.201802,54.341869],[-7.195191,54.342066],[-7.194012,54.340872],[-7.190641,54.33925],[-7.189671,54.337744],[-7.185682,54.339181],[-7.184412,54.339929],[-7.182475,54.339919],[-7.175809,54.338575],[-7.174417,54.337891],[-7.1714,54.337834],[-7.167249,54.33643],[-7.165296,54.33652],[-7.163576,54.337117],[-7.157651,54.336083],[-7.154712,54.335162],[-7.153348,54.335394],[-7.149792,54.337317],[-7.146707,54.339826],[-7.144994,54.340004],[-7.141973,54.339714],[-7.141135,54.341365],[-7.141175,54.342592],[-7.138186,54.344333],[-7.135853,54.345066],[-7.130932,54.345038],[-7.128763,54.345649],[-7.127654,54.346545],[-7.12766,54.347821],[-7.126214,54.349735],[-7.124543,54.350844],[-7.121999,54.351576],[-7.120181,54.351527],[-7.119724,54.352129],[-7.116909,54.352961],[-7.114406,54.352635],[-7.112363,54.353024],[-7.110354,54.354808],[-7.107473,54.354973],[-7.104229,54.356093],[-7.103443,54.360932],[-7.109913,54.365756],[-7.110686,54.367108],[-7.110555,54.368409],[-7.106909,54.368081],[-7.105241,54.36952],[-7.099525,54.372254],[-7.092325,54.374977],[-7.08901,54.377033],[-7.085335,54.378729],[-7.08553,54.380457],[-7.084648,54.381724],[-7.082241,54.382539],[-7.081043,54.383669],[-7.076821,54.385721],[-7.073254,54.388441],[-7.07155,54.390305],[-7.072235,54.392238],[-7.071468,54.392466],[-7.072119,54.393805],[-7.070921,54.395472],[-7.066285,54.398519],[-7.064492,54.39945],[-7.061792,54.402398],[-7.060504,54.405109],[-7.0582,54.406413],[-7.057017,54.408431],[-7.057605,54.408941],[-7.058178,54.411108],[-7.055774,54.410164],[-7.054183,54.41246],[-7.046962,54.414267],[-7.046113,54.414742],[-7.043493,54.415083],[-7.042462,54.41704],[-7.040462,54.418099],[-7.039014,54.417708],[-7.030587,54.42128],[-7.0271,54.419791],[-7.026623,54.419042],[-7.022936,54.417899],[-7.020419,54.418029],[-7.020659,54.416476],[-7.017414,54.41405],[-7.015833,54.414512],[-7.017384,54.415841],[-7.015244,54.415833],[-7.014237,54.417049],[-7.012448,54.416144],[-7.007651,54.415123],[-7.005305,54.413236],[-7.002488,54.41364],[-7.001453,54.413322],[-6.999611,54.410423],[-7.001257,54.410936],[-7.002838,54.409933],[-7.002989,54.408592],[-7.001093,54.40784],[-7.001005,54.406676],[-6.996938,54.40668],[-6.996689,54.405459],[-6.994844,54.405236],[-6.992353,54.406587],[-6.988633,54.407404],[-6.988956,54.408015],[-6.990834,54.407875],[-6.990078,54.409425],[-6.988591,54.408909],[-6.985538,54.409459],[-6.982938,54.409619],[-6.98152,54.408592],[-6.981893,54.407709],[-6.978211,54.406495],[-6.977508,54.405985],[-6.97764,54.403543],[-6.979254,54.401958],[-6.976854,54.400401],[-6.97401,54.400351],[-6.972586,54.401037],[-6.967962,54.401448],[-6.965594,54.400541],[-6.963988,54.399126],[-6.960055,54.397981],[-6.959702,54.397525],[-6.960066,54.395291],[-6.959341,54.394592],[-6.96072,54.393766],[-6.960519,54.392339],[-6.956626,54.391355],[-6.949856,54.390251],[-6.947957,54.390394],[-6.946656,54.391413],[-6.944929,54.391193],[-6.944593,54.389341],[-6.946417,54.387746],[-6.944766,54.385991],[-6.942509,54.38533],[-6.941039,54.384401],[-6.939628,54.384636],[-6.938829,54.383232],[-6.937625,54.383379],[-6.934408,54.384734],[-6.931851,54.383852],[-6.930013,54.383965],[-6.928045,54.38308],[-6.924627,54.382968],[-6.924666,54.38255],[-6.927241,54.381561],[-6.929552,54.381812],[-6.929122,54.380625],[-6.929749,54.37997],[-6.931242,54.380405],[-6.934035,54.380004],[-6.933592,54.377931],[-6.931719,54.375915],[-6.930416,54.376604],[-6.928314,54.376977],[-6.927001,54.375967],[-6.925856,54.377596],[-6.922924,54.378812],[-6.918129,54.378055],[-6.917273,54.376961],[-6.914154,54.37588],[-6.911916,54.374622],[-6.911958,54.37351],[-6.912932,54.373185],[-6.913224,54.371946],[-6.909835,54.371052],[-6.907584,54.369514],[-6.909739,54.367232],[-6.910653,54.367279],[-6.911574,54.365595],[-6.909685,54.362638],[-6.908212,54.361272],[-6.905646,54.360636],[-6.906523,54.360065],[-6.905519,54.357642],[-6.90575,54.356573],[-6.907112,54.3554],[-6.90678,54.353409],[-6.907868,54.351875],[-6.907249,54.350527],[-6.905002,54.3497],[-6.90101,54.349685],[-6.899258,54.350731],[-6.893996,54.351251],[-6.89146,54.349686],[-6.888404,54.349019],[-6.888476,54.348335],[-6.887309,54.346923],[-6.881569,54.346449],[-6.877919,54.34687],[-6.876924,54.34667],[-6.877322,54.345485],[-6.876378,54.343936],[-6.876623,54.342456],[-6.875146,54.341744],[-6.876118,54.341212],[-6.87538,54.340214],[-6.876558,54.339531],[-6.876452,54.338665],[-6.874694,54.338071],[-6.874421,54.336534],[-6.873126,54.334918],[-6.871382,54.334408],[-6.869937,54.333361],[-6.86891,54.332007],[-6.864807,54.330191],[-6.86304,54.330658],[-6.860057,54.330928],[-6.856597,54.329765],[-6.854908,54.329517],[-6.854817,54.330885],[-6.852513,54.332287],[-6.850032,54.33255],[-6.848449,54.333049],[-6.844661,54.33279],[-6.841709,54.333557],[-6.840398,54.335501],[-6.838545,54.335398],[-6.837763,54.335893],[-6.837637,54.337395],[-6.835942,54.338881],[-6.835731,54.343782],[-6.832681,54.346609],[-6.832128,54.347669],[-6.832265,54.349151],[-6.833503,54.351681],[-6.8315,54.354335],[-6.829245,54.356349],[-6.829167,54.357204],[-6.827818,54.358323],[-6.827727,54.359977],[-6.826403,54.360581],[-6.825342,54.360163],[-6.823325,54.361508],[-6.822316,54.36011],[-6.821092,54.361668],[-6.820633,54.363424],[-6.821354,54.364255],[-6.816348,54.365233],[-6.814767,54.366262],[-6.815881,54.367245],[-6.815057,54.368458],[-6.813699,54.368586],[-6.813624,54.372128],[-6.811128,54.371958],[-6.809823,54.373034],[-6.813223,54.373428],[-6.812262,54.375301],[-6.809958,54.375653],[-6.808858,54.376842],[-6.809191,54.377963],[-6.806848,54.378377],[-6.805553,54.379713],[-6.806101,54.381091],[-6.805229,54.382028],[-6.806064,54.383184],[-6.805636,54.384116],[-6.807532,54.385397],[-6.808151,54.386345],[-6.805206,54.39037],[-6.807305,54.391855],[-6.806674,54.39362],[-6.807133,54.39526],[-6.808747,54.397368],[-6.808089,54.399296],[-6.805617,54.399223],[-6.806369,54.400664],[-6.805264,54.400908],[-6.803343,54.402204],[-6.801627,54.402592],[-6.801512,54.406138],[-6.800405,54.407457],[-6.800671,54.40848],[-6.799061,54.409258],[-6.797751,54.408731],[-6.797654,54.410621],[-6.795825,54.412615],[-6.795197,54.414697],[-6.793127,54.415536],[-6.787651,54.415776],[-6.78561,54.415461],[-6.785114,54.41411],[-6.778967,54.413789],[-6.774683,54.414254],[-6.771835,54.414061],[-6.770313,54.413008],[-6.770001,54.411471],[-6.768989,54.410473],[-6.764505,54.408405],[-6.763331,54.407378],[-6.758621,54.406836],[-6.756786,54.407169],[-6.753869,54.40913],[-6.751141,54.409481],[-6.749839,54.410849],[-6.748024,54.41048],[-6.747569,54.409577],[-6.74579,54.408847],[-6.741757,54.409526],[-6.736828,54.409397],[-6.734816,54.40891],[-6.731372,54.407044],[-6.730095,54.405478],[-6.731793,54.404776],[-6.731557,54.402974],[-6.729147,54.401762],[-6.722908,54.401701],[-6.721044,54.401951],[-6.718249,54.402825],[-6.71598,54.402935],[-6.713407,54.404574],[-6.711012,54.403993],[-6.709559,54.406447],[-6.706311,54.407049],[-6.705402,54.407858],[-6.704933,54.409882],[-6.706715,54.412377],[-6.706762,54.41393],[-6.705507,54.414822],[-6.701556,54.416623],[-6.701796,54.418315],[-6.705287,54.421092],[-6.704923,54.424539],[-6.704299,54.425716],[-6.704749,54.42682],[-6.703554,54.42772],[-6.703742,54.428479],[-6.701361,54.429859],[-6.697491,54.429044],[-6.694742,54.429697],[-6.694945,54.430939],[-6.694223,54.432605],[-6.695389,54.43504],[-6.697195,54.435417],[-6.698947,54.437504],[-6.698115,54.439575],[-6.698369,54.441365],[-6.697142,54.442996],[-6.692647,54.44473],[-6.689627,54.444292],[-6.687114,54.444573],[-6.682959,54.446827],[-6.682523,54.44823],[-6.681201,54.449554],[-6.678311,54.449195],[-6.675429,54.450589],[-6.673687,54.452394],[-6.67255,54.452922],[-6.670775,54.455498],[-6.671681,54.458275],[-6.6699,54.460368],[-6.668808,54.462976],[-6.666904,54.463595],[-6.661216,54.464451],[-6.659447,54.466767],[-6.65745,54.46774],[-6.651279,54.469709],[-6.650115,54.471277],[-6.649995,54.473528],[-6.652119,54.475578],[-6.653517,54.478392],[-6.652795,54.47975],[-6.649896,54.481625],[-6.651265,54.483992],[-6.650397,54.4856],[-6.6516,54.486794],[-6.649751,54.487573],[-6.646209,54.48785],[-6.641488,54.489968],[-6.640598,54.490694],[-6.640586,54.492772],[-6.639151,54.494634],[-6.638753,54.497292],[-6.635867,54.497581],[-6.634533,54.498139],[-6.631894,54.500361],[-6.631025,54.5033],[-6.629076,54.504326],[-6.626372,54.50461],[-6.624025,54.502902],[-6.622486,54.502696],[-6.618596,54.504824],[-6.610991,54.507341],[-6.608633,54.507005],[-6.605521,54.507046],[-6.604687,54.506789],[-6.603117,54.504573],[-6.603505,54.50353],[-6.602604,54.503135],[-6.597729,54.502842],[-6.592276,54.503688],[-6.591537,54.504249],[-6.591109,54.506],[-6.590045,54.50727],[-6.587601,54.508214],[-6.582312,54.509568],[-6.580258,54.51057],[-6.578695,54.511803],[-6.577867,54.513173],[-6.57932,54.514542],[-6.579768,54.516869],[-6.579405,54.517851],[-6.542193,54.542182],[-6.449421,54.563222],[-6.426937,54.5683],[-6.408039,54.648895],[-6.470124,54.685308],[-6.496855,54.713725],[-6.486846,54.736655],[-6.465738,54.754306],[-6.462336,54.759415],[-6.458134,54.761884],[-6.460773,54.764766],[-6.461539,54.766905],[-6.463493,54.766751],[-6.465606,54.764611],[-6.467271,54.764265],[-6.469048,54.764778],[-6.47025,54.766777],[-6.478717,54.772817],[-6.481199,54.775912],[-6.478776,54.77803],[-6.477987,54.780956],[-6.47797,54.783254],[-6.47884,54.794218],[-6.471889,54.812515],[-6.46283,54.815967],[-6.459886,54.816877],[-6.459315,54.818555],[-6.461122,54.821387],[-6.460682,54.822104],[-6.45848,54.823514],[-6.458263,54.824655],[-6.461481,54.829054],[-6.466632,54.833396],[-6.46752,54.835061],[-6.467722,54.839179],[-6.468734,54.840065],[-6.471281,54.840679],[-6.472424,54.841323],[-6.472634,54.843078],[-6.471225,54.845923],[-6.473294,54.850663],[-6.472187,54.853493],[-6.47495,54.856652],[-6.476548,54.861864],[-6.481265,54.867047],[-6.481385,54.868946],[-6.483306,54.874336],[-6.486708,54.875159],[-6.487745,54.87616],[-6.488013,54.878968],[-6.488951,54.881323],[-6.488877,54.883077],[-6.490652,54.885696],[-6.492088,54.886755],[-6.497004,54.88838],[-6.498771,54.889761],[-6.499816,54.892784],[-6.499756,54.894675],[-6.501696,54.896406],[-6.501433,54.898828],[-6.503405,54.900883],[-6.504368,54.90546],[-6.50722,54.908292],[-6.506296,54.911793],[-6.503994,54.912811],[-6.503468,54.914342],[-6.500712,54.915265],[-6.500042,54.91579],[-6.499888,54.917302],[-6.500826,54.918793]]]},"properties":{"LAD22CD":"N09000009","LAD22NM":"Mid Ulster","BNG_E":83920,"BNG_N":528564,"LONG":-6.8889,"LAT":54.55273,"GlobalID":"86a7e60e-f40d-483c-a878-84984253dbdc"},"id":318}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.517028,54.324459],[-5.534125,54.341949],[-5.549437,54.373873],[-5.58552,54.391792],[-5.59653,54.407002],[-5.584795,54.449619],[-5.614915,54.464022],[-5.625567,54.463762],[-5.62926,54.465089],[-5.633618,54.464233],[-5.637315,54.458501],[-5.639521,54.457603],[-5.644339,54.458089],[-5.647807,54.45939],[-5.649552,54.460724],[-5.651943,54.460975],[-5.653023,54.460309],[-5.655093,54.460178],[-5.657046,54.460494],[-5.658293,54.459918],[-5.660587,54.461319],[-5.662804,54.461478],[-5.668394,54.461063],[-5.670123,54.460483],[-5.671469,54.459436],[-5.671339,54.45842],[-5.674079,54.45772],[-5.67504,54.458204],[-5.677795,54.458581],[-5.678925,54.458396],[-5.678613,54.456179],[-5.682105,54.455354],[-5.682058,54.453914],[-5.684399,54.453473],[-5.68755,54.454259],[-5.689251,54.455931],[-5.692841,54.455012],[-5.693219,54.451157],[-5.694071,54.449896],[-5.696155,54.449954],[-5.696543,54.450934],[-5.700282,54.450718],[-5.701077,54.448847],[-5.702415,54.447823],[-5.702779,54.446485],[-5.714028,54.447714],[-5.722196,54.447511],[-5.723889,54.447816],[-5.727837,54.450098],[-5.733777,54.454237],[-5.732522,54.459015],[-5.733779,54.460915],[-5.733191,54.462336],[-5.734947,54.462413],[-5.736998,54.46399],[-5.738937,54.463884],[-5.745775,54.464487],[-5.751527,54.46228],[-5.751258,54.461941],[-5.756957,54.460112],[-5.758469,54.460054],[-5.759782,54.461885],[-5.761978,54.463421],[-5.762677,54.464548],[-5.765609,54.46524],[-5.770403,54.462468],[-5.776537,54.463559],[-5.776303,54.464245],[-5.778787,54.467177],[-5.78518,54.464005],[-5.787573,54.464052],[-5.788699,54.46361],[-5.790788,54.464005],[-5.792342,54.464747],[-5.793672,54.466741],[-5.795138,54.467984],[-5.794628,54.469255],[-5.796864,54.473244],[-5.799037,54.473674],[-5.801937,54.472944],[-5.808573,54.475951],[-5.808527,54.47814],[-5.80963,54.479378],[-5.809447,54.482509],[-5.811821,54.482499],[-5.813068,54.483389],[-5.812892,54.48519],[-5.815308,54.486229],[-5.814658,54.488086],[-5.815381,54.489454],[-5.817539,54.490406],[-5.818307,54.492167],[-5.823478,54.495769],[-5.824485,54.495505],[-5.825831,54.495064],[-5.826724,54.492435],[-5.8301,54.491571],[-5.831405,54.490612],[-5.832149,54.489321],[-5.835676,54.490222],[-5.837645,54.490283],[-5.840408,54.491067],[-5.842471,54.492575],[-5.846445,54.491532],[-5.847345,54.489291],[-5.846767,54.488441],[-5.846315,54.485375],[-5.848509,54.484541],[-5.85335,54.487423],[-5.856777,54.487001],[-5.858818,54.485358],[-5.8599,54.483447],[-5.859837,54.482058],[-5.860866,54.481099],[-5.859368,54.479182],[-5.861768,54.47956],[-5.86437,54.480352],[-5.866578,54.479893],[-5.869465,54.479871],[-5.86967,54.480453],[-5.872582,54.479234],[-5.874704,54.47791],[-5.873664,54.477272],[-5.873425,54.475905],[-5.875706,54.475013],[-5.877161,54.473106],[-5.876749,54.471397],[-5.878068,54.469475],[-5.877403,54.467318],[-5.884269,54.466145],[-5.886373,54.466283],[-5.887823,54.465882],[-5.891652,54.465511],[-5.894928,54.464217],[-5.903242,54.46226],[-5.904414,54.461587],[-5.904804,54.458847],[-5.901203,54.456798],[-5.900771,54.454826],[-5.902807,54.45325],[-5.906681,54.451834],[-5.90756,54.449748],[-5.909914,54.449552],[-5.916438,54.45006],[-5.915663,54.448398],[-5.918895,54.447568],[-5.917327,54.446796],[-5.918462,54.445836],[-5.919129,54.444015],[-5.918025,54.441105],[-5.91851,54.440457],[-5.920707,54.439412],[-5.917083,54.436905],[-5.917435,54.434667],[-5.91583,54.43344],[-5.920141,54.432642],[-5.922379,54.432679],[-5.924591,54.431406],[-5.930575,54.430408],[-5.931654,54.429178],[-5.928923,54.427422],[-5.925273,54.424025],[-5.926441,54.423309],[-5.928264,54.422987],[-5.928236,54.422166],[-5.931101,54.421275],[-5.933423,54.420245],[-5.93403,54.419276],[-5.938709,54.416066],[-5.94316,54.414743],[-5.94554,54.414801],[-5.946316,54.414445],[-5.946445,54.41126],[-5.945016,54.409519],[-5.946195,54.40763],[-5.944922,54.404543],[-5.947921,54.403825],[-5.951711,54.403833],[-5.945539,54.398276],[-5.943076,54.398478],[-5.940146,54.398156],[-5.940113,54.396131],[-5.938439,54.394977],[-5.93953,54.394079],[-5.938392,54.391202],[-5.941458,54.390955],[-5.940973,54.389869],[-5.941944,54.388364],[-5.941179,54.383746],[-5.942715,54.382748],[-5.945861,54.382233],[-5.946791,54.381398],[-5.948053,54.381245],[-5.948964,54.380439],[-5.951026,54.379581],[-5.95342,54.380607],[-5.958747,54.380697],[-5.967735,54.383219],[-5.969614,54.38308],[-5.971309,54.384487],[-5.974463,54.382836],[-5.978282,54.381536],[-5.985083,54.376939],[-5.992863,54.374169],[-5.997645,54.374064],[-6.005026,54.372794],[-6.00932,54.372857],[-6.01302,54.372149],[-6.018373,54.371689],[-6.019529,54.370587],[-6.022106,54.368632],[-6.021966,54.367771],[-6.024426,54.367067],[-6.026186,54.365824],[-6.026569,54.365085],[-6.029574,54.364299],[-6.029391,54.363258],[-6.027487,54.362398],[-6.029958,54.361074],[-6.030865,54.36098],[-6.031712,54.35886],[-6.032964,54.357197],[-6.035636,54.356228],[-6.040354,54.355746],[-6.042574,54.353866],[-6.041652,54.352539],[-6.041792,54.351153],[-6.04338,54.347741],[-6.052325,54.342755],[-6.06143,54.336744],[-6.064187,54.333373],[-6.064571,54.327034],[-6.071039,54.325174],[-6.073656,54.326064],[-6.075017,54.327643],[-6.079733,54.328244],[-6.08253,54.327727],[-6.086604,54.328328],[-6.093234,54.327551],[-6.094255,54.326898],[-6.097256,54.326972],[-6.100803,54.326152],[-6.100883,54.32482],[-6.100187,54.32449],[-6.099794,54.322102],[-6.102829,54.321018],[-6.105372,54.318591],[-6.102902,54.317105],[-6.10186,54.316846],[-6.09708,54.312598],[-6.096529,54.311426],[-6.094331,54.310144],[-6.093004,54.309884],[-6.090382,54.308135],[-6.087508,54.305091],[-6.086494,54.30455],[-6.085934,54.302972],[-6.084418,54.302385],[-6.083368,54.301349],[-6.082538,54.299524],[-6.080258,54.298749],[-6.076814,54.296148],[-6.072957,54.294337],[-6.070676,54.293736],[-6.067917,54.293699],[-6.064228,54.29273],[-6.06292,54.293013],[-6.060869,54.291528],[-6.060893,54.28941],[-6.061914,54.289288],[-6.062851,54.286887],[-6.06028,54.284987],[-6.060539,54.28402],[-6.059843,54.281014],[-6.061623,54.280405],[-6.065407,54.280688],[-6.067324,54.281395],[-6.069086,54.281568],[-6.07062,54.281126],[-6.072631,54.281182],[-6.073338,54.279686],[-6.070785,54.279156],[-6.069164,54.277579],[-6.067441,54.273098],[-6.063623,54.271568],[-6.065213,54.270399],[-6.074152,54.269536],[-6.075252,54.267914],[-6.076898,54.266869],[-6.077628,54.265744],[-6.076664,54.2636],[-6.072992,54.262402],[-6.066855,54.262465],[-6.066566,54.263673],[-6.064861,54.263461],[-6.062966,54.263953],[-6.060804,54.263589],[-6.058011,54.264021],[-6.053656,54.264001],[-6.052017,54.264354],[-6.049375,54.263833],[-6.046125,54.264532],[-6.043438,54.262835],[-6.039833,54.263256],[-6.039818,54.260189],[-6.04063,54.25922],[-6.043301,54.2589],[-6.043014,54.256344],[-6.043996,54.255274],[-6.043818,54.254595],[-6.0453,54.251839],[-6.0464,54.250755],[-6.046176,54.249994],[-6.047376,54.249058],[-6.046239,54.246366],[-6.05014,54.246245],[-6.051181,54.245038],[-6.052915,54.244538],[-6.053226,54.246156],[-6.058619,54.248898],[-6.062211,54.251538],[-6.067214,54.254058],[-6.071097,54.254521],[-6.074649,54.253908],[-6.077206,54.253784],[-6.079882,54.252974],[-6.080703,54.250213],[-6.079934,54.246883],[-6.080956,54.246338],[-6.083867,54.246331],[-6.086906,54.247345],[-6.090763,54.24684],[-6.093487,54.24822],[-6.09449,54.2472],[-6.096172,54.246581],[-6.100195,54.247823],[-6.103124,54.245728],[-6.103128,54.244815],[-6.107069,54.243552],[-6.107853,54.2423],[-6.107138,54.240784],[-6.107843,54.240228],[-6.112432,54.24206],[-6.114259,54.241923],[-6.11623,54.242206],[-6.115971,54.243614],[-6.117307,54.244115],[-6.120086,54.243711],[-6.119814,54.244681],[-6.120913,54.24597],[-6.122631,54.243171],[-6.123924,54.242499],[-6.127101,54.242824],[-6.130163,54.242049],[-6.131037,54.243061],[-6.137135,54.242867],[-6.139205,54.241311],[-6.13877,54.237398],[-6.139304,54.236606],[-6.143976,54.233732],[-6.14431,54.233212],[-6.146603,54.232534],[-6.14971,54.232843],[-6.151612,54.230958],[-6.150794,54.228579],[-6.153631,54.226124],[-6.152989,54.225327],[-6.155068,54.224993],[-6.157789,54.221673],[-6.161255,54.219034],[-6.16458,54.222406],[-6.165035,54.224776],[-6.165784,54.226057],[-6.167837,54.226507],[-6.168328,54.228687],[-6.169866,54.230236],[-6.172565,54.230532],[-6.176223,54.229975],[-6.179128,54.228125],[-6.180103,54.226914],[-6.182354,54.229324],[-6.182175,54.232616],[-6.18167,54.233731],[-6.181977,54.237283],[-6.189902,54.237661],[-6.182392,54.244302],[-6.186143,54.245943],[-6.190532,54.248591],[-6.192236,54.248647],[-6.194842,54.249884],[-6.197397,54.250024],[-6.198098,54.250504],[-6.199972,54.250477],[-6.203664,54.251185],[-6.207252,54.25139],[-6.209735,54.252952],[-6.210635,54.255032],[-6.212992,54.257679],[-6.213311,54.258733],[-6.222278,54.257863],[-6.229897,54.257718],[-6.233961,54.259171],[-6.235386,54.260274],[-6.239401,54.262242],[-6.242512,54.263136],[-6.242442,54.263839],[-6.245234,54.263216],[-6.246506,54.261096],[-6.247899,54.260178],[-6.253273,54.258036],[-6.254968,54.257905],[-6.259248,54.259333],[-6.260505,54.260434],[-6.263679,54.2623],[-6.266621,54.262147],[-6.269023,54.261475],[-6.27407,54.264722],[-6.276325,54.265445],[-6.277466,54.268632],[-6.280075,54.271873],[-6.282965,54.271311],[-6.285709,54.271555],[-6.287179,54.270981],[-6.288151,54.269037],[-6.288153,54.266744],[-6.289454,54.26516],[-6.291634,54.265302],[-6.29564,54.266325],[-6.297927,54.265155],[-6.300968,54.265957],[-6.303435,54.267372],[-6.305287,54.26618],[-6.306264,54.265046],[-6.310199,54.265746],[-6.314542,54.268035],[-6.314505,54.266926],[-6.318261,54.266641],[-6.323003,54.266693],[-6.326309,54.264597],[-6.329093,54.263724],[-6.33206,54.26329],[-6.337142,54.264692],[-6.338906,54.265721],[-6.34093,54.267465],[-6.34247,54.26976],[-6.345365,54.272157],[-6.350313,54.273705],[-6.355192,54.274317],[-6.356286,54.273625],[-6.356959,54.272256],[-6.358231,54.272202],[-6.36096,54.271265],[-6.363638,54.271124],[-6.367348,54.26974],[-6.367269,54.266622],[-6.36619,54.265957],[-6.368745,54.265442],[-6.370748,54.265775],[-6.374079,54.265485],[-6.374666,54.266175],[-6.374658,54.267638],[-6.376594,54.267737],[-6.378489,54.268294],[-6.380057,54.269414],[-6.380462,54.270685],[-6.385262,54.272149],[-6.386489,54.27208],[-6.388735,54.272765],[-6.403702,54.273017],[-6.407545,54.27209],[-6.410556,54.270818],[-6.412805,54.270698],[-6.417261,54.268199],[-6.420422,54.26751],[-6.424532,54.26795],[-6.428869,54.267744],[-6.43478,54.267921],[-6.44048,54.267419],[-6.443911,54.265145],[-6.445025,54.262875],[-6.447711,54.261172],[-6.448202,54.260151],[-6.45096,54.258085],[-6.45131,54.256482],[-6.458808,54.252224],[-6.463432,54.252003],[-6.464141,54.253114],[-6.466767,54.254121],[-6.467714,54.255095],[-6.47126,54.252193],[-6.47506,54.250226],[-6.475922,54.24816],[-6.478363,54.247689],[-6.480418,54.245683],[-6.482187,54.241846],[-6.484399,54.242296],[-6.48651,54.241833],[-6.486304,54.239777],[-6.488407,54.235237],[-6.491862,54.234443],[-6.491128,54.232905],[-6.494636,54.232533],[-6.495026,54.232159],[-6.497601,54.233307],[-6.49938,54.233129],[-6.499882,54.232204],[-6.50226,54.230067],[-6.503962,54.22935],[-6.504785,54.228088],[-6.505027,54.225799],[-6.507113,54.226535],[-6.508444,54.227926],[-6.510423,54.228316],[-6.511428,54.230017],[-6.512972,54.229631],[-6.514919,54.231086],[-6.516364,54.231393],[-6.516739,54.232164],[-6.51878,54.233091],[-6.522845,54.233155],[-6.523806,54.234164],[-6.523478,54.235506],[-6.525468,54.237252],[-6.526377,54.237253],[-6.528222,54.2362],[-6.530578,54.236254],[-6.532339,54.235174],[-6.534195,54.235254],[-6.5356,54.234569],[-6.535978,54.233725],[-6.537824,54.23248],[-6.540047,54.232019],[-6.5424,54.232234],[-6.543594,54.231337],[-6.546467,54.23056],[-6.547077,54.229867],[-6.550081,54.228866],[-6.550698,54.227318],[-6.551578,54.22691],[-6.555738,54.228185],[-6.556432,54.230438],[-6.563067,54.227208],[-6.572911,54.224321],[-6.574747,54.21858],[-6.579422,54.215551],[-6.585186,54.214274],[-6.587265,54.214056],[-6.58757,54.217465],[-6.588835,54.21911],[-6.589449,54.219044],[-6.594223,54.220248],[-6.597983,54.219265],[-6.600829,54.219064],[-6.600919,54.216933],[-6.602249,54.215234],[-6.603472,54.215134],[-6.613009,54.21262],[-6.611682,54.20828],[-6.611802,54.206562],[-6.614871,54.203943],[-6.615338,54.202651],[-6.616519,54.202166],[-6.616488,54.198435],[-6.620358,54.196465],[-6.623701,54.196394],[-6.626289,54.194734],[-6.629242,54.194753],[-6.630571,54.194378],[-6.63292,54.192208],[-6.635284,54.191572],[-6.637811,54.191216],[-6.638137,54.190235],[-6.639448,54.188937],[-6.638429,54.187819],[-6.638091,54.186388],[-6.638643,54.18568],[-6.642387,54.185539],[-6.643482,54.184133],[-6.645182,54.18286],[-6.644682,54.180729],[-6.644966,54.179876],[-6.643485,54.175693],[-6.641651,54.174371],[-6.640346,54.172454],[-6.637335,54.171102],[-6.636574,54.16845],[-6.636814,54.166754],[-6.634948,54.163911],[-6.634663,54.162094],[-6.635523,54.161592],[-6.634183,54.160211],[-6.634498,54.159492],[-6.633496,54.158485],[-6.633734,54.157879],[-6.631117,54.154692],[-6.630629,54.153663],[-6.631808,54.153331],[-6.632765,54.150667],[-6.631812,54.14924],[-6.632569,54.147141],[-6.633793,54.147124],[-6.636131,54.145893],[-6.637654,54.146309],[-6.638793,54.144969],[-6.637966,54.143515],[-6.639082,54.142329],[-6.641304,54.142542],[-6.641126,54.139898],[-6.641907,54.138779],[-6.640665,54.137849],[-6.640022,54.135561],[-6.641197,54.13405],[-6.640722,54.131767],[-6.645156,54.130194],[-6.648869,54.130329],[-6.650754,54.129419],[-6.64978,54.128389],[-6.649948,54.127615],[-6.651919,54.127116],[-6.651494,54.126023],[-6.649597,54.124071],[-6.649415,54.121958],[-6.649763,54.121519],[-6.652604,54.121596],[-6.653404,54.12274],[-6.654894,54.123772],[-6.658753,54.124223],[-6.661357,54.123462],[-6.66216,54.122699],[-6.662119,54.120668],[-6.661523,54.120185],[-6.661674,54.117532],[-6.660457,54.116474],[-6.65907,54.113527],[-6.656102,54.109696],[-6.652448,54.10727],[-6.650954,54.106798],[-6.651578,54.105854],[-6.651354,54.104522],[-6.649348,54.10233],[-6.647484,54.101006],[-6.64635,54.100752],[-6.645973,54.099293],[-6.646984,54.098401],[-6.645984,54.096081],[-6.650414,54.094513],[-6.652066,54.093125],[-6.654358,54.09372],[-6.65637,54.093712],[-6.65896,54.096047],[-6.659793,54.096264],[-6.661806,54.093618],[-6.662902,54.092865],[-6.661863,54.090847],[-6.661858,54.089867],[-6.660433,54.08926],[-6.65938,54.087541],[-6.657534,54.088002],[-6.656664,54.08733],[-6.656972,54.086264],[-6.659268,54.084791],[-6.659627,54.084189],[-6.65863,54.08065],[-6.659396,54.079706],[-6.659228,54.078002],[-6.659878,54.077466],[-6.659075,54.076336],[-6.65952,54.075454],[-6.661677,54.074702],[-6.662083,54.073877],[-6.663355,54.07373],[-6.665704,54.074395],[-6.669718,54.07384],[-6.669892,54.073102],[-6.668591,54.071092],[-6.667048,54.070971],[-6.665323,54.069818],[-6.665131,54.068679],[-6.666027,54.066438],[-6.662934,54.064119],[-6.662044,54.063009],[-6.65878,54.061882],[-6.656543,54.062318],[-6.650854,54.061614],[-6.64967,54.059403],[-6.647553,54.058871],[-6.648683,54.057222],[-6.645832,54.053099],[-6.643985,54.052873],[-6.643584,54.052233],[-6.640619,54.050132],[-6.64186,54.049111],[-6.641769,54.048435],[-6.639578,54.046479],[-6.636658,54.04563],[-6.63667,54.04396],[-6.634281,54.043428],[-6.631944,54.043781],[-6.629517,54.042192],[-6.628391,54.039892],[-6.624752,54.036626],[-6.624385,54.039051],[-6.620255,54.039445],[-6.618296,54.039143],[-6.617037,54.042704],[-6.615137,54.041789],[-6.612143,54.04181],[-6.607529,54.039801],[-6.607262,54.041515],[-6.606375,54.04185],[-6.605459,54.045146],[-6.600877,54.044943],[-6.599282,54.045951],[-6.59586,54.044734],[-6.593914,54.04641],[-6.595115,54.048843],[-6.59454,54.050138],[-6.596644,54.052116],[-6.59201,54.055639],[-6.591922,54.056247],[-6.587533,54.05769],[-6.585706,54.057032],[-6.582937,54.054988],[-6.580484,54.055957],[-6.576016,54.053168],[-6.574343,54.053145],[-6.573123,54.054085],[-6.572214,54.053446],[-6.570135,54.053667],[-6.571027,54.051448],[-6.570448,54.051068],[-6.5656,54.051242],[-6.565156,54.050815],[-6.562548,54.050782],[-6.558857,54.049421],[-6.557146,54.050238],[-6.556135,54.050085],[-6.553168,54.05195],[-6.552246,54.05185],[-6.550226,54.050514],[-6.54798,54.052165],[-6.546303,54.051634],[-6.544111,54.053793],[-6.539016,54.055843],[-6.532892,54.05979],[-6.5293,54.059289],[-6.524607,54.056616],[-6.52277,54.056294],[-6.520924,54.055088],[-6.5199,54.054945],[-6.518953,54.053808],[-6.51665,54.052634],[-6.512358,54.053229],[-6.511456,54.052809],[-6.509371,54.053573],[-6.510101,54.05549],[-6.510741,54.056061],[-6.510789,54.057603],[-6.509336,54.057735],[-6.504426,54.060067],[-6.497476,54.059396],[-6.49387,54.061374],[-6.489989,54.063757],[-6.48583,54.065405],[-6.485275,54.066875],[-6.480885,54.067328],[-6.477862,54.066435],[-6.472204,54.066432],[-6.474586,54.067646],[-6.47626,54.068966],[-6.478544,54.06955],[-6.479466,54.070645],[-6.481381,54.071207],[-6.482701,54.072694],[-6.482151,54.073286],[-6.482422,54.074831],[-6.481195,54.076521],[-6.47998,54.076539],[-6.47869,54.077246],[-6.476221,54.076432],[-6.472302,54.073821],[-6.470547,54.07342],[-6.469252,54.074205],[-6.467563,54.074054],[-6.465772,54.073054],[-6.464237,54.071197],[-6.461448,54.070725],[-6.459733,54.071891],[-6.456974,54.072681],[-6.454694,54.070922],[-6.454719,54.070007],[-6.451002,54.068157],[-6.45153,54.067583],[-6.450698,54.066347],[-6.451153,54.064697],[-6.449386,54.064241],[-6.449341,54.060975],[-6.448621,54.060704],[-6.446586,54.058521],[-6.444363,54.058127],[-6.444463,54.056604],[-6.440609,54.058101],[-6.43952,54.057471],[-6.438307,54.057603],[-6.436655,54.058596],[-6.434355,54.061203],[-6.433287,54.059648],[-6.430631,54.058491],[-6.428114,54.061127],[-6.423891,54.061234],[-6.422344,54.059583],[-6.420634,54.060744],[-6.419069,54.062515],[-6.416028,54.062287],[-6.412935,54.063214],[-6.411574,54.062732],[-6.40367,54.062298],[-6.401215,54.061658],[-6.399012,54.061809],[-6.398413,54.061422],[-6.396219,54.061689],[-6.393755,54.060653],[-6.392413,54.058931],[-6.391397,54.059447],[-6.390652,54.060604],[-6.388134,54.061796],[-6.384883,54.067929],[-6.382282,54.068985],[-6.380414,54.068931],[-6.378219,54.06983],[-6.376905,54.069019],[-6.373044,54.070094],[-6.368225,54.070349],[-6.364484,54.072728],[-6.36334,54.076588],[-6.363214,54.079396],[-6.364386,54.084459],[-6.364634,54.090267],[-6.365603,54.092367],[-6.367061,54.09404],[-6.363862,54.096478],[-6.363135,54.097525],[-6.365226,54.098566],[-6.367574,54.102222],[-6.366534,54.104134],[-6.367542,54.104534],[-6.367864,54.106055],[-6.368648,54.107062],[-6.368138,54.108497],[-6.368817,54.110636],[-6.369359,54.111059],[-6.367043,54.112835],[-6.367337,54.113776],[-6.364015,54.113959],[-6.363709,54.113375],[-6.358755,54.11202],[-6.355789,54.110614],[-6.354726,54.110913],[-6.353326,54.112576],[-6.350039,54.113654],[-6.346857,54.11385],[-6.345632,54.111766],[-6.343486,54.111515],[-6.340897,54.112041],[-6.339285,54.108483],[-6.336916,54.108423],[-6.336545,54.10682],[-6.33543,54.105215],[-6.336116,54.104527],[-6.336091,54.103155],[-6.337223,54.102156],[-6.336576,54.098785],[-6.337432,54.096255],[-6.337305,54.094858],[-6.330906,54.093568],[-6.328273,54.093505],[-6.320277,54.091182],[-6.318965,54.091099],[-6.318118,54.092094],[-6.318437,54.09274],[-6.317715,54.094031],[-6.314136,54.096366],[-6.313376,54.098052],[-6.311061,54.100764],[-6.309951,54.103517],[-6.309976,54.106843],[-6.308386,54.106942],[-6.300298,54.109276],[-6.297004,54.109374],[-6.293867,54.111206],[-6.293365,54.112137],[-6.291838,54.112809],[-6.289375,54.112081],[-6.285833,54.11229],[-6.282318,54.111444],[-6.278337,54.109361],[-6.273205,54.104935],[-6.269217,54.102369],[-6.267926,54.103051],[-6.266482,54.102692],[-6.259695,54.099306],[-6.256632,54.100842],[-6.256686,54.099423],[-6.254108,54.097727],[-6.251875,54.097443],[-6.24728,54.09973],[-6.244903,54.099955],[-6.241271,54.100923],[-6.235338,54.101473],[-6.232371,54.099989],[-6.227628,54.101277],[-6.226039,54.101246],[-6.223516,54.10024],[-6.220413,54.100745],[-6.216404,54.100683],[-6.214568,54.10001],[-6.21309,54.098106],[-6.209817,54.098608],[-6.20445,54.098849],[-6.194543,54.095836],[-6.191707,54.09408],[-6.19091,54.092312],[-6.191021,54.085434],[-6.190273,54.083979],[-6.187299,54.080912],[-6.185856,54.08014],[-6.185367,54.076097],[-6.184273,54.075017],[-6.184159,54.073791],[-6.181977,54.074687],[-6.179728,54.074452],[-6.178528,54.073636],[-6.177285,54.073542],[-6.175203,54.072657],[-6.174107,54.071412],[-6.169491,54.070232],[-6.168167,54.06767],[-6.160906,54.065741],[-6.159824,54.065897],[-6.157587,54.064978],[-6.153909,54.065962],[-6.151025,54.065923],[-6.148904,54.065378],[-6.148091,54.064721],[-6.145589,54.064212],[-6.144118,54.06336],[-6.142423,54.063397],[-6.140719,54.062951],[-6.139773,54.061806],[-6.136384,54.063202],[-6.136104,54.064542],[-6.135227,54.06519],[-6.13336,54.065491],[-6.131214,54.064909],[-6.129551,54.06586],[-6.1265,54.066095],[-6.122103,54.065676],[-6.120501,54.065079],[-6.118712,54.063572],[-6.114981,54.063024],[-6.112438,54.062217],[-6.110681,54.062716],[-6.109595,54.062284],[-6.106863,54.062921],[-6.106502,54.061665],[-6.105659,54.061412],[-6.102164,54.061855],[-6.100231,54.062896],[-6.098307,54.063293],[-6.095875,54.062761],[-6.094516,54.062018],[-6.092127,54.059846],[-6.091376,54.058516],[-6.088629,54.058553],[-6.086687,54.058058],[-6.083961,54.056057],[-6.08423,54.055399],[-6.082931,54.054514],[-6.081261,54.052603],[-6.079624,54.051548],[-6.07834,54.050229],[-6.077909,54.0487],[-6.079425,54.047659],[-6.081277,54.047264],[-6.084252,54.048162],[-6.088101,54.047956],[-6.089518,54.047675],[-6.090177,54.048636],[-6.092201,54.048024],[-6.092392,54.049269],[-6.093526,54.049529],[-6.096197,54.048155],[-6.098387,54.048751],[-6.099994,54.046188],[-6.100804,54.043851],[-6.102686,54.043956],[-6.104832,54.041954],[-6.107458,54.041368],[-6.107842,54.040607],[-6.106375,54.040151],[-6.104077,54.040104],[-6.099605,54.038538],[-6.093508,54.037587],[-6.090051,54.036591],[-6.087007,54.034788],[-6.085063,54.032719],[-6.083491,54.030192],[-6.082615,54.029659],[-6.073894,54.030172],[-6.07008,54.029539],[-6.065766,54.027877],[-6.064485,54.025981],[-6.06518,54.024976],[-6.064784,54.023511],[-6.063813,54.022905],[-6.060459,54.023904],[-6.056692,54.02561],[-6.055781,54.026964],[-6.048266,54.030332],[-6.041811,54.032739],[-6.030934,54.036084],[-6.024439,54.038486],[-6.021643,54.038679],[-6.02058,54.040005],[-6.019285,54.040869],[-6.014621,54.042079],[-6.01466,54.043993],[-6.0126,54.04504],[-6.012591,54.046353],[-6.010638,54.048059],[-6.009352,54.049848],[-6.000905,54.055155],[-5.992427,54.058419],[-5.992611,54.0593],[-5.994783,54.059602],[-5.997264,54.060829],[-5.996376,54.061403],[-5.990372,54.058831],[-5.982141,54.059404],[-5.977155,54.06119],[-5.972785,54.062075],[-5.968526,54.062655],[-5.966543,54.062197],[-5.964043,54.062869],[-5.9636,54.063638],[-5.963835,54.06606],[-5.961606,54.067633],[-5.958279,54.069008],[-5.958083,54.071123],[-5.958835,54.07245],[-5.955141,54.07635],[-5.950759,54.079145],[-5.942607,54.081941],[-5.937438,54.085299],[-5.935804,54.085833],[-5.930209,54.088147],[-5.923815,54.092093],[-5.922158,54.092544],[-5.92014,54.093841],[-5.918156,54.094225],[-5.916758,54.09379],[-5.916123,54.094553],[-5.913833,54.095505],[-5.91219,54.097093],[-5.909007,54.098913],[-5.90684,54.099526],[-5.904196,54.099615],[-5.902521,54.10177],[-5.897932,54.104845],[-5.896409,54.107301],[-5.896329,54.1083],[-5.895095,54.109959],[-5.893596,54.110959],[-5.893818,54.112968],[-5.892755,54.114105],[-5.893769,54.116678],[-5.893335,54.117995],[-5.890669,54.119913],[-5.888069,54.120702],[-5.887208,54.121534],[-5.887551,54.127088],[-5.888146,54.127931],[-5.88989,54.1287],[-5.891076,54.130769],[-5.890194,54.134883],[-5.887362,54.138539],[-5.886454,54.141171],[-5.883126,54.144379],[-5.876989,54.153601],[-5.875391,54.161869],[-5.873334,54.165623],[-5.872786,54.167737],[-5.873213,54.170093],[-5.874322,54.172079],[-5.874229,54.175236],[-5.873525,54.176251],[-5.87358,54.177563],[-5.87494,54.181422],[-5.875935,54.182297],[-5.875511,54.183157],[-5.876355,54.184358],[-5.876703,54.186943],[-5.877552,54.18781],[-5.878512,54.190167],[-5.886173,54.197182],[-5.888773,54.198701],[-5.891974,54.201345],[-5.892414,54.202641],[-5.892109,54.203875],[-5.893464,54.204712],[-5.892964,54.207071],[-5.889779,54.210304],[-5.889938,54.21072],[-5.885862,54.214243],[-5.879105,54.218577],[-5.863324,54.226878],[-5.852371,54.231862],[-5.840758,54.236059],[-5.832339,54.240432],[-5.830743,54.24207],[-5.829616,54.244074],[-5.829129,54.246737],[-5.829687,54.247935],[-5.83108,54.248661],[-5.834365,54.251391],[-5.837048,54.252025],[-5.839501,54.253303],[-5.84012,54.25144],[-5.841436,54.250313],[-5.84444,54.250042],[-5.847537,54.250635],[-5.850132,54.249107],[-5.851381,54.249465],[-5.850635,54.254629],[-5.845435,54.257154],[-5.841569,54.257172],[-5.842225,54.258711],[-5.840674,54.261381],[-5.839036,54.261848],[-5.837962,54.263071],[-5.839048,54.263892],[-5.838174,54.265039],[-5.835572,54.266888],[-5.832828,54.268136],[-5.829828,54.269933],[-5.828581,54.274934],[-5.828901,54.277182],[-5.82825,54.278424],[-5.8265,54.278709],[-5.824722,54.280737],[-5.820295,54.283222],[-5.817676,54.28429],[-5.81604,54.283553],[-5.817678,54.282213],[-5.8179,54.280821],[-5.817123,54.279795],[-5.818517,54.276498],[-5.819868,54.275303],[-5.821286,54.272401],[-5.820433,54.267973],[-5.819612,54.266073],[-5.819883,54.264961],[-5.816653,54.261417],[-5.816878,54.25927],[-5.818822,54.257346],[-5.822838,54.256755],[-5.827123,54.256384],[-5.831217,54.257162],[-5.834414,54.258146],[-5.834783,54.257152],[-5.833722,54.254492],[-5.830396,54.252091],[-5.827003,54.249012],[-5.825982,54.247145],[-5.825687,54.245482],[-5.823686,54.243458],[-5.820641,54.24259],[-5.814676,54.242355],[-5.801704,54.24457],[-5.792519,54.245472],[-5.782413,54.24607],[-5.780899,54.244784],[-5.779247,54.244419],[-5.778161,54.244934],[-5.776161,54.244938],[-5.76574,54.247117],[-5.764565,54.246394],[-5.763433,54.247106],[-5.75911,54.247772],[-5.758241,54.246703],[-5.756738,54.24631],[-5.754631,54.246786],[-5.754432,54.247867],[-5.755199,54.249455],[-5.754386,54.250209],[-5.749755,54.251703],[-5.745217,54.252338],[-5.737765,54.252405],[-5.727283,54.253223],[-5.725361,54.252166],[-5.725311,54.25077],[-5.724605,54.249775],[-5.722222,54.248622],[-5.722038,54.249702],[-5.720641,54.250777],[-5.71633,54.250034],[-5.715251,54.249253],[-5.713753,54.250338],[-5.711407,54.250119],[-5.709453,54.251553],[-5.707516,54.250697],[-5.704795,54.250171],[-5.702767,54.250241],[-5.702003,54.251088],[-5.696537,54.251668],[-5.688291,54.250676],[-5.686458,54.249964],[-5.685846,54.248358],[-5.684369,54.247525],[-5.682189,54.247291],[-5.681874,54.248179],[-5.680677,54.248308],[-5.678134,54.246721],[-5.677439,54.245701],[-5.678239,54.244551],[-5.677119,54.244251],[-5.676464,54.242463],[-5.673579,54.240449],[-5.675063,54.239242],[-5.673916,54.238868],[-5.672033,54.239204],[-5.673228,54.237162],[-5.674019,54.237067],[-5.674957,54.235162],[-5.672831,54.234113],[-5.671798,54.232943],[-5.670653,54.233992],[-5.670247,54.235461],[-5.668812,54.235695],[-5.667424,54.235295],[-5.666794,54.233115],[-5.667229,54.231815],[-5.665859,54.230875],[-5.664891,54.228955],[-5.665159,54.226927],[-5.663012,54.225898],[-5.661218,54.225745],[-5.658784,54.2265],[-5.658317,54.227447],[-5.655972,54.22898],[-5.652135,54.229565],[-5.650619,54.230976],[-5.649058,54.231436],[-5.648926,54.232639],[-5.647053,54.234662],[-5.647006,54.235847],[-5.645693,54.236854],[-5.644912,54.238479],[-5.643983,54.238915],[-5.643998,54.240328],[-5.642405,54.240731],[-5.640666,54.240338],[-5.639459,54.240594],[-5.63781,54.241656],[-5.637749,54.243098],[-5.637081,54.244648],[-5.639173,54.24567],[-5.638916,54.246324],[-5.640887,54.249616],[-5.640176,54.250678],[-5.639129,54.250975],[-5.639025,54.252143],[-5.64036,54.252067],[-5.641664,54.254356],[-5.646169,54.255648],[-5.645964,54.257394],[-5.643528,54.25922],[-5.641444,54.26037],[-5.639296,54.260769],[-5.63881,54.262129],[-5.640845,54.263114],[-5.638419,54.263737],[-5.637387,54.263383],[-5.637674,54.261077],[-5.636755,54.260123],[-5.634071,54.260056],[-5.632378,54.259455],[-5.630755,54.258303],[-5.63075,54.254291],[-5.632152,54.254014],[-5.633801,54.252286],[-5.630022,54.251275],[-5.629115,54.251987],[-5.62955,54.252884],[-5.628678,54.253451],[-5.629358,54.255442],[-5.626989,54.256023],[-5.623377,54.255547],[-5.620073,54.25404],[-5.620248,54.252722],[-5.618964,54.250589],[-5.620485,54.248767],[-5.619823,54.248222],[-5.619209,54.246306],[-5.6168,54.24683],[-5.615571,54.24661],[-5.614258,54.247306],[-5.612992,54.247317],[-5.611674,54.248451],[-5.60972,54.248931],[-5.60828,54.250691],[-5.607986,54.251778],[-5.606357,54.252842],[-5.607039,54.2533],[-5.604976,54.254355],[-5.603116,54.256699],[-5.604378,54.257263],[-5.604515,54.258435],[-5.604059,54.260216],[-5.605883,54.260092],[-5.608728,54.261097],[-5.608426,54.261822],[-5.607031,54.262382],[-5.606618,54.263297],[-5.610005,54.263377],[-5.610057,54.264114],[-5.609015,54.265547],[-5.607557,54.266285],[-5.60612,54.266275],[-5.604997,54.265542],[-5.603655,54.263665],[-5.601919,54.263503],[-5.602459,54.262421],[-5.600536,54.262242],[-5.599339,54.261182],[-5.596725,54.2608],[-5.591623,54.263918],[-5.591708,54.264509],[-5.58941,54.26547],[-5.58904,54.267819],[-5.588083,54.268412],[-5.587889,54.270177],[-5.585959,54.271597],[-5.583748,54.271745],[-5.582069,54.272913],[-5.579405,54.272389],[-5.576613,54.273624],[-5.575649,54.27515],[-5.573461,54.276018],[-5.573876,54.276692],[-5.572545,54.278437],[-5.569779,54.281392],[-5.568686,54.281318],[-5.567096,54.282662],[-5.567086,54.283411],[-5.564232,54.284657],[-5.56137,54.286607],[-5.560155,54.288621],[-5.561038,54.289819],[-5.558585,54.290727],[-5.558489,54.292803],[-5.558017,54.293984],[-5.559141,54.294165],[-5.558938,54.295301],[-5.55706,54.295654],[-5.5576,54.296632],[-5.556891,54.297272],[-5.556752,54.298666],[-5.555514,54.300085],[-5.554434,54.300704],[-5.553889,54.303763],[-5.551592,54.306472],[-5.549452,54.307832],[-5.545587,54.308717],[-5.543281,54.308393],[-5.540555,54.310328],[-5.542117,54.311453],[-5.540079,54.312778],[-5.537351,54.312927],[-5.533276,54.312066],[-5.531396,54.311084],[-5.527792,54.310012],[-5.526135,54.310837],[-5.526657,54.311729],[-5.524886,54.312715],[-5.525712,54.315577],[-5.52811,54.3149],[-5.529448,54.315656],[-5.532685,54.315925],[-5.517028,54.324459]]]},"properties":{"LAD22CD":"N09000010","LAD22NM":"Newry, Mourne and Down","BNG_E":133006,"BNG_N":480432,"LONG":-6.08891,"LAT":54.14953,"GlobalID":"bc64ffa5-3171-411b-a5bd-eddd94de50f7"},"id":319}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.534914,54.681724],[-5.538036,54.680966],[-5.540259,54.6808],[-5.54263,54.679109],[-5.544942,54.678023],[-5.545438,54.676757],[-5.543486,54.676311],[-5.543557,54.675656],[-5.545258,54.675156],[-5.545489,54.673547],[-5.543743,54.67306],[-5.543376,54.674068],[-5.541289,54.67466],[-5.538032,54.673895],[-5.534724,54.67346],[-5.535135,54.672936],[-5.533723,54.672047],[-5.532545,54.670199],[-5.530432,54.669294],[-5.528986,54.6695],[-5.527504,54.66901],[-5.525573,54.669043],[-5.523537,54.670473],[-5.521609,54.670908],[-5.522025,54.671972],[-5.521302,54.673714],[-5.523221,54.674176],[-5.522388,54.676492],[-5.524878,54.677779],[-5.527343,54.677159],[-5.527812,54.677875],[-5.530651,54.678218],[-5.531979,54.680305],[-5.533146,54.680573],[-5.534914,54.681724]]],[[[-5.529045,54.636347],[-5.528968,54.637036],[-5.530312,54.637704],[-5.530186,54.639685],[-5.530866,54.640045],[-5.531191,54.642317],[-5.532603,54.64347],[-5.536437,54.64285],[-5.539182,54.643968],[-5.539754,54.645113],[-5.540929,54.645919],[-5.54158,54.647661],[-5.542401,54.648225],[-5.542002,54.649209],[-5.542934,54.650072],[-5.543678,54.652237],[-5.543086,54.6538],[-5.546936,54.654763],[-5.547814,54.655785],[-5.549105,54.655055],[-5.551772,54.65563],[-5.553909,54.655622],[-5.556556,54.657097],[-5.557221,54.657904],[-5.5591,54.658707],[-5.566122,54.662211],[-5.567026,54.6632],[-5.568088,54.663057],[-5.569904,54.664129],[-5.570371,54.665239],[-5.571993,54.665917],[-5.573266,54.667854],[-5.57463,54.668845],[-5.574312,54.669852],[-5.575923,54.669867],[-5.576326,54.670997],[-5.575259,54.671414],[-5.575889,54.673038],[-5.57786,54.67513],[-5.578904,54.675444],[-5.582115,54.67511],[-5.582325,54.676153],[-5.583646,54.677384],[-5.585004,54.677753],[-5.586953,54.677321],[-5.588687,54.675847],[-5.589498,54.676023],[-5.5905,54.674647],[-5.592413,54.67449],[-5.594308,54.675846],[-5.596548,54.676456],[-5.596929,54.67736],[-5.599209,54.678107],[-5.600564,54.67674],[-5.603086,54.676859],[-5.603832,54.677615],[-5.605637,54.676508],[-5.60665,54.676483],[-5.607379,54.675337],[-5.608935,54.675778],[-5.61134,54.674986],[-5.616401,54.675658],[-5.616464,54.676893],[-5.617404,54.677489],[-5.618873,54.676291],[-5.621378,54.676616],[-5.623195,54.677282],[-5.623423,54.677991],[-5.621382,54.679348],[-5.621888,54.679788],[-5.625708,54.677924],[-5.627419,54.679024],[-5.629854,54.67941],[-5.631047,54.680071],[-5.633765,54.679685],[-5.637457,54.678628],[-5.637666,54.676424],[-5.636959,54.676011],[-5.637489,54.673271],[-5.635285,54.672005],[-5.63605,54.669784],[-5.638061,54.668241],[-5.642547,54.66634],[-5.647704,54.665615],[-5.652024,54.665684],[-5.654301,54.666472],[-5.653738,54.667289],[-5.655354,54.670411],[-5.657048,54.671048],[-5.658203,54.670108],[-5.659263,54.670065],[-5.662282,54.668538],[-5.664333,54.667212],[-5.669135,54.66603],[-5.670409,54.664923],[-5.670409,54.663599],[-5.673946,54.663073],[-5.674539,54.663276],[-5.67576,54.665632],[-5.677274,54.666549],[-5.678431,54.666569],[-5.679567,54.66838],[-5.680789,54.668884],[-5.683507,54.668695],[-5.68503,54.667685],[-5.686813,54.668087],[-5.688934,54.668048],[-5.690534,54.666952],[-5.692011,54.665016],[-5.693136,54.665924],[-5.695012,54.666333],[-5.695252,54.667252],[-5.697563,54.667593],[-5.698938,54.668469],[-5.703025,54.667979],[-5.704702,54.667428],[-5.706689,54.668164],[-5.710758,54.668098],[-5.711896,54.668357],[-5.715111,54.666984],[-5.716751,54.667184],[-5.717724,54.668194],[-5.72018,54.66713],[-5.721722,54.667111],[-5.730028,54.670336],[-5.730503,54.671563],[-5.732447,54.672179],[-5.734857,54.671995],[-5.739645,54.674064],[-5.740304,54.675426],[-5.739603,54.676679],[-5.74043,54.677452],[-5.742036,54.677696],[-5.744544,54.676469],[-5.745244,54.676578],[-5.747941,54.675032],[-5.750169,54.674124],[-5.75201,54.674046],[-5.754006,54.673403],[-5.75488,54.672622],[-5.758655,54.67199],[-5.762301,54.670809],[-5.764091,54.669405],[-5.765886,54.669528],[-5.769865,54.668732],[-5.774588,54.666057],[-5.777171,54.665988],[-5.778048,54.666379],[-5.779947,54.665041],[-5.783632,54.664542],[-5.786171,54.663816],[-5.787192,54.663147],[-5.791307,54.662191],[-5.792714,54.661563],[-5.799335,54.661339],[-5.802359,54.659819],[-5.806418,54.659124],[-5.806638,54.65859],[-5.81147,54.657038],[-5.813363,54.655618],[-5.817716,54.653567],[-5.818795,54.652661],[-5.822074,54.652171],[-5.82346,54.651682],[-5.825075,54.649371],[-5.828445,54.647327],[-5.830919,54.645059],[-5.834224,54.644445],[-5.838155,54.643191],[-5.840384,54.641962],[-5.845903,54.640934],[-5.848124,54.640205],[-5.850693,54.637741],[-5.854277,54.63571],[-5.856123,54.633748],[-5.854697,54.630599],[-5.854562,54.628257],[-5.859519,54.623639],[-5.851833,54.62089],[-5.847582,54.621443],[-5.846697,54.620926],[-5.848704,54.619556],[-5.846908,54.618861],[-5.844558,54.618563],[-5.84377,54.617346],[-5.838592,54.617581],[-5.838262,54.616499],[-5.833593,54.616464],[-5.830285,54.616832],[-5.829954,54.615965],[-5.83143,54.612756],[-5.831746,54.610664],[-5.823821,54.612811],[-5.818117,54.613293],[-5.81564,54.613806],[-5.811555,54.615357],[-5.810119,54.615601],[-5.808484,54.616548],[-5.807592,54.616166],[-5.803472,54.615691],[-5.79853,54.616694],[-5.798971,54.617578],[-5.794825,54.618824],[-5.787416,54.619653],[-5.785593,54.617166],[-5.784136,54.616607],[-5.783829,54.615777],[-5.782493,54.6152],[-5.7814,54.614038],[-5.780034,54.613318],[-5.775491,54.612852],[-5.772077,54.613408],[-5.771336,54.611026],[-5.769763,54.610075],[-5.769106,54.607107],[-5.769533,54.604773],[-5.768644,54.603829],[-5.770027,54.602545],[-5.769849,54.600713],[-5.771533,54.600476],[-5.772999,54.599627],[-5.773085,54.597565],[-5.77448,54.594035],[-5.770911,54.593901],[-5.770077,54.591456],[-5.767887,54.591786],[-5.765371,54.586843],[-5.762962,54.585346],[-5.761039,54.584839],[-5.758727,54.584928],[-5.758495,54.581535],[-5.761107,54.580978],[-5.765362,54.58057],[-5.766093,54.579908],[-5.766553,54.578161],[-5.76775,54.576879],[-5.771254,54.57544],[-5.772956,54.575671],[-5.773595,54.576924],[-5.780992,54.576218],[-5.781351,54.575501],[-5.783677,54.57412],[-5.785543,54.572044],[-5.787944,54.571765],[-5.790011,54.571133],[-5.79141,54.568943],[-5.788489,54.56838],[-5.788361,54.5672],[-5.792886,54.564866],[-5.793801,54.564611],[-5.79609,54.564905],[-5.800161,54.560715],[-5.799285,54.55504],[-5.796767,54.5515],[-5.794696,54.551173],[-5.791874,54.550235],[-5.794153,54.548561],[-5.794375,54.547463],[-5.793977,54.545752],[-5.795957,54.544537],[-5.797326,54.544398],[-5.80003,54.544724],[-5.801661,54.54436],[-5.802565,54.545044],[-5.804784,54.544328],[-5.810382,54.539646],[-5.811036,54.537435],[-5.81376,54.536315],[-5.817477,54.536427],[-5.818701,54.536116],[-5.817499,54.534963],[-5.816249,54.534534],[-5.817159,54.532784],[-5.816084,54.53194],[-5.819932,54.528084],[-5.823861,54.528138],[-5.825748,54.527731],[-5.828165,54.525027],[-5.828348,54.523584],[-5.830161,54.521014],[-5.831495,54.52016],[-5.830181,54.519193],[-5.830437,54.518472],[-5.829911,54.516374],[-5.828738,54.515419],[-5.829812,54.512538],[-5.831238,54.512137],[-5.831157,54.510687],[-5.830442,54.509521],[-5.830523,54.508313],[-5.829378,54.507351],[-5.833904,54.504787],[-5.831047,54.503089],[-5.834091,54.50143],[-5.830607,54.499025],[-5.82816,54.499769],[-5.824485,54.495505],[-5.823478,54.495769],[-5.818307,54.492167],[-5.817539,54.490406],[-5.815381,54.489454],[-5.814658,54.488086],[-5.815308,54.486229],[-5.812892,54.48519],[-5.813068,54.483389],[-5.811821,54.482499],[-5.809447,54.482509],[-5.80963,54.479378],[-5.808527,54.47814],[-5.808573,54.475951],[-5.801937,54.472944],[-5.799037,54.473674],[-5.796864,54.473244],[-5.794628,54.469255],[-5.795138,54.467984],[-5.793672,54.466741],[-5.792342,54.464747],[-5.790788,54.464005],[-5.788699,54.46361],[-5.787573,54.464052],[-5.78518,54.464005],[-5.778787,54.467177],[-5.776303,54.464245],[-5.776537,54.463559],[-5.770403,54.462468],[-5.765609,54.46524],[-5.762677,54.464548],[-5.761978,54.463421],[-5.759782,54.461885],[-5.758469,54.460054],[-5.756957,54.460112],[-5.751258,54.461941],[-5.751527,54.46228],[-5.745775,54.464487],[-5.738937,54.463884],[-5.736998,54.46399],[-5.734947,54.462413],[-5.733191,54.462336],[-5.733779,54.460915],[-5.732522,54.459015],[-5.733777,54.454237],[-5.727837,54.450098],[-5.723889,54.447816],[-5.722196,54.447511],[-5.714028,54.447714],[-5.702779,54.446485],[-5.702415,54.447823],[-5.701077,54.448847],[-5.700282,54.450718],[-5.696543,54.450934],[-5.696155,54.449954],[-5.694071,54.449896],[-5.693219,54.451157],[-5.692841,54.455012],[-5.689251,54.455931],[-5.68755,54.454259],[-5.684399,54.453473],[-5.682058,54.453914],[-5.682105,54.455354],[-5.678613,54.456179],[-5.678925,54.458396],[-5.677795,54.458581],[-5.67504,54.458204],[-5.674079,54.45772],[-5.671339,54.45842],[-5.671469,54.459436],[-5.670123,54.460483],[-5.668394,54.461063],[-5.662804,54.461478],[-5.660587,54.461319],[-5.658293,54.459918],[-5.657046,54.460494],[-5.655093,54.460178],[-5.653023,54.460309],[-5.651943,54.460975],[-5.649552,54.460724],[-5.647807,54.45939],[-5.644339,54.458089],[-5.639521,54.457603],[-5.637315,54.458501],[-5.633618,54.464233],[-5.62926,54.465089],[-5.625567,54.463762],[-5.614915,54.464022],[-5.584795,54.449619],[-5.59653,54.407002],[-5.58552,54.391792],[-5.549437,54.373873],[-5.534125,54.341949],[-5.517028,54.324459],[-5.502698,54.33189],[-5.500734,54.332381],[-5.50024,54.333031],[-5.49845,54.333708],[-5.496823,54.33552],[-5.498605,54.336235],[-5.498196,54.337133],[-5.500701,54.338178],[-5.500526,54.341202],[-5.498503,54.342762],[-5.500307,54.343375],[-5.499198,54.344634],[-5.49754,54.345179],[-5.497493,54.346198],[-5.496163,54.347384],[-5.497699,54.349087],[-5.497763,54.350157],[-5.499086,54.350576],[-5.499231,54.351605],[-5.498198,54.352155],[-5.495095,54.35146],[-5.494332,54.352536],[-5.494068,54.354663],[-5.490853,54.358008],[-5.488537,54.358089],[-5.485666,54.356738],[-5.484001,54.356739],[-5.48174,54.358668],[-5.48242,54.36021],[-5.481311,54.361431],[-5.482087,54.362232],[-5.481969,54.363308],[-5.483972,54.364585],[-5.488204,54.364675],[-5.488496,54.363802],[-5.489636,54.363457],[-5.492342,54.363894],[-5.494085,54.365424],[-5.493579,54.36627],[-5.49375,54.367542],[-5.493442,54.369752],[-5.490082,54.370797],[-5.489084,54.371687],[-5.487385,54.371884],[-5.488021,54.373365],[-5.486049,54.373927],[-5.489995,54.376656],[-5.488205,54.37865],[-5.484876,54.381764],[-5.484799,54.38304],[-5.482714,54.384161],[-5.479028,54.385025],[-5.474568,54.385019],[-5.473245,54.384149],[-5.473131,54.38322],[-5.47167,54.382436],[-5.469574,54.383057],[-5.468638,54.38262],[-5.467363,54.383269],[-5.465587,54.383478],[-5.46472,54.382955],[-5.463352,54.383522],[-5.461835,54.385634],[-5.461753,54.386783],[-5.460524,54.38856],[-5.461877,54.389572],[-5.459637,54.393008],[-5.460408,54.393706],[-5.462957,54.394132],[-5.462016,54.395346],[-5.465505,54.397209],[-5.465017,54.398334],[-5.466345,54.400266],[-5.465143,54.401596],[-5.466455,54.401779],[-5.466296,54.403144],[-5.464746,54.403456],[-5.465252,54.404524],[-5.463769,54.406119],[-5.465055,54.407294],[-5.464258,54.408181],[-5.466175,54.415415],[-5.466912,54.416587],[-5.468991,54.417475],[-5.469386,54.418705],[-5.471982,54.41838],[-5.473197,54.418961],[-5.473779,54.420808],[-5.473704,54.423846],[-5.4752,54.424194],[-5.477929,54.423495],[-5.480165,54.424703],[-5.481261,54.427173],[-5.480836,54.429448],[-5.479236,54.432018],[-5.474366,54.435472],[-5.463662,54.439197],[-5.46007,54.439625],[-5.45849,54.43866],[-5.456368,54.439483],[-5.456506,54.440128],[-5.455604,54.44173],[-5.453269,54.443645],[-5.454333,54.444537],[-5.452682,54.446463],[-5.452831,54.44739],[-5.451475,54.448608],[-5.452261,54.449601],[-5.451876,54.451033],[-5.450442,54.452111],[-5.446795,54.453725],[-5.442019,54.454564],[-5.441796,54.45536],[-5.438307,54.456131],[-5.440839,54.456462],[-5.439785,54.457873],[-5.437227,54.457431],[-5.438336,54.458984],[-5.441077,54.459511],[-5.439142,54.463407],[-5.437469,54.465515],[-5.437801,54.468028],[-5.43701,54.47003],[-5.438033,54.470831],[-5.437765,54.471731],[-5.439585,54.472542],[-5.441251,54.472333],[-5.443048,54.47348],[-5.443071,54.475722],[-5.442067,54.47756],[-5.439834,54.478153],[-5.440065,54.479112],[-5.439224,54.480551],[-5.439458,54.481532],[-5.437948,54.482954],[-5.434851,54.484616],[-5.434684,54.486077],[-5.433858,54.487432],[-5.435405,54.489115],[-5.438884,54.490615],[-5.441013,54.490429],[-5.441752,54.489407],[-5.444335,54.489397],[-5.446578,54.49003],[-5.447803,54.491035],[-5.451377,54.491671],[-5.457416,54.493604],[-5.461314,54.495828],[-5.461814,54.495783],[-5.464221,54.497992],[-5.466596,54.502519],[-5.467105,54.504527],[-5.466524,54.505473],[-5.467666,54.506274],[-5.468288,54.508113],[-5.469066,54.513912],[-5.472248,54.515902],[-5.472741,54.517196],[-5.472845,54.520293],[-5.471806,54.523384],[-5.47147,54.525893],[-5.473231,54.528795],[-5.474994,54.529469],[-5.478434,54.53025],[-5.482755,54.533971],[-5.484282,54.537132],[-5.484831,54.539891],[-5.483672,54.541623],[-5.484103,54.542261],[-5.4825,54.5434],[-5.485015,54.544142],[-5.486826,54.546715],[-5.485728,54.550739],[-5.483487,54.553375],[-5.481534,54.554642],[-5.480216,54.557706],[-5.478469,54.559112],[-5.47919,54.56085],[-5.47847,54.562293],[-5.478311,54.564145],[-5.480161,54.565989],[-5.480205,54.567056],[-5.482494,54.568174],[-5.485855,54.570964],[-5.489224,54.575071],[-5.489926,54.576779],[-5.491835,54.577707],[-5.493426,54.576813],[-5.495491,54.576675],[-5.49817,54.577209],[-5.499898,54.577889],[-5.50204,54.579382],[-5.504712,54.582127],[-5.504573,54.583147],[-5.505775,54.585385],[-5.505277,54.587436],[-5.505407,54.588844],[-5.506909,54.58991],[-5.507121,54.590949],[-5.508327,54.59192],[-5.509795,54.591573],[-5.51048,54.592897],[-5.511876,54.592219],[-5.515379,54.593839],[-5.519268,54.594852],[-5.520955,54.595773],[-5.523663,54.599465],[-5.523397,54.601625],[-5.525504,54.603489],[-5.524882,54.605523],[-5.526645,54.606649],[-5.526453,54.60804],[-5.52794,54.608327],[-5.529092,54.609865],[-5.529503,54.612663],[-5.529125,54.613457],[-5.531535,54.615012],[-5.53338,54.617304],[-5.532838,54.618888],[-5.530302,54.61962],[-5.531205,54.621291],[-5.532924,54.620739],[-5.534836,54.622075],[-5.535111,54.623147],[-5.534123,54.627068],[-5.532349,54.627576],[-5.532016,54.628525],[-5.532872,54.629441],[-5.533042,54.630784],[-5.531876,54.631759],[-5.53259,54.632551],[-5.53273,54.634365],[-5.530513,54.634958],[-5.529045,54.636347]]],[[[-5.524792,54.697745],[-5.526778,54.697591],[-5.52911,54.696593],[-5.529446,54.695158],[-5.528095,54.693316],[-5.525654,54.69267],[-5.524064,54.693185],[-5.523332,54.694184],[-5.523242,54.697104],[-5.524792,54.697745]]],[[[-5.514675,54.699137],[-5.51639,54.698714],[-5.517983,54.696893],[-5.520421,54.695593],[-5.518022,54.695321],[-5.517545,54.696317],[-5.514742,54.69614],[-5.513722,54.698627],[-5.514675,54.699137]]]]},"properties":{"LAD22CD":"N09000011","LAD22NM":"Ards and North Down","BNG_E":164321,"BNG_N":524944,"LONG":-5.64568,"LAT":54.56409,"GlobalID":"1a358c5e-9ae8-4604-b8a8-08afcc61d250"},"id":320}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.817288,56.102116],[-3.814875,56.102703],[-3.813073,56.10355],[-3.812567,56.106814],[-3.810376,56.108683],[-3.814484,56.109484],[-3.817152,56.109706],[-3.819884,56.10927],[-3.820901,56.104736],[-3.82265,56.102093],[-3.819605,56.1019],[-3.817288,56.102116]]],[[[-3.827278,56.111033],[-3.827838,56.112952],[-3.831176,56.11401],[-3.832901,56.109832],[-3.833079,56.10868],[-3.829479,56.10916],[-3.827914,56.109997],[-3.827278,56.111033]]],[[[-3.628348,56.13277],[-3.634098,56.133126],[-3.63425,56.133617],[-3.636862,56.134235],[-3.639834,56.133577],[-3.644786,56.137619],[-3.643693,56.138272],[-3.640889,56.138968],[-3.639236,56.140593],[-3.639753,56.14211],[-3.641479,56.144491],[-3.644092,56.145789],[-3.644706,56.146552],[-3.64026,56.1478],[-3.63895,56.149028],[-3.636645,56.149905],[-3.636661,56.151289],[-3.639274,56.15322],[-3.642799,56.154385],[-3.641865,56.155516],[-3.645855,56.156819],[-3.647924,56.158288],[-3.646827,56.159862],[-3.645144,56.161291],[-3.643442,56.162083],[-3.6368,56.163616],[-3.633335,56.163911],[-3.631462,56.165626],[-3.627026,56.167709],[-3.626881,56.169196],[-3.625883,56.16982],[-3.621452,56.168546],[-3.617663,56.168264],[-3.61436,56.168839],[-3.610501,56.170569],[-3.605903,56.170205],[-3.60557,56.171208],[-3.60392,56.171854],[-3.601658,56.171837],[-3.598158,56.171287],[-3.597516,56.17223],[-3.593341,56.172973],[-3.591406,56.174139],[-3.594929,56.177678],[-3.597176,56.177393],[-3.597977,56.181091],[-3.588064,56.181093],[-3.587914,56.183737],[-3.58234,56.184422],[-3.583076,56.185534],[-3.583162,56.186853],[-3.58537,56.189473],[-3.585032,56.19164],[-3.579948,56.193019],[-3.571407,56.192916],[-3.572291,56.194216],[-3.575247,56.196114],[-3.579371,56.195683],[-3.585093,56.198192],[-3.588144,56.198692],[-3.591737,56.198464],[-3.595958,56.199152],[-3.600164,56.201523],[-3.601982,56.203915],[-3.602853,56.204542],[-3.604775,56.204357],[-3.610966,56.204963],[-3.613189,56.204869],[-3.614605,56.205548],[-3.619266,56.205464],[-3.622784,56.203962],[-3.623864,56.202578],[-3.625946,56.200967],[-3.632443,56.199058],[-3.638064,56.196854],[-3.645636,56.199049],[-3.647068,56.199915],[-3.649097,56.202135],[-3.650553,56.202996],[-3.651796,56.201735],[-3.655472,56.199304],[-3.657621,56.196436],[-3.658929,56.196135],[-3.659614,56.194073],[-3.660851,56.193985],[-3.662352,56.192913],[-3.663256,56.191647],[-3.666936,56.188628],[-3.67511,56.192974],[-3.681837,56.194397],[-3.686454,56.195853],[-3.692532,56.194431],[-3.706248,56.193344],[-3.710804,56.192158],[-3.713995,56.193421],[-3.717957,56.191564],[-3.726329,56.193164],[-3.730855,56.192386],[-3.735442,56.190107],[-3.736621,56.189102],[-3.73886,56.189785],[-3.741308,56.192064],[-3.74076,56.19386],[-3.741146,56.197561],[-3.743107,56.200113],[-3.74512,56.201136],[-3.745746,56.203378],[-3.74828,56.206276],[-3.748406,56.207977],[-3.751112,56.210221],[-3.752188,56.211908],[-3.753394,56.211649],[-3.75531,56.210346],[-3.758939,56.211462],[-3.763293,56.211796],[-3.76426,56.213013],[-3.775099,56.215517],[-3.780879,56.217227],[-3.781871,56.213753],[-3.783119,56.212482],[-3.785903,56.212033],[-3.78913,56.210005],[-3.799241,56.205733],[-3.82945,56.196549],[-3.832517,56.190756],[-3.838481,56.191052],[-3.842516,56.190687],[-3.841187,56.188501],[-3.844084,56.182212],[-3.845526,56.181714],[-3.848465,56.179339],[-3.848255,56.175639],[-3.849316,56.174258],[-3.851908,56.172372],[-3.853088,56.169277],[-3.855781,56.16752],[-3.856613,56.165737],[-3.858173,56.164523],[-3.856345,56.162515],[-3.857625,56.16054],[-3.857588,56.159006],[-3.856547,56.157394],[-3.856763,56.155739],[-3.855485,56.154829],[-3.854257,56.152887],[-3.857104,56.152687],[-3.859262,56.1521],[-3.863184,56.152343],[-3.866029,56.1522],[-3.873479,56.15125],[-3.877869,56.14996],[-3.875286,56.149906],[-3.874285,56.148365],[-3.870847,56.148148],[-3.868753,56.146842],[-3.864798,56.142554],[-3.8636,56.142037],[-3.86039,56.141401],[-3.860344,56.140291],[-3.857848,56.13919],[-3.857263,56.137834],[-3.859996,56.137509],[-3.860607,56.136778],[-3.857957,56.136181],[-3.857495,56.135313],[-3.870379,56.134691],[-3.87797,56.134883],[-3.879381,56.132455],[-3.880574,56.132081],[-3.880837,56.129827],[-3.881814,56.128964],[-3.88396,56.12944],[-3.882414,56.128623],[-3.880396,56.12658],[-3.878706,56.124417],[-3.87779,56.1215],[-3.876556,56.120314],[-3.874917,56.120083],[-3.870826,56.121208],[-3.868214,56.121427],[-3.86588,56.120709],[-3.863621,56.119005],[-3.862145,56.116356],[-3.862967,56.11388],[-3.865352,56.112659],[-3.869114,56.111604],[-3.870627,56.110418],[-3.869673,56.108956],[-3.866521,56.107792],[-3.864177,56.107799],[-3.862454,56.108385],[-3.857953,56.111999],[-3.857537,56.113895],[-3.858989,56.117144],[-3.858552,56.118564],[-3.85734,56.119833],[-3.853309,56.121165],[-3.852059,56.121356],[-3.846089,56.120745],[-3.835308,56.118188],[-3.829627,56.11573],[-3.826415,56.113114],[-3.82586,56.111685],[-3.826827,56.109307],[-3.827874,56.108528],[-3.832218,56.106894],[-3.833304,56.105437],[-3.832118,56.104076],[-3.830042,56.103267],[-3.826536,56.103388],[-3.826726,56.104425],[-3.825538,56.105516],[-3.823859,56.108559],[-3.822486,56.109869],[-3.819902,56.110973],[-3.814603,56.111723],[-3.805197,56.110346],[-3.804166,56.110404],[-3.79766,56.108678],[-3.7959,56.107542],[-3.794948,56.107568],[-3.793009,56.105256],[-3.790894,56.104565],[-3.786511,56.100624],[-3.781689,56.09789],[-3.776088,56.093941],[-3.77202,56.094436],[-3.77237,56.093137],[-3.774222,56.093556],[-3.777043,56.093241],[-3.772085,56.089978],[-3.769374,56.087906],[-3.761294,56.083419],[-3.748396,56.079514],[-3.746931,56.07989],[-3.741276,56.079897],[-3.739259,56.079442],[-3.738583,56.078375],[-3.736744,56.080883],[-3.736388,56.08323],[-3.734517,56.085278],[-3.73059,56.085603],[-3.728647,56.087899],[-3.723312,56.089363],[-3.721445,56.087787],[-3.718824,56.091766],[-3.717864,56.094284],[-3.717481,56.102649],[-3.714622,56.104487],[-3.70981,56.104609],[-3.701912,56.103004],[-3.690923,56.102112],[-3.688235,56.102156],[-3.686171,56.101866],[-3.679634,56.102096],[-3.674474,56.100232],[-3.675026,56.101286],[-3.674899,56.103498],[-3.674352,56.104013],[-3.674734,56.105927],[-3.672583,56.107799],[-3.669793,56.106937],[-3.664772,56.107704],[-3.661946,56.109372],[-3.659183,56.109321],[-3.657593,56.109592],[-3.656031,56.109027],[-3.656773,56.108323],[-3.653518,56.107494],[-3.652566,56.108171],[-3.650175,56.108361],[-3.648933,56.109221],[-3.647029,56.109556],[-3.641253,56.108956],[-3.640645,56.10937],[-3.638227,56.10917],[-3.6365,56.109419],[-3.634933,56.108834],[-3.628787,56.110441],[-3.629232,56.11145],[-3.644292,56.115588],[-3.651016,56.11775],[-3.657157,56.118857],[-3.659645,56.119831],[-3.663939,56.123046],[-3.663203,56.123587],[-3.660547,56.124184],[-3.657075,56.124298],[-3.654402,56.124934],[-3.650727,56.129169],[-3.648695,56.129581],[-3.646471,56.129568],[-3.645296,56.130007],[-3.643644,56.129656],[-3.640918,56.129894],[-3.637266,56.129652],[-3.636439,56.130371],[-3.631156,56.131272],[-3.628377,56.131222],[-3.628348,56.13277]]]]},"properties":{"LAD22CD":"S12000005","LAD22NM":"Clackmannanshire","BNG_E":291178,"BNG_N":696402,"LONG":-3.75316,"LAT":56.14784,"GlobalID":"6e526eb1-d8cf-40b1-b4a7-6860ee64389b"},"id":321}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.085281,54.768597],[-4.085256,54.768078],[-4.087378,54.76709],[-4.08852,54.765138],[-4.087007,54.763923],[-4.084785,54.764991],[-4.083387,54.764842],[-4.082555,54.767303],[-4.083918,54.768508],[-4.085281,54.768597]]],[[[-3.507378,55.412264],[-3.51017,55.410517],[-3.512233,55.410357],[-3.514612,55.408526],[-3.521078,55.406226],[-3.52067,55.403629],[-3.521083,55.402456],[-3.523272,55.400847],[-3.526752,55.39999],[-3.528783,55.400028],[-3.530275,55.399398],[-3.5314,55.396436],[-3.536639,55.396757],[-3.538558,55.396162],[-3.540999,55.397017],[-3.54329,55.397064],[-3.54552,55.397944],[-3.548293,55.397989],[-3.549832,55.398985],[-3.554268,55.396956],[-3.555455,55.392592],[-3.556129,55.392066],[-3.556231,55.390663],[-3.557458,55.389124],[-3.558836,55.388271],[-3.564851,55.386321],[-3.570103,55.386815],[-3.571813,55.386449],[-3.574972,55.385149],[-3.578494,55.384963],[-3.580013,55.382077],[-3.580032,55.381169],[-3.574809,55.377233],[-3.573925,55.375838],[-3.575976,55.375443],[-3.578346,55.372919],[-3.577771,55.371573],[-3.571618,55.369213],[-3.571268,55.368139],[-3.572652,55.365228],[-3.574285,55.36384],[-3.576798,55.360384],[-3.577671,55.360126],[-3.577144,55.358182],[-3.572246,55.356992],[-3.572692,55.355103],[-3.574931,55.3529],[-3.575869,55.350515],[-3.577698,55.349139],[-3.580472,55.347961],[-3.584321,55.348331],[-3.587415,55.347216],[-3.588269,55.346175],[-3.587748,55.344774],[-3.583911,55.343075],[-3.584423,55.341187],[-3.578646,55.334643],[-3.577034,55.331624],[-3.575407,55.330526],[-3.573965,55.328361],[-3.575021,55.328154],[-3.586675,55.322952],[-3.592451,55.325515],[-3.59363,55.325037],[-3.596012,55.325662],[-3.598107,55.325841],[-3.599928,55.326828],[-3.607028,55.325827],[-3.607969,55.325514],[-3.613194,55.321441],[-3.614824,55.318899],[-3.621552,55.316542],[-3.621297,55.315129],[-3.617838,55.311836],[-3.618684,55.309582],[-3.616567,55.305566],[-3.618617,55.303099],[-3.619138,55.299462],[-3.618656,55.295745],[-3.619372,55.295461],[-3.626021,55.294201],[-3.630453,55.29422],[-3.632582,55.295041],[-3.634133,55.294836],[-3.639465,55.29143],[-3.644045,55.290771],[-3.645287,55.292435],[-3.649382,55.292649],[-3.652973,55.29132],[-3.655034,55.29202],[-3.657211,55.291914],[-3.662028,55.292244],[-3.663614,55.291751],[-3.665467,55.293321],[-3.666993,55.295353],[-3.670126,55.296074],[-3.66895,55.298445],[-3.672402,55.300573],[-3.673424,55.305385],[-3.678364,55.308948],[-3.680657,55.309707],[-3.68379,55.309637],[-3.686385,55.310455],[-3.690219,55.311139],[-3.693734,55.310811],[-3.698766,55.313612],[-3.699976,55.316606],[-3.699472,55.318017],[-3.707214,55.320709],[-3.711157,55.323159],[-3.710256,55.323714],[-3.711561,55.325764],[-3.712306,55.328409],[-3.710637,55.329696],[-3.710326,55.335799],[-3.714324,55.340097],[-3.711117,55.342154],[-3.710462,55.344149],[-3.712099,55.345357],[-3.717522,55.34786],[-3.72018,55.350245],[-3.718733,55.352951],[-3.717767,55.353573],[-3.71383,55.359321],[-3.712212,55.360917],[-3.711044,55.363242],[-3.712084,55.363286],[-3.715409,55.364642],[-3.720627,55.365249],[-3.725966,55.36505],[-3.728916,55.364492],[-3.734661,55.364891],[-3.736266,55.365879],[-3.742601,55.368571],[-3.744564,55.370875],[-3.746485,55.370596],[-3.748154,55.371471],[-3.7504,55.374723],[-3.75366,55.374941],[-3.752899,55.377702],[-3.754175,55.378363],[-3.756967,55.378875],[-3.758656,55.38028],[-3.761311,55.384798],[-3.761219,55.387531],[-3.762749,55.388727],[-3.762937,55.390832],[-3.761833,55.391917],[-3.765253,55.393737],[-3.763452,55.396715],[-3.763778,55.399438],[-3.764595,55.401102],[-3.769303,55.401852],[-3.777171,55.404246],[-3.778083,55.404868],[-3.777873,55.406519],[-3.777028,55.407191],[-3.778796,55.408742],[-3.781078,55.408732],[-3.781743,55.40825],[-3.786709,55.40856],[-3.789025,55.410687],[-3.790919,55.410318],[-3.792296,55.410545],[-3.792336,55.415442],[-3.79397,55.417503],[-3.796071,55.419076],[-3.800319,55.420924],[-3.80164,55.420617],[-3.80319,55.420994],[-3.807612,55.423202],[-3.810349,55.427583],[-3.816403,55.427269],[-3.817989,55.429636],[-3.818009,55.433163],[-3.819052,55.43454],[-3.822739,55.436175],[-3.825477,55.439316],[-3.825515,55.441171],[-3.824206,55.443109],[-3.825499,55.444416],[-3.833959,55.446154],[-3.838317,55.44789],[-3.860926,55.452137],[-3.864788,55.454247],[-3.868337,55.454783],[-3.869445,55.456981],[-3.889082,55.45636],[-3.890861,55.458337],[-3.893191,55.459595],[-3.895436,55.459758],[-3.900152,55.45964],[-3.902538,55.459038],[-3.906118,55.45757],[-3.908276,55.457388],[-3.910051,55.457634],[-3.913793,55.457014],[-3.916779,55.457767],[-3.919536,55.457702],[-3.924348,55.456327],[-3.927277,55.459804],[-3.935301,55.457952],[-3.940986,55.458434],[-3.948225,55.45994],[-3.950047,55.461268],[-3.950982,55.462592],[-3.956777,55.45983],[-3.965261,55.455178],[-3.96979,55.454364],[-3.974435,55.457898],[-3.976088,55.460909],[-3.980044,55.462831],[-3.986227,55.464052],[-3.987054,55.461005],[-3.991891,55.460625],[-3.99571,55.456227],[-3.997396,55.456101],[-3.997809,55.455209],[-4.001575,55.45539],[-4.005163,55.454742],[-4.010822,55.451099],[-4.011615,55.449437],[-4.013,55.448228],[-4.015437,55.447963],[-4.01711,55.447113],[-4.016474,55.446557],[-4.008319,55.444678],[-4.006689,55.4432],[-4.005032,55.442962],[-4.00447,55.44107],[-4.003137,55.439888],[-4.002197,55.438296],[-4.002724,55.43655],[-4.007791,55.435637],[-4.019,55.430586],[-4.031295,55.42623],[-4.032525,55.424295],[-4.036251,55.423348],[-4.043066,55.422201],[-4.046055,55.422097],[-4.05122,55.423585],[-4.054293,55.421123],[-4.059258,55.419534],[-4.063225,55.417796],[-4.065452,55.41795],[-4.068413,55.415708],[-4.070511,55.414998],[-4.078125,55.41345],[-4.082341,55.412931],[-4.086291,55.411523],[-4.090846,55.412068],[-4.096342,55.39891],[-4.099048,55.395458],[-4.097976,55.395023],[-4.098231,55.392195],[-4.09766,55.390505],[-4.09866,55.389152],[-4.097471,55.387719],[-4.097179,55.385487],[-4.101361,55.381924],[-4.104316,55.374265],[-4.107499,55.369006],[-4.102637,55.365794],[-4.102845,55.364216],[-4.100968,55.361551],[-4.099714,55.360517],[-4.098993,55.357923],[-4.092928,55.353753],[-4.091314,55.353416],[-4.08573,55.351261],[-4.089703,55.349427],[-4.091133,55.347385],[-4.094253,55.345983],[-4.095216,55.344922],[-4.097165,55.344347],[-4.099581,55.342531],[-4.09956,55.341987],[-4.101459,55.340438],[-4.102041,55.339354],[-4.101747,55.338343],[-4.10342,55.33764],[-4.10296,55.337027],[-4.104595,55.336452],[-4.10503,55.334914],[-4.106462,55.334477],[-4.107074,55.333557],[-4.107063,55.331662],[-4.108018,55.330326],[-4.111058,55.329024],[-4.111947,55.327438],[-4.116386,55.325231],[-4.117101,55.32394],[-4.119136,55.322271],[-4.121325,55.315011],[-4.122494,55.313737],[-4.116139,55.307439],[-4.114551,55.30721],[-4.11246,55.305395],[-4.113589,55.302311],[-4.116382,55.299579],[-4.124075,55.296295],[-4.130598,55.296025],[-4.133916,55.29283],[-4.139332,55.284592],[-4.142618,55.283626],[-4.145582,55.283835],[-4.149662,55.285179],[-4.159743,55.290151],[-4.16587,55.29175],[-4.171635,55.294349],[-4.173542,55.295654],[-4.174742,55.297012],[-4.176746,55.300086],[-4.176469,55.300653],[-4.178208,55.302761],[-4.179833,55.302952],[-4.18123,55.304442],[-4.183554,55.305582],[-4.182686,55.306133],[-4.184078,55.307083],[-4.186254,55.307691],[-4.187855,55.308862],[-4.189984,55.311044],[-4.192835,55.311586],[-4.193795,55.313704],[-4.194751,55.314891],[-4.196437,55.315178],[-4.19668,55.315867],[-4.19928,55.315777],[-4.201551,55.317819],[-4.202858,55.318234],[-4.209132,55.318306],[-4.210929,55.317309],[-4.215982,55.316359],[-4.217464,55.317928],[-4.219139,55.317578],[-4.22042,55.318355],[-4.222651,55.317519],[-4.224186,55.31831],[-4.226759,55.318136],[-4.228005,55.319408],[-4.227908,55.320209],[-4.229085,55.321936],[-4.23146,55.32214],[-4.232759,55.322808],[-4.237586,55.321048],[-4.239515,55.321435],[-4.240138,55.320606],[-4.240191,55.319171],[-4.242285,55.318009],[-4.243332,55.315487],[-4.24457,55.314246],[-4.245737,55.313977],[-4.246058,55.311437],[-4.248755,55.308556],[-4.248172,55.307569],[-4.249629,55.306309],[-4.251289,55.306559],[-4.25275,55.30619],[-4.254718,55.306313],[-4.257669,55.305286],[-4.257227,55.306512],[-4.258144,55.307947],[-4.261355,55.308867],[-4.264626,55.309018],[-4.268948,55.310488],[-4.269455,55.311085],[-4.272065,55.310012],[-4.275599,55.309942],[-4.27777,55.309605],[-4.279217,55.308746],[-4.285785,55.30759],[-4.290082,55.308741],[-4.291281,55.30959],[-4.293231,55.309243],[-4.295975,55.309686],[-4.297894,55.310989],[-4.300483,55.31069],[-4.301907,55.310078],[-4.302762,55.309064],[-4.304076,55.304819],[-4.305372,55.303954],[-4.307517,55.303446],[-4.31051,55.300986],[-4.310374,55.298521],[-4.309699,55.296794],[-4.31058,55.295699],[-4.310842,55.293568],[-4.31292,55.291516],[-4.318193,55.287807],[-4.319762,55.286213],[-4.322394,55.285314],[-4.324133,55.284341],[-4.324837,55.282643],[-4.327696,55.280913],[-4.327551,55.278978],[-4.3313,55.276983],[-4.331798,55.276353],[-4.333992,55.276576],[-4.335917,55.277586],[-4.337433,55.277791],[-4.337733,55.276738],[-4.335998,55.274547],[-4.338233,55.273322],[-4.339039,55.272313],[-4.344939,55.27078],[-4.345805,55.267712],[-4.347503,55.264735],[-4.345237,55.263682],[-4.346318,55.26265],[-4.348138,55.264296],[-4.350327,55.264182],[-4.354071,55.264537],[-4.355126,55.264018],[-4.356344,55.262651],[-4.355213,55.261286],[-4.357035,55.260098],[-4.356882,55.259386],[-4.358045,55.258294],[-4.359537,55.257843],[-4.359892,55.256798],[-4.359233,55.255763],[-4.356337,55.254026],[-4.355343,55.252661],[-4.357749,55.248381],[-4.358188,55.246473],[-4.361633,55.242959],[-4.361863,55.241345],[-4.36133,55.237867],[-4.362419,55.235497],[-4.364362,55.233418],[-4.365539,55.229425],[-4.369615,55.227349],[-4.372743,55.222497],[-4.375282,55.219932],[-4.377235,55.212497],[-4.378264,55.210514],[-4.379171,55.210061],[-4.379777,55.20842],[-4.381555,55.207289],[-4.380164,55.206444],[-4.377531,55.205734],[-4.38006,55.204671],[-4.379056,55.202858],[-4.377383,55.201456],[-4.37955,55.201032],[-4.383606,55.202136],[-4.387296,55.202393],[-4.388641,55.202787],[-4.39219,55.202467],[-4.392202,55.200961],[-4.393761,55.200368],[-4.394746,55.199134],[-4.39376,55.197675],[-4.395062,55.195813],[-4.395162,55.194518],[-4.396557,55.193378],[-4.396048,55.191943],[-4.397638,55.190634],[-4.397361,55.186367],[-4.399619,55.185978],[-4.401083,55.186871],[-4.402291,55.186715],[-4.402597,55.185771],[-4.405527,55.183396],[-4.405599,55.182011],[-4.407327,55.181382],[-4.409267,55.179228],[-4.409444,55.178048],[-4.408868,55.177317],[-4.410107,55.17638],[-4.409221,55.174978],[-4.409081,55.173409],[-4.410472,55.171376],[-4.410683,55.169924],[-4.412849,55.168084],[-4.411896,55.166611],[-4.410677,55.166181],[-4.41167,55.165339],[-4.407941,55.162599],[-4.408152,55.161943],[-4.407124,55.160642],[-4.406641,55.158867],[-4.407272,55.156963],[-4.409567,55.151551],[-4.410724,55.150571],[-4.413802,55.149171],[-4.415681,55.147412],[-4.416434,55.147402],[-4.420646,55.143741],[-4.422229,55.143453],[-4.424449,55.142528],[-4.424909,55.141841],[-4.430791,55.139467],[-4.432956,55.139082],[-4.433886,55.139378],[-4.435452,55.13834],[-4.43738,55.14022],[-4.438491,55.140477],[-4.438394,55.138808],[-4.439342,55.138786],[-4.440918,55.139721],[-4.441104,55.143895],[-4.442184,55.144763],[-4.442691,55.147148],[-4.441589,55.148631],[-4.442699,55.150613],[-4.442257,55.151346],[-4.442695,55.152869],[-4.442414,55.154176],[-4.443367,55.155275],[-4.44505,55.156328],[-4.447454,55.159452],[-4.44767,55.161942],[-4.446951,55.162636],[-4.446857,55.164561],[-4.442918,55.167044],[-4.44269,55.168438],[-4.444144,55.169501],[-4.444476,55.167858],[-4.445159,55.167224],[-4.450575,55.167978],[-4.452978,55.169903],[-4.455608,55.171297],[-4.459984,55.170063],[-4.461847,55.17022],[-4.462576,55.16855],[-4.461761,55.167304],[-4.46249,55.166651],[-4.462806,55.164761],[-4.464041,55.163397],[-4.463722,55.16205],[-4.464727,55.161805],[-4.465627,55.160731],[-4.468393,55.15939],[-4.468727,55.158565],[-4.471812,55.156161],[-4.475077,55.155901],[-4.476134,55.153965],[-4.478621,55.152926],[-4.482864,55.15301],[-4.491584,55.152113],[-4.500335,55.15264],[-4.513575,55.151713],[-4.515506,55.153137],[-4.532121,55.158325],[-4.537995,55.157354],[-4.53971,55.157942],[-4.542235,55.157521],[-4.543299,55.158474],[-4.547413,55.158487],[-4.54855,55.158818],[-4.551591,55.158499],[-4.553217,55.15877],[-4.557134,55.158517],[-4.560567,55.15749],[-4.562624,55.157467],[-4.564967,55.158015],[-4.567147,55.156518],[-4.567573,55.155453],[-4.570919,55.154276],[-4.57271,55.154895],[-4.573019,55.153729],[-4.575453,55.153003],[-4.575453,55.151478],[-4.574611,55.149686],[-4.578648,55.149133],[-4.577266,55.147171],[-4.579925,55.147146],[-4.581744,55.144443],[-4.584001,55.141977],[-4.586158,55.1427],[-4.590589,55.142655],[-4.591455,55.141495],[-4.590903,55.140963],[-4.592783,55.140073],[-4.594627,55.141162],[-4.597052,55.140198],[-4.598325,55.138423],[-4.600878,55.139316],[-4.602689,55.139404],[-4.605022,55.140531],[-4.605333,55.141329],[-4.607318,55.140855],[-4.608174,55.141471],[-4.610762,55.141811],[-4.612384,55.140931],[-4.614589,55.141657],[-4.616369,55.139834],[-4.620653,55.141158],[-4.623171,55.140784],[-4.624153,55.139529],[-4.626367,55.139378],[-4.626265,55.137086],[-4.625111,55.136249],[-4.626578,55.135605],[-4.626695,55.134381],[-4.629915,55.133214],[-4.631734,55.133078],[-4.635254,55.130914],[-4.637794,55.131106],[-4.639087,55.130148],[-4.641161,55.129717],[-4.642296,55.128977],[-4.645602,55.12784],[-4.644629,55.125938],[-4.646635,55.125202],[-4.64687,55.123893],[-4.648607,55.122997],[-4.650306,55.121185],[-4.651982,55.121503],[-4.654609,55.120939],[-4.656007,55.121038],[-4.658313,55.119938],[-4.658954,55.116908],[-4.65957,55.116021],[-4.660942,55.115555],[-4.661217,55.114492],[-4.663316,55.114577],[-4.66327,55.113643],[-4.661244,55.113139],[-4.662348,55.112283],[-4.66179,55.110022],[-4.65983,55.108729],[-4.660456,55.107763],[-4.658652,55.106756],[-4.659841,55.105206],[-4.659612,55.104271],[-4.660263,55.102746],[-4.658197,55.101493],[-4.659902,55.100494],[-4.658271,55.099423],[-4.657793,55.097775],[-4.657983,55.096149],[-4.656544,55.095241],[-4.656969,55.093033],[-4.657925,55.092927],[-4.658006,55.091546],[-4.659107,55.090308],[-4.660929,55.090479],[-4.662123,55.089744],[-4.661268,55.088768],[-4.660013,55.088501],[-4.658046,55.087149],[-4.655302,55.087631],[-4.654497,55.087433],[-4.653728,55.085769],[-4.652826,55.085159],[-4.649812,55.085194],[-4.650419,55.083122],[-4.646917,55.08133],[-4.648051,55.080135],[-4.64663,55.078067],[-4.644338,55.078004],[-4.643005,55.077244],[-4.641046,55.077622],[-4.638313,55.077043],[-4.638004,55.078173],[-4.634717,55.078236],[-4.632788,55.077491],[-4.630562,55.077233],[-4.628863,55.07629],[-4.628979,55.074812],[-4.631365,55.074312],[-4.630504,55.071576],[-4.629226,55.070844],[-4.627054,55.070927],[-4.625224,55.068449],[-4.625388,55.067021],[-4.626964,55.064892],[-4.629207,55.063985],[-4.628744,55.062652],[-4.627214,55.0613],[-4.627019,55.060594],[-4.629762,55.060751],[-4.630039,55.059603],[-4.632267,55.057995],[-4.633863,55.05512],[-4.635539,55.05369],[-4.633752,55.051366],[-4.636429,55.050916],[-4.639851,55.049993],[-4.640698,55.05072],[-4.642188,55.04933],[-4.645815,55.048771],[-4.644705,55.050813],[-4.644571,55.051989],[-4.645399,55.053261],[-4.647679,55.054591],[-4.645933,55.055667],[-4.64674,55.056382],[-4.6487,55.055346],[-4.651005,55.055053],[-4.654614,55.053729],[-4.656724,55.052506],[-4.658004,55.053503],[-4.660854,55.053508],[-4.66311,55.05269],[-4.664364,55.051534],[-4.666771,55.05065],[-4.670097,55.050973],[-4.671831,55.050094],[-4.67727,55.049013],[-4.676887,55.046666],[-4.68075,55.04428],[-4.688427,55.044137],[-4.689595,55.044902],[-4.694632,55.04258],[-4.695904,55.043036],[-4.698774,55.041787],[-4.702393,55.041607],[-4.7051,55.040562],[-4.705579,55.039895],[-4.70759,55.040019],[-4.708459,55.039045],[-4.710947,55.039624],[-4.711945,55.038635],[-4.715172,55.037511],[-4.716017,55.038095],[-4.716529,55.039409],[-4.719367,55.040986],[-4.720278,55.042561],[-4.722005,55.044222],[-4.726067,55.045647],[-4.728128,55.044828],[-4.728803,55.043658],[-4.730125,55.042763],[-4.731917,55.042984],[-4.733929,55.041621],[-4.735144,55.041515],[-4.737342,55.042183],[-4.737681,55.0436],[-4.739142,55.044134],[-4.739172,55.045832],[-4.740369,55.047203],[-4.741457,55.047309],[-4.743325,55.046584],[-4.743996,55.045063],[-4.74568,55.044049],[-4.747711,55.043648],[-4.749682,55.044188],[-4.7514,55.042985],[-4.752309,55.041751],[-4.755807,55.041168],[-4.756789,55.039581],[-4.759003,55.039051],[-4.761074,55.037975],[-4.766109,55.039937],[-4.775992,55.041838],[-4.776511,55.040967],[-4.779902,55.03964],[-4.782535,55.038101],[-4.786988,55.033024],[-4.789212,55.031467],[-4.792832,55.032098],[-4.794081,55.033068],[-4.792523,55.03576],[-4.790477,55.036602],[-4.791825,55.037983],[-4.796749,55.041137],[-4.79885,55.041638],[-4.799426,55.042716],[-4.798501,55.044037],[-4.802353,55.044393],[-4.80339,55.044221],[-4.80426,55.043113],[-4.806578,55.043797],[-4.809759,55.043058],[-4.810907,55.043247],[-4.812601,55.042736],[-4.816462,55.042984],[-4.819289,55.041225],[-4.821189,55.041521],[-4.824362,55.041232],[-4.82607,55.040698],[-4.826406,55.040021],[-4.825849,55.038231],[-4.827505,55.035293],[-4.830605,55.034641],[-4.833738,55.035571],[-4.83301,55.038109],[-4.835163,55.038563],[-4.836638,55.040272],[-4.83522,55.041038],[-4.83691,55.042127],[-4.83867,55.04267],[-4.837651,55.043755],[-4.841056,55.044745],[-4.843821,55.04433],[-4.844105,55.04315],[-4.848694,55.043393],[-4.849673,55.043074],[-4.851206,55.043703],[-4.855224,55.042427],[-4.855544,55.041538],[-4.857542,55.040682],[-4.859635,55.041487],[-4.862112,55.041321],[-4.863094,55.040867],[-4.865052,55.04118],[-4.865966,55.040704],[-4.869781,55.040093],[-4.871357,55.038927],[-4.872789,55.038377],[-4.875256,55.038188],[-4.876844,55.038393],[-4.879426,55.039798],[-4.882042,55.039828],[-4.884097,55.039336],[-4.884426,55.042057],[-4.883554,55.042675],[-4.88352,55.04435],[-4.882821,55.045102],[-4.882593,55.047157],[-4.888167,55.052275],[-4.896212,55.053621],[-4.894643,55.05836],[-4.89473,55.060862],[-4.898903,55.062591],[-4.901038,55.064267],[-4.905191,55.062024],[-4.908846,55.06199],[-4.912924,55.066388],[-4.915647,55.066125],[-4.919165,55.066476],[-4.923046,55.066208],[-4.923675,55.064952],[-4.930959,55.064732],[-4.9334,55.064372],[-4.932558,55.061861],[-4.929879,55.059278],[-4.931404,55.057435],[-4.9309,55.055033],[-4.931281,55.05372],[-4.930517,55.052049],[-4.930781,55.051382],[-4.935455,55.048435],[-4.940009,55.046421],[-4.943204,55.043561],[-4.944394,55.040371],[-4.944227,55.039257],[-4.949995,55.031368],[-4.952005,55.029755],[-4.955769,55.028486],[-4.95773,55.02749],[-4.956671,55.025749],[-4.962237,55.020274],[-4.969038,55.021892],[-4.974051,55.02355],[-4.976875,55.022919],[-4.97806,55.022121],[-4.981062,55.017867],[-4.973231,55.011537],[-4.978475,55.009255],[-4.98684,55.010996],[-4.992453,55.009069],[-5.015458,55.005759],[-5.028105,55.002666],[-5.029493,55.002618],[-5.032869,55.000722],[-5.035055,54.999018],[-5.039742,54.997771],[-5.037993,54.994854],[-5.037307,54.991051],[-5.035611,54.988576],[-5.036616,54.984811],[-5.035226,54.982963],[-5.032847,54.981303],[-5.030246,54.980214],[-5.030237,54.977472],[-5.031442,54.974823],[-5.030389,54.973952],[-5.026916,54.973843],[-5.024586,54.973349],[-5.019012,54.970265],[-5.015981,54.966527],[-5.016777,54.966169],[-5.014186,54.963708],[-5.01681,54.962729],[-5.012683,54.961422],[-5.012924,54.960609],[-5.011013,54.960098],[-5.009292,54.957175],[-5.006361,54.954272],[-5.005704,54.952848],[-5.006111,54.951742],[-5.007299,54.95066],[-5.005944,54.949852],[-5.005611,54.948808],[-5.006765,54.944437],[-5.006118,54.943677],[-5.003795,54.943601],[-5.001914,54.942986],[-5.000977,54.9418],[-5.001016,54.940343],[-4.998402,54.939059],[-4.99597,54.936311],[-4.994568,54.931949],[-4.995001,54.930777],[-4.992714,54.928938],[-4.992573,54.928006],[-4.993298,54.926325],[-4.9908,54.921743],[-4.991144,54.920671],[-4.990516,54.918614],[-4.993656,54.914845],[-4.996259,54.912965],[-5.00014,54.910987],[-5.003688,54.909645],[-5.011231,54.907174],[-5.018053,54.905452],[-5.026422,54.910549],[-5.024784,54.90905],[-5.025302,54.908113],[-5.022635,54.906404],[-5.024303,54.90613],[-5.030282,54.906248],[-5.029335,54.907383],[-5.033827,54.908042],[-5.035503,54.908606],[-5.036659,54.910068],[-5.0415,54.912919],[-5.047106,54.917724],[-5.053975,54.920013],[-5.060811,54.923744],[-5.064604,54.927807],[-5.065187,54.931266],[-5.06831,54.933452],[-5.068621,54.935978],[-5.069337,54.936657],[-5.07017,54.940697],[-5.069438,54.944845],[-5.071732,54.949503],[-5.071796,54.950547],[-5.069562,54.953347],[-5.0706,54.954884],[-5.071048,54.957041],[-5.073628,54.958181],[-5.074971,54.959287],[-5.074297,54.961679],[-5.075065,54.963675],[-5.073124,54.965473],[-5.06875,54.967271],[-5.064,54.968271],[-5.061332,54.967834],[-5.065337,54.970783],[-5.065829,54.971766],[-5.065464,54.973974],[-5.06788,54.975955],[-5.072138,54.981693],[-5.071732,54.983845],[-5.07041,54.986541],[-5.070399,54.988809],[-5.075014,54.991476],[-5.076247,54.993987],[-5.07528,54.994924],[-5.07602,54.996078],[-5.07832,54.997019],[-5.081587,54.997876],[-5.08269,54.99864],[-5.087079,55.000443],[-5.087336,55.001322],[-5.085942,55.00217],[-5.085714,55.003654],[-5.087062,55.004379],[-5.088259,55.005721],[-5.088587,55.008045],[-5.08977,55.009671],[-5.089864,55.010919],[-5.090977,55.011976],[-5.090673,55.012886],[-5.092592,55.014621],[-5.093241,55.014612],[-5.095679,55.017172],[-5.097077,55.017196],[-5.098293,55.018073],[-5.101301,55.018236],[-5.102974,55.017073],[-5.104674,55.017993],[-5.108962,55.018127],[-5.113468,55.016463],[-5.115836,55.01622],[-5.116769,55.015185],[-5.119586,55.014547],[-5.121627,55.013334],[-5.123284,55.011342],[-5.125103,55.011454],[-5.128076,55.010687],[-5.128871,55.010787],[-5.131181,55.009876],[-5.133226,55.009898],[-5.137922,55.007008],[-5.139304,55.007476],[-5.140555,55.006931],[-5.142937,55.006606],[-5.144824,55.007292],[-5.146923,55.008574],[-5.148035,55.008524],[-5.149336,55.007545],[-5.151999,55.00865],[-5.154293,55.00803],[-5.157088,55.008611],[-5.157321,55.007457],[-5.160228,55.00744],[-5.159766,55.006478],[-5.161794,55.005629],[-5.160766,55.004033],[-5.165277,55.002045],[-5.167058,55.001582],[-5.167723,55.000548],[-5.168844,55.000193],[-5.168964,54.998334],[-5.168542,54.997629],[-5.170532,54.997342],[-5.171076,54.995854],[-5.172366,54.99488],[-5.172538,54.993813],[-5.1707,54.992085],[-5.173707,54.990678],[-5.175762,54.989139],[-5.175108,54.98844],[-5.17546,54.987475],[-5.176821,54.986035],[-5.179247,54.985591],[-5.179677,54.983045],[-5.178021,54.983157],[-5.178258,54.981824],[-5.179542,54.981134],[-5.181458,54.981343],[-5.182074,54.980102],[-5.18347,54.979549],[-5.184355,54.977612],[-5.185521,54.977586],[-5.18642,54.974582],[-5.184318,54.974524],[-5.182546,54.972945],[-5.178865,54.973074],[-5.178084,54.972217],[-5.179407,54.971314],[-5.179473,54.970575],[-5.178202,54.968793],[-5.179103,54.968221],[-5.178657,54.966253],[-5.178776,54.964105],[-5.180387,54.963297],[-5.180296,54.961614],[-5.181636,54.960658],[-5.180873,54.959895],[-5.182962,54.957346],[-5.184262,54.956406],[-5.183511,54.955918],[-5.185056,54.954571],[-5.186802,54.951876],[-5.186834,54.950019],[-5.186176,54.94968],[-5.187087,54.946884],[-5.186366,54.946075],[-5.187008,54.944682],[-5.185555,54.943458],[-5.185173,54.941479],[-5.186181,54.940972],[-5.186689,54.938223],[-5.185287,54.93815],[-5.185128,54.936685],[-5.18683,54.935328],[-5.186173,54.934629],[-5.187381,54.933847],[-5.185523,54.933395],[-5.185242,54.932758],[-5.187179,54.930599],[-5.185395,54.930221],[-5.185331,54.929465],[-5.186949,54.928885],[-5.184632,54.926693],[-5.186133,54.924694],[-5.185642,54.924193],[-5.186019,54.921401],[-5.184535,54.921158],[-5.185345,54.918954],[-5.185075,54.915244],[-5.182202,54.91205],[-5.182264,54.910439],[-5.180814,54.909702],[-5.180855,54.908649],[-5.178083,54.907469],[-5.176243,54.907274],[-5.175034,54.906657],[-5.174804,54.905321],[-5.17359,54.904108],[-5.173672,54.902242],[-5.172192,54.900775],[-5.170873,54.900412],[-5.16949,54.89919],[-5.168234,54.899185],[-5.167114,54.89848],[-5.167306,54.897475],[-5.165392,54.89607],[-5.165251,54.895423],[-5.163528,54.894423],[-5.16207,54.892005],[-5.159221,54.889689],[-5.158141,54.887805],[-5.158449,54.887245],[-5.157297,54.885954],[-5.157747,54.884831],[-5.156528,54.884225],[-5.155614,54.882901],[-5.154649,54.880552],[-5.153459,54.880106],[-5.153547,54.879107],[-5.151068,54.877109],[-5.149981,54.875008],[-5.148673,54.874756],[-5.14726,54.8738],[-5.145051,54.871167],[-5.144308,54.867394],[-5.144526,54.866391],[-5.14559,54.865432],[-5.146769,54.865489],[-5.148882,54.862249],[-5.147944,54.860739],[-5.146011,54.861534],[-5.145144,54.861049],[-5.145808,54.858294],[-5.145447,54.857629],[-5.14295,54.856338],[-5.142552,54.857224],[-5.140252,54.856773],[-5.140996,54.855849],[-5.140652,54.853599],[-5.139149,54.853057],[-5.137908,54.85102],[-5.136603,54.85],[-5.134966,54.850223],[-5.132599,54.851837],[-5.129062,54.851412],[-5.128443,54.850993],[-5.129978,54.849815],[-5.130179,54.848909],[-5.128768,54.848203],[-5.129574,54.846666],[-5.128059,54.846225],[-5.127662,54.845072],[-5.125597,54.84408],[-5.125281,54.843309],[-5.122287,54.84241],[-5.120717,54.84231],[-5.119233,54.842804],[-5.116903,54.841689],[-5.117758,54.840731],[-5.116982,54.838742],[-5.113412,54.836624],[-5.111561,54.836317],[-5.111437,54.835244],[-5.11059,54.834652],[-5.108864,54.834668],[-5.10731,54.834185],[-5.108571,54.833249],[-5.108239,54.832214],[-5.106833,54.831587],[-5.10572,54.830377],[-5.104143,54.830117],[-5.103255,54.829208],[-5.098475,54.829299],[-5.09847,54.828343],[-5.095872,54.828359],[-5.09459,54.829159],[-5.091873,54.828784],[-5.090982,54.828236],[-5.088854,54.828015],[-5.087022,54.826886],[-5.08762,54.825966],[-5.086722,54.825373],[-5.08429,54.825396],[-5.083121,54.824232],[-5.083845,54.823216],[-5.082814,54.821965],[-5.08283,54.820948],[-5.080949,54.820599],[-5.080584,54.819072],[-5.079526,54.818677],[-5.079666,54.817736],[-5.077869,54.81699],[-5.076839,54.815437],[-5.073775,54.815665],[-5.072747,54.814591],[-5.071742,54.814614],[-5.071062,54.813552],[-5.066965,54.813067],[-5.065799,54.811697],[-5.060437,54.811586],[-5.058542,54.810379],[-5.055751,54.809702],[-5.053623,54.809878],[-5.052238,54.808273],[-5.052483,54.807357],[-5.050927,54.806482],[-5.051926,54.805651],[-5.046667,54.803152],[-5.045595,54.803498],[-5.043609,54.802667],[-5.039572,54.799246],[-5.040643,54.798621],[-5.041712,54.796751],[-5.041353,54.796052],[-5.042925,54.79349],[-5.042357,54.792202],[-5.039733,54.791031],[-5.037408,54.791826],[-5.034514,54.790554],[-5.031436,54.790348],[-5.02902,54.789027],[-5.028665,54.787626],[-5.026438,54.786349],[-5.023587,54.786151],[-5.022758,54.785027],[-5.020743,54.784309],[-5.019419,54.782035],[-5.016242,54.782987],[-5.01379,54.782773],[-5.01189,54.783807],[-5.009986,54.782541],[-5.01217,54.781532],[-5.012573,54.780326],[-5.009147,54.778801],[-5.008976,54.777919],[-5.006742,54.776484],[-5.006754,54.775023],[-5.004489,54.774834],[-5.001234,54.772961],[-5.001032,54.771393],[-4.999406,54.767602],[-4.999557,54.765382],[-4.998791,54.764668],[-5.000183,54.762696],[-5.002834,54.761989],[-5.006283,54.762542],[-5.006732,54.76012],[-5.003287,54.758553],[-5.004527,54.757981],[-5.004279,54.755101],[-5.002642,54.753962],[-5.000823,54.753352],[-4.999519,54.75338],[-4.997756,54.752645],[-4.995658,54.753005],[-4.992628,54.752887],[-4.992216,54.752339],[-4.993239,54.75125],[-4.991228,54.751045],[-4.988878,54.75191],[-4.986745,54.749945],[-4.988472,54.748686],[-4.988668,54.747861],[-4.986479,54.747805],[-4.990044,54.745844],[-4.987495,54.745714],[-4.986971,54.745219],[-4.988635,54.74425],[-4.991168,54.741896],[-4.990126,54.739727],[-4.9908,54.738593],[-4.992785,54.736494],[-4.992556,54.734999],[-4.990749,54.733934],[-4.989001,54.73372],[-4.988574,54.732554],[-4.987177,54.732199],[-4.985287,54.732683],[-4.983597,54.732399],[-4.980727,54.733576],[-4.975002,54.733082],[-4.974296,54.732299],[-4.972012,54.732619],[-4.970505,54.731758],[-4.971126,54.731122],[-4.968702,54.730748],[-4.967075,54.731286],[-4.965464,54.730635],[-4.961413,54.730174],[-4.959977,54.730456],[-4.957597,54.728803],[-4.955654,54.726005],[-4.9559,54.723815],[-4.95824,54.723022],[-4.960585,54.723192],[-4.962694,54.722032],[-4.963679,54.721953],[-4.964191,54.720821],[-4.966007,54.720235],[-4.965312,54.719684],[-4.966934,54.7176],[-4.965216,54.717242],[-4.965304,54.716258],[-4.963224,54.715621],[-4.962714,54.713494],[-4.960736,54.712521],[-4.960812,54.710657],[-4.96018,54.709258],[-4.957999,54.706458],[-4.955873,54.70479],[-4.954425,54.704307],[-4.954633,54.703553],[-4.952311,54.70322],[-4.948279,54.701911],[-4.947786,54.700501],[-4.948908,54.698717],[-4.95031,54.698837],[-4.956113,54.697689],[-4.956787,54.696848],[-4.959169,54.696434],[-4.962128,54.695308],[-4.96183,54.694673],[-4.963488,54.694199],[-4.966555,54.692155],[-4.968764,54.691957],[-4.972581,54.689756],[-4.971306,54.688644],[-4.972828,54.687607],[-4.972948,54.685834],[-4.974213,54.685273],[-4.974335,54.684203],[-4.973134,54.683572],[-4.972678,54.682501],[-4.970648,54.681239],[-4.970593,54.680484],[-4.969319,54.678988],[-4.968847,54.677802],[-4.966856,54.677113],[-4.963638,54.677295],[-4.962813,54.676416],[-4.962991,54.675595],[-4.966605,54.673988],[-4.967842,54.672781],[-4.967656,54.671656],[-4.966446,54.670221],[-4.965388,54.670199],[-4.964309,54.668281],[-4.964157,54.666885],[-4.965533,54.665315],[-4.964838,54.664048],[-4.962933,54.664293],[-4.962382,54.663607],[-4.959594,54.664051],[-4.957956,54.66287],[-4.95582,54.662113],[-4.952821,54.66014],[-4.950739,54.658161],[-4.948804,54.658253],[-4.945932,54.656443],[-4.945049,54.655385],[-4.941682,54.653644],[-4.939824,54.653315],[-4.938451,54.651627],[-4.937269,54.65153],[-4.933337,54.648448],[-4.930939,54.648254],[-4.925468,54.645534],[-4.924991,54.644538],[-4.923613,54.644737],[-4.923028,54.643841],[-4.920717,54.643174],[-4.918858,54.643067],[-4.91705,54.642486],[-4.914008,54.643501],[-4.911014,54.643065],[-4.909878,54.643646],[-4.906019,54.642271],[-4.905306,54.641507],[-4.903437,54.641579],[-4.90228,54.64008],[-4.90006,54.640341],[-4.89679,54.64023],[-4.896216,54.639427],[-4.893145,54.639977],[-4.892357,54.639263],[-4.889577,54.639245],[-4.886032,54.639887],[-4.883252,54.639754],[-4.882268,54.63873],[-4.884581,54.637802],[-4.883358,54.636817],[-4.881375,54.63659],[-4.879186,54.634098],[-4.877544,54.633822],[-4.874129,54.633719],[-4.868262,54.633766],[-4.86718,54.634651],[-4.864208,54.634562],[-4.860963,54.633598],[-4.857778,54.634302],[-4.855852,54.634235],[-4.8529,54.637019],[-4.852808,54.637476],[-4.858617,54.638464],[-4.862615,54.638318],[-4.865302,54.637717],[-4.86796,54.637799],[-4.86883,54.638215],[-4.871935,54.638233],[-4.875377,54.639067],[-4.877181,54.639152],[-4.878351,54.640447],[-4.87681,54.641929],[-4.877727,54.642613],[-4.878185,54.644206],[-4.87788,54.646569],[-4.878231,54.648192],[-4.879282,54.649134],[-4.881987,54.65283],[-4.883733,54.653554],[-4.88323,54.654401],[-4.883719,54.655441],[-4.882797,54.657068],[-4.883351,54.658009],[-4.88135,54.660911],[-4.88137,54.663252],[-4.880383,54.66702],[-4.882255,54.668853],[-4.879681,54.672049],[-4.875409,54.675002],[-4.873953,54.67695],[-4.86676,54.681928],[-4.867601,54.682303],[-4.870584,54.682534],[-4.873042,54.684317],[-4.876595,54.685597],[-4.881006,54.685577],[-4.88242,54.686023],[-4.884034,54.687931],[-4.88491,54.690946],[-4.886254,54.692129],[-4.889242,54.692183],[-4.890766,54.691358],[-4.895541,54.692281],[-4.898384,54.695208],[-4.89949,54.699137],[-4.900515,54.699583],[-4.904028,54.699921],[-4.90568,54.701061],[-4.907149,54.705605],[-4.905208,54.710625],[-4.905218,54.711582],[-4.907836,54.71514],[-4.908578,54.717775],[-4.910994,54.722068],[-4.910828,54.724396],[-4.911356,54.726277],[-4.912939,54.727276],[-4.915489,54.728153],[-4.916237,54.729162],[-4.915972,54.730925],[-4.914341,54.734644],[-4.920013,54.736549],[-4.920301,54.738392],[-4.917418,54.742684],[-4.917479,54.743176],[-4.921537,54.746472],[-4.923879,54.747819],[-4.926654,54.748849],[-4.927493,54.749526],[-4.927773,54.75285],[-4.92931,54.754799],[-4.928578,54.756898],[-4.929801,54.75813],[-4.932258,54.762056],[-4.933918,54.762807],[-4.938914,54.763572],[-4.940192,54.764872],[-4.940333,54.766015],[-4.938787,54.768591],[-4.939674,54.770833],[-4.938767,54.776742],[-4.939262,54.777244],[-4.942007,54.778143],[-4.94277,54.779555],[-4.942921,54.781949],[-4.946243,54.784969],[-4.947377,54.788486],[-4.947111,54.791468],[-4.949288,54.794551],[-4.949737,54.796193],[-4.95093,54.797335],[-4.9528,54.798384],[-4.957375,54.799799],[-4.960704,54.802699],[-4.961096,54.803919],[-4.960714,54.806178],[-4.959606,54.808367],[-4.953967,54.815479],[-4.94866,54.819153],[-4.940827,54.825614],[-4.939151,54.830859],[-4.933528,54.833818],[-4.929844,54.835073],[-4.929803,54.833397],[-4.924546,54.833885],[-4.922522,54.834391],[-4.907377,54.840938],[-4.906096,54.841782],[-4.894855,54.846135],[-4.881013,54.85069],[-4.854483,54.856793],[-4.851616,54.857869],[-4.850433,54.858833],[-4.849516,54.860747],[-4.850138,54.863091],[-4.851899,54.86566],[-4.855274,54.866838],[-4.858157,54.868323],[-4.861307,54.865691],[-4.863183,54.865251],[-4.86466,54.865652],[-4.866688,54.864643],[-4.867156,54.865418],[-4.866018,54.866086],[-4.861315,54.866456],[-4.860559,54.868743],[-4.856083,54.870326],[-4.85171,54.869158],[-4.847974,54.869179],[-4.84562,54.868128],[-4.84373,54.866407],[-4.841342,54.865422],[-4.834151,54.863442],[-4.829706,54.863495],[-4.825904,54.862932],[-4.821742,54.863012],[-4.818631,54.862505],[-4.81762,54.863949],[-4.815265,54.86433],[-4.813623,54.862431],[-4.811697,54.861344],[-4.808445,54.860609],[-4.806724,54.858496],[-4.805108,54.85485],[-4.803311,54.852531],[-4.802756,54.850338],[-4.802078,54.849419],[-4.799709,54.848373],[-4.796539,54.84772],[-4.796124,54.847058],[-4.793866,54.847461],[-4.791885,54.846327],[-4.791731,54.844425],[-4.791066,54.84385],[-4.790648,54.841734],[-4.789279,54.840766],[-4.788514,54.838938],[-4.787465,54.837866],[-4.78651,54.835676],[-4.784722,54.835042],[-4.783218,54.833707],[-4.781723,54.833395],[-4.781566,54.832453],[-4.780398,54.832117],[-4.776354,54.831827],[-4.774323,54.831067],[-4.773305,54.830239],[-4.770873,54.830036],[-4.770505,54.8294],[-4.766321,54.828625],[-4.76511,54.827621],[-4.760164,54.827548],[-4.757454,54.828635],[-4.755218,54.828947],[-4.753627,54.82966],[-4.751573,54.829753],[-4.746567,54.829213],[-4.744775,54.828304],[-4.742334,54.827651],[-4.721934,54.826503],[-4.713967,54.825417],[-4.71189,54.824521],[-4.708656,54.823888],[-4.699807,54.816902],[-4.693999,54.814561],[-4.69243,54.812777],[-4.690411,54.812167],[-4.69016,54.811186],[-4.688264,54.810483],[-4.685842,54.808261],[-4.681416,54.805538],[-4.679538,54.803916],[-4.671173,54.799765],[-4.666188,54.798036],[-4.661701,54.796932],[-4.657315,54.795199],[-4.64896,54.793221],[-4.64636,54.791527],[-4.625546,54.782654],[-4.622886,54.782272],[-4.619799,54.782642],[-4.614626,54.780643],[-4.613206,54.781028],[-4.611357,54.780827],[-4.609504,54.779618],[-4.607968,54.779839],[-4.60646,54.779242],[-4.605827,54.777452],[-4.603612,54.777621],[-4.600707,54.776916],[-4.598462,54.774665],[-4.596469,54.773572],[-4.595922,54.772369],[-4.591521,54.769993],[-4.589675,54.768402],[-4.587032,54.766952],[-4.585401,54.765314],[-4.584704,54.762282],[-4.583439,54.760436],[-4.586432,54.760969],[-4.585066,54.759457],[-4.585056,54.75749],[-4.581739,54.754917],[-4.581186,54.753614],[-4.579139,54.752629],[-4.577492,54.751198],[-4.577186,54.745944],[-4.57608,54.74533],[-4.575116,54.743435],[-4.572435,54.740657],[-4.571695,54.738199],[-4.569393,54.737078],[-4.566409,54.737462],[-4.561462,54.737237],[-4.556986,54.736665],[-4.552949,54.735797],[-4.552305,54.735115],[-4.549441,54.734778],[-4.545105,54.733203],[-4.543344,54.731607],[-4.542932,54.729517],[-4.540736,54.728627],[-4.53998,54.727056],[-4.540704,54.72559],[-4.544018,54.72485],[-4.544454,54.72407],[-4.540897,54.723103],[-4.536366,54.723918],[-4.535444,54.723043],[-4.532573,54.722454],[-4.530917,54.722561],[-4.529005,54.721723],[-4.528985,54.720758],[-4.523597,54.718245],[-4.521785,54.716377],[-4.520751,54.714597],[-4.517836,54.713317],[-4.516473,54.712169],[-4.512732,54.710521],[-4.508285,54.709722],[-4.503703,54.707155],[-4.496239,54.703934],[-4.493589,54.703301],[-4.489521,54.701539],[-4.481157,54.699035],[-4.479461,54.699063],[-4.476353,54.698592],[-4.47354,54.697757],[-4.467017,54.696848],[-4.463602,54.695911],[-4.461027,54.695866],[-4.457365,54.696251],[-4.455689,54.695999],[-4.453515,54.694941],[-4.451102,54.694566],[-4.450931,54.693868],[-4.44853,54.693801],[-4.443662,54.692555],[-4.443122,54.691622],[-4.441919,54.691432],[-4.439189,54.689962],[-4.436513,54.689703],[-4.433781,54.688137],[-4.431577,54.687816],[-4.429833,54.686407],[-4.427429,54.685854],[-4.425782,54.684826],[-4.422841,54.684113],[-4.422259,54.682854],[-4.419923,54.682681],[-4.415023,54.681143],[-4.411413,54.680551],[-4.410554,54.679411],[-4.409146,54.679673],[-4.408243,54.678185],[-4.400649,54.677975],[-4.397816,54.678512],[-4.397393,54.67799],[-4.394703,54.678309],[-4.394825,54.677415],[-4.392124,54.677505],[-4.3896,54.67911],[-4.388604,54.679015],[-4.383499,54.681268],[-4.381409,54.681225],[-4.380746,54.68247],[-4.378372,54.683254],[-4.37758,54.684365],[-4.375711,54.685875],[-4.374214,54.686212],[-4.373557,54.68733],[-4.371019,54.687634],[-4.368018,54.689795],[-4.36519,54.691062],[-4.365473,54.69227],[-4.365337,54.694686],[-4.364542,54.695614],[-4.366737,54.697065],[-4.367078,54.698521],[-4.366134,54.699346],[-4.365796,54.700527],[-4.363999,54.700607],[-4.362376,54.699104],[-4.362835,54.698138],[-4.361902,54.696815],[-4.360137,54.695509],[-4.358417,54.695891],[-4.358405,54.697142],[-4.36,54.697499],[-4.360564,54.699189],[-4.36202,54.699689],[-4.361078,54.700407],[-4.359121,54.700889],[-4.354464,54.703344],[-4.353569,54.704271],[-4.351332,54.70566],[-4.351778,54.707049],[-4.350531,54.707464],[-4.349711,54.708653],[-4.349664,54.710565],[-4.348619,54.711284],[-4.349909,54.713699],[-4.352452,54.715532],[-4.350597,54.716675],[-4.352798,54.718003],[-4.35471,54.717532],[-4.355408,54.716634],[-4.35715,54.717292],[-4.359982,54.717008],[-4.362052,54.717275],[-4.363422,54.718026],[-4.363862,54.719323],[-4.363215,54.719997],[-4.363694,54.721174],[-4.364781,54.722091],[-4.365956,54.722285],[-4.366686,54.723433],[-4.365149,54.72342],[-4.363884,54.725505],[-4.36488,54.727044],[-4.364641,54.727708],[-4.366942,54.728249],[-4.365415,54.73039],[-4.365863,54.730881],[-4.365261,54.732572],[-4.363932,54.733132],[-4.363558,54.734387],[-4.363968,54.736468],[-4.363368,54.737559],[-4.364336,54.739508],[-4.365659,54.740201],[-4.366873,54.741836],[-4.365484,54.742517],[-4.365389,54.743314],[-4.363402,54.74367],[-4.363626,54.745131],[-4.36277,54.745752],[-4.362034,54.747344],[-4.362142,54.748892],[-4.36084,54.74936],[-4.359893,54.75081],[-4.357594,54.751982],[-4.358453,54.753125],[-4.359526,54.753454],[-4.359494,54.754647],[-4.356514,54.756816],[-4.355398,54.758019],[-4.355716,54.75892],[-4.357538,54.760114],[-4.357739,54.76174],[-4.357237,54.762067],[-4.356551,54.764498],[-4.354961,54.765942],[-4.355067,54.767963],[-4.356043,54.768782],[-4.358591,54.768692],[-4.360912,54.769231],[-4.362404,54.76873],[-4.366991,54.769779],[-4.371093,54.772047],[-4.371122,54.773748],[-4.37034,54.77489],[-4.368408,54.775763],[-4.365336,54.775797],[-4.363811,54.777026],[-4.360165,54.777602],[-4.360675,54.780242],[-4.36051,54.781409],[-4.362905,54.783002],[-4.361626,54.783881],[-4.361863,54.785716],[-4.364241,54.787656],[-4.368114,54.787698],[-4.36893,54.790888],[-4.368506,54.792036],[-4.369408,54.792902],[-4.368515,54.793889],[-4.366039,54.795141],[-4.363687,54.795761],[-4.362126,54.795791],[-4.360773,54.795104],[-4.357993,54.794289],[-4.357813,54.793225],[-4.355284,54.792914],[-4.355173,54.792423],[-4.352721,54.790905],[-4.351465,54.790524],[-4.349612,54.790725],[-4.348192,54.790355],[-4.346644,54.790597],[-4.343915,54.791573],[-4.343166,54.792888],[-4.343438,54.794627],[-4.342073,54.796463],[-4.342018,54.79863],[-4.342647,54.799648],[-4.341958,54.800527],[-4.343131,54.801573],[-4.342494,54.802188],[-4.344318,54.803833],[-4.344269,54.80454],[-4.345512,54.805453],[-4.345167,54.806017],[-4.346733,54.806654],[-4.347314,54.808337],[-4.348828,54.808318],[-4.349142,54.809543],[-4.35039,54.810825],[-4.351211,54.810792],[-4.353244,54.812017],[-4.352747,54.812481],[-4.354517,54.813372],[-4.357654,54.813425],[-4.358711,54.814342],[-4.362022,54.815595],[-4.363873,54.815796],[-4.368481,54.815313],[-4.369701,54.816463],[-4.371317,54.817086],[-4.373264,54.818482],[-4.374514,54.818608],[-4.376408,54.819989],[-4.379455,54.819657],[-4.383321,54.820628],[-4.38647,54.821652],[-4.390864,54.821274],[-4.393925,54.821696],[-4.394642,54.822557],[-4.397757,54.823967],[-4.399713,54.824263],[-4.403559,54.824034],[-4.406855,54.824455],[-4.408477,54.825105],[-4.408482,54.825778],[-4.410772,54.826838],[-4.413665,54.829317],[-4.413499,54.830398],[-4.414545,54.832118],[-4.414355,54.834269],[-4.413638,54.835573],[-4.41425,54.837944],[-4.415538,54.838746],[-4.415829,54.840239],[-4.418377,54.841398],[-4.418252,54.842885],[-4.419103,54.846193],[-4.420265,54.84668],[-4.418791,54.848165],[-4.418656,54.849469],[-4.420831,54.850965],[-4.420888,54.851905],[-4.419899,54.853315],[-4.420102,54.85591],[-4.418583,54.856704],[-4.421958,54.85797],[-4.421525,54.858324],[-4.422152,54.860678],[-4.421701,54.863557],[-4.425965,54.863243],[-4.428183,54.864382],[-4.429589,54.864199],[-4.430849,54.863034],[-4.433988,54.861516],[-4.433802,54.861039],[-4.431475,54.860563],[-4.430804,54.860067],[-4.431368,54.859071],[-4.434269,54.857698],[-4.435976,54.857346],[-4.438341,54.857608],[-4.441073,54.856049],[-4.443539,54.856105],[-4.444178,54.857251],[-4.447086,54.85702],[-4.447983,54.855412],[-4.450189,54.855118],[-4.452497,54.85606],[-4.456085,54.856253],[-4.46114,54.857429],[-4.468908,54.856015],[-4.46879,54.856332],[-4.463797,54.857292],[-4.461921,54.857938],[-4.460452,54.857888],[-4.455373,54.856509],[-4.452506,54.856478],[-4.449207,54.855394],[-4.448293,54.855813],[-4.447776,54.857292],[-4.445863,54.857805],[-4.444045,54.857675],[-4.44211,54.856232],[-4.438228,54.858165],[-4.435011,54.857981],[-4.431664,54.8596],[-4.434306,54.860393],[-4.435066,54.86138],[-4.431456,54.864111],[-4.426276,54.866177],[-4.425556,54.867328],[-4.423409,54.868907],[-4.424249,54.869124],[-4.421205,54.871868],[-4.423335,54.873507],[-4.423121,54.87467],[-4.426221,54.874834],[-4.426469,54.875491],[-4.423971,54.876854],[-4.425286,54.878094],[-4.42625,54.881047],[-4.423178,54.883387],[-4.423287,54.884112],[-4.421579,54.88438],[-4.42057,54.885474],[-4.420213,54.88687],[-4.418032,54.886284],[-4.415575,54.887674],[-4.412785,54.887444],[-4.411439,54.888523],[-4.409873,54.888403],[-4.407929,54.889119],[-4.40174,54.890181],[-4.400334,54.890816],[-4.396702,54.893545],[-4.396547,54.89445],[-4.399734,54.895559],[-4.402213,54.898206],[-4.404677,54.898809],[-4.406281,54.900386],[-4.406386,54.903249],[-4.40562,54.905132],[-4.40256,54.90807],[-4.399798,54.909999],[-4.398593,54.912248],[-4.399152,54.914485],[-4.400629,54.915878],[-4.401616,54.916242],[-4.41261,54.917635],[-4.41309,54.917497],[-4.421913,54.920425],[-4.423711,54.924166],[-4.425759,54.926479],[-4.424098,54.930995],[-4.424574,54.932432],[-4.429574,54.932833],[-4.431559,54.932528],[-4.43681,54.932792],[-4.441042,54.931169],[-4.443068,54.930719],[-4.445017,54.930685],[-4.447495,54.931655],[-4.450037,54.933935],[-4.452327,54.93426],[-4.453884,54.934878],[-4.455572,54.934893],[-4.4564,54.936275],[-4.455,54.93787],[-4.453174,54.938707],[-4.450735,54.939008],[-4.443744,54.938319],[-4.445396,54.944317],[-4.446885,54.944307],[-4.45061,54.943206],[-4.452903,54.943251],[-4.454396,54.943792],[-4.45614,54.945603],[-4.45769,54.944209],[-4.456263,54.942612],[-4.456149,54.941609],[-4.459438,54.94034],[-4.462795,54.939802],[-4.464895,54.940599],[-4.465888,54.941969],[-4.465134,54.942716],[-4.461423,54.942723],[-4.460434,54.943541],[-4.462078,54.945982],[-4.462917,54.946349],[-4.466777,54.945662],[-4.469577,54.946744],[-4.471458,54.946502],[-4.473029,54.945851],[-4.474803,54.946843],[-4.474255,54.950301],[-4.473806,54.950317],[-4.474256,54.946944],[-4.472769,54.946759],[-4.470622,54.947241],[-4.468626,54.946906],[-4.465834,54.94596],[-4.463345,54.946633],[-4.461711,54.946285],[-4.460036,54.94387],[-4.460094,54.94288],[-4.461473,54.942414],[-4.464468,54.942499],[-4.465338,54.942022],[-4.464393,54.940964],[-4.462765,54.94024],[-4.458133,54.941209],[-4.456882,54.941729],[-4.45837,54.943004],[-4.458623,54.943904],[-4.457488,54.945465],[-4.455659,54.946352],[-4.453377,54.946086],[-4.451452,54.943984],[-4.446768,54.945024],[-4.443955,54.944339],[-4.443221,54.943602],[-4.443231,54.941413],[-4.442234,54.939633],[-4.442404,54.937879],[-4.444503,54.9363],[-4.446312,54.935948],[-4.447782,54.936244],[-4.450068,54.937459],[-4.449832,54.936],[-4.447275,54.934461],[-4.445153,54.932626],[-4.442668,54.932754],[-4.436051,54.934649],[-4.432494,54.93418],[-4.425517,54.934309],[-4.421582,54.933509],[-4.417701,54.931945],[-4.417878,54.932922],[-4.419467,54.93419],[-4.41788,54.934627],[-4.416211,54.932984],[-4.417637,54.930474],[-4.420359,54.928807],[-4.42184,54.927425],[-4.420907,54.925438],[-4.42074,54.923701],[-4.419354,54.921542],[-4.417246,54.920571],[-4.412364,54.919513],[-4.407043,54.919129],[-4.401928,54.91856],[-4.39912,54.917854],[-4.396346,54.915526],[-4.395273,54.911902],[-4.395531,54.910259],[-4.397087,54.909856],[-4.399211,54.907189],[-4.400183,54.9043],[-4.399216,54.902584],[-4.393818,54.899003],[-4.391574,54.899226],[-4.389397,54.898771],[-4.38859,54.899657],[-4.384563,54.8978],[-4.385487,54.897174],[-4.387857,54.898845],[-4.388058,54.897711],[-4.389428,54.897467],[-4.390309,54.898765],[-4.391688,54.89828],[-4.390047,54.896937],[-4.386679,54.895386],[-4.387115,54.895058],[-4.38504,54.892942],[-4.384019,54.890057],[-4.38244,54.888724],[-4.381505,54.886283],[-4.382204,54.885423],[-4.382356,54.883298],[-4.38215,54.880646],[-4.380883,54.879514],[-4.382908,54.878684],[-4.383343,54.877715],[-4.37837,54.878377],[-4.376141,54.877614],[-4.374064,54.877423],[-4.373527,54.876089],[-4.370955,54.874607],[-4.369809,54.873403],[-4.368934,54.871524],[-4.367118,54.870372],[-4.365566,54.866646],[-4.363344,54.865969],[-4.362552,54.864226],[-4.358749,54.86216],[-4.352199,54.859911],[-4.35155,54.858996],[-4.340361,54.855669],[-4.331475,54.85214],[-4.326506,54.851181],[-4.320249,54.848885],[-4.310943,54.847386],[-4.30728,54.845941],[-4.305638,54.844218],[-4.303651,54.843433],[-4.299113,54.843211],[-4.294711,54.843754],[-4.290259,54.842889],[-4.289179,54.842362],[-4.286826,54.84257],[-4.284249,54.841582],[-4.281513,54.841949],[-4.278658,54.840238],[-4.274975,54.839821],[-4.273834,54.83841],[-4.269751,54.836646],[-4.267992,54.836415],[-4.26634,54.835419],[-4.264151,54.836083],[-4.262084,54.837416],[-4.259678,54.837841],[-4.257415,54.837326],[-4.256451,54.839498],[-4.257918,54.841287],[-4.256629,54.842086],[-4.254695,54.84259],[-4.255787,54.843517],[-4.255357,54.844348],[-4.252891,54.845484],[-4.250427,54.845416],[-4.247543,54.846852],[-4.244996,54.847413],[-4.244403,54.848515],[-4.241036,54.850833],[-4.240622,54.85212],[-4.23944,54.85275],[-4.234645,54.852533],[-4.232831,54.853329],[-4.233019,54.854025],[-4.230774,54.85496],[-4.229789,54.856223],[-4.230383,54.857386],[-4.228271,54.859439],[-4.228384,54.861331],[-4.228976,54.862714],[-4.227977,54.864095],[-4.226685,54.864875],[-4.223285,54.865256],[-4.22218,54.864732],[-4.216897,54.864867],[-4.214839,54.865408],[-4.212764,54.865278],[-4.210396,54.865603],[-4.207045,54.867176],[-4.206024,54.867951],[-4.202775,54.867822],[-4.199712,54.869786],[-4.19227,54.875387],[-4.190801,54.877577],[-4.187285,54.877791],[-4.186847,54.876973],[-4.188546,54.876252],[-4.190602,54.876377],[-4.195441,54.872665],[-4.201722,54.867641],[-4.207538,54.860649],[-4.210268,54.859892],[-4.212128,54.858501],[-4.212251,54.856781],[-4.214338,54.854277],[-4.21565,54.853219],[-4.21723,54.852909],[-4.219615,54.851312],[-4.2224,54.849907],[-4.223266,54.848977],[-4.223217,54.847854],[-4.220325,54.846626],[-4.219445,54.845851],[-4.219302,54.843428],[-4.225083,54.841246],[-4.225079,54.840664],[-4.223695,54.839156],[-4.221589,54.83994],[-4.220511,54.838207],[-4.217244,54.839409],[-4.215434,54.839055],[-4.216363,54.838191],[-4.215521,54.837132],[-4.213624,54.8374],[-4.213099,54.836908],[-4.214754,54.835733],[-4.214447,54.835017],[-4.216436,54.833034],[-4.217824,54.830525],[-4.216304,54.829841],[-4.217298,54.828586],[-4.219318,54.82697],[-4.219579,54.825374],[-4.217844,54.825097],[-4.215662,54.822289],[-4.2135,54.821622],[-4.211832,54.822375],[-4.21099,54.82131],[-4.207828,54.821122],[-4.207102,54.820725],[-4.208886,54.819052],[-4.208464,54.818446],[-4.210398,54.815686],[-4.208945,54.814827],[-4.209213,54.813604],[-4.207225,54.813056],[-4.205678,54.81342],[-4.203617,54.813352],[-4.201709,54.812784],[-4.200594,54.811916],[-4.199618,54.810142],[-4.197169,54.810426],[-4.196577,54.809483],[-4.194785,54.808801],[-4.193755,54.809777],[-4.190356,54.809686],[-4.19056,54.808523],[-4.188255,54.808047],[-4.187121,54.808679],[-4.185307,54.80812],[-4.185039,54.806695],[-4.183159,54.807793],[-4.181506,54.807586],[-4.181558,54.806504],[-4.185382,54.804448],[-4.18594,54.803591],[-4.185823,54.802297],[-4.184811,54.801498],[-4.184071,54.799487],[-4.18025,54.795844],[-4.178974,54.793248],[-4.179442,54.792452],[-4.177688,54.79148],[-4.177019,54.790624],[-4.175016,54.790688],[-4.173311,54.790269],[-4.171659,54.78772],[-4.169482,54.787084],[-4.167311,54.787153],[-4.166968,54.788318],[-4.163874,54.788315],[-4.16362,54.787441],[-4.16202,54.786547],[-4.160116,54.784711],[-4.16118,54.782583],[-4.160567,54.782287],[-4.15966,54.780345],[-4.157581,54.779791],[-4.15551,54.780678],[-4.15472,54.77969],[-4.153068,54.779088],[-4.152373,54.777716],[-4.148514,54.778176],[-4.148083,54.777304],[-4.145511,54.777559],[-4.142286,54.776502],[-4.142094,54.776035],[-4.138805,54.775913],[-4.13664,54.776676],[-4.135065,54.7767],[-4.13161,54.779053],[-4.129847,54.781593],[-4.129536,54.783389],[-4.127113,54.785803],[-4.126721,54.786535],[-4.124774,54.788183],[-4.121515,54.787865],[-4.11956,54.786736],[-4.119713,54.784676],[-4.123574,54.781883],[-4.124805,54.77929],[-4.124686,54.77779],[-4.122236,54.777863],[-4.122178,54.777182],[-4.120366,54.777113],[-4.116028,54.776226],[-4.114935,54.776441],[-4.113188,54.777561],[-4.111594,54.777539],[-4.109407,54.773848],[-4.108935,54.770972],[-4.110147,54.770058],[-4.108559,54.768522],[-4.106751,54.768244],[-4.106093,54.767235],[-4.104726,54.767672],[-4.102559,54.767067],[-4.09914,54.76748],[-4.099814,54.766716],[-4.097917,54.766307],[-4.096766,54.766819],[-4.094995,54.765461],[-4.093528,54.76768],[-4.093485,54.769231],[-4.090947,54.771546],[-4.089932,54.773845],[-4.090262,54.775051],[-4.093026,54.776004],[-4.094277,54.776927],[-4.096452,54.776884],[-4.097676,54.775933],[-4.100662,54.776983],[-4.103843,54.776771],[-4.103537,54.777783],[-4.106192,54.778436],[-4.104602,54.77916],[-4.104532,54.780115],[-4.101843,54.781032],[-4.09988,54.780375],[-4.097534,54.780597],[-4.096558,54.781222],[-4.091678,54.780796],[-4.089893,54.781885],[-4.090896,54.782414],[-4.090516,54.783617],[-4.09178,54.783939],[-4.091352,54.785262],[-4.092687,54.786081],[-4.09285,54.787004],[-4.091842,54.788158],[-4.092096,54.789639],[-4.091291,54.791009],[-4.09176,54.792119],[-4.091375,54.793314],[-4.089332,54.795337],[-4.089428,54.799698],[-4.088984,54.800291],[-4.089879,54.801166],[-4.088748,54.801724],[-4.088179,54.802869],[-4.088694,54.803708],[-4.088105,54.805571],[-4.088602,54.806822],[-4.088202,54.808093],[-4.089396,54.811433],[-4.089312,54.812346],[-4.091117,54.813693],[-4.091329,54.814364],[-4.088564,54.815271],[-4.086798,54.816414],[-4.085787,54.816149],[-4.083792,54.817483],[-4.083337,54.818778],[-4.081445,54.818945],[-4.081076,54.820396],[-4.079633,54.821511],[-4.078085,54.823523],[-4.077468,54.825675],[-4.074731,54.827443],[-4.074129,54.828649],[-4.072717,54.82837],[-4.071623,54.830352],[-4.069325,54.830477],[-4.068606,54.830925],[-4.069218,54.833082],[-4.06475,54.837429],[-4.063038,54.839791],[-4.061656,54.840357],[-4.059301,54.840551],[-4.059922,54.841311],[-4.058607,54.842099],[-4.057868,54.841257],[-4.055984,54.841144],[-4.056049,54.839594],[-4.05342,54.839405],[-4.052386,54.83892],[-4.050821,54.83962],[-4.048863,54.842839],[-4.048974,54.843336],[-4.04707,54.844561],[-4.04536,54.846366],[-4.048831,54.848318],[-4.05017,54.849452],[-4.051461,54.854696],[-4.050724,54.857469],[-4.049797,54.858195],[-4.05066,54.86238],[-4.049249,54.863413],[-4.051986,54.864497],[-4.051727,54.86592],[-4.048171,54.866668],[-4.047736,54.866163],[-4.048922,54.863954],[-4.047765,54.861184],[-4.048333,54.860464],[-4.047468,54.859378],[-4.046384,54.859599],[-4.044421,54.858427],[-4.042521,54.857778],[-4.039013,54.858071],[-4.034716,54.859701],[-4.034384,54.859359],[-4.038091,54.857645],[-4.040365,54.857448],[-4.043593,54.855349],[-4.047433,54.854412],[-4.048784,54.853678],[-4.048996,54.852073],[-4.048381,54.850601],[-4.047389,54.85008],[-4.045133,54.850062],[-4.0414,54.848],[-4.04428,54.844193],[-4.046227,54.842624],[-4.048261,54.839444],[-4.049474,54.838501],[-4.052512,54.837507],[-4.056613,54.837365],[-4.061678,54.83781],[-4.062773,54.835669],[-4.062008,54.834449],[-4.062446,54.833173],[-4.059935,54.830116],[-4.060369,54.828433],[-4.059865,54.827258],[-4.061347,54.825788],[-4.064497,54.824567],[-4.065452,54.823575],[-4.068927,54.822154],[-4.068919,54.821483],[-4.070937,54.819499],[-4.072058,54.81767],[-4.072012,54.816868],[-4.073283,54.814396],[-4.07311,54.813619],[-4.070985,54.812881],[-4.067803,54.813816],[-4.066307,54.816218],[-4.065499,54.816418],[-4.063283,54.818213],[-4.060987,54.818985],[-4.060247,54.819645],[-4.060542,54.821072],[-4.05977,54.822476],[-4.056522,54.824978],[-4.055138,54.825552],[-4.052366,54.824128],[-4.051017,54.822251],[-4.049364,54.82167],[-4.048148,54.820766],[-4.049125,54.818451],[-4.048764,54.817137],[-4.047723,54.816698],[-4.047923,54.814735],[-4.045669,54.814569],[-4.045497,54.813505],[-4.046967,54.81165],[-4.047017,54.81024],[-4.048292,54.809008],[-4.048329,54.808222],[-4.05004,54.807824],[-4.052046,54.806439],[-4.053172,54.804287],[-4.056123,54.80173],[-4.057146,54.800041],[-4.057465,54.797214],[-4.061177,54.795072],[-4.062639,54.794758],[-4.063474,54.792391],[-4.064432,54.792028],[-4.064975,54.788857],[-4.064652,54.787736],[-4.065218,54.786876],[-4.064834,54.784509],[-4.064038,54.783015],[-4.065329,54.781708],[-4.064451,54.780586],[-4.062165,54.779944],[-4.058493,54.778108],[-4.058949,54.777529],[-4.055006,54.776449],[-4.054973,54.774955],[-4.05161,54.773514],[-4.050408,54.773872],[-4.048398,54.77264],[-4.046877,54.772646],[-4.047029,54.771561],[-4.045798,54.771268],[-4.045882,54.770312],[-4.044739,54.769873],[-4.042357,54.769832],[-4.040929,54.770551],[-4.039611,54.769262],[-4.037064,54.770275],[-4.034441,54.770389],[-4.030662,54.772919],[-4.028698,54.773195],[-4.024938,54.772578],[-4.024652,54.771112],[-4.022331,54.771747],[-4.017857,54.771757],[-4.016258,54.771478],[-4.014625,54.770353],[-4.011763,54.770224],[-4.010355,54.77175],[-4.009021,54.771722],[-4.00851,54.772557],[-4.006016,54.774567],[-4.004122,54.773476],[-3.999261,54.772676],[-3.995323,54.77148],[-3.994951,54.769793],[-3.992227,54.769274],[-3.988863,54.769157],[-3.986685,54.769688],[-3.98437,54.768545],[-3.980997,54.768735],[-3.975796,54.769317],[-3.963439,54.771938],[-3.959599,54.774224],[-3.958534,54.776311],[-3.959076,54.776906],[-3.957509,54.779524],[-3.954871,54.779849],[-3.951125,54.781726],[-3.948456,54.782453],[-3.944914,54.784458],[-3.943648,54.784708],[-3.941333,54.78579],[-3.941419,54.787499],[-3.940232,54.78851],[-3.937042,54.788525],[-3.934633,54.788108],[-3.932991,54.788739],[-3.929834,54.788813],[-3.926276,54.789457],[-3.920869,54.79105],[-3.914394,54.792439],[-3.911767,54.792434],[-3.911566,54.793067],[-3.908763,54.79403],[-3.908198,54.793844],[-3.906518,54.796043],[-3.904186,54.797095],[-3.896915,54.798666],[-3.895431,54.798458],[-3.892202,54.798889],[-3.889543,54.799949],[-3.886301,54.80073],[-3.885379,54.802047],[-3.878136,54.804044],[-3.876383,54.803868],[-3.876095,54.803012],[-3.874258,54.803471],[-3.873615,54.804432],[-3.871319,54.804903],[-3.868543,54.806331],[-3.867135,54.808615],[-3.866808,54.810471],[-3.866016,54.811034],[-3.865235,54.813135],[-3.859431,54.815892],[-3.857029,54.81629],[-3.854865,54.816037],[-3.853808,54.8153],[-3.850316,54.815926],[-3.845859,54.815086],[-3.84435,54.815456],[-3.843205,54.815024],[-3.841258,54.815778],[-3.83855,54.815792],[-3.836761,54.816602],[-3.835431,54.816745],[-3.833885,54.819026],[-3.832685,54.819421],[-3.831886,54.820424],[-3.829972,54.82087],[-3.828079,54.822011],[-3.824499,54.823659],[-3.825167,54.825513],[-3.827787,54.827306],[-3.830895,54.827258],[-3.834322,54.826417],[-3.836152,54.827086],[-3.838235,54.829224],[-3.838574,54.831439],[-3.839804,54.83191],[-3.840982,54.834064],[-3.843291,54.835512],[-3.849895,54.837877],[-3.854013,54.839879],[-3.859355,54.841508],[-3.860176,54.842125],[-3.860874,54.844528],[-3.863042,54.84713],[-3.859932,54.848625],[-3.857411,54.848453],[-3.855643,54.849801],[-3.85309,54.850859],[-3.851037,54.850118],[-3.847458,54.847466],[-3.845015,54.846562],[-3.843701,54.847566],[-3.839495,54.846013],[-3.835705,54.845748],[-3.835161,54.846767],[-3.836838,54.848071],[-3.837175,54.848842],[-3.840416,54.851046],[-3.842725,54.851776],[-3.845266,54.852165],[-3.848213,54.854481],[-3.848164,54.855219],[-3.846363,54.855789],[-3.84182,54.85328],[-3.840992,54.85427],[-3.843371,54.856771],[-3.846818,54.857194],[-3.848625,54.858142],[-3.849136,54.859841],[-3.851164,54.861456],[-3.850754,54.863383],[-3.847924,54.8652],[-3.845731,54.864323],[-3.84452,54.864217],[-3.842861,54.865189],[-3.839786,54.865462],[-3.837172,54.864899],[-3.836569,54.862295],[-3.835814,54.861417],[-3.83659,54.860592],[-3.836216,54.859273],[-3.834166,54.857975],[-3.833208,54.856056],[-3.831863,54.854977],[-3.829895,54.85408],[-3.829115,54.853268],[-3.826096,54.852201],[-3.826733,54.850332],[-3.823336,54.848226],[-3.823047,54.847031],[-3.821758,54.846915],[-3.816194,54.844295],[-3.813255,54.843815],[-3.811356,54.84393],[-3.808486,54.844671],[-3.807112,54.845601],[-3.807094,54.846842],[-3.808276,54.848086],[-3.807474,54.848731],[-3.807111,54.850575],[-3.808169,54.852431],[-3.810032,54.853997],[-3.811212,54.854116],[-3.810706,54.851953],[-3.813913,54.852557],[-3.815333,54.853946],[-3.815185,54.855031],[-3.816414,54.857571],[-3.817516,54.857924],[-3.819399,54.859457],[-3.826181,54.861481],[-3.824895,54.863733],[-3.824393,54.866862],[-3.823504,54.867618],[-3.824464,54.868465],[-3.824706,54.869902],[-3.827733,54.872426],[-3.829311,54.874942],[-3.827257,54.876244],[-3.824307,54.876923],[-3.822225,54.876863],[-3.82078,54.873031],[-3.819193,54.872407],[-3.817436,54.872456],[-3.818415,54.874502],[-3.821531,54.877075],[-3.821162,54.878215],[-3.82256,54.879229],[-3.823496,54.880915],[-3.822471,54.881966],[-3.82367,54.883208],[-3.819935,54.886733],[-3.8219,54.886049],[-3.823409,54.885943],[-3.82647,54.887016],[-3.827459,54.888247],[-3.827867,54.889686],[-3.829423,54.890538],[-3.832587,54.890685],[-3.834999,54.891339],[-3.837952,54.893607],[-3.83722,54.894776],[-3.837697,54.895724],[-3.839167,54.896959],[-3.838394,54.898181],[-3.835416,54.897767],[-3.836061,54.897058],[-3.838481,54.897501],[-3.836198,54.895251],[-3.837128,54.893526],[-3.833886,54.892197],[-3.833155,54.891341],[-3.829666,54.891364],[-3.824908,54.889518],[-3.82199,54.891381],[-3.819789,54.89174],[-3.818518,54.891426],[-3.815759,54.892307],[-3.817203,54.890441],[-3.81629,54.887159],[-3.816949,54.885733],[-3.816674,54.884749],[-3.81811,54.883042],[-3.816473,54.880924],[-3.814523,54.880104],[-3.814612,54.879268],[-3.813585,54.878028],[-3.813889,54.875975],[-3.812725,54.872347],[-3.812017,54.87124],[-3.808717,54.868838],[-3.807095,54.868853],[-3.801262,54.86663],[-3.80094,54.865421],[-3.799619,54.864609],[-3.798008,54.864735],[-3.797013,54.865426],[-3.794627,54.864933],[-3.79308,54.863356],[-3.792926,54.862107],[-3.790552,54.86135],[-3.78937,54.859334],[-3.788153,54.858545],[-3.789502,54.856971],[-3.788604,54.856421],[-3.789362,54.854454],[-3.788336,54.853228],[-3.786707,54.853],[-3.785386,54.853373],[-3.785332,54.854276],[-3.783013,54.854595],[-3.781479,54.85413],[-3.77897,54.854072],[-3.776407,54.855032],[-3.773318,54.855326],[-3.772927,54.855811],[-3.770693,54.85604],[-3.767549,54.856778],[-3.765082,54.857612],[-3.764117,54.85645],[-3.760606,54.857417],[-3.7594,54.858538],[-3.756707,54.858829],[-3.756221,54.860385],[-3.753419,54.860984],[-3.753098,54.862134],[-3.751286,54.862713],[-3.749746,54.862702],[-3.747963,54.86381],[-3.74533,54.863756],[-3.744037,54.86339],[-3.741416,54.864933],[-3.741873,54.865632],[-3.74113,54.868018],[-3.739241,54.869625],[-3.737803,54.869608],[-3.735368,54.871358],[-3.734083,54.871668],[-3.730919,54.873941],[-3.729194,54.874095],[-3.728889,54.875],[-3.726456,54.876085],[-3.728421,54.876669],[-3.729769,54.878324],[-3.727583,54.880123],[-3.722999,54.881002],[-3.721454,54.880646],[-3.718274,54.880755],[-3.716511,54.879883],[-3.712841,54.881553],[-3.710963,54.881895],[-3.710596,54.882459],[-3.706598,54.883268],[-3.701681,54.884784],[-3.699623,54.884817],[-3.696045,54.886225],[-3.695354,54.884803],[-3.696596,54.883929],[-3.699894,54.882727],[-3.700595,54.881662],[-3.698588,54.880407],[-3.6924,54.87992],[-3.671246,54.880354],[-3.661581,54.879719],[-3.648595,54.879586],[-3.638759,54.87888],[-3.630262,54.87779],[-3.628057,54.876925],[-3.625529,54.876495],[-3.617538,54.876166],[-3.616163,54.875478],[-3.610255,54.87485],[-3.608405,54.874275],[-3.607196,54.873408],[-3.606681,54.872142],[-3.603334,54.871979],[-3.597127,54.872331],[-3.595157,54.87292],[-3.593818,54.875906],[-3.595084,54.878429],[-3.596635,54.879517],[-3.596951,54.880418],[-3.596089,54.882968],[-3.59449,54.884408],[-3.588796,54.887158],[-3.589044,54.887432],[-3.583996,54.889585],[-3.575619,54.892523],[-3.573052,54.895319],[-3.572364,54.897236],[-3.570814,54.898872],[-3.57081,54.901055],[-3.566419,54.903423],[-3.565517,54.90448],[-3.563598,54.905713],[-3.563085,54.907647],[-3.565677,54.910003],[-3.567206,54.913618],[-3.569916,54.914873],[-3.57068,54.916336],[-3.571096,54.91887],[-3.571831,54.919505],[-3.571317,54.921584],[-3.572369,54.923635],[-3.573696,54.924215],[-3.577666,54.92514],[-3.578755,54.925022],[-3.582408,54.925955],[-3.585245,54.927916],[-3.585516,54.927175],[-3.587497,54.9254],[-3.588993,54.92572],[-3.588302,54.927099],[-3.587028,54.928063],[-3.588996,54.929933],[-3.58918,54.930878],[-3.588485,54.932867],[-3.588871,54.934616],[-3.587825,54.940037],[-3.587985,54.942142],[-3.586955,54.943078],[-3.587092,54.944315],[-3.586191,54.944848],[-3.58598,54.946049],[-3.584155,54.948295],[-3.583883,54.949955],[-3.5805,54.954089],[-3.580188,54.95641],[-3.578468,54.958745],[-3.577742,54.960596],[-3.57798,54.962201],[-3.582576,54.966472],[-3.58419,54.969963],[-3.584634,54.971847],[-3.583847,54.973758],[-3.583989,54.97466],[-3.585383,54.975691],[-3.582085,54.976364],[-3.578962,54.978415],[-3.576638,54.97891],[-3.576175,54.980657],[-3.578358,54.98431],[-3.579891,54.98568],[-3.585084,54.99228],[-3.58842,54.995417],[-3.589342,54.997996],[-3.589259,55.001309],[-3.587579,55.00344],[-3.584138,55.006915],[-3.584768,55.00734],[-3.586893,55.007263],[-3.584636,55.010848],[-3.582833,55.010943],[-3.581836,55.011505],[-3.579871,55.011125],[-3.580814,55.01401],[-3.584868,55.017233],[-3.586079,55.019093],[-3.589916,55.021226],[-3.590779,55.023068],[-3.592912,55.02448],[-3.599208,55.026968],[-3.604796,55.03216],[-3.605975,55.034107],[-3.606733,55.038672],[-3.607793,55.041341],[-3.6077,55.046883],[-3.611337,55.050139],[-3.612134,55.051064],[-3.612409,55.052784],[-3.610989,55.054481],[-3.609085,55.055831],[-3.604701,55.057364],[-3.604134,55.058136],[-3.608204,55.062872],[-3.610636,55.065003],[-3.613021,55.0664],[-3.616161,55.067522],[-3.615194,55.068105],[-3.613353,55.067365],[-3.610423,55.065695],[-3.607694,55.063411],[-3.603081,55.058603],[-3.604111,55.056892],[-3.607824,55.055661],[-3.609661,55.054707],[-3.611306,55.053153],[-3.611627,55.05224],[-3.610903,55.050776],[-3.606349,55.046489],[-3.606774,55.042436],[-3.603909,55.033212],[-3.601863,55.030865],[-3.598436,55.028722],[-3.589392,55.024502],[-3.583183,55.020065],[-3.577704,55.015097],[-3.574648,55.009223],[-3.573577,55.005136],[-3.574408,55.002444],[-3.573176,54.996661],[-3.563353,54.986863],[-3.5628,54.984762],[-3.561224,54.981059],[-3.560359,54.98002],[-3.557185,54.979203],[-3.555183,54.977202],[-3.551576,54.9764],[-3.543592,54.973555],[-3.542999,54.97274],[-3.534675,54.969416],[-3.530741,54.968692],[-3.526062,54.968814],[-3.527051,54.967208],[-3.525104,54.966198],[-3.52267,54.965386],[-3.519172,54.965599],[-3.514825,54.966318],[-3.512508,54.965425],[-3.509895,54.965048],[-3.508593,54.965902],[-3.5045,54.966328],[-3.502547,54.96689],[-3.501091,54.965267],[-3.497591,54.965723],[-3.490906,54.965868],[-3.48947,54.965433],[-3.48674,54.965613],[-3.483198,54.966614],[-3.480187,54.966714],[-3.479432,54.967216],[-3.476154,54.966782],[-3.474893,54.967488],[-3.471955,54.968373],[-3.470548,54.968318],[-3.467844,54.969655],[-3.468239,54.97033],[-3.462325,54.97194],[-3.456049,54.974717],[-3.451384,54.976296],[-3.451399,54.976892],[-3.448391,54.978595],[-3.448604,54.979189],[-3.447659,54.980711],[-3.446402,54.981803],[-3.443466,54.982877],[-3.440681,54.98587],[-3.4423,54.985831],[-3.443128,54.984714],[-3.445659,54.986331],[-3.442603,54.987717],[-3.442065,54.986011],[-3.44011,54.987681],[-3.438505,54.987617],[-3.437289,54.989041],[-3.437515,54.989961],[-3.443178,54.989822],[-3.447868,54.990573],[-3.452592,54.989458],[-3.454637,54.988419],[-3.457246,54.98764],[-3.457602,54.986365],[-3.455386,54.985287],[-3.454737,54.984196],[-3.454834,54.983095],[-3.457373,54.981125],[-3.460106,54.980377],[-3.461874,54.980521],[-3.46409,54.98218],[-3.464091,54.983484],[-3.465649,54.984095],[-3.467237,54.98374],[-3.469095,54.984333],[-3.46999,54.98608],[-3.469024,54.98764],[-3.468025,54.986996],[-3.46933,54.986256],[-3.4689,54.98464],[-3.465335,54.984396],[-3.461917,54.982499],[-3.462571,54.981416],[-3.461061,54.98069],[-3.459561,54.980753],[-3.456333,54.982349],[-3.455549,54.98403],[-3.458092,54.98565],[-3.45855,54.987776],[-3.456519,54.989484],[-3.453847,54.98997],[-3.451908,54.991447],[-3.449884,54.992411],[-3.445142,54.992011],[-3.443074,54.991548],[-3.441203,54.991641],[-3.437801,54.99239],[-3.434006,54.992187],[-3.432836,54.991601],[-3.42965,54.988109],[-3.424862,54.985731],[-3.42297,54.984122],[-3.423,54.983016],[-3.421552,54.982536],[-3.419632,54.981234],[-3.418905,54.979497],[-3.417746,54.978716],[-3.41492,54.977778],[-3.412378,54.977708],[-3.408468,54.974409],[-3.406356,54.974414],[-3.39729,54.973301],[-3.395799,54.973693],[-3.393703,54.972969],[-3.391593,54.973413],[-3.388403,54.973188],[-3.387949,54.97267],[-3.383294,54.972239],[-3.378314,54.972014],[-3.3766,54.971332],[-3.375522,54.971676],[-3.370664,54.970643],[-3.365788,54.971187],[-3.362091,54.972232],[-3.359267,54.973526],[-3.354446,54.974203],[-3.348345,54.974398],[-3.34199,54.97379],[-3.339235,54.974063],[-3.334736,54.975814],[-3.331633,54.976488],[-3.330187,54.978479],[-3.328538,54.978658],[-3.316621,54.97667],[-3.30957,54.974588],[-3.294133,54.9693],[-3.288366,54.968615],[-3.278379,54.966577],[-3.270443,54.965575],[-3.267807,54.96559],[-3.264526,54.966368],[-3.264111,54.967182],[-3.26875,54.968607],[-3.271866,54.970365],[-3.275922,54.974051],[-3.275666,54.974305],[-3.278443,54.977165],[-3.278768,54.978734],[-3.276964,54.980716],[-3.274471,54.981257],[-3.273492,54.982209],[-3.272277,54.985336],[-3.267027,54.986943],[-3.266776,54.986284],[-3.271395,54.985079],[-3.272256,54.982944],[-3.271541,54.980947],[-3.273071,54.979582],[-3.274766,54.979053],[-3.2742,54.977115],[-3.271893,54.975567],[-3.269432,54.971847],[-3.267867,54.970928],[-3.266163,54.970822],[-3.266083,54.969726],[-3.264639,54.969127],[-3.262095,54.970546],[-3.257987,54.971753],[-3.256562,54.972539],[-3.252034,54.9728],[-3.248801,54.97239],[-3.245937,54.971623],[-3.243307,54.969372],[-3.241235,54.9687],[-3.237148,54.971291],[-3.235514,54.971132],[-3.233348,54.971929],[-3.229525,54.972331],[-3.220092,54.974012],[-3.21181,54.975894],[-3.207278,54.975958],[-3.205647,54.976267],[-3.20239,54.975438],[-3.200404,54.975384],[-3.188805,54.973799],[-3.186078,54.97334],[-3.18383,54.972507],[-3.181518,54.972415],[-3.170958,54.970461],[-3.167155,54.969268],[-3.164775,54.968826],[-3.158798,54.966455],[-3.157699,54.965635],[-3.153695,54.964498],[-3.149569,54.963838],[-3.146125,54.964453],[-3.141648,54.966615],[-3.1363,54.967936],[-3.129833,54.970418],[-3.120937,54.975766],[-3.117944,54.976627],[-3.108695,54.978202],[-3.107126,54.978678],[-3.100435,54.978576],[-3.095478,54.976491],[-3.091241,54.9754],[-3.091106,54.977421],[-3.089458,54.978381],[-3.086099,54.97945],[-3.085189,54.979183],[-3.076388,54.980159],[-3.070427,54.983609],[-3.064521,54.986214],[-3.056434,54.987031],[-3.056361,54.98772],[-3.057556,54.988718],[-3.05782,54.990017],[-3.057814,54.991658],[-3.054465,54.992565],[-3.052002,54.993232],[-3.052735,54.994556],[-3.049346,54.996959],[-3.044201,54.998439],[-3.045811,54.999549],[-3.046443,55.000591],[-3.046844,55.004724],[-3.045062,55.006051],[-3.044938,55.007659],[-3.04613,55.00793],[-3.047383,55.007035],[-3.048666,55.006781],[-3.049744,55.007698],[-3.049457,55.009395],[-3.048019,55.00938],[-3.047442,55.010751],[-3.04546,55.010662],[-3.045181,55.012652],[-3.041937,55.014102],[-3.042603,55.0147],[-3.041327,55.016077],[-3.040571,55.018702],[-3.042373,55.019569],[-3.040127,55.022635],[-3.03911,55.022858],[-3.036677,55.021923],[-3.034396,55.022951],[-3.034265,55.02408],[-3.030238,55.024646],[-3.030053,55.02548],[-3.03188,55.026167],[-3.032238,55.028312],[-3.034134,55.029182],[-3.034315,55.029908],[-3.032354,55.03084],[-3.031766,55.032863],[-3.030145,55.034081],[-3.028254,55.034153],[-3.026288,55.035053],[-3.025876,55.036487],[-3.027494,55.036696],[-3.031048,55.037984],[-3.032176,55.039869],[-3.034023,55.039004],[-3.035774,55.039317],[-3.036664,55.040409],[-3.038147,55.041345],[-3.04033,55.041466],[-3.038499,55.043696],[-3.040125,55.04479],[-3.043656,55.044752],[-3.043388,55.047374],[-3.046936,55.047371],[-3.049005,55.048435],[-3.050715,55.04883],[-3.051794,55.047531],[-3.05342,55.047284],[-3.053447,55.049507],[-3.051195,55.051266],[-3.050929,55.052804],[-3.048012,55.053073],[-3.043623,55.054973],[-3.043171,55.055661],[-3.039202,55.0552],[-3.034173,55.055416],[-3.027552,55.05528],[-3.021198,55.05489],[-3.000076,55.052466],[-2.972289,55.050236],[-2.964554,55.05007],[-2.958594,55.049295],[-2.95656,55.053481],[-2.955424,55.054621],[-2.950694,55.05548],[-2.947994,55.05554],[-2.943848,55.058142],[-2.939071,55.059248],[-2.937306,55.059114],[-2.936363,55.059955],[-2.93738,55.06066],[-2.941259,55.062218],[-2.943008,55.064158],[-2.942586,55.067162],[-2.942015,55.06809],[-2.940429,55.069128],[-2.937637,55.070392],[-2.934103,55.071241],[-2.932528,55.071192],[-2.929444,55.070348],[-2.926184,55.070565],[-2.920282,55.072966],[-2.917429,55.074982],[-2.916654,55.076143],[-2.917326,55.078028],[-2.915126,55.078934],[-2.912447,55.078928],[-2.910658,55.077113],[-2.90623,55.077578],[-2.904092,55.077178],[-2.899862,55.076989],[-2.896879,55.07795],[-2.892628,55.08502],[-2.893741,55.086395],[-2.893308,55.087852],[-2.89073,55.08825],[-2.889722,55.087167],[-2.886031,55.08667],[-2.884815,55.086867],[-2.883811,55.088162],[-2.885718,55.088652],[-2.886226,55.089315],[-2.883026,55.090778],[-2.882315,55.092949],[-2.882907,55.093365],[-2.885874,55.093504],[-2.886293,55.09481],[-2.884143,55.095447],[-2.878976,55.094803],[-2.876873,55.095199],[-2.87611,55.09656],[-2.874427,55.097508],[-2.871326,55.100281],[-2.872822,55.101878],[-2.871684,55.102899],[-2.871569,55.104902],[-2.870736,55.10634],[-2.867578,55.1071],[-2.863735,55.106699],[-2.862081,55.10791],[-2.858541,55.108349],[-2.857351,55.109535],[-2.85939,55.114107],[-2.86089,55.115077],[-2.860203,55.116438],[-2.86073,55.11788],[-2.860177,55.122241],[-2.861107,55.123914],[-2.860694,55.125459],[-2.861361,55.126595],[-2.861484,55.12867],[-2.865117,55.135326],[-2.867241,55.136708],[-2.870361,55.136973],[-2.872428,55.138235],[-2.873701,55.140881],[-2.875848,55.141836],[-2.879754,55.141848],[-2.881228,55.14217],[-2.890304,55.141093],[-2.891612,55.144561],[-2.890284,55.145838],[-2.892752,55.145734],[-2.895452,55.146123],[-2.896916,55.146683],[-2.899787,55.151901],[-2.900412,55.155262],[-2.900004,55.157705],[-2.900328,55.162663],[-2.899546,55.169763],[-2.904752,55.173669],[-2.903292,55.176079],[-2.902552,55.179154],[-2.901525,55.18094],[-2.895239,55.189474],[-2.895748,55.193271],[-2.896572,55.193575],[-2.889703,55.197607],[-2.885988,55.20258],[-2.887394,55.207149],[-2.888187,55.207866],[-2.866992,55.21957],[-2.861917,55.223286],[-2.865746,55.227339],[-2.865377,55.229543],[-2.864281,55.230476],[-2.86394,55.231772],[-2.863843,55.236352],[-2.869169,55.237226],[-2.871902,55.236699],[-2.873988,55.236841],[-2.877659,55.236078],[-2.881623,55.234346],[-2.884483,55.234618],[-2.887643,55.233907],[-2.891715,55.233505],[-2.894684,55.235482],[-2.897157,55.236008],[-2.905361,55.235803],[-2.908454,55.234549],[-2.912011,55.234725],[-2.915158,55.234454],[-2.917733,55.234637],[-2.920081,55.236224],[-2.921445,55.236722],[-2.920494,55.239105],[-2.915348,55.244113],[-2.915119,55.245755],[-2.913381,55.248863],[-2.911434,55.249345],[-2.908354,55.252927],[-2.908458,55.254413],[-2.907224,55.254801],[-2.905013,55.257184],[-2.899792,55.259712],[-2.894009,55.261466],[-2.89115,55.262723],[-2.884926,55.262691],[-2.885397,55.263349],[-2.884327,55.265149],[-2.887783,55.268035],[-2.885839,55.270853],[-2.887698,55.272327],[-2.89134,55.273999],[-2.893988,55.278023],[-2.893054,55.279894],[-2.896467,55.281838],[-2.898488,55.283503],[-2.903971,55.285403],[-2.906933,55.285516],[-2.911488,55.283654],[-2.91251,55.283583],[-2.916468,55.280458],[-2.91611,55.278218],[-2.917059,55.277412],[-2.921964,55.279382],[-2.924348,55.279473],[-2.926638,55.280781],[-2.930124,55.282098],[-2.93219,55.283947],[-2.935565,55.284193],[-2.938333,55.284926],[-2.941203,55.286297],[-2.942246,55.287398],[-2.943482,55.286883],[-2.945732,55.287662],[-2.949688,55.287302],[-2.951179,55.288289],[-2.954515,55.289036],[-2.957665,55.288802],[-2.960143,55.288966],[-2.962084,55.290266],[-2.964575,55.289752],[-2.967764,55.286864],[-2.967569,55.284406],[-2.968867,55.284313],[-2.976819,55.281783],[-2.978838,55.28191],[-2.980922,55.281516],[-2.98387,55.279457],[-2.988964,55.278014],[-2.990938,55.276268],[-2.993826,55.26995],[-2.995929,55.269088],[-2.998619,55.269035],[-3.00213,55.268453],[-3.006344,55.267084],[-3.009256,55.267078],[-3.01017,55.267434],[-3.01129,55.2688],[-3.011828,55.272637],[-3.013211,55.27571],[-3.019934,55.279142],[-3.027647,55.277843],[-3.032644,55.275214],[-3.042956,55.271532],[-3.046296,55.275764],[-3.05356,55.279724],[-3.054655,55.280725],[-3.054546,55.281666],[-3.052902,55.284114],[-3.05456,55.287178],[-3.053854,55.289166],[-3.051874,55.2921],[-3.046641,55.295515],[-3.051526,55.297104],[-3.054755,55.300378],[-3.061165,55.304492],[-3.063319,55.305211],[-3.061302,55.306989],[-3.064254,55.309844],[-3.067797,55.311844],[-3.069087,55.313526],[-3.069513,55.316744],[-3.077487,55.31503],[-3.081763,55.315553],[-3.085586,55.32052],[-3.08627,55.327941],[-3.099085,55.331682],[-3.099688,55.339211],[-3.100976,55.341046],[-3.098409,55.342584],[-3.098323,55.343721],[-3.100158,55.347658],[-3.101265,55.348889],[-3.102026,55.351587],[-3.104761,55.350138],[-3.106984,55.349529],[-3.109344,55.347935],[-3.110818,55.348771],[-3.112634,55.351661],[-3.11363,55.354559],[-3.112022,55.356277],[-3.112692,55.356914],[-3.114633,55.35685],[-3.117238,55.355798],[-3.125108,55.35773],[-3.125254,55.358995],[-3.127239,55.359741],[-3.13137,55.359092],[-3.133627,55.359147],[-3.13515,55.357798],[-3.139393,55.357251],[-3.144536,55.355932],[-3.149672,55.355425],[-3.151745,55.354862],[-3.157095,55.350911],[-3.163699,55.350224],[-3.168053,55.34812],[-3.169504,55.347051],[-3.174503,55.346792],[-3.176082,55.348717],[-3.17625,55.349601],[-3.17776,55.350521],[-3.179561,55.352746],[-3.181906,55.356556],[-3.18126,55.359509],[-3.179254,55.360468],[-3.187707,55.362767],[-3.189151,55.362529],[-3.190393,55.363698],[-3.191941,55.36429],[-3.193835,55.366149],[-3.196647,55.366769],[-3.201285,55.365717],[-3.204481,55.366265],[-3.206127,55.367237],[-3.205859,55.368786],[-3.208098,55.370035],[-3.210226,55.370746],[-3.21228,55.37264],[-3.213532,55.37256],[-3.215311,55.373437],[-3.216202,55.375243],[-3.21739,55.376134],[-3.22339,55.376232],[-3.225463,55.3752],[-3.22483,55.372537],[-3.231519,55.37097],[-3.233825,55.369243],[-3.233961,55.367809],[-3.234889,55.366447],[-3.237283,55.366544],[-3.237913,55.36727],[-3.241703,55.366868],[-3.244378,55.367398],[-3.247065,55.36755],[-3.249864,55.365504],[-3.250249,55.364471],[-3.253254,55.3632],[-3.25698,55.362546],[-3.262621,55.362336],[-3.26552,55.361475],[-3.266933,55.359913],[-3.267318,55.358438],[-3.264261,55.356477],[-3.26687,55.355295],[-3.268583,55.354033],[-3.272388,55.352951],[-3.275467,55.351331],[-3.276696,55.351284],[-3.27843,55.350032],[-3.281131,55.349632],[-3.284265,55.346136],[-3.285668,55.345447],[-3.286729,55.344301],[-3.288565,55.343417],[-3.289862,55.343236],[-3.291508,55.342312],[-3.296858,55.342408],[-3.303664,55.342363],[-3.312737,55.347079],[-3.313724,55.347121],[-3.316568,55.348157],[-3.318446,55.348234],[-3.32026,55.349352],[-3.319377,55.35109],[-3.315933,55.35225],[-3.313344,55.354899],[-3.313719,55.356047],[-3.312275,55.358784],[-3.312185,55.360487],[-3.3131,55.361582],[-3.316073,55.362625],[-3.315484,55.366596],[-3.314154,55.367483],[-3.310811,55.367404],[-3.308871,55.368046],[-3.306318,55.367611],[-3.30455,55.368173],[-3.303834,55.368888],[-3.306106,55.372928],[-3.3109,55.377971],[-3.311673,55.379634],[-3.310043,55.381642],[-3.30847,55.38276],[-3.30641,55.38852],[-3.30515,55.389063],[-3.303049,55.392159],[-3.302763,55.39377],[-3.301216,55.395229],[-3.298922,55.396534],[-3.29618,55.39743],[-3.293929,55.400038],[-3.293664,55.400881],[-3.291016,55.402486],[-3.288495,55.403155],[-3.287308,55.403783],[-3.286007,55.403136],[-3.284566,55.404711],[-3.282187,55.406353],[-3.281985,55.408157],[-3.278631,55.410174],[-3.275916,55.409991],[-3.274328,55.410457],[-3.271185,55.412183],[-3.267622,55.412166],[-3.265786,55.412522],[-3.264153,55.413339],[-3.262252,55.416135],[-3.260583,55.416813],[-3.256413,55.417553],[-3.255634,55.419915],[-3.253714,55.421642],[-3.244194,55.426619],[-3.243587,55.427685],[-3.244229,55.428986],[-3.24543,55.4295],[-3.247965,55.429725],[-3.250015,55.429561],[-3.254507,55.430207],[-3.257931,55.430032],[-3.262099,55.431387],[-3.264864,55.432863],[-3.26735,55.433516],[-3.269597,55.433349],[-3.279607,55.435253],[-3.285664,55.434381],[-3.287098,55.433759],[-3.288788,55.43229],[-3.293445,55.430915],[-3.299672,55.433339],[-3.302421,55.434747],[-3.306034,55.435284],[-3.305157,55.436237],[-3.306993,55.438235],[-3.309019,55.43926],[-3.308135,55.44192],[-3.308863,55.443382],[-3.310982,55.444828],[-3.312907,55.44496],[-3.315948,55.444654],[-3.325846,55.441644],[-3.329181,55.441869],[-3.331627,55.441056],[-3.331546,55.439574],[-3.330943,55.43879],[-3.333521,55.435805],[-3.334722,55.4351],[-3.334511,55.433278],[-3.338926,55.430637],[-3.338774,55.425],[-3.341465,55.424193],[-3.347286,55.424637],[-3.350898,55.421439],[-3.350673,55.419473],[-3.35206,55.418213],[-3.351824,55.416396],[-3.353375,55.415305],[-3.354322,55.412517],[-3.357863,55.412361],[-3.361209,55.415051],[-3.362326,55.416994],[-3.365788,55.416366],[-3.377686,55.411425],[-3.386161,55.412587],[-3.389414,55.41256],[-3.39457,55.410722],[-3.400517,55.409598],[-3.401402,55.408055],[-3.4029,55.409085],[-3.405378,55.412818],[-3.407523,55.413413],[-3.411695,55.413234],[-3.415515,55.413581],[-3.418751,55.415516],[-3.42049,55.415995],[-3.427847,55.414116],[-3.429857,55.410705],[-3.43605,55.409864],[-3.440356,55.408843],[-3.445416,55.409637],[-3.449185,55.409907],[-3.452447,55.408633],[-3.454436,55.40838],[-3.458295,55.406811],[-3.463253,55.405705],[-3.465056,55.404924],[-3.466579,55.404887],[-3.469476,55.405711],[-3.470315,55.404276],[-3.472128,55.403756],[-3.473584,55.403851],[-3.475462,55.406758],[-3.476862,55.406835],[-3.478418,55.407675],[-3.480467,55.406315],[-3.483694,55.406007],[-3.485253,55.405475],[-3.486091,55.404652],[-3.488669,55.404135],[-3.489308,55.404518],[-3.490277,55.406767],[-3.49007,55.408423],[-3.490577,55.410331],[-3.493628,55.40935],[-3.497411,55.408949],[-3.498982,55.407883],[-3.503455,55.408807],[-3.50477,55.41057],[-3.507378,55.412264]]]]},"properties":{"LAD22CD":"S12000006","LAD22NM":"Dumfries and Galloway","BNG_E":270645,"BNG_N":579856,"LONG":-4.02863,"LAT":55.09621,"GlobalID":"6f7434d4-545b-40c0-a871-2e7b6c552744"},"id":322}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.246893,55.679049],[-4.249796,55.677659],[-4.253662,55.676846],[-4.256337,55.6758],[-4.25759,55.676563],[-4.259224,55.676897],[-4.260364,55.67777],[-4.259701,55.679099],[-4.26072,55.679539],[-4.261784,55.680885],[-4.262491,55.682791],[-4.26781,55.68578],[-4.271456,55.684585],[-4.273301,55.682905],[-4.281956,55.678644],[-4.295881,55.684],[-4.324937,55.688275],[-4.326786,55.690343],[-4.3289,55.691911],[-4.329663,55.692027],[-4.332559,55.694435],[-4.333401,55.700274],[-4.34743,55.698677],[-4.353194,55.697416],[-4.360669,55.705505],[-4.359571,55.706312],[-4.361109,55.707393],[-4.362565,55.707653],[-4.364008,55.708744],[-4.366211,55.70805],[-4.368692,55.708146],[-4.371593,55.710179],[-4.374228,55.710056],[-4.375484,55.711349],[-4.376089,55.713301],[-4.375761,55.714453],[-4.374468,55.715853],[-4.374781,55.716544],[-4.377274,55.716958],[-4.378032,55.718422],[-4.381697,55.719771],[-4.384234,55.721617],[-4.384491,55.722971],[-4.387314,55.721773],[-4.388426,55.720791],[-4.389836,55.720728],[-4.391221,55.719246],[-4.396406,55.71747],[-4.400618,55.71361],[-4.415853,55.722495],[-4.415537,55.723923],[-4.418068,55.72618],[-4.42028,55.727283],[-4.419922,55.727659],[-4.433842,55.731833],[-4.436094,55.733963],[-4.439007,55.735039],[-4.440741,55.733817],[-4.458562,55.736731],[-4.460417,55.735792],[-4.462227,55.733391],[-4.468538,55.732521],[-4.469247,55.734633],[-4.473202,55.735],[-4.471998,55.73744],[-4.470187,55.738477],[-4.468118,55.738995],[-4.465759,55.740387],[-4.464082,55.743377],[-4.461407,55.74515],[-4.460316,55.744771],[-4.457895,55.745592],[-4.457352,55.746147],[-4.459652,55.748053],[-4.458785,55.74889],[-4.459594,55.750023],[-4.458387,55.750864],[-4.459329,55.751432],[-4.461683,55.749832],[-4.477145,55.748392],[-4.477639,55.749229],[-4.476708,55.750597],[-4.479708,55.750819],[-4.482982,55.749694],[-4.486182,55.749949],[-4.485996,55.75094],[-4.487205,55.751906],[-4.490236,55.752669],[-4.489679,55.753904],[-4.490355,55.754615],[-4.48974,55.755944],[-4.492684,55.756825],[-4.491766,55.758164],[-4.492244,55.759062],[-4.491165,55.760462],[-4.491681,55.761801],[-4.493439,55.76258],[-4.495597,55.762997],[-4.499699,55.762997],[-4.5018,55.763614],[-4.503937,55.76378],[-4.507079,55.763086],[-4.512054,55.757734],[-4.517243,55.75722],[-4.519264,55.755891],[-4.524083,55.749949],[-4.526579,55.749104],[-4.528023,55.747965],[-4.529908,55.744573],[-4.533108,55.743293],[-4.53653,55.739846],[-4.540553,55.739469],[-4.542469,55.73818],[-4.542448,55.736362],[-4.543558,55.736182],[-4.544237,55.734504],[-4.545054,55.734009],[-4.547394,55.733784],[-4.547655,55.732363],[-4.549803,55.73185],[-4.549669,55.73049],[-4.552115,55.727248],[-4.553077,55.727052],[-4.554361,55.725691],[-4.556377,55.726067],[-4.559056,55.725399],[-4.557699,55.724229],[-4.557502,55.723127],[-4.559752,55.722714],[-4.564018,55.718434],[-4.56551,55.717882],[-4.566498,55.716873],[-4.568919,55.71669],[-4.571704,55.715869],[-4.574703,55.713552],[-4.576077,55.713606],[-4.578076,55.713061],[-4.579224,55.712286],[-4.579785,55.710291],[-4.578229,55.708041],[-4.578715,55.706083],[-4.579661,55.705416],[-4.59128,55.698285],[-4.592932,55.695787],[-4.591778,55.694854],[-4.592246,55.693769],[-4.590974,55.693038],[-4.593195,55.691064],[-4.594746,55.690778],[-4.594669,55.689154],[-4.597618,55.688207],[-4.597766,55.686269],[-4.600127,55.685327],[-4.605914,55.684749],[-4.607144,55.683869],[-4.607686,55.68261],[-4.609164,55.682235],[-4.610107,55.680062],[-4.60982,55.677805],[-4.61102,55.67636],[-4.613929,55.675989],[-4.617693,55.676787],[-4.620695,55.677009],[-4.623338,55.676499],[-4.624201,55.675176],[-4.627871,55.675575],[-4.62992,55.674719],[-4.62955,55.67343],[-4.631016,55.673155],[-4.633825,55.673232],[-4.637525,55.671674],[-4.637586,55.670432],[-4.638592,55.668981],[-4.632652,55.667961],[-4.630861,55.668349],[-4.627509,55.66826],[-4.626709,55.668557],[-4.621184,55.667484],[-4.622582,55.662244],[-4.620309,55.6623],[-4.618577,55.662889],[-4.61644,55.663007],[-4.612064,55.661841],[-4.608544,55.660175],[-4.609621,55.659003],[-4.603199,55.658688],[-4.596756,55.655077],[-4.598985,55.651674],[-4.603784,55.647342],[-4.59654,55.645644],[-4.597105,55.644809],[-4.593639,55.644154],[-4.592675,55.645051],[-4.590496,55.645911],[-4.590097,55.647123],[-4.587939,55.646211],[-4.585657,55.64578],[-4.583666,55.648572],[-4.582217,55.648165],[-4.582651,55.646535],[-4.580943,55.646712],[-4.578614,55.648507],[-4.576006,55.649196],[-4.571918,55.6484],[-4.571496,55.649695],[-4.572457,55.651499],[-4.571892,55.653529],[-4.570198,55.655169],[-4.565166,55.655781],[-4.56492,55.657401],[-4.562367,55.657955],[-4.562322,55.659055],[-4.564638,55.660541],[-4.563393,55.661196],[-4.56132,55.660137],[-4.560029,55.660014],[-4.558064,55.661067],[-4.55481,55.663808],[-4.551,55.663512],[-4.548931,55.664412],[-4.549338,55.665584],[-4.546486,55.667007],[-4.543888,55.666708],[-4.542415,55.667179],[-4.53983,55.66722],[-4.534702,55.666447],[-4.533475,55.663745],[-4.530676,55.663181],[-4.530374,55.661755],[-4.531045,55.660627],[-4.525926,55.659406],[-4.519765,55.659477],[-4.513123,55.660517],[-4.510741,55.661216],[-4.508516,55.661083],[-4.507133,55.662836],[-4.502233,55.665148],[-4.492621,55.665068],[-4.492457,55.663267],[-4.496171,55.65721],[-4.496192,55.656491],[-4.510438,55.656482],[-4.511876,55.656207],[-4.514636,55.654041],[-4.517332,55.653995],[-4.518782,55.653412],[-4.519145,55.652632],[-4.523546,55.652756],[-4.52398,55.651329],[-4.531388,55.650213],[-4.535114,55.647655],[-4.54239,55.646765],[-4.548099,55.645466],[-4.549986,55.645832],[-4.553789,55.647618],[-4.557042,55.646841],[-4.557892,55.644584],[-4.557956,55.641318],[-4.559889,55.639984],[-4.5606,55.636533],[-4.561445,55.635441],[-4.5636,55.633717],[-4.567282,55.634043],[-4.569555,55.632628],[-4.567583,55.630537],[-4.563516,55.629681],[-4.562684,55.62881],[-4.560709,55.628687],[-4.560828,55.627597],[-4.558965,55.62707],[-4.558743,55.625219],[-4.560323,55.624086],[-4.561436,55.62264],[-4.562992,55.622151],[-4.567263,55.621583],[-4.570251,55.621919],[-4.573065,55.623649],[-4.574848,55.623334],[-4.576588,55.62236],[-4.578071,55.620883],[-4.583189,55.618874],[-4.585864,55.618743],[-4.588494,55.618161],[-4.588933,55.616644],[-4.588228,55.61571],[-4.584927,55.61438],[-4.583325,55.61332],[-4.583794,55.611871],[-4.584995,55.611613],[-4.58718,55.610339],[-4.587361,55.609272],[-4.589215,55.607656],[-4.587446,55.607462],[-4.585482,55.604997],[-4.583096,55.605423],[-4.581009,55.604706],[-4.579338,55.603656],[-4.579758,55.602905],[-4.592485,55.601745],[-4.591566,55.600876],[-4.594083,55.60065],[-4.592211,55.597949],[-4.588153,55.597846],[-4.584928,55.598578],[-4.579023,55.598043],[-4.575302,55.598626],[-4.572189,55.60097],[-4.568255,55.60187],[-4.567247,55.601387],[-4.567141,55.598454],[-4.569683,55.593703],[-4.569216,55.593093],[-4.565355,55.592202],[-4.561273,55.591928],[-4.554784,55.592814],[-4.549112,55.591492],[-4.546081,55.591885],[-4.54482,55.593038],[-4.542982,55.593861],[-4.540373,55.593381],[-4.539838,55.592813],[-4.535935,55.591589],[-4.539112,55.588748],[-4.540111,55.588891],[-4.541263,55.587629],[-4.543466,55.587411],[-4.544567,55.586554],[-4.543752,55.584995],[-4.542413,55.583947],[-4.540341,55.58006],[-4.541182,55.579728],[-4.539493,55.578217],[-4.537681,55.579693],[-4.534544,55.57649],[-4.538708,55.5751],[-4.53724,55.573616],[-4.53631,55.573755],[-4.533828,55.573131],[-4.52988,55.574209],[-4.529067,55.573498],[-4.526913,55.572899],[-4.524709,55.571125],[-4.52401,55.57094],[-4.520283,55.571396],[-4.519012,55.572218],[-4.516946,55.571385],[-4.518998,55.570514],[-4.516887,55.569989],[-4.51732,55.567457],[-4.518453,55.566003],[-4.516771,55.565446],[-4.515855,55.566068],[-4.514214,55.565604],[-4.513212,55.566228],[-4.515052,55.566952],[-4.513216,55.569194],[-4.511813,55.568691],[-4.509496,55.568865],[-4.506558,55.566731],[-4.506581,55.566025],[-4.504113,55.564517],[-4.501179,55.564832],[-4.500238,55.564544],[-4.499827,55.562796],[-4.495819,55.562896],[-4.491693,55.563708],[-4.492742,55.564899],[-4.487057,55.565849],[-4.486262,55.564803],[-4.482729,55.565152],[-4.482494,55.564121],[-4.477242,55.564126],[-4.471198,55.564986],[-4.470724,55.563059],[-4.466659,55.563304],[-4.464255,55.565065],[-4.462438,55.565248],[-4.459875,55.564838],[-4.458167,55.563502],[-4.454533,55.562045],[-4.453121,55.564077],[-4.449242,55.565145],[-4.447698,55.564262],[-4.445412,55.565132],[-4.441434,55.563626],[-4.440289,55.564181],[-4.438757,55.565747],[-4.439429,55.566537],[-4.437146,55.56788],[-4.435142,55.566639],[-4.437369,55.564258],[-4.435954,55.562838],[-4.436665,55.561904],[-4.436227,55.560928],[-4.434163,55.560319],[-4.431103,55.56002],[-4.429044,55.56149],[-4.427371,55.560643],[-4.426478,55.558554],[-4.426748,55.557589],[-4.425283,55.556022],[-4.424287,55.55576],[-4.417563,55.557259],[-4.41361,55.556386],[-4.41215,55.555027],[-4.410443,55.554343],[-4.409496,55.55319],[-4.411704,55.551547],[-4.411243,55.550424],[-4.411654,55.547677],[-4.410508,55.546279],[-4.408892,55.545502],[-4.408493,55.54447],[-4.409691,55.541659],[-4.411339,55.539127],[-4.4128,55.538283],[-4.41306,55.537303],[-4.409622,55.534119],[-4.408985,55.531936],[-4.406174,55.528592],[-4.405752,55.527179],[-4.406486,55.526201],[-4.407839,55.525782],[-4.407208,55.523826],[-4.403965,55.524021],[-4.401821,55.523643],[-4.40206,55.520196],[-4.403725,55.517608],[-4.400308,55.514654],[-4.400946,55.514481],[-4.398857,55.511339],[-4.39981,55.510428],[-4.402457,55.510526],[-4.406528,55.50994],[-4.409292,55.510282],[-4.411125,55.509511],[-4.411694,55.508415],[-4.413134,55.508391],[-4.414384,55.507255],[-4.418661,55.506628],[-4.417514,55.505555],[-4.412991,55.504053],[-4.412527,55.501518],[-4.414112,55.501138],[-4.415567,55.501356],[-4.419724,55.501079],[-4.420938,55.502771],[-4.425846,55.503764],[-4.428372,55.505057],[-4.431158,55.504425],[-4.434868,55.50553],[-4.436031,55.505545],[-4.439578,55.504384],[-4.441327,55.50343],[-4.441453,55.502565],[-4.43516,55.501214],[-4.433948,55.499837],[-4.434626,55.498543],[-4.436068,55.498014],[-4.439784,55.497604],[-4.441501,55.496486],[-4.440385,55.495056],[-4.440454,55.493825],[-4.443891,55.49233],[-4.447168,55.491548],[-4.448252,55.490994],[-4.448999,55.488836],[-4.454459,55.485241],[-4.458965,55.483591],[-4.462323,55.483371],[-4.463469,55.483678],[-4.466599,55.486001],[-4.468939,55.486465],[-4.47079,55.48631],[-4.472979,55.485254],[-4.47531,55.482723],[-4.475065,55.481819],[-4.473703,55.48122],[-4.473722,55.480016],[-4.47923,55.479917],[-4.48551,55.477855],[-4.483176,55.472748],[-4.482504,55.472268],[-4.492248,55.470797],[-4.493833,55.46858],[-4.490954,55.465785],[-4.492555,55.463733],[-4.490598,55.46263],[-4.489991,55.461871],[-4.488416,55.461332],[-4.489746,55.458715],[-4.491109,55.457902],[-4.493454,55.457341],[-4.48984,55.456872],[-4.482246,55.458064],[-4.480577,55.457334],[-4.481241,55.455982],[-4.47678,55.454792],[-4.477751,55.452448],[-4.475009,55.451404],[-4.476536,55.450186],[-4.475599,55.449488],[-4.475285,55.448049],[-4.4782,55.447774],[-4.479114,55.446647],[-4.482543,55.446727],[-4.4836,55.446001],[-4.483244,55.445129],[-4.484763,55.443884],[-4.485607,55.442519],[-4.489912,55.443817],[-4.491653,55.442388],[-4.493628,55.442518],[-4.494267,55.441247],[-4.491991,55.440916],[-4.492066,55.439628],[-4.493009,55.439276],[-4.492725,55.438147],[-4.489015,55.437874],[-4.486006,55.435715],[-4.48305,55.436706],[-4.481541,55.434747],[-4.480144,55.434623],[-4.478332,55.435285],[-4.47713,55.434619],[-4.479359,55.432681],[-4.481321,55.431958],[-4.479716,55.431113],[-4.47785,55.431395],[-4.474556,55.430259],[-4.472126,55.430476],[-4.470973,55.429734],[-4.471303,55.428977],[-4.468196,55.428477],[-4.466537,55.429808],[-4.464385,55.430271],[-4.46303,55.431021],[-4.461466,55.43045],[-4.458382,55.430182],[-4.455685,55.430983],[-4.454717,55.430083],[-4.454351,55.428788],[-4.452214,55.42756],[-4.452015,55.426458],[-4.454049,55.425393],[-4.452971,55.424339],[-4.45267,55.423283],[-4.452946,55.421531],[-4.454923,55.421465],[-4.454968,55.419458],[-4.452758,55.418743],[-4.451309,55.41784],[-4.451416,55.416922],[-4.452963,55.415917],[-4.450501,55.415176],[-4.450397,55.411987],[-4.452592,55.411469],[-4.453222,55.410347],[-4.456105,55.408549],[-4.462206,55.408173],[-4.464408,55.407344],[-4.46639,55.405786],[-4.465368,55.404204],[-4.466179,55.40346],[-4.468116,55.403027],[-4.469208,55.403481],[-4.476601,55.401256],[-4.480849,55.40097],[-4.484475,55.400258],[-4.487433,55.401627],[-4.492387,55.400983],[-4.500737,55.399127],[-4.501884,55.399131],[-4.501518,55.400846],[-4.502303,55.402684],[-4.511848,55.406221],[-4.516702,55.408933],[-4.521284,55.407389],[-4.527803,55.409137],[-4.52267,55.410798],[-4.525152,55.413649],[-4.527102,55.413955],[-4.528428,55.415709],[-4.531326,55.418517],[-4.530536,55.418932],[-4.531474,55.420154],[-4.531335,55.421251],[-4.533057,55.42175],[-4.535117,55.423846],[-4.536824,55.423947],[-4.539449,55.42355],[-4.540979,55.4241],[-4.542387,55.423754],[-4.542631,55.422444],[-4.545538,55.420717],[-4.547053,55.421539],[-4.552133,55.423314],[-4.551158,55.424666],[-4.551891,55.426055],[-4.553544,55.426648],[-4.55589,55.426296],[-4.561478,55.426484],[-4.565021,55.426302],[-4.564658,55.424599],[-4.566879,55.422994],[-4.570396,55.422097],[-4.568149,55.421007],[-4.562734,55.417429],[-4.563894,55.41565],[-4.567307,55.41291],[-4.567511,55.408713],[-4.571075,55.404474],[-4.574416,55.402799],[-4.575264,55.40268],[-4.577554,55.400754],[-4.579315,55.399932],[-4.585287,55.40043],[-4.587743,55.40104],[-4.5938,55.400071],[-4.595752,55.399105],[-4.596838,55.397954],[-4.603385,55.395164],[-4.602816,55.393552],[-4.603106,55.391947],[-4.601097,55.392464],[-4.599181,55.394488],[-4.596493,55.39503],[-4.594886,55.395965],[-4.592567,55.395547],[-4.589176,55.396893],[-4.587473,55.396838],[-4.585264,55.395964],[-4.585476,55.394375],[-4.584267,55.393003],[-4.585597,55.391621],[-4.582308,55.391483],[-4.579669,55.392336],[-4.581574,55.393318],[-4.580375,55.39415],[-4.578512,55.392724],[-4.576093,55.391834],[-4.57457,55.393367],[-4.57338,55.393719],[-4.570784,55.392045],[-4.57028,55.390487],[-4.567261,55.38942],[-4.565315,55.389124],[-4.564797,55.387178],[-4.562528,55.386689],[-4.562002,55.388844],[-4.560869,55.389978],[-4.557072,55.3917],[-4.55619,55.393681],[-4.553582,55.393807],[-4.551838,55.393136],[-4.547266,55.394019],[-4.545766,55.395554],[-4.544361,55.396051],[-4.542072,55.395981],[-4.539983,55.39479],[-4.538472,55.395305],[-4.535982,55.395269],[-4.534617,55.394403],[-4.533041,55.392428],[-4.529672,55.39227],[-4.528382,55.391946],[-4.527127,55.390861],[-4.527586,55.38935],[-4.524723,55.388846],[-4.5234,55.388315],[-4.521641,55.386683],[-4.521819,55.385476],[-4.521293,55.384529],[-4.519828,55.383574],[-4.521443,55.383042],[-4.523653,55.380645],[-4.529535,55.37807],[-4.531425,55.376113],[-4.537668,55.372825],[-4.53655,55.370669],[-4.537418,55.369043],[-4.539344,55.368002],[-4.54245,55.367176],[-4.543178,55.365891],[-4.545197,55.365251],[-4.548846,55.363309],[-4.551217,55.36308],[-4.554221,55.363944],[-4.556992,55.36352],[-4.559086,55.362198],[-4.558569,55.360508],[-4.560028,55.359196],[-4.562079,55.35878],[-4.564643,55.357473],[-4.556611,55.356489],[-4.555725,55.356717],[-4.550559,55.355582],[-4.547506,55.355461],[-4.544765,55.354112],[-4.542227,55.353758],[-4.535127,55.350581],[-4.531826,55.350641],[-4.528793,55.349715],[-4.527214,55.348826],[-4.525596,55.346333],[-4.52551,55.342754],[-4.521059,55.34121],[-4.519198,55.339967],[-4.517726,55.339643],[-4.517648,55.338655],[-4.516568,55.338044],[-4.515326,55.336483],[-4.510103,55.334056],[-4.49736,55.330394],[-4.493561,55.328299],[-4.49339,55.32739],[-4.494788,55.326846],[-4.494603,55.326158],[-4.495604,55.324074],[-4.493013,55.323939],[-4.490504,55.323266],[-4.487507,55.32401],[-4.486085,55.322817],[-4.481672,55.323455],[-4.474129,55.325177],[-4.473335,55.323746],[-4.471914,55.323204],[-4.471066,55.321729],[-4.468815,55.321019],[-4.468621,55.32013],[-4.465229,55.317213],[-4.465945,55.315191],[-4.460779,55.316234],[-4.456706,55.315241],[-4.455582,55.31441],[-4.448134,55.3121],[-4.445815,55.310536],[-4.44133,55.30931],[-4.440393,55.308659],[-4.437978,55.307826],[-4.438704,55.306519],[-4.437326,55.304887],[-4.440273,55.30392],[-4.441071,55.304029],[-4.442065,55.302375],[-4.44333,55.302332],[-4.444484,55.301374],[-4.447474,55.301598],[-4.450031,55.300789],[-4.449431,55.299991],[-4.452418,55.297086],[-4.450765,55.293796],[-4.450063,55.290257],[-4.451273,55.289523],[-4.454178,55.288767],[-4.4547,55.287147],[-4.458627,55.285244],[-4.438564,55.271637],[-4.438634,55.270389],[-4.43992,55.269169],[-4.439709,55.268326],[-4.441648,55.267626],[-4.438508,55.262204],[-4.439724,55.26049],[-4.441314,55.259698],[-4.441154,55.259086],[-4.438268,55.257915],[-4.439624,55.257243],[-4.437557,55.256727],[-4.437029,55.255227],[-4.435648,55.255831],[-4.429493,55.255591],[-4.429106,55.254024],[-4.43114,55.253923],[-4.431596,55.252947],[-4.430436,55.252321],[-4.430617,55.251388],[-4.433018,55.251136],[-4.435138,55.250051],[-4.436946,55.248256],[-4.438448,55.247578],[-4.438774,55.246704],[-4.444321,55.245208],[-4.446358,55.243581],[-4.446964,55.240291],[-4.446252,55.239413],[-4.447042,55.238676],[-4.450196,55.237401],[-4.447821,55.231518],[-4.44961,55.230862],[-4.453093,55.225483],[-4.452458,55.222146],[-4.453187,55.221345],[-4.452667,55.220324],[-4.452434,55.214863],[-4.453892,55.213606],[-4.451829,55.211278],[-4.454848,55.210017],[-4.455225,55.207722],[-4.456858,55.207815],[-4.460482,55.208987],[-4.464852,55.206314],[-4.468465,55.203738],[-4.469159,55.201688],[-4.470449,55.201549],[-4.470421,55.200297],[-4.471201,55.199129],[-4.475259,55.198751],[-4.472936,55.196506],[-4.469652,55.195872],[-4.467849,55.19314],[-4.466415,55.192063],[-4.467794,55.190838],[-4.468296,55.189115],[-4.466205,55.184617],[-4.467672,55.183266],[-4.467057,55.18194],[-4.468033,55.181366],[-4.467279,55.180425],[-4.466922,55.178421],[-4.465565,55.177038],[-4.465452,55.175332],[-4.466131,55.174244],[-4.464628,55.173551],[-4.46435,55.172492],[-4.461847,55.17022],[-4.459984,55.170063],[-4.455608,55.171297],[-4.452978,55.169903],[-4.450575,55.167978],[-4.445159,55.167224],[-4.444476,55.167858],[-4.444144,55.169501],[-4.44269,55.168438],[-4.442918,55.167044],[-4.446857,55.164561],[-4.446951,55.162636],[-4.44767,55.161942],[-4.447454,55.159452],[-4.44505,55.156328],[-4.443367,55.155275],[-4.442414,55.154176],[-4.442695,55.152869],[-4.442257,55.151346],[-4.442699,55.150613],[-4.441589,55.148631],[-4.442691,55.147148],[-4.442184,55.144763],[-4.441104,55.143895],[-4.440918,55.139721],[-4.439342,55.138786],[-4.438394,55.138808],[-4.438491,55.140477],[-4.43738,55.14022],[-4.435452,55.13834],[-4.433886,55.139378],[-4.432956,55.139082],[-4.430791,55.139467],[-4.424909,55.141841],[-4.424449,55.142528],[-4.422229,55.143453],[-4.420646,55.143741],[-4.416434,55.147402],[-4.415681,55.147412],[-4.413802,55.149171],[-4.410724,55.150571],[-4.409567,55.151551],[-4.407272,55.156963],[-4.406641,55.158867],[-4.407124,55.160642],[-4.408152,55.161943],[-4.407941,55.162599],[-4.41167,55.165339],[-4.410677,55.166181],[-4.411896,55.166611],[-4.412849,55.168084],[-4.410683,55.169924],[-4.410472,55.171376],[-4.409081,55.173409],[-4.409221,55.174978],[-4.410107,55.17638],[-4.408868,55.177317],[-4.409444,55.178048],[-4.409267,55.179228],[-4.407327,55.181382],[-4.405599,55.182011],[-4.405527,55.183396],[-4.402597,55.185771],[-4.402291,55.186715],[-4.401083,55.186871],[-4.399619,55.185978],[-4.397361,55.186367],[-4.397638,55.190634],[-4.396048,55.191943],[-4.396557,55.193378],[-4.395162,55.194518],[-4.395062,55.195813],[-4.39376,55.197675],[-4.394746,55.199134],[-4.393761,55.200368],[-4.392202,55.200961],[-4.39219,55.202467],[-4.388641,55.202787],[-4.387296,55.202393],[-4.383606,55.202136],[-4.37955,55.201032],[-4.377383,55.201456],[-4.379056,55.202858],[-4.38006,55.204671],[-4.377531,55.205734],[-4.380164,55.206444],[-4.381555,55.207289],[-4.379777,55.20842],[-4.379171,55.210061],[-4.378264,55.210514],[-4.377235,55.212497],[-4.375282,55.219932],[-4.372743,55.222497],[-4.369615,55.227349],[-4.365539,55.229425],[-4.364362,55.233418],[-4.362419,55.235497],[-4.36133,55.237867],[-4.361863,55.241345],[-4.361633,55.242959],[-4.358188,55.246473],[-4.357749,55.248381],[-4.355343,55.252661],[-4.356337,55.254026],[-4.359233,55.255763],[-4.359892,55.256798],[-4.359537,55.257843],[-4.358045,55.258294],[-4.356882,55.259386],[-4.357035,55.260098],[-4.355213,55.261286],[-4.356344,55.262651],[-4.355126,55.264018],[-4.354071,55.264537],[-4.350327,55.264182],[-4.348138,55.264296],[-4.346318,55.26265],[-4.345237,55.263682],[-4.347503,55.264735],[-4.345805,55.267712],[-4.344939,55.27078],[-4.339039,55.272313],[-4.338233,55.273322],[-4.335998,55.274547],[-4.337733,55.276738],[-4.337433,55.277791],[-4.335917,55.277586],[-4.333992,55.276576],[-4.331798,55.276353],[-4.3313,55.276983],[-4.327551,55.278978],[-4.327696,55.280913],[-4.324837,55.282643],[-4.324133,55.284341],[-4.322394,55.285314],[-4.319762,55.286213],[-4.318193,55.287807],[-4.31292,55.291516],[-4.310842,55.293568],[-4.31058,55.295699],[-4.309699,55.296794],[-4.310374,55.298521],[-4.31051,55.300986],[-4.307517,55.303446],[-4.305372,55.303954],[-4.304076,55.304819],[-4.302762,55.309064],[-4.301907,55.310078],[-4.300483,55.31069],[-4.297894,55.310989],[-4.295975,55.309686],[-4.293231,55.309243],[-4.291281,55.30959],[-4.290082,55.308741],[-4.285785,55.30759],[-4.279217,55.308746],[-4.27777,55.309605],[-4.275599,55.309942],[-4.272065,55.310012],[-4.269455,55.311085],[-4.268948,55.310488],[-4.264626,55.309018],[-4.261355,55.308867],[-4.258144,55.307947],[-4.257227,55.306512],[-4.257669,55.305286],[-4.254718,55.306313],[-4.25275,55.30619],[-4.251289,55.306559],[-4.249629,55.306309],[-4.248172,55.307569],[-4.248755,55.308556],[-4.246058,55.311437],[-4.245737,55.313977],[-4.24457,55.314246],[-4.243332,55.315487],[-4.242285,55.318009],[-4.240191,55.319171],[-4.240138,55.320606],[-4.239515,55.321435],[-4.237586,55.321048],[-4.232759,55.322808],[-4.23146,55.32214],[-4.229085,55.321936],[-4.227908,55.320209],[-4.228005,55.319408],[-4.226759,55.318136],[-4.224186,55.31831],[-4.222651,55.317519],[-4.22042,55.318355],[-4.219139,55.317578],[-4.217464,55.317928],[-4.215982,55.316359],[-4.210929,55.317309],[-4.209132,55.318306],[-4.202858,55.318234],[-4.201551,55.317819],[-4.19928,55.315777],[-4.19668,55.315867],[-4.196437,55.315178],[-4.194751,55.314891],[-4.193795,55.313704],[-4.192835,55.311586],[-4.189984,55.311044],[-4.187855,55.308862],[-4.186254,55.307691],[-4.184078,55.307083],[-4.182686,55.306133],[-4.183554,55.305582],[-4.18123,55.304442],[-4.179833,55.302952],[-4.178208,55.302761],[-4.176469,55.300653],[-4.176746,55.300086],[-4.174742,55.297012],[-4.173542,55.295654],[-4.171635,55.294349],[-4.16587,55.29175],[-4.159743,55.290151],[-4.149662,55.285179],[-4.145582,55.283835],[-4.142618,55.283626],[-4.139332,55.284592],[-4.133916,55.29283],[-4.130598,55.296025],[-4.124075,55.296295],[-4.116382,55.299579],[-4.113589,55.302311],[-4.11246,55.305395],[-4.114551,55.30721],[-4.116139,55.307439],[-4.122494,55.313737],[-4.121325,55.315011],[-4.119136,55.322271],[-4.117101,55.32394],[-4.116386,55.325231],[-4.111947,55.327438],[-4.111058,55.329024],[-4.108018,55.330326],[-4.107063,55.331662],[-4.107074,55.333557],[-4.106462,55.334477],[-4.10503,55.334914],[-4.104595,55.336452],[-4.10296,55.337027],[-4.10342,55.33764],[-4.101747,55.338343],[-4.102041,55.339354],[-4.101459,55.340438],[-4.09956,55.341987],[-4.099581,55.342531],[-4.097165,55.344347],[-4.095216,55.344922],[-4.094253,55.345983],[-4.091133,55.347385],[-4.089703,55.349427],[-4.08573,55.351261],[-4.091314,55.353416],[-4.092928,55.353753],[-4.098993,55.357923],[-4.099714,55.360517],[-4.100968,55.361551],[-4.102845,55.364216],[-4.102637,55.365794],[-4.107499,55.369006],[-4.104316,55.374265],[-4.101361,55.381924],[-4.097179,55.385487],[-4.097471,55.387719],[-4.09866,55.389152],[-4.09766,55.390505],[-4.098231,55.392195],[-4.097976,55.395023],[-4.099048,55.395458],[-4.096342,55.39891],[-4.090846,55.412068],[-4.086291,55.411523],[-4.082341,55.412931],[-4.078125,55.41345],[-4.070511,55.414998],[-4.068413,55.415708],[-4.065452,55.41795],[-4.063225,55.417796],[-4.059258,55.419534],[-4.054293,55.421123],[-4.05122,55.423585],[-4.046055,55.422097],[-4.043066,55.422201],[-4.036251,55.423348],[-4.032525,55.424295],[-4.031295,55.42623],[-4.019,55.430586],[-4.007791,55.435637],[-4.002724,55.43655],[-4.002197,55.438296],[-4.003137,55.439888],[-4.00447,55.44107],[-4.005032,55.442962],[-4.006689,55.4432],[-4.008319,55.444678],[-4.016474,55.446557],[-4.01711,55.447113],[-4.015437,55.447963],[-4.013,55.448228],[-4.011615,55.449437],[-4.010822,55.451099],[-4.005163,55.454742],[-4.001575,55.45539],[-3.997809,55.455209],[-3.997396,55.456101],[-3.99571,55.456227],[-3.991891,55.460625],[-3.987054,55.461005],[-3.986227,55.464052],[-3.991389,55.464786],[-3.993077,55.464534],[-3.995789,55.464674],[-3.998388,55.463526],[-4.000438,55.463712],[-4.002129,55.465235],[-4.001415,55.466918],[-4.003117,55.467412],[-4.008024,55.471353],[-4.011758,55.472433],[-4.014243,55.47246],[-4.01531,55.471979],[-4.016824,55.472961],[-4.01682,55.474745],[-4.014117,55.475419],[-4.013848,55.478048],[-4.011534,55.482638],[-4.013914,55.484496],[-4.016143,55.487208],[-4.02025,55.488583],[-4.02136,55.489697],[-4.024476,55.491358],[-4.025685,55.492449],[-4.023648,55.494276],[-4.018981,55.49534],[-4.019453,55.496366],[-4.019521,55.498611],[-4.01827,55.499692],[-4.015567,55.501022],[-4.015225,55.501774],[-4.013174,55.503308],[-4.01239,55.505006],[-4.007126,55.50565],[-4.006792,55.507345],[-4.003999,55.508016],[-3.999755,55.509725],[-3.99894,55.510979],[-3.9943,55.513337],[-3.994175,55.515101],[-3.992322,55.516829],[-3.990269,55.519626],[-3.988213,55.519839],[-3.988061,55.521702],[-3.989371,55.522705],[-3.989205,55.524582],[-3.987651,55.526445],[-3.978615,55.529499],[-3.976707,55.530708],[-3.974274,55.530448],[-3.972734,55.534347],[-3.96539,55.535001],[-3.96049,55.539864],[-3.958705,55.540788],[-3.958145,55.541812],[-3.958294,55.543207],[-3.959533,55.542945],[-3.960673,55.544674],[-3.960287,55.546478],[-3.958318,55.549435],[-3.958568,55.552239],[-3.957047,55.555751],[-3.958667,55.557091],[-3.964302,55.557162],[-3.965945,55.556606],[-3.967725,55.556845],[-3.969758,55.55645],[-3.972353,55.556439],[-3.97277,55.557862],[-3.97417,55.559704],[-3.973778,55.560259],[-3.975521,55.561651],[-3.976393,55.564656],[-3.981251,55.563643],[-3.983551,55.562714],[-3.985949,55.562718],[-3.987476,55.563196],[-3.989358,55.562941],[-3.991241,55.563638],[-3.99163,55.564423],[-3.993655,55.564017],[-3.994998,55.564242],[-3.997,55.563536],[-4.003586,55.567045],[-4.006521,55.568319],[-4.007527,55.56828],[-4.009654,55.569867],[-4.008356,55.571474],[-4.007798,55.574368],[-4.008295,55.575421],[-4.011964,55.576129],[-4.015132,55.577106],[-4.020019,55.579295],[-4.023422,55.581458],[-4.03372,55.584083],[-4.034136,55.588282],[-4.037484,55.589655],[-4.039576,55.592371],[-4.04061,55.589042],[-4.04594,55.586571],[-4.048796,55.584578],[-4.058222,55.582775],[-4.062181,55.581432],[-4.062648,55.580341],[-4.066167,55.579842],[-4.0661,55.578104],[-4.064696,55.576744],[-4.065384,55.575653],[-4.073189,55.571581],[-4.07503,55.571298],[-4.08043,55.568879],[-4.081567,55.567579],[-4.082718,55.568359],[-4.086269,55.569215],[-4.091755,55.568587],[-4.092758,55.570147],[-4.101346,55.569088],[-4.107188,55.566664],[-4.109986,55.566063],[-4.115112,55.566263],[-4.117949,55.566083],[-4.119698,55.566597],[-4.126309,55.565674],[-4.137504,55.567523],[-4.143433,55.569671],[-4.145935,55.570032],[-4.147717,55.572733],[-4.15108,55.572157],[-4.154122,55.570059],[-4.154681,55.569123],[-4.158559,55.567676],[-4.16701,55.566475],[-4.167647,55.565376],[-4.172704,55.565749],[-4.173379,55.564627],[-4.176413,55.56558],[-4.179469,55.565481],[-4.180605,55.56609],[-4.184083,55.564882],[-4.185693,55.563186],[-4.193625,55.561094],[-4.194768,55.559977],[-4.196922,55.55908],[-4.201099,55.556358],[-4.210004,55.553277],[-4.212613,55.552736],[-4.215401,55.552968],[-4.218331,55.55234],[-4.220587,55.550592],[-4.223415,55.55028],[-4.224663,55.550486],[-4.227656,55.552113],[-4.228285,55.552151],[-4.2276,55.558971],[-4.228178,55.560066],[-4.230964,55.560824],[-4.233762,55.560526],[-4.236336,55.561719],[-4.240523,55.561319],[-4.242639,55.562135],[-4.239411,55.563531],[-4.234421,55.564869],[-4.230169,55.566825],[-4.227766,55.568342],[-4.227194,55.569593],[-4.22607,55.570289],[-4.225469,55.57148],[-4.221636,55.573967],[-4.219348,55.574182],[-4.216621,55.575626],[-4.214668,55.575581],[-4.211736,55.577031],[-4.211401,55.578857],[-4.209136,55.580327],[-4.208988,55.581224],[-4.20568,55.582034],[-4.20337,55.583338],[-4.202641,55.585194],[-4.204951,55.586051],[-4.203367,55.587386],[-4.203858,55.588079],[-4.20274,55.589576],[-4.202683,55.591588],[-4.201025,55.592893],[-4.201567,55.593482],[-4.19874,55.59414],[-4.199518,55.595338],[-4.197095,55.595789],[-4.198087,55.59642],[-4.197144,55.597531],[-4.195638,55.598134],[-4.196338,55.598943],[-4.194687,55.600708],[-4.191317,55.601703],[-4.187882,55.602168],[-4.187964,55.60276],[-4.183905,55.602898],[-4.181946,55.603176],[-4.180752,55.602725],[-4.175471,55.60353],[-4.175735,55.604252],[-4.181777,55.605322],[-4.184763,55.608244],[-4.187106,55.609012],[-4.188556,55.610322],[-4.194134,55.612046],[-4.205296,55.61486],[-4.202946,55.617197],[-4.203586,55.620637],[-4.201257,55.623158],[-4.201936,55.626946],[-4.202964,55.627555],[-4.206401,55.628307],[-4.209261,55.629701],[-4.2127,55.630053],[-4.216065,55.63143],[-4.221615,55.635101],[-4.221589,55.636966],[-4.216811,55.643981],[-4.215374,55.643729],[-4.216961,55.647196],[-4.222356,55.65392],[-4.246614,55.674172],[-4.246893,55.679049]]]},"properties":{"LAD22CD":"S12000008","LAD22NM":"East Ayrshire","BNG_E":255398,"BNG_N":624935,"LONG":-4.29057,"LAT":55.49674,"GlobalID":"f591856f-d591-4bf6-8834-5a23bcb0f884"},"id":323}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.366626,55.945826],[-2.369498,55.946008],[-2.374775,55.947073],[-2.37672,55.947695],[-2.377184,55.948537],[-2.379605,55.94952],[-2.380976,55.950683],[-2.385177,55.950935],[-2.386194,55.952422],[-2.387385,55.953249],[-2.390241,55.954378],[-2.394968,55.957639],[-2.397312,55.960439],[-2.399491,55.964225],[-2.398442,55.968008],[-2.401422,55.970976],[-2.402767,55.971773],[-2.405447,55.972076],[-2.410065,55.970707],[-2.413141,55.970749],[-2.413904,55.970234],[-2.419515,55.970613],[-2.421565,55.971488],[-2.422331,55.972759],[-2.421604,55.973693],[-2.420035,55.973801],[-2.418875,55.974435],[-2.423149,55.974822],[-2.429089,55.976391],[-2.43343,55.978448],[-2.436884,55.979058],[-2.438702,55.979807],[-2.44089,55.981191],[-2.442425,55.982896],[-2.442629,55.984056],[-2.445194,55.987895],[-2.447879,55.98832],[-2.448663,55.987354],[-2.450229,55.987005],[-2.452489,55.987364],[-2.453032,55.987938],[-2.459249,55.987728],[-2.460897,55.987215],[-2.465194,55.987672],[-2.467516,55.988452],[-2.468576,55.989277],[-2.470594,55.992335],[-2.470956,55.993915],[-2.472489,55.994361],[-2.473904,55.995814],[-2.478362,55.995782],[-2.480097,55.996903],[-2.484209,55.996816],[-2.486171,55.995684],[-2.488548,55.995368],[-2.492651,55.996071],[-2.493349,55.996608],[-2.496703,55.997759],[-2.499469,55.997931],[-2.503116,55.998881],[-2.505575,55.99875],[-2.509307,55.999783],[-2.51231,56.001608],[-2.513316,56.003803],[-2.512881,56.005345],[-2.516635,56.005336],[-2.518356,56.005545],[-2.519247,56.004481],[-2.523362,56.004932],[-2.52658,56.006249],[-2.531406,56.006746],[-2.534702,56.005324],[-2.535645,56.004539],[-2.538765,56.004504],[-2.542037,56.005206],[-2.543549,56.004675],[-2.541898,56.003649],[-2.541939,56.001927],[-2.544606,56.000502],[-2.543909,55.998782],[-2.550705,55.998265],[-2.551394,55.998841],[-2.550785,55.999853],[-2.553905,55.999677],[-2.554707,55.99928],[-2.557387,56.000206],[-2.552314,56.000743],[-2.552187,56.001205],[-2.553791,56.00275],[-2.56039,56.005517],[-2.569498,56.01052],[-2.572458,56.011565],[-2.573065,56.012207],[-2.5749,56.012449],[-2.577108,56.011627],[-2.577171,56.010784],[-2.57485,56.010899],[-2.573256,56.010576],[-2.571874,56.009586],[-2.571341,56.007984],[-2.5702,56.007059],[-2.573671,56.007245],[-2.577761,56.004611],[-2.578384,56.001221],[-2.579876,56.001336],[-2.582743,56.000696],[-2.588561,55.998657],[-2.59302,55.99799],[-2.598731,55.997661],[-2.601473,56.002516],[-2.598837,56.00259],[-2.598661,56.003237],[-2.600002,56.004002],[-2.60238,56.0041],[-2.603581,56.00503],[-2.595724,56.004618],[-2.595446,56.006079],[-2.593507,56.006182],[-2.59206,56.006731],[-2.592208,56.008082],[-2.590677,56.008981],[-2.59014,56.010431],[-2.591461,56.011921],[-2.593134,56.012971],[-2.591885,56.014504],[-2.590812,56.014592],[-2.590017,56.013038],[-2.588516,56.012037],[-2.588555,56.010443],[-2.587467,56.009197],[-2.584506,56.00725],[-2.582826,56.007253],[-2.583451,56.008716],[-2.590215,56.014869],[-2.59078,56.016605],[-2.590223,56.017319],[-2.587337,56.018818],[-2.585946,56.019201],[-2.585997,56.020349],[-2.584692,56.021756],[-2.583013,56.022043],[-2.581965,56.023239],[-2.583258,56.023767],[-2.586055,56.023534],[-2.587287,56.022061],[-2.588916,56.022192],[-2.59033,56.022953],[-2.592987,56.023548],[-2.59816,56.025653],[-2.608187,56.032754],[-2.612792,56.033352],[-2.611021,56.03422],[-2.610036,56.035618],[-2.611376,56.038271],[-2.615929,56.040641],[-2.615837,56.041755],[-2.619018,56.043429],[-2.620369,56.045636],[-2.621009,56.04785],[-2.622654,56.049032],[-2.625747,56.050588],[-2.627721,56.051074],[-2.628954,56.052007],[-2.632814,56.051737],[-2.637054,56.05189],[-2.638489,56.052618],[-2.639784,56.054176],[-2.642027,56.054157],[-2.645122,56.054663],[-2.646474,56.053669],[-2.647657,56.053553],[-2.649692,56.054917],[-2.64974,56.056961],[-2.654471,56.057072],[-2.65357,56.058131],[-2.654924,56.059513],[-2.656238,56.059085],[-2.660324,56.059468],[-2.664797,56.057942],[-2.668514,56.058627],[-2.670616,56.057773],[-2.675918,56.059348],[-2.677541,56.061037],[-2.678966,56.061851],[-2.681638,56.06165],[-2.685425,56.06058],[-2.689786,56.06125],[-2.690675,56.060516],[-2.694478,56.059703],[-2.695996,56.059739],[-2.696116,56.058],[-2.699225,56.057405],[-2.702511,56.05759],[-2.703465,56.057392],[-2.711351,56.058341],[-2.713947,56.059049],[-2.717531,56.060767],[-2.71681,56.061797],[-2.717917,56.062433],[-2.718986,56.060865],[-2.717984,56.060311],[-2.719543,56.059306],[-2.722789,56.058998],[-2.725241,56.059602],[-2.728465,56.060843],[-2.729082,56.061651],[-2.732498,56.06095],[-2.740924,56.062406],[-2.746227,56.06209],[-2.746808,56.061345],[-2.74955,56.059793],[-2.756616,56.059341],[-2.758004,56.059834],[-2.769481,56.062675],[-2.772794,56.063776],[-2.774855,56.064028],[-2.779422,56.063532],[-2.783828,56.064756],[-2.784725,56.065418],[-2.786688,56.065663],[-2.7889,56.06468],[-2.791546,56.064094],[-2.799469,56.064694],[-2.801649,56.064042],[-2.803216,56.063024],[-2.806714,56.06175],[-2.808485,56.061805],[-2.812161,56.062502],[-2.813479,56.062972],[-2.815881,56.062359],[-2.816409,56.061191],[-2.817989,56.060581],[-2.817617,56.059846],[-2.818999,56.057873],[-2.822617,56.05545],[-2.822445,56.05407],[-2.823396,56.053131],[-2.825505,56.052031],[-2.827302,56.051592],[-2.828629,56.051974],[-2.831334,56.051053],[-2.834227,56.04805],[-2.833803,56.046872],[-2.834783,56.044234],[-2.836333,56.042519],[-2.838357,56.041233],[-2.842592,56.039466],[-2.847723,56.038327],[-2.849789,56.038397],[-2.85255,56.037883],[-2.855819,56.037894],[-2.857671,56.037579],[-2.859969,56.038524],[-2.861929,56.037174],[-2.865399,56.037123],[-2.867106,56.036367],[-2.865501,56.035068],[-2.865139,56.033868],[-2.866299,56.031726],[-2.867036,56.027149],[-2.866712,56.026084],[-2.864131,56.023166],[-2.860681,56.020475],[-2.858651,56.018352],[-2.856358,56.017313],[-2.855506,56.016513],[-2.852999,56.015809],[-2.850262,56.015699],[-2.849624,56.016044],[-2.842616,56.014822],[-2.849486,56.014554],[-2.851079,56.012936],[-2.856843,56.011601],[-2.858243,56.011001],[-2.861499,56.011524],[-2.863534,56.011465],[-2.867496,56.010728],[-2.869195,56.010978],[-2.870962,56.012608],[-2.874366,56.013991],[-2.875549,56.013819],[-2.878528,56.012634],[-2.881208,56.012291],[-2.884624,56.012402],[-2.890137,56.010186],[-2.889119,56.009136],[-2.889006,56.006925],[-2.890324,56.005835],[-2.889706,56.004673],[-2.88752,56.00309],[-2.886247,56.002964],[-2.885183,56.002139],[-2.884914,55.998126],[-2.886001,55.995214],[-2.888664,55.991973],[-2.892478,55.990015],[-2.89477,55.990234],[-2.89972,55.988353],[-2.897268,55.986017],[-2.897322,55.984085],[-2.898412,55.982648],[-2.900894,55.981103],[-2.904586,55.980897],[-2.907486,55.979683],[-2.911557,55.977075],[-2.915272,55.975238],[-2.921195,55.973542],[-2.937366,55.972259],[-2.947702,55.972803],[-2.949209,55.973306],[-2.955046,55.972214],[-2.957603,55.972333],[-2.959587,55.971578],[-2.962327,55.97152],[-2.962739,55.970909],[-2.964694,55.970893],[-2.965751,55.969496],[-2.967085,55.969397],[-2.969922,55.970308],[-2.971342,55.970273],[-2.974341,55.968384],[-2.977074,55.966975],[-2.97781,55.964319],[-2.981088,55.961677],[-2.984388,55.959885],[-2.987608,55.958935],[-2.988899,55.958829],[-2.990673,55.957765],[-2.995575,55.957001],[-2.997332,55.956116],[-2.999753,55.955867],[-3.004679,55.956026],[-3.006556,55.954967],[-3.007447,55.953868],[-3.010411,55.952807],[-3.020977,55.951376],[-3.034405,55.954148],[-3.038468,55.95428],[-3.042949,55.953688],[-3.046492,55.952762],[-3.048073,55.951712],[-3.04888,55.949738],[-3.049822,55.949232],[-3.056364,55.948185],[-3.066685,55.945039],[-3.068038,55.945526],[-3.070218,55.945311],[-3.073338,55.945679],[-3.077295,55.94673],[-3.077849,55.946575],[-3.07929,55.945086],[-3.082395,55.944735],[-3.081916,55.943822],[-3.082214,55.942555],[-3.081475,55.941464],[-3.082147,55.939643],[-3.083979,55.938623],[-3.080813,55.936836],[-3.081441,55.936299],[-3.079625,55.934082],[-3.089284,55.931829],[-3.088577,55.931385],[-3.086668,55.930097],[-3.084688,55.930141],[-3.084221,55.928528],[-3.082789,55.926782],[-3.080416,55.925521],[-3.079052,55.922877],[-3.079216,55.920403],[-3.078264,55.919549],[-3.075926,55.919016],[-3.071312,55.919756],[-3.063846,55.917228],[-3.059996,55.915224],[-3.05548,55.911548],[-3.05338,55.910497],[-3.041515,55.909972],[-3.034452,55.908405],[-3.030174,55.906096],[-3.024539,55.903909],[-3.018235,55.902121],[-3.017745,55.901634],[-3.011471,55.901285],[-3.009595,55.901659],[-3.007495,55.906521],[-3.006126,55.907615],[-3.00328,55.908929],[-2.98881,55.912826],[-2.984243,55.912409],[-2.974001,55.912855],[-2.968883,55.912494],[-2.966799,55.911787],[-2.965973,55.910725],[-2.966071,55.907496],[-2.966948,55.906261],[-2.966999,55.902655],[-2.957814,55.900609],[-2.955601,55.899535],[-2.961223,55.896372],[-2.962204,55.895394],[-2.959506,55.894336],[-2.955374,55.893659],[-2.949882,55.891746],[-2.94984,55.890212],[-2.947522,55.889642],[-2.947129,55.889024],[-2.949116,55.884789],[-2.948339,55.880881],[-2.944016,55.879013],[-2.940665,55.878309],[-2.941491,55.876429],[-2.93764,55.87529],[-2.937704,55.87349],[-2.936254,55.871975],[-2.936976,55.87077],[-2.935738,55.868777],[-2.93583,55.867298],[-2.937421,55.865558],[-2.937159,55.863491],[-2.93144,55.861386],[-2.928097,55.860706],[-2.926206,55.861063],[-2.92374,55.86263],[-2.919,55.862064],[-2.919154,55.861084],[-2.917784,55.859465],[-2.913543,55.856568],[-2.911043,55.858504],[-2.908481,55.858811],[-2.908226,55.859354],[-2.904549,55.859618],[-2.90334,55.860243],[-2.900858,55.8604],[-2.895749,55.859854],[-2.895283,55.858856],[-2.897107,55.858754],[-2.899229,55.858095],[-2.901041,55.857919],[-2.901886,55.855192],[-2.900165,55.853332],[-2.899059,55.853511],[-2.898758,55.852219],[-2.899044,55.850752],[-2.896452,55.848901],[-2.892667,55.84775],[-2.891863,55.847938],[-2.889372,55.847239],[-2.886684,55.847095],[-2.884671,55.847758],[-2.882066,55.847829],[-2.880552,55.847476],[-2.880209,55.845049],[-2.877748,55.843567],[-2.877525,55.842937],[-2.873607,55.843924],[-2.868925,55.838559],[-2.865178,55.839955],[-2.862187,55.839857],[-2.863541,55.837419],[-2.855369,55.833631],[-2.857945,55.832453],[-2.859697,55.831322],[-2.860162,55.830547],[-2.857553,55.829915],[-2.857742,55.829096],[-2.856458,55.828418],[-2.854875,55.828654],[-2.854319,55.827597],[-2.85267,55.827364],[-2.85057,55.825956],[-2.850684,55.824963],[-2.846709,55.822762],[-2.846653,55.821262],[-2.847207,55.820701],[-2.846244,55.818961],[-2.84431,55.817356],[-2.843092,55.817863],[-2.840287,55.817653],[-2.837391,55.819537],[-2.835557,55.820345],[-2.832802,55.821006],[-2.831198,55.822908],[-2.828041,55.823788],[-2.827068,55.824553],[-2.824603,55.825374],[-2.81852,55.829858],[-2.812483,55.829736],[-2.807012,55.831732],[-2.802232,55.831572],[-2.794554,55.834364],[-2.793966,55.834903],[-2.78617,55.835865],[-2.777198,55.8443],[-2.775003,55.842351],[-2.774315,55.839862],[-2.774492,55.838351],[-2.77398,55.837488],[-2.771606,55.837754],[-2.769968,55.83847],[-2.764637,55.839002],[-2.761172,55.838605],[-2.758284,55.838695],[-2.758738,55.836567],[-2.7565,55.835606],[-2.756845,55.834076],[-2.755265,55.832051],[-2.751458,55.831243],[-2.748474,55.83008],[-2.744136,55.830286],[-2.741268,55.828893],[-2.735076,55.830296],[-2.731749,55.831636],[-2.730117,55.831875],[-2.727858,55.832747],[-2.725753,55.83412],[-2.723623,55.834618],[-2.705233,55.837012],[-2.7019,55.836317],[-2.696792,55.8364],[-2.696063,55.836696],[-2.696062,55.840231],[-2.694811,55.840796],[-2.691129,55.841665],[-2.686971,55.839469],[-2.683886,55.840669],[-2.672514,55.845623],[-2.669264,55.846548],[-2.665448,55.845648],[-2.660488,55.842288],[-2.651505,55.843225],[-2.649257,55.843888],[-2.643217,55.840775],[-2.644681,55.839056],[-2.647705,55.83749],[-2.647972,55.835755],[-2.647615,55.834979],[-2.648423,55.833641],[-2.642421,55.833672],[-2.633165,55.835863],[-2.631334,55.835675],[-2.627073,55.833805],[-2.626062,55.833024],[-2.622851,55.834891],[-2.60991,55.833775],[-2.605507,55.831981],[-2.604566,55.829978],[-2.604871,55.828561],[-2.594178,55.828672],[-2.592161,55.829337],[-2.584293,55.834281],[-2.583251,55.835571],[-2.582665,55.838592],[-2.581896,55.83998],[-2.58392,55.842392],[-2.58316,55.8428],[-2.581339,55.845486],[-2.573028,55.846068],[-2.568554,55.845393],[-2.564351,55.842402],[-2.554882,55.839089],[-2.548322,55.842717],[-2.547046,55.845054],[-2.543119,55.84805],[-2.543217,55.849348],[-2.544353,55.851185],[-2.542686,55.852513],[-2.541361,55.85428],[-2.54033,55.854774],[-2.540471,55.855767],[-2.538654,55.857172],[-2.538547,55.858111],[-2.535893,55.859317],[-2.534511,55.860931],[-2.535303,55.861654],[-2.537553,55.861938],[-2.53829,55.863193],[-2.536669,55.86555],[-2.534055,55.867118],[-2.532716,55.869758],[-2.533431,55.87122],[-2.535555,55.872257],[-2.53881,55.872459],[-2.540453,55.873418],[-2.541845,55.875806],[-2.542781,55.876467],[-2.545182,55.877305],[-2.547663,55.877546],[-2.548425,55.877214],[-2.550061,55.878155],[-2.546274,55.87996],[-2.548658,55.882375],[-2.552611,55.884379],[-2.557121,55.885621],[-2.560495,55.885714],[-2.566551,55.88879],[-2.570021,55.892144],[-2.566451,55.897308],[-2.560171,55.898146],[-2.554529,55.900076],[-2.555406,55.901564],[-2.55842,55.902624],[-2.557698,55.904163],[-2.558361,55.905225],[-2.56095,55.905586],[-2.562683,55.906526],[-2.553789,55.909983],[-2.554405,55.911523],[-2.535922,55.914588],[-2.533737,55.911013],[-2.528971,55.910481],[-2.522018,55.909104],[-2.515183,55.909326],[-2.504723,55.91193],[-2.501507,55.90879],[-2.49813,55.907325],[-2.496521,55.905966],[-2.494687,55.905758],[-2.494404,55.904321],[-2.492945,55.902086],[-2.489788,55.899731],[-2.488887,55.898643],[-2.488692,55.896496],[-2.487306,55.894965],[-2.487955,55.894495],[-2.486532,55.893189],[-2.48669,55.892425],[-2.485302,55.89141],[-2.484591,55.890169],[-2.483304,55.890142],[-2.482306,55.888947],[-2.479652,55.888926],[-2.479416,55.887938],[-2.475342,55.887563],[-2.471314,55.885607],[-2.466863,55.885053],[-2.467628,55.886861],[-2.467658,55.887984],[-2.466848,55.889087],[-2.461135,55.890713],[-2.459777,55.892133],[-2.448568,55.89345],[-2.445924,55.897799],[-2.4352,55.904046],[-2.434004,55.902716],[-2.422795,55.906441],[-2.425062,55.908765],[-2.421193,55.909712],[-2.420377,55.91087],[-2.417925,55.911784],[-2.411273,55.912928],[-2.407445,55.914327],[-2.406501,55.915842],[-2.406064,55.918263],[-2.403651,55.919495],[-2.40026,55.92056],[-2.39934,55.921905],[-2.398159,55.922549],[-2.398751,55.925006],[-2.397198,55.925445],[-2.396327,55.926596],[-2.396319,55.927745],[-2.394666,55.928555],[-2.392274,55.930805],[-2.392836,55.931801],[-2.390849,55.933224],[-2.389388,55.933033],[-2.385143,55.933732],[-2.381978,55.933683],[-2.380775,55.934137],[-2.380057,55.935948],[-2.378861,55.936863],[-2.377008,55.93711],[-2.376202,55.937759],[-2.374456,55.938052],[-2.372718,55.938842],[-2.371947,55.940485],[-2.370691,55.940613],[-2.36656,55.943231],[-2.366959,55.944418],[-2.366626,55.945826]]],[[[-2.78463,56.073859],[-2.786352,56.073],[-2.785564,56.07147],[-2.783218,56.072037],[-2.78463,56.073859]]],[[[-2.717976,56.073057],[-2.717805,56.074627],[-2.718651,56.075063],[-2.722093,56.074425],[-2.722766,56.073118],[-2.720134,56.07233],[-2.717976,56.073057]]],[[[-2.639987,56.076899],[-2.638339,56.077641],[-2.637965,56.07869],[-2.638681,56.079273],[-2.642957,56.078335],[-2.642892,56.076623],[-2.64049,56.075682],[-2.639987,56.076899]]]]},"properties":{"LAD22CD":"S12000010","LAD22NM":"East Lothian","BNG_E":354854,"BNG_N":672351,"LONG":-2.72435,"LAT":55.94207,"GlobalID":"5258481e-b5d2-47e6-822d-1650b804aaf2"},"id":324}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.25074,55.784887],[-4.249463,55.785549],[-4.251654,55.78668],[-4.254392,55.786742],[-4.255435,55.787151],[-4.257427,55.786683],[-4.259037,55.787124],[-4.26142,55.785701],[-4.263269,55.786001],[-4.264861,55.786967],[-4.264626,55.787646],[-4.268245,55.791632],[-4.267427,55.793093],[-4.264845,55.793145],[-4.263136,55.793539],[-4.262544,55.795832],[-4.260302,55.797971],[-4.261456,55.79955],[-4.265781,55.80018],[-4.264422,55.801981],[-4.265594,55.804126],[-4.269243,55.802811],[-4.269279,55.803993],[-4.267084,55.80681],[-4.265579,55.80635],[-4.264839,55.807295],[-4.263175,55.807401],[-4.259926,55.810113],[-4.260687,55.811013],[-4.266657,55.810936],[-4.267788,55.8098],[-4.270441,55.808764],[-4.271959,55.808726],[-4.277019,55.809866],[-4.277508,55.809438],[-4.283037,55.811763],[-4.290278,55.812519],[-4.292625,55.813936],[-4.295064,55.812555],[-4.297337,55.80995],[-4.298508,55.809468],[-4.300809,55.810478],[-4.305534,55.810441],[-4.305659,55.809074],[-4.306696,55.809121],[-4.310014,55.810064],[-4.311994,55.811583],[-4.313208,55.80985],[-4.31523,55.809605],[-4.315043,55.80864],[-4.323868,55.807996],[-4.326238,55.808445],[-4.32726,55.80763],[-4.323224,55.803978],[-4.322795,55.80051],[-4.333449,55.792874],[-4.343695,55.795024],[-4.355839,55.79503],[-4.36028,55.794465],[-4.372059,55.794765],[-4.372768,55.795606],[-4.377293,55.798573],[-4.378076,55.799899],[-4.373773,55.799597],[-4.369805,55.802169],[-4.371057,55.803146],[-4.367782,55.803358],[-4.371743,55.806033],[-4.374266,55.807281],[-4.374643,55.80948],[-4.376053,55.810852],[-4.375613,55.812041],[-4.374347,55.812819],[-4.374052,55.81419],[-4.372581,55.814886],[-4.372175,55.815836],[-4.368321,55.81606],[-4.367453,55.8177],[-4.370039,55.81848],[-4.372937,55.818885],[-4.381414,55.823148],[-4.393473,55.816341],[-4.394738,55.816608],[-4.396604,55.813506],[-4.400557,55.810945],[-4.404141,55.812696],[-4.405358,55.813763],[-4.407792,55.812937],[-4.407688,55.8111],[-4.411925,55.810009],[-4.412404,55.809552],[-4.416587,55.808518],[-4.420473,55.808019],[-4.434679,55.808259],[-4.436599,55.807357],[-4.4378,55.805793],[-4.441257,55.804669],[-4.442627,55.803894],[-4.445096,55.80314],[-4.453216,55.802473],[-4.458371,55.801215],[-4.459139,55.802132],[-4.465806,55.804726],[-4.468728,55.802919],[-4.472714,55.797793],[-4.475644,55.797748],[-4.480522,55.798256],[-4.48551,55.797778],[-4.485841,55.798276],[-4.489543,55.799227],[-4.495145,55.801445],[-4.496605,55.799455],[-4.496251,55.798996],[-4.498727,55.797845],[-4.501803,55.793452],[-4.5011,55.792985],[-4.499307,55.793728],[-4.496731,55.793521],[-4.496759,55.792867],[-4.494961,55.791616],[-4.495706,55.790719],[-4.497902,55.790245],[-4.499541,55.78885],[-4.503594,55.787449],[-4.503898,55.786785],[-4.505833,55.786476],[-4.506707,55.785877],[-4.510635,55.785881],[-4.514292,55.78445],[-4.515987,55.783096],[-4.517269,55.781164],[-4.517206,55.77945],[-4.521985,55.774422],[-4.532259,55.776754],[-4.531119,55.777362],[-4.532852,55.777943],[-4.537147,55.778581],[-4.541902,55.778545],[-4.546781,55.775004],[-4.546978,55.77268],[-4.54785,55.772017],[-4.54873,55.76933],[-4.550927,55.766383],[-4.549584,55.766475],[-4.54789,55.765473],[-4.542601,55.764834],[-4.541844,55.764448],[-4.540771,55.76242],[-4.540125,55.762016],[-4.541758,55.759894],[-4.541316,55.757351],[-4.537344,55.756167],[-4.537725,55.754419],[-4.540261,55.75127],[-4.537234,55.750816],[-4.534667,55.749785],[-4.533365,55.74822],[-4.532985,55.746883],[-4.53139,55.745829],[-4.530931,55.744549],[-4.529908,55.744573],[-4.528023,55.747965],[-4.526579,55.749104],[-4.524083,55.749949],[-4.519264,55.755891],[-4.517243,55.75722],[-4.512054,55.757734],[-4.507079,55.763086],[-4.503937,55.76378],[-4.5018,55.763614],[-4.499699,55.762997],[-4.495597,55.762997],[-4.493439,55.76258],[-4.491681,55.761801],[-4.491165,55.760462],[-4.492244,55.759062],[-4.491766,55.758164],[-4.492684,55.756825],[-4.48974,55.755944],[-4.490355,55.754615],[-4.489679,55.753904],[-4.490236,55.752669],[-4.487205,55.751906],[-4.485996,55.75094],[-4.486182,55.749949],[-4.482982,55.749694],[-4.479708,55.750819],[-4.476708,55.750597],[-4.477639,55.749229],[-4.477145,55.748392],[-4.461683,55.749832],[-4.459329,55.751432],[-4.458387,55.750864],[-4.459594,55.750023],[-4.458785,55.74889],[-4.459652,55.748053],[-4.457352,55.746147],[-4.457895,55.745592],[-4.460316,55.744771],[-4.461407,55.74515],[-4.464082,55.743377],[-4.465759,55.740387],[-4.468118,55.738995],[-4.470187,55.738477],[-4.471998,55.73744],[-4.473202,55.735],[-4.469247,55.734633],[-4.468538,55.732521],[-4.462227,55.733391],[-4.460417,55.735792],[-4.458562,55.736731],[-4.440741,55.733817],[-4.439007,55.735039],[-4.436094,55.733963],[-4.433842,55.731833],[-4.419922,55.727659],[-4.42028,55.727283],[-4.418068,55.72618],[-4.415537,55.723923],[-4.415853,55.722495],[-4.400618,55.71361],[-4.396406,55.71747],[-4.391221,55.719246],[-4.389836,55.720728],[-4.388426,55.720791],[-4.387314,55.721773],[-4.384491,55.722971],[-4.384234,55.721617],[-4.381697,55.719771],[-4.378032,55.718422],[-4.377274,55.716958],[-4.374781,55.716544],[-4.374468,55.715853],[-4.375761,55.714453],[-4.376089,55.713301],[-4.375484,55.711349],[-4.374228,55.710056],[-4.371593,55.710179],[-4.368692,55.708146],[-4.366211,55.70805],[-4.364008,55.708744],[-4.362565,55.707653],[-4.361109,55.707393],[-4.359571,55.706312],[-4.360669,55.705505],[-4.353194,55.697416],[-4.34743,55.698677],[-4.333401,55.700274],[-4.332559,55.694435],[-4.329663,55.692027],[-4.3289,55.691911],[-4.326786,55.690343],[-4.324937,55.688275],[-4.295881,55.684],[-4.281956,55.678644],[-4.273301,55.682905],[-4.271456,55.684585],[-4.26781,55.68578],[-4.262491,55.682791],[-4.261784,55.680885],[-4.26072,55.679539],[-4.259701,55.679099],[-4.260364,55.67777],[-4.259224,55.676897],[-4.25759,55.676563],[-4.256337,55.6758],[-4.253662,55.676846],[-4.249796,55.677659],[-4.246893,55.679049],[-4.245003,55.680344],[-4.244993,55.681558],[-4.226045,55.688792],[-4.221602,55.691532],[-4.22378,55.696813],[-4.225357,55.698232],[-4.226138,55.699934],[-4.224146,55.703817],[-4.224082,55.705634],[-4.223384,55.707044],[-4.219459,55.710646],[-4.219575,55.712857],[-4.218678,55.714611],[-4.219815,55.716095],[-4.221484,55.716046],[-4.222248,55.717676],[-4.223016,55.720993],[-4.221772,55.721803],[-4.221667,55.723512],[-4.223196,55.727739],[-4.225394,55.7292],[-4.229482,55.729519],[-4.231528,55.730429],[-4.233356,55.731997],[-4.23308,55.733456],[-4.235774,55.733055],[-4.237269,55.733767],[-4.240861,55.733877],[-4.242167,55.735476],[-4.243177,55.73591],[-4.247248,55.736533],[-4.246528,55.737751],[-4.249544,55.740354],[-4.250093,55.741841],[-4.251288,55.742257],[-4.251862,55.743893],[-4.255317,55.744108],[-4.255736,55.744768],[-4.254934,55.746461],[-4.255505,55.748791],[-4.257515,55.750269],[-4.259667,55.748985],[-4.261387,55.7491],[-4.262693,55.750391],[-4.263362,55.75268],[-4.264844,55.75324],[-4.264557,55.754083],[-4.266198,55.755252],[-4.267338,55.754909],[-4.266987,55.75389],[-4.268737,55.753292],[-4.270196,55.75327],[-4.273614,55.754552],[-4.274949,55.757434],[-4.274264,55.759003],[-4.278202,55.760384],[-4.279836,55.761777],[-4.279052,55.763156],[-4.280549,55.764293],[-4.280205,55.76502],[-4.281354,55.765876],[-4.282559,55.768304],[-4.282409,55.769373],[-4.279527,55.769924],[-4.276184,55.771779],[-4.273546,55.771792],[-4.270608,55.772931],[-4.268677,55.773123],[-4.265601,55.773844],[-4.264723,55.773057],[-4.262356,55.773232],[-4.261449,55.772508],[-4.259549,55.772878],[-4.256835,55.771475],[-4.255657,55.771645],[-4.253398,55.772677],[-4.253386,55.773435],[-4.251829,55.775109],[-4.253912,55.776719],[-4.252759,55.777265],[-4.249135,55.776859],[-4.248186,55.777746],[-4.250516,55.778668],[-4.25172,55.779761],[-4.250671,55.780577],[-4.251232,55.781888],[-4.25074,55.784887]]]},"properties":{"LAD22CD":"S12000011","LAD22NM":"East Renfrewshire","BNG_E":251930,"BNG_N":653115,"LONG":-4.36058,"LAT":55.74868,"GlobalID":"e21a7685-a2f0-49b6-8fd4-c700337bc3c4"},"id":325}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.640451,56.789419],[-7.643883,56.78992],[-7.646535,56.789755],[-7.65027,56.788568],[-7.651565,56.789336],[-7.656091,56.788457],[-7.656481,56.787796],[-7.660758,56.785334],[-7.658874,56.784933],[-7.655555,56.785119],[-7.658109,56.783631],[-7.654021,56.783488],[-7.651484,56.784332],[-7.649733,56.784304],[-7.648277,56.783294],[-7.645462,56.782891],[-7.64508,56.781554],[-7.641838,56.779298],[-7.639086,56.780458],[-7.638846,56.778959],[-7.637009,56.778153],[-7.633753,56.778575],[-7.630631,56.778694],[-7.630402,56.780392],[-7.627137,56.781089],[-7.624721,56.780172],[-7.623161,56.780868],[-7.622579,56.782128],[-7.621673,56.782371],[-7.620492,56.784675],[-7.619536,56.783755],[-7.614679,56.783867],[-7.613182,56.784357],[-7.616915,56.7876],[-7.620478,56.787956],[-7.62153,56.78754],[-7.624328,56.788264],[-7.628172,56.788031],[-7.632571,56.789362],[-7.63638,56.789559],[-7.640123,56.789034],[-7.640451,56.789419]]],[[[-7.654912,56.793465],[-7.65471,56.794789],[-7.657619,56.794175],[-7.657262,56.793273],[-7.654912,56.793465]]],[[[-7.659395,56.805382],[-7.662387,56.807698],[-7.663689,56.806973],[-7.664071,56.804705],[-7.659395,56.805382]]],[[[-7.656983,56.815057],[-7.656032,56.816187],[-7.656382,56.817294],[-7.659637,56.816694],[-7.659074,56.815718],[-7.656983,56.815057]]],[[[-7.619335,56.827954],[-7.617513,56.828814],[-7.618041,56.829966],[-7.62013,56.830504],[-7.62205,56.830018],[-7.619804,56.827838],[-7.619335,56.827954]]],[[[-7.625166,56.830563],[-7.628245,56.830812],[-7.629841,56.830232],[-7.631324,56.828861],[-7.631997,56.827385],[-7.631544,56.825145],[-7.632853,56.824176],[-7.633883,56.824692],[-7.63617,56.823828],[-7.637735,56.823883],[-7.640711,56.82321],[-7.64188,56.823806],[-7.644802,56.823448],[-7.645101,56.822313],[-7.646784,56.822192],[-7.648366,56.821235],[-7.650111,56.821429],[-7.651886,56.823729],[-7.652939,56.823416],[-7.655678,56.823528],[-7.655146,56.8214],[-7.657712,56.822145],[-7.659112,56.822123],[-7.658907,56.820872],[-7.657753,56.82024],[-7.65813,56.819314],[-7.657033,56.818207],[-7.655164,56.817702],[-7.656165,56.815573],[-7.65509,56.81312],[-7.652381,56.812331],[-7.650614,56.812333],[-7.649842,56.811714],[-7.655448,56.811078],[-7.657391,56.809829],[-7.659437,56.809006],[-7.660075,56.808262],[-7.659766,56.806466],[-7.658691,56.804974],[-7.659693,56.805133],[-7.660749,56.804469],[-7.659699,56.804105],[-7.665177,56.801704],[-7.666285,56.800724],[-7.66636,56.799717],[-7.664814,56.799762],[-7.662294,56.800476],[-7.660677,56.800514],[-7.658365,56.802369],[-7.657725,56.799933],[-7.656476,56.8002],[-7.653276,56.799807],[-7.65432,56.799213],[-7.654752,56.797564],[-7.653,56.797094],[-7.653651,56.796084],[-7.649481,56.795949],[-7.645961,56.796703],[-7.641624,56.796391],[-7.637356,56.79735],[-7.63705,56.79902],[-7.632546,56.799611],[-7.630268,56.800776],[-7.62812,56.800671],[-7.625765,56.801376],[-7.624548,56.802178],[-7.622119,56.802549],[-7.622084,56.804229],[-7.620395,56.804999],[-7.620563,56.805738],[-7.623138,56.808241],[-7.62561,56.808818],[-7.627461,56.809642],[-7.629123,56.810945],[-7.628014,56.811859],[-7.628403,56.813138],[-7.626825,56.814321],[-7.622569,56.814221],[-7.621505,56.815232],[-7.620319,56.81493],[-7.619952,56.817404],[-7.618345,56.817904],[-7.618411,56.818837],[-7.621139,56.822247],[-7.622856,56.822886],[-7.622777,56.825228],[-7.621699,56.825426],[-7.620594,56.828284],[-7.622501,56.829687],[-7.625166,56.830563]]],[[[-7.621446,56.844987],[-7.62196,56.845819],[-7.624236,56.845728],[-7.622794,56.84439],[-7.621446,56.844987]]],[[[-7.554779,56.855257],[-7.55551,56.855422],[-7.558582,56.854317],[-7.557058,56.853571],[-7.555865,56.851896],[-7.553465,56.851004],[-7.552788,56.849873],[-7.549073,56.848248],[-7.548464,56.849238],[-7.549903,56.850744],[-7.550354,56.852065],[-7.554779,56.855257]]],[[[-7.578057,56.861191],[-7.579424,56.860441],[-7.580954,56.858884],[-7.581836,56.859267],[-7.583432,56.858615],[-7.586071,56.859126],[-7.590957,56.858372],[-7.592839,56.859556],[-7.593499,56.858203],[-7.594799,56.858001],[-7.593793,56.856386],[-7.591467,56.855278],[-7.593484,56.854529],[-7.594179,56.853385],[-7.594,56.851187],[-7.595369,56.851536],[-7.597027,56.851118],[-7.596432,56.850088],[-7.594471,56.848844],[-7.593443,56.849622],[-7.592143,56.848237],[-7.589317,56.847845],[-7.587874,56.848771],[-7.584763,56.848679],[-7.583855,56.848206],[-7.582094,56.849003],[-7.575372,56.848922],[-7.574507,56.848137],[-7.572243,56.848594],[-7.570624,56.847488],[-7.568688,56.84739],[-7.568204,56.848322],[-7.569128,56.850286],[-7.566774,56.851629],[-7.564972,56.85117],[-7.564504,56.852491],[-7.565956,56.852705],[-7.5657,56.85363],[-7.564083,56.854522],[-7.557941,56.854797],[-7.558672,56.856464],[-7.561123,56.857371],[-7.563973,56.858082],[-7.567712,56.859448],[-7.570553,56.85957],[-7.571338,56.860596],[-7.572813,56.86003],[-7.575122,56.861615],[-7.578057,56.861191]]],[[[-7.549237,56.876457],[-7.551059,56.8766],[-7.552811,56.875892],[-7.550956,56.874526],[-7.548386,56.875653],[-7.549237,56.876457]]],[[[-7.574933,56.876509],[-7.57911,56.876818],[-7.580321,56.875905],[-7.581185,56.87448],[-7.581245,56.873289],[-7.579631,56.870996],[-7.576364,56.870267],[-7.572314,56.871209],[-7.572535,56.872469],[-7.571911,56.873635],[-7.573061,56.875226],[-7.574933,56.876509]]],[[[-7.566326,56.89234],[-7.569657,56.892956],[-7.569871,56.892236],[-7.567063,56.891605],[-7.566326,56.89234]]],[[[-7.565567,56.893589],[-7.566109,56.894911],[-7.567726,56.895995],[-7.57009,56.896412],[-7.569921,56.894448],[-7.568211,56.894007],[-7.567967,56.892924],[-7.566958,56.892717],[-7.565567,56.893589]]],[[[-7.525125,56.902234],[-7.526691,56.902309],[-7.529559,56.90152],[-7.531287,56.901769],[-7.532943,56.901374],[-7.534318,56.899612],[-7.533264,56.89794],[-7.534217,56.896895],[-7.535776,56.896807],[-7.537701,56.898297],[-7.539268,56.898335],[-7.537312,56.896062],[-7.534533,56.894355],[-7.536154,56.893757],[-7.536269,56.892537],[-7.534151,56.891227],[-7.532906,56.888654],[-7.530654,56.888415],[-7.529202,56.887288],[-7.526993,56.887251],[-7.524644,56.886325],[-7.523787,56.885198],[-7.522408,56.884822],[-7.522105,56.88372],[-7.519022,56.881183],[-7.51638,56.880081],[-7.514841,56.880846],[-7.518332,56.883612],[-7.516191,56.884499],[-7.513337,56.883627],[-7.510714,56.88368],[-7.510589,56.882943],[-7.509199,56.881771],[-7.505174,56.880451],[-7.50448,56.881098],[-7.504417,56.882617],[-7.505843,56.88475],[-7.500913,56.881044],[-7.499413,56.880899],[-7.49892,56.882018],[-7.50153,56.884558],[-7.50033,56.886361],[-7.501051,56.887666],[-7.500407,56.888599],[-7.49776,56.889432],[-7.496597,56.888236],[-7.492908,56.887193],[-7.49305,56.888937],[-7.494973,56.89027],[-7.496603,56.890117],[-7.497879,56.891024],[-7.498649,56.892736],[-7.498464,56.894145],[-7.499321,56.896176],[-7.498056,56.897024],[-7.499005,56.898332],[-7.500863,56.89905],[-7.502122,56.898388],[-7.504016,56.898628],[-7.505286,56.898261],[-7.507165,56.90046],[-7.510855,56.902007],[-7.513794,56.902133],[-7.517743,56.901643],[-7.5188,56.902235],[-7.522616,56.902125],[-7.524272,56.901745],[-7.525125,56.902234]]],[[[-7.564368,56.900588],[-7.565922,56.900985],[-7.567096,56.900366],[-7.568728,56.900392],[-7.571441,56.899892],[-7.571207,56.898215],[-7.566814,56.895941],[-7.564554,56.896436],[-7.564719,56.89783],[-7.563261,56.898241],[-7.562863,56.899061],[-7.564368,56.900588]]],[[[-7.445188,56.91064],[-7.446999,56.912055],[-7.447847,56.91155],[-7.446144,56.910535],[-7.445188,56.91064]]],[[[-7.440586,56.922001],[-7.443998,56.921635],[-7.444443,56.921252],[-7.450536,56.920549],[-7.45142,56.919282],[-7.450606,56.916469],[-7.448957,56.915542],[-7.449191,56.913035],[-7.446924,56.912103],[-7.444801,56.910913],[-7.443913,56.911312],[-7.44398,56.91256],[-7.44116,56.912625],[-7.438719,56.914054],[-7.437764,56.91568],[-7.436725,56.916234],[-7.435918,56.917603],[-7.435958,56.919459],[-7.437508,56.921352],[-7.440586,56.922001]]],[[[-7.485959,56.932517],[-7.485825,56.930823],[-7.484853,56.929704],[-7.482514,56.930815],[-7.481843,56.931618],[-7.485959,56.932517]]],[[[-7.523078,56.943604],[-7.523704,56.944661],[-7.525998,56.943808],[-7.528612,56.943235],[-7.528587,56.942711],[-7.525447,56.942311],[-7.523078,56.943604]]],[[[-7.48255,56.944356],[-7.483806,56.944881],[-7.482929,56.945787],[-7.485527,56.946457],[-7.486182,56.945927],[-7.485564,56.943809],[-7.484675,56.944],[-7.482126,56.94322],[-7.48255,56.944356]]],[[[-7.422915,56.967208],[-7.423039,56.966406],[-7.420811,56.965374],[-7.419661,56.966763],[-7.422915,56.967208]]],[[[-7.373528,56.981857],[-7.375658,56.981482],[-7.374388,56.980389],[-7.373121,56.98052],[-7.373528,56.981857]]],[[[-7.350509,56.999828],[-7.353229,56.998622],[-7.352816,56.997753],[-7.355404,56.997467],[-7.356768,56.996747],[-7.356618,56.995421],[-7.357716,56.994056],[-7.35282,56.993546],[-7.353673,56.994432],[-7.352859,56.995074],[-7.351149,56.995107],[-7.348988,56.994417],[-7.344969,56.994557],[-7.342965,56.995125],[-7.341946,56.996768],[-7.344702,56.997633],[-7.345263,56.998779],[-7.350509,56.999828]]],[[[-7.377116,57.000223],[-7.378566,56.998279],[-7.377493,56.996791],[-7.375373,56.995186],[-7.376394,56.994191],[-7.37383,56.99415],[-7.36927,56.991746],[-7.368147,56.992249],[-7.365678,56.991365],[-7.364374,56.991754],[-7.362666,56.991566],[-7.361137,56.992318],[-7.360348,56.993272],[-7.361259,56.994561],[-7.360995,56.996097],[-7.363257,56.996918],[-7.361708,56.997331],[-7.363672,56.998484],[-7.365824,57.000542],[-7.368339,57.000767],[-7.371514,57.000316],[-7.374868,57.00059],[-7.374461,56.998173],[-7.375885,56.998845],[-7.376006,57.000419],[-7.377116,57.000223]]],[[[-7.368512,57.001324],[-7.3705,57.002317],[-7.371571,57.001564],[-7.370086,57.001101],[-7.368512,57.001324]]],[[[-7.391105,57.000411],[-7.391352,57.001316],[-7.394213,57.001506],[-7.393901,56.999948],[-7.391967,56.999647],[-7.391105,57.000411]]],[[[-7.377214,57.003238],[-7.37903,57.003196],[-7.379522,57.002436],[-7.377467,57.001972],[-7.377214,57.003238]]],[[[-7.383529,57.004027],[-7.385217,57.0056],[-7.386175,57.004251],[-7.384764,57.003731],[-7.383529,57.004027]]],[[[-7.366062,57.004811],[-7.369206,57.006939],[-7.373094,57.007082],[-7.373543,57.005911],[-7.372536,57.005163],[-7.370263,57.004838],[-7.368657,57.003881],[-7.366665,57.00402],[-7.366062,57.004811]]],[[[-7.392302,57.006695],[-7.391924,57.004255],[-7.389999,57.002866],[-7.388042,57.002393],[-7.389058,57.005593],[-7.392302,57.006695]]],[[[-7.390869,57.009038],[-7.389816,57.008089],[-7.38621,57.007674],[-7.383072,57.006336],[-7.379422,57.005788],[-7.382667,57.007525],[-7.386437,57.008271],[-7.387943,57.009102],[-7.390869,57.009038]]],[[[-7.3447,57.018655],[-7.346079,57.018609],[-7.349727,57.019191],[-7.351386,57.018684],[-7.352179,57.017894],[-7.357224,57.017407],[-7.358656,57.016297],[-7.360296,57.016061],[-7.360691,57.014509],[-7.36266,57.01478],[-7.363452,57.013952],[-7.362513,57.01228],[-7.359723,57.011293],[-7.355857,57.010789],[-7.355938,57.010268],[-7.353458,57.009483],[-7.351724,57.009638],[-7.351198,57.01057],[-7.348879,57.010444],[-7.349136,57.011599],[-7.345379,57.010248],[-7.34275,57.009802],[-7.340481,57.009742],[-7.339725,57.008324],[-7.336623,57.008373],[-7.336246,57.007471],[-7.333836,57.006193],[-7.331824,57.005847],[-7.329923,57.006166],[-7.329147,57.006906],[-7.331696,57.00852],[-7.331761,57.011159],[-7.329846,57.011434],[-7.328587,57.012145],[-7.330752,57.013956],[-7.332868,57.013987],[-7.333976,57.013489],[-7.33355,57.012014],[-7.33235,57.011237],[-7.332926,57.009962],[-7.335412,57.010161],[-7.337983,57.011352],[-7.337215,57.012555],[-7.337786,57.014456],[-7.338737,57.015392],[-7.340854,57.016232],[-7.343222,57.016181],[-7.34406,57.016788],[-7.342872,57.018103],[-7.3447,57.018655]]],[[[-7.324619,57.026177],[-7.326066,57.02662],[-7.329228,57.025863],[-7.331244,57.026061],[-7.331469,57.025039],[-7.336551,57.024115],[-7.337647,57.02342],[-7.337747,57.022512],[-7.339987,57.022537],[-7.344037,57.021046],[-7.342878,57.020096],[-7.338196,57.018402],[-7.334417,57.018051],[-7.332772,57.018432],[-7.330144,57.017419],[-7.330517,57.015878],[-7.328877,57.014971],[-7.326264,57.014174],[-7.323753,57.014727],[-7.319686,57.015008],[-7.321856,57.015708],[-7.322345,57.017216],[-7.321737,57.018615],[-7.323908,57.019778],[-7.324962,57.021834],[-7.327863,57.023883],[-7.323948,57.025391],[-7.324619,57.026177]]],[[[-7.412963,57.031053],[-7.414407,57.031391],[-7.419228,57.030948],[-7.421143,57.030163],[-7.423472,57.02972],[-7.425031,57.028713],[-7.423963,57.027889],[-7.423966,57.027057],[-7.421057,57.026238],[-7.418626,57.026542],[-7.41792,57.02736],[-7.415772,57.027624],[-7.413108,57.027461],[-7.410768,57.028332],[-7.410627,57.029575],[-7.412963,57.031053]]],[[[-7.299499,57.046373],[-7.303324,57.046219],[-7.303253,57.045025],[-7.302288,57.043591],[-7.30257,57.042328],[-7.297972,57.042437],[-7.298302,57.043372],[-7.297578,57.044249],[-7.299876,57.04606],[-7.299499,57.046373]]],[[[-7.451429,57.058578],[-7.452974,57.058935],[-7.456006,57.057943],[-7.456022,57.056387],[-7.454569,57.056333],[-7.455796,57.054776],[-7.455398,57.052554],[-7.455891,57.051917],[-7.453526,57.051361],[-7.453722,57.050122],[-7.452932,57.049387],[-7.450333,57.048771],[-7.450331,57.04668],[-7.451429,57.046674],[-7.454563,57.045813],[-7.452713,57.044627],[-7.452637,57.043678],[-7.450351,57.043525],[-7.448751,57.042885],[-7.448499,57.041808],[-7.447478,57.041255],[-7.449174,57.038958],[-7.448754,57.037931],[-7.449987,57.036302],[-7.451844,57.032076],[-7.455314,57.02604],[-7.456969,57.024137],[-7.458003,57.023619],[-7.459725,57.024195],[-7.462012,57.02412],[-7.462538,57.022758],[-7.461871,57.021329],[-7.465497,57.021129],[-7.465783,57.020281],[-7.467971,57.019938],[-7.469278,57.019229],[-7.471643,57.019155],[-7.472157,57.018502],[-7.475774,57.01885],[-7.47615,57.018203],[-7.478018,57.017758],[-7.479139,57.015804],[-7.482251,57.015231],[-7.4846,57.014442],[-7.489694,57.013907],[-7.492396,57.014527],[-7.494423,57.013935],[-7.495789,57.014921],[-7.497966,57.013435],[-7.501709,57.013096],[-7.50284,57.013765],[-7.505334,57.013502],[-7.506093,57.013853],[-7.51068,57.01413],[-7.513536,57.014951],[-7.516467,57.015158],[-7.519004,57.014644],[-7.518493,57.013732],[-7.522025,57.013321],[-7.525737,57.014006],[-7.525747,57.01303],[-7.528675,57.013008],[-7.527817,57.012164],[-7.526458,57.011955],[-7.523858,57.010899],[-7.52304,57.011112],[-7.519844,57.010251],[-7.516271,57.010538],[-7.514636,57.010301],[-7.510699,57.007023],[-7.508521,57.006797],[-7.506904,57.005775],[-7.506525,57.00491],[-7.506868,57.003458],[-7.507758,57.002538],[-7.509911,57.00152],[-7.509448,57.000353],[-7.512536,56.99907],[-7.514487,56.999071],[-7.513437,56.997556],[-7.513393,56.99551],[-7.511459,56.995548],[-7.51123,56.994755],[-7.508661,56.994399],[-7.50773,56.993305],[-7.50924,56.991951],[-7.509341,56.99105],[-7.510939,56.990039],[-7.511222,56.989148],[-7.514182,56.987707],[-7.515692,56.987672],[-7.517015,56.986959],[-7.519284,56.987715],[-7.520874,56.987429],[-7.521852,56.987966],[-7.525738,56.987542],[-7.526122,56.98541],[-7.524988,56.985267],[-7.523908,56.983047],[-7.520966,56.983384],[-7.518591,56.982931],[-7.516131,56.982856],[-7.515139,56.981971],[-7.515233,56.981012],[-7.513038,56.980847],[-7.513648,56.979235],[-7.5174,56.979132],[-7.519359,56.97706],[-7.520068,56.97517],[-7.518744,56.974694],[-7.519372,56.973923],[-7.524548,56.971989],[-7.527314,56.972474],[-7.529635,56.972231],[-7.53079,56.973809],[-7.533998,56.974643],[-7.535727,56.973081],[-7.539088,56.972685],[-7.540138,56.973285],[-7.542732,56.972861],[-7.544323,56.971729],[-7.544571,56.970996],[-7.546691,56.971172],[-7.549971,56.970792],[-7.549125,56.969847],[-7.552799,56.969204],[-7.553528,56.968467],[-7.556058,56.968165],[-7.555404,56.967504],[-7.557085,56.966001],[-7.556922,56.963764],[-7.555194,56.962621],[-7.554773,56.96143],[-7.556653,56.960283],[-7.560908,56.958399],[-7.561545,56.957003],[-7.56274,56.955899],[-7.56214,56.954805],[-7.558167,56.953511],[-7.554782,56.951358],[-7.551855,56.951727],[-7.544254,56.950512],[-7.540935,56.950678],[-7.540936,56.949224],[-7.539057,56.948491],[-7.53492,56.948491],[-7.531797,56.947327],[-7.533473,56.946055],[-7.536522,56.94621],[-7.539772,56.944879],[-7.542504,56.94487],[-7.544785,56.94448],[-7.546952,56.944922],[-7.551676,56.944933],[-7.553103,56.946511],[-7.555722,56.947054],[-7.558095,56.948473],[-7.559709,56.948229],[-7.563504,56.948557],[-7.565924,56.948471],[-7.568913,56.949206],[-7.570634,56.947829],[-7.570022,56.946326],[-7.568671,56.945388],[-7.565722,56.944606],[-7.564739,56.943597],[-7.563347,56.943425],[-7.562304,56.942616],[-7.56234,56.941481],[-7.564514,56.941096],[-7.564253,56.940401],[-7.566253,56.940172],[-7.568717,56.939036],[-7.570221,56.938841],[-7.570481,56.938003],[-7.569836,56.936718],[-7.571243,56.936659],[-7.571742,56.934916],[-7.573056,56.933644],[-7.568506,56.932173],[-7.567183,56.930311],[-7.564953,56.929654],[-7.563732,56.93019],[-7.559395,56.930028],[-7.557295,56.929744],[-7.555966,56.928836],[-7.554434,56.929768],[-7.552204,56.930155],[-7.548601,56.929291],[-7.545279,56.928808],[-7.544218,56.927805],[-7.541856,56.926793],[-7.541721,56.925294],[-7.54248,56.923294],[-7.543751,56.921739],[-7.545307,56.920712],[-7.548953,56.921394],[-7.550173,56.920447],[-7.554387,56.92192],[-7.557361,56.922061],[-7.559568,56.922524],[-7.561741,56.922067],[-7.56124,56.920824],[-7.56022,56.920055],[-7.556207,56.919383],[-7.556546,56.918925],[-7.555935,56.916152],[-7.552895,56.914955],[-7.553959,56.914006],[-7.55352,56.913279],[-7.554904,56.911866],[-7.554129,56.911174],[-7.552065,56.910733],[-7.551585,56.910147],[-7.549221,56.909205],[-7.546243,56.909124],[-7.543833,56.910865],[-7.539909,56.911237],[-7.538197,56.91092],[-7.536696,56.909746],[-7.533465,56.909031],[-7.53313,56.90985],[-7.534204,56.911586],[-7.532982,56.911972],[-7.532111,56.913968],[-7.528552,56.914282],[-7.527732,56.913356],[-7.525735,56.912904],[-7.523435,56.91324],[-7.519523,56.911519],[-7.51783,56.912194],[-7.514876,56.912863],[-7.514143,56.914755],[-7.512884,56.914299],[-7.511949,56.915588],[-7.509217,56.916357],[-7.508253,56.915417],[-7.503887,56.916889],[-7.502244,56.91926],[-7.502599,56.919883],[-7.501652,56.921061],[-7.503352,56.921672],[-7.507139,56.921999],[-7.510117,56.92133],[-7.51235,56.921181],[-7.514472,56.921866],[-7.520978,56.920708],[-7.529258,56.921222],[-7.532196,56.920467],[-7.534309,56.921663],[-7.535339,56.924721],[-7.534362,56.92699],[-7.532464,56.926848],[-7.528015,56.928167],[-7.524677,56.929799],[-7.523125,56.93022],[-7.521372,56.931592],[-7.51992,56.93152],[-7.519844,56.93267],[-7.517698,56.933792],[-7.515163,56.933947],[-7.511091,56.931482],[-7.507238,56.930491],[-7.504374,56.930151],[-7.498499,56.930386],[-7.496109,56.932962],[-7.495154,56.930858],[-7.49399,56.929706],[-7.492145,56.930206],[-7.490264,56.929002],[-7.487633,56.930081],[-7.487216,56.931998],[-7.488911,56.933004],[-7.490109,56.934544],[-7.492692,56.934475],[-7.494076,56.933503],[-7.495989,56.9339],[-7.495317,56.934629],[-7.496553,56.935696],[-7.499138,56.934198],[-7.500056,56.93507],[-7.504703,56.935865],[-7.507635,56.935959],[-7.508413,56.936354],[-7.51232,56.935396],[-7.513908,56.936558],[-7.519094,56.93672],[-7.524732,56.937515],[-7.529725,56.937268],[-7.537569,56.938223],[-7.542411,56.939426],[-7.538914,56.94035],[-7.536497,56.939818],[-7.533828,56.940738],[-7.532432,56.940863],[-7.530095,56.942189],[-7.529966,56.943159],[-7.532353,56.944386],[-7.533257,56.945545],[-7.531265,56.947428],[-7.526804,56.947133],[-7.523166,56.948197],[-7.520522,56.94825],[-7.520131,56.947551],[-7.517787,56.947241],[-7.515466,56.947565],[-7.513225,56.947015],[-7.511235,56.945978],[-7.508372,56.945884],[-7.503912,56.946459],[-7.50247,56.947175],[-7.502649,56.948328],[-7.501746,56.949794],[-7.503211,56.951467],[-7.506387,56.952326],[-7.505848,56.953823],[-7.506652,56.955226],[-7.504905,56.957128],[-7.505171,56.958037],[-7.50272,56.957625],[-7.501312,56.95608],[-7.501055,56.95476],[-7.50177,56.95396],[-7.500095,56.953516],[-7.500624,56.952404],[-7.502136,56.951658],[-7.498824,56.950702],[-7.494939,56.952379],[-7.49622,56.953308],[-7.494487,56.954078],[-7.494297,56.954926],[-7.49239,56.955547],[-7.490835,56.955604],[-7.488088,56.954389],[-7.486013,56.954363],[-7.48352,56.953903],[-7.481783,56.954111],[-7.481903,56.952788],[-7.484693,56.951293],[-7.48505,56.949212],[-7.483897,56.946871],[-7.482651,56.946196],[-7.478804,56.946358],[-7.476735,56.94586],[-7.47559,56.946306],[-7.473813,56.945196],[-7.471976,56.944854],[-7.470701,56.946543],[-7.469118,56.945348],[-7.466583,56.94645],[-7.463701,56.945469],[-7.461085,56.946717],[-7.458674,56.946445],[-7.457558,56.945067],[-7.455298,56.944595],[-7.454062,56.945094],[-7.452808,56.946369],[-7.450919,56.946172],[-7.448924,56.946493],[-7.44895,56.947702],[-7.451087,56.94805],[-7.452575,56.948935],[-7.451915,56.949603],[-7.449676,56.949664],[-7.448303,56.95075],[-7.446839,56.950481],[-7.444609,56.951393],[-7.440904,56.949026],[-7.438917,56.948222],[-7.436022,56.948636],[-7.434181,56.950863],[-7.430545,56.952931],[-7.430493,56.953921],[-7.433403,56.956528],[-7.439225,56.957553],[-7.440934,56.958257],[-7.441199,56.958992],[-7.443568,56.959283],[-7.443279,56.96019],[-7.44181,56.960899],[-7.440853,56.962841],[-7.43949,56.963077],[-7.437786,56.964154],[-7.435975,56.962987],[-7.431836,56.962129],[-7.431632,56.960806],[-7.430109,56.960769],[-7.42852,56.961625],[-7.426323,56.961806],[-7.425965,56.963505],[-7.428084,56.964151],[-7.429545,56.965546],[-7.428673,56.966263],[-7.428652,56.96727],[-7.426167,56.967388],[-7.425094,56.967953],[-7.425187,56.969193],[-7.423534,56.969236],[-7.423316,56.970424],[-7.424488,56.971398],[-7.423259,56.972066],[-7.422966,56.972937],[-7.420757,56.973471],[-7.419642,56.974277],[-7.418204,56.974035],[-7.417321,56.974751],[-7.420847,56.975063],[-7.420406,56.976147],[-7.41882,56.976055],[-7.414957,56.97671],[-7.413296,56.976085],[-7.412164,56.976507],[-7.410449,56.976133],[-7.409278,56.976741],[-7.407758,56.976175],[-7.405699,56.977701],[-7.406089,56.978707],[-7.408064,56.981014],[-7.407355,56.982701],[-7.406361,56.982938],[-7.407698,56.984296],[-7.404238,56.984681],[-7.406881,56.98821],[-7.410166,56.988855],[-7.411019,56.990019],[-7.414019,56.990571],[-7.416127,56.990682],[-7.416926,56.990254],[-7.421491,56.990746],[-7.421967,56.991843],[-7.418455,56.991947],[-7.412471,56.991075],[-7.410041,56.991855],[-7.410562,56.993181],[-7.408578,56.992875],[-7.407488,56.98935],[-7.402188,56.983341],[-7.401216,56.983945],[-7.398921,56.982991],[-7.397916,56.981924],[-7.396494,56.981266],[-7.394054,56.982177],[-7.391653,56.980782],[-7.388874,56.980722],[-7.388301,56.981206],[-7.385525,56.981839],[-7.38385,56.981826],[-7.38222,56.980924],[-7.382343,56.980068],[-7.380215,56.980336],[-7.378125,56.981956],[-7.380177,56.983631],[-7.379484,56.983886],[-7.380174,56.98535],[-7.376563,56.985344],[-7.375129,56.986144],[-7.37941,56.987304],[-7.379005,56.990089],[-7.383131,56.991353],[-7.385919,56.991555],[-7.38579,56.992604],[-7.388046,56.992483],[-7.389813,56.993651],[-7.391142,56.993729],[-7.393947,56.994641],[-7.396199,56.992846],[-7.397744,56.994945],[-7.399664,56.994662],[-7.400789,56.995848],[-7.397311,56.997104],[-7.398011,56.998296],[-7.400606,56.998375],[-7.403063,57.00033],[-7.40493,57.000452],[-7.406109,56.999942],[-7.409416,56.99932],[-7.409333,56.998136],[-7.407851,56.997349],[-7.409127,56.996696],[-7.411603,56.996959],[-7.413662,56.996681],[-7.414659,56.997523],[-7.418862,56.998639],[-7.418019,56.999339],[-7.418682,57.000312],[-7.420955,57.001833],[-7.422997,57.001542],[-7.425171,57.001831],[-7.426832,57.001374],[-7.430298,57.001872],[-7.42902,57.003016],[-7.425528,57.003622],[-7.423238,57.003181],[-7.422514,57.0024],[-7.420513,57.002513],[-7.420281,57.003524],[-7.417052,57.002768],[-7.41563,57.002703],[-7.41375,57.003391],[-7.412323,57.002906],[-7.409223,57.00248],[-7.406782,57.002772],[-7.407063,57.003718],[-7.4097,57.004599],[-7.411513,57.005657],[-7.413452,57.005572],[-7.416618,57.006602],[-7.421014,57.007279],[-7.423314,57.007195],[-7.426503,57.008275],[-7.42698,57.009725],[-7.429875,57.010876],[-7.427147,57.01155],[-7.426578,57.009987],[-7.42359,57.008544],[-7.418658,57.008174],[-7.417352,57.007638],[-7.41408,57.007112],[-7.41195,57.007254],[-7.411082,57.006509],[-7.405335,57.004183],[-7.402476,57.002534],[-7.401516,57.003421],[-7.398993,57.002277],[-7.395031,57.001686],[-7.39319,57.001729],[-7.398312,57.004469],[-7.400358,57.004254],[-7.402295,57.005259],[-7.403865,57.007666],[-7.401065,57.005934],[-7.40073,57.006578],[-7.403957,57.008751],[-7.405908,57.008393],[-7.40762,57.009475],[-7.409325,57.008469],[-7.411538,57.008719],[-7.410986,57.00958],[-7.413372,57.01066],[-7.416685,57.011369],[-7.415836,57.011958],[-7.417384,57.013356],[-7.419673,57.014463],[-7.420818,57.013074],[-7.418102,57.011824],[-7.418497,57.010898],[-7.421257,57.011984],[-7.422721,57.013256],[-7.424832,57.01383],[-7.426129,57.014621],[-7.427057,57.013797],[-7.43145,57.016511],[-7.431605,57.014984],[-7.43422,57.016193],[-7.435436,57.017218],[-7.439957,57.018114],[-7.442263,57.019006],[-7.445953,57.019764],[-7.44927,57.023636],[-7.448818,57.025231],[-7.447448,57.025829],[-7.444556,57.026125],[-7.442586,57.026666],[-7.432511,57.030807],[-7.427614,57.031167],[-7.424408,57.031051],[-7.424653,57.03185],[-7.426188,57.033405],[-7.426802,57.036151],[-7.424387,57.03741],[-7.424591,57.038356],[-7.421405,57.042471],[-7.421258,57.043765],[-7.420405,57.04483],[-7.421873,57.047091],[-7.423083,57.047889],[-7.435831,57.047354],[-7.439943,57.047865],[-7.4429,57.048808],[-7.444347,57.049751],[-7.444768,57.050841],[-7.444057,57.051968],[-7.442564,57.053007],[-7.442459,57.053962],[-7.443346,57.055542],[-7.441593,57.057468],[-7.444512,57.058484],[-7.447774,57.057879],[-7.449113,57.058806],[-7.451429,57.058578]]],[[[-7.388737,57.060625],[-7.389588,57.062271],[-7.392075,57.061142],[-7.394991,57.059279],[-7.396752,57.059406],[-7.398254,57.058261],[-7.395655,57.056573],[-7.392613,57.055926],[-7.392731,57.05413],[-7.394856,57.052045],[-7.397534,57.050476],[-7.401349,57.049177],[-7.402844,57.047875],[-7.402045,57.046362],[-7.401195,57.045966],[-7.400784,57.044729],[-7.398354,57.043236],[-7.394352,57.042275],[-7.39298,57.042888],[-7.388117,57.042374],[-7.38619,57.042745],[-7.384756,57.043504],[-7.384856,57.044305],[-7.382903,57.044668],[-7.382784,57.045501],[-7.381018,57.047265],[-7.378127,57.047655],[-7.379734,57.049062],[-7.379585,57.050139],[-7.376487,57.05007],[-7.371349,57.052046],[-7.371679,57.053224],[-7.375057,57.054442],[-7.374805,57.055267],[-7.376492,57.056315],[-7.377188,57.057784],[-7.378628,57.059256],[-7.38136,57.059129],[-7.383876,57.059736],[-7.387407,57.059885],[-7.388737,57.060625]]],[[[-7.443024,57.06862],[-7.447562,57.068526],[-7.448965,57.067961],[-7.448721,57.06596],[-7.450096,57.064978],[-7.45051,57.063524],[-7.44847,57.063352],[-7.441304,57.063655],[-7.439213,57.064718],[-7.435045,57.065588],[-7.438762,57.067555],[-7.443024,57.06862]]],[[[-7.228018,57.084254],[-7.229608,57.084925],[-7.230531,57.084032],[-7.229102,57.083623],[-7.228018,57.084254]]],[[[-7.324865,57.082644],[-7.324094,57.081262],[-7.321555,57.080823],[-7.32187,57.082267],[-7.324865,57.082644]]],[[[-7.36582,57.081396],[-7.368723,57.080673],[-7.365349,57.078433],[-7.363373,57.078255],[-7.362026,57.078764],[-7.360509,57.078276],[-7.358817,57.078799],[-7.358221,57.079931],[-7.359459,57.081354],[-7.360957,57.080853],[-7.36582,57.081396]]],[[[-7.354845,57.083504],[-7.354901,57.082233],[-7.353614,57.081676],[-7.352316,57.082011],[-7.354845,57.083504]]],[[[-7.269862,57.095576],[-7.272491,57.095226],[-7.271794,57.09463],[-7.269205,57.094033],[-7.267091,57.094572],[-7.269862,57.095576]]],[[[-7.316764,57.09396],[-7.312164,57.089804],[-7.311605,57.089115],[-7.314152,57.087583],[-7.312544,57.087067],[-7.311173,57.085941],[-7.310728,57.082791],[-7.312407,57.080218],[-7.31261,57.079067],[-7.308266,57.077898],[-7.30487,57.073459],[-7.304566,57.072463],[-7.30863,57.070367],[-7.308119,57.069688],[-7.309896,57.068724],[-7.309394,57.066704],[-7.310628,57.06581],[-7.309157,57.064136],[-7.309264,57.061359],[-7.307765,57.059909],[-7.308906,57.059552],[-7.304946,57.056927],[-7.301336,57.055532],[-7.298211,57.055098],[-7.296233,57.054313],[-7.295385,57.053287],[-7.292285,57.05251],[-7.291991,57.053112],[-7.289593,57.053375],[-7.288083,57.053961],[-7.285989,57.055899],[-7.285713,57.057031],[-7.28419,57.057235],[-7.283616,57.058888],[-7.283861,57.06061],[-7.279883,57.061147],[-7.278875,57.062418],[-7.283224,57.062279],[-7.283974,57.062853],[-7.283339,57.063723],[-7.284044,57.064386],[-7.286899,57.064189],[-7.289027,57.064981],[-7.29059,57.064361],[-7.294402,57.064969],[-7.296855,57.06572],[-7.299379,57.067142],[-7.298318,57.068042],[-7.296604,57.068241],[-7.294056,57.067828],[-7.292203,57.066866],[-7.290059,57.067256],[-7.287969,57.066654],[-7.283125,57.066396],[-7.280787,57.068074],[-7.277792,57.067809],[-7.279112,57.070408],[-7.278566,57.070867],[-7.280381,57.072955],[-7.278537,57.073887],[-7.278618,57.074634],[-7.275926,57.075846],[-7.273696,57.076103],[-7.272051,57.077041],[-7.273948,57.078234],[-7.27716,57.079082],[-7.27276,57.079526],[-7.27209,57.081322],[-7.274135,57.0821],[-7.273217,57.082562],[-7.273364,57.084702],[-7.270211,57.085186],[-7.269914,57.085891],[-7.270928,57.086856],[-7.269615,57.088374],[-7.270016,57.090849],[-7.272013,57.089721],[-7.274378,57.090661],[-7.276784,57.090563],[-7.279122,57.091761],[-7.279688,57.091206],[-7.281596,57.091147],[-7.282738,57.089609],[-7.28535,57.090282],[-7.289457,57.08887],[-7.289923,57.090919],[-7.291498,57.0912],[-7.294011,57.090949],[-7.296389,57.089668],[-7.298088,57.089266],[-7.298866,57.088509],[-7.298692,57.087341],[-7.301536,57.086953],[-7.305093,57.08818],[-7.307515,57.088202],[-7.308134,57.088783],[-7.310773,57.089144],[-7.316764,57.09396]]],[[[-7.3985,57.11026],[-7.401281,57.110003],[-7.401681,57.109148],[-7.400456,57.108663],[-7.39931,57.109149],[-7.3985,57.11026]]],[[[-7.409577,57.130623],[-7.413505,57.130657],[-7.413262,57.129605],[-7.414251,57.128699],[-7.413201,57.128227],[-7.41037,57.12789],[-7.409121,57.128436],[-7.407637,57.130103],[-7.409577,57.130623]]],[[[-7.259859,57.143567],[-7.2603,57.143063],[-7.262698,57.143106],[-7.264491,57.142558],[-7.264967,57.141714],[-7.261153,57.141434],[-7.259009,57.141668],[-7.256326,57.140953],[-7.254999,57.141985],[-7.258209,57.143317],[-7.259859,57.143567]]],[[[-7.315286,57.143616],[-7.316139,57.144448],[-7.318209,57.1438],[-7.317056,57.143179],[-7.315286,57.143616]]],[[[-7.337658,57.14446],[-7.336889,57.145092],[-7.3385,57.145644],[-7.340161,57.145339],[-7.33973,57.144134],[-7.342431,57.143582],[-7.34042,57.141121],[-7.338461,57.140732],[-7.337388,57.139955],[-7.335549,57.141716],[-7.332486,57.141311],[-7.336387,57.143165],[-7.336269,57.144124],[-7.337658,57.14446]]],[[[-7.332609,57.146066],[-7.333064,57.145376],[-7.33311,57.143116],[-7.328788,57.14402],[-7.332609,57.146066]]],[[[-7.312272,57.147041],[-7.314044,57.146857],[-7.315018,57.145871],[-7.311543,57.143304],[-7.308575,57.142601],[-7.3056,57.142383],[-7.30172,57.143455],[-7.303651,57.144475],[-7.303684,57.145764],[-7.306937,57.14678],[-7.308382,57.1467],[-7.310814,57.147171],[-7.312272,57.147041]]],[[[-7.316537,57.147077],[-7.317966,57.147885],[-7.319398,57.147783],[-7.321114,57.146543],[-7.319174,57.146015],[-7.317282,57.146446],[-7.316537,57.147077]]],[[[-7.319675,57.1483],[-7.321791,57.148854],[-7.324498,57.148222],[-7.326151,57.146425],[-7.324427,57.144962],[-7.322455,57.14399],[-7.319565,57.143308],[-7.318867,57.145206],[-7.321003,57.146322],[-7.321737,57.146456],[-7.32,57.147432],[-7.319675,57.1483]]],[[[-7.328314,57.153214],[-7.330009,57.153842],[-7.333084,57.153269],[-7.331875,57.152354],[-7.328709,57.151428],[-7.325634,57.151335],[-7.325819,57.152381],[-7.328314,57.153214]]],[[[-7.328663,57.157416],[-7.330234,57.157775],[-7.330594,57.156612],[-7.331811,57.156063],[-7.33235,57.15486],[-7.331331,57.154134],[-7.326819,57.154205],[-7.326861,57.154705],[-7.329604,57.155912],[-7.328663,57.157416]]],[[[-7.249799,57.19539],[-7.253305,57.19474],[-7.255877,57.193191],[-7.255833,57.192214],[-7.254376,57.191333],[-7.254334,57.189462],[-7.253384,57.188787],[-7.248236,57.187842],[-7.245469,57.187729],[-7.244972,57.189189],[-7.241216,57.190341],[-7.240789,57.191889],[-7.241945,57.193316],[-7.244506,57.192903],[-7.247755,57.193725],[-7.247698,57.194663],[-7.249799,57.19539]]],[[[-7.301892,57.23679],[-7.303441,57.237921],[-7.304617,57.237732],[-7.304062,57.236126],[-7.301892,57.23679]]],[[[-7.354593,57.237785],[-7.356531,57.238102],[-7.354193,57.23565],[-7.352191,57.2344],[-7.352554,57.233634],[-7.351505,57.231619],[-7.349285,57.230224],[-7.347585,57.230372],[-7.34694,57.231551],[-7.344908,57.232091],[-7.34611,57.234179],[-7.347316,57.235122],[-7.348387,57.236785],[-7.350423,57.237477],[-7.352791,57.237443],[-7.354593,57.237785]]],[[[-7.426236,57.280784],[-7.429561,57.280323],[-7.429137,57.279773],[-7.426236,57.280784]]],[[[-7.239041,57.324696],[-7.240674,57.325693],[-7.241917,57.325893],[-7.24402,57.325473],[-7.246102,57.324402],[-7.247236,57.32335],[-7.244551,57.323138],[-7.243897,57.324267],[-7.238947,57.324192],[-7.239041,57.324696]]],[[[-7.242332,57.329682],[-7.245831,57.329473],[-7.250077,57.328513],[-7.250268,57.327695],[-7.251846,57.327332],[-7.251116,57.326425],[-7.248283,57.326964],[-7.246285,57.326426],[-7.244859,57.325064],[-7.243984,57.326037],[-7.241345,57.327128],[-7.242794,57.327665],[-7.240519,57.328278],[-7.242332,57.329682]]],[[[-7.223163,57.330176],[-7.2244,57.330565],[-7.227014,57.330553],[-7.228749,57.328513],[-7.228342,57.327948],[-7.225196,57.327338],[-7.223942,57.327467],[-7.221417,57.328953],[-7.223163,57.330176]]],[[[-7.207158,57.345477],[-7.206613,57.346288],[-7.208248,57.347128],[-7.20915,57.346551],[-7.209182,57.345312],[-7.211227,57.344183],[-7.208286,57.343982],[-7.207158,57.345477]]],[[[-7.249748,57.346042],[-7.25193,57.346977],[-7.25301,57.34627],[-7.251585,57.345502],[-7.249748,57.346042]]],[[[-7.233617,57.347543],[-7.235908,57.347673],[-7.235267,57.346679],[-7.233617,57.347543]]],[[[-7.211208,57.348152],[-7.213403,57.348723],[-7.214811,57.347971],[-7.216523,57.346433],[-7.216163,57.345886],[-7.218607,57.344759],[-7.220288,57.342826],[-7.218967,57.341441],[-7.217469,57.341319],[-7.217086,57.34255],[-7.215436,57.343176],[-7.215317,57.34445],[-7.210848,57.345733],[-7.211208,57.348152]]],[[[-7.215662,57.3505],[-7.218831,57.350954],[-7.218255,57.350064],[-7.215662,57.3505]]],[[[-7.260138,57.348569],[-7.263211,57.349278],[-7.263465,57.348648],[-7.260138,57.348569]]],[[[-7.222814,57.351394],[-7.2228,57.351882],[-7.226134,57.352265],[-7.227591,57.351529],[-7.22491,57.350795],[-7.222814,57.351394]]],[[[-7.255618,57.370029],[-7.257924,57.370608],[-7.261709,57.369622],[-7.26018,57.369213],[-7.259908,57.368473],[-7.257406,57.367696],[-7.255911,57.368069],[-7.256257,57.369787],[-7.255618,57.370029]]],[[[-7.274126,57.371312],[-7.276601,57.370823],[-7.275363,57.370205],[-7.272732,57.369861],[-7.269667,57.37003],[-7.270076,57.370679],[-7.274126,57.371312]]],[[[-7.292516,57.373879],[-7.294266,57.373188],[-7.293906,57.372542],[-7.290394,57.372623],[-7.289801,57.371802],[-7.28708,57.371471],[-7.285187,57.372491],[-7.288154,57.373081],[-7.289062,57.373729],[-7.292516,57.373879]]],[[[-7.284642,57.376563],[-7.287017,57.377206],[-7.287476,57.376408],[-7.289929,57.376035],[-7.284778,57.374101],[-7.284815,57.374878],[-7.283705,57.376018],[-7.284642,57.376563]]],[[[-7.244352,57.382725],[-7.24314,57.381768],[-7.241407,57.381827],[-7.238848,57.380125],[-7.236229,57.379652],[-7.234665,57.380119],[-7.235283,57.381061],[-7.237981,57.38152],[-7.239342,57.382286],[-7.241493,57.382622],[-7.242388,57.381988],[-7.244352,57.382725]]],[[[-7.229929,57.386674],[-7.231775,57.387119],[-7.235623,57.387458],[-7.238059,57.387132],[-7.237913,57.385702],[-7.235095,57.385338],[-7.233993,57.385677],[-7.231875,57.385023],[-7.229815,57.385585],[-7.229929,57.386674]]],[[[-7.277655,57.384859],[-7.278964,57.385852],[-7.27991,57.384868],[-7.277655,57.384859]]],[[[-7.252252,57.389018],[-7.251997,57.388052],[-7.24929,57.38754],[-7.246763,57.38787],[-7.247143,57.389006],[-7.248901,57.388483],[-7.25064,57.389049],[-7.252252,57.389018]]],[[[-7.261138,57.388812],[-7.263138,57.389916],[-7.264304,57.389683],[-7.264205,57.388681],[-7.262215,57.387823],[-7.261138,57.388812]]],[[[-7.271101,57.394298],[-7.27287,57.393747],[-7.270048,57.392889],[-7.271101,57.394298]]],[[[-7.261752,57.395698],[-7.262024,57.394867],[-7.264549,57.394389],[-7.264454,57.393159],[-7.262895,57.393333],[-7.259796,57.391712],[-7.255587,57.391128],[-7.252057,57.391667],[-7.250237,57.390024],[-7.248215,57.390037],[-7.249611,57.392219],[-7.250925,57.392722],[-7.25661,57.393668],[-7.261752,57.395698]]],[[[-7.283794,57.395578],[-7.287618,57.395682],[-7.288341,57.394743],[-7.287191,57.394053],[-7.283186,57.39419],[-7.283794,57.395578]]],[[[-7.273502,57.396575],[-7.274752,57.395742],[-7.271059,57.394722],[-7.270957,57.395917],[-7.273502,57.396575]]],[[[-7.275652,57.396186],[-7.274804,57.396942],[-7.275904,57.397728],[-7.277411,57.397405],[-7.275652,57.396186]]],[[[-7.250242,57.399],[-7.251847,57.398515],[-7.251108,57.396611],[-7.249897,57.395838],[-7.246965,57.395034],[-7.24582,57.394258],[-7.242638,57.393568],[-7.241068,57.392905],[-7.239533,57.393531],[-7.241994,57.396866],[-7.242373,57.398465],[-7.24459,57.399052],[-7.246864,57.398984],[-7.249206,57.398522],[-7.250242,57.399]]],[[[-7.23742,57.401128],[-7.239885,57.400769],[-7.237636,57.399803],[-7.23742,57.401128]]],[[[-7.188524,57.401803],[-7.186932,57.402445],[-7.1876,57.403866],[-7.189279,57.403837],[-7.18929,57.402505],[-7.188524,57.401803]]],[[[-7.230848,57.401159],[-7.23159,57.402033],[-7.235315,57.401855],[-7.235988,57.400968],[-7.232732,57.40046],[-7.230848,57.401159]]],[[[-7.261836,57.400805],[-7.260277,57.39993],[-7.259239,57.398799],[-7.255436,57.397953],[-7.256803,57.397565],[-7.25662,57.396173],[-7.25422,57.393736],[-7.25143,57.393803],[-7.246579,57.39182],[-7.246682,57.393525],[-7.248379,57.394786],[-7.25118,57.395897],[-7.251894,57.397447],[-7.253136,57.398025],[-7.255272,57.397985],[-7.258192,57.398762],[-7.258669,57.399642],[-7.261836,57.400805]]],[[[-7.285431,57.400624],[-7.287425,57.40104],[-7.28789,57.399756],[-7.284176,57.399319],[-7.285431,57.400624]]],[[[-7.189863,57.41089],[-7.192613,57.410651],[-7.192656,57.409542],[-7.195342,57.409557],[-7.197465,57.410414],[-7.199916,57.410412],[-7.200405,57.409865],[-7.198528,57.409092],[-7.19764,57.407653],[-7.20046,57.408027],[-7.200792,57.407487],[-7.203102,57.407085],[-7.203887,57.407795],[-7.206174,57.407993],[-7.208408,57.408575],[-7.212856,57.407149],[-7.211643,57.405948],[-7.212074,57.405229],[-7.214004,57.405783],[-7.214887,57.40648],[-7.217546,57.405429],[-7.218308,57.403989],[-7.223007,57.402169],[-7.221324,57.400242],[-7.224559,57.399666],[-7.223998,57.398772],[-7.221009,57.398329],[-7.222129,57.396771],[-7.224681,57.397893],[-7.226652,57.396583],[-7.227655,57.396429],[-7.225804,57.394728],[-7.22811,57.394124],[-7.229856,57.393223],[-7.230611,57.392207],[-7.233968,57.391558],[-7.229514,57.390012],[-7.226434,57.389857],[-7.225615,57.388788],[-7.222638,57.388597],[-7.224391,57.387687],[-7.22206,57.387406],[-7.221073,57.38662],[-7.217295,57.387002],[-7.212871,57.385681],[-7.208482,57.385496],[-7.20618,57.386414],[-7.206946,57.387989],[-7.207951,57.388492],[-7.211514,57.388123],[-7.218281,57.387842],[-7.219512,57.390396],[-7.217266,57.390481],[-7.215859,57.39201],[-7.2139,57.392533],[-7.210842,57.39095],[-7.210081,57.3914],[-7.206052,57.391544],[-7.207488,57.39063],[-7.205919,57.388792],[-7.202984,57.388954],[-7.198102,57.392009],[-7.198293,57.393301],[-7.194111,57.393541],[-7.191738,57.395084],[-7.189536,57.395535],[-7.187264,57.39791],[-7.189982,57.398567],[-7.191817,57.399489],[-7.194405,57.399959],[-7.196082,57.40132],[-7.194796,57.402071],[-7.193438,57.403953],[-7.194938,57.405826],[-7.1932,57.40709],[-7.192845,57.408585],[-7.190363,57.408773],[-7.188862,57.409892],[-7.189863,57.41089]]],[[[-7.324475,57.405198],[-7.326349,57.405029],[-7.3297,57.399262],[-7.33655,57.401845],[-7.340866,57.402557],[-7.34387,57.401179],[-7.345591,57.401556],[-7.346297,57.400599],[-7.349431,57.3998],[-7.351879,57.40088],[-7.352613,57.399304],[-7.355168,57.399005],[-7.355409,57.39998],[-7.357815,57.399197],[-7.358335,57.398548],[-7.360346,57.398231],[-7.367103,57.39867],[-7.369673,57.39784],[-7.372099,57.396162],[-7.373344,57.394436],[-7.376028,57.39519],[-7.378306,57.393846],[-7.379272,57.392782],[-7.382725,57.392496],[-7.385505,57.393666],[-7.385645,57.392775],[-7.388574,57.392617],[-7.386819,57.393683],[-7.387873,57.394646],[-7.384691,57.394595],[-7.383354,57.395324],[-7.38017,57.395622],[-7.381434,57.396815],[-7.383614,57.397035],[-7.387069,57.398439],[-7.390744,57.399484],[-7.39289,57.398484],[-7.395262,57.398256],[-7.399024,57.399872],[-7.399351,57.39697],[-7.400308,57.395714],[-7.408564,57.389274],[-7.412357,57.387181],[-7.418651,57.387289],[-7.419211,57.388704],[-7.422346,57.389471],[-7.424826,57.390592],[-7.426417,57.389386],[-7.428379,57.388867],[-7.430008,57.387942],[-7.430782,57.385984],[-7.42851,57.385416],[-7.429574,57.384525],[-7.429352,57.383832],[-7.427556,57.383318],[-7.425792,57.382299],[-7.422233,57.377894],[-7.41812,57.375021],[-7.41291,57.370591],[-7.407039,57.3633],[-7.403674,57.357947],[-7.399973,57.348789],[-7.398565,57.342822],[-7.39578,57.334595],[-7.395165,57.330922],[-7.39531,57.326823],[-7.397232,57.321282],[-7.397842,57.316535],[-7.400303,57.3105],[-7.39942,57.307786],[-7.398765,57.307288],[-7.397806,57.303084],[-7.394654,57.301606],[-7.392184,57.301481],[-7.390313,57.300393],[-7.391167,57.299476],[-7.38975,57.297861],[-7.388423,57.297642],[-7.390443,57.296411],[-7.391037,57.299116],[-7.391707,57.299588],[-7.390994,57.300415],[-7.392295,57.300837],[-7.394499,57.300812],[-7.395221,57.30136],[-7.39751,57.301459],[-7.39862,57.299897],[-7.404535,57.294575],[-7.406907,57.29294],[-7.410045,57.291833],[-7.41292,57.291834],[-7.414484,57.291416],[-7.416174,57.290164],[-7.420508,57.288581],[-7.420781,57.287619],[-7.422574,57.285605],[-7.420229,57.282604],[-7.419492,57.278715],[-7.421929,57.277502],[-7.423007,57.276427],[-7.422093,57.275576],[-7.423237,57.27435],[-7.426518,57.274215],[-7.428363,57.274769],[-7.429769,57.273684],[-7.428908,57.272977],[-7.423545,57.271824],[-7.42274,57.268415],[-7.423281,57.265051],[-7.425311,57.26089],[-7.425062,57.253196],[-7.42652,57.249999],[-7.428996,57.247091],[-7.43325,57.244197],[-7.440472,57.241335],[-7.442754,57.241307],[-7.44424,57.242486],[-7.445991,57.242102],[-7.448382,57.242338],[-7.450226,57.243583],[-7.453881,57.243421],[-7.45382,57.242574],[-7.455425,57.241686],[-7.457088,57.242035],[-7.458188,57.24092],[-7.456296,57.240627],[-7.45284,57.238609],[-7.450653,57.240393],[-7.447914,57.240231],[-7.445964,57.239447],[-7.443663,57.239675],[-7.439728,57.238534],[-7.435452,57.236408],[-7.432429,57.233543],[-7.430794,57.23018],[-7.430941,57.222965],[-7.432221,57.221602],[-7.429064,57.21945],[-7.426594,57.219228],[-7.42497,57.218544],[-7.423311,57.216571],[-7.422873,57.211027],[-7.424898,57.205935],[-7.423331,57.20229],[-7.422584,57.198264],[-7.422962,57.195702],[-7.424499,57.192597],[-7.424164,57.190706],[-7.421643,57.185594],[-7.421304,57.182185],[-7.420441,57.180179],[-7.411289,57.166135],[-7.408727,57.163161],[-7.407909,57.16094],[-7.40819,57.158057],[-7.409193,57.156298],[-7.411123,57.154324],[-7.412637,57.149339],[-7.410041,57.14742],[-7.405778,57.142803],[-7.403072,57.138752],[-7.40265,57.136594],[-7.403647,57.133899],[-7.403908,57.13113],[-7.401435,57.130247],[-7.397959,57.128296],[-7.393179,57.124104],[-7.393142,57.123119],[-7.391461,57.119256],[-7.391536,57.117731],[-7.392472,57.116096],[-7.392011,57.1151],[-7.392408,57.11348],[-7.390334,57.113678],[-7.388055,57.11325],[-7.385226,57.112315],[-7.384127,57.111548],[-7.380913,57.110584],[-7.379378,57.109395],[-7.377257,57.106745],[-7.377153,57.104954],[-7.375093,57.104847],[-7.373519,57.103875],[-7.371016,57.104055],[-7.368228,57.103636],[-7.365782,57.104356],[-7.358253,57.102371],[-7.355933,57.102648],[-7.35318,57.101778],[-7.3509,57.101917],[-7.350258,57.102781],[-7.345881,57.103396],[-7.343384,57.10291],[-7.340129,57.101543],[-7.336185,57.102912],[-7.33442,57.103135],[-7.332366,57.102864],[-7.330417,57.103132],[-7.329118,57.102672],[-7.326763,57.103345],[-7.326704,57.104544],[-7.325082,57.105477],[-7.322569,57.105053],[-7.320567,57.105218],[-7.321882,57.103716],[-7.317399,57.102844],[-7.314222,57.103033],[-7.312596,57.104345],[-7.3112,57.104472],[-7.306321,57.10597],[-7.306092,57.106988],[-7.303703,57.106865],[-7.302976,57.107398],[-7.303641,57.108861],[-7.301833,57.109848],[-7.30004,57.110339],[-7.298391,57.107598],[-7.294688,57.107123],[-7.293997,57.107634],[-7.292121,57.107359],[-7.289766,57.107531],[-7.288202,57.108523],[-7.284972,57.10781],[-7.279059,57.108176],[-7.278647,57.10751],[-7.272329,57.105874],[-7.269644,57.104439],[-7.266286,57.103272],[-7.265237,57.103373],[-7.263564,57.102212],[-7.261226,57.101757],[-7.258272,57.099231],[-7.257385,57.099102],[-7.253078,57.09962],[-7.252035,57.098854],[-7.250419,57.098828],[-7.246456,57.099332],[-7.245314,57.098565],[-7.24213,57.097965],[-7.241488,57.096818],[-7.237919,57.095726],[-7.234995,57.095502],[-7.229258,57.095949],[-7.228066,57.096485],[-7.229457,57.09738],[-7.228305,57.09818],[-7.230138,57.099507],[-7.231901,57.102974],[-7.232825,57.103664],[-7.229652,57.105021],[-7.229071,57.104541],[-7.226149,57.104222],[-7.223939,57.104553],[-7.222934,57.106633],[-7.220425,57.107485],[-7.221022,57.107937],[-7.223681,57.107709],[-7.223622,57.108517],[-7.221988,57.109442],[-7.218276,57.110778],[-7.220217,57.111817],[-7.223707,57.11144],[-7.227762,57.110605],[-7.228405,57.111826],[-7.227245,57.11269],[-7.224248,57.112369],[-7.220778,57.112852],[-7.218799,57.111845],[-7.218028,57.111013],[-7.215505,57.110592],[-7.214515,57.111727],[-7.215917,57.112933],[-7.214287,57.113041],[-7.212048,57.115636],[-7.211856,57.117448],[-7.218031,57.11778],[-7.219503,57.118947],[-7.221063,57.118985],[-7.222758,57.118392],[-7.22362,57.119054],[-7.225187,57.11902],[-7.22552,57.120617],[-7.22826,57.121451],[-7.227835,57.122544],[-7.228541,57.123788],[-7.228122,57.125565],[-7.230734,57.12555],[-7.232658,57.126405],[-7.234353,57.12591],[-7.236806,57.122256],[-7.237983,57.12171],[-7.238908,57.118491],[-7.240598,57.117749],[-7.243924,57.118811],[-7.242886,57.119656],[-7.241162,57.120038],[-7.24173,57.120838],[-7.241354,57.122446],[-7.239614,57.123064],[-7.238991,57.123868],[-7.240255,57.124908],[-7.24124,57.124444],[-7.242184,57.126083],[-7.243907,57.126276],[-7.24488,57.128174],[-7.246848,57.127939],[-7.248751,57.127121],[-7.251282,57.127586],[-7.251595,57.1281],[-7.245476,57.131447],[-7.245002,57.134171],[-7.246632,57.13573],[-7.248245,57.135286],[-7.250788,57.135233],[-7.252486,57.136008],[-7.254936,57.135662],[-7.258621,57.137428],[-7.261158,57.139904],[-7.263443,57.140253],[-7.265525,57.141048],[-7.268368,57.14154],[-7.271861,57.141312],[-7.273589,57.14076],[-7.275594,57.140848],[-7.277772,57.142484],[-7.282048,57.142979],[-7.28341,57.142026],[-7.287075,57.142712],[-7.289607,57.142475],[-7.289517,57.14139],[-7.29129,57.140553],[-7.293642,57.141292],[-7.294678,57.140603],[-7.297744,57.140721],[-7.300777,57.140417],[-7.299892,57.139597],[-7.303153,57.138631],[-7.306426,57.138505],[-7.306824,57.137169],[-7.308588,57.138141],[-7.311521,57.137878],[-7.311712,57.136734],[-7.313599,57.137611],[-7.315951,57.13695],[-7.316917,57.138036],[-7.320577,57.138577],[-7.325815,57.138475],[-7.326672,57.139045],[-7.329239,57.138762],[-7.330618,57.13696],[-7.334586,57.136168],[-7.334747,57.137073],[-7.336139,57.13783],[-7.336375,57.138728],[-7.338659,57.137628],[-7.340644,57.137778],[-7.340612,57.139124],[-7.342637,57.140653],[-7.343041,57.143136],[-7.343951,57.143562],[-7.341607,57.14561],[-7.339886,57.145616],[-7.339022,57.146469],[-7.340778,57.147261],[-7.342455,57.148818],[-7.345745,57.14986],[-7.346209,57.149311],[-7.343775,57.147723],[-7.344104,57.147137],[-7.346692,57.147517],[-7.346122,57.148207],[-7.347582,57.149079],[-7.350063,57.149616],[-7.349785,57.150117],[-7.353248,57.151923],[-7.35162,57.152256],[-7.351009,57.151554],[-7.348289,57.151717],[-7.348502,57.152892],[-7.343409,57.153343],[-7.345955,57.155481],[-7.34418,57.15597],[-7.34316,57.15556],[-7.339843,57.155822],[-7.336547,57.154902],[-7.335994,57.156963],[-7.331135,57.157675],[-7.331131,57.158375],[-7.329409,57.159823],[-7.327434,57.160072],[-7.325921,57.159282],[-7.323474,57.159248],[-7.322006,57.158635],[-7.321324,57.157728],[-7.322135,57.156989],[-7.320385,57.155662],[-7.318013,57.155149],[-7.318159,57.153279],[-7.321804,57.15192],[-7.317711,57.151119],[-7.316317,57.151084],[-7.313322,57.151777],[-7.312272,57.151206],[-7.308996,57.150793],[-7.310375,57.149894],[-7.308287,57.149401],[-7.307412,57.148775],[-7.304034,57.148023],[-7.300767,57.148769],[-7.29839,57.148266],[-7.296451,57.148578],[-7.290324,57.147287],[-7.289367,57.148028],[-7.289688,57.149004],[-7.292426,57.149046],[-7.294255,57.149792],[-7.296087,57.149731],[-7.29621,57.148891],[-7.298193,57.148489],[-7.302778,57.149747],[-7.30397,57.149568],[-7.305133,57.150541],[-7.308499,57.150953],[-7.307802,57.152857],[-7.304368,57.152317],[-7.303936,57.153185],[-7.304919,57.154756],[-7.309481,57.15555],[-7.308245,57.157225],[-7.306643,57.15798],[-7.308597,57.158664],[-7.308611,57.159267],[-7.310875,57.160201],[-7.310842,57.160949],[-7.313088,57.161868],[-7.309538,57.163137],[-7.308141,57.162324],[-7.308126,57.161006],[-7.305226,57.159842],[-7.303063,57.157878],[-7.301548,57.157582],[-7.298699,57.155765],[-7.295578,57.1547],[-7.290945,57.152231],[-7.284045,57.149769],[-7.281195,57.150281],[-7.27896,57.149988],[-7.277025,57.150412],[-7.27382,57.149823],[-7.270541,57.149754],[-7.267398,57.150647],[-7.266802,57.151459],[-7.263935,57.151094],[-7.261396,57.152389],[-7.257981,57.152591],[-7.256466,57.153001],[-7.255569,57.156062],[-7.256559,57.157492],[-7.255375,57.159184],[-7.253835,57.158947],[-7.251541,57.159237],[-7.249882,57.161629],[-7.249798,57.162468],[-7.247599,57.162961],[-7.244943,57.163002],[-7.244604,57.16368],[-7.246121,57.164976],[-7.24793,57.164765],[-7.247777,57.165993],[-7.249882,57.166398],[-7.247619,57.167243],[-7.24787,57.168947],[-7.246478,57.170112],[-7.246223,57.171],[-7.249895,57.172709],[-7.248787,57.174411],[-7.25051,57.176625],[-7.251336,57.178705],[-7.250204,57.17954],[-7.250569,57.181463],[-7.249984,57.182248],[-7.250669,57.183623],[-7.252629,57.18474],[-7.255004,57.185322],[-7.257524,57.186494],[-7.25815,57.18757],[-7.256237,57.188047],[-7.258672,57.191116],[-7.261644,57.192314],[-7.263815,57.192781],[-7.263372,57.193857],[-7.264328,57.194456],[-7.266687,57.193915],[-7.264975,57.195684],[-7.264185,57.197931],[-7.26458,57.200524],[-7.263999,57.20075],[-7.264004,57.202991],[-7.261999,57.204047],[-7.262374,57.205035],[-7.259987,57.205513],[-7.261419,57.207068],[-7.264906,57.208417],[-7.266413,57.209936],[-7.2689,57.209408],[-7.2708,57.209472],[-7.270127,57.210742],[-7.271359,57.213674],[-7.273467,57.215023],[-7.275384,57.215605],[-7.276319,57.215018],[-7.281052,57.214826],[-7.284347,57.214139],[-7.285548,57.213503],[-7.290564,57.212976],[-7.291365,57.21359],[-7.293168,57.213788],[-7.294712,57.214547],[-7.297911,57.214996],[-7.298972,57.214879],[-7.302123,57.216604],[-7.300092,57.218688],[-7.303173,57.219644],[-7.303815,57.220411],[-7.299525,57.222415],[-7.303482,57.22299],[-7.304928,57.223644],[-7.306623,57.223208],[-7.307581,57.222366],[-7.308342,57.225236],[-7.311046,57.226098],[-7.311722,57.225835],[-7.31363,57.227158],[-7.312805,57.227477],[-7.310109,57.226556],[-7.30732,57.226719],[-7.307111,57.227799],[-7.309489,57.229737],[-7.314272,57.229768],[-7.315609,57.229378],[-7.317883,57.229839],[-7.319395,57.229222],[-7.318848,57.228134],[-7.320706,57.227672],[-7.323522,57.227584],[-7.324678,57.227202],[-7.324633,57.225971],[-7.32133,57.224816],[-7.319279,57.224741],[-7.31786,57.22382],[-7.318428,57.223274],[-7.321715,57.223922],[-7.324226,57.223671],[-7.327531,57.224214],[-7.327434,57.224691],[-7.330394,57.225429],[-7.33124,57.226167],[-7.333102,57.225472],[-7.332617,57.224736],[-7.335485,57.224321],[-7.336242,57.223416],[-7.338544,57.223042],[-7.339223,57.223771],[-7.338306,57.224552],[-7.340727,57.225119],[-7.341919,57.226468],[-7.344338,57.226847],[-7.345672,57.226114],[-7.344434,57.224758],[-7.347826,57.224993],[-7.349535,57.225381],[-7.350915,57.2262],[-7.350972,57.227985],[-7.351809,57.228848],[-7.354015,57.229428],[-7.354963,57.231707],[-7.357783,57.23345],[-7.358169,57.234389],[-7.356192,57.234571],[-7.356442,57.236651],[-7.357688,57.237726],[-7.361254,57.239901],[-7.360436,57.240793],[-7.363248,57.241902],[-7.365095,57.242952],[-7.362999,57.244609],[-7.360347,57.242965],[-7.359712,57.241082],[-7.3579,57.239243],[-7.35191,57.237797],[-7.347518,57.237123],[-7.346454,57.236403],[-7.344245,57.238225],[-7.347647,57.240293],[-7.349345,57.240874],[-7.345901,57.242397],[-7.343763,57.241646],[-7.344378,57.239144],[-7.342016,57.237626],[-7.341609,57.236227],[-7.339615,57.234492],[-7.338562,57.234238],[-7.338447,57.233166],[-7.337438,57.232567],[-7.33716,57.231439],[-7.335603,57.23085],[-7.333316,57.230745],[-7.331302,57.231182],[-7.329097,57.230788],[-7.32747,57.231547],[-7.323578,57.232233],[-7.321918,57.231229],[-7.320145,57.231372],[-7.319908,57.232686],[-7.318456,57.234157],[-7.315815,57.234422],[-7.31496,57.235057],[-7.312391,57.234847],[-7.311485,57.232995],[-7.308698,57.233235],[-7.308427,57.234169],[-7.306863,57.234203],[-7.3058,57.235234],[-7.306032,57.237044],[-7.307108,57.238954],[-7.305134,57.239366],[-7.303982,57.239086],[-7.301885,57.237663],[-7.300251,57.23703],[-7.297582,57.237229],[-7.294592,57.23566],[-7.295012,57.234993],[-7.292948,57.233735],[-7.292954,57.232623],[-7.291705,57.231209],[-7.289923,57.230641],[-7.286907,57.230435],[-7.287474,57.229413],[-7.285428,57.228109],[-7.284294,57.228359],[-7.283177,57.227506],[-7.2866,57.227254],[-7.288683,57.228363],[-7.291136,57.227593],[-7.293518,57.230138],[-7.296502,57.231623],[-7.297388,57.23276],[-7.30005,57.234082],[-7.301561,57.233047],[-7.300062,57.231796],[-7.301189,57.230984],[-7.299213,57.229816],[-7.299708,57.228014],[-7.302646,57.228537],[-7.303466,57.229276],[-7.305248,57.228171],[-7.305422,57.226732],[-7.302875,57.225288],[-7.296868,57.224705],[-7.294791,57.225256],[-7.293574,57.224296],[-7.28799,57.222489],[-7.28351,57.222718],[-7.282952,57.224839],[-7.279632,57.225406],[-7.277778,57.224566],[-7.275728,57.224905],[-7.273211,57.22408],[-7.271858,57.224796],[-7.266882,57.224549],[-7.266778,57.22601],[-7.264702,57.225665],[-7.262894,57.226115],[-7.26042,57.227321],[-7.258774,57.228979],[-7.259566,57.230749],[-7.261269,57.231601],[-7.261013,57.232198],[-7.262629,57.234238],[-7.261841,57.234829],[-7.258708,57.23439],[-7.258552,57.234923],[-7.256071,57.235504],[-7.255702,57.236756],[-7.258249,57.236523],[-7.259416,57.23714],[-7.258957,57.238051],[-7.259798,57.239869],[-7.257326,57.240459],[-7.25625,57.242106],[-7.256551,57.243456],[-7.255253,57.245121],[-7.253551,57.245238],[-7.252051,57.246517],[-7.250069,57.246924],[-7.24629,57.248152],[-7.242699,57.248815],[-7.244863,57.250083],[-7.246056,57.251815],[-7.246283,57.253173],[-7.249316,57.254239],[-7.24878,57.256304],[-7.247641,57.256932],[-7.244167,57.25615],[-7.244759,57.257156],[-7.247246,57.25758],[-7.249376,57.257453],[-7.253099,57.258935],[-7.253145,57.260364],[-7.247628,57.261909],[-7.247041,57.262981],[-7.248413,57.264107],[-7.244872,57.265695],[-7.243177,57.265753],[-7.242526,57.26672],[-7.240243,57.267887],[-7.238704,57.270493],[-7.23976,57.271391],[-7.235264,57.270713],[-7.235664,57.271952],[-7.237679,57.273033],[-7.235923,57.274119],[-7.232066,57.273281],[-7.229011,57.276328],[-7.229374,57.276898],[-7.231716,57.277885],[-7.228211,57.278823],[-7.227397,57.280985],[-7.227807,57.28171],[-7.225516,57.282485],[-7.223687,57.281598],[-7.223018,57.280745],[-7.220934,57.280579],[-7.219344,57.279444],[-7.217965,57.279151],[-7.216237,57.27956],[-7.213944,57.279615],[-7.21143,57.278932],[-7.209896,57.279486],[-7.210378,57.281122],[-7.203272,57.280915],[-7.202451,57.282697],[-7.200179,57.285487],[-7.20146,57.285595],[-7.200866,57.286863],[-7.199511,57.28758],[-7.202076,57.28893],[-7.200994,57.290312],[-7.198686,57.290619],[-7.200716,57.292335],[-7.201652,57.292431],[-7.201735,57.293859],[-7.202544,57.294625],[-7.199624,57.295913],[-7.19968,57.296878],[-7.196048,57.296742],[-7.195951,57.297661],[-7.193743,57.298176],[-7.19214,57.299574],[-7.194643,57.300303],[-7.195009,57.301466],[-7.196443,57.30232],[-7.196467,57.304605],[-7.197988,57.305009],[-7.198543,57.30594],[-7.201179,57.306394],[-7.20307,57.305245],[-7.205065,57.306502],[-7.208054,57.305361],[-7.208338,57.304256],[-7.210603,57.304285],[-7.211278,57.303594],[-7.215577,57.303658],[-7.217774,57.302685],[-7.218549,57.301762],[-7.220101,57.301216],[-7.220713,57.302589],[-7.220167,57.303553],[-7.221129,57.304066],[-7.220445,57.30504],[-7.221309,57.306546],[-7.219965,57.30782],[-7.221575,57.308956],[-7.218588,57.310668],[-7.219149,57.311406],[-7.221583,57.311705],[-7.22297,57.312634],[-7.224389,57.315763],[-7.223339,57.316568],[-7.223797,57.318438],[-7.227732,57.319269],[-7.224132,57.320035],[-7.222646,57.319705],[-7.221956,57.320526],[-7.222977,57.321968],[-7.226172,57.32233],[-7.227628,57.323097],[-7.228095,57.324036],[-7.231094,57.324358],[-7.235103,57.325125],[-7.234003,57.324001],[-7.236067,57.323425],[-7.23569,57.322707],[-7.237741,57.321749],[-7.237032,57.320919],[-7.238276,57.320367],[-7.24111,57.319777],[-7.24416,57.321507],[-7.24712,57.322319],[-7.247911,57.322907],[-7.25273,57.32136],[-7.25245,57.322483],[-7.255057,57.322649],[-7.255517,57.323379],[-7.254552,57.325073],[-7.257077,57.325872],[-7.262285,57.325261],[-7.266429,57.323676],[-7.270546,57.32372],[-7.27081,57.325086],[-7.271785,57.325951],[-7.26929,57.326699],[-7.271484,57.327881],[-7.274079,57.327943],[-7.276827,57.330423],[-7.280091,57.331934],[-7.281737,57.33227],[-7.286127,57.333707],[-7.287288,57.334394],[-7.290989,57.334641],[-7.292163,57.335797],[-7.294697,57.337141],[-7.294163,57.338633],[-7.291045,57.337968],[-7.288515,57.33641],[-7.287305,57.336798],[-7.285751,57.336432],[-7.28462,57.3352],[-7.280062,57.333799],[-7.278578,57.33304],[-7.276462,57.33315],[-7.274966,57.333725],[-7.271939,57.331718],[-7.272856,57.330852],[-7.272612,57.328618],[-7.268356,57.329044],[-7.2667,57.328344],[-7.263586,57.328073],[-7.264363,57.32946],[-7.263865,57.330863],[-7.265003,57.332937],[-7.262707,57.33281],[-7.262455,57.332227],[-7.256976,57.329977],[-7.254356,57.329581],[-7.253471,57.33043],[-7.250582,57.330998],[-7.252398,57.332465],[-7.248799,57.332724],[-7.247769,57.333316],[-7.245263,57.333299],[-7.2435,57.334353],[-7.24381,57.335825],[-7.241475,57.334842],[-7.239646,57.334656],[-7.236189,57.335415],[-7.23519,57.336284],[-7.232158,57.335541],[-7.23069,57.33635],[-7.231771,57.337691],[-7.231587,57.339377],[-7.233774,57.340127],[-7.231675,57.340696],[-7.23117,57.340186],[-7.225476,57.339582],[-7.225548,57.340497],[-7.226954,57.342657],[-7.223034,57.341897],[-7.222527,57.343241],[-7.220989,57.344129],[-7.221787,57.346813],[-7.220517,57.347424],[-7.220749,57.348989],[-7.221885,57.349783],[-7.223453,57.349394],[-7.226225,57.349629],[-7.226666,57.348113],[-7.230003,57.346997],[-7.233403,57.346621],[-7.232813,57.345819],[-7.233566,57.344968],[-7.231876,57.344382],[-7.23259,57.343551],[-7.232191,57.342564],[-7.237018,57.341922],[-7.23895,57.34255],[-7.240597,57.34135],[-7.244785,57.340959],[-7.244586,57.342006],[-7.241466,57.341835],[-7.243134,57.344074],[-7.241573,57.344625],[-7.241435,57.345521],[-7.243311,57.346185],[-7.244572,57.34575],[-7.249126,57.345123],[-7.248157,57.343297],[-7.250027,57.34334],[-7.251122,57.342673],[-7.253607,57.343874],[-7.258402,57.341362],[-7.261073,57.341655],[-7.260284,57.34316],[-7.258847,57.343298],[-7.258254,57.344219],[-7.259678,57.345258],[-7.261571,57.345519],[-7.263142,57.345183],[-7.263474,57.343583],[-7.26564,57.343139],[-7.26483,57.344473],[-7.265792,57.346179],[-7.268848,57.347939],[-7.270343,57.347618],[-7.273268,57.348129],[-7.274015,57.34914],[-7.273605,57.350063],[-7.271101,57.349521],[-7.267776,57.349235],[-7.266007,57.349962],[-7.264948,57.349521],[-7.260756,57.350294],[-7.259266,57.349442],[-7.253677,57.348775],[-7.252578,57.348016],[-7.250058,57.347334],[-7.248299,57.347367],[-7.246853,57.348026],[-7.2429,57.348025],[-7.242606,57.34743],[-7.240013,57.347979],[-7.240858,57.348528],[-7.240372,57.350258],[-7.242229,57.35172],[-7.240887,57.353171],[-7.243712,57.353872],[-7.248732,57.35371],[-7.249586,57.352769],[-7.253167,57.353226],[-7.249522,57.354402],[-7.250449,57.356168],[-7.257137,57.356665],[-7.258062,57.358269],[-7.259988,57.358208],[-7.264828,57.360352],[-7.268664,57.361843],[-7.267363,57.362581],[-7.264982,57.362528],[-7.263648,57.361356],[-7.262242,57.362576],[-7.264831,57.364407],[-7.266793,57.365273],[-7.26972,57.365037],[-7.272415,57.366328],[-7.272377,57.367318],[-7.274407,57.367641],[-7.276808,57.36734],[-7.277382,57.368203],[-7.280363,57.369072],[-7.280909,57.369636],[-7.289318,57.370301],[-7.291007,57.369962],[-7.291908,57.370588],[-7.293906,57.370931],[-7.294964,57.370468],[-7.302021,57.372159],[-7.304089,57.372355],[-7.30914,57.373469],[-7.309838,57.372193],[-7.31138,57.372547],[-7.310081,57.373875],[-7.305042,57.372954],[-7.303091,57.373054],[-7.301055,57.372218],[-7.299529,57.372953],[-7.30126,57.374099],[-7.304769,57.374689],[-7.303834,57.375309],[-7.301149,57.375629],[-7.299464,57.374233],[-7.296782,57.374059],[-7.297721,57.375256],[-7.297192,57.37626],[-7.295304,57.375358],[-7.294024,57.375912],[-7.29433,57.376974],[-7.288717,57.377098],[-7.288064,57.37794],[-7.288301,57.379157],[-7.287095,57.379421],[-7.283813,57.377633],[-7.278842,57.377356],[-7.280834,57.376265],[-7.280212,57.375476],[-7.281705,57.37468],[-7.283656,57.374873],[-7.284371,57.373704],[-7.283887,57.37318],[-7.281166,57.373371],[-7.278573,57.374623],[-7.274594,57.373422],[-7.274662,57.373145],[-7.268764,57.372385],[-7.265827,57.372693],[-7.265664,57.373874],[-7.268796,57.375209],[-7.267989,57.37626],[-7.269973,57.378852],[-7.271447,57.379917],[-7.273894,57.380304],[-7.275102,57.381379],[-7.277079,57.382177],[-7.279452,57.382572],[-7.280477,57.383555],[-7.284325,57.384073],[-7.287688,57.383936],[-7.288226,57.384489],[-7.290422,57.384864],[-7.291124,57.384191],[-7.290698,57.382305],[-7.29168,57.381122],[-7.291722,57.379977],[-7.295434,57.380752],[-7.296173,57.381256],[-7.293672,57.38228],[-7.293683,57.383161],[-7.297064,57.384278],[-7.297906,57.385203],[-7.303223,57.385651],[-7.306068,57.387511],[-7.307726,57.386926],[-7.310424,57.387453],[-7.316235,57.386593],[-7.316383,57.384505],[-7.319143,57.382589],[-7.320923,57.385334],[-7.322514,57.386249],[-7.318516,57.386244],[-7.319542,57.38725],[-7.319582,57.388126],[-7.321173,57.388469],[-7.316983,57.390447],[-7.318329,57.392159],[-7.320608,57.393576],[-7.323264,57.393787],[-7.324588,57.393072],[-7.325127,57.39195],[-7.328269,57.391486],[-7.328116,57.392797],[-7.326233,57.393499],[-7.326664,57.39456],[-7.328361,57.394883],[-7.327069,57.397615],[-7.328965,57.399501],[-7.325913,57.405046],[-7.324475,57.405198]]],[[[-7.244431,57.410271],[-7.244693,57.409891],[-7.24179,57.408775],[-7.239532,57.409506],[-7.244431,57.410271]]],[[[-7.206982,57.414141],[-7.2091,57.414436],[-7.210092,57.413144],[-7.211808,57.412258],[-7.210727,57.410873],[-7.208658,57.410589],[-7.206858,57.410749],[-7.203768,57.412061],[-7.202354,57.411908],[-7.197331,57.413578],[-7.202331,57.413214],[-7.203819,57.414061],[-7.206982,57.414141]]],[[[-7.228394,57.413504],[-7.23247,57.413555],[-7.230926,57.412611],[-7.228561,57.411927],[-7.226908,57.41232],[-7.228394,57.413504]]],[[[-7.220452,57.413762],[-7.221677,57.414166],[-7.225927,57.413746],[-7.222385,57.410541],[-7.223577,57.410424],[-7.22563,57.411662],[-7.228154,57.411651],[-7.231235,57.412202],[-7.232693,57.411381],[-7.23025,57.410448],[-7.229314,57.411072],[-7.227691,57.411036],[-7.227101,57.409648],[-7.225944,57.409075],[-7.222439,57.409576],[-7.219184,57.40955],[-7.217454,57.408821],[-7.21589,57.409659],[-7.213246,57.409765],[-7.214526,57.411264],[-7.21399,57.412474],[-7.21693,57.412748],[-7.218753,57.412317],[-7.221994,57.412884],[-7.220452,57.413762]]],[[[-7.361781,57.417528],[-7.363192,57.41754],[-7.366404,57.416558],[-7.369831,57.413524],[-7.370468,57.411864],[-7.37084,57.40699],[-7.371859,57.404503],[-7.374548,57.401491],[-7.378857,57.398613],[-7.381958,57.397326],[-7.380037,57.396213],[-7.379444,57.397356],[-7.377489,57.397646],[-7.376719,57.398695],[-7.374649,57.399453],[-7.375366,57.400391],[-7.373594,57.401222],[-7.371574,57.403555],[-7.370111,57.404277],[-7.370892,57.405095],[-7.369908,57.406798],[-7.370052,57.4095],[-7.367967,57.409937],[-7.367241,57.411357],[-7.368151,57.412989],[-7.367157,57.413725],[-7.365084,57.414018],[-7.363563,57.41601],[-7.363855,57.417127],[-7.361781,57.417528]]],[[[-7.193775,57.431578],[-7.195802,57.431462],[-7.194861,57.430295],[-7.193798,57.43051],[-7.193775,57.431578]]],[[[-7.191204,57.431328],[-7.191903,57.430557],[-7.18919,57.430129],[-7.189797,57.431292],[-7.191204,57.431328]]],[[[-7.229732,57.430149],[-7.230427,57.431223],[-7.232512,57.430749],[-7.231281,57.430076],[-7.229732,57.430149]]],[[[-7.19983,57.434621],[-7.204632,57.434539],[-7.204461,57.433867],[-7.202582,57.432973],[-7.197625,57.432197],[-7.196473,57.433014],[-7.19983,57.434621]]],[[[-7.226384,57.438473],[-7.228494,57.438583],[-7.23074,57.43772],[-7.227645,57.436846],[-7.224957,57.436723],[-7.223594,57.436236],[-7.221477,57.436598],[-7.220439,57.437802],[-7.226384,57.438473]]],[[[-7.228349,57.442355],[-7.229175,57.441304],[-7.225689,57.441489],[-7.228349,57.442355]]],[[[-7.214388,57.44917],[-7.217204,57.448981],[-7.217333,57.448365],[-7.215259,57.447861],[-7.213333,57.447995],[-7.212428,57.447205],[-7.209758,57.446861],[-7.209519,57.447991],[-7.214388,57.44917]]],[[[-7.193736,57.456194],[-7.19444,57.456862],[-7.196091,57.456556],[-7.195278,57.455686],[-7.193736,57.456194]]],[[[-7.184263,57.454537],[-7.186485,57.455391],[-7.185778,57.457409],[-7.187708,57.458707],[-7.189213,57.458378],[-7.188867,57.456768],[-7.187854,57.455583],[-7.1861,57.454741],[-7.184263,57.454537]]],[[[-7.189264,57.457742],[-7.190247,57.459195],[-7.192855,57.458043],[-7.191333,57.457323],[-7.192702,57.456322],[-7.18977,57.455957],[-7.190185,57.456876],[-7.189264,57.457742]]],[[[-7.194407,57.460976],[-7.197251,57.460665],[-7.197446,57.459626],[-7.196366,57.457844],[-7.194649,57.458095],[-7.192889,57.460161],[-7.194407,57.460976]]],[[[-7.232689,57.459375],[-7.230953,57.458327],[-7.232727,57.456786],[-7.230831,57.455907],[-7.229471,57.454839],[-7.225864,57.453742],[-7.223671,57.453469],[-7.221762,57.45407],[-7.222654,57.455284],[-7.225941,57.456587],[-7.229065,57.457213],[-7.22894,57.458204],[-7.232689,57.459375]]],[[[-7.206652,57.468992],[-7.210855,57.47017],[-7.212539,57.469495],[-7.209091,57.468228],[-7.206652,57.468992]]],[[[-7.23142,57.47558],[-7.234033,57.476358],[-7.236471,57.475622],[-7.232579,57.474924],[-7.23142,57.47558]]],[[[-7.16348,57.479418],[-7.164509,57.479726],[-7.166529,57.479423],[-7.166296,57.478191],[-7.165189,57.478214],[-7.16348,57.479418]]],[[[-7.193724,57.480071],[-7.194196,57.478766],[-7.191824,57.478579],[-7.192154,57.479745],[-7.193724,57.480071]]],[[[-7.199679,57.48407],[-7.200311,57.482972],[-7.202514,57.482241],[-7.200989,57.480953],[-7.197759,57.480477],[-7.193327,57.48082],[-7.195424,57.48237],[-7.199679,57.48407]]],[[[-7.283229,57.479318],[-7.28595,57.480521],[-7.287157,57.47949],[-7.28486,57.478998],[-7.283229,57.479318]]],[[[-7.159006,57.492378],[-7.160201,57.491614],[-7.164,57.490999],[-7.162583,57.489964],[-7.160012,57.490925],[-7.159006,57.492378]]],[[[-7.216225,57.492381],[-7.21618,57.491542],[-7.214046,57.491113],[-7.213114,57.491957],[-7.216225,57.492381]]],[[[-7.272488,57.489961],[-7.275406,57.49004],[-7.278191,57.488914],[-7.274344,57.488923],[-7.275532,57.487586],[-7.273836,57.486688],[-7.271573,57.486497],[-7.269036,57.488074],[-7.270751,57.489513],[-7.272488,57.489961]]],[[[-7.319611,57.487907],[-7.319612,57.488698],[-7.322676,57.488925],[-7.325593,57.48859],[-7.324174,57.48717],[-7.322758,57.487086],[-7.321547,57.487713],[-7.319611,57.487907]]],[[[-7.273743,57.491829],[-7.274359,57.490233],[-7.270873,57.490222],[-7.271434,57.491015],[-7.273743,57.491829]]],[[[-7.336095,57.491313],[-7.33682,57.491756],[-7.340249,57.491906],[-7.340532,57.489832],[-7.338133,57.488089],[-7.335275,57.488338],[-7.335812,57.489253],[-7.334446,57.490436],[-7.338483,57.490481],[-7.338234,57.491153],[-7.336095,57.491313]]],[[[-7.344332,57.493806],[-7.350193,57.494039],[-7.359355,57.493054],[-7.365341,57.492809],[-7.367683,57.492242],[-7.368688,57.489064],[-7.371278,57.484874],[-7.372304,57.479708],[-7.373238,57.478838],[-7.376764,57.477075],[-7.377812,57.475476],[-7.378994,57.474674],[-7.381864,57.474054],[-7.385341,57.474655],[-7.386492,57.475151],[-7.389412,57.474041],[-7.391293,57.473839],[-7.39506,57.474425],[-7.398421,57.473869],[-7.400841,57.474093],[-7.402253,57.472585],[-7.405502,57.472723],[-7.406442,57.471453],[-7.410022,57.470327],[-7.409944,57.469243],[-7.408316,57.468328],[-7.408969,57.466357],[-7.412086,57.464498],[-7.410824,57.464183],[-7.410785,57.463056],[-7.405205,57.46219],[-7.402556,57.46241],[-7.401265,57.461355],[-7.40074,57.459337],[-7.401369,57.457381],[-7.403284,57.455538],[-7.404591,57.455404],[-7.408935,57.456079],[-7.410602,57.455825],[-7.410628,57.452812],[-7.411456,57.452271],[-7.409869,57.450451],[-7.4099,57.449109],[-7.408667,57.448726],[-7.408655,57.447639],[-7.406196,57.447407],[-7.405405,57.447884],[-7.401742,57.446799],[-7.399697,57.444853],[-7.397195,57.443545],[-7.395908,57.442266],[-7.392838,57.435131],[-7.393463,57.425672],[-7.393105,57.423903],[-7.391979,57.422464],[-7.389799,57.422059],[-7.388358,57.423678],[-7.385289,57.424339],[-7.379562,57.422766],[-7.376421,57.422497],[-7.373832,57.423012],[-7.365217,57.421844],[-7.362897,57.421094],[-7.36127,57.420093],[-7.358608,57.419387],[-7.355633,57.419913],[-7.356564,57.421911],[-7.351346,57.420562],[-7.350663,57.419627],[-7.348512,57.418324],[-7.346702,57.418532],[-7.346977,57.41971],[-7.344912,57.419953],[-7.343658,57.420597],[-7.340536,57.42033],[-7.34034,57.4193],[-7.341106,57.418014],[-7.340322,57.417308],[-7.3386,57.417321],[-7.338965,57.416343],[-7.342433,57.415753],[-7.338657,57.412905],[-7.336646,57.412138],[-7.33645,57.411345],[-7.334338,57.409512],[-7.331516,57.409349],[-7.330199,57.4084],[-7.327647,57.407997],[-7.326085,57.406451],[-7.323937,57.406167],[-7.323207,57.4055],[-7.319081,57.405411],[-7.318485,57.405078],[-7.319544,57.40379],[-7.318799,57.403146],[-7.316868,57.402964],[-7.317252,57.40165],[-7.316375,57.401064],[-7.312464,57.400351],[-7.308773,57.400041],[-7.304812,57.399141],[-7.302126,57.400861],[-7.307212,57.401841],[-7.308929,57.403195],[-7.310126,57.403479],[-7.310266,57.404571],[-7.308725,57.405037],[-7.307067,57.404824],[-7.304066,57.405445],[-7.302905,57.406186],[-7.304279,57.407261],[-7.302341,57.4077],[-7.300389,57.406044],[-7.298649,57.406221],[-7.296966,57.40564],[-7.293589,57.405047],[-7.292998,57.405961],[-7.296352,57.406637],[-7.296216,57.407724],[-7.293191,57.406247],[-7.291664,57.40612],[-7.29197,57.407763],[-7.289888,57.408451],[-7.293059,57.409106],[-7.291119,57.409931],[-7.28957,57.409188],[-7.289183,57.40791],[-7.286975,57.407581],[-7.28556,57.406584],[-7.284642,57.405328],[-7.279537,57.403425],[-7.275884,57.401606],[-7.273317,57.401166],[-7.270615,57.399971],[-7.268913,57.399778],[-7.265582,57.398788],[-7.263702,57.399119],[-7.264425,57.40062],[-7.267832,57.403812],[-7.27045,57.403841],[-7.270923,57.404623],[-7.269558,57.405314],[-7.273369,57.407137],[-7.277508,57.408558],[-7.279396,57.408279],[-7.280842,57.408998],[-7.28354,57.408664],[-7.284183,57.409634],[-7.289756,57.410486],[-7.291091,57.409966],[-7.294368,57.410931],[-7.297395,57.412392],[-7.299223,57.412207],[-7.30094,57.4133],[-7.301127,57.413984],[-7.305378,57.415103],[-7.305543,57.415634],[-7.308605,57.416224],[-7.310954,57.416378],[-7.312986,57.414742],[-7.315479,57.415164],[-7.313811,57.41677],[-7.312229,57.417245],[-7.309572,57.417451],[-7.30796,57.417195],[-7.307625,57.416331],[-7.304601,57.415933],[-7.301295,57.415101],[-7.299272,57.41593],[-7.296893,57.415496],[-7.293304,57.414197],[-7.293019,57.413446],[-7.289683,57.413248],[-7.286771,57.412103],[-7.284943,57.411867],[-7.283395,57.411092],[-7.280981,57.410552],[-7.279406,57.4096],[-7.278194,57.410432],[-7.275578,57.410025],[-7.271494,57.41008],[-7.26874,57.408521],[-7.2655,57.408461],[-7.257183,57.40629],[-7.251786,57.404692],[-7.249905,57.404498],[-7.244488,57.40253],[-7.242519,57.402454],[-7.239422,57.401588],[-7.238823,57.40255],[-7.236966,57.403176],[-7.237245,57.403754],[-7.235374,57.404246],[-7.237889,57.407088],[-7.241703,57.407781],[-7.241613,57.408403],[-7.244328,57.409492],[-7.246726,57.409707],[-7.249726,57.410523],[-7.25265,57.410637],[-7.252828,57.411201],[-7.249538,57.41162],[-7.248642,57.41107],[-7.245747,57.411075],[-7.245412,57.412406],[-7.243868,57.411811],[-7.241884,57.411812],[-7.241587,57.41079],[-7.238984,57.410948],[-7.234084,57.410272],[-7.233019,57.411152],[-7.234329,57.41157],[-7.235119,57.413327],[-7.233025,57.413995],[-7.230023,57.41434],[-7.228637,57.415145],[-7.225541,57.414335],[-7.224278,57.414984],[-7.221067,57.414798],[-7.21931,57.415645],[-7.215514,57.416028],[-7.214936,57.415422],[-7.212273,57.415933],[-7.208976,57.41526],[-7.206228,57.415639],[-7.205824,57.416844],[-7.203743,57.417686],[-7.204163,57.419117],[-7.207107,57.419706],[-7.207947,57.420274],[-7.208236,57.42154],[-7.210671,57.422976],[-7.214456,57.423055],[-7.215547,57.42404],[-7.217865,57.424213],[-7.222071,57.425685],[-7.223127,57.425376],[-7.224181,57.426615],[-7.220039,57.426152],[-7.219009,57.42539],[-7.216674,57.424569],[-7.216079,57.425079],[-7.212561,57.425495],[-7.212585,57.424788],[-7.210844,57.423804],[-7.208863,57.424054],[-7.205886,57.425246],[-7.207623,57.426429],[-7.207684,57.42721],[-7.205017,57.42705],[-7.203985,57.42882],[-7.206573,57.429424],[-7.20792,57.430799],[-7.209836,57.431952],[-7.21007,57.432775],[-7.212836,57.433456],[-7.212661,57.43404],[-7.214853,57.435078],[-7.215527,57.435824],[-7.217557,57.435668],[-7.218718,57.436033],[-7.222807,57.436039],[-7.223079,57.4352],[-7.225805,57.434772],[-7.225273,57.436017],[-7.229316,57.435701],[-7.233562,57.436806],[-7.234564,57.436405],[-7.240242,57.436496],[-7.24233,57.437845],[-7.24485,57.437911],[-7.24607,57.437518],[-7.247256,57.435956],[-7.246071,57.435566],[-7.245902,57.434542],[-7.243012,57.434518],[-7.24318,57.433247],[-7.240734,57.433812],[-7.237797,57.433984],[-7.236982,57.434414],[-7.235334,57.432692],[-7.233464,57.431515],[-7.225617,57.431648],[-7.224401,57.430727],[-7.227596,57.429271],[-7.229961,57.429303],[-7.231903,57.429821],[-7.233037,57.429456],[-7.235576,57.430594],[-7.237139,57.430264],[-7.240544,57.432201],[-7.243493,57.432694],[-7.24537,57.432175],[-7.248157,57.432058],[-7.248392,57.431023],[-7.247693,57.429293],[-7.251578,57.4317],[-7.257585,57.433815],[-7.258783,57.434714],[-7.263909,57.437523],[-7.264678,57.437419],[-7.268052,57.438195],[-7.27127,57.437998],[-7.274086,57.438496],[-7.277081,57.438258],[-7.279212,57.437588],[-7.281133,57.437948],[-7.280711,57.438784],[-7.275885,57.438816],[-7.274832,57.439382],[-7.269973,57.43942],[-7.268463,57.439767],[-7.266002,57.439424],[-7.264451,57.439894],[-7.265814,57.441362],[-7.270383,57.441747],[-7.272389,57.44402],[-7.271592,57.444283],[-7.275268,57.44628],[-7.275492,57.446846],[-7.272694,57.447058],[-7.270744,57.445979],[-7.268951,57.44645],[-7.268199,57.448817],[-7.265757,57.450809],[-7.263637,57.450871],[-7.263525,57.449283],[-7.26107,57.449385],[-7.259992,57.447986],[-7.258554,57.448316],[-7.257462,57.447746],[-7.257648,57.446775],[-7.256768,57.445183],[-7.252541,57.443528],[-7.251141,57.44244],[-7.249559,57.444089],[-7.25283,57.444902],[-7.25347,57.446104],[-7.25284,57.448105],[-7.251489,57.448225],[-7.246372,57.446189],[-7.244518,57.446581],[-7.247835,57.449862],[-7.250103,57.451134],[-7.254593,57.452635],[-7.251117,57.453243],[-7.251109,57.455165],[-7.252184,57.457356],[-7.250637,57.457452],[-7.249545,57.456477],[-7.250448,57.455098],[-7.248952,57.453923],[-7.247005,57.450941],[-7.243835,57.449444],[-7.244815,57.449003],[-7.242939,57.448199],[-7.24278,57.44709],[-7.239838,57.446538],[-7.237356,57.447447],[-7.236171,57.448378],[-7.235115,57.448057],[-7.236045,57.446795],[-7.235245,57.445412],[-7.23194,57.444937],[-7.229799,57.445489],[-7.227169,57.444487],[-7.225221,57.444791],[-7.224883,57.44595],[-7.221186,57.445946],[-7.218869,57.446789],[-7.226712,57.448699],[-7.230237,57.449304],[-7.231918,57.448982],[-7.233845,57.44991],[-7.236986,57.449757],[-7.23806,57.450315],[-7.240147,57.450322],[-7.241485,57.450919],[-7.240638,57.453105],[-7.237176,57.45318],[-7.236416,57.454217],[-7.239176,57.455888],[-7.241486,57.456862],[-7.241975,57.458289],[-7.239412,57.458519],[-7.237207,57.460316],[-7.235862,57.462118],[-7.234659,57.461237],[-7.231401,57.461282],[-7.22938,57.459351],[-7.226458,57.458946],[-7.224114,57.45732],[-7.222102,57.457381],[-7.219539,57.458135],[-7.216933,57.45976],[-7.214592,57.459677],[-7.213304,57.458785],[-7.211974,57.459115],[-7.211628,57.460205],[-7.212791,57.461623],[-7.209314,57.460544],[-7.207592,57.460763],[-7.20915,57.462318],[-7.213459,57.463611],[-7.212309,57.463866],[-7.214784,57.465527],[-7.217314,57.465179],[-7.217138,57.466693],[-7.219373,57.467024],[-7.220123,57.466606],[-7.221896,57.468035],[-7.229284,57.470639],[-7.232353,57.470488],[-7.233337,57.469494],[-7.231766,57.466776],[-7.231938,57.465849],[-7.233544,57.464995],[-7.235763,57.464632],[-7.236582,57.463937],[-7.238916,57.464204],[-7.240381,57.464751],[-7.242053,57.464474],[-7.242251,57.465851],[-7.243953,57.466424],[-7.241095,57.466934],[-7.242578,57.467723],[-7.242531,57.468908],[-7.246882,57.469715],[-7.246266,57.470615],[-7.248543,57.471545],[-7.244375,57.471576],[-7.242671,57.471921],[-7.240986,57.471465],[-7.238242,57.471832],[-7.240528,57.473396],[-7.243172,57.473894],[-7.245386,57.474773],[-7.244637,57.475376],[-7.248428,57.476586],[-7.249478,57.476293],[-7.251831,57.476821],[-7.254261,57.475998],[-7.254992,57.474957],[-7.253637,57.474249],[-7.254121,57.473203],[-7.252968,57.471982],[-7.250139,57.471646],[-7.249327,57.46948],[-7.25329,57.470097],[-7.253446,57.468799],[-7.255371,57.466744],[-7.25365,57.464705],[-7.252656,57.464589],[-7.252775,57.463212],[-7.251361,57.462259],[-7.247508,57.460427],[-7.251365,57.461183],[-7.256039,57.463382],[-7.25596,57.464591],[-7.254446,57.46438],[-7.255413,57.466458],[-7.258185,57.465703],[-7.260424,57.466693],[-7.263538,57.46699],[-7.266259,57.46587],[-7.266841,57.463249],[-7.268316,57.465027],[-7.269593,57.465829],[-7.26929,57.466776],[-7.271069,57.467355],[-7.272417,57.466432],[-7.274467,57.466799],[-7.276425,57.466595],[-7.277322,57.468032],[-7.277273,57.468895],[-7.279563,57.470162],[-7.279622,57.471842],[-7.281103,57.471744],[-7.28266,57.472754],[-7.282396,57.473296],[-7.279503,57.472522],[-7.276527,57.472962],[-7.274332,57.472744],[-7.274236,57.474043],[-7.276095,57.476213],[-7.27055,57.476674],[-7.2701,57.473264],[-7.270243,57.472321],[-7.265799,57.471185],[-7.264494,57.47253],[-7.263315,57.471838],[-7.260182,57.472053],[-7.259718,57.472584],[-7.257348,57.472806],[-7.256401,57.473836],[-7.259367,57.47482],[-7.259209,57.475834],[-7.260477,57.476883],[-7.258686,57.477192],[-7.258939,57.478275],[-7.262311,57.479125],[-7.264,57.477738],[-7.264764,57.479096],[-7.266694,57.480212],[-7.270522,57.481232],[-7.271352,57.480845],[-7.273203,57.482294],[-7.277726,57.481559],[-7.278926,57.482033],[-7.280742,57.481211],[-7.279989,57.480112],[-7.278229,57.480286],[-7.277476,57.479712],[-7.275359,57.479395],[-7.273836,57.478096],[-7.272957,57.476691],[-7.275905,57.476373],[-7.27863,57.478539],[-7.281348,57.479131],[-7.28265,57.479097],[-7.285243,57.478247],[-7.289171,57.479499],[-7.292026,57.479948],[-7.29222,57.480578],[-7.294919,57.480334],[-7.295381,57.479625],[-7.293775,57.478186],[-7.296237,57.477737],[-7.296941,57.479355],[-7.296399,57.480584],[-7.294669,57.481098],[-7.294483,57.482476],[-7.292456,57.482243],[-7.291022,57.483426],[-7.288794,57.483097],[-7.286458,57.483294],[-7.290494,57.484798],[-7.291982,57.483076],[-7.293087,57.482642],[-7.294203,57.484878],[-7.295472,57.485792],[-7.297239,57.485495],[-7.29865,57.486101],[-7.300427,57.485658],[-7.301604,57.484732],[-7.303632,57.485497],[-7.304912,57.485225],[-7.304628,57.483993],[-7.30671,57.484084],[-7.308283,57.482402],[-7.306837,57.481718],[-7.309252,57.480096],[-7.311321,57.479754],[-7.312867,57.480795],[-7.314584,57.481091],[-7.315995,57.480553],[-7.318367,57.480556],[-7.320633,57.480096],[-7.322283,57.480918],[-7.324247,57.481016],[-7.32529,57.480185],[-7.328837,57.479752],[-7.328894,57.481362],[-7.330817,57.481614],[-7.331233,57.480906],[-7.333102,57.480939],[-7.336592,57.480088],[-7.337113,57.480638],[-7.335147,57.482272],[-7.3351,57.483029],[-7.332679,57.483481],[-7.332188,57.484778],[-7.334602,57.484535],[-7.336565,57.485242],[-7.339325,57.484999],[-7.342731,57.483653],[-7.344036,57.483575],[-7.346681,57.484187],[-7.345818,57.486163],[-7.34623,57.486858],[-7.344626,57.490583],[-7.345656,57.493128],[-7.344332,57.493806]]],[[[-7.157863,57.50314],[-7.161098,57.501966],[-7.162002,57.500381],[-7.163695,57.499591],[-7.163406,57.498731],[-7.162024,57.49795],[-7.158801,57.497309],[-7.15769,57.495834],[-7.155631,57.496049],[-7.154317,57.495035],[-7.150404,57.496015],[-7.150095,57.497908],[-7.146398,57.498892],[-7.146022,57.499902],[-7.143632,57.500749],[-7.144313,57.501294],[-7.147691,57.50018],[-7.151019,57.501626],[-7.15161,57.502353],[-7.15404,57.502705],[-7.157471,57.502555],[-7.157863,57.50314]]],[[[-7.193124,57.500436],[-7.192149,57.50116],[-7.19418,57.50238],[-7.196104,57.5003],[-7.194333,57.49901],[-7.195051,57.498422],[-7.19087,57.497641],[-7.189728,57.498187],[-7.186278,57.497083],[-7.185097,57.497411],[-7.18249,57.496533],[-7.182172,57.49606],[-7.179098,57.495247],[-7.180158,57.494587],[-7.178841,57.492072],[-7.176992,57.491118],[-7.179171,57.490929],[-7.179665,57.492173],[-7.18136,57.493052],[-7.183144,57.492493],[-7.186098,57.493109],[-7.18557,57.493626],[-7.18941,57.493778],[-7.191943,57.494434],[-7.191692,57.495016],[-7.193919,57.495927],[-7.196264,57.495497],[-7.197237,57.496402],[-7.199452,57.497304],[-7.204143,57.498181],[-7.203645,57.497109],[-7.202232,57.496564],[-7.202846,57.495594],[-7.204249,57.495415],[-7.203259,57.494034],[-7.204439,57.493643],[-7.204229,57.492464],[-7.206382,57.490215],[-7.205341,57.488949],[-7.203111,57.489077],[-7.202217,57.488676],[-7.204673,57.486844],[-7.201915,57.486251],[-7.198666,57.486448],[-7.198678,57.486989],[-7.194742,57.48629],[-7.192943,57.485185],[-7.194821,57.484635],[-7.194767,57.48369],[-7.193189,57.482859],[-7.19175,57.482702],[-7.191021,57.485136],[-7.188972,57.484123],[-7.189469,57.482861],[-7.188715,57.482374],[-7.187857,57.4798],[-7.187761,57.478423],[-7.188792,57.477625],[-7.190963,57.477801],[-7.190708,57.476592],[-7.189491,57.476201],[-7.190354,57.475045],[-7.193123,57.474549],[-7.19376,57.47351],[-7.190807,57.473119],[-7.188759,57.471462],[-7.187035,57.471785],[-7.185954,57.472932],[-7.183989,57.470975],[-7.181804,57.469936],[-7.182053,57.468985],[-7.18077,57.468773],[-7.177128,57.469643],[-7.176743,57.470347],[-7.174281,57.471123],[-7.174479,57.472105],[-7.173252,57.473343],[-7.169969,57.473217],[-7.168559,57.474053],[-7.169363,57.475015],[-7.167937,57.478627],[-7.169663,57.479609],[-7.172163,57.480514],[-7.174167,57.480742],[-7.171619,57.481864],[-7.167817,57.480261],[-7.166066,57.480548],[-7.16427,57.480105],[-7.163334,57.48116],[-7.161574,57.481836],[-7.16193,57.482397],[-7.159101,57.482733],[-7.159902,57.484311],[-7.158186,57.485335],[-7.160396,57.486018],[-7.161514,57.487367],[-7.164777,57.487107],[-7.164492,57.485562],[-7.167759,57.486337],[-7.166732,57.487697],[-7.170649,57.487607],[-7.174076,57.486995],[-7.173693,57.488302],[-7.170025,57.489771],[-7.167609,57.489758],[-7.167464,57.490448],[-7.170898,57.490451],[-7.169812,57.491274],[-7.165571,57.491299],[-7.16292,57.492816],[-7.163988,57.493632],[-7.162009,57.494766],[-7.16326,57.495988],[-7.166692,57.496029],[-7.170115,57.496538],[-7.170053,57.498048],[-7.168073,57.498399],[-7.165863,57.500497],[-7.169144,57.502126],[-7.171627,57.502195],[-7.173805,57.502699],[-7.178082,57.502329],[-7.181456,57.502663],[-7.183759,57.502348],[-7.189742,57.499986],[-7.193124,57.500436]]],[[[-7.183909,57.502755],[-7.184803,57.503092],[-7.187587,57.502581],[-7.185594,57.501966],[-7.183909,57.502755]]],[[[-7.226021,57.502318],[-7.22722,57.502232],[-7.22692,57.500953],[-7.223467,57.500827],[-7.224402,57.501985],[-7.226021,57.502318]]],[[[-7.17508,57.504973],[-7.176629,57.505399],[-7.178355,57.505256],[-7.178898,57.504545],[-7.17508,57.504973]]],[[[-7.162177,57.505984],[-7.166936,57.505994],[-7.167454,57.505533],[-7.16618,57.504452],[-7.1645,57.503801],[-7.162889,57.504106],[-7.161329,57.505132],[-7.162177,57.505984]]],[[[-7.15494,57.506586],[-7.155525,57.505523],[-7.152978,57.504831],[-7.150798,57.50484],[-7.15494,57.506586]]],[[[-7.295186,57.501176],[-7.294285,57.499577],[-7.291074,57.498357],[-7.289719,57.498581],[-7.290256,57.499922],[-7.29181,57.499744],[-7.293137,57.500768],[-7.295186,57.501176]]],[[[-7.147604,57.509037],[-7.149868,57.508846],[-7.151462,57.507471],[-7.153912,57.506827],[-7.148008,57.505386],[-7.145146,57.50548],[-7.144095,57.506382],[-7.142117,57.506999],[-7.142062,57.507968],[-7.144708,57.509007],[-7.147604,57.509037]]],[[[-7.214756,57.505543],[-7.21599,57.506401],[-7.217839,57.506],[-7.216007,57.505118],[-7.214756,57.505543]]],[[[-7.298534,57.502588],[-7.300129,57.503097],[-7.300789,57.500972],[-7.298733,57.500739],[-7.298838,57.499794],[-7.295822,57.499512],[-7.295052,57.50008],[-7.296846,57.500756],[-7.298544,57.500878],[-7.298534,57.502588]]],[[[-7.206371,57.506943],[-7.208115,57.50639],[-7.204907,57.505587],[-7.204931,57.506306],[-7.206371,57.506943]]],[[[-7.346076,57.49735],[-7.34588,57.497631],[-7.340019,57.499239],[-7.338976,57.500392],[-7.340097,57.501141],[-7.344465,57.501453],[-7.346744,57.50139],[-7.346322,57.499063],[-7.348058,57.497248],[-7.346076,57.49735]]],[[[-7.18385,57.508508],[-7.183861,57.508237],[-7.190569,57.506503],[-7.192886,57.507627],[-7.195516,57.505323],[-7.193662,57.504567],[-7.183977,57.504818],[-7.183263,57.504087],[-7.180728,57.504187],[-7.18115,57.505276],[-7.185566,57.505944],[-7.184597,57.507006],[-7.182878,57.507675],[-7.18385,57.508508]]],[[[-7.267642,57.503979],[-7.268042,57.504728],[-7.269696,57.505063],[-7.271323,57.504523],[-7.269749,57.503869],[-7.267642,57.503979]]],[[[-7.255436,57.506153],[-7.256329,57.505523],[-7.255119,57.504899],[-7.254811,57.503984],[-7.251635,57.502646],[-7.249387,57.502531],[-7.248092,57.501872],[-7.248606,57.501125],[-7.250423,57.501551],[-7.252132,57.501278],[-7.251657,57.500163],[-7.258366,57.500729],[-7.2599,57.500003],[-7.261856,57.500689],[-7.267219,57.499536],[-7.267863,57.499771],[-7.271873,57.49968],[-7.275721,57.498976],[-7.274674,57.497273],[-7.275847,57.496925],[-7.274665,57.495822],[-7.277533,57.495169],[-7.279777,57.496006],[-7.282101,57.496242],[-7.283746,57.496866],[-7.28708,57.495943],[-7.284791,57.495139],[-7.28388,57.49439],[-7.280376,57.493907],[-7.280121,57.493126],[-7.283622,57.493127],[-7.284543,57.491876],[-7.279941,57.492926],[-7.278533,57.492607],[-7.277974,57.493594],[-7.275391,57.493969],[-7.273447,57.493572],[-7.274478,57.495734],[-7.27242,57.495866],[-7.270287,57.495474],[-7.27061,57.494227],[-7.268334,57.492029],[-7.266206,57.490614],[-7.263635,57.49061],[-7.262698,57.491711],[-7.259159,57.49094],[-7.262675,57.490651],[-7.261102,57.489801],[-7.261798,57.488761],[-7.259451,57.487378],[-7.257421,57.487507],[-7.254312,57.484605],[-7.252792,57.48453],[-7.250973,57.483364],[-7.252105,57.482288],[-7.250406,57.48042],[-7.245599,57.478685],[-7.24346,57.478433],[-7.239524,57.479284],[-7.238625,57.480222],[-7.236365,57.480377],[-7.236822,57.48122],[-7.238801,57.481424],[-7.235692,57.484047],[-7.237462,57.484434],[-7.237856,57.485449],[-7.234698,57.485256],[-7.23057,57.48349],[-7.228612,57.481884],[-7.22866,57.480774],[-7.229893,57.479736],[-7.225977,57.478939],[-7.221121,57.477122],[-7.219169,57.476041],[-7.217797,57.475987],[-7.216457,57.475249],[-7.213609,57.474767],[-7.211545,57.474023],[-7.210308,57.474065],[-7.20852,57.475847],[-7.206145,57.475811],[-7.203053,57.474845],[-7.202484,57.476357],[-7.203814,57.476311],[-7.203835,57.478056],[-7.207033,57.478776],[-7.208514,57.479634],[-7.206854,57.480526],[-7.204984,57.480243],[-7.204983,57.482065],[-7.203023,57.483018],[-7.203741,57.483864],[-7.205629,57.484685],[-7.206269,57.485628],[-7.208631,57.486283],[-7.211418,57.486344],[-7.2129,57.487129],[-7.215662,57.487806],[-7.219721,57.487386],[-7.22199,57.488821],[-7.215594,57.488263],[-7.21547,57.490554],[-7.220362,57.492686],[-7.21752,57.49361],[-7.217489,57.49474],[-7.215325,57.494974],[-7.216173,57.496171],[-7.218205,57.496879],[-7.215159,57.49755],[-7.216628,57.499172],[-7.217644,57.498976],[-7.219653,57.500225],[-7.22444,57.499567],[-7.222623,57.498612],[-7.223191,57.497563],[-7.224393,57.497491],[-7.228566,57.49891],[-7.230817,57.49887],[-7.235459,57.499717],[-7.235478,57.500362],[-7.238001,57.501118],[-7.238254,57.500262],[-7.24025,57.499499],[-7.237961,57.496652],[-7.240036,57.497312],[-7.24144,57.499405],[-7.243501,57.500196],[-7.243574,57.498839],[-7.245958,57.498947],[-7.245132,57.499939],[-7.248194,57.501163],[-7.246302,57.502155],[-7.243136,57.500675],[-7.240262,57.502257],[-7.237751,57.502895],[-7.235905,57.501772],[-7.233249,57.501608],[-7.231353,57.50319],[-7.232202,57.503753],[-7.237399,57.504203],[-7.238062,57.503752],[-7.241512,57.504207],[-7.241707,57.505152],[-7.244572,57.505955],[-7.247952,57.506147],[-7.254106,57.505292],[-7.255436,57.506153]]],[[[-7.273719,57.506352],[-7.272845,57.505629],[-7.271321,57.505495],[-7.270163,57.50633],[-7.273719,57.506352]]],[[[-7.191822,57.511841],[-7.193521,57.512383],[-7.194413,57.511424],[-7.191911,57.51123],[-7.190267,57.510137],[-7.188308,57.510645],[-7.191822,57.511841]]],[[[-7.275948,57.50972],[-7.282104,57.509126],[-7.280052,57.508063],[-7.278145,57.508749],[-7.275142,57.508017],[-7.272866,57.508812],[-7.273981,57.509491],[-7.275948,57.50972]]],[[[-7.197714,57.513348],[-7.200413,57.513516],[-7.200217,57.512552],[-7.197075,57.510981],[-7.19492,57.512694],[-7.197714,57.513348]]],[[[-7.275741,57.512887],[-7.277303,57.514192],[-7.27806,57.513437],[-7.275741,57.512887]]],[[[-7.333854,57.513771],[-7.333103,57.516066],[-7.333643,57.517299],[-7.335544,57.515222],[-7.336339,57.513895],[-7.335862,57.512979],[-7.333854,57.513771]]],[[[-7.329488,57.51937],[-7.329607,57.520472],[-7.331351,57.521277],[-7.332318,57.520092],[-7.330225,57.518959],[-7.329488,57.51937]]],[[[-7.628043,57.50826],[-7.62984,57.508531],[-7.63168,57.507611],[-7.630033,57.506533],[-7.628355,57.506815],[-7.628043,57.50826]]],[[[-7.324259,57.522866],[-7.325432,57.523605],[-7.32692,57.522948],[-7.325685,57.521392],[-7.323394,57.521622],[-7.324259,57.522866]]],[[[-7.332238,57.527386],[-7.334498,57.527309],[-7.336658,57.526808],[-7.337311,57.525634],[-7.335301,57.525744],[-7.33323,57.5272],[-7.332238,57.527386]]],[[[-7.337975,57.530436],[-7.340098,57.529755],[-7.338465,57.529217],[-7.337975,57.530436]]],[[[-7.337113,57.532297],[-7.340125,57.530715],[-7.341577,57.531089],[-7.343912,57.529547],[-7.342501,57.528787],[-7.339798,57.530593],[-7.33813,57.530902],[-7.337113,57.532297]]],[[[-7.639949,57.52554],[-7.638495,57.524795],[-7.637304,57.522395],[-7.636854,57.52008],[-7.637511,57.519353],[-7.63606,57.518846],[-7.633015,57.519491],[-7.630458,57.521455],[-7.630501,57.522273],[-7.631722,57.523406],[-7.631038,57.524067],[-7.635079,57.52542],[-7.637249,57.524738],[-7.639949,57.52554]]],[[[-7.692487,57.527679],[-7.696946,57.527198],[-7.696711,57.525854],[-7.692622,57.524688],[-7.691972,57.525726],[-7.692487,57.527679]]],[[[-7.685721,57.528502],[-7.686537,57.528794],[-7.688532,57.528123],[-7.686763,57.527028],[-7.685721,57.528502]]],[[[-7.605349,57.533148],[-7.606652,57.532375],[-7.609107,57.531789],[-7.611687,57.528995],[-7.611658,57.528209],[-7.612825,57.527585],[-7.615384,57.527363],[-7.617716,57.528409],[-7.62191,57.526496],[-7.622733,57.525761],[-7.62102,57.525122],[-7.620924,57.523524],[-7.62419,57.519756],[-7.625574,57.518861],[-7.626238,57.517747],[-7.625989,57.516511],[-7.623383,57.515989],[-7.624456,57.513356],[-7.622463,57.512961],[-7.619853,57.513275],[-7.619867,57.511745],[-7.621751,57.511327],[-7.624415,57.511195],[-7.623937,57.510482],[-7.621001,57.511289],[-7.61873,57.510931],[-7.61722,57.51171],[-7.614023,57.511425],[-7.613127,57.512667],[-7.614078,57.513245],[-7.61155,57.513718],[-7.609185,57.515255],[-7.607824,57.515482],[-7.61016,57.517236],[-7.612157,57.51793],[-7.611529,57.519988],[-7.606235,57.521511],[-7.604773,57.521743],[-7.601658,57.52145],[-7.602049,57.522629],[-7.603377,57.522944],[-7.60338,57.524213],[-7.601832,57.526334],[-7.599758,57.527803],[-7.600107,57.530402],[-7.601688,57.531592],[-7.60178,57.532844],[-7.605349,57.533148]]],[[[-7.682462,57.529811],[-7.683705,57.530218],[-7.686363,57.52945],[-7.684374,57.528712],[-7.682462,57.529811]]],[[[-7.644731,57.535015],[-7.647167,57.535018],[-7.648205,57.533995],[-7.650311,57.532901],[-7.651816,57.532681],[-7.654466,57.532877],[-7.654457,57.531203],[-7.655979,57.530122],[-7.656716,57.528617],[-7.657599,57.528163],[-7.657581,57.527079],[-7.660661,57.525847],[-7.663931,57.52638],[-7.668183,57.524086],[-7.669939,57.523809],[-7.671308,57.52422],[-7.674101,57.524378],[-7.676791,57.525314],[-7.678765,57.524293],[-7.680491,57.524364],[-7.680078,57.523221],[-7.678349,57.522485],[-7.677513,57.521253],[-7.677903,57.52038],[-7.673466,57.51901],[-7.670162,57.521751],[-7.665927,57.522757],[-7.662046,57.522328],[-7.6594,57.521664],[-7.659595,57.522704],[-7.65664,57.523287],[-7.655687,57.523879],[-7.652507,57.523657],[-7.651118,57.524084],[-7.650383,57.525711],[-7.648295,57.526272],[-7.646293,57.525935],[-7.642064,57.524716],[-7.640079,57.524755],[-7.640302,57.526086],[-7.644242,57.527381],[-7.647033,57.529088],[-7.648248,57.531419],[-7.647443,57.532593],[-7.644264,57.533132],[-7.643482,57.533545],[-7.644731,57.535015]]],[[[-7.264582,57.554833],[-7.266503,57.55554],[-7.268305,57.554781],[-7.267627,57.553225],[-7.265733,57.553737],[-7.264644,57.55353],[-7.263156,57.554185],[-7.264582,57.554833]]],[[[-7.38534,57.553462],[-7.387521,57.553426],[-7.388601,57.552128],[-7.384166,57.552081],[-7.38416,57.551014],[-7.383176,57.550689],[-7.381737,57.551569],[-7.378879,57.551756],[-7.376518,57.55036],[-7.373895,57.550964],[-7.374784,57.551653],[-7.378312,57.553037],[-7.380824,57.552568],[-7.38195,57.553139],[-7.38534,57.553462]]],[[[-7.177268,57.561444],[-7.177924,57.562412],[-7.179783,57.562353],[-7.18072,57.561118],[-7.177688,57.560577],[-7.177268,57.561444]]],[[[-7.291985,57.557511],[-7.291632,57.556625],[-7.292753,57.556102],[-7.29467,57.557156],[-7.298485,57.55754],[-7.296888,57.555026],[-7.293117,57.55465],[-7.291503,57.555278],[-7.290337,57.554895],[-7.288045,57.556334],[-7.290486,57.556597],[-7.291985,57.557511]]],[[[-7.415962,57.56201],[-7.417022,57.562716],[-7.4185,57.562018],[-7.420267,57.560614],[-7.421008,57.558792],[-7.420648,57.558339],[-7.415861,57.558518],[-7.413478,57.559273],[-7.41102,57.559127],[-7.407252,57.559406],[-7.405245,57.560041],[-7.404803,57.56118],[-7.406684,57.561946],[-7.408231,57.561312],[-7.410371,57.561009],[-7.410647,57.562077],[-7.412255,57.56253],[-7.414715,57.561897],[-7.415962,57.56201]]],[[[-7.404769,57.56754],[-7.404423,57.568021],[-7.407214,57.569545],[-7.409551,57.569387],[-7.404769,57.56754]]],[[[-7.422032,57.55983],[-7.423623,57.560862],[-7.425687,57.563045],[-7.427814,57.564195],[-7.43143,57.567537],[-7.430934,57.56906],[-7.433773,57.569576],[-7.435572,57.56866],[-7.436889,57.567345],[-7.437572,57.56386],[-7.436755,57.561928],[-7.433259,57.557593],[-7.430371,57.555414],[-7.426458,57.55322],[-7.421522,57.551177],[-7.413148,57.550142],[-7.408665,57.550665],[-7.404987,57.552475],[-7.405592,57.553223],[-7.410862,57.55481],[-7.414506,57.555284],[-7.416088,57.558105],[-7.417497,57.558275],[-7.422223,57.557994],[-7.422032,57.55983]]],[[[-7.421717,57.571253],[-7.419571,57.572418],[-7.422699,57.57243],[-7.426163,57.570391],[-7.421717,57.571253]]],[[[-7.159249,57.592106],[-7.161264,57.591255],[-7.157946,57.589006],[-7.156146,57.590375],[-7.154687,57.590485],[-7.154424,57.591346],[-7.155749,57.591944],[-7.159249,57.592106]]],[[[-7.169512,57.594722],[-7.16844,57.593993],[-7.166801,57.594132],[-7.163147,57.595069],[-7.165266,57.595419],[-7.167364,57.596219],[-7.169742,57.596251],[-7.169512,57.594722]]],[[[-7.137472,57.597131],[-7.137462,57.597711],[-7.140103,57.597784],[-7.139393,57.596733],[-7.137472,57.597131]]],[[[-7.151694,57.601166],[-7.154957,57.601361],[-7.15436,57.600643],[-7.151694,57.601166]]],[[[-7.15592,57.603247],[-7.157066,57.603821],[-7.158366,57.603393],[-7.15839,57.602461],[-7.15592,57.603247]]],[[[-7.133449,57.602522],[-7.133929,57.603128],[-7.136185,57.603616],[-7.137635,57.604799],[-7.14028,57.603944],[-7.13821,57.60276],[-7.135444,57.602342],[-7.133449,57.602522]]],[[[-7.133632,57.607374],[-7.131517,57.606466],[-7.130914,57.607295],[-7.133632,57.607374]]],[[[-7.143764,57.615761],[-7.145076,57.614997],[-7.143663,57.614173],[-7.139464,57.613997],[-7.137923,57.613178],[-7.139069,57.612744],[-7.136912,57.61195],[-7.136494,57.612615],[-7.137133,57.614879],[-7.138616,57.615701],[-7.143764,57.615761]]],[[[-7.120304,57.612599],[-7.120616,57.613435],[-7.123099,57.61339],[-7.121355,57.614855],[-7.122913,57.615341],[-7.123669,57.617195],[-7.126222,57.618054],[-7.127648,57.617465],[-7.127984,57.616282],[-7.126665,57.61365],[-7.124576,57.612988],[-7.128634,57.611568],[-7.129733,57.610686],[-7.125674,57.60812],[-7.121266,57.607827],[-7.120032,57.607513],[-7.119728,57.609581],[-7.117497,57.609987],[-7.119597,57.610729],[-7.122283,57.61058],[-7.123433,57.611419],[-7.120337,57.611401],[-7.120304,57.612599]]],[[[-7.161637,57.616955],[-7.162227,57.615892],[-7.159951,57.61581],[-7.159815,57.616562],[-7.161637,57.616955]]],[[[-7.139471,57.620252],[-7.142119,57.619598],[-7.142173,57.618444],[-7.144301,57.618663],[-7.149444,57.617801],[-7.148017,57.616671],[-7.145833,57.6164],[-7.145044,57.617166],[-7.139919,57.616084],[-7.139065,57.616798],[-7.136839,57.617303],[-7.134584,57.617218],[-7.134096,57.618481],[-7.136573,57.61945],[-7.139471,57.620252]]],[[[-7.140418,57.620675],[-7.141258,57.621392],[-7.144576,57.621378],[-7.142347,57.62002],[-7.140418,57.620675]]],[[[-7.146337,57.621792],[-7.150021,57.621511],[-7.151959,57.620402],[-7.151831,57.619732],[-7.149885,57.618565],[-7.145839,57.618753],[-7.144458,57.620366],[-7.146956,57.62107],[-7.146337,57.621792]]],[[[-7.156591,57.621549],[-7.15889,57.622444],[-7.160594,57.622276],[-7.158001,57.620614],[-7.156388,57.62059],[-7.156591,57.621549]]],[[[-7.181658,57.622053],[-7.184751,57.621431],[-7.18852,57.621368],[-7.186785,57.62047],[-7.187104,57.619685],[-7.182433,57.619562],[-7.179042,57.620295],[-7.178478,57.621735],[-7.180066,57.622469],[-7.181658,57.622053]]],[[[-7.148206,57.628167],[-7.151484,57.627215],[-7.148816,57.626788],[-7.14626,57.627572],[-7.148206,57.628167]]],[[[-7.536935,57.613338],[-7.539597,57.612748],[-7.541453,57.6119],[-7.5404,57.610895],[-7.538091,57.611322],[-7.536935,57.613338]]],[[[-7.167591,57.629723],[-7.173245,57.629316],[-7.175046,57.628599],[-7.175804,57.62774],[-7.173457,57.627683],[-7.171368,57.625033],[-7.16851,57.624575],[-7.166689,57.623623],[-7.164633,57.62355],[-7.163966,57.622754],[-7.1617,57.622977],[-7.15939,57.622833],[-7.15955,57.624073],[-7.161091,57.625832],[-7.159018,57.62647],[-7.160033,57.627239],[-7.159666,57.628963],[-7.162016,57.628737],[-7.163571,57.629465],[-7.167251,57.629278],[-7.167591,57.629723]]],[[[-7.185283,57.633392],[-7.184666,57.632298],[-7.182409,57.632116],[-7.180343,57.63239],[-7.183878,57.633356],[-7.185283,57.633392]]],[[[-7.187605,57.636482],[-7.190008,57.637274],[-7.195771,57.637154],[-7.195939,57.63663],[-7.191866,57.636775],[-7.188518,57.636242],[-7.187605,57.636482]]],[[[-7.190684,57.638713],[-7.191026,57.638173],[-7.188635,57.637407],[-7.186392,57.637562],[-7.185533,57.634913],[-7.181725,57.634254],[-7.182585,57.633521],[-7.176714,57.632764],[-7.175757,57.631993],[-7.179696,57.631615],[-7.178661,57.630889],[-7.179049,57.629697],[-7.176624,57.629722],[-7.175087,57.629177],[-7.173701,57.629689],[-7.170177,57.630328],[-7.170965,57.630912],[-7.174611,57.631482],[-7.175624,57.632003],[-7.169512,57.631903],[-7.169869,57.632464],[-7.176267,57.633452],[-7.176123,57.633733],[-7.171109,57.633808],[-7.171343,57.634388],[-7.169082,57.634831],[-7.172649,57.636606],[-7.176903,57.636669],[-7.178404,57.637607],[-7.181612,57.638047],[-7.188157,57.638291],[-7.190684,57.638713]]],[[[-7.208445,57.638192],[-7.210624,57.638881],[-7.210889,57.638037],[-7.208445,57.638192]]],[[[-7.062568,57.646893],[-7.062166,57.648215],[-7.066375,57.649391],[-7.067713,57.648698],[-7.066679,57.647723],[-7.064755,57.646981],[-7.062568,57.646893]]],[[[-7.121407,57.649346],[-7.123382,57.649671],[-7.125467,57.649158],[-7.126592,57.649522],[-7.129042,57.648928],[-7.128929,57.647295],[-7.125608,57.646359],[-7.122125,57.646946],[-7.120591,57.646545],[-7.120367,57.647867],[-7.121407,57.649346]]],[[[-7.084816,57.65004],[-7.088357,57.650989],[-7.091646,57.651233],[-7.092121,57.650515],[-7.089799,57.648957],[-7.084194,57.649614],[-7.084816,57.65004]]],[[[-7.131665,57.650558],[-7.132833,57.649799],[-7.131632,57.649322],[-7.129942,57.650304],[-7.131665,57.650558]]],[[[-7.063946,57.654887],[-7.063238,57.655765],[-7.064719,57.656214],[-7.065546,57.655349],[-7.063946,57.654887]]],[[[-7.120865,57.653534],[-7.12361,57.653895],[-7.123895,57.65324],[-7.122189,57.652625],[-7.120865,57.653534]]],[[[-7.183864,57.651982],[-7.18449,57.651425],[-7.182339,57.650704],[-7.179705,57.650304],[-7.178546,57.651121],[-7.183864,57.651982]]],[[[-7.179426,57.65328],[-7.180394,57.652543],[-7.17801,57.652065],[-7.174425,57.652527],[-7.175776,57.653115],[-7.178634,57.652966],[-7.179426,57.65328]]],[[[-7.126913,57.655294],[-7.128263,57.655402],[-7.129735,57.656849],[-7.131053,57.655842],[-7.129705,57.654502],[-7.126913,57.655294]]],[[[-7.1702,57.654207],[-7.17079,57.654521],[-7.174974,57.654547],[-7.175346,57.654041],[-7.172043,57.653713],[-7.1702,57.654207]]],[[[-7.408581,57.645776],[-7.412876,57.646379],[-7.412042,57.645514],[-7.409757,57.644879],[-7.408581,57.645776]]],[[[-7.398876,57.647267],[-7.401272,57.647407],[-7.403464,57.646292],[-7.399797,57.645567],[-7.399807,57.646588],[-7.398876,57.647267]]],[[[-7.18114,57.655176],[-7.184278,57.656756],[-7.185025,57.656343],[-7.18114,57.655176]]],[[[-7.052408,57.662362],[-7.054786,57.662326],[-7.055466,57.661664],[-7.054596,57.66012],[-7.052257,57.659296],[-7.05341,57.657815],[-7.056187,57.6572],[-7.056924,57.656225],[-7.058709,57.655128],[-7.058989,57.654064],[-7.057284,57.654056],[-7.055111,57.653455],[-7.055747,57.65248],[-7.05413,57.650997],[-7.048522,57.650795],[-7.046772,57.650581],[-7.044572,57.650872],[-7.045003,57.651921],[-7.044139,57.652288],[-7.044609,57.654456],[-7.047778,57.654797],[-7.046683,57.656271],[-7.047191,57.657569],[-7.045255,57.658375],[-7.046081,57.660632],[-7.046714,57.66102],[-7.04899,57.660785],[-7.049081,57.66174],[-7.05055,57.662405],[-7.052408,57.662362]]],[[[-7.270794,57.652888],[-7.270499,57.653295],[-7.272631,57.654424],[-7.27406,57.653413],[-7.272087,57.652789],[-7.270794,57.652888]]],[[[-7.190208,57.657894],[-7.19134,57.658068],[-7.19227,57.656819],[-7.190087,57.655586],[-7.185084,57.654523],[-7.184634,57.655545],[-7.185421,57.656295],[-7.19035,57.657191],[-7.190208,57.657894]]],[[[-7.04188,57.664622],[-7.041455,57.662796],[-7.039749,57.662293],[-7.038952,57.663545],[-7.040703,57.664626],[-7.04188,57.664622]]],[[[-7.277831,57.655798],[-7.278108,57.654641],[-7.275636,57.65452],[-7.276187,57.655595],[-7.277831,57.655798]]],[[[-7.068319,57.662901],[-7.071134,57.663496],[-7.071739,57.66398],[-7.075197,57.663621],[-7.073079,57.66264],[-7.070225,57.662102],[-7.067663,57.660406],[-7.071183,57.660485],[-7.071741,57.661261],[-7.074433,57.662297],[-7.075197,57.660939],[-7.073378,57.660459],[-7.072874,57.658478],[-7.074004,57.657613],[-7.073156,57.656293],[-7.070469,57.656222],[-7.068271,57.656652],[-7.069193,57.65796],[-7.064912,57.661141],[-7.06621,57.662083],[-7.068319,57.662901]]],[[[-7.059004,57.663133],[-7.06228,57.66423],[-7.062026,57.662773],[-7.05968,57.662381],[-7.059004,57.663133]]],[[[-7.1301,57.663933],[-7.132391,57.663278],[-7.133988,57.663322],[-7.137601,57.66213],[-7.137136,57.661397],[-7.138414,57.660639],[-7.138747,57.659555],[-7.140873,57.659275],[-7.141807,57.6571],[-7.144772,57.656583],[-7.144181,57.655437],[-7.14225,57.654958],[-7.142682,57.653038],[-7.143671,57.651252],[-7.13768,57.651024],[-7.135303,57.652308],[-7.135793,57.653575],[-7.137561,57.65344],[-7.138657,57.653949],[-7.138023,57.65522],[-7.136562,57.655037],[-7.133939,57.65554],[-7.132214,57.657108],[-7.129727,57.657857],[-7.13304,57.659682],[-7.131715,57.660462],[-7.129897,57.660837],[-7.127823,57.662914],[-7.1301,57.663933]]],[[[-7.158177,57.663729],[-7.159379,57.663095],[-7.158943,57.662096],[-7.157661,57.661741],[-7.154035,57.663057],[-7.158177,57.663729]]],[[[-7.094029,57.666447],[-7.095425,57.666764],[-7.096954,57.667728],[-7.098118,57.666988],[-7.097007,57.666313],[-7.101037,57.665066],[-7.101053,57.664458],[-7.103066,57.664089],[-7.100137,57.661379],[-7.097944,57.660445],[-7.097117,57.659516],[-7.093875,57.658658],[-7.091575,57.65902],[-7.088609,57.659059],[-7.087143,57.660098],[-7.086478,57.661997],[-7.089914,57.66399],[-7.089499,57.664619],[-7.092731,57.665334],[-7.094029,57.666447]]],[[[-7.43035,57.654735],[-7.432871,57.654748],[-7.434058,57.653906],[-7.432503,57.653387],[-7.429118,57.653906],[-7.43035,57.654735]]],[[[-7.156376,57.666412],[-7.158182,57.665236],[-7.156529,57.664655],[-7.154871,57.665277],[-7.156376,57.666412]]],[[[-7.147711,57.666109],[-7.147492,57.66717],[-7.150075,57.667267],[-7.150868,57.666349],[-7.149653,57.665773],[-7.14852,57.664416],[-7.144262,57.665174],[-7.145705,57.66588],[-7.147711,57.666109]]],[[[-7.07171,57.670792],[-7.072526,57.672123],[-7.074281,57.671283],[-7.07171,57.670792]]],[[[-7.075636,57.672204],[-7.078998,57.671813],[-7.078724,57.670636],[-7.076517,57.669564],[-7.074991,57.67048],[-7.075636,57.672204]]],[[[-7.138392,57.670609],[-7.136617,57.669696],[-7.136699,57.669032],[-7.132298,57.668073],[-7.132947,57.667736],[-7.130257,57.666109],[-7.128007,57.66593],[-7.126065,57.666266],[-7.128867,57.66738],[-7.129576,57.668116],[-7.132399,57.668428],[-7.132365,57.669136],[-7.137313,57.670581],[-7.138392,57.670609]]],[[[-7.134038,57.671052],[-7.136217,57.670783],[-7.131329,57.668998],[-7.12966,57.66966],[-7.134038,57.671052]]],[[[-7.062782,57.674435],[-7.064122,57.675186],[-7.06677,57.672988],[-7.063799,57.671677],[-7.063327,57.670764],[-7.061634,57.670608],[-7.060695,57.671455],[-7.063331,57.673072],[-7.062782,57.674435]]],[[[-7.122406,57.671385],[-7.124021,57.672476],[-7.126061,57.6717],[-7.124346,57.670852],[-7.119414,57.669937],[-7.11857,57.669372],[-7.115521,57.669006],[-7.114361,57.669651],[-7.11523,57.67093],[-7.116901,57.671231],[-7.114919,57.672238],[-7.117173,57.672439],[-7.117564,57.671465],[-7.119114,57.670907],[-7.122406,57.671385]]],[[[-7.079465,57.674723],[-7.082554,57.675372],[-7.082697,57.67412],[-7.079916,57.673809],[-7.079465,57.674723]]],[[[-7.296582,57.666673],[-7.299199,57.666194],[-7.298307,57.665431],[-7.296582,57.666673]]],[[[-7.084,57.673829],[-7.083741,57.674978],[-7.085068,57.675756],[-7.088604,57.674921],[-7.09034,57.673776],[-7.089929,57.671984],[-7.088419,57.670317],[-7.084,57.673829]]],[[[-7.096397,57.669977],[-7.097634,57.67143],[-7.099753,57.67282],[-7.102461,57.673687],[-7.104026,57.674843],[-7.106244,57.675203],[-7.10692,57.674703],[-7.106331,57.673557],[-7.104891,57.672936],[-7.105105,57.671771],[-7.107193,57.670621],[-7.109235,57.670039],[-7.108563,57.669139],[-7.104459,57.668972],[-7.103514,57.669478],[-7.100344,57.669382],[-7.096397,57.669977]]],[[[-7.284281,57.664247],[-7.283745,57.665988],[-7.285918,57.666495],[-7.287868,57.667889],[-7.291014,57.667811],[-7.292256,57.666139],[-7.294458,57.66575],[-7.295244,57.664867],[-7.295186,57.663839],[-7.298034,57.663395],[-7.302658,57.66361],[-7.307073,57.663146],[-7.309484,57.661116],[-7.309154,57.660214],[-7.306928,57.660055],[-7.305566,57.66103],[-7.302074,57.661016],[-7.299648,57.662009],[-7.297059,57.660988],[-7.29583,57.660136],[-7.293464,57.660224],[-7.288987,57.659519],[-7.288511,57.659062],[-7.285731,57.659192],[-7.284488,57.658481],[-7.284934,57.657637],[-7.284709,57.656084],[-7.281335,57.656053],[-7.280267,57.656535],[-7.282445,57.658564],[-7.281938,57.660198],[-7.280761,57.660536],[-7.283396,57.66176],[-7.284281,57.664247]]],[[[-7.139757,57.674666],[-7.142463,57.674502],[-7.142275,57.673299],[-7.138681,57.672352],[-7.137339,57.672245],[-7.133432,57.670924],[-7.131476,57.671458],[-7.134785,57.672826],[-7.137403,57.673461],[-7.139757,57.674666]]],[[[-7.13986,57.676632],[-7.144542,57.677549],[-7.141516,57.676056],[-7.13986,57.676632]]],[[[-7.138045,57.67775],[-7.139232,57.677949],[-7.140002,57.678997],[-7.141393,57.679118],[-7.138771,57.676892],[-7.138045,57.67775]]],[[[-7.077261,57.681825],[-7.077672,57.681219],[-7.076118,57.679599],[-7.073921,57.679561],[-7.074856,57.680545],[-7.077261,57.681825]]],[[[-7.396502,57.670005],[-7.39746,57.668727],[-7.399241,57.668469],[-7.398202,57.66762],[-7.398615,57.666963],[-7.401603,57.665472],[-7.405859,57.666159],[-7.40798,57.665298],[-7.411438,57.665383],[-7.412643,57.666315],[-7.412142,57.667525],[-7.414189,57.668544],[-7.415932,57.668684],[-7.41514,57.667142],[-7.412871,57.66631],[-7.412393,57.66436],[-7.414596,57.663643],[-7.415256,57.664207],[-7.417709,57.664161],[-7.418176,57.662338],[-7.421559,57.661044],[-7.427231,57.660068],[-7.43119,57.660501],[-7.432098,57.661414],[-7.433897,57.660528],[-7.436058,57.661086],[-7.437082,57.661983],[-7.440494,57.662237],[-7.440636,57.660956],[-7.438179,57.660229],[-7.437529,57.657943],[-7.432557,57.657124],[-7.429026,57.657375],[-7.427035,57.65796],[-7.425657,57.656791],[-7.423344,57.656323],[-7.422549,57.657082],[-7.417561,57.65778],[-7.41589,57.657361],[-7.415612,57.656613],[-7.413619,57.655535],[-7.410185,57.656379],[-7.407407,57.65761],[-7.408653,57.658052],[-7.408497,57.658937],[-7.404255,57.659577],[-7.402596,57.660105],[-7.398445,57.659741],[-7.395924,57.659128],[-7.394035,57.657596],[-7.396527,57.65665],[-7.395209,57.653902],[-7.39328,57.653738],[-7.393641,57.655096],[-7.392313,57.656719],[-7.39342,57.659436],[-7.393004,57.660185],[-7.389088,57.661922],[-7.387916,57.662827],[-7.383845,57.663316],[-7.380613,57.664282],[-7.379887,57.665159],[-7.377057,57.666427],[-7.37542,57.667756],[-7.378808,57.669003],[-7.382332,57.667543],[-7.384801,57.668353],[-7.386103,57.668357],[-7.388029,57.669122],[-7.389751,57.668997],[-7.396502,57.670005]]],[[[-7.144964,57.687856],[-7.146025,57.687637],[-7.145529,57.686451],[-7.146945,57.686074],[-7.14778,57.685149],[-7.145122,57.683881],[-7.146496,57.683087],[-7.143989,57.681642],[-7.142452,57.683059],[-7.14323,57.684989],[-7.144964,57.687856]]],[[[-7.019092,57.692293],[-7.021448,57.693351],[-7.022755,57.692472],[-7.020366,57.691118],[-7.01833,57.69146],[-7.018216,57.689908],[-7.015806,57.69004],[-7.015841,57.690956],[-7.01441,57.691242],[-7.015151,57.692347],[-7.019092,57.692293]]],[[[-7.157045,57.689927],[-7.154725,57.688438],[-7.15418,57.688978],[-7.157045,57.689927]]],[[[-7.15488,57.691244],[-7.156148,57.691768],[-7.157268,57.690728],[-7.154195,57.689737],[-7.15488,57.691244]]],[[[-7.251689,57.690191],[-7.252097,57.689585],[-7.258784,57.688078],[-7.258628,57.685214],[-7.255096,57.683332],[-7.252504,57.682837],[-7.249816,57.68411],[-7.249508,57.684883],[-7.24623,57.686207],[-7.245638,57.687163],[-7.248187,57.689851],[-7.251689,57.690191]]],[[[-7.177791,57.695237],[-7.17884,57.69478],[-7.17804,57.693517],[-7.176042,57.692582],[-7.17196,57.691301],[-7.169952,57.691244],[-7.168327,57.690631],[-7.165952,57.691115],[-7.166621,57.692388],[-7.170492,57.694254],[-7.174654,57.695275],[-7.177791,57.695237]]],[[[-7.013551,57.703233],[-7.015606,57.703935],[-7.016637,57.703008],[-7.016626,57.701595],[-7.018498,57.700914],[-7.018323,57.700318],[-7.01472,57.698752],[-7.011177,57.699261],[-7.01045,57.700812],[-7.011554,57.701996],[-7.013404,57.70175],[-7.013551,57.703233]]],[[[-7.097612,57.702531],[-7.098085,57.703204],[-7.101813,57.701871],[-7.098662,57.700558],[-7.096143,57.700093],[-7.09435,57.701389],[-7.096144,57.701713],[-7.097612,57.702531]]],[[[-7.033292,57.70687],[-7.033143,57.705441],[-7.034784,57.705574],[-7.036708,57.704728],[-7.040014,57.705055],[-7.040862,57.704562],[-7.038138,57.702589],[-7.035014,57.701372],[-7.032283,57.700665],[-7.030047,57.700634],[-7.029066,57.701379],[-7.024882,57.699929],[-7.026592,57.702081],[-7.029687,57.703491],[-7.030816,57.705439],[-7.033292,57.70687]]],[[[-7.092295,57.704455],[-7.093496,57.702481],[-7.092738,57.701693],[-7.091303,57.703496],[-7.089641,57.703217],[-7.089043,57.704163],[-7.091719,57.703767],[-7.092295,57.704455]]],[[[-7.009138,57.712388],[-7.010396,57.710732],[-7.009594,57.709913],[-7.004926,57.708493],[-7.004413,57.706484],[-7.002894,57.705892],[-7.001214,57.70608],[-6.999066,57.708414],[-7.003482,57.709476],[-7.003499,57.710691],[-7.007102,57.712073],[-7.009138,57.712388]]],[[[-7.716822,57.688473],[-7.717133,57.687779],[-7.715466,57.687229],[-7.714754,57.688251],[-7.716822,57.688473]]],[[[-7.150667,57.71438],[-7.151419,57.713932],[-7.148367,57.711898],[-7.147788,57.712142],[-7.150667,57.71438]]],[[[-7.06688,57.721186],[-7.067412,57.720603],[-7.065971,57.718717],[-7.066402,57.717476],[-7.063822,57.716217],[-7.062394,57.716764],[-7.063792,57.718467],[-7.062412,57.719238],[-7.062823,57.72031],[-7.065471,57.720672],[-7.06688,57.721186]]],[[[-7.289047,57.719708],[-7.295227,57.719534],[-7.296791,57.719019],[-7.298656,57.717748],[-7.300325,57.717602],[-7.301113,57.716727],[-7.299428,57.715903],[-7.301337,57.713726],[-7.300289,57.71197],[-7.298606,57.711496],[-7.298024,57.70982],[-7.296233,57.708955],[-7.296678,57.708378],[-7.298783,57.708285],[-7.299349,57.707159],[-7.298813,57.706601],[-7.295851,57.705718],[-7.295224,57.703904],[-7.293823,57.703859],[-7.291764,57.702141],[-7.28839,57.701941],[-7.286833,57.702159],[-7.282786,57.700573],[-7.279744,57.699999],[-7.278047,57.701042],[-7.276344,57.701522],[-7.27647,57.702849],[-7.27772,57.704844],[-7.281868,57.707406],[-7.282664,57.708889],[-7.281394,57.710436],[-7.278524,57.711451],[-7.278419,57.712571],[-7.276171,57.713241],[-7.275138,57.714576],[-7.275198,57.715446],[-7.278533,57.717043],[-7.289047,57.719708]]],[[[-7.682172,57.7035],[-7.684028,57.702791],[-7.681714,57.701869],[-7.682533,57.700981],[-7.68498,57.700821],[-7.688296,57.699992],[-7.689839,57.700611],[-7.69114,57.700332],[-7.689482,57.697806],[-7.684368,57.698693],[-7.683448,57.6999],[-7.681081,57.701105],[-7.679517,57.703457],[-7.682172,57.7035]]],[[[-7.169512,57.594722],[-7.171811,57.595308],[-7.1753,57.594211],[-7.175622,57.59494],[-7.174654,57.596121],[-7.179908,57.596127],[-7.182426,57.598094],[-7.180649,57.59794],[-7.179128,57.597043],[-7.176281,57.597169],[-7.17818,57.598744],[-7.17635,57.598689],[-7.17591,57.597963],[-7.173349,57.598251],[-7.172502,57.597614],[-7.170988,57.597896],[-7.167762,57.596557],[-7.164165,57.596921],[-7.165596,57.598195],[-7.172764,57.599191],[-7.171696,57.599848],[-7.173758,57.601715],[-7.173316,57.603566],[-7.170883,57.604147],[-7.170231,57.602244],[-7.172397,57.601243],[-7.17007,57.600699],[-7.17025,57.600035],[-7.163557,57.598499],[-7.162417,57.597627],[-7.158776,57.596841],[-7.156051,57.597063],[-7.158489,57.598085],[-7.155741,57.598621],[-7.159169,57.600139],[-7.159395,57.601682],[-7.161413,57.601089],[-7.163038,57.601826],[-7.162339,57.602911],[-7.160291,57.603185],[-7.159729,57.60423],[-7.157528,57.604257],[-7.157099,57.604819],[-7.154142,57.605335],[-7.155704,57.606734],[-7.153185,57.607403],[-7.153699,57.608526],[-7.155117,57.608978],[-7.156185,57.608185],[-7.158937,57.608841],[-7.159378,57.607956],[-7.157129,57.607088],[-7.164039,57.607629],[-7.166349,57.607609],[-7.168025,57.608389],[-7.167855,57.608929],[-7.16993,57.61012],[-7.172746,57.609942],[-7.173088,57.610682],[-7.175186,57.611457],[-7.177304,57.611167],[-7.175512,57.609251],[-7.173031,57.609423],[-7.17291,57.608136],[-7.174644,57.607801],[-7.176333,57.60822],[-7.177359,57.609939],[-7.181887,57.609983],[-7.181547,57.611126],[-7.17917,57.611801],[-7.175806,57.611883],[-7.173534,57.612751],[-7.174624,57.613357],[-7.171338,57.614525],[-7.171082,57.613366],[-7.167939,57.613697],[-7.167413,57.612907],[-7.164408,57.612237],[-7.16376,57.611373],[-7.161446,57.611061],[-7.158998,57.611212],[-7.15882,57.61048],[-7.161662,57.61072],[-7.163803,57.610431],[-7.164488,57.609827],[-7.16262,57.608701],[-7.160296,57.609083],[-7.160181,57.609725],[-7.158257,57.610062],[-7.156061,57.609644],[-7.153665,57.609904],[-7.154166,57.611316],[-7.154183,57.613267],[-7.159327,57.614367],[-7.160957,57.614407],[-7.161877,57.615149],[-7.166862,57.615828],[-7.173761,57.616234],[-7.176253,57.616244],[-7.177987,57.61699],[-7.179371,57.616161],[-7.184205,57.615788],[-7.186797,57.615957],[-7.188792,57.615268],[-7.189598,57.615925],[-7.187322,57.617475],[-7.185501,57.616536],[-7.184639,57.617734],[-7.186271,57.618504],[-7.188249,57.618125],[-7.188701,57.619319],[-7.190433,57.619886],[-7.194088,57.619406],[-7.195838,57.619816],[-7.196862,57.618739],[-7.19842,57.618862],[-7.197931,57.619944],[-7.200454,57.619945],[-7.204301,57.621696],[-7.20343,57.622619],[-7.200494,57.623763],[-7.20009,57.624302],[-7.197337,57.624607],[-7.195837,57.625538],[-7.19248,57.625697],[-7.192451,57.626322],[-7.194437,57.627348],[-7.193493,57.628335],[-7.189861,57.629033],[-7.19025,57.630408],[-7.188516,57.631344],[-7.19105,57.633295],[-7.193286,57.633855],[-7.194413,57.633525],[-7.197361,57.63344],[-7.197907,57.632345],[-7.199998,57.63276],[-7.199228,57.633833],[-7.199364,57.634891],[-7.204434,57.635262],[-7.206614,57.634732],[-7.211639,57.634535],[-7.21293,57.635307],[-7.215549,57.635902],[-7.215046,57.636723],[-7.213195,57.636106],[-7.211544,57.636112],[-7.211928,57.637738],[-7.215054,57.638239],[-7.218477,57.638475],[-7.218939,57.639776],[-7.215862,57.641291],[-7.214557,57.640347],[-7.212523,57.640066],[-7.21056,57.639159],[-7.208744,57.639165],[-7.206885,57.639831],[-7.208858,57.640429],[-7.208946,57.641096],[-7.213545,57.640816],[-7.214555,57.641948],[-7.209392,57.641631],[-7.207057,57.640854],[-7.205268,57.641194],[-7.205061,57.641967],[-7.20268,57.641555],[-7.198479,57.641294],[-7.19813,57.640503],[-7.19594,57.641263],[-7.194514,57.6422],[-7.191325,57.641377],[-7.189055,57.642222],[-7.190429,57.642966],[-7.192809,57.643241],[-7.194272,57.642911],[-7.198188,57.643537],[-7.199719,57.642457],[-7.201718,57.642528],[-7.202336,57.643501],[-7.204551,57.644512],[-7.200664,57.644308],[-7.199149,57.643808],[-7.194883,57.643606],[-7.193253,57.644056],[-7.188698,57.643478],[-7.186754,57.645313],[-7.184824,57.645842],[-7.181348,57.645413],[-7.182011,57.644711],[-7.178238,57.64479],[-7.174595,57.644017],[-7.173296,57.643261],[-7.170739,57.642978],[-7.167814,57.644592],[-7.166239,57.643664],[-7.166242,57.642686],[-7.161387,57.639169],[-7.164624,57.63828],[-7.165475,57.636833],[-7.167046,57.636849],[-7.168076,57.635831],[-7.167378,57.634645],[-7.167874,57.632771],[-7.165044,57.632747],[-7.16426,57.633072],[-7.160639,57.631911],[-7.161023,57.633191],[-7.162785,57.633668],[-7.162834,57.6346],[-7.160685,57.634122],[-7.159552,57.634529],[-7.154627,57.633106],[-7.157221,57.631704],[-7.156878,57.631003],[-7.15479,57.630589],[-7.152835,57.629463],[-7.147311,57.62837],[-7.144123,57.628691],[-7.143139,57.628082],[-7.140063,57.627655],[-7.139135,57.628469],[-7.136168,57.628862],[-7.13112,57.628525],[-7.12635,57.629717],[-7.123154,57.632048],[-7.121622,57.631943],[-7.120184,57.633194],[-7.121864,57.633796],[-7.1209,57.634406],[-7.118726,57.63449],[-7.116681,57.634174],[-7.115864,57.633112],[-7.112256,57.631958],[-7.112059,57.631132],[-7.115343,57.62966],[-7.118575,57.629001],[-7.120613,57.62743],[-7.128339,57.626795],[-7.131514,57.625431],[-7.130268,57.624139],[-7.122468,57.622823],[-7.122987,57.621924],[-7.124696,57.621085],[-7.120784,57.61814],[-7.120365,57.617131],[-7.118184,57.617121],[-7.114889,57.61617],[-7.113068,57.615142],[-7.111896,57.613071],[-7.110524,57.61202],[-7.105808,57.610731],[-7.105789,57.609166],[-7.103339,57.609449],[-7.102293,57.607967],[-7.100121,57.607885],[-7.099107,57.60945],[-7.098094,57.609509],[-7.095087,57.610559],[-7.095172,57.612115],[-7.093833,57.613087],[-7.092343,57.613457],[-7.092776,57.614393],[-7.091003,57.615023],[-7.090839,57.615943],[-7.091943,57.617302],[-7.090363,57.618229],[-7.090336,57.619832],[-7.089462,57.620951],[-7.08718,57.622798],[-7.083464,57.623447],[-7.081648,57.625086],[-7.081888,57.626365],[-7.07605,57.629549],[-7.076009,57.630757],[-7.074985,57.631653],[-7.072769,57.632354],[-7.069552,57.634723],[-7.070909,57.63573],[-7.070199,57.63665],[-7.067395,57.637779],[-7.065709,57.63916],[-7.063118,57.640304],[-7.0634,57.641966],[-7.066375,57.643929],[-7.070709,57.644862],[-7.070519,57.64536],[-7.072783,57.646074],[-7.072702,57.646874],[-7.074198,57.647668],[-7.074964,57.648862],[-7.076682,57.648571],[-7.075901,57.64683],[-7.077436,57.646526],[-7.081917,57.646533],[-7.081184,57.647159],[-7.082438,57.647854],[-7.084782,57.647394],[-7.08736,57.646226],[-7.093581,57.646752],[-7.094101,57.647859],[-7.092182,57.648338],[-7.093003,57.650894],[-7.09702,57.652227],[-7.098313,57.653007],[-7.097038,57.654204],[-7.098224,57.654514],[-7.097941,57.656599],[-7.101594,57.657102],[-7.10448,57.657093],[-7.108975,57.660596],[-7.11257,57.661424],[-7.116919,57.661666],[-7.11699,57.660624],[-7.119364,57.65978],[-7.121831,57.659541],[-7.122986,57.658266],[-7.119202,57.658635],[-7.118095,57.657038],[-7.113033,57.655061],[-7.112578,57.654186],[-7.110116,57.654379],[-7.10752,57.654036],[-7.105649,57.654217],[-7.103798,57.65489],[-7.103657,57.653733],[-7.106339,57.653918],[-7.106673,57.652444],[-7.105801,57.65139],[-7.104,57.65139],[-7.09911,57.650835],[-7.10171,57.65019],[-7.102125,57.649687],[-7.099985,57.648778],[-7.103844,57.648419],[-7.105901,57.649079],[-7.109305,57.648708],[-7.108168,57.647508],[-7.111372,57.648049],[-7.117849,57.647946],[-7.119263,57.6473],[-7.118002,57.64651],[-7.120765,57.646349],[-7.121811,57.645434],[-7.126246,57.645411],[-7.126118,57.644687],[-7.129624,57.644086],[-7.129867,57.643014],[-7.130968,57.642376],[-7.130911,57.641316],[-7.133504,57.640792],[-7.135491,57.6409],[-7.135392,57.639964],[-7.137846,57.639576],[-7.138728,57.640535],[-7.136301,57.640638],[-7.134021,57.641837],[-7.135792,57.642611],[-7.136226,57.643304],[-7.138814,57.643572],[-7.137739,57.644628],[-7.139282,57.645389],[-7.139864,57.646778],[-7.139417,57.648591],[-7.137945,57.649875],[-7.135978,57.64991],[-7.134682,57.650592],[-7.143457,57.650752],[-7.145485,57.649842],[-7.146943,57.650183],[-7.148246,57.649369],[-7.150067,57.64943],[-7.152099,57.65044],[-7.152266,57.651265],[-7.15449,57.652029],[-7.15432,57.652549],[-7.155806,57.653735],[-7.158925,57.654183],[-7.16335,57.654317],[-7.166497,57.653486],[-7.166809,57.652731],[-7.164381,57.652066],[-7.167759,57.651568],[-7.166775,57.649903],[-7.170591,57.650374],[-7.172604,57.650231],[-7.17244,57.649495],[-7.174787,57.649651],[-7.174762,57.64895],[-7.169763,57.648201],[-7.167671,57.647243],[-7.164992,57.647227],[-7.166182,57.646215],[-7.167741,57.646498],[-7.171408,57.647787],[-7.172539,57.645541],[-7.174342,57.645598],[-7.17552,57.647263],[-7.179523,57.648795],[-7.179721,57.649358],[-7.182783,57.649759],[-7.183885,57.648076],[-7.181693,57.648184],[-7.179228,57.647084],[-7.18099,57.646548],[-7.183682,57.646541],[-7.186666,57.64699],[-7.189506,57.648772],[-7.188128,57.649229],[-7.187593,57.650942],[-7.186423,57.652093],[-7.187346,57.65309],[-7.18686,57.654212],[-7.189602,57.655246],[-7.192242,57.655866],[-7.193152,57.655712],[-7.194674,57.656846],[-7.193142,57.657283],[-7.195502,57.658117],[-7.19732,57.658087],[-7.20248,57.658545],[-7.201403,57.657579],[-7.20156,57.656346],[-7.203389,57.656105],[-7.205292,57.656552],[-7.205305,57.657816],[-7.208541,57.658663],[-7.209311,57.657187],[-7.213271,57.657352],[-7.213514,57.658049],[-7.211244,57.660302],[-7.209634,57.659905],[-7.206861,57.660235],[-7.206377,57.659725],[-7.201792,57.659306],[-7.200989,57.658561],[-7.197456,57.658626],[-7.196799,57.659314],[-7.19398,57.659264],[-7.191941,57.658569],[-7.189682,57.658446],[-7.18829,57.657752],[-7.186668,57.657967],[-7.18396,57.657108],[-7.177484,57.65708],[-7.17713,57.658188],[-7.175127,57.657973],[-7.172825,57.657074],[-7.171587,57.657696],[-7.169619,57.65702],[-7.167428,57.657254],[-7.167061,57.658151],[-7.164438,57.658654],[-7.165127,57.660133],[-7.168666,57.660398],[-7.169746,57.659796],[-7.171788,57.660454],[-7.176052,57.660338],[-7.179142,57.659698],[-7.180007,57.660401],[-7.182556,57.660269],[-7.182336,57.661601],[-7.178556,57.660941],[-7.172429,57.660828],[-7.172722,57.661649],[-7.174636,57.661647],[-7.175759,57.662343],[-7.1796,57.662901],[-7.179668,57.663843],[-7.177603,57.663495],[-7.175005,57.66376],[-7.174296,57.665084],[-7.174741,57.666141],[-7.171261,57.666765],[-7.173702,57.667745],[-7.172013,57.669029],[-7.169886,57.669067],[-7.16862,57.667085],[-7.168235,57.665738],[-7.166249,57.663875],[-7.16449,57.663673],[-7.161058,57.666454],[-7.1628,57.667067],[-7.1589,57.668221],[-7.158691,57.670056],[-7.159611,57.670796],[-7.159831,57.672164],[-7.158642,57.672654],[-7.159079,57.674368],[-7.15701,57.675465],[-7.156246,57.676852],[-7.157707,57.676943],[-7.158795,57.676147],[-7.160925,57.675772],[-7.164393,57.675828],[-7.164027,57.676563],[-7.165546,57.678265],[-7.16263,57.678541],[-7.164082,57.679242],[-7.167418,57.679137],[-7.168181,57.680073],[-7.172964,57.680926],[-7.167863,57.681665],[-7.166924,57.682149],[-7.170598,57.683119],[-7.170836,57.683726],[-7.175334,57.682759],[-7.17578,57.684463],[-7.174507,57.684956],[-7.17673,57.685648],[-7.177687,57.686702],[-7.180448,57.68721],[-7.185462,57.688668],[-7.187346,57.687921],[-7.189885,57.687762],[-7.192691,57.688988],[-7.192967,57.690038],[-7.19501,57.690867],[-7.193288,57.692216],[-7.194031,57.693292],[-7.192491,57.693513],[-7.19137,57.693023],[-7.188205,57.693212],[-7.186164,57.694097],[-7.187823,57.695644],[-7.191571,57.696704],[-7.192481,57.697519],[-7.183911,57.701049],[-7.182037,57.702806],[-7.177506,57.704075],[-7.179356,57.7063],[-7.177247,57.707391],[-7.176606,57.708313],[-7.176085,57.710963],[-7.170208,57.711091],[-7.169177,57.712344],[-7.166982,57.711336],[-7.166208,57.712038],[-7.16819,57.713715],[-7.171135,57.715552],[-7.171508,57.716393],[-7.173169,57.71763],[-7.173473,57.71853],[-7.1726,57.719344],[-7.167696,57.719633],[-7.167449,57.720871],[-7.165508,57.72146],[-7.161875,57.720724],[-7.160502,57.720081],[-7.158433,57.719777],[-7.159298,57.718787],[-7.158499,57.717777],[-7.155957,57.716618],[-7.150922,57.718361],[-7.1504,57.719108],[-7.152225,57.722457],[-7.152652,57.724267],[-7.150995,57.72727],[-7.148351,57.727904],[-7.145444,57.728034],[-7.143859,57.72926],[-7.144704,57.731659],[-7.146126,57.732126],[-7.147485,57.733637],[-7.149318,57.73434],[-7.150931,57.73427],[-7.153342,57.735756],[-7.154323,57.735819],[-7.158821,57.737921],[-7.161397,57.738643],[-7.166222,57.738943],[-7.169555,57.738799],[-7.181763,57.737676],[-7.18896,57.736287],[-7.198301,57.733903],[-7.205783,57.723621],[-7.213094,57.715413],[-7.217207,57.712953],[-7.224765,57.707259],[-7.225983,57.706719],[-7.227805,57.707127],[-7.228705,57.706721],[-7.228258,57.704967],[-7.226759,57.704543],[-7.222148,57.704413],[-7.218289,57.704871],[-7.215235,57.703262],[-7.209454,57.703036],[-7.207135,57.703163],[-7.204655,57.702662],[-7.202414,57.70276],[-7.200735,57.702293],[-7.198163,57.702759],[-7.195733,57.702751],[-7.195729,57.703331],[-7.19861,57.704748],[-7.202534,57.705679],[-7.203014,57.706635],[-7.202292,57.708046],[-7.199187,57.709474],[-7.195956,57.710369],[-7.192626,57.709983],[-7.192454,57.709352],[-7.190041,57.707815],[-7.189304,57.70643],[-7.189486,57.705268],[-7.188315,57.704475],[-7.18611,57.704814],[-7.182903,57.703014],[-7.183078,57.702066],[-7.184181,57.701222],[-7.19296,57.697566],[-7.19501,57.697092],[-7.199101,57.697123],[-7.200598,57.696193],[-7.201554,57.6939],[-7.203464,57.693749],[-7.204703,57.692836],[-7.206196,57.691002],[-7.206118,57.688962],[-7.204227,57.687719],[-7.20554,57.687051],[-7.20766,57.68704],[-7.208539,57.685271],[-7.211837,57.683916],[-7.211579,57.685184],[-7.212459,57.68591],[-7.210109,57.686688],[-7.209846,57.68746],[-7.211383,57.688071],[-7.21391,57.688446],[-7.215988,57.690329],[-7.217678,57.69062],[-7.219433,57.689971],[-7.222701,57.689644],[-7.22373,57.688683],[-7.222433,57.686505],[-7.232109,57.683196],[-7.2369,57.681176],[-7.239,57.679738],[-7.239732,57.678186],[-7.237108,57.675772],[-7.238207,57.675246],[-7.239799,57.675525],[-7.242062,57.672962],[-7.243805,57.67178],[-7.248192,57.672296],[-7.248293,57.671368],[-7.250002,57.670395],[-7.256339,57.667924],[-7.259826,57.666899],[-7.263919,57.666354],[-7.273642,57.665962],[-7.275837,57.66526],[-7.278332,57.663875],[-7.278803,57.662948],[-7.275813,57.662283],[-7.271895,57.660637],[-7.267603,57.659344],[-7.266727,57.658584],[-7.264864,57.658007],[-7.26201,57.657951],[-7.258795,57.658675],[-7.255738,57.658513],[-7.253949,57.657878],[-7.251793,57.657732],[-7.250706,57.658322],[-7.246018,57.657337],[-7.242805,57.655773],[-7.243615,57.65528],[-7.245718,57.655217],[-7.245011,57.654358],[-7.246443,57.653346],[-7.248139,57.654513],[-7.25185,57.655381],[-7.255048,57.656739],[-7.256278,57.656292],[-7.258896,57.656414],[-7.260546,57.65579],[-7.264262,57.655358],[-7.264047,57.653869],[-7.260988,57.653199],[-7.257226,57.653371],[-7.253806,57.652625],[-7.255003,57.651434],[-7.259124,57.651531],[-7.26148,57.649524],[-7.260903,57.648748],[-7.265471,57.6484],[-7.266378,57.647674],[-7.270004,57.647584],[-7.27379,57.649523],[-7.272341,57.651299],[-7.277852,57.653444],[-7.280964,57.653085],[-7.283012,57.651787],[-7.285212,57.652937],[-7.286826,57.652531],[-7.287267,57.650892],[-7.284091,57.651184],[-7.283468,57.651625],[-7.280796,57.650559],[-7.281484,57.649106],[-7.279082,57.648497],[-7.280892,57.646949],[-7.283083,57.64805],[-7.286186,57.648195],[-7.28605,57.646829],[-7.28458,57.645582],[-7.281829,57.64466],[-7.282574,57.642932],[-7.285921,57.642006],[-7.285463,57.641132],[-7.290308,57.642905],[-7.291363,57.641682],[-7.293935,57.643613],[-7.292585,57.643962],[-7.2926,57.645497],[-7.291441,57.647374],[-7.293037,57.648385],[-7.292139,57.64974],[-7.288661,57.649853],[-7.292355,57.651661],[-7.291511,57.652745],[-7.292434,57.653276],[-7.299194,57.654445],[-7.305634,57.654505],[-7.306505,57.653909],[-7.309023,57.654251],[-7.310337,57.653174],[-7.312051,57.652438],[-7.314688,57.652573],[-7.315282,57.651317],[-7.316485,57.651507],[-7.318351,57.652816],[-7.315856,57.653902],[-7.313453,57.654555],[-7.310692,57.654664],[-7.310668,57.655333],[-7.312097,57.656199],[-7.313283,57.65622],[-7.314441,57.657807],[-7.317388,57.658474],[-7.320865,57.65822],[-7.323766,57.658365],[-7.323101,57.655981],[-7.32545,57.655762],[-7.326585,57.656552],[-7.328262,57.656844],[-7.329507,57.655776],[-7.332362,57.656148],[-7.332817,57.657786],[-7.335498,57.657937],[-7.336669,57.660495],[-7.337384,57.661002],[-7.336324,57.663807],[-7.334064,57.66592],[-7.324419,57.672132],[-7.322059,57.672904],[-7.319483,57.672535],[-7.323123,57.675808],[-7.325177,57.678486],[-7.325186,57.679909],[-7.323631,57.682612],[-7.320364,57.683952],[-7.318925,57.68411],[-7.317438,57.685123],[-7.315527,57.68579],[-7.309437,57.686738],[-7.308831,57.689177],[-7.312066,57.69175],[-7.312572,57.692858],[-7.312114,57.693746],[-7.314718,57.694081],[-7.315363,57.693438],[-7.317893,57.693331],[-7.319293,57.692732],[-7.321579,57.691079],[-7.32143,57.690464],[-7.323467,57.689636],[-7.322856,57.688731],[-7.320624,57.688103],[-7.321469,57.686695],[-7.322787,57.685632],[-7.327799,57.684169],[-7.329288,57.683384],[-7.331452,57.683666],[-7.334334,57.683328],[-7.335248,57.682808],[-7.335395,57.681641],[-7.334438,57.680547],[-7.335199,57.679759],[-7.337141,57.679246],[-7.339182,57.679187],[-7.340857,57.679567],[-7.342043,57.68041],[-7.344938,57.680728],[-7.344937,57.679869],[-7.346412,57.678826],[-7.345733,57.678148],[-7.343635,57.677576],[-7.341753,57.679101],[-7.339768,57.678891],[-7.337647,57.677712],[-7.335556,57.675033],[-7.335464,57.673156],[-7.336303,57.671445],[-7.340083,57.66845],[-7.345842,57.665415],[-7.35033,57.663545],[-7.355054,57.662024],[-7.361283,57.660993],[-7.371451,57.660125],[-7.374587,57.659131],[-7.373694,57.658055],[-7.371034,57.656402],[-7.370144,57.655155],[-7.369525,57.651834],[-7.370407,57.650793],[-7.370683,57.649408],[-7.37292,57.648285],[-7.37448,57.648187],[-7.37466,57.646108],[-7.376947,57.645625],[-7.375621,57.644656],[-7.376394,57.64387],[-7.37466,57.642078],[-7.374094,57.639768],[-7.376608,57.638482],[-7.377406,57.637495],[-7.37986,57.636629],[-7.380401,57.635685],[-7.382103,57.635367],[-7.382735,57.633899],[-7.380094,57.632355],[-7.382018,57.632053],[-7.387278,57.634507],[-7.389281,57.634831],[-7.391167,57.634622],[-7.391182,57.635591],[-7.392629,57.63687],[-7.394445,57.637454],[-7.397433,57.637636],[-7.399299,57.638335],[-7.403166,57.638777],[-7.406211,57.63821],[-7.407763,57.638431],[-7.408456,57.637398],[-7.41142,57.637905],[-7.415914,57.639301],[-7.415241,57.640747],[-7.413436,57.640685],[-7.411522,57.642198],[-7.410371,57.642414],[-7.41084,57.643928],[-7.412112,57.643847],[-7.417032,57.644938],[-7.418364,57.646372],[-7.421281,57.647696],[-7.421166,57.649343],[-7.419464,57.651036],[-7.421034,57.652503],[-7.424567,57.653166],[-7.42467,57.652289],[-7.427332,57.653078],[-7.427313,57.651945],[-7.425918,57.651704],[-7.423854,57.650425],[-7.427326,57.65046],[-7.436382,57.653589],[-7.438608,57.654062],[-7.442235,57.656204],[-7.444739,57.65683],[-7.44623,57.657579],[-7.446396,57.65895],[-7.448423,57.659299],[-7.449542,57.660893],[-7.447507,57.66156],[-7.449404,57.663119],[-7.451704,57.661473],[-7.454181,57.662045],[-7.455508,57.661704],[-7.455482,57.659518],[-7.457787,57.659577],[-7.457883,57.658304],[-7.460918,57.657968],[-7.463272,57.658323],[-7.464621,57.659399],[-7.466081,57.659591],[-7.467684,57.659145],[-7.468708,57.660039],[-7.469988,57.659956],[-7.473521,57.662026],[-7.479389,57.662104],[-7.480974,57.662986],[-7.481787,57.662301],[-7.483744,57.662918],[-7.484213,57.662082],[-7.485743,57.661756],[-7.486834,57.660759],[-7.484169,57.659897],[-7.488501,57.658679],[-7.489759,57.659727],[-7.491809,57.660457],[-7.494631,57.659245],[-7.49273,57.658612],[-7.491291,57.657644],[-7.491035,57.655414],[-7.49004,57.654542],[-7.487723,57.654306],[-7.486436,57.653317],[-7.486743,57.652134],[-7.485691,57.650539],[-7.488606,57.649894],[-7.490385,57.650359],[-7.491511,57.651366],[-7.492601,57.651361],[-7.493247,57.650285],[-7.492265,57.648668],[-7.489695,57.647027],[-7.494507,57.645535],[-7.493983,57.644686],[-7.4973,57.641104],[-7.497677,57.638748],[-7.501339,57.638933],[-7.503339,57.637895],[-7.499466,57.636456],[-7.49875,57.634808],[-7.499733,57.634233],[-7.497624,57.632354],[-7.498065,57.630589],[-7.499779,57.629892],[-7.501715,57.629721],[-7.501926,57.628436],[-7.500556,57.628009],[-7.501075,57.62723],[-7.503058,57.626277],[-7.506807,57.625661],[-7.508771,57.626605],[-7.509125,57.627374],[-7.511708,57.627921],[-7.512423,57.627286],[-7.511451,57.625913],[-7.512482,57.624954],[-7.515158,57.623991],[-7.516737,57.624576],[-7.518145,57.62427],[-7.520123,57.624662],[-7.521246,57.623948],[-7.522827,57.624255],[-7.526846,57.622403],[-7.525297,57.621424],[-7.523333,57.622132],[-7.520286,57.620991],[-7.515422,57.620111],[-7.51432,57.619287],[-7.514624,57.618076],[-7.515847,57.618158],[-7.517075,57.61624],[-7.515811,57.615668],[-7.514645,57.61351],[-7.515885,57.611505],[-7.517449,57.610584],[-7.520173,57.610597],[-7.521045,57.609372],[-7.518391,57.608079],[-7.51858,57.606654],[-7.52021,57.604811],[-7.522779,57.603287],[-7.525409,57.602623],[-7.528223,57.602277],[-7.530989,57.60256],[-7.531721,57.603283],[-7.532711,57.605403],[-7.53257,57.60728],[-7.532883,57.60896],[-7.534474,57.609573],[-7.535107,57.6108],[-7.536688,57.61061],[-7.539094,57.60942],[-7.540621,57.608319],[-7.542619,57.608521],[-7.543017,57.606013],[-7.545877,57.605956],[-7.547254,57.60511],[-7.547568,57.604135],[-7.549108,57.602873],[-7.547755,57.602201],[-7.548205,57.601265],[-7.546939,57.599462],[-7.544849,57.599154],[-7.542684,57.600545],[-7.540556,57.600918],[-7.538201,57.600889],[-7.535123,57.600149],[-7.532738,57.598814],[-7.530979,57.597089],[-7.530108,57.594344],[-7.528843,57.592371],[-7.525145,57.590181],[-7.524803,57.588238],[-7.522412,57.588628],[-7.523222,57.589626],[-7.520784,57.590692],[-7.518148,57.590885],[-7.515039,57.590515],[-7.511039,57.589403],[-7.509224,57.588337],[-7.50695,57.587574],[-7.504807,57.586204],[-7.503482,57.584606],[-7.504349,57.58323],[-7.500474,57.582828],[-7.496021,57.584421],[-7.495223,57.58533],[-7.490875,57.585703],[-7.493096,57.587228],[-7.49532,57.589691],[-7.495462,57.591049],[-7.494082,57.59279],[-7.492943,57.59317],[-7.492349,57.594265],[-7.48916,57.593438],[-7.489492,57.592626],[-7.488251,57.592152],[-7.487925,57.591145],[-7.488834,57.590357],[-7.48529,57.590341],[-7.483881,57.589953],[-7.483112,57.588573],[-7.485067,57.587881],[-7.486279,57.585096],[-7.49041,57.584396],[-7.492608,57.585013],[-7.493735,57.582836],[-7.490318,57.580197],[-7.489397,57.576908],[-7.486429,57.57563],[-7.483959,57.573667],[-7.483004,57.571035],[-7.483573,57.567975],[-7.478841,57.568221],[-7.473417,57.567622],[-7.46922,57.566721],[-7.465225,57.564883],[-7.464118,57.565224],[-7.462672,57.566988],[-7.459678,57.567772],[-7.457741,57.568949],[-7.449364,57.570109],[-7.444634,57.569928],[-7.440237,57.572883],[-7.436327,57.574045],[-7.434474,57.57585],[-7.431677,57.576681],[-7.429738,57.578405],[-7.430553,57.579716],[-7.42979,57.580909],[-7.434677,57.580729],[-7.435184,57.582394],[-7.438571,57.582497],[-7.438562,57.583808],[-7.439983,57.58547],[-7.442422,57.585732],[-7.442472,57.586561],[-7.440429,57.587536],[-7.437383,57.587045],[-7.430917,57.584036],[-7.429492,57.584741],[-7.427815,57.584102],[-7.424893,57.583853],[-7.426211,57.582133],[-7.423102,57.582051],[-7.420162,57.581359],[-7.418612,57.580216],[-7.417536,57.578118],[-7.415153,57.578834],[-7.411381,57.579195],[-7.41263,57.578295],[-7.414306,57.578206],[-7.41322,57.576358],[-7.41357,57.575365],[-7.413016,57.574442],[-7.413919,57.573986],[-7.409761,57.572871],[-7.408544,57.570486],[-7.405076,57.570278],[-7.402648,57.567745],[-7.398956,57.566076],[-7.394966,57.565837],[-7.39524,57.566369],[-7.392144,57.567016],[-7.390806,57.566592],[-7.39031,57.565548],[-7.391865,57.564527],[-7.391484,57.563449],[-7.389054,57.563561],[-7.387026,57.564192],[-7.385107,57.563645],[-7.381271,57.563866],[-7.38148,57.562687],[-7.379328,57.561623],[-7.376493,57.561095],[-7.373269,57.559706],[-7.372688,57.558763],[-7.370896,57.558882],[-7.36967,57.559547],[-7.367624,57.558059],[-7.365594,57.557738],[-7.365543,57.556591],[-7.362781,57.555171],[-7.357098,57.554134],[-7.354897,57.55431],[-7.352857,57.554945],[-7.351411,57.554157],[-7.349437,57.553715],[-7.347932,57.554086],[-7.344789,57.55354],[-7.341868,57.553688],[-7.340294,57.554599],[-7.337869,57.555023],[-7.336271,57.554082],[-7.335759,57.553063],[-7.332132,57.553261],[-7.329655,57.552898],[-7.326469,57.553791],[-7.323068,57.553323],[-7.321598,57.555039],[-7.318196,57.555556],[-7.31556,57.554901],[-7.311261,57.554167],[-7.314136,57.553682],[-7.315846,57.553022],[-7.317814,57.552807],[-7.320286,57.551952],[-7.320186,57.553051],[-7.323283,57.552546],[-7.324096,57.552868],[-7.326278,57.552141],[-7.328278,57.552513],[-7.335089,57.552866],[-7.33788,57.551961],[-7.335992,57.550566],[-7.334772,57.550951],[-7.331979,57.550527],[-7.331287,57.549993],[-7.335769,57.549558],[-7.337383,57.550012],[-7.33901,57.549507],[-7.34311,57.549333],[-7.343134,57.550394],[-7.340636,57.550542],[-7.341188,57.551326],[-7.340412,57.552298],[-7.341081,57.552983],[-7.344386,57.552753],[-7.34676,57.551947],[-7.348216,57.552134],[-7.34899,57.551168],[-7.350662,57.551596],[-7.353164,57.550925],[-7.355421,57.550793],[-7.355597,57.547892],[-7.35315,57.547748],[-7.353197,57.546819],[-7.350379,57.546292],[-7.349548,57.545219],[-7.347684,57.544735],[-7.347481,57.543794],[-7.345181,57.54288],[-7.345779,57.541999],[-7.353317,57.540809],[-7.353082,57.541272],[-7.355055,57.542781],[-7.358433,57.543161],[-7.359479,57.542668],[-7.359752,57.541201],[-7.358338,57.540062],[-7.359011,57.538992],[-7.361612,57.540316],[-7.360506,57.541249],[-7.365877,57.541196],[-7.367272,57.539986],[-7.370795,57.538485],[-7.372505,57.539126],[-7.372313,57.540802],[-7.370695,57.542118],[-7.367337,57.542959],[-7.364994,57.54399],[-7.364605,57.545353],[-7.366153,57.545804],[-7.365551,57.547427],[-7.366996,57.548037],[-7.36704,57.548902],[-7.370477,57.548825],[-7.37382,57.546524],[-7.37484,57.544836],[-7.37615,57.544463],[-7.377034,57.545383],[-7.378558,57.545839],[-7.382191,57.546026],[-7.381553,57.545032],[-7.383228,57.543714],[-7.381223,57.543292],[-7.383094,57.542042],[-7.383752,57.541114],[-7.383099,57.539969],[-7.380823,57.539897],[-7.378983,57.539246],[-7.381207,57.538742],[-7.384409,57.540197],[-7.386453,57.539758],[-7.385938,57.538093],[-7.389299,57.536921],[-7.391099,57.536817],[-7.391598,57.537893],[-7.393492,57.539139],[-7.398101,57.540257],[-7.399794,57.540326],[-7.401022,57.542884],[-7.401649,57.543481],[-7.403973,57.544156],[-7.403962,57.546992],[-7.4032,57.548543],[-7.400588,57.550514],[-7.402554,57.551251],[-7.405683,57.547444],[-7.406314,57.545565],[-7.405006,57.543396],[-7.393748,57.534652],[-7.38968,57.530123],[-7.388024,57.529016],[-7.384097,57.527451],[-7.381653,57.52603],[-7.375055,57.519825],[-7.373249,57.516542],[-7.370549,57.506551],[-7.368356,57.501838],[-7.367002,57.500897],[-7.361754,57.499648],[-7.358297,57.497907],[-7.35523,57.497192],[-7.354278,57.497531],[-7.35449,57.500364],[-7.352957,57.501287],[-7.353273,57.502524],[-7.356031,57.502949],[-7.35657,57.504866],[-7.357529,57.505656],[-7.354396,57.509098],[-7.348859,57.511752],[-7.347962,57.513442],[-7.347888,57.514934],[-7.349033,57.517212],[-7.351026,57.519336],[-7.35532,57.522176],[-7.358304,57.523558],[-7.358433,57.524776],[-7.357362,57.525898],[-7.351498,57.527628],[-7.349484,57.528804],[-7.349977,57.529829],[-7.346581,57.528972],[-7.345272,57.530213],[-7.345713,57.530771],[-7.343838,57.532088],[-7.346497,57.532932],[-7.346568,57.53434],[-7.348666,57.534646],[-7.34887,57.536351],[-7.350295,57.536757],[-7.350819,57.538128],[-7.351722,57.538305],[-7.353048,57.540011],[-7.352132,57.5409],[-7.345244,57.541901],[-7.342159,57.541107],[-7.341484,57.540407],[-7.342281,57.539443],[-7.33912,57.538583],[-7.338705,57.537321],[-7.335503,57.535208],[-7.333031,57.535535],[-7.330804,57.536184],[-7.328789,57.536047],[-7.325844,57.535263],[-7.325528,57.531837],[-7.325774,57.530633],[-7.323953,57.530281],[-7.324426,57.528445],[-7.322179,57.527649],[-7.321053,57.526188],[-7.317037,57.524737],[-7.318235,57.522516],[-7.317587,57.521735],[-7.320503,57.521806],[-7.322228,57.52102],[-7.32433,57.521266],[-7.325423,57.520329],[-7.323892,57.518694],[-7.327083,57.5186],[-7.326556,57.51777],[-7.327842,57.516142],[-7.327858,57.514022],[-7.327382,57.512598],[-7.325515,57.512308],[-7.324507,57.511247],[-7.322648,57.510958],[-7.320266,57.509784],[-7.318064,57.50958],[-7.315477,57.50997],[-7.312968,57.508377],[-7.30847,57.509284],[-7.3048,57.508376],[-7.302144,57.509779],[-7.302742,57.511285],[-7.302053,57.512957],[-7.300302,57.511532],[-7.298955,57.511977],[-7.300661,57.514013],[-7.302809,57.514155],[-7.304582,57.516328],[-7.306074,57.516908],[-7.308603,57.517033],[-7.308781,57.518254],[-7.310749,57.518724],[-7.310176,57.519597],[-7.312765,57.521213],[-7.312591,57.521736],[-7.308094,57.520769],[-7.306553,57.520754],[-7.304896,57.519496],[-7.305548,57.518494],[-7.304265,57.517854],[-7.302483,57.517728],[-7.29906,57.514878],[-7.297789,57.514728],[-7.296632,57.513431],[-7.29373,57.512371],[-7.291237,57.51267],[-7.287975,57.51361],[-7.289219,57.514109],[-7.29017,57.515316],[-7.289307,57.515981],[-7.28599,57.516287],[-7.284994,57.514597],[-7.283685,57.514141],[-7.282669,57.515043],[-7.27943,57.516074],[-7.277281,57.515989],[-7.276137,57.515065],[-7.276322,57.514025],[-7.274972,57.512964],[-7.271234,57.513402],[-7.267975,57.510376],[-7.270478,57.50984],[-7.270956,57.50859],[-7.268688,57.507747],[-7.265314,57.507948],[-7.265262,57.507179],[-7.267159,57.506942],[-7.266785,57.504992],[-7.265172,57.505806],[-7.262433,57.504148],[-7.261279,57.504835],[-7.261026,57.506096],[-7.261703,57.50714],[-7.263314,57.507121],[-7.265056,57.50801],[-7.264116,57.509202],[-7.265059,57.509829],[-7.267562,57.510435],[-7.27297,57.515724],[-7.274617,57.516435],[-7.274809,57.517499],[-7.269399,57.517675],[-7.267467,57.517206],[-7.265591,57.515164],[-7.268534,57.515305],[-7.269155,57.514185],[-7.268557,57.513288],[-7.266111,57.513139],[-7.26526,57.514036],[-7.26376,57.51135],[-7.261068,57.510591],[-7.260333,57.509752],[-7.257353,57.508909],[-7.253696,57.508189],[-7.252686,57.508258],[-7.249096,57.507364],[-7.248001,57.507765],[-7.247916,57.509555],[-7.249291,57.51028],[-7.242552,57.510683],[-7.242906,57.509656],[-7.245131,57.508618],[-7.24663,57.508578],[-7.247417,57.507254],[-7.24588,57.507026],[-7.239986,57.507721],[-7.237738,57.507842],[-7.236428,57.508675],[-7.234606,57.50844],[-7.232886,57.508746],[-7.232288,57.507434],[-7.230336,57.507695],[-7.229807,57.508266],[-7.230826,57.509367],[-7.226852,57.508933],[-7.228574,57.510684],[-7.233019,57.512065],[-7.237441,57.511764],[-7.238936,57.514145],[-7.236827,57.514768],[-7.234166,57.513817],[-7.232041,57.512061],[-7.230442,57.511871],[-7.229204,57.513326],[-7.227417,57.5134],[-7.225796,57.512532],[-7.22697,57.512087],[-7.228511,57.512923],[-7.229399,57.511653],[-7.228009,57.510852],[-7.224554,57.509699],[-7.22211,57.508203],[-7.220171,57.507694],[-7.21958,57.509114],[-7.215492,57.508703],[-7.213851,57.5081],[-7.212682,57.508752],[-7.209784,57.508333],[-7.208573,57.50907],[-7.205302,57.508297],[-7.203344,57.507343],[-7.20203,57.507744],[-7.20185,57.509119],[-7.19996,57.509229],[-7.198823,57.510108],[-7.201116,57.511997],[-7.203973,57.512748],[-7.206593,57.512871],[-7.209314,57.513791],[-7.213901,57.514123],[-7.217843,57.515552],[-7.21953,57.514605],[-7.221875,57.51673],[-7.223628,57.516594],[-7.225029,57.517328],[-7.225929,57.518937],[-7.223505,57.518242],[-7.22126,57.518276],[-7.222782,57.519734],[-7.221284,57.520023],[-7.219332,57.519454],[-7.219195,57.518393],[-7.217534,57.518125],[-7.217346,57.517098],[-7.215695,57.516779],[-7.212613,57.515185],[-7.209055,57.514023],[-7.206726,57.513641],[-7.204967,57.513825],[-7.203068,57.513085],[-7.200203,57.513862],[-7.198764,57.514848],[-7.195359,57.514188],[-7.189956,57.512413],[-7.188011,57.511315],[-7.184368,57.510686],[-7.18199,57.510951],[-7.179959,57.509833],[-7.179447,57.508941],[-7.17781,57.508945],[-7.176597,57.508352],[-7.17488,57.509156],[-7.171484,57.509669],[-7.170285,57.509111],[-7.167255,57.508731],[-7.16406,57.508718],[-7.16277,57.510234],[-7.160664,57.510117],[-7.158214,57.509053],[-7.157092,57.509571],[-7.157686,57.510402],[-7.15556,57.510498],[-7.153949,57.510987],[-7.151241,57.510517],[-7.151087,57.509903],[-7.148962,57.509477],[-7.149078,57.510655],[-7.147435,57.511948],[-7.145774,57.51244],[-7.145833,57.513136],[-7.148404,57.513157],[-7.147982,57.513903],[-7.153365,57.513724],[-7.157563,57.512602],[-7.163359,57.512445],[-7.16495,57.51193],[-7.167561,57.511774],[-7.168672,57.513595],[-7.163862,57.512983],[-7.162637,57.513312],[-7.162598,57.514393],[-7.160622,57.514137],[-7.158767,57.514433],[-7.155802,57.514452],[-7.154372,57.514748],[-7.151912,57.514323],[-7.149878,57.515189],[-7.147827,57.515174],[-7.146509,57.516438],[-7.148678,57.518],[-7.149476,57.519623],[-7.147394,57.520748],[-7.144533,57.521566],[-7.147426,57.523698],[-7.142672,57.525799],[-7.140938,57.525011],[-7.138996,57.52577],[-7.139254,57.526587],[-7.138031,57.527168],[-7.140128,57.528697],[-7.139309,57.530593],[-7.138057,57.531625],[-7.135125,57.532537],[-7.136082,57.533154],[-7.133775,57.533883],[-7.134028,57.535258],[-7.131899,57.537009],[-7.132153,57.537508],[-7.136019,57.537399],[-7.134045,57.538465],[-7.13393,57.539428],[-7.136091,57.539389],[-7.139876,57.540364],[-7.137871,57.541098],[-7.140144,57.541685],[-7.136487,57.543859],[-7.138327,57.544269],[-7.135808,57.545394],[-7.135466,57.546523],[-7.133103,57.547213],[-7.133952,57.548016],[-7.133929,57.549092],[-7.136369,57.550198],[-7.136714,57.551453],[-7.134127,57.552161],[-7.133686,57.552656],[-7.135078,57.554039],[-7.137583,57.554581],[-7.142191,57.554383],[-7.142977,57.554615],[-7.146034,57.554275],[-7.14739,57.555106],[-7.14474,57.555718],[-7.14742,57.556266],[-7.155497,57.555796],[-7.158308,57.554075],[-7.160641,57.554001],[-7.162828,57.554429],[-7.166729,57.552312],[-7.164743,57.551647],[-7.164458,57.549944],[-7.162841,57.548913],[-7.165659,57.547367],[-7.168164,57.548335],[-7.171723,57.548764],[-7.174466,57.548454],[-7.17502,57.549052],[-7.177265,57.547898],[-7.178308,57.548876],[-7.177055,57.549949],[-7.18057,57.550655],[-7.179679,57.551389],[-7.18088,57.552419],[-7.186672,57.552196],[-7.192385,57.552199],[-7.196201,57.551618],[-7.200338,57.551238],[-7.203453,57.551677],[-7.20561,57.553135],[-7.208956,57.552667],[-7.211982,57.551775],[-7.214906,57.55206],[-7.217851,57.551713],[-7.220581,57.552073],[-7.221097,57.551354],[-7.224055,57.551672],[-7.225693,57.552137],[-7.229275,57.552333],[-7.232541,57.551516],[-7.234078,57.55147],[-7.237231,57.550355],[-7.238101,57.550958],[-7.249169,57.551389],[-7.252345,57.550979],[-7.254528,57.551457],[-7.256953,57.55083],[-7.257512,57.551874],[-7.262906,57.552431],[-7.26438,57.551001],[-7.26541,57.551618],[-7.268483,57.551193],[-7.269108,57.552018],[-7.270699,57.551729],[-7.271911,57.552518],[-7.27351,57.552376],[-7.277033,57.552991],[-7.281945,57.553038],[-7.285287,57.551524],[-7.283982,57.549083],[-7.28517,57.548056],[-7.282439,57.547259],[-7.281205,57.545935],[-7.28432,57.545612],[-7.286592,57.546378],[-7.287835,57.547265],[-7.286255,57.547661],[-7.289218,57.549506],[-7.287932,57.550241],[-7.286553,57.549991],[-7.285948,57.550961],[-7.288409,57.551284],[-7.289574,57.550058],[-7.292281,57.549461],[-7.293499,57.550126],[-7.292871,57.551444],[-7.296539,57.551754],[-7.299581,57.550867],[-7.29786,57.550311],[-7.299262,57.54876],[-7.30072,57.549594],[-7.303595,57.548374],[-7.304829,57.548959],[-7.304938,57.550438],[-7.302755,57.551228],[-7.301102,57.551178],[-7.300019,57.551985],[-7.303305,57.553823],[-7.301769,57.554756],[-7.306256,57.556427],[-7.305402,57.557533],[-7.300572,57.557613],[-7.302351,57.558612],[-7.297872,57.558753],[-7.295987,57.558553],[-7.294386,57.559225],[-7.295672,57.560588],[-7.293621,57.561191],[-7.296127,57.562435],[-7.29733,57.563727],[-7.29386,57.562818],[-7.294269,57.561927],[-7.292172,57.561804],[-7.291484,57.560834],[-7.292092,57.560026],[-7.291797,57.558892],[-7.289765,57.558789],[-7.288598,57.557863],[-7.283544,57.558526],[-7.280825,57.557834],[-7.283759,57.557457],[-7.279746,57.555435],[-7.280592,57.554791],[-7.277453,57.55456],[-7.274371,57.555178],[-7.272357,57.554611],[-7.270205,57.556559],[-7.270886,57.557419],[-7.273594,57.557062],[-7.275764,57.557463],[-7.275493,57.558446],[-7.269637,57.558478],[-7.272906,57.559709],[-7.273959,57.560611],[-7.279437,57.560702],[-7.281059,57.560288],[-7.283416,57.560883],[-7.28482,57.560721],[-7.285917,57.561775],[-7.28861,57.561836],[-7.290075,57.563006],[-7.288248,57.563345],[-7.287498,57.564089],[-7.282995,57.563721],[-7.276335,57.562525],[-7.271603,57.562769],[-7.269874,57.563641],[-7.2672,57.564482],[-7.266491,57.566089],[-7.265397,57.566962],[-7.263738,57.566357],[-7.2594,57.565802],[-7.257267,57.565959],[-7.257328,57.56683],[-7.258866,57.567974],[-7.258447,57.569842],[-7.256901,57.570593],[-7.256722,57.571552],[-7.257892,57.573039],[-7.257178,57.5735],[-7.254544,57.572831],[-7.255549,57.572126],[-7.253906,57.57105],[-7.252048,57.570928],[-7.250076,57.570272],[-7.24951,57.569084],[-7.247652,57.569214],[-7.247636,57.56837],[-7.249801,57.566965],[-7.248615,57.566108],[-7.248521,57.563615],[-7.250239,57.562752],[-7.248695,57.561687],[-7.246858,57.561894],[-7.24745,57.559903],[-7.248397,57.558982],[-7.25214,57.557309],[-7.254065,57.558116],[-7.25573,57.558285],[-7.256421,57.557104],[-7.258978,57.557996],[-7.255811,57.559136],[-7.257121,57.561016],[-7.259475,57.56045],[-7.26209,57.560764],[-7.260219,57.562061],[-7.262743,57.561974],[-7.261794,57.559872],[-7.269695,57.559431],[-7.267585,57.558356],[-7.267083,57.557144],[-7.264656,57.555606],[-7.26345,57.555866],[-7.258674,57.555349],[-7.25673,57.554532],[-7.254973,57.554922],[-7.253227,57.55412],[-7.250421,57.554001],[-7.249368,57.554533],[-7.247677,57.554307],[-7.247196,57.555331],[-7.245101,57.555665],[-7.240708,57.554131],[-7.239692,57.554949],[-7.238143,57.553943],[-7.235283,57.553708],[-7.229531,57.554614],[-7.228579,57.556198],[-7.224811,57.555582],[-7.226621,57.55813],[-7.224958,57.559277],[-7.224102,57.558018],[-7.221315,57.557926],[-7.221294,57.556793],[-7.218649,57.556946],[-7.213637,57.557888],[-7.210149,57.557362],[-7.206709,57.557655],[-7.206317,57.558089],[-7.208681,57.559483],[-7.208868,57.560146],[-7.211977,57.561454],[-7.216266,57.562175],[-7.219447,57.562052],[-7.223799,57.56234],[-7.222355,57.564289],[-7.220596,57.562886],[-7.215358,57.56273],[-7.213154,57.562421],[-7.212387,57.561629],[-7.208875,57.561302],[-7.207252,57.560667],[-7.205441,57.561178],[-7.204522,57.562008],[-7.201755,57.561862],[-7.199513,57.560469],[-7.198337,57.560617],[-7.197273,57.562128],[-7.196074,57.561241],[-7.19274,57.559521],[-7.189263,57.559974],[-7.186902,57.559383],[-7.186259,57.559689],[-7.183911,57.558895],[-7.182823,57.559367],[-7.180629,57.558769],[-7.178649,57.559975],[-7.186171,57.559864],[-7.184286,57.561408],[-7.182783,57.561083],[-7.182391,57.562093],[-7.181211,57.562272],[-7.181757,57.563694],[-7.186306,57.565126],[-7.185825,57.565447],[-7.182108,57.564746],[-7.180926,57.565267],[-7.179073,57.564249],[-7.178488,57.563432],[-7.176394,57.563419],[-7.173631,57.565009],[-7.17211,57.56432],[-7.170061,57.564044],[-7.169808,57.56279],[-7.168497,57.562117],[-7.166778,57.559729],[-7.168196,57.55905],[-7.166581,57.558405],[-7.1648,57.558532],[-7.163588,57.557547],[-7.160706,57.558237],[-7.158947,57.557693],[-7.156123,57.557673],[-7.154806,57.557295],[-7.152571,57.557594],[-7.148983,57.557147],[-7.147784,57.557416],[-7.145254,57.557173],[-7.143625,57.557655],[-7.144331,57.558569],[-7.142501,57.558887],[-7.141133,57.558365],[-7.135201,57.558879],[-7.134555,57.559526],[-7.132014,57.560561],[-7.13144,57.561952],[-7.129887,57.562812],[-7.127891,57.56225],[-7.125322,57.563447],[-7.124429,57.564239],[-7.128152,57.566578],[-7.125796,57.566217],[-7.124074,57.565395],[-7.120927,57.564575],[-7.117662,57.566184],[-7.118824,57.567477],[-7.116858,57.5682],[-7.116149,57.570006],[-7.115165,57.571228],[-7.114035,57.571575],[-7.114079,57.572911],[-7.112017,57.573728],[-7.111513,57.574495],[-7.112419,57.575245],[-7.112016,57.576643],[-7.113247,57.578604],[-7.108854,57.5806],[-7.10967,57.582295],[-7.111215,57.583869],[-7.111184,57.584487],[-7.107836,57.58474],[-7.10393,57.587111],[-7.104173,57.589675],[-7.101953,57.591258],[-7.102547,57.591886],[-7.101088,57.593601],[-7.103044,57.593981],[-7.103984,57.593097],[-7.108099,57.593349],[-7.108216,57.595971],[-7.111968,57.595779],[-7.112866,57.596147],[-7.116133,57.59471],[-7.11781,57.594363],[-7.115979,57.593259],[-7.114362,57.593128],[-7.113351,57.591912],[-7.118903,57.592847],[-7.119489,57.593704],[-7.120813,57.59403],[-7.123195,57.5931],[-7.123977,57.592407],[-7.123496,57.589943],[-7.128304,57.589703],[-7.132828,57.590239],[-7.135033,57.591849],[-7.137188,57.592279],[-7.139532,57.591612],[-7.14188,57.591687],[-7.14311,57.590904],[-7.142526,57.590271],[-7.144515,57.58947],[-7.146334,57.589832],[-7.148688,57.589709],[-7.14985,57.588631],[-7.14992,57.587622],[-7.151531,57.586234],[-7.152564,57.587562],[-7.154987,57.588047],[-7.157161,57.587963],[-7.158071,57.58882],[-7.161144,57.587872],[-7.161929,57.589266],[-7.162025,57.591003],[-7.163498,57.591582],[-7.163864,57.592394],[-7.160629,57.592504],[-7.159833,57.59327],[-7.156639,57.592902],[-7.154865,57.593631],[-7.158653,57.594281],[-7.162099,57.594536],[-7.164579,57.594295],[-7.165872,57.593612],[-7.165721,57.592903],[-7.169366,57.592547],[-7.171622,57.593097],[-7.174788,57.592027],[-7.177431,57.592643],[-7.18098,57.592619],[-7.18221,57.593252],[-7.175695,57.593511],[-7.17376,57.593455],[-7.170034,57.594067],[-7.169512,57.594722]]],[[[-7.044317,57.748014],[-7.046278,57.747938],[-7.044216,57.74674],[-7.04142,57.746615],[-7.041457,57.747418],[-7.044317,57.748014]]],[[[-6.935145,57.754919],[-6.936596,57.754518],[-6.937969,57.753362],[-6.935859,57.750485],[-6.932915,57.750492],[-6.931272,57.752625],[-6.930007,57.753361],[-6.932566,57.754824],[-6.935145,57.754919]]],[[[-7.088918,57.749627],[-7.089805,57.748215],[-7.093535,57.746801],[-7.096838,57.745228],[-7.095082,57.742977],[-7.095128,57.741275],[-7.092252,57.739254],[-7.088903,57.737212],[-7.081171,57.734513],[-7.078966,57.734683],[-7.078574,57.735778],[-7.07658,57.736439],[-7.068686,57.73335],[-7.067832,57.733911],[-7.062271,57.732942],[-7.061817,57.734382],[-7.064456,57.73617],[-7.065663,57.736144],[-7.069379,57.738469],[-7.077151,57.741216],[-7.07648,57.742008],[-7.080052,57.743002],[-7.081223,57.743675],[-7.081896,57.744867],[-7.0814,57.746367],[-7.083167,57.748221],[-7.086311,57.749638],[-7.087692,57.749222],[-7.088918,57.749627]]],[[[-7.017748,57.756932],[-7.019472,57.756076],[-7.017232,57.75504],[-7.01563,57.756107],[-7.017748,57.756932]]],[[[-7.114336,57.756543],[-7.113205,57.755229],[-7.109578,57.754817],[-7.11207,57.75622],[-7.114336,57.756543]]],[[[-7.019019,57.76057],[-7.02011,57.760063],[-7.019349,57.758883],[-7.018116,57.759099],[-7.019019,57.76057]]],[[[-7.027404,57.762999],[-7.02923,57.763877],[-7.030448,57.763404],[-7.029862,57.762417],[-7.027404,57.762999]]],[[[-7.250129,57.759454],[-7.252841,57.758311],[-7.252034,57.757449],[-7.250185,57.757179],[-7.249287,57.756267],[-7.246245,57.756303],[-7.245614,57.757922],[-7.246138,57.758576],[-7.24801,57.758309],[-7.250129,57.759454]]],[[[-7.252505,57.760969],[-7.254187,57.760558],[-7.252358,57.759617],[-7.250223,57.760215],[-7.252505,57.760969]]],[[[-7.049971,57.770646],[-7.05219,57.770256],[-7.050761,57.768352],[-7.0497,57.768646],[-7.049971,57.770646]]],[[[-7.054777,57.770274],[-7.056466,57.769852],[-7.054474,57.769013],[-7.053345,57.769464],[-7.054777,57.770274]]],[[[-7.082597,57.774782],[-7.082903,57.773843],[-7.084663,57.773844],[-7.08454,57.770822],[-7.090677,57.768672],[-7.09296,57.76826],[-7.096409,57.768121],[-7.096804,57.765734],[-7.095388,57.763632],[-7.092521,57.763361],[-7.090359,57.761999],[-7.088114,57.759327],[-7.086212,57.758612],[-7.084196,57.757087],[-7.082361,57.7569],[-7.081824,57.756076],[-7.079956,57.755602],[-7.080001,57.754309],[-7.077568,57.751789],[-7.075504,57.751292],[-7.073577,57.751711],[-7.072132,57.753824],[-7.074058,57.755012],[-7.071124,57.757851],[-7.070371,57.759622],[-7.074724,57.76149],[-7.07584,57.76302],[-7.074058,57.764054],[-7.073729,57.765372],[-7.07531,57.765839],[-7.076777,57.765375],[-7.078784,57.766478],[-7.077524,57.767869],[-7.077515,57.770204],[-7.078796,57.771525],[-7.07881,57.772343],[-7.082597,57.774782]]],[[[-7.06965,57.784817],[-7.071366,57.785513],[-7.071494,57.783973],[-7.06965,57.784817]]],[[[-6.866768,57.793381],[-6.869014,57.792964],[-6.867725,57.791297],[-6.863563,57.789478],[-6.861434,57.789803],[-6.859552,57.789252],[-6.857715,57.791268],[-6.859267,57.792041],[-6.860322,57.793305],[-6.862,57.792507],[-6.865997,57.792101],[-6.865013,57.793048],[-6.866768,57.793381]]],[[[-7.228197,57.785279],[-7.23013,57.785366],[-7.231708,57.784454],[-7.233491,57.784961],[-7.235804,57.784591],[-7.238031,57.785016],[-7.239869,57.784332],[-7.239659,57.783639],[-7.24174,57.781155],[-7.245734,57.782087],[-7.24812,57.78193],[-7.248751,57.781057],[-7.251844,57.781883],[-7.252612,57.780618],[-7.255806,57.78121],[-7.257989,57.780813],[-7.259547,57.779659],[-7.260258,57.778411],[-7.259216,57.777271],[-7.261235,57.774951],[-7.263084,57.775557],[-7.264362,57.775257],[-7.264942,57.773689],[-7.266165,57.773739],[-7.265519,57.772109],[-7.264205,57.771353],[-7.265012,57.770303],[-7.263794,57.769404],[-7.262154,57.769297],[-7.261753,57.767996],[-7.259915,57.766934],[-7.252703,57.763895],[-7.250417,57.763401],[-7.248842,57.762643],[-7.24732,57.76132],[-7.241258,57.75975],[-7.238188,57.760003],[-7.235157,57.759476],[-7.233955,57.760417],[-7.22978,57.760819],[-7.225967,57.760244],[-7.222758,57.760169],[-7.218081,57.763341],[-7.209554,57.764916],[-7.208258,57.765681],[-7.208304,57.767456],[-7.206639,57.769571],[-7.205231,57.770669],[-7.20026,57.77257],[-7.200776,57.774631],[-7.202739,57.775423],[-7.203912,57.776468],[-7.205792,57.777295],[-7.208017,57.779413],[-7.210203,57.780083],[-7.211944,57.782922],[-7.213561,57.783737],[-7.214597,57.784788],[-7.219697,57.785162],[-7.222492,57.784799],[-7.228197,57.785279]]],[[[-6.783588,57.813064],[-6.784995,57.813115],[-6.783523,57.81123],[-6.782234,57.812681],[-6.783588,57.813064]]],[[[-6.825063,57.812894],[-6.828941,57.81263],[-6.830024,57.811619],[-6.828882,57.81041],[-6.826491,57.80903],[-6.826181,57.807994],[-6.825066,57.807375],[-6.825704,57.806636],[-6.824989,57.805253],[-6.822907,57.804272],[-6.82204,57.805102],[-6.819754,57.805522],[-6.814115,57.804293],[-6.813775,57.804816],[-6.814883,57.806148],[-6.814049,57.806719],[-6.814595,57.807841],[-6.816008,57.808992],[-6.820044,57.810894],[-6.825063,57.812894]]],[[[-7.26024,57.794743],[-7.261852,57.796676],[-7.263235,57.797046],[-7.264574,57.796556],[-7.262628,57.795634],[-7.262173,57.794897],[-7.26024,57.794743]]],[[[-6.777761,57.81761],[-6.777308,57.818675],[-6.78035,57.819181],[-6.77887,57.816993],[-6.777761,57.81761]]],[[[-7.258311,57.804728],[-7.26117,57.804234],[-7.260572,57.803197],[-7.261628,57.802523],[-7.259519,57.801351],[-7.258075,57.798158],[-7.256736,57.797472],[-7.254731,57.798279],[-7.254229,57.799403],[-7.252224,57.800453],[-7.249129,57.800784],[-7.247294,57.800568],[-7.245446,57.800955],[-7.244554,57.802292],[-7.245974,57.802787],[-7.247947,57.804122],[-7.252241,57.803283],[-7.255767,57.804778],[-7.258311,57.804728]]],[[[-7.169249,57.82957],[-7.171763,57.829341],[-7.172109,57.828693],[-7.170215,57.828077],[-7.169521,57.827057],[-7.167588,57.826871],[-7.167278,57.827999],[-7.166081,57.82947],[-7.169249,57.82957]]],[[[-6.687395,57.851265],[-6.686217,57.852519],[-6.687262,57.853357],[-6.685103,57.853617],[-6.68719,57.855006],[-6.69067,57.85445],[-6.691662,57.852421],[-6.690373,57.851115],[-6.687395,57.851265]]],[[[-6.704848,57.856033],[-6.705687,57.854774],[-6.704044,57.85363],[-6.700104,57.852661],[-6.70169,57.854851],[-6.704848,57.856033]]],[[[-6.690852,57.857339],[-6.693944,57.857562],[-6.694767,57.856367],[-6.696194,57.855405],[-6.694959,57.854818],[-6.691883,57.854895],[-6.69002,57.855549],[-6.687877,57.855808],[-6.690852,57.857339]]],[[[-6.711618,57.860958],[-6.714086,57.862049],[-6.718064,57.862297],[-6.717417,57.861417],[-6.714706,57.861212],[-6.717409,57.859362],[-6.719493,57.859167],[-6.718493,57.858233],[-6.714636,57.857778],[-6.712347,57.857953],[-6.710378,57.859286],[-6.711618,57.860958]]],[[[-6.721253,57.865956],[-6.724111,57.865548],[-6.723001,57.863777],[-6.720765,57.863653],[-6.721253,57.865956]]],[[[-6.71607,57.865173],[-6.716345,57.866116],[-6.719474,57.866935],[-6.720108,57.866687],[-6.719595,57.864448],[-6.718794,57.863875],[-6.716859,57.864438],[-6.71607,57.865173]]],[[[-6.709266,57.867163],[-6.710071,57.868367],[-6.712353,57.869271],[-6.713386,57.869163],[-6.712917,57.867647],[-6.709266,57.867163]]],[[[-6.718028,57.868325],[-6.722819,57.870478],[-6.724261,57.869644],[-6.724103,57.868058],[-6.72021,57.867394],[-6.717068,57.86725],[-6.718028,57.868325]]],[[[-8.509064,57.792015],[-8.511637,57.792252],[-8.510841,57.791158],[-8.509064,57.792015]]],[[[-6.738717,57.869752],[-6.741285,57.871305],[-6.741494,57.870386],[-6.738717,57.869752]]],[[[-6.702664,57.879226],[-6.705801,57.879118],[-6.707449,57.877264],[-6.704895,57.876818],[-6.699625,57.876932],[-6.699873,57.876285],[-6.698867,57.874888],[-6.694404,57.874359],[-6.692448,57.873521],[-6.699155,57.874239],[-6.700844,57.872323],[-6.706013,57.875386],[-6.707811,57.875687],[-6.709577,57.87508],[-6.711006,57.875935],[-6.712812,57.875927],[-6.71415,57.875201],[-6.712202,57.874113],[-6.709515,57.873378],[-6.706918,57.871212],[-6.705853,57.870002],[-6.706166,57.869139],[-6.702234,57.867881],[-6.7036,57.866442],[-6.706851,57.865848],[-6.707446,57.864414],[-6.704966,57.861569],[-6.702204,57.860764],[-6.700262,57.861059],[-6.700915,57.863335],[-6.702667,57.86337],[-6.703124,57.864374],[-6.698206,57.86425],[-6.698273,57.8658],[-6.69715,57.867151],[-6.700317,57.869193],[-6.700092,57.870625],[-6.695873,57.868371],[-6.693347,57.867548],[-6.691699,57.86528],[-6.687969,57.864342],[-6.687054,57.863311],[-6.68357,57.862831],[-6.683861,57.861178],[-6.685951,57.861283],[-6.687768,57.860689],[-6.689875,57.859448],[-6.689349,57.857925],[-6.690002,57.857353],[-6.688188,57.856318],[-6.685359,57.856041],[-6.68503,57.855261],[-6.682622,57.854721],[-6.68103,57.854869],[-6.679963,57.853672],[-6.677787,57.853285],[-6.675101,57.854751],[-6.673526,57.854773],[-6.673952,57.855842],[-6.678992,57.857427],[-6.68107,57.856923],[-6.682334,57.858025],[-6.682303,57.859335],[-6.680826,57.859589],[-6.679895,57.858598],[-6.678159,57.857701],[-6.671367,57.85985],[-6.67142,57.859281],[-6.675259,57.857655],[-6.674987,57.856541],[-6.673455,57.855851],[-6.670996,57.856405],[-6.669749,57.854863],[-6.670583,57.854198],[-6.671371,57.852154],[-6.672294,57.851653],[-6.670986,57.849767],[-6.666994,57.851245],[-6.666321,57.852233],[-6.664351,57.851032],[-6.662944,57.851894],[-6.658899,57.851993],[-6.656925,57.853294],[-6.654403,57.853688],[-6.647803,57.855365],[-6.645274,57.855621],[-6.645474,57.857326],[-6.644173,57.858358],[-6.643136,57.856593],[-6.641351,57.856497],[-6.641861,57.85914],[-6.643463,57.859783],[-6.642639,57.860398],[-6.6432,57.86147],[-6.644987,57.861652],[-6.646393,57.862613],[-6.645851,57.863312],[-6.647251,57.864088],[-6.646567,57.864742],[-6.64756,57.866091],[-6.649181,57.866032],[-6.65486,57.867069],[-6.654603,57.867825],[-6.652086,57.867935],[-6.649907,57.868775],[-6.651385,57.870808],[-6.653286,57.870171],[-6.654485,57.871733],[-6.656324,57.871405],[-6.659702,57.873271],[-6.661077,57.872709],[-6.663383,57.873704],[-6.667986,57.872419],[-6.669742,57.874176],[-6.670967,57.873339],[-6.672222,57.87332],[-6.675723,57.874342],[-6.676296,57.875827],[-6.680231,57.877054],[-6.682335,57.876927],[-6.682989,57.876371],[-6.685888,57.87693],[-6.686749,57.876022],[-6.689103,57.876737],[-6.691709,57.877078],[-6.695313,57.878907],[-6.699124,57.879244],[-6.702664,57.879226]]],[[[-6.743429,57.87674],[-6.742762,57.877353],[-6.744969,57.878878],[-6.748248,57.879365],[-6.750508,57.879235],[-6.753357,57.878329],[-6.754716,57.877568],[-6.754892,57.87596],[-6.754234,57.874748],[-6.751243,57.874347],[-6.749648,57.872752],[-6.746559,57.871545],[-6.743674,57.872454],[-6.744029,57.873669],[-6.741692,57.87394],[-6.741006,57.873408],[-6.738759,57.873397],[-6.739606,57.87566],[-6.743429,57.87674]]],[[[-8.565075,57.798725],[-8.567104,57.799568],[-8.571446,57.800263],[-8.572765,57.799167],[-8.571038,57.797888],[-8.57267,57.796803],[-8.572339,57.796145],[-8.570354,57.796131],[-8.568494,57.797494],[-8.567281,57.797268],[-8.564788,57.797754],[-8.56263,57.796974],[-8.562817,57.795501],[-8.559801,57.794275],[-8.558983,57.794736],[-8.554543,57.794814],[-8.553345,57.793975],[-8.551102,57.793745],[-8.551728,57.794965],[-8.554276,57.795197],[-8.560243,57.79758],[-8.561654,57.797593],[-8.563231,57.798605],[-8.565075,57.798725]]],[[[-6.778103,57.883794],[-6.78041,57.882029],[-6.778213,57.881887],[-6.778103,57.883794]]],[[[-6.403608,57.898011],[-6.403809,57.898496],[-6.407279,57.898405],[-6.405879,57.897626],[-6.403608,57.898011]]],[[[-6.783748,57.886046],[-6.785164,57.88704],[-6.787629,57.887415],[-6.787396,57.88643],[-6.786019,57.885681],[-6.783748,57.886046]]],[[[-6.355843,57.902674],[-6.356407,57.903383],[-6.359007,57.904346],[-6.360251,57.903872],[-6.364985,57.903632],[-6.366995,57.902587],[-6.370317,57.901983],[-6.372086,57.902286],[-6.373658,57.90354],[-6.376335,57.903124],[-6.378046,57.903231],[-6.381441,57.902606],[-6.380106,57.900732],[-6.378858,57.900258],[-6.375696,57.899958],[-6.374406,57.899143],[-6.371689,57.898958],[-6.369655,57.898413],[-6.367875,57.897179],[-6.365824,57.897115],[-6.363172,57.895515],[-6.36127,57.894835],[-6.358576,57.894873],[-6.358268,57.893026],[-6.356838,57.89196],[-6.358042,57.891024],[-6.357001,57.888151],[-6.355169,57.886132],[-6.354507,57.886096],[-6.3531,57.884454],[-6.353057,57.882913],[-6.354531,57.881351],[-6.353965,57.880435],[-6.35171,57.880711],[-6.351211,57.882518],[-6.349727,57.883783],[-6.350242,57.884619],[-6.348227,57.886321],[-6.349032,57.890952],[-6.348654,57.891455],[-6.3497,57.893129],[-6.351359,57.893714],[-6.357383,57.894222],[-6.358259,57.894763],[-6.357639,57.897518],[-6.358356,57.899535],[-6.357038,57.902035],[-6.355843,57.902674]]],[[[-6.335213,57.904344],[-6.335459,57.905477],[-6.334756,57.907003],[-6.335577,57.907974],[-6.33881,57.907202],[-6.339627,57.904314],[-6.339359,57.903496],[-6.341756,57.90229],[-6.340954,57.901247],[-6.336112,57.90032],[-6.329533,57.899614],[-6.327017,57.898432],[-6.324503,57.898255],[-6.324405,57.899219],[-6.329466,57.899832],[-6.33068,57.900798],[-6.333682,57.901671],[-6.335213,57.904344]]],[[[-7.088562,57.888699],[-7.086695,57.889419],[-7.088376,57.890928],[-7.089885,57.890114],[-7.088562,57.888699]]],[[[-6.619183,57.907491],[-6.621432,57.909561],[-6.622863,57.909787],[-6.622905,57.908073],[-6.620908,57.906805],[-6.619183,57.907491]]],[[[-6.626894,57.911957],[-6.62752,57.91353],[-6.629866,57.91259],[-6.628211,57.911904],[-6.626894,57.911957]]],[[[-8.611228,57.827841],[-8.617154,57.828017],[-8.616832,57.826724],[-8.617709,57.825205],[-8.617531,57.824011],[-8.615964,57.822742],[-8.611878,57.822601],[-8.612585,57.821672],[-8.611176,57.819655],[-8.612196,57.819008],[-8.612559,57.817673],[-8.609169,57.815689],[-8.608167,57.814854],[-8.609374,57.813894],[-8.608992,57.810852],[-8.606961,57.809255],[-8.605485,57.808986],[-8.604699,57.808058],[-8.603264,57.808836],[-8.600808,57.80874],[-8.598786,57.807976],[-8.597161,57.806849],[-8.595344,57.806282],[-8.594914,57.805543],[-8.590056,57.806063],[-8.588238,57.806594],[-8.584941,57.806654],[-8.58405,57.80561],[-8.581954,57.804765],[-8.582491,57.803043],[-8.579503,57.801695],[-8.577796,57.798988],[-8.576244,57.798816],[-8.573798,57.799145],[-8.571567,57.800796],[-8.572641,57.801214],[-8.573759,57.803503],[-8.571484,57.80472],[-8.572752,57.807505],[-8.572203,57.809119],[-8.570451,57.810571],[-8.569163,57.811048],[-8.566555,57.810954],[-8.564537,57.810162],[-8.562508,57.810168],[-8.560043,57.808653],[-8.557109,57.808834],[-8.553289,57.810674],[-8.550804,57.811209],[-8.549726,57.812524],[-8.551738,57.813696],[-8.551914,57.81443],[-8.554657,57.816053],[-8.555274,57.816936],[-8.556914,57.817504],[-8.558294,57.817157],[-8.560547,57.81831],[-8.559948,57.819008],[-8.565163,57.82071],[-8.563614,57.823092],[-8.566462,57.824453],[-8.565575,57.825742],[-8.56904,57.824923],[-8.570489,57.8239],[-8.570035,57.823213],[-8.572386,57.822451],[-8.573865,57.823248],[-8.576336,57.823786],[-8.579756,57.823747],[-8.581604,57.823331],[-8.581805,57.824429],[-8.583514,57.825416],[-8.587304,57.825092],[-8.5886,57.825619],[-8.593169,57.825678],[-8.592825,57.8267],[-8.594799,57.826462],[-8.59426,57.825044],[-8.595556,57.822813],[-8.595937,57.820376],[-8.597344,57.82064],[-8.598484,57.819815],[-8.599901,57.820408],[-8.602237,57.820668],[-8.60316,57.822111],[-8.604097,57.822526],[-8.605866,57.822181],[-8.60628,57.823494],[-8.609745,57.825054],[-8.608935,57.82611],[-8.611228,57.827841]]],[[[-8.624809,57.832724],[-8.624814,57.833665],[-8.626349,57.834251],[-8.629022,57.833039],[-8.634868,57.832092],[-8.636771,57.831285],[-8.639153,57.831425],[-8.640128,57.831951],[-8.643094,57.831867],[-8.644956,57.831255],[-8.646183,57.829988],[-8.649422,57.828601],[-8.649427,57.827988],[-8.646852,57.828174],[-8.645051,57.8288],[-8.643206,57.827311],[-8.641654,57.82733],[-8.64116,57.826108],[-8.639204,57.825621],[-8.642268,57.824199],[-8.641116,57.823174],[-8.637201,57.824051],[-8.635625,57.823701],[-8.63469,57.824264],[-8.632971,57.824233],[-8.629507,57.82596],[-8.625168,57.827061],[-8.625256,57.828917],[-8.624589,57.830227],[-8.624809,57.832724]]],[[[-6.595624,57.924454],[-6.597841,57.925399],[-6.598521,57.926346],[-6.600451,57.926829],[-6.600898,57.926098],[-6.599819,57.924999],[-6.5976,57.924374],[-6.595624,57.924454]]],[[[-6.894175,57.917764],[-6.893057,57.916281],[-6.890568,57.915694],[-6.888568,57.9164],[-6.889956,57.917836],[-6.894175,57.917764]]],[[[-7.008488,57.921668],[-7.009212,57.920614],[-7.011222,57.920296],[-7.01025,57.919025],[-7.012531,57.91902],[-7.015077,57.91806],[-7.018212,57.917387],[-7.021372,57.918162],[-7.026622,57.917621],[-7.029809,57.918826],[-7.031288,57.918223],[-7.030872,57.916283],[-7.031928,57.915489],[-7.031268,57.913702],[-7.035141,57.912847],[-7.03679,57.913277],[-7.039841,57.913214],[-7.041398,57.912382],[-7.04119,57.911019],[-7.041874,57.908909],[-7.043644,57.90725],[-7.045316,57.906518],[-7.046671,57.902636],[-7.046667,57.901583],[-7.045601,57.900735],[-7.047006,57.90009],[-7.047161,57.898846],[-7.048828,57.897178],[-7.051618,57.896892],[-7.052016,57.898104],[-7.054286,57.898981],[-7.056286,57.898604],[-7.056464,57.897409],[-7.061943,57.896601],[-7.062483,57.895936],[-7.066534,57.895603],[-7.069402,57.89602],[-7.069368,57.894914],[-7.073225,57.895343],[-7.074525,57.894815],[-7.075307,57.893655],[-7.075071,57.892283],[-7.075996,57.891414],[-7.078874,57.892536],[-7.08036,57.89217],[-7.081096,57.892892],[-7.079594,57.895116],[-7.083332,57.895142],[-7.085419,57.894058],[-7.086311,57.892552],[-7.085615,57.891397],[-7.085991,57.890469],[-7.085023,57.889365],[-7.083514,57.890159],[-7.081112,57.890678],[-7.077748,57.889049],[-7.079568,57.887568],[-7.080784,57.885734],[-7.082536,57.884327],[-7.082381,57.88311],[-7.0795,57.880472],[-7.080727,57.880189],[-7.078587,57.876586],[-7.079201,57.876085],[-7.07625,57.874984],[-7.074168,57.875936],[-7.071776,57.878883],[-7.068042,57.878632],[-7.066085,57.879606],[-7.062177,57.879857],[-7.05992,57.881701],[-7.058688,57.88225],[-7.054236,57.882],[-7.053552,57.883679],[-7.051758,57.883953],[-7.050247,57.886424],[-7.050882,57.889863],[-7.052008,57.890722],[-7.05073,57.893945],[-7.048239,57.894737],[-7.04273,57.895392],[-7.041524,57.894806],[-7.041385,57.893813],[-7.039012,57.892918],[-7.037249,57.892754],[-7.036257,57.891345],[-7.033172,57.889223],[-7.027858,57.887104],[-7.025876,57.887425],[-7.022336,57.887237],[-7.021121,57.886701],[-7.017861,57.886101],[-7.017221,57.885569],[-7.018383,57.884214],[-7.017293,57.88288],[-7.014838,57.883022],[-7.013586,57.881974],[-7.008352,57.882955],[-7.00776,57.884526],[-7.004902,57.88517],[-7.002447,57.886828],[-7.000282,57.887593],[-6.999712,57.8886],[-6.998209,57.888723],[-6.996704,57.889623],[-6.997757,57.89264],[-6.993888,57.894007],[-6.990117,57.894134],[-6.992552,57.896089],[-6.993359,57.897519],[-6.99297,57.898371],[-6.991401,57.899054],[-6.99087,57.900339],[-6.988347,57.902008],[-6.987788,57.904855],[-6.988477,57.905615],[-6.989084,57.90922],[-6.992369,57.914153],[-6.994329,57.919006],[-6.99617,57.919725],[-6.9967,57.920554],[-6.998214,57.921077],[-7.001786,57.921073],[-7.003219,57.921593],[-7.007383,57.921082],[-7.008488,57.921668]]],[[[-8.508179,57.866201],[-8.511472,57.866977],[-8.5123,57.866326],[-8.509409,57.865575],[-8.508179,57.866201]]],[[[-6.969592,57.941084],[-6.972477,57.942123],[-6.973046,57.940674],[-6.971245,57.939827],[-6.969391,57.940183],[-6.967733,57.939875],[-6.968405,57.938747],[-6.966342,57.936551],[-6.966359,57.935755],[-6.967508,57.934832],[-6.965534,57.934626],[-6.963786,57.933975],[-6.961524,57.93486],[-6.959925,57.933451],[-6.957517,57.933402],[-6.958041,57.934443],[-6.956992,57.935415],[-6.957181,57.93642],[-6.958315,57.936852],[-6.959271,57.938565],[-6.961058,57.93993],[-6.962609,57.939891],[-6.964638,57.942016],[-6.965976,57.941478],[-6.969592,57.941084]]],[[[-8.49069,57.876787],[-8.491961,57.876947],[-8.492491,57.874781],[-8.493994,57.871736],[-8.496899,57.870605],[-8.496879,57.868768],[-8.499708,57.866929],[-8.498659,57.866366],[-8.492863,57.866371],[-8.490269,57.864505],[-8.487665,57.863178],[-8.485404,57.863204],[-8.485075,57.864479],[-8.483302,57.864484],[-8.481956,57.866017],[-8.480234,57.866821],[-8.485252,57.869383],[-8.484224,57.872305],[-8.484937,57.873863],[-8.487775,57.875253],[-8.489151,57.876601],[-8.49069,57.876787]]],[[[-6.97633,57.946362],[-6.97824,57.946408],[-6.98015,57.94578],[-6.981837,57.945871],[-6.983406,57.944195],[-6.982905,57.943387],[-6.980826,57.943036],[-6.980639,57.942486],[-6.978465,57.941753],[-6.976257,57.94242],[-6.974129,57.943907],[-6.974725,57.94589],[-6.97633,57.946362]]],[[[-8.494782,57.879266],[-8.49416,57.880455],[-8.495908,57.881843],[-8.497646,57.881217],[-8.498,57.879015],[-8.494782,57.879266]]],[[[-6.440683,58.004412],[-6.442569,58.00507],[-6.443921,58.00491],[-6.444764,58.003919],[-6.447112,58.003733],[-6.446444,58.002992],[-6.44713,58.001353],[-6.449219,58.000921],[-6.448258,57.999664],[-6.446816,58.000258],[-6.444218,57.99775],[-6.443569,57.998461],[-6.441527,57.999067],[-6.439691,57.997373],[-6.438101,57.998827],[-6.43608,57.998242],[-6.432096,57.998138],[-6.430729,57.998932],[-6.43047,58.000263],[-6.428393,57.99963],[-6.427033,57.998359],[-6.423106,57.998726],[-6.420493,57.996983],[-6.419141,57.997893],[-6.417609,57.996938],[-6.413229,57.99741],[-6.413234,57.998683],[-6.414993,58.000933],[-6.417094,58.002438],[-6.418898,58.002852],[-6.420012,58.003915],[-6.419185,58.004353],[-6.42013,58.005417],[-6.424818,58.004836],[-6.425255,58.004461],[-6.428289,58.004067],[-6.430412,58.004582],[-6.431498,58.004189],[-6.433413,58.004396],[-6.436578,58.003967],[-6.440683,58.004412]]],[[[-6.462075,58.015786],[-6.462586,58.014243],[-6.460624,58.012707],[-6.457366,58.011787],[-6.460012,58.015548],[-6.462075,58.015786]]],[[[-6.722425,58.006597],[-6.723269,58.007205],[-6.725784,58.007863],[-6.732445,58.006591],[-6.734175,58.005911],[-6.736613,58.005728],[-6.73905,58.004113],[-6.740778,58.001314],[-6.740102,57.999531],[-6.738304,57.996796],[-6.733758,57.994642],[-6.729167,57.989661],[-6.726896,57.98805],[-6.725828,57.986183],[-6.723776,57.985522],[-6.722208,57.986682],[-6.718675,57.986656],[-6.71685,57.987772],[-6.717127,57.990069],[-6.715431,57.990375],[-6.714646,57.991555],[-6.712854,57.992875],[-6.712868,57.994249],[-6.714375,57.997445],[-6.715751,57.998181],[-6.716077,57.99925],[-6.720048,58.004883],[-6.722425,58.006597]]],[[[-7.284122,57.985183],[-7.286727,57.986049],[-7.289252,57.985303],[-7.292454,57.985421],[-7.29336,57.984443],[-7.293661,57.982698],[-7.292135,57.981685],[-7.287922,57.980485],[-7.2868,57.981148],[-7.28607,57.982398],[-7.284108,57.982826],[-7.283211,57.983557],[-7.284122,57.985183]]],[[[-7.089253,58.024412],[-7.09053,58.025278],[-7.092882,58.025418],[-7.094261,58.026432],[-7.095239,58.023573],[-7.09376,58.022598],[-7.090747,58.022156],[-7.089253,58.024412]]],[[[-7.132893,58.038027],[-7.135527,58.037727],[-7.137344,58.036295],[-7.14068,58.036075],[-7.141122,58.035436],[-7.143287,58.034979],[-7.147729,58.035316],[-7.148897,58.035944],[-7.152096,58.034424],[-7.150966,58.033993],[-7.155136,58.03327],[-7.15758,58.033455],[-7.160065,58.032805],[-7.16233,58.032983],[-7.163195,58.030869],[-7.165379,58.029907],[-7.169411,58.029757],[-7.170307,58.02891],[-7.169693,58.027073],[-7.166937,58.026488],[-7.166768,58.025725],[-7.164578,58.024537],[-7.164631,58.023032],[-7.165775,58.020209],[-7.164177,58.019244],[-7.162954,58.019343],[-7.161935,58.017513],[-7.158823,58.017096],[-7.157618,58.016326],[-7.158276,58.01378],[-7.156649,58.012195],[-7.151372,58.00993],[-7.153409,58.009127],[-7.151168,58.008512],[-7.148902,58.009139],[-7.146973,58.010162],[-7.145521,58.010145],[-7.14372,58.010942],[-7.142239,58.010665],[-7.140307,58.011436],[-7.13848,58.010169],[-7.133572,58.011033],[-7.133706,58.009679],[-7.131635,58.0096],[-7.130858,58.008912],[-7.128321,58.009541],[-7.123838,58.009133],[-7.122455,58.008181],[-7.123261,58.007707],[-7.122141,58.006574],[-7.121097,58.006683],[-7.120443,58.004191],[-7.118882,58.004946],[-7.117611,58.003292],[-7.114495,58.002735],[-7.111024,58.003216],[-7.109041,58.004151],[-7.105506,58.004736],[-7.103171,58.004433],[-7.103061,58.005136],[-7.100579,58.005522],[-7.100895,58.007169],[-7.099026,58.009322],[-7.099846,58.010407],[-7.099172,58.011881],[-7.102717,58.012683],[-7.103329,58.014255],[-7.103034,58.016112],[-7.10345,58.017125],[-7.102437,58.018578],[-7.103738,58.019142],[-7.103807,58.020098],[-7.105255,58.021866],[-7.104895,58.023325],[-7.105997,58.025579],[-7.10615,58.026828],[-7.107499,58.028731],[-7.110829,58.031026],[-7.113733,58.031818],[-7.114633,58.030644],[-7.117304,58.032533],[-7.120339,58.03326],[-7.122891,58.033401],[-7.124541,58.032372],[-7.126998,58.034243],[-7.126222,58.035165],[-7.126577,58.037221],[-7.128389,58.036963],[-7.131322,58.03819],[-7.132893,58.038027]]],[[[-7.149446,58.038751],[-7.150128,58.040006],[-7.153137,58.039607],[-7.152269,58.038268],[-7.149446,58.038751]]],[[[-7.141256,58.039961],[-7.140925,58.041139],[-7.14205,58.041282],[-7.143957,58.040157],[-7.145363,58.040676],[-7.147229,58.040614],[-7.148263,58.039132],[-7.150082,58.037687],[-7.149553,58.036961],[-7.14624,58.037109],[-7.142061,58.038187],[-7.142615,58.03897],[-7.141256,58.039961]]],[[[-7.09581,58.066059],[-7.09686,58.064896],[-7.095316,58.063465],[-7.092653,58.06385],[-7.090708,58.063371],[-7.090193,58.064106],[-7.09138,58.065239],[-7.093048,58.06585],[-7.09581,58.066059]]],[[[-6.377698,58.096788],[-6.380194,58.097511],[-6.382812,58.097669],[-6.383536,58.097338],[-6.379722,58.096368],[-6.378505,58.095173],[-6.378656,58.093293],[-6.374746,58.092982],[-6.374493,58.09099],[-6.373301,58.090406],[-6.372538,58.092982],[-6.373058,58.094102],[-6.372296,58.094537],[-6.373853,58.097262],[-6.37583,58.096416],[-6.377698,58.096788]]],[[[-6.37786,58.099205],[-6.380669,58.099341],[-6.380712,58.098622],[-6.378136,58.098734],[-6.37786,58.099205]]],[[[-6.378212,58.10259],[-6.386143,58.10183],[-6.384867,58.101119],[-6.380071,58.100313],[-6.377577,58.100822],[-6.377164,58.10205],[-6.378212,58.10259]]],[[[-6.519539,58.097534],[-6.521912,58.097748],[-6.523459,58.09727],[-6.525416,58.097556],[-6.526776,58.097098],[-6.526182,58.095791],[-6.524685,58.095021],[-6.52242,58.094824],[-6.519333,58.095703],[-6.519539,58.097534]]],[[[-6.471211,58.100677],[-6.471198,58.099531],[-6.468607,58.100277],[-6.471211,58.100677]]],[[[-6.476747,58.101139],[-6.477765,58.100029],[-6.4756,58.099891],[-6.4725,58.101153],[-6.476747,58.101139]]],[[[-6.393432,58.109137],[-6.395049,58.108546],[-6.395851,58.106922],[-6.395571,58.105614],[-6.394221,58.104928],[-6.395912,58.103557],[-6.393165,58.102082],[-6.390283,58.103234],[-6.38818,58.102848],[-6.385789,58.103227],[-6.38609,58.104863],[-6.389081,58.105272],[-6.390893,58.10641],[-6.389643,58.108092],[-6.390722,58.108678],[-6.393432,58.109137]]],[[[-6.432368,58.109118],[-6.434904,58.109861],[-6.436268,58.108464],[-6.439881,58.108554],[-6.44545,58.105387],[-6.447947,58.10463],[-6.448383,58.103023],[-6.451188,58.102965],[-6.452313,58.101775],[-6.450374,58.100327],[-6.449429,58.09902],[-6.447557,58.099122],[-6.445183,58.099906],[-6.443762,58.098458],[-6.442261,58.099293],[-6.438435,58.100564],[-6.437209,58.101219],[-6.432965,58.102262],[-6.430244,58.104267],[-6.430364,58.106839],[-6.432368,58.109118]]],[[[-6.426676,58.108504],[-6.426296,58.109535],[-6.428784,58.110587],[-6.429813,58.109226],[-6.426676,58.108504]]],[[[-7.123872,58.086353],[-7.128052,58.086594],[-7.130263,58.086086],[-7.133219,58.086381],[-7.138999,58.083574],[-7.139017,58.082759],[-7.134473,58.083586],[-7.132807,58.08346],[-7.131734,58.082495],[-7.129942,58.082433],[-7.130753,58.080886],[-7.128637,58.07998],[-7.134705,58.078115],[-7.134311,58.076916],[-7.135556,58.07683],[-7.135923,58.075195],[-7.133956,58.074447],[-7.130712,58.074774],[-7.129524,58.073452],[-7.127009,58.073027],[-7.124103,58.07354],[-7.118882,58.073256],[-7.117717,58.074423],[-7.118838,58.076497],[-7.117221,58.077363],[-7.118955,58.079502],[-7.118551,58.081124],[-7.11954,58.082218],[-7.119138,58.083377],[-7.121101,58.084449],[-7.122568,58.085786],[-7.123872,58.086353]]],[[[-6.383144,58.120464],[-6.385305,58.120419],[-6.388723,58.119672],[-6.38697,58.11883],[-6.385976,58.119516],[-6.383871,58.119544],[-6.383144,58.120464]]],[[[-6.378699,58.12081],[-6.380971,58.120417],[-6.382237,58.11786],[-6.381411,58.116877],[-6.37848,58.116883],[-6.375249,58.119923],[-6.376795,58.120808],[-6.378699,58.12081]]],[[[-6.413326,58.125234],[-6.415684,58.126088],[-6.417212,58.125936],[-6.418004,58.124371],[-6.41683,58.123472],[-6.418204,58.12283],[-6.4175,58.121951],[-6.414668,58.121051],[-6.411639,58.122354],[-6.411284,58.12357],[-6.408993,58.123536],[-6.408643,58.124484],[-6.410329,58.125055],[-6.413326,58.125234]]],[[[-6.404172,58.127271],[-6.405328,58.126541],[-6.404752,58.125869],[-6.401425,58.126461],[-6.402691,58.12728],[-6.404172,58.127271]]],[[[-6.413635,58.127868],[-6.412793,58.128895],[-6.414435,58.12905],[-6.415896,58.128385],[-6.415479,58.127723],[-6.413635,58.127868]]],[[[-7.127705,58.107393],[-7.129353,58.106912],[-7.129632,58.105133],[-7.125877,58.105082],[-7.125152,58.106074],[-7.127705,58.107393]]],[[[-6.4164,58.139086],[-6.417176,58.139734],[-6.420883,58.139302],[-6.421335,58.139011],[-6.420737,58.138052],[-6.4164,58.139086]]],[[[-7.130081,58.136322],[-7.133005,58.135733],[-7.131938,58.134939],[-7.130081,58.136322]]],[[[-6.343779,58.186954],[-6.3424,58.187713],[-6.343349,58.188534],[-6.345314,58.188151],[-6.343779,58.186954]]],[[[-6.33885,58.188729],[-6.341452,58.189759],[-6.343396,58.18876],[-6.342193,58.187755],[-6.339479,58.186634],[-6.33832,58.188499],[-6.33885,58.188729]]],[[[-6.321638,58.190007],[-6.323353,58.190818],[-6.323954,58.189819],[-6.321638,58.190007]]],[[[-6.728065,58.180381],[-6.729615,58.181407],[-6.731493,58.180996],[-6.7313,58.17942],[-6.729998,58.177793],[-6.729028,58.177449],[-6.728065,58.180381]]],[[[-6.743195,58.189768],[-6.745133,58.189678],[-6.74507,58.188695],[-6.743526,58.188086],[-6.743195,58.189768]]],[[[-6.731781,58.190026],[-6.732339,58.190963],[-6.735448,58.190761],[-6.736614,58.189647],[-6.738718,58.189927],[-6.739959,58.187909],[-6.740183,58.186096],[-6.738213,58.186498],[-6.736635,58.185527],[-6.735288,58.187106],[-6.733334,58.187467],[-6.731781,58.190026]]],[[[-6.886338,58.185947],[-6.88776,58.185708],[-6.888878,58.184734],[-6.889136,58.183572],[-6.886996,58.183682],[-6.886338,58.185947]]],[[[-7.11143,58.178771],[-7.113307,58.177591],[-7.115937,58.177458],[-7.115184,58.17631],[-7.113756,58.176084],[-7.109863,58.176798],[-7.110017,58.17829],[-7.11143,58.178771]]],[[[-6.865802,58.194825],[-6.865259,58.195647],[-6.867442,58.196472],[-6.867065,58.19484],[-6.865802,58.194825]]],[[[-6.884464,58.193327],[-6.884772,58.195498],[-6.887938,58.19566],[-6.888219,58.194668],[-6.886673,58.194147],[-6.886843,58.193097],[-6.884464,58.193327]]],[[[-6.861372,58.196317],[-6.861164,58.197467],[-6.863866,58.197607],[-6.864117,58.196081],[-6.862824,58.19578],[-6.861372,58.196317]]],[[[-6.897534,58.199699],[-6.899544,58.198749],[-6.90233,58.199083],[-6.903266,58.197036],[-6.902798,58.194831],[-6.901195,58.19376],[-6.899388,58.193384],[-6.896791,58.193637],[-6.896074,58.192755],[-6.893551,58.193492],[-6.89406,58.194529],[-6.895486,58.195662],[-6.894655,58.196184],[-6.89502,58.197164],[-6.897352,58.198195],[-6.896396,58.199256],[-6.897534,58.199699]]],[[[-6.922923,58.195153],[-6.922943,58.195791],[-6.924358,58.197086],[-6.927313,58.198609],[-6.928297,58.197104],[-6.928121,58.194858],[-6.931016,58.194665],[-6.933584,58.195487],[-6.934365,58.194179],[-6.933796,58.192722],[-6.930876,58.19212],[-6.930293,58.191544],[-6.92788,58.192141],[-6.926304,58.191464],[-6.924686,58.190177],[-6.921025,58.19031],[-6.92239,58.191373],[-6.922061,58.192254],[-6.923052,58.193502],[-6.922923,58.195153]]],[[[-6.739961,58.204483],[-6.742712,58.206472],[-6.74248,58.204619],[-6.739961,58.204483]]],[[[-6.920637,58.197711],[-6.920357,58.198585],[-6.922739,58.199352],[-6.921611,58.197559],[-6.920637,58.197711]]],[[[-6.764266,58.194102],[-6.764079,58.195911],[-6.765003,58.19874],[-6.76488,58.200142],[-6.76589,58.202242],[-6.768375,58.204568],[-6.770945,58.206268],[-6.773793,58.20626],[-6.775986,58.205156],[-6.775984,58.204378],[-6.777623,58.203768],[-6.777991,58.202261],[-6.777359,58.200418],[-6.774215,58.197432],[-6.772979,58.197177],[-6.770321,58.194952],[-6.768347,58.194531],[-6.766504,58.193626],[-6.764266,58.194102]]],[[[-6.354931,58.221762],[-6.356209,58.222503],[-6.357713,58.222048],[-6.35542,58.221088],[-6.354931,58.221762]]],[[[-6.767121,58.212482],[-6.768163,58.214026],[-6.770129,58.214892],[-6.769679,58.216371],[-6.771765,58.217233],[-6.774789,58.217475],[-6.776192,58.217071],[-6.775395,58.214502],[-6.775726,58.213129],[-6.771169,58.210798],[-6.76955,58.211523],[-6.767542,58.211625],[-6.767121,58.212482]]],[[[-6.894511,58.218801],[-6.89563,58.217278],[-6.897161,58.216082],[-6.894211,58.212367],[-6.896338,58.210981],[-6.895615,58.207226],[-6.894473,58.206298],[-6.89079,58.204803],[-6.888543,58.204191],[-6.886602,58.204463],[-6.887162,58.205616],[-6.884625,58.20539],[-6.882876,58.206609],[-6.87941,58.206872],[-6.877565,58.208332],[-6.879705,58.208898],[-6.880377,58.21019],[-6.881652,58.210785],[-6.883145,58.210673],[-6.884551,58.211285],[-6.886407,58.210656],[-6.887959,58.212828],[-6.892228,58.216896],[-6.89329,58.217184],[-6.892986,58.218194],[-6.894511,58.218801]]],[[[-6.880287,58.220872],[-6.88064,58.219783],[-6.882517,58.219918],[-6.883246,58.219085],[-6.881844,58.21837],[-6.878701,58.219255],[-6.878362,58.219772],[-6.880287,58.220872]]],[[[-6.861178,58.221337],[-6.861362,58.222302],[-6.863394,58.221954],[-6.862864,58.22107],[-6.861178,58.221337]]],[[[-6.792754,58.22679],[-6.793169,58.227908],[-6.794927,58.227588],[-6.794755,58.225747],[-6.793452,58.22514],[-6.792789,58.223451],[-6.790138,58.222759],[-6.788001,58.223163],[-6.788626,58.225074],[-6.78996,58.225226],[-6.79102,58.226194],[-6.792754,58.22679]]],[[[-6.915832,58.223671],[-6.916696,58.224492],[-6.918125,58.224158],[-6.919047,58.223245],[-6.917238,58.22219],[-6.915106,58.222799],[-6.915832,58.223671]]],[[[-6.935274,58.223567],[-6.93704,58.224861],[-6.936931,58.22267],[-6.935408,58.221591],[-6.934808,58.223103],[-6.935274,58.223567]]],[[[-6.914057,58.230406],[-6.916156,58.230126],[-6.91611,58.22832],[-6.916878,58.227463],[-6.919101,58.227578],[-6.91888,58.226346],[-6.921081,58.226764],[-6.922553,58.225083],[-6.920377,58.223797],[-6.917805,58.224499],[-6.916549,58.225276],[-6.915253,58.224354],[-6.913109,58.223524],[-6.91062,58.224515],[-6.909942,58.225589],[-6.910464,58.226464],[-6.909885,58.227388],[-6.910961,58.22913],[-6.911376,58.230585],[-6.914057,58.230406]]],[[[-6.823584,58.234359],[-6.82335,58.235724],[-6.826025,58.236557],[-6.82571,58.235314],[-6.823584,58.234359]]],[[[-6.936208,58.240934],[-6.93979,58.24053],[-6.939614,58.239358],[-6.938605,58.237625],[-6.939278,58.23701],[-6.940989,58.237168],[-6.940414,58.238126],[-6.941805,58.238558],[-6.94207,58.239353],[-6.944664,58.23851],[-6.946949,58.239902],[-6.948445,58.239439],[-6.949921,58.240479],[-6.95087,58.237091],[-6.949545,58.235527],[-6.946361,58.233478],[-6.944393,58.233665],[-6.94384,58.232059],[-6.942622,58.231573],[-6.942945,58.230769],[-6.939814,58.229162],[-6.935609,58.228061],[-6.934466,58.22891],[-6.930926,58.228908],[-6.929914,58.230148],[-6.93186,58.231391],[-6.932845,58.232648],[-6.934858,58.233263],[-6.934409,58.234693],[-6.932919,58.234769],[-6.932577,58.236176],[-6.933237,58.236996],[-6.93563,58.23801],[-6.935187,58.240029],[-6.936208,58.240934]]],[[[-6.891558,58.244145],[-6.893417,58.245022],[-6.895192,58.244835],[-6.894022,58.243672],[-6.891558,58.244145]]],[[[-6.943834,58.24381],[-6.946273,58.243698],[-6.948168,58.243259],[-6.948804,58.242524],[-6.948179,58.241122],[-6.944899,58.241659],[-6.943383,58.241187],[-6.940232,58.242263],[-6.940386,58.243242],[-6.943834,58.24381]]],[[[-6.84176,58.253722],[-6.842716,58.255185],[-6.843775,58.254726],[-6.84176,58.253722]]],[[[-6.889286,58.260164],[-6.890808,58.259935],[-6.890184,58.258821],[-6.891902,58.258093],[-6.893338,58.256941],[-6.893393,58.256165],[-6.891615,58.254969],[-6.892378,58.252835],[-6.8912,58.251339],[-6.888853,58.250231],[-6.889084,58.249241],[-6.887664,58.248909],[-6.885456,58.247748],[-6.885337,58.246205],[-6.887132,58.245857],[-6.888375,58.245049],[-6.8881,58.244325],[-6.889806,58.243793],[-6.887334,58.240615],[-6.88409,58.238939],[-6.882629,58.239326],[-6.881207,58.241056],[-6.878558,58.240784],[-6.878113,58.239796],[-6.875691,58.238066],[-6.874606,58.236473],[-6.872496,58.234345],[-6.872297,58.232832],[-6.875273,58.232768],[-6.87769,58.233723],[-6.878464,58.231939],[-6.876102,58.231171],[-6.876974,58.229887],[-6.874218,58.228881],[-6.871395,58.227509],[-6.868977,58.227786],[-6.86774,58.227091],[-6.865842,58.226934],[-6.865253,58.225374],[-6.866232,58.223933],[-6.862703,58.223627],[-6.861434,58.224818],[-6.861909,58.225731],[-6.864527,58.226107],[-6.862681,58.227793],[-6.864389,58.229086],[-6.865014,58.230717],[-6.868538,58.234087],[-6.869499,58.235431],[-6.870585,58.237897],[-6.871432,58.238837],[-6.873072,58.239472],[-6.871713,58.240803],[-6.872655,58.24238],[-6.871768,58.242521],[-6.870441,58.241366],[-6.868235,58.240693],[-6.867834,58.239767],[-6.866622,58.239486],[-6.865642,58.23786],[-6.864534,58.238216],[-6.862625,58.237546],[-6.861197,58.236022],[-6.861957,58.235471],[-6.864441,58.235988],[-6.865868,58.235569],[-6.864607,58.234588],[-6.864832,58.232501],[-6.863566,58.2316],[-6.862219,58.229115],[-6.859735,58.223312],[-6.85536,58.223734],[-6.855384,58.224731],[-6.856553,58.2253],[-6.856026,58.226991],[-6.853731,58.22591],[-6.85373,58.223347],[-6.854631,58.222945],[-6.85657,58.223289],[-6.857994,58.222425],[-6.857444,58.221394],[-6.858786,58.219993],[-6.858299,58.217619],[-6.858485,58.215552],[-6.859631,58.215706],[-6.859174,58.216974],[-6.860322,58.217825],[-6.859785,58.218539],[-6.860031,58.220054],[-6.861376,58.220353],[-6.863854,58.220146],[-6.862039,58.218848],[-6.861869,58.218041],[-6.864777,58.21811],[-6.868967,58.219263],[-6.872247,58.219192],[-6.87476,58.220424],[-6.875564,58.219258],[-6.873971,58.218275],[-6.874974,58.217756],[-6.873567,58.215956],[-6.872827,58.214105],[-6.872161,58.213968],[-6.871794,58.212102],[-6.869915,58.212196],[-6.86876,58.211053],[-6.867238,58.207463],[-6.864728,58.207086],[-6.863046,58.206322],[-6.858143,58.207152],[-6.85709,58.206357],[-6.854732,58.206592],[-6.85258,58.205533],[-6.85095,58.205915],[-6.847983,58.205627],[-6.846646,58.206173],[-6.844116,58.205629],[-6.838902,58.204845],[-6.836165,58.204835],[-6.831225,58.205425],[-6.828603,58.205407],[-6.82608,58.206012],[-6.825171,58.207171],[-6.822579,58.20652],[-6.821247,58.207193],[-6.818783,58.206419],[-6.814487,58.206867],[-6.81231,58.207843],[-6.807544,58.207171],[-6.804331,58.20731],[-6.80021,58.206312],[-6.797866,58.203194],[-6.796006,58.202439],[-6.794623,58.202499],[-6.790577,58.201017],[-6.788415,58.201524],[-6.785705,58.200329],[-6.783577,58.201039],[-6.783634,58.203547],[-6.782384,58.204138],[-6.783868,58.204779],[-6.783988,58.206694],[-6.786831,58.208475],[-6.785438,58.209821],[-6.78311,58.210798],[-6.783893,58.212194],[-6.785872,58.213444],[-6.781996,58.213966],[-6.783421,58.215181],[-6.782218,58.215733],[-6.783338,58.21777],[-6.785243,58.21908],[-6.784904,58.219668],[-6.785594,58.221432],[-6.787417,58.221674],[-6.791552,58.221251],[-6.79144,58.219147],[-6.794581,58.220903],[-6.794404,58.219395],[-6.795203,58.21886],[-6.797346,58.219628],[-6.798378,58.220538],[-6.797399,58.221094],[-6.798208,58.22255],[-6.797337,58.223356],[-6.798077,58.224727],[-6.800687,58.226316],[-6.801713,58.227782],[-6.804138,58.228947],[-6.804588,58.229668],[-6.807657,58.230119],[-6.807782,58.231356],[-6.810617,58.230691],[-6.812988,58.231451],[-6.812692,58.233792],[-6.81495,58.236168],[-6.817218,58.237229],[-6.819085,58.237477],[-6.820876,58.237162],[-6.822226,58.236054],[-6.820884,58.234589],[-6.820608,58.233313],[-6.817005,58.232649],[-6.814786,58.231946],[-6.815753,58.230969],[-6.818337,58.232288],[-6.817414,58.22926],[-6.81859,58.228626],[-6.820594,58.228942],[-6.822709,58.230387],[-6.824291,58.231888],[-6.825792,58.231641],[-6.82617,58.230773],[-6.82798,58.231122],[-6.829143,58.232829],[-6.830849,58.233903],[-6.831663,58.235207],[-6.831377,58.236343],[-6.832618,58.236877],[-6.832541,58.238361],[-6.833937,58.239254],[-6.83519,58.238768],[-6.835372,58.237633],[-6.836521,58.236804],[-6.835359,58.233982],[-6.836889,58.232126],[-6.838525,58.234077],[-6.839324,58.235603],[-6.837989,58.236366],[-6.838317,58.237797],[-6.840437,58.237573],[-6.842641,58.23972],[-6.844424,58.242279],[-6.845721,58.243034],[-6.843851,58.244518],[-6.842472,58.244413],[-6.843169,58.24664],[-6.842669,58.247666],[-6.842211,58.25033],[-6.84643,58.255453],[-6.848612,58.256738],[-6.850936,58.256754],[-6.853616,58.256331],[-6.854332,58.256763],[-6.857356,58.25672],[-6.85829,58.257494],[-6.860544,58.257134],[-6.865633,58.258334],[-6.867081,58.257568],[-6.870132,58.257847],[-6.874891,58.259205],[-6.878516,58.259299],[-6.880798,58.259014],[-6.880706,58.257663],[-6.881658,58.257083],[-6.884051,58.256672],[-6.885714,58.257778],[-6.887324,58.258256],[-6.886613,58.259286],[-6.888673,58.259373],[-6.889286,58.260164]]],[[[-6.257719,58.284149],[-6.263786,58.28384],[-6.264314,58.282991],[-6.261593,58.283077],[-6.257719,58.284149]]],[[[-6.928976,58.261604],[-6.931296,58.26196],[-6.93169,58.26105],[-6.928337,58.260542],[-6.928976,58.261604]]],[[[-6.26192,58.28826],[-6.264896,58.287679],[-6.267269,58.286229],[-6.262614,58.286217],[-6.260483,58.287194],[-6.26192,58.28826]]],[[[-6.908037,58.268908],[-6.90952,58.268401],[-6.911649,58.26849],[-6.91085,58.267342],[-6.911086,58.266339],[-6.90768,58.265903],[-6.90543,58.266174],[-6.904141,58.266984],[-6.905683,58.268368],[-6.908037,58.268908]]],[[[-6.883682,58.269654],[-6.883857,58.270798],[-6.886878,58.269617],[-6.886515,58.267044],[-6.885242,58.265433],[-6.883227,58.265362],[-6.883297,58.263195],[-6.880445,58.261533],[-6.879126,58.259761],[-6.874506,58.259988],[-6.87088,58.261858],[-6.868747,58.26081],[-6.86598,58.260673],[-6.865227,58.261341],[-6.863262,58.26151],[-6.861059,58.2604],[-6.859918,58.26121],[-6.859984,58.262998],[-6.858206,58.263911],[-6.858859,58.265312],[-6.860256,58.265349],[-6.861519,58.266431],[-6.864524,58.265542],[-6.868158,58.265835],[-6.871835,58.267188],[-6.872337,58.268226],[-6.876099,58.269822],[-6.877776,58.268674],[-6.879034,58.269004],[-6.880926,58.270223],[-6.882428,58.269414],[-6.883682,58.269654]]],[[[-6.879417,58.27203],[-6.879358,58.272758],[-6.881265,58.272863],[-6.88072,58.271755],[-6.879417,58.27203]]],[[[-6.869935,58.273926],[-6.872691,58.273466],[-6.874165,58.272593],[-6.871615,58.271977],[-6.87062,58.271255],[-6.87034,58.269937],[-6.86821,58.269872],[-6.867621,58.270803],[-6.869011,58.271935],[-6.869935,58.273926]]],[[[-6.873744,58.274168],[-6.872597,58.274828],[-6.873022,58.275684],[-6.876034,58.275358],[-6.876068,58.274798],[-6.873744,58.274168]]],[[[-6.911692,58.277898],[-6.913428,58.277917],[-6.913044,58.275709],[-6.911554,58.275488],[-6.909378,58.276179],[-6.90949,58.277169],[-6.911692,58.277898]]],[[[-6.874967,58.279703],[-6.876772,58.279598],[-6.879765,58.278332],[-6.879724,58.277411],[-6.877665,58.277031],[-6.876284,58.277299],[-6.874967,58.279703]]],[[[-6.833843,58.28676],[-6.834228,58.284393],[-6.831542,58.284544],[-6.831083,58.284998],[-6.831215,58.286842],[-6.833843,58.28676]]],[[[-6.919246,58.28563],[-6.921275,58.285396],[-6.922012,58.284688],[-6.925184,58.283486],[-6.924847,58.282658],[-6.920164,58.282734],[-6.918742,58.283402],[-6.915533,58.283791],[-6.915486,58.284431],[-6.917351,58.285439],[-6.919246,58.28563]]],[[[-6.878098,58.292002],[-6.880238,58.29197],[-6.880098,58.290527],[-6.878156,58.290255],[-6.878098,58.292002]]],[[[-7.585755,58.275022],[-7.587294,58.275747],[-7.589788,58.275182],[-7.590587,58.273951],[-7.588239,58.27403],[-7.585755,58.275022]]],[[[-7.64337,58.281736],[-7.64425,58.282246],[-7.6474,58.281557],[-7.64896,58.28159],[-7.649949,58.280635],[-7.648317,58.279865],[-7.646305,58.280746],[-7.643918,58.280828],[-7.64337,58.281736]]],[[[-7.584534,58.285025],[-7.586448,58.284551],[-7.588513,58.283485],[-7.588248,58.282459],[-7.585747,58.282134],[-7.582897,58.283119],[-7.581773,58.284156],[-7.576436,58.284173],[-7.577834,58.285183],[-7.580485,58.284658],[-7.584534,58.285025]]],[[[-7.647207,58.285285],[-7.649157,58.285234],[-7.649997,58.284072],[-7.647585,58.283192],[-7.645456,58.284897],[-7.647207,58.285285]]],[[[-7.590065,58.289634],[-7.592127,58.289651],[-7.595669,58.28872],[-7.595404,58.287406],[-7.593048,58.286938],[-7.590574,58.286047],[-7.587514,58.286145],[-7.585338,58.287681],[-7.585878,58.289102],[-7.587429,58.288746],[-7.590681,58.288612],[-7.590065,58.289634]]],[[[-6.217316,58.486258],[-6.219295,58.485236],[-6.217251,58.484966],[-6.217316,58.486258]]],[[[-6.262747,58.515856],[-6.264737,58.515029],[-6.265632,58.515615],[-6.270597,58.514606],[-6.271067,58.513496],[-6.273649,58.513095],[-6.274796,58.511303],[-6.277031,58.511248],[-6.277639,58.510356],[-6.281161,58.511224],[-6.282085,58.509264],[-6.284282,58.508521],[-6.276765,58.508054],[-6.274,58.508322],[-6.27368,58.507271],[-6.272483,58.506767],[-6.27336,58.505717],[-6.275519,58.504974],[-6.276548,58.50421],[-6.276034,58.503311],[-6.274357,58.503233],[-6.272575,58.501566],[-6.273826,58.501203],[-6.273413,58.500349],[-6.271164,58.499641],[-6.272736,58.498074],[-6.273637,58.49645],[-6.275665,58.496122],[-6.27663,58.494762],[-6.278677,58.494424],[-6.280799,58.493528],[-6.280723,58.492324],[-6.283205,58.490463],[-6.28587,58.489974],[-6.288872,58.488599],[-6.289897,58.486777],[-6.29264,58.485312],[-6.294887,58.485503],[-6.29655,58.484865],[-6.301063,58.484268],[-6.301287,58.483439],[-6.299207,58.481933],[-6.300921,58.480836],[-6.304366,58.480356],[-6.309053,58.480231],[-6.310064,58.479002],[-6.308367,58.477366],[-6.31176,58.477044],[-6.314012,58.47789],[-6.317949,58.477739],[-6.321711,58.477967],[-6.323768,58.477488],[-6.330927,58.478409],[-6.333732,58.47812],[-6.33444,58.477092],[-6.335775,58.476691],[-6.335764,58.475897],[-6.337704,58.474666],[-6.339193,58.472654],[-6.337423,58.471603],[-6.340336,58.470309],[-6.338989,58.468663],[-6.341617,58.468246],[-6.343423,58.468486],[-6.344578,58.467067],[-6.344621,58.465752],[-6.34577,58.46463],[-6.3471,58.464144],[-6.348819,58.464234],[-6.350487,58.46156],[-6.351924,58.460607],[-6.357045,58.458396],[-6.358523,58.458067],[-6.362828,58.457916],[-6.36851,58.456553],[-6.370395,58.457154],[-6.37322,58.455124],[-6.374777,58.454513],[-6.375814,58.453187],[-6.377343,58.452618],[-6.379929,58.450836],[-6.379503,58.450276],[-6.381007,58.449012],[-6.383396,58.448682],[-6.385588,58.449907],[-6.388294,58.448526],[-6.389624,58.449094],[-6.392019,58.448845],[-6.392673,58.448078],[-6.395771,58.448178],[-6.399152,58.447186],[-6.402055,58.447231],[-6.402634,58.445688],[-6.405391,58.445515],[-6.406687,58.444012],[-6.409104,58.443933],[-6.411539,58.443039],[-6.413003,58.441995],[-6.415441,58.442014],[-6.41726,58.440382],[-6.421278,58.439596],[-6.423084,58.439502],[-6.423523,58.438847],[-6.425408,58.438617],[-6.4266,58.437072],[-6.429847,58.436071],[-6.430761,58.435192],[-6.432254,58.435439],[-6.436727,58.433858],[-6.436312,58.433178],[-6.439899,58.432071],[-6.44164,58.430904],[-6.442744,58.429654],[-6.443599,58.427761],[-6.442262,58.427672],[-6.440893,58.426698],[-6.441442,58.425631],[-6.443998,58.425041],[-6.447532,58.423526],[-6.448844,58.422257],[-6.454144,58.419662],[-6.455341,58.418549],[-6.45727,58.418619],[-6.460083,58.417078],[-6.462126,58.416831],[-6.469297,58.414074],[-6.470723,58.414085],[-6.47361,58.412487],[-6.475762,58.412213],[-6.476107,58.411438],[-6.480867,58.409788],[-6.482929,58.409815],[-6.4848,58.409194],[-6.485054,58.408496],[-6.488303,58.407243],[-6.48932,58.406395],[-6.48841,58.405923],[-6.488465,58.404575],[-6.487111,58.403874],[-6.487623,58.402779],[-6.490226,58.401566],[-6.492171,58.401388],[-6.495427,58.400348],[-6.495842,58.399007],[-6.497073,58.398241],[-6.50158,58.398461],[-6.504853,58.397845],[-6.509653,58.397734],[-6.510382,58.396467],[-6.511752,58.396424],[-6.514517,58.397284],[-6.516568,58.396685],[-6.517304,58.397145],[-6.519605,58.396524],[-6.517983,58.395691],[-6.519066,58.395122],[-6.522465,58.394996],[-6.522577,58.393513],[-6.521599,58.392298],[-6.524638,58.391822],[-6.524791,58.390346],[-6.526518,58.389274],[-6.527661,58.387955],[-6.529824,58.38733],[-6.529768,58.386162],[-6.531514,58.383758],[-6.533256,58.383588],[-6.53482,58.381833],[-6.534666,58.380898],[-6.535792,58.379001],[-6.536963,58.378598],[-6.537087,58.376891],[-6.538932,58.375202],[-6.540922,58.37483],[-6.539772,58.372811],[-6.542329,58.371196],[-6.544217,58.367216],[-6.547135,58.365074],[-6.549521,58.364549],[-6.55348,58.365657],[-6.556599,58.365939],[-6.56105,58.364408],[-6.567463,58.36323],[-6.570907,58.363453],[-6.575772,58.362825],[-6.578343,58.362926],[-6.580036,58.363707],[-6.582398,58.363442],[-6.584329,58.362428],[-6.584808,58.359529],[-6.587114,58.359058],[-6.59065,58.359625],[-6.594231,58.358952],[-6.596796,58.355851],[-6.599339,58.355502],[-6.599719,58.353605],[-6.602,58.35243],[-6.603603,58.352846],[-6.605342,58.352729],[-6.606569,58.352061],[-6.606945,58.351114],[-6.608232,58.350362],[-6.612902,58.34992],[-6.61437,58.348102],[-6.617558,58.346789],[-6.621376,58.345932],[-6.624877,58.345756],[-6.62739,58.347141],[-6.627198,58.348249],[-6.632397,58.347814],[-6.633121,58.348099],[-6.636339,58.347608],[-6.636575,58.344751],[-6.638178,58.344167],[-6.638474,58.342948],[-6.641316,58.343042],[-6.645134,58.344275],[-6.647712,58.344356],[-6.646978,58.342848],[-6.645092,58.343291],[-6.644677,58.342364],[-6.642236,58.341135],[-6.643038,58.339957],[-6.645231,58.340824],[-6.648131,58.343369],[-6.64799,58.344457],[-6.645194,58.345247],[-6.644185,58.347082],[-6.644773,58.347709],[-6.64533,58.351391],[-6.648901,58.354117],[-6.651145,58.354254],[-6.652503,58.353846],[-6.653016,58.352862],[-6.651561,58.351638],[-6.65361,58.351669],[-6.655648,58.350645],[-6.65825,58.350806],[-6.658214,58.349317],[-6.660568,58.349164],[-6.660887,58.350125],[-6.662172,58.350436],[-6.667504,58.350184],[-6.669127,58.349577],[-6.669074,58.347359],[-6.672446,58.347005],[-6.671275,58.345924],[-6.671916,58.345176],[-6.670508,58.344641],[-6.669075,58.343407],[-6.669504,58.342327],[-6.670966,58.341223],[-6.672675,58.340732],[-6.674448,58.341243],[-6.676564,58.34098],[-6.677144,58.338404],[-6.679366,58.338694],[-6.680839,58.339287],[-6.6814,58.338167],[-6.683639,58.338667],[-6.684517,58.337998],[-6.687515,58.338088],[-6.688563,58.336077],[-6.687344,58.335296],[-6.685988,58.332932],[-6.687639,58.332383],[-6.688432,58.33135],[-6.690832,58.330803],[-6.693858,58.331139],[-6.695664,58.334067],[-6.696523,58.337319],[-6.699614,58.336387],[-6.699968,58.337198],[-6.702848,58.33704],[-6.70241,58.336316],[-6.703698,58.334701],[-6.705075,58.334491],[-6.707094,58.334968],[-6.708937,58.334099],[-6.710308,58.332617],[-6.712938,58.331911],[-6.711656,58.33106],[-6.712056,58.328816],[-6.715674,58.328511],[-6.718987,58.327662],[-6.721278,58.327536],[-6.722323,58.328045],[-6.72515,58.328301],[-6.724478,58.327413],[-6.722797,58.326756],[-6.725608,58.325918],[-6.72597,58.324728],[-6.727831,58.324568],[-6.727182,58.323553],[-6.730624,58.323534],[-6.730659,58.322768],[-6.728815,58.321891],[-6.728952,58.321126],[-6.732036,58.32023],[-6.731487,58.319508],[-6.733916,58.319323],[-6.735935,58.31959],[-6.738767,58.318716],[-6.741983,58.318857],[-6.742136,58.317201],[-6.739829,58.316247],[-6.736885,58.315724],[-6.737129,58.314807],[-6.735646,58.314411],[-6.736372,58.313533],[-6.738659,58.313962],[-6.741402,58.313426],[-6.742433,58.312337],[-6.743857,58.313848],[-6.74545,58.314312],[-6.749458,58.313858],[-6.751839,58.314416],[-6.751834,58.313233],[-6.752915,58.31223],[-6.752381,58.311131],[-6.75372,58.310741],[-6.75465,58.308941],[-6.753481,58.308337],[-6.75321,58.30681],[-6.757284,58.305393],[-6.758626,58.305293],[-6.759961,58.306075],[-6.76196,58.306095],[-6.762237,58.307588],[-6.763894,58.308736],[-6.766684,58.308573],[-6.766665,58.306662],[-6.767554,58.305731],[-6.770194,58.306409],[-6.770248,58.307797],[-6.77174,58.309635],[-6.774021,58.309539],[-6.778354,58.308429],[-6.783315,58.30827],[-6.785928,58.307439],[-6.786974,58.30614],[-6.786161,58.305685],[-6.788021,58.30396],[-6.78939,58.303976],[-6.790979,58.305502],[-6.794753,58.305781],[-6.795678,58.306992],[-6.797785,58.306451],[-6.798763,58.304857],[-6.800706,58.304122],[-6.803906,58.304011],[-6.805143,58.303011],[-6.803531,58.301524],[-6.801488,58.301642],[-6.800941,58.300889],[-6.799042,58.299858],[-6.797668,58.299711],[-6.796712,58.297999],[-6.79536,58.296687],[-6.796992,58.296147],[-6.79859,58.296533],[-6.799488,58.297354],[-6.801176,58.297709],[-6.80383,58.297552],[-6.805609,58.296039],[-6.804717,58.295417],[-6.802625,58.295104],[-6.805147,58.293319],[-6.803419,58.292461],[-6.80729,58.290898],[-6.806527,58.290001],[-6.807982,58.289267],[-6.809315,58.289837],[-6.809406,58.291012],[-6.810688,58.291107],[-6.813168,58.289849],[-6.813963,58.290911],[-6.816157,58.289832],[-6.816159,58.288855],[-6.817639,58.288556],[-6.817903,58.287678],[-6.81946,58.287578],[-6.820188,58.285891],[-6.821909,58.286283],[-6.823554,58.28464],[-6.825252,58.284886],[-6.827665,58.284484],[-6.828441,58.283771],[-6.826751,58.283151],[-6.826142,58.28131],[-6.823801,58.279908],[-6.819199,58.278588],[-6.818103,58.279111],[-6.816247,58.27852],[-6.812762,58.278197],[-6.808043,58.278474],[-6.807612,58.278944],[-6.805263,58.27919],[-6.803729,58.280026],[-6.79863,58.279064],[-6.796684,58.279329],[-6.794049,58.278313],[-6.7914,58.278625],[-6.790964,58.279476],[-6.787533,58.280673],[-6.783436,58.280761],[-6.779511,58.281689],[-6.777549,58.281203],[-6.774691,58.281142],[-6.77501,58.280207],[-6.777441,58.279999],[-6.777772,58.27945],[-6.780122,58.278501],[-6.78591,58.280276],[-6.788434,58.279814],[-6.789225,58.279218],[-6.78837,58.276878],[-6.789866,58.274995],[-6.794104,58.275851],[-6.796653,58.275023],[-6.798674,58.276177],[-6.801638,58.275708],[-6.803461,58.274984],[-6.802591,58.272778],[-6.804182,58.272398],[-6.805848,58.272708],[-6.80761,58.272277],[-6.810197,58.272908],[-6.811165,58.271943],[-6.813561,58.271523],[-6.815839,58.272315],[-6.817418,58.272071],[-6.817484,58.269923],[-6.815551,58.267652],[-6.814527,58.267763],[-6.812585,58.266536],[-6.815183,58.265435],[-6.812202,58.264725],[-6.811519,58.263465],[-6.810394,58.263203],[-6.808581,58.261884],[-6.809865,58.260678],[-6.807033,58.260102],[-6.807034,58.259419],[-6.809784,58.25811],[-6.80982,58.256083],[-6.808736,58.255109],[-6.81008,58.254093],[-6.808147,58.25303],[-6.808565,58.252025],[-6.806363,58.252211],[-6.804811,58.251838],[-6.804167,58.249856],[-6.802852,58.250727],[-6.800921,58.248256],[-6.798514,58.248447],[-6.795076,58.249947],[-6.791615,58.24978],[-6.791769,58.248515],[-6.793186,58.247658],[-6.797032,58.248074],[-6.799417,58.247617],[-6.800796,58.245445],[-6.797428,58.245707],[-6.794504,58.243101],[-6.79352,58.240272],[-6.789459,58.239156],[-6.789087,58.237679],[-6.787085,58.238164],[-6.786265,58.237335],[-6.783201,58.236179],[-6.780934,58.232825],[-6.780074,58.233392],[-6.777812,58.233398],[-6.779141,58.234477],[-6.777877,58.235004],[-6.777114,58.23633],[-6.775978,58.236367],[-6.775999,58.238279],[-6.773135,58.235815],[-6.772314,58.234491],[-6.769196,58.23223],[-6.767585,58.229385],[-6.766438,58.228649],[-6.765899,58.227154],[-6.764551,58.226849],[-6.762838,58.223533],[-6.764079,58.222365],[-6.76339,58.221108],[-6.762341,58.220762],[-6.76164,58.219537],[-6.757738,58.216996],[-6.757613,58.216193],[-6.755075,58.216348],[-6.753667,58.217023],[-6.752055,58.216704],[-6.749667,58.216801],[-6.748203,58.215079],[-6.746358,58.214505],[-6.745366,58.213038],[-6.743199,58.211933],[-6.740598,58.212077],[-6.739755,58.211619],[-6.743241,58.210988],[-6.741516,58.209606],[-6.741421,58.207797],[-6.741933,58.206578],[-6.739637,58.205224],[-6.738126,58.205522],[-6.740202,58.207959],[-6.739282,58.208172],[-6.737661,58.205825],[-6.738818,58.204397],[-6.740472,58.203157],[-6.742742,58.203663],[-6.742575,58.20462],[-6.743588,58.20732],[-6.74609,58.209137],[-6.749592,58.20969],[-6.752503,58.209097],[-6.754301,58.209412],[-6.756955,58.209187],[-6.75876,58.207255],[-6.758786,58.205322],[-6.759315,58.202955],[-6.76033,58.202328],[-6.762948,58.202473],[-6.762626,58.200839],[-6.759045,58.198207],[-6.757001,58.198661],[-6.755827,58.197778],[-6.753341,58.19779],[-6.751908,58.196884],[-6.748796,58.196357],[-6.748992,58.195112],[-6.747309,58.194577],[-6.74578,58.193444],[-6.7419,58.195781],[-6.741203,58.196912],[-6.739092,58.196412],[-6.737843,58.195358],[-6.737175,58.194117],[-6.737783,58.193503],[-6.738179,58.191522],[-6.734581,58.191373],[-6.733787,58.192059],[-6.733206,58.193824],[-6.733494,58.194912],[-6.73571,58.195894],[-6.73636,58.197489],[-6.735067,58.197923],[-6.732836,58.195651],[-6.730547,58.195212],[-6.731162,58.193701],[-6.729276,58.192041],[-6.726856,58.191388],[-6.725301,58.190203],[-6.723375,58.190762],[-6.722759,58.189691],[-6.723626,58.189333],[-6.72193,58.188165],[-6.721282,58.187127],[-6.720059,58.186709],[-6.718877,58.187743],[-6.715344,58.187244],[-6.714194,58.18648],[-6.714738,58.185566],[-6.709747,58.185606],[-6.709629,58.184894],[-6.711586,58.183396],[-6.713721,58.183458],[-6.721669,58.184212],[-6.725394,58.18294],[-6.724872,58.181916],[-6.725131,58.17919],[-6.723817,58.178654],[-6.722255,58.177093],[-6.720284,58.177054],[-6.719557,58.174382],[-6.718792,58.172877],[-6.717828,58.172283],[-6.715351,58.173117],[-6.714557,58.17284],[-6.716768,58.170325],[-6.718043,58.169415],[-6.719146,58.170799],[-6.721465,58.170565],[-6.723027,58.17124],[-6.724717,58.170696],[-6.726908,58.172963],[-6.729103,58.173916],[-6.729874,58.174845],[-6.732673,58.17547],[-6.730905,58.170125],[-6.729268,58.169844],[-6.72981,58.167782],[-6.731682,58.168027],[-6.73414,58.166325],[-6.736361,58.167754],[-6.736561,58.169001],[-6.735467,58.169802],[-6.733226,58.169017],[-6.733434,58.171915],[-6.735328,58.173007],[-6.736022,58.175435],[-6.739398,58.178278],[-6.740761,58.180903],[-6.742291,58.182731],[-6.743428,58.18276],[-6.744541,58.183893],[-6.746186,58.184302],[-6.745431,58.185582],[-6.746985,58.188121],[-6.748789,58.188341],[-6.74783,58.189225],[-6.74855,58.191447],[-6.750946,58.192005],[-6.75234,58.189923],[-6.754728,58.191167],[-6.756541,58.190751],[-6.757646,58.188927],[-6.757675,58.187095],[-6.758933,58.186886],[-6.762441,58.188508],[-6.764848,58.188894],[-6.766111,58.19004],[-6.769606,58.190265],[-6.770939,58.189981],[-6.773728,58.192276],[-6.775507,58.191654],[-6.779269,58.193019],[-6.779446,58.191299],[-6.780184,58.190665],[-6.780693,58.188414],[-6.782093,58.187837],[-6.783033,58.189415],[-6.784215,58.189843],[-6.781753,58.191289],[-6.781429,58.192615],[-6.781727,58.194447],[-6.78396,58.194052],[-6.784741,58.192948],[-6.786761,58.193997],[-6.788586,58.193932],[-6.789581,58.195108],[-6.789368,58.19621],[-6.790213,58.197218],[-6.793305,58.198505],[-6.796835,58.198007],[-6.803674,58.199922],[-6.807842,58.198746],[-6.809854,58.200592],[-6.813695,58.201283],[-6.815097,58.20055],[-6.817603,58.201227],[-6.819534,58.201243],[-6.820656,58.200044],[-6.82291,58.201604],[-6.824754,58.202026],[-6.826003,58.203701],[-6.828153,58.204644],[-6.829349,58.203261],[-6.831048,58.203535],[-6.835253,58.203415],[-6.835608,58.202343],[-6.838076,58.202583],[-6.839265,58.202124],[-6.838006,58.201301],[-6.83476,58.200014],[-6.838102,58.199713],[-6.841511,58.196911],[-6.841436,58.19624],[-6.845628,58.197866],[-6.845748,58.199764],[-6.848708,58.200146],[-6.851055,58.199049],[-6.851247,58.197031],[-6.849577,58.196402],[-6.851766,58.195401],[-6.851647,58.194965],[-6.855658,58.194202],[-6.855726,58.192943],[-6.858509,58.192945],[-6.860024,58.191384],[-6.861879,58.192672],[-6.863249,58.192249],[-6.862946,58.190891],[-6.861161,58.189668],[-6.860087,58.186929],[-6.860697,58.183978],[-6.859409,58.183028],[-6.859131,58.181181],[-6.861247,58.18128],[-6.863504,58.182278],[-6.864156,58.181628],[-6.866659,58.183179],[-6.868211,58.182822],[-6.870447,58.184388],[-6.874754,58.183589],[-6.875439,58.184233],[-6.873164,58.18553],[-6.873001,58.187811],[-6.874744,58.189271],[-6.877021,58.189363],[-6.877324,58.188222],[-6.878567,58.186978],[-6.876479,58.18337],[-6.879343,58.182464],[-6.879387,58.180924],[-6.87787,58.179552],[-6.876146,58.178714],[-6.874841,58.17727],[-6.871656,58.175215],[-6.870277,58.174937],[-6.86903,58.173696],[-6.869415,58.171935],[-6.873334,58.170198],[-6.877544,58.172277],[-6.881157,58.172112],[-6.882386,58.170522],[-6.88407,58.171006],[-6.883847,58.168455],[-6.885966,58.167528],[-6.885942,58.164879],[-6.88531,58.163565],[-6.885715,58.162178],[-6.883593,58.162531],[-6.883385,58.164038],[-6.881918,58.164019],[-6.880906,58.163094],[-6.884044,58.156881],[-6.883405,58.156222],[-6.882756,58.15327],[-6.882077,58.152577],[-6.882532,58.150475],[-6.880555,58.148183],[-6.88029,58.146954],[-6.876869,58.144155],[-6.87531,58.141102],[-6.872708,58.140322],[-6.871929,58.139203],[-6.871907,58.13736],[-6.870152,58.136158],[-6.868764,58.133787],[-6.867836,58.133031],[-6.865714,58.132869],[-6.864608,58.131688],[-6.867195,58.131077],[-6.86862,58.128813],[-6.867419,58.125693],[-6.865344,58.12494],[-6.865993,58.12353],[-6.865568,58.122471],[-6.863998,58.121123],[-6.861732,58.117787],[-6.860487,58.117079],[-6.860459,58.115749],[-6.86353,58.115227],[-6.865837,58.117649],[-6.865456,58.118234],[-6.868412,58.121697],[-6.874043,58.124396],[-6.877602,58.127412],[-6.877236,58.12896],[-6.877493,58.132234],[-6.878635,58.134016],[-6.878973,58.136666],[-6.881066,58.140333],[-6.884958,58.144407],[-6.88429,58.145166],[-6.886538,58.147817],[-6.889374,58.150212],[-6.88939,58.151761],[-6.888236,58.152944],[-6.890149,58.154774],[-6.889667,58.155186],[-6.890418,58.157591],[-6.89286,58.158834],[-6.889792,58.160585],[-6.888269,58.162253],[-6.889065,58.163445],[-6.88725,58.164882],[-6.887244,58.167781],[-6.886255,58.168759],[-6.886354,58.170289],[-6.887739,58.173668],[-6.887416,58.176549],[-6.887695,58.177434],[-6.88982,58.179948],[-6.891319,58.180569],[-6.891934,58.182251],[-6.893172,58.182459],[-6.891972,58.184934],[-6.893258,58.187102],[-6.895012,58.187962],[-6.897456,58.187895],[-6.901773,58.187027],[-6.905198,58.186054],[-6.906862,58.184914],[-6.909464,58.185607],[-6.910815,58.187145],[-6.912565,58.187307],[-6.913159,58.186444],[-6.915304,58.185846],[-6.913573,58.184926],[-6.91321,58.183594],[-6.916716,58.185855],[-6.919307,58.186678],[-6.919897,58.187661],[-6.921564,58.188791],[-6.923642,58.189404],[-6.925677,58.188785],[-6.931674,58.189219],[-6.932516,58.18866],[-6.934685,58.190829],[-6.937329,58.192765],[-6.940531,58.193848],[-6.944713,58.193465],[-6.944882,58.194286],[-6.946528,58.195186],[-6.945891,58.196135],[-6.94662,58.197201],[-6.949356,58.199528],[-6.951039,58.20033],[-6.952855,58.200668],[-6.952941,58.201895],[-6.955075,58.202158],[-6.957251,58.201754],[-6.959676,58.202311],[-6.962797,58.203413],[-6.961394,58.204252],[-6.959352,58.204485],[-6.958312,58.203681],[-6.95422,58.20396],[-6.952103,58.202785],[-6.948291,58.201654],[-6.94656,58.19936],[-6.945257,58.198717],[-6.944417,58.199939],[-6.944814,58.204016],[-6.943956,58.20428],[-6.941025,58.203358],[-6.936768,58.203385],[-6.933827,58.202605],[-6.933014,58.203413],[-6.931092,58.202627],[-6.927293,58.202934],[-6.925752,58.203944],[-6.923444,58.203388],[-6.919428,58.203526],[-6.917792,58.203287],[-6.916936,58.203976],[-6.914368,58.203298],[-6.911191,58.203372],[-6.910065,58.203829],[-6.909406,58.206195],[-6.910438,58.208237],[-6.912623,58.209916],[-6.911854,58.21053],[-6.9121,58.21162],[-6.908259,58.212137],[-6.908367,58.2131],[-6.910852,58.215046],[-6.912325,58.215093],[-6.913759,58.21591],[-6.914057,58.216956],[-6.915487,58.218232],[-6.916665,58.218087],[-6.916723,58.216099],[-6.925071,58.215469],[-6.928596,58.215507],[-6.932689,58.216177],[-6.939606,58.218231],[-6.941841,58.219229],[-6.940138,58.219828],[-6.940916,58.222331],[-6.942172,58.223048],[-6.943862,58.222248],[-6.946294,58.222762],[-6.94775,58.223713],[-6.949415,58.224154],[-6.94904,58.225208],[-6.950105,58.225886],[-6.950108,58.226752],[-6.951517,58.227149],[-6.950495,58.228153],[-6.951987,58.229158],[-6.952515,58.230866],[-6.953904,58.231498],[-6.953245,58.232807],[-6.9545,58.23383],[-6.957441,58.233684],[-6.95816,58.235112],[-6.960501,58.235259],[-6.961724,58.234035],[-6.96097,58.23315],[-6.961429,58.231773],[-6.963821,58.232777],[-6.96649,58.232655],[-6.968888,58.231509],[-6.9689,58.230723],[-6.967497,58.229615],[-6.963446,58.228397],[-6.967484,58.22563],[-6.966483,58.224855],[-6.966091,58.223134],[-6.96494,58.222273],[-6.965021,58.221217],[-6.969846,58.219353],[-6.972578,58.220572],[-6.975582,58.21948],[-6.977994,58.22134],[-6.980197,58.222233],[-6.98091,58.223153],[-6.985316,58.22474],[-6.986146,58.225432],[-6.987827,58.225681],[-6.987199,58.226911],[-6.989879,58.226505],[-6.991796,58.2279],[-6.993145,58.228325],[-6.992696,58.22952],[-6.99486,58.229481],[-6.995891,58.231474],[-6.994131,58.232519],[-6.996745,58.233415],[-7.000658,58.234345],[-7.002557,58.234102],[-7.004278,58.232837],[-7.005995,58.233871],[-7.011106,58.234832],[-7.011773,58.234047],[-7.014714,58.234709],[-7.016696,58.234816],[-7.021078,58.233047],[-7.022796,58.232952],[-7.025295,58.231996],[-7.026598,58.232247],[-7.0273,58.23426],[-7.026319,58.235568],[-7.025619,58.238064],[-7.026099,58.238682],[-7.024603,58.239581],[-7.024945,58.240114],[-7.024562,58.242593],[-7.023862,58.243313],[-7.027426,58.244076],[-7.029347,58.243358],[-7.03067,58.242194],[-7.033203,58.242044],[-7.036028,58.240556],[-7.037504,58.238843],[-7.03905,58.238721],[-7.039367,58.236585],[-7.037497,58.234831],[-7.039032,58.233248],[-7.041315,58.232419],[-7.041668,58.233172],[-7.043229,58.233651],[-7.047704,58.23246],[-7.050317,58.230503],[-7.048666,58.229921],[-7.048316,58.22867],[-7.049241,58.226053],[-7.052491,58.2257],[-7.053414,58.224001],[-7.052749,58.223397],[-7.055102,58.221037],[-7.054899,58.220464],[-7.052314,58.219431],[-7.050247,58.219066],[-7.052396,58.217296],[-7.05473,58.216004],[-7.056207,58.212835],[-7.058208,58.212834],[-7.058928,58.21209],[-7.058882,58.210869],[-7.055637,58.210525],[-7.05454,58.209291],[-7.051832,58.210211],[-7.050919,58.208998],[-7.054097,58.207676],[-7.05708,58.207854],[-7.058801,58.206477],[-7.059851,58.20643],[-7.059997,58.203932],[-7.062888,58.201727],[-7.063711,58.199741],[-7.06176,58.197236],[-7.064319,58.197593],[-7.065164,58.195551],[-7.063133,58.195215],[-7.061518,58.195896],[-7.059979,58.195138],[-7.05788,58.19467],[-7.055507,58.194907],[-7.050704,58.193811],[-7.049229,58.194001],[-7.047353,58.192552],[-7.045681,58.192967],[-7.045033,58.191594],[-7.045593,58.190387],[-7.042284,58.188123],[-7.038661,58.190744],[-7.035692,58.190339],[-7.033236,58.19125],[-7.033159,58.192352],[-7.03636,58.194091],[-7.036401,58.195136],[-7.035476,58.197307],[-7.033093,58.199588],[-7.031845,58.199486],[-7.031726,58.198372],[-7.030124,58.196097],[-7.030801,58.192424],[-7.028322,58.193613],[-7.027259,58.194589],[-7.025423,58.194234],[-7.024422,58.194723],[-7.02288,58.193893],[-7.02374,58.191065],[-7.021887,58.189006],[-7.019996,58.190198],[-7.018974,58.190013],[-7.0172,58.188311],[-7.01557,58.187624],[-7.015118,58.186841],[-7.015481,58.185432],[-7.017316,58.18473],[-7.017682,58.183465],[-7.015185,58.183753],[-7.013472,58.185012],[-7.01182,58.184654],[-7.014363,58.183124],[-7.018095,58.182594],[-7.02039,58.184366],[-7.019112,58.186171],[-7.025583,58.186606],[-7.028701,58.185655],[-7.031133,58.185771],[-7.034359,58.183678],[-7.037386,58.183751],[-7.037793,58.182295],[-7.040112,58.181094],[-7.041371,58.179817],[-7.040125,58.177935],[-7.041969,58.176647],[-7.043332,58.176514],[-7.044361,58.175452],[-7.044572,58.173052],[-7.045865,58.173876],[-7.0457,58.17511],[-7.046552,58.175925],[-7.046838,58.177238],[-7.050498,58.177297],[-7.052793,58.178353],[-7.051467,58.179257],[-7.050263,58.179238],[-7.048563,58.180325],[-7.048098,58.181834],[-7.050117,58.184556],[-7.052092,58.184547],[-7.053848,58.185335],[-7.054776,58.184117],[-7.055817,58.18377],[-7.055862,58.182387],[-7.054641,58.181526],[-7.055736,58.180543],[-7.059326,58.180279],[-7.061342,58.181395],[-7.062061,58.182437],[-7.064978,58.183366],[-7.067472,58.183774],[-7.072707,58.182868],[-7.075756,58.183511],[-7.076604,58.183073],[-7.078224,58.184038],[-7.08096,58.183206],[-7.082203,58.184703],[-7.083474,58.185361],[-7.081927,58.188379],[-7.084096,58.189282],[-7.087814,58.188239],[-7.089522,58.188236],[-7.08956,58.186752],[-7.092443,58.186747],[-7.094099,58.187563],[-7.096777,58.186792],[-7.099858,58.186646],[-7.101346,58.184139],[-7.104513,58.18336],[-7.104599,58.181101],[-7.10654,58.180001],[-7.105602,58.17966],[-7.106896,58.17855],[-7.106666,58.177898],[-7.104668,58.177204],[-7.104542,58.176269],[-7.099378,58.174181],[-7.101749,58.17368],[-7.101699,58.171458],[-7.100053,58.171694],[-7.101071,58.16969],[-7.097808,58.170666],[-7.096945,58.169437],[-7.099311,58.168725],[-7.098492,58.167897],[-7.096352,58.168321],[-7.093347,58.168036],[-7.094749,58.167238],[-7.092432,58.165809],[-7.090117,58.165218],[-7.089309,58.164094],[-7.091168,58.162791],[-7.093522,58.16213],[-7.094289,58.161542],[-7.093131,58.160468],[-7.093548,58.15932],[-7.096198,58.158721],[-7.098458,58.157752],[-7.099477,58.155396],[-7.097893,58.154676],[-7.098656,58.153112],[-7.101645,58.15243],[-7.101319,58.151624],[-7.105744,58.150798],[-7.105308,58.150069],[-7.107925,58.149154],[-7.111364,58.149876],[-7.111581,58.150731],[-7.113346,58.151328],[-7.115853,58.150851],[-7.116614,58.149579],[-7.115155,58.148975],[-7.112881,58.148942],[-7.113939,58.146771],[-7.111335,58.147212],[-7.109922,58.147005],[-7.111135,58.145381],[-7.108636,58.143916],[-7.111416,58.143188],[-7.109633,58.142684],[-7.110506,58.141889],[-7.113968,58.141174],[-7.113936,58.140658],[-7.116123,58.140012],[-7.117393,58.138256],[-7.116398,58.1375],[-7.116773,58.136783],[-7.118642,58.13641],[-7.121077,58.136605],[-7.122279,58.137447],[-7.122244,58.1391],[-7.123686,58.138952],[-7.125824,58.1395],[-7.129495,58.137881],[-7.12816,58.137408],[-7.131311,58.134901],[-7.129647,58.134388],[-7.131526,58.132909],[-7.132623,58.130966],[-7.132198,58.130665],[-7.134338,58.128818],[-7.134324,58.127545],[-7.133363,58.126068],[-7.132193,58.125976],[-7.130628,58.125027],[-7.131577,58.123472],[-7.134862,58.123668],[-7.135443,58.122862],[-7.133547,58.121625],[-7.131508,58.121109],[-7.129184,58.121122],[-7.128438,58.119497],[-7.128872,58.118708],[-7.126228,58.117965],[-7.126625,58.117135],[-7.125021,58.116505],[-7.123756,58.11512],[-7.121922,58.116197],[-7.119545,58.116176],[-7.117991,58.115075],[-7.117113,58.113709],[-7.113355,58.114367],[-7.112901,58.114004],[-7.113816,58.111695],[-7.11275,58.111496],[-7.110405,58.109794],[-7.11019,58.107628],[-7.109219,58.106679],[-7.110001,58.105793],[-7.112242,58.105712],[-7.113233,58.104804],[-7.110831,58.102925],[-7.111641,58.102416],[-7.110903,58.10129],[-7.112447,58.100094],[-7.109448,58.100338],[-7.109989,58.099248],[-7.106788,58.099264],[-7.1054,58.098415],[-7.105365,58.097103],[-7.107215,58.09715],[-7.109752,58.096293],[-7.108779,58.095792],[-7.106299,58.096333],[-7.103295,58.095716],[-7.10247,58.094507],[-7.104445,58.093586],[-7.102568,58.091277],[-7.102986,58.09046],[-7.101744,58.089586],[-7.102523,58.088827],[-7.102008,58.087333],[-7.104155,58.084623],[-7.103831,58.083012],[-7.102688,58.081375],[-7.10075,58.080054],[-7.100185,58.077116],[-7.098878,58.077061],[-7.100025,58.074788],[-7.101696,58.075211],[-7.102991,58.074354],[-7.102495,58.07284],[-7.100328,58.072473],[-7.100346,58.06993],[-7.098261,58.069054],[-7.095783,58.069186],[-7.093129,58.069927],[-7.089662,58.068532],[-7.077622,58.068042],[-7.07883,58.067171],[-7.083706,58.067191],[-7.087691,58.066384],[-7.088716,58.065502],[-7.087719,58.064907],[-7.08307,58.064927],[-7.08292,58.062567],[-7.080944,58.063037],[-7.079132,58.064639],[-7.077751,58.06442],[-7.077048,58.062995],[-7.075802,58.063607],[-7.073298,58.06337],[-7.071689,58.062021],[-7.07139,58.060994],[-7.070088,58.06043],[-7.065825,58.060045],[-7.065205,58.061066],[-7.062789,58.06073],[-7.061733,58.062261],[-7.06244,58.062876],[-7.062373,58.064565],[-7.066129,58.065667],[-7.069212,58.066034],[-7.068435,58.066776],[-7.065709,58.066232],[-7.064216,58.066481],[-7.06361,58.067355],[-7.061368,58.068245],[-7.05844,58.068131],[-7.056533,58.068636],[-7.054362,58.069897],[-7.051335,58.069634],[-7.049637,58.071555],[-7.04732,58.072403],[-7.045745,58.071938],[-7.043154,58.072002],[-7.038842,58.073392],[-7.036722,58.074551],[-7.035014,58.076526],[-7.034121,58.078402],[-7.033661,58.081078],[-7.03054,58.081526],[-7.028531,58.080836],[-7.028079,58.079733],[-7.028851,58.078282],[-7.028234,58.077524],[-7.029001,58.075194],[-7.028489,58.073546],[-7.026872,58.072917],[-7.023989,58.072703],[-7.023338,58.071154],[-7.025412,58.069965],[-7.027218,58.069799],[-7.030626,58.069012],[-7.035425,58.065844],[-7.036474,58.06726],[-7.038572,58.067785],[-7.039792,58.06707],[-7.03948,58.065647],[-7.042235,58.065317],[-7.047317,58.064094],[-7.050179,58.064119],[-7.052481,58.063589],[-7.056901,58.06087],[-7.056822,58.059654],[-7.058274,58.05804],[-7.057314,58.05689],[-7.059208,58.055348],[-7.05721,58.053345],[-7.055082,58.053601],[-7.052579,58.0533],[-7.04528,58.054791],[-7.043698,58.054224],[-7.040569,58.054292],[-7.038404,58.05491],[-7.035854,58.056191],[-7.032312,58.056651],[-7.029409,58.056236],[-7.027362,58.056388],[-7.025545,58.055785],[-7.02304,58.054386],[-7.020879,58.053981],[-7.023938,58.051833],[-7.028114,58.052253],[-7.029595,58.051819],[-7.030269,58.050519],[-7.03318,58.050768],[-7.035907,58.050251],[-7.037971,58.051036],[-7.046342,58.051242],[-7.048284,58.050404],[-7.048084,58.049354],[-7.051556,58.047326],[-7.054069,58.046979],[-7.059458,58.046872],[-7.062033,58.046306],[-7.063141,58.045322],[-7.061285,58.044856],[-7.064432,58.044078],[-7.062491,58.04223],[-7.060969,58.04167],[-7.061706,58.041006],[-7.058725,58.040547],[-7.05433,58.04121],[-7.052928,58.040299],[-7.052024,58.038201],[-7.049864,58.036502],[-7.04989,58.035238],[-7.048033,58.034713],[-7.043587,58.038002],[-7.040967,58.037288],[-7.041271,58.035773],[-7.040077,58.033922],[-7.038814,58.033747],[-7.036338,58.034777],[-7.034158,58.034832],[-7.032473,58.036055],[-7.030366,58.035432],[-7.024373,58.036542],[-7.017846,58.039316],[-7.015607,58.040735],[-7.010732,58.04045],[-7.007022,58.040916],[-6.997063,58.044125],[-6.994177,58.044454],[-6.985747,58.045892],[-6.984413,58.046785],[-6.980253,58.047682],[-6.970107,58.048115],[-6.965617,58.048646],[-6.962907,58.049297],[-6.958641,58.049607],[-6.952311,58.049179],[-6.947716,58.049444],[-6.945202,58.04992],[-6.938994,58.050364],[-6.936729,58.05092],[-6.928957,58.051784],[-6.92654,58.052345],[-6.923378,58.052264],[-6.920015,58.052837],[-6.913779,58.053204],[-6.911323,58.052687],[-6.906794,58.049538],[-6.910352,58.049513],[-6.911914,58.050631],[-6.913959,58.051186],[-6.918146,58.051524],[-6.922346,58.05128],[-6.923962,58.05075],[-6.929418,58.049899],[-6.938846,58.049181],[-6.939231,58.048825],[-6.94289,58.047864],[-6.95027,58.046695],[-6.953343,58.045283],[-6.958027,58.045065],[-6.964182,58.043084],[-6.96548,58.041252],[-6.965626,58.040171],[-6.969844,58.041104],[-6.974116,58.041362],[-6.975838,58.041252],[-6.97836,58.042313],[-6.982937,58.042107],[-6.98465,58.042287],[-6.989315,58.041856],[-6.989992,58.041362],[-6.993962,58.040972],[-6.994932,58.039499],[-6.996173,58.039518],[-6.997187,58.038641],[-6.998902,58.038549],[-6.999268,58.037415],[-7.001449,58.037704],[-7.00324,58.03735],[-7.007048,58.035166],[-7.00967,58.034334],[-7.011825,58.034921],[-7.013932,58.034787],[-7.019644,58.032159],[-7.024645,58.031421],[-7.029005,58.031482],[-7.03382,58.028943],[-7.034867,58.027467],[-7.040979,58.025771],[-7.042892,58.025807],[-7.044981,58.024811],[-7.045413,58.023548],[-7.048048,58.022391],[-7.049749,58.020389],[-7.050064,58.018896],[-7.052682,58.016129],[-7.052061,58.014129],[-7.053567,58.013511],[-7.052297,58.012262],[-7.051695,58.010581],[-7.051978,58.009526],[-7.056061,58.008792],[-7.059848,58.008722],[-7.061118,58.009967],[-7.06371,58.011393],[-7.065696,58.014463],[-7.069142,58.015571],[-7.070298,58.017509],[-7.074008,58.01826],[-7.075643,58.019015],[-7.077583,58.019319],[-7.080074,58.019246],[-7.08241,58.020174],[-7.085375,58.018663],[-7.085183,58.01741],[-7.086184,58.016036],[-7.091974,58.011221],[-7.091736,58.008926],[-7.090215,58.007647],[-7.089642,58.005382],[-7.090255,58.003578],[-7.089653,58.003272],[-7.091514,58.002011],[-7.092599,57.999861],[-7.093844,57.999746],[-7.095476,57.998533],[-7.097459,57.998048],[-7.102285,57.998565],[-7.106827,57.997501],[-7.110442,57.994872],[-7.109317,57.993581],[-7.110266,57.992292],[-7.113185,57.991767],[-7.113082,57.990975],[-7.114597,57.989923],[-7.112378,57.987789],[-7.111386,57.987604],[-7.108503,57.986031],[-7.102937,57.986505],[-7.099594,57.988425],[-7.099374,57.989496],[-7.100584,57.990495],[-7.100504,57.991245],[-7.09845,57.992228],[-7.0979,57.993217],[-7.09603,57.993913],[-7.09603,57.99475],[-7.093115,57.995281],[-7.090224,57.994906],[-7.088532,57.992783],[-7.086348,57.992255],[-7.085236,57.989915],[-7.081184,57.986613],[-7.08239,57.986156],[-7.084052,57.986539],[-7.085578,57.986185],[-7.084605,57.985118],[-7.085043,57.984565],[-7.07935,57.980074],[-7.079434,57.978995],[-7.082016,57.977862],[-7.08147,57.976494],[-7.083314,57.975254],[-7.083248,57.973777],[-7.08209,57.972898],[-7.082642,57.971651],[-7.079758,57.970538],[-7.08065,57.969067],[-7.079289,57.967889],[-7.079994,57.967132],[-7.076747,57.966857],[-7.075217,57.965978],[-7.072662,57.965748],[-7.071759,57.966252],[-7.069684,57.965943],[-7.069231,57.965372],[-7.066904,57.965501],[-7.063995,57.966773],[-7.066365,57.968091],[-7.066781,57.969287],[-7.063386,57.968755],[-7.059535,57.969304],[-7.059515,57.970411],[-7.058024,57.970394],[-7.057867,57.969479],[-7.056559,57.96855],[-7.056724,57.966542],[-7.057314,57.965448],[-7.055993,57.964002],[-7.055714,57.962254],[-7.056286,57.961764],[-7.0502,57.960256],[-7.04477,57.960522],[-7.042521,57.959941],[-7.042486,57.958791],[-7.041599,57.957238],[-7.039818,57.95595],[-7.035313,57.955266],[-7.0315,57.955111],[-7.028339,57.95417],[-7.024762,57.954065],[-7.023728,57.953755],[-7.022741,57.952269],[-7.019472,57.95243],[-7.017222,57.953162],[-7.015027,57.954828],[-7.013762,57.95504],[-7.012843,57.956035],[-7.009257,57.954471],[-7.008217,57.95436],[-7.007592,57.953273],[-7.005744,57.954219],[-7.000188,57.953943],[-7.0003,57.95523],[-6.997767,57.955304],[-6.995499,57.954667],[-6.995735,57.956439],[-6.997373,57.957958],[-6.995238,57.958191],[-6.995603,57.959203],[-7.000427,57.96172],[-7.001007,57.960678],[-7.002531,57.960667],[-7.004023,57.962015],[-7.003757,57.962592],[-7.00803,57.963863],[-7.004107,57.963645],[-7.003957,57.96469],[-7.002565,57.964605],[-7.001178,57.965402],[-6.99848,57.965355],[-6.998326,57.964313],[-6.996344,57.963577],[-6.994493,57.961468],[-6.994346,57.960656],[-6.992713,57.960234],[-6.991999,57.961306],[-6.990503,57.960955],[-6.988669,57.957937],[-6.98616,57.956569],[-6.982917,57.955703],[-6.982053,57.955093],[-6.977471,57.954329],[-6.975934,57.955514],[-6.972778,57.953438],[-6.970599,57.952979],[-6.969603,57.952065],[-6.970597,57.950712],[-6.969823,57.950009],[-6.967584,57.949971],[-6.964928,57.950524],[-6.963531,57.950395],[-6.961354,57.951357],[-6.960261,57.952443],[-6.957644,57.951921],[-6.95701,57.95078],[-6.955631,57.950231],[-6.957562,57.949202],[-6.954434,57.948488],[-6.949365,57.949149],[-6.94685,57.950116],[-6.946633,57.951118],[-6.943707,57.950211],[-6.940897,57.948607],[-6.940098,57.947298],[-6.938418,57.946643],[-6.936569,57.946666],[-6.933605,57.944743],[-6.931477,57.944831],[-6.928097,57.945825],[-6.9265,57.945789],[-6.925606,57.944456],[-6.926001,57.943147],[-6.925335,57.941435],[-6.924261,57.940883],[-6.922247,57.940876],[-6.92188,57.940301],[-6.918792,57.940274],[-6.915626,57.94171],[-6.914101,57.943098],[-6.911141,57.944187],[-6.908983,57.946195],[-6.907286,57.946773],[-6.904711,57.948779],[-6.903695,57.94921],[-6.903165,57.950409],[-6.900998,57.948109],[-6.90178,57.947147],[-6.901697,57.945675],[-6.906758,57.944487],[-6.908998,57.942833],[-6.913466,57.941526],[-6.914783,57.940726],[-6.915188,57.93976],[-6.91456,57.938717],[-6.915083,57.937735],[-6.913999,57.936306],[-6.911768,57.935884],[-6.908851,57.936011],[-6.906452,57.935663],[-6.905688,57.936012],[-6.901264,57.935081],[-6.898366,57.93535],[-6.895637,57.934808],[-6.889064,57.933865],[-6.88551,57.934785],[-6.882154,57.93504],[-6.881625,57.934633],[-6.883041,57.931057],[-6.881114,57.931189],[-6.876427,57.930115],[-6.873177,57.93109],[-6.871821,57.932878],[-6.868931,57.933264],[-6.864506,57.931662],[-6.863098,57.930376],[-6.861454,57.929565],[-6.857662,57.929246],[-6.856053,57.929617],[-6.853705,57.931022],[-6.849589,57.934626],[-6.849354,57.932827],[-6.848058,57.931423],[-6.847778,57.930411],[-6.843672,57.929137],[-6.839961,57.929478],[-6.83959,57.928234],[-6.840247,57.927826],[-6.847562,57.926361],[-6.849428,57.924845],[-6.850503,57.924515],[-6.85371,57.924924],[-6.855435,57.926184],[-6.857595,57.925839],[-6.860048,57.926321],[-6.863131,57.924943],[-6.865801,57.925515],[-6.867072,57.924803],[-6.865823,57.923982],[-6.864277,57.92382],[-6.862447,57.921592],[-6.860398,57.920844],[-6.860243,57.920164],[-6.858549,57.919304],[-6.858654,57.916343],[-6.855806,57.91632],[-6.85363,57.914766],[-6.850152,57.913972],[-6.848576,57.914007],[-6.846668,57.912719],[-6.845549,57.912519],[-6.844937,57.910849],[-6.842545,57.909773],[-6.840517,57.909304],[-6.837523,57.909116],[-6.833103,57.906497],[-6.830405,57.906419],[-6.827747,57.905779],[-6.825416,57.904829],[-6.820058,57.903412],[-6.81679,57.902736],[-6.813924,57.900929],[-6.815008,57.900168],[-6.816582,57.900524],[-6.819356,57.900586],[-6.824157,57.901358],[-6.827609,57.901537],[-6.834972,57.903537],[-6.836308,57.903559],[-6.838148,57.904284],[-6.845459,57.905241],[-6.846935,57.905221],[-6.848321,57.904093],[-6.85013,57.904104],[-6.850371,57.902633],[-6.849506,57.901668],[-6.850103,57.900336],[-6.851232,57.899569],[-6.85445,57.899994],[-6.862334,57.902062],[-6.866109,57.902741],[-6.868775,57.901779],[-6.869828,57.900691],[-6.871933,57.900326],[-6.873104,57.900861],[-6.875001,57.900455],[-6.876357,57.900925],[-6.877692,57.904162],[-6.881379,57.906301],[-6.883622,57.90639],[-6.88679,57.906985],[-6.89255,57.906612],[-6.896287,57.907736],[-6.896435,57.907029],[-6.89816,57.906912],[-6.900055,57.907302],[-6.902386,57.909083],[-6.908707,57.90948],[-6.912784,57.910441],[-6.915247,57.910366],[-6.918431,57.910841],[-6.920649,57.910562],[-6.925855,57.908713],[-6.928744,57.907044],[-6.930722,57.90551],[-6.933515,57.90505],[-6.935034,57.904056],[-6.936316,57.903934],[-6.939705,57.902565],[-6.941665,57.902565],[-6.944191,57.903546],[-6.950051,57.903942],[-6.949346,57.902382],[-6.950742,57.901967],[-6.951407,57.900911],[-6.949281,57.900256],[-6.950172,57.898629],[-6.950143,57.89689],[-6.949488,57.896046],[-6.950895,57.893744],[-6.957156,57.892344],[-6.96007,57.890998],[-6.961414,57.888921],[-6.961286,57.888035],[-6.959123,57.88633],[-6.956477,57.885882],[-6.952203,57.884261],[-6.949025,57.884],[-6.94706,57.88319],[-6.94507,57.882933],[-6.941584,57.881354],[-6.939845,57.881733],[-6.938411,57.881001],[-6.937479,57.879868],[-6.935336,57.879578],[-6.932425,57.877744],[-6.930738,57.87776],[-6.925791,57.875609],[-6.922716,57.875661],[-6.921118,57.87521],[-6.918258,57.873],[-6.915648,57.872377],[-6.914777,57.872614],[-6.911433,57.871308],[-6.910144,57.872316],[-6.90886,57.87157],[-6.907691,57.871786],[-6.905317,57.869386],[-6.905532,57.868771],[-6.909392,57.86854],[-6.911256,57.86952],[-6.912848,57.869553],[-6.913703,57.867721],[-6.915323,57.867716],[-6.9158,57.866655],[-6.91994,57.865735],[-6.920558,57.866419],[-6.924958,57.867558],[-6.928699,57.867519],[-6.929759,57.868424],[-6.932007,57.869123],[-6.93237,57.869785],[-6.936274,57.871611],[-6.938457,57.872025],[-6.940816,57.871428],[-6.937621,57.870122],[-6.941846,57.867421],[-6.944529,57.867478],[-6.948234,57.866402],[-6.946862,57.868212],[-6.948225,57.868612],[-6.94864,57.869464],[-6.951626,57.871556],[-6.951963,57.875659],[-6.951126,57.876875],[-6.951935,57.877414],[-6.953933,57.876477],[-6.956915,57.869462],[-6.958982,57.867837],[-6.96176,57.869137],[-6.962577,57.867839],[-6.965696,57.867807],[-6.97078,57.866368],[-6.974575,57.864843],[-6.978542,57.86453],[-6.982934,57.864598],[-6.982845,57.865401],[-6.984545,57.869018],[-6.986036,57.869603],[-6.987752,57.86959],[-6.991695,57.86853],[-6.992856,57.868498],[-6.995758,57.866786],[-6.996902,57.865418],[-6.996318,57.864861],[-6.992858,57.863812],[-6.992585,57.860413],[-6.994046,57.859984],[-6.99459,57.85904],[-6.998069,57.858211],[-7.000087,57.858397],[-7.000442,57.856936],[-6.99914,57.856567],[-7.000202,57.855581],[-7.001467,57.855576],[-7.001674,57.853728],[-7.002699,57.852239],[-7.00371,57.85223],[-7.002091,57.848655],[-7.003433,57.847869],[-7.000601,57.846559],[-7.004686,57.84669],[-7.005435,57.845582],[-7.008514,57.845457],[-7.00822,57.844652],[-7.010729,57.844192],[-7.012884,57.844803],[-7.014465,57.844489],[-7.014983,57.843501],[-7.014476,57.841403],[-7.015288,57.840113],[-7.019797,57.83645],[-7.023417,57.8357],[-7.022702,57.83501],[-7.025886,57.834406],[-7.028508,57.835263],[-7.03028,57.835379],[-7.032488,57.834618],[-7.037359,57.833698],[-7.039987,57.834134],[-7.040513,57.832984],[-7.040337,57.831542],[-7.042787,57.829772],[-7.047671,57.827399],[-7.053875,57.824971],[-7.065564,57.822634],[-7.073402,57.822617],[-7.075446,57.822103],[-7.075967,57.82143],[-7.07233,57.819551],[-7.07083,57.817285],[-7.069773,57.812231],[-7.070925,57.811121],[-7.074268,57.810948],[-7.07561,57.81174],[-7.077576,57.812255],[-7.079586,57.813989],[-7.081071,57.814373],[-7.081367,57.817456],[-7.080322,57.818178],[-7.080879,57.819121],[-7.079483,57.819458],[-7.078437,57.821133],[-7.078395,57.824477],[-7.079665,57.828578],[-7.080904,57.830247],[-7.081945,57.830695],[-7.081299,57.831671],[-7.08397,57.833147],[-7.085551,57.833178],[-7.087841,57.834399],[-7.089722,57.834701],[-7.092699,57.836363],[-7.095035,57.837016],[-7.097202,57.838022],[-7.099073,57.837897],[-7.099643,57.838882],[-7.101891,57.839925],[-7.106329,57.841298],[-7.10978,57.841302],[-7.111182,57.84036],[-7.1141,57.839522],[-7.114561,57.838734],[-7.116136,57.83854],[-7.12206,57.839146],[-7.1229,57.838941],[-7.124399,57.837328],[-7.125248,57.837946],[-7.12741,57.837983],[-7.130766,57.838496],[-7.131516,57.837665],[-7.131674,57.835873],[-7.132849,57.835712],[-7.129374,57.833937],[-7.127039,57.833654],[-7.126678,57.832359],[-7.124651,57.830862],[-7.124985,57.829688],[-7.126201,57.82931],[-7.125696,57.82736],[-7.128195,57.824705],[-7.126587,57.824557],[-7.125204,57.822481],[-7.125697,57.822165],[-7.123241,57.819294],[-7.121466,57.818184],[-7.120072,57.816575],[-7.118737,57.816314],[-7.117519,57.815099],[-7.114583,57.813418],[-7.112112,57.813118],[-7.110809,57.812073],[-7.108994,57.81211],[-7.106526,57.811229],[-7.106344,57.810305],[-7.103379,57.808117],[-7.100902,57.809549],[-7.099326,57.809734],[-7.096875,57.808613],[-7.095961,57.808704],[-7.093616,57.80762],[-7.09265,57.80866],[-7.090465,57.808044],[-7.087888,57.808394],[-7.083768,57.806955],[-7.083711,57.804756],[-7.082981,57.803851],[-7.083704,57.803267],[-7.082463,57.80162],[-7.08148,57.801296],[-7.079888,57.801967],[-7.077546,57.80162],[-7.075689,57.800785],[-7.074924,57.799879],[-7.076115,57.797794],[-7.076422,57.79616],[-7.075431,57.794165],[-7.074008,57.792812],[-7.072705,57.792452],[-7.072366,57.79084],[-7.071009,57.790648],[-7.068154,57.788853],[-7.067147,57.788822],[-7.066901,57.787158],[-7.062952,57.7845],[-7.060172,57.783172],[-7.059181,57.783131],[-7.057105,57.780519],[-7.055285,57.779728],[-7.054342,57.778047],[-7.053023,57.778132],[-7.051104,57.779161],[-7.048312,57.777993],[-7.047793,57.777115],[-7.045032,57.775628],[-7.044645,57.775037],[-7.033673,57.770357],[-7.029963,57.768128],[-7.027512,57.76798],[-7.026599,57.768819],[-7.028126,57.770206],[-7.028369,57.771234],[-7.029543,57.771888],[-7.029433,57.773249],[-7.030863,57.774337],[-7.031405,57.775649],[-7.021935,57.772347],[-7.019907,57.771182],[-7.014304,57.770041],[-7.013291,57.768762],[-7.01717,57.768732],[-7.019129,57.768486],[-7.022063,57.770603],[-7.024954,57.771279],[-7.025916,57.769983],[-7.02596,57.768451],[-7.024449,57.76797],[-7.025167,57.76715],[-7.022799,57.766055],[-7.019731,57.763888],[-7.018306,57.762582],[-7.015811,57.762433],[-7.014991,57.761339],[-7.011226,57.759179],[-7.012064,57.758727],[-7.009848,57.756462],[-7.011538,57.755725],[-7.013213,57.757548],[-7.01799,57.759158],[-7.017938,57.757819],[-7.016615,57.757503],[-7.016203,57.756597],[-7.014323,57.755781],[-7.012759,57.756217],[-7.012104,57.755442],[-7.013078,57.754634],[-7.010599,57.752842],[-7.008711,57.752673],[-7.007725,57.75363],[-7.009099,57.755169],[-7.007907,57.755744],[-7.003817,57.753289],[-7.002135,57.753116],[-7.00029,57.750579],[-6.997581,57.74907],[-6.996406,57.747437],[-6.994416,57.746682],[-6.993568,57.744597],[-6.992043,57.744803],[-6.98734,57.742469],[-6.983903,57.741712],[-6.98643,57.741205],[-6.984292,57.740014],[-6.982925,57.738813],[-6.981304,57.736403],[-6.979839,57.735547],[-6.97702,57.735277],[-6.975583,57.735531],[-6.975263,57.734027],[-6.977401,57.734384],[-6.97703,57.733292],[-6.975505,57.732948],[-6.976467,57.732097],[-6.974743,57.729162],[-6.973569,57.729574],[-6.971356,57.728705],[-6.968212,57.727923],[-6.965655,57.727694],[-6.967978,57.72956],[-6.966029,57.729501],[-6.965713,57.730444],[-6.967046,57.730792],[-6.966565,57.731984],[-6.968917,57.733354],[-6.969582,57.734446],[-6.97243,57.736055],[-6.974014,57.740043],[-6.975735,57.74084],[-6.977223,57.743066],[-6.975304,57.742878],[-6.97176,57.740754],[-6.972585,57.742829],[-6.968431,57.741503],[-6.966712,57.74159],[-6.966263,57.739995],[-6.963681,57.737452],[-6.962112,57.7382],[-6.959745,57.73785],[-6.958339,57.738827],[-6.953884,57.737094],[-6.952513,57.737573],[-6.952962,57.73862],[-6.952173,57.740035],[-6.94882,57.739636],[-6.94714,57.740391],[-6.945774,57.739033],[-6.944603,57.73875],[-6.942751,57.740715],[-6.943537,57.742218],[-6.939716,57.745282],[-6.939959,57.746159],[-6.941786,57.747064],[-6.94108,57.748054],[-6.938726,57.748404],[-6.937621,57.749726],[-6.937833,57.751073],[-6.941381,57.752963],[-6.939886,57.753782],[-6.941502,57.754704],[-6.940304,57.755484],[-6.935157,57.75569],[-6.935693,57.757149],[-6.937525,57.75847],[-6.93137,57.758776],[-6.932271,57.760598],[-6.930271,57.762247],[-6.930857,57.759608],[-6.930563,57.758795],[-6.928988,57.757779],[-6.927097,57.758784],[-6.92273,57.759115],[-6.923867,57.759971],[-6.920322,57.759952],[-6.919193,57.759636],[-6.91644,57.759936],[-6.913478,57.761144],[-6.911835,57.760661],[-6.910064,57.761511],[-6.908702,57.76133],[-6.90731,57.762083],[-6.90378,57.763262],[-6.903077,57.764473],[-6.90063,57.763627],[-6.899208,57.764307],[-6.899311,57.766692],[-6.900594,57.767326],[-6.903759,57.767199],[-6.90466,57.766269],[-6.907549,57.76734],[-6.907883,57.766454],[-6.910053,57.76749],[-6.907694,57.767884],[-6.905862,57.767692],[-6.90588,57.768929],[-6.909727,57.769922],[-6.908387,57.770964],[-6.906464,57.770566],[-6.906193,57.77167],[-6.908361,57.772013],[-6.910548,57.772927],[-6.912578,57.772749],[-6.914148,57.773465],[-6.918843,57.773882],[-6.920119,57.775189],[-6.920071,57.776229],[-6.920923,57.777094],[-6.920273,57.77797],[-6.918259,57.776953],[-6.917709,57.775612],[-6.915789,57.77541],[-6.913788,57.775803],[-6.912727,57.775324],[-6.907705,57.774616],[-6.906958,57.77482],[-6.907098,57.777011],[-6.91112,57.779377],[-6.913384,57.779713],[-6.916294,57.780578],[-6.916724,57.779853],[-6.919415,57.780937],[-6.91943,57.781443],[-6.916716,57.782322],[-6.915368,57.78116],[-6.913585,57.780891],[-6.912689,57.781606],[-6.912629,57.78284],[-6.910332,57.782487],[-6.910051,57.781589],[-6.90561,57.780472],[-6.902416,57.780924],[-6.902678,57.778895],[-6.89999,57.778385],[-6.897029,57.778861],[-6.892175,57.778056],[-6.890046,57.778312],[-6.888176,57.777747],[-6.888227,57.777129],[-6.890909,57.77685],[-6.892337,57.777542],[-6.894892,57.777894],[-6.897921,57.77715],[-6.900395,57.777076],[-6.897446,57.775014],[-6.896945,57.773701],[-6.893661,57.77337],[-6.891109,57.774961],[-6.887598,57.773512],[-6.884566,57.773159],[-6.880315,57.773098],[-6.879206,57.773987],[-6.876971,57.773418],[-6.872973,57.773897],[-6.8725,57.775267],[-6.872746,57.776639],[-6.873648,57.77753],[-6.875828,57.778462],[-6.876505,57.779921],[-6.875847,57.780283],[-6.8797,57.781343],[-6.878052,57.782393],[-6.88061,57.784368],[-6.881595,57.784308],[-6.884206,57.785799],[-6.881054,57.785975],[-6.882778,57.788187],[-6.882525,57.789067],[-6.884201,57.789511],[-6.884722,57.790782],[-6.884073,57.79151],[-6.88501,57.7924],[-6.88377,57.793323],[-6.881997,57.792133],[-6.880005,57.791983],[-6.878724,57.792965],[-6.879976,57.794671],[-6.883279,57.795607],[-6.881179,57.796453],[-6.878773,57.79644],[-6.881984,57.797908],[-6.882494,57.798441],[-6.88204,57.799795],[-6.880248,57.797672],[-6.879038,57.798055],[-6.87737,57.796698],[-6.875602,57.796477],[-6.874397,57.795706],[-6.870002,57.796058],[-6.869367,57.794987],[-6.870354,57.793985],[-6.865841,57.793812],[-6.863129,57.794438],[-6.860694,57.793623],[-6.85956,57.794461],[-6.859458,57.795519],[-6.862993,57.797399],[-6.864517,57.798547],[-6.865757,57.798412],[-6.866324,57.797305],[-6.869636,57.797225],[-6.870822,57.797928],[-6.870766,57.798852],[-6.868036,57.799757],[-6.866547,57.798974],[-6.863864,57.799151],[-6.86163,57.797692],[-6.856925,57.797931],[-6.856057,57.799162],[-6.856413,57.800076],[-6.861037,57.802817],[-6.862965,57.804921],[-6.86146,57.805327],[-6.859723,57.804343],[-6.859429,57.806043],[-6.861084,57.807622],[-6.863199,57.808004],[-6.863189,57.808942],[-6.864368,57.809383],[-6.863708,57.811221],[-6.862944,57.811684],[-6.863124,57.812893],[-6.8596,57.811458],[-6.857984,57.80875],[-6.858923,57.807775],[-6.85723,57.807542],[-6.855961,57.8084],[-6.857324,57.810132],[-6.857679,57.811234],[-6.859548,57.812767],[-6.855478,57.81298],[-6.854077,57.814043],[-6.852672,57.813573],[-6.853115,57.812179],[-6.851522,57.810699],[-6.851987,57.809634],[-6.849792,57.808138],[-6.850568,57.80697],[-6.850346,57.805071],[-6.847712,57.803135],[-6.844365,57.804501],[-6.84406,57.805052],[-6.846095,57.806656],[-6.843049,57.806935],[-6.841055,57.809746],[-6.840597,57.809795],[-6.841328,57.812691],[-6.841251,57.81425],[-6.838566,57.81541],[-6.833635,57.814752],[-6.835188,57.816637],[-6.836248,57.816556],[-6.837238,57.817948],[-6.839566,57.818445],[-6.841822,57.820449],[-6.843342,57.820715],[-6.844183,57.822207],[-6.845508,57.822219],[-6.847905,57.824116],[-6.848011,57.825659],[-6.849852,57.826455],[-6.851613,57.828582],[-6.854682,57.83018],[-6.856988,57.83208],[-6.859675,57.83231],[-6.858467,57.831231],[-6.860671,57.829883],[-6.861798,57.830919],[-6.861342,57.83238],[-6.863263,57.832406],[-6.862703,57.833661],[-6.860324,57.832278],[-6.859826,57.832929],[-6.860372,57.834037],[-6.859272,57.834238],[-6.858354,57.833021],[-6.852961,57.830835],[-6.851121,57.829259],[-6.847498,57.82813],[-6.847663,57.83037],[-6.846392,57.831393],[-6.843997,57.832013],[-6.841826,57.829001],[-6.839203,57.827558],[-6.837632,57.825937],[-6.837598,57.824713],[-6.836651,57.823152],[-6.834504,57.821144],[-6.834184,57.819191],[-6.831765,57.818799],[-6.829868,57.817219],[-6.825984,57.81545],[-6.825591,57.814392],[-6.823327,57.812788],[-6.81884,57.813421],[-6.817228,57.81162],[-6.815236,57.810932],[-6.812846,57.809497],[-6.810772,57.810625],[-6.8082,57.811411],[-6.810435,57.813014],[-6.810849,57.814056],[-6.809259,57.814698],[-6.809333,57.8157],[-6.806886,57.815585],[-6.805558,57.814268],[-6.803273,57.814392],[-6.802471,57.813307],[-6.804095,57.812941],[-6.803517,57.811899],[-6.799618,57.810416],[-6.798983,57.809568],[-6.796691,57.807986],[-6.797642,57.806709],[-6.796039,57.805681],[-6.791322,57.804614],[-6.788794,57.804997],[-6.787572,57.805628],[-6.788641,57.806417],[-6.78807,57.807476],[-6.790224,57.80999],[-6.7886,57.809943],[-6.786588,57.811099],[-6.78702,57.813021],[-6.785836,57.814258],[-6.787667,57.814841],[-6.789937,57.817491],[-6.793165,57.818502],[-6.797228,57.82123],[-6.795231,57.820892],[-6.793401,57.821199],[-6.790481,57.821112],[-6.789498,57.821896],[-6.789305,57.823549],[-6.789889,57.824773],[-6.791774,57.826209],[-6.792794,57.827433],[-6.794778,57.827926],[-6.79837,57.830992],[-6.799615,57.831349],[-6.797893,57.833104],[-6.797817,57.834421],[-6.795565,57.833342],[-6.793521,57.834379],[-6.792,57.833625],[-6.792907,57.832797],[-6.789542,57.830597],[-6.788588,57.831656],[-6.787063,57.830078],[-6.786653,57.82882],[-6.784655,57.828849],[-6.781413,57.827488],[-6.780112,57.827595],[-6.779044,57.826882],[-6.777281,57.826988],[-6.776195,57.826285],[-6.774787,57.826405],[-6.772476,57.825478],[-6.770262,57.82591],[-6.769344,57.828633],[-6.767898,57.82947],[-6.768515,57.831243],[-6.767014,57.832558],[-6.765614,57.832871],[-6.764459,57.832339],[-6.764596,57.831409],[-6.766998,57.830666],[-6.766168,57.829558],[-6.767471,57.827919],[-6.767288,57.826866],[-6.768859,57.825061],[-6.766403,57.823479],[-6.764087,57.822828],[-6.76355,57.821949],[-6.761488,57.821527],[-6.757819,57.822857],[-6.757742,57.823709],[-6.758765,57.826375],[-6.758216,57.827174],[-6.760185,57.828754],[-6.756393,57.828672],[-6.755224,57.829966],[-6.752987,57.829487],[-6.752945,57.828116],[-6.751662,57.826983],[-6.751578,57.826181],[-6.752664,57.823756],[-6.750917,57.822107],[-6.746028,57.823511],[-6.744422,57.822771],[-6.742796,57.824321],[-6.740608,57.824634],[-6.741153,57.826312],[-6.739252,57.826918],[-6.737504,57.826453],[-6.736596,57.826851],[-6.73852,57.829484],[-6.740019,57.830312],[-6.740592,57.831658],[-6.739414,57.831999],[-6.738374,57.834021],[-6.740191,57.835397],[-6.740508,57.836717],[-6.744766,57.839022],[-6.74547,57.840147],[-6.742732,57.840605],[-6.740907,57.841802],[-6.744755,57.844186],[-6.747857,57.843786],[-6.748306,57.843094],[-6.751851,57.841455],[-6.752943,57.841926],[-6.754599,57.841713],[-6.755355,57.842734],[-6.754641,57.843314],[-6.755569,57.845651],[-6.757525,57.846534],[-6.757911,57.847727],[-6.759472,57.849612],[-6.761653,57.848904],[-6.762266,57.852199],[-6.765089,57.851726],[-6.765922,57.85271],[-6.767715,57.852694],[-6.767894,57.853765],[-6.765417,57.85626],[-6.764638,57.856051],[-6.762947,57.857293],[-6.766658,57.859143],[-6.765587,57.860535],[-6.769881,57.861417],[-6.769561,57.864092],[-6.770873,57.865207],[-6.772253,57.864858],[-6.773751,57.865214],[-6.772879,57.866522],[-6.774072,57.867498],[-6.776548,57.868019],[-6.780835,57.869986],[-6.784599,57.870235],[-6.786268,57.869776],[-6.789931,57.869773],[-6.791565,57.868517],[-6.79286,57.869051],[-6.79369,57.867361],[-6.790227,57.865725],[-6.789963,57.864808],[-6.792505,57.865248],[-6.793333,57.866625],[-6.795231,57.865861],[-6.796291,57.867572],[-6.800928,57.867693],[-6.803904,57.867168],[-6.805917,57.871558],[-6.80932,57.874588],[-6.810232,57.875691],[-6.809278,57.87602],[-6.809295,57.877279],[-6.810487,57.877738],[-6.810861,57.879397],[-6.814323,57.880546],[-6.812187,57.881357],[-6.811668,57.882398],[-6.80872,57.881763],[-6.806132,57.882806],[-6.804185,57.884728],[-6.801505,57.885653],[-6.801065,57.884757],[-6.801215,57.882848],[-6.799566,57.88251],[-6.796571,57.881034],[-6.794688,57.88095],[-6.794136,57.879725],[-6.789164,57.880304],[-6.787866,57.880192],[-6.787603,57.882275],[-6.788572,57.884735],[-6.791988,57.885716],[-6.793554,57.886881],[-6.789892,57.888746],[-6.793068,57.889495],[-6.793687,57.892432],[-6.795562,57.894205],[-6.802277,57.896579],[-6.802914,57.897602],[-6.79978,57.897442],[-6.798432,57.896777],[-6.792695,57.897016],[-6.791395,57.896079],[-6.788882,57.89571],[-6.787601,57.895873],[-6.784539,57.897697],[-6.780011,57.897361],[-6.778469,57.898604],[-6.776665,57.89901],[-6.775108,57.898389],[-6.773743,57.898647],[-6.772082,57.897868],[-6.772126,57.89646],[-6.769701,57.89481],[-6.765778,57.893672],[-6.764055,57.893569],[-6.763681,57.894543],[-6.76067,57.89489],[-6.75862,57.895807],[-6.757762,57.89477],[-6.758421,57.893499],[-6.757443,57.892938],[-6.757199,57.891413],[-6.756121,57.890414],[-6.7537,57.889291],[-6.751312,57.888859],[-6.747374,57.889285],[-6.746667,57.888156],[-6.747225,57.887456],[-6.745595,57.886532],[-6.742184,57.885729],[-6.741307,57.886701],[-6.737382,57.887096],[-6.736139,57.888114],[-6.733696,57.887597],[-6.733234,57.885546],[-6.731543,57.884507],[-6.7269,57.884467],[-6.724889,57.884081],[-6.723839,57.885039],[-6.720185,57.886306],[-6.717052,57.885512],[-6.715104,57.884741],[-6.713305,57.883163],[-6.709539,57.883861],[-6.70785,57.883664],[-6.705542,57.884584],[-6.704374,57.883724],[-6.70132,57.883103],[-6.699866,57.88207],[-6.697779,57.881567],[-6.697366,57.880627],[-6.694682,57.881018],[-6.692392,57.88035],[-6.690829,57.881854],[-6.686542,57.88171],[-6.685491,57.881306],[-6.68368,57.881741],[-6.679599,57.880601],[-6.677396,57.880775],[-6.674551,57.880252],[-6.670194,57.879997],[-6.668408,57.880544],[-6.666435,57.882906],[-6.666582,57.884367],[-6.664214,57.885182],[-6.665252,57.88791],[-6.669502,57.890142],[-6.67071,57.891437],[-6.67076,57.892798],[-6.67332,57.894557],[-6.670858,57.895889],[-6.670657,57.897138],[-6.669631,57.898147],[-6.670995,57.89941],[-6.670142,57.899932],[-6.676922,57.902972],[-6.679577,57.903392],[-6.679777,57.903927],[-6.682256,57.904819],[-6.682391,57.905521],[-6.686865,57.906187],[-6.688527,57.906674],[-6.689382,57.907733],[-6.694798,57.909092],[-6.695185,57.910628],[-6.698036,57.911758],[-6.702378,57.91192],[-6.705795,57.912421],[-6.709307,57.913643],[-6.711345,57.914072],[-6.713551,57.915357],[-6.710146,57.915863],[-6.704075,57.91507],[-6.701419,57.915003],[-6.699943,57.915408],[-6.699274,57.916243],[-6.700275,57.916911],[-6.699383,57.918496],[-6.69554,57.918252],[-6.693645,57.917854],[-6.691911,57.918292],[-6.689842,57.916967],[-6.687408,57.916817],[-6.683144,57.916081],[-6.681445,57.916394],[-6.681802,57.918479],[-6.678211,57.916738],[-6.676811,57.917493],[-6.676313,57.920585],[-6.67696,57.92206],[-6.67376,57.921238],[-6.673871,57.922182],[-6.676538,57.924099],[-6.67945,57.925018],[-6.680439,57.925735],[-6.680417,57.926857],[-6.683621,57.930413],[-6.681792,57.930198],[-6.683455,57.932413],[-6.686901,57.934039],[-6.688774,57.934266],[-6.690123,57.935012],[-6.689677,57.937124],[-6.690391,57.93784],[-6.692358,57.938433],[-6.69218,57.940047],[-6.693825,57.941044],[-6.69704,57.941534],[-6.697223,57.943317],[-6.699455,57.943761],[-6.703143,57.946606],[-6.703442,57.947766],[-6.704822,57.948459],[-6.703893,57.950905],[-6.707008,57.95352],[-6.707848,57.953948],[-6.711144,57.954324],[-6.715818,57.952742],[-6.717592,57.950891],[-6.718843,57.951126],[-6.72109,57.950702],[-6.726936,57.950768],[-6.727943,57.950128],[-6.730702,57.951016],[-6.74104,57.952247],[-6.743183,57.951695],[-6.743963,57.952727],[-6.740783,57.95449],[-6.733434,57.954812],[-6.731622,57.953836],[-6.73055,57.952639],[-6.727664,57.953273],[-6.72634,57.952792],[-6.724726,57.953256],[-6.725086,57.954286],[-6.727018,57.954403],[-6.727058,57.955283],[-6.729328,57.955496],[-6.726279,57.956689],[-6.727411,57.958149],[-6.725585,57.959083],[-6.721941,57.959934],[-6.721321,57.961447],[-6.724061,57.967404],[-6.725533,57.968743],[-6.726197,57.970207],[-6.724978,57.970954],[-6.728474,57.976657],[-6.728275,57.977785],[-6.73037,57.979605],[-6.731068,57.98148],[-6.734067,57.983546],[-6.735303,57.985349],[-6.735732,57.987055],[-6.738067,57.990256],[-6.740195,57.992191],[-6.7442,57.993717],[-6.745373,57.993527],[-6.749189,57.993683],[-6.755801,57.992316],[-6.756835,57.992633],[-6.756637,57.99418],[-6.757066,57.995985],[-6.752636,57.99714],[-6.751663,57.999077],[-6.752809,58.000757],[-6.755957,58.002658],[-6.757935,58.003444],[-6.758438,58.004396],[-6.756932,58.004713],[-6.754909,58.004246],[-6.752646,58.004958],[-6.751523,58.006235],[-6.746461,58.006962],[-6.742435,58.008226],[-6.738935,58.008855],[-6.734638,58.010343],[-6.732477,58.010727],[-6.729873,58.011609],[-6.728943,58.01241],[-6.726694,58.012309],[-6.724052,58.013345],[-6.723417,58.014599],[-6.719903,58.016684],[-6.71687,58.017662],[-6.713271,58.020804],[-6.711025,58.021963],[-6.70899,58.023654],[-6.706519,58.02463],[-6.706072,58.025705],[-6.70497,58.02614],[-6.702182,58.029167],[-6.702559,58.0305],[-6.700072,58.031371],[-6.700517,58.032274],[-6.698513,58.032235],[-6.693368,58.034781],[-6.692028,58.036723],[-6.68985,58.037768],[-6.68359,58.039439],[-6.681741,58.039628],[-6.681275,58.040603],[-6.678646,58.04093],[-6.678155,58.041582],[-6.675054,58.043158],[-6.672119,58.044066],[-6.671385,58.045847],[-6.669992,58.046353],[-6.671073,58.048004],[-6.669464,58.04984],[-6.670181,58.051491],[-6.669936,58.052539],[-6.671182,58.053442],[-6.673988,58.05355],[-6.676096,58.054687],[-6.679008,58.055349],[-6.683117,58.05504],[-6.683749,58.054621],[-6.686089,58.055254],[-6.689355,58.05485],[-6.689886,58.056906],[-6.691546,58.058097],[-6.688379,58.058034],[-6.686254,58.057308],[-6.683721,58.057088],[-6.682853,58.057519],[-6.680454,58.056837],[-6.677851,58.05703],[-6.673419,58.058061],[-6.669782,58.057723],[-6.666804,58.058232],[-6.662455,58.057448],[-6.660958,58.057809],[-6.657077,58.057971],[-6.653663,58.05758],[-6.647478,58.057298],[-6.641882,58.057678],[-6.636438,58.057656],[-6.630165,58.056194],[-6.62471,58.055745],[-6.620218,58.054928],[-6.613708,58.054701],[-6.611065,58.055193],[-6.606831,58.053813],[-6.605243,58.052876],[-6.603372,58.053034],[-6.600965,58.05273],[-6.599984,58.053346],[-6.596885,58.053588],[-6.59337,58.05323],[-6.589356,58.05355],[-6.588201,58.05321],[-6.591459,58.051761],[-6.595481,58.051242],[-6.597955,58.051355],[-6.599698,58.051849],[-6.602416,58.051018],[-6.605953,58.051016],[-6.608048,58.050294],[-6.609504,58.050986],[-6.611055,58.050192],[-6.613698,58.050622],[-6.617338,58.048462],[-6.617216,58.048106],[-6.621792,58.046916],[-6.624843,58.048517],[-6.624418,58.050147],[-6.625316,58.050861],[-6.627792,58.051435],[-6.629649,58.053465],[-6.632928,58.054735],[-6.636327,58.054912],[-6.639935,58.054142],[-6.643892,58.055066],[-6.648475,58.055556],[-6.650941,58.054616],[-6.653451,58.054871],[-6.656617,58.054504],[-6.659248,58.054951],[-6.664114,58.05304],[-6.665015,58.053115],[-6.6656,58.051493],[-6.665291,58.050555],[-6.667124,58.049525],[-6.666637,58.047483],[-6.666919,58.046529],[-6.665509,58.043392],[-6.664258,58.04252],[-6.666562,58.041846],[-6.666398,58.041367],[-6.668369,58.040422],[-6.668882,58.039418],[-6.672472,58.036575],[-6.675093,58.036091],[-6.680426,58.037578],[-6.683031,58.036892],[-6.685056,58.035891],[-6.685622,58.035105],[-6.688115,58.034092],[-6.689146,58.032907],[-6.691551,58.028199],[-6.691229,58.027559],[-6.693598,58.027134],[-6.6953,58.026385],[-6.697005,58.024553],[-6.701226,58.021882],[-6.704234,58.018147],[-6.709977,58.016539],[-6.711453,58.013689],[-6.712606,58.012786],[-6.711946,58.011023],[-6.712836,58.009956],[-6.711127,58.009005],[-6.713569,58.007641],[-6.713596,58.005487],[-6.711647,58.003329],[-6.70883,58.002486],[-6.709148,58.001965],[-6.706816,57.998983],[-6.706414,57.996737],[-6.70478,57.994732],[-6.704475,57.99369],[-6.704884,57.991942],[-6.707444,57.991144],[-6.707597,57.990247],[-6.709354,57.989692],[-6.708756,57.987533],[-6.711871,57.986814],[-6.712473,57.985857],[-6.712341,57.983118],[-6.710146,57.981427],[-6.710466,57.980768],[-6.710482,57.977929],[-6.708003,57.976141],[-6.709159,57.975788],[-6.709449,57.974005],[-6.708315,57.97201],[-6.708791,57.970288],[-6.708626,57.967476],[-6.706648,57.9677],[-6.701465,57.96554],[-6.703312,57.964077],[-6.703555,57.962927],[-6.702136,57.960443],[-6.699762,57.959049],[-6.699035,57.960692],[-6.69787,57.961814],[-6.695995,57.961326],[-6.692452,57.959469],[-6.69204,57.957215],[-6.690106,57.955963],[-6.690213,57.953611],[-6.685828,57.948897],[-6.683733,57.946835],[-6.682561,57.946194],[-6.68138,57.944701],[-6.677884,57.942701],[-6.676028,57.938405],[-6.674578,57.936868],[-6.674262,57.935094],[-6.67165,57.933671],[-6.667933,57.93025],[-6.666145,57.929376],[-6.663191,57.925248],[-6.65996,57.92328],[-6.656645,57.920406],[-6.654012,57.919527],[-6.652325,57.918181],[-6.649704,57.917459],[-6.647833,57.9175],[-6.647791,57.919135],[-6.646815,57.919905],[-6.645515,57.919178],[-6.643875,57.919701],[-6.644106,57.920343],[-6.646307,57.921771],[-6.647149,57.923507],[-6.646654,57.924056],[-6.643201,57.924219],[-6.639701,57.921869],[-6.637686,57.922109],[-6.635551,57.921346],[-6.632207,57.921823],[-6.63196,57.922664],[-6.633165,57.923619],[-6.632515,57.924672],[-6.632906,57.925935],[-6.634232,57.927174],[-6.633834,57.928019],[-6.62949,57.923955],[-6.627215,57.923948],[-6.627322,57.921372],[-6.627777,57.920123],[-6.625641,57.91976],[-6.624241,57.918053],[-6.623854,57.916843],[-6.619795,57.916677],[-6.617485,57.91547],[-6.616416,57.917214],[-6.614598,57.916349],[-6.613425,57.915228],[-6.610947,57.916743],[-6.60782,57.916083],[-6.60718,57.918737],[-6.608973,57.918348],[-6.609789,57.919375],[-6.612981,57.920845],[-6.613019,57.922517],[-6.612007,57.923268],[-6.613044,57.924133],[-6.612468,57.92579],[-6.614458,57.927896],[-6.616927,57.92874],[-6.619955,57.931075],[-6.62242,57.931283],[-6.626286,57.933922],[-6.626403,57.93547],[-6.623941,57.934682],[-6.622895,57.935817],[-6.624795,57.938289],[-6.62475,57.939637],[-6.627959,57.943085],[-6.631814,57.948246],[-6.638326,57.952264],[-6.640519,57.954598],[-6.642491,57.955839],[-6.643422,57.958253],[-6.645404,57.960845],[-6.645231,57.961639],[-6.646104,57.963221],[-6.644403,57.963091],[-6.643338,57.962379],[-6.64175,57.962219],[-6.639748,57.960275],[-6.638047,57.959811],[-6.636346,57.958825],[-6.635705,57.957927],[-6.63326,57.956887],[-6.630015,57.953713],[-6.627648,57.952666],[-6.624921,57.952186],[-6.623002,57.951014],[-6.621209,57.949245],[-6.619073,57.948162],[-6.617726,57.947946],[-6.614303,57.948983],[-6.6132,57.950967],[-6.611098,57.950013],[-6.609062,57.949868],[-6.611446,57.948251],[-6.611809,57.946552],[-6.613168,57.946052],[-6.613758,57.944133],[-6.61037,57.942313],[-6.610062,57.941071],[-6.610707,57.939742],[-6.609639,57.93882],[-6.607521,57.938148],[-6.607625,57.937142],[-6.605419,57.935963],[-6.603791,57.935604],[-6.6028,57.933674],[-6.603013,57.931913],[-6.601792,57.930163],[-6.600404,57.9297],[-6.598684,57.928171],[-6.593634,57.925615],[-6.59373,57.924249],[-6.594887,57.923388],[-6.597301,57.923296],[-6.595209,57.922207],[-6.592943,57.922002],[-6.59237,57.92142],[-6.589937,57.920829],[-6.589265,57.91994],[-6.589327,57.918152],[-6.588457,57.917889],[-6.587336,57.916253],[-6.581998,57.914721],[-6.579689,57.916032],[-6.577824,57.916576],[-6.57596,57.915876],[-6.577752,57.915216],[-6.577767,57.91401],[-6.578681,57.912633],[-6.577486,57.911875],[-6.577118,57.910508],[-6.575393,57.911429],[-6.573729,57.910972],[-6.573455,57.910213],[-6.571943,57.909813],[-6.570412,57.910201],[-6.571281,57.911919],[-6.570588,57.912979],[-6.570893,57.913782],[-6.569551,57.914653],[-6.570652,57.915955],[-6.572997,57.917425],[-6.572328,57.918412],[-6.574985,57.920164],[-6.573573,57.921155],[-6.574029,57.92354],[-6.573008,57.924611],[-6.568755,57.922813],[-6.566615,57.92293],[-6.565485,57.921159],[-6.566471,57.920534],[-6.569012,57.920649],[-6.569782,57.919061],[-6.568845,57.918204],[-6.566805,57.917783],[-6.565974,57.916761],[-6.565906,57.91523],[-6.565156,57.914835],[-6.562089,57.914866],[-6.564792,57.918697],[-6.564082,57.919891],[-6.559135,57.91572],[-6.557684,57.915166],[-6.557225,57.917024],[-6.55432,57.916757],[-6.553219,57.915744],[-6.551827,57.916761],[-6.552168,57.918362],[-6.549774,57.917833],[-6.549073,57.916968],[-6.547055,57.916312],[-6.545173,57.917068],[-6.543252,57.916444],[-6.540316,57.916482],[-6.537929,57.91885],[-6.538858,57.919452],[-6.537404,57.920719],[-6.53803,57.921861],[-6.537102,57.923107],[-6.537979,57.92371],[-6.539048,57.925415],[-6.538478,57.926477],[-6.538825,57.927548],[-6.540128,57.928631],[-6.538794,57.929578],[-6.539777,57.930267],[-6.540076,57.931556],[-6.54304,57.932736],[-6.544183,57.934147],[-6.545306,57.936742],[-6.547538,57.937867],[-6.549678,57.940143],[-6.549176,57.941817],[-6.5472,57.942278],[-6.547555,57.943938],[-6.546111,57.943823],[-6.544898,57.944933],[-6.545754,57.945343],[-6.547201,57.947616],[-6.550415,57.954552],[-6.550233,57.955449],[-6.548818,57.956696],[-6.549114,57.958085],[-6.547365,57.95825],[-6.546504,57.956932],[-6.545415,57.952146],[-6.543959,57.949733],[-6.543577,57.947858],[-6.542367,57.946516],[-6.540386,57.946232],[-6.540025,57.945188],[-6.540775,57.944184],[-6.540492,57.942283],[-6.538359,57.941641],[-6.537584,57.939996],[-6.535815,57.940855],[-6.536464,57.941439],[-6.535544,57.942254],[-6.534167,57.941953],[-6.533883,57.941019],[-6.529177,57.938507],[-6.526915,57.938894],[-6.5252,57.935941],[-6.526438,57.935834],[-6.52784,57.93689],[-6.529556,57.936492],[-6.528318,57.935457],[-6.526486,57.935212],[-6.523817,57.933351],[-6.52377,57.931],[-6.522372,57.930138],[-6.522216,57.928902],[-6.520183,57.927927],[-6.519318,57.926968],[-6.517763,57.927172],[-6.515901,57.928363],[-6.513205,57.928571],[-6.511755,57.930147],[-6.510077,57.93045],[-6.50855,57.932091],[-6.50802,57.933792],[-6.505774,57.935596],[-6.503448,57.936572],[-6.502315,57.940277],[-6.501292,57.94048],[-6.498984,57.940017],[-6.496946,57.940414],[-6.495031,57.939796],[-6.494798,57.938866],[-6.492345,57.938045],[-6.48975,57.938066],[-6.489084,57.937661],[-6.484252,57.937758],[-6.482798,57.93729],[-6.481902,57.938176],[-6.482761,57.939147],[-6.481685,57.939908],[-6.479838,57.939319],[-6.477991,57.938001],[-6.472549,57.937383],[-6.471582,57.937623],[-6.469482,57.940283],[-6.467755,57.940879],[-6.467085,57.941815],[-6.467821,57.9429],[-6.467206,57.945077],[-6.468362,57.949655],[-6.46689,57.950299],[-6.467388,57.952323],[-6.466206,57.954379],[-6.46772,57.955397],[-6.466714,57.956102],[-6.466685,57.958569],[-6.466252,57.959651],[-6.468341,57.961328],[-6.466485,57.961915],[-6.464522,57.96131],[-6.460729,57.96067],[-6.457839,57.961922],[-6.457197,57.962897],[-6.455577,57.96367],[-6.451324,57.964216],[-6.450778,57.965161],[-6.448905,57.965642],[-6.450642,57.968898],[-6.453008,57.969143],[-6.454313,57.969911],[-6.454574,57.97082],[-6.45168,57.97276],[-6.450357,57.973148],[-6.450697,57.975066],[-6.449372,57.976255],[-6.449724,57.977616],[-6.448836,57.978983],[-6.452743,57.981527],[-6.456078,57.984505],[-6.457474,57.985095],[-6.456803,57.986121],[-6.454431,57.986447],[-6.454398,57.989177],[-6.453088,57.989673],[-6.455693,57.990392],[-6.454505,57.991053],[-6.455197,57.993349],[-6.461217,57.995449],[-6.461392,57.996202],[-6.464401,57.996932],[-6.466599,57.998421],[-6.470362,57.999767],[-6.471983,58.00075],[-6.475956,58.001299],[-6.478534,58.000941],[-6.480892,58.001392],[-6.483816,58.001093],[-6.484962,58.002055],[-6.488317,58.000898],[-6.491618,58.001303],[-6.493213,58.000981],[-6.496127,58.000946],[-6.497102,58.001266],[-6.499589,58.001123],[-6.501409,58.001568],[-6.50319,58.000776],[-6.503671,57.999541],[-6.505318,57.999441],[-6.507816,57.998431],[-6.510075,58.000086],[-6.512269,58.000094],[-6.514177,57.999037],[-6.515656,57.999344],[-6.516569,57.998659],[-6.520381,57.998793],[-6.521423,57.999266],[-6.524121,57.999501],[-6.525198,58.000136],[-6.528033,57.999429],[-6.530811,57.999825],[-6.532463,57.999254],[-6.533797,58.000128],[-6.537365,58.000013],[-6.538531,58.000588],[-6.540733,58.000248],[-6.543033,58.000625],[-6.5455,58.000437],[-6.546064,58.002279],[-6.548105,58.00309],[-6.551117,58.003645],[-6.555194,58.003051],[-6.556897,58.003334],[-6.558924,58.003128],[-6.563025,58.00163],[-6.566286,58.001558],[-6.570666,58.002251],[-6.57225,58.003223],[-6.575405,58.003118],[-6.578966,58.003808],[-6.57306,58.004129],[-6.57087,58.004685],[-6.568629,58.004455],[-6.565104,58.004645],[-6.554285,58.006837],[-6.54856,58.007316],[-6.546248,58.007192],[-6.544702,58.006362],[-6.538896,58.004937],[-6.536374,58.005355],[-6.535248,58.005962],[-6.529097,58.005291],[-6.525834,58.005547],[-6.525021,58.006624],[-6.526608,58.007849],[-6.526588,58.008897],[-6.525339,58.010138],[-6.526363,58.012008],[-6.525395,58.012996],[-6.527895,58.015048],[-6.526629,58.015714],[-6.524612,58.013973],[-6.522875,58.013134],[-6.521793,58.011578],[-6.520532,58.01068],[-6.515432,58.008647],[-6.512143,58.008157],[-6.511005,58.007532],[-6.508561,58.0077],[-6.507333,58.00737],[-6.502292,58.007296],[-6.501725,58.006878],[-6.498676,58.006305],[-6.497088,58.006879],[-6.49691,58.00781],[-6.492341,58.008316],[-6.48975,58.010483],[-6.490922,58.01118],[-6.493341,58.011806],[-6.495955,58.01384],[-6.497689,58.014628],[-6.499018,58.01441],[-6.499956,58.01663],[-6.497996,58.016389],[-6.497392,58.015565],[-6.495166,58.014751],[-6.495984,58.014275],[-6.493672,58.013336],[-6.489277,58.012148],[-6.48555,58.011348],[-6.484867,58.010562],[-6.481428,58.010095],[-6.478061,58.010879],[-6.474565,58.009582],[-6.470465,58.00942],[-6.468935,58.009986],[-6.468255,58.011188],[-6.46557,58.012488],[-6.466468,58.01479],[-6.468972,58.016862],[-6.468502,58.018488],[-6.466359,58.018506],[-6.465206,58.017354],[-6.462729,58.017121],[-6.461946,58.018282],[-6.459708,58.019794],[-6.459608,58.017338],[-6.457794,58.016107],[-6.457737,58.015241],[-6.45603,58.013102],[-6.456039,58.012427],[-6.453629,58.011654],[-6.451631,58.007577],[-6.44959,58.005881],[-6.446239,58.007815],[-6.444521,58.007758],[-6.444494,58.010443],[-6.442349,58.011212],[-6.440271,58.011382],[-6.438077,58.010097],[-6.436751,58.010705],[-6.438435,58.01267],[-6.437767,58.014317],[-6.439629,58.014815],[-6.438397,58.017061],[-6.436526,58.016087],[-6.43463,58.015992],[-6.431497,58.012939],[-6.431744,58.011596],[-6.429678,58.011562],[-6.427409,58.010179],[-6.424552,58.009468],[-6.424133,58.010323],[-6.420669,58.012399],[-6.418574,58.01285],[-6.416806,58.011973],[-6.416272,58.010931],[-6.41405,58.009634],[-6.411165,58.010212],[-6.408811,58.009741],[-6.406979,58.007385],[-6.404043,58.005963],[-6.403778,58.003609],[-6.401057,58.002623],[-6.401303,58.001962],[-6.398938,58.000905],[-6.3956,58.00054],[-6.393864,57.999782],[-6.392211,57.999771],[-6.390921,58.000855],[-6.389893,58.000832],[-6.388707,57.999675],[-6.387683,58.000131],[-6.387426,58.002368],[-6.388134,58.003279],[-6.389982,58.003938],[-6.389262,58.005413],[-6.389984,58.006053],[-6.388628,58.008331],[-6.384676,58.008715],[-6.382932,58.009346],[-6.381828,58.011673],[-6.380666,58.012284],[-6.38098,58.014086],[-6.376872,58.016179],[-6.373294,58.016509],[-6.371675,58.017406],[-6.367923,58.017557],[-6.365871,58.018106],[-6.366118,58.020259],[-6.365327,58.021765],[-6.366184,58.022882],[-6.36512,58.024304],[-6.365198,58.025848],[-6.362165,58.029401],[-6.360143,58.029151],[-6.358991,58.029573],[-6.359101,58.033261],[-6.357013,58.035894],[-6.357702,58.036659],[-6.358312,58.039385],[-6.363625,58.040505],[-6.36464,58.040077],[-6.367167,58.040858],[-6.368849,58.040463],[-6.374301,58.041407],[-6.374935,58.042041],[-6.376721,58.042194],[-6.382084,58.042144],[-6.383564,58.041403],[-6.386999,58.04139],[-6.389126,58.040909],[-6.391601,58.040762],[-6.390596,58.042038],[-6.393511,58.042653],[-6.396977,58.041381],[-6.401049,58.04119],[-6.403372,58.041604],[-6.404125,58.042554],[-6.405717,58.042949],[-6.409748,58.043192],[-6.410606,58.04509],[-6.411804,58.045565],[-6.414601,58.045758],[-6.420701,58.045106],[-6.423509,58.045781],[-6.424994,58.047047],[-6.43189,58.047394],[-6.4378,58.048417],[-6.425891,58.04833],[-6.424926,58.048557],[-6.422793,58.047773],[-6.419342,58.048031],[-6.399416,58.046526],[-6.395743,58.046653],[-6.39379,58.047391],[-6.389217,58.047517],[-6.387408,58.047913],[-6.384564,58.048024],[-6.383253,58.047435],[-6.381493,58.048085],[-6.3788,58.04736],[-6.376193,58.047886],[-6.372508,58.04937],[-6.371918,58.050438],[-6.373467,58.051734],[-6.372928,58.053425],[-6.373576,58.054289],[-6.372397,58.055391],[-6.367919,58.056507],[-6.366734,58.058215],[-6.368531,58.059654],[-6.36745,58.060821],[-6.369093,58.061602],[-6.367618,58.06494],[-6.369382,58.065279],[-6.370409,58.066004],[-6.373252,58.066252],[-6.373856,58.067126],[-6.379984,58.066654],[-6.380727,58.067823],[-6.379158,58.069273],[-6.378014,58.069534],[-6.377736,58.070658],[-6.37407,58.071744],[-6.373455,58.073242],[-6.371437,58.073541],[-6.371498,58.074658],[-6.369116,58.075379],[-6.369348,58.076945],[-6.370779,58.077389],[-6.37182,58.078421],[-6.375028,58.078665],[-6.37843,58.07802],[-6.381215,58.079074],[-6.379238,58.080727],[-6.379239,58.081954],[-6.380446,58.082518],[-6.381202,58.084623],[-6.380256,58.085148],[-6.380714,58.086038],[-6.380046,58.087472],[-6.378038,58.08853],[-6.377894,58.090545],[-6.3773,58.091163],[-6.37887,58.092475],[-6.382881,58.091413],[-6.384382,58.089686],[-6.387732,58.088878],[-6.388899,58.087481],[-6.388278,58.086781],[-6.390812,58.085489],[-6.393295,58.085604],[-6.395074,58.084491],[-6.397029,58.084448],[-6.397047,58.08666],[-6.398512,58.088349],[-6.397866,58.089928],[-6.399274,58.091502],[-6.399042,58.092306],[-6.39607,58.093061],[-6.395268,58.091788],[-6.39381,58.091233],[-6.391559,58.092369],[-6.388408,58.091758],[-6.38544,58.092193],[-6.383445,58.092971],[-6.384882,58.093991],[-6.386827,58.093722],[-6.388364,58.094628],[-6.387681,58.097926],[-6.392459,58.097545],[-6.393513,58.096634],[-6.396485,58.096086],[-6.398641,58.096965],[-6.400161,58.097034],[-6.400333,58.098089],[-6.398272,58.099208],[-6.400112,58.099873],[-6.401948,58.099881],[-6.404137,58.100484],[-6.404213,58.101934],[-6.402894,58.102922],[-6.400453,58.102015],[-6.401609,58.100509],[-6.397431,58.099524],[-6.393611,58.099639],[-6.393937,58.100418],[-6.396151,58.101777],[-6.396073,58.102443],[-6.39755,58.104372],[-6.398383,58.10461],[-6.398509,58.105907],[-6.399594,58.106591],[-6.399139,58.107855],[-6.399598,58.109678],[-6.398868,58.110923],[-6.400444,58.111022],[-6.40322,58.108616],[-6.406388,58.110039],[-6.408844,58.110354],[-6.412683,58.108732],[-6.414164,58.108948],[-6.415281,58.107935],[-6.417273,58.106993],[-6.415701,58.106609],[-6.415085,58.105172],[-6.418738,58.103213],[-6.42037,58.103266],[-6.421026,58.10424],[-6.418477,58.105835],[-6.421245,58.106115],[-6.424787,58.105245],[-6.427122,58.104993],[-6.429353,58.103915],[-6.430704,58.102405],[-6.429667,58.1016],[-6.430191,58.100609],[-6.433166,58.101216],[-6.435133,58.100542],[-6.436037,58.099645],[-6.434745,58.098612],[-6.431607,58.099026],[-6.431389,58.099839],[-6.429404,58.099663],[-6.43023,58.098337],[-6.429062,58.097796],[-6.42735,58.098119],[-6.423614,58.097614],[-6.422526,58.098548],[-6.420983,58.098595],[-6.416184,58.100232],[-6.412388,58.101201],[-6.411356,58.098903],[-6.409277,58.099411],[-6.403927,58.097893],[-6.405446,58.096986],[-6.405178,58.095232],[-6.406592,58.094788],[-6.408787,58.095845],[-6.408369,58.096727],[-6.410807,58.09666],[-6.412223,58.097744],[-6.414026,58.09764],[-6.41451,58.099114],[-6.415778,58.099999],[-6.417872,58.099483],[-6.418941,58.098725],[-6.418637,58.097735],[-6.421015,58.098003],[-6.421305,58.09731],[-6.425655,58.096779],[-6.427998,58.096224],[-6.428524,58.092851],[-6.429821,58.092336],[-6.430145,58.09119],[-6.431587,58.09132],[-6.432488,58.093236],[-6.435302,58.09258],[-6.441384,58.093208],[-6.443679,58.094248],[-6.443962,58.095223],[-6.445657,58.094853],[-6.447221,58.096094],[-6.451468,58.095427],[-6.452339,58.094368],[-6.459505,58.095561],[-6.462133,58.095444],[-6.463433,58.096387],[-6.469758,58.09608],[-6.472053,58.096255],[-6.473638,58.095879],[-6.474626,58.094846],[-6.474724,58.092522],[-6.473244,58.090961],[-6.474612,58.090824],[-6.475631,58.092756],[-6.477106,58.091476],[-6.478482,58.091488],[-6.479988,58.093285],[-6.483027,58.094133],[-6.486563,58.094153],[-6.487733,58.093523],[-6.490305,58.093717],[-6.492195,58.093191],[-6.494861,58.093153],[-6.496011,58.092715],[-6.499826,58.092506],[-6.504275,58.093104],[-6.506611,58.093869],[-6.509125,58.093949],[-6.510832,58.093441],[-6.511914,58.092306],[-6.514334,58.092409],[-6.514295,58.091553],[-6.517199,58.090185],[-6.517205,58.089289],[-6.519059,58.088404],[-6.525883,58.087809],[-6.526239,58.085446],[-6.527633,58.08801],[-6.52909,58.088267],[-6.531391,58.088074],[-6.533476,58.086924],[-6.535167,58.087004],[-6.538099,58.085641],[-6.538967,58.086158],[-6.546513,58.088115],[-6.548407,58.088041],[-6.551066,58.087242],[-6.551754,58.087824],[-6.554041,58.087995],[-6.555187,58.08701],[-6.559446,58.088228],[-6.560977,58.087835],[-6.564032,58.0877],[-6.564911,58.08639],[-6.56433,58.084672],[-6.566507,58.083573],[-6.5638,58.08099],[-6.566965,58.081839],[-6.566874,58.082787],[-6.568813,58.083544],[-6.570285,58.08529],[-6.573105,58.085768],[-6.576512,58.087285],[-6.5771,58.08823],[-6.582458,58.087922],[-6.585372,58.086838],[-6.58646,58.087536],[-6.590055,58.08699],[-6.592911,58.087264],[-6.602731,58.086635],[-6.604405,58.08595],[-6.605454,58.084182],[-6.60546,58.080835],[-6.606907,58.081231],[-6.607198,58.082206],[-6.608767,58.082267],[-6.610451,58.083497],[-6.611003,58.084544],[-6.613175,58.085109],[-6.615765,58.084475],[-6.617757,58.084497],[-6.618915,58.083996],[-6.621527,58.08181],[-6.621723,58.080242],[-6.624146,58.07929],[-6.62404,58.078169],[-6.626105,58.078461],[-6.626819,58.079477],[-6.629523,58.081141],[-6.63397,58.081598],[-6.631626,58.083934],[-6.631784,58.084708],[-6.628011,58.085791],[-6.623194,58.085339],[-6.621796,58.085865],[-6.618686,58.086203],[-6.614235,58.087311],[-6.600366,58.088203],[-6.595909,58.089058],[-6.591094,58.088735],[-6.587383,58.089922],[-6.581982,58.089649],[-6.579319,58.090792],[-6.574784,58.090645],[-6.571401,58.091466],[-6.570332,58.091183],[-6.568244,58.091632],[-6.563525,58.091476],[-6.559018,58.092774],[-6.55757,58.092594],[-6.556223,58.093108],[-6.554249,58.093106],[-6.553147,58.092044],[-6.550024,58.092686],[-6.54689,58.092273],[-6.541841,58.092435],[-6.539142,58.093079],[-6.53798,58.093745],[-6.532094,58.094499],[-6.529281,58.096275],[-6.529732,58.096987],[-6.531679,58.09731],[-6.531327,58.098497],[-6.538022,58.09838],[-6.53712,58.099101],[-6.533232,58.098969],[-6.530173,58.099604],[-6.528095,58.098671],[-6.523096,58.099246],[-6.520641,58.10017],[-6.519117,58.099658],[-6.518109,58.098501],[-6.516798,58.098327],[-6.51507,58.097315],[-6.513848,58.097294],[-6.508984,58.098802],[-6.508355,58.099872],[-6.511162,58.100054],[-6.510956,58.101291],[-6.509265,58.101828],[-6.508235,58.10302],[-6.503653,58.101712],[-6.502934,58.099988],[-6.501564,58.099497],[-6.4994,58.099848],[-6.499746,58.100771],[-6.499271,58.102111],[-6.496271,58.101129],[-6.494201,58.099518],[-6.492156,58.098965],[-6.489669,58.099136],[-6.487924,58.09975],[-6.48722,58.101062],[-6.487772,58.102716],[-6.484796,58.104681],[-6.484249,58.103641],[-6.483032,58.103227],[-6.482344,58.102151],[-6.478981,58.103123],[-6.479434,58.104246],[-6.477281,58.10434],[-6.476028,58.103407],[-6.474321,58.10416],[-6.472339,58.104231],[-6.470024,58.10297],[-6.468883,58.103355],[-6.468158,58.104767],[-6.466858,58.104445],[-6.466922,58.103369],[-6.462524,58.104155],[-6.461005,58.104897],[-6.457847,58.105376],[-6.455833,58.106406],[-6.454002,58.108627],[-6.454942,58.11078],[-6.453879,58.112535],[-6.453056,58.112478],[-6.451477,58.114323],[-6.448932,58.113521],[-6.448286,58.11456],[-6.444462,58.116947],[-6.443776,58.117776],[-6.442338,58.118177],[-6.440636,58.118016],[-6.437388,58.119573],[-6.43669,58.120789],[-6.434559,58.120467],[-6.433509,58.119811],[-6.430795,58.119996],[-6.427753,58.120749],[-6.429026,58.122238],[-6.429443,58.123887],[-6.42782,58.124952],[-6.428473,58.125859],[-6.430308,58.126462],[-6.431822,58.126197],[-6.433143,58.126636],[-6.434773,58.125253],[-6.435647,58.12627],[-6.433254,58.127662],[-6.434548,58.128776],[-6.437669,58.129533],[-6.439363,58.129257],[-6.440192,58.128161],[-6.446002,58.127277],[-6.444747,58.129253],[-6.446639,58.130538],[-6.448945,58.130961],[-6.45078,58.130235],[-6.451832,58.128846],[-6.449776,58.127825],[-6.446696,58.125448],[-6.446756,58.124021],[-6.449954,58.125272],[-6.451248,58.127185],[-6.45367,58.127588],[-6.455643,58.12956],[-6.457852,58.130572],[-6.461693,58.130978],[-6.463859,58.130662],[-6.462519,58.129693],[-6.465892,58.12932],[-6.465801,58.128004],[-6.467243,58.128178],[-6.467546,58.129372],[-6.468524,58.129763],[-6.465221,58.131881],[-6.467008,58.133353],[-6.467,58.134552],[-6.468783,58.134661],[-6.470035,58.135781],[-6.472385,58.13601],[-6.475615,58.1358],[-6.476763,58.135259],[-6.47959,58.136577],[-6.482986,58.137052],[-6.487,58.138056],[-6.489004,58.138829],[-6.487641,58.139813],[-6.489019,58.14016],[-6.487615,58.141061],[-6.491298,58.142049],[-6.492936,58.142988],[-6.485285,58.141717],[-6.482427,58.140377],[-6.477079,58.140355],[-6.475548,58.139632],[-6.465294,58.138943],[-6.46196,58.137834],[-6.462186,58.136736],[-6.459693,58.135084],[-6.455552,58.133997],[-6.449976,58.133633],[-6.446068,58.131935],[-6.440832,58.132041],[-6.436746,58.132589],[-6.432563,58.132501],[-6.431262,58.131716],[-6.430434,58.130071],[-6.427727,58.130092],[-6.423228,58.129325],[-6.422182,58.128772],[-6.41804,58.129087],[-6.416559,58.129692],[-6.415739,58.130673],[-6.415987,58.132049],[-6.412549,58.131611],[-6.410498,58.130925],[-6.40639,58.130619],[-6.404574,58.131606],[-6.403923,58.132907],[-6.404204,58.134177],[-6.401067,58.13491],[-6.399724,58.134226],[-6.397273,58.134068],[-6.395178,58.132522],[-6.392684,58.132559],[-6.393393,58.131082],[-6.390114,58.129927],[-6.389247,58.129098],[-6.383742,58.12864],[-6.381135,58.129144],[-6.379526,58.130067],[-6.379305,58.130781],[-6.376556,58.130551],[-6.37457,58.131128],[-6.371549,58.131228],[-6.369618,58.1318],[-6.371407,58.133831],[-6.369903,58.135767],[-6.36843,58.136274],[-6.367864,58.137238],[-6.368844,58.137804],[-6.367773,58.139423],[-6.366979,58.139722],[-6.367841,58.141328],[-6.369328,58.142862],[-6.372046,58.142673],[-6.375467,58.143081],[-6.377547,58.143743],[-6.380992,58.144266],[-6.382917,58.144077],[-6.383049,58.143381],[-6.385858,58.142946],[-6.388292,58.144152],[-6.390509,58.143795],[-6.393094,58.143931],[-6.394647,58.143401],[-6.396975,58.143172],[-6.402082,58.141345],[-6.403036,58.140085],[-6.407801,58.140439],[-6.408902,58.139705],[-6.410554,58.139464],[-6.413003,58.137752],[-6.416207,58.136349],[-6.419009,58.136926],[-6.419564,58.138136],[-6.420692,58.138007],[-6.42143,58.138141],[-6.422424,58.139286],[-6.419517,58.140402],[-6.418301,58.141379],[-6.418599,58.142541],[-6.416037,58.142506],[-6.416348,58.143328],[-6.4191,58.144671],[-6.422134,58.14454],[-6.422434,58.145744],[-6.424025,58.14777],[-6.420209,58.146587],[-6.416974,58.144212],[-6.414224,58.143339],[-6.412816,58.14231],[-6.410784,58.142136],[-6.409459,58.142531],[-6.407453,58.141958],[-6.402532,58.142724],[-6.402398,58.143231],[-6.399302,58.14344],[-6.397503,58.14399],[-6.396881,58.144717],[-6.394193,58.145059],[-6.3918,58.147143],[-6.389624,58.146388],[-6.385604,58.145892],[-6.384236,58.146178],[-6.38249,58.147263],[-6.380374,58.146835],[-6.379526,58.147576],[-6.377982,58.147193],[-6.374383,58.148491],[-6.374015,58.149236],[-6.370916,58.149626],[-6.369704,58.150212],[-6.369101,58.151469],[-6.367472,58.152743],[-6.367194,58.154901],[-6.368494,58.157398],[-6.368468,58.160511],[-6.370617,58.162559],[-6.373312,58.16351],[-6.374449,58.164888],[-6.373516,58.165453],[-6.373746,58.167937],[-6.375398,58.168987],[-6.376659,58.170724],[-6.377005,58.171877],[-6.378241,58.172167],[-6.37856,58.173168],[-6.380269,58.173433],[-6.381131,58.174347],[-6.379526,58.175068],[-6.377617,58.175044],[-6.377766,58.17605],[-6.379017,58.177087],[-6.37842,58.177629],[-6.380408,58.179044],[-6.381913,58.179033],[-6.382534,58.179794],[-6.387536,58.1799],[-6.385571,58.181016],[-6.383355,58.181133],[-6.382503,58.180438],[-6.380702,58.182343],[-6.380025,58.185609],[-6.377336,58.185826],[-6.375627,58.187017],[-6.373405,58.187906],[-6.370794,58.188321],[-6.371403,58.189651],[-6.369787,58.191222],[-6.372989,58.191761],[-6.375332,58.193544],[-6.376,58.192449],[-6.377676,58.19193],[-6.376405,58.190748],[-6.378874,58.18984],[-6.380236,58.188088],[-6.384507,58.188868],[-6.386446,58.190739],[-6.38576,58.191461],[-6.386097,58.19335],[-6.38849,58.194792],[-6.388568,58.196731],[-6.390996,58.197295],[-6.392129,58.198533],[-6.395204,58.199048],[-6.395126,58.199559],[-6.392035,58.199757],[-6.391585,58.200337],[-6.393876,58.202673],[-6.392895,58.203694],[-6.394342,58.204856],[-6.393914,58.205666],[-6.396796,58.205544],[-6.397665,58.206571],[-6.39656,58.208318],[-6.394169,58.209963],[-6.391793,58.209882],[-6.3881,58.213262],[-6.387776,58.212773],[-6.389114,58.211122],[-6.389537,58.208829],[-6.392467,58.208575],[-6.39105,58.207489],[-6.389355,58.207814],[-6.386422,58.207349],[-6.386153,58.206412],[-6.384287,58.205744],[-6.382843,58.206247],[-6.381133,58.205505],[-6.376346,58.204812],[-6.375643,58.204082],[-6.376458,58.203395],[-6.380297,58.20277],[-6.382875,58.203223],[-6.382942,58.202289],[-6.376643,58.203263],[-6.373878,58.202686],[-6.368721,58.202817],[-6.367855,58.204297],[-6.366245,58.204605],[-6.362655,58.204335],[-6.359633,58.203442],[-6.358713,58.202246],[-6.361776,58.199389],[-6.360182,58.197909],[-6.357782,58.198171],[-6.355951,58.197632],[-6.354854,58.196636],[-6.356299,58.194888],[-6.355369,58.194352],[-6.355451,58.192018],[-6.356429,58.190981],[-6.355459,58.189528],[-6.352851,58.188706],[-6.352494,58.189367],[-6.349341,58.188639],[-6.346236,58.19049],[-6.346243,58.191188],[-6.343451,58.191633],[-6.338175,58.193757],[-6.336649,58.192928],[-6.337033,58.191579],[-6.333454,58.191705],[-6.332917,58.192943],[-6.331196,58.193276],[-6.33246,58.194899],[-6.329943,58.196134],[-6.327512,58.196043],[-6.325527,58.195421],[-6.326477,58.194363],[-6.325896,58.192981],[-6.322155,58.193033],[-6.32033,58.193534],[-6.319984,58.195254],[-6.32437,58.195474],[-6.326544,58.196504],[-6.326406,58.19749],[-6.324132,58.199656],[-6.322805,58.19977],[-6.322212,58.200981],[-6.321122,58.201566],[-6.316225,58.203296],[-6.312923,58.20355],[-6.308879,58.205321],[-6.294745,58.206142],[-6.290813,58.206056],[-6.287577,58.205587],[-6.285543,58.205001],[-6.284256,58.203179],[-6.283561,58.201453],[-6.284544,58.199709],[-6.283013,58.198525],[-6.279847,58.19917],[-6.276263,58.198298],[-6.27619,58.197326],[-6.277223,58.195932],[-6.277239,58.194085],[-6.276066,58.193245],[-6.275391,58.191306],[-6.273529,58.190227],[-6.272559,58.188927],[-6.270441,58.188476],[-6.266477,58.188053],[-6.264127,58.188936],[-6.261502,58.188321],[-6.260729,58.187211],[-6.259446,58.187461],[-6.257173,58.186733],[-6.256545,58.185567],[-6.258324,58.184288],[-6.255309,58.182502],[-6.25487,58.181459],[-6.255139,58.179998],[-6.253375,58.180438],[-6.252045,58.179714],[-6.249924,58.180556],[-6.248067,58.179883],[-6.244267,58.181441],[-6.242421,58.181195],[-6.240322,58.180312],[-6.235239,58.181879],[-6.232232,58.18168],[-6.231026,58.182173],[-6.228914,58.181959],[-6.228769,58.183046],[-6.226878,58.183198],[-6.225969,58.184452],[-6.224001,58.184009],[-6.222317,58.185747],[-6.220738,58.185578],[-6.21869,58.1863],[-6.217175,58.186004],[-6.215076,58.187319],[-6.213044,58.189555],[-6.207134,58.189163],[-6.20642,58.190475],[-6.208411,58.190886],[-6.211585,58.194489],[-6.209677,58.195777],[-6.210184,58.196511],[-6.209279,58.197772],[-6.207153,58.198519],[-6.205686,58.19962],[-6.203343,58.199728],[-6.200075,58.200874],[-6.198377,58.200555],[-6.198031,58.199838],[-6.195131,58.199864],[-6.19472,58.201481],[-6.187776,58.203555],[-6.184916,58.204648],[-6.18296,58.204716],[-6.180081,58.203638],[-6.178906,58.203862],[-6.177842,58.205273],[-6.175379,58.205807],[-6.173895,58.206582],[-6.173665,58.207711],[-6.170845,58.207313],[-6.171942,58.208521],[-6.170389,58.210589],[-6.166234,58.210194],[-6.164892,58.214025],[-6.163579,58.21483],[-6.160726,58.213864],[-6.159616,58.215771],[-6.161932,58.216146],[-6.163199,58.215899],[-6.164647,58.216932],[-6.164905,58.219143],[-6.162136,58.220088],[-6.160057,58.220106],[-6.15843,58.219203],[-6.157096,58.221624],[-6.156047,58.222507],[-6.15755,58.223176],[-6.159421,58.22463],[-6.160223,58.225812],[-6.16241,58.225679],[-6.164855,58.226234],[-6.164761,58.228777],[-6.164112,58.229973],[-6.162513,58.231205],[-6.160199,58.231622],[-6.157909,58.232403],[-6.155835,58.233707],[-6.15785,58.234343],[-6.158149,58.235261],[-6.159852,58.235574],[-6.15739,58.236781],[-6.153083,58.237226],[-6.151114,58.239908],[-6.149135,58.240181],[-6.146622,58.241665],[-6.148378,58.241933],[-6.152098,58.243397],[-6.153235,58.244317],[-6.153854,58.246664],[-6.151022,58.248472],[-6.151102,58.249636],[-6.147417,58.251194],[-6.143946,58.2501],[-6.140381,58.250283],[-6.139736,58.251187],[-6.140612,58.251823],[-6.14036,58.253053],[-6.13863,58.254298],[-6.136851,58.253749],[-6.136255,58.254437],[-6.138081,58.25542],[-6.13783,58.25641],[-6.136058,58.257193],[-6.136261,58.258858],[-6.138669,58.25914],[-6.137374,58.260649],[-6.138635,58.261668],[-6.140668,58.261011],[-6.142066,58.261798],[-6.144781,58.26022],[-6.14623,58.260247],[-6.147529,58.261277],[-6.151477,58.259988],[-6.153965,58.260313],[-6.155041,58.261709],[-6.155925,58.261856],[-6.156362,58.263153],[-6.15764,58.263822],[-6.161373,58.263203],[-6.162662,58.262415],[-6.165614,58.262666],[-6.166206,58.26121],[-6.165825,58.259861],[-6.163466,58.257395],[-6.166793,58.255613],[-6.167096,58.254781],[-6.169396,58.254034],[-6.17047,58.25424],[-6.171228,58.253018],[-6.172459,58.252433],[-6.175126,58.252315],[-6.179097,58.253118],[-6.185094,58.251766],[-6.187496,58.250426],[-6.18995,58.250239],[-6.191746,58.248607],[-6.194911,58.24896],[-6.198439,58.248734],[-6.201086,58.248319],[-6.201396,58.247753],[-6.203404,58.247356],[-6.204567,58.245267],[-6.205926,58.244231],[-6.204787,58.242526],[-6.207731,58.240389],[-6.207597,58.239214],[-6.208737,58.238089],[-6.210064,58.237757],[-6.212276,58.238097],[-6.213979,58.237219],[-6.215036,58.237688],[-6.216931,58.237424],[-6.216922,58.236715],[-6.218544,58.2355],[-6.217451,58.234449],[-6.21822,58.233261],[-6.218415,58.231538],[-6.219493,58.231269],[-6.220366,58.23002],[-6.222063,58.229395],[-6.223518,58.22946],[-6.224425,58.227358],[-6.225774,58.227508],[-6.228193,58.22659],[-6.230131,58.226301],[-6.23075,58.224993],[-6.232442,58.224263],[-6.233649,58.22456],[-6.235,58.222698],[-6.236153,58.222393],[-6.239414,58.222387],[-6.243528,58.223139],[-6.246266,58.222954],[-6.248428,58.22406],[-6.249953,58.223404],[-6.249533,58.222032],[-6.252264,58.221127],[-6.253189,58.221975],[-6.254756,58.22012],[-6.256697,58.219195],[-6.259086,58.216733],[-6.262581,58.213693],[-6.265611,58.213019],[-6.266932,58.211336],[-6.27026,58.210734],[-6.273033,58.210947],[-6.275397,58.211682],[-6.277853,58.211232],[-6.278707,58.209903],[-6.281847,58.208732],[-6.282751,58.208747],[-6.283455,58.207296],[-6.284864,58.206661],[-6.292296,58.207011],[-6.296539,58.208445],[-6.304358,58.210017],[-6.305538,58.210816],[-6.304969,58.211943],[-6.305371,58.213272],[-6.306665,58.21331],[-6.310557,58.215191],[-6.310448,58.21705],[-6.310981,58.217851],[-6.313227,58.215376],[-6.316898,58.215865],[-6.330457,58.223766],[-6.331469,58.225615],[-6.334768,58.226218],[-6.335349,58.225866],[-6.342945,58.229034],[-6.341965,58.226716],[-6.339051,58.226077],[-6.336449,58.226029],[-6.334455,58.22518],[-6.334647,58.222151],[-6.33971,58.221028],[-6.341683,58.222668],[-6.344439,58.222769],[-6.347234,58.222239],[-6.349522,58.221009],[-6.354093,58.219867],[-6.353921,58.219004],[-6.356469,58.218159],[-6.358499,58.21908],[-6.357296,58.220496],[-6.358986,58.221822],[-6.363174,58.222928],[-6.368776,58.222397],[-6.372496,58.223181],[-6.377143,58.222821],[-6.37915,58.22553],[-6.376246,58.22497],[-6.373249,58.224874],[-6.371149,58.224342],[-6.365444,58.224914],[-6.365787,58.225927],[-6.361502,58.226886],[-6.361712,58.228307],[-6.359769,58.22977],[-6.361435,58.230937],[-6.359754,58.231557],[-6.35862,58.233886],[-6.357592,58.234697],[-6.358524,58.236257],[-6.360924,58.237011],[-6.357895,58.237524],[-6.35457,58.237401],[-6.352249,58.236872],[-6.350642,58.23604],[-6.346972,58.235677],[-6.34534,58.234237],[-6.347255,58.230912],[-6.345176,58.23193],[-6.344454,58.234152],[-6.344685,58.235936],[-6.343931,58.237647],[-6.342163,58.238225],[-6.334354,58.238135],[-6.330087,58.240085],[-6.326485,58.239842],[-6.325653,58.240203],[-6.325161,58.243319],[-6.322113,58.244453],[-6.31926,58.244428],[-6.319162,58.245618],[-6.316995,58.24701],[-6.31898,58.24773],[-6.31791,58.249381],[-6.318805,58.250388],[-6.321474,58.249656],[-6.322875,58.249673],[-6.325209,58.250915],[-6.326003,58.252155],[-6.325061,58.253036],[-6.326133,58.254597],[-6.326366,58.257345],[-6.327042,58.257659],[-6.328195,58.259521],[-6.32814,58.261621],[-6.32748,58.261813],[-6.323841,58.266515],[-6.319698,58.269048],[-6.316442,58.269937],[-6.311992,58.267958],[-6.30999,58.267419],[-6.307547,58.267323],[-6.305316,58.266597],[-6.29724,58.267706],[-6.295194,58.266899],[-6.28859,58.268508],[-6.286008,58.268967],[-6.28213,58.269153],[-6.280395,58.269863],[-6.28244,58.271183],[-6.282452,58.272797],[-6.280969,58.274246],[-6.282844,58.276438],[-6.2833,58.278646],[-6.281267,58.28142],[-6.280311,58.284213],[-6.281499,58.286841],[-6.282847,58.28766],[-6.284125,58.287345],[-6.289865,58.287162],[-6.2888,58.289076],[-6.28711,58.289529],[-6.288788,58.290471],[-6.286239,58.290857],[-6.285103,58.290375],[-6.283803,58.287627],[-6.282065,58.288226],[-6.281397,58.290401],[-6.279886,58.292268],[-6.276607,58.294026],[-6.272978,58.293762],[-6.270531,58.292606],[-6.267614,58.292009],[-6.264538,58.292785],[-6.260271,58.293018],[-6.258212,58.293365],[-6.257625,58.294164],[-6.251823,58.294698],[-6.251181,58.294366],[-6.247741,58.294775],[-6.24655,58.294527],[-6.242204,58.295634],[-6.23978,58.298169],[-6.237694,58.299843],[-6.238306,58.302332],[-6.239257,58.302571],[-6.23778,58.304436],[-6.240254,58.304268],[-6.239228,58.305328],[-6.241741,58.305195],[-6.244915,58.305449],[-6.247007,58.306153],[-6.246747,58.306908],[-6.242041,58.307838],[-6.242055,58.308597],[-6.23815,58.310013],[-6.238481,58.31171],[-6.236538,58.313177],[-6.237502,58.314095],[-6.235755,58.31467],[-6.233571,58.314811],[-6.232671,58.316328],[-6.231652,58.317038],[-6.229188,58.316558],[-6.226479,58.317898],[-6.221338,58.318492],[-6.221008,58.320597],[-6.219823,58.321811],[-6.215644,58.323023],[-6.213626,58.323893],[-6.21337,58.325023],[-6.211857,58.325095],[-6.210987,58.326113],[-6.209002,58.326353],[-6.208393,58.327802],[-6.206723,58.328526],[-6.207985,58.329472],[-6.203432,58.33151],[-6.202971,58.332303],[-6.201113,58.333574],[-6.202358,58.335057],[-6.20083,58.335939],[-6.200681,58.336767],[-6.198453,58.338306],[-6.195911,58.339648],[-6.193243,58.340293],[-6.189922,58.340479],[-6.186687,58.339659],[-6.183162,58.340938],[-6.180989,58.340753],[-6.180594,58.341396],[-6.178545,58.34109],[-6.176337,58.341248],[-6.173984,58.341855],[-6.172591,58.341243],[-6.169152,58.341369],[-6.168196,58.342439],[-6.165404,58.342211],[-6.162201,58.342517],[-6.163575,58.343422],[-6.164413,58.345179],[-6.165334,58.345132],[-6.167793,58.346951],[-6.169157,58.347256],[-6.1736,58.346352],[-6.174867,58.345634],[-6.178496,58.346239],[-6.180278,58.347494],[-6.183331,58.347065],[-6.185017,58.348588],[-6.186834,58.348187],[-6.200264,58.355029],[-6.211437,58.362517],[-6.211453,58.364117],[-6.210579,58.365436],[-6.212314,58.366139],[-6.214995,58.36623],[-6.217771,58.368121],[-6.215718,58.368562],[-6.216305,58.369465],[-6.214828,58.370705],[-6.213607,58.370871],[-6.210923,58.372052],[-6.209323,58.373989],[-6.211867,58.375677],[-6.208438,58.3769],[-6.20965,58.379809],[-6.207999,58.380174],[-6.206925,58.382156],[-6.205905,58.383219],[-6.20753,58.383993],[-6.206091,58.385497],[-6.202985,58.386296],[-6.202497,58.387815],[-6.201013,58.388501],[-6.200514,58.390064],[-6.202956,58.391441],[-6.201241,58.393215],[-6.20074,58.39498],[-6.194814,58.396919],[-6.192303,58.399133],[-6.193617,58.399305],[-6.193287,58.400355],[-6.190369,58.40246],[-6.19128,58.403064],[-6.190097,58.404497],[-6.189056,58.404886],[-6.189757,58.405816],[-6.188661,58.406324],[-6.190331,58.407254],[-6.190049,58.408271],[-6.187032,58.410055],[-6.185377,58.410474],[-6.184818,58.411324],[-6.181432,58.411961],[-6.180619,58.413685],[-6.178604,58.415277],[-6.176016,58.414648],[-6.17371,58.415572],[-6.172151,58.416977],[-6.169717,58.41682],[-6.168209,58.417284],[-6.168442,58.418832],[-6.170097,58.420703],[-6.168949,58.422183],[-6.170517,58.422585],[-6.170016,58.423935],[-6.170584,58.425075],[-6.168232,58.42668],[-6.16874,58.428893],[-6.167113,58.429895],[-6.170855,58.429786],[-6.173416,58.431142],[-6.172953,58.432624],[-6.172154,58.433091],[-6.175715,58.434049],[-6.179082,58.433236],[-6.181225,58.434025],[-6.182007,58.435056],[-6.180456,58.435934],[-6.179304,58.437696],[-6.180581,58.439341],[-6.183445,58.439277],[-6.183902,58.440301],[-6.185903,58.441192],[-6.185415,58.442008],[-6.187971,58.44191],[-6.191654,58.442199],[-6.193042,58.443413],[-6.192335,58.444086],[-6.192443,58.445269],[-6.19445,58.445439],[-6.196383,58.446765],[-6.194357,58.447677],[-6.191996,58.447875],[-6.190302,58.449616],[-6.190646,58.451087],[-6.193066,58.451523],[-6.192315,58.452341],[-6.193922,58.452879],[-6.194069,58.454097],[-6.193234,58.455805],[-6.195542,58.456171],[-6.195193,58.457519],[-6.193631,58.458064],[-6.19095,58.459896],[-6.190697,58.460727],[-6.186921,58.461489],[-6.18671,58.462544],[-6.184941,58.46333],[-6.182323,58.464012],[-6.182667,58.464546],[-6.180996,58.466876],[-6.183101,58.467041],[-6.184701,58.468373],[-6.185131,58.469317],[-6.188961,58.469268],[-6.191318,58.470396],[-6.190713,58.472016],[-6.191997,58.473211],[-6.193954,58.472778],[-6.194461,58.474506],[-6.195845,58.474739],[-6.19529,58.475881],[-6.197721,58.475649],[-6.200392,58.477094],[-6.204503,58.475977],[-6.206537,58.476198],[-6.206801,58.476788],[-6.20567,58.477994],[-6.20322,58.479469],[-6.205069,58.480865],[-6.208557,58.480627],[-6.20725,58.483161],[-6.21241,58.483989],[-6.213829,58.483381],[-6.217521,58.484801],[-6.220017,58.485198],[-6.22012,58.486282],[-6.22193,58.487771],[-6.226786,58.489373],[-6.227564,58.491888],[-6.225512,58.492994],[-6.223736,58.492848],[-6.222303,58.494063],[-6.220165,58.494187],[-6.222372,58.495829],[-6.224584,58.495712],[-6.22634,58.496844],[-6.22496,58.497279],[-6.225007,58.498128],[-6.223319,58.498771],[-6.221634,58.50015],[-6.223236,58.501231],[-6.224397,58.501354],[-6.228648,58.500947],[-6.229984,58.501462],[-6.231173,58.503128],[-6.233103,58.503672],[-6.237396,58.503407],[-6.237136,58.504437],[-6.241205,58.505322],[-6.241346,58.506727],[-6.242873,58.506519],[-6.244747,58.507457],[-6.24798,58.508258],[-6.245886,58.508631],[-6.246811,58.509346],[-6.250682,58.509427],[-6.250548,58.510876],[-6.253339,58.51075],[-6.253513,58.511321],[-6.249447,58.511671],[-6.250944,58.513463],[-6.2531,58.513528],[-6.254871,58.514503],[-6.256881,58.514487],[-6.259982,58.515926],[-6.262747,58.515856]]],[[[-6.151563,59.098823],[-6.15428,59.098165],[-6.157704,59.096783],[-6.158315,59.095266],[-6.161005,59.093314],[-6.160254,59.092668],[-6.156414,59.094864],[-6.153893,59.09468],[-6.154042,59.096127],[-6.153439,59.097136],[-6.151331,59.097841],[-6.151563,59.098823]]],[[[-5.826105,59.134137],[-5.826614,59.133367],[-5.824811,59.132651],[-5.82628,59.131561],[-5.825984,59.129843],[-5.824155,59.12889],[-5.825233,59.127892],[-5.826266,59.125879],[-5.828429,59.125038],[-5.828865,59.124324],[-5.833017,59.124862],[-5.836175,59.124643],[-5.834676,59.122336],[-5.835828,59.121619],[-5.838499,59.120803],[-5.837298,59.119831],[-5.83963,59.119578],[-5.840977,59.118729],[-5.838815,59.117611],[-5.843128,59.116867],[-5.840843,59.116283],[-5.838251,59.116014],[-5.836598,59.117411],[-5.83452,59.117823],[-5.833529,59.118887],[-5.828968,59.118985],[-5.827459,59.119484],[-5.825346,59.118724],[-5.823114,59.118619],[-5.819695,59.119713],[-5.820745,59.118154],[-5.818783,59.118356],[-5.815551,59.117907],[-5.812981,59.119007],[-5.812212,59.1205],[-5.812614,59.121441],[-5.814205,59.122073],[-5.817584,59.122265],[-5.81781,59.122879],[-5.820569,59.125436],[-5.818132,59.126088],[-5.819914,59.128341],[-5.819075,59.128505],[-5.820332,59.130918],[-5.821345,59.131841],[-5.822871,59.131882],[-5.823805,59.13296],[-5.825417,59.133141],[-5.826105,59.134137]]]]},"properties":{"LAD22CD":"S12000013","LAD22NM":"Na h-Eileanan Siar","BNG_E":126473,"BNG_N":932862,"LONG":-6.65722,"LAT":58.19938,"GlobalID":"45d7557c-5902-4cec-b5fc-d5d6465299fd"},"id":326}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.516203,56.001965],[-3.515802,56.002496],[-3.516484,56.004705],[-3.515546,56.006377],[-3.519688,56.004206],[-3.524845,56.003935],[-3.527208,56.004647],[-3.531252,56.006733],[-3.538497,56.007729],[-3.54102,56.008445],[-3.543262,56.008307],[-3.546073,56.008625],[-3.554547,56.010874],[-3.557949,56.010802],[-3.563447,56.011442],[-3.565706,56.012336],[-3.567571,56.01358],[-3.568625,56.014855],[-3.568842,56.015947],[-3.577739,56.017872],[-3.579267,56.018441],[-3.582216,56.018825],[-3.584107,56.018125],[-3.58631,56.017896],[-3.589165,56.018378],[-3.590942,56.018321],[-3.594085,56.019117],[-3.5937,56.020371],[-3.597582,56.020964],[-3.602602,56.020069],[-3.605519,56.02033],[-3.606229,56.019372],[-3.609504,56.019739],[-3.612787,56.016781],[-3.615544,56.015938],[-3.617266,56.016433],[-3.62004,56.016092],[-3.620548,56.017725],[-3.624807,56.019138],[-3.628125,56.017979],[-3.632155,56.018145],[-3.632875,56.017299],[-3.63196,56.013964],[-3.634135,56.01455],[-3.637819,56.014775],[-3.657284,56.014743],[-3.65387,56.01395],[-3.653299,56.013079],[-3.653973,56.011547],[-3.65604,56.011043],[-3.658481,56.011721],[-3.658999,56.013245],[-3.658473,56.014344],[-3.660883,56.014723],[-3.664486,56.013607],[-3.667492,56.01319],[-3.672206,56.011286],[-3.675107,56.0117],[-3.675789,56.011274],[-3.676824,56.008969],[-3.676128,56.007356],[-3.676746,56.006739],[-3.679182,56.005893],[-3.690936,56.004739],[-3.691256,56.004916],[-3.679924,56.00616],[-3.677594,56.006863],[-3.676824,56.007502],[-3.677581,56.009303],[-3.676225,56.012056],[-3.675289,56.012858],[-3.672584,56.013403],[-3.671463,56.015762],[-3.671662,56.016804],[-3.673779,56.017882],[-3.675751,56.01825],[-3.67741,56.019566],[-3.681242,56.021205],[-3.684292,56.023141],[-3.677242,56.026318],[-3.6804,56.030245],[-3.693726,56.023525],[-3.693679,56.023765],[-3.68514,56.030024],[-3.680113,56.030878],[-3.679853,56.032871],[-3.68148,56.034903],[-3.683769,56.035899],[-3.686966,56.03684],[-3.690238,56.037028],[-3.695077,56.035437],[-3.69695,56.033989],[-3.698108,56.030225],[-3.699125,56.028993],[-3.701684,56.027442],[-3.70535,56.026246],[-3.709429,56.025708],[-3.712183,56.026008],[-3.715398,56.025933],[-3.722311,56.024885],[-3.727691,56.023838],[-3.729613,56.023869],[-3.733307,56.022417],[-3.734574,56.021213],[-3.737572,56.020905],[-3.740584,56.021655],[-3.743935,56.021659],[-3.746595,56.021382],[-3.752794,56.019805],[-3.769802,56.023163],[-3.769741,56.023537],[-3.753494,56.020496],[-3.751333,56.020818],[-3.746365,56.02226],[-3.741188,56.022293],[-3.735784,56.021673],[-3.733335,56.023269],[-3.730643,56.024261],[-3.723447,56.025228],[-3.717063,56.026432],[-3.722838,56.029248],[-3.725016,56.030764],[-3.726159,56.031034],[-3.728485,56.032391],[-3.72864,56.034431],[-3.726858,56.036839],[-3.727462,56.04063],[-3.726831,56.041073],[-3.727568,56.042129],[-3.72843,56.045471],[-3.727392,56.04634],[-3.727746,56.047431],[-3.731013,56.053847],[-3.733231,56.057529],[-3.73423,56.06158],[-3.733916,56.061784],[-3.735428,56.063989],[-3.73374,56.064654],[-3.735164,56.065498],[-3.73704,56.065168],[-3.737408,56.066103],[-3.741125,56.068027],[-3.742341,56.0677],[-3.743742,56.068209],[-3.747003,56.068082],[-3.7484,56.068879],[-3.75922,56.072823],[-3.76145,56.074126],[-3.762095,56.073926],[-3.769797,56.078265],[-3.773917,56.081257],[-3.779003,56.086383],[-3.785889,56.090408],[-3.790449,56.093851],[-3.794674,56.098453],[-3.795488,56.099858],[-3.79678,56.100079],[-3.798896,56.103993],[-3.803075,56.10678],[-3.805081,56.106627],[-3.808258,56.104227],[-3.8091,56.102743],[-3.811255,56.101617],[-3.816517,56.099749],[-3.81991,56.099178],[-3.820016,56.098317],[-3.820817,56.097703],[-3.821858,56.096717],[-3.82314,56.09108],[-3.826015,56.090304],[-3.828641,56.086543],[-3.833329,56.087499],[-3.83589,56.084648],[-3.832932,56.083385],[-3.829492,56.080952],[-3.823265,56.078617],[-3.817849,56.075714],[-3.8128,56.074845],[-3.807778,56.072906],[-3.805484,56.073043],[-3.806814,56.069736],[-3.804066,56.069374],[-3.8003,56.068086],[-3.800225,56.067143],[-3.798596,56.06644],[-3.797899,56.065419],[-3.799668,56.062804],[-3.802168,56.063336],[-3.804264,56.062775],[-3.805431,56.063109],[-3.809239,56.062237],[-3.811698,56.062288],[-3.81315,56.061085],[-3.814431,56.0614],[-3.815565,56.060543],[-3.814728,56.060034],[-3.815271,56.058261],[-3.811323,56.056307],[-3.811009,56.054884],[-3.813794,56.053459],[-3.817266,56.053516],[-3.817605,56.054412],[-3.819446,56.054595],[-3.820988,56.054295],[-3.824498,56.051091],[-3.826773,56.050956],[-3.830277,56.051257],[-3.833224,56.050397],[-3.834592,56.051902],[-3.836585,56.051846],[-3.841372,56.050764],[-3.848017,56.050572],[-3.850274,56.050386],[-3.851518,56.05079],[-3.85375,56.050036],[-3.857774,56.049949],[-3.860887,56.050737],[-3.865633,56.049648],[-3.868186,56.050049],[-3.869743,56.049868],[-3.870761,56.050367],[-3.873091,56.05047],[-3.873819,56.049764],[-3.873307,56.048329],[-3.879414,56.047022],[-3.883356,56.047436],[-3.884234,56.047892],[-3.89149,56.048479],[-3.893057,56.047925],[-3.893336,56.046995],[-3.895127,56.04574],[-3.89673,56.045421],[-3.900957,56.046264],[-3.905267,56.047762],[-3.914626,56.049295],[-3.920007,56.048341],[-3.920611,56.049494],[-3.922715,56.049497],[-3.923871,56.050051],[-3.925117,56.048838],[-3.930332,56.049897],[-3.934625,56.049402],[-3.93939,56.050767],[-3.942828,56.050978],[-3.942888,56.050004],[-3.944119,56.049606],[-3.946407,56.049699],[-3.946899,56.049175],[-3.954324,56.050066],[-3.961256,56.048194],[-3.973356,56.048622],[-3.97594,56.047642],[-3.979143,56.04361],[-3.978367,56.040344],[-3.978651,56.03937],[-3.981572,56.040042],[-3.988707,56.038994],[-3.991808,56.038117],[-3.993115,56.038709],[-3.994621,56.038702],[-3.995932,56.036997],[-3.997842,56.035945],[-4.001291,56.03494],[-4.002881,56.03499],[-4.004722,56.033357],[-4.010388,56.030872],[-4.012638,56.031279],[-4.014858,56.029673],[-4.017847,56.029756],[-4.019018,56.028447],[-4.020121,56.028037],[-4.019176,56.026748],[-4.020219,56.02563],[-4.020133,56.023939],[-4.020945,56.022541],[-4.023247,56.022067],[-4.024283,56.017503],[-4.027241,56.013163],[-4.030341,56.009733],[-4.021867,56.010067],[-4.019382,56.005944],[-4.017699,56.005761],[-4.015152,56.006184],[-4.012581,56.005945],[-4.01187,56.006923],[-4.004798,56.007199],[-4.000296,56.006652],[-3.996217,56.005738],[-3.991312,56.005963],[-3.991037,56.007664],[-3.988418,56.007789],[-3.987231,56.005754],[-3.985258,56.003761],[-3.979634,55.999586],[-3.981175,55.998965],[-3.980942,55.997226],[-3.982242,55.995273],[-3.978052,55.993012],[-3.975281,55.992882],[-3.974635,55.990877],[-3.977499,55.991051],[-3.980256,55.990628],[-3.989324,55.987284],[-3.987832,55.984918],[-3.985121,55.985319],[-3.985577,55.983386],[-3.985231,55.982782],[-3.964811,55.987102],[-3.96324,55.986659],[-3.958238,55.986566],[-3.954388,55.984574],[-3.95291,55.984143],[-3.950802,55.984359],[-3.948623,55.983303],[-3.945515,55.982439],[-3.94326,55.980449],[-3.946142,55.977309],[-3.946061,55.975981],[-3.947229,55.974778],[-3.949132,55.973926],[-3.948746,55.972686],[-3.949722,55.971443],[-3.944414,55.969483],[-3.942097,55.96952],[-3.940497,55.968587],[-3.940087,55.96664],[-3.940986,55.965095],[-3.939372,55.964924],[-3.937927,55.964111],[-3.938095,55.962918],[-3.935868,55.962522],[-3.929863,55.963529],[-3.928864,55.96344],[-3.925952,55.964589],[-3.924189,55.964824],[-3.92139,55.96421],[-3.921197,55.963452],[-3.91948,55.962175],[-3.916989,55.961117],[-3.914035,55.961015],[-3.912374,55.960513],[-3.911075,55.959288],[-3.906106,55.960304],[-3.904248,55.962064],[-3.902473,55.962221],[-3.900581,55.961224],[-3.898565,55.961135],[-3.885997,55.961647],[-3.880815,55.962246],[-3.867813,55.9626],[-3.860379,55.959251],[-3.862399,55.95882],[-3.862837,55.958083],[-3.865565,55.957373],[-3.866266,55.956618],[-3.867973,55.956335],[-3.867873,55.955268],[-3.868806,55.953673],[-3.876053,55.951952],[-3.8792,55.952575],[-3.880645,55.952378],[-3.883089,55.950938],[-3.884949,55.95077],[-3.888958,55.949155],[-3.892311,55.94727],[-3.891927,55.945797],[-3.892635,55.94494],[-3.898126,55.943766],[-3.899273,55.94253],[-3.898107,55.941565],[-3.898354,55.940744],[-3.900219,55.939384],[-3.9024,55.939275],[-3.903779,55.938083],[-3.902704,55.936783],[-3.896523,55.936752],[-3.896374,55.937176],[-3.892897,55.93736],[-3.892079,55.937659],[-3.890346,55.935834],[-3.882335,55.929539],[-3.879488,55.925855],[-3.876742,55.923317],[-3.864648,55.920505],[-3.861749,55.919566],[-3.859693,55.91838],[-3.8431,55.912879],[-3.834917,55.912213],[-3.834156,55.910519],[-3.833056,55.909459],[-3.833029,55.9078],[-3.827171,55.906289],[-3.825027,55.905145],[-3.818735,55.903954],[-3.818026,55.905685],[-3.817206,55.905738],[-3.814033,55.904871],[-3.810154,55.905102],[-3.808936,55.904474],[-3.809994,55.903641],[-3.814303,55.901988],[-3.815248,55.900288],[-3.817781,55.89813],[-3.820635,55.896767],[-3.822557,55.896484],[-3.821524,55.895421],[-3.809843,55.896714],[-3.808477,55.897198],[-3.805728,55.897382],[-3.804323,55.89787],[-3.802014,55.897898],[-3.799302,55.898799],[-3.797959,55.899617],[-3.792452,55.900366],[-3.786018,55.900778],[-3.782104,55.901633],[-3.781941,55.902993],[-3.780596,55.90393],[-3.781,55.904649],[-3.779206,55.904946],[-3.77743,55.906403],[-3.775956,55.906781],[-3.772122,55.906925],[-3.771555,55.90743],[-3.768139,55.907838],[-3.766864,55.908612],[-3.76719,55.91011],[-3.766183,55.910681],[-3.764291,55.910883],[-3.763734,55.912803],[-3.76134,55.913958],[-3.76023,55.91551],[-3.761458,55.915863],[-3.762437,55.916842],[-3.762056,55.917905],[-3.758888,55.918377],[-3.755238,55.919552],[-3.754688,55.920675],[-3.752417,55.921497],[-3.752981,55.922313],[-3.750963,55.923241],[-3.750495,55.925181],[-3.743773,55.925814],[-3.742546,55.926231],[-3.742235,55.928339],[-3.742229,55.931016],[-3.741352,55.931292],[-3.739153,55.933102],[-3.735485,55.933237],[-3.732694,55.93511],[-3.729584,55.936059],[-3.726979,55.936074],[-3.724705,55.934982],[-3.720836,55.935661],[-3.718904,55.935254],[-3.71596,55.935534],[-3.715601,55.934028],[-3.71068,55.933733],[-3.708955,55.933921],[-3.707978,55.935409],[-3.703247,55.934586],[-3.699747,55.93584],[-3.699496,55.938439],[-3.698914,55.939316],[-3.696925,55.938667],[-3.694174,55.938987],[-3.690363,55.938294],[-3.689729,55.938879],[-3.686036,55.940045],[-3.683413,55.942287],[-3.677463,55.942367],[-3.673126,55.945255],[-3.670869,55.944343],[-3.667572,55.945438],[-3.667971,55.948564],[-3.670971,55.948832],[-3.672707,55.949698],[-3.673022,55.951477],[-3.674346,55.953044],[-3.674212,55.953924],[-3.672583,55.954684],[-3.670377,55.9546],[-3.668689,55.955101],[-3.667892,55.957342],[-3.6655,55.958085],[-3.664615,55.960172],[-3.663865,55.960655],[-3.661466,55.960561],[-3.661186,55.95974],[-3.656196,55.95867],[-3.652931,55.959259],[-3.654639,55.963205],[-3.657424,55.964035],[-3.656993,55.964777],[-3.652191,55.964666],[-3.652406,55.965565],[-3.649396,55.967164],[-3.649396,55.968633],[-3.648664,55.969426],[-3.646973,55.969856],[-3.644628,55.969615],[-3.642331,55.970876],[-3.639775,55.970716],[-3.637672,55.971927],[-3.631809,55.973832],[-3.632014,55.975165],[-3.630004,55.977426],[-3.631945,55.979906],[-3.632346,55.982013],[-3.630804,55.982986],[-3.62744,55.982734],[-3.627367,55.984052],[-3.626531,55.98505],[-3.622512,55.984579],[-3.620597,55.984829],[-3.618538,55.984448],[-3.618374,55.985328],[-3.616501,55.986777],[-3.615255,55.986995],[-3.614918,55.989429],[-3.614015,55.989994],[-3.614095,55.991473],[-3.611658,55.992612],[-3.609926,55.992902],[-3.606988,55.992046],[-3.601155,55.992409],[-3.601001,55.994036],[-3.59884,55.997034],[-3.59505,55.997004],[-3.593272,55.996464],[-3.589932,55.996552],[-3.584796,55.995747],[-3.58109,55.994524],[-3.583428,55.992091],[-3.581561,55.989686],[-3.576233,55.989664],[-3.564577,55.988327],[-3.564213,55.988949],[-3.55835,55.987785],[-3.551196,55.987115],[-3.54303,55.985775],[-3.542073,55.986463],[-3.539191,55.986304],[-3.5364,55.985723],[-3.535849,55.986706],[-3.538954,55.987511],[-3.539433,55.988506],[-3.530183,55.98643],[-3.529014,55.988823],[-3.529505,55.989971],[-3.528776,55.992729],[-3.522881,55.993321],[-3.51753,55.992339],[-3.511528,55.993966],[-3.513622,55.998547],[-3.516549,55.999267],[-3.517645,56.000065],[-3.516203,56.001965]]]},"properties":{"LAD22CD":"S12000014","LAD22NM":"Falkirk","BNG_E":285585,"BNG_N":680170,"LONG":-3.83619,"LAT":56.00077,"GlobalID":"ef1b0632-5d88-4e3c-8da4-9a28ae520709"},"id":327}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.695329,56.502264],[-5.697355,56.503701],[-5.699517,56.503281],[-5.700791,56.502259],[-5.697978,56.500837],[-5.695754,56.501194],[-5.695329,56.502264]]],[[[-5.872225,56.547447],[-5.874487,56.547605],[-5.872662,56.545675],[-5.871237,56.545513],[-5.870101,56.546816],[-5.872225,56.547447]]],[[[-5.335943,56.633887],[-5.336769,56.634921],[-5.339622,56.634166],[-5.341432,56.632679],[-5.340307,56.631855],[-5.342937,56.629515],[-5.342285,56.628957],[-5.339815,56.629525],[-5.338339,56.62953],[-5.336565,56.630669],[-5.336649,56.631998],[-5.337654,56.632754],[-5.335943,56.633887]]],[[[-5.897668,56.654836],[-5.898315,56.655648],[-5.899876,56.655747],[-5.90111,56.657021],[-5.901988,56.65658],[-5.900953,56.655659],[-5.900858,56.653954],[-5.897668,56.654836]]],[[[-5.129318,56.685222],[-5.130651,56.685151],[-5.131907,56.684315],[-5.129437,56.683628],[-5.129318,56.685222]]],[[[-5.882036,56.670679],[-5.883941,56.670318],[-5.885291,56.669502],[-5.889005,56.666604],[-5.890801,56.665972],[-5.892629,56.664143],[-5.894958,56.662663],[-5.895996,56.66125],[-5.895715,56.660275],[-5.894523,56.659246],[-5.895426,56.657793],[-5.893952,56.656873],[-5.895562,56.655311],[-5.894802,56.652808],[-5.894029,56.652325],[-5.891622,56.652414],[-5.889609,56.651015],[-5.887239,56.651701],[-5.88687,56.652391],[-5.884302,56.653056],[-5.879126,56.655821],[-5.879321,56.657083],[-5.878277,56.658675],[-5.876267,56.658738],[-5.87615,56.660225],[-5.872628,56.660749],[-5.871207,56.662092],[-5.873601,56.662031],[-5.872326,56.663127],[-5.871445,56.665448],[-5.872628,56.665995],[-5.876326,56.666703],[-5.877171,56.667931],[-5.878351,56.668371],[-5.880013,56.67031],[-5.882036,56.670679]]],[[[-5.941209,56.668602],[-5.942053,56.66902],[-5.943298,56.665694],[-5.944982,56.664177],[-5.945027,56.663099],[-5.948114,56.662335],[-5.949609,56.661407],[-5.948976,56.660271],[-5.951061,56.65976],[-5.950926,56.658361],[-5.948732,56.657316],[-5.946076,56.657357],[-5.94108,56.656669],[-5.93654,56.657306],[-5.935766,56.658465],[-5.934349,56.658572],[-5.931013,56.658129],[-5.930303,56.658844],[-5.930602,56.66124],[-5.929368,56.66185],[-5.929192,56.65977],[-5.928178,56.658318],[-5.926057,56.657179],[-5.923547,56.657543],[-5.923828,56.658356],[-5.922289,56.658864],[-5.920646,56.658018],[-5.916403,56.657215],[-5.916146,56.657965],[-5.916899,56.659164],[-5.920091,56.659553],[-5.91889,56.660405],[-5.916872,56.660788],[-5.914816,56.659702],[-5.915893,56.658593],[-5.915569,56.657205],[-5.910844,56.657376],[-5.906757,56.658184],[-5.905446,56.658854],[-5.906236,56.660097],[-5.908079,56.660753],[-5.913299,56.661597],[-5.915327,56.66312],[-5.918166,56.663376],[-5.918326,56.66237],[-5.920416,56.662753],[-5.92177,56.662427],[-5.922675,56.664067],[-5.92374,56.664334],[-5.923545,56.665632],[-5.924448,56.666515],[-5.92351,56.667156],[-5.925178,56.668484],[-5.92815,56.66951],[-5.92839,56.668216],[-5.930414,56.665391],[-5.931448,56.666303],[-5.931909,56.667511],[-5.93382,56.667203],[-5.934844,56.668246],[-5.936053,56.66716],[-5.935064,56.665658],[-5.935709,56.665019],[-5.934528,56.663656],[-5.936373,56.662946],[-5.936444,56.661757],[-5.939193,56.661494],[-5.939319,56.660281],[-5.941416,56.660507],[-5.937416,56.664338],[-5.937698,56.665552],[-5.938749,56.667097],[-5.938963,56.66852],[-5.941209,56.668602]]],[[[-5.897954,56.670617],[-5.899082,56.671751],[-5.904622,56.672163],[-5.90617,56.671901],[-5.905625,56.670588],[-5.903651,56.670139],[-5.902548,56.669421],[-5.90081,56.669116],[-5.897954,56.670617]]],[[[-5.899234,56.674956],[-5.900599,56.675677],[-5.903106,56.675756],[-5.903585,56.67486],[-5.902987,56.67326],[-5.901198,56.673577],[-5.899234,56.674956]]],[[[-5.661142,56.68388],[-5.663278,56.684006],[-5.665299,56.682692],[-5.665645,56.681221],[-5.663934,56.680331],[-5.66173,56.680176],[-5.65766,56.680903],[-5.657819,56.68204],[-5.660515,56.68272],[-5.661142,56.68388]]],[[[-5.941735,56.679092],[-5.938603,56.679528],[-5.937766,56.680198],[-5.938094,56.681141],[-5.94045,56.683368],[-5.940173,56.685171],[-5.94207,56.686819],[-5.945579,56.6871],[-5.945802,56.686422],[-5.943251,56.684529],[-5.944188,56.683335],[-5.943312,56.682221],[-5.944679,56.681004],[-5.946161,56.680581],[-5.946321,56.678587],[-5.944433,56.678107],[-5.941735,56.679092]]],[[[-5.69122,56.695587],[-5.692816,56.693449],[-5.690699,56.693431],[-5.689137,56.695168],[-5.69122,56.695587]]],[[[-5.826336,56.786224],[-5.825033,56.78697],[-5.825039,56.788207],[-5.827665,56.788967],[-5.830383,56.789108],[-5.83132,56.78831],[-5.830405,56.787291],[-5.827499,56.786184],[-5.826336,56.786224]]],[[[-5.813664,56.789481],[-5.816023,56.789639],[-5.81625,56.788715],[-5.811465,56.787355],[-5.812491,56.788825],[-5.813664,56.789481]]],[[[-5.094389,56.828402],[-5.092946,56.829753],[-5.09478,56.829743],[-5.094389,56.828402]]],[[[-5.87669,56.810645],[-5.878928,56.810652],[-5.879854,56.810131],[-5.879259,56.809252],[-5.877527,56.809072],[-5.87557,56.808297],[-5.877137,56.807515],[-5.878215,56.805265],[-5.877542,56.804378],[-5.880011,56.803371],[-5.883088,56.800006],[-5.883181,56.799005],[-5.884942,56.797107],[-5.887313,56.793868],[-5.887548,56.792606],[-5.883378,56.791334],[-5.881294,56.792415],[-5.878332,56.792372],[-5.876523,56.791303],[-5.874195,56.791575],[-5.872472,56.790913],[-5.87098,56.791382],[-5.869683,56.790879],[-5.86789,56.791051],[-5.863574,56.787962],[-5.860747,56.787869],[-5.858201,56.786447],[-5.856642,56.786666],[-5.851309,56.785936],[-5.849817,56.787043],[-5.848136,56.786564],[-5.845781,56.787546],[-5.843445,56.787447],[-5.842558,56.786953],[-5.838783,56.787914],[-5.838648,56.788918],[-5.836852,56.790186],[-5.835111,56.792141],[-5.835115,56.792748],[-5.833252,56.793111],[-5.832305,56.794268],[-5.829895,56.794819],[-5.829273,56.792015],[-5.826729,56.791086],[-5.82291,56.791154],[-5.821814,56.79165],[-5.81983,56.791558],[-5.81775,56.792202],[-5.810733,56.792642],[-5.809216,56.79352],[-5.809254,56.794944],[-5.812236,56.795905],[-5.8165,56.797631],[-5.81872,56.797869],[-5.820649,56.79887],[-5.826282,56.800514],[-5.830943,56.800348],[-5.832103,56.799827],[-5.832143,56.797812],[-5.833622,56.796728],[-5.835673,56.796997],[-5.835799,56.797987],[-5.837839,56.799988],[-5.839077,56.800314],[-5.841146,56.801958],[-5.843839,56.803125],[-5.846328,56.802873],[-5.84973,56.803438],[-5.852495,56.805789],[-5.855251,56.806212],[-5.855676,56.807795],[-5.857432,56.808046],[-5.859818,56.806151],[-5.861064,56.805591],[-5.863262,56.805985],[-5.868249,56.80772],[-5.87151,56.808666],[-5.873985,56.808656],[-5.876173,56.809766],[-5.87669,56.810645]]],[[[-5.871941,56.820139],[-5.872726,56.818924],[-5.871671,56.817207],[-5.870236,56.817045],[-5.870116,56.819059],[-5.871941,56.820139]]],[[[-5.832967,56.836176],[-5.83388,56.836678],[-5.835821,56.836735],[-5.836965,56.835171],[-5.835112,56.834379],[-5.833086,56.835169],[-5.832967,56.836176]]],[[[-5.736318,56.846105],[-5.736096,56.846764],[-5.737914,56.847136],[-5.737855,56.846055],[-5.736318,56.846105]]],[[[-5.719107,56.849996],[-5.721991,56.849999],[-5.721684,56.849258],[-5.719107,56.849996]]],[[[-5.73636,56.849404],[-5.736808,56.850033],[-5.740915,56.850081],[-5.739578,56.849177],[-5.73636,56.849404]]],[[[-5.781328,56.851225],[-5.783256,56.850413],[-5.785136,56.848517],[-5.782993,56.84704],[-5.78149,56.848245],[-5.781328,56.851225]]],[[[-5.738625,56.853622],[-5.741673,56.852762],[-5.741759,56.851168],[-5.740434,56.850889],[-5.736103,56.851285],[-5.735954,56.852371],[-5.738625,56.853622]]],[[[-6.263439,56.845997],[-6.265592,56.847882],[-6.267166,56.847664],[-6.264686,56.845779],[-6.265514,56.844689],[-6.263756,56.843446],[-6.26318,56.842134],[-6.264172,56.841048],[-6.266311,56.840377],[-6.268386,56.840877],[-6.267954,56.838167],[-6.268115,56.837064],[-6.270417,56.836311],[-6.275061,56.835387],[-6.276404,56.835795],[-6.277169,56.834303],[-6.276566,56.833267],[-6.274916,56.833251],[-6.273634,56.83187],[-6.27398,56.830873],[-6.272726,56.829662],[-6.2685,56.82799],[-6.266555,56.827836],[-6.265541,56.827142],[-6.263188,56.827655],[-6.258114,56.826524],[-6.256439,56.829752],[-6.253674,56.832634],[-6.252073,56.833053],[-6.250523,56.832553],[-6.247821,56.832816],[-6.245998,56.831996],[-6.242517,56.828068],[-6.241775,56.828179],[-6.239887,56.826058],[-6.238867,56.826394],[-6.236555,56.82604],[-6.2367,56.824929],[-6.238324,56.824708],[-6.236738,56.823379],[-6.234047,56.824457],[-6.232573,56.825348],[-6.232846,56.827399],[-6.230706,56.827044],[-6.22968,56.82783],[-6.226153,56.827181],[-6.22722,56.828925],[-6.227247,56.831204],[-6.228565,56.833138],[-6.226946,56.83304],[-6.219914,56.830688],[-6.219308,56.832961],[-6.218274,56.833968],[-6.216894,56.83432],[-6.216108,56.83579],[-6.214844,56.836148],[-6.216449,56.838378],[-6.217349,56.838797],[-6.217502,56.840514],[-6.218505,56.841919],[-6.220682,56.84238],[-6.221612,56.844395],[-6.223016,56.845323],[-6.224682,56.845397],[-6.224361,56.843573],[-6.227593,56.845019],[-6.230955,56.844563],[-6.232746,56.843932],[-6.236265,56.844716],[-6.237673,56.84353],[-6.239424,56.842981],[-6.240164,56.842047],[-6.242645,56.842583],[-6.244888,56.843842],[-6.246349,56.843343],[-6.249216,56.844235],[-6.247654,56.842336],[-6.249711,56.842455],[-6.249543,56.841332],[-6.251734,56.840326],[-6.25382,56.840705],[-6.256228,56.840524],[-6.257898,56.842513],[-6.26029,56.844284],[-6.263439,56.845997]]],[[[-6.27619,56.853245],[-6.277542,56.85229],[-6.279165,56.852127],[-6.27944,56.850948],[-6.278777,56.849235],[-6.277317,56.848026],[-6.275379,56.848295],[-6.274311,56.849294],[-6.270363,56.849865],[-6.271174,56.851286],[-6.274528,56.853136],[-6.27619,56.853245]]],[[[-5.894978,56.873592],[-5.897659,56.873792],[-5.898345,56.872498],[-5.895911,56.873006],[-5.894978,56.873592]]],[[[-5.804247,56.884386],[-5.802492,56.885541],[-5.805093,56.885468],[-5.804247,56.884386]]],[[[-5.821094,56.882738],[-5.818361,56.884121],[-5.820394,56.884805],[-5.822491,56.88435],[-5.824275,56.883005],[-5.822282,56.882306],[-5.821094,56.882738]]],[[[-6.122376,56.872779],[-6.123618,56.874591],[-6.123776,56.877508],[-6.125994,56.877291],[-6.125821,56.876096],[-6.126908,56.87352],[-6.12871,56.872736],[-6.126707,56.87215],[-6.12692,56.870583],[-6.128149,56.869216],[-6.125574,56.868649],[-6.123683,56.868779],[-6.122643,56.869843],[-6.120337,56.871116],[-6.122376,56.872779]]],[[[-5.925744,56.905354],[-5.928041,56.904459],[-5.929265,56.905157],[-5.930007,56.903695],[-5.933725,56.903736],[-5.934292,56.902252],[-5.933548,56.901354],[-5.928821,56.900936],[-5.928037,56.902076],[-5.926955,56.901948],[-5.924944,56.902982],[-5.923879,56.902463],[-5.921948,56.903481],[-5.922748,56.904799],[-5.925744,56.905354]]],[[[-5.91318,56.916493],[-5.913968,56.91499],[-5.912009,56.914341],[-5.909346,56.914887],[-5.908289,56.915788],[-5.910628,56.916452],[-5.91318,56.916493]]],[[[-5.89027,56.926098],[-5.891276,56.925658],[-5.891756,56.924501],[-5.891082,56.923326],[-5.895165,56.923378],[-5.898703,56.922216],[-5.900455,56.921914],[-5.900245,56.919749],[-5.89843,56.920547],[-5.896231,56.920508],[-5.895448,56.918999],[-5.893986,56.918533],[-5.892938,56.91897],[-5.891517,56.920871],[-5.887154,56.920894],[-5.885324,56.92132],[-5.886571,56.923035],[-5.886409,56.923845],[-5.887057,56.926041],[-5.89027,56.926098]]],[[[-5.856057,56.944237],[-5.858937,56.943898],[-5.858225,56.942089],[-5.856057,56.944237]]],[[[-6.113944,56.928367],[-6.116127,56.93026],[-6.117693,56.934246],[-6.11889,56.935475],[-6.124994,56.938758],[-6.127891,56.939292],[-6.129454,56.941074],[-6.133189,56.943006],[-6.136909,56.944285],[-6.139277,56.944126],[-6.141654,56.942855],[-6.145997,56.942707],[-6.151073,56.941899],[-6.153896,56.939099],[-6.15597,56.938225],[-6.160661,56.937515],[-6.162279,56.936306],[-6.162666,56.934764],[-6.159,56.933533],[-6.156885,56.932042],[-6.157019,56.930475],[-6.158361,56.929125],[-6.158269,56.928333],[-6.159941,56.927144],[-6.161039,56.92556],[-6.159464,56.924561],[-6.157731,56.922011],[-6.156272,56.921297],[-6.156358,56.919965],[-6.155528,56.918993],[-6.155996,56.917805],[-6.158654,56.915006],[-6.162042,56.91356],[-6.169206,56.913952],[-6.171649,56.914779],[-6.177783,56.915967],[-6.185549,56.915428],[-6.187107,56.914585],[-6.191626,56.914132],[-6.193024,56.9123],[-6.197766,56.910683],[-6.200388,56.910613],[-6.202245,56.909368],[-6.203929,56.908996],[-6.204263,56.908306],[-6.207455,56.907461],[-6.206903,56.906576],[-6.2078,56.904981],[-6.207454,56.904021],[-6.208893,56.903231],[-6.205939,56.90101],[-6.206921,56.898999],[-6.207228,56.897495],[-6.206648,56.895842],[-6.207012,56.894265],[-6.206572,56.89218],[-6.208471,56.891244],[-6.210111,56.888661],[-6.208454,56.887885],[-6.206237,56.887457],[-6.203385,56.885974],[-6.202105,56.886211],[-6.200336,56.885529],[-6.198451,56.884171],[-6.196125,56.884092],[-6.194742,56.883037],[-6.194914,56.881786],[-6.191558,56.879695],[-6.188789,56.880045],[-6.185548,56.879047],[-6.183542,56.878953],[-6.18131,56.877867],[-6.179826,56.877674],[-6.175519,56.875139],[-6.172902,56.873909],[-6.171487,56.874186],[-6.16709,56.873703],[-6.163931,56.872257],[-6.162211,56.872364],[-6.159322,56.871935],[-6.157694,56.872578],[-6.154577,56.872983],[-6.153022,56.872504],[-6.149216,56.873287],[-6.146216,56.873477],[-6.14423,56.873192],[-6.140632,56.871397],[-6.136309,56.873145],[-6.136881,56.873783],[-6.136288,56.875178],[-6.134686,56.875843],[-6.129372,56.877186],[-6.131473,56.87835],[-6.134712,56.87957],[-6.132974,56.880486],[-6.131663,56.882072],[-6.128986,56.88163],[-6.12794,56.882573],[-6.126305,56.883097],[-6.129086,56.885732],[-6.129272,56.887047],[-6.126775,56.889351],[-6.125907,56.889155],[-6.124775,56.887457],[-6.123457,56.887649],[-6.12267,56.886839],[-6.1196,56.886864],[-6.117016,56.887862],[-6.117211,56.888741],[-6.116567,56.890273],[-6.117134,56.891464],[-6.116587,56.892763],[-6.117734,56.893778],[-6.11868,56.895729],[-6.116751,56.900514],[-6.116034,56.906091],[-6.114423,56.909665],[-6.114371,56.917247],[-6.113364,56.91885],[-6.113703,56.919693],[-6.112867,56.921807],[-6.113287,56.923223],[-6.111718,56.924506],[-6.113469,56.926292],[-6.113944,56.928367]]],[[[-5.633644,56.986736],[-5.635626,56.987128],[-5.636559,56.986566],[-5.635154,56.98586],[-5.633644,56.986736]]],[[[-6.678699,56.969836],[-6.681349,56.969296],[-6.681656,56.96722],[-6.67831,56.967723],[-6.677988,56.968954],[-6.678699,56.969836]]],[[[-6.675535,56.974262],[-6.677947,56.974272],[-6.6775,56.972544],[-6.677838,56.971308],[-6.675738,56.968355],[-6.673473,56.969204],[-6.674163,56.971157],[-6.673845,56.97197],[-6.675678,56.97299],[-6.675535,56.974262]]],[[[-5.779066,57.036194],[-5.779826,57.036813],[-5.781516,57.03656],[-5.781248,57.035633],[-5.779066,57.036194]]],[[[-6.53551,57.051422],[-6.537553,57.050786],[-6.536298,57.050166],[-6.53551,57.051422]]],[[[-6.329967,57.060374],[-6.330964,57.059368],[-6.333053,57.059237],[-6.335479,57.05994],[-6.339066,57.058566],[-6.340402,57.056792],[-6.341778,57.056848],[-6.346573,57.054105],[-6.346969,57.052054],[-6.35155,57.051013],[-6.350648,57.050496],[-6.352708,57.049772],[-6.353417,57.050746],[-6.354831,57.050984],[-6.355408,57.052039],[-6.356684,57.051941],[-6.357838,57.052912],[-6.359528,57.053042],[-6.360197,57.052344],[-6.361826,57.05244],[-6.362131,57.053352],[-6.365067,57.053613],[-6.366651,57.052704],[-6.368301,57.053334],[-6.370185,57.053354],[-6.375288,57.05121],[-6.377433,57.049381],[-6.379916,57.048543],[-6.38214,57.048227],[-6.382854,57.047568],[-6.389677,57.045467],[-6.394543,57.043088],[-6.396933,57.042572],[-6.398911,57.041585],[-6.399154,57.040637],[-6.400998,57.040133],[-6.400555,57.039517],[-6.402992,57.0385],[-6.403402,57.037299],[-6.402917,57.036475],[-6.404516,57.034934],[-6.404865,57.033703],[-6.40628,57.032426],[-6.408218,57.032146],[-6.406869,57.03106],[-6.408987,57.030496],[-6.409633,57.029335],[-6.415081,57.028333],[-6.416428,57.027542],[-6.417342,57.026194],[-6.42063,57.024998],[-6.422095,57.025603],[-6.423551,57.024872],[-6.425694,57.024522],[-6.428051,57.022779],[-6.431656,57.021756],[-6.433125,57.020522],[-6.436076,57.019279],[-6.436259,57.017492],[-6.437345,57.01623],[-6.437203,57.01552],[-6.438151,57.014209],[-6.440313,57.012986],[-6.443601,57.01245],[-6.442779,57.011891],[-6.446092,57.009407],[-6.448165,57.009163],[-6.452073,57.010568],[-6.453489,57.009706],[-6.455112,57.010179],[-6.456585,57.009955],[-6.457488,57.009105],[-6.460076,57.008751],[-6.460055,57.007477],[-6.457589,57.007257],[-6.457692,57.005711],[-6.455688,57.00469],[-6.453054,57.002562],[-6.45187,57.002447],[-6.451274,57.003592],[-6.449156,57.001118],[-6.447708,57.000254],[-6.445579,56.999802],[-6.444263,56.999129],[-6.442469,56.999085],[-6.441622,56.998341],[-6.440064,56.998752],[-6.439303,56.99707],[-6.436662,56.995028],[-6.434235,56.994781],[-6.434408,56.99554],[-6.432137,56.99598],[-6.430445,56.994988],[-6.427633,56.994346],[-6.425004,56.992195],[-6.423503,56.991627],[-6.421078,56.991461],[-6.419652,56.990352],[-6.420478,56.989468],[-6.41938,56.988823],[-6.416738,56.988355],[-6.416092,56.986938],[-6.413536,56.986849],[-6.411139,56.986012],[-6.411631,56.985363],[-6.406159,56.98201],[-6.402363,56.980345],[-6.402483,56.979477],[-6.398922,56.97869],[-6.398176,56.977947],[-6.39641,56.978054],[-6.394849,56.9769],[-6.393963,56.975114],[-6.390386,56.974601],[-6.388833,56.97498],[-6.385133,56.973913],[-6.383534,56.974595],[-6.380997,56.97494],[-6.378075,56.973972],[-6.377727,56.973179],[-6.375833,56.973181],[-6.376959,56.971061],[-6.375754,56.968653],[-6.374104,56.968346],[-6.375257,56.967231],[-6.372558,56.966539],[-6.371853,56.964742],[-6.372706,56.963727],[-6.36963,56.96214],[-6.370089,56.959597],[-6.369009,56.959095],[-6.368858,56.956609],[-6.370404,56.955754],[-6.37033,56.954493],[-6.369181,56.95206],[-6.367189,56.951568],[-6.365248,56.951856],[-6.361978,56.950572],[-6.360949,56.951125],[-6.359696,56.950551],[-6.35696,56.949955],[-6.35361,56.949946],[-6.351994,56.948438],[-6.348984,56.948241],[-6.348461,56.947495],[-6.346145,56.947814],[-6.345928,56.948847],[-6.344493,56.948681],[-6.34302,56.94755],[-6.342009,56.946006],[-6.342425,56.945508],[-6.341527,56.944341],[-6.340061,56.943686],[-6.340805,56.942734],[-6.33737,56.941635],[-6.335541,56.94267],[-6.332149,56.941376],[-6.332573,56.939504],[-6.331747,56.939267],[-6.330017,56.937609],[-6.330184,56.936924],[-6.328913,56.935548],[-6.327716,56.936363],[-6.32491,56.935997],[-6.322361,56.935222],[-6.32169,56.93618],[-6.318689,56.93583],[-6.317178,56.935289],[-6.315052,56.93618],[-6.312291,56.935844],[-6.311141,56.934868],[-6.30919,56.936415],[-6.302576,56.937556],[-6.299851,56.939106],[-6.298258,56.939562],[-6.293521,56.94236],[-6.293454,56.943207],[-6.28986,56.944864],[-6.289254,56.945384],[-6.289716,56.947684],[-6.288566,56.948488],[-6.288622,56.949835],[-6.287948,56.950915],[-6.286223,56.95244],[-6.282549,56.952557],[-6.281676,56.953406],[-6.279156,56.953245],[-6.277302,56.953659],[-6.276884,56.954393],[-6.273787,56.954584],[-6.269658,56.955612],[-6.26943,56.956343],[-6.266548,56.957125],[-6.263903,56.959613],[-6.262168,56.959987],[-6.261945,56.960849],[-6.260424,56.961224],[-6.260072,56.96196],[-6.260314,56.965302],[-6.259802,56.965935],[-6.256485,56.968238],[-6.253245,56.969136],[-6.251995,56.970451],[-6.250003,56.971171],[-6.249154,56.972595],[-6.249529,56.975611],[-6.249985,56.975848],[-6.249591,56.980346],[-6.250633,56.982966],[-6.249908,56.985136],[-6.250052,56.987416],[-6.249577,56.989086],[-6.249277,56.992811],[-6.248729,56.993854],[-6.246665,56.995112],[-6.243154,56.996261],[-6.242121,56.999196],[-6.239851,57.001908],[-6.238343,57.003353],[-6.238302,57.004798],[-6.239177,57.006329],[-6.240735,57.00691],[-6.242596,57.008277],[-6.245459,57.008296],[-6.247061,57.008907],[-6.25067,57.009333],[-6.254346,57.008826],[-6.260272,57.01027],[-6.262738,57.010069],[-6.266035,57.010433],[-6.269499,57.00983],[-6.271894,57.010237],[-6.273757,57.009811],[-6.275265,57.010752],[-6.27713,57.011217],[-6.279184,57.011254],[-6.279762,57.014677],[-6.275694,57.016528],[-6.273034,57.016467],[-6.267294,57.017162],[-6.264288,57.016828],[-6.26002,57.01692],[-6.247533,57.020115],[-6.247117,57.021811],[-6.249663,57.024827],[-6.250978,57.028028],[-6.251685,57.029093],[-6.254547,57.031257],[-6.254573,57.032924],[-6.255626,57.033046],[-6.25872,57.034501],[-6.260208,57.036761],[-6.263449,57.037114],[-6.266502,57.038422],[-6.266829,57.03904],[-6.268756,57.039303],[-6.270313,57.040216],[-6.273102,57.040656],[-6.275482,57.04048],[-6.279108,57.039587],[-6.279837,57.040115],[-6.281938,57.039594],[-6.283253,57.039774],[-6.285987,57.040804],[-6.289413,57.042611],[-6.289673,57.043223],[-6.291754,57.04374],[-6.291906,57.045484],[-6.292977,57.046401],[-6.294167,57.048267],[-6.295399,57.048867],[-6.299055,57.047519],[-6.301139,57.047703],[-6.301906,57.049485],[-6.303728,57.050038],[-6.304919,57.049561],[-6.307372,57.050155],[-6.307189,57.050787],[-6.309048,57.052296],[-6.30977,57.053544],[-6.310115,57.055376],[-6.312589,57.055003],[-6.314768,57.054087],[-6.315704,57.054477],[-6.317715,57.054309],[-6.319726,57.05571],[-6.319904,57.056522],[-6.321787,57.056677],[-6.323721,57.055572],[-6.327171,57.057062],[-6.325877,57.058568],[-6.327341,57.059614],[-6.329967,57.060374]]],[[[-6.495308,57.054039],[-6.496075,57.054848],[-6.498139,57.055051],[-6.501897,57.051072],[-6.504877,57.051014],[-6.506028,57.05261],[-6.505656,57.053963],[-6.508844,57.054388],[-6.510593,57.052211],[-6.513948,57.052045],[-6.515232,57.049737],[-6.514827,57.048828],[-6.513192,57.04834],[-6.513955,57.045717],[-6.511255,57.045433],[-6.511217,57.044129],[-6.508453,57.046069],[-6.506997,57.046589],[-6.503901,57.046529],[-6.501442,57.047315],[-6.500239,57.046176],[-6.496962,57.045226],[-6.494868,57.04529],[-6.494265,57.045968],[-6.49223,57.046469],[-6.490762,57.047434],[-6.49081,57.048647],[-6.489721,57.049059],[-6.487762,57.048554],[-6.485336,57.049028],[-6.486376,57.047601],[-6.485081,57.046649],[-6.484659,57.044726],[-6.480573,57.043815],[-6.477683,57.044962],[-6.476374,57.044717],[-6.47311,57.045769],[-6.470978,57.044168],[-6.467962,57.042932],[-6.46708,57.044474],[-6.465399,57.044291],[-6.466004,57.045765],[-6.465293,57.04711],[-6.466681,57.048702],[-6.469548,57.049904],[-6.473946,57.049553],[-6.475551,57.050139],[-6.476423,57.048475],[-6.477446,57.048195],[-6.479338,57.050133],[-6.484595,57.05048],[-6.487133,57.051692],[-6.490512,57.052255],[-6.492084,57.053926],[-6.495308,57.054039]]],[[[-6.507056,57.071268],[-6.511729,57.071333],[-6.513481,57.070528],[-6.519238,57.070207],[-6.522196,57.069484],[-6.523794,57.068433],[-6.526842,57.068039],[-6.529138,57.067241],[-6.532279,57.067878],[-6.533297,57.068844],[-6.537121,57.069663],[-6.540425,57.068869],[-6.541848,57.06916],[-6.544787,57.06835],[-6.546322,57.068542],[-6.547579,57.067885],[-6.550782,57.067813],[-6.55274,57.068637],[-6.55267,57.06921],[-6.556683,57.069685],[-6.555001,57.066603],[-6.557695,57.065286],[-6.55799,57.063791],[-6.560531,57.063707],[-6.560687,57.062892],[-6.564945,57.06315],[-6.565707,57.062434],[-6.567395,57.063002],[-6.577779,57.061386],[-6.580154,57.061699],[-6.581684,57.061521],[-6.583583,57.060728],[-6.58665,57.060359],[-6.589231,57.060741],[-6.591373,57.060433],[-6.592516,57.059469],[-6.594622,57.059477],[-6.595589,57.05829],[-6.598751,57.057688],[-6.600542,57.05822],[-6.602868,57.057878],[-6.60335,57.056304],[-6.60758,57.053544],[-6.609392,57.053293],[-6.609301,57.052118],[-6.61057,57.051635],[-6.608728,57.05016],[-6.609575,57.049077],[-6.608191,57.048431],[-6.607546,57.046759],[-6.603514,57.045252],[-6.602176,57.043377],[-6.601097,57.043988],[-6.59731,57.043461],[-6.595334,57.04183],[-6.590959,57.042254],[-6.588858,57.043097],[-6.585483,57.043765],[-6.581561,57.045546],[-6.578885,57.044255],[-6.577445,57.04509],[-6.572836,57.045348],[-6.572587,57.044488],[-6.568184,57.045464],[-6.568098,57.046781],[-6.565442,57.048201],[-6.564011,57.04837],[-6.561502,57.049847],[-6.559025,57.050508],[-6.557959,57.051437],[-6.556438,57.050607],[-6.555254,57.051113],[-6.555049,57.051998],[-6.553033,57.052184],[-6.551718,57.054171],[-6.552615,57.056714],[-6.550207,57.057202],[-6.549692,57.05812],[-6.546039,57.058015],[-6.54558,57.057299],[-6.539084,57.056824],[-6.53825,57.055474],[-6.534969,57.056042],[-6.533954,57.05679],[-6.531863,57.05602],[-6.529121,57.056479],[-6.527539,57.056235],[-6.526713,57.054741],[-6.524721,57.05573],[-6.520678,57.05567],[-6.519808,57.05517],[-6.517292,57.056804],[-6.515113,57.057076],[-6.513405,57.056535],[-6.513853,57.055534],[-6.511496,57.054346],[-6.50938,57.054457],[-6.509741,57.055727],[-6.508555,57.056697],[-6.506896,57.056221],[-6.504633,57.056618],[-6.504182,57.056094],[-6.498113,57.058116],[-6.496862,57.059101],[-6.495233,57.059618],[-6.494559,57.058352],[-6.492203,57.057497],[-6.491008,57.056078],[-6.488263,57.055854],[-6.488207,57.057357],[-6.489918,57.058151],[-6.491217,57.059241],[-6.490426,57.059796],[-6.488422,57.06002],[-6.488078,57.061886],[-6.486376,57.062828],[-6.48552,57.064757],[-6.486082,57.066675],[-6.487825,57.067638],[-6.493208,57.068731],[-6.497682,57.068457],[-6.499289,57.068161],[-6.501121,57.068626],[-6.502354,57.069742],[-6.505077,57.070408],[-6.507056,57.071268]]],[[[-5.583546,57.114226],[-5.582619,57.115147],[-5.584746,57.115315],[-5.585188,57.114197],[-5.583546,57.114226]]],[[[-5.607701,57.141098],[-5.610027,57.141105],[-5.610737,57.140503],[-5.608777,57.139974],[-5.606935,57.140093],[-5.607701,57.141098]]],[[[-6.094701,57.126699],[-6.095814,57.126524],[-6.095623,57.124718],[-6.094913,57.123756],[-6.092978,57.123604],[-6.092375,57.124658],[-6.094429,57.125886],[-6.094701,57.126699]]],[[[-5.616376,57.144653],[-5.621507,57.143187],[-5.619164,57.141674],[-5.613959,57.143352],[-5.616376,57.144653]]],[[[-5.780262,57.143748],[-5.783441,57.143944],[-5.784136,57.142979],[-5.781141,57.143123],[-5.780262,57.143748]]],[[[-5.975931,57.139258],[-5.976554,57.139957],[-5.979269,57.139005],[-5.97819,57.13804],[-5.975931,57.139258]]],[[[-5.787751,57.150507],[-5.789377,57.150509],[-5.791002,57.149863],[-5.791938,57.147458],[-5.793061,57.146805],[-5.793092,57.145444],[-5.790768,57.144127],[-5.789868,57.144718],[-5.787212,57.144316],[-5.783535,57.144863],[-5.782239,57.146907],[-5.78345,57.147351],[-5.782697,57.148804],[-5.7831,57.149834],[-5.787751,57.150507]]],[[[-5.702096,57.166554],[-5.701927,57.167588],[-5.705097,57.167692],[-5.705403,57.166856],[-5.704507,57.165835],[-5.702096,57.166554]]],[[[-6.205683,57.165998],[-6.210102,57.165125],[-6.213167,57.16522],[-6.215359,57.164845],[-6.218211,57.162424],[-6.217615,57.160102],[-6.21789,57.158883],[-6.221054,57.157243],[-6.215829,57.155031],[-6.215999,57.154351],[-6.214742,57.153337],[-6.216207,57.152545],[-6.2171,57.153774],[-6.22159,57.156137],[-6.223421,57.157541],[-6.230157,57.157471],[-6.232219,57.156403],[-6.235478,57.155812],[-6.237431,57.156033],[-6.239528,57.155122],[-6.241757,57.15291],[-6.243618,57.152834],[-6.246715,57.151631],[-6.250735,57.151554],[-6.25233,57.150173],[-6.255956,57.149546],[-6.255352,57.146954],[-6.252661,57.14276],[-6.25228,57.141604],[-6.250509,57.14059],[-6.250402,57.139438],[-6.248989,57.137799],[-6.24574,57.136007],[-6.245071,57.134929],[-6.243378,57.135741],[-6.241029,57.135093],[-6.240444,57.133952],[-6.239283,57.133785],[-6.238944,57.132699],[-6.237455,57.131756],[-6.235167,57.131271],[-6.233082,57.130172],[-6.23049,57.129855],[-6.22966,57.129393],[-6.227033,57.129554],[-6.2261,57.128772],[-6.224346,57.129339],[-6.222556,57.129017],[-6.219811,57.130247],[-6.217991,57.129949],[-6.213301,57.131973],[-6.212185,57.133791],[-6.210707,57.133809],[-6.206493,57.135363],[-6.204836,57.135481],[-6.2037,57.136113],[-6.203126,57.138489],[-6.204189,57.139977],[-6.205239,57.140198],[-6.206736,57.142158],[-6.207596,57.142372],[-6.209185,57.143843],[-6.211597,57.144751],[-6.212449,57.147438],[-6.210247,57.149171],[-6.210905,57.150233],[-6.208683,57.150843],[-6.207709,57.151514],[-6.206115,57.150304],[-6.20348,57.149466],[-6.201675,57.14807],[-6.198713,57.147989],[-6.195581,57.148454],[-6.190948,57.148596],[-6.190494,57.149339],[-6.188095,57.149042],[-6.185726,57.149971],[-6.184813,57.151265],[-6.182253,57.153203],[-6.183286,57.154068],[-6.182211,57.155835],[-6.179914,57.156811],[-6.179877,57.15817],[-6.180896,57.160011],[-6.182442,57.161092],[-6.183419,57.162777],[-6.185555,57.162935],[-6.188053,57.164093],[-6.192538,57.164761],[-6.196158,57.164703],[-6.198352,57.163613],[-6.200676,57.164839],[-6.205683,57.165998]]],[[[-5.896033,57.175139],[-5.894019,57.175959],[-5.894837,57.176641],[-5.896921,57.175741],[-5.898229,57.173778],[-5.897696,57.172567],[-5.894408,57.172629],[-5.894054,57.1721],[-5.891195,57.171825],[-5.890242,57.172839],[-5.890938,57.174498],[-5.893658,57.175458],[-5.896033,57.175139]]],[[[-6.161577,57.196661],[-6.162942,57.197025],[-6.164235,57.196123],[-6.162255,57.19546],[-6.161577,57.196661]]],[[[-5.572389,57.266482],[-5.572594,57.267321],[-5.574438,57.268882],[-5.576892,57.269033],[-5.580635,57.267933],[-5.580982,57.266125],[-5.578801,57.264847],[-5.57842,57.26306],[-5.575737,57.263797],[-5.572802,57.263724],[-5.573106,57.265414],[-5.572389,57.266482]]],[[[-5.739983,57.280196],[-5.741575,57.279448],[-5.742351,57.278346],[-5.740143,57.277715],[-5.739384,57.279446],[-5.739983,57.280196]]],[[[-5.918907,57.274068],[-5.919153,57.275743],[-5.920766,57.276415],[-5.921332,57.275336],[-5.920264,57.273958],[-5.918907,57.274068]]],[[[-5.856114,57.282725],[-5.857189,57.28244],[-5.857812,57.281414],[-5.861326,57.281045],[-5.864393,57.278874],[-5.868346,57.278338],[-5.870971,57.275982],[-5.870871,57.275347],[-5.868716,57.271979],[-5.866054,57.271054],[-5.865257,57.270103],[-5.865582,57.269086],[-5.862194,57.269455],[-5.859556,57.269384],[-5.856977,57.268852],[-5.853099,57.271443],[-5.849302,57.27156],[-5.849253,57.272357],[-5.847559,57.274257],[-5.852065,57.278214],[-5.853026,57.280266],[-5.854098,57.280912],[-5.854246,57.282243],[-5.856114,57.282725]]],[[[-5.738172,57.289498],[-5.739965,57.288109],[-5.738445,57.285898],[-5.736459,57.286038],[-5.735976,57.287009],[-5.73705,57.28736],[-5.736154,57.288353],[-5.736614,57.289084],[-5.738172,57.289498]]],[[[-5.733172,57.298089],[-5.731931,57.298239],[-5.730693,57.299544],[-5.732399,57.29997],[-5.734073,57.299428],[-5.733172,57.298089]]],[[[-5.730974,57.300921],[-5.731456,57.301462],[-5.733672,57.301787],[-5.73483,57.301286],[-5.733208,57.300508],[-5.730974,57.300921]]],[[[-5.889096,57.306456],[-5.887067,57.306825],[-5.884475,57.308007],[-5.883353,57.309727],[-5.885323,57.311335],[-5.88694,57.311599],[-5.890323,57.313599],[-5.892382,57.3138],[-5.893571,57.31561],[-5.896595,57.314586],[-5.895964,57.312789],[-5.896502,57.312224],[-5.895084,57.309818],[-5.894883,57.307288],[-5.893172,57.305952],[-5.891063,57.305573],[-5.889096,57.306456]]],[[[-6.001126,57.325322],[-6.003992,57.32439],[-6.006086,57.323168],[-6.004957,57.320893],[-6.005071,57.319801],[-6.006862,57.319465],[-6.009333,57.32025],[-6.010847,57.319963],[-6.013617,57.320594],[-6.016235,57.320366],[-6.017707,57.31817],[-6.018442,57.315624],[-6.019941,57.314129],[-6.020555,57.30964],[-6.021795,57.307528],[-6.022896,57.304687],[-6.019043,57.30173],[-6.018879,57.300535],[-6.017151,57.298554],[-6.01237,57.295618],[-6.010629,57.293893],[-6.006589,57.291028],[-6.006302,57.290075],[-6.007306,57.288618],[-6.004052,57.288852],[-6.000066,57.287091],[-5.996361,57.286309],[-5.99456,57.285018],[-5.99152,57.281635],[-5.988498,57.280099],[-5.985447,57.276244],[-5.982862,57.27546],[-5.98171,57.274218],[-5.980358,57.273838],[-5.977858,57.274825],[-5.974627,57.275108],[-5.96974,57.274431],[-5.967133,57.2745],[-5.966146,57.27405],[-5.962677,57.27366],[-5.957537,57.273867],[-5.956686,57.274141],[-5.954449,57.273632],[-5.95151,57.274709],[-5.944759,57.274755],[-5.939153,57.276972],[-5.937854,57.27802],[-5.935033,57.278423],[-5.934501,57.279425],[-5.935809,57.280629],[-5.934204,57.281027],[-5.934085,57.281848],[-5.932294,57.282356],[-5.930851,57.281185],[-5.928986,57.280946],[-5.928659,57.281662],[-5.930618,57.28261],[-5.930551,57.283432],[-5.928009,57.28345],[-5.926282,57.282778],[-5.925645,57.283529],[-5.925926,57.284983],[-5.92758,57.28868],[-5.927704,57.290324],[-5.925729,57.292126],[-5.922288,57.293654],[-5.921976,57.295251],[-5.920255,57.296941],[-5.920583,57.298149],[-5.919848,57.300141],[-5.920481,57.300782],[-5.921036,57.303026],[-5.923259,57.304634],[-5.92467,57.307116],[-5.926308,57.308248],[-5.928455,57.309026],[-5.93032,57.310541],[-5.932176,57.311121],[-5.93419,57.311148],[-5.937911,57.312614],[-5.938083,57.313617],[-5.941217,57.315086],[-5.944315,57.315695],[-5.945597,57.316495],[-5.947081,57.316692],[-5.948398,57.31813],[-5.949484,57.31853],[-5.951261,57.318093],[-5.951383,57.317213],[-5.955594,57.31828],[-5.956473,57.319035],[-5.959051,57.319363],[-5.959761,57.32024],[-5.961697,57.320318],[-5.961426,57.3215],[-5.964825,57.32066],[-5.965927,57.319627],[-5.968719,57.319467],[-5.971105,57.319706],[-5.973289,57.320617],[-5.977132,57.32157],[-5.977305,57.322554],[-5.978527,57.32394],[-5.980419,57.323453],[-5.981963,57.324434],[-5.985257,57.32285],[-5.98646,57.323293],[-5.986919,57.324227],[-5.98929,57.324098],[-5.990653,57.323097],[-5.994465,57.323529],[-5.996169,57.324761],[-5.999374,57.325342],[-6.001126,57.325322]]],[[[-5.854329,57.357303],[-5.855864,57.357214],[-5.857336,57.355036],[-5.859135,57.354504],[-5.859172,57.353199],[-5.857599,57.352155],[-5.852368,57.350342],[-5.851157,57.350604],[-5.852078,57.348135],[-5.853787,57.347934],[-5.851119,57.346123],[-5.851746,57.345524],[-5.849616,57.34313],[-5.849171,57.341817],[-5.849557,57.340745],[-5.847619,57.339855],[-5.847483,57.33866],[-5.845649,57.337398],[-5.845914,57.336361],[-5.844442,57.334769],[-5.843143,57.334108],[-5.841,57.334443],[-5.840593,57.335961],[-5.837588,57.333055],[-5.834546,57.332586],[-5.831932,57.332787],[-5.830848,57.333386],[-5.826642,57.332997],[-5.825297,57.333969],[-5.822263,57.33461],[-5.819424,57.335795],[-5.819733,57.337056],[-5.818627,57.338092],[-5.820817,57.342447],[-5.824636,57.34472],[-5.828441,57.345391],[-5.829619,57.348237],[-5.831129,57.348757],[-5.833893,57.350777],[-5.835203,57.351282],[-5.837869,57.351581],[-5.839531,57.351328],[-5.841422,57.352314],[-5.843244,57.350221],[-5.842839,57.349006],[-5.843246,57.347407],[-5.842231,57.344466],[-5.84109,57.343499],[-5.841702,57.342586],[-5.841205,57.340537],[-5.840263,57.340193],[-5.840016,57.338474],[-5.84124,57.338248],[-5.841832,57.339376],[-5.842098,57.342164],[-5.843418,57.34341],[-5.843023,57.346389],[-5.844162,57.348692],[-5.848926,57.351297],[-5.848334,57.352322],[-5.850291,57.352815],[-5.849994,57.353815],[-5.852015,57.35466],[-5.85179,57.355849],[-5.852429,57.356711],[-5.854329,57.357303]]],[[[-6.462283,57.337959],[-6.46371,57.337036],[-6.466152,57.33688],[-6.467939,57.336049],[-6.468442,57.33519],[-6.470159,57.334607],[-6.46968,57.333406],[-6.470451,57.332227],[-6.467059,57.332573],[-6.465842,57.333641],[-6.461396,57.33572],[-6.457192,57.336161],[-6.45764,57.337458],[-6.458929,57.337768],[-6.461052,57.337274],[-6.462283,57.337959]]],[[[-6.490278,57.344729],[-6.493728,57.345297],[-6.496417,57.344836],[-6.500909,57.342872],[-6.502623,57.342811],[-6.504262,57.341861],[-6.502118,57.340926],[-6.501664,57.34021],[-6.502661,57.33905],[-6.506603,57.339587],[-6.510027,57.338479],[-6.511937,57.337309],[-6.511549,57.336046],[-6.512218,57.335127],[-6.514868,57.33375],[-6.51356,57.332655],[-6.513216,57.331322],[-6.511322,57.331226],[-6.507963,57.331898],[-6.506313,57.332753],[-6.503939,57.331975],[-6.502729,57.332684],[-6.499673,57.332519],[-6.501412,57.331611],[-6.499514,57.329689],[-6.49753,57.329547],[-6.495141,57.33041],[-6.492464,57.330412],[-6.491949,57.331847],[-6.490034,57.333048],[-6.489675,57.335692],[-6.488136,57.336705],[-6.485011,57.341485],[-6.485458,57.342287],[-6.487799,57.344497],[-6.490278,57.344729]]],[[[-5.64578,57.370947],[-5.647232,57.37167],[-5.648621,57.370834],[-5.646615,57.370492],[-5.64578,57.370947]]],[[[-6.670658,57.339056],[-6.670565,57.337288],[-6.672658,57.337003],[-6.670946,57.335646],[-6.671163,57.334603],[-6.66968,57.333997],[-6.667823,57.334237],[-6.670294,57.33536],[-6.66868,57.336728],[-6.670414,57.337778],[-6.670658,57.339056]]],[[[-5.64728,57.377764],[-5.649724,57.37732],[-5.651756,57.377418],[-5.652417,57.375786],[-5.650872,57.374221],[-5.649171,57.374185],[-5.649916,57.375822],[-5.648173,57.376624],[-5.64728,57.377764]]],[[[-5.834594,57.372779],[-5.834069,57.374364],[-5.834768,57.375395],[-5.836888,57.375294],[-5.837029,57.374256],[-5.839212,57.373969],[-5.840566,57.37235],[-5.83542,57.372003],[-5.834594,57.372779]]],[[[-6.488094,57.358877],[-6.488735,57.35956],[-6.490928,57.36021],[-6.492359,57.361158],[-6.493275,57.362591],[-6.495095,57.36352],[-6.497741,57.363313],[-6.497677,57.36157],[-6.498184,57.360473],[-6.496394,57.357276],[-6.493941,57.355727],[-6.492893,57.356138],[-6.493058,57.357625],[-6.49162,57.358041],[-6.488676,57.358056],[-6.488094,57.358877]]],[[[-6.526368,57.3668],[-6.527216,57.366854],[-6.528777,57.364064],[-6.531721,57.363036],[-6.530942,57.360433],[-6.531696,57.358859],[-6.527094,57.359128],[-6.525967,57.360779],[-6.522108,57.359775],[-6.522781,57.362076],[-6.521826,57.364458],[-6.523133,57.365],[-6.522704,57.366244],[-6.525539,57.365746],[-6.526368,57.3668]]],[[[-5.82799,57.40602],[-5.829033,57.405519],[-5.830586,57.402822],[-5.830341,57.401098],[-5.828867,57.400288],[-5.826778,57.399958],[-5.825286,57.402423],[-5.82515,57.404154],[-5.82799,57.40602]]],[[[-6.624024,57.446406],[-6.628505,57.447145],[-6.62626,57.445222],[-6.626858,57.444017],[-6.625362,57.443073],[-6.624778,57.441422],[-6.623102,57.441025],[-6.621988,57.440067],[-6.61937,57.440672],[-6.620122,57.441674],[-6.623871,57.444473],[-6.621513,57.443768],[-6.620105,57.444504],[-6.624024,57.446406]]],[[[-6.629067,57.446837],[-6.631181,57.448252],[-6.634141,57.449024],[-6.635581,57.448207],[-6.633562,57.44735],[-6.634853,57.446349],[-6.633215,57.445141],[-6.632022,57.445406],[-6.631262,57.444278],[-6.629314,57.44484],[-6.629067,57.446837]]],[[[-6.606428,57.453865],[-6.60627,57.452616],[-6.608245,57.453215],[-6.610293,57.452764],[-6.610221,57.451788],[-6.607512,57.451015],[-6.606178,57.451027],[-6.604517,57.449294],[-6.602211,57.448344],[-6.600722,57.448641],[-6.59947,57.450423],[-6.600037,57.450951],[-6.603109,57.451567],[-6.601451,57.453368],[-6.602767,57.453815],[-6.606428,57.453865]]],[[[-6.642611,57.452262],[-6.644537,57.453384],[-6.64609,57.452461],[-6.646144,57.451383],[-6.644583,57.451],[-6.643316,57.451346],[-6.640981,57.450387],[-6.639843,57.451297],[-6.642611,57.452262]]],[[[-6.607211,57.457502],[-6.609283,57.457125],[-6.607209,57.456162],[-6.607211,57.457502]]],[[[-6.617185,57.457977],[-6.620475,57.457011],[-6.619468,57.456634],[-6.616639,57.456765],[-6.617185,57.457977]]],[[[-6.024201,57.496268],[-6.024027,57.494848],[-6.026146,57.494753],[-6.024838,57.492502],[-6.027359,57.492044],[-6.029711,57.493079],[-6.032724,57.492389],[-6.034101,57.489666],[-6.032893,57.484548],[-6.031418,57.482599],[-6.031817,57.481451],[-6.031105,57.479844],[-6.029605,57.478349],[-6.027571,57.478446],[-6.0255,57.47639],[-6.023743,57.475903],[-6.022423,57.479074],[-6.020873,57.479856],[-6.018597,57.484047],[-6.018117,57.487735],[-6.017653,57.488404],[-6.018386,57.489442],[-6.019728,57.489999],[-6.01832,57.491016],[-6.019697,57.492145],[-6.021608,57.494413],[-6.023741,57.494826],[-6.024201,57.496268]]],[[[-5.992794,57.506115],[-5.997375,57.506532],[-5.997879,57.50594],[-5.997158,57.504704],[-5.994336,57.502798],[-5.994458,57.50075],[-5.992776,57.499687],[-5.99404,57.499348],[-5.994113,57.498098],[-5.997534,57.495472],[-5.996284,57.494504],[-5.992863,57.494302],[-5.99207,57.493613],[-5.995502,57.491481],[-5.999391,57.490323],[-6.004626,57.490323],[-6.005805,57.489427],[-6.007591,57.488885],[-6.01007,57.489035],[-6.011284,57.489599],[-6.013871,57.486774],[-6.015763,57.48523],[-6.015878,57.483922],[-6.014968,57.483236],[-6.015464,57.481751],[-6.019729,57.479776],[-6.020749,57.478803],[-6.021001,57.476318],[-6.019422,57.473685],[-6.019421,57.472316],[-6.020909,57.47169],[-6.024369,57.471431],[-6.025895,57.47074],[-6.028894,57.470158],[-6.029028,57.468874],[-6.026908,57.468118],[-6.0236,57.468012],[-6.021736,57.468355],[-6.020219,57.467765],[-6.013565,57.466138],[-6.011315,57.465095],[-6.011647,57.462954],[-6.014571,57.460788],[-6.017086,57.459339],[-6.017436,57.458344],[-6.018895,57.458226],[-6.01783,57.45461],[-6.02238,57.456092],[-6.025699,57.455168],[-6.027193,57.455709],[-6.027847,57.457405],[-6.030233,57.457787],[-6.030802,57.459392],[-6.032667,57.459512],[-6.034168,57.458601],[-6.035843,57.459411],[-6.036485,57.458653],[-6.038724,57.458531],[-6.041883,57.457756],[-6.04391,57.45926],[-6.046103,57.459108],[-6.047963,57.460384],[-6.049475,57.460623],[-6.051784,57.460234],[-6.053816,57.461778],[-6.056663,57.459503],[-6.056294,57.45825],[-6.058808,57.458353],[-6.060178,57.457617],[-6.059868,57.455882],[-6.062903,57.455267],[-6.064113,57.454144],[-6.062726,57.453452],[-6.064223,57.451959],[-6.064238,57.449712],[-6.066053,57.448866],[-6.066924,57.449117],[-6.068813,57.448179],[-6.069642,57.447087],[-6.07109,57.447364],[-6.071908,57.446463],[-6.071594,57.444618],[-6.073843,57.444581],[-6.075385,57.441299],[-6.076429,57.44109],[-6.077436,57.439948],[-6.07666,57.437629],[-6.078,57.43746],[-6.079295,57.436291],[-6.079115,57.435338],[-6.080411,57.434554],[-6.079225,57.432286],[-6.080608,57.430861],[-6.0814,57.428942],[-6.080794,57.427892],[-6.082022,57.427245],[-6.081873,57.425015],[-6.083233,57.424054],[-6.082828,57.422588],[-6.083343,57.421753],[-6.084861,57.421321],[-6.085069,57.420123],[-6.084148,57.418512],[-6.085109,57.41742],[-6.084691,57.415163],[-6.083095,57.414073],[-6.083471,57.412968],[-6.082131,57.411109],[-6.081953,57.409663],[-6.080622,57.408034],[-6.081376,57.407695],[-6.079387,57.405025],[-6.081873,57.403857],[-6.08263,57.402879],[-6.08283,57.401456],[-6.079917,57.396093],[-6.076454,57.393004],[-6.078239,57.390413],[-6.075646,57.389034],[-6.077486,57.384658],[-6.074454,57.382984],[-6.074331,57.378874],[-6.077295,57.372996],[-6.079517,57.371726],[-6.0819,57.371164],[-6.082142,57.369854],[-6.083151,57.368381],[-6.08485,57.368284],[-6.08504,57.366903],[-6.081927,57.366505],[-6.082476,57.364814],[-6.080948,57.364841],[-6.081207,57.361647],[-6.083074,57.360908],[-6.080999,57.360149],[-6.080495,57.358919],[-6.081702,57.356972],[-6.081339,57.355481],[-6.083602,57.354519],[-6.085728,57.354856],[-6.085819,57.353869],[-6.088033,57.350893],[-6.087217,57.350257],[-6.084882,57.351556],[-6.082846,57.352251],[-6.082177,57.350636],[-6.08054,57.351174],[-6.076963,57.350792],[-6.074624,57.348246],[-6.072792,57.347185],[-6.069569,57.34674],[-6.068076,57.345217],[-6.070898,57.341025],[-6.067866,57.337963],[-6.067256,57.335535],[-6.067777,57.334621],[-6.067001,57.333673],[-6.064541,57.3322],[-6.053228,57.329591],[-6.050269,57.328382],[-6.048958,57.328928],[-6.042355,57.329361],[-6.038888,57.330035],[-6.035573,57.331562],[-6.032994,57.331899],[-6.031054,57.333296],[-6.030241,57.332838],[-6.026082,57.332662],[-6.021136,57.333339],[-6.017315,57.337573],[-6.016304,57.339629],[-6.013915,57.341891],[-6.008086,57.346007],[-6.000509,57.350043],[-5.997409,57.352358],[-5.994688,57.354872],[-5.99277,57.358188],[-5.992226,57.362063],[-5.99284,57.363343],[-5.992847,57.368383],[-5.994155,57.369159],[-5.994272,57.37077],[-5.998395,57.369501],[-6.000334,57.369813],[-6.001418,57.370443],[-6.003513,57.372935],[-6.003816,57.374872],[-6.005633,57.375435],[-6.010842,57.378542],[-6.011917,57.380382],[-6.014569,57.383319],[-6.014421,57.384245],[-6.016137,57.386083],[-6.016917,57.388108],[-6.018654,57.388835],[-6.019259,57.391397],[-6.018545,57.393843],[-6.018971,57.395376],[-6.017849,57.396387],[-6.018459,57.39777],[-6.018195,57.399083],[-6.019073,57.400179],[-6.019907,57.403079],[-6.019406,57.405419],[-6.020939,57.409439],[-6.020223,57.410581],[-6.020557,57.413021],[-6.022172,57.415055],[-6.022354,57.417549],[-6.024499,57.419171],[-6.024096,57.421266],[-6.024896,57.421348],[-6.029203,57.426331],[-6.031722,57.428017],[-6.032346,57.429445],[-6.031573,57.431583],[-6.032364,57.434291],[-6.02967,57.436931],[-6.027317,57.438279],[-6.027335,57.439658],[-6.025924,57.440315],[-6.025751,57.442384],[-6.021639,57.444341],[-6.014544,57.444891],[-6.013035,57.447093],[-6.011549,57.447311],[-6.009496,57.44828],[-6.008896,57.449596],[-6.009176,57.450615],[-6.004755,57.450832],[-6.004361,57.451806],[-6.002835,57.45258],[-6.002276,57.455083],[-5.998831,57.455615],[-5.999427,57.456257],[-5.999273,57.458285],[-5.997092,57.458404],[-5.995743,57.459642],[-5.994426,57.463699],[-5.991645,57.465815],[-5.991227,57.467869],[-5.990138,57.467908],[-5.989931,57.470828],[-5.989194,57.471108],[-5.98957,57.472408],[-5.98785,57.473241],[-5.98686,57.475111],[-5.985433,57.475723],[-5.986925,57.477842],[-5.98596,57.478183],[-5.985412,57.479356],[-5.983733,57.480488],[-5.983263,57.482076],[-5.984606,57.484516],[-5.982661,57.485355],[-5.982744,57.486962],[-5.981034,57.488351],[-5.982313,57.490972],[-5.981909,57.491628],[-5.979304,57.492933],[-5.980524,57.493479],[-5.980552,57.494656],[-5.982108,57.495677],[-5.984621,57.495903],[-5.984702,57.497335],[-5.98371,57.49934],[-5.984557,57.500289],[-5.98617,57.500602],[-5.986783,57.501324],[-5.986537,57.502892],[-5.988375,57.502897],[-5.990268,57.504329],[-5.989743,57.505061],[-5.992794,57.506115]]],[[[-5.983655,57.514902],[-5.984237,57.514569],[-5.98265,57.512754],[-5.979964,57.511399],[-5.977051,57.511649],[-5.97582,57.512231],[-5.975544,57.513255],[-5.980268,57.514568],[-5.983655,57.514902]]],[[[-6.002791,57.516057],[-6.003806,57.516345],[-6.005288,57.515538],[-6.006686,57.515943],[-6.008986,57.515577],[-6.010073,57.514847],[-6.013562,57.515027],[-6.013443,57.513891],[-6.010798,57.512644],[-6.006106,57.512711],[-6.004815,57.511223],[-6.005953,57.510333],[-6.004483,57.5089],[-6.001629,57.508528],[-6.000892,57.507751],[-5.997598,57.508107],[-5.997301,57.507299],[-5.993916,57.506444],[-5.993261,57.508393],[-5.993865,57.509408],[-5.997564,57.512604],[-5.999664,57.513316],[-6.000053,57.514809],[-6.001497,57.516009],[-6.002791,57.516057]]],[[[-5.656671,57.523896],[-5.657654,57.526502],[-5.658533,57.526948],[-5.662073,57.52747],[-5.660913,57.525128],[-5.659437,57.524615],[-5.658039,57.523441],[-5.656671,57.523896]]],[[[-5.686126,57.531277],[-5.687318,57.532191],[-5.688672,57.531908],[-5.686865,57.530816],[-5.686126,57.531277]]],[[[-6.00215,57.534606],[-6.003426,57.533895],[-6.00402,57.532757],[-6.001742,57.531575],[-6.000597,57.531384],[-5.998571,57.532223],[-5.998653,57.532905],[-6.00215,57.534606]]],[[[-6.41339,57.527964],[-6.414638,57.528401],[-6.416048,57.5281],[-6.417225,57.527187],[-6.415784,57.524746],[-6.413796,57.525238],[-6.414087,57.527022],[-6.41339,57.527964]]],[[[-6.403846,57.531927],[-6.405959,57.532749],[-6.40596,57.530608],[-6.403846,57.531927]]],[[[-6.64516,57.521864],[-6.646348,57.52299],[-6.646002,57.523619],[-6.647892,57.5252],[-6.649039,57.525279],[-6.65027,57.523785],[-6.648949,57.523524],[-6.649133,57.521952],[-6.651171,57.521346],[-6.6527,57.521893],[-6.653208,57.519229],[-6.651728,57.517853],[-6.652978,57.51684],[-6.652254,57.516205],[-6.649365,57.515314],[-6.648772,57.514135],[-6.650406,57.511812],[-6.647892,57.51123],[-6.643844,57.512518],[-6.640178,57.511623],[-6.637909,57.511787],[-6.642393,57.515629],[-6.643561,57.515879],[-6.645868,57.519095],[-6.64516,57.521864]]],[[[-6.63833,57.522062],[-6.639049,57.52482],[-6.640253,57.526529],[-6.642545,57.52779],[-6.641385,57.524653],[-6.641096,57.522055],[-6.639291,57.519499],[-6.63833,57.522062]]],[[[-6.636141,57.52812],[-6.636652,57.528978],[-6.639569,57.529892],[-6.63978,57.528854],[-6.638323,57.527657],[-6.636141,57.52812]]],[[[-5.750862,57.558536],[-5.750058,57.559844],[-5.751143,57.560877],[-5.753466,57.560619],[-5.753828,57.559502],[-5.750862,57.558536]]],[[[-3.798771,57.621892],[-3.800978,57.621664],[-3.807668,57.619877],[-3.815129,57.617109],[-3.82003,57.614595],[-3.824607,57.611616],[-3.83377,57.603432],[-3.830983,57.604355],[-3.828428,57.606216],[-3.826648,57.606686],[-3.8249,57.608612],[-3.823377,57.608739],[-3.822131,57.610361],[-3.819921,57.611478],[-3.819526,57.612332],[-3.817038,57.61258],[-3.815625,57.61346],[-3.81387,57.61394],[-3.810402,57.615638],[-3.80684,57.618453],[-3.805233,57.61778],[-3.804572,57.619192],[-3.798771,57.621892]]],[[[-5.96971,57.583426],[-5.971113,57.583706],[-5.972928,57.582702],[-5.972984,57.580527],[-5.969442,57.580584],[-5.970038,57.578758],[-5.967913,57.579072],[-5.9672,57.577989],[-5.965222,57.578577],[-5.963857,57.577955],[-5.96607,57.575453],[-5.964865,57.573144],[-5.966232,57.571869],[-5.96755,57.572138],[-5.968403,57.571131],[-5.971879,57.573085],[-5.973293,57.573157],[-5.973475,57.574977],[-5.975504,57.575628],[-5.975604,57.576465],[-5.977714,57.57648],[-5.978688,57.575132],[-5.97762,57.574235],[-5.976752,57.572495],[-5.97553,57.572192],[-5.975047,57.571133],[-5.977141,57.571],[-5.976998,57.571989],[-5.978387,57.57337],[-5.980895,57.575026],[-5.982209,57.575488],[-5.983352,57.574544],[-5.982177,57.572756],[-5.983965,57.572875],[-5.986396,57.571467],[-5.988241,57.569975],[-5.987939,57.568523],[-5.985161,57.567981],[-5.986196,57.565791],[-5.984176,57.565171],[-5.984388,57.563978],[-5.985298,57.56358],[-5.98542,57.562475],[-5.987362,57.561343],[-5.985617,57.560913],[-5.98501,57.55957],[-5.9872,57.556192],[-5.985358,57.554802],[-5.984937,57.553863],[-5.983171,57.553497],[-5.98437,57.551975],[-5.982248,57.55107],[-5.979967,57.551165],[-5.978341,57.550137],[-5.977882,57.549221],[-5.980731,57.547665],[-5.979243,57.546989],[-5.981715,57.545751],[-5.981882,57.543965],[-5.985183,57.544975],[-5.986187,57.54449],[-5.987727,57.544886],[-5.989239,57.543971],[-5.991297,57.543285],[-5.994485,57.543],[-5.994137,57.544171],[-5.995855,57.543977],[-5.995646,57.54535],[-5.99923,57.545475],[-6.000421,57.544372],[-6.001111,57.542736],[-5.998217,57.54173],[-5.999241,57.540853],[-5.998921,57.540148],[-6.000864,57.539217],[-5.997741,57.537164],[-5.996063,57.537186],[-5.992752,57.535731],[-5.991023,57.536352],[-5.990895,57.538011],[-5.989779,57.539422],[-5.986075,57.539498],[-5.985477,57.539],[-5.983029,57.539397],[-5.981624,57.540381],[-5.980586,57.539685],[-5.982806,57.538725],[-5.986152,57.536147],[-5.985996,57.534641],[-5.98802,57.535346],[-5.990249,57.532951],[-5.992442,57.533451],[-5.994248,57.532981],[-5.997279,57.530354],[-5.997397,57.529303],[-5.995942,57.528144],[-5.997786,57.527452],[-5.993991,57.524452],[-5.993397,57.523684],[-5.991815,57.523581],[-5.990731,57.522766],[-5.98874,57.522977],[-5.986245,57.521707],[-5.984125,57.521199],[-5.984398,57.520633],[-5.990364,57.521163],[-5.992173,57.520674],[-5.992952,57.519769],[-5.991043,57.518593],[-5.988869,57.518194],[-5.987168,57.516845],[-5.98325,57.516398],[-5.982805,57.515842],[-5.980446,57.514891],[-5.978322,57.51449],[-5.974555,57.515962],[-5.97446,57.517921],[-5.975584,57.518654],[-5.973239,57.519176],[-5.971637,57.52085],[-5.97323,57.523274],[-5.96953,57.525751],[-5.968812,57.526682],[-5.970494,57.529155],[-5.972037,57.529498],[-5.973539,57.530714],[-5.973211,57.531461],[-5.97043,57.53172],[-5.969975,57.533218],[-5.968922,57.534065],[-5.968503,57.535975],[-5.969875,57.536827],[-5.966427,57.538728],[-5.96701,57.540765],[-5.965436,57.541206],[-5.963897,57.543205],[-5.964847,57.544327],[-5.964574,57.544965],[-5.96662,57.547013],[-5.964815,57.54974],[-5.965112,57.551062],[-5.963943,57.552384],[-5.962492,57.551886],[-5.96163,57.552956],[-5.961406,57.554357],[-5.960161,57.555291],[-5.960871,57.556977],[-5.960335,57.558351],[-5.958705,57.559207],[-5.95797,57.561604],[-5.95863,57.563287],[-5.955355,57.565179],[-5.955405,57.567408],[-5.953849,57.568486],[-5.957265,57.57136],[-5.956443,57.572496],[-5.957428,57.57393],[-5.957433,57.575553],[-5.956006,57.576949],[-5.957368,57.577079],[-5.956939,57.578131],[-5.958183,57.579414],[-5.957875,57.580503],[-5.96079,57.580142],[-5.961754,57.58262],[-5.962899,57.581761],[-5.965091,57.580901],[-5.967325,57.582813],[-5.969688,57.582227],[-5.96971,57.583426]]],[[[-6.512714,57.583047],[-6.514338,57.582912],[-6.515391,57.58148],[-6.518349,57.579751],[-6.517555,57.578947],[-6.52096,57.577384],[-6.520185,57.576908],[-6.515185,57.577193],[-6.509792,57.579203],[-6.508585,57.581407],[-6.510466,57.581189],[-6.511465,57.58243],[-6.512714,57.583047]]],[[[-6.513605,57.586109],[-6.515586,57.588178],[-6.516307,57.586925],[-6.515136,57.585896],[-6.513605,57.586109]]],[[[-6.512257,57.591374],[-6.512827,57.592801],[-6.514306,57.592501],[-6.514149,57.591238],[-6.512257,57.591374]]],[[[-6.52551,57.593633],[-6.527038,57.593073],[-6.525533,57.592265],[-6.521342,57.59103],[-6.520145,57.589351],[-6.522995,57.589037],[-6.522703,57.588099],[-6.516823,57.58701],[-6.51727,57.589665],[-6.51967,57.590845],[-6.520635,57.592081],[-6.522273,57.592049],[-6.524306,57.592642],[-6.52551,57.593633]]],[[[-6.533831,57.597701],[-6.535572,57.597211],[-6.534874,57.595244],[-6.533244,57.594466],[-6.52793,57.594432],[-6.527851,57.595415],[-6.531132,57.596606],[-6.532839,57.596792],[-6.533831,57.597701]]],[[[-6.540967,57.596751],[-6.538776,57.598454],[-6.53957,57.59972],[-6.542966,57.599809],[-6.544013,57.597132],[-6.543457,57.596567],[-6.540967,57.596751]]],[[[-6.206718,57.645567],[-6.208798,57.646582],[-6.210009,57.645592],[-6.207368,57.641764],[-6.206983,57.640608],[-6.205281,57.639599],[-6.203712,57.639881],[-6.202384,57.639489],[-6.198706,57.640988],[-6.200505,57.643103],[-6.202028,57.644226],[-6.204867,57.64464],[-6.206718,57.645567]]],[[[-6.231321,57.667564],[-6.232859,57.666654],[-6.232745,57.665677],[-6.230883,57.664814],[-6.228401,57.662887],[-6.22528,57.662596],[-6.222093,57.661744],[-6.222655,57.662971],[-6.221432,57.664344],[-6.222372,57.665368],[-6.227271,57.6673],[-6.228994,57.667111],[-6.231321,57.667564]]],[[[-6.228886,57.671508],[-6.229747,57.671407],[-6.22837,57.669529],[-6.223864,57.667879],[-6.226288,57.670033],[-6.228886,57.671508]]],[[[-5.686425,57.693041],[-5.689415,57.693301],[-5.68778,57.692066],[-5.686223,57.692112],[-5.686425,57.693041]]],[[[-5.716107,57.707859],[-5.717785,57.708117],[-5.720712,57.707622],[-5.722492,57.706486],[-5.721505,57.706025],[-5.722292,57.705114],[-5.721634,57.704063],[-5.719497,57.703567],[-5.719822,57.702516],[-5.717773,57.701981],[-5.717082,57.701151],[-5.713925,57.701626],[-5.712153,57.704583],[-5.71106,57.704808],[-5.711353,57.70587],[-5.710607,57.706624],[-5.712634,57.70772],[-5.714571,57.707033],[-5.716107,57.707859]]],[[[-6.349905,57.70736],[-6.352721,57.708105],[-6.354055,57.70791],[-6.35469,57.706695],[-6.356672,57.706065],[-6.355855,57.704969],[-6.352332,57.704551],[-6.348007,57.703234],[-6.347175,57.7019],[-6.351309,57.699469],[-6.352,57.698231],[-6.35437,57.697965],[-6.354869,57.695897],[-6.34984,57.695275],[-6.348685,57.694892],[-6.347105,57.693552],[-6.345482,57.691571],[-6.345081,57.689701],[-6.343261,57.688083],[-6.342647,57.68622],[-6.342951,57.684372],[-6.344749,57.683794],[-6.346664,57.68449],[-6.349264,57.683491],[-6.344659,57.680344],[-6.348163,57.676275],[-6.350937,57.675186],[-6.353101,57.673709],[-6.353572,57.671206],[-6.357652,57.669257],[-6.361162,57.668367],[-6.363376,57.667032],[-6.369744,57.664518],[-6.374786,57.661816],[-6.378131,57.660666],[-6.385383,57.659345],[-6.386312,57.659521],[-6.38804,57.661031],[-6.391146,57.660612],[-6.392508,57.659901],[-6.39612,57.659423],[-6.400933,57.659982],[-6.405392,57.660952],[-6.407198,57.660809],[-6.410725,57.659663],[-6.410574,57.65839],[-6.408138,57.656229],[-6.407153,57.653603],[-6.408461,57.652633],[-6.405914,57.651537],[-6.406269,57.65052],[-6.408686,57.649295],[-6.411431,57.65018],[-6.410926,57.648854],[-6.411689,57.648436],[-6.417456,57.648616],[-6.421823,57.648252],[-6.42401,57.646925],[-6.427705,57.64215],[-6.426308,57.640464],[-6.425284,57.638121],[-6.420689,57.634671],[-6.416737,57.632516],[-6.416361,57.631836],[-6.412955,57.630436],[-6.407375,57.625144],[-6.405673,57.623235],[-6.40457,57.62114],[-6.401255,57.619161],[-6.39946,57.617326],[-6.39903,57.616109],[-6.396699,57.614158],[-6.395289,57.613793],[-6.394238,57.612724],[-6.394299,57.610734],[-6.395411,57.608987],[-6.397204,57.607953],[-6.397367,57.607038],[-6.396585,57.605142],[-6.396656,57.602952],[-6.395282,57.601963],[-6.394363,57.599947],[-6.395816,57.597919],[-6.397203,57.596974],[-6.398637,57.596697],[-6.397822,57.595348],[-6.393171,57.593122],[-6.391783,57.591477],[-6.392594,57.588251],[-6.3933,57.588074],[-6.395181,57.585715],[-6.394612,57.584921],[-6.390961,57.584639],[-6.38831,57.585293],[-6.382545,57.585637],[-6.378978,57.585178],[-6.376267,57.586266],[-6.3752,57.588125],[-6.371235,57.589984],[-6.368805,57.590513],[-6.363417,57.590192],[-6.361251,57.589812],[-6.359428,57.588947],[-6.359452,57.587944],[-6.36229,57.583878],[-6.366906,57.579818],[-6.368626,57.576982],[-6.370222,57.576009],[-6.370594,57.575026],[-6.372716,57.573467],[-6.372614,57.572455],[-6.374439,57.571132],[-6.378475,57.571057],[-6.380145,57.570248],[-6.379932,57.568304],[-6.380668,57.564631],[-6.384255,57.563382],[-6.388663,57.566219],[-6.3908,57.569085],[-6.39392,57.569701],[-6.394219,57.568845],[-6.395828,57.567476],[-6.39542,57.567013],[-6.398054,57.564654],[-6.397683,57.563926],[-6.398479,57.56241],[-6.396145,57.557698],[-6.394523,57.556113],[-6.395555,57.554341],[-6.395367,57.553615],[-6.392873,57.552662],[-6.392044,57.550494],[-6.389611,57.548822],[-6.386944,57.548346],[-6.384933,57.548994],[-6.383863,57.548808],[-6.382789,57.546805],[-6.383592,57.545472],[-6.383323,57.54426],[-6.384736,57.543159],[-6.386678,57.545175],[-6.38873,57.54571],[-6.389787,57.544281],[-6.388534,57.542449],[-6.387521,57.541819],[-6.382232,57.540535],[-6.379221,57.538717],[-6.378017,57.537396],[-6.374135,57.535359],[-6.373046,57.534295],[-6.373622,57.532683],[-6.372948,57.531879],[-6.376184,57.530139],[-6.375187,57.528394],[-6.373785,57.527079],[-6.369661,57.525869],[-6.370619,57.522529],[-6.369622,57.519615],[-6.364863,57.514762],[-6.364186,57.514623],[-6.360977,57.512243],[-6.356565,57.510925],[-6.355388,57.509452],[-6.353542,57.508154],[-6.348955,57.507131],[-6.345936,57.506096],[-6.33285,57.498199],[-6.330506,57.497493],[-6.327961,57.496078],[-6.328457,57.494399],[-6.325365,57.492419],[-6.323271,57.490365],[-6.319302,57.490094],[-6.316243,57.488538],[-6.313503,57.48777],[-6.308821,57.485279],[-6.306332,57.482825],[-6.309741,57.482157],[-6.311236,57.481254],[-6.312252,57.481671],[-6.318063,57.485167],[-6.319212,57.486325],[-6.32136,57.487016],[-6.32544,57.485929],[-6.325723,57.485207],[-6.325576,57.479742],[-6.31839,57.473057],[-6.318305,57.471961],[-6.319057,57.47034],[-6.318611,57.468916],[-6.320134,57.466475],[-6.320049,57.465829],[-6.321394,57.464512],[-6.318796,57.461294],[-6.31615,57.460144],[-6.314172,57.458687],[-6.314043,57.457882],[-6.312561,57.457263],[-6.312557,57.45484],[-6.315841,57.455634],[-6.316763,57.455415],[-6.321038,57.455994],[-6.3253,57.457748],[-6.326251,57.458961],[-6.327023,57.461018],[-6.326743,57.461459],[-6.328421,57.462887],[-6.328846,57.464303],[-6.328081,57.464966],[-6.328598,57.46783],[-6.328178,57.469906],[-6.32751,57.470669],[-6.327331,57.47365],[-6.328065,57.475141],[-6.334058,57.480372],[-6.333085,57.483519],[-6.335442,57.489323],[-6.337449,57.491171],[-6.34064,57.491975],[-6.341086,57.491458],[-6.339673,57.489367],[-6.340345,57.488742],[-6.339554,57.486931],[-6.340113,57.484916],[-6.34124,57.483342],[-6.340167,57.4821],[-6.340578,57.481457],[-6.343499,57.482042],[-6.34506,57.481423],[-6.345619,57.482637],[-6.347798,57.482564],[-6.347671,57.486732],[-6.348364,57.487429],[-6.348292,57.490756],[-6.348724,57.492077],[-6.348202,57.492789],[-6.349553,57.493952],[-6.348543,57.494983],[-6.350165,57.496072],[-6.350707,57.497156],[-6.352374,57.496907],[-6.354639,57.497662],[-6.35899,57.500506],[-6.362325,57.501071],[-6.363633,57.502291],[-6.36633,57.504106],[-6.370764,57.504464],[-6.37211,57.501872],[-6.374136,57.501194],[-6.374831,57.500251],[-6.376433,57.505872],[-6.378384,57.510448],[-6.379848,57.511723],[-6.38096,57.514012],[-6.383475,57.516939],[-6.382525,57.518425],[-6.383658,57.520409],[-6.385396,57.521864],[-6.388543,57.523009],[-6.391538,57.525468],[-6.397411,57.527444],[-6.400386,57.528271],[-6.403264,57.527392],[-6.403982,57.526067],[-6.403264,57.524208],[-6.405909,57.523891],[-6.406891,57.523097],[-6.405078,57.519014],[-6.401175,57.517428],[-6.399445,57.514997],[-6.401387,57.513711],[-6.399542,57.509359],[-6.399814,57.508842],[-6.402301,57.508269],[-6.403705,57.50889],[-6.405412,57.507211],[-6.40863,57.506356],[-6.412078,57.50617],[-6.414153,57.506423],[-6.417307,57.505732],[-6.418412,57.505831],[-6.420005,57.504971],[-6.419887,57.504257],[-6.421593,57.503376],[-6.420849,57.502747],[-6.42052,57.500614],[-6.420811,57.499211],[-6.421646,57.498157],[-6.424412,57.497674],[-6.42759,57.495837],[-6.42884,57.494311],[-6.43068,57.493326],[-6.434882,57.492539],[-6.435939,57.491577],[-6.436945,57.486631],[-6.436056,57.483905],[-6.433878,57.482263],[-6.434032,57.480681],[-6.432811,57.478012],[-6.432798,57.476005],[-6.431649,57.475312],[-6.43228,57.471778],[-6.43387,57.471734],[-6.436148,57.472766],[-6.436775,57.473602],[-6.439083,57.475184],[-6.438427,57.477485],[-6.439481,57.478669],[-6.43965,57.480057],[-6.440487,57.481242],[-6.442209,57.481195],[-6.443713,57.481888],[-6.445966,57.481601],[-6.447405,57.480876],[-6.450324,57.481394],[-6.450128,57.484108],[-6.448359,57.487066],[-6.443309,57.491769],[-6.44057,57.493739],[-6.439227,57.496211],[-6.436848,57.498064],[-6.437587,57.500089],[-6.435065,57.501044],[-6.432692,57.50229],[-6.4326,57.50442],[-6.430787,57.505639],[-6.43096,57.507242],[-6.429874,57.50862],[-6.429,57.508891],[-6.428521,57.511721],[-6.426692,57.512837],[-6.425408,57.514232],[-6.426463,57.515494],[-6.426095,57.516586],[-6.427099,57.518255],[-6.430145,57.519452],[-6.433267,57.518389],[-6.433835,57.516948],[-6.436195,57.517175],[-6.437981,57.516402],[-6.437883,57.515389],[-6.439946,57.513189],[-6.442721,57.511131],[-6.44547,57.510132],[-6.445678,57.508791],[-6.44748,57.507536],[-6.449862,57.507268],[-6.452714,57.50593],[-6.452621,57.505097],[-6.453895,57.503896],[-6.454677,57.502506],[-6.456344,57.501858],[-6.455577,57.500639],[-6.458611,57.499417],[-6.460742,57.499494],[-6.462018,57.499004],[-6.465195,57.4993],[-6.464822,57.501099],[-6.461871,57.502782],[-6.460835,57.503943],[-6.462554,57.504138],[-6.464831,57.505609],[-6.46494,57.506158],[-6.467787,57.507708],[-6.472793,57.513646],[-6.4769,57.515717],[-6.479689,57.518015],[-6.479781,57.518695],[-6.482505,57.520257],[-6.485805,57.523023],[-6.489533,57.523839],[-6.495087,57.524684],[-6.496219,57.525251],[-6.49931,57.529435],[-6.500001,57.53165],[-6.50432,57.53405],[-6.506733,57.534701],[-6.509962,57.534846],[-6.512673,57.536143],[-6.513833,57.537654],[-6.51989,57.538376],[-6.527741,57.540648],[-6.528959,57.542039],[-6.531858,57.543761],[-6.532041,57.544964],[-6.533494,57.544943],[-6.536091,57.545583],[-6.538533,57.547127],[-6.541419,57.547995],[-6.542225,57.546747],[-6.544104,57.545784],[-6.547435,57.544859],[-6.548563,57.543982],[-6.553216,57.543868],[-6.554426,57.544314],[-6.556286,57.546077],[-6.559078,57.547469],[-6.56193,57.54773],[-6.564451,57.548561],[-6.565514,57.548227],[-6.567834,57.551789],[-6.567894,57.554108],[-6.56897,57.557253],[-6.568509,57.560901],[-6.56901,57.562383],[-6.568502,57.563708],[-6.569416,57.565486],[-6.570154,57.565804],[-6.570443,57.567466],[-6.569045,57.571781],[-6.570737,57.574642],[-6.57258,57.575785],[-6.574561,57.57976],[-6.578803,57.581864],[-6.579866,57.582059],[-6.581442,57.584003],[-6.582214,57.586008],[-6.582178,57.587853],[-6.585952,57.590284],[-6.589376,57.594031],[-6.59337,57.595004],[-6.595425,57.594888],[-6.598516,57.595664],[-6.601966,57.596977],[-6.60369,57.598219],[-6.605332,57.600403],[-6.607945,57.601454],[-6.610203,57.601956],[-6.612924,57.603192],[-6.613803,57.604833],[-6.615389,57.605715],[-6.61999,57.605924],[-6.623221,57.605568],[-6.623787,57.605934],[-6.627374,57.605744],[-6.629896,57.606402],[-6.630588,57.607888],[-6.633924,57.608094],[-6.635603,57.607069],[-6.634753,57.604866],[-6.636543,57.602479],[-6.63765,57.602294],[-6.63805,57.600706],[-6.636456,57.599568],[-6.63443,57.597344],[-6.633073,57.59524],[-6.6329,57.593686],[-6.633498,57.592974],[-6.632548,57.592039],[-6.633392,57.590317],[-6.634495,57.589507],[-6.633993,57.588928],[-6.635536,57.587953],[-6.634255,57.586381],[-6.634717,57.584943],[-6.634289,57.583884],[-6.634606,57.582694],[-6.634126,57.581421],[-6.638128,57.577415],[-6.63977,57.572241],[-6.641528,57.569289],[-6.641466,57.566377],[-6.640159,57.563016],[-6.640713,57.561232],[-6.643048,57.55776],[-6.64505,57.556894],[-6.64577,57.555578],[-6.646874,57.554821],[-6.65172,57.554078],[-6.653716,57.55491],[-6.654991,57.553983],[-6.654474,57.553076],[-6.654956,57.55193],[-6.653894,57.551333],[-6.653381,57.550179],[-6.654836,57.545915],[-6.654311,57.544553],[-6.652354,57.542945],[-6.649803,57.542881],[-6.649441,57.543893],[-6.647073,57.546552],[-6.649309,57.547148],[-6.650272,57.548456],[-6.651425,57.549007],[-6.651415,57.550169],[-6.649413,57.551393],[-6.645515,57.552617],[-6.643256,57.552589],[-6.641652,57.552058],[-6.633981,57.547771],[-6.630976,57.546726],[-6.629674,57.545855],[-6.627855,57.545402],[-6.622497,57.543099],[-6.621128,57.542031],[-6.619166,57.541569],[-6.614468,57.538586],[-6.613304,57.537346],[-6.611567,57.537884],[-6.610248,57.5374],[-6.607397,57.537156],[-6.604044,57.536149],[-6.603031,57.535255],[-6.601973,57.533164],[-6.596094,57.530859],[-6.592766,57.528081],[-6.591348,57.525906],[-6.589262,57.52477],[-6.588156,57.524761],[-6.585706,57.522163],[-6.587138,57.519966],[-6.58669,57.518663],[-6.585142,57.517921],[-6.584421,57.516979],[-6.578544,57.515824],[-6.574519,57.515746],[-6.572888,57.515327],[-6.571522,57.514226],[-6.570021,57.511844],[-6.564599,57.509673],[-6.561842,57.50892],[-6.560581,57.508027],[-6.560166,57.506839],[-6.560647,57.50568],[-6.562623,57.504278],[-6.565735,57.503212],[-6.566785,57.502344],[-6.566262,57.501015],[-6.563571,57.498811],[-6.563782,57.497309],[-6.56297,57.496079],[-6.565133,57.495424],[-6.567999,57.495069],[-6.568422,57.494],[-6.571085,57.493415],[-6.573807,57.494087],[-6.576629,57.496211],[-6.577353,57.497588],[-6.580298,57.498826],[-6.582451,57.500668],[-6.585436,57.502214],[-6.586266,57.503236],[-6.589315,57.504825],[-6.58989,57.505546],[-6.594083,57.508123],[-6.598479,57.509915],[-6.603256,57.509367],[-6.606282,57.507983],[-6.608159,57.507496],[-6.61031,57.507391],[-6.611363,57.506529],[-6.613536,57.505874],[-6.616065,57.502682],[-6.618547,57.501566],[-6.620162,57.501583],[-6.623789,57.50225],[-6.629761,57.502571],[-6.634287,57.503735],[-6.637853,57.503064],[-6.637656,57.501453],[-6.636067,57.500382],[-6.636554,57.499289],[-6.634947,57.497752],[-6.636355,57.495946],[-6.635496,57.49484],[-6.633261,57.494666],[-6.632573,57.492276],[-6.628623,57.489844],[-6.628606,57.488721],[-6.6299,57.488129],[-6.629332,57.487205],[-6.625956,57.484752],[-6.625917,57.484111],[-6.627484,57.482506],[-6.626607,57.480923],[-6.62504,57.480217],[-6.623976,57.478875],[-6.624255,57.477284],[-6.623233,57.473199],[-6.62141,57.472916],[-6.619174,57.471999],[-6.617245,57.470276],[-6.613385,57.467404],[-6.613877,57.465223],[-6.615037,57.463502],[-6.614484,57.462367],[-6.614991,57.461026],[-6.616906,57.460663],[-6.622041,57.462395],[-6.623951,57.462519],[-6.625365,57.462147],[-6.623735,57.460152],[-6.623954,57.459375],[-6.621041,57.457327],[-6.619817,57.458339],[-6.618164,57.458859],[-6.615053,57.457152],[-6.615128,57.455607],[-6.613121,57.455001],[-6.612301,57.456708],[-6.610182,57.457901],[-6.611623,57.458411],[-6.608652,57.459334],[-6.60498,57.4586],[-6.603069,57.458531],[-6.599633,57.456493],[-6.599153,57.455202],[-6.595983,57.454612],[-6.593765,57.453694],[-6.594742,57.451572],[-6.592023,57.45025],[-6.590487,57.448912],[-6.591445,57.447479],[-6.590449,57.44496],[-6.591141,57.443756],[-6.590094,57.442156],[-6.591373,57.44146],[-6.590119,57.440673],[-6.588467,57.440464],[-6.586961,57.439198],[-6.584781,57.438445],[-6.57906,57.434405],[-6.5766,57.433599],[-6.575136,57.432027],[-6.575044,57.431045],[-6.579037,57.432268],[-6.581869,57.431933],[-6.582279,57.430265],[-6.581107,57.429885],[-6.580793,57.428441],[-6.582553,57.427594],[-6.583257,57.426171],[-6.583407,57.424439],[-6.581188,57.422952],[-6.583245,57.422281],[-6.583493,57.423199],[-6.585161,57.423003],[-6.586468,57.424516],[-6.586241,57.42537],[-6.587936,57.425524],[-6.588709,57.424906],[-6.590306,57.425941],[-6.589768,57.426968],[-6.590652,57.427498],[-6.589561,57.428909],[-6.588332,57.429465],[-6.5889,57.431611],[-6.588668,57.433012],[-6.589928,57.435091],[-6.589602,57.43536],[-6.59278,57.438833],[-6.594561,57.440051],[-6.595735,57.442574],[-6.59712,57.443184],[-6.597455,57.444124],[-6.601098,57.445701],[-6.604855,57.445553],[-6.60837,57.446971],[-6.610211,57.447277],[-6.610717,57.445932],[-6.610199,57.444804],[-6.61102,57.443901],[-6.612749,57.443654],[-6.613404,57.442897],[-6.612936,57.441241],[-6.611518,57.439521],[-6.612725,57.439166],[-6.616212,57.439376],[-6.617614,57.438654],[-6.61744,57.436749],[-6.619096,57.436126],[-6.621621,57.434459],[-6.625341,57.435411],[-6.62809,57.438129],[-6.629381,57.437987],[-6.630779,57.438687],[-6.631182,57.439626],[-6.63361,57.441344],[-6.63642,57.442406],[-6.638277,57.4422],[-6.642166,57.444462],[-6.642357,57.445188],[-6.646229,57.44819],[-6.646716,57.44897],[-6.648745,57.450046],[-6.6483,57.450837],[-6.650576,57.452316],[-6.650248,57.453673],[-6.651741,57.455094],[-6.65412,57.455999],[-6.653075,57.457779],[-6.654397,57.459392],[-6.655333,57.459218],[-6.656947,57.460279],[-6.659466,57.460396],[-6.662286,57.461339],[-6.664279,57.460711],[-6.664636,57.459422],[-6.666778,57.45952],[-6.667998,57.461085],[-6.667346,57.464938],[-6.665901,57.465569],[-6.668726,57.466653],[-6.668573,57.468148],[-6.666101,57.469567],[-6.666764,57.470805],[-6.670443,57.472906],[-6.672541,57.473277],[-6.674615,57.474079],[-6.676877,57.474134],[-6.677994,57.474985],[-6.678348,57.476029],[-6.676982,57.477574],[-6.676812,57.478999],[-6.681369,57.482345],[-6.685837,57.483428],[-6.686331,57.485271],[-6.687561,57.486084],[-6.686848,57.489016],[-6.687367,57.490193],[-6.6893,57.490418],[-6.691416,57.489415],[-6.693078,57.48949],[-6.694348,57.49155],[-6.696669,57.492586],[-6.696929,57.494145],[-6.699675,57.496074],[-6.701313,57.495804],[-6.704587,57.496872],[-6.704937,57.498461],[-6.703262,57.499918],[-6.70385,57.502603],[-6.705503,57.504732],[-6.70556,57.505893],[-6.707324,57.507376],[-6.708064,57.508603],[-6.71237,57.51267],[-6.716656,57.513503],[-6.718567,57.512834],[-6.7253,57.511515],[-6.733015,57.50908],[-6.737929,57.505414],[-6.739807,57.504754],[-6.741669,57.503262],[-6.742759,57.503163],[-6.744118,57.5016],[-6.748125,57.500091],[-6.748666,57.497448],[-6.74837,57.493506],[-6.749197,57.489976],[-6.748509,57.487699],[-6.749535,57.483648],[-6.748687,57.4788],[-6.747319,57.475793],[-6.746102,57.469704],[-6.745144,57.467792],[-6.743494,57.466137],[-6.742952,57.464601],[-6.738563,57.461906],[-6.734242,57.460831],[-6.732167,57.458989],[-6.727235,57.456925],[-6.725267,57.454935],[-6.725285,57.453976],[-6.72153,57.452687],[-6.72092,57.45162],[-6.721493,57.449712],[-6.723142,57.450331],[-6.725427,57.450184],[-6.728746,57.450584],[-6.730814,57.451486],[-6.737907,57.452545],[-6.740601,57.451709],[-6.743532,57.451849],[-6.746873,57.454382],[-6.747257,57.45616],[-6.749381,57.456049],[-6.751938,57.45718],[-6.757304,57.457511],[-6.757985,57.457831],[-6.763452,57.45857],[-6.764979,57.459091],[-6.766466,57.458798],[-6.770792,57.459127],[-6.778242,57.45847],[-6.780112,57.458026],[-6.78418,57.45493],[-6.785109,57.452146],[-6.783832,57.452019],[-6.780497,57.45019],[-6.778594,57.44808],[-6.777702,57.445213],[-6.778553,57.441888],[-6.780627,57.441738],[-6.782575,57.440881],[-6.784226,57.441196],[-6.786668,57.439776],[-6.785708,57.439075],[-6.786743,57.438379],[-6.786205,57.435921],[-6.788071,57.433165],[-6.786917,57.430973],[-6.783634,57.428957],[-6.783045,57.42777],[-6.785349,57.426715],[-6.785853,57.425328],[-6.78859,57.423942],[-6.789602,57.421228],[-6.787712,57.420166],[-6.784397,57.420256],[-6.784452,57.421374],[-6.782795,57.422413],[-6.783813,57.423692],[-6.781804,57.423886],[-6.780727,57.424991],[-6.781633,57.426276],[-6.780552,57.426686],[-6.778414,57.426399],[-6.777875,57.427512],[-6.774347,57.427884],[-6.773395,57.428519],[-6.770038,57.427585],[-6.767229,57.428933],[-6.764739,57.42806],[-6.7624,57.424636],[-6.761144,57.423631],[-6.760932,57.422325],[-6.759551,57.42196],[-6.757241,57.422474],[-6.755641,57.421838],[-6.754166,57.422357],[-6.751774,57.422164],[-6.748081,57.420437],[-6.746331,57.419023],[-6.743123,57.417619],[-6.741839,57.416269],[-6.74086,57.41412],[-6.739246,57.41343],[-6.738248,57.412226],[-6.736969,57.408847],[-6.735168,57.402204],[-6.731915,57.400114],[-6.730955,57.398427],[-6.731373,57.398047],[-6.729627,57.396462],[-6.729136,57.395307],[-6.729968,57.39304],[-6.731211,57.3928],[-6.733791,57.391039],[-6.735803,57.391138],[-6.737431,57.39078],[-6.738926,57.389325],[-6.736343,57.38868],[-6.734286,57.38739],[-6.733493,57.385769],[-6.731088,57.383328],[-6.732282,57.382901],[-6.732265,57.381673],[-6.730197,57.381459],[-6.728385,57.380839],[-6.727439,57.378864],[-6.726012,57.377487],[-6.726237,57.376458],[-6.723113,57.373791],[-6.7212,57.373264],[-6.720854,57.372284],[-6.716829,57.370829],[-6.713316,57.370575],[-6.71088,57.369631],[-6.705182,57.370115],[-6.703498,57.370682],[-6.702445,57.371756],[-6.700497,57.371756],[-6.700708,57.370485],[-6.697724,57.367659],[-6.696564,57.367959],[-6.692585,57.366012],[-6.690983,57.364938],[-6.686518,57.364655],[-6.686814,57.363385],[-6.686101,57.362755],[-6.682535,57.361817],[-6.682817,57.360826],[-6.6812,57.360549],[-6.679727,57.359695],[-6.676216,57.358405],[-6.676189,57.357692],[-6.671401,57.356606],[-6.669747,57.357076],[-6.666146,57.357552],[-6.66323,57.357202],[-6.658343,57.358165],[-6.654725,57.357791],[-6.652688,57.357934],[-6.651188,57.356479],[-6.650373,57.354449],[-6.647765,57.353498],[-6.646107,57.353878],[-6.643147,57.353898],[-6.640539,57.353342],[-6.639276,57.353816],[-6.635872,57.352822],[-6.632239,57.351134],[-6.631407,57.350077],[-6.628118,57.350783],[-6.626595,57.350254],[-6.624645,57.350825],[-6.623684,57.349534],[-6.620117,57.349292],[-6.61918,57.348584],[-6.618681,57.347132],[-6.616613,57.347032],[-6.611935,57.343831],[-6.610488,57.343376],[-6.607343,57.341643],[-6.604123,57.341833],[-6.603449,57.340774],[-6.60051,57.340418],[-6.599663,57.339298],[-6.593742,57.336983],[-6.590765,57.337321],[-6.588114,57.337135],[-6.586373,57.33665],[-6.584257,57.337285],[-6.582456,57.336514],[-6.582935,57.334293],[-6.582126,57.333004],[-6.577432,57.333441],[-6.576615,57.332292],[-6.57462,57.332968],[-6.572351,57.333038],[-6.57098,57.332646],[-6.57027,57.333693],[-6.570475,57.335526],[-6.569799,57.336525],[-6.567596,57.335868],[-6.565722,57.336107],[-6.564842,57.337331],[-6.565255,57.33804],[-6.564641,57.340392],[-6.565393,57.341822],[-6.563509,57.342191],[-6.565487,57.344116],[-6.56602,57.345566],[-6.563492,57.348281],[-6.566406,57.352173],[-6.564028,57.353186],[-6.564716,57.353638],[-6.564148,57.355224],[-6.564691,57.356315],[-6.566443,57.357281],[-6.567852,57.358907],[-6.567659,57.359967],[-6.564427,57.361411],[-6.563219,57.360938],[-6.563267,57.365672],[-6.566054,57.368467],[-6.56617,57.370468],[-6.567031,57.371629],[-6.567051,57.373265],[-6.566431,57.374232],[-6.567005,57.376302],[-6.568875,57.376743],[-6.5697,57.377886],[-6.569048,57.379534],[-6.569547,57.380464],[-6.568045,57.381774],[-6.567957,57.383945],[-6.566476,57.384624],[-6.567291,57.385788],[-6.570461,57.386281],[-6.572333,57.387297],[-6.57298,57.388491],[-6.56615,57.390348],[-6.562428,57.389869],[-6.561138,57.390307],[-6.559213,57.389551],[-6.557042,57.388138],[-6.555503,57.385885],[-6.552157,57.385458],[-6.550054,57.387385],[-6.551152,57.387559],[-6.551047,57.388661],[-6.549454,57.389862],[-6.547859,57.390433],[-6.547507,57.391368],[-6.546107,57.39191],[-6.546041,57.393398],[-6.542722,57.395879],[-6.542839,57.396808],[-6.540094,57.397872],[-6.538738,57.397836],[-6.536747,57.397127],[-6.535834,57.395789],[-6.537696,57.395088],[-6.537922,57.394165],[-6.541628,57.391564],[-6.541032,57.39063],[-6.539107,57.390971],[-6.538998,57.393047],[-6.535044,57.3928],[-6.534069,57.393198],[-6.533973,57.394254],[-6.531886,57.395515],[-6.531768,57.397063],[-6.533439,57.398486],[-6.534958,57.398731],[-6.533974,57.40042],[-6.532539,57.400564],[-6.531335,57.401578],[-6.531568,57.403099],[-6.532417,57.404116],[-6.534797,57.403904],[-6.533915,57.402014],[-6.534817,57.401101],[-6.537257,57.401649],[-6.537064,57.399844],[-6.536066,57.399014],[-6.536679,57.398268],[-6.541002,57.398401],[-6.542557,57.398242],[-6.538634,57.403319],[-6.539348,57.405815],[-6.538022,57.40668],[-6.538423,57.408726],[-6.537076,57.40935],[-6.537531,57.410472],[-6.538743,57.410879],[-6.540513,57.412208],[-6.538745,57.412283],[-6.538405,57.413466],[-6.536598,57.412727],[-6.535991,57.41126],[-6.534244,57.410796],[-6.533148,57.409616],[-6.531912,57.406833],[-6.532118,57.405721],[-6.531587,57.404353],[-6.527278,57.403873],[-6.524807,57.402434],[-6.523563,57.401181],[-6.524164,57.400393],[-6.525985,57.399707],[-6.526253,57.398491],[-6.523744,57.397182],[-6.522141,57.39856],[-6.519836,57.398042],[-6.519865,57.396818],[-6.518327,57.396391],[-6.518686,57.395374],[-6.517829,57.394043],[-6.516555,57.393209],[-6.517211,57.392207],[-6.517114,57.390855],[-6.519942,57.390593],[-6.521506,57.38939],[-6.52145,57.38749],[-6.523289,57.386668],[-6.523384,57.385562],[-6.524643,57.385036],[-6.526171,57.383154],[-6.525129,57.380974],[-6.521983,57.381226],[-6.520308,57.382406],[-6.517549,57.381499],[-6.518933,57.380597],[-6.519878,57.379108],[-6.523703,57.376973],[-6.52599,57.37427],[-6.52467,57.372543],[-6.527204,57.371685],[-6.526641,57.370693],[-6.525101,57.369814],[-6.522227,57.370878],[-6.521574,57.371811],[-6.521484,57.373482],[-6.5197,57.374799],[-6.517951,57.375249],[-6.515766,57.375127],[-6.513558,57.375817],[-6.512026,57.3768],[-6.511246,57.37823],[-6.511337,57.37946],[-6.509302,57.380594],[-6.508408,57.383003],[-6.506049,57.384399],[-6.502464,57.384483],[-6.501756,57.386083],[-6.49972,57.386865],[-6.497523,57.388776],[-6.49641,57.391731],[-6.49502,57.392896],[-6.494826,57.393679],[-6.49593,57.395352],[-6.495464,57.397298],[-6.494088,57.39855],[-6.493883,57.400646],[-6.494491,57.401807],[-6.492477,57.403828],[-6.49215,57.404706],[-6.488711,57.403688],[-6.488366,57.399978],[-6.487514,57.398975],[-6.487744,57.397783],[-6.485791,57.396784],[-6.484057,57.396773],[-6.481976,57.395835],[-6.485596,57.39247],[-6.486393,57.390178],[-6.488486,57.388235],[-6.48781,57.385071],[-6.48637,57.384917],[-6.485185,57.382456],[-6.485193,57.381068],[-6.481939,57.379195],[-6.481041,57.379688],[-6.476768,57.379659],[-6.474176,57.378489],[-6.471283,57.376669],[-6.470271,57.376416],[-6.470452,57.375259],[-6.473146,57.374076],[-6.474802,57.374366],[-6.476009,57.372802],[-6.479724,57.371494],[-6.480904,57.370044],[-6.481234,57.366754],[-6.480661,57.365879],[-6.479122,57.36548],[-6.47739,57.365811],[-6.474481,57.364873],[-6.472813,57.363482],[-6.472442,57.362404],[-6.470661,57.361526],[-6.468409,57.361461],[-6.468955,57.363112],[-6.467325,57.363411],[-6.465555,57.362225],[-6.464521,57.36243],[-6.461919,57.36036],[-6.460215,57.361448],[-6.457113,57.360979],[-6.455869,57.360399],[-6.454187,57.35777],[-6.454602,57.356671],[-6.457031,57.356266],[-6.456852,57.354105],[-6.457238,57.352363],[-6.456595,57.351713],[-6.457175,57.349797],[-6.459941,57.349415],[-6.462919,57.347569],[-6.458819,57.347234],[-6.459802,57.344303],[-6.459228,57.343477],[-6.461561,57.341596],[-6.460943,57.340754],[-6.457912,57.339562],[-6.456443,57.339376],[-6.454895,57.340195],[-6.454398,57.342057],[-6.455537,57.343294],[-6.455699,57.344286],[-6.454058,57.344786],[-6.451947,57.344673],[-6.450385,57.345106],[-6.447537,57.346748],[-6.446551,57.348212],[-6.443516,57.347536],[-6.439654,57.347692],[-6.437697,57.346862],[-6.438041,57.345745],[-6.435247,57.345437],[-6.435465,57.346595],[-6.434459,57.347277],[-6.434268,57.348396],[-6.430845,57.348219],[-6.428503,57.349616],[-6.42388,57.350035],[-6.422081,57.349332],[-6.417731,57.34914],[-6.416111,57.348721],[-6.414701,57.349029],[-6.412692,57.350189],[-6.409499,57.353796],[-6.406938,57.35593],[-6.406052,57.357325],[-6.406345,57.358684],[-6.405405,57.359406],[-6.403675,57.359359],[-6.4,57.361242],[-6.396211,57.360465],[-6.391182,57.361412],[-6.387998,57.362413],[-6.387822,57.36143],[-6.393253,57.359074],[-6.397007,57.358203],[-6.399498,57.357125],[-6.400931,57.356975],[-6.40222,57.355423],[-6.404132,57.354926],[-6.405688,57.353763],[-6.406964,57.35198],[-6.406383,57.350086],[-6.407582,57.346465],[-6.407175,57.345198],[-6.404434,57.344315],[-6.397384,57.344649],[-6.39595,57.344385],[-6.395778,57.34273],[-6.39984,57.342348],[-6.402705,57.341496],[-6.402636,57.339881],[-6.401644,57.339352],[-6.398051,57.338538],[-6.391582,57.339476],[-6.387282,57.337777],[-6.385552,57.335889],[-6.38246,57.334032],[-6.379956,57.33283],[-6.374344,57.329626],[-6.371904,57.328699],[-6.370634,57.327723],[-6.361537,57.324001],[-6.358124,57.323189],[-6.35927,57.322479],[-6.359641,57.320915],[-6.359322,57.31997],[-6.350297,57.312614],[-6.348707,57.310277],[-6.345138,57.3075],[-6.342133,57.305765],[-6.337025,57.303805],[-6.332635,57.30286],[-6.329599,57.302758],[-6.323302,57.30177],[-6.318137,57.301437],[-6.316183,57.300788],[-6.311921,57.30129],[-6.310336,57.300221],[-6.308,57.299268],[-6.307598,57.298525],[-6.309596,57.297882],[-6.312773,57.297479],[-6.314508,57.297598],[-6.31772,57.296476],[-6.320879,57.296632],[-6.322767,57.297084],[-6.323363,57.298264],[-6.326129,57.297625],[-6.329434,57.297475],[-6.333445,57.297894],[-6.338292,57.297882],[-6.347773,57.299921],[-6.352728,57.301858],[-6.353869,57.302588],[-6.356542,57.303031],[-6.357764,57.303975],[-6.361778,57.30906],[-6.364417,57.311552],[-6.367115,57.313455],[-6.368238,57.315438],[-6.371515,57.318628],[-6.374868,57.320557],[-6.38141,57.323446],[-6.386362,57.326442],[-6.394138,57.329196],[-6.397462,57.329871],[-6.401364,57.330175],[-6.406675,57.331488],[-6.411128,57.334639],[-6.411623,57.335507],[-6.413876,57.336553],[-6.415742,57.336901],[-6.417652,57.336004],[-6.417347,57.335333],[-6.418758,57.334747],[-6.421171,57.334362],[-6.423988,57.335393],[-6.427696,57.338973],[-6.429927,57.339293],[-6.431137,57.338913],[-6.432976,57.337198],[-6.431164,57.336381],[-6.429871,57.335103],[-6.429533,57.333269],[-6.430269,57.33253],[-6.429013,57.331168],[-6.430077,57.330029],[-6.429858,57.329113],[-6.428156,57.32695],[-6.428003,57.325204],[-6.42699,57.324242],[-6.427644,57.323175],[-6.431964,57.322438],[-6.434015,57.325063],[-6.437306,57.326637],[-6.438755,57.326583],[-6.440338,57.325743],[-6.439829,57.324454],[-6.441203,57.323862],[-6.443471,57.323634],[-6.443987,57.321931],[-6.44781,57.320377],[-6.449507,57.320455],[-6.45055,57.321555],[-6.452863,57.322683],[-6.456178,57.322396],[-6.457549,57.318758],[-6.460647,57.31805],[-6.463197,57.316053],[-6.472423,57.313872],[-6.474656,57.313437],[-6.482783,57.310979],[-6.483262,57.31],[-6.482457,57.309322],[-6.482238,57.307325],[-6.483953,57.306374],[-6.481789,57.306099],[-6.480988,57.305453],[-6.480026,57.301922],[-6.4821,57.299585],[-6.482137,57.297635],[-6.481572,57.296681],[-6.479842,57.296055],[-6.481197,57.295175],[-6.480745,57.294462],[-6.481766,57.29296],[-6.481846,57.291504],[-6.479718,57.289507],[-6.476439,57.287956],[-6.474312,57.288558],[-6.465184,57.288368],[-6.462687,57.286894],[-6.458568,57.286265],[-6.456906,57.284119],[-6.457075,57.282583],[-6.458441,57.281754],[-6.461702,57.281141],[-6.460715,57.27985],[-6.460342,57.278006],[-6.45599,57.273335],[-6.455295,57.269857],[-6.453143,57.267914],[-6.451791,57.264288],[-6.451004,57.262787],[-6.451491,57.262427],[-6.448991,57.260695],[-6.446668,57.260215],[-6.445096,57.259021],[-6.44349,57.258983],[-6.441363,57.257361],[-6.439915,57.258102],[-6.438766,57.256965],[-6.439181,57.25628],[-6.436816,57.255937],[-6.43569,57.255127],[-6.436002,57.253654],[-6.432647,57.253219],[-6.432536,57.25209],[-6.431215,57.251107],[-6.42706,57.249878],[-6.427003,57.248369],[-6.426132,57.244019],[-6.42728,57.243219],[-6.426021,57.241366],[-6.420947,57.240488],[-6.419658,57.238586],[-6.417859,57.236936],[-6.411617,57.236405],[-6.409283,57.235682],[-6.408978,57.234173],[-6.406901,57.23345],[-6.405007,57.232239],[-6.40167,57.231722],[-6.400609,57.232146],[-6.395407,57.231771],[-6.392407,57.233109],[-6.391328,57.233173],[-6.384762,57.235557],[-6.383015,57.235645],[-6.380841,57.234867],[-6.378793,57.235428],[-6.377454,57.235052],[-6.374368,57.235385],[-6.370309,57.234726],[-6.367827,57.235055],[-6.36377,57.234756],[-6.357377,57.236449],[-6.354492,57.23793],[-6.352829,57.24239],[-6.352058,57.245416],[-6.352251,57.248098],[-6.351517,57.249596],[-6.349672,57.250639],[-6.348453,57.251881],[-6.345403,57.253386],[-6.34417,57.252274],[-6.342253,57.251618],[-6.343576,57.250781],[-6.344136,57.246747],[-6.345976,57.243855],[-6.346697,57.240889],[-6.345946,57.238743],[-6.346524,57.23415],[-6.349212,57.229942],[-6.352366,57.228146],[-6.354453,57.227494],[-6.35906,57.227464],[-6.361223,57.227947],[-6.363099,57.227827],[-6.365948,57.228141],[-6.371073,57.227619],[-6.371526,57.227363],[-6.374877,57.227748],[-6.380687,57.227405],[-6.38165,57.226258],[-6.385259,57.225366],[-6.384753,57.224392],[-6.385342,57.223283],[-6.383727,57.222665],[-6.384974,57.221464],[-6.384598,57.219666],[-6.38567,57.218855],[-6.387188,57.218763],[-6.387433,57.217022],[-6.386662,57.216878],[-6.384995,57.214715],[-6.385623,57.213483],[-6.38358,57.212008],[-6.383463,57.210883],[-6.381664,57.209975],[-6.380774,57.210082],[-6.379288,57.20727],[-6.378301,57.206],[-6.374639,57.203978],[-6.373561,57.202226],[-6.371623,57.201745],[-6.371343,57.200789],[-6.369039,57.199164],[-6.368747,57.198001],[-6.364333,57.197192],[-6.36405,57.195781],[-6.362441,57.194434],[-6.363409,57.192763],[-6.362185,57.191988],[-6.358784,57.192084],[-6.357971,57.190952],[-6.356061,57.190585],[-6.35284,57.188097],[-6.349771,57.187504],[-6.344305,57.185252],[-6.340005,57.185019],[-6.337918,57.185658],[-6.3359,57.185611],[-6.332638,57.186816],[-6.329043,57.187093],[-6.327754,57.188105],[-6.32582,57.188495],[-6.323636,57.189861],[-6.323021,57.189491],[-6.320567,57.190318],[-6.320291,57.190786],[-6.313998,57.192644],[-6.310358,57.195031],[-6.307749,57.195881],[-6.305604,57.19748],[-6.301607,57.19804],[-6.300394,57.199315],[-6.296461,57.200571],[-6.295374,57.201413],[-6.293729,57.203784],[-6.292872,57.203179],[-6.289278,57.201951],[-6.284834,57.201357],[-6.283789,57.199558],[-6.283808,57.197866],[-6.283041,57.19733],[-6.282662,57.195913],[-6.283913,57.193487],[-6.28336,57.190579],[-6.285538,57.189075],[-6.286941,57.18739],[-6.286608,57.186448],[-6.290118,57.185082],[-6.290755,57.184085],[-6.292334,57.183275],[-6.293642,57.180069],[-6.294614,57.179739],[-6.296677,57.17818],[-6.299377,57.177404],[-6.299825,57.175779],[-6.301562,57.174415],[-6.303801,57.173659],[-6.306083,57.173707],[-6.30667,57.173129],[-6.310654,57.172511],[-6.313452,57.171731],[-6.315128,57.169852],[-6.314638,57.168983],[-6.315618,57.16809],[-6.314841,57.166539],[-6.315203,57.165384],[-6.316456,57.164558],[-6.319473,57.164171],[-6.322464,57.162858],[-6.323687,57.161921],[-6.322312,57.160139],[-6.319957,57.160449],[-6.318207,57.159925],[-6.31659,57.160889],[-6.312861,57.159358],[-6.310759,57.159781],[-6.309584,57.161342],[-6.312665,57.161433],[-6.31423,57.162436],[-6.314589,57.163242],[-6.311762,57.163911],[-6.309954,57.16324],[-6.309521,57.161587],[-6.30845,57.160068],[-6.306178,57.160807],[-6.305242,57.161801],[-6.303794,57.161374],[-6.302177,57.161632],[-6.300522,57.161347],[-6.299398,57.162146],[-6.296728,57.162957],[-6.291644,57.163576],[-6.287911,57.164572],[-6.28669,57.164393],[-6.280566,57.165322],[-6.27665,57.166315],[-6.274488,57.166371],[-6.27213,57.16731],[-6.268859,57.167943],[-6.266114,57.167893],[-6.264254,57.168847],[-6.261202,57.169513],[-6.253335,57.170567],[-6.250682,57.170271],[-6.24796,57.170326],[-6.2464,57.169718],[-6.245491,57.170302],[-6.242532,57.170636],[-6.238605,57.171907],[-6.237198,57.171253],[-6.235525,57.171899],[-6.229632,57.173496],[-6.226275,57.173744],[-6.222966,57.174706],[-6.217685,57.175441],[-6.212905,57.177158],[-6.208872,57.177433],[-6.205915,57.177136],[-6.203138,57.176083],[-6.200438,57.175566],[-6.198352,57.175641],[-6.195886,57.175067],[-6.193614,57.175035],[-6.19211,57.174249],[-6.18878,57.174235],[-6.18669,57.173324],[-6.183123,57.173992],[-6.177914,57.17426],[-6.174158,57.174138],[-6.170138,57.175189],[-6.167117,57.176666],[-6.165223,57.179543],[-6.165023,57.182176],[-6.164541,57.182678],[-6.166287,57.185021],[-6.166737,57.186588],[-6.166049,57.188338],[-6.164397,57.188896],[-6.166652,57.190238],[-6.16557,57.191551],[-6.165356,57.19292],[-6.167338,57.193601],[-6.169099,57.19526],[-6.169072,57.196713],[-6.168129,57.198552],[-6.165233,57.199174],[-6.163293,57.199086],[-6.163463,57.198163],[-6.16262,57.197401],[-6.161166,57.19778],[-6.159362,57.196694],[-6.159463,57.195751],[-6.158649,57.194402],[-6.155068,57.193491],[-6.15524,57.194578],[-6.154072,57.195242],[-6.154378,57.196194],[-6.15066,57.195984],[-6.149602,57.195417],[-6.148205,57.193669],[-6.145503,57.188174],[-6.143814,57.187164],[-6.143154,57.188517],[-6.139556,57.188258],[-6.138436,57.187423],[-6.134205,57.185986],[-6.133364,57.186201],[-6.1307,57.184373],[-6.12932,57.184697],[-6.127706,57.185888],[-6.124991,57.186863],[-6.12298,57.188953],[-6.123628,57.189561],[-6.124382,57.19298],[-6.12287,57.191524],[-6.117348,57.191242],[-6.112468,57.190332],[-6.111093,57.189586],[-6.1112,57.187798],[-6.109551,57.186372],[-6.109391,57.185676],[-6.110421,57.183709],[-6.109729,57.182464],[-6.110302,57.181209],[-6.109947,57.18033],[-6.110614,57.177539],[-6.107502,57.175689],[-6.106141,57.173122],[-6.10195,57.170111],[-6.102329,57.16831],[-6.103175,57.166681],[-6.103077,57.165799],[-6.1047,57.164172],[-6.104341,57.162799],[-6.105035,57.161895],[-6.104939,57.160661],[-6.105733,57.159089],[-6.108416,57.155531],[-6.107855,57.15458],[-6.108631,57.153149],[-6.106574,57.150669],[-6.106327,57.149461],[-6.108127,57.147836],[-6.106769,57.14591],[-6.109061,57.14501],[-6.108682,57.144159],[-6.109794,57.142693],[-6.111051,57.142284],[-6.111765,57.140438],[-6.111518,57.139525],[-6.112388,57.138795],[-6.112774,57.137118],[-6.107734,57.134267],[-6.104306,57.134896],[-6.100708,57.136152],[-6.098804,57.13576],[-6.096938,57.133393],[-6.096709,57.131921],[-6.093158,57.131066],[-6.09177,57.129502],[-6.089747,57.128633],[-6.087533,57.128269],[-6.086687,57.126602],[-6.085455,57.126448],[-6.083184,57.126918],[-6.082662,57.128334],[-6.080518,57.128857],[-6.080409,57.130916],[-6.07814,57.132015],[-6.076683,57.132071],[-6.075435,57.133805],[-6.075324,57.135225],[-6.074523,57.135462],[-6.074349,57.137178],[-6.072097,57.137736],[-6.072791,57.138663],[-6.069368,57.139529],[-6.067441,57.141117],[-6.066901,57.142982],[-6.065524,57.143401],[-6.065006,57.147113],[-6.064449,57.148741],[-6.06529,57.150822],[-6.06399,57.151867],[-6.062157,57.152071],[-6.05998,57.153251],[-6.059917,57.153955],[-6.056255,57.157675],[-6.055458,57.15909],[-6.055325,57.16127],[-6.05442,57.161695],[-6.053525,57.163664],[-6.051284,57.166073],[-6.0494,57.167209],[-6.048691,57.168349],[-6.049015,57.171418],[-6.048103,57.172017],[-6.04788,57.173487],[-6.050081,57.176306],[-6.048536,57.179634],[-6.045128,57.179475],[-6.043535,57.178793],[-6.040891,57.178641],[-6.038339,57.179037],[-6.036675,57.178612],[-6.035052,57.179968],[-6.031792,57.180961],[-6.031832,57.181582],[-6.029501,57.183468],[-6.028722,57.187852],[-6.02733,57.189519],[-6.027396,57.191767],[-6.026478,57.193979],[-6.025365,57.194988],[-6.025899,57.196589],[-6.02576,57.198337],[-6.026532,57.200294],[-6.026409,57.202619],[-6.02757,57.205648],[-6.027201,57.206946],[-6.027719,57.208536],[-6.031041,57.208749],[-6.034593,57.211661],[-6.035754,57.212932],[-6.037804,57.215902],[-6.038108,57.21742],[-6.03759,57.220109],[-6.038817,57.221306],[-6.040618,57.22218],[-6.041279,57.224521],[-6.037708,57.227189],[-6.033974,57.22632],[-6.029831,57.224588],[-6.030714,57.222667],[-6.030413,57.221448],[-6.027684,57.220247],[-6.025533,57.218635],[-6.024164,57.218016],[-6.021629,57.215483],[-6.02243,57.213967],[-6.020367,57.209486],[-6.020252,57.206492],[-6.017889,57.206099],[-6.015495,57.206222],[-6.011383,57.206054],[-6.009852,57.204977],[-6.008002,57.204481],[-6.007692,57.203573],[-6.006243,57.203354],[-6.007164,57.201761],[-6.006483,57.200728],[-6.002933,57.199611],[-6.002641,57.197555],[-6.003829,57.196442],[-6.003344,57.195635],[-6.001292,57.194682],[-5.99942,57.192505],[-5.996767,57.190821],[-5.996529,57.189326],[-5.993032,57.185639],[-5.99316,57.184416],[-5.994173,57.183433],[-5.993279,57.180142],[-5.993986,57.176722],[-5.994933,57.174289],[-5.995854,57.173192],[-5.995408,57.171498],[-5.993368,57.169075],[-5.991677,57.168557],[-5.985853,57.168272],[-5.981156,57.167383],[-5.976433,57.167504],[-5.975167,57.167919],[-5.972741,57.167816],[-5.970062,57.169428],[-5.968386,57.170007],[-5.965949,57.170282],[-5.963127,57.170128],[-5.960942,57.171281],[-5.957728,57.171337],[-5.957016,57.17203],[-5.953225,57.172649],[-5.950712,57.173604],[-5.948392,57.173196],[-5.945294,57.174342],[-5.94253,57.174109],[-5.940141,57.175232],[-5.938425,57.175124],[-5.935399,57.17601],[-5.931177,57.174453],[-5.929194,57.174955],[-5.926911,57.174348],[-5.921593,57.171183],[-5.917323,57.17111],[-5.913903,57.170466],[-5.912444,57.171231],[-5.908869,57.171082],[-5.906045,57.171534],[-5.903895,57.172334],[-5.901711,57.171242],[-5.90039,57.172137],[-5.901855,57.173786],[-5.897989,57.176353],[-5.897971,57.178112],[-5.896513,57.178966],[-5.894395,57.179028],[-5.892569,57.179498],[-5.889224,57.178113],[-5.887795,57.17853],[-5.885121,57.177426],[-5.885608,57.176786],[-5.882773,57.176667],[-5.881252,57.176216],[-5.877978,57.176092],[-5.874772,57.176776],[-5.872835,57.17773],[-5.869811,57.178413],[-5.868443,57.179974],[-5.86275,57.182213],[-5.860133,57.18237],[-5.858259,57.180751],[-5.854794,57.182449],[-5.854429,57.183396],[-5.85272,57.183448],[-5.852179,57.184849],[-5.849859,57.185303],[-5.849023,57.186183],[-5.846766,57.186369],[-5.845385,57.187976],[-5.843592,57.188889],[-5.838654,57.189261],[-5.837603,57.188866],[-5.840342,57.187096],[-5.841375,57.185406],[-5.84329,57.183198],[-5.845743,57.182031],[-5.847419,57.182069],[-5.848477,57.181497],[-5.853123,57.18064],[-5.855281,57.179265],[-5.855234,57.176749],[-5.856758,57.175884],[-5.85795,57.175883],[-5.859515,57.175017],[-5.861798,57.174605],[-5.863516,57.173702],[-5.866417,57.171369],[-5.87058,57.17089],[-5.871224,57.171032],[-5.877152,57.168529],[-5.883084,57.168593],[-5.884915,57.167192],[-5.88662,57.166963],[-5.888784,57.167319],[-5.892076,57.166987],[-5.893818,57.167266],[-5.896893,57.165732],[-5.899767,57.165368],[-5.902831,57.165313],[-5.904702,57.165709],[-5.906409,57.165341],[-5.907783,57.165577],[-5.9096,57.166559],[-5.911134,57.165652],[-5.9152,57.165601],[-5.916693,57.164615],[-5.91697,57.16333],[-5.920375,57.160323],[-5.923234,57.159348],[-5.92441,57.159361],[-5.926449,57.158461],[-5.926275,57.156969],[-5.928431,57.155153],[-5.928937,57.156409],[-5.930904,57.158568],[-5.931804,57.158554],[-5.93417,57.154114],[-5.93695,57.153575],[-5.938581,57.152064],[-5.940881,57.151723],[-5.941961,57.15025],[-5.941423,57.148664],[-5.941621,57.146977],[-5.94285,57.14632],[-5.944138,57.14672],[-5.945656,57.145815],[-5.948029,57.145455],[-5.949839,57.145844],[-5.956386,57.1444],[-5.958668,57.144625],[-5.960385,57.143437],[-5.959681,57.142426],[-5.95968,57.141023],[-5.961931,57.142426],[-5.963095,57.142713],[-5.965702,57.141655],[-5.968361,57.141076],[-5.972532,57.138719],[-5.974033,57.138365],[-5.976331,57.13644],[-5.973893,57.135443],[-5.971114,57.135437],[-5.969889,57.135044],[-5.970102,57.134098],[-5.971755,57.133555],[-5.971533,57.132717],[-5.975321,57.13034],[-5.978317,57.130141],[-5.979454,57.131184],[-5.981143,57.131814],[-5.984175,57.13049],[-5.984636,57.129706],[-5.986209,57.129418],[-5.987251,57.128418],[-5.990118,57.127873],[-5.992292,57.126868],[-5.995434,57.126184],[-5.997756,57.124111],[-5.997732,57.123446],[-5.999151,57.12149],[-6.000878,57.12003],[-6.001399,57.118503],[-6.002698,57.117908],[-6.002851,57.116411],[-6.004253,57.115701],[-6.004077,57.113687],[-6.00036,57.114544],[-5.997771,57.113985],[-5.993467,57.114628],[-5.991326,57.113288],[-5.989439,57.112818],[-5.991356,57.111215],[-5.990988,57.11018],[-5.988248,57.109275],[-5.986992,57.107905],[-5.98567,57.107304],[-5.985967,57.105794],[-5.988484,57.104528],[-5.990779,57.10497],[-5.992754,57.104393],[-5.994621,57.104616],[-5.998113,57.103367],[-5.998726,57.100478],[-6.000097,57.100165],[-6.002142,57.098526],[-6.001908,57.096735],[-6.003295,57.094973],[-6.004293,57.094734],[-6.005637,57.092497],[-6.005837,57.09121],[-6.00817,57.090105],[-6.00835,57.088099],[-6.007482,57.086787],[-6.008492,57.085896],[-6.007556,57.084568],[-6.008276,57.08352],[-6.007053,57.082439],[-6.008735,57.079508],[-6.006709,57.07956],[-6.005177,57.078296],[-6.006452,57.07794],[-6.007326,57.074724],[-6.005306,57.073827],[-6.002483,57.073522],[-6.00439,57.072296],[-6.007686,57.072555],[-6.009954,57.071313],[-6.011836,57.07177],[-6.013652,57.069936],[-6.015502,57.07025],[-6.017371,57.06983],[-6.018676,57.070907],[-6.021683,57.071386],[-6.025101,57.070319],[-6.025538,57.067881],[-6.027807,57.067804],[-6.028095,57.06574],[-6.030318,57.065084],[-6.03075,57.063361],[-6.032579,57.062039],[-6.032747,57.060847],[-6.031441,57.058704],[-6.032882,57.057533],[-6.036649,57.056742],[-6.038333,57.056827],[-6.038114,57.055035],[-6.037345,57.05479],[-6.037301,57.052948],[-6.034829,57.052745],[-6.034893,57.051286],[-6.034065,57.049968],[-6.037683,57.049254],[-6.037641,57.047421],[-6.035245,57.047233],[-6.033022,57.046059],[-6.032906,57.044386],[-6.031424,57.042815],[-6.029525,57.041959],[-6.030524,57.041432],[-6.029108,57.040399],[-6.029336,57.039227],[-6.031974,57.037851],[-6.031721,57.036965],[-6.028411,57.03686],[-6.025271,57.037105],[-6.024064,57.035782],[-6.024516,57.034167],[-6.022886,57.033284],[-6.022987,57.032687],[-6.020737,57.032247],[-6.020097,57.031436],[-6.01839,57.031963],[-6.016597,57.031171],[-6.017797,57.030372],[-6.019839,57.030419],[-6.020026,57.029334],[-6.019284,57.028337],[-6.021371,57.027812],[-6.019994,57.025675],[-6.0232,57.025595],[-6.022982,57.024419],[-6.021097,57.024138],[-6.018902,57.021907],[-6.020609,57.021614],[-6.019063,57.02027],[-6.018756,57.018568],[-6.017765,57.017887],[-6.016468,57.018074],[-6.016242,57.018958],[-6.017627,57.020559],[-6.015127,57.020769],[-6.014098,57.022385],[-6.013218,57.022256],[-6.010758,57.025122],[-6.008402,57.025292],[-6.006084,57.024517],[-6.005487,57.023034],[-6.003596,57.021472],[-6.003354,57.020297],[-6.001849,57.020135],[-5.999517,57.020946],[-5.999433,57.022163],[-5.997158,57.022928],[-5.996307,57.024057],[-5.993163,57.02449],[-5.991499,57.023967],[-5.990254,57.025423],[-5.988214,57.026005],[-5.987897,57.02705],[-5.985015,57.028077],[-5.983923,57.027815],[-5.980687,57.028466],[-5.980321,57.029211],[-5.978459,57.028834],[-5.976436,57.029807],[-5.977162,57.03035],[-5.974696,57.031121],[-5.973322,57.031068],[-5.971305,57.031928],[-5.967919,57.031375],[-5.965514,57.028162],[-5.963678,57.028474],[-5.962319,57.027324],[-5.960484,57.027589],[-5.959698,57.028256],[-5.960653,57.030455],[-5.957806,57.031873],[-5.956026,57.033649],[-5.956484,57.034392],[-5.955309,57.035297],[-5.952464,57.035965],[-5.950081,57.035567],[-5.947525,57.037542],[-5.944867,57.038101],[-5.943713,57.037875],[-5.940126,57.038969],[-5.937669,57.038865],[-5.935475,57.040526],[-5.933998,57.040708],[-5.934199,57.041988],[-5.932896,57.042125],[-5.931112,57.04093],[-5.931445,57.042985],[-5.930761,57.043553],[-5.928331,57.043302],[-5.927867,57.042219],[-5.926036,57.042361],[-5.923828,57.043169],[-5.923063,57.044252],[-5.919501,57.047186],[-5.920538,57.048784],[-5.918931,57.049476],[-5.918413,57.050349],[-5.916974,57.050849],[-5.914481,57.053666],[-5.912515,57.053317],[-5.910487,57.053784],[-5.910394,57.055019],[-5.909561,57.055932],[-5.906228,57.05667],[-5.905006,57.059154],[-5.903442,57.058056],[-5.900531,57.057822],[-5.901393,57.059585],[-5.903505,57.05999],[-5.90407,57.060598],[-5.9035,57.061849],[-5.901744,57.06238],[-5.902139,57.063574],[-5.900393,57.064069],[-5.898127,57.063956],[-5.89846,57.062824],[-5.895664,57.061542],[-5.892878,57.061765],[-5.895272,57.064609],[-5.897829,57.064201],[-5.898723,57.065515],[-5.89748,57.065988],[-5.896734,57.06883],[-5.894552,57.069803],[-5.893675,57.071661],[-5.890477,57.072504],[-5.889393,57.074591],[-5.886958,57.076772],[-5.886265,57.077967],[-5.887117,57.079077],[-5.886467,57.079508],[-5.888527,57.081282],[-5.88331,57.082805],[-5.881179,57.084075],[-5.87678,57.084166],[-5.87062,57.086508],[-5.870973,57.088187],[-5.870517,57.089907],[-5.868219,57.091325],[-5.867028,57.092557],[-5.864798,57.093192],[-5.863641,57.093929],[-5.864003,57.095342],[-5.860804,57.098837],[-5.861285,57.100653],[-5.860104,57.102236],[-5.858064,57.102975],[-5.855379,57.103319],[-5.855871,57.105401],[-5.854696,57.106796],[-5.855618,57.109129],[-5.85193,57.11139],[-5.849893,57.111934],[-5.845928,57.110455],[-5.839466,57.110082],[-5.838627,57.109175],[-5.835392,57.108091],[-5.833609,57.108278],[-5.83119,57.10932],[-5.829163,57.109139],[-5.829094,57.107514],[-5.827898,57.107609],[-5.826159,57.109015],[-5.823686,57.109361],[-5.821627,57.111855],[-5.819509,57.112149],[-5.815949,57.114083],[-5.815698,57.115983],[-5.813246,57.118094],[-5.81369,57.119515],[-5.811351,57.120081],[-5.810011,57.119501],[-5.8065,57.120084],[-5.804297,57.121082],[-5.804719,57.12307],[-5.80347,57.125261],[-5.805432,57.127148],[-5.80366,57.12784],[-5.801123,57.127117],[-5.799639,57.129171],[-5.799255,57.130833],[-5.797673,57.131924],[-5.798908,57.132263],[-5.801888,57.131594],[-5.803439,57.131722],[-5.806168,57.131329],[-5.805926,57.137035],[-5.803143,57.137777],[-5.797996,57.136284],[-5.796755,57.136924],[-5.790472,57.137343],[-5.788516,57.137827],[-5.78782,57.139295],[-5.78905,57.139845],[-5.789924,57.141352],[-5.792315,57.142431],[-5.797844,57.142347],[-5.799952,57.141669],[-5.800935,57.143476],[-5.799802,57.144714],[-5.798519,57.144896],[-5.799824,57.146736],[-5.800914,57.146492],[-5.802033,57.144939],[-5.803455,57.144643],[-5.805794,57.145744],[-5.803077,57.146458],[-5.804316,57.147557],[-5.802417,57.148191],[-5.803332,57.149088],[-5.799318,57.150844],[-5.799021,57.152223],[-5.797627,57.152731],[-5.798968,57.154276],[-5.797275,57.155657],[-5.799573,57.156057],[-5.800049,57.156628],[-5.799363,57.158623],[-5.797708,57.159247],[-5.797095,57.160636],[-5.797193,57.161757],[-5.799606,57.164467],[-5.801257,57.165311],[-5.800507,57.166552],[-5.802265,57.167313],[-5.803193,57.169006],[-5.802237,57.17082],[-5.803009,57.171965],[-5.806082,57.173526],[-5.806833,57.175347],[-5.808473,57.176165],[-5.80354,57.177047],[-5.802089,57.176947],[-5.798618,57.174423],[-5.795941,57.174063],[-5.795042,57.17293],[-5.792314,57.172033],[-5.791592,57.171039],[-5.788087,57.169302],[-5.787222,57.167966],[-5.78106,57.166862],[-5.775987,57.168233],[-5.77568,57.168633],[-5.772408,57.169735],[-5.765895,57.169975],[-5.765397,57.169801],[-5.761059,57.171006],[-5.759361,57.172208],[-5.75778,57.172372],[-5.754079,57.173495],[-5.752589,57.174308],[-5.750832,57.17445],[-5.750302,57.176655],[-5.748109,57.177476],[-5.745662,57.177743],[-5.743032,57.178586],[-5.739061,57.178358],[-5.73574,57.178816],[-5.732971,57.17978],[-5.727472,57.180901],[-5.72255,57.182385],[-5.721264,57.182956],[-5.717869,57.183795],[-5.713343,57.186014],[-5.709151,57.18772],[-5.708316,57.188806],[-5.703805,57.190881],[-5.702275,57.191066],[-5.699902,57.192511],[-5.69792,57.192812],[-5.696167,57.194402],[-5.694242,57.1952],[-5.694552,57.196643],[-5.693341,57.197861],[-5.691302,57.19851],[-5.688362,57.198758],[-5.68682,57.199815],[-5.682691,57.201599],[-5.680451,57.203392],[-5.677758,57.204383],[-5.676935,57.205014],[-5.672947,57.206304],[-5.672125,57.207956],[-5.669054,57.209066],[-5.669031,57.211085],[-5.668036,57.212827],[-5.66932,57.21599],[-5.667398,57.219],[-5.665674,57.219661],[-5.665627,57.220517],[-5.663947,57.221047],[-5.66429,57.222075],[-5.662644,57.225194],[-5.663695,57.22702],[-5.665003,57.227669],[-5.664942,57.229145],[-5.665999,57.230657],[-5.667398,57.231753],[-5.66773,57.232763],[-5.667095,57.234041],[-5.667231,57.235408],[-5.665475,57.238426],[-5.662773,57.240186],[-5.659423,57.244029],[-5.653813,57.24666],[-5.654013,57.247086],[-5.652476,57.248902],[-5.650964,57.249412],[-5.64876,57.25199],[-5.649044,57.253434],[-5.647578,57.25514],[-5.648679,57.256618],[-5.65137,57.257659],[-5.652614,57.257407],[-5.65523,57.258275],[-5.656423,57.259013],[-5.658657,57.261636],[-5.659769,57.261973],[-5.661487,57.264067],[-5.664563,57.264296],[-5.668497,57.264896],[-5.670784,57.26487],[-5.675102,57.263826],[-5.677975,57.264263],[-5.679349,57.264066],[-5.68153,57.264388],[-5.684568,57.264066],[-5.686428,57.263089],[-5.688451,57.262828],[-5.691767,57.263467],[-5.699655,57.263203],[-5.702083,57.262682],[-5.704193,57.263115],[-5.706391,57.262366],[-5.711377,57.26221],[-5.713272,57.262572],[-5.716181,57.261389],[-5.718875,57.261039],[-5.722327,57.261297],[-5.728031,57.260525],[-5.732005,57.260766],[-5.733681,57.261626],[-5.731243,57.262583],[-5.729443,57.2639],[-5.727572,57.264755],[-5.72357,57.265139],[-5.720327,57.266297],[-5.717471,57.266777],[-5.711333,57.270173],[-5.710998,57.271212],[-5.712215,57.271599],[-5.714001,57.27022],[-5.716634,57.270731],[-5.717241,57.272485],[-5.718739,57.273028],[-5.720651,57.272943],[-5.721053,57.272177],[-5.723054,57.271656],[-5.724068,57.272484],[-5.727527,57.271796],[-5.729873,57.27183],[-5.733253,57.271434],[-5.740698,57.269241],[-5.742199,57.270608],[-5.74112,57.272593],[-5.739886,57.270247],[-5.735598,57.270995],[-5.733263,57.271979],[-5.7313,57.271836],[-5.728082,57.272573],[-5.724657,57.273697],[-5.727063,57.273882],[-5.729468,57.272934],[-5.735342,57.273576],[-5.738399,57.274585],[-5.743153,57.274802],[-5.746432,57.273883],[-5.748118,57.273978],[-5.752563,57.272911],[-5.753782,57.273316],[-5.76037,57.271428],[-5.763119,57.271211],[-5.764869,57.271846],[-5.766805,57.27204],[-5.770102,57.271572],[-5.771193,57.271935],[-5.775857,57.270567],[-5.77682,57.270974],[-5.782802,57.267647],[-5.784282,57.268079],[-5.786939,57.267294],[-5.789748,57.26564],[-5.790906,57.265447],[-5.791899,57.263489],[-5.793834,57.263179],[-5.796042,57.26335],[-5.796229,57.262589],[-5.798104,57.262506],[-5.799564,57.261544],[-5.803438,57.26033],[-5.803438,57.259768],[-5.806079,57.258434],[-5.808195,57.258118],[-5.808761,57.257089],[-5.810808,57.256195],[-5.814094,57.256203],[-5.816819,57.257447],[-5.819829,57.257517],[-5.821531,57.256885],[-5.823124,57.257129],[-5.825912,57.255614],[-5.826905,57.254393],[-5.829406,57.254199],[-5.831098,57.253244],[-5.832822,57.253232],[-5.835597,57.251196],[-5.84086,57.249889],[-5.841229,57.24937],[-5.844621,57.249054],[-5.847915,57.24733],[-5.853561,57.245145],[-5.854761,57.244961],[-5.855976,57.243991],[-5.857363,57.244337],[-5.860781,57.242833],[-5.861674,57.2439],[-5.858707,57.245759],[-5.855598,57.246417],[-5.852822,57.247341],[-5.850439,57.247667],[-5.848172,57.248748],[-5.847276,57.250497],[-5.845345,57.251379],[-5.844623,57.252732],[-5.846661,57.252629],[-5.848059,57.253548],[-5.847957,57.254154],[-5.85143,57.253737],[-5.856279,57.249735],[-5.858197,57.24897],[-5.858942,57.249347],[-5.861704,57.249429],[-5.862047,57.248591],[-5.864914,57.247217],[-5.868031,57.246465],[-5.868229,57.247358],[-5.871015,57.246529],[-5.873635,57.244644],[-5.8736,57.243646],[-5.875824,57.24295],[-5.87578,57.241096],[-5.878759,57.239082],[-5.88126,57.238458],[-5.883317,57.238935],[-5.885792,57.237971],[-5.887666,57.238414],[-5.891479,57.238544],[-5.895416,57.239702],[-5.898698,57.239843],[-5.901547,57.241426],[-5.90459,57.241317],[-5.90657,57.241879],[-5.910609,57.241786],[-5.910461,57.243258],[-5.909528,57.244013],[-5.909391,57.245456],[-5.907935,57.24706],[-5.907943,57.248855],[-5.907363,57.250655],[-5.904689,57.252883],[-5.906266,57.254046],[-5.91134,57.255732],[-5.913189,57.257203],[-5.915757,57.258188],[-5.91688,57.260086],[-5.921621,57.262069],[-5.922433,57.26261],[-5.927741,57.264144],[-5.92947,57.264018],[-5.932362,57.262817],[-5.936327,57.26374],[-5.936718,57.262972],[-5.935432,57.261498],[-5.935394,57.260366],[-5.937407,57.259174],[-5.939221,57.259221],[-5.944276,57.260869],[-5.946473,57.262558],[-5.951853,57.263445],[-5.953294,57.264038],[-5.962243,57.266314],[-5.963082,57.266859],[-5.968499,57.268321],[-5.971632,57.269349],[-5.973506,57.269259],[-5.97494,57.270076],[-5.976378,57.268251],[-5.978899,57.267329],[-5.979698,57.267826],[-5.982891,57.267915],[-5.982892,57.268987],[-5.981243,57.269282],[-5.986054,57.270935],[-5.988899,57.270859],[-5.991056,57.270436],[-5.993871,57.270419],[-5.997676,57.272174],[-5.999517,57.273259],[-5.999788,57.274269],[-6.002541,57.276323],[-6.002392,57.276908],[-6.005314,57.279624],[-6.00799,57.280249],[-6.008989,57.280977],[-6.010703,57.281066],[-6.013388,57.283008],[-6.014793,57.284818],[-6.01788,57.286598],[-6.020647,57.287683],[-6.024824,57.287688],[-6.026466,57.28684],[-6.027377,57.28575],[-6.031037,57.285133],[-6.036809,57.282349],[-6.03913,57.279819],[-6.041088,57.278826],[-6.042721,57.276854],[-6.046884,57.277199],[-6.048799,57.277993],[-6.051373,57.277316],[-6.05492,57.275529],[-6.057229,57.275018],[-6.059787,57.273897],[-6.061923,57.2722],[-6.065289,57.270284],[-6.067783,57.268144],[-6.070195,57.266843],[-6.076422,57.266191],[-6.077103,57.267019],[-6.07628,57.26888],[-6.07667,57.270081],[-6.080119,57.269973],[-6.0829,57.270584],[-6.084608,57.270043],[-6.085606,57.270959],[-6.084117,57.272797],[-6.082668,57.272458],[-6.080472,57.273015],[-6.080507,57.274601],[-6.078563,57.27653],[-6.073438,57.278302],[-6.06499,57.28246],[-6.05843,57.285159],[-6.055234,57.286143],[-6.046051,57.290216],[-6.041644,57.293267],[-6.041338,57.295089],[-6.042505,57.296031],[-6.045446,57.296724],[-6.047046,57.296695],[-6.050315,57.297799],[-6.05061,57.299196],[-6.048545,57.301565],[-6.04886,57.302769],[-6.05031,57.304691],[-6.047883,57.30914],[-6.048055,57.309943],[-6.051752,57.311906],[-6.057031,57.313664],[-6.058669,57.313292],[-6.063374,57.313765],[-6.065075,57.313445],[-6.066091,57.313915],[-6.070154,57.31444],[-6.072279,57.313895],[-6.077744,57.311546],[-6.080693,57.311544],[-6.082886,57.310565],[-6.084446,57.310995],[-6.089082,57.311447],[-6.092878,57.312747],[-6.09844,57.313312],[-6.104653,57.314891],[-6.107421,57.314183],[-6.109941,57.314085],[-6.113377,57.313152],[-6.114981,57.313142],[-6.116457,57.313727],[-6.119326,57.313301],[-6.126097,57.310577],[-6.128009,57.309307],[-6.131849,57.30836],[-6.134408,57.30706],[-6.137487,57.306997],[-6.139215,57.306409],[-6.1431,57.303655],[-6.145171,57.301316],[-6.147323,57.299991],[-6.151697,57.298783],[-6.155955,57.297066],[-6.158552,57.297335],[-6.16,57.296851],[-6.161858,57.296902],[-6.165965,57.29481],[-6.166183,57.296439],[-6.167713,57.296753],[-6.1672,57.298087],[-6.16368,57.299939],[-6.160642,57.299662],[-6.159971,57.300849],[-6.155649,57.302665],[-6.14092,57.311663],[-6.131914,57.316254],[-6.129552,57.316903],[-6.125552,57.317025],[-6.119599,57.318735],[-6.115457,57.318608],[-6.113273,57.319681],[-6.110482,57.32032],[-6.107638,57.320155],[-6.105267,57.318542],[-6.103096,57.320248],[-6.100136,57.32207],[-6.100074,57.323692],[-6.101225,57.325543],[-6.103479,57.326538],[-6.105624,57.326735],[-6.108157,57.3293],[-6.107168,57.330999],[-6.10709,57.332595],[-6.105064,57.333554],[-6.106844,57.334319],[-6.107116,57.335233],[-6.104818,57.336905],[-6.100883,57.338579],[-6.096464,57.338921],[-6.095125,57.339436],[-6.095421,57.340829],[-6.097475,57.341347],[-6.099211,57.341259],[-6.10414,57.345702],[-6.103705,57.343225],[-6.102544,57.341618],[-6.103289,57.34002],[-6.102909,57.339146],[-6.104266,57.33842],[-6.107107,57.338029],[-6.110149,57.338091],[-6.111736,57.338764],[-6.113304,57.340361],[-6.115216,57.341351],[-6.116945,57.341745],[-6.118101,57.343557],[-6.118228,57.344871],[-6.120401,57.347279],[-6.121588,57.347334],[-6.12376,57.348828],[-6.125359,57.352112],[-6.125539,57.353712],[-6.127443,57.354388],[-6.128183,57.355836],[-6.129267,57.356284],[-6.130543,57.358033],[-6.133421,57.360405],[-6.13656,57.360619],[-6.139243,57.365827],[-6.141596,57.368173],[-6.146212,57.371033],[-6.145778,57.372554],[-6.14417,57.372952],[-6.140744,57.372715],[-6.13823,57.372047],[-6.136045,57.37238],[-6.134732,57.373057],[-6.132397,57.375306],[-6.131919,57.377268],[-6.130198,57.380027],[-6.129709,57.3827],[-6.129096,57.383395],[-6.126685,57.384239],[-6.12649,57.38554],[-6.124208,57.38775],[-6.124013,57.391938],[-6.125495,57.395338],[-6.127135,57.396296],[-6.127652,57.397484],[-6.13044,57.39791],[-6.133332,57.400144],[-6.134912,57.401971],[-6.134892,57.402754],[-6.139056,57.405544],[-6.142075,57.406169],[-6.149343,57.405754],[-6.152202,57.406064],[-6.154163,57.405945],[-6.157435,57.406228],[-6.16043,57.406116],[-6.161834,57.40638],[-6.163162,57.405823],[-6.166493,57.405371],[-6.167298,57.40373],[-6.168968,57.402596],[-6.172156,57.402135],[-6.174663,57.402573],[-6.175695,57.402278],[-6.177828,57.403156],[-6.177965,57.404428],[-6.179651,57.405483],[-6.180824,57.407173],[-6.182421,57.407577],[-6.18288,57.406246],[-6.184021,57.405255],[-6.182609,57.403777],[-6.183409,57.40288],[-6.183077,57.400568],[-6.185373,57.399843],[-6.186737,57.398484],[-6.187752,57.396759],[-6.190207,57.39735],[-6.192081,57.395983],[-6.193094,57.395811],[-6.195011,57.394103],[-6.195083,57.39321],[-6.197498,57.390265],[-6.19895,57.390917],[-6.202136,57.390487],[-6.200887,57.392007],[-6.200985,57.393312],[-6.202006,57.394257],[-6.201273,57.395279],[-6.201381,57.396831],[-6.19868,57.400443],[-6.198597,57.401823],[-6.196853,57.40315],[-6.197324,57.404395],[-6.198985,57.40517],[-6.19984,57.406373],[-6.200324,57.408738],[-6.197055,57.410996],[-6.197733,57.412139],[-6.195521,57.41189],[-6.194598,57.410491],[-6.191901,57.408968],[-6.190846,57.408995],[-6.190137,57.410665],[-6.191993,57.411808],[-6.191207,57.41262],[-6.189088,57.412974],[-6.188587,57.414783],[-6.18634,57.415477],[-6.184408,57.415315],[-6.181753,57.414584],[-6.17586,57.412272],[-6.173408,57.412839],[-6.168978,57.41781],[-6.167338,57.41908],[-6.160943,57.421485],[-6.157695,57.421651],[-6.154091,57.422575],[-6.150772,57.424249],[-6.146941,57.427802],[-6.145732,57.430085],[-6.146194,57.433199],[-6.145444,57.436515],[-6.144353,57.438224],[-6.144564,57.438977],[-6.143352,57.440347],[-6.143504,57.443755],[-6.140522,57.449604],[-6.14065,57.450512],[-6.139832,57.451978],[-6.1402,57.454277],[-6.139065,57.456549],[-6.139516,57.457294],[-6.137722,57.463041],[-6.137631,57.466587],[-6.136385,57.47268],[-6.140454,57.482887],[-6.139434,57.484935],[-6.140923,57.487539],[-6.140636,57.488983],[-6.142174,57.491868],[-6.142417,57.494153],[-6.143907,57.496465],[-6.147051,57.497827],[-6.148481,57.499969],[-6.143821,57.505712],[-6.142975,57.509741],[-6.142304,57.510523],[-6.141674,57.514244],[-6.142117,57.520353],[-6.140985,57.522162],[-6.141065,57.524187],[-6.14005,57.525853],[-6.140578,57.526818],[-6.141076,57.530396],[-6.141779,57.530773],[-6.141848,57.53314],[-6.142936,57.534184],[-6.142406,57.536359],[-6.1426,57.538219],[-6.141337,57.541812],[-6.139812,57.541974],[-6.139865,57.542841],[-6.138869,57.544164],[-6.139611,57.54458],[-6.138768,57.54651],[-6.140425,57.549115],[-6.141735,57.550324],[-6.14166,57.551136],[-6.142955,57.552442],[-6.144291,57.555289],[-6.143311,57.558262],[-6.143576,57.560301],[-6.143101,57.562113],[-6.145267,57.564155],[-6.148802,57.565623],[-6.145157,57.570103],[-6.145173,57.571343],[-6.146557,57.57431],[-6.144812,57.576328],[-6.143918,57.579208],[-6.139619,57.582986],[-6.140427,57.584866],[-6.142667,57.586231],[-6.145053,57.586895],[-6.148369,57.586089],[-6.150594,57.586519],[-6.152601,57.589813],[-6.154105,57.590647],[-6.155034,57.59189],[-6.155005,57.593034],[-6.156939,57.597715],[-6.159281,57.599346],[-6.16162,57.60019],[-6.166622,57.603088],[-6.168001,57.605256],[-6.170278,57.607623],[-6.172143,57.611449],[-6.174438,57.613882],[-6.175349,57.616268],[-6.174885,57.617259],[-6.175924,57.620107],[-6.17809,57.621739],[-6.17871,57.622834],[-6.182058,57.624616],[-6.186034,57.629663],[-6.188923,57.631533],[-6.190609,57.631835],[-6.191309,57.633252],[-6.19315,57.632566],[-6.193518,57.631878],[-6.195297,57.631565],[-6.198103,57.632563],[-6.201504,57.634419],[-6.204773,57.63681],[-6.206578,57.637195],[-6.208669,57.636658],[-6.211478,57.635262],[-6.213867,57.634866],[-6.220591,57.634168],[-6.228296,57.634868],[-6.233495,57.636473],[-6.235352,57.637362],[-6.23618,57.638678],[-6.236294,57.640513],[-6.234642,57.64309],[-6.237231,57.646334],[-6.236556,57.647935],[-6.23649,57.650826],[-6.239622,57.656531],[-6.242492,57.659271],[-6.245745,57.660829],[-6.246636,57.661674],[-6.247816,57.664014],[-6.247744,57.665161],[-6.249216,57.667755],[-6.249262,57.66979],[-6.251021,57.672559],[-6.253095,57.674787],[-6.255762,57.674917],[-6.257179,57.676758],[-6.257256,57.677556],[-6.260307,57.679234],[-6.259953,57.68001],[-6.261239,57.680956],[-6.263485,57.680421],[-6.26581,57.681418],[-6.271307,57.681695],[-6.27237,57.682235],[-6.274841,57.682124],[-6.276212,57.682644],[-6.278492,57.684887],[-6.27943,57.685157],[-6.279667,57.686664],[-6.281136,57.686765],[-6.285249,57.688733],[-6.286535,57.690439],[-6.28802,57.691107],[-6.290348,57.69076],[-6.293531,57.692075],[-6.294829,57.691968],[-6.296852,57.691046],[-6.299256,57.691262],[-6.301604,57.691087],[-6.303209,57.691591],[-6.303409,57.692882],[-6.302673,57.693468],[-6.298531,57.693891],[-6.297548,57.694223],[-6.29667,57.696307],[-6.296145,57.696483],[-6.296363,57.698602],[-6.294477,57.699206],[-6.293268,57.698563],[-6.291927,57.700079],[-6.293755,57.701326],[-6.293842,57.702703],[-6.295538,57.703477],[-6.296188,57.704777],[-6.295793,57.705834],[-6.296906,57.707572],[-6.29922,57.708024],[-6.300723,57.707312],[-6.301314,57.705637],[-6.302911,57.705227],[-6.305309,57.706814],[-6.30798,57.707303],[-6.311404,57.706575],[-6.313316,57.706617],[-6.313696,57.705781],[-6.317844,57.704992],[-6.317634,57.704078],[-6.31937,57.703847],[-6.319691,57.703013],[-6.321396,57.703158],[-6.32234,57.702271],[-6.322274,57.700663],[-6.328034,57.699873],[-6.32988,57.700066],[-6.330732,57.699605],[-6.335034,57.700536],[-6.338186,57.700275],[-6.341731,57.701467],[-6.342899,57.703153],[-6.34439,57.703749],[-6.345634,57.705298],[-6.347333,57.705595],[-6.349905,57.70736]]],[[[-5.820378,57.736711],[-5.822679,57.736379],[-5.824051,57.734085],[-5.823288,57.732598],[-5.822149,57.731846],[-5.822418,57.73057],[-5.819063,57.729912],[-5.815176,57.730506],[-5.814058,57.72995],[-5.813668,57.72856],[-5.811319,57.727556],[-5.809467,57.727688],[-5.808312,57.72677],[-5.805134,57.728035],[-5.800476,57.726808],[-5.799566,57.728229],[-5.794819,57.730471],[-5.793128,57.733264],[-5.789516,57.736973],[-5.792113,57.737472],[-5.795605,57.737087],[-5.797702,57.736484],[-5.799227,57.736843],[-5.800237,57.736053],[-5.803677,57.735757],[-5.806065,57.73497],[-5.808739,57.734979],[-5.810475,57.735426],[-5.810862,57.733432],[-5.814615,57.733238],[-5.815507,57.735238],[-5.820378,57.736711]]],[[[-6.297213,57.728142],[-6.298945,57.729503],[-6.302248,57.728767],[-6.302846,57.727577],[-6.30563,57.726817],[-6.30578,57.725391],[-6.304214,57.724383],[-6.302338,57.723732],[-6.297444,57.722784],[-6.295439,57.723103],[-6.293284,57.722151],[-6.292995,57.723043],[-6.291174,57.723162],[-6.291364,57.725609],[-6.292367,57.726522],[-6.293753,57.726241],[-6.29569,57.728046],[-6.297213,57.728142]]],[[[-6.421012,57.728077],[-6.423591,57.728751],[-6.424153,57.727877],[-6.422743,57.726968],[-6.420734,57.727034],[-6.421012,57.728077]]],[[[-6.439923,57.746543],[-6.443427,57.745633],[-6.443047,57.74432],[-6.43945,57.743516],[-6.436234,57.741227],[-6.434917,57.740774],[-6.433316,57.741015],[-6.431144,57.739827],[-6.429449,57.738075],[-6.427504,57.738673],[-6.428715,57.740624],[-6.431066,57.741872],[-6.431742,57.74107],[-6.433428,57.742408],[-6.43458,57.742616],[-6.437441,57.745646],[-6.438849,57.745745],[-6.439923,57.746543]]],[[[-3.947577,57.813109],[-3.948711,57.814131],[-3.949767,57.812695],[-3.947577,57.813109]]],[[[-3.949295,57.813965],[-3.951566,57.814379],[-3.953062,57.814331],[-3.953823,57.813857],[-3.95207,57.812733],[-3.949917,57.81261],[-3.949295,57.813965]]],[[[-3.94345,57.852694],[-3.947136,57.853229],[-3.95495,57.852474],[-3.962659,57.852283],[-3.959041,57.8515],[-3.950285,57.852343],[-3.947851,57.851933],[-3.941344,57.849809],[-3.940747,57.848793],[-3.937206,57.847403],[-3.928927,57.84197],[-3.926548,57.842063],[-3.929039,57.843557],[-3.939736,57.849602],[-3.940589,57.851365],[-3.94345,57.852694]]],[[[-5.653862,57.844844],[-5.654836,57.845392],[-5.654445,57.84636],[-5.65636,57.846539],[-5.656428,57.845382],[-5.655439,57.844686],[-5.653862,57.844844]]],[[[-5.632784,57.847204],[-5.63461,57.848234],[-5.637244,57.847071],[-5.639247,57.844537],[-5.641347,57.844469],[-5.642885,57.841416],[-5.644784,57.840112],[-5.643039,57.837604],[-5.641385,57.837665],[-5.639753,57.836697],[-5.640268,57.835787],[-5.639361,57.83482],[-5.639438,57.83342],[-5.63757,57.831813],[-5.634588,57.831442],[-5.632358,57.830387],[-5.630877,57.828824],[-5.624048,57.826521],[-5.623097,57.82502],[-5.618512,57.823155],[-5.616838,57.822122],[-5.612826,57.822376],[-5.610685,57.82219],[-5.605807,57.821041],[-5.60327,57.821349],[-5.602266,57.821822],[-5.602377,57.823376],[-5.600658,57.824345],[-5.599876,57.825983],[-5.601143,57.827347],[-5.60103,57.828934],[-5.601868,57.830168],[-5.603623,57.8306],[-5.605391,57.832684],[-5.610006,57.834054],[-5.613418,57.835848],[-5.618033,57.837002],[-5.619266,57.837934],[-5.622353,57.838591],[-5.622724,57.839832],[-5.623884,57.840728],[-5.625061,57.84003],[-5.626722,57.839862],[-5.627183,57.84068],[-5.62931,57.841208],[-5.630855,57.842148],[-5.633434,57.842321],[-5.633807,57.843425],[-5.632475,57.845816],[-5.632784,57.847204]]],[[[-5.716392,57.875261],[-5.718087,57.875116],[-5.718454,57.874326],[-5.711855,57.87261],[-5.709034,57.872909],[-5.708359,57.873491],[-5.711171,57.874321],[-5.712599,57.875354],[-5.714684,57.875665],[-5.716392,57.875261]]],[[[-5.471079,57.898901],[-5.472864,57.898151],[-5.474284,57.898782],[-5.476491,57.898475],[-5.478677,57.897772],[-5.478515,57.896972],[-5.48032,57.895731],[-5.479247,57.89546],[-5.481211,57.893343],[-5.480324,57.892549],[-5.480013,57.891164],[-5.480469,57.889767],[-5.481986,57.889488],[-5.479688,57.887888],[-5.480054,57.886268],[-5.478871,57.88564],[-5.479278,57.884789],[-5.477993,57.884244],[-5.476855,57.882504],[-5.47151,57.880803],[-5.467616,57.878658],[-5.46631,57.878415],[-5.463955,57.87954],[-5.461928,57.879349],[-5.462114,57.880485],[-5.460745,57.88152],[-5.460998,57.882565],[-5.460322,57.883873],[-5.461861,57.885575],[-5.462148,57.886983],[-5.461496,57.888529],[-5.462269,57.88929],[-5.462368,57.891723],[-5.463771,57.892966],[-5.463645,57.894286],[-5.465763,57.894889],[-5.46736,57.896396],[-5.46805,57.898045],[-5.470994,57.898108],[-5.471079,57.898901]]],[[[-5.22653,57.949416],[-5.231377,57.948992],[-5.235957,57.948979],[-5.239435,57.947805],[-5.239342,57.946493],[-5.236602,57.94516],[-5.234577,57.942475],[-5.232963,57.942103],[-5.231019,57.941065],[-5.22952,57.940941],[-5.227798,57.939722],[-5.222839,57.938814],[-5.222513,57.937915],[-5.223651,57.93691],[-5.221254,57.9365],[-5.217898,57.936679],[-5.214892,57.937164],[-5.212811,57.937064],[-5.2133,57.938166],[-5.217265,57.939607],[-5.216773,57.940339],[-5.215154,57.940847],[-5.213843,57.943011],[-5.212117,57.944398],[-5.208186,57.945908],[-5.208984,57.946886],[-5.211759,57.947953],[-5.212328,57.949031],[-5.213724,57.949422],[-5.21568,57.94908],[-5.216646,57.94844],[-5.219204,57.948596],[-5.221472,57.949284],[-5.224024,57.948905],[-5.22653,57.949416]]],[[[-5.36295,57.960221],[-5.364443,57.960482],[-5.365558,57.959682],[-5.36183,57.958871],[-5.361626,57.959893],[-5.36295,57.960221]]],[[[-5.360219,57.960852],[-5.361436,57.960842],[-5.361825,57.961663],[-5.362708,57.962148],[-5.364359,57.961362],[-5.363025,57.960841],[-5.361498,57.960791],[-5.36087,57.960313],[-5.360219,57.960852]]],[[[-5.456385,57.961781],[-5.459315,57.961468],[-5.463843,57.960288],[-5.462488,57.958945],[-5.460364,57.95867],[-5.455161,57.961592],[-5.456385,57.961781]]],[[[-5.445733,57.966715],[-5.44705,57.967672],[-5.449849,57.966624],[-5.451884,57.965445],[-5.451443,57.964904],[-5.452511,57.963266],[-5.449391,57.96357],[-5.447017,57.964611],[-5.444792,57.964343],[-5.444169,57.962638],[-5.443326,57.962545],[-5.440985,57.963571],[-5.440105,57.964413],[-5.440336,57.966402],[-5.441899,57.96673],[-5.443635,57.966229],[-5.44419,57.965505],[-5.445863,57.965716],[-5.445733,57.966715]]],[[[-5.509374,57.968009],[-5.51036,57.967721],[-5.51169,57.966358],[-5.511493,57.965636],[-5.513311,57.964426],[-5.517168,57.962472],[-5.518348,57.961544],[-5.520211,57.961484],[-5.521163,57.962308],[-5.524136,57.961761],[-5.525743,57.961074],[-5.525161,57.960227],[-5.521609,57.960227],[-5.522089,57.958569],[-5.520623,57.958452],[-5.518162,57.956889],[-5.516235,57.956214],[-5.519494,57.954613],[-5.512262,57.954405],[-5.511715,57.954865],[-5.509062,57.955406],[-5.505809,57.95568],[-5.503896,57.955571],[-5.499938,57.956375],[-5.497531,57.957504],[-5.497397,57.958038],[-5.499645,57.958547],[-5.499068,57.959736],[-5.500446,57.960869],[-5.50308,57.959859],[-5.507299,57.960466],[-5.505034,57.961508],[-5.504868,57.962672],[-5.503861,57.964138],[-5.506865,57.965274],[-5.506297,57.966296],[-5.507246,57.967789],[-5.509374,57.968009]]],[[[-5.427517,57.979391],[-5.429629,57.979289],[-5.434387,57.976234],[-5.43519,57.974019],[-5.433119,57.973235],[-5.433421,57.971092],[-5.431309,57.970677],[-5.429423,57.972445],[-5.425283,57.97434],[-5.42166,57.976726],[-5.422055,57.978203],[-5.424897,57.977848],[-5.424944,57.97943],[-5.427517,57.979391]]],[[[-5.349685,57.993008],[-5.349174,57.991529],[-5.349495,57.990069],[-5.348197,57.988315],[-5.348367,57.986791],[-5.349658,57.985935],[-5.351692,57.983077],[-5.352409,57.981512],[-5.351285,57.9808],[-5.348849,57.98081],[-5.347994,57.979992],[-5.346153,57.979722],[-5.34476,57.980235],[-5.344001,57.981801],[-5.342068,57.983029],[-5.341061,57.984305],[-5.338884,57.985185],[-5.340517,57.98582],[-5.34101,57.988019],[-5.340026,57.989357],[-5.341281,57.990286],[-5.341991,57.991684],[-5.345776,57.991668],[-5.349685,57.993008]]],[[[-5.510197,57.98325],[-5.505915,57.98748],[-5.505726,57.988313],[-5.507736,57.988963],[-5.51018,57.98739],[-5.511,57.98566],[-5.510531,57.98467],[-5.512175,57.983919],[-5.510197,57.98325]]],[[[-5.349409,57.997264],[-5.351992,57.996417],[-5.351878,57.995737],[-5.349089,57.993792],[-5.347546,57.993033],[-5.345121,57.993446],[-5.345211,57.995589],[-5.347786,57.997143],[-5.349409,57.997264]]],[[[-5.446187,58.013704],[-5.445549,58.015745],[-5.448501,58.014607],[-5.448603,58.013283],[-5.451483,58.014881],[-5.452841,58.015173],[-5.455409,58.014492],[-5.456201,58.013306],[-5.458292,58.012157],[-5.456077,58.011849],[-5.454834,58.010813],[-5.45107,58.011117],[-5.449539,58.010166],[-5.450057,58.008165],[-5.452109,58.007139],[-5.450597,58.005768],[-5.451827,58.004396],[-5.44912,58.00442],[-5.44757,58.003882],[-5.443083,58.004678],[-5.443417,58.00559],[-5.440819,58.006141],[-5.439627,58.005143],[-5.437869,58.005214],[-5.437727,58.005942],[-5.435212,58.007003],[-5.435314,58.009648],[-5.438285,58.010255],[-5.440386,58.010366],[-5.441875,58.011403],[-5.445608,58.012178],[-5.444776,58.013302],[-5.446187,58.013704]]],[[[-5.432292,58.017432],[-5.435738,58.015829],[-5.436816,58.014708],[-5.437143,58.011324],[-5.434141,58.01234],[-5.431983,58.011562],[-5.4323,58.010721],[-5.431271,58.009964],[-5.430862,58.008343],[-5.428855,58.008951],[-5.428188,58.009773],[-5.429669,58.010564],[-5.431076,58.010665],[-5.431727,58.011623],[-5.430509,58.012523],[-5.430245,58.013569],[-5.431155,58.014052],[-5.430855,58.016226],[-5.432292,58.017432]]],[[[-5.425192,58.016784],[-5.424255,58.017618],[-5.425541,58.018401],[-5.42688,58.017165],[-5.425192,58.016784]]],[[[-5.427932,58.019568],[-5.430192,58.020177],[-5.4296,58.017797],[-5.427932,58.019568]]],[[[-5.416817,58.018043],[-5.418585,58.020494],[-5.420125,58.019864],[-5.419533,58.018186],[-5.416817,58.018043]]],[[[-5.439675,58.019367],[-5.438828,58.020141],[-5.440978,58.020744],[-5.44153,58.019785],[-5.439675,58.019367]]],[[[-5.44467,58.022226],[-5.447036,58.022346],[-5.447786,58.020807],[-5.447144,58.020559],[-5.447914,58.019064],[-5.44732,58.018087],[-5.444572,58.018921],[-5.445165,58.019718],[-5.444228,58.020368],[-5.44467,58.022226]]],[[[-5.40913,58.023782],[-5.410956,58.023544],[-5.411845,58.023992],[-5.414047,58.022207],[-5.414428,58.020071],[-5.412683,58.019624],[-5.413583,58.017878],[-5.415123,58.016524],[-5.417229,58.016679],[-5.41947,58.017437],[-5.419928,58.016292],[-5.419001,58.015184],[-5.419576,58.012962],[-5.419341,58.010766],[-5.420547,58.009826],[-5.421321,58.008452],[-5.420788,58.006952],[-5.421724,58.005403],[-5.420591,58.005337],[-5.415341,58.006563],[-5.413943,58.006192],[-5.415771,58.003637],[-5.414624,58.002861],[-5.415388,58.001641],[-5.412824,58.001292],[-5.411657,57.9998],[-5.407651,58.001022],[-5.406276,58.000267],[-5.404541,58.001613],[-5.402498,58.000517],[-5.399223,57.999904],[-5.397239,58.00017],[-5.394936,58.001564],[-5.393382,58.001866],[-5.39177,58.003977],[-5.390479,58.004196],[-5.388996,58.003571],[-5.386931,58.004366],[-5.389137,58.005494],[-5.387741,58.006484],[-5.38593,58.004973],[-5.384473,58.00459],[-5.382651,58.005937],[-5.384116,58.007911],[-5.386259,58.008452],[-5.388318,58.00775],[-5.38923,58.00871],[-5.390951,58.009225],[-5.392978,58.007783],[-5.39467,58.007414],[-5.397177,58.008228],[-5.399299,58.009623],[-5.403487,58.009857],[-5.40308,58.013054],[-5.400857,58.016579],[-5.39876,58.016873],[-5.396682,58.016578],[-5.396632,58.018262],[-5.397681,58.019783],[-5.399789,58.019776],[-5.39995,58.020506],[-5.403216,58.022862],[-5.406658,58.022621],[-5.40913,58.023782]]],[[[-5.469767,58.031382],[-5.47209,58.031574],[-5.473137,58.030395],[-5.47288,58.029238],[-5.471972,58.028607],[-5.471667,58.026948],[-5.472826,58.026588],[-5.471538,58.024753],[-5.467833,58.025942],[-5.466585,58.027837],[-5.464727,58.029124],[-5.464609,58.030444],[-5.465717,58.031204],[-5.468798,58.031705],[-5.469767,58.031382]]],[[[-5.442377,58.050342],[-5.445725,58.049775],[-5.447362,58.048935],[-5.448974,58.046784],[-5.451074,58.043136],[-5.448866,58.041766],[-5.446422,58.041999],[-5.445639,58.041436],[-5.448334,58.040738],[-5.448998,58.039799],[-5.4465,58.039466],[-5.445296,58.038757],[-5.44319,58.038275],[-5.440176,58.038743],[-5.4374,58.037875],[-5.43516,58.037778],[-5.4316,58.038215],[-5.431824,58.039931],[-5.431255,58.041335],[-5.429529,58.042599],[-5.430077,58.043452],[-5.427822,58.043715],[-5.428148,58.044641],[-5.425861,58.045004],[-5.425698,58.045781],[-5.424063,58.046272],[-5.42411,58.047057],[-5.430009,58.047688],[-5.432601,58.046966],[-5.434401,58.046908],[-5.435543,58.048298],[-5.437314,58.048821],[-5.437566,58.049762],[-5.440967,58.049603],[-5.442377,58.050342]]],[[[-5.458655,58.051761],[-5.461436,58.050625],[-5.46208,58.049304],[-5.463673,58.049472],[-5.46557,58.048517],[-5.466955,58.047041],[-5.466478,58.044658],[-5.465156,58.044132],[-5.462402,58.043965],[-5.460283,58.043528],[-5.459008,58.045158],[-5.457677,58.045765],[-5.457382,58.048236],[-5.456035,58.049127],[-5.458655,58.051761]]],[[[-5.324446,58.077429],[-5.32557,58.078747],[-5.327096,58.078196],[-5.325622,58.07712],[-5.324446,58.077429]]],[[[-5.29609,58.082494],[-5.298875,58.082265],[-5.297788,58.081375],[-5.295847,58.081705],[-5.29609,58.082494]]],[[[-5.27708,58.103353],[-5.278971,58.102111],[-5.279272,58.100609],[-5.276809,58.099959],[-5.271376,58.102071],[-5.274076,58.103093],[-5.27708,58.103353]]],[[[-5.29933,58.104446],[-5.300294,58.10469],[-5.304647,58.103652],[-5.306341,58.102173],[-5.301895,58.100827],[-5.299646,58.101539],[-5.297677,58.101729],[-5.295875,58.100891],[-5.292916,58.100591],[-5.292308,58.101679],[-5.293591,58.102879],[-5.295178,58.103439],[-5.298236,58.103643],[-5.29933,58.104446]]],[[[-5.284077,58.104854],[-5.286495,58.106036],[-5.287961,58.105544],[-5.28721,58.104669],[-5.284077,58.104854]]],[[[-5.307946,58.110725],[-5.309567,58.110386],[-5.309742,58.109074],[-5.308531,58.108647],[-5.305309,58.108969],[-5.305253,58.109573],[-5.307946,58.110725]]],[[[-5.348845,58.130172],[-5.351212,58.129772],[-5.35127,58.129023],[-5.349101,58.128552],[-5.345948,58.12863],[-5.343033,58.129193],[-5.342992,58.130002],[-5.346402,58.129665],[-5.348845,58.130172]]],[[[-5.315688,58.144899],[-5.317939,58.14516],[-5.31862,58.144715],[-5.32078,58.14491],[-5.321038,58.143843],[-5.323239,58.144756],[-5.32441,58.143638],[-5.330014,58.143487],[-5.330819,58.142379],[-5.327538,58.141458],[-5.324767,58.141184],[-5.322077,58.142405],[-5.316387,58.142],[-5.31249,58.142228],[-5.310257,58.143608],[-5.313924,58.144208],[-5.315688,58.144899]]],[[[-5.057917,58.250849],[-5.056831,58.252299],[-5.057064,58.252927],[-5.060898,58.253101],[-5.06202,58.252867],[-5.062184,58.251506],[-5.059446,58.250816],[-5.057917,58.250849]]],[[[-5.200271,58.249372],[-5.198502,58.249888],[-5.200972,58.251004],[-5.201596,58.249321],[-5.200271,58.249372]]],[[[-5.201849,58.253449],[-5.20425,58.253789],[-5.204853,58.252816],[-5.202119,58.252373],[-5.201849,58.253449]]],[[[-5.294232,58.252383],[-5.29389,58.253373],[-5.296297,58.252908],[-5.298212,58.251646],[-5.295202,58.250071],[-5.293728,58.249624],[-5.291114,58.250662],[-5.294232,58.252383]]],[[[-5.23466,58.255111],[-5.235366,58.255651],[-5.23854,58.255206],[-5.236623,58.254387],[-5.23466,58.255111]]],[[[-5.241672,58.262236],[-5.242023,58.263366],[-5.243384,58.263518],[-5.244403,58.262266],[-5.244114,58.261527],[-5.241672,58.262236]]],[[[-5.128673,58.267443],[-5.132169,58.267554],[-5.132283,58.265277],[-5.130256,58.265587],[-5.128158,58.265198],[-5.127117,58.265875],[-5.127223,58.267167],[-5.128673,58.267443]]],[[[-5.261974,58.267314],[-5.263693,58.267275],[-5.265499,58.265768],[-5.268011,58.265726],[-5.272559,58.26299],[-5.27597,58.261509],[-5.278917,58.260717],[-5.280255,58.259251],[-5.280052,58.257777],[-5.277703,58.257015],[-5.276457,58.257345],[-5.273602,58.257013],[-5.271673,58.256122],[-5.271382,58.255133],[-5.270021,58.254511],[-5.26845,58.2531],[-5.263723,58.252686],[-5.263546,58.251972],[-5.260532,58.251456],[-5.259645,58.25071],[-5.256858,58.250808],[-5.254167,58.251676],[-5.252565,58.251407],[-5.247883,58.251288],[-5.245681,58.250419],[-5.243201,58.250153],[-5.241531,58.250996],[-5.243288,58.25287],[-5.243619,58.254435],[-5.244633,58.255177],[-5.243713,58.255839],[-5.244257,58.258058],[-5.241366,58.259076],[-5.242766,58.259836],[-5.243559,58.258813],[-5.246674,58.259031],[-5.248298,58.258234],[-5.249778,58.259689],[-5.252458,58.260825],[-5.256387,58.260531],[-5.257574,58.261476],[-5.258688,58.263672],[-5.258142,58.265893],[-5.260004,58.265836],[-5.260448,58.267322],[-5.261974,58.267314]]],[[[-5.150332,58.285189],[-5.152508,58.286246],[-5.154342,58.286138],[-5.156639,58.28508],[-5.155135,58.283939],[-5.153433,58.283504],[-5.151787,58.283895],[-5.149852,58.282954],[-5.152491,58.281258],[-5.15225,58.280275],[-5.148081,58.279924],[-5.147448,58.279041],[-5.145561,58.277992],[-5.144192,58.277926],[-5.142664,58.279155],[-5.14154,58.27947],[-5.143663,58.282433],[-5.145634,58.282941],[-5.146794,58.282625],[-5.148995,58.283205],[-5.150332,58.285189]]],[[[-5.132249,58.288052],[-5.133657,58.28795],[-5.135707,58.286533],[-5.137127,58.28597],[-5.13484,58.284061],[-5.139222,58.283158],[-5.138522,58.280279],[-5.135484,58.279385],[-5.134309,58.277864],[-5.132922,58.278684],[-5.13022,58.278894],[-5.129479,58.279393],[-5.127105,58.278838],[-5.12467,58.280486],[-5.125037,58.282131],[-5.122958,58.28148],[-5.12464,58.283623],[-5.128112,58.284006],[-5.128876,58.286355],[-5.132249,58.288052]]],[[[-5.198189,58.28507],[-5.195882,58.287217],[-5.197293,58.287343],[-5.200574,58.286637],[-5.202674,58.285789],[-5.202605,58.285209],[-5.199881,58.284632],[-5.198189,58.28507]]],[[[-5.207163,58.290559],[-5.209945,58.290513],[-5.209445,58.288859],[-5.211047,58.287695],[-5.210151,58.28676],[-5.208095,58.286768],[-5.20294,58.289579],[-5.204409,58.29045],[-5.207163,58.290559]]],[[[-5.170913,58.305401],[-5.170641,58.305884],[-5.173632,58.306201],[-5.174382,58.30562],[-5.172095,58.304396],[-5.172577,58.303009],[-5.174186,58.302385],[-5.172138,58.301821],[-5.170217,58.303252],[-5.168529,58.303654],[-5.170913,58.305401]]],[[[-5.186351,58.306747],[-5.187733,58.306958],[-5.192898,58.305694],[-5.192586,58.305077],[-5.190039,58.304853],[-5.186712,58.30592],[-5.186351,58.306747]]],[[[-5.176598,58.30903],[-5.17793,58.309178],[-5.179013,58.307758],[-5.175693,58.307295],[-5.175546,58.307748],[-5.171369,58.308576],[-5.173129,58.309161],[-5.176598,58.30903]]],[[[-5.149483,58.309989],[-5.150439,58.310747],[-5.153198,58.311142],[-5.151684,58.309678],[-5.149483,58.309989]]],[[[-5.156802,58.3101],[-5.157882,58.310631],[-5.163758,58.309021],[-5.166072,58.309116],[-5.167819,58.308601],[-5.166934,58.307197],[-5.165789,58.306813],[-5.160889,58.307483],[-5.159179,58.308321],[-5.159163,58.309575],[-5.156802,58.3101]]],[[[-5.166289,58.313834],[-5.16972,58.313443],[-5.169015,58.31095],[-5.165711,58.312235],[-5.166289,58.313834]]],[[[-5.169431,58.315351],[-5.172718,58.316011],[-5.173918,58.315109],[-5.171641,58.314955],[-5.169911,58.314031],[-5.169431,58.315351]]],[[[-5.146701,58.31509],[-5.145822,58.316743],[-5.146453,58.316975],[-5.149213,58.315056],[-5.146701,58.31509]]],[[[-5.181023,58.315764],[-5.1818,58.316338],[-5.183556,58.315926],[-5.185029,58.314451],[-5.183322,58.314457],[-5.181023,58.315764]]],[[[-5.163893,58.31645],[-5.165155,58.316814],[-5.166972,58.316499],[-5.165307,58.315386],[-5.163893,58.31645]]],[[[-5.183619,58.352962],[-5.184277,58.354289],[-5.185696,58.353912],[-5.186925,58.352659],[-5.185514,58.351989],[-5.183619,58.352962]]],[[[-5.056329,58.385658],[-5.057374,58.386666],[-5.058711,58.385601],[-5.056329,58.385658]]],[[[-5.045358,58.388418],[-5.043659,58.389555],[-5.044062,58.3908],[-5.046795,58.389004],[-5.045358,58.388418]]],[[[-5.161346,58.389519],[-5.163082,58.388451],[-5.160787,58.38817],[-5.158092,58.388255],[-5.15657,58.388742],[-5.161346,58.389519]]],[[[-5.182813,58.389759],[-5.185091,58.388925],[-5.187709,58.38882],[-5.191275,58.38794],[-5.193304,58.386348],[-5.194382,58.387476],[-5.19711,58.38712],[-5.199098,58.387201],[-5.20041,58.386759],[-5.202022,58.383209],[-5.205071,58.383061],[-5.206909,58.383891],[-5.208891,58.382628],[-5.209468,58.381162],[-5.208696,58.378045],[-5.209667,58.377238],[-5.208405,58.376439],[-5.20689,58.376517],[-5.206329,58.375435],[-5.203451,58.373979],[-5.201032,58.374376],[-5.198461,58.374135],[-5.196575,58.374376],[-5.195624,58.373599],[-5.196552,58.372412],[-5.192803,58.3722],[-5.191005,58.37322],[-5.189496,58.37346],[-5.187318,58.374642],[-5.186529,58.37575],[-5.183835,58.375659],[-5.181839,58.375916],[-5.178921,58.375723],[-5.176166,58.374861],[-5.172404,58.376492],[-5.170609,58.376325],[-5.170372,58.378348],[-5.168852,58.379622],[-5.166679,58.382003],[-5.166709,58.382533],[-5.168805,58.383578],[-5.168514,58.384048],[-5.170371,58.385522],[-5.172309,58.386003],[-5.173549,58.387617],[-5.176618,58.387388],[-5.177385,58.388299],[-5.180294,58.389818],[-5.182813,58.389759]]],[[[-5.068458,58.392404],[-5.070651,58.39321],[-5.071359,58.392209],[-5.068458,58.392404]]],[[[-5.072734,58.392082],[-5.071704,58.392727],[-5.072451,58.39394],[-5.074333,58.394218],[-5.076328,58.393743],[-5.077501,58.392565],[-5.07908,58.39174],[-5.077117,58.391105],[-5.072734,58.392082]]],[[[-5.091448,58.400056],[-5.093338,58.400231],[-5.096311,58.399584],[-5.097489,58.400032],[-5.09941,58.398671],[-5.098262,58.398117],[-5.09659,58.398566],[-5.093508,58.398173],[-5.093451,58.398786],[-5.090977,58.399178],[-5.088206,58.396854],[-5.088407,58.396027],[-5.086534,58.395551],[-5.083941,58.398204],[-5.085636,58.398843],[-5.087089,58.398575],[-5.08817,58.399319],[-5.090567,58.399282],[-5.091448,58.400056]]],[[[-5.107111,58.405775],[-5.109321,58.40413],[-5.111062,58.404079],[-5.111332,58.40316],[-5.109147,58.402746],[-5.109218,58.402192],[-5.104835,58.4017],[-5.102081,58.402998],[-5.10146,58.403818],[-5.107111,58.405775]]],[[[-5.075201,58.406829],[-5.077968,58.406852],[-5.081016,58.406257],[-5.081936,58.405426],[-5.087451,58.40402],[-5.084208,58.4037],[-5.083624,58.403193],[-5.07984,58.402403],[-5.076927,58.403354],[-5.074642,58.40287],[-5.073137,58.404263],[-5.073831,58.404961],[-5.075623,58.405385],[-5.075201,58.406829]]],[[[-5.058342,58.410464],[-5.057935,58.412289],[-5.059619,58.412257],[-5.063006,58.411022],[-5.061905,58.410242],[-5.058342,58.410464]]],[[[-5.126043,58.411587],[-5.126921,58.410006],[-5.125199,58.409976],[-5.126043,58.411587]]],[[[-5.115733,58.415857],[-5.115341,58.417193],[-5.116931,58.417556],[-5.117464,58.415966],[-5.115733,58.415857]]],[[[-5.101721,58.417495],[-5.102591,58.418035],[-5.104379,58.417331],[-5.101725,58.416539],[-5.101721,58.417495]]],[[[-5.105443,58.418429],[-5.106373,58.419102],[-5.108667,58.418562],[-5.108823,58.417808],[-5.106277,58.417789],[-5.105443,58.418429]]],[[[-5.119531,58.427712],[-5.118023,58.428867],[-5.118076,58.431184],[-5.119407,58.431045],[-5.121898,58.429186],[-5.119531,58.427712]]],[[[-4.747197,58.451428],[-4.745834,58.451888],[-4.748008,58.452843],[-4.749405,58.451304],[-4.747197,58.451428]]],[[[-4.749312,58.451427],[-4.748092,58.452927],[-4.750085,58.453967],[-4.750695,58.452885],[-4.753061,58.451252],[-4.749312,58.451427]]],[[[-5.085277,58.450506],[-5.084791,58.451754],[-5.087847,58.450826],[-5.085277,58.450506]]],[[[-5.081883,58.465538],[-5.08516,58.464269],[-5.084783,58.462417],[-5.080953,58.462159],[-5.076821,58.46335],[-5.076009,58.464951],[-5.077647,58.465367],[-5.079632,58.464703],[-5.081883,58.465538]]],[[[-5.098539,58.476941],[-5.101211,58.476993],[-5.102464,58.476217],[-5.100162,58.475356],[-5.098686,58.476182],[-5.098539,58.476941]]],[[[-4.710995,58.47664],[-4.709901,58.477571],[-4.709767,58.478733],[-4.708751,58.479904],[-4.705115,58.482034],[-4.705924,58.482741],[-4.705952,58.483998],[-4.70481,58.485316],[-4.702411,58.486476],[-4.705154,58.486782],[-4.70582,58.485735],[-4.708192,58.485573],[-4.7102,58.484901],[-4.711589,58.482221],[-4.711805,58.479912],[-4.713362,58.478634],[-4.712724,58.476478],[-4.710995,58.47664]]],[[[-5.133562,58.47728],[-5.136721,58.476637],[-5.137743,58.475915],[-5.137681,58.473836],[-5.137002,58.472671],[-5.134908,58.47256],[-5.134094,58.473125],[-5.132956,58.476291],[-5.133562,58.47728]]],[[[-5.118367,58.479102],[-5.122207,58.479934],[-5.12362,58.478363],[-5.124704,58.478],[-5.127185,58.478558],[-5.12871,58.478289],[-5.132026,58.476127],[-5.13363,58.474102],[-5.133337,58.473275],[-5.126632,58.474344],[-5.124058,58.475953],[-5.120153,58.47603],[-5.116536,58.477724],[-5.118367,58.479102]]],[[[-4.621652,58.529864],[-4.625367,58.52866],[-4.624582,58.528379],[-4.621652,58.529864]]],[[[-4.40337,58.537672],[-4.404956,58.536744],[-4.406829,58.536624],[-4.407007,58.535596],[-4.406295,58.534598],[-4.408009,58.534292],[-4.406941,58.531878],[-4.403971,58.531277],[-4.402365,58.53128],[-4.399908,58.530527],[-4.398538,58.530467],[-4.397463,58.53183],[-4.39796,58.533438],[-4.399083,58.534666],[-4.401498,58.535543],[-4.402048,58.536947],[-4.40337,58.537672]]],[[[-4.388583,58.541448],[-4.392972,58.540535],[-4.39309,58.537981],[-4.396059,58.536555],[-4.396732,58.535465],[-4.395751,58.534185],[-4.391656,58.53321],[-4.390028,58.53377],[-4.389578,58.535877],[-4.390017,58.536803],[-4.387875,58.53811],[-4.387353,58.540415],[-4.388583,58.541448]]],[[[-4.295194,58.550081],[-4.29694,58.548771],[-4.29929,58.549203],[-4.301349,58.550152],[-4.300887,58.548361],[-4.303453,58.54854],[-4.304412,58.547562],[-4.302704,58.546993],[-4.300277,58.546934],[-4.298857,58.546316],[-4.298166,58.545304],[-4.295889,58.544417],[-4.293741,58.546172],[-4.290021,58.545671],[-4.288772,58.546843],[-4.291166,58.548469],[-4.295194,58.550081]]],[[[-4.386926,58.54429],[-4.386755,58.546076],[-4.387599,58.546959],[-4.386492,58.547441],[-4.386457,58.548384],[-4.388492,58.548446],[-4.388184,58.547122],[-4.389128,58.546094],[-4.389023,58.543626],[-4.386926,58.54429]]],[[[-4.423841,58.552126],[-4.423901,58.550947],[-4.422933,58.549489],[-4.421475,58.548671],[-4.421188,58.551786],[-4.423841,58.552126]]],[[[-4.644824,58.555363],[-4.645938,58.555293],[-4.646725,58.554221],[-4.645861,58.553484],[-4.643841,58.554352],[-4.644824,58.555363]]],[[[-4.333814,58.561947],[-4.336628,58.561635],[-4.337879,58.560884],[-4.340814,58.560292],[-4.34327,58.560793],[-4.345976,58.560747],[-4.349054,58.557033],[-4.347011,58.555655],[-4.346431,58.55457],[-4.34677,58.552695],[-4.352464,58.55226],[-4.352895,58.551751],[-4.350676,58.550188],[-4.345678,58.548804],[-4.341755,58.548275],[-4.339408,58.548494],[-4.33608,58.55028],[-4.335344,58.551088],[-4.336293,58.551924],[-4.334742,58.553664],[-4.333399,58.554122],[-4.330187,58.554437],[-4.330489,58.555111],[-4.327632,58.556232],[-4.326324,58.557244],[-4.328475,58.557659],[-4.329307,58.559194],[-4.329398,58.560562],[-4.330744,58.562061],[-4.333814,58.561947]]],[[[-4.349432,58.562736],[-4.351433,58.5629],[-4.357562,58.561351],[-4.360494,58.560359],[-4.360902,58.55987],[-4.355734,58.559467],[-4.35221,58.557578],[-4.350105,58.557957],[-4.346114,58.561008],[-4.348232,58.561437],[-4.349432,58.562736]]],[[[-4.35676,58.562201],[-4.357756,58.563207],[-4.360465,58.562492],[-4.360768,58.561862],[-4.358178,58.561707],[-4.35676,58.562201]]],[[[-5.116628,58.545424],[-5.11713,58.546394],[-5.118583,58.547152],[-5.119971,58.546072],[-5.11832,58.54529],[-5.116628,58.545424]]],[[[-4.050196,58.577971],[-4.051255,58.57888],[-4.052584,58.578068],[-4.051927,58.577275],[-4.050196,58.577971]]],[[[-4.665903,58.568021],[-4.666501,58.569657],[-4.668099,58.569815],[-4.671263,58.567483],[-4.673781,58.567116],[-4.673776,58.56796],[-4.675665,58.569269],[-4.677858,58.568253],[-4.677136,58.567023],[-4.679824,58.566976],[-4.680643,58.566326],[-4.682229,58.56694],[-4.684743,58.56642],[-4.686061,58.564209],[-4.682921,58.564629],[-4.681569,58.564379],[-4.678177,58.564665],[-4.675176,58.566022],[-4.671774,58.566057],[-4.670688,58.566937],[-4.668706,58.567109],[-4.665903,58.568021]]],[[[-4.029752,58.592151],[-4.03205,58.593354],[-4.031598,58.591323],[-4.029752,58.592151]]],[[[-4.870997,58.61738],[-4.870626,58.61831],[-4.873419,58.617713],[-4.873258,58.616597],[-4.870997,58.61738]]],[[[-3.17745,58.651336],[-3.177725,58.653039],[-3.179741,58.652839],[-3.179295,58.65172],[-3.17745,58.651336]]],[[[-3.762691,57.630964],[-3.764725,57.630373],[-3.773421,57.626511],[-3.779976,57.624459],[-3.777906,57.624469],[-3.772872,57.626577],[-3.769857,57.627162],[-3.770377,57.624424],[-3.774495,57.62271],[-3.777288,57.622327],[-3.78375,57.619275],[-3.784484,57.619928],[-3.786978,57.619348],[-3.792509,57.615071],[-3.792408,57.61372],[-3.796876,57.610623],[-3.798741,57.610078],[-3.798654,57.609489],[-3.801905,57.609258],[-3.803118,57.608816],[-3.804631,57.609263],[-3.808254,57.606267],[-3.810431,57.605346],[-3.812415,57.605152],[-3.812445,57.604452],[-3.814258,57.60331],[-3.816699,57.603606],[-3.818098,57.602445],[-3.819533,57.603452],[-3.821459,57.603205],[-3.8244,57.600877],[-3.827645,57.599079],[-3.82944,57.598478],[-3.830988,57.598999],[-3.83738,57.597241],[-3.841963,57.597068],[-3.846543,57.595724],[-3.852302,57.594926],[-3.855512,57.593651],[-3.859959,57.592672],[-3.860054,57.590285],[-3.862496,57.590142],[-3.861614,57.591329],[-3.868203,57.590152],[-3.876142,57.589392],[-3.884436,57.589138],[-3.913817,57.585803],[-3.917078,57.585816],[-3.924142,57.586565],[-3.92955,57.585808],[-3.936323,57.586415],[-3.958847,57.590285],[-3.968436,57.592416],[-3.976724,57.594804],[-3.991401,57.599558],[-4.000513,57.602111],[-4.005174,57.603015],[-4.005544,57.60232],[-4.001733,57.601228],[-3.997162,57.600701],[-3.994791,57.599465],[-3.990163,57.598431],[-3.985358,57.596558],[-3.982451,57.594973],[-3.98023,57.59478],[-3.975558,57.592989],[-3.970235,57.589822],[-3.96235,57.589084],[-3.96167,57.588517],[-3.968676,57.587911],[-3.970527,57.587241],[-3.972929,57.587462],[-3.971738,57.588881],[-3.974022,57.588868],[-3.975554,57.590146],[-3.975618,57.591009],[-3.977263,57.591369],[-3.979671,57.590908],[-3.97953,57.592467],[-3.982898,57.593235],[-3.98428,57.592869],[-3.98611,57.59356],[-3.985778,57.59427],[-4.002259,57.599141],[-4.004473,57.599016],[-4.006977,57.600082],[-4.012659,57.601126],[-4.017511,57.599412],[-4.019472,57.598071],[-4.019243,57.595548],[-4.016271,57.595111],[-4.015229,57.594547],[-4.015368,57.593255],[-4.01639,57.592732],[-4.019947,57.591935],[-4.027251,57.591384],[-4.036461,57.59119],[-4.044485,57.59169],[-4.052984,57.590781],[-4.058073,57.590918],[-4.060948,57.589131],[-4.06182,57.588149],[-4.075994,57.583365],[-4.075823,57.582194],[-4.070756,57.581503],[-4.068856,57.581666],[-4.065948,57.582768],[-4.059718,57.582371],[-4.053656,57.580154],[-4.047365,57.576773],[-4.041489,57.572244],[-4.038216,57.567991],[-4.03805,57.567235],[-4.039537,57.565047],[-4.039486,57.563541],[-4.040714,57.560149],[-4.042885,57.559369],[-4.045459,57.556835],[-4.051849,57.553046],[-4.068076,57.547433],[-4.076006,57.545388],[-4.080692,57.543388],[-4.095385,57.539052],[-4.102377,57.535069],[-4.104283,57.533533],[-4.112718,57.523826],[-4.116628,57.52114],[-4.118501,57.51934],[-4.11652,57.519279],[-4.114525,57.518707],[-4.112394,57.519913],[-4.109243,57.520646],[-4.107615,57.520475],[-4.107164,57.519643],[-4.110964,57.518182],[-4.112772,57.51606],[-4.114559,57.515574],[-4.119202,57.514987],[-4.128095,57.514768],[-4.134031,57.515465],[-4.145005,57.517504],[-4.147383,57.51843],[-4.149526,57.51622],[-4.150337,57.513511],[-4.15021,57.511665],[-4.147545,57.504659],[-4.147617,57.502959],[-4.148321,57.501688],[-4.149964,57.500192],[-4.151903,57.499973],[-4.154321,57.497668],[-4.157403,57.49599],[-4.15736,57.495481],[-4.159439,57.494499],[-4.16256,57.491739],[-4.165644,57.489917],[-4.167301,57.489455],[-4.1699,57.489641],[-4.17064,57.488447],[-4.178319,57.485274],[-4.184852,57.483948],[-4.186805,57.483833],[-4.187842,57.484347],[-4.188234,57.487473],[-4.190004,57.489021],[-4.191985,57.489818],[-4.193352,57.489795],[-4.195364,57.488486],[-4.196114,57.488603],[-4.206506,57.493344],[-4.207452,57.493618],[-4.209933,57.492952],[-4.212828,57.494847],[-4.219953,57.496698],[-4.222383,57.496505],[-4.228985,57.494101],[-4.23194,57.494388],[-4.233064,57.493265],[-4.235157,57.493728],[-4.236796,57.492786],[-4.236135,57.491743],[-4.231718,57.488399],[-4.229856,57.48617],[-4.230373,57.484137],[-4.231854,57.483422],[-4.232834,57.482062],[-4.232132,57.480862],[-4.228472,57.478736],[-4.226843,57.47688],[-4.226379,57.475549],[-4.228182,57.472192],[-4.228069,57.469205],[-4.229473,57.469125],[-4.229667,57.470998],[-4.227753,57.476022],[-4.228108,57.476837],[-4.230535,57.478773],[-4.233879,57.480574],[-4.234837,57.481889],[-4.234359,57.483136],[-4.231962,57.485261],[-4.232233,57.486532],[-4.234506,57.488539],[-4.236851,57.489228],[-4.239056,57.490955],[-4.239004,57.493906],[-4.240424,57.493652],[-4.242097,57.494599],[-4.246379,57.495261],[-4.246296,57.494321],[-4.251333,57.490427],[-4.256309,57.489596],[-4.259894,57.490395],[-4.26316,57.490826],[-4.263458,57.490405],[-4.259,57.489517],[-4.260555,57.488643],[-4.26182,57.488662],[-4.2661,57.486977],[-4.28762,57.481298],[-4.290387,57.481032],[-4.293419,57.481178],[-4.303761,57.483257],[-4.306209,57.483506],[-4.309151,57.483405],[-4.315835,57.480116],[-4.318147,57.481442],[-4.31811,57.482375],[-4.320636,57.482464],[-4.323351,57.483539],[-4.325461,57.483483],[-4.327559,57.4845],[-4.329924,57.484634],[-4.334659,57.483782],[-4.338562,57.483759],[-4.348518,57.482139],[-4.353889,57.481602],[-4.363715,57.482352],[-4.364033,57.481231],[-4.366113,57.480314],[-4.372251,57.479172],[-4.374015,57.47911],[-4.376774,57.479822],[-4.378541,57.479296],[-4.380599,57.480334],[-4.382552,57.480099],[-4.385144,57.481],[-4.386237,57.481849],[-4.386043,57.482765],[-4.388284,57.485073],[-4.388452,57.486014],[-4.390106,57.487013],[-4.392369,57.48738],[-4.393373,57.48846],[-4.394109,57.490661],[-4.397459,57.491628],[-4.397974,57.492418],[-4.399918,57.492535],[-4.401195,57.49435],[-4.403534,57.495432],[-4.405207,57.495461],[-4.407694,57.496102],[-4.407778,57.497122],[-4.413245,57.497811],[-4.414891,57.4974],[-4.418628,57.494537],[-4.421552,57.492901],[-4.425328,57.491661],[-4.429945,57.490605],[-4.433624,57.488972],[-4.435411,57.482507],[-4.437515,57.482776],[-4.442097,57.482343],[-4.449206,57.483612],[-4.451598,57.483551],[-4.453378,57.482725],[-4.453491,57.481632],[-4.449764,57.481091],[-4.448096,57.480262],[-4.447723,57.47955],[-4.449002,57.478072],[-4.455526,57.476139],[-4.455927,57.476968],[-4.458093,57.477327],[-4.460602,57.476802],[-4.461896,57.475337],[-4.463591,57.474431],[-4.467824,57.473657],[-4.471813,57.473782],[-4.474473,57.473319],[-4.475544,57.472033],[-4.474967,57.469719],[-4.473253,57.467852],[-4.471714,57.467089],[-4.473172,57.466623],[-4.474545,57.467224],[-4.476668,57.47119],[-4.475378,57.473678],[-4.472537,57.474379],[-4.465369,57.474569],[-4.463192,57.475214],[-4.462112,57.476188],[-4.463035,57.477588],[-4.463933,57.477792],[-4.463795,57.479512],[-4.462565,57.480637],[-4.461353,57.480997],[-4.457905,57.480233],[-4.456765,57.478261],[-4.454986,57.477605],[-4.453212,57.477469],[-4.450605,57.478575],[-4.449649,57.479691],[-4.454395,57.480434],[-4.457481,57.482359],[-4.456905,57.484174],[-4.454569,57.485507],[-4.449769,57.485585],[-4.443148,57.484131],[-4.4396,57.484229],[-4.437401,57.484857],[-4.436739,57.485489],[-4.43515,57.490102],[-4.432639,57.492948],[-4.431834,57.495518],[-4.427529,57.494311],[-4.42552,57.494565],[-4.423232,57.496067],[-4.416385,57.503179],[-4.415578,57.504504],[-4.412556,57.504246],[-4.410523,57.50448],[-4.403363,57.506732],[-4.400369,57.507059],[-4.400034,57.507823],[-4.398419,57.508125],[-4.395137,57.509632],[-4.394315,57.509437],[-4.391731,57.510289],[-4.386864,57.510798],[-4.382971,57.511603],[-4.375499,57.512346],[-4.373228,57.51168],[-4.369897,57.512584],[-4.367251,57.511683],[-4.365254,57.511816],[-4.363524,57.512422],[-4.354647,57.510412],[-4.344255,57.505726],[-4.332939,57.504745],[-4.328939,57.505035],[-4.327824,57.505482],[-4.322861,57.505082],[-4.31832,57.504302],[-4.316251,57.503524],[-4.310657,57.5024],[-4.305999,57.502549],[-4.303818,57.503379],[-4.301664,57.503106],[-4.295662,57.503641],[-4.294704,57.504233],[-4.291985,57.504772],[-4.285768,57.504131],[-4.283387,57.504178],[-4.281455,57.504568],[-4.279902,57.504289],[-4.273787,57.504168],[-4.272366,57.504978],[-4.270718,57.50529],[-4.260718,57.502572],[-4.25019,57.501816],[-4.245331,57.501035],[-4.244803,57.500715],[-4.234379,57.500739],[-4.233877,57.50331],[-4.232211,57.504703],[-4.230315,57.508152],[-4.226271,57.509767],[-4.224621,57.511509],[-4.224382,57.512464],[-4.223016,57.513017],[-4.221582,57.514468],[-4.218232,57.517187],[-4.215591,57.518063],[-4.213389,57.518327],[-4.210543,57.518219],[-4.210747,57.52],[-4.210147,57.520932],[-4.208031,57.522062],[-4.203512,57.525784],[-4.197619,57.532917],[-4.194933,57.534742],[-4.193541,57.537545],[-4.194861,57.539685],[-4.198989,57.540719],[-4.201938,57.543604],[-4.204708,57.543677],[-4.204973,57.542468],[-4.210133,57.54163],[-4.216064,57.542139],[-4.218065,57.54204],[-4.219402,57.542539],[-4.225763,57.54324],[-4.22771,57.543194],[-4.228008,57.544798],[-4.229121,57.546238],[-4.231889,57.546828],[-4.243534,57.545781],[-4.249728,57.544604],[-4.246755,57.546169],[-4.246171,57.547565],[-4.250142,57.54747],[-4.252202,57.549367],[-4.247903,57.550051],[-4.242774,57.551715],[-4.24024,57.552041],[-4.237457,57.552005],[-4.231892,57.551072],[-4.227943,57.551299],[-4.224438,57.551151],[-4.222256,57.550514],[-4.219777,57.550373],[-4.216432,57.549197],[-4.213909,57.54962],[-4.209335,57.548949],[-4.205472,57.5489],[-4.202778,57.548244],[-4.197862,57.548095],[-4.193503,57.546001],[-4.188238,57.545628],[-4.183907,57.546499],[-4.182425,57.547477],[-4.182017,57.548624],[-4.18059,57.549568],[-4.178383,57.551653],[-4.175307,57.553275],[-4.175101,57.554505],[-4.176712,57.558698],[-4.176293,57.560862],[-4.173181,57.564805],[-4.168741,57.567034],[-4.167752,57.567187],[-4.162946,57.5688],[-4.157781,57.571172],[-4.149304,57.573692],[-4.146333,57.575384],[-4.140539,57.577458],[-4.13755,57.577942],[-4.134644,57.578689],[-4.133137,57.579374],[-4.125468,57.578467],[-4.115165,57.578502],[-4.108689,57.577552],[-4.09785,57.574136],[-4.093967,57.573249],[-4.09121,57.574042],[-4.099551,57.577052],[-4.104328,57.580171],[-4.10985,57.584887],[-4.112944,57.590095],[-4.112502,57.592316],[-4.112595,57.594371],[-4.110957,57.595384],[-4.108263,57.596052],[-4.106816,57.596851],[-4.10496,57.598983],[-4.102035,57.607459],[-4.100555,57.608032],[-4.098372,57.609695],[-4.094537,57.611704],[-4.093341,57.613003],[-4.089988,57.614955],[-4.089038,57.616053],[-4.082205,57.619832],[-4.080265,57.621917],[-4.07149,57.625439],[-4.070162,57.626822],[-4.068973,57.626985],[-4.068159,57.628126],[-4.066907,57.628645],[-4.065595,57.630899],[-4.064069,57.632052],[-4.063821,57.633444],[-4.062168,57.635012],[-4.0567,57.638592],[-4.051862,57.640492],[-4.049013,57.64325],[-4.048534,57.645308],[-4.046614,57.646586],[-4.044486,57.647366],[-4.040113,57.650268],[-4.038243,57.6507],[-4.031087,57.653605],[-4.028703,57.656116],[-4.025188,57.658639],[-4.023076,57.658673],[-4.01959,57.659947],[-4.017808,57.660211],[-4.012136,57.662041],[-4.009411,57.663692],[-4.007633,57.665342],[-4.00342,57.667844],[-4.002432,57.668174],[-4.002169,57.669638],[-4.000067,57.671356],[-3.999809,57.672609],[-3.996682,57.673678],[-3.995245,57.675615],[-3.993455,57.676303],[-3.994154,57.677734],[-3.99553,57.677735],[-3.996485,57.678646],[-3.998475,57.679149],[-3.998419,57.679805],[-4.002269,57.680128],[-4.004176,57.679881],[-4.007478,57.679981],[-4.011521,57.679557],[-4.012437,57.679134],[-4.018769,57.679134],[-4.021541,57.678807],[-4.027764,57.679705],[-4.034748,57.683511],[-4.037106,57.683852],[-4.038709,57.680988],[-4.040952,57.6786],[-4.042874,57.677524],[-4.046651,57.676498],[-4.053379,57.675742],[-4.055698,57.675828],[-4.059772,57.674856],[-4.071039,57.670042],[-4.079717,57.667473],[-4.084419,57.665212],[-4.086705,57.664524],[-4.08967,57.66404],[-4.097086,57.663991],[-4.107735,57.662941],[-4.11192,57.661803],[-4.115865,57.661344],[-4.117719,57.660399],[-4.121512,57.659702],[-4.125854,57.659497],[-4.12819,57.659107],[-4.133199,57.659566],[-4.13545,57.658881],[-4.138058,57.658994],[-4.14045,57.658709],[-4.143244,57.658758],[-4.146263,57.659437],[-4.154774,57.657432],[-4.157813,57.65752],[-4.163498,57.657028],[-4.161229,57.65794],[-4.162992,57.659049],[-4.165166,57.659218],[-4.165854,57.659925],[-4.165255,57.661216],[-4.166659,57.661882],[-4.168018,57.663181],[-4.167222,57.663587],[-4.167033,57.665415],[-4.165023,57.667647],[-4.163947,57.669988],[-4.164032,57.67324],[-4.165522,57.675852],[-4.166903,57.675574],[-4.171117,57.675484],[-4.17427,57.674924],[-4.17729,57.675256],[-4.180717,57.674617],[-4.187782,57.67464],[-4.190224,57.673928],[-4.193067,57.673847],[-4.19575,57.673339],[-4.198895,57.673324],[-4.206173,57.672356],[-4.20818,57.672464],[-4.214511,57.673957],[-4.215478,57.67328],[-4.218437,57.672913],[-4.221088,57.67189],[-4.222559,57.67198],[-4.225312,57.671092],[-4.230688,57.670184],[-4.233371,57.669236],[-4.234313,57.669343],[-4.247173,57.665632],[-4.252422,57.662515],[-4.262861,57.657977],[-4.267062,57.655287],[-4.269216,57.65456],[-4.274646,57.651636],[-4.277253,57.650786],[-4.279546,57.649546],[-4.281352,57.649241],[-4.287485,57.645733],[-4.290058,57.645234],[-4.298796,57.641323],[-4.304638,57.63957],[-4.313724,57.635716],[-4.316237,57.634267],[-4.325128,57.630759],[-4.326271,57.62962],[-4.330793,57.626996],[-4.333477,57.624064],[-4.337538,57.621438],[-4.339698,57.619411],[-4.344116,57.616287],[-4.345892,57.616042],[-4.348522,57.613629],[-4.350922,57.612995],[-4.351685,57.611631],[-4.354271,57.611465],[-4.355954,57.61184],[-4.358176,57.613698],[-4.358726,57.613562],[-4.355055,57.610023],[-4.360722,57.60563],[-4.364581,57.603351],[-4.365587,57.602118],[-4.367986,57.600524],[-4.370215,57.5999],[-4.372994,57.598006],[-4.377597,57.596143],[-4.380189,57.594015],[-4.384093,57.592796],[-4.385855,57.591335],[-4.386875,57.591407],[-4.39053,57.590617],[-4.393261,57.589781],[-4.393661,57.589221],[-4.395769,57.588807],[-4.39667,57.588216],[-4.399577,57.587714],[-4.401671,57.58682],[-4.403993,57.585413],[-4.404503,57.583921],[-4.408699,57.580961],[-4.409051,57.580243],[-4.411903,57.578774],[-4.414005,57.578523],[-4.415697,57.577277],[-4.420625,57.576777],[-4.421858,57.575196],[-4.425053,57.573542],[-4.428056,57.573816],[-4.430481,57.573378],[-4.436038,57.570516],[-4.438261,57.570377],[-4.441134,57.568718],[-4.442665,57.567196],[-4.443769,57.563598],[-4.444995,57.563706],[-4.443865,57.5671],[-4.442512,57.568971],[-4.4375,57.572972],[-4.435983,57.57358],[-4.428835,57.574579],[-4.42667,57.575599],[-4.425284,57.577217],[-4.428112,57.577619],[-4.427375,57.579125],[-4.423063,57.580488],[-4.422259,57.581254],[-4.423191,57.584148],[-4.417962,57.585803],[-4.416803,57.587373],[-4.415536,57.588274],[-4.412183,57.589696],[-4.412302,57.590251],[-4.408861,57.59276],[-4.413341,57.596537],[-4.415975,57.597692],[-4.418059,57.599379],[-4.419264,57.601519],[-4.417306,57.603362],[-4.415576,57.605832],[-4.412554,57.607708],[-4.406861,57.610883],[-4.401129,57.613202],[-4.397303,57.615365],[-4.395554,57.615804],[-4.394403,57.616967],[-4.391208,57.618613],[-4.387405,57.620181],[-4.385706,57.620285],[-4.379352,57.624106],[-4.37281,57.626412],[-4.369987,57.626471],[-4.368787,57.626927],[-4.365531,57.627463],[-4.366725,57.629314],[-4.364895,57.631476],[-4.359188,57.635355],[-4.350369,57.639025],[-4.349926,57.639664],[-4.347357,57.639952],[-4.347532,57.641516],[-4.34305,57.643939],[-4.340303,57.64778],[-4.337856,57.65007],[-4.331946,57.652835],[-4.326684,57.654249],[-4.324566,57.655772],[-4.318812,57.654557],[-4.315069,57.654812],[-4.313357,57.65576],[-4.306001,57.656142],[-4.306326,57.657239],[-4.305451,57.658808],[-4.30361,57.658754],[-4.304365,57.660346],[-4.301947,57.659695],[-4.300554,57.660993],[-4.303804,57.661833],[-4.302842,57.662871],[-4.300615,57.66342],[-4.298994,57.665084],[-4.280123,57.664645],[-4.280372,57.665073],[-4.299014,57.66532],[-4.300525,57.66729],[-4.301274,57.6703],[-4.302099,57.670565],[-4.302439,57.672781],[-4.301266,57.674005],[-4.299604,57.674748],[-4.299789,57.676393],[-4.293576,57.678716],[-4.291268,57.680261],[-4.288938,57.681219],[-4.284514,57.682547],[-4.279242,57.683233],[-4.27773,57.682405],[-4.274657,57.682809],[-4.272943,57.681579],[-4.263829,57.678666],[-4.261739,57.678511],[-4.261497,57.679364],[-4.258982,57.679082],[-4.256852,57.679775],[-4.254905,57.680815],[-4.254653,57.68203],[-4.250199,57.681858],[-4.247563,57.682601],[-4.246213,57.68337],[-4.244719,57.683451],[-4.24315,57.684175],[-4.241688,57.684275],[-4.241586,57.685995],[-4.242151,57.686642],[-4.239351,57.687992],[-4.235037,57.688341],[-4.232127,57.689773],[-4.229461,57.690405],[-4.223374,57.690947],[-4.220113,57.69071],[-4.216718,57.691216],[-4.213249,57.690991],[-4.207426,57.692651],[-4.202737,57.69261],[-4.198414,57.691778],[-4.190261,57.691291],[-4.186307,57.690609],[-4.1801,57.688977],[-4.179592,57.688453],[-4.179919,57.686609],[-4.182753,57.68638],[-4.182659,57.684795],[-4.181802,57.68427],[-4.179197,57.684385],[-4.178929,57.686889],[-4.176495,57.686941],[-4.176409,57.685486],[-4.173287,57.685081],[-4.167787,57.685127],[-4.168399,57.686157],[-4.166988,57.686662],[-4.159183,57.688689],[-4.153464,57.69284],[-4.146449,57.69608],[-4.141027,57.699421],[-4.1327,57.703886],[-4.129106,57.705124],[-4.123781,57.708218],[-4.114622,57.711851],[-4.113673,57.713747],[-4.109667,57.717668],[-4.108243,57.718557],[-4.105905,57.719149],[-4.103834,57.719266],[-4.102622,57.720684],[-4.092599,57.724087],[-4.091294,57.725122],[-4.08752,57.726516],[-4.087096,57.727063],[-4.084544,57.728213],[-4.075661,57.731081],[-4.073184,57.732262],[-4.067482,57.731737],[-4.066069,57.731287],[-4.059998,57.730927],[-4.058365,57.72974],[-4.053667,57.730228],[-4.049962,57.729412],[-4.047394,57.730335],[-4.04628,57.731812],[-4.048021,57.731789],[-4.048158,57.733089],[-4.045338,57.734064],[-4.043376,57.735468],[-4.039209,57.736911],[-4.035682,57.737307],[-4.034301,57.736917],[-4.033181,57.737496],[-4.029455,57.737824],[-4.025977,57.737335],[-4.023716,57.738302],[-4.020231,57.738167],[-4.018233,57.737771],[-4.019153,57.736772],[-4.016557,57.735665],[-4.014746,57.735995],[-4.012832,57.736863],[-4.012024,57.738106],[-4.011782,57.740644],[-4.01014,57.741409],[-4.008662,57.74134],[-4.009277,57.73852],[-4.009287,57.734406],[-4.00835,57.73344],[-4.008971,57.732093],[-4.007711,57.730844],[-4.007805,57.729581],[-4.009644,57.728819],[-4.009367,57.727972],[-4.011034,57.727631],[-4.010202,57.726521],[-4.010993,57.725555],[-4.015389,57.725029],[-4.017398,57.724053],[-4.021356,57.722653],[-4.022741,57.720763],[-4.025465,57.719415],[-4.026458,57.717088],[-4.026065,57.714706],[-4.025128,57.712961],[-4.027176,57.712867],[-4.029417,57.710742],[-4.030951,57.708641],[-4.030881,57.707759],[-4.033342,57.70456],[-4.034084,57.70075],[-4.035929,57.699007],[-4.035778,57.696166],[-4.037617,57.695293],[-4.034747,57.694432],[-4.024381,57.694604],[-4.024336,57.69346],[-4.020515,57.692401],[-4.011196,57.693277],[-4.007358,57.694531],[-4.002083,57.693836],[-3.999646,57.692819],[-3.996588,57.6924],[-3.995191,57.691899],[-3.992175,57.691662],[-3.990854,57.691983],[-3.986928,57.691472],[-3.982176,57.692372],[-3.98182,57.692766],[-3.97829,57.693293],[-3.975703,57.694475],[-3.975358,57.695073],[-3.971096,57.697548],[-3.970392,57.698632],[-3.968798,57.699879],[-3.966726,57.700805],[-3.966335,57.701795],[-3.957832,57.70858],[-3.953863,57.710622],[-3.951118,57.713104],[-3.948245,57.714635],[-3.943436,57.718393],[-3.94175,57.719523],[-3.938144,57.723208],[-3.932194,57.727727],[-3.931639,57.728295],[-3.931424,57.730858],[-3.930325,57.732926],[-3.927281,57.735186],[-3.924788,57.738387],[-3.921969,57.739901],[-3.919977,57.742762],[-3.918037,57.744232],[-3.917477,57.746123],[-3.917648,57.750493],[-3.916323,57.752563],[-3.9133,57.753397],[-3.91137,57.755179],[-3.910032,57.75493],[-3.90859,57.756286],[-3.899708,57.760191],[-3.895751,57.764071],[-3.894637,57.766083],[-3.889706,57.767877],[-3.887727,57.769235],[-3.886233,57.770894],[-3.885313,57.770787],[-3.882485,57.77205],[-3.876548,57.773151],[-3.870557,57.776655],[-3.866625,57.779786],[-3.86413,57.782346],[-3.86033,57.78462],[-3.85793,57.78686],[-3.853289,57.789112],[-3.848702,57.79402],[-3.848119,57.796037],[-3.845951,57.797306],[-3.844802,57.798766],[-3.843149,57.799509],[-3.841579,57.800861],[-3.838307,57.801776],[-3.836917,57.802545],[-3.827008,57.811203],[-3.826697,57.812313],[-3.82477,57.813323],[-3.821725,57.816],[-3.819644,57.816965],[-3.818681,57.818231],[-3.814929,57.820392],[-3.814077,57.821263],[-3.813442,57.823031],[-3.812209,57.824495],[-3.810286,57.82604],[-3.808699,57.826694],[-3.805403,57.829438],[-3.801742,57.831037],[-3.79905,57.833629],[-3.796993,57.834461],[-3.791415,57.838397],[-3.791015,57.839296],[-3.789125,57.84056],[-3.788121,57.842601],[-3.787117,57.843081],[-3.785135,57.846091],[-3.781724,57.849508],[-3.781152,57.851347],[-3.777868,57.8537],[-3.77864,57.854902],[-3.77828,57.856092],[-3.779882,57.857598],[-3.779552,57.860135],[-3.7799,57.8612],[-3.77752,57.862172],[-3.77675,57.863638],[-3.772014,57.866916],[-3.773267,57.867204],[-3.776003,57.866447],[-3.77668,57.867354],[-3.780684,57.866498],[-3.783126,57.866801],[-3.785745,57.865892],[-3.787101,57.866044],[-3.790067,57.864497],[-3.792853,57.865091],[-3.796649,57.864647],[-3.803512,57.862829],[-3.808457,57.862116],[-3.814906,57.858826],[-3.815013,57.857604],[-3.813443,57.856677],[-3.813685,57.855566],[-3.815658,57.853306],[-3.818533,57.851065],[-3.818472,57.850225],[-3.820912,57.848929],[-3.821268,57.846103],[-3.821823,57.845246],[-3.826289,57.842451],[-3.826938,57.840948],[-3.828687,57.839905],[-3.82861,57.838224],[-3.827818,57.835976],[-3.830364,57.834381],[-3.833749,57.833642],[-3.840051,57.833367],[-3.844655,57.831368],[-3.848214,57.830716],[-3.849552,57.829358],[-3.856226,57.825257],[-3.859236,57.824516],[-3.86273,57.8242],[-3.867139,57.823008],[-3.874852,57.822284],[-3.881723,57.822886],[-3.886049,57.822849],[-3.889005,57.821776],[-3.895212,57.8209],[-3.902934,57.821446],[-3.90576,57.822262],[-3.909149,57.822665],[-3.918574,57.820427],[-3.918307,57.818945],[-3.919033,57.81762],[-3.92016,57.817156],[-3.923451,57.816609],[-3.928084,57.816368],[-3.930969,57.81569],[-3.937456,57.816917],[-3.939004,57.816884],[-3.940488,57.81599],[-3.941004,57.814931],[-3.942513,57.814036],[-3.945646,57.813755],[-3.947356,57.812323],[-3.948827,57.812123],[-3.951639,57.81242],[-3.95326,57.813071],[-3.955141,57.815163],[-3.953927,57.814207],[-3.951762,57.814631],[-3.949326,57.814255],[-3.948509,57.815036],[-3.947393,57.813526],[-3.944838,57.814387],[-3.944682,57.815544],[-3.943314,57.816872],[-3.94396,57.818241],[-3.942761,57.81989],[-3.940266,57.82031],[-3.940386,57.82082],[-3.929426,57.82052],[-3.926481,57.821028],[-3.924547,57.822958],[-3.918967,57.826483],[-3.916579,57.826865],[-3.914135,57.826812],[-3.912391,57.827274],[-3.912608,57.82879],[-3.908652,57.830356],[-3.905823,57.828546],[-3.904793,57.829136],[-3.906825,57.82982],[-3.907042,57.831273],[-3.901733,57.829222],[-3.896473,57.826561],[-3.895339,57.825495],[-3.89581,57.824204],[-3.894185,57.824192],[-3.893486,57.82484],[-3.894088,57.825882],[-3.896921,57.827866],[-3.89759,57.828741],[-3.907153,57.833157],[-3.919201,57.838002],[-3.921188,57.837999],[-3.920315,57.836934],[-3.91869,57.836626],[-3.912505,57.834186],[-3.912625,57.833596],[-3.918247,57.833533],[-3.92249,57.835243],[-3.925619,57.835164],[-3.925976,57.834126],[-3.928508,57.83375],[-3.931117,57.834973],[-3.931167,57.836221],[-3.931975,57.837475],[-3.936717,57.839357],[-3.939674,57.841095],[-3.943876,57.841997],[-3.946731,57.843404],[-3.955891,57.845626],[-3.960854,57.845949],[-3.961953,57.845555],[-3.964881,57.845644],[-3.966339,57.845204],[-3.988306,57.836726],[-3.994427,57.834842],[-4.000207,57.832168],[-4.00514,57.830612],[-4.026435,57.821132],[-4.039201,57.817187],[-4.042929,57.816623],[-4.04623,57.815456],[-4.045582,57.814659],[-4.048925,57.814887],[-4.052315,57.816825],[-4.055149,57.817973],[-4.057808,57.818245],[-4.060298,57.819006],[-4.0635,57.821376],[-4.067996,57.823943],[-4.075109,57.826933],[-4.076627,57.828],[-4.079678,57.829],[-4.085678,57.830384],[-4.098559,57.832098],[-4.103534,57.83408],[-4.10234,57.835037],[-4.099131,57.836313],[-4.099027,57.837237],[-4.10317,57.836679],[-4.10894,57.834866],[-4.10956,57.836511],[-4.109789,57.840803],[-4.110881,57.840151],[-4.109741,57.834629],[-4.112781,57.834157],[-4.115453,57.83486],[-4.123896,57.838071],[-4.128124,57.840389],[-4.132732,57.842395],[-4.135531,57.84311],[-4.137682,57.844776],[-4.138993,57.84394],[-4.138146,57.843001],[-4.135677,57.841936],[-4.132066,57.839478],[-4.131094,57.837635],[-4.127097,57.837777],[-4.123112,57.834507],[-4.120851,57.83435],[-4.118926,57.833551],[-4.118284,57.832252],[-4.117775,57.829874],[-4.119348,57.829207],[-4.129955,57.828125],[-4.13235,57.828553],[-4.140971,57.828045],[-4.144456,57.828728],[-4.14717,57.82993],[-4.146664,57.830419],[-4.149945,57.832236],[-4.149824,57.832942],[-4.151497,57.833315],[-4.155874,57.833192],[-4.16103,57.83379],[-4.163845,57.833676],[-4.166995,57.838218],[-4.168742,57.844038],[-4.170719,57.846957],[-4.176528,57.84973],[-4.177855,57.852156],[-4.180138,57.854447],[-4.182738,57.856032],[-4.183578,57.856185],[-4.185688,57.855306],[-4.185136,57.854515],[-4.186179,57.852098],[-4.185917,57.851],[-4.188366,57.849642],[-4.190866,57.855586],[-4.19164,57.861317],[-4.192268,57.86215],[-4.19386,57.862716],[-4.201842,57.861751],[-4.205262,57.862461],[-4.209477,57.860076],[-4.211285,57.85942],[-4.213194,57.860095],[-4.214873,57.860235],[-4.218438,57.859934],[-4.223829,57.858485],[-4.231564,57.858724],[-4.233234,57.859154],[-4.234683,57.858841],[-4.237982,57.858824],[-4.248438,57.857219],[-4.25029,57.856654],[-4.252377,57.856576],[-4.257515,57.854689],[-4.265246,57.851198],[-4.267823,57.850637],[-4.27031,57.850423],[-4.271902,57.850757],[-4.273904,57.852084],[-4.274487,57.853322],[-4.279004,57.855344],[-4.28109,57.856722],[-4.284421,57.855423],[-4.288715,57.856125],[-4.291077,57.85401],[-4.292455,57.853522],[-4.293088,57.851708],[-4.294634,57.851531],[-4.296951,57.8519],[-4.300929,57.853474],[-4.302754,57.856964],[-4.301898,57.858087],[-4.301897,57.859091],[-4.300477,57.859803],[-4.301333,57.861532],[-4.303466,57.862841],[-4.306854,57.862637],[-4.310407,57.862685],[-4.315946,57.861402],[-4.319283,57.8627],[-4.32517,57.864128],[-4.328749,57.865784],[-4.33055,57.866247],[-4.33378,57.867548],[-4.334103,57.869453],[-4.335432,57.869518],[-4.33706,57.868906],[-4.342614,57.870686],[-4.344764,57.871647],[-4.348176,57.872224],[-4.349859,57.873797],[-4.349786,57.876119],[-4.351425,57.876923],[-4.353229,57.87624],[-4.355584,57.876949],[-4.358203,57.878483],[-4.362113,57.882239],[-4.36092,57.883548],[-4.35986,57.883896],[-4.359803,57.884982],[-4.357738,57.886558],[-4.351441,57.887332],[-4.349352,57.888186],[-4.348674,57.888883],[-4.348199,57.890812],[-4.349022,57.891894],[-4.350338,57.892407],[-4.350656,57.893963],[-4.352395,57.894529],[-4.352714,57.895695],[-4.354133,57.895428],[-4.355019,57.897706],[-4.35668,57.898947],[-4.357398,57.900244],[-4.362257,57.901372],[-4.365422,57.901868],[-4.366197,57.901334],[-4.369064,57.901105],[-4.370668,57.902133],[-4.373775,57.901959],[-4.374791,57.90132],[-4.376933,57.901301],[-4.376901,57.89941],[-4.378928,57.89948],[-4.382748,57.901439],[-4.386929,57.904268],[-4.388247,57.904712],[-4.390682,57.906254],[-4.391615,57.907423],[-4.396974,57.909888],[-4.396031,57.91059],[-4.395416,57.912073],[-4.398693,57.91352],[-4.400371,57.916456],[-4.400792,57.922321],[-4.402239,57.92419],[-4.405209,57.924593],[-4.406144,57.925863],[-4.409228,57.926943],[-4.409533,57.927394],[-4.413451,57.928849],[-4.415474,57.931925],[-4.414553,57.93551],[-4.417849,57.937551],[-4.421805,57.941323],[-4.423727,57.942339],[-4.427176,57.943051],[-4.429617,57.943112],[-4.432969,57.943734],[-4.439354,57.945834],[-4.444029,57.946718],[-4.447701,57.94838],[-4.454131,57.952754],[-4.459548,57.953955],[-4.463945,57.954292],[-4.467165,57.955492],[-4.475583,57.954171],[-4.478659,57.954333],[-4.483548,57.953595],[-4.487989,57.954557],[-4.489344,57.955273],[-4.495568,57.955786],[-4.499295,57.955373],[-4.503233,57.95471],[-4.504499,57.953798],[-4.50673,57.953456],[-4.513648,57.954759],[-4.516166,57.954814],[-4.518424,57.954403],[-4.521736,57.954675],[-4.528783,57.95638],[-4.529694,57.955691],[-4.53474,57.956264],[-4.537349,57.956999],[-4.538857,57.95824],[-4.540024,57.96033],[-4.541717,57.961575],[-4.544489,57.962322],[-4.548226,57.96179],[-4.552588,57.962339],[-4.558426,57.963552],[-4.566632,57.966703],[-4.572879,57.9687],[-4.575738,57.969252],[-4.579051,57.970648],[-4.582036,57.97145],[-4.590802,57.972107],[-4.59229,57.972833],[-4.595082,57.972362],[-4.594448,57.973654],[-4.592124,57.973511],[-4.588032,57.972276],[-4.58257,57.972032],[-4.580279,57.972671],[-4.579116,57.97162],[-4.576265,57.970773],[-4.572477,57.970276],[-4.56774,57.968167],[-4.560735,57.966194],[-4.55941,57.964856],[-4.553926,57.96429],[-4.550935,57.963383],[-4.547806,57.96326],[-4.545508,57.963586],[-4.542348,57.963081],[-4.53769,57.960547],[-4.537064,57.958343],[-4.535616,57.957609],[-4.532582,57.956964],[-4.53026,57.956887],[-4.528482,57.957347],[-4.521702,57.956094],[-4.51902,57.955909],[-4.513008,57.955893],[-4.508779,57.955608],[-4.509168,57.95614],[-4.507635,57.956945],[-4.506509,57.956022],[-4.504593,57.955748],[-4.496888,57.956476],[-4.496512,57.956879],[-4.489453,57.956629],[-4.485589,57.955538],[-4.482633,57.955197],[-4.476916,57.955481],[-4.47423,57.956021],[-4.472742,57.955791],[-4.467776,57.956617],[-4.466302,57.956445],[-4.463102,57.954889],[-4.454449,57.953835],[-4.451761,57.952713],[-4.447182,57.949222],[-4.442492,57.947283],[-4.440496,57.947193],[-4.437827,57.946265],[-4.432815,57.945197],[-4.424482,57.944211],[-4.420279,57.942775],[-4.420117,57.941794],[-4.417768,57.939765],[-4.41773,57.938291],[-4.415278,57.936599],[-4.413385,57.936711],[-4.412652,57.93503],[-4.413889,57.932654],[-4.413902,57.93164],[-4.411254,57.929482],[-4.410472,57.930384],[-4.406092,57.929862],[-4.40301,57.927722],[-4.403431,57.926232],[-4.399589,57.923371],[-4.399871,57.922566],[-4.399244,57.919076],[-4.397249,57.917433],[-4.397268,57.915878],[-4.396073,57.914894],[-4.393791,57.913806],[-4.386435,57.911649],[-4.383617,57.910219],[-4.383199,57.908592],[-4.380402,57.910326],[-4.37949,57.911199],[-4.377319,57.911478],[-4.374507,57.911174],[-4.373226,57.909875],[-4.370272,57.909497],[-4.366862,57.908438],[-4.365718,57.9084],[-4.36234,57.907142],[-4.360865,57.904804],[-4.358973,57.90396],[-4.355935,57.901541],[-4.353411,57.900068],[-4.349919,57.896631],[-4.346066,57.890835],[-4.34568,57.888639],[-4.344305,57.88753],[-4.341199,57.886139],[-4.333286,57.880906],[-4.327126,57.878401],[-4.320534,57.876603],[-4.315402,57.876393],[-4.311621,57.87566],[-4.305304,57.873638],[-4.303606,57.871596],[-4.299725,57.868651],[-4.298917,57.867399],[-4.296791,57.866524],[-4.294792,57.865134],[-4.290967,57.86206],[-4.286354,57.862009],[-4.275323,57.861242],[-4.273232,57.86172],[-4.2711,57.861329],[-4.269654,57.861929],[-4.27071,57.863974],[-4.274227,57.865838],[-4.274092,57.867817],[-4.273023,57.869182],[-4.271631,57.869743],[-4.26747,57.869777],[-4.264752,57.870059],[-4.258458,57.869741],[-4.250859,57.87024],[-4.245197,57.87078],[-4.239891,57.87078],[-4.236262,57.871379],[-4.232495,57.875133],[-4.227577,57.874236],[-4.219019,57.873367],[-4.217162,57.873469],[-4.215469,57.872919],[-4.212067,57.873294],[-4.206692,57.872015],[-4.204281,57.871888],[-4.202856,57.871168],[-4.199901,57.870768],[-4.197825,57.870006],[-4.195896,57.868594],[-4.193116,57.868218],[-4.186611,57.866963],[-4.180457,57.86706],[-4.178253,57.868432],[-4.175064,57.868269],[-4.173767,57.867505],[-4.1726,57.865764],[-4.172588,57.864721],[-4.173934,57.862605],[-4.174054,57.861201],[-4.17352,57.860049],[-4.168261,57.860307],[-4.164253,57.859449],[-4.162364,57.859329],[-4.152693,57.859422],[-4.147318,57.860429],[-4.14492,57.861972],[-4.143859,57.863511],[-4.144268,57.865932],[-4.139142,57.869044],[-4.138227,57.870431],[-4.135278,57.870164],[-4.132892,57.867743],[-4.132289,57.864994],[-4.133102,57.863831],[-4.132643,57.86309],[-4.133658,57.86212],[-4.135022,57.862568],[-4.138322,57.862541],[-4.138393,57.861293],[-4.134497,57.860739],[-4.134451,57.85919],[-4.137779,57.858723],[-4.141627,57.858751],[-4.142099,57.858017],[-4.144896,57.856971],[-4.147533,57.857438],[-4.146908,57.855305],[-4.145321,57.854323],[-4.136679,57.856462],[-4.132096,57.856141],[-4.129478,57.855567],[-4.127322,57.854626],[-4.125898,57.854817],[-4.124941,57.855804],[-4.121087,57.855704],[-4.118461,57.854915],[-4.115819,57.853639],[-4.114038,57.852043],[-4.111689,57.848499],[-4.110615,57.848867],[-4.10788,57.852271],[-4.108278,57.853624],[-4.107053,57.854965],[-4.103889,57.857119],[-4.094926,57.861732],[-4.09165,57.863],[-4.087587,57.864048],[-4.082615,57.864798],[-4.081478,57.865342],[-4.077471,57.865952],[-4.075731,57.866712],[-4.071826,57.86692],[-4.0666,57.867689],[-4.058303,57.867124],[-4.055653,57.867622],[-4.048333,57.867794],[-4.043894,57.867499],[-4.042262,57.86786],[-4.039686,57.867325],[-4.036758,57.867542],[-4.033915,57.86693],[-4.032503,57.866102],[-4.030895,57.865958],[-4.025887,57.864572],[-4.025913,57.864214],[-4.020058,57.862708],[-4.018513,57.860445],[-4.017325,57.859963],[-4.015401,57.860142],[-4.013024,57.861405],[-4.012676,57.860481],[-4.016304,57.859653],[-4.016358,57.858648],[-4.012592,57.858973],[-4.011382,57.859347],[-4.010282,57.860471],[-4.009945,57.863676],[-4.016159,57.874223],[-4.016948,57.876904],[-4.016697,57.878268],[-4.012295,57.880185],[-4.010683,57.881547],[-4.013165,57.886888],[-4.0131,57.890747],[-4.011266,57.891994],[-4.009201,57.892375],[-4.007577,57.893187],[-4.005685,57.893375],[-4.004936,57.894108],[-4.005211,57.895384],[-4.00412,57.898788],[-4.001079,57.901296],[-3.998246,57.901978],[-3.996527,57.903044],[-3.992208,57.90308],[-3.995602,57.909524],[-3.996589,57.910599],[-4.000533,57.920044],[-4.00124,57.926551],[-4.001868,57.927859],[-4.006472,57.931729],[-4.0092,57.932367],[-4.010298,57.932029],[-4.009981,57.930832],[-4.012817,57.930818],[-4.013662,57.932248],[-4.016767,57.931924],[-4.020757,57.930143],[-4.024423,57.92959],[-4.027306,57.927888],[-4.03072,57.92777],[-4.033449,57.926964],[-4.034932,57.928551],[-4.03425,57.930076],[-4.037628,57.930808],[-4.038824,57.930668],[-4.045355,57.933167],[-4.051662,57.934601],[-4.054368,57.934801],[-4.056503,57.935467],[-4.060236,57.936074],[-4.06886,57.93674],[-4.069636,57.937606],[-4.071783,57.938159],[-4.072471,57.940057],[-4.075989,57.943752],[-4.07974,57.945281],[-4.081299,57.94618],[-4.08139,57.947957],[-4.082465,57.948619],[-4.082152,57.951119],[-4.074955,57.954409],[-4.071037,57.955632],[-4.070481,57.95611],[-4.065592,57.954026],[-4.062156,57.953485],[-4.058681,57.953599],[-4.05458,57.954658],[-4.053767,57.95247],[-4.05467,57.951365],[-4.053687,57.950614],[-4.051596,57.94993],[-4.051596,57.9487],[-4.049299,57.94687],[-4.048072,57.944993],[-4.046376,57.944769],[-4.043526,57.946069],[-4.041382,57.94639],[-4.038167,57.945853],[-4.036818,57.946961],[-4.030472,57.947113],[-4.027553,57.948742],[-4.022975,57.950215],[-4.015872,57.950103],[-4.011152,57.94852],[-4.012382,57.947467],[-4.012584,57.945765],[-4.013657,57.945064],[-4.016203,57.944902],[-4.018592,57.943145],[-4.018719,57.942099],[-4.020138,57.941902],[-4.020497,57.939495],[-4.022225,57.937474],[-4.025037,57.936156],[-4.028504,57.935961],[-4.030013,57.934355],[-4.028955,57.933706],[-4.024806,57.934033],[-4.023499,57.934628],[-4.018498,57.933549],[-4.015982,57.934129],[-4.015881,57.93457],[-4.012907,57.935074],[-4.007913,57.934419],[-4.004169,57.935986],[-4.00176,57.938327],[-4.000288,57.943153],[-3.99694,57.946756],[-3.99384,57.951187],[-3.991741,57.95745],[-3.988089,57.964272],[-3.985065,57.968345],[-3.983451,57.969551],[-3.981248,57.970365],[-3.980073,57.970271],[-3.97505,57.973134],[-3.970644,57.974702],[-3.968752,57.974713],[-3.964231,57.973654],[-3.961589,57.974845],[-3.959244,57.975024],[-3.956567,57.976221],[-3.952848,57.976276],[-3.951187,57.977013],[-3.949066,57.977292],[-3.947163,57.978169],[-3.945644,57.979474],[-3.942811,57.979975],[-3.93903,57.98209],[-3.935657,57.983008],[-3.929308,57.983167],[-3.923597,57.983742],[-3.917338,57.983776],[-3.913104,57.984704],[-3.909203,57.986351],[-3.904309,57.987382],[-3.901074,57.987068],[-3.891257,57.988085],[-3.887727,57.990373],[-3.885108,57.994108],[-3.883396,57.995624],[-3.879835,57.997021],[-3.87667,57.998865],[-3.875245,57.999083],[-3.87136,58.001687],[-3.869456,58.002187],[-3.866289,58.002281],[-3.860165,58.004246],[-3.849574,58.006385],[-3.847775,58.006497],[-3.845625,58.008703],[-3.846512,58.009999],[-3.849487,58.011074],[-3.849268,58.011672],[-3.845145,58.010393],[-3.843663,58.012035],[-3.841191,58.013164],[-3.841011,58.018916],[-3.838358,58.029377],[-3.833304,58.038894],[-3.831922,58.040164],[-3.82731,58.042401],[-3.822519,58.043131],[-3.820847,58.044329],[-3.816582,58.045048],[-3.813354,58.047816],[-3.810394,58.051362],[-3.806438,58.055461],[-3.804269,58.057055],[-3.801655,58.058251],[-3.798926,58.058548],[-3.791352,58.06197],[-3.789864,58.062347],[-3.786052,58.062652],[-3.783709,58.063777],[-3.780157,58.064708],[-3.775271,58.064532],[-3.772958,58.065256],[-3.769954,58.064227],[-3.764439,58.062987],[-3.762513,58.065308],[-3.758449,58.067368],[-3.755063,58.067828],[-3.751523,58.067516],[-3.748774,58.067666],[-3.745362,58.068199],[-3.741832,58.070665],[-3.740327,58.072554],[-3.73838,58.074007],[-3.73818,58.074656],[-3.734636,58.077717],[-3.729365,58.079527],[-3.725499,58.081491],[-3.722944,58.081767],[-3.720515,58.081393],[-3.717763,58.082327],[-3.715853,58.082142],[-3.714001,58.082911],[-3.713021,58.084057],[-3.710392,58.08459],[-3.709268,58.085347],[-3.704886,58.08642],[-3.704161,58.08754],[-3.702115,58.089138],[-3.698834,58.090266],[-3.697112,58.091437],[-3.694027,58.092384],[-3.691094,58.093563],[-3.688033,58.095757],[-3.684005,58.096959],[-3.681574,58.098208],[-3.678718,58.10035],[-3.675594,58.100846],[-3.67208,58.102059],[-3.665132,58.108652],[-3.663019,58.109413],[-3.658727,58.112893],[-3.655302,58.114001],[-3.652411,58.114367],[-3.655204,58.116163],[-3.652222,58.115634],[-3.651993,58.115157],[-3.646724,58.114865],[-3.643964,58.11438],[-3.641581,58.114841],[-3.637041,58.117079],[-3.63313,58.118302],[-3.631242,58.11852],[-3.629987,58.119393],[-3.629438,58.122283],[-3.627461,58.123241],[-3.625514,58.12301],[-3.622776,58.12456],[-3.619697,58.12559],[-3.619009,58.127876],[-3.61576,58.129035],[-3.612564,58.132146],[-3.607113,58.132898],[-3.602689,58.134234],[-3.600439,58.133824],[-3.599961,58.134564],[-3.598005,58.135631],[-3.594853,58.136551],[-3.592247,58.137724],[-3.589096,58.138293],[-3.585229,58.139752],[-3.583019,58.139884],[-3.580719,58.141063],[-3.580333,58.141762],[-3.578479,58.141955],[-3.576658,58.142989],[-3.573407,58.143424],[-3.573075,58.143976],[-3.570761,58.144859],[-3.572292,58.145872],[-3.569822,58.146971],[-3.562613,58.149761],[-3.561207,58.151502],[-3.559471,58.151402],[-3.558489,58.152308],[-3.556274,58.152793],[-3.556915,58.153607],[-3.554243,58.154291],[-3.549646,58.158196],[-3.546973,58.159073],[-3.544421,58.159391],[-3.539269,58.161897],[-3.534333,58.163317],[-3.528384,58.165891],[-3.527035,58.166202],[-3.52482,58.165911],[-3.519561,58.167708],[-3.517282,58.167682],[-3.516744,58.168479],[-3.514564,58.16937],[-3.514443,58.170162],[-3.508343,58.171841],[-3.506967,58.173098],[-3.505207,58.175327],[-3.503871,58.17607],[-3.502316,58.178095],[-3.499854,58.179332],[-3.49779,58.179885],[-3.49722,58.180814],[-3.495857,58.181239],[-3.496465,58.182397],[-3.4952,58.183795],[-3.4938,58.184126],[-3.494665,58.185283],[-3.493,58.186406],[-3.491227,58.186512],[-3.489923,58.188764],[-3.488587,58.189437],[-3.488524,58.190577],[-3.485797,58.191492],[-3.484622,58.192906],[-3.480902,58.193984],[-3.479377,58.193835],[-3.475605,58.195685],[-3.475417,58.198395],[-3.474688,58.198767],[-3.475381,58.200164],[-3.474585,58.201439],[-3.472158,58.203439],[-3.470994,58.205178],[-3.46996,58.205993],[-3.470645,58.206798],[-3.469844,58.208464],[-3.467703,58.208639],[-3.466482,58.209411],[-3.466218,58.21129],[-3.464426,58.211558],[-3.46326,58.212554],[-3.464014,58.21361],[-3.462741,58.214369],[-3.456837,58.218777],[-3.452986,58.220436],[-3.451655,58.221441],[-3.449969,58.221516],[-3.447532,58.223235],[-3.447803,58.224065],[-3.445729,58.225535],[-3.439235,58.228553],[-3.437739,58.229835],[-3.437813,58.230878],[-3.435456,58.232638],[-3.435897,58.23465],[-3.433614,58.236606],[-3.433373,58.237632],[-3.43122,58.239372],[-3.429082,58.24191],[-3.428352,58.24422],[-3.427087,58.244993],[-3.424781,58.245439],[-3.42223,58.244878],[-3.417566,58.244583],[-3.416138,58.245523],[-3.414185,58.246099],[-3.414924,58.246727],[-3.412889,58.247311],[-3.412151,58.248165],[-3.410578,58.248678],[-3.410644,58.25007],[-3.409264,58.251268],[-3.407804,58.25188],[-3.407728,58.252595],[-3.405666,58.252986],[-3.405474,58.253578],[-3.403583,58.254213],[-3.400321,58.255917],[-3.400433,58.25811],[-3.398992,58.259287],[-3.397839,58.259533],[-3.395009,58.261893],[-3.395051,58.262884],[-3.392106,58.263526],[-3.3887,58.265368],[-3.3879,58.266292],[-3.384463,58.267467],[-3.381083,58.269269],[-3.381494,58.270497],[-3.378431,58.270074],[-3.375997,58.27145],[-3.375484,58.272217],[-3.36777,58.275158],[-3.361838,58.276067],[-3.359731,58.277016],[-3.356261,58.277709],[-3.354501,58.27755],[-3.353768,58.278324],[-3.350763,58.278308],[-3.345357,58.27928],[-3.342567,58.279535],[-3.340343,58.280196],[-3.33881,58.281489],[-3.335838,58.28091],[-3.333569,58.281096],[-3.331848,58.281679],[-3.330254,58.281426],[-3.327702,58.282232],[-3.329304,58.283863],[-3.331982,58.285079],[-3.330636,58.285867],[-3.327593,58.286001],[-3.324947,58.285658],[-3.32231,58.28682],[-3.320843,58.286092],[-3.316452,58.286439],[-3.317338,58.287367],[-3.31429,58.28773],[-3.312189,58.287178],[-3.31142,58.287823],[-3.308111,58.287311],[-3.306796,58.288469],[-3.302211,58.289353],[-3.297359,58.289285],[-3.292902,58.291141],[-3.2936,58.292755],[-3.291341,58.294328],[-3.291681,58.295371],[-3.290773,58.295768],[-3.291323,58.296755],[-3.290329,58.29713],[-3.289445,58.295624],[-3.288101,58.29459],[-3.286627,58.294354],[-3.284155,58.295339],[-3.278673,58.296612],[-3.278644,58.297734],[-3.276302,58.297664],[-3.272096,58.298707],[-3.265357,58.299236],[-3.263367,58.298612],[-3.259277,58.300226],[-3.257667,58.299958],[-3.257034,58.29895],[-3.253852,58.298185],[-3.251528,58.298073],[-3.248952,58.298842],[-3.24488,58.300559],[-3.243524,58.300663],[-3.239745,58.301834],[-3.239799,58.302705],[-3.237603,58.302365],[-3.23532,58.30262],[-3.233245,58.302451],[-3.231209,58.302917],[-3.230211,58.30365],[-3.225744,58.304543],[-3.225212,58.304957],[-3.221086,58.305271],[-3.216042,58.30731],[-3.214437,58.308387],[-3.209673,58.310003],[-3.208193,58.311286],[-3.206069,58.313728],[-3.203821,58.315569],[-3.199364,58.316623],[-3.19841,58.318032],[-3.198382,58.319685],[-3.194652,58.321511],[-3.194695,58.322299],[-3.192372,58.322351],[-3.192597,58.323397],[-3.191004,58.324422],[-3.190782,58.325523],[-3.187133,58.327353],[-3.187212,58.328229],[-3.183556,58.33043],[-3.1844,58.331325],[-3.183051,58.331783],[-3.181594,58.333118],[-3.180286,58.332969],[-3.177865,58.334187],[-3.177783,58.335325],[-3.175229,58.335303],[-3.17314,58.33648],[-3.172671,58.337231],[-3.170865,58.337607],[-3.170197,58.33866],[-3.168276,58.338751],[-3.167473,58.339814],[-3.165044,58.340595],[-3.164345,58.341547],[-3.162457,58.342388],[-3.164839,58.34278],[-3.164297,58.343987],[-3.161912,58.343885],[-3.161354,58.345896],[-3.157882,58.346486],[-3.157342,58.347123],[-3.154226,58.348139],[-3.154609,58.349211],[-3.149958,58.349948],[-3.150942,58.350871],[-3.146865,58.352994],[-3.146495,58.354216],[-3.145057,58.354346],[-3.144728,58.355788],[-3.141108,58.355726],[-3.138427,58.356699],[-3.135248,58.356618],[-3.131104,58.358537],[-3.126685,58.359514],[-3.127231,58.360881],[-3.124841,58.361422],[-3.124507,58.36289],[-3.120807,58.365077],[-3.120082,58.365869],[-3.117551,58.366155],[-3.116895,58.366593],[-3.117553,58.367785],[-3.113802,58.369655],[-3.111818,58.369544],[-3.11143,58.370279],[-3.109251,58.370534],[-3.107919,58.37118],[-3.110498,58.373013],[-3.1104,58.374065],[-3.108449,58.374023],[-3.106583,58.375793],[-3.107135,58.378463],[-3.108538,58.378727],[-3.106415,58.380153],[-3.106412,58.381537],[-3.107096,58.381917],[-3.10372,58.383612],[-3.103311,58.385125],[-3.101634,58.385943],[-3.099586,58.388788],[-3.101065,58.39033],[-3.10009,58.391758],[-3.097765,58.393003],[-3.100079,58.393989],[-3.102399,58.39314],[-3.102176,58.394418],[-3.100247,58.395412],[-3.100741,58.395942],[-3.098602,58.3973],[-3.094588,58.39917],[-3.093203,58.401041],[-3.091645,58.40195],[-3.09086,58.40374],[-3.087715,58.404386],[-3.088808,58.405491],[-3.088378,58.406213],[-3.09064,58.408473],[-3.08959,58.409109],[-3.091302,58.411368],[-3.089122,58.41119],[-3.085802,58.413606],[-3.084461,58.413985],[-3.083227,58.417039],[-3.086785,58.418275],[-3.08077,58.420894],[-3.079921,58.422737],[-3.080283,58.424253],[-3.073746,58.425974],[-3.072883,58.427314],[-3.069351,58.428634],[-3.068418,58.430638],[-3.069999,58.431951],[-3.070377,58.434024],[-3.071936,58.434478],[-3.073849,58.434463],[-3.075066,58.43546],[-3.077687,58.43655],[-3.080543,58.437185],[-3.081476,58.437889],[-3.084152,58.438133],[-3.084035,58.439101],[-3.086303,58.439678],[-3.086416,58.440956],[-3.087338,58.441754],[-3.089935,58.441648],[-3.092777,58.440823],[-3.096473,58.442495],[-3.10029,58.442502],[-3.103635,58.443268],[-3.108069,58.445034],[-3.112287,58.445578],[-3.115483,58.446464],[-3.115391,58.447034],[-3.109306,58.445465],[-3.106791,58.445849],[-3.10109,58.443555],[-3.096268,58.443083],[-3.092609,58.441269],[-3.090081,58.442141],[-3.08658,58.442709],[-3.0807,58.442466],[-3.07677,58.441971],[-3.071239,58.4425],[-3.069022,58.44223],[-3.066727,58.44259],[-3.062425,58.442207],[-3.061609,58.44166],[-3.059498,58.44233],[-3.059953,58.443858],[-3.06378,58.445399],[-3.0634,58.446218],[-3.061773,58.446919],[-3.059365,58.446428],[-3.058735,58.447587],[-3.056028,58.447052],[-3.053337,58.447705],[-3.054398,58.449372],[-3.05224,58.449744],[-3.052206,58.451652],[-3.051049,58.45249],[-3.051428,58.453878],[-3.053612,58.455708],[-3.055659,58.456406],[-3.054112,58.457433],[-3.055287,58.459011],[-3.057228,58.460078],[-3.055127,58.4621],[-3.055628,58.463072],[-3.052028,58.465344],[-3.051882,58.467811],[-3.050552,58.469148],[-3.050072,58.470421],[-3.051464,58.470791],[-3.048433,58.472248],[-3.048605,58.473535],[-3.049398,58.47401],[-3.049496,58.475743],[-3.048525,58.47757],[-3.050514,58.478901],[-3.052607,58.479693],[-3.053991,58.478921],[-3.05542,58.47988],[-3.058735,58.47867],[-3.060584,58.478688],[-3.063161,58.479351],[-3.066066,58.478339],[-3.067177,58.478507],[-3.068916,58.477792],[-3.071375,58.477482],[-3.072311,58.476747],[-3.077766,58.475196],[-3.081815,58.475072],[-3.082901,58.474751],[-3.085246,58.474991],[-3.087506,58.474279],[-3.093392,58.474861],[-3.100905,58.474385],[-3.103155,58.473739],[-3.104692,58.473734],[-3.11168,58.47581],[-3.114441,58.477077],[-3.116484,58.477536],[-3.120309,58.479361],[-3.124424,58.482921],[-3.127786,58.487679],[-3.130962,58.494126],[-3.133183,58.50011],[-3.13402,58.50072],[-3.136381,58.500346],[-3.136323,58.501996],[-3.137884,58.503076],[-3.143917,58.504835],[-3.14569,58.505853],[-3.136946,58.503582],[-3.135864,58.502],[-3.136249,58.500417],[-3.134033,58.500906],[-3.133305,58.502464],[-3.133066,58.508141],[-3.131379,58.518497],[-3.12896,58.523248],[-3.12576,58.527408],[-3.120142,58.531217],[-3.115503,58.531442],[-3.112669,58.532275],[-3.108987,58.534626],[-3.107372,58.53762],[-3.098466,58.541777],[-3.096773,58.543162],[-3.094518,58.543641],[-3.088357,58.546866],[-3.088515,58.548332],[-3.085727,58.548597],[-3.085002,58.550017],[-3.083173,58.550872],[-3.082866,58.551575],[-3.083436,58.553776],[-3.081856,58.556427],[-3.079089,58.557382],[-3.077213,58.558481],[-3.07718,58.559233],[-3.074438,58.560853],[-3.074321,58.561739],[-3.069628,58.563087],[-3.067816,58.564156],[-3.066999,58.566338],[-3.068804,58.567858],[-3.067761,58.569433],[-3.067609,58.570938],[-3.066163,58.572294],[-3.065264,58.573775],[-3.065111,58.576257],[-3.063624,58.57864],[-3.060858,58.580183],[-3.061818,58.581334],[-3.063442,58.581534],[-3.063798,58.583052],[-3.067736,58.58464],[-3.068556,58.586188],[-3.070348,58.587076],[-3.070882,58.588447],[-3.072545,58.590218],[-3.072272,58.592074],[-3.070816,58.593168],[-3.064327,58.593957],[-3.058485,58.595597],[-3.052934,58.5963],[-3.045949,58.59638],[-3.044483,58.59684],[-3.044395,58.597585],[-3.042783,58.59807],[-3.042869,58.599551],[-3.044349,58.60002],[-3.041762,58.601489],[-3.042802,58.60376],[-3.040753,58.604481],[-3.03987,58.605707],[-3.03821,58.605937],[-3.036498,58.60887],[-3.036655,58.609754],[-3.035563,58.610219],[-3.036663,58.611564],[-3.038449,58.612957],[-3.039857,58.613012],[-3.04076,58.61418],[-3.037563,58.61796],[-3.038636,58.620289],[-3.0384,58.622962],[-3.038915,58.623496],[-3.038209,58.626824],[-3.038712,58.62871],[-3.037922,58.630428],[-3.036967,58.630899],[-3.037696,58.63201],[-3.035619,58.633573],[-3.034438,58.63401],[-3.034204,58.63516],[-3.032,58.637695],[-3.029416,58.638706],[-3.027251,58.638315],[-3.026312,58.639192],[-3.024818,58.639631],[-3.024289,58.643622],[-3.025504,58.644419],[-3.02739,58.644377],[-3.030323,58.64495],[-3.031604,58.646053],[-3.033351,58.646404],[-3.035612,58.645974],[-3.038183,58.644331],[-3.040089,58.644053],[-3.04253,58.644594],[-3.044546,58.646172],[-3.046608,58.646837],[-3.052501,58.647768],[-3.053874,58.647564],[-3.05448,58.646022],[-3.055747,58.645352],[-3.063079,58.644148],[-3.070736,58.644334],[-3.071964,58.644212],[-3.07958,58.644905],[-3.080437,58.64529],[-3.082853,58.645102],[-3.086555,58.646184],[-3.090991,58.645802],[-3.093469,58.646893],[-3.099972,58.646671],[-3.104111,58.646124],[-3.108423,58.64375],[-3.113887,58.642324],[-3.117434,58.642546],[-3.119518,58.642211],[-3.124454,58.642198],[-3.128116,58.64297],[-3.130057,58.642325],[-3.131345,58.641176],[-3.133355,58.640199],[-3.136469,58.639358],[-3.141904,58.638682],[-3.145705,58.638637],[-3.153478,58.637482],[-3.157364,58.637243],[-3.160668,58.638472],[-3.162801,58.638617],[-3.164992,58.639508],[-3.167255,58.641112],[-3.168984,58.642812],[-3.171336,58.646924],[-3.171869,58.650477],[-3.174325,58.651926],[-3.176534,58.652759],[-3.176939,58.650825],[-3.179069,58.650702],[-3.180926,58.654037],[-3.181812,58.65449],[-3.184393,58.657704],[-3.18827,58.658495],[-3.189923,58.660121],[-3.19174,58.65955],[-3.191746,58.657871],[-3.193911,58.656097],[-3.196942,58.655529],[-3.199802,58.65576],[-3.200722,58.655144],[-3.204951,58.655162],[-3.207769,58.655703],[-3.213496,58.655238],[-3.217651,58.655632],[-3.220249,58.655503],[-3.220698,58.654654],[-3.220119,58.653205],[-3.220519,58.652473],[-3.22354,58.650524],[-3.22665,58.649741],[-3.231168,58.650978],[-3.233542,58.650512],[-3.234568,58.649647],[-3.238918,58.649357],[-3.240129,58.650244],[-3.241133,58.652056],[-3.242574,58.653189],[-3.245205,58.653901],[-3.248759,58.654141],[-3.249541,58.6545],[-3.252923,58.653724],[-3.253796,58.653019],[-3.256623,58.65314],[-3.260592,58.652341],[-3.262176,58.651736],[-3.262959,58.652704],[-3.265545,58.652905],[-3.269226,58.653921],[-3.270604,58.653757],[-3.271761,58.652855],[-3.277539,58.653327],[-3.276034,58.65183],[-3.277589,58.651406],[-3.281499,58.651148],[-3.283,58.649176],[-3.28595,58.647552],[-3.287942,58.647553],[-3.289659,58.648837],[-3.290934,58.648624],[-3.289707,58.647247],[-3.290177,58.646585],[-3.293926,58.645514],[-3.294956,58.646058],[-3.29978,58.646149],[-3.307769,58.643916],[-3.309332,58.642993],[-3.311393,58.643656],[-3.309617,58.644609],[-3.309997,58.645735],[-3.313786,58.646003],[-3.314018,58.646836],[-3.315893,58.647227],[-3.318683,58.647199],[-3.320339,58.64606],[-3.321308,58.646081],[-3.32102,58.647683],[-3.32198,58.648692],[-3.323409,58.648599],[-3.324117,58.647537],[-3.326099,58.647061],[-3.326956,58.647805],[-3.331809,58.647009],[-3.334348,58.647797],[-3.335819,58.647562],[-3.338143,58.647991],[-3.341113,58.646812],[-3.344631,58.64675],[-3.346857,58.648658],[-3.347359,58.651974],[-3.346684,58.652502],[-3.347735,58.653887],[-3.350167,58.656137],[-3.351827,58.656839],[-3.35223,58.65991],[-3.354933,58.664117],[-3.359692,58.667271],[-3.36144,58.66888],[-3.364102,58.669994],[-3.367229,58.670267],[-3.369753,58.670919],[-3.375753,58.67168],[-3.378789,58.670347],[-3.383204,58.670038],[-3.387095,58.668597],[-3.388847,58.668449],[-3.391591,58.666678],[-3.399108,58.665017],[-3.402926,58.663077],[-3.404409,58.661152],[-3.408171,58.658525],[-3.408305,58.656208],[-3.409559,58.653632],[-3.40959,58.650629],[-3.410844,58.649871],[-3.412708,58.646848],[-3.412216,58.644742],[-3.413592,58.642886],[-3.4128,58.641943],[-3.413553,58.640445],[-3.412731,58.639326],[-3.410996,58.638196],[-3.409258,58.637889],[-3.407162,58.636703],[-3.403075,58.636202],[-3.402741,58.635658],[-3.399585,58.634411],[-3.399526,58.633976],[-3.396153,58.633105],[-3.394736,58.632383],[-3.391133,58.631635],[-3.387657,58.630259],[-3.385369,58.629929],[-3.383122,58.628806],[-3.379882,58.628287],[-3.376947,58.628496],[-3.374709,58.62816],[-3.372969,58.626591],[-3.372039,58.624306],[-3.372528,58.623568],[-3.370937,58.622418],[-3.365229,58.62183],[-3.362804,58.62023],[-3.359874,58.619986],[-3.354642,58.620223],[-3.351059,58.619977],[-3.349039,58.618901],[-3.346985,58.616021],[-3.346357,58.61388],[-3.346714,58.611575],[-3.348107,58.60933],[-3.354031,58.603244],[-3.353847,58.602296],[-3.355112,58.601954],[-3.363761,58.59679],[-3.367703,58.595355],[-3.372467,58.59432],[-3.375179,58.594243],[-3.377003,58.595266],[-3.379252,58.595704],[-3.380174,58.596826],[-3.382208,58.598112],[-3.387094,58.599512],[-3.389517,58.599806],[-3.390162,58.600491],[-3.395106,58.601611],[-3.396577,58.602266],[-3.399008,58.602512],[-3.403114,58.602113],[-3.403911,58.602501],[-3.406136,58.601786],[-3.409028,58.601384],[-3.413842,58.601354],[-3.416986,58.601666],[-3.418201,58.602516],[-3.421899,58.602945],[-3.424021,58.604211],[-3.428811,58.602796],[-3.431271,58.6026],[-3.434908,58.604312],[-3.435668,58.60638],[-3.432095,58.608412],[-3.434279,58.610221],[-3.436064,58.611088],[-3.438711,58.61152],[-3.440042,58.61055],[-3.444061,58.610139],[-3.444747,58.610755],[-3.448321,58.608691],[-3.450084,58.608531],[-3.452506,58.609367],[-3.451567,58.610466],[-3.455092,58.611181],[-3.457504,58.612415],[-3.459523,58.612457],[-3.461266,58.611739],[-3.462896,58.612308],[-3.465317,58.611648],[-3.466973,58.612021],[-3.468399,58.6115],[-3.470608,58.611318],[-3.471915,58.610481],[-3.473028,58.610824],[-3.477232,58.609344],[-3.480262,58.609672],[-3.484897,58.609612],[-3.486683,58.609178],[-3.4884,58.608182],[-3.49038,58.607987],[-3.498097,58.605227],[-3.499548,58.605136],[-3.502183,58.603482],[-3.505154,58.602517],[-3.508855,58.599219],[-3.510675,58.598588],[-3.513011,58.597156],[-3.513781,58.593881],[-3.518828,58.592549],[-3.524036,58.589007],[-3.523992,58.589713],[-3.520868,58.592235],[-3.514878,58.594819],[-3.515241,58.595395],[-3.513268,58.597923],[-3.512965,58.599343],[-3.515449,58.59814],[-3.515428,58.597537],[-3.518529,58.597144],[-3.525151,58.59689],[-3.526995,58.598358],[-3.530112,58.599789],[-3.533712,58.600409],[-3.536783,58.600551],[-3.543293,58.602216],[-3.548867,58.604974],[-3.55042,58.606132],[-3.552108,58.608284],[-3.547978,58.609574],[-3.55045,58.610813],[-3.551056,58.61155],[-3.545288,58.612613],[-3.539966,58.613994],[-3.538038,58.615977],[-3.538284,58.618224],[-3.536127,58.621505],[-3.535506,58.622983],[-3.537739,58.623126],[-3.540416,58.622547],[-3.545734,58.623887],[-3.546042,58.623142],[-3.548616,58.623502],[-3.551331,58.622553],[-3.5529,58.622342],[-3.556071,58.623579],[-3.558,58.623543],[-3.559669,58.621871],[-3.564729,58.621243],[-3.566943,58.620502],[-3.570506,58.620279],[-3.573229,58.619704],[-3.575396,58.619915],[-3.579325,58.619401],[-3.580003,58.618591],[-3.581642,58.618779],[-3.584577,58.617686],[-3.586621,58.617764],[-3.589547,58.619376],[-3.596292,58.617846],[-3.598593,58.618045],[-3.600772,58.616968],[-3.604094,58.616861],[-3.605545,58.617467],[-3.609985,58.616596],[-3.612686,58.616886],[-3.617135,58.616268],[-3.621655,58.616272],[-3.622073,58.615627],[-3.627392,58.615821],[-3.63185,58.615083],[-3.634805,58.615642],[-3.640282,58.615361],[-3.642926,58.617618],[-3.643828,58.616985],[-3.646851,58.617196],[-3.64976,58.617937],[-3.649871,58.619535],[-3.651005,58.620286],[-3.654658,58.621129],[-3.656099,58.621162],[-3.656691,58.620353],[-3.658468,58.619546],[-3.660039,58.619969],[-3.661264,58.619222],[-3.665656,58.618206],[-3.66699,58.617304],[-3.668725,58.617209],[-3.669312,58.615506],[-3.670219,58.614818],[-3.6722,58.614475],[-3.673196,58.612912],[-3.671958,58.612382],[-3.671662,58.610154],[-3.672188,58.609216],[-3.671517,58.607599],[-3.672708,58.606544],[-3.674789,58.607319],[-3.677134,58.60769],[-3.677697,58.609305],[-3.67919,58.608435],[-3.681639,58.60879],[-3.686316,58.606959],[-3.688577,58.60673],[-3.694022,58.604595],[-3.69551,58.605176],[-3.699055,58.604261],[-3.700147,58.604529],[-3.701248,58.603335],[-3.702671,58.602595],[-3.70603,58.60217],[-3.707349,58.601222],[-3.708644,58.600979],[-3.711774,58.598833],[-3.71319,58.599239],[-3.714855,58.598901],[-3.716691,58.597639],[-3.718925,58.597248],[-3.720568,58.59622],[-3.72531,58.594455],[-3.72879,58.592293],[-3.731093,58.591443],[-3.731607,58.589883],[-3.733723,58.589166],[-3.735036,58.588192],[-3.734669,58.587528],[-3.740419,58.584723],[-3.74039,58.584168],[-3.742402,58.583041],[-3.745344,58.582205],[-3.74662,58.582267],[-3.748304,58.580011],[-3.750255,58.578951],[-3.753321,58.578661],[-3.755331,58.578947],[-3.758042,58.578198],[-3.758771,58.578424],[-3.762535,58.576726],[-3.766813,58.575403],[-3.772082,58.574332],[-3.77265,58.573785],[-3.775844,58.572497],[-3.776765,58.571518],[-3.776935,58.569954],[-3.776462,58.568373],[-3.77508,58.56759],[-3.775054,58.565818],[-3.779792,58.563717],[-3.780769,58.563514],[-3.787403,58.563316],[-3.788627,58.563439],[-3.79235,58.564549],[-3.79381,58.565561],[-3.794478,58.56672],[-3.793384,58.567603],[-3.793398,58.569454],[-3.794382,58.572202],[-3.800742,58.573622],[-3.806624,58.571882],[-3.807801,58.570753],[-3.811603,58.570589],[-3.818046,58.569199],[-3.820314,58.569096],[-3.821251,58.568101],[-3.822999,58.567636],[-3.825036,58.568137],[-3.829478,58.568121],[-3.829265,58.569197],[-3.831956,58.568436],[-3.833496,58.567384],[-3.836418,58.568266],[-3.840966,58.569063],[-3.842272,58.568475],[-3.844166,58.56695],[-3.84508,58.565035],[-3.846674,58.56561],[-3.850882,58.564683],[-3.852579,58.565332],[-3.855698,58.565218],[-3.858582,58.563679],[-3.863031,58.562981],[-3.864883,58.56387],[-3.866289,58.563827],[-3.869764,58.564947],[-3.872626,58.564769],[-3.875201,58.565009],[-3.876565,58.56548],[-3.879843,58.565007],[-3.881332,58.565536],[-3.880556,58.56627],[-3.883813,58.566456],[-3.885873,58.565636],[-3.88848,58.566413],[-3.890005,58.567879],[-3.895285,58.568241],[-3.895587,58.567585],[-3.898639,58.567378],[-3.902945,58.566247],[-3.90509,58.564484],[-3.907254,58.56431],[-3.908099,58.562911],[-3.907351,58.562132],[-3.907753,58.560975],[-3.906045,58.558557],[-3.907711,58.557608],[-3.910336,58.557278],[-3.91083,58.556485],[-3.906722,58.556327],[-3.904096,58.554155],[-3.90382,58.552822],[-3.902873,58.551604],[-3.903556,58.550227],[-3.901496,58.546267],[-3.901713,58.545752],[-3.899891,58.541187],[-3.900738,58.541513],[-3.902613,58.545776],[-3.904692,58.548564],[-3.905071,58.54948],[-3.905001,58.552376],[-3.906056,58.553567],[-3.908814,58.55511],[-3.911074,58.555477],[-3.912887,58.556459],[-3.910397,58.557762],[-3.907135,58.558502],[-3.908787,58.55911],[-3.912256,58.558648],[-3.915525,58.558717],[-3.918588,58.559227],[-3.920906,58.56007],[-3.923672,58.56302],[-3.923259,58.567359],[-3.924538,58.567737],[-3.924553,58.568608],[-3.926532,58.568651],[-3.927838,58.570153],[-3.931178,58.570343],[-3.93257,58.570842],[-3.931905,58.571882],[-3.932562,58.573371],[-3.934644,58.573645],[-3.934673,58.571708],[-3.937517,58.571743],[-3.939688,58.572244],[-3.940937,58.570805],[-3.942839,58.570621],[-3.943431,58.569577],[-3.941401,58.568744],[-3.943145,58.568063],[-3.943016,58.567056],[-3.945813,58.56721],[-3.94702,58.568111],[-3.948635,58.567814],[-3.950221,58.570185],[-3.949743,58.571706],[-3.955157,58.573902],[-3.955777,58.572852],[-3.957592,58.573503],[-3.959188,58.573449],[-3.958944,58.57192],[-3.961423,58.572359],[-3.963191,58.57159],[-3.963432,58.570493],[-3.964781,58.570477],[-3.965773,58.569565],[-3.967917,58.569704],[-3.969614,58.568594],[-3.971951,58.569313],[-3.972685,58.570236],[-3.975358,58.570195],[-3.977516,58.569796],[-3.979988,58.569854],[-3.981839,58.570326],[-3.983983,58.569587],[-3.985512,58.570135],[-3.989091,58.569212],[-3.99018,58.568371],[-3.993236,58.567794],[-3.99403,58.56641],[-3.996154,58.566107],[-4.001803,58.566086],[-4.003545,58.565708],[-4.004981,58.564666],[-4.00614,58.56758],[-4.00588,58.568651],[-4.00689,58.571048],[-4.007041,58.573472],[-4.006046,58.574074],[-4.007663,58.576336],[-4.007737,58.577873],[-4.008601,58.578514],[-4.010707,58.578164],[-4.009361,58.581298],[-4.01163,58.580654],[-4.012781,58.58121],[-4.010892,58.582275],[-4.011217,58.583741],[-4.011325,58.58683],[-4.01044,58.587264],[-4.012534,58.588318],[-4.012086,58.589632],[-4.012873,58.590968],[-4.014516,58.590913],[-4.014569,58.592919],[-4.016066,58.594217],[-4.015033,58.597264],[-4.017878,58.601152],[-4.019885,58.600502],[-4.02004,58.598474],[-4.018962,58.59669],[-4.020989,58.596284],[-4.021239,58.594142],[-4.022079,58.592906],[-4.023551,58.593261],[-4.02607,58.592212],[-4.031845,58.590873],[-4.034128,58.591614],[-4.036663,58.590499],[-4.037197,58.588874],[-4.038845,58.591856],[-4.0406,58.591069],[-4.04344,58.591125],[-4.044356,58.589493],[-4.043592,58.58746],[-4.043938,58.586156],[-4.043627,58.583508],[-4.046931,58.583453],[-4.047196,58.582452],[-4.048568,58.582358],[-4.050568,58.581428],[-4.04738,58.578881],[-4.047779,58.577357],[-4.049763,58.57656],[-4.049321,58.574877],[-4.048352,58.574752],[-4.048448,58.573469],[-4.047455,58.571968],[-4.049857,58.571061],[-4.053032,58.570442],[-4.055011,58.567977],[-4.056876,58.568217],[-4.05809,58.567108],[-4.060756,58.567121],[-4.062337,58.56621],[-4.066519,58.564566],[-4.068482,58.564912],[-4.068776,58.564067],[-4.070618,58.563401],[-4.071697,58.562083],[-4.069832,58.561634],[-4.069666,58.560898],[-4.070967,58.559675],[-4.069365,58.557552],[-4.070064,58.555505],[-4.071465,58.554266],[-4.070155,58.552498],[-4.073658,58.551275],[-4.077501,58.551704],[-4.079085,58.551145],[-4.080842,58.55195],[-4.081519,58.554016],[-4.083801,58.556189],[-4.084713,58.558079],[-4.084155,58.560127],[-4.087781,58.561685],[-4.090382,58.55729],[-4.091897,58.556916],[-4.095576,58.558647],[-4.094782,58.559529],[-4.094965,58.560778],[-4.09824,58.562813],[-4.103721,58.563595],[-4.103425,58.564529],[-4.104635,58.565349],[-4.105974,58.564883],[-4.103527,58.561285],[-4.106014,58.561153],[-4.106726,58.56196],[-4.108717,58.561464],[-4.1096,58.560291],[-4.111207,58.56082],[-4.112037,58.561921],[-4.111968,58.563758],[-4.113515,58.564862],[-4.113299,58.566338],[-4.114878,58.566272],[-4.115499,58.569011],[-4.11677,58.569278],[-4.117642,58.567154],[-4.119603,58.567119],[-4.121597,58.568336],[-4.12463,58.569301],[-4.126383,58.568715],[-4.126418,58.567132],[-4.128747,58.567005],[-4.131244,58.564678],[-4.131236,58.562678],[-4.13349,58.562291],[-4.134097,58.563054],[-4.138669,58.565111],[-4.141634,58.564308],[-4.142206,58.565709],[-4.147363,58.566192],[-4.147158,58.563583],[-4.150371,58.562063],[-4.151794,58.563449],[-4.153813,58.56223],[-4.152928,58.559616],[-4.154927,58.557102],[-4.155485,58.555622],[-4.154996,58.55437],[-4.156259,58.55426],[-4.156838,58.551246],[-4.155955,58.550299],[-4.157332,58.548798],[-4.156632,58.548033],[-4.159188,58.547397],[-4.162277,58.547013],[-4.164319,58.546174],[-4.165111,58.545357],[-4.164265,58.544766],[-4.166586,58.543759],[-4.170029,58.545359],[-4.172127,58.544294],[-4.175287,58.545226],[-4.173681,58.5421],[-4.176955,58.542237],[-4.178451,58.543064],[-4.179735,58.543115],[-4.181579,58.544329],[-4.182716,58.545589],[-4.185534,58.546155],[-4.188449,58.54563],[-4.190723,58.544628],[-4.192881,58.546422],[-4.19562,58.546393],[-4.197902,58.549131],[-4.198971,58.54827],[-4.200714,58.548522],[-4.199936,58.550921],[-4.200283,58.551973],[-4.201702,58.552923],[-4.203912,58.551889],[-4.207741,58.551809],[-4.210401,58.552394],[-4.212675,58.55127],[-4.214299,58.551265],[-4.213552,58.548931],[-4.212364,58.547747],[-4.213725,58.547349],[-4.212893,58.54584],[-4.211074,58.545117],[-4.2108,58.543088],[-4.209822,58.541291],[-4.211525,58.540143],[-4.21496,58.5408],[-4.216889,58.540478],[-4.217367,58.539412],[-4.219728,58.540502],[-4.219996,58.539168],[-4.218516,58.538453],[-4.216167,58.538318],[-4.213385,58.535812],[-4.209425,58.533655],[-4.210688,58.531788],[-4.213573,58.53058],[-4.215073,58.530989],[-4.215223,58.53216],[-4.217516,58.533085],[-4.218631,58.532392],[-4.221822,58.532703],[-4.223148,58.532049],[-4.224032,58.533662],[-4.225719,58.534444],[-4.227503,58.533743],[-4.230208,58.535126],[-4.232467,58.534517],[-4.233165,58.535781],[-4.234931,58.535485],[-4.237262,58.536183],[-4.237654,58.536933],[-4.239952,58.537658],[-4.240966,58.53655],[-4.24017,58.535651],[-4.241683,58.533744],[-4.240257,58.531651],[-4.24094,58.531417],[-4.23962,58.529384],[-4.237571,58.528234],[-4.235428,58.527939],[-4.233211,58.525365],[-4.231721,58.524917],[-4.228726,58.522417],[-4.228204,58.521267],[-4.225853,58.519485],[-4.224944,58.516692],[-4.22274,58.516254],[-4.22044,58.515177],[-4.215482,58.511192],[-4.213565,58.508367],[-4.213212,58.506786],[-4.210699,58.505045],[-4.210527,58.503957],[-4.211922,58.503888],[-4.21391,58.505206],[-4.214178,58.506454],[-4.216715,58.507628],[-4.216959,58.508774],[-4.216384,58.51047],[-4.217887,58.511608],[-4.219629,58.512314],[-4.221564,58.513913],[-4.223181,58.513858],[-4.224856,58.513113],[-4.228833,58.514445],[-4.229914,58.515672],[-4.229143,58.516418],[-4.23016,58.517445],[-4.228593,58.518901],[-4.230111,58.520718],[-4.231927,58.521707],[-4.235009,58.522351],[-4.239665,58.522113],[-4.241836,58.524292],[-4.23983,58.524888],[-4.238184,58.524701],[-4.23641,58.525257],[-4.236227,58.526392],[-4.240661,58.526309],[-4.248608,58.525],[-4.25234,58.524868],[-4.258661,58.525335],[-4.265514,58.526611],[-4.264264,58.525773],[-4.261264,58.524459],[-4.261316,58.522005],[-4.262825,58.521713],[-4.263083,58.520919],[-4.262328,58.518466],[-4.264507,58.51798],[-4.266333,58.519971],[-4.267576,58.520685],[-4.267005,58.522105],[-4.268367,58.523086],[-4.272066,58.524784],[-4.272777,58.526411],[-4.269587,58.526689],[-4.264158,58.528387],[-4.260989,58.529587],[-4.262849,58.533118],[-4.264493,58.533355],[-4.266105,58.534517],[-4.266336,58.535969],[-4.268035,58.536922],[-4.270154,58.536683],[-4.272545,58.537945],[-4.274101,58.537667],[-4.275888,58.538843],[-4.279442,58.539081],[-4.281173,58.540608],[-4.282414,58.540761],[-4.283817,58.539952],[-4.289125,58.540189],[-4.290723,58.539347],[-4.292886,58.540816],[-4.295744,58.541492],[-4.295916,58.542081],[-4.299096,58.542803],[-4.300508,58.541579],[-4.302324,58.540977],[-4.304463,58.541543],[-4.304686,58.542836],[-4.308781,58.542956],[-4.312236,58.541993],[-4.312848,58.541383],[-4.315784,58.54141],[-4.317793,58.54192],[-4.320162,58.541757],[-4.317365,58.538205],[-4.318609,58.537399],[-4.321059,58.53914],[-4.32215,58.539351],[-4.323281,58.540792],[-4.328471,58.541799],[-4.330993,58.541986],[-4.331251,58.541002],[-4.330563,58.539899],[-4.330947,58.538462],[-4.333573,58.538432],[-4.333759,58.539931],[-4.335731,58.541456],[-4.339292,58.54097],[-4.343757,58.540655],[-4.344469,58.539304],[-4.345739,58.53872],[-4.349118,58.538694],[-4.351048,58.537869],[-4.35361,58.537311],[-4.354614,58.535834],[-4.358379,58.534853],[-4.359202,58.533484],[-4.361362,58.533062],[-4.362307,58.531622],[-4.365558,58.529907],[-4.365644,58.528902],[-4.366999,58.52744],[-4.368203,58.527072],[-4.368996,58.525965],[-4.370286,58.525522],[-4.368761,58.523753],[-4.371467,58.522727],[-4.374167,58.518967],[-4.375324,58.518531],[-4.377962,58.518342],[-4.381064,58.514543],[-4.382086,58.514134],[-4.381903,58.512904],[-4.383439,58.511489],[-4.382922,58.510733],[-4.383616,58.509747],[-4.386488,58.508684],[-4.389478,58.508313],[-4.391768,58.509419],[-4.393728,58.509182],[-4.396698,58.509434],[-4.398774,58.508058],[-4.398614,58.507666],[-4.40107,58.506568],[-4.40494,58.502442],[-4.410404,58.499644],[-4.416756,58.495255],[-4.42003,58.49361],[-4.427437,58.492834],[-4.430407,58.492314],[-4.427386,58.490895],[-4.424317,58.488275],[-4.422721,58.482247],[-4.424794,58.480366],[-4.42848,58.47961],[-4.43073,58.478523],[-4.42978,58.477688],[-4.425678,58.476495],[-4.423205,58.475097],[-4.428865,58.476503],[-4.430641,58.476579],[-4.432859,58.477439],[-4.435821,58.476876],[-4.437056,58.476207],[-4.438061,58.474908],[-4.440684,58.473791],[-4.444143,58.468675],[-4.444943,58.468684],[-4.44556,58.465027],[-4.448536,58.464923],[-4.450571,58.463441],[-4.45297,58.462852],[-4.455339,58.461368],[-4.45683,58.459628],[-4.457659,58.455672],[-4.46407,58.451744],[-4.465058,58.450422],[-4.470358,58.446027],[-4.472521,58.445505],[-4.474861,58.444422],[-4.474795,58.443641],[-4.476571,58.441711],[-4.474775,58.44021],[-4.476319,58.439834],[-4.477522,58.440573],[-4.478126,58.441811],[-4.4754,58.446291],[-4.478146,58.447388],[-4.479008,58.447046],[-4.483087,58.447589],[-4.48045,58.448631],[-4.481057,58.449186],[-4.479271,58.450011],[-4.479446,58.451252],[-4.477636,58.45352],[-4.472792,58.455214],[-4.471975,58.455803],[-4.469821,58.455556],[-4.466914,58.458414],[-4.466534,58.464995],[-4.465575,58.465855],[-4.466514,58.467571],[-4.463321,58.470763],[-4.462399,58.47337],[-4.462625,58.474783],[-4.460545,58.476955],[-4.461018,58.477827],[-4.459797,58.479347],[-4.45487,58.482357],[-4.452154,58.485481],[-4.452315,58.487504],[-4.451724,58.488693],[-4.455246,58.490634],[-4.45515,58.491526],[-4.456353,58.492792],[-4.455991,58.494459],[-4.454467,58.495824],[-4.453051,58.496529],[-4.449913,58.496631],[-4.448771,58.501423],[-4.446365,58.503167],[-4.442579,58.50347],[-4.439145,58.50487],[-4.435651,58.508021],[-4.433429,58.509433],[-4.431117,58.509995],[-4.430511,58.510642],[-4.427053,58.510988],[-4.425224,58.511943],[-4.424344,58.513259],[-4.42122,58.51461],[-4.41915,58.514267],[-4.419262,58.516305],[-4.41465,58.518433],[-4.413385,58.520183],[-4.411159,58.520394],[-4.40921,58.521662],[-4.410552,58.524278],[-4.412695,58.525233],[-4.416893,58.525347],[-4.419548,58.524369],[-4.421072,58.52439],[-4.422934,58.525475],[-4.424874,58.527937],[-4.429109,58.528971],[-4.430544,58.53011],[-4.430923,58.531406],[-4.429163,58.532992],[-4.425724,58.534033],[-4.425846,58.534686],[-4.424553,58.535762],[-4.425866,58.536517],[-4.42627,58.537707],[-4.425599,58.538243],[-4.428209,58.541452],[-4.426739,58.542209],[-4.427603,58.544885],[-4.428698,58.545655],[-4.427022,58.547206],[-4.425965,58.5491],[-4.424215,58.549875],[-4.427463,58.551638],[-4.428753,58.550802],[-4.431062,58.550813],[-4.432075,58.550223],[-4.433385,58.551186],[-4.431769,58.552047],[-4.432813,58.55416],[-4.43674,58.55392],[-4.435919,58.555634],[-4.437925,58.556319],[-4.440731,58.554982],[-4.441497,58.552753],[-4.44416,58.551973],[-4.446752,58.5526],[-4.449109,58.551769],[-4.44934,58.550208],[-4.450178,58.549027],[-4.454455,58.548581],[-4.45542,58.549787],[-4.452333,58.553088],[-4.451802,58.554518],[-4.45337,58.555686],[-4.454279,58.556967],[-4.45575,58.558097],[-4.455327,58.558839],[-4.456744,58.559842],[-4.455976,58.56035],[-4.456886,58.561572],[-4.458936,58.561242],[-4.460239,58.561756],[-4.462272,58.561457],[-4.463959,58.562317],[-4.465359,58.562447],[-4.466459,58.563298],[-4.467875,58.563393],[-4.469291,58.564141],[-4.47232,58.564167],[-4.474791,58.563503],[-4.477155,58.564958],[-4.480155,58.565314],[-4.484395,58.566166],[-4.484967,58.566964],[-4.487686,58.567772],[-4.49223,58.567888],[-4.492865,58.568356],[-4.492259,58.569509],[-4.494035,58.570773],[-4.494146,58.571979],[-4.495453,58.572812],[-4.49527,58.573507],[-4.497692,58.574067],[-4.498679,58.574757],[-4.497873,58.575447],[-4.498849,58.576178],[-4.501475,58.575979],[-4.50474,58.576657],[-4.507557,58.576308],[-4.508686,58.577395],[-4.511477,58.577528],[-4.514395,58.578857],[-4.515364,58.578228],[-4.518849,58.57824],[-4.521268,58.577747],[-4.522242,58.576992],[-4.524361,58.576873],[-4.52615,58.577622],[-4.525654,58.578397],[-4.527034,58.579983],[-4.529062,58.579584],[-4.530538,58.579739],[-4.533407,58.578695],[-4.534734,58.580474],[-4.536366,58.580814],[-4.536098,58.579383],[-4.538878,58.578805],[-4.540685,58.579423],[-4.540785,58.580179],[-4.543389,58.580609],[-4.545268,58.580177],[-4.543689,58.579161],[-4.546381,58.577976],[-4.548475,58.577683],[-4.549865,58.577979],[-4.55163,58.577175],[-4.553524,58.576916],[-4.554754,58.577431],[-4.556352,58.577274],[-4.557573,58.578443],[-4.559199,58.577673],[-4.562036,58.577821],[-4.56338,58.578641],[-4.565816,58.577095],[-4.567856,58.576753],[-4.568716,58.576061],[-4.571111,58.575536],[-4.574819,58.577714],[-4.576687,58.580339],[-4.580579,58.579588],[-4.582449,58.57831],[-4.584251,58.578015],[-4.584925,58.577145],[-4.586628,58.577721],[-4.589795,58.576666],[-4.590643,58.575503],[-4.588302,58.575594],[-4.588453,58.574553],[-4.591067,58.574372],[-4.595996,58.572821],[-4.598466,58.571364],[-4.598221,58.570608],[-4.5997,58.570026],[-4.599864,58.569141],[-4.598266,58.568342],[-4.596517,58.566204],[-4.594992,58.565034],[-4.594552,58.56395],[-4.596452,58.56312],[-4.597046,58.561626],[-4.59842,58.561717],[-4.598549,58.559255],[-4.599701,58.558358],[-4.601561,58.557929],[-4.60237,58.556781],[-4.60395,58.555805],[-4.604409,58.554412],[-4.603012,58.552109],[-4.602216,58.552044],[-4.599706,58.550415],[-4.597227,58.547819],[-4.595366,58.546944],[-4.595919,58.545585],[-4.594538,58.543645],[-4.594128,58.5424],[-4.594444,58.541217],[-4.593857,58.540007],[-4.594443,58.538984],[-4.594117,58.537131],[-4.595451,58.536978],[-4.593282,58.534672],[-4.595434,58.53426],[-4.598789,58.533159],[-4.601549,58.532735],[-4.602597,58.531158],[-4.60192,58.528931],[-4.602158,58.527085],[-4.606315,58.526388],[-4.607363,58.525309],[-4.609649,58.524425],[-4.612606,58.522572],[-4.612362,58.521845],[-4.613314,58.520558],[-4.613163,58.519476],[-4.613959,58.517912],[-4.614218,58.514532],[-4.615818,58.513158],[-4.61802,58.513298],[-4.62111,58.512155],[-4.62114,58.513345],[-4.616968,58.514675],[-4.617564,58.516964],[-4.615998,58.518399],[-4.615815,58.519637],[-4.617286,58.520366],[-4.616656,58.521955],[-4.618964,58.521846],[-4.618068,58.523162],[-4.619548,58.523999],[-4.623562,58.523701],[-4.625293,58.524214],[-4.62751,58.523548],[-4.628446,58.522055],[-4.631047,58.521571],[-4.632327,58.520669],[-4.63462,58.520213],[-4.636627,58.520971],[-4.639226,58.521389],[-4.642307,58.520445],[-4.643278,58.519545],[-4.646967,58.518019],[-4.649295,58.516316],[-4.649267,58.514686],[-4.651638,58.513343],[-4.651515,58.512169],[-4.655075,58.509619],[-4.655751,58.509596],[-4.658909,58.507644],[-4.660474,58.50541],[-4.660223,58.503798],[-4.661155,58.500794],[-4.661336,58.498518],[-4.662695,58.498093],[-4.665053,58.498069],[-4.665727,58.499228],[-4.666886,58.499577],[-4.668429,58.498941],[-4.668201,58.498191],[-4.669277,58.496206],[-4.666245,58.49674],[-4.664826,58.497822],[-4.662946,58.497277],[-4.660867,58.495994],[-4.662683,58.490581],[-4.66145,58.487459],[-4.66221,58.483902],[-4.664234,58.482293],[-4.666705,58.481923],[-4.673375,58.483855],[-4.677769,58.482856],[-4.678583,58.481111],[-4.681519,58.47961],[-4.682985,58.478141],[-4.684691,58.477223],[-4.689587,58.477814],[-4.690901,58.477358],[-4.693587,58.477954],[-4.695874,58.477022],[-4.69521,58.474805],[-4.69595,58.473428],[-4.697974,58.471442],[-4.698946,58.469634],[-4.700482,58.468388],[-4.704883,58.46752],[-4.707363,58.466532],[-4.708766,58.46503],[-4.712604,58.465135],[-4.715391,58.464061],[-4.71496,58.463338],[-4.717409,58.463182],[-4.722946,58.46427],[-4.723137,58.463371],[-4.725468,58.461793],[-4.725238,58.46103],[-4.726757,58.457978],[-4.727187,58.455731],[-4.729471,58.453554],[-4.730276,58.453392],[-4.731637,58.451601],[-4.733845,58.450987],[-4.733394,58.45005],[-4.736154,58.447098],[-4.739608,58.447152],[-4.74063,58.447924],[-4.745978,58.449281],[-4.746362,58.448285],[-4.745353,58.447388],[-4.748361,58.447336],[-4.748967,58.446279],[-4.751074,58.446111],[-4.751314,58.44714],[-4.750735,58.448296],[-4.746683,58.449395],[-4.748935,58.449888],[-4.754058,58.449448],[-4.758888,58.448508],[-4.761288,58.449354],[-4.758705,58.450999],[-4.757418,58.450254],[-4.754039,58.451282],[-4.751706,58.452579],[-4.751257,58.453927],[-4.752797,58.454999],[-4.753559,58.45617],[-4.753276,58.457432],[-4.750373,58.459812],[-4.748717,58.458939],[-4.745056,58.458999],[-4.746939,58.460487],[-4.746272,58.462006],[-4.746596,58.463032],[-4.745599,58.464251],[-4.743257,58.465271],[-4.739963,58.4687],[-4.738274,58.470127],[-4.73601,58.470955],[-4.733724,58.472324],[-4.730144,58.474979],[-4.72895,58.475523],[-4.728606,58.477041],[-4.726801,58.479544],[-4.726647,58.480452],[-4.723481,58.481381],[-4.72283,58.483616],[-4.721678,58.484304],[-4.721205,58.48549],[-4.717374,58.48881],[-4.716102,58.490194],[-4.715896,58.491127],[-4.712269,58.496346],[-4.708299,58.499215],[-4.705266,58.499872],[-4.70093,58.502289],[-4.701355,58.503266],[-4.698712,58.503075],[-4.696142,58.503627],[-4.693729,58.505192],[-4.695045,58.506416],[-4.694191,58.508082],[-4.694584,58.509054],[-4.692804,58.510054],[-4.692149,58.510966],[-4.690765,58.510981],[-4.687653,58.512704],[-4.68615,58.512937],[-4.685481,58.514446],[-4.678417,58.518309],[-4.678726,58.519318],[-4.677084,58.520564],[-4.675677,58.520868],[-4.674323,58.522694],[-4.671623,58.523909],[-4.670111,58.525983],[-4.667511,58.526432],[-4.665175,58.524497],[-4.662467,58.525263],[-4.66133,58.527596],[-4.65741,58.529712],[-4.656398,58.530978],[-4.65509,58.531404],[-4.653362,58.532752],[-4.651884,58.534683],[-4.652495,58.536971],[-4.651956,58.538015],[-4.653621,58.53936],[-4.652781,58.540869],[-4.65513,58.540579],[-4.655346,58.54229],[-4.654449,58.543036],[-4.6542,58.544519],[-4.657697,58.544851],[-4.657007,58.545642],[-4.657334,58.546975],[-4.659805,58.546578],[-4.661871,58.546747],[-4.660986,58.54764],[-4.658152,58.54893],[-4.656435,58.548952],[-4.656575,58.55001],[-4.653806,58.551123],[-4.65407,58.55154],[-4.657883,58.552409],[-4.658294,58.549889],[-4.660155,58.551539],[-4.663449,58.55281],[-4.664405,58.551015],[-4.666161,58.550826],[-4.667464,58.549986],[-4.668777,58.551549],[-4.671732,58.551744],[-4.674631,58.550879],[-4.675959,58.54921],[-4.67985,58.551083],[-4.681472,58.552814],[-4.678898,58.553055],[-4.682179,58.554481],[-4.685736,58.555205],[-4.68957,58.555633],[-4.691046,58.555251],[-4.692561,58.555822],[-4.692146,58.556842],[-4.69677,58.555859],[-4.698787,58.55632],[-4.699957,58.555952],[-4.703176,58.556168],[-4.705,58.55772],[-4.710077,58.559858],[-4.710004,58.562937],[-4.707546,58.563739],[-4.705318,58.565421],[-4.706753,58.566696],[-4.710271,58.567024],[-4.711085,58.567575],[-4.713447,58.566911],[-4.713398,58.56819],[-4.715493,58.569189],[-4.716961,58.568226],[-4.717249,58.567244],[-4.719235,58.566306],[-4.717699,58.569318],[-4.717777,58.570068],[-4.723939,58.570639],[-4.727407,58.570248],[-4.732769,58.567815],[-4.734245,58.566468],[-4.738816,58.568362],[-4.740987,58.56978],[-4.741239,58.571143],[-4.742865,58.572774],[-4.742645,58.574163],[-4.741553,58.574749],[-4.744693,58.575568],[-4.741511,58.57861],[-4.740411,58.580239],[-4.741374,58.581749],[-4.743807,58.584436],[-4.744879,58.583301],[-4.748307,58.582898],[-4.750545,58.582285],[-4.753342,58.582716],[-4.755387,58.583905],[-4.75541,58.58661],[-4.756747,58.587538],[-4.757497,58.588861],[-4.758862,58.588349],[-4.762849,58.587667],[-4.766765,58.590428],[-4.765482,58.592397],[-4.767359,58.592936],[-4.767628,58.594043],[-4.766398,58.594586],[-4.766834,58.595787],[-4.765014,58.597564],[-4.765899,58.598345],[-4.769768,58.599469],[-4.771074,58.601174],[-4.76941,58.604245],[-4.774158,58.604299],[-4.777287,58.6023],[-4.77929,58.601567],[-4.77986,58.600079],[-4.783699,58.601529],[-4.786321,58.599525],[-4.790468,58.6006],[-4.792863,58.600111],[-4.792421,58.599173],[-4.789653,58.598891],[-4.786137,58.5956],[-4.785807,58.594984],[-4.783824,58.594979],[-4.781596,58.594278],[-4.779864,58.594731],[-4.776903,58.593446],[-4.775185,58.590886],[-4.769509,58.58735],[-4.770246,58.586637],[-4.767545,58.584457],[-4.765956,58.584289],[-4.765391,58.582191],[-4.76663,58.577879],[-4.767981,58.576382],[-4.773321,58.577225],[-4.774716,58.576809],[-4.776188,58.577755],[-4.779653,58.577897],[-4.786363,58.577567],[-4.78816,58.577309],[-4.791081,58.57751],[-4.793948,58.576998],[-4.795333,58.575624],[-4.796671,58.576251],[-4.798359,58.573317],[-4.797582,58.573064],[-4.797789,58.571695],[-4.800488,58.570255],[-4.80175,58.569042],[-4.800804,58.568287],[-4.801055,58.56686],[-4.802245,58.566331],[-4.803902,58.564725],[-4.805698,58.563867],[-4.806026,58.562596],[-4.804281,58.560838],[-4.80269,58.560003],[-4.799369,58.559002],[-4.797242,58.557274],[-4.796716,58.55618],[-4.791375,58.554019],[-4.789353,58.552787],[-4.788068,58.553297],[-4.782477,58.55274],[-4.778508,58.551457],[-4.778804,58.549074],[-4.778302,58.547269],[-4.779555,58.544072],[-4.781387,58.542766],[-4.781305,58.541386],[-4.781971,58.539837],[-4.784383,58.53767],[-4.788544,58.537461],[-4.788141,58.536463],[-4.789864,58.535424],[-4.79066,58.534406],[-4.790986,58.532573],[-4.793837,58.531477],[-4.794136,58.530707],[-4.796887,58.528904],[-4.800121,58.525112],[-4.804046,58.525109],[-4.80397,58.523474],[-4.807519,58.521236],[-4.809157,58.520665],[-4.808642,58.518313],[-4.809459,58.513928],[-4.810956,58.516535],[-4.810179,58.517742],[-4.811681,58.521733],[-4.81353,58.522829],[-4.813105,58.523962],[-4.811487,58.525745],[-4.813041,58.526751],[-4.814865,58.526283],[-4.817828,58.526089],[-4.819359,58.525298],[-4.820235,58.523973],[-4.822169,58.523445],[-4.826197,58.52137],[-4.826912,58.522362],[-4.829684,58.522577],[-4.827289,58.524045],[-4.825577,58.524513],[-4.822133,58.524577],[-4.823767,58.526216],[-4.822923,58.526959],[-4.821472,58.526856],[-4.820978,58.52852],[-4.818571,58.529135],[-4.818894,58.529622],[-4.816842,58.531464],[-4.81332,58.533291],[-4.811263,58.534848],[-4.804192,58.538503],[-4.801158,58.538605],[-4.796133,58.540679],[-4.794811,58.542208],[-4.795527,58.544725],[-4.793369,58.545996],[-4.793214,58.546749],[-4.794673,58.547697],[-4.795597,58.549114],[-4.797828,58.549866],[-4.798581,58.551107],[-4.80217,58.551595],[-4.802816,58.552521],[-4.804337,58.552473],[-4.805995,58.553533],[-4.810121,58.553843],[-4.812018,58.55488],[-4.813793,58.556328],[-4.814652,58.557707],[-4.815645,58.557874],[-4.815787,58.559097],[-4.817286,58.560177],[-4.816893,58.561024],[-4.819742,58.561792],[-4.820526,58.562598],[-4.82035,58.563903],[-4.819112,58.564307],[-4.818837,58.565211],[-4.820111,58.566027],[-4.81897,58.566823],[-4.819352,58.567937],[-4.817075,58.570319],[-4.81876,58.570835],[-4.822463,58.571295],[-4.822657,58.571906],[-4.820843,58.572756],[-4.81964,58.576436],[-4.821064,58.57649],[-4.81822,58.578665],[-4.821376,58.578883],[-4.821479,58.580251],[-4.819684,58.58147],[-4.819431,58.58367],[-4.818336,58.584921],[-4.818355,58.586125],[-4.817017,58.587992],[-4.817917,58.5887],[-4.822194,58.590926],[-4.823309,58.592279],[-4.826435,58.593134],[-4.82826,58.594012],[-4.829231,58.595664],[-4.827828,58.596853],[-4.828722,58.598137],[-4.832215,58.59875],[-4.833858,58.599379],[-4.837687,58.599667],[-4.835374,58.600424],[-4.836873,58.601302],[-4.839049,58.600981],[-4.841105,58.601488],[-4.843323,58.601483],[-4.842013,58.600156],[-4.846349,58.598753],[-4.848057,58.599434],[-4.850124,58.601032],[-4.854159,58.602272],[-4.855184,58.602802],[-4.855876,58.604117],[-4.862264,58.60685],[-4.8641,58.606773],[-4.867324,58.607262],[-4.866165,58.608547],[-4.869928,58.608966],[-4.872385,58.610057],[-4.871985,58.61074],[-4.873765,58.611657],[-4.875467,58.613088],[-4.875821,58.614352],[-4.878814,58.614721],[-4.883163,58.614515],[-4.88499,58.613383],[-4.887326,58.61258],[-4.887256,58.611934],[-4.890933,58.612463],[-4.89219,58.612142],[-4.899294,58.612764],[-4.900535,58.6135],[-4.905409,58.613295],[-4.910722,58.614015],[-4.912467,58.613463],[-4.914758,58.613978],[-4.916286,58.613813],[-4.922607,58.615677],[-4.924338,58.615256],[-4.926205,58.615443],[-4.928352,58.616198],[-4.931374,58.616188],[-4.936315,58.616867],[-4.937945,58.615768],[-4.93896,58.613399],[-4.939982,58.613672],[-4.942813,58.612116],[-4.941954,58.609707],[-4.944488,58.608499],[-4.946327,58.608587],[-4.947217,58.609897],[-4.951205,58.610436],[-4.953798,58.610444],[-4.957362,58.609733],[-4.959306,58.610988],[-4.957171,58.612653],[-4.958718,58.613031],[-4.958523,58.613876],[-4.962637,58.614459],[-4.964641,58.615033],[-4.965619,58.614786],[-4.96927,58.615596],[-4.971053,58.615492],[-4.97196,58.616239],[-4.973431,58.616115],[-4.974538,58.615362],[-4.976101,58.615909],[-4.975801,58.617449],[-4.978434,58.618026],[-4.980352,58.620017],[-4.983353,58.620356],[-4.984813,58.619904],[-4.985177,58.621751],[-4.987448,58.62111],[-4.988793,58.62213],[-4.991717,58.623181],[-4.99307,58.624906],[-4.994823,58.625355],[-4.996991,58.624914],[-4.9966,58.626181],[-4.999379,58.626547],[-5.002883,58.625122],[-5.006727,58.625779],[-5.008841,58.624372],[-5.009332,58.62347],[-5.008655,58.62181],[-5.010726,58.622449],[-5.01062,58.620997],[-5.012438,58.620225],[-5.014089,58.6171],[-5.015694,58.616536],[-5.015256,58.614978],[-5.013049,58.613929],[-5.014117,58.61243],[-5.013792,58.611252],[-5.012608,58.610403],[-5.011,58.610028],[-5.00963,58.607442],[-5.013069,58.607364],[-5.014714,58.606463],[-5.013682,58.605979],[-5.013775,58.604764],[-5.012439,58.60444],[-5.013686,58.602932],[-5.01587,58.602697],[-5.016018,58.601817],[-5.013769,58.599794],[-5.011234,58.599342],[-5.013469,58.595906],[-5.011655,58.595032],[-5.011386,58.593604],[-5.010364,58.59273],[-5.01121,58.590562],[-5.015479,58.589968],[-5.018016,58.590146],[-5.019902,58.589068],[-5.019936,58.58816],[-5.021707,58.586447],[-5.018098,58.585305],[-5.016307,58.583702],[-5.01828,58.582627],[-5.01975,58.582512],[-5.019788,58.581554],[-5.021946,58.579049],[-5.020912,58.578573],[-5.014506,58.578455],[-5.014097,58.577558],[-5.015802,58.576233],[-5.018682,58.575419],[-5.02008,58.575364],[-5.020776,58.574161],[-5.0227,58.574091],[-5.026429,58.572842],[-5.027221,58.572234],[-5.026191,58.571028],[-5.027018,58.56944],[-5.028795,58.569007],[-5.030714,58.569613],[-5.032439,58.568872],[-5.032525,58.567881],[-5.03056,58.567936],[-5.029691,58.565742],[-5.03026,58.561684],[-5.034585,58.560288],[-5.036452,58.55921],[-5.037603,58.5577],[-5.039381,58.557092],[-5.040932,58.555249],[-5.04095,58.554161],[-5.039482,58.552163],[-5.03985,58.551204],[-5.041687,58.550077],[-5.044493,58.54913],[-5.045611,58.548146],[-5.045817,58.546357],[-5.049443,58.545206],[-5.049192,58.544269],[-5.050238,58.54377],[-5.051381,58.542084],[-5.058344,58.539237],[-5.060919,58.538863],[-5.062117,58.538044],[-5.066511,58.536299],[-5.070606,58.535508],[-5.072766,58.535501],[-5.074987,58.536517],[-5.076607,58.536375],[-5.080141,58.537382],[-5.084032,58.536579],[-5.086614,58.536916],[-5.091216,58.536869],[-5.090494,58.534042],[-5.092892,58.532784],[-5.092484,58.531473],[-5.094286,58.531151],[-5.09641,58.530192],[-5.09815,58.528541],[-5.101866,58.527579],[-5.103177,58.52841],[-5.105247,58.527246],[-5.104674,58.525719],[-5.106051,58.525418],[-5.10531,58.523969],[-5.106359,58.523494],[-5.106871,58.522205],[-5.10969,58.521544],[-5.111895,58.522385],[-5.113429,58.521759],[-5.113648,58.520846],[-5.112308,58.520069],[-5.115229,58.516201],[-5.117082,58.515302],[-5.116941,58.512169],[-5.118597,58.510422],[-5.117531,58.509436],[-5.117871,58.508332],[-5.116146,58.50699],[-5.117654,58.505115],[-5.118775,58.504301],[-5.118227,58.502185],[-5.12035,58.501347],[-5.120506,58.500593],[-5.12203,58.499481],[-5.121215,58.498003],[-5.120001,58.497537],[-5.120117,58.496334],[-5.12242,58.494429],[-5.123907,58.49446],[-5.12555,58.493756],[-5.12469,58.493099],[-5.125046,58.490443],[-5.125725,58.489007],[-5.124059,58.48909],[-5.122086,58.49036],[-5.119783,58.489636],[-5.12128,58.485387],[-5.120558,58.484725],[-5.115018,58.484108],[-5.113091,58.483683],[-5.114043,58.482395],[-5.115435,58.481506],[-5.114971,58.480182],[-5.116026,58.479402],[-5.114912,58.478553],[-5.112642,58.478951],[-5.110822,58.480319],[-5.109184,58.480817],[-5.107288,58.482526],[-5.106044,58.482774],[-5.103368,58.481993],[-5.102427,58.481143],[-5.103729,58.480253],[-5.103064,58.478638],[-5.09836,58.478612],[-5.09482,58.479141],[-5.093922,58.479551],[-5.092077,58.47902],[-5.089352,58.479003],[-5.085915,58.477312],[-5.089182,58.475698],[-5.089407,58.475036],[-5.085516,58.475962],[-5.085266,58.475159],[-5.088304,58.472056],[-5.089731,58.471505],[-5.088004,58.470882],[-5.086377,58.469249],[-5.08285,58.468544],[-5.081856,58.468064],[-5.077096,58.467473],[-5.075417,58.466516],[-5.071237,58.465888],[-5.070626,58.464388],[-5.067696,58.464107],[-5.067316,58.463243],[-5.064762,58.463926],[-5.06372,58.463475],[-5.061191,58.463232],[-5.058295,58.463938],[-5.055767,58.463921],[-5.054922,58.462781],[-5.055709,58.461153],[-5.054817,58.460538],[-5.05536,58.459635],[-5.061844,58.45973],[-5.063149,58.460568],[-5.065188,58.460856],[-5.0681,58.459525],[-5.069522,58.457952],[-5.07217,58.457809],[-5.074505,58.45853],[-5.076894,58.457808],[-5.075943,58.45664],[-5.071119,58.456576],[-5.066274,58.456192],[-5.064417,58.456448],[-5.06282,58.455827],[-5.059659,58.455426],[-5.05849,58.454656],[-5.055102,58.454883],[-5.052214,58.453814],[-5.04852,58.453823],[-5.047619,58.454555],[-5.049745,58.455533],[-5.05214,58.457771],[-5.050515,58.458382],[-5.046885,58.456737],[-5.046625,58.455183],[-5.044916,58.454268],[-5.041948,58.454094],[-5.039102,58.454458],[-5.036574,58.454189],[-5.035011,58.4545],[-5.034225,58.453655],[-5.031836,58.452825],[-5.027726,58.453075],[-5.016167,58.452572],[-5.010505,58.450768],[-5.008143,58.449428],[-5.011289,58.448868],[-5.013551,58.450203],[-5.018088,58.451049],[-5.019217,58.449962],[-5.016259,58.448548],[-5.01821,58.446955],[-5.016056,58.44596],[-5.015485,58.445106],[-5.012041,58.444295],[-5.008575,58.443901],[-5.005623,58.442279],[-4.999197,58.441659],[-4.998037,58.440905],[-4.996186,58.441313],[-4.99474,58.440536],[-4.990998,58.44032],[-4.992241,58.439198],[-4.99855,58.437518],[-5.000004,58.437385],[-5.000303,58.434754],[-4.997262,58.432655],[-4.995373,58.432231],[-4.993741,58.430742],[-4.990916,58.430017],[-4.989801,58.428487],[-4.990465,58.427451],[-4.988183,58.426497],[-4.988219,58.425675],[-4.990814,58.425553],[-4.992921,58.424959],[-4.992463,58.423554],[-4.994852,58.42365],[-4.996452,58.42587],[-5.006661,58.432819],[-5.010146,58.435865],[-5.011625,58.436515],[-5.015407,58.439248],[-5.019041,58.440559],[-5.022948,58.443837],[-5.030329,58.447987],[-5.032529,58.448345],[-5.034505,58.449308],[-5.035392,58.44893],[-5.037678,58.449817],[-5.042361,58.449568],[-5.044534,58.44991],[-5.048563,58.45117],[-5.054151,58.450044],[-5.055659,58.448952],[-5.057696,58.448615],[-5.05939,58.449474],[-5.058533,58.450353],[-5.059918,58.45111],[-5.061104,58.450556],[-5.064653,58.452129],[-5.068075,58.450479],[-5.070003,58.450078],[-5.072846,58.451869],[-5.074948,58.451829],[-5.077914,58.451075],[-5.077019,58.450432],[-5.078557,58.449284],[-5.077239,58.448627],[-5.074925,58.448616],[-5.073301,58.448184],[-5.068606,58.44831],[-5.067318,58.447684],[-5.06474,58.447216],[-5.065146,58.445979],[-5.067369,58.446313],[-5.06994,58.447186],[-5.07508,58.447453],[-5.077532,58.446869],[-5.081377,58.447617],[-5.082215,58.447493],[-5.083691,58.445818],[-5.085073,58.446162],[-5.08726,58.44605],[-5.087754,58.444776],[-5.090943,58.444106],[-5.092872,58.442422],[-5.096464,58.442175],[-5.097507,58.44126],[-5.100982,58.440246],[-5.098547,58.439836],[-5.098078,58.43899],[-5.093373,58.439567],[-5.091554,58.438959],[-5.089589,58.438831],[-5.083609,58.439039],[-5.08301,58.437489],[-5.08498,58.437177],[-5.088492,58.437357],[-5.091253,58.43641],[-5.092086,58.436821],[-5.091261,58.437964],[-5.092873,58.438422],[-5.094566,58.437741],[-5.098233,58.438798],[-5.098663,58.438037],[-5.100663,58.437589],[-5.101443,58.438563],[-5.102769,58.438639],[-5.102755,58.437313],[-5.100877,58.436806],[-5.102485,58.435711],[-5.103711,58.435713],[-5.105452,58.436709],[-5.106421,58.436034],[-5.109338,58.435882],[-5.109755,58.434737],[-5.108008,58.43129],[-5.109729,58.430507],[-5.113172,58.430302],[-5.115625,58.428396],[-5.114591,58.427648],[-5.112178,58.427778],[-5.112315,58.426903],[-5.113688,58.425769],[-5.113175,58.425098],[-5.114149,58.424194],[-5.112037,58.423755],[-5.111608,58.422966],[-5.109725,58.422895],[-5.107687,58.424935],[-5.105182,58.424412],[-5.105295,58.422293],[-5.099563,58.422349],[-5.097372,58.423361],[-5.091974,58.423833],[-5.090553,58.422762],[-5.094134,58.42228],[-5.093094,58.421706],[-5.090784,58.422176],[-5.090096,58.420193],[-5.086978,58.420381],[-5.083729,58.419506],[-5.082548,58.420165],[-5.07873,58.420392],[-5.079002,58.419175],[-5.080462,58.418769],[-5.080146,58.417988],[-5.078629,58.417012],[-5.074872,58.41704],[-5.072414,58.415387],[-5.076341,58.415535],[-5.077001,58.416031],[-5.079193,58.415821],[-5.081924,58.416838],[-5.086919,58.416671],[-5.088693,58.417297],[-5.092498,58.416913],[-5.093679,58.415739],[-5.096286,58.416656],[-5.099195,58.416724],[-5.102052,58.416094],[-5.103448,58.415323],[-5.107172,58.414729],[-5.109681,58.416079],[-5.111436,58.415691],[-5.113606,58.414272],[-5.113597,58.413297],[-5.11111,58.412868],[-5.110213,58.411146],[-5.103129,58.409651],[-5.102059,58.410634],[-5.100603,58.410921],[-5.09769,58.408951],[-5.09609,58.40925],[-5.094838,58.406984],[-5.090462,58.406879],[-5.087808,58.407756],[-5.08354,58.407024],[-5.080497,58.40747],[-5.07699,58.407222],[-5.072382,58.407395],[-5.070139,58.408181],[-5.067444,58.408621],[-5.066282,58.409213],[-5.067303,58.411009],[-5.065788,58.413575],[-5.06664,58.414808],[-5.062807,58.414356],[-5.059448,58.414738],[-5.057463,58.414176],[-5.054363,58.41405],[-5.050714,58.414353],[-5.045297,58.413875],[-5.045498,58.411543],[-5.039464,58.411475],[-5.036181,58.41083],[-5.034552,58.410122],[-5.032054,58.41017],[-5.033095,58.408809],[-5.034291,58.408881],[-5.036608,58.408146],[-5.038889,58.40868],[-5.044381,58.408729],[-5.043979,58.409323],[-5.046025,58.410416],[-5.048972,58.410534],[-5.049709,58.41133],[-5.052377,58.411428],[-5.053266,58.410773],[-5.056904,58.409981],[-5.058003,58.409222],[-5.061153,58.408684],[-5.062526,58.407281],[-5.065227,58.406414],[-5.065472,58.405507],[-5.069738,58.404062],[-5.069683,58.403137],[-5.071118,58.402222],[-5.069176,58.40146],[-5.065063,58.402122],[-5.061792,58.403254],[-5.061767,58.404751],[-5.05906,58.405225],[-5.056584,58.404803],[-5.053675,58.40383],[-5.057193,58.402546],[-5.060448,58.400303],[-5.060263,58.399558],[-5.062928,58.39761],[-5.059116,58.396821],[-5.056714,58.396721],[-5.054144,58.395214],[-5.050914,58.394878],[-5.045307,58.395626],[-5.043363,58.395551],[-5.042857,58.394247],[-5.043544,58.393274],[-5.041541,58.392955],[-5.040856,58.393567],[-5.037479,58.393207],[-5.034828,58.393367],[-5.032215,58.392827],[-5.034538,58.391155],[-5.038334,58.389949],[-5.04212,58.387286],[-5.044518,58.386218],[-5.041088,58.385343],[-5.037461,58.383559],[-5.034718,58.383198],[-5.031142,58.380198],[-5.025091,58.378788],[-5.023369,58.377344],[-5.028477,58.377877],[-5.030861,58.377749],[-5.033142,58.378706],[-5.035057,58.37879],[-5.034369,58.377549],[-5.03534,58.376807],[-5.037342,58.373429],[-5.03888,58.372027],[-5.045295,58.373317],[-5.046161,58.374626],[-5.045895,58.376102],[-5.046769,58.37751],[-5.043449,58.379683],[-5.041863,58.379842],[-5.041894,58.378116],[-5.040834,58.377031],[-5.037098,58.378046],[-5.036043,58.378816],[-5.035445,58.380116],[-5.037168,58.38105],[-5.038522,58.381148],[-5.040338,58.380413],[-5.040306,58.381821],[-5.046401,58.384128],[-5.047321,58.383401],[-5.045683,58.382169],[-5.046772,58.381707],[-5.048794,58.38342],[-5.050201,58.382984],[-5.050653,58.382068],[-5.052585,58.381847],[-5.054407,58.382235],[-5.057398,58.381503],[-5.058707,58.38467],[-5.063262,58.383919],[-5.063633,58.382176],[-5.068035,58.381999],[-5.067963,58.382665],[-5.066062,58.383452],[-5.064524,58.385637],[-5.067667,58.387148],[-5.064342,58.388072],[-5.064132,58.389799],[-5.065066,58.3901],[-5.067221,58.389401],[-5.067952,58.39052],[-5.069886,58.38993],[-5.068525,58.389338],[-5.070388,58.388521],[-5.070229,58.387482],[-5.074085,58.387839],[-5.075443,58.388592],[-5.078496,58.389651],[-5.078511,58.391201],[-5.079663,58.392135],[-5.078788,58.392705],[-5.078623,58.394048],[-5.0804,58.393919],[-5.082356,58.392403],[-5.087828,58.391004],[-5.093935,58.388497],[-5.090018,58.392627],[-5.089873,58.394018],[-5.092565,58.394642],[-5.09465,58.395481],[-5.098205,58.395804],[-5.098432,58.396342],[-5.100782,58.39704],[-5.102531,58.396882],[-5.109852,58.398415],[-5.112021,58.397284],[-5.11373,58.396964],[-5.115006,58.396002],[-5.116252,58.395864],[-5.118972,58.398355],[-5.117482,58.399613],[-5.117449,58.400693],[-5.11921,58.402798],[-5.122748,58.403305],[-5.124872,58.403212],[-5.12499,58.404351],[-5.12657,58.40509],[-5.127875,58.404932],[-5.127349,58.406531],[-5.126562,58.406829],[-5.13083,58.409574],[-5.132053,58.411672],[-5.135447,58.411622],[-5.136631,58.411067],[-5.138549,58.411843],[-5.142231,58.412224],[-5.1412,58.410843],[-5.138284,58.409699],[-5.146085,58.411172],[-5.145585,58.409697],[-5.146646,58.409303],[-5.144448,58.408373],[-5.14759,58.407886],[-5.145774,58.406924],[-5.151819,58.404722],[-5.150918,58.40358],[-5.147971,58.403909],[-5.147121,58.403022],[-5.149982,58.402844],[-5.151836,58.402133],[-5.153264,58.400809],[-5.152612,58.398496],[-5.153017,58.397881],[-5.150219,58.397414],[-5.148342,58.395883],[-5.149522,58.395108],[-5.148094,58.393103],[-5.150366,58.392966],[-5.149724,58.391741],[-5.148562,58.390971],[-5.143154,58.389432],[-5.145117,58.387539],[-5.144461,58.385284],[-5.147916,58.385648],[-5.147658,58.384293],[-5.151568,58.382853],[-5.154564,58.38095],[-5.155164,58.379142],[-5.156004,58.379039],[-5.158605,58.377633],[-5.158296,58.376957],[-5.160991,58.375624],[-5.160905,58.375042],[-5.164492,58.373928],[-5.164003,58.373343],[-5.16699,58.370694],[-5.165836,58.37003],[-5.167798,58.369497],[-5.169028,58.368711],[-5.168088,58.366677],[-5.169396,58.366527],[-5.171965,58.363897],[-5.171165,58.363077],[-5.175004,58.362501],[-5.175929,58.361952],[-5.174325,58.361228],[-5.171639,58.361421],[-5.168369,58.360989],[-5.164434,58.359771],[-5.165816,58.357592],[-5.16395,58.35776],[-5.163856,58.356715],[-5.16012,58.356425],[-5.161047,58.355455],[-5.159523,58.354431],[-5.154674,58.354337],[-5.155111,58.352362],[-5.158179,58.351873],[-5.160587,58.35091],[-5.162393,58.350928],[-5.164313,58.351505],[-5.165969,58.353522],[-5.166931,58.352735],[-5.169234,58.352829],[-5.170836,58.353542],[-5.172963,58.352716],[-5.174411,58.354669],[-5.175557,58.35486],[-5.179636,58.353928],[-5.182298,58.353017],[-5.182736,58.350571],[-5.179852,58.351327],[-5.179533,58.350364],[-5.176069,58.350877],[-5.174459,58.350753],[-5.174629,58.349704],[-5.17902,58.348615],[-5.17729,58.348035],[-5.176423,58.346718],[-5.17529,58.346284],[-5.173035,58.346492],[-5.171985,58.344695],[-5.170739,58.344712],[-5.169934,58.343139],[-5.167685,58.343723],[-5.166992,58.343241],[-5.166869,58.341779],[-5.167863,58.340941],[-5.171557,58.341731],[-5.172799,58.341192],[-5.173861,58.342021],[-5.175547,58.34125],[-5.175492,58.339966],[-5.172909,58.339464],[-5.172392,58.337994],[-5.170458,58.337866],[-5.169078,58.337244],[-5.169751,58.336318],[-5.166563,58.336743],[-5.165313,58.337518],[-5.164243,58.336726],[-5.162185,58.337262],[-5.160789,58.336762],[-5.160848,58.33561],[-5.158553,58.335546],[-5.158084,58.3346],[-5.161302,58.333896],[-5.165533,58.332394],[-5.165957,58.331403],[-5.168329,58.330433],[-5.168519,58.328621],[-5.167961,58.326114],[-5.169313,58.324998],[-5.17043,58.322683],[-5.169626,58.321935],[-5.163746,58.320444],[-5.161578,58.321429],[-5.160378,58.320595],[-5.158583,58.320396],[-5.160766,58.31921],[-5.159262,58.318721],[-5.158243,58.319744],[-5.152724,58.319719],[-5.151091,58.320379],[-5.150086,58.321653],[-5.15073,58.322168],[-5.153042,58.322241],[-5.154607,58.321775],[-5.155607,58.32322],[-5.153282,58.324158],[-5.152509,58.323539],[-5.14892,58.324001],[-5.146928,58.325232],[-5.146851,58.32744],[-5.143121,58.327469],[-5.14247,58.326298],[-5.140203,58.327033],[-5.13821,58.326812],[-5.135928,58.325448],[-5.136435,58.324038],[-5.137345,58.32322],[-5.13398,58.322548],[-5.131607,58.321029],[-5.131119,58.31985],[-5.133758,58.320527],[-5.134868,58.319268],[-5.139973,58.316842],[-5.142854,58.316918],[-5.144709,58.316321],[-5.144051,58.315731],[-5.145427,58.315047],[-5.145754,58.313083],[-5.147066,58.31181],[-5.146435,58.310859],[-5.144217,58.311161],[-5.141349,58.310521],[-5.138233,58.311187],[-5.136501,58.310574],[-5.136467,58.30937],[-5.135474,58.308572],[-5.132206,58.310625],[-5.128955,58.311707],[-5.127322,58.310619],[-5.1288,58.309854],[-5.131017,58.307513],[-5.132342,58.307238],[-5.135576,58.307886],[-5.139449,58.307279],[-5.141932,58.306584],[-5.143294,58.30558],[-5.142901,58.303941],[-5.143672,58.303113],[-5.141196,58.302527],[-5.141312,58.302007],[-5.144467,58.301781],[-5.145959,58.302998],[-5.147192,58.302186],[-5.147002,58.301292],[-5.147922,58.300505],[-5.145955,58.300176],[-5.143939,58.299102],[-5.142763,58.299212],[-5.141469,58.30043],[-5.136598,58.300253],[-5.137915,58.299219],[-5.134296,58.298157],[-5.134408,58.296923],[-5.138466,58.29561],[-5.140537,58.294234],[-5.139789,58.293403],[-5.13985,58.291298],[-5.137701,58.291188],[-5.135453,58.293006],[-5.133955,58.293542],[-5.130284,58.293915],[-5.129689,58.292968],[-5.125696,58.292957],[-5.124596,58.293479],[-5.123514,58.29244],[-5.12518,58.291977],[-5.12692,58.290609],[-5.125088,58.289773],[-5.12385,58.288307],[-5.121473,58.287776],[-5.11995,58.286084],[-5.119442,58.283701],[-5.121803,58.283293],[-5.1214,58.282004],[-5.12316,58.280276],[-5.119112,58.280438],[-5.116305,58.279827],[-5.11413,58.281215],[-5.109674,58.281764],[-5.110213,58.280421],[-5.113394,58.280182],[-5.113515,58.279365],[-5.110949,58.278511],[-5.108752,58.279621],[-5.105606,58.279446],[-5.103788,58.279894],[-5.102353,58.278556],[-5.104295,58.27666],[-5.107242,58.277218],[-5.109412,58.277232],[-5.110277,58.276299],[-5.108968,58.27469],[-5.106743,58.274416],[-5.10338,58.276246],[-5.102296,58.276237],[-5.101165,58.274714],[-5.098647,58.274105],[-5.097435,58.27293],[-5.096318,58.272832],[-5.092402,58.271457],[-5.090048,58.269883],[-5.093588,58.270184],[-5.094465,58.269488],[-5.090141,58.269094],[-5.087838,58.268063],[-5.087624,58.266687],[-5.084563,58.266147],[-5.081492,58.263806],[-5.077797,58.263362],[-5.07453,58.26216],[-5.073355,58.262382],[-5.071061,58.261785],[-5.069587,58.262293],[-5.06606,58.260944],[-5.063862,58.259285],[-5.060788,58.260814],[-5.056668,58.259709],[-5.057531,58.257846],[-5.055995,58.257438],[-5.05316,58.257478],[-5.051519,58.258769],[-5.049059,58.259661],[-5.048029,58.259188],[-5.046388,58.259905],[-5.04082,58.261006],[-5.038535,58.259921],[-5.035945,58.257655],[-5.033003,58.25675],[-5.031183,58.25537],[-5.029431,58.255545],[-5.027986,58.256501],[-5.023418,58.257978],[-5.022522,58.259007],[-5.024984,58.259884],[-5.028822,58.26066],[-5.03015,58.260067],[-5.030058,58.259098],[-5.0318,58.258393],[-5.0327,58.257312],[-5.034751,58.258942],[-5.036079,58.259014],[-5.031928,58.261723],[-5.027746,58.263575],[-5.02601,58.263168],[-5.023014,58.264177],[-5.019383,58.263696],[-5.013826,58.264021],[-5.012027,58.26352],[-5.010582,58.263981],[-5.008028,58.264027],[-5.001819,58.261783],[-4.998807,58.261381],[-4.9956,58.260541],[-4.99466,58.259907],[-4.991093,58.25875],[-4.98841,58.259693],[-4.986484,58.259914],[-4.983614,58.258727],[-4.979537,58.257596],[-4.977647,58.258327],[-4.975898,58.257712],[-4.974083,58.257916],[-4.969921,58.256885],[-4.963198,58.25773],[-4.960532,58.257764],[-4.958097,58.258216],[-4.954817,58.258341],[-4.952745,58.258847],[-4.94765,58.259302],[-4.945434,58.259919],[-4.941306,58.260006],[-4.935698,58.259299],[-4.93374,58.2586],[-4.929071,58.258548],[-4.926566,58.257949],[-4.923131,58.257637],[-4.922101,58.255171],[-4.924845,58.255585],[-4.929145,58.254794],[-4.933399,58.255114],[-4.95063,58.253306],[-4.954321,58.25341],[-4.956734,58.254032],[-4.960852,58.253739],[-4.962681,58.25318],[-4.965026,58.252982],[-4.96824,58.253298],[-4.972744,58.253445],[-4.975994,58.254075],[-4.977738,58.253832],[-4.97899,58.254324],[-4.981065,58.254172],[-4.982291,58.254759],[-4.984385,58.253501],[-4.986847,58.253686],[-4.987995,58.252854],[-4.991104,58.251714],[-4.993491,58.251715],[-4.994679,58.250616],[-4.991331,58.248027],[-4.99065,58.24612],[-4.98837,58.24576],[-4.987399,58.24507],[-4.984342,58.24377],[-4.981892,58.243526],[-4.978958,58.242471],[-4.976252,58.242121],[-4.970523,58.239747],[-4.966821,58.239289],[-4.963417,58.238016],[-4.960235,58.235717],[-4.958307,58.235488],[-4.955719,58.234591],[-4.947318,58.230673],[-4.946283,58.229691],[-4.947283,58.228253],[-4.949265,58.227043],[-4.948945,58.225963],[-4.9469,58.224622],[-4.943082,58.22479],[-4.939371,58.223407],[-4.937273,58.222866],[-4.935847,58.220432],[-4.937146,58.219243],[-4.939146,58.218428],[-4.937709,58.217516],[-4.93747,58.215522],[-4.941907,58.215667],[-4.944048,58.216971],[-4.944341,58.21807],[-4.9481,58.222005],[-4.952896,58.224069],[-4.956275,58.225914],[-4.959349,58.225708],[-4.966513,58.226832],[-4.967159,58.227841],[-4.970983,58.22773],[-4.972281,58.228279],[-4.978008,58.227503],[-4.977746,58.228848],[-4.978495,58.230152],[-4.980179,58.230935],[-4.98168,58.232481],[-4.982564,58.232456],[-4.984118,58.233718],[-4.985867,58.234145],[-4.987503,58.235064],[-4.987732,58.235966],[-4.989248,58.236865],[-4.990459,58.238189],[-4.994678,58.238715],[-4.99658,58.239227],[-4.997621,58.238345],[-4.999632,58.239358],[-5.000248,58.240098],[-5.002694,58.240482],[-5.00328,58.240989],[-5.003435,58.242732],[-5.002622,58.244689],[-5.004394,58.245991],[-5.003347,58.247069],[-5.005698,58.249105],[-5.003591,58.250701],[-5.004205,58.251603],[-5.006213,58.251969],[-5.005768,58.253561],[-5.007485,58.254884],[-5.010893,58.25509],[-5.013126,58.255846],[-5.014687,58.255494],[-5.0155,58.254532],[-5.017823,58.253672],[-5.020076,58.254509],[-5.017352,58.256451],[-5.017702,58.257604],[-5.020966,58.257453],[-5.023453,58.256626],[-5.02341,58.256016],[-5.025035,58.254881],[-5.026838,58.254627],[-5.026726,58.253421],[-5.028245,58.253439],[-5.028226,58.252213],[-5.026242,58.251249],[-5.025001,58.250083],[-5.028824,58.250235],[-5.031834,58.249439],[-5.032762,58.247891],[-5.035904,58.249075],[-5.03907,58.247655],[-5.043361,58.248501],[-5.044277,58.24984],[-5.04595,58.250762],[-5.048383,58.250807],[-5.049988,58.251519],[-5.053645,58.250632],[-5.054159,58.24898],[-5.053435,58.246714],[-5.054387,58.24599],[-5.062805,58.248011],[-5.065707,58.249467],[-5.068231,58.24975],[-5.069443,58.250676],[-5.076948,58.252],[-5.078237,58.253019],[-5.081507,58.254761],[-5.083241,58.255061],[-5.084524,58.256298],[-5.088133,58.258016],[-5.089599,58.258179],[-5.092766,58.259827],[-5.094934,58.260306],[-5.099112,58.261768],[-5.105456,58.264692],[-5.10444,58.26624],[-5.104924,58.267478],[-5.106513,58.268293],[-5.106869,58.269533],[-5.109111,58.270099],[-5.113579,58.26941],[-5.116114,58.269335],[-5.118395,58.269769],[-5.119736,58.268725],[-5.117252,58.268319],[-5.11511,58.267496],[-5.116956,58.266789],[-5.118285,58.265026],[-5.122594,58.26718],[-5.125025,58.266989],[-5.127458,58.264321],[-5.129154,58.264215],[-5.132137,58.262944],[-5.132958,58.261104],[-5.132598,58.260268],[-5.127739,58.259484],[-5.125912,58.260139],[-5.122235,58.25943],[-5.122797,58.258355],[-5.120255,58.257761],[-5.119686,58.256477],[-5.120886,58.254272],[-5.120122,58.252759],[-5.118927,58.251966],[-5.12077,58.251116],[-5.121449,58.250021],[-5.119592,58.249258],[-5.118521,58.247931],[-5.121509,58.247442],[-5.122408,58.24833],[-5.123636,58.248435],[-5.125604,58.249488],[-5.12725,58.24978],[-5.129467,58.250858],[-5.130007,58.251618],[-5.128129,58.252113],[-5.127625,58.253107],[-5.124653,58.255043],[-5.128457,58.25584],[-5.125268,58.258156],[-5.132202,58.256831],[-5.133263,58.258027],[-5.133229,58.258895],[-5.135037,58.26006],[-5.137512,58.260471],[-5.14129,58.260288],[-5.145392,58.258475],[-5.145582,58.257101],[-5.146637,58.256265],[-5.14619,58.255453],[-5.148779,58.255039],[-5.150372,58.253593],[-5.151868,58.252967],[-5.154082,58.252742],[-5.155715,58.253666],[-5.158194,58.256712],[-5.161164,58.258269],[-5.162186,58.259666],[-5.165528,58.258359],[-5.164252,58.257047],[-5.164687,58.255621],[-5.166591,58.254499],[-5.167497,58.253019],[-5.169019,58.252862],[-5.171323,58.251079],[-5.170082,58.248921],[-5.172559,58.247934],[-5.171323,58.247075],[-5.171306,58.246123],[-5.167681,58.24619],[-5.167794,58.245163],[-5.170702,58.242774],[-5.170816,58.241978],[-5.173188,58.241697],[-5.172195,58.240618],[-5.169113,58.24043],[-5.165061,58.238315],[-5.165305,58.237608],[-5.16249,58.235282],[-5.164231,58.234574],[-5.16594,58.235419],[-5.170105,58.23623],[-5.17159,58.237667],[-5.174508,58.238507],[-5.175929,58.241878],[-5.176101,58.243703],[-5.175328,58.244396],[-5.17671,58.245265],[-5.176944,58.246871],[-5.179094,58.247509],[-5.181425,58.246239],[-5.182886,58.247227],[-5.180003,58.247587],[-5.180758,58.249734],[-5.180858,58.251129],[-5.185393,58.251991],[-5.187805,58.249046],[-5.190688,58.249064],[-5.192455,58.24853],[-5.195987,58.249124],[-5.200746,58.248094],[-5.201951,58.247492],[-5.202293,58.246562],[-5.203648,58.246461],[-5.206312,58.247648],[-5.207622,58.248563],[-5.209124,58.248116],[-5.213959,58.250034],[-5.21259,58.250523],[-5.213235,58.251248],[-5.211829,58.253414],[-5.213764,58.253878],[-5.215686,58.255339],[-5.218077,58.255944],[-5.22114,58.254465],[-5.221883,58.253358],[-5.224151,58.252793],[-5.223014,58.251824],[-5.225127,58.25159],[-5.226514,58.250473],[-5.22636,58.249696],[-5.228588,58.249652],[-5.229732,58.248832],[-5.230942,58.246119],[-5.233588,58.245068],[-5.234576,58.246894],[-5.232844,58.248003],[-5.231483,58.249992],[-5.228449,58.251777],[-5.231293,58.252114],[-5.232039,58.253106],[-5.235945,58.253214],[-5.237901,58.252688],[-5.238899,58.251112],[-5.237594,58.250354],[-5.23968,58.248926],[-5.248128,58.250329],[-5.250201,58.250533],[-5.251621,58.250124],[-5.252085,58.249051],[-5.251362,58.248328],[-5.252957,58.247869],[-5.251973,58.246533],[-5.255299,58.247194],[-5.258207,58.247124],[-5.261151,58.246694],[-5.260349,58.245474],[-5.260812,58.24375],[-5.264461,58.244965],[-5.266079,58.244398],[-5.266452,58.243378],[-5.268383,58.244145],[-5.271401,58.244063],[-5.273048,58.243167],[-5.274035,58.241664],[-5.276427,58.239234],[-5.278027,58.239399],[-5.281744,58.238769],[-5.282256,58.237763],[-5.284001,58.23646],[-5.284842,58.237072],[-5.289708,58.236609],[-5.291166,58.23543],[-5.292644,58.23501],[-5.294385,58.232749],[-5.295491,58.232271],[-5.292649,58.231614],[-5.295117,58.230982],[-5.299694,58.228691],[-5.300798,58.227766],[-5.302358,58.229065],[-5.303544,58.228072],[-5.303267,58.226385],[-5.304589,58.225648],[-5.308715,58.224382],[-5.310457,58.224157],[-5.311922,58.224826],[-5.309556,58.227503],[-5.311116,58.228424],[-5.310552,58.229774],[-5.313099,58.230413],[-5.314153,58.230013],[-5.315072,58.232375],[-5.313265,58.233096],[-5.314822,58.233618],[-5.315357,58.234786],[-5.316639,58.235193],[-5.318962,58.234791],[-5.319974,58.235205],[-5.318044,58.23792],[-5.318476,58.239073],[-5.321279,58.240487],[-5.325003,58.241703],[-5.326897,58.241267],[-5.328062,58.241695],[-5.33126,58.241382],[-5.332283,58.240178],[-5.333526,58.241251],[-5.335025,58.241689],[-5.337144,58.24157],[-5.337722,58.242912],[-5.342477,58.242306],[-5.343522,58.242845],[-5.343725,58.244229],[-5.342362,58.244518],[-5.340601,58.24823],[-5.339675,58.249634],[-5.337681,58.25063],[-5.338703,58.251799],[-5.341372,58.250354],[-5.342842,58.250721],[-5.344838,58.250427],[-5.345551,58.251006],[-5.347582,58.251031],[-5.349522,58.250396],[-5.352525,58.250541],[-5.354015,58.251087],[-5.356064,58.252788],[-5.357323,58.252074],[-5.358866,58.252712],[-5.361457,58.251979],[-5.365845,58.251234],[-5.367738,58.251238],[-5.369124,58.252635],[-5.370748,58.253316],[-5.371336,58.254118],[-5.370822,58.256334],[-5.371754,58.256894],[-5.370913,58.257828],[-5.371675,58.259166],[-5.373779,58.258458],[-5.375231,58.259655],[-5.374242,58.263877],[-5.3777,58.263118],[-5.377954,58.26166],[-5.38099,58.261658],[-5.38384,58.26007],[-5.384999,58.257208],[-5.387333,58.256378],[-5.387553,58.255194],[-5.391504,58.254159],[-5.393197,58.255193],[-5.39363,58.253837],[-5.394795,58.253002],[-5.394598,58.251933],[-5.397155,58.251654],[-5.397159,58.249114],[-5.395193,58.247904],[-5.39649,58.247114],[-5.396957,58.244963],[-5.395874,58.244421],[-5.398519,58.242665],[-5.399982,58.24059],[-5.403745,58.240193],[-5.403929,58.239092],[-5.402236,58.237609],[-5.403293,58.237441],[-5.404312,58.23589],[-5.401397,58.235528],[-5.400282,58.234564],[-5.398691,58.234854],[-5.394367,58.233841],[-5.39064,58.232196],[-5.386008,58.231784],[-5.382742,58.23041],[-5.381769,58.230306],[-5.379342,58.228707],[-5.376974,58.225665],[-5.375186,58.225364],[-5.371355,58.223463],[-5.370043,58.220958],[-5.366455,58.219039],[-5.363653,58.218924],[-5.361749,58.217896],[-5.360719,58.216777],[-5.360437,58.215463],[-5.360911,58.214491],[-5.361401,58.210903],[-5.359127,58.210986],[-5.359938,58.209751],[-5.360277,58.207032],[-5.359589,58.206425],[-5.359991,58.204909],[-5.357964,58.202109],[-5.354949,58.201555],[-5.350846,58.201961],[-5.348451,58.201477],[-5.345388,58.201373],[-5.339822,58.199616],[-5.33915,58.198697],[-5.339456,58.197436],[-5.342978,58.195665],[-5.343474,58.193763],[-5.344133,58.193338],[-5.3442,58.191827],[-5.343011,58.18942],[-5.341181,58.189534],[-5.340569,58.190404],[-5.338538,58.190328],[-5.339147,58.189474],[-5.336484,58.189358],[-5.335224,58.188741],[-5.3358,58.187388],[-5.337187,58.186745],[-5.339047,58.18662],[-5.339301,58.185427],[-5.336183,58.18412],[-5.333673,58.18476],[-5.330835,58.183801],[-5.331725,58.182951],[-5.33124,58.181858],[-5.332239,58.180627],[-5.330462,58.180454],[-5.328995,58.180964],[-5.327385,58.180754],[-5.321958,58.182297],[-5.321222,58.181544],[-5.318791,58.181383],[-5.316311,58.181978],[-5.315287,58.181118],[-5.317893,58.18088],[-5.31306,58.179694],[-5.314999,58.178677],[-5.309081,58.177159],[-5.305133,58.176322],[-5.306304,58.174827],[-5.305333,58.173895],[-5.303277,58.173741],[-5.302827,58.172647],[-5.306469,58.171659],[-5.305654,58.170623],[-5.306575,58.169963],[-5.30873,58.169627],[-5.31051,58.170938],[-5.311682,58.171101],[-5.318046,58.169938],[-5.316869,58.1688],[-5.315287,58.168535],[-5.315089,58.167682],[-5.31164,58.168181],[-5.310721,58.167166],[-5.311376,58.16626],[-5.310507,58.164601],[-5.311118,58.163664],[-5.309254,58.163465],[-5.309128,58.1623],[-5.306285,58.163358],[-5.302328,58.163704],[-5.298591,58.165405],[-5.295649,58.165698],[-5.296103,58.164889],[-5.293965,58.16485],[-5.292047,58.165448],[-5.291998,58.166852],[-5.287111,58.167984],[-5.28677,58.167243],[-5.283767,58.166866],[-5.282704,58.167046],[-5.280814,58.166381],[-5.281776,58.164729],[-5.283985,58.163971],[-5.285631,58.16449],[-5.288963,58.164463],[-5.290385,58.163752],[-5.296493,58.162026],[-5.299802,58.162228],[-5.299899,58.162904],[-5.304002,58.161584],[-5.304301,58.160125],[-5.305556,58.158447],[-5.309261,58.155223],[-5.30701,58.155147],[-5.302832,58.153552],[-5.300575,58.153417],[-5.298387,58.152642],[-5.299241,58.151865],[-5.298389,58.151015],[-5.296304,58.150535],[-5.287387,58.152001],[-5.285666,58.153802],[-5.283325,58.154062],[-5.281598,58.153301],[-5.281225,58.152389],[-5.282828,58.150599],[-5.280729,58.150604],[-5.280314,58.149419],[-5.278618,58.14891],[-5.276287,58.148814],[-5.275631,58.149338],[-5.273062,58.149404],[-5.271891,58.148868],[-5.26903,58.149188],[-5.270039,58.147958],[-5.26439,58.147622],[-5.260707,58.148541],[-5.256828,58.151598],[-5.253474,58.152232],[-5.252081,58.153495],[-5.249923,58.152214],[-5.247199,58.152757],[-5.244221,58.153938],[-5.239378,58.154338],[-5.240872,58.15344],[-5.240585,58.152135],[-5.241571,58.151035],[-5.240765,58.147421],[-5.244623,58.148063],[-5.24838,58.147053],[-5.24942,58.147532],[-5.252339,58.147028],[-5.251598,58.145517],[-5.249661,58.144003],[-5.249948,58.143138],[-5.251379,58.142063],[-5.25322,58.14202],[-5.254831,58.141337],[-5.256553,58.14158],[-5.256532,58.142558],[-5.260528,58.142292],[-5.262784,58.142418],[-5.263191,58.14104],[-5.262627,58.140342],[-5.260793,58.139833],[-5.258718,58.140224],[-5.258954,58.138193],[-5.260003,58.137483],[-5.262503,58.138368],[-5.26403,58.138018],[-5.267498,58.138875],[-5.269576,58.139],[-5.273223,58.137892],[-5.271315,58.137171],[-5.272996,58.136095],[-5.278138,58.137533],[-5.282876,58.137847],[-5.285368,58.137412],[-5.286617,58.137688],[-5.285505,58.138942],[-5.289298,58.140097],[-5.290694,58.138971],[-5.292205,58.138691],[-5.296449,58.138813],[-5.299061,58.137419],[-5.298164,58.136177],[-5.296128,58.136483],[-5.293616,58.135865],[-5.29354,58.135125],[-5.291117,58.1341],[-5.29089,58.133133],[-5.28952,58.132522],[-5.289466,58.13085],[-5.287254,58.130817],[-5.28702,58.12934],[-5.287527,58.12878],[-5.286579,58.127055],[-5.284517,58.126204],[-5.281771,58.125875],[-5.279348,58.124826],[-5.274954,58.125599],[-5.273655,58.124397],[-5.270339,58.125539],[-5.268636,58.125849],[-5.265336,58.125561],[-5.264296,58.123495],[-5.265097,58.121813],[-5.26791,58.122255],[-5.270713,58.121696],[-5.273112,58.122254],[-5.27574,58.121931],[-5.27655,58.122309],[-5.281708,58.121766],[-5.282991,58.121074],[-5.285225,58.121464],[-5.286825,58.1205],[-5.288632,58.120954],[-5.289005,58.122118],[-5.2921,58.121598],[-5.294276,58.120238],[-5.295744,58.120948],[-5.297527,58.120213],[-5.301197,58.12023],[-5.302984,58.119528],[-5.301936,58.118211],[-5.299237,58.118043],[-5.300063,58.117179],[-5.29984,58.115654],[-5.298281,58.115331],[-5.294677,58.113451],[-5.293021,58.113458],[-5.292169,58.114069],[-5.290197,58.114142],[-5.289515,58.112731],[-5.285264,58.113321],[-5.284304,58.114052],[-5.282054,58.114514],[-5.278871,58.114623],[-5.278178,58.113275],[-5.281455,58.113357],[-5.282217,58.112416],[-5.284768,58.111532],[-5.285221,58.110181],[-5.284505,58.108856],[-5.282541,58.108183],[-5.281193,58.108667],[-5.279122,58.10775],[-5.280578,58.10706],[-5.278083,58.105866],[-5.276416,58.106763],[-5.276857,58.108136],[-5.274112,58.106998],[-5.271887,58.107091],[-5.271703,58.106192],[-5.268756,58.105257],[-5.269269,58.103347],[-5.268319,58.102064],[-5.270438,58.101721],[-5.271467,58.100747],[-5.271063,58.099023],[-5.272994,58.098609],[-5.274388,58.097333],[-5.275736,58.096858],[-5.277464,58.094966],[-5.279312,58.094671],[-5.280978,58.095253],[-5.281896,58.094798],[-5.279738,58.093294],[-5.276588,58.093097],[-5.274733,58.092587],[-5.274306,58.091542],[-5.277002,58.091783],[-5.280215,58.092482],[-5.281435,58.091354],[-5.281099,58.090374],[-5.278291,58.088451],[-5.279294,58.087356],[-5.277547,58.087224],[-5.275759,58.08631],[-5.276124,58.085361],[-5.278205,58.083481],[-5.280679,58.084695],[-5.281809,58.086747],[-5.282814,58.085773],[-5.285505,58.085047],[-5.28604,58.08395],[-5.288135,58.08306],[-5.286396,58.082651],[-5.287237,58.08018],[-5.288815,58.078701],[-5.283009,58.076636],[-5.281625,58.075696],[-5.2807,58.073931],[-5.28118,58.073065],[-5.285121,58.072847],[-5.285578,58.07229],[-5.289019,58.073735],[-5.292673,58.073991],[-5.294071,58.072862],[-5.294465,58.071801],[-5.292756,58.070606],[-5.294858,58.069534],[-5.296707,58.070551],[-5.299806,58.069478],[-5.299811,58.065766],[-5.300557,58.064229],[-5.302446,58.064298],[-5.304292,58.065712],[-5.307093,58.065379],[-5.309641,58.066075],[-5.310192,58.067533],[-5.307857,58.067982],[-5.308099,58.069092],[-5.310707,58.069497],[-5.312902,58.068854],[-5.314206,58.07011],[-5.317265,58.070264],[-5.320021,58.069711],[-5.322501,58.068361],[-5.325383,58.068812],[-5.325484,58.069632],[-5.32704,58.071038],[-5.327221,58.072337],[-5.328715,58.07272],[-5.328454,58.073653],[-5.33021,58.075652],[-5.331102,58.076118],[-5.332485,58.078032],[-5.334763,58.076804],[-5.3375,58.079047],[-5.337777,58.079826],[-5.340608,58.079896],[-5.341199,58.079229],[-5.338185,58.078389],[-5.338065,58.077622],[-5.34035,58.0765],[-5.341882,58.076285],[-5.343477,58.077461],[-5.346334,58.07717],[-5.349749,58.077673],[-5.351738,58.078614],[-5.352975,58.075346],[-5.351747,58.073877],[-5.353895,58.073677],[-5.355368,58.072739],[-5.35745,58.068172],[-5.356862,58.067487],[-5.356869,58.065635],[-5.356139,58.064336],[-5.354969,58.06396],[-5.353724,58.061996],[-5.353153,58.05912],[-5.354505,58.05778],[-5.356968,58.057687],[-5.358408,58.058227],[-5.358469,58.059325],[-5.355788,58.059355],[-5.358622,58.060691],[-5.357914,58.061625],[-5.360423,58.063217],[-5.360506,58.065555],[-5.362274,58.066714],[-5.361608,58.068304],[-5.364493,58.069141],[-5.366213,58.071706],[-5.3655,58.0735],[-5.366978,58.073969],[-5.367556,58.075693],[-5.370603,58.076884],[-5.3731,58.076018],[-5.374114,58.076153],[-5.375703,58.077792],[-5.375643,58.079313],[-5.377624,58.078725],[-5.379379,58.081047],[-5.380797,58.081063],[-5.379606,58.082457],[-5.380452,58.085032],[-5.380313,58.085984],[-5.383057,58.085839],[-5.385768,58.086154],[-5.390426,58.087391],[-5.39048,58.088235],[-5.392796,58.088933],[-5.39292,58.090781],[-5.395755,58.090696],[-5.397388,58.091179],[-5.399642,58.093806],[-5.400649,58.096804],[-5.401839,58.096287],[-5.403709,58.096493],[-5.406961,58.097934],[-5.410233,58.098498],[-5.409393,58.099572],[-5.411215,58.100431],[-5.411746,58.101361],[-5.417071,58.102625],[-5.419187,58.102388],[-5.420355,58.103318],[-5.421971,58.103617],[-5.421764,58.105267],[-5.423727,58.105547],[-5.425185,58.104995],[-5.426386,58.105826],[-5.4292,58.105782],[-5.430319,58.104704],[-5.431929,58.104139],[-5.433432,58.105735],[-5.434671,58.105724],[-5.437135,58.10292],[-5.438953,58.101968],[-5.439154,58.10123],[-5.436908,58.100652],[-5.437616,58.09946],[-5.435861,58.09922],[-5.436647,58.096268],[-5.44044,58.09644],[-5.44225,58.09778],[-5.445109,58.098026],[-5.446688,58.097147],[-5.44693,58.094637],[-5.445361,58.093421],[-5.447935,58.09239],[-5.447291,58.090556],[-5.449404,58.090728],[-5.450999,58.088176],[-5.454395,58.085122],[-5.454626,58.083741],[-5.453036,58.082917],[-5.450206,58.083162],[-5.44929,58.083665],[-5.447839,58.082873],[-5.448205,58.082009],[-5.446313,58.080344],[-5.446982,58.079364],[-5.449641,58.078078],[-5.452402,58.078369],[-5.457729,58.077144],[-5.456099,58.074946],[-5.45787,58.074659],[-5.456841,58.073761],[-5.456776,58.072478],[-5.455868,58.072035],[-5.455819,58.070468],[-5.454866,58.070175],[-5.453084,58.071576],[-5.454503,58.073964],[-5.453264,58.074753],[-5.453573,58.075401],[-5.451743,58.076044],[-5.45207,58.076615],[-5.449912,58.077541],[-5.451995,58.073035],[-5.45339,58.072637],[-5.452864,58.071693],[-5.450097,58.070883],[-5.450271,58.06967],[-5.448956,58.068623],[-5.448751,58.06772],[-5.445589,58.066371],[-5.446603,58.065064],[-5.444909,58.063941],[-5.445341,58.063408],[-5.443616,58.062232],[-5.441038,58.061435],[-5.43918,58.060195],[-5.437256,58.060207],[-5.433117,58.059397],[-5.431193,58.059498],[-5.427942,58.059015],[-5.426304,58.059095],[-5.425619,58.058143],[-5.423786,58.057898],[-5.423992,58.056802],[-5.421369,58.055209],[-5.418462,58.055561],[-5.417272,58.055353],[-5.415841,58.053508],[-5.412972,58.053029],[-5.412183,58.051782],[-5.412815,58.050812],[-5.416929,58.050081],[-5.418053,58.049675],[-5.418661,58.047611],[-5.420441,58.046913],[-5.420428,58.046126],[-5.417551,58.046286],[-5.415163,58.045986],[-5.414725,58.04509],[-5.417799,58.043267],[-5.419988,58.043895],[-5.422312,58.043668],[-5.423316,58.039675],[-5.424145,58.038363],[-5.423439,58.036705],[-5.4209,58.035861],[-5.418973,58.035729],[-5.418005,58.034559],[-5.41984,58.033809],[-5.419501,58.032573],[-5.417395,58.032908],[-5.415634,58.034133],[-5.413951,58.033989],[-5.409467,58.034415],[-5.408117,58.033098],[-5.406445,58.033108],[-5.404228,58.032592],[-5.401348,58.032644],[-5.396712,58.032173],[-5.394837,58.031058],[-5.392462,58.030722],[-5.390498,58.029492],[-5.388622,58.029539],[-5.385135,58.028772],[-5.381523,58.028942],[-5.379618,58.029779],[-5.375957,58.029533],[-5.3716,58.031562],[-5.366705,58.030772],[-5.3619,58.028755],[-5.357884,58.026525],[-5.357316,58.025646],[-5.355679,58.024699],[-5.355346,58.023672],[-5.353054,58.021848],[-5.350035,58.020441],[-5.350151,58.018759],[-5.351091,58.018209],[-5.350734,58.017081],[-5.347535,58.014967],[-5.347295,58.013537],[-5.352856,58.010342],[-5.352368,58.008882],[-5.354569,58.00811],[-5.355262,58.006654],[-5.35329,58.005852],[-5.348351,58.005721],[-5.343973,58.006354],[-5.34137,58.00622],[-5.338397,58.007263],[-5.336302,58.007384],[-5.335006,58.008009],[-5.333226,58.007763],[-5.330663,58.006661],[-5.32844,58.004521],[-5.327711,58.002545],[-5.328002,58.001724],[-5.326933,58.000506],[-5.325193,58.001062],[-5.322834,57.999715],[-5.321436,57.9965],[-5.320465,57.995429],[-5.320413,57.994406],[-5.313684,57.992667],[-5.312262,57.990838],[-5.310012,57.9903],[-5.307632,57.988528],[-5.307978,57.986501],[-5.307321,57.985609],[-5.30955,57.984191],[-5.311122,57.984266],[-5.313298,57.982821],[-5.311884,57.981892],[-5.31374,57.980917],[-5.311034,57.97901],[-5.30663,57.977858],[-5.304002,57.97863],[-5.298605,57.97826],[-5.296917,57.977387],[-5.293364,57.977843],[-5.289942,57.977517],[-5.288986,57.977152],[-5.286052,57.977075],[-5.283904,57.975697],[-5.282336,57.975293],[-5.275697,57.974881],[-5.271365,57.975276],[-5.268981,57.974501],[-5.266189,57.974588],[-5.263537,57.973867],[-5.261792,57.973934],[-5.259151,57.973507],[-5.257279,57.972482],[-5.253572,57.971992],[-5.25198,57.971229],[-5.246145,57.97087],[-5.244072,57.968703],[-5.243388,57.967224],[-5.244303,57.966589],[-5.244502,57.965232],[-5.240235,57.963573],[-5.240598,57.962266],[-5.234344,57.960997],[-5.227988,57.961023],[-5.226305,57.960167],[-5.226914,57.958673],[-5.225493,57.958008],[-5.222375,57.958595],[-5.222189,57.957742],[-5.216108,57.958103],[-5.214745,57.957517],[-5.211574,57.957685],[-5.207557,57.957213],[-5.203452,57.957348],[-5.195924,57.957214],[-5.192234,57.957456],[-5.192911,57.956225],[-5.191751,57.955827],[-5.191034,57.951289],[-5.193606,57.950451],[-5.194716,57.949443],[-5.19372,57.948691],[-5.191857,57.948661],[-5.191589,57.947927],[-5.193572,57.945702],[-5.193742,57.944763],[-5.19235,57.944276],[-5.188807,57.944482],[-5.185912,57.945193],[-5.183244,57.947323],[-5.182895,57.948253],[-5.184021,57.948656],[-5.184191,57.950467],[-5.182856,57.95153],[-5.178993,57.952594],[-5.179256,57.954216],[-5.178901,57.955288],[-5.17571,57.95321],[-5.175609,57.952165],[-5.177054,57.949963],[-5.177054,57.949229],[-5.179146,57.947533],[-5.180655,57.946899],[-5.178181,57.945131],[-5.17709,57.94359],[-5.180563,57.942532],[-5.179456,57.941009],[-5.183126,57.940202],[-5.184812,57.938919],[-5.186429,57.93687],[-5.189699,57.935847],[-5.194198,57.934939],[-5.197359,57.936259],[-5.198525,57.936084],[-5.197029,57.934],[-5.196822,57.931539],[-5.197533,57.929824],[-5.199702,57.928663],[-5.202054,57.929746],[-5.205813,57.929919],[-5.207572,57.928909],[-5.211075,57.928479],[-5.212633,57.929012],[-5.21711,57.929049],[-5.221859,57.927352],[-5.222557,57.925784],[-5.221608,57.924283],[-5.218816,57.924429],[-5.218086,57.923664],[-5.217742,57.922115],[-5.21596,57.921264],[-5.213599,57.920924],[-5.21055,57.921217],[-5.208267,57.920388],[-5.205603,57.918381],[-5.199232,57.915994],[-5.1971,57.913192],[-5.195567,57.912378],[-5.194794,57.911206],[-5.193315,57.910318],[-5.190718,57.910072],[-5.189281,57.909223],[-5.185407,57.908262],[-5.180332,57.907532],[-5.175095,57.90345],[-5.171846,57.901407],[-5.170372,57.902557],[-5.16654,57.901607],[-5.167071,57.90081],[-5.168721,57.90122],[-5.16804,57.897387],[-5.166373,57.895266],[-5.166151,57.893494],[-5.164934,57.893136],[-5.16061,57.895112],[-5.158053,57.894687],[-5.158266,57.895828],[-5.154853,57.89649],[-5.151565,57.896322],[-5.148733,57.894639],[-5.14444,57.893696],[-5.141247,57.889897],[-5.139104,57.889345],[-5.136835,57.887545],[-5.136039,57.886459],[-5.135628,57.884546],[-5.135997,57.882973],[-5.134473,57.880903],[-5.131579,57.879513],[-5.127436,57.879023],[-5.127048,57.878528],[-5.121571,57.879023],[-5.118676,57.878493],[-5.112073,57.875981],[-5.109495,57.87533],[-5.104997,57.872672],[-5.102928,57.872055],[-5.101556,57.870691],[-5.099038,57.869345],[-5.098663,57.86783],[-5.096963,57.865593],[-5.09441,57.86466],[-5.093573,57.863557],[-5.095349,57.861553],[-5.094211,57.860975],[-5.090023,57.859641],[-5.089365,57.858966],[-5.088859,57.856759],[-5.082295,57.85273],[-5.080495,57.8509],[-5.083053,57.848461],[-5.083464,57.847566],[-5.081948,57.846497],[-5.079726,57.845844],[-5.078583,57.844084],[-5.077815,57.841436],[-5.076763,57.840898],[-5.074342,57.837691],[-5.074051,57.835531],[-5.072671,57.835235],[-5.065377,57.827127],[-5.0653,57.826381],[-5.068472,57.82562],[-5.069855,57.824929],[-5.068846,57.824353],[-5.069988,57.822843],[-5.070947,57.820648],[-5.070689,57.818603],[-5.071318,57.818363],[-5.070078,57.815758],[-5.072493,57.816334],[-5.073718,57.818314],[-5.078384,57.822537],[-5.079299,57.823928],[-5.081537,57.825363],[-5.082469,57.826902],[-5.085879,57.82927],[-5.089404,57.832757],[-5.092065,57.835791],[-5.092093,57.836568],[-5.093721,57.837006],[-5.094312,57.83861],[-5.095787,57.839322],[-5.099072,57.842545],[-5.101044,57.846058],[-5.102788,57.84727],[-5.10365,57.848587],[-5.103748,57.850368],[-5.105317,57.850944],[-5.109923,57.857409],[-5.118461,57.865842],[-5.118984,57.868079],[-5.119996,57.868481],[-5.121309,57.870588],[-5.12396,57.871632],[-5.126831,57.871534],[-5.128231,57.872001],[-5.128448,57.873116],[-5.127849,57.874606],[-5.131542,57.875202],[-5.135139,57.875188],[-5.145289,57.874231],[-5.148943,57.874635],[-5.151895,57.875501],[-5.152678,57.877212],[-5.155666,57.878391],[-5.157492,57.880161],[-5.161888,57.880847],[-5.162297,57.88179],[-5.16419,57.881822],[-5.167197,57.882405],[-5.166316,57.884089],[-5.166952,57.885565],[-5.168782,57.885457],[-5.171295,57.886019],[-5.172851,57.886825],[-5.176607,57.886551],[-5.180903,57.887067],[-5.18153,57.889358],[-5.186074,57.890221],[-5.18716,57.88987],[-5.188713,57.890525],[-5.189573,57.892319],[-5.191951,57.892871],[-5.193591,57.893665],[-5.195927,57.896115],[-5.195903,57.896748],[-5.19771,57.897089],[-5.197604,57.89791],[-5.19891,57.898291],[-5.202673,57.8986],[-5.203385,57.899867],[-5.205962,57.90018],[-5.208022,57.900836],[-5.208018,57.901905],[-5.209087,57.902212],[-5.211876,57.903926],[-5.212585,57.905704],[-5.215049,57.907136],[-5.217482,57.909331],[-5.219503,57.909417],[-5.223418,57.911565],[-5.227213,57.911236],[-5.228461,57.912817],[-5.231001,57.912558],[-5.232518,57.913449],[-5.23622,57.913703],[-5.242372,57.912755],[-5.241678,57.913963],[-5.239079,57.914768],[-5.239757,57.915572],[-5.239239,57.916818],[-5.24029,57.917398],[-5.24335,57.917545],[-5.24654,57.916675],[-5.248548,57.916556],[-5.259,57.917138],[-5.263776,57.916113],[-5.264591,57.916135],[-5.270261,57.915059],[-5.272454,57.91512],[-5.274288,57.913761],[-5.276891,57.912839],[-5.282671,57.911511],[-5.285415,57.911748],[-5.288395,57.911215],[-5.292283,57.911003],[-5.297277,57.910378],[-5.304459,57.910429],[-5.30977,57.910884],[-5.315501,57.910615],[-5.320538,57.911797],[-5.324025,57.913545],[-5.328309,57.913836],[-5.332525,57.915198],[-5.332967,57.917125],[-5.335444,57.918584],[-5.337261,57.918164],[-5.338348,57.918764],[-5.34068,57.919127],[-5.345804,57.921877],[-5.345882,57.923092],[-5.347843,57.923746],[-5.348304,57.925173],[-5.349948,57.925299],[-5.351337,57.926606],[-5.355501,57.926775],[-5.354985,57.928757],[-5.35239,57.929569],[-5.352891,57.931217],[-5.351525,57.931792],[-5.351401,57.932636],[-5.352838,57.935173],[-5.355214,57.93636],[-5.357253,57.936391],[-5.356846,57.937548],[-5.358582,57.938619],[-5.360677,57.939024],[-5.361808,57.937925],[-5.364624,57.938578],[-5.366427,57.937701],[-5.368718,57.938263],[-5.369999,57.937685],[-5.372522,57.93729],[-5.372151,57.936437],[-5.370331,57.935281],[-5.370781,57.934219],[-5.369548,57.933423],[-5.368867,57.93229],[-5.369874,57.930866],[-5.372048,57.929736],[-5.375714,57.9297],[-5.376217,57.930668],[-5.377674,57.931006],[-5.378063,57.932051],[-5.381071,57.931786],[-5.384742,57.930753],[-5.386671,57.930693],[-5.391268,57.931159],[-5.397261,57.933322],[-5.401071,57.932596],[-5.404333,57.931162],[-5.404765,57.929584],[-5.406145,57.927745],[-5.405838,57.927272],[-5.394205,57.920743],[-5.394124,57.919348],[-5.394973,57.918678],[-5.394286,57.914553],[-5.394683,57.9139],[-5.392306,57.912267],[-5.391563,57.912532],[-5.386245,57.911821],[-5.384662,57.909442],[-5.381297,57.909323],[-5.378166,57.9105],[-5.374676,57.909803],[-5.370704,57.909511],[-5.359628,57.907875],[-5.352331,57.90804],[-5.350581,57.907578],[-5.345851,57.907819],[-5.341858,57.907149],[-5.338704,57.906268],[-5.334253,57.902152],[-5.331535,57.901064],[-5.327201,57.89833],[-5.323174,57.896494],[-5.31995,57.8943],[-5.317126,57.89169],[-5.315664,57.889374],[-5.313426,57.887464],[-5.313302,57.886177],[-5.314206,57.884913],[-5.314337,57.882847],[-5.313437,57.881603],[-5.311415,57.880991],[-5.311973,57.880086],[-5.311097,57.878909],[-5.309941,57.878614],[-5.307585,57.87723],[-5.305753,57.877031],[-5.295295,57.874301],[-5.293083,57.874367],[-5.280921,57.872592],[-5.276267,57.872413],[-5.270116,57.871271],[-5.268339,57.871169],[-5.250831,57.868482],[-5.246002,57.867213],[-5.243055,57.865765],[-5.241281,57.864138],[-5.240739,57.862898],[-5.241512,57.859315],[-5.242412,57.857745],[-5.241698,57.856707],[-5.240048,57.856157],[-5.238909,57.854739],[-5.23636,57.853644],[-5.233126,57.853147],[-5.231939,57.852185],[-5.228915,57.851695],[-5.228204,57.850909],[-5.225695,57.850375],[-5.219941,57.847998],[-5.221348,57.846049],[-5.218807,57.846422],[-5.217191,57.844893],[-5.217586,57.842068],[-5.225511,57.842673],[-5.232047,57.844248],[-5.234427,57.844293],[-5.236994,57.844779],[-5.237687,57.84527],[-5.242717,57.846004],[-5.251518,57.848457],[-5.259567,57.849641],[-5.260787,57.851391],[-5.260568,57.852295],[-5.263322,57.852565],[-5.266556,57.853885],[-5.26963,57.853701],[-5.27314,57.854481],[-5.276679,57.854094],[-5.277398,57.854817],[-5.282758,57.855892],[-5.287099,57.854896],[-5.289968,57.855698],[-5.29226,57.855877],[-5.30348,57.859715],[-5.30695,57.860589],[-5.310404,57.860829],[-5.311042,57.862098],[-5.314414,57.863067],[-5.317273,57.863029],[-5.322033,57.86505],[-5.324612,57.865178],[-5.328096,57.866993],[-5.330482,57.869355],[-5.332757,57.870386],[-5.333586,57.873276],[-5.335831,57.875029],[-5.335477,57.87698],[-5.337117,57.879193],[-5.338219,57.87982],[-5.340498,57.880293],[-5.345899,57.883993],[-5.349473,57.885943],[-5.356342,57.888617],[-5.37555,57.894457],[-5.382657,57.897316],[-5.39021,57.899247],[-5.396902,57.902983],[-5.396504,57.903877],[-5.397617,57.904682],[-5.405169,57.90489],[-5.406787,57.904496],[-5.41103,57.905054],[-5.413339,57.904859],[-5.415834,57.905619],[-5.418526,57.906929],[-5.420927,57.90714],[-5.422336,57.90855],[-5.425148,57.906934],[-5.424482,57.906613],[-5.426704,57.903793],[-5.430811,57.902505],[-5.432415,57.901001],[-5.432158,57.899462],[-5.433175,57.897825],[-5.432233,57.897325],[-5.433014,57.894899],[-5.436758,57.894159],[-5.437558,57.893612],[-5.437379,57.889972],[-5.436789,57.889003],[-5.440079,57.886924],[-5.438176,57.885881],[-5.433033,57.884729],[-5.431773,57.883019],[-5.433709,57.881291],[-5.436374,57.88102],[-5.439246,57.881414],[-5.439074,57.880616],[-5.44233,57.878736],[-5.442652,57.877428],[-5.440538,57.875367],[-5.44005,57.87367],[-5.440753,57.872634],[-5.44302,57.87202],[-5.444391,57.870944],[-5.445753,57.870672],[-5.446824,57.869634],[-5.450947,57.86971],[-5.454275,57.868973],[-5.454334,57.867389],[-5.45296,57.866694],[-5.45668,57.865114],[-5.456472,57.864],[-5.453969,57.862486],[-5.451493,57.862086],[-5.451468,57.859782],[-5.452183,57.85939],[-5.450809,57.858334],[-5.451768,57.857342],[-5.450956,57.856429],[-5.4523,57.855417],[-5.452097,57.853027],[-5.454172,57.851815],[-5.454492,57.850919],[-5.456207,57.851284],[-5.458504,57.851133],[-5.460798,57.852009],[-5.462963,57.852442],[-5.468406,57.852541],[-5.470738,57.853654],[-5.471935,57.854906],[-5.472348,57.856348],[-5.475494,57.857848],[-5.481662,57.857018],[-5.484488,57.857903],[-5.487291,57.857861],[-5.48933,57.859055],[-5.488079,57.859953],[-5.488348,57.861019],[-5.49004,57.860725],[-5.495062,57.860719],[-5.498362,57.861546],[-5.49977,57.860974],[-5.502947,57.861783],[-5.505715,57.861329],[-5.508079,57.861565],[-5.51092,57.862632],[-5.51246,57.863964],[-5.514537,57.864316],[-5.516296,57.865214],[-5.517429,57.864717],[-5.520324,57.864862],[-5.522137,57.865469],[-5.525791,57.866069],[-5.531656,57.866514],[-5.533871,57.867084],[-5.535803,57.867182],[-5.538393,57.868175],[-5.540562,57.86958],[-5.540956,57.871148],[-5.539983,57.871946],[-5.540173,57.873309],[-5.539315,57.875048],[-5.542526,57.875891],[-5.542769,57.876939],[-5.544536,57.877485],[-5.548532,57.880284],[-5.551467,57.883606],[-5.551634,57.885636],[-5.549812,57.888093],[-5.551688,57.888881],[-5.553218,57.890186],[-5.55329,57.891263],[-5.550296,57.895755],[-5.548728,57.897132],[-5.549519,57.897915],[-5.549857,57.899803],[-5.551436,57.899497],[-5.552406,57.899995],[-5.550766,57.900942],[-5.552914,57.901215],[-5.553363,57.900424],[-5.557533,57.900528],[-5.559329,57.902324],[-5.560375,57.902571],[-5.556343,57.90455],[-5.556603,57.905146],[-5.555457,57.906362],[-5.555884,57.907523],[-5.554692,57.90834],[-5.553183,57.908405],[-5.552238,57.909654],[-5.552239,57.913017],[-5.554729,57.912273],[-5.556587,57.912327],[-5.559447,57.913433],[-5.558267,57.915219],[-5.560125,57.915523],[-5.561641,57.916589],[-5.561325,57.917491],[-5.562435,57.918154],[-5.565085,57.918281],[-5.568214,57.91707],[-5.571696,57.91469],[-5.572763,57.911801],[-5.574228,57.910834],[-5.576431,57.910632],[-5.573092,57.912962],[-5.574936,57.913727],[-5.575187,57.914911],[-5.579245,57.913045],[-5.581275,57.913862],[-5.578756,57.91556],[-5.58269,57.916025],[-5.581312,57.918383],[-5.582152,57.919193],[-5.585403,57.917989],[-5.587309,57.919249],[-5.589485,57.918008],[-5.591858,57.917923],[-5.590669,57.91997],[-5.592138,57.92081],[-5.595459,57.921797],[-5.596922,57.921878],[-5.598906,57.923099],[-5.603087,57.922855],[-5.603218,57.923804],[-5.604419,57.924412],[-5.610443,57.92416],[-5.612807,57.924318],[-5.613757,57.924938],[-5.61758,57.923984],[-5.618402,57.924338],[-5.620583,57.923678],[-5.621999,57.922312],[-5.622885,57.920794],[-5.622157,57.920356],[-5.622938,57.918977],[-5.626526,57.917359],[-5.628308,57.915938],[-5.633832,57.914265],[-5.635651,57.913296],[-5.639713,57.909044],[-5.641757,57.90654],[-5.641235,57.905391],[-5.641752,57.904324],[-5.644823,57.902887],[-5.645558,57.90314],[-5.646974,57.901032],[-5.645561,57.899423],[-5.64535,57.898346],[-5.644225,57.897488],[-5.644701,57.896099],[-5.648007,57.894988],[-5.649085,57.893887],[-5.649388,57.892705],[-5.651468,57.892245],[-5.65166,57.891561],[-5.655867,57.889017],[-5.65331,57.887859],[-5.650771,57.887375],[-5.647478,57.886198],[-5.645046,57.884681],[-5.64376,57.884484],[-5.643215,57.883021],[-5.645359,57.883274],[-5.647956,57.882588],[-5.649447,57.882642],[-5.653808,57.881714],[-5.655527,57.880608],[-5.655128,57.88017],[-5.655898,57.878696],[-5.654312,57.876202],[-5.6513,57.875542],[-5.649701,57.873997],[-5.648535,57.871795],[-5.647455,57.871068],[-5.644969,57.871157],[-5.644518,57.870726],[-5.646424,57.868217],[-5.646034,57.867536],[-5.647064,57.866207],[-5.644018,57.865782],[-5.642232,57.864983],[-5.641045,57.863765],[-5.63845,57.863002],[-5.639305,57.861868],[-5.641757,57.861198],[-5.642132,57.858369],[-5.6412,57.858104],[-5.641919,57.855893],[-5.638153,57.85572],[-5.635916,57.857117],[-5.632449,57.856632],[-5.631638,57.854783],[-5.629995,57.854689],[-5.628746,57.855253],[-5.625859,57.855476],[-5.621909,57.854779],[-5.61821,57.852595],[-5.61563,57.852309],[-5.613928,57.851378],[-5.608771,57.851543],[-5.604999,57.850557],[-5.602096,57.849122],[-5.599375,57.846763],[-5.598756,57.846734],[-5.599221,57.844353],[-5.601212,57.841712],[-5.600509,57.84113],[-5.59748,57.840114],[-5.596082,57.838318],[-5.594072,57.839022],[-5.595322,57.840015],[-5.595569,57.841205],[-5.593248,57.841489],[-5.589855,57.841142],[-5.586028,57.840196],[-5.583676,57.838174],[-5.581921,57.836074],[-5.581982,57.835089],[-5.583306,57.833771],[-5.580862,57.829345],[-5.582515,57.827747],[-5.58343,57.82466],[-5.58372,57.821649],[-5.58315,57.820744],[-5.584362,57.81946],[-5.584956,57.817466],[-5.584005,57.814935],[-5.587767,57.811691],[-5.588469,57.809343],[-5.591986,57.807117],[-5.592517,57.805515],[-5.595537,57.804719],[-5.597687,57.801876],[-5.597181,57.801113],[-5.593642,57.798795],[-5.590904,57.799377],[-5.590602,57.798706],[-5.587402,57.799125],[-5.584301,57.798413],[-5.580488,57.798849],[-5.581148,57.797266],[-5.579618,57.793961],[-5.577554,57.7928],[-5.57914,57.790484],[-5.580871,57.790258],[-5.582294,57.789449],[-5.583644,57.789829],[-5.585229,57.788934],[-5.589021,57.789321],[-5.590861,57.788873],[-5.591813,57.789471],[-5.594046,57.789416],[-5.596599,57.788304],[-5.599754,57.788328],[-5.604676,57.786961],[-5.605697,57.789951],[-5.602822,57.789387],[-5.600725,57.789968],[-5.599313,57.792008],[-5.599485,57.793649],[-5.602076,57.795494],[-5.60551,57.796326],[-5.60807,57.796339],[-5.610787,57.795979],[-5.611398,57.794856],[-5.613235,57.794704],[-5.613388,57.793595],[-5.616485,57.793029],[-5.618411,57.792003],[-5.618982,57.79063],[-5.622147,57.789811],[-5.621185,57.788948],[-5.621121,57.78713],[-5.619102,57.786454],[-5.6178,57.787418],[-5.614139,57.786152],[-5.61501,57.785354],[-5.614514,57.784439],[-5.613133,57.783758],[-5.613141,57.782319],[-5.610873,57.781435],[-5.609313,57.779546],[-5.607999,57.778652],[-5.606467,57.778266],[-5.605407,57.776584],[-5.607572,57.776437],[-5.609025,57.775823],[-5.606655,57.774739],[-5.604484,57.774499],[-5.602139,57.775195],[-5.599322,57.775274],[-5.598077,57.77477],[-5.596294,57.773207],[-5.596101,57.771705],[-5.597943,57.769324],[-5.600041,57.767855],[-5.603436,57.766537],[-5.604491,57.767303],[-5.607698,57.76803],[-5.619283,57.76637],[-5.621011,57.767396],[-5.62432,57.768856],[-5.627063,57.771214],[-5.632012,57.774322],[-5.632698,57.776131],[-5.634269,57.776741],[-5.637915,57.779735],[-5.642932,57.782085],[-5.647972,57.78608],[-5.65232,57.787619],[-5.65426,57.788106],[-5.656864,57.791298],[-5.657855,57.791659],[-5.659382,57.793301],[-5.665581,57.798125],[-5.668282,57.800016],[-5.667062,57.80082],[-5.666579,57.802468],[-5.665388,57.803434],[-5.665292,57.805542],[-5.666107,57.806821],[-5.666193,57.808284],[-5.663842,57.810515],[-5.667455,57.812819],[-5.667317,57.814762],[-5.66631,57.815906],[-5.663072,57.817257],[-5.661277,57.819121],[-5.660824,57.820311],[-5.661707,57.821773],[-5.661385,57.822681],[-5.663606,57.823339],[-5.664442,57.824447],[-5.663414,57.825261],[-5.665117,57.825868],[-5.667831,57.826278],[-5.669988,57.827703],[-5.669756,57.828908],[-5.666962,57.829299],[-5.667605,57.83066],[-5.667397,57.832244],[-5.669831,57.832872],[-5.672518,57.829609],[-5.676099,57.829275],[-5.679203,57.830047],[-5.680414,57.831061],[-5.678599,57.831723],[-5.679016,57.832907],[-5.681386,57.831697],[-5.682296,57.832982],[-5.68516,57.835018],[-5.68128,57.837328],[-5.681466,57.839351],[-5.680292,57.840369],[-5.679824,57.842569],[-5.681814,57.84291],[-5.683413,57.842506],[-5.685811,57.843116],[-5.688181,57.84196],[-5.689297,57.84237],[-5.691587,57.842423],[-5.692576,57.843832],[-5.690664,57.846333],[-5.691703,57.847554],[-5.691046,57.848397],[-5.693669,57.850233],[-5.691757,57.851388],[-5.68994,57.850822],[-5.688742,57.851484],[-5.689906,57.853037],[-5.692304,57.853792],[-5.692343,57.85444],[-5.69049,57.85533],[-5.688402,57.857187],[-5.689103,57.858256],[-5.686107,57.860295],[-5.68594,57.861826],[-5.682367,57.864229],[-5.683498,57.865203],[-5.685116,57.865593],[-5.687471,57.865088],[-5.68764,57.865923],[-5.689065,57.866735],[-5.690676,57.866572],[-5.691406,57.867436],[-5.694329,57.868227],[-5.696243,57.867542],[-5.699581,57.867701],[-5.699943,57.868922],[-5.69811,57.869884],[-5.700353,57.870371],[-5.703196,57.870203],[-5.705962,57.869452],[-5.707418,57.869898],[-5.708726,57.869301],[-5.71325,57.869293],[-5.715916,57.868226],[-5.718183,57.86837],[-5.718966,57.869584],[-5.721457,57.87018],[-5.721547,57.870818],[-5.724125,57.871257],[-5.725232,57.87046],[-5.725279,57.869524],[-5.726907,57.869283],[-5.729192,57.867728],[-5.730223,57.865953],[-5.73663,57.866084],[-5.739078,57.865202],[-5.740656,57.866104],[-5.744537,57.866763],[-5.745493,57.86646],[-5.748766,57.868733],[-5.75044,57.869007],[-5.753773,57.868773],[-5.760619,57.869874],[-5.763266,57.868694],[-5.762783,57.867733],[-5.767019,57.866371],[-5.767899,57.86576],[-5.772621,57.864375],[-5.771445,57.863614],[-5.77401,57.862418],[-5.77825,57.861024],[-5.777396,57.85977],[-5.778993,57.858794],[-5.782737,57.858436],[-5.785901,57.859429],[-5.787782,57.859673],[-5.79045,57.858498],[-5.794334,57.858468],[-5.796013,57.859428],[-5.796301,57.860279],[-5.803252,57.861593],[-5.807624,57.861399],[-5.809389,57.860585],[-5.811576,57.860179],[-5.813301,57.858794],[-5.81186,57.857599],[-5.813581,57.856769],[-5.814803,57.854285],[-5.81283,57.852921],[-5.812594,57.85104],[-5.811302,57.850615],[-5.81052,57.849476],[-5.810483,57.846735],[-5.811041,57.845959],[-5.81074,57.844709],[-5.809205,57.843586],[-5.808441,57.841137],[-5.809129,57.83952],[-5.811006,57.839648],[-5.810521,57.836975],[-5.812813,57.836654],[-5.813076,57.835239],[-5.814038,57.834531],[-5.814881,57.831984],[-5.814646,57.830238],[-5.813434,57.829856],[-5.813696,57.82859],[-5.813476,57.825391],[-5.812183,57.824486],[-5.812281,57.822937],[-5.813403,57.822471],[-5.81349,57.820828],[-5.812015,57.819308],[-5.813294,57.817067],[-5.810576,57.816056],[-5.808903,57.813584],[-5.808446,57.811149],[-5.806665,57.807428],[-5.806005,57.803524],[-5.803792,57.801008],[-5.802868,57.797277],[-5.801364,57.795054],[-5.801069,57.793376],[-5.801954,57.790202],[-5.801357,57.78701],[-5.802491,57.785789],[-5.8015,57.784767],[-5.801365,57.783486],[-5.802522,57.781522],[-5.804131,57.780584],[-5.805315,57.777127],[-5.806097,57.776164],[-5.806243,57.774515],[-5.80764,57.773564],[-5.807302,57.773062],[-5.810352,57.769352],[-5.808491,57.768585],[-5.810312,57.767599],[-5.809691,57.766683],[-5.808347,57.766778],[-5.806821,57.765947],[-5.80391,57.762318],[-5.804619,57.761415],[-5.806289,57.76074],[-5.806421,57.759032],[-5.808318,57.758363],[-5.809699,57.756946],[-5.811961,57.755467],[-5.811639,57.754204],[-5.813182,57.751846],[-5.813286,57.750527],[-5.80939,57.747397],[-5.805653,57.745753],[-5.802264,57.745819],[-5.798361,57.744714],[-5.793217,57.745007],[-5.790396,57.744812],[-5.789555,57.745214],[-5.784811,57.744672],[-5.781853,57.743808],[-5.775022,57.740786],[-5.773415,57.740714],[-5.772769,57.739852],[-5.767976,57.736466],[-5.765121,57.734949],[-5.764381,57.73401],[-5.761541,57.731895],[-5.759829,57.731436],[-5.755704,57.73184],[-5.749744,57.732052],[-5.74808,57.731921],[-5.744931,57.730835],[-5.741085,57.730782],[-5.740157,57.730266],[-5.737073,57.730667],[-5.735858,57.730051],[-5.730962,57.73016],[-5.729922,57.730653],[-5.725794,57.730096],[-5.723124,57.730049],[-5.715374,57.731036],[-5.713781,57.731511],[-5.710785,57.731224],[-5.707113,57.730267],[-5.703689,57.731187],[-5.702766,57.730707],[-5.700737,57.730967],[-5.696352,57.730142],[-5.69346,57.726754],[-5.691816,57.726298],[-5.691033,57.72477],[-5.69004,57.724629],[-5.688812,57.722672],[-5.687896,57.72228],[-5.687477,57.720873],[-5.68836,57.720496],[-5.688869,57.719202],[-5.686445,57.71847],[-5.685846,57.717651],[-5.68716,57.714897],[-5.6899,57.713875],[-5.690351,57.712937],[-5.693106,57.712257],[-5.690036,57.709885],[-5.687526,57.711245],[-5.682452,57.710921],[-5.682442,57.711283],[-5.679087,57.712738],[-5.677402,57.712034],[-5.677511,57.710652],[-5.679782,57.710375],[-5.681104,57.709599],[-5.680737,57.708346],[-5.679254,57.707351],[-5.679688,57.706589],[-5.677074,57.704805],[-5.676365,57.703884],[-5.67424,57.702833],[-5.672329,57.701311],[-5.674468,57.69965],[-5.675307,57.700041],[-5.677892,57.69903],[-5.680552,57.699762],[-5.68256,57.700854],[-5.686456,57.69928],[-5.687845,57.699117],[-5.686727,57.696503],[-5.685311,57.69529],[-5.684133,57.695262],[-5.68117,57.693366],[-5.678928,57.69067],[-5.680057,57.689883],[-5.683918,57.689023],[-5.686703,57.690257],[-5.68976,57.69034],[-5.691719,57.690667],[-5.692636,57.691758],[-5.692277,57.693167],[-5.693991,57.693608],[-5.694344,57.695566],[-5.695494,57.696548],[-5.700249,57.695717],[-5.702432,57.694947],[-5.70426,57.695666],[-5.704611,57.69802],[-5.707435,57.699412],[-5.709907,57.699624],[-5.713475,57.699105],[-5.716433,57.70057],[-5.718771,57.700294],[-5.722517,57.698634],[-5.724742,57.69827],[-5.72628,57.698481],[-5.727567,57.697946],[-5.730855,57.698537],[-5.729825,57.699064],[-5.728856,57.700404],[-5.725896,57.701672],[-5.724691,57.703017],[-5.7255,57.70437],[-5.726596,57.70441],[-5.726421,57.705889],[-5.729791,57.706082],[-5.731648,57.705847],[-5.733716,57.707351],[-5.735805,57.707311],[-5.737898,57.708315],[-5.741892,57.707698],[-5.746706,57.707402],[-5.748941,57.706603],[-5.751985,57.706352],[-5.755967,57.707405],[-5.759722,57.70658],[-5.762235,57.705433],[-5.762904,57.70455],[-5.764715,57.703989],[-5.767271,57.702266],[-5.770077,57.701606],[-5.77009,57.700691],[-5.768252,57.698868],[-5.769232,57.698092],[-5.772222,57.697243],[-5.774669,57.697038],[-5.776094,57.697729],[-5.77911,57.697297],[-5.780107,57.69834],[-5.781901,57.697324],[-5.785442,57.697347],[-5.786518,57.696486],[-5.790079,57.696484],[-5.789098,57.695538],[-5.790496,57.690904],[-5.791482,57.68975],[-5.790907,57.688244],[-5.788385,57.68682],[-5.78679,57.686375],[-5.786437,57.684873],[-5.786802,57.683712],[-5.790024,57.681232],[-5.791977,57.678894],[-5.794135,57.677678],[-5.795651,57.677385],[-5.796594,57.675514],[-5.797441,57.67563],[-5.799131,57.673496],[-5.799234,57.672045],[-5.800873,57.671248],[-5.80403,57.668198],[-5.804207,57.667246],[-5.805778,57.66637],[-5.809487,57.662497],[-5.811444,57.661149],[-5.811074,57.659521],[-5.811625,57.658307],[-5.810051,57.657766],[-5.809557,57.656112],[-5.810694,57.654542],[-5.808713,57.653041],[-5.811918,57.650123],[-5.813498,57.649774],[-5.814336,57.650438],[-5.81712,57.650285],[-5.817209,57.648962],[-5.817917,57.648134],[-5.818158,57.644212],[-5.819468,57.643342],[-5.818338,57.642102],[-5.819048,57.639795],[-5.817682,57.638809],[-5.816513,57.638849],[-5.814891,57.638012],[-5.81483,57.637034],[-5.811296,57.637703],[-5.80824,57.639018],[-5.806578,57.638996],[-5.803329,57.640833],[-5.801498,57.640889],[-5.796967,57.63962],[-5.79395,57.638142],[-5.789401,57.637699],[-5.786345,57.636308],[-5.784512,57.636229],[-5.782257,57.635101],[-5.780667,57.635045],[-5.771808,57.632384],[-5.766406,57.629745],[-5.764888,57.628118],[-5.762595,57.627255],[-5.759645,57.62572],[-5.758334,57.62406],[-5.755622,57.623597],[-5.75256,57.621049],[-5.751136,57.618534],[-5.744976,57.615376],[-5.743467,57.613053],[-5.74118,57.611907],[-5.740571,57.611039],[-5.737721,57.609636],[-5.735651,57.607341],[-5.733373,57.606766],[-5.73302,57.604223],[-5.735486,57.601413],[-5.735433,57.599913],[-5.736704,57.596967],[-5.734487,57.595275],[-5.734348,57.59384],[-5.732358,57.593454],[-5.732027,57.592017],[-5.730297,57.590656],[-5.730783,57.588709],[-5.727642,57.585417],[-5.726116,57.584715],[-5.722437,57.583871],[-5.721496,57.583022],[-5.71573,57.582203],[-5.711778,57.580787],[-5.710499,57.579984],[-5.706208,57.578682],[-5.700602,57.578202],[-5.695966,57.578384],[-5.689039,57.578027],[-5.687029,57.577691],[-5.68575,57.576942],[-5.685138,57.575019],[-5.682717,57.573377],[-5.680594,57.569424],[-5.681451,57.567556],[-5.688374,57.566208],[-5.68976,57.566886],[-5.68914,57.568393],[-5.691988,57.570011],[-5.694627,57.569592],[-5.696291,57.56879],[-5.697804,57.569096],[-5.698995,57.57003],[-5.702005,57.570767],[-5.703466,57.570196],[-5.703912,57.569034],[-5.702592,57.568641],[-5.703713,57.567375],[-5.703396,57.565579],[-5.703859,57.563944],[-5.700876,57.562043],[-5.696339,57.563412],[-5.692387,57.56338],[-5.692414,57.560979],[-5.690997,57.559815],[-5.688629,57.559305],[-5.687322,57.559698],[-5.685947,57.559329],[-5.685919,57.557572],[-5.686662,57.556148],[-5.685395,57.555857],[-5.685144,57.554619],[-5.683482,57.554803],[-5.681117,57.555896],[-5.680226,57.554525],[-5.678847,57.554619],[-5.677663,57.555395],[-5.675349,57.554514],[-5.672992,57.554444],[-5.672484,57.55355],[-5.670292,57.553181],[-5.670543,57.552546],[-5.668652,57.550889],[-5.666771,57.550624],[-5.666537,57.548635],[-5.667217,57.546914],[-5.664803,57.546357],[-5.663513,57.547172],[-5.660524,57.547537],[-5.657538,57.549003],[-5.657009,57.549757],[-5.654835,57.550401],[-5.651008,57.55261],[-5.650275,57.552145],[-5.646748,57.551987],[-5.643436,57.550978],[-5.642388,57.551188],[-5.640506,57.550541],[-5.636676,57.550187],[-5.635655,57.551066],[-5.63668,57.55207],[-5.635941,57.552712],[-5.637584,57.55412],[-5.637669,57.555223],[-5.635248,57.556236],[-5.632382,57.555263],[-5.629709,57.555163],[-5.626211,57.554501],[-5.624412,57.553807],[-5.623053,57.553856],[-5.620725,57.554978],[-5.618314,57.553247],[-5.614159,57.552462],[-5.607113,57.554105],[-5.605506,57.555758],[-5.603716,57.556437],[-5.602582,57.555902],[-5.59858,57.556763],[-5.597369,57.55656],[-5.592348,57.556958],[-5.587411,57.556585],[-5.584804,57.555549],[-5.583714,57.554206],[-5.580597,57.553795],[-5.575008,57.554054],[-5.572168,57.553775],[-5.568751,57.553827],[-5.567462,57.55339],[-5.564056,57.552942],[-5.559678,57.553272],[-5.557023,57.553703],[-5.555724,57.553044],[-5.552369,57.55353],[-5.551638,57.55405],[-5.549179,57.554247],[-5.54763,57.553776],[-5.542026,57.553439],[-5.540201,57.553589],[-5.537298,57.553226],[-5.53602,57.552632],[-5.533485,57.552627],[-5.531472,57.551177],[-5.529927,57.550587],[-5.525668,57.550764],[-5.522368,57.550111],[-5.516791,57.549576],[-5.516642,57.548968],[-5.518045,57.547737],[-5.521123,57.548112],[-5.520875,57.546296],[-5.517602,57.5472],[-5.515668,57.546217],[-5.514706,57.544931],[-5.514171,57.541839],[-5.513189,57.540339],[-5.512862,57.53868],[-5.51565,57.538089],[-5.518575,57.535801],[-5.515874,57.534643],[-5.514811,57.533584],[-5.51614,57.533054],[-5.517689,57.533667],[-5.519588,57.531163],[-5.52392,57.529948],[-5.526534,57.530888],[-5.529065,57.531239],[-5.530858,57.530718],[-5.531161,57.530096],[-5.533092,57.529233],[-5.535612,57.529489],[-5.537585,57.530757],[-5.541316,57.530781],[-5.543925,57.531514],[-5.544564,57.533451],[-5.547794,57.53487],[-5.550353,57.535576],[-5.551125,57.534741],[-5.553819,57.534431],[-5.556595,57.534789],[-5.557482,57.535829],[-5.556183,57.536562],[-5.557912,57.537233],[-5.560907,57.536557],[-5.560201,57.534143],[-5.559004,57.532923],[-5.56473,57.530891],[-5.563551,57.532255],[-5.566343,57.53294],[-5.567029,57.534229],[-5.568781,57.533685],[-5.570939,57.534207],[-5.569476,57.535157],[-5.569736,57.535932],[-5.57143,57.536675],[-5.574563,57.536146],[-5.576951,57.536118],[-5.577397,57.534622],[-5.574333,57.532278],[-5.573558,57.530663],[-5.571714,57.529668],[-5.573253,57.528915],[-5.574508,57.529194],[-5.577445,57.531032],[-5.579973,57.533875],[-5.580633,57.532764],[-5.581746,57.532269],[-5.583939,57.533664],[-5.586321,57.53409],[-5.58792,57.533609],[-5.587586,57.531996],[-5.58886,57.531276],[-5.591333,57.530842],[-5.595623,57.530701],[-5.597021,57.530131],[-5.599213,57.531601],[-5.601285,57.534468],[-5.603361,57.535524],[-5.606133,57.535826],[-5.608179,57.535224],[-5.608279,57.534291],[-5.61086,57.533943],[-5.611064,57.53271],[-5.611963,57.531825],[-5.614421,57.530578],[-5.615741,57.528211],[-5.617456,57.528814],[-5.619488,57.528913],[-5.622313,57.529762],[-5.621888,57.532129],[-5.625642,57.531051],[-5.623749,57.530763],[-5.623003,57.528969],[-5.621851,57.528899],[-5.620382,57.527489],[-5.620052,57.526091],[-5.618235,57.524966],[-5.618621,57.522118],[-5.620845,57.520783],[-5.623904,57.521724],[-5.627058,57.522182],[-5.630951,57.522177],[-5.633228,57.522647],[-5.632208,57.523818],[-5.632339,57.524538],[-5.634148,57.526342],[-5.632183,57.526916],[-5.6315,57.528032],[-5.629401,57.528938],[-5.631761,57.529647],[-5.632428,57.530302],[-5.630094,57.531961],[-5.629913,57.532568],[-5.632144,57.533241],[-5.633399,57.534428],[-5.635932,57.535438],[-5.63712,57.536456],[-5.6386,57.53671],[-5.643022,57.536299],[-5.644165,57.535609],[-5.646289,57.535535],[-5.646906,57.536604],[-5.64543,57.53756],[-5.645276,57.539533],[-5.646835,57.540495],[-5.645929,57.541721],[-5.647509,57.5423],[-5.652527,57.542005],[-5.653969,57.542412],[-5.655558,57.541863],[-5.657402,57.541924],[-5.659166,57.54101],[-5.656438,57.539394],[-5.656583,57.537174],[-5.655047,57.537089],[-5.654012,57.536044],[-5.653856,57.534655],[-5.652433,57.534381],[-5.65295,57.532708],[-5.651596,57.53182],[-5.652714,57.529357],[-5.653743,57.52802],[-5.651354,57.527392],[-5.649907,57.526664],[-5.649502,57.525837],[-5.651302,57.522256],[-5.652086,57.521675],[-5.652125,57.520466],[-5.650974,57.519507],[-5.649646,57.519596],[-5.646984,57.515394],[-5.645355,57.514237],[-5.644964,57.512913],[-5.645535,57.511359],[-5.647394,57.511067],[-5.648687,57.510302],[-5.649645,57.50891],[-5.651559,57.510956],[-5.65191,57.512213],[-5.653772,57.513292],[-5.654344,57.514565],[-5.658556,57.516102],[-5.660574,57.515068],[-5.664386,57.515843],[-5.663172,57.516984],[-5.664251,57.518292],[-5.664223,57.519388],[-5.665017,57.520135],[-5.667468,57.520657],[-5.668978,57.522551],[-5.671761,57.522973],[-5.673006,57.524052],[-5.672438,57.524963],[-5.67354,57.526616],[-5.676236,57.527167],[-5.678447,57.527219],[-5.679124,57.526143],[-5.680672,57.525999],[-5.682862,57.527081],[-5.684775,57.526324],[-5.686034,57.526305],[-5.688781,57.528095],[-5.689169,57.528708],[-5.69249,57.530561],[-5.695302,57.530601],[-5.698948,57.531613],[-5.700488,57.533856],[-5.699559,57.537547],[-5.70086,57.539577],[-5.699759,57.541335],[-5.704771,57.544371],[-5.70356,57.544599],[-5.69969,57.542642],[-5.698554,57.542885],[-5.698273,57.544071],[-5.699279,57.544761],[-5.699121,57.546006],[-5.698168,57.54674],[-5.698985,57.547513],[-5.699725,57.550632],[-5.701638,57.552923],[-5.704235,57.553786],[-5.705601,57.554807],[-5.70887,57.556275],[-5.710891,57.555923],[-5.713224,57.556322],[-5.714196,57.555529],[-5.713978,57.554533],[-5.715424,57.554113],[-5.715177,57.553338],[-5.716772,57.553071],[-5.71704,57.551759],[-5.715609,57.550358],[-5.712653,57.549821],[-5.711324,57.548368],[-5.70931,57.546961],[-5.709755,57.546319],[-5.713212,57.54628],[-5.711585,57.544674],[-5.707269,57.542265],[-5.707364,57.541233],[-5.706599,57.53971],[-5.709238,57.540176],[-5.711278,57.542642],[-5.713131,57.543842],[-5.714778,57.544175],[-5.716855,57.54388],[-5.720844,57.544877],[-5.71998,57.546076],[-5.720878,57.546769],[-5.723116,57.546244],[-5.727219,57.547607],[-5.729073,57.546855],[-5.730789,57.547038],[-5.734125,57.546671],[-5.735487,57.545235],[-5.738219,57.544327],[-5.740256,57.544298],[-5.741663,57.543182],[-5.745724,57.545763],[-5.747837,57.54793],[-5.749454,57.550566],[-5.748127,57.551001],[-5.74741,57.55216],[-5.743748,57.551428],[-5.742341,57.552058],[-5.743307,57.553972],[-5.748814,57.555152],[-5.752494,57.555245],[-5.754427,57.556392],[-5.758779,57.557185],[-5.758956,57.557565],[-5.755875,57.55981],[-5.760602,57.561436],[-5.762409,57.561522],[-5.764805,57.560753],[-5.766429,57.55915],[-5.768269,57.559435],[-5.769202,57.561377],[-5.768988,57.563249],[-5.769495,57.564839],[-5.77181,57.564914],[-5.773307,57.565638],[-5.774271,57.564916],[-5.776948,57.567997],[-5.77819,57.566256],[-5.780488,57.566074],[-5.781785,57.566957],[-5.782124,57.568274],[-5.78323,57.569274],[-5.783167,57.57044],[-5.782299,57.570776],[-5.781509,57.572845],[-5.782502,57.574187],[-5.783924,57.57418],[-5.78516,57.5719],[-5.786034,57.572264],[-5.786182,57.573761],[-5.786861,57.5745],[-5.788727,57.574022],[-5.789964,57.574646],[-5.791693,57.574378],[-5.79305,57.573353],[-5.795555,57.576029],[-5.796596,57.576065],[-5.798068,57.574366],[-5.800287,57.575828],[-5.801233,57.577112],[-5.800278,57.577343],[-5.799227,57.579465],[-5.800613,57.579594],[-5.801608,57.578139],[-5.803797,57.57979],[-5.807421,57.581146],[-5.809555,57.583865],[-5.811419,57.584846],[-5.811617,57.585636],[-5.814072,57.585837],[-5.81742,57.585115],[-5.819196,57.583537],[-5.820224,57.583686],[-5.822682,57.582061],[-5.822143,57.580104],[-5.818204,57.580021],[-5.818605,57.579105],[-5.81997,57.578151],[-5.82154,57.578032],[-5.823881,57.576355],[-5.826323,57.576731],[-5.827493,57.57839],[-5.831143,57.578557],[-5.832267,57.579702],[-5.835019,57.578975],[-5.836254,57.579019],[-5.836749,57.576886],[-5.837819,57.576404],[-5.839591,57.576539],[-5.841429,57.57611],[-5.840945,57.574938],[-5.840743,57.572152],[-5.841364,57.570897],[-5.839848,57.570089],[-5.837903,57.569978],[-5.837062,57.569145],[-5.836436,57.567168],[-5.837086,57.566109],[-5.837324,57.563684],[-5.837091,57.562032],[-5.835736,57.560689],[-5.835789,57.559199],[-5.83776,57.559018],[-5.839043,57.558169],[-5.841184,57.560154],[-5.84479,57.562612],[-5.849466,57.563327],[-5.849405,57.562281],[-5.850343,57.561659],[-5.849349,57.557954],[-5.848136,57.556612],[-5.845884,57.556032],[-5.845351,57.555176],[-5.847558,57.553585],[-5.846195,57.552399],[-5.848256,57.551721],[-5.852269,57.551553],[-5.854268,57.54848],[-5.854136,57.546677],[-5.85313,57.544595],[-5.853838,57.543939],[-5.85365,57.542394],[-5.854112,57.539336],[-5.853798,57.537943],[-5.854625,57.535563],[-5.855373,57.53545],[-5.854333,57.53122],[-5.854807,57.53009],[-5.853848,57.528528],[-5.854,57.526487],[-5.8563,57.524218],[-5.857773,57.521319],[-5.859331,57.520089],[-5.860175,57.517878],[-5.861681,57.516479],[-5.862443,57.514607],[-5.862099,57.513242],[-5.863805,57.511293],[-5.864381,57.508831],[-5.866548,57.508008],[-5.868098,57.504899],[-5.870351,57.503387],[-5.870106,57.50178],[-5.868425,57.500497],[-5.867843,57.49942],[-5.868363,57.497788],[-5.867723,57.49734],[-5.868415,57.495988],[-5.867818,57.493426],[-5.86903,57.491863],[-5.871204,57.490561],[-5.871322,57.488679],[-5.869078,57.485857],[-5.869806,57.48414],[-5.869301,57.482604],[-5.86843,57.481903],[-5.868555,57.480447],[-5.86972,57.480015],[-5.869337,57.478764],[-5.871358,57.478072],[-5.871585,57.476191],[-5.872822,57.475501],[-5.872878,57.474141],[-5.87136,57.470615],[-5.869337,57.469548],[-5.867831,57.469351],[-5.866031,57.470157],[-5.866124,57.470955],[-5.864293,57.47124],[-5.863913,57.469544],[-5.865385,57.468622],[-5.865859,57.467187],[-5.863891,57.463651],[-5.861994,57.461996],[-5.861674,57.459741],[-5.862355,57.457161],[-5.862243,57.45484],[-5.861214,57.452278],[-5.861011,57.449645],[-5.856245,57.444145],[-5.853861,57.442411],[-5.850486,57.441395],[-5.847204,57.441585],[-5.844526,57.440849],[-5.842343,57.440739],[-5.840196,57.441062],[-5.837506,57.440933],[-5.834799,57.441506],[-5.825561,57.441831],[-5.821027,57.443282],[-5.816414,57.443825],[-5.814864,57.443502],[-5.811906,57.442084],[-5.810724,57.442741],[-5.809204,57.442676],[-5.809872,57.441547],[-5.806145,57.439033],[-5.805744,57.437787],[-5.806521,57.437122],[-5.812471,57.433968],[-5.814939,57.433813],[-5.815883,57.433285],[-5.819216,57.428301],[-5.82151,57.427331],[-5.821887,57.425612],[-5.823461,57.422768],[-5.823416,57.421423],[-5.824954,57.42013],[-5.825385,57.419148],[-5.824763,57.41623],[-5.825267,57.413791],[-5.825015,57.41178],[-5.823396,57.410887],[-5.820054,57.412395],[-5.817187,57.410225],[-5.816958,57.408421],[-5.815514,57.406716],[-5.813322,57.406095],[-5.812749,57.407061],[-5.810828,57.405929],[-5.810131,57.401957],[-5.807297,57.399018],[-5.807609,57.398392],[-5.810651,57.399119],[-5.811678,57.397999],[-5.809085,57.394133],[-5.806737,57.393262],[-5.806743,57.392257],[-5.808606,57.392463],[-5.810397,57.393359],[-5.811314,57.395003],[-5.812747,57.394021],[-5.81305,57.39606],[-5.814953,57.396333],[-5.814808,57.397218],[-5.813496,57.397539],[-5.81416,57.398554],[-5.815393,57.398738],[-5.815902,57.399919],[-5.818863,57.400136],[-5.818961,57.401412],[-5.820643,57.401573],[-5.820053,57.39977],[-5.821208,57.398005],[-5.822353,57.393845],[-5.82169,57.392296],[-5.819997,57.39075],[-5.821034,57.389689],[-5.822457,57.3861],[-5.825331,57.388063],[-5.825516,57.389306],[-5.82476,57.390442],[-5.827437,57.39053],[-5.830446,57.391706],[-5.831364,57.390536],[-5.830535,57.389136],[-5.82839,57.388534],[-5.828594,57.387618],[-5.827659,57.386625],[-5.827335,57.385065],[-5.826672,57.384669],[-5.826494,57.382195],[-5.828783,57.381009],[-5.82915,57.37975],[-5.827796,57.379385],[-5.828061,57.378174],[-5.82554,57.377285],[-5.82548,57.376265],[-5.823577,57.374208],[-5.825424,57.373422],[-5.825523,57.372696],[-5.823648,57.37051],[-5.823784,57.367701],[-5.822222,57.365446],[-5.821252,57.364842],[-5.821982,57.363547],[-5.820366,57.36129],[-5.817809,57.360641],[-5.813381,57.362276],[-5.812716,57.365568],[-5.813874,57.366698],[-5.814072,57.368047],[-5.81615,57.370108],[-5.813446,57.370352],[-5.812521,57.372765],[-5.810532,57.372606],[-5.810954,57.373826],[-5.809741,57.375184],[-5.808432,57.375875],[-5.806339,57.37529],[-5.808176,57.371604],[-5.806336,57.37063],[-5.80745,57.369019],[-5.80633,57.367344],[-5.807254,57.365923],[-5.807194,57.364945],[-5.805264,57.36383],[-5.804972,57.362378],[-5.805532,57.361679],[-5.804589,57.360928],[-5.804514,57.35844],[-5.80239,57.35769],[-5.800274,57.357898],[-5.79901,57.357019],[-5.799353,57.355431],[-5.798321,57.353817],[-5.795447,57.353045],[-5.795877,57.351652],[-5.79388,57.351159],[-5.793225,57.350217],[-5.790996,57.350838],[-5.789678,57.350434],[-5.790089,57.349369],[-5.78769,57.34851],[-5.788573,57.347359],[-5.788345,57.346359],[-5.785575,57.346833],[-5.781691,57.346625],[-5.778789,57.346745],[-5.775459,57.34724],[-5.771989,57.348822],[-5.770336,57.348896],[-5.767744,57.348354],[-5.764793,57.349316],[-5.761989,57.349641],[-5.758122,57.349569],[-5.753398,57.350289],[-5.752157,57.350002],[-5.749708,57.350804],[-5.743806,57.351555],[-5.736864,57.354117],[-5.733393,57.354624],[-5.730312,57.354788],[-5.727122,57.356465],[-5.723458,57.357704],[-5.721921,57.35849],[-5.722712,57.359754],[-5.719884,57.361364],[-5.719533,57.361923],[-5.717317,57.362883],[-5.716605,57.364215],[-5.713571,57.365565],[-5.710193,57.365991],[-5.705624,57.368547],[-5.70454,57.368659],[-5.699228,57.37101],[-5.698109,57.372135],[-5.693636,57.374489],[-5.692277,57.376679],[-5.689571,57.377805],[-5.688721,57.378483],[-5.685411,57.378728],[-5.684218,57.378395],[-5.681986,57.378637],[-5.681502,57.379855],[-5.680516,57.3804],[-5.675551,57.380847],[-5.673064,57.381441],[-5.671206,57.382344],[-5.67,57.382044],[-5.66787,57.382856],[-5.667787,57.38357],[-5.663948,57.386517],[-5.662428,57.387302],[-5.660502,57.387589],[-5.659228,57.388588],[-5.6551,57.388843],[-5.650636,57.390135],[-5.647718,57.389692],[-5.642571,57.390774],[-5.639537,57.392137],[-5.640112,57.392399],[-5.637604,57.394003],[-5.635886,57.394229],[-5.636482,57.395204],[-5.633104,57.397639],[-5.628886,57.398164],[-5.626799,57.39767],[-5.624567,57.398511],[-5.625278,57.400005],[-5.624666,57.400575],[-5.625782,57.401398],[-5.624001,57.403079],[-5.62416,57.405048],[-5.617993,57.407442],[-5.615066,57.410947],[-5.613376,57.414756],[-5.611313,57.416527],[-5.610055,57.416545],[-5.610117,57.417856],[-5.608693,57.418826],[-5.607658,57.417803],[-5.609046,57.417104],[-5.609046,57.415282],[-5.607777,57.414895],[-5.607388,57.413387],[-5.605947,57.412634],[-5.609527,57.407933],[-5.613693,57.404816],[-5.613457,57.401071],[-5.614757,57.40042],[-5.611976,57.399953],[-5.606469,57.398342],[-5.607059,57.39678],[-5.605015,57.397098],[-5.603616,57.396086],[-5.60368,57.395128],[-5.600626,57.395623],[-5.598282,57.395422],[-5.59681,57.394379],[-5.59618,57.393276],[-5.596092,57.390927],[-5.594835,57.390348],[-5.596611,57.388631],[-5.596762,57.387905],[-5.598819,57.387509],[-5.602336,57.387687],[-5.606441,57.385386],[-5.609242,57.385648],[-5.608465,57.384063],[-5.610253,57.383485],[-5.611782,57.38387],[-5.614142,57.383342],[-5.616204,57.383485],[-5.619631,57.38313],[-5.622565,57.381068],[-5.626559,57.380216],[-5.627907,57.380605],[-5.63072,57.38072],[-5.633943,57.380061],[-5.635172,57.378866],[-5.637174,57.377814],[-5.638077,57.376291],[-5.639459,57.375604],[-5.638653,57.373852],[-5.638678,57.372678],[-5.636394,57.371441],[-5.635634,57.36929],[-5.634805,57.36802],[-5.635707,57.366628],[-5.63408,57.3665],[-5.633533,57.365584],[-5.63124,57.365453],[-5.626552,57.367099],[-5.625795,57.366172],[-5.624333,57.366102],[-5.623357,57.365259],[-5.62039,57.365267],[-5.618532,57.365743],[-5.616042,57.364829],[-5.612433,57.365397],[-5.610202,57.364792],[-5.605366,57.36485],[-5.602025,57.365305],[-5.599588,57.365141],[-5.598876,57.363732],[-5.60225,57.362004],[-5.603764,57.361577],[-5.607364,57.362507],[-5.609919,57.361914],[-5.61104,57.36003],[-5.613202,57.359181],[-5.610261,57.358371],[-5.60832,57.357555],[-5.606452,57.355795],[-5.603962,57.355874],[-5.601594,57.355244],[-5.597321,57.356506],[-5.59262,57.356864],[-5.59034,57.357787],[-5.587633,57.358095],[-5.582765,57.359493],[-5.576689,57.359297],[-5.57433,57.358026],[-5.571808,57.358606],[-5.568938,57.358206],[-5.56803,57.358675],[-5.566288,57.357865],[-5.563049,57.358259],[-5.559516,57.359618],[-5.55651,57.359917],[-5.555607,57.358359],[-5.553792,57.358577],[-5.552027,57.358186],[-5.550908,57.359276],[-5.552251,57.361428],[-5.547267,57.3632],[-5.545808,57.363047],[-5.545767,57.364143],[-5.541077,57.365623],[-5.540938,57.366377],[-5.536084,57.368842],[-5.534313,57.370196],[-5.534014,57.371016],[-5.532275,57.371991],[-5.529137,57.374882],[-5.526769,57.375344],[-5.525229,57.377751],[-5.523312,57.378175],[-5.519305,57.37955],[-5.519515,57.382054],[-5.518068,57.38334],[-5.515086,57.38413],[-5.513815,57.385018],[-5.510145,57.386039],[-5.508156,57.387449],[-5.506779,57.387511],[-5.505697,57.388264],[-5.502916,57.387512],[-5.500075,57.387819],[-5.499827,57.389246],[-5.506992,57.388567],[-5.508456,57.389707],[-5.507275,57.391956],[-5.5061,57.392357],[-5.506207,57.393217],[-5.503535,57.39448],[-5.503306,57.395083],[-5.501321,57.396332],[-5.498465,57.396271],[-5.498187,57.397237],[-5.496539,57.398686],[-5.481932,57.402621],[-5.479909,57.403562],[-5.475311,57.409922],[-5.475059,57.412295],[-5.472594,57.41339],[-5.471982,57.414822],[-5.469836,57.416286],[-5.4678,57.416732],[-5.466233,57.41771],[-5.466599,57.418776],[-5.464702,57.418592],[-5.460113,57.420772],[-5.458154,57.421308],[-5.457819,57.421979],[-5.455272,57.42151],[-5.451502,57.423214],[-5.450229,57.424302],[-5.448341,57.424621],[-5.448676,57.421837],[-5.44558,57.421596],[-5.446376,57.420658],[-5.44361,57.418946],[-5.441183,57.420266],[-5.439832,57.419985],[-5.441513,57.418021],[-5.441779,57.416007],[-5.440683,57.415056],[-5.44058,57.413922],[-5.441493,57.412548],[-5.4433,57.412023],[-5.445368,57.408534],[-5.448704,57.407566],[-5.452928,57.404839],[-5.45561,57.400661],[-5.456196,57.397853],[-5.457434,57.397099],[-5.457636,57.395878],[-5.456052,57.395792],[-5.455781,57.394346],[-5.457967,57.393029],[-5.459451,57.39252],[-5.459138,57.391829],[-5.457441,57.39111],[-5.460038,57.390335],[-5.460404,57.389043],[-5.466313,57.387927],[-5.467404,57.386431],[-5.470113,57.385071],[-5.470982,57.383784],[-5.472587,57.382634],[-5.48128,57.379447],[-5.483112,57.378127],[-5.486503,57.376599],[-5.494374,57.374933],[-5.497687,57.372499],[-5.500342,57.371378],[-5.501029,57.369592],[-5.504047,57.367306],[-5.505944,57.36505],[-5.508217,57.363944],[-5.510972,57.363782],[-5.513541,57.361332],[-5.518069,57.361367],[-5.521309,57.358415],[-5.522963,57.357675],[-5.524576,57.35798],[-5.525651,57.356656],[-5.529689,57.355205],[-5.533901,57.353107],[-5.53834,57.352137],[-5.545013,57.351989],[-5.549825,57.352814],[-5.556142,57.352927],[-5.561227,57.354103],[-5.567352,57.353932],[-5.571323,57.352985],[-5.572672,57.353556],[-5.574567,57.353376],[-5.577296,57.353795],[-5.579932,57.353133],[-5.583005,57.351774],[-5.585383,57.350236],[-5.586511,57.34898],[-5.587101,57.347057],[-5.586255,57.344884],[-5.585307,57.344027],[-5.59192,57.343901],[-5.594678,57.343368],[-5.600332,57.343458],[-5.604177,57.341725],[-5.605247,57.341865],[-5.607691,57.34087],[-5.61046,57.340409],[-5.615432,57.338163],[-5.620606,57.337113],[-5.621541,57.337442],[-5.621985,57.338903],[-5.62872,57.338552],[-5.631497,57.33886],[-5.6358,57.338783],[-5.637772,57.337672],[-5.636141,57.336446],[-5.641255,57.335497],[-5.643635,57.335673],[-5.646757,57.335404],[-5.650422,57.33442],[-5.65852,57.334639],[-5.660791,57.334458],[-5.661684,57.334912],[-5.659661,57.33569],[-5.657958,57.335273],[-5.654502,57.335334],[-5.650969,57.337402],[-5.651141,57.33912],[-5.647961,57.340812],[-5.647819,57.339731],[-5.645998,57.339961],[-5.644862,57.34185],[-5.64581,57.342577],[-5.645178,57.343677],[-5.643452,57.344041],[-5.643667,57.345895],[-5.645849,57.345959],[-5.647304,57.345089],[-5.648178,57.345603],[-5.650949,57.345594],[-5.652872,57.344221],[-5.654567,57.344318],[-5.654196,57.345563],[-5.658073,57.345754],[-5.660276,57.344702],[-5.658919,57.343766],[-5.659345,57.342343],[-5.657833,57.341815],[-5.657916,57.341033],[-5.660143,57.340697],[-5.66204,57.341278],[-5.661824,57.339967],[-5.664014,57.339888],[-5.667074,57.340955],[-5.669652,57.341033],[-5.672174,57.339973],[-5.678773,57.339995],[-5.679659,57.339123],[-5.681003,57.339216],[-5.680576,57.340862],[-5.681383,57.341581],[-5.683629,57.341868],[-5.685866,57.341566],[-5.685955,57.339682],[-5.683863,57.337197],[-5.683079,57.336882],[-5.680639,57.338296],[-5.678263,57.337463],[-5.678703,57.336545],[-5.677616,57.33512],[-5.67798,57.334145],[-5.681561,57.334094],[-5.682637,57.333457],[-5.683627,57.331407],[-5.682581,57.330042],[-5.681075,57.329629],[-5.683095,57.328385],[-5.680019,57.327503],[-5.677994,57.327348],[-5.671932,57.327752],[-5.671334,57.326899],[-5.673165,57.325757],[-5.675656,57.324988],[-5.681092,57.323828],[-5.68291,57.324533],[-5.686184,57.324382],[-5.688115,57.323409],[-5.688426,57.324463],[-5.689819,57.324459],[-5.69183,57.325762],[-5.694438,57.325581],[-5.695646,57.326764],[-5.69747,57.326639],[-5.696715,57.325568],[-5.699972,57.325324],[-5.701989,57.32415],[-5.702918,57.322411],[-5.701816,57.321833],[-5.701173,57.320041],[-5.701755,57.317943],[-5.70574,57.317908],[-5.706804,57.317179],[-5.709787,57.317586],[-5.711232,57.31659],[-5.713421,57.315806],[-5.716633,57.315152],[-5.716914,57.31453],[-5.719022,57.313114],[-5.718559,57.311646],[-5.719674,57.311094],[-5.719141,57.310346],[-5.721435,57.309707],[-5.723275,57.308672],[-5.724205,57.30753],[-5.724287,57.306453],[-5.726246,57.306022],[-5.725963,57.304461],[-5.722269,57.304437],[-5.719205,57.304087],[-5.716814,57.304396],[-5.716485,57.303058],[-5.718183,57.302495],[-5.718897,57.301104],[-5.721038,57.300832],[-5.723281,57.299691],[-5.725465,57.299527],[-5.725534,57.298901],[-5.728764,57.297539],[-5.729425,57.296646],[-5.728384,57.295136],[-5.724642,57.293394],[-5.724447,57.29185],[-5.720573,57.289081],[-5.720521,57.288018],[-5.722674,57.285928],[-5.71901,57.284469],[-5.721191,57.284343],[-5.727819,57.285391],[-5.731126,57.284876],[-5.73372,57.283272],[-5.731821,57.283001],[-5.73241,57.281076],[-5.728815,57.281591],[-5.725926,57.280738],[-5.726028,57.27978],[-5.723721,57.279948],[-5.722795,57.279561],[-5.719753,57.279988],[-5.718073,57.279759],[-5.716521,57.280192],[-5.71419,57.279202],[-5.712057,57.279691],[-5.70975,57.279538],[-5.707784,57.280249],[-5.703577,57.280077],[-5.701314,57.280457],[-5.699502,57.280349],[-5.695116,57.280896],[-5.693191,57.28239],[-5.690516,57.282612],[-5.689435,57.282021],[-5.687287,57.28212],[-5.68571,57.280956],[-5.683047,57.281225],[-5.679814,57.280518],[-5.678263,57.280855],[-5.676442,57.280581],[-5.674544,57.28094],[-5.67326,57.280378],[-5.671733,57.281379],[-5.669396,57.281153],[-5.667695,57.281626],[-5.66513,57.28139],[-5.66235,57.281571],[-5.660646,57.28239],[-5.658763,57.282623],[-5.656343,57.2845],[-5.654003,57.285041],[-5.651641,57.286173],[-5.646875,57.286734],[-5.644745,57.286478],[-5.643914,57.285685],[-5.64035,57.284641],[-5.638461,57.283019],[-5.630936,57.282242],[-5.62682,57.282299],[-5.624694,57.281285],[-5.624798,57.28033],[-5.623867,57.279785],[-5.624476,57.278875],[-5.623116,57.278028],[-5.622478,57.276641],[-5.618994,57.274186],[-5.609666,57.276547],[-5.606967,57.27859],[-5.605076,57.278886],[-5.601684,57.278692],[-5.599576,57.278957],[-5.595998,57.278143],[-5.594508,57.27719],[-5.594956,57.273188],[-5.594116,57.271231],[-5.592575,57.270851],[-5.588366,57.272105],[-5.588256,57.273033],[-5.58347,57.273759],[-5.582095,57.274355],[-5.580426,57.274277],[-5.578842,57.275001],[-5.576882,57.274435],[-5.577283,57.272616],[-5.574631,57.27286],[-5.573847,57.273458],[-5.572033,57.273599],[-5.571272,57.274618],[-5.56883,57.27509],[-5.568362,57.275964],[-5.566199,57.276591],[-5.5661,57.277901],[-5.564716,57.277926],[-5.563142,57.279627],[-5.559051,57.281336],[-5.558487,57.28299],[-5.556094,57.282022],[-5.558865,57.280113],[-5.558505,57.27757],[-5.556965,57.277461],[-5.555292,57.276745],[-5.553821,57.277058],[-5.550227,57.276496],[-5.548571,57.277646],[-5.547494,57.27768],[-5.544513,57.279063],[-5.542258,57.279279],[-5.541139,57.280009],[-5.539809,57.280006],[-5.536978,57.281756],[-5.53509,57.28216],[-5.532539,57.281189],[-5.533546,57.279992],[-5.526325,57.281224],[-5.523244,57.280861],[-5.521926,57.279221],[-5.522757,57.277898],[-5.519961,57.277],[-5.519332,57.278786],[-5.519812,57.282294],[-5.519282,57.283561],[-5.517627,57.284427],[-5.512709,57.28824],[-5.513557,57.288943],[-5.517334,57.289414],[-5.512364,57.290016],[-5.507211,57.291798],[-5.498991,57.292804],[-5.49673,57.294782],[-5.493476,57.296646],[-5.492079,57.298124],[-5.490885,57.298429],[-5.488801,57.299805],[-5.489412,57.302163],[-5.491061,57.30485],[-5.489934,57.306603],[-5.488101,57.307775],[-5.485692,57.308312],[-5.484893,57.309848],[-5.481284,57.311738],[-5.477418,57.31296],[-5.473269,57.31384],[-5.471891,57.313192],[-5.470587,57.31329],[-5.469259,57.312305],[-5.467847,57.314056],[-5.468592,57.314983],[-5.465095,57.315838],[-5.461235,57.315967],[-5.459977,57.315538],[-5.45868,57.316107],[-5.455151,57.315343],[-5.45392,57.314773],[-5.451865,57.315076],[-5.450462,57.315967],[-5.448443,57.31626],[-5.44757,57.31682],[-5.445859,57.316491],[-5.444388,57.318719],[-5.441882,57.319406],[-5.439501,57.319337],[-5.43741,57.317987],[-5.436869,57.316074],[-5.434031,57.316444],[-5.428368,57.316282],[-5.430725,57.314963],[-5.436789,57.314389],[-5.439534,57.313556],[-5.440853,57.312417],[-5.443077,57.312217],[-5.444828,57.311404],[-5.447965,57.311813],[-5.453055,57.310203],[-5.459859,57.309423],[-5.462878,57.30956],[-5.464475,57.308958],[-5.468081,57.308621],[-5.470772,57.309598],[-5.473697,57.309462],[-5.476913,57.307452],[-5.479663,57.307063],[-5.481588,57.307198],[-5.485519,57.306603],[-5.487814,57.304857],[-5.487898,57.304069],[-5.486812,57.303289],[-5.486664,57.301463],[-5.485749,57.300405],[-5.486379,57.299169],[-5.486407,57.296921],[-5.488075,57.296115],[-5.490828,57.293747],[-5.492763,57.294127],[-5.493804,57.293841],[-5.495468,57.29168],[-5.495717,57.289903],[-5.497462,57.288432],[-5.499729,57.288676],[-5.502466,57.287386],[-5.503756,57.287276],[-5.50571,57.285931],[-5.506283,57.284949],[-5.509691,57.283448],[-5.514746,57.281898],[-5.515841,57.280817],[-5.516126,57.279493],[-5.514445,57.276326],[-5.515143,57.275307],[-5.513845,57.274357],[-5.512712,57.272166],[-5.509842,57.271362],[-5.508973,57.270074],[-5.507356,57.26913],[-5.506745,57.267865],[-5.504778,57.266968],[-5.503732,57.264954],[-5.502426,57.264496],[-5.499675,57.262418],[-5.492976,57.260708],[-5.490072,57.258154],[-5.487984,57.258006],[-5.484637,57.256988],[-5.482923,57.256924],[-5.48044,57.255846],[-5.476374,57.253536],[-5.473637,57.250452],[-5.472695,57.250051],[-5.470834,57.248189],[-5.469596,57.247427],[-5.467258,57.246781],[-5.467138,57.245894],[-5.464239,57.24339],[-5.462865,57.243342],[-5.461582,57.241569],[-5.459176,57.240603],[-5.456722,57.240036],[-5.454226,57.239862],[-5.453814,57.238731],[-5.451805,57.238471],[-5.450349,57.237472],[-5.447554,57.237431],[-5.444528,57.236114],[-5.442466,57.236724],[-5.439387,57.236481],[-5.435144,57.235732],[-5.432419,57.234566],[-5.431309,57.234638],[-5.427731,57.234068],[-5.425904,57.233403],[-5.41984,57.233047],[-5.417219,57.232556],[-5.415929,57.231879],[-5.415408,57.23002],[-5.413798,57.230948],[-5.408576,57.232312],[-5.407889,57.233144],[-5.404424,57.233189],[-5.402382,57.233508],[-5.400639,57.234471],[-5.400829,57.235291],[-5.399686,57.236063],[-5.398181,57.234808],[-5.398807,57.23386],[-5.394433,57.232207],[-5.394024,57.231498],[-5.396979,57.23053],[-5.40147,57.228323],[-5.404097,57.2285],[-5.405796,57.228131],[-5.407665,57.225747],[-5.410361,57.224779],[-5.411642,57.224923],[-5.412613,57.225844],[-5.415136,57.225114],[-5.414401,57.223898],[-5.418482,57.222735],[-5.418828,57.220361],[-5.417879,57.219777],[-5.41873,57.218461],[-5.421304,57.217386],[-5.422759,57.21767],[-5.427132,57.216843],[-5.4251,57.214129],[-5.427568,57.214729],[-5.426763,57.212994],[-5.432931,57.212154],[-5.438033,57.215353],[-5.443223,57.217701],[-5.445573,57.220333],[-5.446519,57.222055],[-5.449988,57.223952],[-5.451341,57.223834],[-5.454544,57.225529],[-5.456549,57.225828],[-5.45912,57.227407],[-5.46224,57.22865],[-5.465382,57.229355],[-5.466985,57.230634],[-5.468956,57.230536],[-5.469875,57.231044],[-5.474013,57.231937],[-5.477208,57.233538],[-5.478476,57.234937],[-5.481785,57.236099],[-5.482282,57.237056],[-5.485686,57.238672],[-5.485548,57.240511],[-5.488135,57.242057],[-5.488997,57.243381],[-5.491923,57.244617],[-5.492359,57.245479],[-5.495667,57.24641],[-5.496788,57.24769],[-5.499285,57.248566],[-5.499396,57.249441],[-5.502441,57.250499],[-5.505126,57.252339],[-5.506173,57.252472],[-5.508285,57.253638],[-5.508253,57.25501],[-5.509498,57.255535],[-5.510002,57.256984],[-5.511078,57.25698],[-5.512412,57.258327],[-5.512025,57.259076],[-5.51453,57.260502],[-5.514706,57.261406],[-5.515855,57.261834],[-5.516944,57.263166],[-5.516876,57.264189],[-5.518837,57.26508],[-5.519053,57.265734],[-5.520854,57.266684],[-5.520942,57.26795],[-5.522437,57.269013],[-5.524889,57.269407],[-5.526507,57.268629],[-5.528445,57.268584],[-5.52959,57.269194],[-5.529658,57.270689],[-5.530623,57.271314],[-5.532805,57.27081],[-5.534804,57.269389],[-5.53356,57.268629],[-5.534963,57.267946],[-5.539627,57.269082],[-5.542462,57.269227],[-5.544267,57.268502],[-5.545143,57.267345],[-5.547079,57.266858],[-5.549657,57.265028],[-5.552035,57.264304],[-5.555749,57.263938],[-5.556435,57.263398],[-5.561982,57.26163],[-5.566015,57.260977],[-5.568196,57.260973],[-5.569314,57.260434],[-5.572491,57.259754],[-5.575026,57.258347],[-5.57835,57.257214],[-5.578532,57.256872],[-5.582683,57.256479],[-5.583641,57.256934],[-5.585603,57.256811],[-5.591108,57.255863],[-5.592981,57.257068],[-5.594244,57.259072],[-5.596477,57.259169],[-5.598701,57.258893],[-5.600132,57.258226],[-5.603526,57.255504],[-5.608936,57.253502],[-5.618198,57.251653],[-5.620964,57.251523],[-5.624798,57.250621],[-5.629436,57.250892],[-5.635958,57.250429],[-5.638017,57.249187],[-5.639507,57.246892],[-5.646678,57.24293],[-5.650412,57.240281],[-5.651257,57.239054],[-5.65252,57.238392],[-5.654011,57.236108],[-5.655131,57.235195],[-5.656231,57.232322],[-5.655645,57.231179],[-5.656103,57.230365],[-5.655314,57.22926],[-5.656423,57.227987],[-5.655293,57.227292],[-5.652741,57.226458],[-5.65175,57.226491],[-5.649599,57.225277],[-5.647272,57.226136],[-5.640606,57.226038],[-5.635738,57.224724],[-5.635723,57.224406],[-5.632134,57.222818],[-5.631069,57.221672],[-5.632395,57.220367],[-5.627377,57.21717],[-5.62557,57.219824],[-5.625099,57.21701],[-5.624462,57.216071],[-5.62494,57.215182],[-5.624058,57.214354],[-5.623762,57.212422],[-5.624591,57.211832],[-5.628146,57.211149],[-5.629096,57.211353],[-5.629221,57.209348],[-5.633893,57.20769],[-5.635189,57.206843],[-5.635302,57.204764],[-5.637062,57.202801],[-5.633329,57.200918],[-5.63512,57.200559],[-5.637533,57.200775],[-5.638592,57.199709],[-5.640776,57.198676],[-5.641159,57.197724],[-5.642329,57.197075],[-5.647136,57.196457],[-5.650447,57.195642],[-5.653347,57.194232],[-5.657788,57.190825],[-5.66048,57.18934],[-5.662433,57.189489],[-5.663178,57.188488],[-5.665604,57.18799],[-5.667662,57.186374],[-5.670115,57.186064],[-5.670863,57.185503],[-5.675875,57.184391],[-5.677764,57.183394],[-5.67856,57.182238],[-5.679994,57.181505],[-5.682128,57.176506],[-5.686476,57.174705],[-5.691076,57.172534],[-5.690775,57.172012],[-5.692264,57.170829],[-5.692118,57.168714],[-5.689911,57.169318],[-5.687325,57.168455],[-5.687366,57.166538],[-5.689968,57.164659],[-5.691651,57.162218],[-5.690226,57.161617],[-5.688883,57.159184],[-5.689912,57.157383],[-5.687874,57.156112],[-5.686636,57.156324],[-5.681699,57.153916],[-5.681111,57.152738],[-5.682395,57.151268],[-5.681709,57.150578],[-5.679684,57.149984],[-5.678311,57.148954],[-5.679087,57.148042],[-5.675396,57.148082],[-5.671612,57.146786],[-5.66837,57.14662],[-5.667466,57.146008],[-5.667373,57.144901],[-5.665823,57.144443],[-5.664239,57.144817],[-5.662405,57.144498],[-5.659727,57.142922],[-5.658393,57.142983],[-5.655769,57.14212],[-5.653802,57.142632],[-5.650149,57.142316],[-5.646428,57.143656],[-5.642951,57.143774],[-5.642186,57.14408],[-5.638111,57.1441],[-5.6316,57.145071],[-5.629746,57.14481],[-5.62696,57.145225],[-5.623037,57.14495],[-5.617925,57.146119],[-5.614108,57.145644],[-5.610893,57.145751],[-5.608515,57.144938],[-5.606253,57.143619],[-5.603586,57.14357],[-5.602599,57.14278],[-5.598636,57.143011],[-5.596583,57.142476],[-5.596412,57.141825],[-5.594801,57.141327],[-5.593569,57.140144],[-5.590687,57.139823],[-5.586497,57.139929],[-5.582913,57.139261],[-5.580829,57.137232],[-5.578923,57.134113],[-5.577385,57.132885],[-5.573561,57.132997],[-5.57118,57.133503],[-5.569758,57.134386],[-5.564275,57.134336],[-5.561539,57.133606],[-5.560144,57.132503],[-5.559537,57.131187],[-5.55948,57.125793],[-5.556596,57.125742],[-5.554007,57.124666],[-5.554037,57.124004],[-5.555784,57.123549],[-5.55572,57.122164],[-5.553141,57.120344],[-5.552295,57.11824],[-5.550288,57.116441],[-5.550386,57.115044],[-5.552655,57.112634],[-5.548157,57.111184],[-5.546501,57.109789],[-5.545739,57.108513],[-5.541255,57.107945],[-5.541135,57.107427],[-5.535656,57.106489],[-5.534971,57.105111],[-5.533765,57.104327],[-5.532097,57.104077],[-5.527372,57.101886],[-5.526022,57.102558],[-5.523145,57.102266],[-5.521501,57.102695],[-5.520065,57.10184],[-5.517556,57.102127],[-5.514172,57.101615],[-5.51233,57.102669],[-5.510438,57.102745],[-5.508543,57.103499],[-5.506812,57.103584],[-5.50309,57.104649],[-5.498949,57.105111],[-5.496732,57.104899],[-5.494072,57.105513],[-5.490835,57.105568],[-5.489904,57.104672],[-5.49032,57.103559],[-5.489406,57.102101],[-5.487066,57.101276],[-5.483361,57.104135],[-5.480966,57.105015],[-5.476848,57.105404],[-5.475916,57.105241],[-5.472462,57.105939],[-5.468431,57.106194],[-5.465894,57.106945],[-5.462842,57.107468],[-5.460957,57.108514],[-5.459064,57.108679],[-5.457683,57.107696],[-5.455972,57.107766],[-5.455502,57.108912],[-5.455941,57.110094],[-5.454016,57.109825],[-5.451781,57.110574],[-5.448247,57.11081],[-5.446232,57.111487],[-5.442862,57.111939],[-5.438521,57.110998],[-5.438309,57.111947],[-5.436296,57.112758],[-5.431426,57.113604],[-5.426751,57.115415],[-5.425372,57.115057],[-5.422773,57.115546],[-5.419414,57.11442],[-5.417425,57.114717],[-5.416584,57.113837],[-5.414692,57.112845],[-5.412253,57.112471],[-5.405773,57.110099],[-5.403632,57.110715],[-5.400484,57.110593],[-5.397802,57.111098],[-5.396332,57.110331],[-5.390748,57.109204],[-5.388921,57.109195],[-5.387369,57.108212],[-5.387593,57.107444],[-5.384899,57.106935],[-5.387768,57.106344],[-5.388136,57.104852],[-5.391213,57.106701],[-5.395515,57.107047],[-5.398633,57.108201],[-5.402062,57.107755],[-5.41062,57.109711],[-5.413391,57.110013],[-5.415696,57.109754],[-5.416812,57.110032],[-5.41818,57.10937],[-5.420829,57.109608],[-5.42298,57.109289],[-5.425475,57.107948],[-5.425988,57.106793],[-5.431358,57.105744],[-5.434971,57.10555],[-5.436803,57.10522],[-5.439587,57.105664],[-5.441271,57.105214],[-5.445571,57.105901],[-5.447773,57.104874],[-5.45003,57.104802],[-5.450846,57.105721],[-5.452267,57.105234],[-5.45382,57.103731],[-5.456685,57.103013],[-5.461608,57.102406],[-5.465358,57.102751],[-5.467392,57.101625],[-5.472754,57.101402],[-5.475965,57.100542],[-5.482422,57.101167],[-5.483831,57.100692],[-5.485012,57.099459],[-5.487221,57.099245],[-5.488303,57.098711],[-5.4925,57.097763],[-5.49623,57.097384],[-5.498704,57.097437],[-5.504155,57.096569],[-5.507084,57.096631],[-5.509538,57.097425],[-5.512098,57.096203],[-5.513452,57.094637],[-5.514878,57.09417],[-5.514631,57.093138],[-5.515631,57.091663],[-5.515673,57.088965],[-5.519226,57.086644],[-5.518715,57.086483],[-5.515837,57.088519],[-5.516445,57.085787],[-5.516296,57.084304],[-5.518204,57.083014],[-5.517891,57.082492],[-5.520665,57.08163],[-5.520124,57.083081],[-5.522852,57.083071],[-5.524375,57.084526],[-5.524686,57.085547],[-5.525809,57.085812],[-5.529254,57.08575],[-5.532727,57.087104],[-5.534711,57.087394],[-5.538578,57.089245],[-5.541583,57.089236],[-5.544017,57.089999],[-5.544454,57.090773],[-5.546989,57.091552],[-5.549592,57.091306],[-5.551377,57.09193],[-5.558272,57.097353],[-5.558428,57.098122],[-5.560567,57.098807],[-5.560885,57.097737],[-5.564327,57.095306],[-5.566077,57.095477],[-5.5692,57.097464],[-5.571377,57.1],[-5.570895,57.101682],[-5.571151,57.102974],[-5.574926,57.10323],[-5.578157,57.106585],[-5.578539,57.108404],[-5.580497,57.10942],[-5.584376,57.110417],[-5.585926,57.111487],[-5.588003,57.114426],[-5.589,57.115085],[-5.588788,57.115968],[-5.590787,57.117578],[-5.59201,57.119197],[-5.595711,57.119446],[-5.598288,57.119089],[-5.603894,57.119804],[-5.611,57.119887],[-5.614742,57.120795],[-5.622083,57.121329],[-5.623715,57.122051],[-5.626874,57.122499],[-5.628449,57.122201],[-5.630487,57.122682],[-5.634466,57.122966],[-5.636071,57.12332],[-5.638751,57.124608],[-5.641711,57.126891],[-5.645894,57.127736],[-5.654014,57.127095],[-5.65655,57.125817],[-5.658078,57.126405],[-5.659177,57.125308],[-5.660667,57.125255],[-5.661207,57.124448],[-5.663319,57.123099],[-5.669603,57.122517],[-5.675662,57.119858],[-5.68156,57.118937],[-5.684816,57.118838],[-5.692042,57.120032],[-5.693362,57.120591],[-5.695659,57.120254],[-5.69663,57.120625],[-5.699398,57.119712],[-5.702502,57.119184],[-5.710518,57.119014],[-5.712548,57.118576],[-5.715776,57.118539],[-5.716881,57.118187],[-5.719044,57.118496],[-5.720611,57.118058],[-5.722189,57.11682],[-5.722056,57.115408],[-5.724578,57.114767],[-5.723537,57.113206],[-5.72357,57.111991],[-5.725177,57.111274],[-5.726005,57.110139],[-5.725998,57.109109],[-5.726952,57.108717],[-5.726693,57.107614],[-5.727425,57.104949],[-5.730363,57.102628],[-5.728911,57.101327],[-5.729869,57.099437],[-5.731131,57.098523],[-5.734023,57.098117],[-5.735903,57.09727],[-5.736719,57.096108],[-5.737764,57.095736],[-5.741916,57.092694],[-5.743486,57.092539],[-5.74597,57.090968],[-5.748042,57.090546],[-5.749897,57.090931],[-5.752818,57.090907],[-5.755188,57.090251],[-5.756555,57.0903],[-5.759745,57.089022],[-5.762857,57.086821],[-5.764426,57.086971],[-5.766349,57.085258],[-5.766395,57.082133],[-5.767921,57.081876],[-5.769847,57.083202],[-5.772622,57.082642],[-5.774658,57.080252],[-5.775882,57.079626],[-5.776521,57.078523],[-5.779594,57.077232],[-5.780301,57.076247],[-5.781509,57.07585],[-5.782681,57.073801],[-5.786528,57.073119],[-5.787702,57.072184],[-5.788711,57.069843],[-5.787671,57.067982],[-5.78925,57.068004],[-5.787805,57.066543],[-5.789619,57.065162],[-5.793776,57.066915],[-5.794794,57.065734],[-5.794589,57.063721],[-5.796999,57.062763],[-5.797168,57.06167],[-5.794515,57.058401],[-5.794882,57.057635],[-5.792355,57.055351],[-5.79246,57.054274],[-5.790309,57.053584],[-5.788585,57.053568],[-5.787054,57.052226],[-5.786934,57.051128],[-5.787857,57.049913],[-5.786829,57.048645],[-5.785512,57.048509],[-5.782497,57.049284],[-5.780241,57.049164],[-5.779738,57.046886],[-5.781113,57.045491],[-5.781618,57.044294],[-5.779846,57.044307],[-5.779252,57.045844],[-5.776226,57.045369],[-5.774026,57.0466],[-5.772267,57.046073],[-5.770434,57.047621],[-5.767777,57.048339],[-5.767542,57.049443],[-5.766219,57.050544],[-5.764472,57.050241],[-5.763892,57.051594],[-5.762045,57.051443],[-5.761357,57.050187],[-5.762428,57.048545],[-5.761888,57.046471],[-5.758806,57.046092],[-5.756611,57.044944],[-5.75878,57.044609],[-5.760244,57.042861],[-5.759255,57.041823],[-5.756919,57.042844],[-5.756253,57.042136],[-5.758109,57.039446],[-5.755998,57.038471],[-5.754942,57.038876],[-5.753519,57.038177],[-5.754568,57.037619],[-5.751642,57.035918],[-5.751997,57.035512],[-5.755182,57.035371],[-5.756274,57.034628],[-5.753347,57.032792],[-5.750937,57.032113],[-5.749485,57.032274],[-5.749603,57.030333],[-5.749038,57.029307],[-5.745606,57.029616],[-5.744469,57.029231],[-5.735688,57.029688],[-5.732653,57.031235],[-5.732872,57.032055],[-5.734584,57.033142],[-5.735492,57.034225],[-5.736772,57.033994],[-5.740307,57.034306],[-5.744075,57.034135],[-5.740263,57.035427],[-5.736068,57.035692],[-5.727359,57.037723],[-5.723927,57.037708],[-5.718376,57.039092],[-5.712328,57.040382],[-5.71195,57.040716],[-5.706316,57.041149],[-5.695624,57.039746],[-5.692126,57.03993],[-5.688496,57.039474],[-5.686029,57.038215],[-5.683871,57.037788],[-5.680749,57.035521],[-5.679375,57.035398],[-5.677677,57.034566],[-5.673505,57.033836],[-5.672801,57.03258],[-5.670234,57.031513],[-5.669674,57.028491],[-5.670114,57.027085],[-5.670888,57.026754],[-5.673475,57.027063],[-5.67379,57.026552],[-5.671747,57.025584],[-5.676636,57.024273],[-5.677494,57.025776],[-5.680058,57.026276],[-5.682058,57.026168],[-5.683215,57.02521],[-5.68274,57.02323],[-5.6839,57.022706],[-5.684987,57.020948],[-5.684323,57.018576],[-5.682549,57.017059],[-5.68134,57.014083],[-5.67866,57.009896],[-5.676443,57.008302],[-5.673225,57.005007],[-5.670194,57.00324],[-5.668936,57.001191],[-5.665559,56.998687],[-5.662433,56.994873],[-5.660058,56.993845],[-5.655506,56.992859],[-5.651445,56.99327],[-5.650057,56.992807],[-5.64756,56.992624],[-5.643931,56.99282],[-5.639482,56.992037],[-5.634012,56.989784],[-5.635048,56.989369],[-5.637518,56.989714],[-5.636399,56.988472],[-5.634721,56.988655],[-5.632938,56.987225],[-5.63038,56.987375],[-5.628951,56.986994],[-5.625015,56.987247],[-5.622624,56.985644],[-5.621729,56.98563],[-5.619681,56.982862],[-5.616636,56.982869],[-5.613781,56.984075],[-5.608697,56.985139],[-5.605267,56.986542],[-5.601744,56.986293],[-5.600472,56.986595],[-5.598541,56.987828],[-5.598624,56.988415],[-5.5971,56.989456],[-5.590611,56.991922],[-5.589418,56.991592],[-5.585538,56.992249],[-5.583863,56.993176],[-5.579305,56.992447],[-5.5765,56.992915],[-5.573205,56.99265],[-5.567741,56.995004],[-5.561337,56.995047],[-5.558965,56.99565],[-5.557039,56.996779],[-5.55436,56.996807],[-5.552839,56.998773],[-5.551543,56.999157],[-5.547402,56.9985],[-5.546515,56.997667],[-5.544798,56.997797],[-5.542867,56.999658],[-5.540893,56.999696],[-5.533036,57.00206],[-5.531328,57.002012],[-5.530513,57.000368],[-5.52936,57.000459],[-5.523473,57.005007],[-5.520935,57.005438],[-5.518807,57.004351],[-5.51885,57.001771],[-5.519753,57.000954],[-5.522626,57.000023],[-5.522088,57.001248],[-5.524461,57.000826],[-5.521566,56.999393],[-5.52207,56.998534],[-5.520905,56.998153],[-5.518124,56.998002],[-5.512471,56.996919],[-5.510205,56.996872],[-5.509207,56.996221],[-5.510097,56.995255],[-5.509032,56.993998],[-5.510724,56.993267],[-5.512982,56.994141],[-5.516565,56.993793],[-5.520487,56.994074],[-5.526997,56.993513],[-5.53123,56.992993],[-5.533629,56.992063],[-5.535109,56.992034],[-5.5389,56.990947],[-5.542174,56.990387],[-5.547627,56.990237],[-5.55434,56.988565],[-5.556311,56.987351],[-5.561479,56.986282],[-5.564235,56.986553],[-5.566627,56.986041],[-5.568687,56.984773],[-5.57047,56.984902],[-5.575595,56.983146],[-5.579307,56.983728],[-5.579526,56.983016],[-5.581665,56.981201],[-5.586805,56.98105],[-5.588999,56.980155],[-5.591915,56.980175],[-5.593559,56.981602],[-5.59619,56.98207],[-5.599044,56.9829],[-5.600529,56.982588],[-5.602959,56.982759],[-5.603976,56.983414],[-5.608879,56.98294],[-5.611126,56.981924],[-5.614318,56.979985],[-5.616706,56.976823],[-5.619254,56.97665],[-5.620736,56.975884],[-5.625637,56.974753],[-5.631853,56.975276],[-5.634567,56.974846],[-5.635273,56.974261],[-5.63307,56.97147],[-5.633757,56.970106],[-5.635618,56.969797],[-5.637482,56.971821],[-5.639973,56.972927],[-5.640979,56.974144],[-5.643766,56.974993],[-5.647139,56.974999],[-5.649171,56.975983],[-5.655743,56.977483],[-5.658578,56.976232],[-5.661091,56.975853],[-5.663316,56.976641],[-5.666217,56.97643],[-5.672858,56.977741],[-5.674213,56.978598],[-5.678486,56.979796],[-5.680825,56.981718],[-5.682807,56.982109],[-5.684911,56.983571],[-5.688559,56.984489],[-5.689569,56.986046],[-5.689487,56.986799],[-5.69225,56.987585],[-5.692986,56.986875],[-5.694928,56.986278],[-5.697469,56.986163],[-5.699008,56.986819],[-5.700709,56.988436],[-5.703855,56.989853],[-5.705802,56.990128],[-5.708658,56.991023],[-5.709922,56.992227],[-5.713823,56.998139],[-5.714744,57.001097],[-5.716099,57.003034],[-5.718614,57.005864],[-5.722399,57.008412],[-5.722202,57.009334],[-5.724036,57.013691],[-5.725037,57.014717],[-5.72526,57.015784],[-5.726437,57.016514],[-5.727418,57.018313],[-5.728642,57.017302],[-5.73007,57.018316],[-5.731078,57.017513],[-5.733353,57.018425],[-5.734252,57.017445],[-5.735683,57.017492],[-5.736853,57.018231],[-5.738539,57.017745],[-5.738482,57.016649],[-5.742637,57.01708],[-5.744672,57.016656],[-5.746656,57.016795],[-5.74853,57.017413],[-5.75166,57.01616],[-5.757434,57.016288],[-5.759713,57.015992],[-5.761244,57.01521],[-5.764225,57.015562],[-5.765973,57.015001],[-5.771723,57.015057],[-5.773982,57.015393],[-5.775762,57.016365],[-5.777883,57.016476],[-5.780187,57.015714],[-5.782018,57.014269],[-5.784319,57.013828],[-5.785707,57.014239],[-5.786983,57.013737],[-5.789168,57.014152],[-5.792083,57.012384],[-5.793757,57.013647],[-5.795665,57.014176],[-5.797647,57.014175],[-5.800745,57.013733],[-5.802215,57.014105],[-5.805551,57.013002],[-5.807059,57.013288],[-5.807674,57.014373],[-5.810096,57.013206],[-5.812627,57.013145],[-5.815661,57.012261],[-5.81714,57.012652],[-5.819553,57.011625],[-5.820628,57.011857],[-5.822715,57.008842],[-5.822284,57.006182],[-5.822716,57.004659],[-5.827727,57.004529],[-5.828066,57.007152],[-5.828496,57.007714],[-5.830451,57.00795],[-5.830831,57.006668],[-5.832307,57.004776],[-5.83218,57.003611],[-5.833381,57.003533],[-5.833164,57.002419],[-5.833807,56.999856],[-5.833637,56.996863],[-5.832586,56.996658],[-5.830827,56.993938],[-5.832963,56.993434],[-5.8342,56.99242],[-5.834559,56.991247],[-5.837421,56.991802],[-5.839245,56.991598],[-5.843084,56.990095],[-5.843647,56.989012],[-5.843428,56.987603],[-5.842443,56.986837],[-5.843555,56.98612],[-5.842775,56.985024],[-5.843573,56.984537],[-5.843792,56.982835],[-5.843061,56.982615],[-5.842988,56.980234],[-5.845735,56.979646],[-5.845814,56.978812],[-5.844356,56.978408],[-5.845795,56.976799],[-5.846198,56.974952],[-5.847227,56.97256],[-5.845558,56.971704],[-5.843793,56.971358],[-5.841109,56.972308],[-5.837614,56.971386],[-5.83629,56.972114],[-5.831528,56.972138],[-5.829991,56.973817],[-5.827934,56.973959],[-5.827088,56.973493],[-5.826384,56.97174],[-5.827737,56.970768],[-5.825449,56.968956],[-5.82536,56.968158],[-5.823569,56.966617],[-5.823367,56.964663],[-5.821944,56.963102],[-5.817208,56.962424],[-5.818445,56.961494],[-5.820873,56.960485],[-5.822972,56.96085],[-5.82462,56.962188],[-5.825743,56.96259],[-5.827699,56.964677],[-5.831036,56.964773],[-5.832563,56.96615],[-5.837124,56.968142],[-5.83994,56.968239],[-5.841994,56.967956],[-5.844772,56.966886],[-5.845263,56.965661],[-5.844336,56.96449],[-5.845402,56.963737],[-5.846914,56.961717],[-5.849263,56.961996],[-5.847384,56.959433],[-5.846775,56.959253],[-5.849087,56.957324],[-5.85236,56.956293],[-5.852575,56.95453],[-5.853245,56.95377],[-5.850887,56.952892],[-5.851598,56.951751],[-5.854405,56.950675],[-5.852537,56.949708],[-5.854103,56.948896],[-5.855485,56.947092],[-5.85779,56.946131],[-5.854084,56.945242],[-5.853339,56.944615],[-5.853366,56.942624],[-5.852859,56.94077],[-5.857284,56.939629],[-5.859808,56.940303],[-5.862596,56.940568],[-5.861996,56.937474],[-5.860358,56.93743],[-5.860882,56.935963],[-5.863572,56.935697],[-5.865868,56.936106],[-5.867473,56.934046],[-5.866212,56.931704],[-5.864821,56.93098],[-5.866452,56.929418],[-5.865191,56.928575],[-5.862921,56.927926],[-5.863182,56.926305],[-5.864547,56.926356],[-5.865829,56.927328],[-5.868048,56.926767],[-5.869356,56.926028],[-5.870592,56.926363],[-5.870113,56.927472],[-5.871214,56.927772],[-5.872283,56.926106],[-5.875747,56.924611],[-5.877092,56.923567],[-5.877479,56.921471],[-5.878323,56.921621],[-5.878527,56.923112],[-5.881167,56.922295],[-5.882879,56.922624],[-5.883048,56.921328],[-5.881988,56.920901],[-5.883425,56.919815],[-5.88205,56.919242],[-5.883391,56.91728],[-5.881441,56.916311],[-5.877564,56.915482],[-5.877261,56.913969],[-5.875338,56.913812],[-5.874172,56.912873],[-5.87482,56.912233],[-5.872921,56.911275],[-5.872012,56.91004],[-5.869801,56.909722],[-5.868567,56.910102],[-5.864917,56.909775],[-5.862818,56.909213],[-5.859891,56.909785],[-5.859537,56.910958],[-5.85669,56.910928],[-5.854733,56.912148],[-5.852761,56.911483],[-5.852132,56.912553],[-5.850242,56.912422],[-5.850292,56.911415],[-5.849384,56.910732],[-5.850768,56.909871],[-5.845262,56.909013],[-5.844289,56.907736],[-5.84462,56.906059],[-5.847874,56.905077],[-5.84992,56.9038],[-5.850752,56.904062],[-5.854146,56.903189],[-5.853991,56.901607],[-5.84951,56.900706],[-5.851017,56.898745],[-5.85398,56.898797],[-5.854248,56.897728],[-5.856533,56.896785],[-5.859363,56.896266],[-5.860388,56.895609],[-5.861636,56.893696],[-5.86397,56.8945],[-5.862253,56.895934],[-5.861082,56.897962],[-5.86266,56.898915],[-5.864704,56.8966],[-5.866517,56.897371],[-5.865542,56.898979],[-5.869228,56.898867],[-5.87097,56.89975],[-5.873857,56.899148],[-5.877858,56.899135],[-5.880004,56.898768],[-5.880537,56.900411],[-5.881567,56.900761],[-5.882493,56.903349],[-5.884892,56.905081],[-5.886098,56.905376],[-5.889045,56.904794],[-5.894009,56.904258],[-5.895725,56.903215],[-5.895753,56.902459],[-5.898717,56.901656],[-5.899228,56.90088],[-5.896057,56.898758],[-5.895642,56.897382],[-5.898471,56.896776],[-5.89847,56.896062],[-5.899797,56.895072],[-5.901108,56.895907],[-5.90304,56.895253],[-5.904491,56.893927],[-5.910921,56.893824],[-5.912593,56.892846],[-5.914706,56.893107],[-5.918046,56.892836],[-5.919853,56.892132],[-5.923011,56.892397],[-5.924186,56.891465],[-5.923825,56.890452],[-5.922599,56.890112],[-5.921575,56.887483],[-5.920091,56.88672],[-5.918931,56.887485],[-5.917819,56.886284],[-5.918651,56.884819],[-5.921074,56.884581],[-5.921677,56.883762],[-5.920238,56.883344],[-5.917554,56.883914],[-5.916689,56.882628],[-5.917621,56.881889],[-5.916463,56.88094],[-5.913839,56.881135],[-5.91173,56.883036],[-5.907365,56.884256],[-5.906267,56.882465],[-5.90623,56.879836],[-5.905669,56.878392],[-5.903511,56.879202],[-5.901428,56.878754],[-5.902188,56.877611],[-5.900219,56.876526],[-5.898414,56.876776],[-5.897452,56.876375],[-5.896155,56.877953],[-5.894709,56.878248],[-5.892738,56.875973],[-5.890054,56.875351],[-5.887175,56.874187],[-5.884941,56.875605],[-5.882962,56.878373],[-5.883786,56.878873],[-5.882336,56.87962],[-5.88088,56.87864],[-5.881823,56.877599],[-5.881641,56.876328],[-5.879696,56.876969],[-5.875186,56.879325],[-5.874853,56.880311],[-5.868829,56.881137],[-5.868817,56.881892],[-5.867555,56.882952],[-5.863786,56.884221],[-5.860137,56.883645],[-5.859695,56.881901],[-5.85815,56.880941],[-5.856338,56.882872],[-5.853871,56.883317],[-5.852539,56.882985],[-5.852359,56.88188],[-5.850076,56.882112],[-5.848577,56.88112],[-5.846926,56.88207],[-5.84505,56.882357],[-5.843497,56.882108],[-5.841525,56.883127],[-5.840158,56.88332],[-5.838418,56.884796],[-5.83611,56.885101],[-5.834467,56.887093],[-5.832596,56.887677],[-5.8302,56.887616],[-5.827783,56.888806],[-5.824805,56.887943],[-5.825493,56.886483],[-5.824805,56.885857],[-5.82214,56.886541],[-5.821826,56.885638],[-5.819462,56.885575],[-5.817709,56.88642],[-5.813346,56.886801],[-5.812472,56.887651],[-5.808672,56.88899],[-5.806106,56.889657],[-5.804084,56.891593],[-5.800518,56.893347],[-5.800101,56.891912],[-5.801418,56.89162],[-5.804687,56.88863],[-5.803079,56.888086],[-5.801168,56.890369],[-5.797885,56.892007],[-5.796966,56.890812],[-5.795633,56.891101],[-5.794296,56.892096],[-5.790709,56.89128],[-5.791082,56.890602],[-5.78976,56.88988],[-5.78837,56.889877],[-5.786911,56.890887],[-5.784467,56.89122],[-5.782198,56.892699],[-5.780968,56.892487],[-5.779665,56.893407],[-5.77756,56.893798],[-5.775786,56.893033],[-5.77201,56.894361],[-5.768135,56.894237],[-5.769197,56.89245],[-5.766507,56.893057],[-5.764846,56.893049],[-5.763554,56.893996],[-5.761071,56.8943],[-5.760458,56.893923],[-5.75619,56.893143],[-5.752158,56.893975],[-5.749307,56.894946],[-5.745512,56.895195],[-5.744412,56.89463],[-5.743041,56.895292],[-5.741235,56.895463],[-5.739007,56.896182],[-5.737722,56.896148],[-5.735793,56.895181],[-5.735229,56.894303],[-5.733475,56.893762],[-5.733232,56.893055],[-5.72986,56.892355],[-5.730853,56.890928],[-5.733193,56.890696],[-5.735679,56.889358],[-5.736923,56.889887],[-5.739887,56.888234],[-5.736085,56.888483],[-5.732866,56.888323],[-5.731534,56.888808],[-5.724272,56.889443],[-5.721266,56.889034],[-5.725096,56.887374],[-5.724811,56.885786],[-5.723526,56.884925],[-5.727185,56.884811],[-5.728864,56.885089],[-5.729786,56.884459],[-5.731832,56.884546],[-5.733373,56.884028],[-5.735179,56.884185],[-5.73862,56.883615],[-5.743382,56.883602],[-5.74536,56.884001],[-5.747548,56.882893],[-5.750051,56.882439],[-5.751454,56.88131],[-5.751588,56.880519],[-5.757043,56.879235],[-5.761039,56.877577],[-5.762235,56.877636],[-5.76521,56.874556],[-5.766719,56.874385],[-5.768091,56.873413],[-5.769319,56.873214],[-5.776679,56.870168],[-5.778223,56.869928],[-5.779823,56.868702],[-5.783389,56.866818],[-5.785451,56.866595],[-5.786237,56.865571],[-5.781949,56.865288],[-5.782862,56.864739],[-5.785704,56.864062],[-5.787202,56.861563],[-5.78845,56.860729],[-5.788862,56.859715],[-5.787477,56.85852],[-5.784028,56.86045],[-5.782081,56.86059],[-5.781585,56.859661],[-5.780218,56.859779],[-5.778754,56.860642],[-5.775173,56.860696],[-5.773297,56.859836],[-5.773233,56.858224],[-5.769099,56.857711],[-5.766778,56.858496],[-5.762527,56.858745],[-5.761494,56.859653],[-5.758853,56.858362],[-5.757192,56.85865],[-5.75592,56.858],[-5.755426,56.856999],[-5.756588,56.856398],[-5.754939,56.854805],[-5.753023,56.854482],[-5.752105,56.854982],[-5.749358,56.855159],[-5.748452,56.855728],[-5.746541,56.854692],[-5.744317,56.854058],[-5.74303,56.854657],[-5.7399,56.854416],[-5.739553,56.855783],[-5.737325,56.855977],[-5.735913,56.854527],[-5.73302,56.853552],[-5.730854,56.854415],[-5.727625,56.852646],[-5.727748,56.851491],[-5.726225,56.851033],[-5.724278,56.851743],[-5.722997,56.851242],[-5.720295,56.851053],[-5.718415,56.851783],[-5.716961,56.854407],[-5.716676,56.857401],[-5.716904,56.858711],[-5.716128,56.859409],[-5.716396,56.860529],[-5.715469,56.861361],[-5.716431,56.862461],[-5.712963,56.8639],[-5.712397,56.865058],[-5.711304,56.865626],[-5.710635,56.867071],[-5.70831,56.867468],[-5.703194,56.86918],[-5.70221,56.870774],[-5.701298,56.871174],[-5.699904,56.873593],[-5.698373,56.87433],[-5.697704,56.875263],[-5.694761,56.876888],[-5.691554,56.877419],[-5.690331,56.879512],[-5.687053,56.880061],[-5.686793,56.878871],[-5.685239,56.879071],[-5.684185,56.878536],[-5.682398,56.878802],[-5.680897,56.880166],[-5.678344,56.880088],[-5.677265,56.879473],[-5.677846,56.878534],[-5.676596,56.87818],[-5.676861,56.876617],[-5.674595,56.876193],[-5.67222,56.876178],[-5.67055,56.877154],[-5.669747,56.875739],[-5.671381,56.875331],[-5.672684,56.873829],[-5.671174,56.871934],[-5.671848,56.871485],[-5.677696,56.869633],[-5.678078,56.869761],[-5.683103,56.868278],[-5.684844,56.868056],[-5.689141,56.869012],[-5.690529,56.868854],[-5.694762,56.86725],[-5.695078,56.865878],[-5.696373,56.865287],[-5.696818,56.864303],[-5.70308,56.862063],[-5.70457,56.861695],[-5.704444,56.860862],[-5.705607,56.859403],[-5.704522,56.858805],[-5.704588,56.857235],[-5.705447,56.856323],[-5.705502,56.855108],[-5.708441,56.854936],[-5.707773,56.85335],[-5.709624,56.85183],[-5.710924,56.8502],[-5.709103,56.849966],[-5.709149,56.848441],[-5.711016,56.847495],[-5.712566,56.846087],[-5.714963,56.845683],[-5.71553,56.844951],[-5.717724,56.844],[-5.719668,56.843578],[-5.723589,56.843544],[-5.728061,56.843021],[-5.733798,56.843128],[-5.737189,56.845544],[-5.73956,56.844237],[-5.74521,56.844377],[-5.746446,56.845334],[-5.748774,56.84565],[-5.749069,56.846711],[-5.751863,56.84839],[-5.756241,56.847709],[-5.757032,56.847173],[-5.759573,56.847721],[-5.763736,56.847699],[-5.763362,56.844604],[-5.764671,56.843722],[-5.767039,56.842892],[-5.768056,56.843387],[-5.771125,56.843812],[-5.772744,56.843601],[-5.773057,56.842881],[-5.774647,56.842383],[-5.772601,56.841663],[-5.773597,56.840999],[-5.773523,56.83977],[-5.778241,56.839056],[-5.780219,56.839643],[-5.785932,56.836678],[-5.788082,56.836608],[-5.788488,56.837382],[-5.790262,56.837481],[-5.791489,56.83672],[-5.79549,56.836207],[-5.797449,56.836874],[-5.798013,56.837646],[-5.801045,56.836892],[-5.804275,56.837522],[-5.808943,56.837532],[-5.8107,56.836746],[-5.810694,56.835883],[-5.811868,56.835083],[-5.813873,56.834558],[-5.815071,56.830462],[-5.816721,56.829103],[-5.818027,56.828802],[-5.82037,56.830156],[-5.819164,56.831919],[-5.821712,56.833338],[-5.824194,56.833307],[-5.825038,56.833789],[-5.826945,56.833749],[-5.827207,56.834388],[-5.829093,56.834784],[-5.830453,56.834526],[-5.830203,56.833208],[-5.828896,56.832538],[-5.829715,56.831559],[-5.831562,56.832218],[-5.832929,56.832113],[-5.835023,56.833347],[-5.836464,56.83284],[-5.838641,56.833438],[-5.840776,56.833382],[-5.842073,56.833958],[-5.846467,56.833701],[-5.849025,56.834642],[-5.850784,56.833172],[-5.855018,56.833351],[-5.856294,56.831963],[-5.857301,56.83003],[-5.859695,56.829794],[-5.860903,56.828705],[-5.859344,56.827899],[-5.861638,56.826286],[-5.860648,56.825192],[-5.861649,56.824204],[-5.86244,56.821972],[-5.862098,56.821285],[-5.864322,56.820192],[-5.86255,56.818426],[-5.864563,56.815612],[-5.864397,56.814241],[-5.865216,56.813042],[-5.867031,56.812433],[-5.866983,56.811738],[-5.865004,56.810662],[-5.861242,56.809951],[-5.86022,56.80934],[-5.853602,56.808059],[-5.852739,56.808196],[-5.849182,56.806723],[-5.843802,56.806201],[-5.841887,56.805028],[-5.839668,56.804409],[-5.837189,56.804126],[-5.834717,56.804633],[-5.832948,56.804085],[-5.83236,56.802908],[-5.830224,56.803606],[-5.829448,56.802309],[-5.824431,56.801326],[-5.823305,56.801612],[-5.817405,56.798714],[-5.815392,56.798496],[-5.80902,56.796268],[-5.806551,56.796743],[-5.803553,56.795999],[-5.802818,56.795455],[-5.79997,56.795735],[-5.797855,56.794986],[-5.790763,56.794375],[-5.784838,56.792644],[-5.781652,56.79208],[-5.778285,56.790542],[-5.77476,56.789857],[-5.771896,56.789814],[-5.768744,56.788853],[-5.767923,56.789341],[-5.763332,56.788228],[-5.762891,56.786922],[-5.760564,56.786494],[-5.758691,56.787128],[-5.754361,56.787381],[-5.751724,56.785923],[-5.752082,56.785191],[-5.754705,56.786395],[-5.754593,56.784915],[-5.752996,56.784361],[-5.752549,56.783108],[-5.751458,56.782348],[-5.752639,56.781714],[-5.756047,56.78172],[-5.759797,56.782285],[-5.762296,56.783432],[-5.76411,56.78346],[-5.766484,56.782702],[-5.769832,56.783776],[-5.77314,56.783199],[-5.775413,56.784222],[-5.777996,56.784499],[-5.778514,56.783343],[-5.780073,56.782678],[-5.780831,56.78337],[-5.783653,56.784386],[-5.783599,56.78548],[-5.785184,56.786497],[-5.78756,56.786425],[-5.78924,56.786918],[-5.789769,56.788237],[-5.789075,56.789171],[-5.790606,56.789817],[-5.792289,56.791316],[-5.794758,56.791016],[-5.796677,56.791691],[-5.797486,56.790452],[-5.798898,56.790247],[-5.79905,56.788836],[-5.800508,56.787865],[-5.799513,56.785962],[-5.804829,56.784429],[-5.808365,56.784168],[-5.810107,56.785134],[-5.813086,56.785008],[-5.817435,56.78621],[-5.822339,56.786484],[-5.823365,56.785408],[-5.82301,56.784016],[-5.824779,56.783667],[-5.824978,56.782022],[-5.826562,56.780373],[-5.828476,56.780188],[-5.827671,56.778159],[-5.828008,56.777371],[-5.826437,56.775611],[-5.829294,56.774314],[-5.829065,56.772716],[-5.829724,56.771145],[-5.831576,56.77067],[-5.833443,56.770846],[-5.834332,56.771853],[-5.833397,56.772965],[-5.834844,56.773915],[-5.834692,56.775866],[-5.836856,56.778042],[-5.84042,56.778539],[-5.84384,56.778515],[-5.846653,56.778154],[-5.847518,56.779004],[-5.849561,56.778512],[-5.852644,56.779794],[-5.853732,56.778187],[-5.855104,56.777434],[-5.854069,56.77302],[-5.851771,56.772003],[-5.852447,56.771496],[-5.854307,56.772302],[-5.855034,56.771635],[-5.854024,56.770518],[-5.855859,56.769188],[-5.857135,56.772097],[-5.856565,56.773405],[-5.857877,56.773823],[-5.858102,56.775287],[-5.857348,56.776893],[-5.858154,56.777866],[-5.859655,56.778287],[-5.862712,56.777837],[-5.865859,56.778337],[-5.866188,56.780179],[-5.868229,56.780835],[-5.87188,56.781373],[-5.872021,56.782336],[-5.873754,56.784053],[-5.875614,56.783905],[-5.879311,56.784158],[-5.879957,56.783587],[-5.881851,56.783626],[-5.882526,56.78445],[-5.886931,56.785302],[-5.888512,56.784043],[-5.888167,56.783083],[-5.890277,56.78067],[-5.893015,56.779204],[-5.893813,56.777375],[-5.890802,56.77511],[-5.892316,56.775234],[-5.893783,56.77414],[-5.892608,56.772756],[-5.891756,56.772832],[-5.889147,56.771911],[-5.888853,56.770743],[-5.887346,56.770335],[-5.885648,56.771188],[-5.882625,56.770457],[-5.883983,56.76897],[-5.883932,56.766778],[-5.886487,56.765516],[-5.883212,56.764323],[-5.879893,56.763658],[-5.876403,56.764423],[-5.873628,56.762045],[-5.871307,56.762313],[-5.868812,56.761462],[-5.866115,56.759833],[-5.864254,56.760354],[-5.861855,56.758493],[-5.860202,56.758944],[-5.858302,56.758681],[-5.856749,56.76033],[-5.857291,56.761254],[-5.854594,56.761405],[-5.852133,56.760798],[-5.85258,56.759874],[-5.849809,56.75868],[-5.850175,56.757509],[-5.851922,56.756842],[-5.851631,56.755026],[-5.853042,56.75448],[-5.852439,56.752578],[-5.850458,56.751853],[-5.848868,56.751915],[-5.848107,56.753171],[-5.846162,56.75303],[-5.842149,56.75068],[-5.842034,56.749384],[-5.83996,56.748719],[-5.842653,56.748121],[-5.84512,56.749343],[-5.843603,56.750274],[-5.844574,56.751218],[-5.845737,56.749585],[-5.846448,56.746258],[-5.849667,56.746298],[-5.852034,56.747119],[-5.851357,56.74522],[-5.848878,56.745935],[-5.84819,56.745129],[-5.846585,56.745521],[-5.844747,56.744469],[-5.845284,56.742639],[-5.84432,56.74132],[-5.841628,56.740802],[-5.844647,56.739395],[-5.846026,56.739981],[-5.846017,56.740697],[-5.850416,56.742579],[-5.852839,56.741398],[-5.854618,56.742152],[-5.856647,56.742395],[-5.859868,56.742129],[-5.86096,56.742886],[-5.86549,56.743173],[-5.867217,56.742472],[-5.868999,56.742929],[-5.870247,56.742099],[-5.872713,56.743321],[-5.873736,56.744679],[-5.875783,56.744844],[-5.877045,56.745502],[-5.875453,56.746172],[-5.874896,56.74783],[-5.873454,56.747736],[-5.873327,56.749205],[-5.870035,56.750445],[-5.869917,56.751452],[-5.87186,56.752119],[-5.872185,56.753283],[-5.87163,56.754568],[-5.869694,56.755478],[-5.871103,56.755973],[-5.872603,56.757335],[-5.874145,56.757772],[-5.877495,56.759461],[-5.878823,56.759874],[-5.881743,56.761951],[-5.882992,56.761722],[-5.883883,56.76267],[-5.886265,56.762978],[-5.888154,56.762636],[-5.889042,56.761812],[-5.888807,56.759855],[-5.89064,56.75795],[-5.892352,56.757649],[-5.894641,56.758013],[-5.895276,56.756879],[-5.894725,56.755886],[-5.895895,56.755277],[-5.897582,56.755754],[-5.898379,56.753967],[-5.896464,56.753381],[-5.900413,56.752748],[-5.903553,56.751939],[-5.903572,56.751255],[-5.906309,56.750666],[-5.906535,56.750187],[-5.908953,56.750061],[-5.909777,56.75205],[-5.911634,56.752632],[-5.915046,56.753224],[-5.914937,56.755875],[-5.91586,56.757739],[-5.917381,56.758977],[-5.917868,56.760828],[-5.921118,56.762474],[-5.924371,56.763055],[-5.926989,56.764196],[-5.928292,56.764064],[-5.929845,56.765692],[-5.931042,56.765466],[-5.933415,56.767252],[-5.934596,56.76735],[-5.936426,56.769895],[-5.937498,56.769884],[-5.940198,56.772132],[-5.941854,56.772929],[-5.942949,56.774387],[-5.944891,56.775027],[-5.946184,56.777436],[-5.94548,56.778057],[-5.949058,56.779058],[-5.949913,56.778703],[-5.953176,56.780447],[-5.956429,56.782641],[-5.961992,56.784281],[-5.962955,56.783553],[-5.965926,56.784691],[-5.967781,56.783562],[-5.966083,56.782689],[-5.967106,56.781056],[-5.965898,56.779233],[-5.968236,56.779501],[-5.970138,56.77882],[-5.969852,56.777358],[-5.968305,56.775434],[-5.968165,56.774341],[-5.969957,56.774329],[-5.970393,56.773187],[-5.971675,56.772296],[-5.97359,56.773989],[-5.975638,56.774429],[-5.978526,56.773273],[-5.977438,56.772904],[-5.976213,56.770919],[-5.980562,56.769692],[-5.982878,56.768679],[-5.984678,56.768742],[-5.987842,56.768317],[-5.990794,56.769055],[-5.993702,56.769447],[-5.995031,56.769085],[-5.99686,56.769809],[-5.996902,56.770513],[-6.000303,56.769927],[-6.000218,56.768985],[-6.001379,56.768558],[-6.002749,56.769449],[-6.004295,56.768819],[-6.008497,56.769597],[-6.012366,56.772087],[-6.013845,56.77228],[-6.014496,56.771372],[-6.013898,56.770226],[-6.012834,56.76972],[-6.014777,56.768499],[-6.015353,56.766776],[-6.016501,56.765847],[-6.0167,56.764561],[-6.018835,56.764279],[-6.023318,56.764293],[-6.02445,56.765071],[-6.028903,56.766101],[-6.031412,56.765678],[-6.030324,56.764218],[-6.03225,56.763173],[-6.033879,56.76349],[-6.036683,56.763153],[-6.04119,56.764055],[-6.045125,56.764458],[-6.04582,56.765178],[-6.04962,56.765419],[-6.05244,56.764573],[-6.050957,56.762755],[-6.050307,56.761222],[-6.051779,56.760305],[-6.05365,56.76032],[-6.056282,56.763363],[-6.05714,56.761759],[-6.057174,56.760571],[-6.060352,56.759454],[-6.06464,56.758525],[-6.069059,56.760101],[-6.070686,56.759553],[-6.072057,56.760421],[-6.074461,56.760176],[-6.075574,56.761182],[-6.077001,56.761244],[-6.079221,56.762844],[-6.081722,56.762433],[-6.085943,56.763154],[-6.086503,56.762582],[-6.088752,56.762482],[-6.089717,56.76285],[-6.093041,56.76217],[-6.091773,56.761353],[-6.092865,56.76071],[-6.095015,56.76076],[-6.095796,56.761917],[-6.097165,56.76238],[-6.098078,56.763623],[-6.100011,56.765052],[-6.104166,56.765234],[-6.106448,56.764997],[-6.112598,56.765005],[-6.116256,56.765586],[-6.117969,56.765601],[-6.121394,56.764283],[-6.124017,56.764313],[-6.127019,56.76362],[-6.12883,56.76378],[-6.130567,56.7629],[-6.133233,56.762056],[-6.138133,56.762167],[-6.138757,56.760402],[-6.142578,56.761862],[-6.143424,56.761447],[-6.145423,56.761754],[-6.145376,56.760213],[-6.147797,56.761158],[-6.148309,56.759715],[-6.149813,56.76007],[-6.150684,56.758604],[-6.152748,56.75981],[-6.155095,56.759125],[-6.156464,56.759362],[-6.154598,56.756848],[-6.155856,56.755794],[-6.155953,56.754815],[-6.159576,56.7542],[-6.160225,56.753108],[-6.162366,56.753374],[-6.16442,56.752702],[-6.165428,56.753231],[-6.169843,56.752305],[-6.170439,56.753175],[-6.173345,56.753617],[-6.175598,56.755628],[-6.17678,56.754923],[-6.178856,56.754889],[-6.181884,56.754226],[-6.183476,56.754928],[-6.186403,56.754451],[-6.19121,56.753368],[-6.189395,56.752287],[-6.189748,56.751396],[-6.187573,56.750452],[-6.189392,56.749517],[-6.185167,56.748745],[-6.18326,56.748824],[-6.184441,56.746253],[-6.189141,56.745874],[-6.1875,56.745211],[-6.185878,56.745941],[-6.184972,56.745504],[-6.182471,56.745326],[-6.181165,56.743982],[-6.181031,56.742567],[-6.181633,56.741896],[-6.18097,56.740569],[-6.181853,56.740104],[-6.181403,56.739049],[-6.18351,56.738177],[-6.183535,56.736715],[-6.185534,56.736148],[-6.189739,56.73549],[-6.188354,56.734516],[-6.188901,56.734057],[-6.195497,56.73628],[-6.197801,56.736693],[-6.197834,56.737793],[-6.199393,56.737615],[-6.201456,56.738312],[-6.203564,56.737087],[-6.205439,56.737465],[-6.207048,56.737131],[-6.207356,56.736019],[-6.20928,56.735819],[-6.211828,56.73424],[-6.209617,56.733933],[-6.210021,56.732722],[-6.208248,56.731632],[-6.207703,56.730648],[-6.210142,56.72905],[-6.210395,56.728236],[-6.21216,56.727929],[-6.212617,56.72581],[-6.217264,56.727496],[-6.222258,56.727893],[-6.223922,56.726771],[-6.225347,56.727634],[-6.226904,56.727825],[-6.227232,56.725795],[-6.226236,56.724718],[-6.223744,56.724812],[-6.221833,56.723964],[-6.221916,56.721205],[-6.224021,56.721165],[-6.224017,56.71705],[-6.223783,56.71584],[-6.226414,56.716839],[-6.227943,56.715604],[-6.227037,56.714241],[-6.224316,56.713964],[-6.225229,56.713066],[-6.226677,56.712994],[-6.226307,56.711523],[-6.223184,56.709048],[-6.222071,56.708676],[-6.221657,56.707467],[-6.219632,56.706579],[-6.218226,56.704843],[-6.218648,56.704036],[-6.218062,56.70289],[-6.215863,56.701503],[-6.214086,56.701694],[-6.213465,56.700159],[-6.210545,56.698316],[-6.209926,56.698777],[-6.208018,56.697569],[-6.207163,56.696065],[-6.200885,56.693566],[-6.197169,56.693143],[-6.196366,56.693642],[-6.193137,56.692824],[-6.192139,56.693254],[-6.189854,56.69093],[-6.190215,56.690068],[-6.188326,56.68836],[-6.184427,56.687317],[-6.180738,56.687284],[-6.176564,56.686628],[-6.172078,56.687067],[-6.170106,56.686234],[-6.168547,56.68647],[-6.16342,56.68621],[-6.159527,56.687213],[-6.158712,56.686633],[-6.155892,56.685662],[-6.153106,56.685215],[-6.148217,56.683405],[-6.146522,56.683371],[-6.144617,56.682765],[-6.141618,56.683355],[-6.135857,56.685048],[-6.133923,56.686481],[-6.132525,56.686745],[-6.133098,56.687722],[-6.131703,56.68847],[-6.12943,56.690569],[-6.122045,56.694328],[-6.120772,56.694415],[-6.118485,56.695737],[-6.117745,56.696634],[-6.114848,56.696502],[-6.114294,56.695667],[-6.109903,56.69747],[-6.108421,56.696508],[-6.109378,56.696135],[-6.106945,56.694246],[-6.108051,56.693354],[-6.110634,56.693352],[-6.111452,56.692945],[-6.112085,56.691248],[-6.110391,56.690931],[-6.108078,56.691903],[-6.107067,56.692765],[-6.104765,56.691854],[-6.102731,56.691635],[-6.098464,56.690239],[-6.097671,56.688732],[-6.09641,56.687887],[-6.093905,56.688539],[-6.095875,56.689425],[-6.094663,56.690449],[-6.092955,56.691198],[-6.086719,56.691415],[-6.085716,56.692323],[-6.08546,56.693385],[-6.083635,56.693842],[-6.080356,56.692731],[-6.078511,56.692801],[-6.077334,56.692268],[-6.07398,56.692679],[-6.069076,56.693649],[-6.063137,56.693839],[-6.055745,56.692966],[-6.053151,56.693235],[-6.051521,56.69304],[-6.049494,56.69182],[-6.049103,56.69115],[-6.047015,56.691186],[-6.043633,56.689902],[-6.041343,56.686223],[-6.038294,56.685521],[-6.03698,56.684085],[-6.035115,56.683534],[-6.034424,56.682805],[-6.032884,56.682536],[-6.031123,56.680655],[-6.030203,56.680307],[-6.026299,56.680848],[-6.025018,56.681393],[-6.021931,56.681326],[-6.02047,56.682106],[-6.015241,56.682786],[-6.013157,56.682779],[-6.009715,56.681833],[-6.009158,56.682579],[-6.005146,56.682722],[-6.003785,56.683373],[-6.000133,56.682987],[-5.998231,56.682309],[-5.996562,56.68236],[-5.9943,56.681358],[-5.992322,56.682348],[-5.991901,56.683161],[-5.987418,56.684874],[-5.985137,56.683965],[-5.98435,56.68324],[-5.986209,56.682284],[-5.986683,56.681284],[-5.986466,56.678998],[-5.98569,56.677916],[-5.984389,56.677336],[-5.980044,56.673461],[-5.974268,56.672428],[-5.971657,56.672844],[-5.970935,56.673896],[-5.971763,56.675547],[-5.970801,56.678119],[-5.972506,56.680705],[-5.972414,56.681781],[-5.970778,56.682086],[-5.969185,56.681012],[-5.965557,56.681068],[-5.963456,56.680434],[-5.961701,56.681065],[-5.962213,56.68376],[-5.960872,56.685525],[-5.959427,56.685782],[-5.9574,56.685532],[-5.957663,56.684773],[-5.956371,56.683443],[-5.954545,56.68324],[-5.952399,56.682409],[-5.951024,56.683626],[-5.952575,56.685407],[-5.951324,56.686026],[-5.949808,56.686004],[-5.949035,56.686989],[-5.947357,56.687283],[-5.946408,56.688138],[-5.944432,56.687491],[-5.942873,56.687411],[-5.938644,56.688326],[-5.935551,56.686198],[-5.931929,56.685629],[-5.929927,56.683147],[-5.928817,56.683669],[-5.926783,56.682751],[-5.927371,56.680144],[-5.928717,56.680439],[-5.928389,56.677455],[-5.927189,56.676909],[-5.926206,56.675708],[-5.921679,56.675527],[-5.921148,56.677487],[-5.916483,56.676846],[-5.915464,56.677103],[-5.912489,56.676922],[-5.912192,56.675947],[-5.910736,56.675615],[-5.907961,56.676107],[-5.907659,56.677366],[-5.906361,56.679179],[-5.904361,56.679664],[-5.902822,56.678296],[-5.904031,56.676406],[-5.899322,56.676127],[-5.898697,56.674928],[-5.896736,56.674409],[-5.895246,56.673431],[-5.893687,56.673992],[-5.893599,56.674723],[-5.892087,56.675103],[-5.891395,56.675916],[-5.88866,56.676564],[-5.887693,56.675416],[-5.885915,56.674649],[-5.882425,56.675202],[-5.882406,56.67595],[-5.879687,56.676035],[-5.87677,56.677371],[-5.873237,56.676928],[-5.871828,56.678078],[-5.8699,56.678228],[-5.867587,56.679705],[-5.860879,56.6809],[-5.858469,56.680337],[-5.856926,56.678824],[-5.855731,56.678407],[-5.853951,56.676364],[-5.851004,56.675497],[-5.850226,56.67401],[-5.846851,56.674151],[-5.845663,56.675226],[-5.843448,56.675294],[-5.842972,56.674383],[-5.83881,56.674822],[-5.836211,56.675922],[-5.835553,56.674909],[-5.833956,56.676316],[-5.83489,56.677316],[-5.827077,56.680794],[-5.827028,56.681358],[-5.824743,56.682102],[-5.823327,56.683279],[-5.820151,56.684343],[-5.818851,56.683681],[-5.81765,56.685054],[-5.813739,56.685879],[-5.812115,56.685511],[-5.80978,56.687039],[-5.807256,56.690034],[-5.805248,56.690608],[-5.805239,56.691652],[-5.803115,56.69311],[-5.799659,56.693602],[-5.799998,56.694532],[-5.797725,56.694924],[-5.796589,56.695652],[-5.794057,56.696304],[-5.791021,56.699351],[-5.790665,56.701002],[-5.788765,56.702913],[-5.786636,56.703926],[-5.785179,56.703903],[-5.785454,56.705367],[-5.784454,56.706047],[-5.781206,56.706586],[-5.779205,56.705946],[-5.780472,56.70798],[-5.779216,56.708337],[-5.778754,56.709515],[-5.778426,56.712559],[-5.777897,56.713355],[-5.779081,56.71406],[-5.779156,56.715668],[-5.777674,56.716795],[-5.776383,56.716297],[-5.775085,56.714968],[-5.774535,56.713167],[-5.773086,56.71194],[-5.773733,56.711415],[-5.772872,56.709793],[-5.771345,56.708666],[-5.769843,56.708275],[-5.766678,56.709153],[-5.76535,56.710016],[-5.761179,56.710484],[-5.759825,56.711882],[-5.758755,56.712153],[-5.758113,56.710478],[-5.759577,56.710564],[-5.760589,56.709243],[-5.759374,56.708534],[-5.755806,56.707428],[-5.753398,56.708521],[-5.752538,56.70941],[-5.748694,56.709467],[-5.745939,56.71053],[-5.741756,56.710386],[-5.740362,56.711004],[-5.735744,56.711331],[-5.732568,56.711953],[-5.730111,56.711653],[-5.729232,56.710951],[-5.727048,56.710855],[-5.723193,56.711288],[-5.722095,56.710608],[-5.718869,56.710551],[-5.717678,56.710245],[-5.715631,56.708553],[-5.712884,56.707443],[-5.713214,56.706751],[-5.712394,56.705157],[-5.709557,56.704401],[-5.706756,56.70434],[-5.702995,56.70216],[-5.703585,56.701009],[-5.701917,56.700088],[-5.699115,56.700509],[-5.6978,56.700269],[-5.698078,56.699357],[-5.694999,56.69921],[-5.691319,56.698506],[-5.68962,56.696767],[-5.685767,56.694634],[-5.68543,56.693771],[-5.684009,56.693364],[-5.68169,56.693968],[-5.680201,56.692686],[-5.678328,56.691667],[-5.682046,56.691673],[-5.683197,56.690992],[-5.685863,56.691025],[-5.685202,56.690239],[-5.68196,56.689959],[-5.679817,56.689011],[-5.676259,56.6893],[-5.673596,56.689882],[-5.672049,56.689523],[-5.670161,56.689925],[-5.667232,56.687701],[-5.666109,56.688669],[-5.664849,56.687807],[-5.664119,56.686525],[-5.662156,56.685819],[-5.661869,56.68505],[-5.659444,56.684725],[-5.659173,56.683034],[-5.658362,56.682586],[-5.65478,56.681932],[-5.652881,56.682154],[-5.651379,56.682921],[-5.649735,56.682577],[-5.648846,56.683508],[-5.649051,56.684271],[-5.646528,56.684287],[-5.646219,56.682943],[-5.643677,56.683179],[-5.64338,56.684168],[-5.638866,56.6847],[-5.633986,56.684573],[-5.632543,56.684094],[-5.630419,56.685365],[-5.624656,56.686508],[-5.616032,56.68968],[-5.611301,56.689068],[-5.606118,56.688635],[-5.603518,56.689601],[-5.598421,56.690474],[-5.59554,56.691352],[-5.592884,56.689545],[-5.593332,56.688971],[-5.59214,56.68816],[-5.589373,56.688609],[-5.587944,56.689173],[-5.583808,56.689012],[-5.577274,56.691119],[-5.574892,56.69082],[-5.573539,56.691358],[-5.57367,56.69251],[-5.572243,56.692475],[-5.570646,56.69321],[-5.568574,56.692264],[-5.568544,56.691202],[-5.560324,56.687571],[-5.548987,56.68858],[-5.542877,56.688186],[-5.541589,56.687774],[-5.539408,56.688311],[-5.534313,56.688924],[-5.535847,56.687343],[-5.535948,56.685807],[-5.533977,56.68473],[-5.535279,56.684334],[-5.537948,56.684658],[-5.538587,56.68433],[-5.544335,56.683532],[-5.550076,56.683867],[-5.553676,56.683679],[-5.557897,56.683055],[-5.56043,56.682974],[-5.573032,56.681857],[-5.58093,56.68212],[-5.589309,56.68142],[-5.598217,56.681828],[-5.60129,56.681676],[-5.603646,56.681113],[-5.606187,56.67823],[-5.608097,56.676995],[-5.610295,56.676699],[-5.61207,56.67698],[-5.619242,56.676664],[-5.622465,56.676889],[-5.623454,56.677238],[-5.62631,56.676204],[-5.629224,56.675676],[-5.63566,56.678397],[-5.639972,56.677686],[-5.642326,56.676979],[-5.645244,56.677509],[-5.64831,56.676367],[-5.651976,56.676781],[-5.655248,56.676164],[-5.660753,56.676676],[-5.662176,56.67645],[-5.664146,56.677053],[-5.665371,56.677893],[-5.66859,56.677198],[-5.673789,56.677015],[-5.678383,56.678084],[-5.679783,56.681886],[-5.683754,56.682825],[-5.68891,56.683347],[-5.691466,56.682925],[-5.693294,56.682992],[-5.69801,56.683931],[-5.698653,56.683417],[-5.701734,56.682431],[-5.702213,56.681899],[-5.704623,56.681661],[-5.708182,56.684378],[-5.708619,56.685503],[-5.708205,56.686603],[-5.716966,56.691201],[-5.719681,56.694784],[-5.722801,56.697248],[-5.723972,56.696777],[-5.727147,56.696414],[-5.728388,56.697971],[-5.733769,56.698758],[-5.734884,56.699458],[-5.737344,56.700116],[-5.738661,56.699722],[-5.739979,56.700478],[-5.740928,56.699672],[-5.744845,56.700929],[-5.747405,56.699805],[-5.747924,56.698863],[-5.753078,56.697692],[-5.756004,56.695733],[-5.759387,56.695411],[-5.761256,56.694644],[-5.763466,56.695013],[-5.766961,56.694422],[-5.768825,56.692396],[-5.773851,56.691511],[-5.774975,56.690484],[-5.778543,56.689656],[-5.780302,56.688677],[-5.780535,56.688017],[-5.7827,56.686068],[-5.784266,56.685224],[-5.784522,56.683796],[-5.785521,56.683325],[-5.785687,56.682299],[-5.791547,56.679086],[-5.801238,56.676542],[-5.806404,56.675539],[-5.807505,56.675033],[-5.80808,56.67386],[-5.813598,56.671974],[-5.814729,56.670883],[-5.818877,56.670481],[-5.820374,56.669302],[-5.819126,56.666945],[-5.822264,56.667405],[-5.826007,56.666396],[-5.828304,56.666262],[-5.830573,56.665046],[-5.830216,56.664099],[-5.832803,56.663815],[-5.834548,56.662702],[-5.836425,56.662294],[-5.838234,56.661384],[-5.838842,56.660457],[-5.844581,56.659182],[-5.849168,56.660529],[-5.849788,56.661223],[-5.852247,56.661903],[-5.854528,56.661136],[-5.856661,56.661398],[-5.863007,56.660149],[-5.865923,56.658574],[-5.868984,56.657931],[-5.870547,56.6571],[-5.871983,56.657091],[-5.874582,56.65625],[-5.874505,56.655016],[-5.877059,56.654613],[-5.878311,56.653454],[-5.879582,56.653037],[-5.879944,56.651079],[-5.877683,56.647584],[-5.878134,56.646968],[-5.87705,56.645235],[-5.875854,56.644953],[-5.873309,56.643054],[-5.871705,56.642524],[-5.868947,56.642291],[-5.868744,56.641349],[-5.86538,56.640927],[-5.865113,56.638804],[-5.860864,56.637943],[-5.858592,56.637263],[-5.856105,56.63712],[-5.85254,56.638075],[-5.848429,56.637929],[-5.842933,56.635117],[-5.840638,56.634969],[-5.83949,56.632662],[-5.836841,56.632047],[-5.835211,56.630137],[-5.832783,56.629677],[-5.831006,56.628563],[-5.827408,56.628071],[-5.825623,56.62648],[-5.826429,56.625705],[-5.826145,56.62442],[-5.827514,56.622145],[-5.830686,56.62115],[-5.831795,56.622519],[-5.835664,56.623514],[-5.839575,56.625803],[-5.841388,56.627752],[-5.840632,56.628661],[-5.841558,56.629505],[-5.845939,56.630628],[-5.847256,56.630421],[-5.851144,56.630952],[-5.853657,56.63096],[-5.856521,56.632089],[-5.857268,56.634445],[-5.858612,56.634426],[-5.861113,56.635593],[-5.864665,56.635937],[-5.86533,56.637413],[-5.866369,56.63712],[-5.867652,56.638181],[-5.869378,56.638299],[-5.870375,56.639275],[-5.873084,56.638237],[-5.875287,56.638064],[-5.876099,56.638997],[-5.875741,56.640519],[-5.876827,56.641241],[-5.882891,56.64173],[-5.883609,56.64102],[-5.882533,56.640159],[-5.883323,56.639666],[-5.886081,56.640614],[-5.88692,56.639648],[-5.888861,56.640118],[-5.891545,56.6394],[-5.893253,56.640453],[-5.893545,56.641307],[-5.892298,56.642982],[-5.891886,56.644214],[-5.892459,56.645419],[-5.892101,56.646774],[-5.892913,56.647999],[-5.892376,56.648721],[-5.892953,56.649728],[-5.89412,56.650267],[-5.896154,56.652038],[-5.899055,56.652387],[-5.900849,56.652997],[-5.904001,56.655541],[-5.904971,56.657413],[-5.906261,56.657808],[-5.908224,56.657616],[-5.90821,56.656299],[-5.912344,56.656646],[-5.913364,56.65593],[-5.915164,56.656049],[-5.915904,56.654533],[-5.917424,56.655416],[-5.917453,56.652389],[-5.918741,56.65212],[-5.920667,56.653511],[-5.920969,56.652209],[-5.924338,56.652122],[-5.928423,56.651144],[-5.934455,56.652086],[-5.938907,56.651801],[-5.939531,56.652465],[-5.942544,56.65365],[-5.941977,56.65451],[-5.943489,56.655662],[-5.946236,56.655467],[-5.950087,56.656068],[-5.951925,56.655385],[-5.953183,56.652955],[-5.954614,56.652269],[-5.958814,56.652266],[-5.962729,56.651075],[-5.963858,56.650405],[-5.96944,56.650322],[-5.97252,56.649418],[-5.979008,56.649562],[-5.979681,56.649212],[-5.98325,56.64939],[-5.983738,56.649145],[-5.987704,56.649085],[-5.99552,56.650035],[-5.998481,56.64917],[-6.000189,56.649039],[-6.001797,56.649806],[-6.003539,56.649687],[-6.003135,56.648647],[-6.00393,56.648145],[-6.00325,56.646351],[-6.00509,56.646152],[-6.006822,56.644941],[-6.006786,56.641219],[-6.005996,56.640467],[-6.005129,56.637221],[-6.001678,56.633843],[-6.003114,56.632759],[-6.002731,56.630541],[-6.003777,56.630101],[-6.003956,56.628937],[-6.002886,56.626764],[-6.004843,56.625995],[-6.004634,56.624563],[-6.003442,56.624777],[-6.00081,56.622878],[-5.999583,56.621614],[-5.999689,56.620689],[-6.001466,56.620371],[-6.000673,56.619583],[-5.997965,56.618892],[-5.996139,56.617587],[-5.99355,56.616778],[-5.989021,56.613625],[-5.987177,56.613975],[-5.984668,56.612946],[-5.982376,56.613373],[-5.981118,56.61231],[-5.980571,56.610851],[-5.978329,56.61035],[-5.978392,56.609166],[-5.976129,56.605601],[-5.977222,56.605289],[-5.975694,56.602549],[-5.974511,56.601764],[-5.973598,56.600215],[-5.975609,56.599833],[-5.974115,56.598395],[-5.975094,56.597543],[-5.972776,56.596491],[-5.968841,56.594346],[-5.966442,56.591991],[-5.963018,56.590614],[-5.962706,56.589462],[-5.95911,56.58571],[-5.96028,56.584976],[-5.96076,56.583495],[-5.95964,56.582447],[-5.957708,56.582819],[-5.954138,56.581485],[-5.953396,56.580542],[-5.947618,56.578653],[-5.94638,56.578813],[-5.944619,56.578245],[-5.94396,56.577011],[-5.944492,56.575623],[-5.944216,56.574701],[-5.939812,56.570808],[-5.937191,56.568872],[-5.93591,56.568454],[-5.935514,56.56755],[-5.932812,56.568265],[-5.929865,56.566479],[-5.928239,56.564619],[-5.925207,56.56177],[-5.922087,56.560736],[-5.918292,56.560092],[-5.91301,56.557673],[-5.911106,56.557216],[-5.910309,56.55636],[-5.907659,56.555764],[-5.906718,56.555007],[-5.906492,56.553607],[-5.904588,56.551167],[-5.902933,56.551305],[-5.899356,56.550401],[-5.897512,56.550517],[-5.894915,56.549875],[-5.892641,56.550243],[-5.890932,56.550013],[-5.889369,56.550642],[-5.885689,56.551198],[-5.884552,56.551697],[-5.881679,56.551067],[-5.878398,56.54907],[-5.875971,56.549376],[-5.873263,56.549006],[-5.869645,56.548089],[-5.868381,56.546874],[-5.866664,56.547221],[-5.864524,56.546239],[-5.865201,56.545301],[-5.864491,56.544239],[-5.862183,56.544433],[-5.857309,56.544049],[-5.854131,56.544009],[-5.852155,56.544587],[-5.851694,56.543976],[-5.849469,56.543861],[-5.846191,56.542358],[-5.844137,56.543499],[-5.841628,56.543073],[-5.841284,56.54228],[-5.837789,56.540392],[-5.836795,56.54054],[-5.8336,56.539366],[-5.829696,56.538503],[-5.822379,56.538728],[-5.816058,56.537933],[-5.813839,56.536843],[-5.810746,56.536249],[-5.808558,56.535043],[-5.80712,56.534863],[-5.804828,56.533543],[-5.802327,56.533439],[-5.80143,56.534399],[-5.800193,56.533677],[-5.798327,56.534027],[-5.794603,56.533373],[-5.792254,56.533817],[-5.790687,56.53321],[-5.788075,56.533177],[-5.784633,56.532353],[-5.783419,56.532473],[-5.781201,56.533617],[-5.780449,56.533266],[-5.777606,56.533444],[-5.775485,56.53457],[-5.775364,56.537637],[-5.774666,56.539127],[-5.774183,56.541996],[-5.771675,56.543534],[-5.770745,56.545635],[-5.766896,56.549069],[-5.765353,56.553279],[-5.763846,56.55466],[-5.761169,56.556068],[-5.75651,56.55964],[-5.754016,56.56094],[-5.74814,56.562862],[-5.743366,56.563247],[-5.741938,56.562769],[-5.743394,56.561035],[-5.743489,56.560077],[-5.745455,56.558369],[-5.745587,56.557209],[-5.747217,56.554597],[-5.75423,56.551607],[-5.756868,56.549153],[-5.756916,56.547996],[-5.755696,56.546932],[-5.755275,56.545807],[-5.756667,56.544421],[-5.75715,56.542064],[-5.760005,56.540903],[-5.763482,56.53774],[-5.764845,56.537099],[-5.766932,56.537244],[-5.76827,56.537937],[-5.770532,56.538114],[-5.771263,56.537756],[-5.772625,56.535907],[-5.771397,56.532545],[-5.769142,56.531257],[-5.767255,56.530696],[-5.764343,56.528818],[-5.762862,56.526201],[-5.761039,56.524372],[-5.757014,56.52146],[-5.755911,56.520082],[-5.755665,56.518856],[-5.753383,56.518214],[-5.752433,56.51886],[-5.751254,56.521537],[-5.750962,56.524362],[-5.748131,56.524943],[-5.745633,56.525054],[-5.743369,56.524686],[-5.740599,56.523039],[-5.736969,56.521782],[-5.735648,56.520994],[-5.734795,56.519609],[-5.732756,56.518555],[-5.732975,56.517826],[-5.730402,56.517443],[-5.72917,56.516617],[-5.722611,56.515785],[-5.71637,56.515576],[-5.714201,56.515187],[-5.710028,56.515173],[-5.703592,56.513634],[-5.70159,56.513528],[-5.698824,56.512644],[-5.697133,56.512755],[-5.695562,56.512263],[-5.694027,56.51093],[-5.692417,56.507755],[-5.692472,56.50582],[-5.690506,56.502822],[-5.692,56.502305],[-5.69045,56.499321],[-5.688971,56.498327],[-5.687814,56.498626],[-5.686803,56.497586],[-5.685215,56.497139],[-5.682225,56.498159],[-5.679415,56.500189],[-5.677046,56.500744],[-5.675801,56.501563],[-5.67137,56.502315],[-5.667626,56.503527],[-5.666224,56.50365],[-5.663269,56.504793],[-5.65612,56.506528],[-5.651662,56.508188],[-5.646942,56.508475],[-5.642619,56.510446],[-5.638227,56.513654],[-5.632536,56.515021],[-5.628707,56.515533],[-5.625106,56.518525],[-5.622184,56.519949],[-5.616881,56.520199],[-5.615786,56.51988],[-5.609809,56.521852],[-5.60807,56.523072],[-5.606097,56.523821],[-5.603713,56.525226],[-5.601399,56.525527],[-5.598723,56.525357],[-5.593725,56.528316],[-5.592288,56.52882],[-5.588695,56.532323],[-5.58777,56.534641],[-5.581162,56.53611],[-5.57834,56.535778],[-5.576579,56.536076],[-5.576933,56.537005],[-5.575673,56.538291],[-5.572403,56.539299],[-5.569413,56.540678],[-5.567562,56.540979],[-5.565876,56.542718],[-5.561368,56.543984],[-5.559928,56.544686],[-5.559465,56.546943],[-5.560293,56.548308],[-5.560057,56.549451],[-5.557925,56.550471],[-5.553671,56.550242],[-5.550641,56.552816],[-5.547783,56.553593],[-5.547563,56.55515],[-5.545876,56.556264],[-5.546236,56.558546],[-5.544749,56.560131],[-5.543037,56.561096],[-5.542735,56.562301],[-5.540919,56.563253],[-5.539075,56.564909],[-5.535604,56.566304],[-5.534808,56.567423],[-5.532451,56.568291],[-5.531827,56.569],[-5.526742,56.57176],[-5.525705,56.572954],[-5.523353,56.574194],[-5.521564,56.577198],[-5.519233,56.579662],[-5.518562,56.582578],[-5.516662,56.585536],[-5.514112,56.586579],[-5.509926,56.589224],[-5.50876,56.591145],[-5.504115,56.594746],[-5.502578,56.595477],[-5.499492,56.599551],[-5.496062,56.60168],[-5.494908,56.604702],[-5.493824,56.605847],[-5.492194,56.606297],[-5.493058,56.607001],[-5.495588,56.607299],[-5.496316,56.607858],[-5.499562,56.607704],[-5.504064,56.609132],[-5.506719,56.609277],[-5.508287,56.610195],[-5.510514,56.610829],[-5.513991,56.61132],[-5.51651,56.61123],[-5.520136,56.612355],[-5.522005,56.613862],[-5.524502,56.614501],[-5.526985,56.614116],[-5.528504,56.61624],[-5.526206,56.616251],[-5.524292,56.617231],[-5.522017,56.61775],[-5.519103,56.6171],[-5.516939,56.616981],[-5.514826,56.617491],[-5.512402,56.617631],[-5.508957,56.616793],[-5.506595,56.616999],[-5.504265,56.616749],[-5.500303,56.615963],[-5.496122,56.614741],[-5.495093,56.613489],[-5.493471,56.612788],[-5.492213,56.611529],[-5.488579,56.610485],[-5.487876,56.612936],[-5.486642,56.61352],[-5.487725,56.614919],[-5.484524,56.616636],[-5.484028,56.615764],[-5.480183,56.61615],[-5.477702,56.615231],[-5.476951,56.615495],[-5.473218,56.61488],[-5.470271,56.615281],[-5.469269,56.615822],[-5.467913,56.617568],[-5.464889,56.619702],[-5.460179,56.622045],[-5.457616,56.624161],[-5.455428,56.624932],[-5.452443,56.6268],[-5.452071,56.628258],[-5.450675,56.629042],[-5.448301,56.63154],[-5.445417,56.632739],[-5.44389,56.632719],[-5.444067,56.63448],[-5.443059,56.635228],[-5.442161,56.636925],[-5.438006,56.63886],[-5.434162,56.642762],[-5.429177,56.643406],[-5.42762,56.644235],[-5.426109,56.644394],[-5.422695,56.646245],[-5.419122,56.646784],[-5.417465,56.647679],[-5.414221,56.647539],[-5.412586,56.646968],[-5.411792,56.645403],[-5.412056,56.643355],[-5.410345,56.642099],[-5.407923,56.642848],[-5.406415,56.642589],[-5.403549,56.644825],[-5.400911,56.645725],[-5.400021,56.646787],[-5.398783,56.646892],[-5.396378,56.649663],[-5.394734,56.649862],[-5.394521,56.650677],[-5.393008,56.651176],[-5.392876,56.652893],[-5.390989,56.653861],[-5.38942,56.655387],[-5.387762,56.655464],[-5.38537,56.657453],[-5.383022,56.657845],[-5.382768,56.658647],[-5.381105,56.658949],[-5.377914,56.660501],[-5.373271,56.664074],[-5.369233,56.665011],[-5.366835,56.667687],[-5.366412,56.669074],[-5.364362,56.670622],[-5.362336,56.671611],[-5.358352,56.672897],[-5.358353,56.673827],[-5.357078,56.674003],[-5.355193,56.675194],[-5.35538,56.676384],[-5.354232,56.67743],[-5.356286,56.678212],[-5.357857,56.680628],[-5.359877,56.681302],[-5.360829,56.682642],[-5.358752,56.682973],[-5.355362,56.682023],[-5.351795,56.685066],[-5.347102,56.686235],[-5.343839,56.687658],[-5.340801,56.687488],[-5.338616,56.689367],[-5.338132,56.69174],[-5.334127,56.693191],[-5.333295,56.693115],[-5.329339,56.694385],[-5.326042,56.69637],[-5.323256,56.696457],[-5.32104,56.697173],[-5.320653,56.698253],[-5.319056,56.700156],[-5.318846,56.701852],[-5.315606,56.703188],[-5.313101,56.705736],[-5.311254,56.706383],[-5.308179,56.708501],[-5.306635,56.70878],[-5.305607,56.710848],[-5.303016,56.712154],[-5.297982,56.712515],[-5.296066,56.71231],[-5.290788,56.711152],[-5.288362,56.710163],[-5.286463,56.708866],[-5.285987,56.708081],[-5.289295,56.706472],[-5.285944,56.703265],[-5.286498,56.701663],[-5.284129,56.700629],[-5.283053,56.700941],[-5.282646,56.702745],[-5.280534,56.704949],[-5.280118,56.706192],[-5.277539,56.707818],[-5.27587,56.711097],[-5.274059,56.712412],[-5.27105,56.71301],[-5.26899,56.714355],[-5.26633,56.715231],[-5.264516,56.716348],[-5.257285,56.716831],[-5.250018,56.718776],[-5.249512,56.71943],[-5.244659,56.71978],[-5.242651,56.720403],[-5.242066,56.72155],[-5.243685,56.722664],[-5.253171,56.727252],[-5.256437,56.730651],[-5.256509,56.731999],[-5.253799,56.734522],[-5.254215,56.736446],[-5.253187,56.73797],[-5.249751,56.738819],[-5.247779,56.739936],[-5.247296,56.741183],[-5.24502,56.742749],[-5.244509,56.743717],[-5.24131,56.744878],[-5.239743,56.74615],[-5.237244,56.74724],[-5.236535,56.748323],[-5.233565,56.749165],[-5.230584,56.751125],[-5.230836,56.752161],[-5.230352,56.753576],[-5.231872,56.755267],[-5.231462,56.758105],[-5.233555,56.7597],[-5.238821,56.761078],[-5.239436,56.761759],[-5.236844,56.76264],[-5.237704,56.763503],[-5.238272,56.765151],[-5.237723,56.766096],[-5.232806,56.766781],[-5.23026,56.768676],[-5.227271,56.768857],[-5.22575,56.769539],[-5.224675,56.768938],[-5.219372,56.768086],[-5.22072,56.766438],[-5.220588,56.764513],[-5.219215,56.765299],[-5.217651,56.765573],[-5.217091,56.767543],[-5.212742,56.768751],[-5.21079,56.770806],[-5.206266,56.773643],[-5.205178,56.773818],[-5.204316,56.774843],[-5.200678,56.775867],[-5.197627,56.777527],[-5.191883,56.782371],[-5.188992,56.784005],[-5.184995,56.785253],[-5.183114,56.786434],[-5.181146,56.78679],[-5.178931,56.788864],[-5.176693,56.789609],[-5.174035,56.791007],[-5.170108,56.794279],[-5.166744,56.796038],[-5.165913,56.797731],[-5.161533,56.799627],[-5.15604,56.800215],[-5.155422,56.802105],[-5.152512,56.802846],[-5.152241,56.804796],[-5.15271,56.805164],[-5.151598,56.806678],[-5.149554,56.807343],[-5.143856,56.811389],[-5.140073,56.813076],[-5.138833,56.814451],[-5.137659,56.817208],[-5.135027,56.818249],[-5.133712,56.819831],[-5.131564,56.820726],[-5.128008,56.821189],[-5.126983,56.822125],[-5.126095,56.824133],[-5.123533,56.825707],[-5.122715,56.827209],[-5.125252,56.82851],[-5.125273,56.830132],[-5.123337,56.83218],[-5.123805,56.834065],[-5.12538,56.834556],[-5.126996,56.834179],[-5.132148,56.83471],[-5.139936,56.836449],[-5.147644,56.83622],[-5.150432,56.836472],[-5.153092,56.837094],[-5.154879,56.837931],[-5.156732,56.838198],[-5.161782,56.840299],[-5.163333,56.841224],[-5.163875,56.842339],[-5.167719,56.842882],[-5.169584,56.84389],[-5.171951,56.844635],[-5.17509,56.8447],[-5.179114,56.845446],[-5.179881,56.846069],[-5.187323,56.846014],[-5.189342,56.845355],[-5.190882,56.845424],[-5.194691,56.844697],[-5.199021,56.844114],[-5.201079,56.845167],[-5.203543,56.845495],[-5.207262,56.845444],[-5.211739,56.844376],[-5.215983,56.844042],[-5.217914,56.844365],[-5.220102,56.84368],[-5.221153,56.843981],[-5.22345,56.843315],[-5.224975,56.843594],[-5.227928,56.842839],[-5.23198,56.842662],[-5.233576,56.842243],[-5.235664,56.84325],[-5.237218,56.842724],[-5.241629,56.84252],[-5.243164,56.842161],[-5.247137,56.842206],[-5.252148,56.842673],[-5.254752,56.842538],[-5.258547,56.84412],[-5.259327,56.843465],[-5.261211,56.843911],[-5.261848,56.845197],[-5.264081,56.844662],[-5.26491,56.843724],[-5.275206,56.84545],[-5.281993,56.845873],[-5.28674,56.847056],[-5.290682,56.84693],[-5.302691,56.847588],[-5.307051,56.847081],[-5.309274,56.846532],[-5.310833,56.847462],[-5.313507,56.847377],[-5.31603,56.847796],[-5.317298,56.84934],[-5.318898,56.849063],[-5.32265,56.849934],[-5.324571,56.851245],[-5.327838,56.852183],[-5.331029,56.85403],[-5.33501,56.85507],[-5.335771,56.856704],[-5.334713,56.85937],[-5.33183,56.860171],[-5.328219,56.859701],[-5.327064,56.858896],[-5.325619,56.858701],[-5.319316,56.859053],[-5.317788,56.858846],[-5.315396,56.857962],[-5.305754,56.856181],[-5.291117,56.855794],[-5.285388,56.854795],[-5.282398,56.855096],[-5.279051,56.854099],[-5.27499,56.853975],[-5.270772,56.854851],[-5.268536,56.854286],[-5.265856,56.8544],[-5.2629,56.853272],[-5.260171,56.853794],[-5.255763,56.852999],[-5.256391,56.854185],[-5.254163,56.85459],[-5.252592,56.854298],[-5.250468,56.854779],[-5.246047,56.85342],[-5.245554,56.854605],[-5.243164,56.854893],[-5.241064,56.85433],[-5.239349,56.855061],[-5.232432,56.854941],[-5.231312,56.85469],[-5.226137,56.854801],[-5.225181,56.854565],[-5.221454,56.855012],[-5.219775,56.854857],[-5.218086,56.855242],[-5.207074,56.855031],[-5.20467,56.855403],[-5.200748,56.855492],[-5.195255,56.854963],[-5.191425,56.855146],[-5.189249,56.854469],[-5.186774,56.85321],[-5.183188,56.853236],[-5.180967,56.852873],[-5.175252,56.852614],[-5.173168,56.851881],[-5.171578,56.850878],[-5.165051,56.848754],[-5.162553,56.846727],[-5.163915,56.84508],[-5.162963,56.844133],[-5.15703,56.841815],[-5.155296,56.84147],[-5.153604,56.840104],[-5.152339,56.840195],[-5.149788,56.839039],[-5.146907,56.838693],[-5.14156,56.839411],[-5.137224,56.841516],[-5.136095,56.840976],[-5.134355,56.841383],[-5.135769,56.842149],[-5.134572,56.842615],[-5.130603,56.843109],[-5.123337,56.842719],[-5.123903,56.841632],[-5.119553,56.84169],[-5.11114,56.839113],[-5.107909,56.837421],[-5.104691,56.836249],[-5.101577,56.83402],[-5.102401,56.829795],[-5.103492,56.829309],[-5.103486,56.827371],[-5.102072,56.826594],[-5.099685,56.827442],[-5.099586,56.829144],[-5.098876,56.830622],[-5.099442,56.832643],[-5.096585,56.833553],[-5.093752,56.83245],[-5.091197,56.830842],[-5.087898,56.832588],[-5.086434,56.832966],[-5.084457,56.83262],[-5.085458,56.831714],[-5.089011,56.830439],[-5.092812,56.829729],[-5.09435,56.828238],[-5.095697,56.828175],[-5.100751,56.825013],[-5.10345,56.82422],[-5.105626,56.824102],[-5.108909,56.822829],[-5.108268,56.821796],[-5.108366,56.820663],[-5.113427,56.817455],[-5.114934,56.817],[-5.11854,56.813961],[-5.123722,56.811504],[-5.125967,56.808842],[-5.127646,56.808024],[-5.134292,56.802994],[-5.142058,56.7949],[-5.14653,56.792207],[-5.156782,56.785],[-5.162691,56.781923],[-5.164267,56.780578],[-5.166908,56.775948],[-5.169675,56.773804],[-5.167995,56.772625],[-5.170748,56.771853],[-5.170479,56.770436],[-5.172585,56.769774],[-5.175595,56.767633],[-5.177993,56.764702],[-5.180298,56.763225],[-5.181821,56.761423],[-5.18365,56.760657],[-5.184759,56.759685],[-5.189986,56.756679],[-5.191369,56.754945],[-5.191309,56.754052],[-5.193105,56.751984],[-5.198888,56.74908],[-5.200151,56.747875],[-5.199406,56.747291],[-5.203218,56.745845],[-5.206097,56.742297],[-5.208286,56.741782],[-5.207665,56.740346],[-5.210241,56.738904],[-5.212825,56.73837],[-5.214442,56.737533],[-5.219016,56.734606],[-5.220988,56.733618],[-5.223508,56.731582],[-5.229096,56.729423],[-5.231652,56.727015],[-5.231992,56.725725],[-5.233849,56.722629],[-5.235095,56.721991],[-5.236364,56.720313],[-5.239387,56.718567],[-5.240519,56.716399],[-5.238215,56.714156],[-5.236212,56.713763],[-5.238566,56.712821],[-5.2386,56.710838],[-5.247208,56.705514],[-5.247405,56.703029],[-5.244738,56.70319],[-5.241719,56.703907],[-5.238679,56.703616],[-5.232919,56.701472],[-5.230662,56.700934],[-5.22346,56.70073],[-5.222093,56.701039],[-5.221059,56.702223],[-5.218125,56.702662],[-5.215884,56.701732],[-5.213341,56.702162],[-5.208622,56.701811],[-5.205272,56.702104],[-5.196592,56.700043],[-5.189016,56.700349],[-5.185545,56.699944],[-5.184659,56.699546],[-5.183439,56.69696],[-5.183883,56.695929],[-5.185671,56.694091],[-5.185728,56.690962],[-5.182765,56.689838],[-5.17832,56.68923],[-5.175831,56.691334],[-5.173263,56.691115],[-5.172393,56.692481],[-5.169615,56.692804],[-5.167161,56.692613],[-5.166917,56.691464],[-5.165132,56.690196],[-5.165796,56.689188],[-5.163658,56.688266],[-5.16399,56.686581],[-5.16222,56.685236],[-5.160312,56.68569],[-5.159445,56.687518],[-5.158368,56.6885],[-5.15627,56.688659],[-5.152963,56.687924],[-5.151171,56.688263],[-5.148514,56.688198],[-5.147201,56.687095],[-5.145626,56.686849],[-5.142432,56.688579],[-5.138858,56.689575],[-5.134406,56.691629],[-5.13128,56.69246],[-5.129201,56.692485],[-5.128026,56.693476],[-5.126182,56.693608],[-5.123701,56.694718],[-5.12062,56.69519],[-5.117784,56.694781],[-5.113852,56.695234],[-5.111855,56.695022],[-5.109494,56.695384],[-5.109051,56.696258],[-5.104711,56.698698],[-5.100199,56.699269],[-5.096211,56.700348],[-5.093612,56.700426],[-5.091535,56.700015],[-5.087977,56.700854],[-5.083924,56.70055],[-5.082431,56.70087],[-5.080893,56.701848],[-5.07731,56.703186],[-5.07569,56.703055],[-5.073165,56.703656],[-5.072424,56.703103],[-5.070551,56.703164],[-5.069698,56.702416],[-5.06254,56.70341],[-5.061386,56.704383],[-5.057096,56.705787],[-5.053366,56.705666],[-5.051306,56.706127],[-5.048018,56.705686],[-5.043282,56.706504],[-5.041794,56.707644],[-5.038873,56.708696],[-5.036407,56.70872],[-5.034968,56.708297],[-5.031468,56.709483],[-5.028104,56.710226],[-5.024906,56.711508],[-5.021416,56.711404],[-5.020999,56.711095],[-5.012957,56.714243],[-5.010955,56.713974],[-5.010193,56.713303],[-5.008114,56.714387],[-5.005705,56.713182],[-5.001274,56.713271],[-4.998462,56.71284],[-4.997361,56.714201],[-4.993254,56.715275],[-4.995091,56.713917],[-4.993093,56.713153],[-4.991096,56.714149],[-4.986654,56.7144],[-4.981279,56.715562],[-4.979529,56.715447],[-4.975794,56.716417],[-4.973098,56.715344],[-4.976416,56.714102],[-4.978908,56.714227],[-4.978552,56.712558],[-4.984952,56.712624],[-4.986214,56.712072],[-4.988649,56.712261],[-4.993525,56.710882],[-4.997386,56.711163],[-5.000916,56.710619],[-5.009644,56.70996],[-5.011967,56.709426],[-5.014308,56.707648],[-5.01688,56.707415],[-5.018624,56.706649],[-5.021484,56.706859],[-5.023678,56.706297],[-5.025547,56.706778],[-5.029235,56.706414],[-5.032994,56.706619],[-5.040517,56.705181],[-5.042964,56.70563],[-5.044226,56.705064],[-5.048996,56.704543],[-5.0509,56.703534],[-5.051745,56.702372],[-5.054581,56.702078],[-5.055738,56.701038],[-5.057994,56.701149],[-5.060863,56.699964],[-5.064802,56.69998],[-5.069452,56.699398],[-5.070719,56.698809],[-5.074196,56.698674],[-5.076471,56.69813],[-5.077966,56.697318],[-5.080135,56.69717],[-5.083474,56.696345],[-5.086162,56.696281],[-5.0888,56.694748],[-5.091403,56.694616],[-5.098473,56.693552],[-5.100388,56.692674],[-5.104995,56.692068],[-5.106909,56.691165],[-5.10716,56.688768],[-5.107691,56.688576],[-5.107142,56.686695],[-5.104749,56.685882],[-5.100779,56.685276],[-5.100856,56.684773],[-5.107364,56.685813],[-5.110218,56.683204],[-5.108237,56.683435],[-5.109178,56.681429],[-5.1132,56.680723],[-5.115161,56.680813],[-5.116072,56.680355],[-5.12218,56.679967],[-5.125566,56.680017],[-5.126376,56.680965],[-5.127802,56.681365],[-5.129563,56.679648],[-5.131045,56.681728],[-5.134722,56.68228],[-5.136005,56.681511],[-5.134967,56.679746],[-5.137168,56.679919],[-5.138349,56.67879],[-5.139481,56.678485],[-5.144625,56.677889],[-5.146863,56.677017],[-5.148286,56.677008],[-5.153629,56.677852],[-5.157532,56.679454],[-5.158615,56.681058],[-5.160179,56.680801],[-5.161865,56.68152],[-5.167309,56.682922],[-5.168158,56.683447],[-5.168496,56.684939],[-5.169301,56.68556],[-5.171164,56.685622],[-5.17534,56.686521],[-5.177451,56.68668],[-5.179601,56.687529],[-5.181721,56.687941],[-5.185247,56.687827],[-5.186392,56.688295],[-5.188443,56.687694],[-5.190628,56.687917],[-5.19131,56.687121],[-5.193474,56.686182],[-5.195168,56.686313],[-5.198046,56.685738],[-5.202587,56.686262],[-5.209617,56.686253],[-5.213292,56.686828],[-5.216594,56.686563],[-5.218722,56.686809],[-5.22355,56.686302],[-5.227838,56.684636],[-5.229019,56.682982],[-5.231055,56.681675],[-5.234168,56.680272],[-5.236432,56.679768],[-5.238482,56.678668],[-5.243228,56.674997],[-5.244037,56.674987],[-5.2483,56.672572],[-5.249191,56.669912],[-5.25082,56.668983],[-5.251265,56.666777],[-5.253113,56.666749],[-5.25437,56.667265],[-5.253918,56.669841],[-5.254364,56.670562],[-5.256117,56.670595],[-5.258687,56.67006],[-5.264038,56.672055],[-5.265268,56.671561],[-5.267686,56.669689],[-5.27136,56.668752],[-5.273575,56.668882],[-5.277381,56.669928],[-5.281896,56.667688],[-5.28152,56.666268],[-5.283324,56.66449],[-5.285747,56.664004],[-5.288762,56.664796],[-5.293728,56.662404],[-5.29568,56.662595],[-5.299373,56.661432],[-5.302186,56.661766],[-5.304041,56.660211],[-5.306348,56.659345],[-5.306476,56.658797],[-5.310361,56.656519],[-5.312074,56.656235],[-5.317391,56.65341],[-5.324706,56.648446],[-5.323313,56.648191],[-5.319996,56.648981],[-5.318188,56.650126],[-5.315557,56.650371],[-5.313857,56.649589],[-5.312376,56.648131],[-5.309525,56.64761],[-5.30774,56.646255],[-5.30516,56.647111],[-5.302654,56.646509],[-5.300768,56.646629],[-5.298289,56.645101],[-5.296462,56.643217],[-5.296294,56.640677],[-5.296794,56.639978],[-5.298548,56.639588],[-5.299455,56.636858],[-5.302751,56.635677],[-5.305115,56.634001],[-5.306887,56.633573],[-5.308999,56.632526],[-5.313952,56.629019],[-5.315833,56.628533],[-5.315793,56.626866],[-5.316307,56.625571],[-5.317971,56.62381],[-5.325036,56.620679],[-5.323387,56.619386],[-5.322457,56.617708],[-5.319609,56.616282],[-5.319748,56.615636],[-5.314915,56.608865],[-5.301714,56.602654],[-5.298486,56.601702],[-5.298091,56.601011],[-5.298793,56.599806],[-5.297372,56.598001],[-5.293081,56.597472],[-5.291514,56.596695],[-5.288203,56.596652],[-5.284699,56.598336],[-5.28153,56.598726],[-5.279799,56.599625],[-5.278749,56.599631],[-5.275947,56.600585],[-5.27396,56.600606],[-5.272764,56.59959],[-5.264583,56.597698],[-5.263179,56.596822],[-5.259537,56.59663],[-5.259289,56.596025],[-5.257336,56.595578],[-5.255903,56.594545],[-5.254558,56.594252],[-5.249669,56.59216],[-5.244434,56.592674],[-5.24346,56.59301],[-5.240989,56.592782],[-5.24011,56.593848],[-5.238597,56.593869],[-5.23687,56.593209],[-5.235485,56.593299],[-5.229984,56.594619],[-5.228961,56.596952],[-5.226364,56.597828],[-5.222948,56.599715],[-5.220456,56.600113],[-5.219595,56.601298],[-5.216474,56.602157],[-5.218442,56.602591],[-5.216754,56.606312],[-5.215442,56.606979],[-5.213552,56.607087],[-5.21112,56.6083],[-5.210756,56.609766],[-5.211197,56.611507],[-5.212356,56.612583],[-5.213723,56.614952],[-5.212362,56.618785],[-5.213556,56.620368],[-5.215238,56.620581],[-5.216591,56.623355],[-5.215942,56.623974],[-5.215805,56.625519],[-5.214633,56.626412],[-5.214582,56.628203],[-5.213904,56.629249],[-5.214811,56.631568],[-5.213821,56.631917],[-5.207633,56.631353],[-5.203749,56.631624],[-5.198738,56.630229],[-5.19582,56.630152],[-5.191778,56.629307],[-5.18949,56.629258],[-5.184434,56.62848],[-5.183187,56.627042],[-5.18006,56.627189],[-5.179086,56.626652],[-5.152978,56.62667],[-5.152668,56.624426],[-5.15132,56.620972],[-5.153396,56.618587],[-5.153916,56.617109],[-5.152288,56.615662],[-5.154188,56.614598],[-5.15307,56.612825],[-5.150633,56.613516],[-5.146775,56.613478],[-5.143893,56.61499],[-5.140763,56.61559],[-5.135824,56.615495],[-5.131137,56.616094],[-5.129058,56.615692],[-5.125842,56.616227],[-5.115181,56.616148],[-5.11183,56.615945],[-5.105009,56.61398],[-5.103891,56.613271],[-5.099729,56.612009],[-5.098948,56.611341],[-5.09707,56.611199],[-5.094048,56.609328],[-5.091841,56.608542],[-5.086942,56.608633],[-5.085138,56.609001],[-5.08275,56.608898],[-5.081407,56.60954],[-5.079951,56.609454],[-5.080465,56.608323],[-5.079586,56.607078],[-5.08024,56.606197],[-5.085653,56.601527],[-5.087855,56.601055],[-5.087861,56.59834],[-5.086172,56.596804],[-5.091376,56.595983],[-5.092525,56.594993],[-5.094395,56.594654],[-5.09557,56.593775],[-5.095039,56.59217],[-5.097422,56.59172],[-5.099455,56.590883],[-5.099073,56.589499],[-5.101534,56.588026],[-5.103468,56.588859],[-5.108903,56.587487],[-5.108073,56.585319],[-5.108742,56.584444],[-5.108256,56.58349],[-5.106322,56.582051],[-5.104702,56.579188],[-5.104951,56.577357],[-5.101381,56.57701],[-5.100312,56.576596],[-5.095912,56.576459],[-5.096703,56.574974],[-5.095433,56.573882],[-5.097373,56.573011],[-5.099627,56.571305],[-5.100224,56.569951],[-5.099797,56.56891],[-5.100936,56.565924],[-5.100166,56.56517],[-5.097506,56.55952],[-5.098822,56.557999],[-5.099675,56.555286],[-5.102074,56.554381],[-5.102415,56.553267],[-5.104923,56.550903],[-5.106602,56.550843],[-5.107772,56.550225],[-5.114204,56.548383],[-5.114463,56.547972],[-5.11051,56.541446],[-5.107547,56.538945],[-5.103973,56.53703],[-5.100448,56.535904],[-5.097635,56.53574],[-5.094256,56.539371],[-5.089688,56.541809],[-5.090214,56.542578],[-5.089318,56.545449],[-5.086324,56.548837],[-5.084083,56.55171],[-5.083145,56.552183],[-5.082892,56.554373],[-5.079598,56.557893],[-5.078916,56.559726],[-5.076351,56.561313],[-5.074747,56.561501],[-5.072419,56.5627],[-5.070295,56.56171],[-5.0659,56.562786],[-5.066574,56.561641],[-5.065465,56.560157],[-5.066077,56.557571],[-5.068694,56.556415],[-5.070927,56.555946],[-5.073798,56.554139],[-5.075554,56.551701],[-5.076755,56.547851],[-5.079563,56.546389],[-5.081316,56.544419],[-5.0818,56.542054],[-5.083011,56.540833],[-5.083126,56.539549],[-5.084622,56.537555],[-5.084692,56.536908],[-5.086916,56.535248],[-5.09009,56.533372],[-5.092149,56.533181],[-5.094164,56.532057],[-5.095805,56.530245],[-5.095919,56.528494],[-5.095004,56.528301],[-5.092119,56.529024],[-5.08558,56.528931],[-5.081686,56.528542],[-5.078842,56.527876],[-5.068502,56.527723],[-5.061743,56.527107],[-5.058032,56.52879],[-5.057311,56.529828],[-5.057545,56.531728],[-5.055059,56.533277],[-5.051885,56.536177],[-5.045293,56.537045],[-5.040574,56.538657],[-5.039292,56.538185],[-5.032537,56.538247],[-5.026731,56.536231],[-5.022722,56.536144],[-5.017692,56.538352],[-5.011248,56.538634],[-5.009896,56.539539],[-5.006731,56.540757],[-5.005339,56.542292],[-5.000448,56.541754],[-4.99432,56.542131],[-4.992454,56.544046],[-4.988227,56.546255],[-4.987019,56.549313],[-4.989122,56.552553],[-4.988921,56.554333],[-4.985128,56.556487],[-4.982307,56.555287],[-4.979017,56.55475],[-4.97282,56.554796],[-4.971142,56.554566],[-4.971988,56.557777],[-4.970888,56.55921],[-4.964297,56.560896],[-4.958866,56.56138],[-4.955867,56.562589],[-4.951532,56.56368],[-4.951333,56.564458],[-4.952922,56.565427],[-4.952723,56.5682],[-4.950527,56.572185],[-4.947472,56.575727],[-4.945617,56.574589],[-4.942086,56.574313],[-4.936013,56.574533],[-4.933459,56.574764],[-4.92955,56.575607],[-4.926434,56.574471],[-4.919036,56.572511],[-4.915629,56.570348],[-4.909332,56.56944],[-4.904934,56.570374],[-4.902179,56.571814],[-4.900678,56.570613],[-4.896871,56.569259],[-4.895222,56.569738],[-4.884676,56.569156],[-4.881721,56.567877],[-4.880047,56.566194],[-4.876132,56.566096],[-4.871172,56.56746],[-4.87068,56.56988],[-4.869003,56.571056],[-4.866728,56.571657],[-4.860626,56.57084],[-4.856604,56.571701],[-4.854711,56.571534],[-4.847923,56.571779],[-4.84296,56.572464],[-4.83861,56.57384],[-4.83794,56.572619],[-4.83544,56.570541],[-4.834671,56.570707],[-4.831914,56.569328],[-4.830025,56.569218],[-4.82076,56.571936],[-4.820205,56.573009],[-4.818137,56.574099],[-4.808722,56.572191],[-4.805643,56.572499],[-4.801101,56.573599],[-4.795425,56.577996],[-4.791992,56.578806],[-4.788103,56.580834],[-4.782157,56.582698],[-4.780626,56.587248],[-4.779443,56.587769],[-4.774448,56.58851],[-4.772716,56.587987],[-4.769761,56.586452],[-4.766089,56.586493],[-4.763756,56.585259],[-4.758293,56.585588],[-4.754495,56.584675],[-4.752571,56.585492],[-4.7503,56.585069],[-4.748031,56.585763],[-4.747205,56.586607],[-4.726188,56.587807],[-4.722649,56.590323],[-4.718693,56.592431],[-4.717943,56.593747],[-4.716675,56.594536],[-4.713936,56.595346],[-4.712878,56.596764],[-4.709643,56.596475],[-4.706893,56.597566],[-4.703555,56.598394],[-4.704894,56.599524],[-4.705272,56.600507],[-4.704097,56.601891],[-4.704273,56.602949],[-4.703248,56.60324],[-4.703297,56.604331],[-4.701284,56.604989],[-4.700847,56.603795],[-4.69724,56.603332],[-4.694131,56.60171],[-4.691931,56.602317],[-4.690498,56.602128],[-4.687912,56.600752],[-4.68417,56.601183],[-4.684016,56.601757],[-4.680611,56.603723],[-4.679646,56.604593],[-4.677306,56.605488],[-4.675565,56.605521],[-4.672893,56.607605],[-4.672725,56.608463],[-4.66843,56.609723],[-4.667483,56.60946],[-4.665167,56.610481],[-4.660362,56.611685],[-4.659361,56.611585],[-4.657583,56.612607],[-4.643386,56.614456],[-4.641145,56.613528],[-4.639123,56.614214],[-4.636205,56.613862],[-4.633589,56.613154],[-4.631709,56.614128],[-4.627727,56.614882],[-4.626424,56.615597],[-4.633993,56.621643],[-4.636797,56.625025],[-4.635411,56.625491],[-4.633136,56.627363],[-4.630853,56.628063],[-4.629316,56.630005],[-4.626046,56.631603],[-4.624041,56.633038],[-4.620528,56.634712],[-4.620227,56.636388],[-4.618519,56.637387],[-4.620697,56.641363],[-4.623089,56.642229],[-4.624007,56.644119],[-4.625795,56.644572],[-4.627857,56.646515],[-4.630448,56.646874],[-4.631202,56.647581],[-4.629687,56.649482],[-4.630586,56.650798],[-4.630262,56.652054],[-4.62858,56.653249],[-4.629811,56.655016],[-4.633396,56.65658],[-4.639507,56.653426],[-4.643044,56.650817],[-4.647547,56.649067],[-4.662895,56.640219],[-4.664137,56.639797],[-4.666712,56.639886],[-4.671439,56.64111],[-4.675649,56.641253],[-4.67864,56.642133],[-4.684968,56.641659],[-4.693018,56.643161],[-4.6944,56.642857],[-4.69631,56.643458],[-4.70483,56.643062],[-4.708402,56.643407],[-4.712201,56.642466],[-4.715421,56.642328],[-4.716643,56.643223],[-4.720433,56.656428],[-4.719405,56.658913],[-4.717536,56.676587],[-4.706223,56.676605],[-4.702557,56.675687],[-4.700834,56.675787],[-4.698991,56.675238],[-4.694646,56.675207],[-4.692609,56.675377],[-4.690993,56.675955],[-4.685401,56.676292],[-4.68237,56.676955],[-4.678625,56.67686],[-4.676431,56.677465],[-4.673435,56.677237],[-4.67188,56.676489],[-4.669556,56.676413],[-4.666527,56.674896],[-4.664164,56.675427],[-4.66287,56.675248],[-4.66083,56.676069],[-4.65902,56.674823],[-4.657569,56.674742],[-4.652813,56.676528],[-4.652016,56.677835],[-4.649436,56.679117],[-4.640579,56.680995],[-4.637583,56.682164],[-4.634928,56.682494],[-4.633365,56.684657],[-4.631045,56.686625],[-4.626994,56.68756],[-4.617184,56.690566],[-4.614911,56.691108],[-4.611318,56.691112],[-4.61036,56.691671],[-4.603255,56.692134],[-4.596774,56.691479],[-4.592016,56.693182],[-4.590022,56.696486],[-4.591541,56.69827],[-4.590509,56.698705],[-4.591578,56.700229],[-4.590545,56.702313],[-4.591712,56.704908],[-4.595327,56.706037],[-4.598346,56.706347],[-4.602694,56.707308],[-4.604718,56.707396],[-4.605917,56.707959],[-4.591507,56.724132],[-4.584532,56.72957],[-4.575996,56.734789],[-4.577631,56.735272],[-4.578135,56.738686],[-4.580184,56.73947],[-4.57951,56.740252],[-4.580236,56.7431],[-4.579862,56.743597],[-4.582112,56.748386],[-4.583996,56.750688],[-4.58649,56.75841],[-4.589872,56.759881],[-4.582841,56.762458],[-4.580785,56.764451],[-4.579121,56.764993],[-4.575229,56.765519],[-4.560418,56.76958],[-4.547651,56.771986],[-4.546793,56.772367],[-4.55072,56.776439],[-4.549356,56.78034],[-4.550103,56.780855],[-4.549653,56.781947],[-4.544957,56.783194],[-4.538295,56.787212],[-4.535204,56.791148],[-4.535618,56.794007],[-4.533369,56.794771],[-4.531528,56.796615],[-4.52979,56.79768],[-4.528528,56.801318],[-4.520513,56.805259],[-4.517286,56.804907],[-4.517058,56.804439],[-4.513188,56.80352],[-4.510971,56.803313],[-4.50304,56.799833],[-4.494425,56.795534],[-4.491466,56.793383],[-4.487726,56.79255],[-4.486051,56.791743],[-4.484404,56.791726],[-4.483252,56.790639],[-4.482069,56.79029],[-4.480612,56.788415],[-4.479694,56.788342],[-4.477906,56.786185],[-4.477752,56.785343],[-4.474313,56.782221],[-4.473346,56.781953],[-4.472019,56.780582],[-4.470225,56.779566],[-4.469098,56.777858],[-4.466588,56.777473],[-4.465565,56.778274],[-4.463051,56.77862],[-4.460339,56.77809],[-4.457063,56.778177],[-4.452722,56.777373],[-4.441844,56.773843],[-4.435232,56.777387],[-4.41537,56.797904],[-4.393362,56.815314],[-4.385977,56.822856],[-4.379379,56.825943],[-4.376746,56.829916],[-4.374264,56.832259],[-4.365059,56.830043],[-4.352434,56.827114],[-4.343325,56.821287],[-4.33051,56.823931],[-4.331106,56.826535],[-4.330257,56.829616],[-4.330764,56.834081],[-4.329722,56.836967],[-4.326173,56.838557],[-4.324021,56.84114],[-4.321202,56.840761],[-4.318463,56.840875],[-4.312322,56.843132],[-4.312117,56.844988],[-4.311104,56.846767],[-4.309109,56.848602],[-4.305305,56.850213],[-4.303959,56.851397],[-4.297854,56.85226],[-4.294982,56.853176],[-4.29086,56.851472],[-4.278392,56.849944],[-4.276565,56.851042],[-4.271883,56.85132],[-4.267771,56.853565],[-4.266094,56.854045],[-4.26287,56.857554],[-4.261056,56.856981],[-4.258517,56.853504],[-4.253357,56.853341],[-4.234318,56.857516],[-4.230489,56.85727],[-4.227696,56.857603],[-4.227101,56.858216],[-4.227138,56.859666],[-4.225858,56.862277],[-4.222955,56.863533],[-4.220467,56.866673],[-4.216954,56.869],[-4.215278,56.869659],[-4.212174,56.869476],[-4.208448,56.868611],[-4.207619,56.869439],[-4.205271,56.870105],[-4.1994,56.870443],[-4.200194,56.873897],[-4.19927,56.875491],[-4.195508,56.875701],[-4.193276,56.87654],[-4.191919,56.877467],[-4.200765,56.882231],[-4.202978,56.883989],[-4.205541,56.884447],[-4.203543,56.885367],[-4.202165,56.887328],[-4.199434,56.889609],[-4.199884,56.893762],[-4.194901,56.898248],[-4.192187,56.898871],[-4.188564,56.900929],[-4.187793,56.902502],[-4.18609,56.903565],[-4.185462,56.904762],[-4.187082,56.906342],[-4.18486,56.907388],[-4.184164,56.908132],[-4.179443,56.90857],[-4.174492,56.911707],[-4.173684,56.908684],[-4.168271,56.904698],[-4.165698,56.905084],[-4.164688,56.905924],[-4.161723,56.905787],[-4.160165,56.905117],[-4.155858,56.904333],[-4.155066,56.90326],[-4.149984,56.902417],[-4.14798,56.901275],[-4.144183,56.899925],[-4.14004,56.899546],[-4.138281,56.898071],[-4.136213,56.897235],[-4.131451,56.89751],[-4.126799,56.899305],[-4.120781,56.897134],[-4.119699,56.896447],[-4.118079,56.896389],[-4.117253,56.895446],[-4.111458,56.894731],[-4.101028,56.894507],[-4.088277,56.893598],[-4.085037,56.894236],[-4.08039,56.89466],[-4.078523,56.895495],[-4.077794,56.896558],[-4.072604,56.895791],[-4.069917,56.894407],[-4.061184,56.894879],[-4.055157,56.895608],[-4.054451,56.897398],[-4.052144,56.897255],[-4.048448,56.897709],[-4.046083,56.897483],[-4.044031,56.897645],[-4.042146,56.896293],[-4.040887,56.896174],[-4.039274,56.896883],[-4.036888,56.899876],[-4.034756,56.901488],[-4.032289,56.89807],[-4.024237,56.892518],[-4.023538,56.890364],[-4.024601,56.889385],[-4.022892,56.888753],[-4.018465,56.889907],[-4.017435,56.890755],[-4.014792,56.891359],[-4.013746,56.892063],[-4.012392,56.894053],[-4.012371,56.897816],[-4.007485,56.89834],[-4.001941,56.896732],[-4.000313,56.895304],[-4.000248,56.893848],[-4.00132,56.892712],[-4.000311,56.890716],[-3.999385,56.89029],[-3.992667,56.890991],[-3.987802,56.891846],[-3.977424,56.89534],[-3.975282,56.89634],[-3.973545,56.897743],[-3.969514,56.898223],[-3.967763,56.89928],[-3.966583,56.902443],[-3.966598,56.905224],[-3.96342,56.907574],[-3.962412,56.9098],[-3.963428,56.910836],[-3.965222,56.911378],[-3.963848,56.913839],[-3.970709,56.917941],[-3.970272,56.919776],[-3.968819,56.921044],[-3.968706,56.923422],[-3.966904,56.924785],[-3.968176,56.926005],[-3.968384,56.927767],[-3.969406,56.929377],[-3.968007,56.931206],[-3.965458,56.932593],[-3.966067,56.934943],[-3.962921,56.937162],[-3.96215,56.935786],[-3.959663,56.935996],[-3.955052,56.937717],[-3.953109,56.938915],[-3.952912,56.94001],[-3.954379,56.941968],[-3.952205,56.946145],[-3.950686,56.947116],[-3.945441,56.94634],[-3.938613,56.948619],[-3.937488,56.945947],[-3.939226,56.94158],[-3.938578,56.940494],[-3.937274,56.939602],[-3.936367,56.935429],[-3.932787,56.935327],[-3.929067,56.933623],[-3.925765,56.933014],[-3.923547,56.93352],[-3.918413,56.933864],[-3.915769,56.932471],[-3.91445,56.932384],[-3.912538,56.931159],[-3.906572,56.931471],[-3.904165,56.932298],[-3.900288,56.931841],[-3.899711,56.930187],[-3.901384,56.927057],[-3.901059,56.925674],[-3.89998,56.924652],[-3.894725,56.922756],[-3.8886,56.926092],[-3.886657,56.926656],[-3.883323,56.925071],[-3.880456,56.924746],[-3.878986,56.924925],[-3.873019,56.922894],[-3.871117,56.923143],[-3.869171,56.924969],[-3.866776,56.925867],[-3.858561,56.923424],[-3.854833,56.922788],[-3.854478,56.923741],[-3.852804,56.924952],[-3.845418,56.926113],[-3.842673,56.926917],[-3.842434,56.927415],[-3.839596,56.92902],[-3.838851,56.930563],[-3.834038,56.933293],[-3.831617,56.936042],[-3.827824,56.936947],[-3.826049,56.937957],[-3.824278,56.938387],[-3.822006,56.938308],[-3.820575,56.936442],[-3.81752,56.934276],[-3.810316,56.935876],[-3.804482,56.935538],[-3.801646,56.93588],[-3.800106,56.938701],[-3.800654,56.941029],[-3.799558,56.944212],[-3.797607,56.946711],[-3.793147,56.948496],[-3.790971,56.951978],[-3.791679,56.953032],[-3.791294,56.956956],[-3.789828,56.958324],[-3.789288,56.960609],[-3.787843,56.963231],[-3.784172,56.96438],[-3.780876,56.966489],[-3.777162,56.966551],[-3.771928,56.96857],[-3.772094,56.969808],[-3.769818,56.971942],[-3.767289,56.972738],[-3.761899,56.973577],[-3.760391,56.974385],[-3.758302,56.976674],[-3.758426,56.97789],[-3.757724,56.978883],[-3.758146,56.987143],[-3.752879,56.989576],[-3.74823,56.993109],[-3.749038,56.995609],[-3.747841,56.996583],[-3.748088,57.000973],[-3.749204,57.001937],[-3.747986,57.003881],[-3.7487,57.005232],[-3.747746,57.008422],[-3.747985,57.010516],[-3.746818,57.013736],[-3.744396,57.016712],[-3.745527,57.017999],[-3.749638,57.020291],[-3.749727,57.026215],[-3.753287,57.031309],[-3.754116,57.033],[-3.753484,57.03411],[-3.755711,57.036949],[-3.757391,57.037797],[-3.755768,57.039374],[-3.75364,57.040392],[-3.753331,57.041345],[-3.751017,57.042612],[-3.751081,57.043276],[-3.74983,57.044709],[-3.744574,57.0467],[-3.742104,57.048325],[-3.74051,57.050198],[-3.73244,57.056743],[-3.7346,57.056385],[-3.737494,57.057104],[-3.743271,57.057056],[-3.744048,57.05744],[-3.747101,57.057667],[-3.748329,57.059065],[-3.749767,57.05966],[-3.752468,57.061505],[-3.753883,57.064234],[-3.756301,57.066375],[-3.758064,57.069306],[-3.755745,57.071895],[-3.753367,57.071663],[-3.751833,57.072704],[-3.751231,57.074995],[-3.749733,57.076283],[-3.74605,57.075853],[-3.742022,57.076134],[-3.735185,57.075636],[-3.730265,57.076611],[-3.730058,57.078029],[-3.727784,57.078443],[-3.726403,57.079603],[-3.720086,57.079663],[-3.714891,57.078988],[-3.711844,57.081622],[-3.711853,57.082884],[-3.709324,57.087447],[-3.706166,57.089296],[-3.704581,57.08982],[-3.697629,57.090279],[-3.695312,57.091402],[-3.686212,57.093263],[-3.684727,57.093988],[-3.683696,57.095235],[-3.68044,57.097563],[-3.677343,57.102811],[-3.67608,57.10281],[-3.675327,57.103683],[-3.672439,57.104818],[-3.670837,57.10461],[-3.668704,57.104908],[-3.666723,57.104741],[-3.664285,57.105959],[-3.661782,57.106105],[-3.658334,57.106905],[-3.656465,57.107766],[-3.654587,57.110266],[-3.654698,57.115902],[-3.652673,57.115304],[-3.649076,57.115379],[-3.64554,57.115883],[-3.64384,57.116463],[-3.641593,57.116461],[-3.640026,57.115183],[-3.635947,57.113502],[-3.633967,57.11205],[-3.624814,57.110053],[-3.620976,57.110831],[-3.619166,57.112296],[-3.617885,57.112088],[-3.61636,57.11271],[-3.613718,57.114613],[-3.61021,57.115799],[-3.61045,57.117893],[-3.609194,57.119585],[-3.604482,57.119677],[-3.600703,57.120511],[-3.600335,57.124034],[-3.599608,57.125557],[-3.600005,57.126535],[-3.598341,57.128367],[-3.593658,57.130102],[-3.589008,57.130902],[-3.585968,57.130707],[-3.582799,57.131363],[-3.582427,57.134242],[-3.583256,57.136249],[-3.57972,57.135099],[-3.578265,57.135068],[-3.575379,57.135782],[-3.572306,57.137168],[-3.564808,57.138237],[-3.562035,57.140271],[-3.560358,57.141055],[-3.557715,57.143649],[-3.556652,57.145688],[-3.557223,57.14728],[-3.559509,57.149152],[-3.556266,57.150656],[-3.553423,57.152623],[-3.548462,57.157338],[-3.546478,57.158729],[-3.544187,57.161281],[-3.541188,57.162122],[-3.540733,57.163298],[-3.53934,57.164369],[-3.538907,57.16599],[-3.53683,57.166282],[-3.53609,57.167261],[-3.532819,57.167531],[-3.530737,57.167101],[-3.527202,57.165609],[-3.52353,57.165774],[-3.522064,57.165441],[-3.51592,57.165296],[-3.512434,57.166592],[-3.51139,57.168316],[-3.509702,57.168538],[-3.50907,57.170078],[-3.506414,57.171062],[-3.504256,57.170859],[-3.500564,57.17199],[-3.499115,57.17358],[-3.496418,57.173558],[-3.49341,57.174429],[-3.492849,57.176305],[-3.489049,57.17683],[-3.487743,57.177475],[-3.485763,57.176577],[-3.483276,57.176229],[-3.48246,57.175269],[-3.481037,57.174625],[-3.477534,57.174307],[-3.469741,57.174664],[-3.464447,57.176927],[-3.463007,57.176485],[-3.460469,57.176313],[-3.455086,57.177391],[-3.453745,57.176741],[-3.452223,57.177586],[-3.453618,57.178346],[-3.453533,57.179762],[-3.454381,57.181338],[-3.452673,57.18231],[-3.450407,57.184421],[-3.45184,57.185532],[-3.451106,57.186843],[-3.448781,57.187903],[-3.447747,57.188966],[-3.445312,57.189327],[-3.444179,57.190175],[-3.440235,57.191739],[-3.439364,57.193384],[-3.437479,57.194811],[-3.437469,57.196141],[-3.439171,57.197362],[-3.438968,57.198523],[-3.437118,57.199249],[-3.436642,57.200643],[-3.435387,57.201771],[-3.433418,57.202018],[-3.4336,57.202861],[-3.432103,57.204163],[-3.446798,57.212084],[-3.44427,57.213933],[-3.437734,57.215953],[-3.435546,57.217375],[-3.435025,57.218903],[-3.430644,57.221231],[-3.429673,57.223317],[-3.430478,57.22444],[-3.43255,57.22576],[-3.433361,57.227439],[-3.43446,57.228231],[-3.434684,57.229306],[-3.436953,57.230803],[-3.43769,57.231841],[-3.439214,57.232489],[-3.444413,57.231576],[-3.448887,57.231178],[-3.452896,57.23327],[-3.453411,57.234383],[-3.456807,57.234866],[-3.458397,57.235476],[-3.459749,57.23658],[-3.461598,57.236657],[-3.463105,57.237593],[-3.463813,57.238862],[-3.463256,57.239487],[-3.463549,57.241203],[-3.461556,57.242119],[-3.461565,57.242827],[-3.457132,57.245251],[-3.455938,57.245269],[-3.453958,57.246461],[-3.453268,57.248497],[-3.451671,57.249041],[-3.450969,57.251283],[-3.449808,57.252069],[-3.449376,57.254367],[-3.448642,57.254719],[-3.44898,57.256009],[-3.447601,57.256496],[-3.448904,57.258224],[-3.448275,57.261039],[-3.449711,57.263349],[-3.449732,57.265283],[-3.453695,57.266503],[-3.45445,57.267484],[-3.453427,57.268072],[-3.454522,57.269119],[-3.457717,57.270381],[-3.45866,57.271312],[-3.461318,57.27237],[-3.461118,57.274414],[-3.458709,57.275021],[-3.454515,57.278806],[-3.452663,57.278991],[-3.450847,57.279888],[-3.450148,57.280815],[-3.454429,57.282368],[-3.45972,57.282927],[-3.461053,57.285671],[-3.461109,57.287251],[-3.463487,57.289432],[-3.464857,57.289667],[-3.468476,57.289288],[-3.471899,57.289635],[-3.473768,57.290107],[-3.478296,57.292124],[-3.481345,57.292637],[-3.484632,57.294125],[-3.488527,57.294627],[-3.493875,57.296167],[-3.495658,57.297377],[-3.490953,57.300438],[-3.492476,57.301785],[-3.493937,57.304656],[-3.492819,57.306157],[-3.491033,57.307337],[-3.489425,57.310078],[-3.483406,57.314183],[-3.481508,57.317345],[-3.477777,57.319541],[-3.477163,57.320994],[-3.464261,57.325619],[-3.46008,57.325933],[-3.45637,57.325567],[-3.453673,57.326672],[-3.4473,57.331215],[-3.446428,57.332918],[-3.443352,57.33644],[-3.44028,57.338191],[-3.435589,57.342085],[-3.433899,57.347324],[-3.431459,57.351035],[-3.426025,57.351034],[-3.424494,57.3542],[-3.416434,57.359421],[-3.408582,57.362298],[-3.394567,57.371074],[-3.391397,57.374308],[-3.391356,57.375629],[-3.395523,57.376759],[-3.397367,57.376914],[-3.398527,57.378343],[-3.399411,57.381015],[-3.398767,57.3829],[-3.389934,57.386389],[-3.385683,57.388807],[-3.397656,57.395651],[-3.404177,57.41713],[-3.412844,57.423645],[-3.414734,57.424082],[-3.416504,57.423499],[-3.419076,57.422157],[-3.421842,57.422287],[-3.422699,57.421423],[-3.427122,57.420816],[-3.42884,57.421322],[-3.433289,57.420984],[-3.435739,57.423589],[-3.435852,57.424567],[-3.437305,57.425718],[-3.438792,57.425849],[-3.442395,57.427043],[-3.445116,57.427205],[-3.447124,57.428287],[-3.447956,57.427864],[-3.451033,57.428593],[-3.45387,57.428097],[-3.454983,57.428228],[-3.459045,57.430068],[-3.460641,57.431055],[-3.46315,57.431314],[-3.46361,57.432],[-3.466507,57.432668],[-3.467456,57.432301],[-3.469312,57.43338],[-3.47088,57.43342],[-3.471381,57.434493],[-3.475414,57.437033],[-3.479082,57.437098],[-3.481157,57.437734],[-3.480836,57.438443],[-3.481405,57.442227],[-3.483095,57.442616],[-3.483625,57.443342],[-3.48684,57.444557],[-3.486574,57.446007],[-3.488143,57.446896],[-3.487361,57.44735],[-3.488757,57.448478],[-3.488702,57.450195],[-3.489911,57.45085],[-3.489097,57.451507],[-3.490256,57.452557],[-3.489999,57.453194],[-3.491674,57.453821],[-3.493576,57.455096],[-3.49546,57.455321],[-3.497188,57.456801],[-3.500204,57.457601],[-3.501725,57.458974],[-3.501716,57.459927],[-3.502772,57.460678],[-3.508899,57.460686],[-3.513402,57.459532],[-3.515336,57.458534],[-3.520823,57.45678],[-3.522466,57.45542],[-3.53015,57.453427],[-3.533496,57.452942],[-3.536949,57.451619],[-3.538476,57.451668],[-3.540185,57.451108],[-3.541701,57.451287],[-3.54496,57.450902],[-3.547134,57.45127],[-3.549031,57.450429],[-3.55192,57.449774],[-3.552458,57.449107],[-3.560613,57.449047],[-3.5619,57.448164],[-3.564525,57.447776],[-3.566255,57.446928],[-3.567543,57.44742],[-3.570853,57.447671],[-3.60985,57.447358],[-3.617764,57.435438],[-3.621332,57.435132],[-3.635576,57.431215],[-3.655658,57.430406],[-3.659853,57.428155],[-3.659397,57.430293],[-3.666038,57.429776],[-3.675741,57.431321],[-3.683232,57.433938],[-3.698005,57.435321],[-3.697608,57.435911],[-3.700605,57.43623],[-3.702999,57.440654],[-3.695145,57.442278],[-3.691429,57.443356],[-3.694527,57.455389],[-3.68984,57.474818],[-3.682709,57.489831],[-3.686221,57.493998],[-3.684531,57.496976],[-3.698558,57.507435],[-3.705493,57.510967],[-3.704983,57.512541],[-3.701065,57.51252],[-3.69676,57.516094],[-3.694265,57.516979],[-3.69407,57.518127],[-3.692082,57.519883],[-3.690886,57.520227],[-3.697011,57.523894],[-3.706387,57.527566],[-3.722322,57.528642],[-3.711828,57.534082],[-3.720633,57.556621],[-3.725177,57.558337],[-3.729717,57.560981],[-3.72751,57.562469],[-3.724916,57.562721],[-3.722269,57.564302],[-3.720426,57.564244],[-3.718973,57.565206],[-3.714795,57.566522],[-3.712924,57.566611],[-3.7139,57.56991],[-3.717463,57.57083],[-3.71628,57.571767],[-3.715895,57.572833],[-3.717682,57.573005],[-3.719567,57.572587],[-3.722489,57.574512],[-3.723229,57.575971],[-3.724354,57.57696],[-3.724818,57.578337],[-3.724521,57.579925],[-3.724994,57.580661],[-3.727751,57.58014],[-3.741255,57.585828],[-3.746495,57.588392],[-3.748683,57.590892],[-3.749355,57.592766],[-3.745013,57.594572],[-3.739355,57.597545],[-3.738753,57.598179],[-3.739957,57.599585],[-3.742388,57.601366],[-3.743085,57.602579],[-3.742665,57.603765],[-3.743975,57.605111],[-3.746182,57.604968],[-3.74839,57.607623],[-3.758977,57.627031],[-3.762691,57.630964]]],[[[-3.112967,58.693259],[-3.112224,58.694406],[-3.114227,58.694393],[-3.113797,58.695894],[-3.114952,58.69596],[-3.116372,58.696887],[-3.121834,58.695398],[-3.123277,58.694032],[-3.122308,58.692384],[-3.122139,58.690238],[-3.123517,58.69012],[-3.126209,58.688006],[-3.125955,58.687129],[-3.127548,58.68599],[-3.12732,58.685133],[-3.125889,58.684273],[-3.127531,58.683716],[-3.124503,58.68212],[-3.127897,58.68131],[-3.129998,58.681631],[-3.131888,58.680606],[-3.130889,58.679145],[-3.131694,58.678082],[-3.130665,58.677785],[-3.131656,58.675474],[-3.131142,58.674353],[-3.13458,58.672593],[-3.134192,58.671788],[-3.140164,58.670052],[-3.138884,58.669029],[-3.140553,58.668452],[-3.140452,58.667731],[-3.138728,58.667001],[-3.136532,58.666741],[-3.133613,58.667133],[-3.131057,58.668367],[-3.13023,58.668292],[-3.129071,58.669814],[-3.126985,58.670247],[-3.123697,58.670513],[-3.12068,58.669944],[-3.118293,58.670448],[-3.11491,58.670259],[-3.113011,58.669899],[-3.108788,58.670489],[-3.107107,58.671969],[-3.106756,58.673457],[-3.105706,58.674655],[-3.106799,58.675882],[-3.105239,58.677439],[-3.104747,58.678579],[-3.104899,58.679983],[-3.102531,58.680967],[-3.101349,58.681012],[-3.100132,58.682947],[-3.101729,58.683596],[-3.100601,58.684641],[-3.104438,58.685472],[-3.107621,58.686535],[-3.111348,58.690135],[-3.110763,58.692794],[-3.112967,58.693259]]]]},"properties":{"LAD22CD":"S12000017","LAD22NM":"Highland","BNG_E":241018,"BNG_N":858292,"LONG":-4.66103,"LAT":57.58657,"GlobalID":"381b8b80-70a5-43f4-ac9a-d18758aba504"},"id":328}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.732126,55.946608],[-4.733362,55.945451],[-4.727854,55.944227],[-4.726141,55.944478],[-4.726537,55.945747],[-4.728343,55.946481],[-4.732126,55.946608]]],[[[-4.723066,55.946345],[-4.724438,55.946085],[-4.7139,55.943322],[-4.723066,55.946345]]],[[[-4.614311,55.930218],[-4.615299,55.930583],[-4.620149,55.931225],[-4.622934,55.933035],[-4.623947,55.933221],[-4.627564,55.932911],[-4.629142,55.932046],[-4.634974,55.932441],[-4.63804,55.931521],[-4.642502,55.9317],[-4.645054,55.931086],[-4.647214,55.931668],[-4.647327,55.932783],[-4.64863,55.933296],[-4.652768,55.932968],[-4.654166,55.932382],[-4.655467,55.932687],[-4.66473,55.933097],[-4.670462,55.933063],[-4.674138,55.934146],[-4.675598,55.934064],[-4.678255,55.934977],[-4.681199,55.935345],[-4.682004,55.93576],[-4.685376,55.935775],[-4.690459,55.937421],[-4.694942,55.9375],[-4.697389,55.938682],[-4.702097,55.939093],[-4.701868,55.939745],[-4.705341,55.940873],[-4.710904,55.941423],[-4.712243,55.940748],[-4.725493,55.944348],[-4.723954,55.943355],[-4.724654,55.942485],[-4.733525,55.944736],[-4.736469,55.946175],[-4.739854,55.945541],[-4.744273,55.945897],[-4.745367,55.944275],[-4.747421,55.945062],[-4.749013,55.946227],[-4.748426,55.947681],[-4.75318,55.949624],[-4.759105,55.954577],[-4.76402,55.957317],[-4.76659,55.956107],[-4.768689,55.957864],[-4.771526,55.959218],[-4.783514,55.962286],[-4.788945,55.963006],[-4.790651,55.962844],[-4.791726,55.963422],[-4.796962,55.962246],[-4.798735,55.962607],[-4.802097,55.959687],[-4.801724,55.957247],[-4.803175,55.956806],[-4.805842,55.957505],[-4.807635,55.957577],[-4.808964,55.957122],[-4.811632,55.957445],[-4.813717,55.95874],[-4.815746,55.962156],[-4.817768,55.962857],[-4.821127,55.961968],[-4.825348,55.958566],[-4.831222,55.95531],[-4.837726,55.954472],[-4.839279,55.953751],[-4.844661,55.952195],[-4.846211,55.95217],[-4.851368,55.95114],[-4.853934,55.951668],[-4.854294,55.950917],[-4.860189,55.948274],[-4.86356,55.947689],[-4.868101,55.945519],[-4.872565,55.94423],[-4.875652,55.944073],[-4.876755,55.943724],[-4.878804,55.94231],[-4.879514,55.937819],[-4.880788,55.935896],[-4.879973,55.931859],[-4.878255,55.931449],[-4.876069,55.93006],[-4.876228,55.928403],[-4.876799,55.927578],[-4.876134,55.926172],[-4.876706,55.92475],[-4.874843,55.921784],[-4.874806,55.920217],[-4.876276,55.919123],[-4.878814,55.919073],[-4.880453,55.918571],[-4.882416,55.915112],[-4.881054,55.912088],[-4.879472,55.911037],[-4.878042,55.90913],[-4.877256,55.910135],[-4.878264,55.911226],[-4.875113,55.911885],[-4.872747,55.909796],[-4.873194,55.908495],[-4.877282,55.907535],[-4.879791,55.906631],[-4.881433,55.903029],[-4.882521,55.902159],[-4.885093,55.901696],[-4.886163,55.900499],[-4.890303,55.898578],[-4.892376,55.89786],[-4.896068,55.895682],[-4.89761,55.893459],[-4.89756,55.892532],[-4.89869,55.891164],[-4.898052,55.888746],[-4.896759,55.888361],[-4.894923,55.884546],[-4.889474,55.882363],[-4.889132,55.879611],[-4.889858,55.876108],[-4.888546,55.874735],[-4.886361,55.875479],[-4.88044,55.875517],[-4.878359,55.875117],[-4.876919,55.874195],[-4.872956,55.873667],[-4.86951,55.873731],[-4.865939,55.874785],[-4.86038,55.875131],[-4.858025,55.874314],[-4.85536,55.874812],[-4.853302,55.875974],[-4.85144,55.876525],[-4.849515,55.877644],[-4.847269,55.877094],[-4.84742,55.875661],[-4.845551,55.875143],[-4.844224,55.875259],[-4.843051,55.87605],[-4.841491,55.876144],[-4.840658,55.877328],[-4.839214,55.878026],[-4.837528,55.879692],[-4.836037,55.880405],[-4.831216,55.882165],[-4.826522,55.883033],[-4.824997,55.884713],[-4.822905,55.885089],[-4.822482,55.886097],[-4.820163,55.8873],[-4.818481,55.887487],[-4.816031,55.886788],[-4.81418,55.887617],[-4.812578,55.889797],[-4.802681,55.892396],[-4.799697,55.892608],[-4.799281,55.889728],[-4.798645,55.888102],[-4.800185,55.887285],[-4.800719,55.886045],[-4.800089,55.885174],[-4.800476,55.884334],[-4.799941,55.882571],[-4.800878,55.881916],[-4.800055,55.880825],[-4.800257,55.879629],[-4.798456,55.878692],[-4.798907,55.877426],[-4.79725,55.876731],[-4.797166,55.87578],[-4.795789,55.875097],[-4.795749,55.874307],[-4.794422,55.873532],[-4.794169,55.87223],[-4.790771,55.871112],[-4.78392,55.869986],[-4.783925,55.869388],[-4.781038,55.869926],[-4.780066,55.868748],[-4.777786,55.867487],[-4.771905,55.865943],[-4.770497,55.864905],[-4.769371,55.864701],[-4.767378,55.863304],[-4.767055,55.861581],[-4.764748,55.85992],[-4.764746,55.859207],[-4.761575,55.855421],[-4.757514,55.853579],[-4.755402,55.851743],[-4.752156,55.851263],[-4.750878,55.849755],[-4.749296,55.849296],[-4.745994,55.849869],[-4.738782,55.850344],[-4.736566,55.851152],[-4.734381,55.851134],[-4.730031,55.852558],[-4.729384,55.853267],[-4.727013,55.852502],[-4.723847,55.852448],[-4.71864,55.851357],[-4.71671,55.850604],[-4.715526,55.849089],[-4.71382,55.848695],[-4.712418,55.847836],[-4.710035,55.847107],[-4.707826,55.84716],[-4.705752,55.846397],[-4.703809,55.846714],[-4.703214,55.845513],[-4.704451,55.845037],[-4.702075,55.843826],[-4.703336,55.842441],[-4.701016,55.84215],[-4.701202,55.840915],[-4.69909,55.840759],[-4.698523,55.841801],[-4.695143,55.840846],[-4.694054,55.841045],[-4.68664,55.840668],[-4.684083,55.840067],[-4.68126,55.838397],[-4.678406,55.838222],[-4.654741,55.84021],[-4.643323,55.839081],[-4.640448,55.839562],[-4.639082,55.840694],[-4.632623,55.841104],[-4.63174,55.84241],[-4.630694,55.844852],[-4.628734,55.847291],[-4.627323,55.848093],[-4.624802,55.848403],[-4.62302,55.849831],[-4.623279,55.851216],[-4.622044,55.854433],[-4.624751,55.855736],[-4.624601,55.857853],[-4.625697,55.858822],[-4.624668,55.860214],[-4.622808,55.861594],[-4.619353,55.861789],[-4.617448,55.862224],[-4.612303,55.86206],[-4.611464,55.862886],[-4.609709,55.863097],[-4.601392,55.862854],[-4.597299,55.862396],[-4.598675,55.86393],[-4.603301,55.865099],[-4.609065,55.867894],[-4.610386,55.869067],[-4.608629,55.87028],[-4.604526,55.871396],[-4.600206,55.871905],[-4.605207,55.87545],[-4.601863,55.876684],[-4.599433,55.878623],[-4.599099,55.879673],[-4.602029,55.880479],[-4.604705,55.881681],[-4.603926,55.884064],[-4.606419,55.884923],[-4.609904,55.885086],[-4.610943,55.886679],[-4.612299,55.887707],[-4.615752,55.888726],[-4.61749,55.888544],[-4.61915,55.889029],[-4.618488,55.890478],[-4.617247,55.891566],[-4.614473,55.892318],[-4.613033,55.893907],[-4.613845,55.896562],[-4.611996,55.89833],[-4.611996,55.901523],[-4.613897,55.903113],[-4.615396,55.905434],[-4.613215,55.906031],[-4.615974,55.907106],[-4.618996,55.906669],[-4.626269,55.906329],[-4.627832,55.906462],[-4.628323,55.907384],[-4.630765,55.907432],[-4.632787,55.909552],[-4.634092,55.913076],[-4.633755,55.913953],[-4.631869,55.915489],[-4.629555,55.916409],[-4.627965,55.916259],[-4.624942,55.918087],[-4.623753,55.918398],[-4.622812,55.919651],[-4.623712,55.920222],[-4.623133,55.921441],[-4.620123,55.921766],[-4.618118,55.92318],[-4.617409,55.924181],[-4.618176,55.925931],[-4.617356,55.92866],[-4.614311,55.930218]]]]},"properties":{"LAD22CD":"S12000018","LAD22NM":"Inverclyde","BNG_E":227922,"BNG_N":670894,"LONG":-4.75387,"LAT":55.9003,"GlobalID":"4294d8b2-3cd3-424c-8ccf-c9c04e9c6a54"},"id":329}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.088577,55.931385],[-3.092188,55.932019],[-3.099222,55.931307],[-3.105338,55.930055],[-3.10977,55.929611],[-3.111672,55.92969],[-3.112994,55.926397],[-3.113702,55.921997],[-3.117643,55.913069],[-3.114601,55.912973],[-3.11273,55.912102],[-3.106415,55.908196],[-3.10492,55.90688],[-3.098136,55.904042],[-3.09524,55.90156],[-3.092159,55.900216],[-3.092675,55.899802],[-3.097275,55.899311],[-3.110503,55.89889],[-3.117716,55.897695],[-3.125077,55.895654],[-3.132994,55.892853],[-3.13277,55.892456],[-3.140552,55.890765],[-3.147755,55.889802],[-3.161738,55.889459],[-3.177884,55.891289],[-3.19094,55.892647],[-3.201545,55.894821],[-3.201911,55.894392],[-3.200743,55.89039],[-3.206935,55.889656],[-3.21103,55.888119],[-3.213948,55.88644],[-3.213449,55.884481],[-3.209088,55.883253],[-3.21174,55.881977],[-3.219451,55.882251],[-3.221332,55.883002],[-3.224574,55.88235],[-3.227886,55.883856],[-3.229607,55.883402],[-3.232157,55.883972],[-3.234351,55.882994],[-3.237201,55.882481],[-3.238412,55.88274],[-3.23982,55.880482],[-3.239752,55.878036],[-3.242073,55.877199],[-3.244167,55.877208],[-3.249022,55.875475],[-3.249446,55.873204],[-3.250921,55.87147],[-3.253186,55.86978],[-3.254904,55.869183],[-3.255294,55.870171],[-3.260779,55.87257],[-3.265089,55.876072],[-3.269164,55.875773],[-3.274075,55.871219],[-3.284029,55.865889],[-3.288597,55.865692],[-3.291751,55.866977],[-3.29317,55.866885],[-3.2957,55.866134],[-3.328166,55.844144],[-3.346481,55.831923],[-3.349559,55.830218],[-3.349789,55.828347],[-3.350673,55.827133],[-3.356002,55.82477],[-3.360012,55.825754],[-3.361495,55.825738],[-3.367592,55.824116],[-3.369037,55.824109],[-3.36437,55.820081],[-3.36325,55.817708],[-3.360596,55.815513],[-3.360509,55.813708],[-3.358659,55.813068],[-3.355194,55.81276],[-3.354135,55.812152],[-3.3526,55.81021],[-3.349947,55.808954],[-3.350326,55.807721],[-3.349184,55.806585],[-3.348843,55.804847],[-3.348029,55.804374],[-3.348107,55.802845],[-3.345458,55.800714],[-3.345938,55.796571],[-3.347342,55.794595],[-3.34512,55.792973],[-3.342024,55.791897],[-3.339855,55.792067],[-3.336698,55.791378],[-3.334771,55.792774],[-3.333746,55.794153],[-3.330905,55.794592],[-3.327466,55.794219],[-3.325261,55.792748],[-3.320162,55.793889],[-3.318801,55.794696],[-3.316552,55.794666],[-3.313241,55.795049],[-3.312692,55.795572],[-3.310626,55.795347],[-3.309767,55.796531],[-3.307159,55.797663],[-3.305181,55.796906],[-3.303399,55.796896],[-3.303575,55.79554],[-3.305021,55.793848],[-3.302583,55.792632],[-3.298904,55.792626],[-3.294923,55.794947],[-3.294349,55.796302],[-3.289797,55.792817],[-3.292776,55.780562],[-3.274369,55.775347],[-3.265148,55.778433],[-3.264441,55.778362],[-3.263347,55.776638],[-3.25742,55.778305],[-3.250667,55.781697],[-3.245572,55.781268],[-3.235907,55.779123],[-3.234744,55.780305],[-3.231387,55.781907],[-3.230839,55.782841],[-3.229197,55.783566],[-3.227466,55.784895],[-3.22571,55.787025],[-3.223541,55.786551],[-3.220579,55.784533],[-3.217584,55.785147],[-3.214329,55.783984],[-3.213152,55.78742],[-3.211554,55.789697],[-3.20022,55.797097],[-3.195597,55.802123],[-3.190991,55.801502],[-3.185094,55.80174],[-3.18872,55.795798],[-3.186672,55.79546],[-3.184166,55.794352],[-3.183402,55.792505],[-3.185648,55.788792],[-3.185504,55.788244],[-3.18233,55.787432],[-3.17676,55.784385],[-3.178063,55.783592],[-3.178342,55.782656],[-3.18038,55.782131],[-3.181039,55.781341],[-3.167786,55.779519],[-3.168243,55.778603],[-3.167573,55.777947],[-3.170264,55.775676],[-3.174159,55.773606],[-3.174796,55.772046],[-3.169963,55.770627],[-3.159804,55.763579],[-3.156957,55.761904],[-3.153995,55.76106],[-3.155655,55.759701],[-3.157145,55.759306],[-3.157863,55.757872],[-3.160607,55.756026],[-3.161036,55.755059],[-3.162363,55.754678],[-3.162737,55.753331],[-3.161813,55.751732],[-3.162105,55.750821],[-3.161565,55.749551],[-3.159947,55.747364],[-3.158238,55.746397],[-3.156031,55.745851],[-3.154619,55.744962],[-3.151344,55.744655],[-3.149145,55.743274],[-3.148387,55.743201],[-3.146368,55.741458],[-3.143994,55.740052],[-3.14466,55.735899],[-3.145853,55.733951],[-3.15113,55.728182],[-3.151433,55.727393],[-3.151124,55.725545],[-3.150452,55.72463],[-3.147473,55.723751],[-3.145316,55.72241],[-3.144865,55.721124],[-3.145732,55.720303],[-3.139362,55.720502],[-3.137261,55.719951],[-3.138648,55.716195],[-3.134388,55.711459],[-3.128268,55.710347],[-3.126869,55.710409],[-3.120337,55.714908],[-3.110555,55.716556],[-3.107498,55.718205],[-3.102598,55.718591],[-3.097213,55.720078],[-3.09188,55.722133],[-3.091921,55.723588],[-3.096093,55.725051],[-3.10016,55.728111],[-3.102642,55.728893],[-3.103751,55.730972],[-3.103558,55.732851],[-3.102837,55.734111],[-3.103376,55.737126],[-3.101973,55.739331],[-3.099313,55.741039],[-3.095646,55.745178],[-3.089649,55.748902],[-3.085376,55.750796],[-3.083718,55.753322],[-3.080942,55.755512],[-3.079188,55.756021],[-3.077293,55.757242],[-3.077259,55.757997],[-3.075462,55.759015],[-3.07526,55.759767],[-3.06658,55.763158],[-3.065775,55.763758],[-3.060843,55.762884],[-3.061894,55.764919],[-3.060884,55.767332],[-3.057769,55.768855],[-3.055651,55.769214],[-3.054185,55.77039],[-3.050001,55.770714],[-3.043729,55.773404],[-3.042195,55.775075],[-3.040279,55.776147],[-3.037792,55.776517],[-3.025455,55.782602],[-3.021448,55.783336],[-3.01804,55.785278],[-3.01387,55.786968],[-3.013754,55.787282],[-3.001221,55.789834],[-2.990154,55.795428],[-2.98184,55.798946],[-2.977528,55.802006],[-2.976541,55.803093],[-2.977395,55.803652],[-2.976213,55.804673],[-2.973536,55.805929],[-2.969884,55.805917],[-2.967284,55.807967],[-2.967026,55.808556],[-2.968128,55.809924],[-2.967306,55.81146],[-2.965266,55.81265],[-2.959831,55.814395],[-2.952796,55.818045],[-2.951622,55.818952],[-2.9498,55.818782],[-2.948896,55.817875],[-2.949473,55.817225],[-2.948607,55.815865],[-2.943593,55.811611],[-2.940735,55.806174],[-2.939253,55.805238],[-2.941115,55.803089],[-2.941072,55.79456],[-2.934852,55.793256],[-2.927064,55.793175],[-2.926852,55.793843],[-2.923496,55.793579],[-2.923652,55.795178],[-2.923127,55.796564],[-2.91846,55.80166],[-2.915759,55.802867],[-2.912547,55.803574],[-2.906009,55.805761],[-2.904297,55.806933],[-2.902896,55.808785],[-2.901963,55.809156],[-2.898149,55.809453],[-2.89696,55.809808],[-2.89292,55.807932],[-2.886953,55.805834],[-2.883155,55.80754],[-2.878509,55.810242],[-2.877078,55.811551],[-2.874939,55.814557],[-2.875835,55.817008],[-2.875212,55.819032],[-2.87041,55.824096],[-2.868324,55.824265],[-2.863453,55.825869],[-2.859958,55.825343],[-2.85571,55.82526],[-2.85234,55.823671],[-2.847885,55.818532],[-2.846244,55.818961],[-2.847207,55.820701],[-2.846653,55.821262],[-2.846709,55.822762],[-2.850684,55.824963],[-2.85057,55.825956],[-2.85267,55.827364],[-2.854319,55.827597],[-2.854875,55.828654],[-2.856458,55.828418],[-2.857742,55.829096],[-2.857553,55.829915],[-2.860162,55.830547],[-2.859697,55.831322],[-2.857945,55.832453],[-2.855369,55.833631],[-2.863541,55.837419],[-2.862187,55.839857],[-2.865178,55.839955],[-2.868925,55.838559],[-2.873607,55.843924],[-2.877525,55.842937],[-2.877748,55.843567],[-2.880209,55.845049],[-2.880552,55.847476],[-2.882066,55.847829],[-2.884671,55.847758],[-2.886684,55.847095],[-2.889372,55.847239],[-2.891863,55.847938],[-2.892667,55.84775],[-2.896452,55.848901],[-2.899044,55.850752],[-2.898758,55.852219],[-2.899059,55.853511],[-2.900165,55.853332],[-2.901886,55.855192],[-2.901041,55.857919],[-2.899229,55.858095],[-2.897107,55.858754],[-2.895283,55.858856],[-2.895749,55.859854],[-2.900858,55.8604],[-2.90334,55.860243],[-2.904549,55.859618],[-2.908226,55.859354],[-2.908481,55.858811],[-2.911043,55.858504],[-2.913543,55.856568],[-2.917784,55.859465],[-2.919154,55.861084],[-2.919,55.862064],[-2.92374,55.86263],[-2.926206,55.861063],[-2.928097,55.860706],[-2.93144,55.861386],[-2.937159,55.863491],[-2.937421,55.865558],[-2.93583,55.867298],[-2.935738,55.868777],[-2.936976,55.87077],[-2.936254,55.871975],[-2.937704,55.87349],[-2.93764,55.87529],[-2.941491,55.876429],[-2.940665,55.878309],[-2.944016,55.879013],[-2.948339,55.880881],[-2.949116,55.884789],[-2.947129,55.889024],[-2.947522,55.889642],[-2.94984,55.890212],[-2.949882,55.891746],[-2.955374,55.893659],[-2.959506,55.894336],[-2.962204,55.895394],[-2.961223,55.896372],[-2.955601,55.899535],[-2.957814,55.900609],[-2.966999,55.902655],[-2.966948,55.906261],[-2.966071,55.907496],[-2.965973,55.910725],[-2.966799,55.911787],[-2.968883,55.912494],[-2.974001,55.912855],[-2.984243,55.912409],[-2.98881,55.912826],[-3.00328,55.908929],[-3.006126,55.907615],[-3.007495,55.906521],[-3.009595,55.901659],[-3.011471,55.901285],[-3.017745,55.901634],[-3.018235,55.902121],[-3.024539,55.903909],[-3.030174,55.906096],[-3.034452,55.908405],[-3.041515,55.909972],[-3.05338,55.910497],[-3.05548,55.911548],[-3.059996,55.915224],[-3.063846,55.917228],[-3.071312,55.919756],[-3.075926,55.919016],[-3.078264,55.919549],[-3.079216,55.920403],[-3.079052,55.922877],[-3.080416,55.925521],[-3.082789,55.926782],[-3.084221,55.928528],[-3.084688,55.930141],[-3.086668,55.930097],[-3.088577,55.931385]]]},"properties":{"LAD22CD":"S12000019","LAD22NM":"Midlothian","BNG_E":330088,"BNG_N":659217,"LONG":-3.11738,"LAT":55.82111,"GlobalID":"fcb34622-f9a3-4919-ade9-f767a13bac70"},"id":330}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.63894,57.643317],[-3.640563,57.642945],[-3.641731,57.641934],[-3.638223,57.641324],[-3.63663,57.642397],[-3.636952,57.643124],[-3.63894,57.643317]]],[[[-2.801546,57.695113],[-2.804004,57.695212],[-2.806874,57.697053],[-2.808966,57.695985],[-2.812574,57.695634],[-2.813632,57.695903],[-2.816809,57.694561],[-2.82277,57.694023],[-2.822284,57.693439],[-2.824126,57.692563],[-2.828688,57.69271],[-2.837944,57.69495],[-2.844002,57.697063],[-2.846342,57.698227],[-2.84692,57.698962],[-2.84685,57.700555],[-2.847581,57.701378],[-2.847733,57.703272],[-2.84615,57.703897],[-2.848195,57.706099],[-2.852477,57.705648],[-2.853451,57.706144],[-2.857452,57.705085],[-2.858006,57.706295],[-2.859807,57.706281],[-2.862234,57.705651],[-2.860822,57.704535],[-2.861433,57.70403],[-2.864455,57.703996],[-2.865169,57.703464],[-2.869377,57.703225],[-2.870329,57.703685],[-2.873222,57.703373],[-2.877414,57.705353],[-2.879431,57.704358],[-2.881304,57.702497],[-2.882828,57.702604],[-2.884604,57.702128],[-2.886328,57.701175],[-2.888647,57.701322],[-2.891179,57.700467],[-2.895748,57.699695],[-2.898239,57.700441],[-2.897444,57.701833],[-2.902316,57.700681],[-2.903607,57.699473],[-2.902832,57.698822],[-2.903944,57.697681],[-2.905471,57.697524],[-2.906271,57.698236],[-2.90806,57.698687],[-2.909788,57.698411],[-2.913561,57.698681],[-2.916363,57.697929],[-2.917497,57.696823],[-2.919419,57.69698],[-2.920054,57.697966],[-2.922203,57.697483],[-2.923278,57.69616],[-2.924953,57.695477],[-2.927798,57.693346],[-2.928092,57.692187],[-2.927244,57.690776],[-2.928324,57.689444],[-2.932203,57.686885],[-2.937881,57.685804],[-2.939766,57.686103],[-2.941188,57.685711],[-2.941596,57.68481],[-2.943158,57.684961],[-2.945952,57.684395],[-2.947174,57.683718],[-2.949992,57.684184],[-2.951267,57.683834],[-2.951826,57.682952],[-2.951536,57.68131],[-2.959478,57.679176],[-2.96104,57.679742],[-2.961708,57.678856],[-2.966808,57.678402],[-2.96915,57.679127],[-2.973321,57.678328],[-2.975193,57.677038],[-2.97811,57.677002],[-2.97892,57.676417],[-2.98104,57.676033],[-2.986148,57.673859],[-2.994379,57.672462],[-2.99571,57.671785],[-2.998921,57.668971],[-3.001547,57.667707],[-3.006038,57.66617],[-3.013635,57.665822],[-3.013436,57.664736],[-3.018421,57.663796],[-3.027163,57.663599],[-3.038129,57.665096],[-3.05169,57.667704],[-3.080656,57.672113],[-3.093916,57.675061],[-3.094892,57.674874],[-3.094996,57.67333],[-3.093004,57.672337],[-3.092506,57.671051],[-3.09787,57.669723],[-3.098138,57.670443],[-3.100001,57.670867],[-3.100538,57.672566],[-3.102536,57.673142],[-3.103932,57.671515],[-3.105918,57.670544],[-3.10509,57.672661],[-3.108506,57.67317],[-3.107,57.674756],[-3.104146,57.674171],[-3.104385,57.675149],[-3.100594,57.675404],[-3.10168,57.676126],[-3.104215,57.675521],[-3.106444,57.675445],[-3.116843,57.676546],[-3.136399,57.680184],[-3.174056,57.688002],[-3.19465,57.693504],[-3.200708,57.694583],[-3.234434,57.70264],[-3.263739,57.712057],[-3.275965,57.717117],[-3.280286,57.718588],[-3.281028,57.717946],[-3.276692,57.716852],[-3.27657,57.715862],[-3.274498,57.715545],[-3.272163,57.714314],[-3.272129,57.713651],[-3.268037,57.712124],[-3.267588,57.711481],[-3.265778,57.711023],[-3.266476,57.70934],[-3.265795,57.708747],[-3.262739,57.707504],[-3.259015,57.706795],[-3.255619,57.705405],[-3.251892,57.701849],[-3.251588,57.70058],[-3.255837,57.704811],[-3.257815,57.705819],[-3.264186,57.707234],[-3.265862,57.707782],[-3.277244,57.713216],[-3.280273,57.715263],[-3.280557,57.716678],[-3.283172,57.717702],[-3.281939,57.718944],[-3.279825,57.7204],[-3.277819,57.723653],[-3.283613,57.724282],[-3.289375,57.725169],[-3.29327,57.724493],[-3.296582,57.721866],[-3.300167,57.721509],[-3.301962,57.72065],[-3.304227,57.72054],[-3.314674,57.72118],[-3.32909,57.724478],[-3.335596,57.724667],[-3.337629,57.724981],[-3.341987,57.724894],[-3.349095,57.72412],[-3.357217,57.722317],[-3.362056,57.721756],[-3.363622,57.722134],[-3.36659,57.721183],[-3.369399,57.721241],[-3.373267,57.720781],[-3.376255,57.719712],[-3.384895,57.719447],[-3.387185,57.718627],[-3.388,57.717732],[-3.392148,57.716153],[-3.397698,57.715827],[-3.398589,57.716488],[-3.400652,57.715632],[-3.403068,57.715591],[-3.404657,57.715055],[-3.40757,57.714852],[-3.407637,57.714252],[-3.412265,57.712905],[-3.413653,57.713475],[-3.416996,57.714008],[-3.41926,57.715051],[-3.422643,57.712851],[-3.425384,57.713297],[-3.425408,57.711922],[-3.427705,57.710863],[-3.430823,57.710896],[-3.432199,57.710292],[-3.436607,57.710346],[-3.43864,57.7092],[-3.440308,57.708903],[-3.443396,57.709199],[-3.44672,57.707542],[-3.449187,57.706641],[-3.451505,57.70656],[-3.452811,57.705403],[-3.455262,57.704407],[-3.456458,57.704414],[-3.460159,57.703673],[-3.462107,57.703953],[-3.464303,57.703691],[-3.468579,57.703826],[-3.47121,57.703504],[-3.47307,57.703907],[-3.48234,57.702181],[-3.492772,57.703863],[-3.497541,57.704188],[-3.498901,57.701887],[-3.495019,57.700857],[-3.492616,57.700687],[-3.489519,57.699398],[-3.488982,57.695913],[-3.489226,57.693969],[-3.493193,57.684351],[-3.496658,57.679104],[-3.500682,57.675924],[-3.50723,57.67163],[-3.514884,57.66836],[-3.523765,57.665521],[-3.529467,57.664216],[-3.539652,57.662549],[-3.549457,57.661682],[-3.55995,57.661435],[-3.573913,57.6616],[-3.61774,57.664065],[-3.62321,57.663388],[-3.626929,57.661726],[-3.626039,57.661075],[-3.623773,57.661648],[-3.622745,57.662732],[-3.620933,57.662731],[-3.613613,57.659756],[-3.610863,57.658514],[-3.604884,57.654974],[-3.600089,57.650959],[-3.598566,57.651656],[-3.595092,57.65148],[-3.585742,57.646924],[-3.584548,57.644568],[-3.583262,57.6435],[-3.583147,57.642553],[-3.584545,57.642077],[-3.582841,57.639954],[-3.581705,57.639371],[-3.581433,57.637047],[-3.58238,57.634945],[-3.58633,57.633916],[-3.587198,57.632777],[-3.588957,57.631782],[-3.589637,57.630782],[-3.592614,57.631407],[-3.593711,57.630917],[-3.595932,57.631473],[-3.595709,57.632649],[-3.597339,57.633726],[-3.604372,57.633718],[-3.605445,57.633924],[-3.607012,57.635507],[-3.608946,57.634584],[-3.61103,57.635965],[-3.613972,57.636067],[-3.613505,57.63535],[-3.616252,57.63428],[-3.617503,57.634969],[-3.620386,57.634926],[-3.621873,57.635327],[-3.620449,57.63623],[-3.622063,57.637977],[-3.623894,57.637766],[-3.626027,57.635815],[-3.629682,57.633755],[-3.635519,57.635263],[-3.637214,57.632811],[-3.6387,57.634127],[-3.639028,57.635363],[-3.631873,57.637538],[-3.631951,57.638564],[-3.63428,57.63779],[-3.634436,57.638845],[-3.632296,57.638977],[-3.632944,57.640647],[-3.63506,57.640535],[-3.639216,57.640969],[-3.641885,57.641569],[-3.643683,57.640399],[-3.645754,57.639578],[-3.642325,57.643031],[-3.641043,57.643987],[-3.63783,57.64444],[-3.63458,57.644242],[-3.626503,57.644015],[-3.624094,57.644639],[-3.626743,57.647074],[-3.624579,57.649717],[-3.622214,57.651036],[-3.622425,57.653072],[-3.619701,57.655275],[-3.621563,57.655733],[-3.623039,57.656911],[-3.624092,57.65838],[-3.62782,57.660199],[-3.630998,57.660915],[-3.633361,57.662684],[-3.634649,57.662985],[-3.648964,57.662954],[-3.673191,57.660396],[-3.690885,57.658879],[-3.702472,57.657493],[-3.715024,57.654957],[-3.724925,57.652219],[-3.733412,57.649348],[-3.729174,57.649743],[-3.724989,57.651385],[-3.720829,57.651917],[-3.720416,57.652561],[-3.717789,57.653487],[-3.715363,57.653502],[-3.709289,57.655409],[-3.702922,57.656401],[-3.699254,57.657439],[-3.696062,57.657264],[-3.692923,57.657911],[-3.690695,57.657938],[-3.69061,57.657287],[-3.69526,57.656246],[-3.696773,57.655169],[-3.698908,57.654593],[-3.700689,57.651857],[-3.700113,57.650587],[-3.70045,57.649312],[-3.699661,57.648445],[-3.702936,57.646236],[-3.703952,57.646152],[-3.709012,57.643883],[-3.712635,57.642964],[-3.716765,57.641315],[-3.720887,57.640579],[-3.729055,57.637841],[-3.736384,57.634744],[-3.738357,57.633549],[-3.739667,57.633394],[-3.743219,57.631991],[-3.748967,57.630901],[-3.752925,57.63091],[-3.756321,57.630554],[-3.756611,57.632081],[-3.754752,57.632213],[-3.753074,57.634404],[-3.74894,57.636473],[-3.747539,57.637438],[-3.745745,57.637297],[-3.744963,57.638663],[-3.736075,57.642727],[-3.733133,57.643275],[-3.728119,57.645352],[-3.725708,57.644947],[-3.724998,57.643854],[-3.723358,57.645561],[-3.722287,57.64611],[-3.732511,57.644886],[-3.7371,57.643499],[-3.743157,57.642137],[-3.741499,57.641823],[-3.747022,57.638063],[-3.756525,57.6331],[-3.762691,57.630964],[-3.758977,57.627031],[-3.74839,57.607623],[-3.746182,57.604968],[-3.743975,57.605111],[-3.742665,57.603765],[-3.743085,57.602579],[-3.742388,57.601366],[-3.739957,57.599585],[-3.738753,57.598179],[-3.739355,57.597545],[-3.745013,57.594572],[-3.749355,57.592766],[-3.748683,57.590892],[-3.746495,57.588392],[-3.741255,57.585828],[-3.727751,57.58014],[-3.724994,57.580661],[-3.724521,57.579925],[-3.724818,57.578337],[-3.724354,57.57696],[-3.723229,57.575971],[-3.722489,57.574512],[-3.719567,57.572587],[-3.717682,57.573005],[-3.715895,57.572833],[-3.71628,57.571767],[-3.717463,57.57083],[-3.7139,57.56991],[-3.712924,57.566611],[-3.714795,57.566522],[-3.718973,57.565206],[-3.720426,57.564244],[-3.722269,57.564302],[-3.724916,57.562721],[-3.72751,57.562469],[-3.729717,57.560981],[-3.725177,57.558337],[-3.720633,57.556621],[-3.711828,57.534082],[-3.722322,57.528642],[-3.706387,57.527566],[-3.697011,57.523894],[-3.690886,57.520227],[-3.692082,57.519883],[-3.69407,57.518127],[-3.694265,57.516979],[-3.69676,57.516094],[-3.701065,57.51252],[-3.704983,57.512541],[-3.705493,57.510967],[-3.698558,57.507435],[-3.684531,57.496976],[-3.686221,57.493998],[-3.682709,57.489831],[-3.68984,57.474818],[-3.694527,57.455389],[-3.691429,57.443356],[-3.695145,57.442278],[-3.702999,57.440654],[-3.700605,57.43623],[-3.697608,57.435911],[-3.698005,57.435321],[-3.683232,57.433938],[-3.675741,57.431321],[-3.666038,57.429776],[-3.659397,57.430293],[-3.659853,57.428155],[-3.655658,57.430406],[-3.635576,57.431215],[-3.621332,57.435132],[-3.617764,57.435438],[-3.60985,57.447358],[-3.570853,57.447671],[-3.567543,57.44742],[-3.566255,57.446928],[-3.564525,57.447776],[-3.5619,57.448164],[-3.560613,57.449047],[-3.552458,57.449107],[-3.55192,57.449774],[-3.549031,57.450429],[-3.547134,57.45127],[-3.54496,57.450902],[-3.541701,57.451287],[-3.540185,57.451108],[-3.538476,57.451668],[-3.536949,57.451619],[-3.533496,57.452942],[-3.53015,57.453427],[-3.522466,57.45542],[-3.520823,57.45678],[-3.515336,57.458534],[-3.513402,57.459532],[-3.508899,57.460686],[-3.502772,57.460678],[-3.501716,57.459927],[-3.501725,57.458974],[-3.500204,57.457601],[-3.497188,57.456801],[-3.49546,57.455321],[-3.493576,57.455096],[-3.491674,57.453821],[-3.489999,57.453194],[-3.490256,57.452557],[-3.489097,57.451507],[-3.489911,57.45085],[-3.488702,57.450195],[-3.488757,57.448478],[-3.487361,57.44735],[-3.488143,57.446896],[-3.486574,57.446007],[-3.48684,57.444557],[-3.483625,57.443342],[-3.483095,57.442616],[-3.481405,57.442227],[-3.480836,57.438443],[-3.481157,57.437734],[-3.479082,57.437098],[-3.475414,57.437033],[-3.471381,57.434493],[-3.47088,57.43342],[-3.469312,57.43338],[-3.467456,57.432301],[-3.466507,57.432668],[-3.46361,57.432],[-3.46315,57.431314],[-3.460641,57.431055],[-3.459045,57.430068],[-3.454983,57.428228],[-3.45387,57.428097],[-3.451033,57.428593],[-3.447956,57.427864],[-3.447124,57.428287],[-3.445116,57.427205],[-3.442395,57.427043],[-3.438792,57.425849],[-3.437305,57.425718],[-3.435852,57.424567],[-3.435739,57.423589],[-3.433289,57.420984],[-3.42884,57.421322],[-3.427122,57.420816],[-3.422699,57.421423],[-3.421842,57.422287],[-3.419076,57.422157],[-3.416504,57.423499],[-3.414734,57.424082],[-3.412844,57.423645],[-3.404177,57.41713],[-3.397656,57.395651],[-3.385683,57.388807],[-3.389934,57.386389],[-3.398767,57.3829],[-3.399411,57.381015],[-3.398527,57.378343],[-3.397367,57.376914],[-3.395523,57.376759],[-3.391356,57.375629],[-3.391397,57.374308],[-3.394567,57.371074],[-3.408582,57.362298],[-3.416434,57.359421],[-3.424494,57.3542],[-3.426025,57.351034],[-3.431459,57.351035],[-3.433899,57.347324],[-3.435589,57.342085],[-3.44028,57.338191],[-3.443352,57.33644],[-3.446428,57.332918],[-3.4473,57.331215],[-3.453673,57.326672],[-3.45637,57.325567],[-3.46008,57.325933],[-3.464261,57.325619],[-3.477163,57.320994],[-3.477777,57.319541],[-3.481508,57.317345],[-3.483406,57.314183],[-3.489425,57.310078],[-3.491033,57.307337],[-3.492819,57.306157],[-3.493937,57.304656],[-3.492476,57.301785],[-3.490953,57.300438],[-3.495658,57.297377],[-3.493875,57.296167],[-3.488527,57.294627],[-3.484632,57.294125],[-3.481345,57.292637],[-3.478296,57.292124],[-3.473768,57.290107],[-3.471899,57.289635],[-3.468476,57.289288],[-3.464857,57.289667],[-3.463487,57.289432],[-3.461109,57.287251],[-3.461053,57.285671],[-3.45972,57.282927],[-3.454429,57.282368],[-3.450148,57.280815],[-3.450847,57.279888],[-3.452663,57.278991],[-3.454515,57.278806],[-3.458709,57.275021],[-3.461118,57.274414],[-3.461318,57.27237],[-3.45866,57.271312],[-3.457717,57.270381],[-3.454522,57.269119],[-3.453427,57.268072],[-3.45445,57.267484],[-3.453695,57.266503],[-3.449732,57.265283],[-3.449711,57.263349],[-3.448275,57.261039],[-3.448904,57.258224],[-3.447601,57.256496],[-3.44898,57.256009],[-3.448642,57.254719],[-3.449376,57.254367],[-3.449808,57.252069],[-3.450969,57.251283],[-3.451671,57.249041],[-3.453268,57.248497],[-3.453958,57.246461],[-3.455938,57.245269],[-3.457132,57.245251],[-3.461565,57.242827],[-3.461556,57.242119],[-3.463549,57.241203],[-3.463256,57.239487],[-3.463813,57.238862],[-3.463105,57.237593],[-3.461598,57.236657],[-3.459749,57.23658],[-3.458397,57.235476],[-3.456807,57.234866],[-3.453411,57.234383],[-3.452896,57.23327],[-3.448887,57.231178],[-3.444413,57.231576],[-3.439214,57.232489],[-3.43769,57.231841],[-3.436953,57.230803],[-3.434684,57.229306],[-3.43446,57.228231],[-3.433361,57.227439],[-3.43255,57.22576],[-3.430478,57.22444],[-3.429673,57.223317],[-3.430644,57.221231],[-3.435025,57.218903],[-3.435546,57.217375],[-3.437734,57.215953],[-3.44427,57.213933],[-3.446798,57.212084],[-3.432103,57.204163],[-3.4336,57.202861],[-3.433418,57.202018],[-3.435387,57.201771],[-3.436642,57.200643],[-3.437118,57.199249],[-3.438968,57.198523],[-3.439171,57.197362],[-3.437469,57.196141],[-3.437479,57.194811],[-3.439364,57.193384],[-3.440235,57.191739],[-3.444179,57.190175],[-3.445312,57.189327],[-3.447747,57.188966],[-3.448781,57.187903],[-3.451106,57.186843],[-3.45184,57.185532],[-3.450407,57.184421],[-3.452673,57.18231],[-3.454381,57.181338],[-3.453533,57.179762],[-3.453618,57.178346],[-3.452223,57.177586],[-3.453745,57.176741],[-3.455086,57.177391],[-3.460469,57.176313],[-3.463007,57.176485],[-3.464447,57.176927],[-3.469741,57.174664],[-3.477534,57.174307],[-3.481037,57.174625],[-3.48246,57.175269],[-3.483276,57.176229],[-3.485763,57.176577],[-3.487743,57.177475],[-3.489049,57.17683],[-3.492849,57.176305],[-3.49341,57.174429],[-3.496418,57.173558],[-3.499115,57.17358],[-3.500564,57.17199],[-3.504256,57.170859],[-3.506414,57.171062],[-3.50907,57.170078],[-3.509702,57.168538],[-3.51139,57.168316],[-3.512434,57.166592],[-3.51592,57.165296],[-3.522064,57.165441],[-3.52353,57.165774],[-3.527202,57.165609],[-3.530737,57.167101],[-3.532819,57.167531],[-3.53609,57.167261],[-3.53683,57.166282],[-3.538907,57.16599],[-3.53934,57.164369],[-3.540733,57.163298],[-3.541188,57.162122],[-3.544187,57.161281],[-3.546478,57.158729],[-3.548462,57.157338],[-3.553423,57.152623],[-3.556266,57.150656],[-3.559509,57.149152],[-3.557223,57.14728],[-3.556652,57.145688],[-3.557715,57.143649],[-3.560358,57.141055],[-3.562035,57.140271],[-3.564808,57.138237],[-3.572306,57.137168],[-3.575379,57.135782],[-3.578265,57.135068],[-3.57972,57.135099],[-3.583256,57.136249],[-3.582427,57.134242],[-3.582799,57.131363],[-3.585968,57.130707],[-3.589008,57.130902],[-3.593658,57.130102],[-3.598341,57.128367],[-3.600005,57.126535],[-3.599608,57.125557],[-3.600335,57.124034],[-3.600703,57.120511],[-3.604482,57.119677],[-3.609194,57.119585],[-3.61045,57.117893],[-3.61021,57.115799],[-3.613718,57.114613],[-3.61636,57.11271],[-3.617885,57.112088],[-3.619166,57.112296],[-3.620976,57.110831],[-3.624814,57.110053],[-3.633967,57.11205],[-3.635947,57.113502],[-3.640026,57.115183],[-3.641593,57.116461],[-3.64384,57.116463],[-3.64554,57.115883],[-3.649076,57.115379],[-3.652673,57.115304],[-3.654698,57.115902],[-3.654587,57.110266],[-3.656465,57.107766],[-3.658334,57.106905],[-3.661782,57.106105],[-3.664285,57.105959],[-3.666723,57.104741],[-3.668704,57.104908],[-3.670837,57.10461],[-3.672439,57.104818],[-3.675327,57.103683],[-3.67608,57.10281],[-3.677343,57.102811],[-3.68044,57.097563],[-3.683696,57.095235],[-3.683265,57.093972],[-3.684031,57.093203],[-3.68333,57.091765],[-3.681799,57.091121],[-3.680303,57.0896],[-3.679769,57.08839],[-3.678241,57.087261],[-3.673835,57.084871],[-3.674851,57.083443],[-3.677114,57.081669],[-3.675981,57.07942],[-3.673356,57.077717],[-3.667161,57.076259],[-3.666038,57.075672],[-3.666789,57.074593],[-3.666686,57.07357],[-3.669107,57.070366],[-3.664913,57.068441],[-3.660602,57.068848],[-3.656943,57.068537],[-3.654871,57.073506],[-3.652147,57.075869],[-3.654638,57.077705],[-3.653818,57.078197],[-3.653744,57.080969],[-3.652682,57.081388],[-3.651485,57.082664],[-3.647891,57.084223],[-3.646481,57.088342],[-3.6443,57.087733],[-3.640803,57.087397],[-3.638823,57.086282],[-3.63484,57.086136],[-3.633268,57.085654],[-3.629628,57.087691],[-3.623659,57.087616],[-3.621738,57.088589],[-3.620358,57.089883],[-3.616221,57.088485],[-3.615267,57.086669],[-3.610756,57.085388],[-3.607062,57.086384],[-3.604777,57.086602],[-3.596525,57.084465],[-3.593257,57.08404],[-3.589763,57.084911],[-3.588597,57.087953],[-3.583019,57.091627],[-3.578683,57.092706],[-3.576283,57.094084],[-3.572158,57.094706],[-3.569334,57.095631],[-3.564209,57.095255],[-3.561991,57.096275],[-3.557728,57.096382],[-3.557026,57.096157],[-3.557262,57.093908],[-3.557913,57.092714],[-3.557242,57.092076],[-3.558134,57.089127],[-3.559174,57.088345],[-3.560752,57.085851],[-3.560083,57.083483],[-3.55898,57.082939],[-3.55263,57.082618],[-3.54787,57.084205],[-3.544171,57.084524],[-3.542395,57.085081],[-3.540819,57.086079],[-3.538671,57.089394],[-3.538433,57.090821],[-3.531065,57.090431],[-3.526105,57.087809],[-3.523557,57.088236],[-3.520685,57.088028],[-3.516814,57.086372],[-3.507306,57.088549],[-3.504958,57.088627],[-3.49937,57.087557],[-3.497582,57.088235],[-3.493728,57.087813],[-3.493279,57.088555],[-3.490513,57.089738],[-3.489808,57.090672],[-3.48793,57.09095],[-3.487101,57.092088],[-3.487232,57.093712],[-3.486282,57.094519],[-3.479611,57.093816],[-3.478183,57.091946],[-3.473776,57.091306],[-3.467566,57.091613],[-3.46614,57.09229],[-3.462686,57.092779],[-3.459741,57.091776],[-3.456154,57.091414],[-3.45461,57.091818],[-3.449122,57.092214],[-3.44796,57.092474],[-3.44305,57.095222],[-3.441365,57.097519],[-3.43846,57.098603],[-3.434468,57.0993],[-3.433114,57.099949],[-3.431799,57.103082],[-3.426912,57.104364],[-3.425755,57.104974],[-3.422733,57.105368],[-3.417017,57.105275],[-3.415546,57.102857],[-3.415934,57.10177],[-3.415578,57.099793],[-3.412608,57.099189],[-3.410212,57.098255],[-3.403311,57.098642],[-3.401919,57.099821],[-3.396982,57.100873],[-3.384395,57.098453],[-3.382483,57.097638],[-3.37814,57.097798],[-3.377145,57.098806],[-3.374921,57.09981],[-3.368674,57.100283],[-3.367519,57.101634],[-3.365121,57.102851],[-3.361833,57.10347],[-3.3638,57.104415],[-3.360958,57.1075],[-3.358085,57.108636],[-3.355969,57.110146],[-3.353209,57.109399],[-3.350575,57.109158],[-3.348345,57.109361],[-3.345531,57.110079],[-3.341583,57.10978],[-3.340884,57.110331],[-3.336342,57.110981],[-3.335215,57.112691],[-3.329988,57.116363],[-3.328169,57.118134],[-3.327847,57.123222],[-3.326641,57.123437],[-3.324204,57.125044],[-3.322479,57.130408],[-3.322499,57.131423],[-3.324616,57.132398],[-3.327386,57.134552],[-3.335521,57.137259],[-3.333801,57.138338],[-3.332883,57.139709],[-3.333523,57.142334],[-3.349375,57.148121],[-3.348964,57.151804],[-3.342322,57.155294],[-3.341757,57.156374],[-3.342365,57.157162],[-3.344617,57.157942],[-3.352839,57.159911],[-3.354914,57.164664],[-3.356708,57.166679],[-3.35828,57.171653],[-3.357719,57.173285],[-3.355398,57.174941],[-3.354992,57.176261],[-3.353523,57.178159],[-3.344838,57.182035],[-3.327844,57.188837],[-3.325113,57.188578],[-3.322,57.188755],[-3.313852,57.192281],[-3.307931,57.192837],[-3.297578,57.193035],[-3.296045,57.19367],[-3.290377,57.19367],[-3.284479,57.193237],[-3.280139,57.191215],[-3.277463,57.197333],[-3.275147,57.200492],[-3.265773,57.203215],[-3.264384,57.20326],[-3.258092,57.199555],[-3.25532,57.199569],[-3.247716,57.200588],[-3.242571,57.202144],[-3.239909,57.205705],[-3.247408,57.210356],[-3.248833,57.213082],[-3.246305,57.215196],[-3.245188,57.219552],[-3.243625,57.220995],[-3.235372,57.223255],[-3.236478,57.225369],[-3.238717,57.227687],[-3.236477,57.229789],[-3.235629,57.232411],[-3.229497,57.237588],[-3.22426,57.238771],[-3.225991,57.241763],[-3.225158,57.243137],[-3.218559,57.249786],[-3.216976,57.250291],[-3.213248,57.252326],[-3.208524,57.256122],[-3.205632,57.256164],[-3.201565,57.254698],[-3.199607,57.25438],[-3.19645,57.254675],[-3.194841,57.256918],[-3.192823,57.258352],[-3.188421,57.262683],[-3.184856,57.263472],[-3.164913,57.262239],[-3.159781,57.264051],[-3.157033,57.267086],[-3.152793,57.268298],[-3.146251,57.272571],[-3.143233,57.277916],[-3.141032,57.27808],[-3.136933,57.27774],[-3.128449,57.2761],[-3.126954,57.278755],[-3.122116,57.280272],[-3.119189,57.281663],[-3.115203,57.280418],[-3.110244,57.277129],[-3.108651,57.277925],[-3.104254,57.278435],[-3.102214,57.281207],[-3.095238,57.282849],[-3.092394,57.284266],[-3.088594,57.281128],[-3.083857,57.281088],[-3.082012,57.281521],[-3.081196,57.281138],[-3.078164,57.281258],[-3.076887,57.280986],[-3.073714,57.281974],[-3.07084,57.281527],[-3.069219,57.28053],[-3.067322,57.280632],[-3.066064,57.278989],[-3.067123,57.27806],[-3.064677,57.276621],[-3.060201,57.276676],[-3.055663,57.276045],[-3.053854,57.275418],[-3.050036,57.276479],[-3.047634,57.276845],[-3.046048,57.277945],[-3.043367,57.278178],[-3.04087,57.277265],[-3.038994,57.275129],[-3.037678,57.27434],[-3.034814,57.273923],[-3.031307,57.272474],[-3.03021,57.270902],[-3.030645,57.270445],[-3.029604,57.268482],[-3.029736,57.26698],[-3.026933,57.263675],[-3.025218,57.262827],[-3.019069,57.261659],[-3.018925,57.265761],[-3.01828,57.266422],[-3.010676,57.268164],[-3.006486,57.270187],[-2.998332,57.271591],[-2.990056,57.27401],[-2.988469,57.277934],[-2.984404,57.277746],[-2.984587,57.278495],[-2.983078,57.280389],[-2.983281,57.281146],[-2.976455,57.284892],[-2.973017,57.288512],[-2.977055,57.297221],[-2.976684,57.298877],[-2.962261,57.313153],[-2.959141,57.314536],[-2.957622,57.314668],[-2.954396,57.315802],[-2.952814,57.316778],[-2.951928,57.318589],[-2.95458,57.318443],[-2.962716,57.319771],[-2.965616,57.322004],[-2.968584,57.32659],[-2.972178,57.32808],[-2.97358,57.338714],[-2.970263,57.342068],[-2.969877,57.351369],[-2.972591,57.354384],[-2.977735,57.356667],[-2.983532,57.363282],[-2.979613,57.364984],[-2.974798,57.369953],[-2.968997,57.371273],[-2.960499,57.374105],[-2.956909,57.375763],[-2.954485,57.377816],[-2.957089,57.379476],[-2.961211,57.380954],[-2.962484,57.381941],[-2.96778,57.383464],[-2.975873,57.386806],[-2.976797,57.387609],[-2.979407,57.388701],[-2.982012,57.390521],[-2.983567,57.392529],[-2.985619,57.393476],[-2.984818,57.394511],[-2.985284,57.395712],[-2.988544,57.397824],[-2.989228,57.398691],[-2.993299,57.397896],[-2.995708,57.398073],[-2.997891,57.398688],[-2.99989,57.399692],[-3.002517,57.403485],[-3.006332,57.403347],[-3.007909,57.402899],[-3.011872,57.40266],[-3.023039,57.404757],[-3.024049,57.405158],[-3.021193,57.407198],[-3.018931,57.408146],[-3.017975,57.412973],[-3.00681,57.420646],[-2.997247,57.422744],[-2.995515,57.422629],[-2.992909,57.423125],[-2.990952,57.423831],[-2.98978,57.424777],[-2.983983,57.425948],[-2.980081,57.427729],[-2.978491,57.428999],[-2.975404,57.429694],[-2.973884,57.431297],[-2.971566,57.432015],[-2.970047,57.433718],[-2.967818,57.434063],[-2.965247,57.435679],[-2.964179,57.435539],[-2.962405,57.436277],[-2.96273,57.436944],[-2.960962,57.437911],[-2.957742,57.4376],[-2.955485,57.438522],[-2.955426,57.439523],[-2.957658,57.440078],[-2.959137,57.439414],[-2.960481,57.440497],[-2.961856,57.440303],[-2.965208,57.440455],[-2.969111,57.441642],[-2.972226,57.441302],[-2.975468,57.442575],[-2.979221,57.442159],[-2.980079,57.442344],[-2.981669,57.44132],[-2.98384,57.441383],[-2.984223,57.440594],[-2.987293,57.440204],[-2.989692,57.440675],[-2.991371,57.439709],[-2.995085,57.442283],[-2.996466,57.443889],[-2.998641,57.444389],[-3.000674,57.443623],[-3.010631,57.442875],[-3.016779,57.447619],[-3.019943,57.44951],[-3.017317,57.451076],[-3.014452,57.451594],[-3.012919,57.45239],[-3.01136,57.453978],[-3.010966,57.456098],[-3.013124,57.459613],[-3.012958,57.460553],[-3.011265,57.461899],[-3.006533,57.462462],[-3.003361,57.46411],[-3.001741,57.465396],[-3.000756,57.465475],[-2.998885,57.466601],[-2.996251,57.467171],[-2.993622,57.469323],[-2.99278,57.47087],[-2.989999,57.471863],[-2.985697,57.477793],[-2.986289,57.479096],[-2.987993,57.480607],[-2.986369,57.481116],[-2.986546,57.483039],[-2.984781,57.484595],[-2.983104,57.484448],[-2.980124,57.486012],[-2.97915,57.487183],[-2.976543,57.488877],[-2.976714,57.490114],[-2.973805,57.490502],[-2.971971,57.491304],[-2.972569,57.492532],[-2.971472,57.492924],[-2.972435,57.495265],[-2.971508,57.49559],[-2.972557,57.496693],[-2.970311,57.497274],[-2.967731,57.49509],[-2.962273,57.493628],[-2.95348,57.494041],[-2.948217,57.493951],[-2.939612,57.494468],[-2.937744,57.494311],[-2.928096,57.49501],[-2.916749,57.495018],[-2.916424,57.497017],[-2.920256,57.499843],[-2.921336,57.502303],[-2.91959,57.506283],[-2.914535,57.508104],[-2.909446,57.509141],[-2.886435,57.521884],[-2.889548,57.526282],[-2.88593,57.53237],[-2.883255,57.532933],[-2.868847,57.529633],[-2.866284,57.52965],[-2.86388,57.530071],[-2.859342,57.531652],[-2.851476,57.533798],[-2.846285,57.534677],[-2.836804,57.537883],[-2.826022,57.539162],[-2.823691,57.53557],[-2.820961,57.535081],[-2.819177,57.52936],[-2.818418,57.52828],[-2.818252,57.526308],[-2.81885,57.525343],[-2.818543,57.52287],[-2.817053,57.519878],[-2.815549,57.51966],[-2.811618,57.520053],[-2.809804,57.519649],[-2.80809,57.518549],[-2.806623,57.51689],[-2.802885,57.515201],[-2.800048,57.512669],[-2.79538,57.511105],[-2.79471,57.510505],[-2.791638,57.509608],[-2.788581,57.508273],[-2.786936,57.508161],[-2.782394,57.510036],[-2.781535,57.513745],[-2.779974,57.51553],[-2.778037,57.515446],[-2.775022,57.516123],[-2.772296,57.518342],[-2.765745,57.521435],[-2.763728,57.521806],[-2.760738,57.521512],[-2.758878,57.521845],[-2.757713,57.520467],[-2.75908,57.517822],[-2.75906,57.516593],[-2.760671,57.515408],[-2.759929,57.513759],[-2.753876,57.510174],[-2.749851,57.509339],[-2.744753,57.507656],[-2.743396,57.506511],[-2.742642,57.504645],[-2.741894,57.504021],[-2.736762,57.504006],[-2.73471,57.503636],[-2.732776,57.504112],[-2.7283,57.504583],[-2.723766,57.504439],[-2.717957,57.500953],[-2.708306,57.510991],[-2.703668,57.509538],[-2.700595,57.509654],[-2.697997,57.507943],[-2.695001,57.507849],[-2.693126,57.508869],[-2.692177,57.51232],[-2.691137,57.513556],[-2.692761,57.516381],[-2.68927,57.516725],[-2.681248,57.516773],[-2.68076,57.520583],[-2.678921,57.521007],[-2.670424,57.522418],[-2.667241,57.524576],[-2.660803,57.526768],[-2.660816,57.527335],[-2.658652,57.528462],[-2.656612,57.528631],[-2.654814,57.528035],[-2.650316,57.528877],[-2.649825,57.529555],[-2.651554,57.533501],[-2.652777,57.534393],[-2.655813,57.534953],[-2.658512,57.534842],[-2.662869,57.533999],[-2.668263,57.534215],[-2.669305,57.535035],[-2.667469,57.535753],[-2.664453,57.535099],[-2.663532,57.535992],[-2.664313,57.536617],[-2.668766,57.537642],[-2.67264,57.537024],[-2.677324,57.537116],[-2.68577,57.538986],[-2.694643,57.537919],[-2.696347,57.537208],[-2.698096,57.533771],[-2.697658,57.532343],[-2.69635,57.531692],[-2.700154,57.530378],[-2.701802,57.530509],[-2.703797,57.529807],[-2.707398,57.530192],[-2.711089,57.532257],[-2.711572,57.533926],[-2.712588,57.534781],[-2.712878,57.536563],[-2.714634,57.53772],[-2.715749,57.539441],[-2.711459,57.54368],[-2.716425,57.547266],[-2.717288,57.550622],[-2.717281,57.555766],[-2.719956,57.564214],[-2.726821,57.56523],[-2.729397,57.565882],[-2.734765,57.565016],[-2.736701,57.564287],[-2.740202,57.564838],[-2.742629,57.566605],[-2.749517,57.567559],[-2.749227,57.568334],[-2.752183,57.568981],[-2.749934,57.569952],[-2.748888,57.571658],[-2.748102,57.571479],[-2.746928,57.574166],[-2.748941,57.574515],[-2.748118,57.578337],[-2.747266,57.57967],[-2.748669,57.580118],[-2.752417,57.580171],[-2.75542,57.579809],[-2.759517,57.578699],[-2.77565,57.584131],[-2.775169,57.58469],[-2.778706,57.587236],[-2.780687,57.587993],[-2.782846,57.596948],[-2.792258,57.605069],[-2.810643,57.609936],[-2.805179,57.611514],[-2.802887,57.613109],[-2.797412,57.61892],[-2.787942,57.625237],[-2.785222,57.629307],[-2.782403,57.635269],[-2.78,57.642566],[-2.775557,57.645939],[-2.775882,57.648119],[-2.773795,57.648762],[-2.772407,57.650253],[-2.775652,57.651851],[-2.778268,57.653632],[-2.783206,57.654144],[-2.785986,57.655787],[-2.78875,57.658288],[-2.790805,57.661531],[-2.797551,57.662005],[-2.799957,57.663821],[-2.803168,57.665526],[-2.799831,57.667397],[-2.799898,57.668975],[-2.802796,57.669624],[-2.801571,57.67093],[-2.802917,57.672436],[-2.802327,57.673749],[-2.801525,57.679719],[-2.801921,57.691363],[-2.801546,57.695113]]],[[[-3.34629,57.7303],[-3.347322,57.730661],[-3.349106,57.730128],[-3.352585,57.729836],[-3.352338,57.729134],[-3.348838,57.729555],[-3.34629,57.7303]]]]},"properties":{"LAD22CD":"S12000020","LAD22NM":"Moray","BNG_E":328015,"BNG_N":843590,"LONG":-3.20202,"LAT":57.4768,"GlobalID":"f3b15fcc-f7ab-497c-95a7-603452905699"},"id":331}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.118861,55.428688],[-5.118693,55.430459],[-5.120341,55.429509],[-5.121353,55.427604],[-5.12039,55.425417],[-5.118622,55.424352],[-5.117366,55.424757],[-5.115969,55.425988],[-5.116424,55.426651],[-5.118397,55.42741],[-5.118861,55.428688]]],[[[-5.061181,55.514255],[-5.060076,55.517677],[-5.060966,55.518221],[-5.062734,55.52028],[-5.064805,55.523573],[-5.064902,55.524411],[-5.068369,55.527416],[-5.073344,55.533396],[-5.075539,55.535413],[-5.079735,55.537078],[-5.082287,55.537077],[-5.087578,55.536215],[-5.089288,55.535278],[-5.087653,55.531521],[-5.08693,55.525934],[-5.07731,55.522387],[-5.072709,55.517028],[-5.070374,55.512178],[-5.067142,55.51167],[-5.065103,55.512544],[-5.063382,55.512303],[-5.061181,55.514255]]],[[[-4.84448,55.647683],[-4.846325,55.647918],[-4.846732,55.64652],[-4.844846,55.646115],[-4.842967,55.64438],[-4.840983,55.643517],[-4.840642,55.645717],[-4.842062,55.645929],[-4.84448,55.647683]]],[[[-5.261651,55.721155],[-5.266617,55.721108],[-5.276125,55.720243],[-5.28001,55.720319],[-5.283226,55.719734],[-5.288478,55.717984],[-5.292307,55.714708],[-5.294702,55.713601],[-5.295201,55.712738],[-5.293929,55.711925],[-5.293656,55.710976],[-5.292342,55.709829],[-5.289109,55.708186],[-5.287202,55.70771],[-5.284367,55.70615],[-5.285448,55.703084],[-5.287063,55.702419],[-5.28841,55.703606],[-5.291769,55.704118],[-5.295101,55.70499],[-5.297123,55.705779],[-5.298548,55.707148],[-5.301957,55.707929],[-5.306137,55.70764],[-5.316144,55.70588],[-5.32118,55.70266],[-5.324914,55.699008],[-5.325411,55.69738],[-5.32706,55.694948],[-5.326233,55.693683],[-5.327159,55.691876],[-5.330072,55.688468],[-5.333143,55.687685],[-5.339726,55.686331],[-5.344966,55.685705],[-5.348841,55.684767],[-5.35015,55.683981],[-5.353433,55.682924],[-5.355921,55.681494],[-5.362832,55.679426],[-5.364889,55.678264],[-5.365101,55.677304],[-5.367234,55.676028],[-5.370789,55.672779],[-5.37199,55.67093],[-5.372219,55.668046],[-5.374442,55.664582],[-5.378309,55.660084],[-5.38125,55.654914],[-5.381544,55.653337],[-5.381148,55.651675],[-5.381827,55.650814],[-5.381514,55.649874],[-5.382795,55.645031],[-5.383455,55.644062],[-5.38343,55.640965],[-5.386094,55.635328],[-5.387952,55.632647],[-5.392572,55.630555],[-5.395035,55.627165],[-5.394861,55.623236],[-5.395832,55.622521],[-5.395537,55.621585],[-5.397051,55.617322],[-5.396434,55.615802],[-5.396785,55.615086],[-5.395975,55.614057],[-5.396389,55.61289],[-5.395268,55.611321],[-5.393105,55.609628],[-5.39282,55.608264],[-5.390501,55.607438],[-5.386614,55.604813],[-5.385786,55.602858],[-5.383218,55.600716],[-5.382616,55.598328],[-5.380029,55.596305],[-5.377912,55.592556],[-5.37426,55.589321],[-5.371554,55.585534],[-5.365221,55.58128],[-5.360565,55.579487],[-5.359389,55.578504],[-5.356953,55.577613],[-5.356276,55.575974],[-5.35451,55.574917],[-5.353053,55.573351],[-5.351013,55.572431],[-5.349083,55.570902],[-5.347538,55.568567],[-5.3484,55.567442],[-5.348381,55.566385],[-5.347333,55.562642],[-5.343967,55.557101],[-5.342921,55.554451],[-5.343804,55.550462],[-5.342115,55.546589],[-5.342616,55.543596],[-5.345686,55.541459],[-5.346228,55.540241],[-5.348258,55.539318],[-5.349363,55.538326],[-5.352807,55.533165],[-5.353235,55.531023],[-5.353816,55.530584],[-5.353596,55.52921],[-5.354154,55.528597],[-5.354364,55.52671],[-5.352795,55.523811],[-5.351375,55.522578],[-5.350332,55.520938],[-5.350071,55.518055],[-5.351467,55.517145],[-5.351144,55.515863],[-5.35012,55.514854],[-5.350026,55.513714],[-5.352207,55.510013],[-5.355113,55.508697],[-5.355382,55.506734],[-5.353566,55.507013],[-5.347598,55.506042],[-5.341355,55.504239],[-5.339532,55.503245],[-5.337718,55.502886],[-5.333857,55.501418],[-5.33286,55.500364],[-5.327053,55.498029],[-5.326788,55.496887],[-5.32474,55.494888],[-5.325222,55.493379],[-5.326856,55.491604],[-5.325473,55.485344],[-5.326393,55.4833],[-5.323182,55.478915],[-5.31862,55.471172],[-5.316696,55.46899],[-5.316866,55.4681],[-5.313204,55.464998],[-5.309952,55.463122],[-5.305842,55.462332],[-5.299951,55.460327],[-5.293223,55.456804],[-5.29147,55.456746],[-5.290664,55.456058],[-5.291342,55.455133],[-5.286828,55.452595],[-5.277186,55.4504],[-5.274921,55.44956],[-5.270185,55.448722],[-5.268141,55.447681],[-5.26237,55.446576],[-5.260886,55.445439],[-5.258072,55.444263],[-5.25733,55.443419],[-5.25532,55.442424],[-5.25334,55.442095],[-5.251382,55.439437],[-5.248181,55.439151],[-5.247261,55.438621],[-5.242161,55.438784],[-5.236846,55.438125],[-5.233878,55.438077],[-5.230145,55.437471],[-5.224149,55.437007],[-5.215958,55.435367],[-5.212766,55.435379],[-5.210234,55.434645],[-5.207473,55.434649],[-5.200232,55.433858],[-5.196609,55.433833],[-5.193981,55.434233],[-5.187275,55.434136],[-5.178748,55.434472],[-5.172818,55.43508],[-5.166611,55.437336],[-5.16107,55.44121],[-5.159431,55.441361],[-5.158933,55.442277],[-5.154812,55.442356],[-5.153281,55.442005],[-5.149639,55.442143],[-5.146241,55.442485],[-5.145739,55.442869],[-5.141857,55.442906],[-5.137898,55.443906],[-5.134241,55.443907],[-5.133487,55.443227],[-5.13033,55.442927],[-5.128818,55.442125],[-5.12633,55.443008],[-5.124489,55.442888],[-5.120089,55.441935],[-5.115743,55.440308],[-5.111389,55.440502],[-5.109859,55.441094],[-5.105759,55.44165],[-5.103203,55.442754],[-5.102591,55.443401],[-5.099948,55.444525],[-5.099141,55.446733],[-5.096475,55.449244],[-5.094201,55.450479],[-5.087994,55.452465],[-5.085024,55.453114],[-5.083583,55.454521],[-5.082063,55.460273],[-5.082117,55.461278],[-5.083205,55.462231],[-5.081724,55.463738],[-5.079378,55.464597],[-5.079163,55.46529],[-5.081147,55.46577],[-5.083524,55.468448],[-5.086574,55.474637],[-5.087943,55.479666],[-5.090793,55.480305],[-5.092243,55.482901],[-5.09453,55.48644],[-5.094815,55.489166],[-5.09426,55.490492],[-5.094587,55.492674],[-5.093406,55.494227],[-5.093665,55.49716],[-5.092867,55.498628],[-5.090312,55.50077],[-5.086402,55.502853],[-5.082681,55.504229],[-5.080221,55.506688],[-5.079262,55.509857],[-5.083709,55.51006],[-5.085612,55.511065],[-5.08765,55.510951],[-5.091883,55.511483],[-5.094793,55.513097],[-5.098411,55.514031],[-5.100487,55.515441],[-5.111076,55.520088],[-5.118176,55.522361],[-5.121627,55.523006],[-5.125117,55.524133],[-5.126227,55.524998],[-5.126815,55.52627],[-5.128237,55.527866],[-5.128636,55.531602],[-5.127875,55.532977],[-5.126635,55.534039],[-5.124208,55.535224],[-5.121682,55.536849],[-5.121785,55.537607],[-5.1175,55.54061],[-5.115489,55.541602],[-5.113512,55.541767],[-5.107785,55.543588],[-5.101859,55.543834],[-5.101382,55.544703],[-5.09817,55.545299],[-5.096399,55.54612],[-5.095047,55.548193],[-5.092225,55.54956],[-5.088811,55.550217],[-5.085242,55.550505],[-5.082542,55.550047],[-5.082917,55.552708],[-5.08844,55.555998],[-5.090795,55.557908],[-5.097323,55.561141],[-5.097889,55.561077],[-5.101859,55.56486],[-5.104504,55.56651],[-5.104346,55.56722],[-5.105704,55.568049],[-5.107123,55.57075],[-5.108717,55.571753],[-5.114672,55.573709],[-5.117907,55.574283],[-5.119795,55.574177],[-5.122363,55.575141],[-5.128242,55.576346],[-5.132622,55.576509],[-5.133515,55.576783],[-5.135987,55.576552],[-5.136503,55.577148],[-5.140332,55.576603],[-5.149562,55.577783],[-5.153392,55.580952],[-5.153647,55.583672],[-5.154415,55.587736],[-5.153513,55.590864],[-5.152947,55.591795],[-5.148894,55.592028],[-5.146335,55.593069],[-5.145251,55.594203],[-5.145431,55.595412],[-5.144134,55.596964],[-5.141757,55.597322],[-5.139099,55.598631],[-5.138511,55.59941],[-5.132718,55.602228],[-5.13208,55.604982],[-5.130557,55.606298],[-5.12887,55.607145],[-5.129516,55.609147],[-5.128504,55.612724],[-5.129128,55.613468],[-5.129801,55.616835],[-5.131231,55.618129],[-5.133489,55.621937],[-5.133636,55.624581],[-5.134625,55.624722],[-5.136072,55.627319],[-5.136534,55.629919],[-5.137284,55.631154],[-5.137145,55.633032],[-5.138247,55.635499],[-5.138349,55.638086],[-5.137952,55.640094],[-5.138836,55.641663],[-5.138558,55.643006],[-5.139103,55.64409],[-5.140984,55.645762],[-5.142499,55.649724],[-5.143638,55.650949],[-5.145296,55.651495],[-5.146751,55.652793],[-5.148671,55.656694],[-5.153508,55.66105],[-5.152952,55.663282],[-5.151227,55.665309],[-5.152718,55.667963],[-5.154929,55.669151],[-5.15703,55.671242],[-5.158179,55.672949],[-5.158867,55.675774],[-5.16112,55.678854],[-5.16206,55.679158],[-5.168457,55.683783],[-5.176219,55.686793],[-5.177533,55.687892],[-5.180167,55.688574],[-5.191531,55.694253],[-5.19574,55.697843],[-5.196872,55.699687],[-5.199165,55.700528],[-5.200615,55.701925],[-5.202252,55.702656],[-5.21497,55.706964],[-5.220745,55.709613],[-5.225102,55.710312],[-5.229446,55.71143],[-5.231495,55.71214],[-5.237039,55.714588],[-5.242341,55.715621],[-5.248256,55.717905],[-5.249651,55.718069],[-5.250996,55.718965],[-5.252845,55.719361],[-5.256317,55.720694],[-5.261651,55.721155]]],[[[-4.938204,55.734964],[-4.939544,55.73526],[-4.941775,55.73447],[-4.943003,55.733452],[-4.944202,55.733457],[-4.947288,55.731836],[-4.95086,55.731079],[-4.954391,55.729135],[-4.956039,55.728903],[-4.960939,55.726631],[-4.964244,55.724259],[-4.965427,55.723925],[-4.967495,55.721579],[-4.967668,55.718252],[-4.96565,55.71805],[-4.964008,55.717302],[-4.963504,55.715569],[-4.962501,55.714573],[-4.960482,55.713978],[-4.959414,55.712907],[-4.957906,55.712618],[-4.956422,55.711045],[-4.954033,55.710206],[-4.950529,55.710928],[-4.948396,55.711933],[-4.947761,55.713607],[-4.946734,55.713542],[-4.945689,55.715744],[-4.944051,55.720182],[-4.944707,55.721455],[-4.943302,55.725886],[-4.942185,55.727192],[-4.939428,55.727393],[-4.939087,55.728786],[-4.937947,55.729573],[-4.938588,55.731431],[-4.937546,55.733571],[-4.938204,55.734964]]],[[[-4.92396,55.748334],[-4.924362,55.748932],[-4.926657,55.74828],[-4.925741,55.747726],[-4.92396,55.748334]]],[[[-4.901725,55.792839],[-4.904547,55.793024],[-4.906069,55.792776],[-4.906823,55.791186],[-4.909613,55.790706],[-4.911906,55.791478],[-4.913012,55.791337],[-4.91594,55.791731],[-4.91684,55.790852],[-4.919388,55.789954],[-4.922004,55.789715],[-4.922965,55.788554],[-4.925907,55.787361],[-4.926625,55.785561],[-4.927727,55.784527],[-4.92957,55.784457],[-4.929654,55.782658],[-4.93035,55.780634],[-4.932118,55.778734],[-4.931145,55.777289],[-4.932902,55.776432],[-4.935047,55.774645],[-4.937611,55.768437],[-4.940715,55.767459],[-4.941101,55.766822],[-4.943399,55.765516],[-4.945996,55.758417],[-4.948649,55.757491],[-4.948311,55.756295],[-4.950447,55.753641],[-4.95043,55.751556],[-4.950951,55.750196],[-4.94948,55.747795],[-4.949797,55.747337],[-4.947225,55.744294],[-4.947698,55.743597],[-4.946617,55.74296],[-4.943807,55.742784],[-4.941342,55.743242],[-4.93935,55.744542],[-4.937755,55.748308],[-4.937513,55.749735],[-4.936054,55.749187],[-4.933828,55.749925],[-4.930256,55.752377],[-4.927628,55.75291],[-4.921717,55.753418],[-4.919517,55.753291],[-4.917598,55.754652],[-4.913938,55.753985],[-4.913927,55.753],[-4.915194,55.750308],[-4.914584,55.748312],[-4.915781,55.747421],[-4.91481,55.746794],[-4.914997,55.745881],[-4.913852,55.744785],[-4.912112,55.746219],[-4.910982,55.745829],[-4.910335,55.747248],[-4.908013,55.748872],[-4.906522,55.749419],[-4.904548,55.750771],[-4.904575,55.751306],[-4.901671,55.752878],[-4.89852,55.757534],[-4.897807,55.759738],[-4.895895,55.761319],[-4.895764,55.762192],[-4.894287,55.76365],[-4.894083,55.765697],[-4.899842,55.769957],[-4.900326,55.771508],[-4.901052,55.772145],[-4.899795,55.773833],[-4.900206,55.776805],[-4.898922,55.781684],[-4.899607,55.782604],[-4.89806,55.786609],[-4.898543,55.789177],[-4.898168,55.791007],[-4.898723,55.791901],[-4.901725,55.792839]]],[[[-4.750878,55.849755],[-4.752156,55.851263],[-4.755402,55.851743],[-4.757514,55.853579],[-4.761575,55.855421],[-4.764746,55.859207],[-4.764748,55.85992],[-4.767055,55.861581],[-4.767378,55.863304],[-4.769371,55.864701],[-4.770497,55.864905],[-4.771905,55.865943],[-4.777786,55.867487],[-4.780066,55.868748],[-4.781038,55.869926],[-4.783925,55.869388],[-4.78392,55.869986],[-4.790771,55.871112],[-4.794169,55.87223],[-4.794422,55.873532],[-4.795749,55.874307],[-4.795789,55.875097],[-4.797166,55.87578],[-4.79725,55.876731],[-4.798907,55.877426],[-4.798456,55.878692],[-4.800257,55.879629],[-4.800055,55.880825],[-4.800878,55.881916],[-4.799941,55.882571],[-4.800476,55.884334],[-4.800089,55.885174],[-4.800719,55.886045],[-4.800185,55.887285],[-4.798645,55.888102],[-4.799281,55.889728],[-4.799697,55.892608],[-4.802681,55.892396],[-4.812578,55.889797],[-4.81418,55.887617],[-4.816031,55.886788],[-4.818481,55.887487],[-4.820163,55.8873],[-4.822482,55.886097],[-4.822905,55.885089],[-4.824997,55.884713],[-4.826522,55.883033],[-4.831216,55.882165],[-4.836037,55.880405],[-4.837528,55.879692],[-4.839214,55.878026],[-4.840658,55.877328],[-4.841491,55.876144],[-4.843051,55.87605],[-4.844224,55.875259],[-4.845551,55.875143],[-4.84742,55.875661],[-4.847269,55.877094],[-4.849515,55.877644],[-4.85144,55.876525],[-4.853302,55.875974],[-4.85536,55.874812],[-4.858025,55.874314],[-4.86038,55.875131],[-4.865939,55.874785],[-4.86951,55.873731],[-4.872956,55.873667],[-4.876919,55.874195],[-4.878359,55.875117],[-4.88044,55.875517],[-4.886361,55.875479],[-4.888546,55.874735],[-4.889638,55.874439],[-4.891,55.872866],[-4.891226,55.870736],[-4.890675,55.868777],[-4.891197,55.867177],[-4.889791,55.861326],[-4.889945,55.856471],[-4.888962,55.85449],[-4.88913,55.852886],[-4.888395,55.850728],[-4.889326,55.849687],[-4.88766,55.848041],[-4.88744,55.846716],[-4.889372,55.845291],[-4.889372,55.84303],[-4.889763,55.842215],[-4.891193,55.841429],[-4.892183,55.838776],[-4.891269,55.837211],[-4.89159,55.835947],[-4.890893,55.834419],[-4.891254,55.833963],[-4.889491,55.832681],[-4.888977,55.830023],[-4.888434,55.829495],[-4.88966,55.82762],[-4.889081,55.825627],[-4.889304,55.824286],[-4.888753,55.823748],[-4.887994,55.820573],[-4.888251,55.819757],[-4.886644,55.816527],[-4.8848,55.814516],[-4.882635,55.810357],[-4.878649,55.807089],[-4.877495,55.804248],[-4.875848,55.803068],[-4.872374,55.80151],[-4.869686,55.798396],[-4.870781,55.795086],[-4.87184,55.793468],[-4.871573,55.792052],[-4.869709,55.791729],[-4.870801,55.79059],[-4.867945,55.789294],[-4.867188,55.78747],[-4.865612,55.787257],[-4.86378,55.786271],[-4.862066,55.783966],[-4.861955,55.782689],[-4.860094,55.782075],[-4.859484,55.779658],[-4.857639,55.77895],[-4.857801,55.777547],[-4.859973,55.776501],[-4.860005,55.775276],[-4.857447,55.774791],[-4.855761,55.774828],[-4.855184,55.774213],[-4.856708,55.771449],[-4.856477,55.769693],[-4.855818,55.769065],[-4.855728,55.766426],[-4.858113,55.766077],[-4.858589,55.76562],[-4.85795,55.764158],[-4.859591,55.763773],[-4.859915,55.762896],[-4.857765,55.762819],[-4.855792,55.760658],[-4.85567,55.757655],[-4.856234,55.755642],[-4.857392,55.753075],[-4.859182,55.751383],[-4.857618,55.75056],[-4.857342,55.746881],[-4.861201,55.748869],[-4.863377,55.74939],[-4.868235,55.748733],[-4.869647,55.748006],[-4.870729,55.746839],[-4.872274,55.747636],[-4.872209,55.748762],[-4.873737,55.749249],[-4.874903,55.748644],[-4.870752,55.746118],[-4.868791,55.743169],[-4.868802,55.742192],[-4.87103,55.737179],[-4.871871,55.736403],[-4.873966,55.736537],[-4.875424,55.733413],[-4.875307,55.73305],[-4.871966,55.732603],[-4.873399,55.731448],[-4.873789,55.730559],[-4.875535,55.729517],[-4.881008,55.729465],[-4.882845,55.72878],[-4.883678,55.729002],[-4.8842,55.732183],[-4.882225,55.737313],[-4.886122,55.738167],[-4.888594,55.7394],[-4.889933,55.739334],[-4.895473,55.736862],[-4.895997,55.735993],[-4.894623,55.735042],[-4.886417,55.7336],[-4.887592,55.731573],[-4.884969,55.730311],[-4.884823,55.729302],[-4.886452,55.72804],[-4.888256,55.72754],[-4.893854,55.727769],[-4.898193,55.725344],[-4.898526,55.724148],[-4.902317,55.722924],[-4.902998,55.722227],[-4.903362,55.719623],[-4.901641,55.717302],[-4.903829,55.714203],[-4.90348,55.713261],[-4.904642,55.709365],[-4.9044,55.706283],[-4.904702,55.705035],[-4.904284,55.703587],[-4.90539,55.701962],[-4.905513,55.700814],[-4.904575,55.69953],[-4.905493,55.699173],[-4.902951,55.697588],[-4.902698,55.696744],[-4.90138,55.695722],[-4.899007,55.695359],[-4.898354,55.69631],[-4.89638,55.696619],[-4.887433,55.695217],[-4.885091,55.69458],[-4.881838,55.693357],[-4.879813,55.691098],[-4.876374,55.689892],[-4.873796,55.688198],[-4.872587,55.688087],[-4.863001,55.684073],[-4.861837,55.68307],[-4.862156,55.682038],[-4.860904,55.681599],[-4.858727,55.679532],[-4.858093,55.678373],[-4.858989,55.67703],[-4.857703,55.676266],[-4.855991,55.674385],[-4.8519,55.67432],[-4.848575,55.671838],[-4.848127,55.670984],[-4.846456,55.670132],[-4.845042,55.668705],[-4.841836,55.667651],[-4.838579,55.665077],[-4.833351,55.661858],[-4.831602,55.660187],[-4.830256,55.657684],[-4.824286,55.653727],[-4.822971,55.652085],[-4.821904,55.652063],[-4.815637,55.648408],[-4.81506,55.647776],[-4.816404,55.64669],[-4.817515,55.646431],[-4.820342,55.64426],[-4.819929,55.643378],[-4.818058,55.643253],[-4.818289,55.642213],[-4.816511,55.641652],[-4.818402,55.639476],[-4.821925,55.640431],[-4.822926,55.641831],[-4.826273,55.64011],[-4.823091,55.638554],[-4.822229,55.637622],[-4.816212,55.636306],[-4.814291,55.638107],[-4.812106,55.638],[-4.810087,55.639454],[-4.808691,55.63988],[-4.800069,55.638478],[-4.798601,55.637935],[-4.795779,55.635614],[-4.794882,55.634192],[-4.794918,55.631868],[-4.795328,55.630775],[-4.79297,55.630992],[-4.7908,55.631946],[-4.789024,55.631987],[-4.786386,55.630902],[-4.783194,55.631993],[-4.781853,55.63318],[-4.778744,55.633254],[-4.76793,55.632226],[-4.759601,55.630228],[-4.755359,55.629763],[-4.753069,55.629827],[-4.752651,55.629266],[-4.749369,55.627581],[-4.750218,55.626051],[-4.749424,55.625245],[-4.75013,55.62321],[-4.746724,55.624947],[-4.741551,55.623915],[-4.731414,55.620889],[-4.722155,55.617488],[-4.710145,55.612548],[-4.701853,55.608584],[-4.69821,55.606467],[-4.698207,55.605775],[-4.695512,55.606467],[-4.691297,55.608681],[-4.692055,55.610008],[-4.694634,55.611333],[-4.695452,55.61237],[-4.698107,55.613653],[-4.700664,55.615795],[-4.700803,55.61643],[-4.704535,55.618839],[-4.706261,55.620924],[-4.707377,55.621671],[-4.707347,55.62296],[-4.709202,55.625673],[-4.710558,55.626015],[-4.710036,55.627565],[-4.712226,55.629163],[-4.71161,55.630981],[-4.714891,55.634854],[-4.714317,55.63634],[-4.712028,55.638586],[-4.711721,55.637642],[-4.713584,55.63525],[-4.713244,55.634401],[-4.709854,55.631996],[-4.709273,55.630765],[-4.706035,55.627438],[-4.706144,55.626675],[-4.703865,55.6255],[-4.703606,55.623467],[-4.702792,55.622143],[-4.699818,55.619619],[-4.696159,55.618746],[-4.690325,55.616126],[-4.688309,55.615638],[-4.68744,55.614894],[-4.688153,55.613735],[-4.687258,55.613355],[-4.686166,55.611512],[-4.685993,55.609822],[-4.684262,55.610307],[-4.682342,55.610194],[-4.682028,55.612412],[-4.682901,55.613963],[-4.685929,55.616174],[-4.686823,55.6189],[-4.686242,55.620205],[-4.684579,55.62259],[-4.682116,55.623403],[-4.67842,55.62296],[-4.675345,55.621674],[-4.675607,55.621077],[-4.678521,55.622314],[-4.681398,55.622635],[-4.683793,55.621383],[-4.685096,55.618838],[-4.684862,55.617484],[-4.683852,55.617568],[-4.68057,55.613493],[-4.679255,55.610293],[-4.683796,55.608136],[-4.689087,55.607954],[-4.691626,55.607323],[-4.694365,55.605908],[-4.694646,55.604487],[-4.68666,55.600528],[-4.677778,55.594157],[-4.671663,55.589197],[-4.662552,55.578183],[-4.659626,55.573523],[-4.658333,55.570201],[-4.657536,55.569748],[-4.654682,55.570599],[-4.652068,55.563074],[-4.647811,55.563358],[-4.643523,55.565734],[-4.638461,55.569647],[-4.605856,55.593241],[-4.603615,55.594158],[-4.59973,55.595098],[-4.599228,55.595991],[-4.593935,55.597728],[-4.592211,55.597949],[-4.594083,55.60065],[-4.591566,55.600876],[-4.592485,55.601745],[-4.579758,55.602905],[-4.579338,55.603656],[-4.581009,55.604706],[-4.583096,55.605423],[-4.585482,55.604997],[-4.587446,55.607462],[-4.589215,55.607656],[-4.587361,55.609272],[-4.58718,55.610339],[-4.584995,55.611613],[-4.583794,55.611871],[-4.583325,55.61332],[-4.584927,55.61438],[-4.588228,55.61571],[-4.588933,55.616644],[-4.588494,55.618161],[-4.585864,55.618743],[-4.583189,55.618874],[-4.578071,55.620883],[-4.576588,55.62236],[-4.574848,55.623334],[-4.573065,55.623649],[-4.570251,55.621919],[-4.567263,55.621583],[-4.562992,55.622151],[-4.561436,55.62264],[-4.560323,55.624086],[-4.558743,55.625219],[-4.558965,55.62707],[-4.560828,55.627597],[-4.560709,55.628687],[-4.562684,55.62881],[-4.563516,55.629681],[-4.567583,55.630537],[-4.569555,55.632628],[-4.567282,55.634043],[-4.5636,55.633717],[-4.561445,55.635441],[-4.5606,55.636533],[-4.559889,55.639984],[-4.557956,55.641318],[-4.557892,55.644584],[-4.557042,55.646841],[-4.553789,55.647618],[-4.549986,55.645832],[-4.548099,55.645466],[-4.54239,55.646765],[-4.535114,55.647655],[-4.531388,55.650213],[-4.52398,55.651329],[-4.523546,55.652756],[-4.519145,55.652632],[-4.518782,55.653412],[-4.517332,55.653995],[-4.514636,55.654041],[-4.511876,55.656207],[-4.510438,55.656482],[-4.496192,55.656491],[-4.496171,55.65721],[-4.492457,55.663267],[-4.492621,55.665068],[-4.502233,55.665148],[-4.507133,55.662836],[-4.508516,55.661083],[-4.510741,55.661216],[-4.513123,55.660517],[-4.519765,55.659477],[-4.525926,55.659406],[-4.531045,55.660627],[-4.530374,55.661755],[-4.530676,55.663181],[-4.533475,55.663745],[-4.534702,55.666447],[-4.53983,55.66722],[-4.542415,55.667179],[-4.543888,55.666708],[-4.546486,55.667007],[-4.549338,55.665584],[-4.548931,55.664412],[-4.551,55.663512],[-4.55481,55.663808],[-4.558064,55.661067],[-4.560029,55.660014],[-4.56132,55.660137],[-4.563393,55.661196],[-4.564638,55.660541],[-4.562322,55.659055],[-4.562367,55.657955],[-4.56492,55.657401],[-4.565166,55.655781],[-4.570198,55.655169],[-4.571892,55.653529],[-4.572457,55.651499],[-4.571496,55.649695],[-4.571918,55.6484],[-4.576006,55.649196],[-4.578614,55.648507],[-4.580943,55.646712],[-4.582651,55.646535],[-4.582217,55.648165],[-4.583666,55.648572],[-4.585657,55.64578],[-4.587939,55.646211],[-4.590097,55.647123],[-4.590496,55.645911],[-4.592675,55.645051],[-4.593639,55.644154],[-4.597105,55.644809],[-4.59654,55.645644],[-4.603784,55.647342],[-4.598985,55.651674],[-4.596756,55.655077],[-4.603199,55.658688],[-4.609621,55.659003],[-4.608544,55.660175],[-4.612064,55.661841],[-4.61644,55.663007],[-4.618577,55.662889],[-4.620309,55.6623],[-4.622582,55.662244],[-4.621184,55.667484],[-4.626709,55.668557],[-4.627509,55.66826],[-4.630861,55.668349],[-4.632652,55.667961],[-4.638592,55.668981],[-4.637586,55.670432],[-4.637525,55.671674],[-4.633825,55.673232],[-4.631016,55.673155],[-4.62955,55.67343],[-4.62992,55.674719],[-4.627871,55.675575],[-4.624201,55.675176],[-4.623338,55.676499],[-4.620695,55.677009],[-4.617693,55.676787],[-4.613929,55.675989],[-4.61102,55.67636],[-4.60982,55.677805],[-4.610107,55.680062],[-4.609164,55.682235],[-4.607686,55.68261],[-4.607144,55.683869],[-4.605914,55.684749],[-4.600127,55.685327],[-4.597766,55.686269],[-4.597618,55.688207],[-4.594669,55.689154],[-4.594746,55.690778],[-4.593195,55.691064],[-4.590974,55.693038],[-4.592246,55.693769],[-4.591778,55.694854],[-4.592932,55.695787],[-4.59128,55.698285],[-4.579661,55.705416],[-4.578715,55.706083],[-4.578229,55.708041],[-4.579785,55.710291],[-4.579224,55.712286],[-4.578076,55.713061],[-4.576077,55.713606],[-4.574703,55.713552],[-4.571704,55.715869],[-4.568919,55.71669],[-4.566498,55.716873],[-4.56551,55.717882],[-4.564018,55.718434],[-4.559752,55.722714],[-4.557502,55.723127],[-4.557699,55.724229],[-4.559056,55.725399],[-4.556377,55.726067],[-4.554361,55.725691],[-4.553077,55.727052],[-4.552115,55.727248],[-4.549669,55.73049],[-4.549803,55.73185],[-4.547655,55.732363],[-4.547394,55.733784],[-4.545054,55.734009],[-4.544237,55.734504],[-4.543558,55.736182],[-4.542448,55.736362],[-4.542469,55.73818],[-4.540553,55.739469],[-4.53653,55.739846],[-4.533108,55.743293],[-4.529908,55.744573],[-4.530931,55.744549],[-4.53139,55.745829],[-4.532985,55.746883],[-4.533365,55.74822],[-4.534667,55.749785],[-4.537234,55.750816],[-4.540261,55.75127],[-4.537725,55.754419],[-4.537344,55.756167],[-4.541316,55.757351],[-4.541758,55.759894],[-4.540125,55.762016],[-4.540771,55.76242],[-4.541844,55.764448],[-4.542601,55.764834],[-4.54789,55.765473],[-4.549584,55.766475],[-4.550927,55.766383],[-4.55823,55.7666],[-4.558282,55.767879],[-4.557439,55.769928],[-4.559691,55.77065],[-4.560552,55.771324],[-4.562349,55.771546],[-4.562825,55.773572],[-4.564527,55.774627],[-4.564943,55.777956],[-4.567133,55.778736],[-4.569241,55.778076],[-4.57236,55.77896],[-4.573302,55.781035],[-4.5725,55.781744],[-4.572204,55.783391],[-4.574642,55.783452],[-4.576673,55.783051],[-4.578762,55.781888],[-4.579141,55.780325],[-4.580957,55.777821],[-4.579502,55.777065],[-4.580247,55.776361],[-4.583074,55.775293],[-4.584985,55.77565],[-4.584694,55.776405],[-4.5894,55.776308],[-4.594436,55.774356],[-4.596798,55.771759],[-4.599763,55.77258],[-4.601667,55.770803],[-4.604568,55.770337],[-4.60614,55.769605],[-4.606951,55.767388],[-4.610205,55.766955],[-4.610983,55.766038],[-4.612471,55.765561],[-4.614694,55.762646],[-4.616536,55.761496],[-4.616655,55.762951],[-4.61844,55.764846],[-4.61928,55.764412],[-4.623917,55.764125],[-4.626006,55.76453],[-4.628271,55.764477],[-4.631914,55.765616],[-4.634471,55.76831],[-4.634192,55.768924],[-4.634647,55.770875],[-4.631846,55.773899],[-4.634552,55.775063],[-4.633733,55.77604],[-4.638668,55.774785],[-4.644537,55.7689],[-4.648653,55.762433],[-4.650454,55.76085],[-4.655047,55.759841],[-4.659193,55.759941],[-4.657702,55.761284],[-4.657669,55.763115],[-4.656649,55.764631],[-4.658161,55.765402],[-4.658454,55.766298],[-4.659677,55.766548],[-4.662359,55.768004],[-4.663978,55.767406],[-4.665616,55.768446],[-4.665396,55.769358],[-4.664035,55.769737],[-4.664607,55.770987],[-4.66657,55.771245],[-4.666144,55.772251],[-4.669056,55.774286],[-4.668403,55.774834],[-4.669759,55.776592],[-4.670858,55.777409],[-4.671233,55.77857],[-4.67286,55.779135],[-4.677486,55.779075],[-4.676809,55.779946],[-4.677196,55.780939],[-4.67678,55.782482],[-4.674672,55.783602],[-4.673189,55.785154],[-4.672755,55.786842],[-4.67366,55.787574],[-4.673346,55.789043],[-4.676114,55.790389],[-4.677508,55.791549],[-4.678382,55.793383],[-4.679208,55.794065],[-4.679429,55.795309],[-4.680905,55.796426],[-4.681893,55.796553],[-4.682201,55.798146],[-4.683315,55.799034],[-4.684644,55.801526],[-4.68438,55.802332],[-4.685698,55.803737],[-4.687175,55.803875],[-4.688845,55.804589],[-4.697995,55.803517],[-4.709974,55.803999],[-4.720456,55.805107],[-4.721512,55.80605],[-4.728339,55.80953],[-4.73035,55.811013],[-4.72235,55.820786],[-4.73092,55.822238],[-4.744908,55.824275],[-4.748938,55.827071],[-4.757925,55.829283],[-4.765034,55.833478],[-4.779092,55.839453],[-4.783709,55.839789],[-4.783992,55.841513],[-4.783369,55.841968],[-4.783502,55.843596],[-4.781363,55.844404],[-4.780061,55.84429],[-4.775889,55.844937],[-4.773692,55.844591],[-4.771169,55.844612],[-4.767786,55.845677],[-4.76509,55.845512],[-4.762114,55.845791],[-4.759826,55.846305],[-4.759567,55.847113],[-4.75371,55.848154],[-4.753195,55.849119],[-4.750878,55.849755]]]]},"properties":{"LAD22CD":"S12000021","LAD22NM":"North Ayrshire","BNG_E":228996,"BNG_N":651640,"LONG":-4.7246,"LAT":55.72789,"GlobalID":"d176cf7b-0c67-4c95-9895-e6a90a960fd0"},"id":332}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.918358,58.690898],[-2.918961,58.691523],[-2.921125,58.690825],[-2.924566,58.691442],[-2.927378,58.691112],[-2.932949,58.689451],[-2.933347,58.688195],[-2.929504,58.686741],[-2.927054,58.686718],[-2.92338,58.686062],[-2.921226,58.686486],[-2.919546,58.68622],[-2.917312,58.687547],[-2.917875,58.688616],[-2.917373,58.690165],[-2.918358,58.690898]]],[[[-2.97369,58.731694],[-2.975002,58.732468],[-2.976673,58.731637],[-2.977517,58.72977],[-2.975019,58.729793],[-2.97369,58.731694]]],[[[-3.049795,58.75174],[-3.050685,58.752144],[-3.053684,58.75196],[-3.05443,58.750697],[-3.055911,58.750532],[-3.056392,58.749576],[-3.054358,58.748322],[-3.054605,58.747646],[-3.06013,58.745212],[-3.062497,58.744626],[-3.063987,58.740518],[-3.064071,58.739584],[-3.066708,58.737976],[-3.069774,58.737956],[-3.072093,58.737541],[-3.071813,58.736856],[-3.06833,58.736221],[-3.06421,58.736228],[-3.060559,58.737174],[-3.058969,58.737995],[-3.056998,58.73747],[-3.054558,58.739222],[-3.053147,58.739714],[-3.0515,58.741815],[-3.052051,58.742871],[-3.050531,58.744547],[-3.05109,58.746817],[-3.049876,58.747267],[-3.051565,58.749382],[-3.050241,58.750461],[-3.049795,58.75174]]],[[[-3.103593,58.795844],[-3.099988,58.796719],[-3.098981,58.797597],[-3.098851,58.799068],[-3.09958,58.7997],[-3.094777,58.801875],[-3.093473,58.803043],[-3.093198,58.803962],[-3.096458,58.803871],[-3.09873,58.803201],[-3.102057,58.802746],[-3.108169,58.80012],[-3.109489,58.799193],[-3.112526,58.797837],[-3.108737,58.797861],[-3.107967,58.797589],[-3.109144,58.794981],[-3.103593,58.795844]]],[[[-3.064592,58.845035],[-3.064562,58.846033],[-3.066857,58.84684],[-3.066692,58.848512],[-3.068695,58.849389],[-3.074553,58.849129],[-3.079281,58.848448],[-3.088467,58.846273],[-3.09656,58.84519],[-3.103897,58.844858],[-3.108682,58.843824],[-3.112284,58.843557],[-3.116297,58.842641],[-3.119456,58.843336],[-3.121334,58.842932],[-3.128632,58.84001],[-3.129095,58.83957],[-3.128228,58.837162],[-3.129682,58.836066],[-3.131831,58.835289],[-3.138309,58.83445],[-3.142692,58.833415],[-3.146427,58.830831],[-3.147783,58.829409],[-3.147721,58.828071],[-3.138854,58.816756],[-3.136,58.816063],[-3.134202,58.815086],[-3.130278,58.813693],[-3.127969,58.813205],[-3.126379,58.813341],[-3.123833,58.814185],[-3.121189,58.815883],[-3.117759,58.816388],[-3.116183,58.816217],[-3.114521,58.815296],[-3.107106,58.814404],[-3.105661,58.814723],[-3.10517,58.815806],[-3.103971,58.816537],[-3.104083,58.81756],[-3.105131,58.818796],[-3.102902,58.820212],[-3.10098,58.820328],[-3.096544,58.819248],[-3.091672,58.817337],[-3.089713,58.815131],[-3.08776,58.814743],[-3.085,58.814897],[-3.083045,58.814504],[-3.079567,58.815182],[-3.078335,58.816749],[-3.080435,58.818461],[-3.082321,58.821358],[-3.084262,58.822201],[-3.0835,58.824233],[-3.083623,58.825563],[-3.081961,58.826807],[-3.07864,58.827723],[-3.07732,58.828724],[-3.077065,58.831555],[-3.079673,58.832728],[-3.082251,58.832014],[-3.088089,58.831246],[-3.092612,58.829363],[-3.096419,58.829226],[-3.099608,58.828624],[-3.101882,58.828664],[-3.106021,58.829401],[-3.110752,58.831264],[-3.111953,58.833598],[-3.111573,58.835213],[-3.113557,58.836882],[-3.109555,58.837804],[-3.108034,58.838486],[-3.107146,58.837695],[-3.104308,58.836524],[-3.102151,58.835159],[-3.099188,58.835427],[-3.096187,58.838039],[-3.093937,58.839199],[-3.090148,58.840475],[-3.086974,58.840946],[-3.084062,58.84283],[-3.081874,58.84354],[-3.075997,58.844173],[-3.07385,58.844047],[-3.072015,58.843276],[-3.067711,58.843626],[-3.064592,58.845035]]],[[[-3.075956,58.851897],[-3.068274,58.853174],[-3.065792,58.854793],[-3.071904,58.855079],[-3.079948,58.853184],[-3.08082,58.851955],[-3.079521,58.851697],[-3.075956,58.851897]]],[[[-3.159822,58.833329],[-3.157816,58.833697],[-3.156136,58.834485],[-3.153556,58.834791],[-3.153337,58.835484],[-3.151233,58.836559],[-3.149573,58.8385],[-3.150371,58.842175],[-3.1533,58.844017],[-3.159586,58.845959],[-3.160078,58.847715],[-3.16328,58.848877],[-3.165019,58.850087],[-3.164875,58.851215],[-3.163074,58.852058],[-3.162883,58.852828],[-3.161211,58.853606],[-3.160944,58.854677],[-3.1678,58.856502],[-3.170419,58.85655],[-3.171442,58.855279],[-3.174672,58.854688],[-3.175232,58.853309],[-3.174404,58.851893],[-3.178674,58.850268],[-3.181511,58.84731],[-3.181433,58.845276],[-3.17964,58.843025],[-3.177674,58.842005],[-3.175046,58.841158],[-3.17396,58.83749],[-3.174315,58.836728],[-3.173036,58.835002],[-3.17054,58.833443],[-3.166878,58.832969],[-3.159822,58.833329]]],[[[-3.190713,58.857913],[-3.189383,58.859313],[-3.189713,58.860599],[-3.198835,58.863416],[-3.199422,58.864848],[-3.19864,58.867063],[-3.19999,58.868242],[-3.201514,58.868187],[-3.20226,58.866438],[-3.200765,58.864597],[-3.202087,58.862456],[-3.201,58.861617],[-3.200482,58.859179],[-3.192867,58.857283],[-3.190713,58.857913]]],[[[-3.163837,58.873187],[-3.163165,58.873768],[-3.160032,58.874719],[-3.156621,58.876301],[-3.157364,58.878074],[-3.159116,58.879018],[-3.164607,58.880439],[-3.171298,58.883107],[-3.173342,58.883345],[-3.175184,58.884759],[-3.174316,58.886577],[-3.177839,58.887368],[-3.178839,58.887278],[-3.175637,58.88476],[-3.176812,58.881824],[-3.176877,58.879484],[-3.176292,58.878544],[-3.173013,58.87653],[-3.173277,58.875434],[-3.170443,58.874207],[-3.16913,58.871893],[-3.163837,58.873187]]],[[[-2.701922,58.897503],[-2.703264,58.899608],[-2.70447,58.899008],[-2.704375,58.897548],[-2.703572,58.896923],[-2.701922,58.897503]]],[[[-2.664182,58.901542],[-2.665598,58.901638],[-2.669205,58.900824],[-2.672481,58.900513],[-2.672928,58.901546],[-2.67478,58.900841],[-2.677738,58.901137],[-2.680416,58.900343],[-2.681278,58.89952],[-2.683627,58.899278],[-2.681027,58.897951],[-2.681749,58.895229],[-2.683827,58.894033],[-2.684319,58.893318],[-2.683809,58.892079],[-2.681586,58.891532],[-2.677629,58.893171],[-2.674999,58.894814],[-2.672465,58.895747],[-2.670706,58.897478],[-2.664182,58.901542]]],[[[-2.694843,58.902813],[-2.697801,58.902813],[-2.699991,58.902137],[-2.702985,58.899898],[-2.699489,58.899453],[-2.697848,58.899904],[-2.696332,58.900996],[-2.694016,58.901359],[-2.694843,58.902813]]],[[[-2.704431,58.903593],[-2.705273,58.904085],[-2.707164,58.903956],[-2.70678,58.902935],[-2.704569,58.902993],[-2.704431,58.903593]]],[[[-3.186035,58.909331],[-3.184043,58.910341],[-3.190376,58.912446],[-3.192921,58.910559],[-3.191717,58.909092],[-3.189533,58.908721],[-3.186035,58.909331]]],[[[-3.322288,58.927533],[-3.323287,58.927253],[-3.32153,58.92551],[-3.320491,58.926371],[-3.322288,58.927533]]],[[[-3.319268,58.928599],[-3.32186,58.928452],[-3.319389,58.927062],[-3.317558,58.927902],[-3.319268,58.928599]]],[[[-3.320853,58.931661],[-3.32225,58.931025],[-3.320594,58.930013],[-3.319576,58.93088],[-3.320853,58.931661]]],[[[-3.354162,58.932279],[-3.356385,58.931841],[-3.356995,58.930717],[-3.360103,58.929406],[-3.363206,58.929377],[-3.364624,58.928427],[-3.367136,58.928873],[-3.368678,58.928423],[-3.369736,58.926476],[-3.370877,58.926692],[-3.373954,58.926274],[-3.376647,58.925364],[-3.377677,58.924631],[-3.376901,58.923538],[-3.378399,58.922552],[-3.384306,58.922339],[-3.387759,58.92176],[-3.388874,58.922741],[-3.391408,58.922362],[-3.394666,58.923896],[-3.396576,58.924097],[-3.397968,58.923084],[-3.398291,58.922047],[-3.400829,58.921907],[-3.402683,58.922229],[-3.403226,58.920408],[-3.405048,58.920366],[-3.405906,58.919266],[-3.406331,58.917536],[-3.408513,58.91718],[-3.409728,58.915869],[-3.412258,58.91479],[-3.413797,58.913669],[-3.41411,58.912637],[-3.416505,58.911125],[-3.417125,58.909083],[-3.41829,58.908482],[-3.417848,58.907656],[-3.418955,58.906503],[-3.41871,58.905805],[-3.423082,58.901109],[-3.423424,58.898222],[-3.422908,58.895803],[-3.424382,58.893249],[-3.423641,58.89275],[-3.423515,58.891157],[-3.425154,58.888817],[-3.426409,58.888327],[-3.42733,58.886669],[-3.430438,58.886105],[-3.428405,58.884555],[-3.42918,58.882728],[-3.43156,58.881332],[-3.434082,58.880459],[-3.435065,58.879474],[-3.435877,58.876249],[-3.435681,58.874864],[-3.434602,58.873097],[-3.435164,58.872229],[-3.434494,58.871329],[-3.428363,58.871325],[-3.42236,58.872312],[-3.417318,58.872004],[-3.413179,58.870872],[-3.412941,58.870512],[-3.407721,58.869499],[-3.403678,58.86922],[-3.395063,58.870658],[-3.39107,58.87084],[-3.386366,58.87007],[-3.383043,58.86918],[-3.380097,58.867785],[-3.377767,58.866159],[-3.37563,58.863465],[-3.377073,58.861108],[-3.378757,58.85964],[-3.378756,58.858288],[-3.37799,58.857142],[-3.37888,58.856414],[-3.377552,58.855925],[-3.377516,58.854578],[-3.375522,58.854049],[-3.376252,58.85134],[-3.375911,58.850621],[-3.373577,58.849896],[-3.374505,58.849033],[-3.375184,58.847373],[-3.375203,58.845019],[-3.37267,58.842756],[-3.372107,58.841671],[-3.369084,58.840584],[-3.368771,58.84013],[-3.369998,58.837198],[-3.368882,58.836338],[-3.365187,58.836009],[-3.362457,58.83333],[-3.360163,58.833161],[-3.357383,58.831623],[-3.355211,58.831228],[-3.355154,58.82976],[-3.35155,58.828635],[-3.351848,58.827612],[-3.349354,58.826489],[-3.343204,58.824231],[-3.343421,58.823353],[-3.341582,58.821697],[-3.338448,58.82058],[-3.336561,58.820384],[-3.332636,58.819167],[-3.330025,58.817281],[-3.328078,58.816654],[-3.333896,58.813895],[-3.334476,58.812435],[-3.332689,58.811582],[-3.330486,58.809845],[-3.328457,58.810244],[-3.326314,58.809648],[-3.326936,58.808461],[-3.328234,58.807817],[-3.325845,58.807318],[-3.326375,58.806765],[-3.32486,58.805875],[-3.323304,58.806028],[-3.322506,58.8053],[-3.323492,58.804392],[-3.322322,58.803749],[-3.324063,58.802329],[-3.324174,58.800257],[-3.323222,58.79821],[-3.321926,58.797105],[-3.322141,58.796394],[-3.320062,58.796114],[-3.317907,58.794497],[-3.317567,58.79353],[-3.315377,58.793274],[-3.309928,58.789396],[-3.307251,58.787923],[-3.306441,58.786171],[-3.304068,58.784717],[-3.300526,58.784138],[-3.297831,58.783298],[-3.297039,58.781541],[-3.298595,58.780843],[-3.297658,58.780289],[-3.297803,58.77909],[-3.296987,58.778066],[-3.294293,58.777491],[-3.293633,58.776469],[-3.289345,58.776049],[-3.287545,58.77648],[-3.281521,58.778994],[-3.277804,58.779956],[-3.275222,58.779467],[-3.274358,58.778211],[-3.273279,58.778342],[-3.272281,58.779394],[-3.270521,58.780372],[-3.268259,58.77971],[-3.266183,58.779654],[-3.259453,58.780277],[-3.257523,58.781186],[-3.255295,58.781614],[-3.251893,58.781379],[-3.249946,58.781613],[-3.248645,58.780531],[-3.246225,58.780262],[-3.246586,58.779014],[-3.244456,58.779338],[-3.244032,58.777828],[-3.242129,58.777076],[-3.241163,58.774796],[-3.239444,58.775125],[-3.237825,58.774016],[-3.237668,58.773144],[-3.234827,58.772436],[-3.232978,58.772424],[-3.232075,58.771802],[-3.229654,58.772042],[-3.227723,58.773349],[-3.227504,58.774042],[-3.223822,58.774077],[-3.22211,58.775291],[-3.220161,58.776067],[-3.225252,58.778679],[-3.229878,58.780309],[-3.234853,58.781511],[-3.234956,58.782689],[-3.234312,58.783847],[-3.231392,58.785195],[-3.228595,58.785324],[-3.222901,58.784199],[-3.219479,58.78418],[-3.217502,58.781949],[-3.216238,58.781711],[-3.214641,58.782321],[-3.213046,58.782179],[-3.210813,58.780207],[-3.207569,58.780643],[-3.206079,58.779208],[-3.201836,58.778319],[-3.201895,58.777527],[-3.19684,58.778653],[-3.196291,58.777518],[-3.194563,58.777856],[-3.189767,58.777662],[-3.188161,58.77704],[-3.184834,58.777577],[-3.184164,58.778652],[-3.182019,58.777844],[-3.179571,58.777636],[-3.17808,58.779091],[-3.174783,58.779829],[-3.172968,58.779692],[-3.171258,58.780801],[-3.168981,58.779772],[-3.166546,58.781067],[-3.164379,58.780584],[-3.162143,58.780811],[-3.161317,58.781834],[-3.15978,58.782337],[-3.157668,58.78215],[-3.157332,58.781152],[-3.153861,58.781464],[-3.152268,58.782154],[-3.150119,58.782395],[-3.146413,58.78389],[-3.14493,58.784075],[-3.142748,58.78367],[-3.138758,58.784018],[-3.131749,58.786485],[-3.130069,58.787753],[-3.130888,58.789395],[-3.132116,58.789779],[-3.135042,58.789673],[-3.141884,58.788617],[-3.145364,58.786622],[-3.148384,58.786144],[-3.152498,58.786209],[-3.154129,58.787485],[-3.149507,58.78969],[-3.148073,58.791044],[-3.146974,58.791376],[-3.14691,58.79278],[-3.142905,58.795076],[-3.142458,58.796406],[-3.140079,58.797656],[-3.140242,58.799359],[-3.138611,58.802106],[-3.140436,58.803586],[-3.145385,58.804704],[-3.148637,58.806382],[-3.152379,58.806563],[-3.157693,58.805385],[-3.158061,58.8043],[-3.160026,58.802473],[-3.16151,58.801794],[-3.164755,58.801074],[-3.167878,58.801025],[-3.169513,58.802087],[-3.172713,58.802478],[-3.174041,58.802215],[-3.181063,58.802404],[-3.183022,58.801987],[-3.184929,58.800785],[-3.187586,58.800733],[-3.191556,58.800159],[-3.194783,58.798797],[-3.19641,58.798494],[-3.200515,58.799542],[-3.205077,58.799796],[-3.207191,58.800874],[-3.211017,58.799874],[-3.212625,58.798954],[-3.215082,58.794601],[-3.218664,58.792286],[-3.219926,58.790439],[-3.221526,58.789461],[-3.224709,58.786183],[-3.226419,58.785496],[-3.229746,58.785534],[-3.232305,58.78516],[-3.236077,58.783415],[-3.23838,58.783442],[-3.240596,58.784553],[-3.246411,58.785937],[-3.250346,58.786107],[-3.251868,58.785594],[-3.256739,58.785605],[-3.259296,58.78685],[-3.259635,58.787981],[-3.258752,58.788686],[-3.255512,58.790012],[-3.252788,58.790694],[-3.2533,58.791398],[-3.252199,58.792767],[-3.251974,58.795035],[-3.24947,58.798923],[-3.24648,58.800672],[-3.243902,58.8017],[-3.240815,58.802258],[-3.230003,58.802591],[-3.225509,58.802281],[-3.221541,58.803371],[-3.217747,58.80558],[-3.214267,58.806035],[-3.210888,58.807013],[-3.209136,58.806802],[-3.205759,58.805142],[-3.204347,58.80511],[-3.203132,58.806132],[-3.203675,58.808285],[-3.20271,58.809885],[-3.201491,58.810806],[-3.196951,58.812655],[-3.194211,58.813383],[-3.186821,58.814376],[-3.184487,58.814414],[-3.17841,58.817909],[-3.173858,58.819586],[-3.170951,58.820249],[-3.170399,58.820947],[-3.171908,58.823457],[-3.174603,58.824777],[-3.178527,58.825801],[-3.185621,58.82597],[-3.18908,58.826865],[-3.194124,58.826695],[-3.199692,58.826072],[-3.204231,58.826843],[-3.204258,58.827915],[-3.202534,58.829468],[-3.200471,58.830624],[-3.197131,58.831417],[-3.196378,58.831291],[-3.193474,58.833521],[-3.190531,58.833586],[-3.190956,58.835929],[-3.194333,58.836456],[-3.194937,58.838261],[-3.196242,58.83857],[-3.201796,58.838448],[-3.209262,58.836648],[-3.211096,58.83704],[-3.21354,58.838776],[-3.213857,58.840569],[-3.211341,58.841681],[-3.208732,58.843414],[-3.20196,58.846087],[-3.200325,58.846317],[-3.198252,58.847785],[-3.198557,58.848434],[-3.200907,58.850586],[-3.19787,58.851653],[-3.198909,58.853825],[-3.201877,58.856002],[-3.206007,58.856004],[-3.208134,58.856615],[-3.210178,58.856587],[-3.211774,58.857474],[-3.213268,58.857703],[-3.213842,58.858635],[-3.215331,58.859069],[-3.216978,58.862041],[-3.212289,58.863897],[-3.212699,58.86595],[-3.215974,58.868613],[-3.216904,58.868923],[-3.222041,58.869292],[-3.225875,58.869085],[-3.229576,58.869373],[-3.230338,58.871221],[-3.22787,58.871559],[-3.226039,58.872488],[-3.221524,58.873797],[-3.214742,58.874274],[-3.212532,58.874066],[-3.210571,58.875041],[-3.210541,58.875661],[-3.212455,58.877886],[-3.214771,58.878275],[-3.216306,58.879569],[-3.220001,58.881298],[-3.222809,58.882196],[-3.226167,58.882721],[-3.228515,58.884352],[-3.229299,58.885664],[-3.231876,58.887153],[-3.235731,58.887965],[-3.236701,58.886721],[-3.239703,58.886728],[-3.24276,58.888275],[-3.244523,58.890257],[-3.248442,58.892114],[-3.250819,58.892827],[-3.254759,58.894985],[-3.256252,58.895483],[-3.260308,58.895573],[-3.262684,58.896246],[-3.266255,58.898039],[-3.2664,58.898684],[-3.268381,58.899918],[-3.273209,58.900976],[-3.277109,58.901511],[-3.277601,58.902128],[-3.282747,58.903503],[-3.283464,58.904354],[-3.285403,58.905139],[-3.289054,58.905383],[-3.291159,58.905105],[-3.296563,58.905435],[-3.309474,58.90727],[-3.31443,58.906629],[-3.317256,58.907549],[-3.318307,58.909254],[-3.318237,58.910983],[-3.31707,58.912245],[-3.314239,58.912923],[-3.314076,58.913841],[-3.312352,58.915689],[-3.313721,58.917039],[-3.315269,58.917429],[-3.317077,58.916573],[-3.320881,58.916421],[-3.324443,58.917459],[-3.326318,58.918591],[-3.328008,58.922287],[-3.324601,58.925595],[-3.325628,58.927683],[-3.328862,58.928884],[-3.33147,58.928688],[-3.334989,58.929474],[-3.338318,58.929545],[-3.341567,58.929058],[-3.345502,58.929901],[-3.346765,58.929767],[-3.349573,58.930373],[-3.35153,58.931401],[-3.354162,58.932279]]],[[[-3.308451,58.940698],[-3.310777,58.940595],[-3.313607,58.938524],[-3.312019,58.936089],[-3.311093,58.935425],[-3.312146,58.93391],[-3.310901,58.933466],[-3.309777,58.932136],[-3.309928,58.931002],[-3.309079,58.928626],[-3.307985,58.92762],[-3.308216,58.926297],[-3.306732,58.924772],[-3.303749,58.923829],[-3.301251,58.923837],[-3.295581,58.921639],[-3.290869,58.921116],[-3.285067,58.919877],[-3.282496,58.919773],[-3.278306,58.920505],[-3.27556,58.921673],[-3.274406,58.922504],[-3.271628,58.923634],[-3.26799,58.924003],[-3.266002,58.92792],[-3.266518,58.928395],[-3.265782,58.929905],[-3.269129,58.932691],[-3.27097,58.933513],[-3.271497,58.935148],[-3.274828,58.936231],[-3.276709,58.935875],[-3.277929,58.933598],[-3.280566,58.932542],[-3.282688,58.932325],[-3.28909,58.934143],[-3.289864,58.934621],[-3.290544,58.936418],[-3.292469,58.937523],[-3.293552,58.937573],[-3.298856,58.938981],[-3.300844,58.939116],[-3.305075,58.940624],[-3.308451,58.940698]]],[[[-2.844669,58.986758],[-2.846409,58.986409],[-2.84682,58.985555],[-2.842158,58.986196],[-2.843144,58.986958],[-2.844669,58.986758]]],[[[-3.078587,59.003223],[-3.077137,59.004222],[-3.077311,59.004948],[-3.078789,59.005623],[-3.082395,59.00586],[-3.084323,59.0047],[-3.087253,59.004424],[-3.087622,59.003169],[-3.08532,59.0022],[-3.083243,59.002017],[-3.078587,59.003223]]],[[[-3.062452,59.005453],[-3.060415,59.007322],[-3.059509,59.008781],[-3.060975,59.010065],[-3.063496,59.010356],[-3.065226,59.010118],[-3.065993,59.008489],[-3.068133,59.008061],[-3.067531,59.005923],[-3.065266,59.005022],[-3.062452,59.005453]]],[[[-2.898484,59.027359],[-2.901199,59.026119],[-2.903428,59.0264],[-2.906442,59.025958],[-2.907107,59.025352],[-2.90697,59.024079],[-2.904661,59.02198],[-2.90358,59.019783],[-2.900623,59.018427],[-2.896876,59.020035],[-2.897847,59.021009],[-2.89652,59.022624],[-2.897784,59.023128],[-2.896971,59.026111],[-2.898484,59.027359]]],[[[-2.571298,59.036143],[-2.57233,59.038016],[-2.575309,59.038301],[-2.577263,59.035934],[-2.576609,59.03548],[-2.577378,59.031787],[-2.576882,59.029872],[-2.574736,59.028187],[-2.573941,59.026718],[-2.57399,59.025461],[-2.571285,59.025027],[-2.571016,59.02586],[-2.568987,59.026165],[-2.566663,59.028558],[-2.565353,59.028723],[-2.564561,59.029609],[-2.56029,59.030135],[-2.559455,59.030554],[-2.560544,59.032506],[-2.559629,59.033117],[-2.56011,59.033941],[-2.564168,59.03378],[-2.567222,59.034377],[-2.569392,59.035584],[-2.571298,59.036143]]],[[[-2.942753,59.06081],[-2.943333,59.061806],[-2.944608,59.062005],[-2.945862,59.060789],[-2.945596,59.060014],[-2.944064,59.059207],[-2.942753,59.06081]]],[[[-2.565433,59.064658],[-2.566606,59.06568],[-2.566636,59.066477],[-2.569208,59.06632],[-2.569349,59.065707],[-2.567358,59.064286],[-2.565433,59.064658]]],[[[-2.957282,59.069751],[-2.959151,59.070435],[-2.959484,59.068785],[-2.957282,59.069751]]],[[[-2.997882,59.070133],[-2.999572,59.070253],[-3.000222,59.068874],[-2.997846,59.06871],[-2.996269,59.069686],[-2.997882,59.070133]]],[[[-2.895405,59.078095],[-2.895386,59.079249],[-2.897841,59.081287],[-2.899212,59.081314],[-2.896509,59.077557],[-2.895405,59.078095]]],[[[-2.802495,59.087365],[-2.808487,59.087042],[-2.812067,59.085913],[-2.812726,59.085447],[-2.813422,59.083451],[-2.813146,59.082182],[-2.814978,59.080241],[-2.81886,59.078993],[-2.82137,59.078636],[-2.827496,59.079958],[-2.829,59.079454],[-2.831054,59.077666],[-2.832492,59.077025],[-2.834952,59.076702],[-2.83883,59.077178],[-2.840008,59.076788],[-2.840671,59.074142],[-2.842467,59.071706],[-2.840515,59.070689],[-2.837712,59.06791],[-2.837195,59.066508],[-2.837658,59.065323],[-2.84084,59.063026],[-2.843368,59.062655],[-2.844892,59.061947],[-2.84512,59.060717],[-2.844243,59.059577],[-2.847158,59.058298],[-2.851282,59.057749],[-2.854833,59.056664],[-2.860456,59.056189],[-2.865413,59.056291],[-2.864037,59.054756],[-2.862603,59.054776],[-2.861531,59.053745],[-2.862303,59.052461],[-2.864857,59.053704],[-2.864904,59.054212],[-2.867747,59.054804],[-2.869962,59.056685],[-2.871524,59.056915],[-2.874423,59.058731],[-2.879977,59.059116],[-2.886421,59.060102],[-2.889326,59.06129],[-2.890877,59.062422],[-2.892506,59.062841],[-2.893363,59.064321],[-2.895686,59.065089],[-2.897027,59.065926],[-2.89645,59.067904],[-2.898879,59.071715],[-2.90097,59.077052],[-2.902418,59.076077],[-2.901605,59.074181],[-2.902847,59.070456],[-2.905204,59.068821],[-2.905703,59.066791],[-2.906705,59.065839],[-2.909356,59.064656],[-2.916823,59.062139],[-2.915749,59.060575],[-2.916386,59.058765],[-2.914132,59.056292],[-2.914579,59.053627],[-2.916565,59.052267],[-2.919584,59.05121],[-2.924117,59.050269],[-2.92329,59.045384],[-2.92767,59.04259],[-2.928826,59.041141],[-2.928305,59.03991],[-2.929732,59.038232],[-2.931719,59.037267],[-2.9346,59.033803],[-2.934971,59.032478],[-2.933949,59.030374],[-2.930511,59.030478],[-2.928991,59.029367],[-2.926869,59.030997],[-2.924916,59.031298],[-2.922234,59.030778],[-2.918066,59.029085],[-2.91512,59.028908],[-2.912581,59.029596],[-2.91049,59.029245],[-2.909797,59.030773],[-2.907829,59.033593],[-2.904982,59.034227],[-2.903191,59.035596],[-2.901317,59.035681],[-2.898776,59.035118],[-2.897785,59.03414],[-2.896152,59.033444],[-2.894448,59.030588],[-2.89234,59.029699],[-2.890925,59.03082],[-2.889168,59.030983],[-2.885872,59.03053],[-2.883962,59.031134],[-2.88132,59.031508],[-2.880476,59.032307],[-2.8784,59.032799],[-2.875882,59.032654],[-2.873364,59.03186],[-2.870498,59.031755],[-2.86964,59.030966],[-2.863366,59.031206],[-2.856716,59.030372],[-2.854794,59.0281],[-2.851403,59.025953],[-2.848367,59.025552],[-2.846278,59.024543],[-2.842572,59.026351],[-2.838745,59.026209],[-2.835977,59.025461],[-2.834477,59.024447],[-2.833578,59.023146],[-2.833718,59.020526],[-2.835037,59.019127],[-2.833222,59.018018],[-2.830985,59.017762],[-2.829627,59.018451],[-2.82644,59.019381],[-2.825039,59.020221],[-2.824196,59.021666],[-2.821663,59.021667],[-2.819228,59.023055],[-2.818898,59.024098],[-2.817625,59.024184],[-2.816098,59.025185],[-2.809122,59.026889],[-2.806632,59.027684],[-2.80561,59.02855],[-2.806653,59.030705],[-2.806955,59.032441],[-2.806621,59.033456],[-2.808007,59.034069],[-2.810006,59.037484],[-2.813082,59.03986],[-2.813964,59.039756],[-2.816214,59.040715],[-2.815868,59.042053],[-2.819573,59.044468],[-2.823328,59.045223],[-2.82422,59.046961],[-2.823314,59.04799],[-2.823595,59.049124],[-2.822269,59.050214],[-2.821943,59.051231],[-2.818359,59.052185],[-2.816915,59.053331],[-2.817593,59.053801],[-2.817625,59.057396],[-2.816275,59.058613],[-2.814773,59.061407],[-2.813743,59.061503],[-2.812567,59.062797],[-2.810511,59.063804],[-2.81036,59.065605],[-2.805482,59.066112],[-2.801681,59.068612],[-2.802157,59.069684],[-2.801513,59.070324],[-2.802235,59.073389],[-2.801489,59.074979],[-2.802064,59.07639],[-2.800005,59.080254],[-2.7989,59.082908],[-2.79935,59.083944],[-2.801273,59.085531],[-2.800994,59.087103],[-2.802495,59.087365]]],[[[-2.952319,59.091562],[-2.954922,59.090845],[-2.955997,59.089034],[-2.95486,59.087685],[-2.95342,59.086839],[-2.950029,59.086833],[-2.947648,59.089161],[-2.947399,59.090631],[-2.950365,59.090904],[-2.952319,59.091562]]],[[[-2.965568,59.09015],[-2.964314,59.090756],[-2.965313,59.09159],[-2.966561,59.090028],[-2.968926,59.089043],[-2.970206,59.089337],[-2.97483,59.089184],[-2.983344,59.089479],[-2.988467,59.088875],[-2.990683,59.088133],[-2.992964,59.086402],[-2.991044,59.08495],[-2.991482,59.082873],[-2.990976,59.081722],[-2.992216,59.080757],[-2.988353,59.080023],[-2.982281,59.080052],[-2.977843,59.079042],[-2.974666,59.076394],[-2.975222,59.074782],[-2.973873,59.072113],[-2.973064,59.072551],[-2.969394,59.072759],[-2.967049,59.074089],[-2.965101,59.074613],[-2.961627,59.075014],[-2.961079,59.07642],[-2.962379,59.077631],[-2.962327,59.078466],[-2.963572,59.079032],[-2.961596,59.080463],[-2.959173,59.080524],[-2.957539,59.079612],[-2.957602,59.078924],[-2.955581,59.075895],[-2.951596,59.073862],[-2.949289,59.075081],[-2.946581,59.078413],[-2.946982,59.078912],[-2.950793,59.080345],[-2.955424,59.079836],[-2.95864,59.08104],[-2.960824,59.084038],[-2.960429,59.086252],[-2.959553,59.087432],[-2.96192,59.087851],[-2.964798,59.088929],[-2.965568,59.09015]]],[[[-4.405722,59.086235],[-4.40607,59.087053],[-4.410092,59.086525],[-4.411083,59.08319],[-4.408469,59.082545],[-4.407561,59.083526],[-4.404309,59.084176],[-4.404559,59.085454],[-4.405722,59.086235]]],[[[-2.828613,59.119382],[-2.82862,59.120618],[-2.829486,59.121184],[-2.832237,59.120608],[-2.831868,59.119155],[-2.828613,59.119382]]],[[[-2.96324,59.127746],[-2.96442,59.126488],[-2.971138,59.125564],[-2.971557,59.124885],[-2.975032,59.123673],[-2.978074,59.123263],[-2.98178,59.121742],[-2.986162,59.120883],[-2.99526,59.116397],[-2.997223,59.116009],[-2.998211,59.116418],[-3.00072,59.115867],[-3.001944,59.116001],[-3.003175,59.114264],[-3.004392,59.113491],[-3.006752,59.113445],[-3.009127,59.113845],[-3.011511,59.113267],[-3.007825,59.112103],[-3.005826,59.112067],[-2.998338,59.113769],[-2.996493,59.113722],[-2.993573,59.113073],[-2.986665,59.112802],[-2.980489,59.113817],[-2.97665,59.113058],[-2.969309,59.110908],[-2.966981,59.11079],[-2.966609,59.111898],[-2.964595,59.112266],[-2.963574,59.113893],[-2.95971,59.11516],[-2.957715,59.114956],[-2.956077,59.115603],[-2.954752,59.115448],[-2.953812,59.116564],[-2.95216,59.117272],[-2.951403,59.118424],[-2.952255,59.121235],[-2.953278,59.122095],[-2.953542,59.123864],[-2.954712,59.126096],[-2.958433,59.127228],[-2.96186,59.127097],[-2.96324,59.127746]]],[[[-2.827118,59.132857],[-2.82874,59.132675],[-2.830796,59.131637],[-2.832489,59.131719],[-2.833911,59.129021],[-2.833537,59.127872],[-2.831088,59.125506],[-2.828642,59.123999],[-2.827503,59.123826],[-2.82517,59.126582],[-2.825988,59.129486],[-2.824998,59.130731],[-2.825776,59.13251],[-2.827118,59.132857]]],[[[-2.66247,59.135269],[-2.663245,59.136034],[-2.662987,59.137072],[-2.664064,59.138137],[-2.663475,59.139053],[-2.666145,59.140403],[-2.666963,59.139768],[-2.666264,59.137971],[-2.666491,59.136185],[-2.66761,59.134749],[-2.669435,59.133625],[-2.670516,59.133511],[-2.673764,59.134192],[-2.67656,59.134197],[-2.679675,59.135605],[-2.68104,59.135186],[-2.680336,59.133857],[-2.680622,59.13251],[-2.678614,59.131182],[-2.677038,59.129391],[-2.675324,59.12901],[-2.67302,59.129423],[-2.669457,59.12851],[-2.667126,59.128828],[-2.665054,59.128023],[-2.663863,59.128577],[-2.665202,59.129518],[-2.664866,59.130574],[-2.665559,59.132107],[-2.66283,59.133465],[-2.66247,59.135269]]],[[[-3.336293,59.138146],[-3.337541,59.137699],[-3.339586,59.137835],[-3.340666,59.137123],[-3.34072,59.135334],[-3.338362,59.134095],[-3.335294,59.134345],[-3.331164,59.135854],[-3.328921,59.135673],[-3.328107,59.136929],[-3.32941,59.137779],[-3.335699,59.137944],[-3.336293,59.138146]]],[[[-3.118888,59.146572],[-3.119761,59.147337],[-3.123383,59.14824],[-3.125943,59.148469],[-3.128299,59.147299],[-3.128705,59.142104],[-3.126478,59.141612],[-3.122886,59.140008],[-3.119822,59.13933],[-3.117921,59.139445],[-3.116863,59.140747],[-3.114896,59.142098],[-3.109814,59.143031],[-3.111171,59.144707],[-3.11112,59.146392],[-3.113091,59.147578],[-3.11568,59.147112],[-3.11691,59.145951],[-3.118888,59.146572]]],[[[-3.110301,59.149704],[-3.110503,59.14893],[-3.107134,59.14771],[-3.105564,59.147836],[-3.107924,59.149711],[-3.110301,59.149704]]],[[[-2.582069,59.152914],[-2.58063,59.154634],[-2.581395,59.155738],[-2.583151,59.156586],[-2.587242,59.157031],[-2.589253,59.15658],[-2.59115,59.155202],[-2.590859,59.153364],[-2.592407,59.152505],[-2.595465,59.152013],[-2.600575,59.152387],[-2.602863,59.151365],[-2.600256,59.150714],[-2.597934,59.15182],[-2.594586,59.151943],[-2.592213,59.150902],[-2.592134,59.149168],[-2.591194,59.148175],[-2.58908,59.147305],[-2.584839,59.147719],[-2.584689,59.146924],[-2.580719,59.146905],[-2.578735,59.148155],[-2.578442,59.150054],[-2.581165,59.151767],[-2.582069,59.152914]]],[[[-3.198463,59.154253],[-3.199356,59.153749],[-3.202229,59.153815],[-3.206724,59.153446],[-3.210383,59.152599],[-3.21589,59.153771],[-3.218553,59.152588],[-3.219088,59.153893],[-3.222437,59.153973],[-3.223648,59.153545],[-3.225213,59.15214],[-3.227616,59.151774],[-3.228796,59.150745],[-3.230267,59.152363],[-3.232949,59.151879],[-3.236903,59.152701],[-3.238695,59.152074],[-3.241087,59.152219],[-3.243892,59.150393],[-3.244272,59.14944],[-3.2484,59.148161],[-3.251571,59.148066],[-3.260377,59.146622],[-3.263937,59.146174],[-3.272153,59.144156],[-3.27783,59.14053],[-3.285336,59.14059],[-3.287306,59.140126],[-3.291199,59.139989],[-3.293081,59.140516],[-3.296783,59.139307],[-3.298865,59.139552],[-3.302655,59.138946],[-3.305105,59.139553],[-3.306055,59.139096],[-3.311365,59.138795],[-3.31308,59.138218],[-3.312315,59.13722],[-3.312974,59.13627],[-3.311736,59.135253],[-3.314982,59.135204],[-3.315875,59.134803],[-3.318088,59.135599],[-3.321464,59.135885],[-3.324748,59.135689],[-3.325151,59.134885],[-3.323356,59.133713],[-3.319482,59.133253],[-3.317695,59.131526],[-3.317796,59.128762],[-3.318692,59.127894],[-3.32115,59.127499],[-3.319599,59.124148],[-3.320592,59.122727],[-3.322075,59.122907],[-3.32299,59.122015],[-3.325459,59.121107],[-3.327759,59.120925],[-3.329379,59.119273],[-3.332119,59.117397],[-3.333435,59.117457],[-3.337294,59.116311],[-3.339407,59.116107],[-3.34283,59.115226],[-3.343964,59.11342],[-3.34583,59.112298],[-3.34927,59.111759],[-3.350168,59.110913],[-3.349817,59.109422],[-3.351591,59.107019],[-3.354845,59.10518],[-3.356095,59.105102],[-3.357769,59.103628],[-3.356277,59.102344],[-3.355308,59.100623],[-3.354157,59.099958],[-3.350366,59.099754],[-3.348902,59.099963],[-3.346789,59.098302],[-3.34686,59.097272],[-3.348843,59.095915],[-3.34927,59.095104],[-3.350762,59.094646],[-3.348841,59.08929],[-3.350259,59.089156],[-3.350086,59.086326],[-3.350919,59.085157],[-3.353111,59.083597],[-3.352321,59.082514],[-3.350671,59.081448],[-3.350449,59.08024],[-3.348377,59.077559],[-3.346823,59.077138],[-3.346787,59.075307],[-3.34732,59.074139],[-3.346765,59.072934],[-3.348546,59.069142],[-3.348362,59.067045],[-3.349083,59.066499],[-3.348963,59.064261],[-3.347907,59.06333],[-3.349386,59.061654],[-3.347163,59.059451],[-3.345598,59.058813],[-3.345111,59.057863],[-3.340894,59.057287],[-3.338153,59.057574],[-3.336061,59.056752],[-3.334874,59.055556],[-3.334642,59.054223],[-3.335449,59.052391],[-3.337688,59.050239],[-3.340764,59.049318],[-3.344266,59.048936],[-3.347968,59.050923],[-3.34953,59.051084],[-3.353187,59.050369],[-3.353419,59.049711],[-3.35681,59.04831],[-3.356293,59.047627],[-3.3578,59.046695],[-3.357168,59.044827],[-3.35755,59.044008],[-3.356222,59.042954],[-3.354259,59.042302],[-3.353917,59.040931],[-3.352215,59.04019],[-3.352291,59.03959],[-3.350039,59.038381],[-3.34958,59.037706],[-3.350543,59.03625],[-3.35002,59.035222],[-3.351971,59.032864],[-3.353585,59.031967],[-3.353016,59.030014],[-3.354255,59.029465],[-3.356557,59.031058],[-3.357774,59.031314],[-3.360949,59.030032],[-3.359619,59.029134],[-3.360116,59.027169],[-3.36082,59.026555],[-3.360705,59.024639],[-3.359846,59.022718],[-3.35774,59.021862],[-3.359026,59.021036],[-3.360344,59.022096],[-3.362971,59.021705],[-3.36254,59.02077],[-3.36272,59.018994],[-3.361465,59.018505],[-3.359869,59.017082],[-3.358447,59.016798],[-3.362992,59.015679],[-3.366205,59.015218],[-3.366054,59.014472],[-3.363773,59.013905],[-3.36479,59.013117],[-3.363475,59.012447],[-3.361649,59.01071],[-3.360162,59.010396],[-3.358949,59.008726],[-3.361866,59.008784],[-3.361319,59.007018],[-3.360043,59.006338],[-3.360531,59.005641],[-3.363827,59.005123],[-3.363395,59.004306],[-3.364725,59.003638],[-3.363966,59.000666],[-3.366169,59.00037],[-3.365971,58.998911],[-3.368021,58.998533],[-3.367251,58.996942],[-3.362519,58.994307],[-3.363079,58.993734],[-3.361913,58.991779],[-3.363051,58.991614],[-3.361377,58.988076],[-3.359608,58.987203],[-3.359234,58.985439],[-3.360424,58.982935],[-3.36205,58.98277],[-3.360742,58.981315],[-3.36111,58.979403],[-3.357692,58.975438],[-3.353674,58.97438],[-3.351741,58.972288],[-3.353735,58.969961],[-3.352552,58.968329],[-3.355743,58.964855],[-3.353975,58.963592],[-3.351987,58.963121],[-3.345573,58.964257],[-3.34013,58.962361],[-3.333604,58.960317],[-3.331331,58.958318],[-3.33065,58.954993],[-3.32862,58.954559],[-3.324962,58.95301],[-3.322847,58.952855],[-3.321518,58.953354],[-3.31699,58.953058],[-3.312688,58.950978],[-3.306055,58.949658],[-3.302274,58.950191],[-3.300279,58.950067],[-3.298276,58.951077],[-3.295663,58.951261],[-3.293725,58.952439],[-3.298875,58.953605],[-3.300067,58.954586],[-3.300633,58.957577],[-3.299865,58.958732],[-3.298868,58.961891],[-3.297771,58.962475],[-3.296707,58.963933],[-3.295067,58.96411],[-3.295268,58.965342],[-3.2936,58.968041],[-3.290453,58.968708],[-3.289368,58.967101],[-3.289533,58.964535],[-3.290549,58.963786],[-3.290423,58.961869],[-3.288765,58.9617],[-3.285078,58.960763],[-3.280424,58.961186],[-3.278686,58.962916],[-3.27583,58.963971],[-3.274493,58.964153],[-3.271343,58.963722],[-3.268053,58.963844],[-3.2636,58.962478],[-3.263284,58.964208],[-3.266144,58.965685],[-3.266788,58.966798],[-3.26602,58.96939],[-3.263692,58.971562],[-3.262173,58.972349],[-3.262059,58.974744],[-3.255684,58.976395],[-3.253764,58.977688],[-3.253199,58.979001],[-3.251666,58.980095],[-3.252469,58.981159],[-3.251846,58.982387],[-3.247909,58.981889],[-3.246551,58.97959],[-3.248228,58.97983],[-3.249617,58.979431],[-3.250505,58.978508],[-3.248049,58.977489],[-3.247002,58.975605],[-3.249709,58.974216],[-3.24731,58.973379],[-3.246137,58.972129],[-3.244693,58.971719],[-3.243644,58.97242],[-3.241064,58.97219],[-3.23719,58.970645],[-3.230396,58.967068],[-3.229716,58.965478],[-3.229875,58.964467],[-3.232454,58.961656],[-3.23397,58.96087],[-3.234013,58.958754],[-3.232996,58.956834],[-3.232242,58.953463],[-3.233478,58.951143],[-3.233195,58.948337],[-3.234408,58.947453],[-3.233721,58.946215],[-3.234684,58.94501],[-3.235211,58.943181],[-3.23289,58.941123],[-3.233664,58.940297],[-3.230673,58.937721],[-3.230766,58.936376],[-3.229875,58.935611],[-3.229372,58.933433],[-3.228262,58.931583],[-3.222519,58.925931],[-3.220003,58.924325],[-3.217463,58.923408],[-3.214619,58.921308],[-3.211696,58.920405],[-3.208242,58.915806],[-3.206906,58.914631],[-3.202575,58.912177],[-3.199609,58.912083],[-3.19711,58.912847],[-3.195934,58.91379],[-3.193145,58.914409],[-3.192319,58.916773],[-3.191314,58.917698],[-3.189035,58.91844],[-3.18697,58.918641],[-3.184794,58.918197],[-3.181693,58.916491],[-3.18089,58.915164],[-3.182443,58.912686],[-3.180731,58.912052],[-3.175558,58.913699],[-3.173174,58.915956],[-3.174632,58.917169],[-3.173888,58.917935],[-3.170673,58.918039],[-3.168013,58.916826],[-3.164372,58.916467],[-3.161633,58.917087],[-3.161643,58.918833],[-3.160702,58.919796],[-3.157091,58.920578],[-3.154309,58.920286],[-3.149446,58.918079],[-3.143305,58.917463],[-3.137409,58.916239],[-3.130851,58.916988],[-3.126746,58.918342],[-3.120651,58.919737],[-3.119562,58.920377],[-3.119729,58.921563],[-3.12082,58.922365],[-3.1244,58.923886],[-3.128298,58.924082],[-3.128586,58.92528],[-3.128086,58.926366],[-3.123346,58.928308],[-3.116179,58.929943],[-3.114141,58.931028],[-3.110744,58.93183],[-3.107356,58.93207],[-3.10662,58.931675],[-3.097883,58.932283],[-3.095466,58.931693],[-3.094904,58.930947],[-3.092033,58.930258],[-3.091094,58.929389],[-3.085924,58.928108],[-3.082534,58.928484],[-3.079462,58.929237],[-3.078418,58.929833],[-3.078204,58.931063],[-3.076985,58.932447],[-3.077371,58.933548],[-3.079015,58.934392],[-3.079528,58.935675],[-3.07909,58.936344],[-3.080364,58.937022],[-3.082032,58.939023],[-3.089006,58.941165],[-3.091077,58.942582],[-3.089865,58.942776],[-3.087011,58.9422],[-3.085695,58.941136],[-3.080414,58.942346],[-3.073497,58.939587],[-3.069351,58.938537],[-3.068709,58.936553],[-3.066201,58.93602],[-3.06271,58.936618],[-3.057393,58.936693],[-3.053164,58.938191],[-3.05032,58.938487],[-3.046963,58.938531],[-3.044598,58.937554],[-3.043581,58.937535],[-3.036831,58.939525],[-3.035378,58.939122],[-3.031155,58.939219],[-3.028732,58.940366],[-3.022853,58.941378],[-3.021486,58.942313],[-3.019987,58.942136],[-3.01452,58.942911],[-3.009227,58.94496],[-3.003728,58.947794],[-3.003828,58.949806],[-3.002453,58.950289],[-2.998345,58.950854],[-2.997198,58.95188],[-2.995642,58.952432],[-2.993291,58.954075],[-2.993136,58.956816],[-2.988859,58.958326],[-2.988748,58.959774],[-2.987102,58.961289],[-2.983409,58.962652],[-2.979876,58.962785],[-2.97601,58.962306],[-2.969894,58.96049],[-2.968595,58.959466],[-2.970015,58.95639],[-2.970554,58.953179],[-2.971923,58.950551],[-2.971571,58.948679],[-2.973618,58.945093],[-2.97365,58.943318],[-2.972432,58.941144],[-2.972873,58.940113],[-2.971197,58.939154],[-2.968999,58.936345],[-2.967913,58.935676],[-2.96785,58.934755],[-2.966446,58.933782],[-2.965797,58.932105],[-2.964314,58.931409],[-2.961462,58.927631],[-2.958911,58.92663],[-2.954593,58.92379],[-2.950785,58.918585],[-2.950888,58.917279],[-2.949329,58.914775],[-2.946805,58.914664],[-2.945685,58.913393],[-2.944385,58.912785],[-2.94151,58.909362],[-2.939768,58.908146],[-2.938691,58.904856],[-2.936063,58.903687],[-2.93384,58.903328],[-2.932746,58.902577],[-2.932555,58.901247],[-2.933638,58.899727],[-2.934057,58.898038],[-2.933741,58.896376],[-2.935189,58.894974],[-2.932225,58.893028],[-2.931397,58.890866],[-2.928682,58.890365],[-2.927333,58.891343],[-2.925135,58.892001],[-2.920757,58.891662],[-2.917993,58.889902],[-2.916558,58.890486],[-2.920111,58.893037],[-2.919672,58.894032],[-2.918054,58.895015],[-2.911924,58.895934],[-2.91018,58.896339],[-2.906019,58.895266],[-2.900924,58.895777],[-2.8973,58.895289],[-2.89582,58.890426],[-2.896647,58.889161],[-2.899597,58.886955],[-2.900193,58.885457],[-2.900032,58.884105],[-2.906205,58.879891],[-2.9076,58.879746],[-2.910342,58.878804],[-2.921394,58.878601],[-2.923237,58.878249],[-2.923928,58.877497],[-2.923329,58.876596],[-2.923993,58.875544],[-2.923431,58.874123],[-2.921581,58.873671],[-2.920339,58.872302],[-2.918309,58.872044],[-2.91589,58.872432],[-2.913397,58.869154],[-2.916023,58.866034],[-2.915033,58.863206],[-2.913835,58.862013],[-2.912774,58.856914],[-2.914967,58.855371],[-2.918523,58.854574],[-2.929836,58.858742],[-2.936069,58.860393],[-2.938848,58.860748],[-2.94161,58.860158],[-2.949829,58.856625],[-2.953599,58.855584],[-2.957674,58.853823],[-2.958692,58.852657],[-2.960073,58.852332],[-2.962611,58.852403],[-2.963366,58.851545],[-2.970046,58.854023],[-2.970147,58.855508],[-2.967726,58.85709],[-2.963938,58.858176],[-2.959961,58.859827],[-2.959767,58.860436],[-2.966453,58.860046],[-2.969418,58.859233],[-2.973643,58.85899],[-2.978831,58.857537],[-2.982749,58.856986],[-2.986381,58.85571],[-2.989468,58.853619],[-2.989319,58.852699],[-2.983515,58.850898],[-2.983088,58.849747],[-2.981323,58.848938],[-2.980275,58.850565],[-2.9785,58.851725],[-2.973504,58.853078],[-2.97181,58.853851],[-2.970236,58.853999],[-2.963276,58.851478],[-2.963171,58.849435],[-2.961876,58.848713],[-2.959569,58.848736],[-2.957317,58.847086],[-2.955046,58.846838],[-2.951705,58.845581],[-2.947982,58.845654],[-2.933342,58.842374],[-2.928162,58.842129],[-2.925972,58.843087],[-2.92361,58.842892],[-2.922108,58.843529],[-2.919086,58.844029],[-2.917502,58.843971],[-2.914127,58.843105],[-2.910798,58.84493],[-2.907204,58.845576],[-2.904891,58.845062],[-2.90258,58.843193],[-2.907936,58.838776],[-2.908632,58.839367],[-2.910582,58.837934],[-2.919717,58.836909],[-2.923009,58.8361],[-2.930431,58.835082],[-2.935979,58.833451],[-2.936652,58.833797],[-2.939605,58.832971],[-2.942691,58.833197],[-2.946215,58.83289],[-2.947554,58.833044],[-2.951218,58.830985],[-2.951785,58.829315],[-2.954264,58.827081],[-2.95798,58.826001],[-2.96241,58.826859],[-2.961891,58.828645],[-2.962746,58.830521],[-2.962679,58.833552],[-2.960759,58.835307],[-2.962184,58.835972],[-2.964473,58.835959],[-2.968983,58.83541],[-2.97369,58.833671],[-2.977634,58.833516],[-2.983202,58.832648],[-2.984491,58.83269],[-2.987087,58.83208],[-2.988222,58.831153],[-2.986882,58.8303],[-2.987065,58.829467],[-2.988571,58.828474],[-2.990958,58.827914],[-2.994062,58.827972],[-2.995977,58.82834],[-2.995769,58.830107],[-3.001936,58.830229],[-3.008971,58.83263],[-3.013186,58.833133],[-3.014938,58.832681],[-3.019105,58.83015],[-3.020987,58.82876],[-3.025008,58.82696],[-3.025582,58.826135],[-3.028696,58.823971],[-3.032865,58.823701],[-3.034589,58.822554],[-3.036226,58.81923],[-3.034346,58.815995],[-3.032616,58.815968],[-3.026821,58.817073],[-3.023836,58.817815],[-3.017446,58.821236],[-3.013486,58.822125],[-3.012482,58.823156],[-3.007262,58.825705],[-3.003843,58.826752],[-3.000409,58.825613],[-2.997664,58.823844],[-2.997066,58.822665],[-2.997524,58.821499],[-2.996818,58.818428],[-2.992859,58.816305],[-2.990373,58.815578],[-2.989133,58.813983],[-2.983584,58.813891],[-2.981288,58.814889],[-2.981118,58.816053],[-2.978224,58.81785],[-2.975314,58.81863],[-2.974226,58.817974],[-2.978691,58.813451],[-2.979239,58.81218],[-2.97868,58.810668],[-2.979605,58.808786],[-2.982614,58.806018],[-2.987935,58.804186],[-2.99171,58.803544],[-2.995723,58.80099],[-2.999086,58.800342],[-3.002341,58.800837],[-3.002805,58.802174],[-3.001758,58.804684],[-3.00008,58.80607],[-2.998473,58.805969],[-3.002061,58.809466],[-3.005176,58.811455],[-3.009673,58.81307],[-3.012392,58.813332],[-3.015747,58.811988],[-3.016472,58.810823],[-3.017563,58.810609],[-3.018527,58.809478],[-3.020768,58.808502],[-3.022,58.807234],[-3.021993,58.805162],[-3.019453,58.803374],[-3.018815,58.802024],[-3.015693,58.798553],[-3.012779,58.796811],[-3.011859,58.79739],[-3.008595,58.797412],[-3.007845,58.797702],[-3.004609,58.797347],[-3.004095,58.796165],[-3.001368,58.794902],[-2.998533,58.792246],[-2.995492,58.789987],[-2.996036,58.788461],[-2.994098,58.787002],[-2.992279,58.78627],[-2.989797,58.785898],[-2.98447,58.787315],[-2.980225,58.786952],[-2.97908,58.786189],[-2.979474,58.784513],[-2.982662,58.783385],[-2.981238,58.78255],[-2.981781,58.781467],[-2.980513,58.77977],[-2.981027,58.778679],[-2.978997,58.777538],[-2.980379,58.776182],[-2.979983,58.77513],[-2.981123,58.773972],[-2.979854,58.771627],[-2.978322,58.770607],[-2.978336,58.768892],[-2.979852,58.767582],[-2.980727,58.767537],[-2.980734,58.765849],[-2.979639,58.764836],[-2.980734,58.763747],[-2.979407,58.76254],[-2.980504,58.761527],[-2.980476,58.760561],[-2.984957,58.761062],[-2.986658,58.760468],[-2.989363,58.760264],[-2.99196,58.758019],[-2.991125,58.756469],[-2.990112,58.756373],[-2.992479,58.753884],[-2.989686,58.753626],[-2.988524,58.753014],[-2.987302,58.75142],[-2.985901,58.75153],[-2.986155,58.748607],[-2.984365,58.747555],[-2.979163,58.746594],[-2.976463,58.745404],[-2.97618,58.743962],[-2.977953,58.742799],[-2.976823,58.74075],[-2.976353,58.738821],[-2.973384,58.739387],[-2.971104,58.741517],[-2.96958,58.742002],[-2.966813,58.741898],[-2.965463,58.741321],[-2.963903,58.737748],[-2.964593,58.736228],[-2.964638,58.733221],[-2.962454,58.729975],[-2.961142,58.730099],[-2.958776,58.729609],[-2.952631,58.730142],[-2.949236,58.731002],[-2.946913,58.731327],[-2.947679,58.732462],[-2.946152,58.733269],[-2.941258,58.733111],[-2.940452,58.734196],[-2.93831,58.733594],[-2.935964,58.733528],[-2.934166,58.732894],[-2.930914,58.733438],[-2.926822,58.733043],[-2.921939,58.733913],[-2.922175,58.734778],[-2.92097,58.735323],[-2.918648,58.734944],[-2.917477,58.73763],[-2.916251,58.73903],[-2.922925,58.738586],[-2.923639,58.739313],[-2.917119,58.741383],[-2.91791,58.742413],[-2.915345,58.743793],[-2.915707,58.7456],[-2.914903,58.746385],[-2.915133,58.747444],[-2.912339,58.749062],[-2.914621,58.749498],[-2.911267,58.750873],[-2.911154,58.752968],[-2.909199,58.753676],[-2.911647,58.755915],[-2.91273,58.75555],[-2.914997,58.75598],[-2.91598,58.758266],[-2.918864,58.758304],[-2.923879,58.758932],[-2.92625,58.759607],[-2.930544,58.761828],[-2.931475,58.763583],[-2.933981,58.764431],[-2.935196,58.765342],[-2.93747,58.765698],[-2.939677,58.767126],[-2.938354,58.769491],[-2.93533,58.771043],[-2.932176,58.771292],[-2.930244,58.772816],[-2.928628,58.773103],[-2.927486,58.774204],[-2.928175,58.774924],[-2.925228,58.77592],[-2.92521,58.77795],[-2.926436,58.778588],[-2.925593,58.779861],[-2.922323,58.780036],[-2.92344,58.780715],[-2.923929,58.781974],[-2.920973,58.783046],[-2.922631,58.784991],[-2.920124,58.786235],[-2.921454,58.787194],[-2.922814,58.789176],[-2.923072,58.790888],[-2.92518,58.790775],[-2.929954,58.792015],[-2.930983,58.793038],[-2.930638,58.794302],[-2.925225,58.798467],[-2.924301,58.800162],[-2.921507,58.801535],[-2.919078,58.801548],[-2.917323,58.800849],[-2.91497,58.801137],[-2.913485,58.802749],[-2.912856,58.804266],[-2.909163,58.806069],[-2.909673,58.807105],[-2.911648,58.808515],[-2.910739,58.81027],[-2.90741,58.812595],[-2.905954,58.814093],[-2.903351,58.815449],[-2.89852,58.816869],[-2.897733,58.818162],[-2.89631,58.81896],[-2.89298,58.819775],[-2.891083,58.819655],[-2.890724,58.820343],[-2.888866,58.820485],[-2.887571,58.81957],[-2.886515,58.817314],[-2.882925,58.816937],[-2.880585,58.817304],[-2.877894,58.819037],[-2.879489,58.81986],[-2.878323,58.820396],[-2.878782,58.821673],[-2.881859,58.822277],[-2.888876,58.823048],[-2.889469,58.825074],[-2.887658,58.82622],[-2.887198,58.828916],[-2.889179,58.83368],[-2.892816,58.833811],[-2.902061,58.837066],[-2.90298,58.838743],[-2.901288,58.841588],[-2.898861,58.842352],[-2.895047,58.841674],[-2.892582,58.841709],[-2.890523,58.842189],[-2.888745,58.843403],[-2.886813,58.844074],[-2.88259,58.844639],[-2.880415,58.844421],[-2.877469,58.844938],[-2.875858,58.845905],[-2.871816,58.847001],[-2.870679,58.848111],[-2.864362,58.85012],[-2.859911,58.852692],[-2.862075,58.853012],[-2.863255,58.85374],[-2.866084,58.853335],[-2.867423,58.853649],[-2.871235,58.852968],[-2.872918,58.853056],[-2.874352,58.852457],[-2.876997,58.852166],[-2.880679,58.852287],[-2.885897,58.85339],[-2.888062,58.854693],[-2.890883,58.857866],[-2.891447,58.860694],[-2.889495,58.863648],[-2.890067,58.86429],[-2.888637,58.86493],[-2.888828,58.865988],[-2.889802,58.866578],[-2.888253,58.868395],[-2.886581,58.869801],[-2.884087,58.871102],[-2.883705,58.872455],[-2.884837,58.873643],[-2.888433,58.874025],[-2.896462,58.873061],[-2.900756,58.872028],[-2.903967,58.872516],[-2.907647,58.871742],[-2.906307,58.870773],[-2.908524,58.868899],[-2.910153,58.868714],[-2.913015,58.869137],[-2.915414,58.872475],[-2.912387,58.873126],[-2.911182,58.875085],[-2.909406,58.876199],[-2.908059,58.877916],[-2.905033,58.879345],[-2.905611,58.879996],[-2.89969,58.884062],[-2.896313,58.884082],[-2.890929,58.885269],[-2.888341,58.886691],[-2.88575,58.888703],[-2.883701,58.889644],[-2.884016,58.890627],[-2.885927,58.891004],[-2.892716,58.889787],[-2.895301,58.890459],[-2.897013,58.895531],[-2.891837,58.897148],[-2.889244,58.899552],[-2.886708,58.90029],[-2.883248,58.900125],[-2.882355,58.899468],[-2.878773,58.898897],[-2.877607,58.897838],[-2.87541,58.897444],[-2.868181,58.895233],[-2.866625,58.894439],[-2.865422,58.893044],[-2.862618,58.892779],[-2.860459,58.892046],[-2.857992,58.892389],[-2.855441,58.891923],[-2.852433,58.889779],[-2.849413,58.889728],[-2.846335,58.888669],[-2.845737,58.887806],[-2.845702,58.88514],[-2.841358,58.883788],[-2.839104,58.881858],[-2.836235,58.882108],[-2.834149,58.881735],[-2.832466,58.880906],[-2.831985,58.879456],[-2.834301,58.878084],[-2.834316,58.876407],[-2.837321,58.875208],[-2.837963,58.873895],[-2.835511,58.872371],[-2.833541,58.872549],[-2.832808,58.871821],[-2.829678,58.87295],[-2.826713,58.875234],[-2.821012,58.876589],[-2.821679,58.879172],[-2.821507,58.880109],[-2.818711,58.880797],[-2.818228,58.882365],[-2.821797,58.883882],[-2.822269,58.885724],[-2.821634,58.886904],[-2.820083,58.88746],[-2.818931,58.888785],[-2.817136,58.889241],[-2.817374,58.890302],[-2.814663,58.890351],[-2.811961,58.89271],[-2.808898,58.89274],[-2.80803,58.893233],[-2.804017,58.893992],[-2.803111,58.89527],[-2.802051,58.895388],[-2.801757,58.896546],[-2.802577,58.898107],[-2.801594,58.901638],[-2.799235,58.903846],[-2.798591,58.905413],[-2.796364,58.907639],[-2.795024,58.908081],[-2.791494,58.908345],[-2.788772,58.91019],[-2.788641,58.911921],[-2.785868,58.914526],[-2.782529,58.915071],[-2.780251,58.915963],[-2.778616,58.916167],[-2.776443,58.915837],[-2.771935,58.914398],[-2.767903,58.913898],[-2.76628,58.913222],[-2.763462,58.913115],[-2.76095,58.913867],[-2.759381,58.914843],[-2.757705,58.9149],[-2.756971,58.916121],[-2.753512,58.919335],[-2.752692,58.922268],[-2.751133,58.923081],[-2.747863,58.923756],[-2.744911,58.923726],[-2.742447,58.923299],[-2.738685,58.921644],[-2.728509,58.920787],[-2.722683,58.919572],[-2.715276,58.919796],[-2.712443,58.920632],[-2.711125,58.9228],[-2.711838,58.923118],[-2.71128,58.925033],[-2.712735,58.925743],[-2.713087,58.926557],[-2.715292,58.928378],[-2.714723,58.929447],[-2.712617,58.93054],[-2.714433,58.930931],[-2.715061,58.932302],[-2.71333,58.932976],[-2.715272,58.934035],[-2.716618,58.935612],[-2.718766,58.936377],[-2.719215,58.937267],[-2.71872,58.939234],[-2.717101,58.941023],[-2.715454,58.942014],[-2.716764,58.944428],[-2.715938,58.946886],[-2.713371,58.947997],[-2.710109,58.94813],[-2.708272,58.94782],[-2.707003,58.948132],[-2.706961,58.949051],[-2.708242,58.949563],[-2.70823,58.95075],[-2.709141,58.951493],[-2.711048,58.951717],[-2.710914,58.95251],[-2.708255,58.955373],[-2.708485,58.955775],[-2.706299,58.957315],[-2.70594,58.960587],[-2.704051,58.962548],[-2.704543,58.963536],[-2.708253,58.96437],[-2.707569,58.965454],[-2.709772,58.965873],[-2.711403,58.967129],[-2.709085,58.967946],[-2.708094,58.969226],[-2.707436,58.971616],[-2.708055,58.97294],[-2.71008,58.973248],[-2.712395,58.972217],[-2.713459,58.973218],[-2.716753,58.97251],[-2.716964,58.971522],[-2.720174,58.971422],[-2.723894,58.970213],[-2.725934,58.967396],[-2.729536,58.965376],[-2.736431,58.963958],[-2.739527,58.96395],[-2.741872,58.964481],[-2.743961,58.964239],[-2.746309,58.964497],[-2.748342,58.963796],[-2.75134,58.961715],[-2.755895,58.960269],[-2.75861,58.959673],[-2.760595,58.958659],[-2.761478,58.958799],[-2.763804,58.957753],[-2.765627,58.957639],[-2.768572,58.956761],[-2.769777,58.957006],[-2.771136,58.956197],[-2.774969,58.955351],[-2.776799,58.953484],[-2.777225,58.95157],[-2.777981,58.951151],[-2.783934,58.950478],[-2.787878,58.951186],[-2.792115,58.95146],[-2.797272,58.950508],[-2.805334,58.94779],[-2.805166,58.945896],[-2.802774,58.946068],[-2.799372,58.944622],[-2.795282,58.94339],[-2.794159,58.941915],[-2.792777,58.941756],[-2.789531,58.942103],[-2.787102,58.941226],[-2.786287,58.940497],[-2.786305,58.938706],[-2.786817,58.937418],[-2.790656,58.934768],[-2.7906,58.933232],[-2.792562,58.931203],[-2.792929,58.928917],[-2.791956,58.92848],[-2.792168,58.926994],[-2.790044,58.926851],[-2.789204,58.927538],[-2.785841,58.927665],[-2.784633,58.928394],[-2.781015,58.928605],[-2.779215,58.927865],[-2.778144,58.925366],[-2.779165,58.922348],[-2.782476,58.919381],[-2.78237,58.917164],[-2.783836,58.916204],[-2.78596,58.915619],[-2.788968,58.915772],[-2.790036,58.916391],[-2.793553,58.917178],[-2.796784,58.917182],[-2.799126,58.917758],[-2.800392,58.919281],[-2.7999,58.920612],[-2.800161,58.921744],[-2.805697,58.922769],[-2.806028,58.923591],[-2.804873,58.925708],[-2.80216,58.927387],[-2.800834,58.927874],[-2.804426,58.929133],[-2.809439,58.929123],[-2.818765,58.928521],[-2.820538,58.927732],[-2.821683,58.926152],[-2.825301,58.926104],[-2.82636,58.925451],[-2.826333,58.922292],[-2.825188,58.92192],[-2.82178,58.921766],[-2.82407,58.920724],[-2.831823,58.924085],[-2.834854,58.924672],[-2.837189,58.925698],[-2.833464,58.926518],[-2.833716,58.925637],[-2.831029,58.925369],[-2.831018,58.926522],[-2.82853,58.929985],[-2.828007,58.932461],[-2.82505,58.934378],[-2.826288,58.935326],[-2.829743,58.936384],[-2.831416,58.937928],[-2.831176,58.939627],[-2.829523,58.940519],[-2.827677,58.942537],[-2.827233,58.944294],[-2.828671,58.946851],[-2.832033,58.948639],[-2.835564,58.949064],[-2.838013,58.950995],[-2.840916,58.951362],[-2.843647,58.951019],[-2.846888,58.953732],[-2.847426,58.954848],[-2.84711,58.95637],[-2.848265,58.957905],[-2.846329,58.959514],[-2.844775,58.960256],[-2.842755,58.959971],[-2.841135,58.957587],[-2.835535,58.962172],[-2.833525,58.962451],[-2.831202,58.961795],[-2.827745,58.962815],[-2.825648,58.964481],[-2.823014,58.965847],[-2.819995,58.966828],[-2.816262,58.966458],[-2.807055,58.968422],[-2.801306,58.968961],[-2.798639,58.968556],[-2.795913,58.96759],[-2.793487,58.964897],[-2.792644,58.96588],[-2.793276,58.967793],[-2.79152,58.968928],[-2.79293,58.969914],[-2.792383,58.970686],[-2.793968,58.973596],[-2.793359,58.974259],[-2.79436,58.976822],[-2.792567,58.97826],[-2.792275,58.979726],[-2.792825,58.980843],[-2.794131,58.980604],[-2.796339,58.982],[-2.796602,58.982744],[-2.795664,58.984623],[-2.795853,58.986354],[-2.797476,58.987959],[-2.797934,58.989284],[-2.798843,58.98967],[-2.798478,58.99113],[-2.800143,58.992199],[-2.80356,58.99218],[-2.80438,58.99124],[-2.806978,58.990573],[-2.806832,58.989545],[-2.810543,58.984921],[-2.821481,58.983211],[-2.822763,58.982625],[-2.823532,58.981373],[-2.825533,58.980769],[-2.837051,58.981455],[-2.840296,58.980717],[-2.84266,58.98074],[-2.846174,58.982138],[-2.849924,58.985534],[-2.851888,58.986236],[-2.855482,58.986137],[-2.857325,58.985252],[-2.858045,58.98406],[-2.861391,58.98198],[-2.862768,58.978914],[-2.865503,58.977682],[-2.86487,58.97645],[-2.864987,58.97531],[-2.866135,58.973615],[-2.871097,58.970878],[-2.870207,58.970428],[-2.872567,58.96902],[-2.873332,58.969888],[-2.87679,58.971037],[-2.878208,58.971169],[-2.883434,58.968254],[-2.88198,58.966134],[-2.880761,58.965571],[-2.880179,58.963289],[-2.881095,58.961569],[-2.883688,58.960647],[-2.886878,58.960266],[-2.889459,58.960429],[-2.891967,58.961748],[-2.892826,58.962835],[-2.90063,58.961946],[-2.9054,58.96318],[-2.908026,58.962517],[-2.909254,58.961854],[-2.91096,58.961724],[-2.915935,58.963148],[-2.9189,58.964984],[-2.919184,58.969365],[-2.914931,58.971549],[-2.914187,58.974275],[-2.915794,58.974674],[-2.920487,58.977908],[-2.920816,58.980404],[-2.919377,58.982632],[-2.917842,58.983635],[-2.915931,58.984285],[-2.907053,58.983972],[-2.902244,58.984842],[-2.899009,58.98576],[-2.897527,58.987109],[-2.89452,58.988294],[-2.889976,58.989019],[-2.888055,58.990922],[-2.887974,58.991998],[-2.889684,58.99346],[-2.889598,58.995054],[-2.891867,58.995214],[-2.892946,58.994342],[-2.893556,58.992993],[-2.893317,58.992031],[-2.894637,58.990654],[-2.89601,58.9902],[-2.901466,58.989623],[-2.908863,58.989765],[-2.912997,58.991299],[-2.915509,58.993028],[-2.915452,58.993618],[-2.912974,58.994596],[-2.91223,58.996536],[-2.907541,58.998656],[-2.908319,59.001186],[-2.909343,59.002435],[-2.911845,59.004146],[-2.912042,59.005854],[-2.909035,59.007162],[-2.90453,59.00797],[-2.901447,59.006453],[-2.899596,59.006345],[-2.897837,59.007012],[-2.897703,59.007742],[-2.899448,59.009014],[-2.901938,59.009741],[-2.905193,59.009614],[-2.912643,59.010758],[-2.915002,59.010372],[-2.918006,59.008109],[-2.92059,59.006807],[-2.923904,59.006511],[-2.926365,59.005831],[-2.930285,59.006822],[-2.931618,59.007936],[-2.930575,59.009717],[-2.928306,59.011198],[-2.927827,59.012666],[-2.926561,59.013339],[-2.929389,59.014897],[-2.932019,59.014607],[-2.93378,59.013195],[-2.937686,59.011104],[-2.940693,59.007766],[-2.943978,59.006489],[-2.944375,59.005571],[-2.944006,59.000022],[-2.947044,58.995811],[-2.946767,58.994176],[-2.945701,58.993417],[-2.947746,58.990324],[-2.954711,58.988037],[-2.954497,58.987309],[-2.956933,58.985747],[-2.9595,58.985811],[-2.958907,58.984906],[-2.96444,58.984883],[-2.968245,58.985495],[-2.969526,58.986521],[-2.969186,58.989437],[-2.970798,58.992893],[-2.969362,58.994533],[-2.970237,58.995693],[-2.972198,58.996316],[-2.977181,58.996905],[-2.978496,58.99745],[-2.980134,58.999824],[-2.98215,59.000263],[-2.990641,59.000606],[-2.99471,59.002537],[-2.99848,59.00374],[-3.000999,59.005176],[-3.001866,59.007082],[-3.000906,59.008149],[-3.001465,59.009103],[-3.003593,59.009157],[-3.006236,59.010009],[-3.008746,59.010269],[-3.011949,59.01],[-3.019964,59.008555],[-3.025054,59.008682],[-3.035575,59.010006],[-3.040724,59.008823],[-3.040077,59.006105],[-3.040813,59.004866],[-3.047403,59.000691],[-3.05082,58.999804],[-3.053154,58.997918],[-3.053417,58.996729],[-3.051296,58.994488],[-3.051943,58.993779],[-3.054693,58.993497],[-3.060312,58.995284],[-3.060803,58.996237],[-3.062869,58.997819],[-3.065491,58.997236],[-3.067902,58.99577],[-3.07376,58.996423],[-3.07485,58.996894],[-3.079561,58.997278],[-3.081995,58.997976],[-3.086918,58.998202],[-3.089702,58.999404],[-3.089465,59.00083],[-3.090428,59.001763],[-3.091977,59.001851],[-3.094962,59.001397],[-3.097292,59.001413],[-3.101069,59.001892],[-3.105066,59.002956],[-3.106084,59.003775],[-3.107823,59.003937],[-3.109849,59.004895],[-3.111708,59.004938],[-3.114621,59.006444],[-3.114651,59.00764],[-3.113187,59.010678],[-3.116252,59.010749],[-3.116356,59.009095],[-3.117068,59.008702],[-3.118926,59.010138],[-3.121401,59.010088],[-3.123019,59.010762],[-3.116223,59.012641],[-3.113659,59.012099],[-3.113029,59.010796],[-3.110888,59.009783],[-3.107993,59.009987],[-3.106625,59.009631],[-3.101363,59.009843],[-3.101446,59.010756],[-3.099837,59.011546],[-3.09874,59.013086],[-3.0994,59.014236],[-3.098072,59.01585],[-3.093449,59.017325],[-3.088402,59.018084],[-3.086974,59.020902],[-3.084017,59.022584],[-3.080747,59.023871],[-3.078052,59.024479],[-3.073998,59.024438],[-3.066171,59.022386],[-3.063871,59.022561],[-3.061237,59.023491],[-3.063711,59.030079],[-3.059159,59.031955],[-3.053182,59.036032],[-3.055176,59.038739],[-3.057315,59.040678],[-3.061358,59.042828],[-3.06288,59.04515],[-3.064311,59.045907],[-3.064173,59.04664],[-3.06261,59.047673],[-3.060529,59.04809],[-3.059015,59.047635],[-3.056096,59.04871],[-3.052774,59.048807],[-3.050355,59.049316],[-3.047515,59.048578],[-3.038673,59.048213],[-3.035261,59.047309],[-3.026004,59.042007],[-3.021332,59.038005],[-3.011813,59.038817],[-3.013192,59.039969],[-3.01316,59.041505],[-3.014454,59.041793],[-3.015648,59.043695],[-3.014683,59.045179],[-3.015306,59.046772],[-3.01326,59.049285],[-3.012997,59.050506],[-3.011892,59.051483],[-3.004,59.053214],[-3.002632,59.05411],[-3.00248,59.055285],[-3.003916,59.056942],[-3.006382,59.057713],[-3.00712,59.058794],[-3.006501,59.059886],[-3.004113,59.060917],[-3.003486,59.062108],[-3.001767,59.063156],[-3.001044,59.064765],[-3.002326,59.065396],[-3.004632,59.068115],[-3.006602,59.069263],[-3.006536,59.070662],[-3.004062,59.07199],[-3.005464,59.073293],[-3.007848,59.077562],[-3.012558,59.07975],[-3.012411,59.080348],[-3.016046,59.081259],[-3.018064,59.081421],[-3.02279,59.080692],[-3.026408,59.080828],[-3.027925,59.081214],[-3.029255,59.082497],[-3.032175,59.083752],[-3.034245,59.08651],[-3.038093,59.086959],[-3.041428,59.087894],[-3.044202,59.089225],[-3.043951,59.090315],[-3.045494,59.092203],[-3.045917,59.094598],[-3.047137,59.095414],[-3.050116,59.095698],[-3.05243,59.095284],[-3.054334,59.096957],[-3.055055,59.096454],[-3.057507,59.096228],[-3.060557,59.095482],[-3.062589,59.096848],[-3.062993,59.098615],[-3.061362,59.099654],[-3.05925,59.09962],[-3.057085,59.100161],[-3.053287,59.100431],[-3.052159,59.100225],[-3.046942,59.101832],[-3.045548,59.101958],[-3.045711,59.105032],[-3.047236,59.107429],[-3.049437,59.108357],[-3.050148,59.109201],[-3.049621,59.11026],[-3.050821,59.111343],[-3.053265,59.111265],[-3.055316,59.111796],[-3.058137,59.111213],[-3.062427,59.11141],[-3.06315,59.112065],[-3.066652,59.112494],[-3.067939,59.113289],[-3.069556,59.113564],[-3.071266,59.115868],[-3.070419,59.118199],[-3.071908,59.12001],[-3.071473,59.12135],[-3.072283,59.122928],[-3.073281,59.123513],[-3.076593,59.124233],[-3.083819,59.123823],[-3.085466,59.123358],[-3.085601,59.121824],[-3.088087,59.120525],[-3.088458,59.119679],[-3.093158,59.118519],[-3.094913,59.118471],[-3.099556,59.12073],[-3.104158,59.121145],[-3.113735,59.123293],[-3.115995,59.124096],[-3.117563,59.125594],[-3.119699,59.126264],[-3.120784,59.127036],[-3.123063,59.127369],[-3.123857,59.127931],[-3.127157,59.128099],[-3.128771,59.128858],[-3.132416,59.131263],[-3.136273,59.131758],[-3.137337,59.13164],[-3.1414,59.132695],[-3.142355,59.132274],[-3.145499,59.132793],[-3.148284,59.13367],[-3.154127,59.138687],[-3.163377,59.141162],[-3.164567,59.140887],[-3.166443,59.141664],[-3.168102,59.141226],[-3.173753,59.141777],[-3.17555,59.142753],[-3.177955,59.142604],[-3.180154,59.143977],[-3.181178,59.144138],[-3.189856,59.147956],[-3.191151,59.148426],[-3.191661,59.149735],[-3.192576,59.149865],[-3.19543,59.153281],[-3.198463,59.154253]]],[[[-2.686393,59.156039],[-2.687798,59.157391],[-2.687936,59.158599],[-2.689022,59.159316],[-2.689892,59.156747],[-2.68899,59.156222],[-2.686393,59.156039]]],[[[-2.629867,59.161014],[-2.631638,59.161763],[-2.633664,59.160215],[-2.637785,59.158924],[-2.638684,59.157959],[-2.643731,59.15677],[-2.645186,59.156018],[-2.646657,59.154425],[-2.653369,59.151925],[-2.655805,59.151529],[-2.663917,59.151672],[-2.666424,59.152383],[-2.668869,59.153935],[-2.671569,59.154504],[-2.675456,59.153214],[-2.675418,59.15123],[-2.672742,59.149796],[-2.671397,59.150186],[-2.668449,59.149491],[-2.666986,59.150253],[-2.664847,59.149742],[-2.663646,59.148814],[-2.663584,59.147836],[-2.662171,59.147089],[-2.661839,59.146227],[-2.658974,59.145935],[-2.656226,59.14485],[-2.649571,59.140533],[-2.647816,59.138773],[-2.64686,59.136429],[-2.64523,59.13509],[-2.643639,59.132936],[-2.638146,59.130373],[-2.635399,59.130243],[-2.633034,59.129767],[-2.628873,59.128309],[-2.624031,59.12538],[-2.62292,59.125033],[-2.620799,59.121217],[-2.62063,59.118107],[-2.622993,59.11723],[-2.625615,59.113049],[-2.627654,59.111167],[-2.629653,59.110127],[-2.634471,59.110028],[-2.642679,59.111885],[-2.650628,59.112464],[-2.656472,59.110865],[-2.662181,59.111165],[-2.665584,59.110713],[-2.667134,59.109122],[-2.669045,59.109162],[-2.670167,59.108658],[-2.67142,59.10697],[-2.671506,59.104951],[-2.669539,59.100974],[-2.67073,59.099811],[-2.671304,59.097756],[-2.672943,59.096612],[-2.675126,59.097107],[-2.679765,59.095517],[-2.679994,59.09443],[-2.681237,59.093176],[-2.680876,59.090422],[-2.681361,59.089302],[-2.688556,59.086826],[-2.689122,59.083832],[-2.690304,59.079613],[-2.689395,59.078191],[-2.686376,59.075854],[-2.679591,59.074248],[-2.676576,59.075679],[-2.674706,59.075684],[-2.669701,59.077183],[-2.667048,59.076579],[-2.663592,59.077323],[-2.661503,59.076396],[-2.656586,59.075649],[-2.652613,59.075466],[-2.650858,59.075919],[-2.649841,59.077027],[-2.650831,59.081369],[-2.648708,59.082733],[-2.648295,59.083443],[-2.645491,59.08458],[-2.644004,59.085716],[-2.644078,59.087766],[-2.647332,59.091426],[-2.648579,59.092034],[-2.648984,59.093001],[-2.650641,59.093704],[-2.652576,59.09515],[-2.654246,59.096907],[-2.654927,59.098523],[-2.657422,59.099595],[-2.657716,59.100248],[-2.656067,59.101822],[-2.649468,59.104649],[-2.639023,59.107136],[-2.6321,59.10769],[-2.629828,59.106961],[-2.628117,59.105217],[-2.626248,59.104762],[-2.622073,59.102261],[-2.619195,59.102404],[-2.615857,59.100135],[-2.60694,59.098148],[-2.604666,59.096705],[-2.604022,59.093521],[-2.604474,59.092941],[-2.601603,59.090354],[-2.600612,59.087752],[-2.601515,59.086849],[-2.603473,59.086482],[-2.604811,59.084365],[-2.603615,59.079825],[-2.605615,59.077963],[-2.608639,59.07706],[-2.60908,59.075808],[-2.60759,59.074915],[-2.60832,59.07413],[-2.607635,59.07299],[-2.604779,59.072228],[-2.602693,59.071143],[-2.599926,59.071251],[-2.596604,59.074799],[-2.592992,59.076406],[-2.589343,59.077266],[-2.586795,59.077493],[-2.582207,59.077392],[-2.580093,59.076779],[-2.579235,59.075886],[-2.576247,59.075777],[-2.576317,59.07711],[-2.571961,59.07956],[-2.571684,59.081114],[-2.570798,59.08237],[-2.568202,59.083808],[-2.566767,59.084118],[-2.558238,59.083161],[-2.552953,59.083342],[-2.548346,59.082754],[-2.546444,59.082047],[-2.544982,59.080902],[-2.543807,59.079224],[-2.544227,59.077642],[-2.542508,59.075965],[-2.540493,59.075338],[-2.5385,59.075661],[-2.537842,59.076257],[-2.535619,59.07673],[-2.536422,59.078535],[-2.53953,59.077797],[-2.542341,59.079178],[-2.542732,59.080408],[-2.541196,59.080567],[-2.541481,59.081809],[-2.537753,59.083691],[-2.537311,59.086333],[-2.535135,59.087955],[-2.534833,59.088804],[-2.532537,59.089209],[-2.53232,59.090165],[-2.530868,59.091102],[-2.529066,59.09106],[-2.527116,59.092917],[-2.528781,59.094193],[-2.531285,59.09374],[-2.535457,59.093698],[-2.535664,59.094298],[-2.537551,59.095142],[-2.54175,59.095748],[-2.543243,59.096716],[-2.54465,59.096914],[-2.546455,59.098328],[-2.547013,59.099437],[-2.550132,59.1011],[-2.547665,59.10254],[-2.547316,59.103387],[-2.548175,59.104709],[-2.549476,59.104728],[-2.550155,59.105717],[-2.55222,59.106219],[-2.55275,59.108299],[-2.55123,59.110022],[-2.552554,59.110291],[-2.552953,59.111306],[-2.551774,59.112317],[-2.548284,59.112015],[-2.548245,59.112939],[-2.545059,59.114077],[-2.545301,59.115619],[-2.544001,59.115952],[-2.542656,59.117201],[-2.544135,59.118549],[-2.539591,59.119481],[-2.54,59.121031],[-2.537219,59.122037],[-2.540086,59.122431],[-2.541678,59.123497],[-2.544448,59.123652],[-2.546764,59.122452],[-2.549839,59.121552],[-2.551061,59.120478],[-2.552604,59.119862],[-2.556769,59.119799],[-2.55774,59.119333],[-2.561662,59.119031],[-2.564507,59.120304],[-2.566691,59.119227],[-2.568446,59.119282],[-2.571453,59.118575],[-2.572313,59.118735],[-2.574538,59.117808],[-2.576746,59.117823],[-2.580053,59.117118],[-2.581283,59.117457],[-2.582335,59.116315],[-2.582421,59.115046],[-2.58569,59.114136],[-2.59025,59.114269],[-2.595735,59.115742],[-2.600001,59.118216],[-2.603373,59.120817],[-2.605397,59.12267],[-2.607335,59.125958],[-2.6077,59.128585],[-2.606507,59.129798],[-2.606302,59.130836],[-2.604561,59.132483],[-2.602041,59.133273],[-2.605006,59.135458],[-2.60508,59.137135],[-2.603621,59.138048],[-2.599397,59.138421],[-2.597521,59.138205],[-2.595591,59.137396],[-2.589135,59.139102],[-2.58658,59.139014],[-2.585035,59.138253],[-2.582751,59.137715],[-2.580079,59.138339],[-2.576927,59.13829],[-2.575652,59.138613],[-2.572842,59.140712],[-2.572733,59.142338],[-2.576444,59.142581],[-2.577659,59.143546],[-2.579763,59.143083],[-2.58347,59.143433],[-2.583336,59.14181],[-2.586523,59.140827],[-2.588869,59.140909],[-2.592554,59.140157],[-2.59431,59.140573],[-2.595515,59.141845],[-2.600975,59.140897],[-2.602793,59.141243],[-2.609622,59.143363],[-2.612905,59.143873],[-2.614338,59.14458],[-2.617553,59.143716],[-2.619818,59.143767],[-2.622126,59.14296],[-2.624909,59.143271],[-2.626796,59.144478],[-2.627274,59.145522],[-2.627142,59.148142],[-2.625884,59.149023],[-2.625743,59.149888],[-2.627296,59.150951],[-2.629871,59.151993],[-2.630227,59.152765],[-2.63432,59.154315],[-2.635745,59.155736],[-2.634075,59.156674],[-2.632328,59.156926],[-2.628491,59.15596],[-2.6271,59.154265],[-2.625699,59.154355],[-2.620695,59.153182],[-2.621446,59.151424],[-2.618206,59.150743],[-2.616524,59.151983],[-2.617394,59.152923],[-2.616288,59.153422],[-2.617679,59.154458],[-2.61741,59.155226],[-2.621835,59.157839],[-2.62425,59.157791],[-2.627574,59.159204],[-2.629867,59.161014]]],[[[-2.824151,59.168953],[-2.825346,59.166944],[-2.825393,59.165167],[-2.824694,59.163817],[-2.823544,59.163829],[-2.823079,59.168534],[-2.824151,59.168953]]],[[[-2.649887,59.162717],[-2.647104,59.16594],[-2.647027,59.168705],[-2.646565,59.170099],[-2.647504,59.170514],[-2.649911,59.168693],[-2.653676,59.166613],[-2.655609,59.164741],[-2.655555,59.163447],[-2.651864,59.162023],[-2.649887,59.162717]]],[[[-2.949768,59.169],[-2.953293,59.168448],[-2.955363,59.168602],[-2.955634,59.167296],[-2.953871,59.164029],[-2.952545,59.163085],[-2.950569,59.162647],[-2.946857,59.165717],[-2.949006,59.167596],[-2.949768,59.169]]],[[[-2.926191,59.170098],[-2.927019,59.169597],[-2.931744,59.169907],[-2.932127,59.169409],[-2.934851,59.168762],[-2.936307,59.167189],[-2.938274,59.167222],[-2.938804,59.166172],[-2.940743,59.166117],[-2.942099,59.164056],[-2.942696,59.16077],[-2.941168,59.158228],[-2.942164,59.157767],[-2.943166,59.155678],[-2.941928,59.154197],[-2.941365,59.148273],[-2.938819,59.145749],[-2.93704,59.144576],[-2.936296,59.140426],[-2.934644,59.138772],[-2.933742,59.135971],[-2.932105,59.134351],[-2.929453,59.132861],[-2.928453,59.131577],[-2.923832,59.128939],[-2.922758,59.126793],[-2.919905,59.125628],[-2.920551,59.127508],[-2.919295,59.130501],[-2.917972,59.130824],[-2.917264,59.133753],[-2.918065,59.138455],[-2.917387,59.140501],[-2.913225,59.146598],[-2.913026,59.14876],[-2.913623,59.150779],[-2.913253,59.152686],[-2.912232,59.154931],[-2.911151,59.155843],[-2.909986,59.159638],[-2.908491,59.161224],[-2.908059,59.163658],[-2.910541,59.16375],[-2.913268,59.164451],[-2.914802,59.16573],[-2.915819,59.165617],[-2.921479,59.16718],[-2.926191,59.170098]]],[[[-2.688862,59.176409],[-2.689531,59.177656],[-2.691454,59.176001],[-2.688862,59.176409]]],[[[-2.915811,59.177797],[-2.919008,59.177945],[-2.921572,59.176354],[-2.921682,59.174722],[-2.920001,59.174141],[-2.918409,59.175568],[-2.915445,59.176879],[-2.915811,59.177797]]],[[[-3.076054,59.199832],[-3.078796,59.198785],[-3.081695,59.198276],[-3.083432,59.197022],[-3.083501,59.195055],[-3.084091,59.194385],[-3.087498,59.193589],[-3.088566,59.192763],[-3.093249,59.191121],[-3.094095,59.189999],[-3.098219,59.188923],[-3.099659,59.187434],[-3.103548,59.185654],[-3.103485,59.182062],[-3.104467,59.18213],[-3.105247,59.179999],[-3.10508,59.178887],[-3.107231,59.178303],[-3.107932,59.17752],[-3.110189,59.176993],[-3.11196,59.175872],[-3.112584,59.174534],[-3.117062,59.173679],[-3.118366,59.172635],[-3.116941,59.171053],[-3.115221,59.170321],[-3.113447,59.168542],[-3.114145,59.167325],[-3.112042,59.166308],[-3.114792,59.164091],[-3.113024,59.160492],[-3.111283,59.160887],[-3.110874,59.159735],[-3.108009,59.159309],[-3.106491,59.158717],[-3.10163,59.157949],[-3.098667,59.154788],[-3.097299,59.153834],[-3.098489,59.151977],[-3.098295,59.150285],[-3.096373,59.149417],[-3.093593,59.148738],[-3.092787,59.146687],[-3.09311,59.145565],[-3.089465,59.145599],[-3.086763,59.143947],[-3.084229,59.143521],[-3.082002,59.142511],[-3.079356,59.139327],[-3.076814,59.137891],[-3.074158,59.137425],[-3.069336,59.135682],[-3.061562,59.134788],[-3.059507,59.134205],[-3.055816,59.131583],[-3.050514,59.13035],[-3.049437,59.129528],[-3.045264,59.129026],[-3.04403,59.127215],[-3.040189,59.126461],[-3.036601,59.126929],[-3.034267,59.126925],[-3.031043,59.127664],[-3.021433,59.127096],[-3.019681,59.126527],[-3.014192,59.127138],[-3.007994,59.127087],[-3.006695,59.126758],[-3.001466,59.127605],[-2.999014,59.126776],[-2.996014,59.127243],[-2.990899,59.129488],[-2.985849,59.130644],[-2.984742,59.131203],[-2.970541,59.133701],[-2.965564,59.135059],[-2.963978,59.136204],[-2.963023,59.138782],[-2.964298,59.141308],[-2.968319,59.144962],[-2.969788,59.147456],[-2.969574,59.149511],[-2.971507,59.150979],[-2.975355,59.158613],[-2.976365,59.159186],[-2.976746,59.160628],[-2.978412,59.161229],[-2.978817,59.163173],[-2.974554,59.164822],[-2.971823,59.168458],[-2.970094,59.171105],[-2.970282,59.171788],[-2.96704,59.173155],[-2.965863,59.175308],[-2.964594,59.175291],[-2.963995,59.17376],[-2.962776,59.173997],[-2.961833,59.17279],[-2.960069,59.173414],[-2.9564,59.172737],[-2.955603,59.173505],[-2.953972,59.173257],[-2.953748,59.174368],[-2.954206,59.176288],[-2.952695,59.177349],[-2.953012,59.179591],[-2.954886,59.180329],[-2.95693,59.179924],[-2.957479,59.181026],[-2.959422,59.18112],[-2.960729,59.180489],[-2.963918,59.180849],[-2.965276,59.186376],[-2.968634,59.187529],[-2.972415,59.186834],[-2.978195,59.186967],[-2.9836,59.184211],[-2.985443,59.18363],[-2.986849,59.182663],[-2.988362,59.182459],[-2.989759,59.180567],[-2.991907,59.180127],[-2.993775,59.177995],[-2.999276,59.178603],[-3.008378,59.177565],[-3.008909,59.17807],[-3.011937,59.178029],[-3.012888,59.17754],[-3.018457,59.17757],[-3.019591,59.177339],[-3.022393,59.177676],[-3.027253,59.177516],[-3.030144,59.177707],[-3.033022,59.178434],[-3.036552,59.178575],[-3.040774,59.179903],[-3.04178,59.180535],[-3.045469,59.181342],[-3.050028,59.183707],[-3.049988,59.184313],[-3.048053,59.186207],[-3.047474,59.188458],[-3.048786,59.189278],[-3.049328,59.190693],[-3.048622,59.195651],[-3.050914,59.1973],[-3.053736,59.197082],[-3.058279,59.194524],[-3.059561,59.195136],[-3.061839,59.195353],[-3.067978,59.195519],[-3.069842,59.197687],[-3.073184,59.199317],[-3.076054,59.199832]]],[[[-2.851763,59.2084],[-2.852482,59.209446],[-2.854579,59.209865],[-2.855667,59.209554],[-2.855615,59.20685],[-2.856112,59.206129],[-2.854736,59.20523],[-2.852252,59.206378],[-2.851763,59.2084]]],[[[-2.588095,59.221419],[-2.588148,59.222519],[-2.589995,59.222696],[-2.590968,59.223346],[-2.592526,59.222275],[-2.592911,59.221262],[-2.59148,59.221137],[-2.590834,59.220155],[-2.588095,59.221419]]],[[[-2.822388,59.221629],[-2.822956,59.22356],[-2.824542,59.223943],[-2.82525,59.22591],[-2.826962,59.226847],[-2.828563,59.226701],[-2.83092,59.225184],[-2.830491,59.223396],[-2.828948,59.22105],[-2.828998,59.220051],[-2.830638,59.217899],[-2.830659,59.216825],[-2.829346,59.214851],[-2.82997,59.213134],[-2.828868,59.211002],[-2.827186,59.210037],[-2.826581,59.209075],[-2.827661,59.207315],[-2.826058,59.205257],[-2.823956,59.20401],[-2.821666,59.203736],[-2.821746,59.204643],[-2.820792,59.205687],[-2.818595,59.206624],[-2.816973,59.208146],[-2.816687,59.210481],[-2.815129,59.211681],[-2.81522,59.213721],[-2.819937,59.216963],[-2.820688,59.219991],[-2.822388,59.221629]]],[[[-2.905983,59.227184],[-2.90588,59.225925],[-2.904116,59.22522],[-2.903947,59.226906],[-2.905983,59.227184]]],[[[-2.831703,59.241738],[-2.834127,59.24157],[-2.833846,59.24074],[-2.831986,59.239513],[-2.832681,59.238505],[-2.834735,59.238267],[-2.835601,59.237328],[-2.834807,59.236256],[-2.832332,59.235097],[-2.831401,59.234079],[-2.833511,59.232127],[-2.833247,59.231316],[-2.829767,59.229311],[-2.829049,59.229878],[-2.826201,59.229849],[-2.826709,59.231752],[-2.826016,59.232775],[-2.827206,59.233173],[-2.827425,59.235029],[-2.82847,59.23636],[-2.830024,59.236552],[-2.831271,59.239397],[-2.829829,59.23942],[-2.829995,59.240474],[-2.831703,59.241738]]],[[[-2.979374,59.245182],[-2.981283,59.244183],[-2.978936,59.242868],[-2.97745,59.243669],[-2.979375,59.244472],[-2.979374,59.245182]]],[[[-2.73964,59.24739],[-2.740697,59.247984],[-2.742226,59.245975],[-2.744727,59.245341],[-2.745229,59.244004],[-2.746221,59.243466],[-2.747078,59.241457],[-2.745385,59.241097],[-2.745394,59.239757],[-2.747495,59.238738],[-2.747954,59.236484],[-2.746444,59.23365],[-2.742098,59.231495],[-2.735194,59.23004],[-2.73219,59.22886],[-2.730735,59.228664],[-2.724248,59.228913],[-2.720713,59.229714],[-2.717265,59.2314],[-2.717047,59.232268],[-2.717785,59.233628],[-2.720375,59.234455],[-2.721258,59.235625],[-2.723596,59.236831],[-2.726675,59.236895],[-2.726849,59.240298],[-2.728427,59.241812],[-2.729432,59.241322],[-2.730937,59.24221],[-2.731738,59.243769],[-2.735075,59.244631],[-2.736248,59.245755],[-2.73629,59.246707],[-2.73964,59.24739]]],[[[-2.755046,59.249859],[-2.756884,59.249816],[-2.759266,59.250385],[-2.761973,59.248456],[-2.764893,59.247142],[-2.768351,59.244948],[-2.77174,59.243959],[-2.773915,59.243882],[-2.775129,59.243158],[-2.777949,59.242524],[-2.784036,59.240179],[-2.788458,59.237769],[-2.790509,59.234698],[-2.789291,59.231075],[-2.785556,59.229385],[-2.783636,59.228918],[-2.783025,59.227907],[-2.785353,59.223886],[-2.787517,59.222353],[-2.788323,59.219051],[-2.791019,59.213909],[-2.790093,59.213262],[-2.785454,59.211799],[-2.783195,59.209675],[-2.778077,59.208197],[-2.776144,59.203068],[-2.776599,59.202592],[-2.776117,59.200719],[-2.776725,59.198888],[-2.77643,59.197436],[-2.779825,59.195815],[-2.780713,59.194524],[-2.778464,59.193866],[-2.777944,59.193216],[-2.778275,59.191868],[-2.780055,59.189806],[-2.783744,59.187759],[-2.786256,59.186908],[-2.787581,59.186858],[-2.792335,59.185039],[-2.79945,59.183495],[-2.802804,59.183376],[-2.803812,59.18461],[-2.808085,59.186173],[-2.809326,59.186072],[-2.814197,59.18715],[-2.8183,59.187561],[-2.820828,59.18944],[-2.820923,59.191493],[-2.822263,59.192978],[-2.822247,59.193854],[-2.823443,59.194631],[-2.825916,59.192203],[-2.827721,59.187904],[-2.826559,59.184627],[-2.82567,59.183188],[-2.825635,59.181101],[-2.826775,59.179443],[-2.826588,59.175815],[-2.824624,59.173191],[-2.823694,59.171372],[-2.820187,59.173202],[-2.81765,59.173184],[-2.814553,59.172545],[-2.813609,59.171926],[-2.811994,59.169012],[-2.810096,59.167248],[-2.807085,59.166155],[-2.806414,59.166526],[-2.80399,59.166228],[-2.798889,59.164267],[-2.798203,59.163132],[-2.797023,59.162676],[-2.797354,59.16169],[-2.79434,59.159952],[-2.79398,59.158752],[-2.794799,59.157955],[-2.794736,59.156005],[-2.796462,59.154634],[-2.796593,59.152671],[-2.795747,59.151357],[-2.79475,59.150896],[-2.794538,59.149154],[-2.793753,59.148067],[-2.789579,59.146311],[-2.791246,59.144262],[-2.791001,59.140026],[-2.790021,59.138473],[-2.788207,59.138063],[-2.784211,59.138819],[-2.78235,59.140343],[-2.779877,59.140842],[-2.778002,59.14217],[-2.775898,59.142925],[-2.775088,59.143756],[-2.772167,59.144552],[-2.769672,59.144485],[-2.765266,59.143758],[-2.75795,59.144873],[-2.75594,59.145637],[-2.753933,59.144388],[-2.751782,59.143768],[-2.745151,59.143133],[-2.742704,59.143305],[-2.741744,59.143886],[-2.739008,59.147636],[-2.739283,59.151453],[-2.741568,59.153846],[-2.745259,59.15518],[-2.747212,59.155325],[-2.749173,59.154911],[-2.753709,59.156177],[-2.755858,59.157385],[-2.757615,59.159822],[-2.758527,59.163004],[-2.757954,59.167292],[-2.756188,59.170473],[-2.756049,59.171915],[-2.75634,59.176572],[-2.757309,59.17917],[-2.75676,59.180864],[-2.757078,59.1822],[-2.760952,59.186698],[-2.760794,59.187679],[-2.759346,59.189159],[-2.761921,59.189727],[-2.76601,59.191421],[-2.765867,59.19275],[-2.764641,59.193682],[-2.760936,59.193261],[-2.759045,59.194493],[-2.754928,59.194274],[-2.752651,59.196472],[-2.751478,59.199185],[-2.751576,59.200108],[-2.748722,59.203916],[-2.748716,59.205335],[-2.750178,59.206532],[-2.756877,59.208805],[-2.756679,59.209285],[-2.752908,59.209188],[-2.748904,59.208169],[-2.747555,59.20821],[-2.744214,59.209075],[-2.743503,59.20999],[-2.741315,59.210975],[-2.740409,59.21255],[-2.736712,59.214571],[-2.735765,59.216385],[-2.734647,59.216741],[-2.733817,59.218041],[-2.734812,59.219311],[-2.733773,59.221222],[-2.733656,59.223134],[-2.736799,59.224483],[-2.745133,59.228798],[-2.750091,59.230392],[-2.751953,59.230605],[-2.755018,59.230247],[-2.758248,59.230404],[-2.7608,59.230946],[-2.762834,59.231805],[-2.762581,59.233709],[-2.764139,59.235557],[-2.764177,59.236451],[-2.763248,59.238316],[-2.759447,59.241431],[-2.759043,59.242702],[-2.756407,59.244032],[-2.75512,59.246215],[-2.755683,59.248464],[-2.755046,59.249859]]],[[[-2.374467,59.277547],[-2.375303,59.280756],[-2.377027,59.281148],[-2.379273,59.280857],[-2.380623,59.279768],[-2.382525,59.279234],[-2.386442,59.279187],[-2.388381,59.278654],[-2.385677,59.277952],[-2.384542,59.276978],[-2.382834,59.276463],[-2.380557,59.276642],[-2.379338,59.276299],[-2.377583,59.276719],[-2.376301,59.276097],[-2.373784,59.276718],[-2.374467,59.277547]]],[[[-2.876165,59.297434],[-2.876298,59.296883],[-2.878529,59.296591],[-2.87881,59.295852],[-2.876028,59.29588],[-2.876165,59.297434]]],[[[-2.614842,59.296439],[-2.614247,59.29812],[-2.61827,59.30078],[-2.618054,59.298836],[-2.616621,59.297659],[-2.616641,59.296362],[-2.614842,59.296439]]],[[[-2.617291,59.304143],[-2.616935,59.306234],[-2.618555,59.306906],[-2.620365,59.306591],[-2.621983,59.305762],[-2.623513,59.304136],[-2.62133,59.302919],[-2.618667,59.302691],[-2.617291,59.304143]]],[[[-2.562561,59.308874],[-2.56464,59.308869],[-2.564436,59.307512],[-2.561237,59.30767],[-2.562561,59.308874]]],[[[-2.417852,59.290249],[-2.417638,59.291858],[-2.416577,59.293358],[-2.417324,59.29669],[-2.421886,59.300153],[-2.422584,59.301468],[-2.419927,59.306082],[-2.418931,59.306652],[-2.417994,59.308319],[-2.418204,59.309418],[-2.417243,59.310744],[-2.4189,59.312092],[-2.422289,59.312573],[-2.425795,59.312558],[-2.429428,59.311867],[-2.435701,59.309304],[-2.43738,59.307515],[-2.441435,59.305225],[-2.446684,59.303883],[-2.446822,59.301856],[-2.446138,59.300578],[-2.44643,59.298695],[-2.445931,59.297995],[-2.446776,59.294452],[-2.446309,59.293387],[-2.448251,59.29126],[-2.449887,59.290323],[-2.456149,59.288455],[-2.462637,59.287735],[-2.467676,59.288074],[-2.473177,59.289316],[-2.47953,59.289348],[-2.480358,59.289803],[-2.48188,59.288352],[-2.485495,59.287845],[-2.488425,59.286447],[-2.49013,59.284782],[-2.493763,59.282491],[-2.497795,59.281221],[-2.498981,59.280439],[-2.503213,59.279006],[-2.505994,59.277502],[-2.510736,59.27626],[-2.511533,59.274977],[-2.512956,59.273987],[-2.517048,59.272909],[-2.520551,59.272981],[-2.523718,59.271917],[-2.525051,59.270391],[-2.529114,59.269115],[-2.528609,59.267635],[-2.529958,59.266561],[-2.533589,59.265673],[-2.536745,59.265918],[-2.540858,59.265642],[-2.541851,59.264598],[-2.539673,59.26379],[-2.540285,59.262868],[-2.54297,59.262799],[-2.544572,59.262264],[-2.543929,59.260298],[-2.546095,59.260527],[-2.546957,59.262376],[-2.551766,59.262765],[-2.55355,59.26265],[-2.552357,59.264291],[-2.552978,59.265227],[-2.557449,59.266535],[-2.554973,59.267271],[-2.554201,59.266332],[-2.550759,59.267061],[-2.553841,59.269051],[-2.555126,59.268344],[-2.555997,59.267171],[-2.558431,59.266751],[-2.557409,59.265714],[-2.558182,59.264504],[-2.554972,59.264016],[-2.554325,59.263149],[-2.555017,59.261501],[-2.557632,59.260282],[-2.559759,59.260346],[-2.563441,59.261055],[-2.568038,59.260309],[-2.573799,59.260705],[-2.57684,59.261858],[-2.578568,59.26213],[-2.578593,59.263278],[-2.580327,59.264401],[-2.58208,59.264556],[-2.582228,59.265296],[-2.580349,59.26671],[-2.576847,59.266956],[-2.573689,59.267545],[-2.57379,59.271581],[-2.575181,59.273752],[-2.574866,59.274992],[-2.569853,59.277631],[-2.566066,59.278343],[-2.563367,59.279498],[-2.559581,59.279676],[-2.557278,59.27914],[-2.555496,59.278014],[-2.555357,59.276821],[-2.557575,59.276249],[-2.558412,59.27499],[-2.554901,59.275361],[-2.553098,59.276341],[-2.555242,59.278366],[-2.557379,59.283469],[-2.556218,59.287259],[-2.552845,59.290636],[-2.550293,59.292143],[-2.546515,59.293064],[-2.539908,59.292758],[-2.538244,59.292965],[-2.537117,59.295077],[-2.534917,59.296385],[-2.533127,59.296734],[-2.529106,59.298952],[-2.528257,59.3007],[-2.529313,59.302961],[-2.531414,59.303196],[-2.5337,59.302486],[-2.536785,59.302076],[-2.542244,59.302206],[-2.547355,59.303246],[-2.553356,59.305582],[-2.557933,59.305739],[-2.561403,59.301442],[-2.563886,59.299418],[-2.56675,59.298044],[-2.569734,59.297899],[-2.570814,59.297307],[-2.571424,59.296106],[-2.575298,59.294551],[-2.579858,59.293217],[-2.582292,59.292843],[-2.584085,59.292978],[-2.586878,59.294079],[-2.592575,59.294047],[-2.595408,59.293404],[-2.597934,59.293193],[-2.599586,59.292474],[-2.599891,59.291654],[-2.602956,59.289934],[-2.605032,59.289545],[-2.608072,59.289447],[-2.610447,59.290168],[-2.610077,59.290954],[-2.613631,59.294216],[-2.615538,59.294637],[-2.616172,59.291509],[-2.615799,59.289878],[-2.614296,59.288402],[-2.614861,59.285942],[-2.613979,59.285254],[-2.614805,59.28408],[-2.614684,59.282867],[-2.613081,59.281829],[-2.610251,59.281439],[-2.603917,59.279143],[-2.602706,59.277822],[-2.599142,59.276132],[-2.597768,59.275873],[-2.596875,59.274758],[-2.595439,59.274176],[-2.59521,59.272523],[-2.592762,59.271023],[-2.593008,59.26884],[-2.597362,59.266619],[-2.601355,59.265752],[-2.604635,59.266356],[-2.60684,59.268562],[-2.609716,59.267692],[-2.610659,59.26657],[-2.610596,59.265092],[-2.609013,59.263809],[-2.607188,59.263296],[-2.603895,59.26471],[-2.601078,59.263054],[-2.600635,59.261322],[-2.601918,59.259635],[-2.604386,59.259293],[-2.606955,59.257806],[-2.610325,59.257541],[-2.610242,59.256615],[-2.612026,59.256153],[-2.615697,59.257355],[-2.616662,59.25795],[-2.620615,59.257813],[-2.621824,59.256385],[-2.624054,59.255205],[-2.625405,59.255167],[-2.629063,59.253969],[-2.629106,59.252977],[-2.632311,59.251919],[-2.635031,59.249969],[-2.63709,59.248974],[-2.637276,59.247979],[-2.641184,59.24559],[-2.643872,59.245784],[-2.64552,59.246322],[-2.646982,59.244196],[-2.651889,59.24149],[-2.654416,59.241773],[-2.656465,59.241552],[-2.659078,59.23908],[-2.658956,59.238015],[-2.657772,59.236248],[-2.66034,59.235118],[-2.661635,59.231317],[-2.663585,59.229775],[-2.664207,59.228096],[-2.666944,59.226904],[-2.669077,59.224987],[-2.672029,59.223892],[-2.675133,59.223933],[-2.676207,59.224653],[-2.675898,59.225446],[-2.677846,59.227036],[-2.679818,59.227218],[-2.680198,59.226268],[-2.682048,59.224631],[-2.681716,59.223407],[-2.679874,59.222731],[-2.678331,59.222669],[-2.677539,59.221721],[-2.678997,59.219859],[-2.680444,59.219641],[-2.68378,59.219824],[-2.688728,59.221097],[-2.690377,59.221146],[-2.691267,59.221959],[-2.693332,59.221859],[-2.696121,59.221033],[-2.696944,59.216846],[-2.699357,59.214661],[-2.699673,59.212834],[-2.700775,59.211606],[-2.700747,59.209039],[-2.701848,59.207804],[-2.701397,59.205414],[-2.701914,59.204162],[-2.70099,59.200233],[-2.701522,59.197316],[-2.701102,59.19535],[-2.699561,59.193737],[-2.696873,59.192778],[-2.695265,59.191411],[-2.695668,59.189492],[-2.697138,59.188823],[-2.696172,59.186262],[-2.694586,59.18448],[-2.689978,59.184339],[-2.685966,59.185589],[-2.686656,59.188131],[-2.686051,59.188449],[-2.688406,59.191477],[-2.689654,59.194222],[-2.689469,59.19497],[-2.69055,59.196372],[-2.688302,59.198868],[-2.688056,59.204002],[-2.686952,59.204285],[-2.682694,59.204157],[-2.681307,59.203313],[-2.67724,59.195979],[-2.676477,59.191247],[-2.675344,59.190624],[-2.673759,59.19102],[-2.67424,59.192898],[-2.675917,59.193959],[-2.675884,59.194922],[-2.674419,59.195633],[-2.672368,59.197974],[-2.67296,59.198499],[-2.671735,59.199896],[-2.673401,59.20089],[-2.67249,59.201683],[-2.67298,59.202596],[-2.669285,59.206612],[-2.668127,59.208452],[-2.665702,59.209795],[-2.661021,59.211218],[-2.657162,59.211297],[-2.655173,59.209834],[-2.653888,59.210051],[-2.656176,59.212674],[-2.655695,59.21372],[-2.651342,59.217123],[-2.646758,59.217974],[-2.645324,59.220393],[-2.642575,59.221696],[-2.64304,59.222713],[-2.642048,59.223742],[-2.642803,59.224408],[-2.641675,59.225071],[-2.642088,59.225954],[-2.64166,59.228625],[-2.640213,59.229566],[-2.639856,59.230663],[-2.638569,59.231814],[-2.637988,59.233747],[-2.63847,59.234152],[-2.636122,59.236079],[-2.635141,59.235974],[-2.630945,59.237476],[-2.623588,59.238435],[-2.617837,59.23851],[-2.612604,59.238024],[-2.606514,59.23677],[-2.602835,59.234784],[-2.603986,59.232598],[-2.606197,59.23155],[-2.606096,59.230465],[-2.604702,59.229411],[-2.601903,59.229204],[-2.600638,59.229991],[-2.59926,59.232883],[-2.595788,59.235886],[-2.591084,59.238309],[-2.588184,59.241511],[-2.579632,59.241148],[-2.579499,59.242247],[-2.577932,59.243028],[-2.574024,59.243946],[-2.572619,59.244756],[-2.570373,59.244904],[-2.569007,59.243769],[-2.56751,59.243341],[-2.566965,59.241976],[-2.562455,59.240445],[-2.56091,59.238416],[-2.563104,59.237656],[-2.56565,59.237369],[-2.570908,59.235351],[-2.575225,59.237473],[-2.577356,59.237073],[-2.579918,59.234849],[-2.579576,59.232463],[-2.580036,59.231196],[-2.57813,59.229843],[-2.580405,59.227389],[-2.581163,59.225639],[-2.58043,59.224671],[-2.574475,59.221929],[-2.573748,59.221163],[-2.570564,59.220554],[-2.569415,59.22084],[-2.568408,59.221911],[-2.567428,59.224346],[-2.567874,59.224637],[-2.567283,59.22758],[-2.5681,59.228674],[-2.567937,59.231396],[-2.569255,59.233983],[-2.567815,59.235338],[-2.565971,59.23625],[-2.563294,59.237074],[-2.55762,59.238202],[-2.554176,59.238624],[-2.550534,59.238686],[-2.544664,59.237645],[-2.54257,59.236499],[-2.540237,59.235728],[-2.539982,59.234959],[-2.536644,59.234552],[-2.537091,59.235388],[-2.535385,59.236597],[-2.532987,59.23714],[-2.527057,59.236901],[-2.52384,59.238724],[-2.525278,59.238912],[-2.526937,59.238228],[-2.531798,59.238435],[-2.53254,59.239621],[-2.532242,59.240926],[-2.53018,59.24199],[-2.528988,59.243558],[-2.528735,59.244923],[-2.529197,59.246006],[-2.526662,59.247684],[-2.527963,59.248626],[-2.535474,59.248943],[-2.537795,59.249814],[-2.538306,59.250575],[-2.535338,59.251483],[-2.533601,59.252486],[-2.530599,59.256163],[-2.529067,59.25726],[-2.527894,59.25704],[-2.526111,59.257675],[-2.522784,59.257689],[-2.51916,59.256913],[-2.515046,59.255526],[-2.511793,59.254027],[-2.510569,59.252879],[-2.511817,59.250093],[-2.514482,59.246837],[-2.516671,59.245471],[-2.517973,59.243779],[-2.519424,59.242824],[-2.520749,59.237974],[-2.52155,59.237326],[-2.521219,59.23584],[-2.523955,59.233937],[-2.522262,59.233057],[-2.521061,59.231797],[-2.518132,59.230894],[-2.517137,59.228509],[-2.516005,59.227442],[-2.511944,59.226566],[-2.510663,59.225655],[-2.511524,59.224057],[-2.51062,59.223025],[-2.506774,59.222931],[-2.505204,59.223978],[-2.505393,59.225175],[-2.506687,59.225868],[-2.505669,59.227583],[-2.506655,59.229074],[-2.509032,59.230838],[-2.511874,59.230628],[-2.51514,59.231652],[-2.517734,59.233257],[-2.519239,59.234804],[-2.51979,59.237787],[-2.518551,59.241323],[-2.517629,59.242668],[-2.507572,59.250893],[-2.5001,59.258087],[-2.498326,59.259282],[-2.495519,59.259944],[-2.494403,59.261181],[-2.492662,59.261958],[-2.490479,59.265025],[-2.486277,59.267733],[-2.486259,59.269874],[-2.485046,59.272229],[-2.483055,59.274455],[-2.480202,59.276438],[-2.473675,59.279192],[-2.468257,59.280586],[-2.462925,59.28137],[-2.457655,59.281336],[-2.45577,59.281894],[-2.45098,59.282451],[-2.448093,59.283096],[-2.443443,59.283463],[-2.433532,59.283454],[-2.430153,59.282976],[-2.426657,59.282032],[-2.425461,59.281063],[-2.425631,59.279814],[-2.424925,59.279079],[-2.424869,59.276138],[-2.422732,59.275171],[-2.420244,59.275622],[-2.419464,59.276351],[-2.411371,59.277762],[-2.409264,59.279071],[-2.40784,59.279343],[-2.404714,59.279142],[-2.402607,59.277836],[-2.40114,59.276261],[-2.399821,59.275837],[-2.398793,59.277237],[-2.397332,59.277824],[-2.390495,59.27849],[-2.397388,59.27994],[-2.404086,59.280572],[-2.410627,59.283385],[-2.416497,59.287583],[-2.417852,59.290249]]],[[[-2.872496,59.354681],[-2.874401,59.35434],[-2.874865,59.353655],[-2.873259,59.352949],[-2.872549,59.351475],[-2.870803,59.349901],[-2.86899,59.349188],[-2.867177,59.347881],[-2.866745,59.346697],[-2.865032,59.347301],[-2.863561,59.350086],[-2.864426,59.351329],[-2.865662,59.351447],[-2.867083,59.353049],[-2.868973,59.35348],[-2.869552,59.35427],[-2.871418,59.354039],[-2.872496,59.354681]]],[[[-2.955218,59.359689],[-2.957829,59.358787],[-2.958865,59.359577],[-2.961544,59.35824],[-2.961937,59.356741],[-2.963464,59.356907],[-2.966178,59.35582],[-2.972232,59.354238],[-2.974773,59.35413],[-2.97671,59.353185],[-2.977597,59.349883],[-2.978989,59.347359],[-2.980516,59.347207],[-2.982336,59.345542],[-2.982011,59.343998],[-2.98091,59.343065],[-2.981227,59.341799],[-2.980517,59.340998],[-2.980634,59.339468],[-2.981524,59.339005],[-2.979156,59.336835],[-2.979343,59.335906],[-2.983667,59.333645],[-2.990463,59.332735],[-2.996315,59.332414],[-2.996222,59.331647],[-2.998114,59.331408],[-2.99959,59.328833],[-3.004814,59.327265],[-3.008119,59.326983],[-3.010105,59.327393],[-3.011322,59.328104],[-3.013365,59.328108],[-3.016687,59.329203],[-3.020553,59.329898],[-3.024556,59.329687],[-3.025563,59.329009],[-3.026492,59.32654],[-3.028674,59.325883],[-3.029352,59.324742],[-3.030602,59.324553],[-3.033326,59.323293],[-3.036237,59.323999],[-3.038339,59.326311],[-3.042056,59.326208],[-3.043687,59.327262],[-3.04468,59.32701],[-3.048188,59.328202],[-3.050476,59.327812],[-3.052402,59.327975],[-3.053358,59.327508],[-3.055756,59.328237],[-3.058604,59.329913],[-3.061933,59.331313],[-3.069759,59.333192],[-3.070804,59.332234],[-3.07081,59.329665],[-3.068958,59.328022],[-3.067425,59.325125],[-3.065872,59.324736],[-3.06586,59.323092],[-3.063932,59.322582],[-3.063417,59.321758],[-3.061142,59.321154],[-3.060493,59.319994],[-3.05755,59.318467],[-3.054201,59.317129],[-3.049074,59.317139],[-3.048785,59.315043],[-3.042462,59.312381],[-3.039279,59.313538],[-3.038171,59.312783],[-3.035834,59.312115],[-3.033107,59.312414],[-3.030828,59.311496],[-3.032429,59.310746],[-3.031796,59.309499],[-3.030188,59.308309],[-3.028268,59.308525],[-3.027016,59.306776],[-3.024996,59.306196],[-3.023136,59.305163],[-3.023527,59.303322],[-3.021617,59.302699],[-3.019987,59.299285],[-3.020579,59.297855],[-3.022663,59.296931],[-3.021997,59.296351],[-3.023619,59.295478],[-3.023313,59.294167],[-3.020964,59.293686],[-3.01997,59.292999],[-3.021002,59.291795],[-3.018901,59.288582],[-3.019503,59.286937],[-3.01766,59.28604],[-3.019711,59.284869],[-3.019795,59.283517],[-3.02178,59.283085],[-3.022004,59.282333],[-3.020331,59.281653],[-3.02173,59.280968],[-3.023325,59.281066],[-3.024926,59.277795],[-3.023665,59.277165],[-3.01741,59.275844],[-3.014513,59.275648],[-3.014064,59.274408],[-3.01138,59.274588],[-3.008552,59.274339],[-3.008377,59.273296],[-3.006183,59.272879],[-3.005692,59.271741],[-3.004079,59.270758],[-3.004546,59.270172],[-3.00278,59.268804],[-3.001161,59.268446],[-2.99905,59.268793],[-2.996682,59.267986],[-2.996196,59.267213],[-2.994616,59.266961],[-2.995294,59.265947],[-2.993042,59.263608],[-2.990015,59.263385],[-2.988988,59.262542],[-2.985604,59.260907],[-2.984251,59.260778],[-2.982517,59.259544],[-2.980803,59.259767],[-2.981884,59.261381],[-2.981726,59.26244],[-2.980443,59.263269],[-2.981978,59.265165],[-2.981887,59.265814],[-2.97787,59.268011],[-2.973865,59.269164],[-2.969838,59.269019],[-2.968404,59.269747],[-2.9681,59.27085],[-2.966229,59.27137],[-2.96395,59.27148],[-2.95813,59.270879],[-2.953851,59.272167],[-2.950475,59.272008],[-2.948089,59.272832],[-2.947919,59.273972],[-2.950682,59.276325],[-2.954801,59.277006],[-2.958034,59.278046],[-2.960949,59.279499],[-2.960996,59.282248],[-2.96187,59.283396],[-2.965237,59.28487],[-2.966963,59.286996],[-2.965969,59.288231],[-2.963489,59.289073],[-2.957153,59.290044],[-2.954692,59.289417],[-2.952714,59.288476],[-2.950249,59.288202],[-2.947508,59.286276],[-2.942712,59.285613],[-2.942461,59.285229],[-2.938449,59.285555],[-2.934281,59.286271],[-2.931299,59.286123],[-2.928216,59.285584],[-2.926732,59.284855],[-2.926454,59.282931],[-2.923896,59.280879],[-2.919429,59.278934],[-2.91513,59.278363],[-2.912076,59.277141],[-2.908166,59.273864],[-2.908224,59.27275],[-2.903734,59.268484],[-2.892907,59.262299],[-2.893083,59.261118],[-2.891906,59.260302],[-2.890997,59.254585],[-2.888511,59.254587],[-2.88908,59.255853],[-2.888229,59.257712],[-2.884809,59.258419],[-2.88153,59.258239],[-2.878862,59.25774],[-2.875666,59.256405],[-2.874526,59.255309],[-2.875302,59.254332],[-2.874678,59.253572],[-2.875668,59.251951],[-2.875012,59.24987],[-2.877359,59.248004],[-2.877916,59.246618],[-2.879025,59.24563],[-2.87899,59.244114],[-2.877303,59.243519],[-2.876588,59.241796],[-2.878752,59.240844],[-2.879514,59.239548],[-2.881897,59.239306],[-2.883543,59.237801],[-2.886118,59.237558],[-2.886149,59.236379],[-2.88724,59.235159],[-2.886701,59.23256],[-2.887352,59.23049],[-2.886496,59.230136],[-2.886401,59.228814],[-2.883389,59.228001],[-2.880896,59.22916],[-2.877568,59.229773],[-2.875947,59.232543],[-2.874321,59.233843],[-2.875692,59.234775],[-2.873494,59.237612],[-2.873686,59.238407],[-2.870561,59.23919],[-2.868891,59.240174],[-2.86887,59.241515],[-2.866836,59.24438],[-2.864306,59.245954],[-2.86478,59.247018],[-2.864138,59.247781],[-2.860465,59.249705],[-2.859158,59.251277],[-2.856427,59.25164],[-2.853688,59.250465],[-2.850275,59.249761],[-2.849325,59.250048],[-2.846888,59.24949],[-2.84478,59.248598],[-2.840767,59.248016],[-2.838638,59.246596],[-2.837559,59.248391],[-2.83969,59.249316],[-2.839562,59.250633],[-2.840724,59.251082],[-2.842187,59.253132],[-2.843113,59.253445],[-2.844087,59.255934],[-2.844577,59.25627],[-2.847906,59.260831],[-2.849705,59.261495],[-2.851046,59.264271],[-2.852204,59.264697],[-2.852932,59.266571],[-2.856162,59.268531],[-2.860248,59.269671],[-2.859958,59.268487],[-2.861501,59.268425],[-2.865064,59.269885],[-2.86661,59.269261],[-2.868946,59.26957],[-2.87037,59.270586],[-2.87155,59.269558],[-2.873845,59.269813],[-2.874926,59.2685],[-2.876683,59.265524],[-2.878031,59.265482],[-2.880885,59.266194],[-2.881983,59.268558],[-2.88146,59.269057],[-2.883517,59.271704],[-2.882716,59.272816],[-2.884228,59.27362],[-2.883562,59.274895],[-2.884186,59.277427],[-2.88197,59.282397],[-2.882757,59.283185],[-2.882221,59.284065],[-2.882638,59.285852],[-2.884442,59.286568],[-2.88639,59.288954],[-2.88779,59.289828],[-2.892194,59.290348],[-2.895408,59.289649],[-2.897167,59.290351],[-2.898055,59.293051],[-2.896234,59.296261],[-2.897183,59.297087],[-2.899023,59.296743],[-2.900705,59.297505],[-2.90117,59.29827],[-2.901054,59.300519],[-2.902226,59.302008],[-2.903887,59.302615],[-2.904033,59.303842],[-2.905578,59.30379],[-2.905629,59.301703],[-2.907178,59.300596],[-2.910888,59.299291],[-2.912742,59.298218],[-2.915245,59.297985],[-2.919918,59.299779],[-2.923959,59.304316],[-2.927137,59.303005],[-2.931923,59.302624],[-2.933516,59.302846],[-2.934568,59.302139],[-2.936776,59.302319],[-2.93967,59.303281],[-2.939803,59.305858],[-2.939271,59.306672],[-2.94011,59.307861],[-2.940468,59.310148],[-2.941565,59.311071],[-2.943368,59.310735],[-2.945327,59.310912],[-2.951616,59.308067],[-2.954052,59.307722],[-2.956361,59.307764],[-2.959545,59.308426],[-2.962258,59.309941],[-2.963135,59.311806],[-2.961995,59.314287],[-2.962423,59.315023],[-2.966177,59.315634],[-2.968241,59.316678],[-2.970345,59.317153],[-2.973034,59.318555],[-2.976852,59.316762],[-2.983394,59.314917],[-2.986659,59.315017],[-2.989117,59.31652],[-2.989659,59.317867],[-2.989386,59.319439],[-2.98833,59.320928],[-2.983898,59.322881],[-2.983598,59.325661],[-2.98165,59.326084],[-2.979961,59.325984],[-2.978166,59.325061],[-2.973632,59.323914],[-2.968625,59.325708],[-2.964349,59.326463],[-2.961894,59.326116],[-2.956106,59.327295],[-2.955404,59.32783],[-2.956565,59.331379],[-2.955449,59.333421],[-2.952263,59.336211],[-2.952024,59.33766],[-2.954138,59.33871],[-2.956636,59.338064],[-2.958259,59.337274],[-2.960693,59.337407],[-2.967352,59.339829],[-2.968353,59.339851],[-2.969184,59.341313],[-2.966998,59.342771],[-2.962044,59.343052],[-2.961278,59.342387],[-2.959038,59.343536],[-2.958759,59.345494],[-2.956381,59.347069],[-2.954079,59.347808],[-2.946761,59.347569],[-2.944695,59.348698],[-2.944107,59.350076],[-2.949144,59.352185],[-2.95248,59.354363],[-2.952932,59.356774],[-2.952333,59.357476],[-2.953157,59.359277],[-2.955218,59.359689]]],[[[-2.878895,59.38543],[-2.880556,59.385223],[-2.883527,59.385503],[-2.884739,59.384902],[-2.889132,59.384107],[-2.890704,59.382712],[-2.890272,59.379426],[-2.890993,59.378071],[-2.890422,59.376096],[-2.893154,59.372727],[-2.895098,59.372174],[-2.896331,59.371156],[-2.897004,59.369555],[-2.896571,59.368711],[-2.898242,59.365241],[-2.897139,59.364282],[-2.897359,59.361757],[-2.898241,59.360881],[-2.899756,59.360542],[-2.90069,59.359346],[-2.904772,59.356878],[-2.905048,59.355951],[-2.907458,59.354361],[-2.909493,59.350997],[-2.9111,59.349629],[-2.911177,59.344809],[-2.908437,59.341691],[-2.90888,59.337916],[-2.908039,59.336227],[-2.909663,59.333758],[-2.910316,59.329935],[-2.909401,59.327606],[-2.908174,59.326682],[-2.90674,59.324384],[-2.905204,59.323265],[-2.9004,59.329041],[-2.898391,59.330239],[-2.894587,59.330551],[-2.893245,59.330082],[-2.89318,59.329227],[-2.891334,59.328379],[-2.887838,59.324585],[-2.884687,59.325238],[-2.88279,59.326234],[-2.882542,59.327058],[-2.880797,59.32841],[-2.880489,59.330952],[-2.876656,59.334392],[-2.880331,59.335685],[-2.880287,59.337185],[-2.881504,59.338046],[-2.881104,59.339201],[-2.877733,59.340058],[-2.877273,59.341251],[-2.879427,59.344524],[-2.881834,59.344968],[-2.882685,59.345585],[-2.883107,59.348781],[-2.884017,59.349971],[-2.887529,59.351472],[-2.888801,59.353776],[-2.887509,59.356832],[-2.885789,59.357808],[-2.883976,59.358144],[-2.882112,59.35951],[-2.882981,59.359969],[-2.884017,59.361874],[-2.882238,59.364611],[-2.880349,59.365906],[-2.876529,59.366935],[-2.874871,59.367139],[-2.87198,59.366916],[-2.869195,59.370291],[-2.869639,59.371086],[-2.868527,59.372576],[-2.868061,59.376069],[-2.86976,59.376837],[-2.871868,59.378999],[-2.874242,59.380818],[-2.873271,59.382233],[-2.875002,59.383664],[-2.878213,59.384724],[-2.878895,59.38543]]],[[[-2.381981,59.392722],[-2.38878,59.390507],[-2.389801,59.390496],[-2.392687,59.389276],[-2.393302,59.387985],[-2.395213,59.387014],[-2.39996,59.386039],[-2.403932,59.384644],[-2.406908,59.384756],[-2.410366,59.386009],[-2.410729,59.386448],[-2.409835,59.388476],[-2.411025,59.389781],[-2.41338,59.389165],[-2.413617,59.388088],[-2.415334,59.387698],[-2.419363,59.385962],[-2.422645,59.386085],[-2.425712,59.38553],[-2.428959,59.386602],[-2.432794,59.385687],[-2.434561,59.384726],[-2.433911,59.382061],[-2.430955,59.380199],[-2.430485,59.378262],[-2.432016,59.377571],[-2.433496,59.375901],[-2.433668,59.37493],[-2.435231,59.373275],[-2.437277,59.372297],[-2.437642,59.371134],[-2.439501,59.371467],[-2.441102,59.37079],[-2.440783,59.369648],[-2.442314,59.36726],[-2.441496,59.365928],[-2.442218,59.36351],[-2.443782,59.361893],[-2.44646,59.361589],[-2.447146,59.360209],[-2.449086,59.359021],[-2.449766,59.357773],[-2.44909,59.356581],[-2.445794,59.356303],[-2.443788,59.354997],[-2.440502,59.356426],[-2.438886,59.358196],[-2.434625,59.358237],[-2.430308,59.357403],[-2.427766,59.356209],[-2.425658,59.354293],[-2.423682,59.350299],[-2.423659,59.348458],[-2.420383,59.347605],[-2.41813,59.347841],[-2.417644,59.349313],[-2.414905,59.352149],[-2.41132,59.354202],[-2.40626,59.355349],[-2.402339,59.355324],[-2.400969,59.35496],[-2.398796,59.355366],[-2.398,59.356494],[-2.401996,59.358515],[-2.402483,59.359158],[-2.405912,59.359623],[-2.407082,59.360222],[-2.409426,59.36352],[-2.408789,59.365011],[-2.410678,59.365809],[-2.411978,59.367381],[-2.409621,59.376212],[-2.408626,59.377706],[-2.403939,59.38082],[-2.402083,59.381198],[-2.397588,59.38273],[-2.389673,59.383313],[-2.387599,59.383633],[-2.384727,59.38456],[-2.380424,59.384802],[-2.37577,59.383858],[-2.373557,59.382036],[-2.370471,59.384097],[-2.372427,59.384594],[-2.374141,59.385568],[-2.374841,59.388026],[-2.378287,59.389242],[-2.377798,59.389832],[-2.379967,59.39054],[-2.379853,59.391635],[-2.381981,59.392722]]]]},"properties":{"LAD22CD":"S12000023","LAD22NM":"Orkney Islands","BNG_E":348293,"BNG_N":1006584,"LONG":-2.90025,"LAT":58.94334,"GlobalID":"d545ebbb-4b1d-4ea7-82ae-fc1005e7dfdc"},"id":333}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.122488,55.737661],[-2.12614,55.73902],[-2.130254,55.73877],[-2.125538,55.737514],[-2.122488,55.737661]]],[[[-2.034416,55.811115],[-2.038576,55.813205],[-2.040697,55.815875],[-2.04419,55.816329],[-2.045978,55.819033],[-2.048136,55.820023],[-2.048104,55.821835],[-2.050156,55.823935],[-2.049425,55.824481],[-2.050079,55.82617],[-2.051522,55.825863],[-2.052946,55.827218],[-2.051773,55.828233],[-2.054999,55.830424],[-2.055536,55.831921],[-2.055556,55.834738],[-2.056706,55.837024],[-2.05815,55.838129],[-2.0614,55.838062],[-2.063051,55.838557],[-2.065007,55.840671],[-2.067972,55.841481],[-2.069802,55.842694],[-2.068889,55.844136],[-2.068595,55.845801],[-2.069301,55.84808],[-2.070875,55.850407],[-2.070597,55.851368],[-2.071968,55.852681],[-2.072001,55.85495],[-2.071078,55.855588],[-2.073632,55.85611],[-2.075696,55.857007],[-2.074447,55.858051],[-2.073885,55.859509],[-2.074574,55.859837],[-2.073619,55.861493],[-2.074376,55.862041],[-2.072401,55.863029],[-2.072664,55.864021],[-2.074072,55.864831],[-2.072944,55.866058],[-2.074062,55.866763],[-2.072603,55.867945],[-2.074117,55.86819],[-2.074162,55.87005],[-2.07581,55.869818],[-2.076773,55.870294],[-2.07664,55.871888],[-2.079076,55.872981],[-2.079789,55.873986],[-2.08182,55.87388],[-2.081985,55.875583],[-2.084818,55.875126],[-2.085647,55.875517],[-2.087884,55.874934],[-2.085709,55.873531],[-2.089709,55.872952],[-2.092782,55.874256],[-2.093423,55.875899],[-2.091337,55.87678],[-2.091148,55.877981],[-2.095681,55.877151],[-2.096833,55.877746],[-2.096358,55.879095],[-2.099633,55.878258],[-2.102664,55.875726],[-2.103601,55.875663],[-2.10514,55.876582],[-2.108163,55.877586],[-2.108839,55.878643],[-2.108457,55.879444],[-2.10978,55.880331],[-2.112037,55.879765],[-2.113912,55.879872],[-2.11586,55.880936],[-2.116771,55.881924],[-2.118186,55.881875],[-2.119891,55.882745],[-2.122082,55.882531],[-2.125712,55.883672],[-2.127015,55.884638],[-2.12609,55.885759],[-2.126903,55.887679],[-2.126641,55.889345],[-2.128155,55.890025],[-2.130978,55.889397],[-2.130559,55.890409],[-2.131536,55.891127],[-2.132771,55.890752],[-2.134536,55.891718],[-2.134457,55.893267],[-2.130286,55.89551],[-2.128181,55.895658],[-2.127855,55.897154],[-2.129241,55.898389],[-2.129014,55.898919],[-2.132271,55.900165],[-2.133704,55.90215],[-2.135173,55.902562],[-2.133557,55.904882],[-2.130089,55.906558],[-2.129545,55.907393],[-2.130919,55.907845],[-2.129884,55.908666],[-2.131821,55.909404],[-2.134199,55.912826],[-2.136333,55.913058],[-2.137232,55.915025],[-2.136965,55.916301],[-2.13785,55.917057],[-2.139557,55.916427],[-2.141123,55.917629],[-2.142266,55.916743],[-2.1468,55.918221],[-2.149114,55.91732],[-2.149321,55.914808],[-2.151013,55.914732],[-2.152685,55.91398],[-2.153835,55.914957],[-2.155593,55.914771],[-2.156478,55.914114],[-2.15815,55.914913],[-2.167647,55.915046],[-2.168855,55.915659],[-2.169012,55.916505],[-2.171833,55.916062],[-2.175184,55.916227],[-2.177084,55.917009],[-2.177726,55.918184],[-2.180166,55.917998],[-2.182525,55.918398],[-2.184849,55.920095],[-2.187124,55.920322],[-2.189099,55.921138],[-2.189732,55.922143],[-2.192539,55.92177],[-2.195807,55.922679],[-2.199848,55.923005],[-2.200644,55.923939],[-2.204666,55.926157],[-2.205318,55.928389],[-2.206753,55.928129],[-2.209195,55.928419],[-2.209919,55.929051],[-2.211803,55.929435],[-2.211011,55.930695],[-2.213238,55.931046],[-2.214326,55.930672],[-2.216742,55.930927],[-2.218262,55.931726],[-2.220712,55.930928],[-2.221885,55.930926],[-2.223401,55.931936],[-2.224903,55.932328],[-2.227113,55.932177],[-2.228503,55.931433],[-2.230687,55.931893],[-2.23371,55.931285],[-2.234082,55.931678],[-2.240796,55.930379],[-2.24427,55.928959],[-2.246228,55.927102],[-2.249639,55.926327],[-2.251516,55.925388],[-2.252582,55.92555],[-2.254326,55.924653],[-2.259147,55.923785],[-2.260942,55.924644],[-2.263314,55.924302],[-2.26636,55.924293],[-2.271872,55.925474],[-2.275948,55.925089],[-2.279749,55.925119],[-2.280847,55.925678],[-2.28119,55.927123],[-2.282466,55.927576],[-2.285134,55.927564],[-2.289883,55.92882],[-2.292801,55.928861],[-2.296021,55.929475],[-2.301101,55.929359],[-2.302195,55.929953],[-2.301857,55.931113],[-2.302751,55.931689],[-2.306689,55.930463],[-2.308901,55.930486],[-2.31074,55.930982],[-2.313891,55.930382],[-2.320594,55.929836],[-2.322818,55.930485],[-2.323373,55.931824],[-2.327747,55.93029],[-2.330427,55.930251],[-2.335708,55.932024],[-2.335557,55.932646],[-2.337548,55.933246],[-2.338056,55.934346],[-2.337111,55.935003],[-2.337022,55.936363],[-2.33874,55.937408],[-2.342881,55.936538],[-2.344058,55.93717],[-2.346847,55.937755],[-2.34679,55.9384],[-2.35135,55.938396],[-2.353167,55.938637],[-2.354127,55.940841],[-2.356416,55.942854],[-2.359713,55.942338],[-2.361489,55.942687],[-2.36605,55.944681],[-2.366626,55.945826],[-2.366959,55.944418],[-2.36656,55.943231],[-2.370691,55.940613],[-2.371947,55.940485],[-2.372718,55.938842],[-2.374456,55.938052],[-2.376202,55.937759],[-2.377008,55.93711],[-2.378861,55.936863],[-2.380057,55.935948],[-2.380775,55.934137],[-2.381978,55.933683],[-2.385143,55.933732],[-2.389388,55.933033],[-2.390849,55.933224],[-2.392836,55.931801],[-2.392274,55.930805],[-2.394666,55.928555],[-2.396319,55.927745],[-2.396327,55.926596],[-2.397198,55.925445],[-2.398751,55.925006],[-2.398159,55.922549],[-2.39934,55.921905],[-2.40026,55.92056],[-2.403651,55.919495],[-2.406064,55.918263],[-2.406501,55.915842],[-2.407445,55.914327],[-2.411273,55.912928],[-2.417925,55.911784],[-2.420377,55.91087],[-2.421193,55.909712],[-2.425062,55.908765],[-2.422795,55.906441],[-2.434004,55.902716],[-2.4352,55.904046],[-2.445924,55.897799],[-2.448568,55.89345],[-2.459777,55.892133],[-2.461135,55.890713],[-2.466848,55.889087],[-2.467658,55.887984],[-2.467628,55.886861],[-2.466863,55.885053],[-2.471314,55.885607],[-2.475342,55.887563],[-2.479416,55.887938],[-2.479652,55.888926],[-2.482306,55.888947],[-2.483304,55.890142],[-2.484591,55.890169],[-2.485302,55.89141],[-2.48669,55.892425],[-2.486532,55.893189],[-2.487955,55.894495],[-2.487306,55.894965],[-2.488692,55.896496],[-2.488887,55.898643],[-2.489788,55.899731],[-2.492945,55.902086],[-2.494404,55.904321],[-2.494687,55.905758],[-2.496521,55.905966],[-2.49813,55.907325],[-2.501507,55.90879],[-2.504723,55.91193],[-2.515183,55.909326],[-2.522018,55.909104],[-2.528971,55.910481],[-2.533737,55.911013],[-2.535922,55.914588],[-2.554405,55.911523],[-2.553789,55.909983],[-2.562683,55.906526],[-2.56095,55.905586],[-2.558361,55.905225],[-2.557698,55.904163],[-2.55842,55.902624],[-2.555406,55.901564],[-2.554529,55.900076],[-2.560171,55.898146],[-2.566451,55.897308],[-2.570021,55.892144],[-2.566551,55.88879],[-2.560495,55.885714],[-2.557121,55.885621],[-2.552611,55.884379],[-2.548658,55.882375],[-2.546274,55.87996],[-2.550061,55.878155],[-2.548425,55.877214],[-2.547663,55.877546],[-2.545182,55.877305],[-2.542781,55.876467],[-2.541845,55.875806],[-2.540453,55.873418],[-2.53881,55.872459],[-2.535555,55.872257],[-2.533431,55.87122],[-2.532716,55.869758],[-2.534055,55.867118],[-2.536669,55.86555],[-2.53829,55.863193],[-2.537553,55.861938],[-2.535303,55.861654],[-2.534511,55.860931],[-2.535893,55.859317],[-2.538547,55.858111],[-2.538654,55.857172],[-2.540471,55.855767],[-2.54033,55.854774],[-2.541361,55.85428],[-2.542686,55.852513],[-2.544353,55.851185],[-2.543217,55.849348],[-2.543119,55.84805],[-2.547046,55.845054],[-2.548322,55.842717],[-2.554882,55.839089],[-2.564351,55.842402],[-2.568554,55.845393],[-2.573028,55.846068],[-2.581339,55.845486],[-2.58316,55.8428],[-2.58392,55.842392],[-2.581896,55.83998],[-2.582665,55.838592],[-2.583251,55.835571],[-2.584293,55.834281],[-2.592161,55.829337],[-2.594178,55.828672],[-2.604871,55.828561],[-2.604566,55.829978],[-2.605507,55.831981],[-2.60991,55.833775],[-2.622851,55.834891],[-2.626062,55.833024],[-2.627073,55.833805],[-2.631334,55.835675],[-2.633165,55.835863],[-2.642421,55.833672],[-2.648423,55.833641],[-2.647615,55.834979],[-2.647972,55.835755],[-2.647705,55.83749],[-2.644681,55.839056],[-2.643217,55.840775],[-2.649257,55.843888],[-2.651505,55.843225],[-2.660488,55.842288],[-2.665448,55.845648],[-2.669264,55.846548],[-2.672514,55.845623],[-2.683886,55.840669],[-2.686971,55.839469],[-2.691129,55.841665],[-2.694811,55.840796],[-2.696062,55.840231],[-2.696063,55.836696],[-2.696792,55.8364],[-2.7019,55.836317],[-2.705233,55.837012],[-2.723623,55.834618],[-2.725753,55.83412],[-2.727858,55.832747],[-2.730117,55.831875],[-2.731749,55.831636],[-2.735076,55.830296],[-2.741268,55.828893],[-2.744136,55.830286],[-2.748474,55.83008],[-2.751458,55.831243],[-2.755265,55.832051],[-2.756845,55.834076],[-2.7565,55.835606],[-2.758738,55.836567],[-2.758284,55.838695],[-2.761172,55.838605],[-2.764637,55.839002],[-2.769968,55.83847],[-2.771606,55.837754],[-2.77398,55.837488],[-2.774492,55.838351],[-2.774315,55.839862],[-2.775003,55.842351],[-2.777198,55.8443],[-2.78617,55.835865],[-2.793966,55.834903],[-2.794554,55.834364],[-2.802232,55.831572],[-2.807012,55.831732],[-2.812483,55.829736],[-2.81852,55.829858],[-2.824603,55.825374],[-2.827068,55.824553],[-2.828041,55.823788],[-2.831198,55.822908],[-2.832802,55.821006],[-2.835557,55.820345],[-2.837391,55.819537],[-2.840287,55.817653],[-2.843092,55.817863],[-2.84431,55.817356],[-2.846244,55.818961],[-2.847885,55.818532],[-2.85234,55.823671],[-2.85571,55.82526],[-2.859958,55.825343],[-2.863453,55.825869],[-2.868324,55.824265],[-2.87041,55.824096],[-2.875212,55.819032],[-2.875835,55.817008],[-2.874939,55.814557],[-2.877078,55.811551],[-2.878509,55.810242],[-2.883155,55.80754],[-2.886953,55.805834],[-2.89292,55.807932],[-2.89696,55.809808],[-2.898149,55.809453],[-2.901963,55.809156],[-2.902896,55.808785],[-2.904297,55.806933],[-2.906009,55.805761],[-2.912547,55.803574],[-2.915759,55.802867],[-2.91846,55.80166],[-2.923127,55.796564],[-2.923652,55.795178],[-2.923496,55.793579],[-2.926852,55.793843],[-2.927064,55.793175],[-2.934852,55.793256],[-2.941072,55.79456],[-2.941115,55.803089],[-2.939253,55.805238],[-2.940735,55.806174],[-2.943593,55.811611],[-2.948607,55.815865],[-2.949473,55.817225],[-2.948896,55.817875],[-2.9498,55.818782],[-2.951622,55.818952],[-2.952796,55.818045],[-2.959831,55.814395],[-2.965266,55.81265],[-2.967306,55.81146],[-2.968128,55.809924],[-2.967026,55.808556],[-2.967284,55.807967],[-2.969884,55.805917],[-2.973536,55.805929],[-2.976213,55.804673],[-2.977395,55.803652],[-2.976541,55.803093],[-2.977528,55.802006],[-2.98184,55.798946],[-2.990154,55.795428],[-3.001221,55.789834],[-3.013754,55.787282],[-3.01387,55.786968],[-3.01804,55.785278],[-3.021448,55.783336],[-3.025455,55.782602],[-3.037792,55.776517],[-3.040279,55.776147],[-3.042195,55.775075],[-3.043729,55.773404],[-3.050001,55.770714],[-3.054185,55.77039],[-3.055651,55.769214],[-3.057769,55.768855],[-3.060884,55.767332],[-3.061894,55.764919],[-3.060843,55.762884],[-3.065775,55.763758],[-3.06658,55.763158],[-3.07526,55.759767],[-3.075462,55.759015],[-3.077259,55.757997],[-3.077293,55.757242],[-3.079188,55.756021],[-3.080942,55.755512],[-3.083718,55.753322],[-3.085376,55.750796],[-3.089649,55.748902],[-3.095646,55.745178],[-3.099313,55.741039],[-3.101973,55.739331],[-3.103376,55.737126],[-3.102837,55.734111],[-3.103558,55.732851],[-3.103751,55.730972],[-3.102642,55.728893],[-3.10016,55.728111],[-3.096093,55.725051],[-3.091921,55.723588],[-3.09188,55.722133],[-3.097213,55.720078],[-3.102598,55.718591],[-3.107498,55.718205],[-3.110555,55.716556],[-3.120337,55.714908],[-3.126869,55.710409],[-3.128268,55.710347],[-3.134388,55.711459],[-3.138648,55.716195],[-3.137261,55.719951],[-3.139362,55.720502],[-3.145732,55.720303],[-3.144865,55.721124],[-3.145316,55.72241],[-3.147473,55.723751],[-3.150452,55.72463],[-3.151124,55.725545],[-3.151433,55.727393],[-3.15113,55.728182],[-3.145853,55.733951],[-3.14466,55.735899],[-3.143994,55.740052],[-3.146368,55.741458],[-3.148387,55.743201],[-3.149145,55.743274],[-3.151344,55.744655],[-3.154619,55.744962],[-3.156031,55.745851],[-3.158238,55.746397],[-3.159947,55.747364],[-3.161565,55.749551],[-3.162105,55.750821],[-3.161813,55.751732],[-3.162737,55.753331],[-3.162363,55.754678],[-3.161036,55.755059],[-3.160607,55.756026],[-3.157863,55.757872],[-3.157145,55.759306],[-3.155655,55.759701],[-3.153995,55.76106],[-3.156957,55.761904],[-3.159804,55.763579],[-3.169963,55.770627],[-3.174796,55.772046],[-3.174159,55.773606],[-3.170264,55.775676],[-3.167573,55.777947],[-3.168243,55.778603],[-3.167786,55.779519],[-3.181039,55.781341],[-3.18038,55.782131],[-3.178342,55.782656],[-3.178063,55.783592],[-3.17676,55.784385],[-3.18233,55.787432],[-3.185504,55.788244],[-3.185648,55.788792],[-3.183402,55.792505],[-3.184166,55.794352],[-3.186672,55.79546],[-3.18872,55.795798],[-3.185094,55.80174],[-3.190991,55.801502],[-3.195597,55.802123],[-3.20022,55.797097],[-3.211554,55.789697],[-3.213152,55.78742],[-3.214329,55.783984],[-3.217584,55.785147],[-3.220579,55.784533],[-3.223541,55.786551],[-3.22571,55.787025],[-3.227466,55.784895],[-3.229197,55.783566],[-3.230839,55.782841],[-3.231387,55.781907],[-3.234744,55.780305],[-3.235907,55.779123],[-3.245572,55.781268],[-3.250667,55.781697],[-3.25742,55.778305],[-3.263347,55.776638],[-3.264441,55.778362],[-3.265148,55.778433],[-3.274369,55.775347],[-3.292776,55.780562],[-3.289797,55.792817],[-3.294349,55.796302],[-3.294923,55.794947],[-3.298904,55.792626],[-3.302583,55.792632],[-3.305021,55.793848],[-3.303575,55.79554],[-3.303399,55.796896],[-3.305181,55.796906],[-3.307159,55.797663],[-3.309767,55.796531],[-3.310626,55.795347],[-3.312692,55.795572],[-3.313241,55.795049],[-3.316552,55.794666],[-3.318801,55.794696],[-3.320162,55.793889],[-3.325261,55.792748],[-3.327466,55.794219],[-3.330905,55.794592],[-3.333746,55.794153],[-3.334771,55.792774],[-3.336698,55.791378],[-3.339855,55.792067],[-3.342024,55.791897],[-3.34512,55.792973],[-3.347342,55.794595],[-3.345938,55.796571],[-3.345458,55.800714],[-3.348107,55.802845],[-3.348029,55.804374],[-3.348843,55.804847],[-3.349184,55.806585],[-3.350326,55.807721],[-3.349947,55.808954],[-3.3526,55.81021],[-3.354135,55.812152],[-3.355194,55.81276],[-3.358659,55.813068],[-3.360509,55.813708],[-3.360596,55.815513],[-3.36325,55.817708],[-3.36437,55.820081],[-3.369037,55.824109],[-3.372106,55.822646],[-3.373172,55.821641],[-3.378584,55.820318],[-3.379268,55.820485],[-3.386395,55.820059],[-3.391242,55.818791],[-3.394763,55.81974],[-3.399653,55.819006],[-3.41056,55.814096],[-3.415738,55.809463],[-3.41931,55.809642],[-3.425967,55.810589],[-3.426466,55.808962],[-3.428795,55.80743],[-3.435529,55.805496],[-3.436532,55.802824],[-3.439118,55.800691],[-3.440744,55.796997],[-3.444617,55.793456],[-3.443999,55.791846],[-3.442592,55.79046],[-3.440574,55.789365],[-3.438242,55.789262],[-3.438671,55.78835],[-3.438811,55.78567],[-3.439401,55.784594],[-3.441154,55.78478],[-3.445219,55.783888],[-3.447611,55.781946],[-3.448458,55.780053],[-3.452152,55.780553],[-3.459489,55.777415],[-3.463615,55.776481],[-3.464323,55.776024],[-3.469565,55.774447],[-3.471786,55.771399],[-3.471635,55.77097],[-3.470587,55.770687],[-3.469574,55.768345],[-3.46858,55.768191],[-3.466188,55.766894],[-3.464368,55.767441],[-3.462499,55.765851],[-3.459025,55.765658],[-3.457475,55.763843],[-3.456056,55.763618],[-3.457534,55.760945],[-3.455933,55.760524],[-3.456383,55.758479],[-3.457317,55.757673],[-3.45704,55.756431],[-3.454936,55.75589],[-3.453996,55.754288],[-3.454411,55.753443],[-3.453651,55.752737],[-3.454964,55.752057],[-3.453432,55.751325],[-3.453863,55.750295],[-3.453136,55.748727],[-3.452056,55.747756],[-3.449528,55.746379],[-3.446819,55.74593],[-3.444304,55.744253],[-3.444655,55.743417],[-3.447419,55.741283],[-3.447575,55.740349],[-3.445958,55.73881],[-3.444899,55.736657],[-3.443057,55.735735],[-3.440765,55.733376],[-3.437351,55.73313],[-3.435868,55.731787],[-3.436212,55.730474],[-3.437795,55.730395],[-3.439274,55.729591],[-3.438682,55.728365],[-3.436951,55.727673],[-3.437488,55.726217],[-3.439765,55.724973],[-3.439547,55.724064],[-3.430593,55.720132],[-3.428062,55.719312],[-3.425851,55.717941],[-3.42584,55.717406],[-3.421354,55.715023],[-3.419821,55.713392],[-3.420325,55.711077],[-3.419203,55.710562],[-3.409652,55.710224],[-3.406227,55.711967],[-3.401618,55.715201],[-3.398392,55.716532],[-3.396443,55.71629],[-3.396978,55.710656],[-3.401362,55.704649],[-3.401197,55.702225],[-3.405733,55.702701],[-3.40949,55.700826],[-3.409813,55.700156],[-3.415561,55.696626],[-3.419416,55.693297],[-3.426552,55.68814],[-3.431513,55.685786],[-3.441086,55.679911],[-3.447806,55.674669],[-3.45562,55.670745],[-3.455012,55.669834],[-3.455918,55.667085],[-3.455724,55.665676],[-3.456612,55.664383],[-3.458407,55.662982],[-3.468096,55.661592],[-3.473254,55.659717],[-3.478174,55.654965],[-3.479504,55.652769],[-3.482735,55.650225],[-3.485726,55.649038],[-3.484559,55.645206],[-3.48445,55.643249],[-3.489417,55.637809],[-3.489053,55.635002],[-3.487062,55.632716],[-3.484542,55.633346],[-3.48142,55.633555],[-3.479329,55.633347],[-3.477831,55.632677],[-3.478918,55.630134],[-3.480034,55.629725],[-3.47956,55.628157],[-3.480507,55.627564],[-3.481489,55.624644],[-3.484198,55.62026],[-3.481714,55.616428],[-3.495687,55.615882],[-3.508664,55.613752],[-3.515293,55.613186],[-3.519915,55.613773],[-3.524897,55.613729],[-3.526539,55.611696],[-3.530018,55.611397],[-3.530661,55.60771],[-3.531881,55.605342],[-3.529621,55.604371],[-3.526595,55.600104],[-3.527099,55.598637],[-3.52689,55.597014],[-3.516626,55.589983],[-3.516086,55.590231],[-3.51298,55.588783],[-3.512498,55.585467],[-3.510033,55.583948],[-3.508486,55.581051],[-3.508713,55.579103],[-3.508263,55.578318],[-3.508184,55.575857],[-3.505505,55.575907],[-3.503501,55.574917],[-3.502506,55.572741],[-3.500438,55.570937],[-3.500127,55.569225],[-3.488476,55.562668],[-3.489796,55.561915],[-3.495104,55.560165],[-3.495713,55.559281],[-3.495945,55.555745],[-3.496736,55.554906],[-3.500565,55.553673],[-3.501857,55.552839],[-3.502976,55.551015],[-3.503418,55.547442],[-3.50219,55.545491],[-3.501871,55.54366],[-3.498346,55.536204],[-3.498398,55.532986],[-3.495247,55.530113],[-3.494722,55.529014],[-3.494832,55.524196],[-3.49424,55.523817],[-3.491514,55.523572],[-3.488973,55.521949],[-3.486629,55.517965],[-3.486794,55.516678],[-3.488123,55.516217],[-3.495314,55.515819],[-3.500859,55.514403],[-3.502458,55.513544],[-3.5029,55.51268],[-3.504428,55.512468],[-3.508556,55.508382],[-3.508298,55.505991],[-3.511608,55.50271],[-3.511108,55.501651],[-3.511807,55.500048],[-3.511385,55.498948],[-3.512626,55.49767],[-3.511909,55.493832],[-3.512727,55.49309],[-3.515199,55.492111],[-3.516672,55.491945],[-3.522179,55.490263],[-3.521601,55.488415],[-3.523487,55.486234],[-3.519388,55.484371],[-3.519019,55.483225],[-3.515996,55.481353],[-3.517205,55.478836],[-3.518947,55.477861],[-3.51919,55.47634],[-3.518474,55.473778],[-3.519706,55.472505],[-3.522395,55.471047],[-3.522247,55.47029],[-3.524654,55.467685],[-3.525374,55.46379],[-3.524928,55.463108],[-3.526205,55.462391],[-3.531674,55.461262],[-3.53086,55.460472],[-3.529499,55.457371],[-3.530036,55.456538],[-3.530111,55.45482],[-3.535448,55.451945],[-3.535798,55.449564],[-3.53725,55.447474],[-3.536601,55.446422],[-3.537927,55.444154],[-3.539565,55.443172],[-3.539792,55.440693],[-3.539034,55.437458],[-3.537626,55.436407],[-3.536588,55.434712],[-3.533496,55.433835],[-3.531914,55.434007],[-3.525194,55.4329],[-3.525084,55.430669],[-3.523669,55.428817],[-3.523263,55.427092],[-3.520098,55.426556],[-3.516922,55.423275],[-3.517269,55.421186],[-3.515905,55.420435],[-3.513417,55.420879],[-3.51282,55.419911],[-3.509767,55.417554],[-3.510408,55.414473],[-3.508811,55.412992],[-3.507378,55.412264],[-3.50477,55.41057],[-3.503455,55.408807],[-3.498982,55.407883],[-3.497411,55.408949],[-3.493628,55.40935],[-3.490577,55.410331],[-3.49007,55.408423],[-3.490277,55.406767],[-3.489308,55.404518],[-3.488669,55.404135],[-3.486091,55.404652],[-3.485253,55.405475],[-3.483694,55.406007],[-3.480467,55.406315],[-3.478418,55.407675],[-3.476862,55.406835],[-3.475462,55.406758],[-3.473584,55.403851],[-3.472128,55.403756],[-3.470315,55.404276],[-3.469476,55.405711],[-3.466579,55.404887],[-3.465056,55.404924],[-3.463253,55.405705],[-3.458295,55.406811],[-3.454436,55.40838],[-3.452447,55.408633],[-3.449185,55.409907],[-3.445416,55.409637],[-3.440356,55.408843],[-3.43605,55.409864],[-3.429857,55.410705],[-3.427847,55.414116],[-3.42049,55.415995],[-3.418751,55.415516],[-3.415515,55.413581],[-3.411695,55.413234],[-3.407523,55.413413],[-3.405378,55.412818],[-3.4029,55.409085],[-3.401402,55.408055],[-3.400517,55.409598],[-3.39457,55.410722],[-3.389414,55.41256],[-3.386161,55.412587],[-3.377686,55.411425],[-3.365788,55.416366],[-3.362326,55.416994],[-3.361209,55.415051],[-3.357863,55.412361],[-3.354322,55.412517],[-3.353375,55.415305],[-3.351824,55.416396],[-3.35206,55.418213],[-3.350673,55.419473],[-3.350898,55.421439],[-3.347286,55.424637],[-3.341465,55.424193],[-3.338774,55.425],[-3.338926,55.430637],[-3.334511,55.433278],[-3.334722,55.4351],[-3.333521,55.435805],[-3.330943,55.43879],[-3.331546,55.439574],[-3.331627,55.441056],[-3.329181,55.441869],[-3.325846,55.441644],[-3.315948,55.444654],[-3.312907,55.44496],[-3.310982,55.444828],[-3.308863,55.443382],[-3.308135,55.44192],[-3.309019,55.43926],[-3.306993,55.438235],[-3.305157,55.436237],[-3.306034,55.435284],[-3.302421,55.434747],[-3.299672,55.433339],[-3.293445,55.430915],[-3.288788,55.43229],[-3.287098,55.433759],[-3.285664,55.434381],[-3.279607,55.435253],[-3.269597,55.433349],[-3.26735,55.433516],[-3.264864,55.432863],[-3.262099,55.431387],[-3.257931,55.430032],[-3.254507,55.430207],[-3.250015,55.429561],[-3.247965,55.429725],[-3.24543,55.4295],[-3.244229,55.428986],[-3.243587,55.427685],[-3.244194,55.426619],[-3.253714,55.421642],[-3.255634,55.419915],[-3.256413,55.417553],[-3.260583,55.416813],[-3.262252,55.416135],[-3.264153,55.413339],[-3.265786,55.412522],[-3.267622,55.412166],[-3.271185,55.412183],[-3.274328,55.410457],[-3.275916,55.409991],[-3.278631,55.410174],[-3.281985,55.408157],[-3.282187,55.406353],[-3.284566,55.404711],[-3.286007,55.403136],[-3.287308,55.403783],[-3.288495,55.403155],[-3.291016,55.402486],[-3.293664,55.400881],[-3.293929,55.400038],[-3.29618,55.39743],[-3.298922,55.396534],[-3.301216,55.395229],[-3.302763,55.39377],[-3.303049,55.392159],[-3.30515,55.389063],[-3.30641,55.38852],[-3.30847,55.38276],[-3.310043,55.381642],[-3.311673,55.379634],[-3.3109,55.377971],[-3.306106,55.372928],[-3.303834,55.368888],[-3.30455,55.368173],[-3.306318,55.367611],[-3.308871,55.368046],[-3.310811,55.367404],[-3.314154,55.367483],[-3.315484,55.366596],[-3.316073,55.362625],[-3.3131,55.361582],[-3.312185,55.360487],[-3.312275,55.358784],[-3.313719,55.356047],[-3.313344,55.354899],[-3.315933,55.35225],[-3.319377,55.35109],[-3.32026,55.349352],[-3.318446,55.348234],[-3.316568,55.348157],[-3.313724,55.347121],[-3.312737,55.347079],[-3.303664,55.342363],[-3.296858,55.342408],[-3.291508,55.342312],[-3.289862,55.343236],[-3.288565,55.343417],[-3.286729,55.344301],[-3.285668,55.345447],[-3.284265,55.346136],[-3.281131,55.349632],[-3.27843,55.350032],[-3.276696,55.351284],[-3.275467,55.351331],[-3.272388,55.352951],[-3.268583,55.354033],[-3.26687,55.355295],[-3.264261,55.356477],[-3.267318,55.358438],[-3.266933,55.359913],[-3.26552,55.361475],[-3.262621,55.362336],[-3.25698,55.362546],[-3.253254,55.3632],[-3.250249,55.364471],[-3.249864,55.365504],[-3.247065,55.36755],[-3.244378,55.367398],[-3.241703,55.366868],[-3.237913,55.36727],[-3.237283,55.366544],[-3.234889,55.366447],[-3.233961,55.367809],[-3.233825,55.369243],[-3.231519,55.37097],[-3.22483,55.372537],[-3.225463,55.3752],[-3.22339,55.376232],[-3.21739,55.376134],[-3.216202,55.375243],[-3.215311,55.373437],[-3.213532,55.37256],[-3.21228,55.37264],[-3.210226,55.370746],[-3.208098,55.370035],[-3.205859,55.368786],[-3.206127,55.367237],[-3.204481,55.366265],[-3.201285,55.365717],[-3.196647,55.366769],[-3.193835,55.366149],[-3.191941,55.36429],[-3.190393,55.363698],[-3.189151,55.362529],[-3.187707,55.362767],[-3.179254,55.360468],[-3.18126,55.359509],[-3.181906,55.356556],[-3.179561,55.352746],[-3.17776,55.350521],[-3.17625,55.349601],[-3.176082,55.348717],[-3.174503,55.346792],[-3.169504,55.347051],[-3.168053,55.34812],[-3.163699,55.350224],[-3.157095,55.350911],[-3.151745,55.354862],[-3.149672,55.355425],[-3.144536,55.355932],[-3.139393,55.357251],[-3.13515,55.357798],[-3.133627,55.359147],[-3.13137,55.359092],[-3.127239,55.359741],[-3.125254,55.358995],[-3.125108,55.35773],[-3.117238,55.355798],[-3.114633,55.35685],[-3.112692,55.356914],[-3.112022,55.356277],[-3.11363,55.354559],[-3.112634,55.351661],[-3.110818,55.348771],[-3.109344,55.347935],[-3.106984,55.349529],[-3.104761,55.350138],[-3.102026,55.351587],[-3.101265,55.348889],[-3.100158,55.347658],[-3.098323,55.343721],[-3.098409,55.342584],[-3.100976,55.341046],[-3.099688,55.339211],[-3.099085,55.331682],[-3.08627,55.327941],[-3.085586,55.32052],[-3.081763,55.315553],[-3.077487,55.31503],[-3.069513,55.316744],[-3.069087,55.313526],[-3.067797,55.311844],[-3.064254,55.309844],[-3.061302,55.306989],[-3.063319,55.305211],[-3.061165,55.304492],[-3.054755,55.300378],[-3.051526,55.297104],[-3.046641,55.295515],[-3.051874,55.2921],[-3.053854,55.289166],[-3.05456,55.287178],[-3.052902,55.284114],[-3.054546,55.281666],[-3.054655,55.280725],[-3.05356,55.279724],[-3.046296,55.275764],[-3.042956,55.271532],[-3.032644,55.275214],[-3.027647,55.277843],[-3.019934,55.279142],[-3.013211,55.27571],[-3.011828,55.272637],[-3.01129,55.2688],[-3.01017,55.267434],[-3.009256,55.267078],[-3.006344,55.267084],[-3.00213,55.268453],[-2.998619,55.269035],[-2.995929,55.269088],[-2.993826,55.26995],[-2.990938,55.276268],[-2.988964,55.278014],[-2.98387,55.279457],[-2.980922,55.281516],[-2.978838,55.28191],[-2.976819,55.281783],[-2.968867,55.284313],[-2.967569,55.284406],[-2.967764,55.286864],[-2.964575,55.289752],[-2.962084,55.290266],[-2.960143,55.288966],[-2.957665,55.288802],[-2.954515,55.289036],[-2.951179,55.288289],[-2.949688,55.287302],[-2.945732,55.287662],[-2.943482,55.286883],[-2.942246,55.287398],[-2.941203,55.286297],[-2.938333,55.284926],[-2.935565,55.284193],[-2.93219,55.283947],[-2.930124,55.282098],[-2.926638,55.280781],[-2.924348,55.279473],[-2.921964,55.279382],[-2.917059,55.277412],[-2.91611,55.278218],[-2.916468,55.280458],[-2.91251,55.283583],[-2.911488,55.283654],[-2.906933,55.285516],[-2.903971,55.285403],[-2.898488,55.283503],[-2.896467,55.281838],[-2.893054,55.279894],[-2.893988,55.278023],[-2.89134,55.273999],[-2.887698,55.272327],[-2.885839,55.270853],[-2.887783,55.268035],[-2.884327,55.265149],[-2.885397,55.263349],[-2.884926,55.262691],[-2.89115,55.262723],[-2.894009,55.261466],[-2.899792,55.259712],[-2.905013,55.257184],[-2.907224,55.254801],[-2.908458,55.254413],[-2.908354,55.252927],[-2.911434,55.249345],[-2.913381,55.248863],[-2.915119,55.245755],[-2.915348,55.244113],[-2.920494,55.239105],[-2.921445,55.236722],[-2.920081,55.236224],[-2.917733,55.234637],[-2.915158,55.234454],[-2.912011,55.234725],[-2.908454,55.234549],[-2.905361,55.235803],[-2.897157,55.236008],[-2.894684,55.235482],[-2.891715,55.233505],[-2.887643,55.233907],[-2.884483,55.234618],[-2.881623,55.234346],[-2.877659,55.236078],[-2.873988,55.236841],[-2.871902,55.236699],[-2.869169,55.237226],[-2.863843,55.236352],[-2.86394,55.231772],[-2.864281,55.230476],[-2.865377,55.229543],[-2.865746,55.227339],[-2.861917,55.223286],[-2.866992,55.21957],[-2.888187,55.207866],[-2.887394,55.207149],[-2.885988,55.20258],[-2.889703,55.197607],[-2.896572,55.193575],[-2.895748,55.193271],[-2.895239,55.189474],[-2.901525,55.18094],[-2.902552,55.179154],[-2.903292,55.176079],[-2.904752,55.173669],[-2.899546,55.169763],[-2.900328,55.162663],[-2.900004,55.157705],[-2.900412,55.155262],[-2.899787,55.151901],[-2.896916,55.146683],[-2.895452,55.146123],[-2.892752,55.145734],[-2.890284,55.145838],[-2.891612,55.144561],[-2.890304,55.141093],[-2.881228,55.14217],[-2.879754,55.141848],[-2.875848,55.141836],[-2.873701,55.140881],[-2.872428,55.138235],[-2.870361,55.136973],[-2.867241,55.136708],[-2.865117,55.135326],[-2.861484,55.12867],[-2.861361,55.126595],[-2.860694,55.125459],[-2.861107,55.123914],[-2.860177,55.122241],[-2.86073,55.11788],[-2.860203,55.116438],[-2.86089,55.115077],[-2.85939,55.114107],[-2.857351,55.109535],[-2.858541,55.108349],[-2.852095,55.108487],[-2.850116,55.111052],[-2.848111,55.111583],[-2.8452,55.111491],[-2.844682,55.112414],[-2.846125,55.11326],[-2.846464,55.114357],[-2.843667,55.116731],[-2.841115,55.118058],[-2.83902,55.116863],[-2.837883,55.117613],[-2.8383,55.11842],[-2.842186,55.121052],[-2.84125,55.122498],[-2.840239,55.122519],[-2.835531,55.121336],[-2.83262,55.12147],[-2.827608,55.124837],[-2.826738,55.12696],[-2.829547,55.128653],[-2.832528,55.13111],[-2.833056,55.13245],[-2.832468,55.133143],[-2.82728,55.136188],[-2.825948,55.137298],[-2.825503,55.138314],[-2.823298,55.137913],[-2.819317,55.138449],[-2.818103,55.137391],[-2.815811,55.137817],[-2.813664,55.136984],[-2.812776,55.136166],[-2.809588,55.137108],[-2.807396,55.136983],[-2.804333,55.13752],[-2.80191,55.138862],[-2.799908,55.138387],[-2.796842,55.138866],[-2.794858,55.13969],[-2.793396,55.139606],[-2.792696,55.140294],[-2.790714,55.139867],[-2.79067,55.141147],[-2.789695,55.141716],[-2.784875,55.141775],[-2.784207,55.143481],[-2.781979,55.145698],[-2.780007,55.146202],[-2.779169,55.146884],[-2.774985,55.148122],[-2.774918,55.14929],[-2.770058,55.149931],[-2.769372,55.150632],[-2.766569,55.151587],[-2.765687,55.152564],[-2.761183,55.153469],[-2.760272,55.154801],[-2.757467,55.154854],[-2.754029,55.155804],[-2.754264,55.156512],[-2.752298,55.156722],[-2.750686,55.157302],[-2.748695,55.157398],[-2.748604,55.158215],[-2.746306,55.158219],[-2.745247,55.160233],[-2.743919,55.159726],[-2.742919,55.161049],[-2.740655,55.161381],[-2.741417,55.162151],[-2.739772,55.162738],[-2.737761,55.162747],[-2.734982,55.164556],[-2.73503,55.165626],[-2.734022,55.165823],[-2.733005,55.167083],[-2.729438,55.168298],[-2.72467,55.16869],[-2.722641,55.169427],[-2.720891,55.169631],[-2.719942,55.170418],[-2.714512,55.171688],[-2.713818,55.172119],[-2.711873,55.171842],[-2.706978,55.172407],[-2.705654,55.172263],[-2.703405,55.173211],[-2.702775,55.174424],[-2.701004,55.175361],[-2.699723,55.176952],[-2.699818,55.177928],[-2.696556,55.181222],[-2.696296,55.1823],[-2.693816,55.184467],[-2.692646,55.186377],[-2.689961,55.188315],[-2.68979,55.188984],[-2.687394,55.189649],[-2.686149,55.19079],[-2.6856,55.192554],[-2.684765,55.192879],[-2.686245,55.194046],[-2.685108,55.195556],[-2.682319,55.196813],[-2.68125,55.198602],[-2.682674,55.199727],[-2.683332,55.20189],[-2.668842,55.219682],[-2.666815,55.22158],[-2.659991,55.219884],[-2.64807,55.219867],[-2.643211,55.221061],[-2.641294,55.22114],[-2.638967,55.222682],[-2.631414,55.223698],[-2.634657,55.225465],[-2.635806,55.229766],[-2.634909,55.230413],[-2.633246,55.23434],[-2.633552,55.235569],[-2.632211,55.236644],[-2.631526,55.238584],[-2.632974,55.239857],[-2.631418,55.240031],[-2.631304,55.241927],[-2.630063,55.244109],[-2.630229,55.244791],[-2.626141,55.245667],[-2.624232,55.246387],[-2.622154,55.246166],[-2.620201,55.247215],[-2.61784,55.247202],[-2.614836,55.24563],[-2.611451,55.247134],[-2.612013,55.247687],[-2.615344,55.248264],[-2.617622,55.248309],[-2.620624,55.249116],[-2.624089,55.249495],[-2.629497,55.251317],[-2.632386,55.253363],[-2.638119,55.255906],[-2.640417,55.256463],[-2.64435,55.258218],[-2.646771,55.260044],[-2.645408,55.260071],[-2.640973,55.260986],[-2.635386,55.261142],[-2.626656,55.262221],[-2.62684,55.263316],[-2.626307,55.264542],[-2.628191,55.267933],[-2.623281,55.269761],[-2.623333,55.271964],[-2.622137,55.273087],[-2.620292,55.273763],[-2.618421,55.274989],[-2.617023,55.277126],[-2.613709,55.278347],[-2.613377,55.279255],[-2.611013,55.280926],[-2.609238,55.283248],[-2.605196,55.285374],[-2.602479,55.285571],[-2.598492,55.287109],[-2.594199,55.289851],[-2.590291,55.291406],[-2.582987,55.293492],[-2.578647,55.294412],[-2.57578,55.29609],[-2.573361,55.296886],[-2.573705,55.300786],[-2.570753,55.301408],[-2.566347,55.30332],[-2.565213,55.305935],[-2.563304,55.307631],[-2.560095,55.30875],[-2.559666,55.309846],[-2.557095,55.311713],[-2.557271,55.313293],[-2.559181,55.315138],[-2.559427,55.317227],[-2.559041,55.317835],[-2.550425,55.315786],[-2.548728,55.317245],[-2.5443,55.318263],[-2.543105,55.319592],[-2.536554,55.320953],[-2.530769,55.322709],[-2.525109,55.321809],[-2.52027,55.323047],[-2.517699,55.324665],[-2.516322,55.326831],[-2.513712,55.329625],[-2.509259,55.331647],[-2.506886,55.333955],[-2.504356,55.335345],[-2.501988,55.3372],[-2.502254,55.34022],[-2.498809,55.342102],[-2.496177,55.346515],[-2.495021,55.347491],[-2.488519,55.351834],[-2.481366,55.353668],[-2.475186,55.354768],[-2.473439,55.354735],[-2.471316,55.353788],[-2.467538,55.352757],[-2.463314,55.353624],[-2.461224,55.353209],[-2.457054,55.35461],[-2.45668,55.355281],[-2.45179,55.35648],[-2.444406,55.359183],[-2.440355,55.359139],[-2.439297,55.359453],[-2.436904,55.358305],[-2.429231,55.356435],[-2.426367,55.358138],[-2.42435,55.358592],[-2.421876,55.358617],[-2.419883,55.359034],[-2.414997,55.358922],[-2.412367,55.357771],[-2.411288,55.358066],[-2.408667,55.35743],[-2.402184,55.354406],[-2.400856,55.353487],[-2.39957,55.35075],[-2.400062,55.348695],[-2.399522,55.348274],[-2.392979,55.347447],[-2.39027,55.34793],[-2.38479,55.348303],[-2.381129,55.349141],[-2.378912,55.349169],[-2.378961,55.350533],[-2.37496,55.353784],[-2.372798,55.355069],[-2.369887,55.355705],[-2.365456,55.357621],[-2.364199,55.358761],[-2.361542,55.359102],[-2.35839,55.359987],[-2.354944,55.362537],[-2.351369,55.363195],[-2.347149,55.364611],[-2.345048,55.364561],[-2.34209,55.365222],[-2.340102,55.36609],[-2.338458,55.367807],[-2.338973,55.368828],[-2.343329,55.370721],[-2.346233,55.373061],[-2.337241,55.376733],[-2.336476,55.377901],[-2.332301,55.380038],[-2.330578,55.380464],[-2.330021,55.381242],[-2.332541,55.381955],[-2.334742,55.383155],[-2.334863,55.385569],[-2.335831,55.386159],[-2.33494,55.390011],[-2.335513,55.392565],[-2.343371,55.397415],[-2.34473,55.399446],[-2.343192,55.400345],[-2.341898,55.400407],[-2.340304,55.401243],[-2.337667,55.401192],[-2.336438,55.401887],[-2.333531,55.402425],[-2.332999,55.404322],[-2.335629,55.408208],[-2.333823,55.408761],[-2.332367,55.409911],[-2.330724,55.409677],[-2.329102,55.408521],[-2.32735,55.407965],[-2.322848,55.40761],[-2.320695,55.408196],[-2.319695,55.407562],[-2.315957,55.407327],[-2.313254,55.406789],[-2.312545,55.409855],[-2.31019,55.410167],[-2.306687,55.411248],[-2.304252,55.412725],[-2.301786,55.413661],[-2.30095,55.413613],[-2.295935,55.414922],[-2.293804,55.418519],[-2.294514,55.420465],[-2.28385,55.422887],[-2.281773,55.424909],[-2.277966,55.426397],[-2.273893,55.425981],[-2.271738,55.428786],[-2.270647,55.429593],[-2.268295,55.430002],[-2.264473,55.428771],[-2.262243,55.428558],[-2.260611,55.432934],[-2.258592,55.432185],[-2.256716,55.432258],[-2.253762,55.431897],[-2.242544,55.432146],[-2.236635,55.430962],[-2.233813,55.429239],[-2.231282,55.428429],[-2.229956,55.430577],[-2.228201,55.430351],[-2.223352,55.431333],[-2.223082,55.432235],[-2.221136,55.433142],[-2.205624,55.437539],[-2.203793,55.43857],[-2.201742,55.440685],[-2.198346,55.442132],[-2.19422,55.445258],[-2.1933,55.447214],[-2.193529,55.449799],[-2.192265,55.452551],[-2.190035,55.454308],[-2.188426,55.456439],[-2.189638,55.461166],[-2.184414,55.464085],[-2.166536,55.467468],[-2.165521,55.468382],[-2.168495,55.469062],[-2.173724,55.472271],[-2.189471,55.473961],[-2.195492,55.475321],[-2.200954,55.475016],[-2.201592,55.475516],[-2.203373,55.478604],[-2.205375,55.480175],[-2.206355,55.48156],[-2.206063,55.482888],[-2.202233,55.488243],[-2.202649,55.489541],[-2.205295,55.491493],[-2.207032,55.494071],[-2.208804,55.494677],[-2.208761,55.495727],[-2.211941,55.499424],[-2.216921,55.502816],[-2.219453,55.505733],[-2.220582,55.506315],[-2.226541,55.507098],[-2.227995,55.508005],[-2.228846,55.509519],[-2.226628,55.519514],[-2.224284,55.522788],[-2.227603,55.528408],[-2.233217,55.529613],[-2.233824,55.540828],[-2.232963,55.541779],[-2.233223,55.543145],[-2.232249,55.54483],[-2.234093,55.546559],[-2.235173,55.548335],[-2.240769,55.552684],[-2.240307,55.555627],[-2.244052,55.556817],[-2.247854,55.556731],[-2.253076,55.561391],[-2.257505,55.562567],[-2.259867,55.563693],[-2.259805,55.565058],[-2.264619,55.566919],[-2.270055,55.570109],[-2.276479,55.575689],[-2.280148,55.57732],[-2.285432,55.57772],[-2.288536,55.58005],[-2.292392,55.585799],[-2.290374,55.589609],[-2.288114,55.591538],[-2.287848,55.592865],[-2.288607,55.594942],[-2.285936,55.596544],[-2.288136,55.598144],[-2.288955,55.598363],[-2.287752,55.601048],[-2.290321,55.602838],[-2.289232,55.603774],[-2.292269,55.604622],[-2.293885,55.604555],[-2.295504,55.608334],[-2.295135,55.608622],[-2.30595,55.612084],[-2.307286,55.611104],[-2.316094,55.620458],[-2.308935,55.622479],[-2.308626,55.628876],[-2.31084,55.628913],[-2.314999,55.627884],[-2.315895,55.62825],[-2.319816,55.627722],[-2.321615,55.6262],[-2.324311,55.626166],[-2.32815,55.627409],[-2.329805,55.629145],[-2.332162,55.629764],[-2.335247,55.632021],[-2.335047,55.634491],[-2.327767,55.636042],[-2.326252,55.637021],[-2.325595,55.638327],[-2.326027,55.639866],[-2.325583,55.642131],[-2.324702,55.643167],[-2.322589,55.643558],[-2.319369,55.643147],[-2.316035,55.643238],[-2.314773,55.643585],[-2.313151,55.644764],[-2.310338,55.646062],[-2.30579,55.647044],[-2.29895,55.647126],[-2.29287,55.645304],[-2.28918,55.643381],[-2.282973,55.642922],[-2.273091,55.642699],[-2.25981,55.644574],[-2.256018,55.644526],[-2.251449,55.643218],[-2.252335,55.642641],[-2.249768,55.641564],[-2.248625,55.639981],[-2.245726,55.639519],[-2.242791,55.639692],[-2.24242,55.640049],[-2.237194,55.640274],[-2.2348,55.640812],[-2.232557,55.642521],[-2.231588,55.643834],[-2.231918,55.645145],[-2.235378,55.646405],[-2.240224,55.646969],[-2.242494,55.647685],[-2.247829,55.650592],[-2.248174,55.652353],[-2.246424,55.653014],[-2.244445,55.653263],[-2.237004,55.656308],[-2.233921,55.65813],[-2.232145,55.661021],[-2.229978,55.662439],[-2.226924,55.663124],[-2.220896,55.663472],[-2.218453,55.66426],[-2.217526,55.665292],[-2.217041,55.666871],[-2.217966,55.669643],[-2.219572,55.672229],[-2.219725,55.673742],[-2.218659,55.675907],[-2.209198,55.680858],[-2.207606,55.684396],[-2.204105,55.686763],[-2.198925,55.687679],[-2.197805,55.688327],[-2.195313,55.69091],[-2.192171,55.695573],[-2.191196,55.696318],[-2.189815,55.695973],[-2.188236,55.696705],[-2.186752,55.698439],[-2.186408,55.699807],[-2.184055,55.701593],[-2.180598,55.703274],[-2.170578,55.704912],[-2.167231,55.706035],[-2.166565,55.706944],[-2.166999,55.707826],[-2.1725,55.710803],[-2.175747,55.714373],[-2.177054,55.71652],[-2.176997,55.718375],[-2.173537,55.720698],[-2.168856,55.722241],[-2.161582,55.722898],[-2.158813,55.722838],[-2.156141,55.722218],[-2.153576,55.722196],[-2.151752,55.722506],[-2.14915,55.724588],[-2.14775,55.727197],[-2.148067,55.729505],[-2.149858,55.733236],[-2.149884,55.73482],[-2.148745,55.736487],[-2.146052,55.738442],[-2.143265,55.739585],[-2.138383,55.740474],[-2.13655,55.740384],[-2.135556,55.740759],[-2.127659,55.739459],[-2.126525,55.739526],[-2.121271,55.738021],[-2.119197,55.738428],[-2.117722,55.739269],[-2.118332,55.741188],[-2.119167,55.742609],[-2.118085,55.745966],[-2.115163,55.748492],[-2.113324,55.748755],[-2.108662,55.748185],[-2.106944,55.748774],[-2.106913,55.751584],[-2.110036,55.755189],[-2.110319,55.758133],[-2.107793,55.760406],[-2.103272,55.76227],[-2.099904,55.762894],[-2.094754,55.763379],[-2.085745,55.762745],[-2.086133,55.765331],[-2.085512,55.765972],[-2.085726,55.768059],[-2.087394,55.770801],[-2.087512,55.772179],[-2.086557,55.774955],[-2.086824,55.778099],[-2.085852,55.782573],[-2.086268,55.784085],[-2.088242,55.785589],[-2.088552,55.786766],[-2.088281,55.790213],[-2.086123,55.793045],[-2.084571,55.792876],[-2.081972,55.793887],[-2.079312,55.793707],[-2.076974,55.794117],[-2.072529,55.797075],[-2.067097,55.798514],[-2.067154,55.800247],[-2.064951,55.801836],[-2.062242,55.802733],[-2.060042,55.802577],[-2.055938,55.802924],[-2.052637,55.802511],[-2.045613,55.805322],[-2.041855,55.807282],[-2.041734,55.80781],[-2.034416,55.811115]]]]},"properties":{"LAD22CD":"S12000026","LAD22NM":"Scottish Borders","BNG_E":345889,"BNG_N":626137,"LONG":-2.85869,"LAT":55.52595,"GlobalID":"659b472e-5fef-4ba1-bdbc-b8ec76ccff4b"},"id":334}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.606921,59.553236],[-1.608182,59.553541],[-1.611243,59.552692],[-1.61265,59.551138],[-1.616933,59.550917],[-1.618072,59.550288],[-1.620091,59.550909],[-1.620639,59.551651],[-1.623503,59.551798],[-1.62545,59.55096],[-1.627867,59.551533],[-1.629462,59.5512],[-1.632304,59.551805],[-1.63617,59.551673],[-1.63818,59.552307],[-1.639907,59.552109],[-1.640065,59.551392],[-1.638547,59.550296],[-1.639778,59.549312],[-1.638797,59.548416],[-1.63903,59.546436],[-1.636217,59.544875],[-1.63816,59.542613],[-1.640826,59.543891],[-1.642575,59.544021],[-1.644737,59.54282],[-1.643149,59.541603],[-1.645474,59.540846],[-1.645962,59.539765],[-1.643547,59.538205],[-1.645506,59.536944],[-1.644859,59.53617],[-1.64558,59.53492],[-1.643223,59.533764],[-1.645055,59.533598],[-1.647887,59.53171],[-1.649846,59.531829],[-1.650068,59.530909],[-1.647997,59.53015],[-1.648988,59.529312],[-1.645984,59.527019],[-1.643843,59.526059],[-1.64509,59.524684],[-1.647842,59.525387],[-1.649275,59.524706],[-1.64963,59.523053],[-1.648195,59.522374],[-1.648888,59.521495],[-1.65072,59.521031],[-1.651798,59.521865],[-1.653986,59.522021],[-1.655819,59.523421],[-1.658154,59.522633],[-1.657435,59.520798],[-1.655949,59.518788],[-1.655254,59.516906],[-1.652385,59.516324],[-1.651916,59.515034],[-1.65422,59.514416],[-1.654716,59.513229],[-1.650602,59.512953],[-1.649904,59.511682],[-1.647995,59.512385],[-1.647145,59.514269],[-1.644735,59.515031],[-1.642183,59.514596],[-1.642486,59.514034],[-1.640334,59.513033],[-1.640702,59.512126],[-1.638847,59.511634],[-1.637641,59.512209],[-1.634739,59.512256],[-1.633542,59.514309],[-1.631818,59.513909],[-1.627304,59.515167],[-1.627641,59.517499],[-1.627199,59.518274],[-1.624663,59.519915],[-1.626239,59.521167],[-1.628495,59.52173],[-1.626526,59.522434],[-1.62659,59.523032],[-1.628493,59.52354],[-1.627111,59.524505],[-1.627753,59.525086],[-1.624827,59.526729],[-1.623389,59.525593],[-1.62229,59.525987],[-1.618441,59.524419],[-1.617321,59.525142],[-1.614821,59.525753],[-1.613997,59.524587],[-1.611172,59.522749],[-1.608834,59.52324],[-1.610981,59.525956],[-1.613247,59.525435],[-1.613823,59.526353],[-1.611162,59.527522],[-1.610425,59.528588],[-1.608763,59.528588],[-1.610161,59.530715],[-1.613571,59.531246],[-1.616,59.532641],[-1.612893,59.534642],[-1.61062,59.534346],[-1.608819,59.535969],[-1.607875,59.535818],[-1.606483,59.536914],[-1.604458,59.536926],[-1.602846,59.534932],[-1.60315,59.533855],[-1.602136,59.532905],[-1.600551,59.532393],[-1.598965,59.533483],[-1.599674,59.534015],[-1.600223,59.536998],[-1.599441,59.53802],[-1.597663,59.538845],[-1.598868,59.54086],[-1.600959,59.540507],[-1.602517,59.539636],[-1.602689,59.538519],[-1.603761,59.537566],[-1.605098,59.537435],[-1.606718,59.538019],[-1.605357,59.538725],[-1.604379,59.539934],[-1.605239,59.540484],[-1.607637,59.540263],[-1.610067,59.539655],[-1.612939,59.54053],[-1.611735,59.542196],[-1.611483,59.54339],[-1.60875,59.545007],[-1.610366,59.545905],[-1.60919,59.547442],[-1.606211,59.547348],[-1.604828,59.547617],[-1.603035,59.5497],[-1.605625,59.549824],[-1.606706,59.550393],[-1.608241,59.552234],[-1.606921,59.553236]]],[[[-1.315476,59.851605],[-1.319112,59.850138],[-1.319208,59.848693],[-1.315272,59.849848],[-1.315476,59.851605]]],[[[-1.321313,59.870744],[-1.324151,59.87145],[-1.324913,59.869963],[-1.322727,59.869688],[-1.321313,59.870744]]],[[[-1.329357,59.871894],[-1.3315,59.872327],[-1.331995,59.87078],[-1.334488,59.870249],[-1.335438,59.868737],[-1.333997,59.867853],[-1.330043,59.86796],[-1.330701,59.869427],[-1.328919,59.869634],[-1.328188,59.870846],[-1.329357,59.871894]]],[[[-1.357591,59.954938],[-1.359459,59.95484],[-1.359193,59.95354],[-1.360775,59.951833],[-1.362222,59.951045],[-1.361478,59.950179],[-1.359639,59.950866],[-1.356804,59.949339],[-1.354177,59.949116],[-1.352347,59.949771],[-1.352267,59.952468],[-1.356084,59.952766],[-1.357591,59.954938]]],[[[-1.341988,59.965766],[-1.342646,59.964203],[-1.340597,59.964588],[-1.341988,59.965766]]],[[[-1.356019,59.967784],[-1.360285,59.968456],[-1.360619,59.966922],[-1.357838,59.96672],[-1.356019,59.967784]]],[[[-1.363037,59.972214],[-1.361739,59.972984],[-1.362547,59.973547],[-1.365464,59.973491],[-1.365126,59.972434],[-1.363037,59.972214]]],[[[-1.341849,59.989516],[-1.34209,59.990086],[-1.344734,59.989988],[-1.345233,59.989241],[-1.342626,59.988761],[-1.341849,59.989516]]],[[[-1.158792,59.99778],[-1.160485,59.997697],[-1.159972,59.996688],[-1.157174,59.996742],[-1.158792,59.99778]]],[[[-1.188533,60.00828],[-1.190858,60.008328],[-1.192433,60.007558],[-1.191698,60.004972],[-1.193268,60.004955],[-1.193078,60.002794],[-1.190898,60.001753],[-1.186807,60.001898],[-1.184993,60.00239],[-1.183021,60.001619],[-1.185525,60.000045],[-1.184574,59.998252],[-1.181104,59.996857],[-1.182807,59.995408],[-1.181488,59.994372],[-1.182522,59.993534],[-1.181523,59.992412],[-1.176432,59.991166],[-1.17463,59.989763],[-1.172436,59.989834],[-1.170694,59.990644],[-1.169789,59.991592],[-1.167271,59.991598],[-1.166351,59.993626],[-1.168371,59.993473],[-1.170716,59.994336],[-1.170289,59.995609],[-1.168067,59.995963],[-1.167835,59.995194],[-1.164744,59.994406],[-1.162539,59.992655],[-1.160835,59.99282],[-1.15896,59.994549],[-1.159909,59.99636],[-1.162479,59.996448],[-1.166426,59.995993],[-1.166235,59.99715],[-1.162834,59.996594],[-1.163916,59.998128],[-1.166213,59.999116],[-1.168916,60.001188],[-1.170745,60.002104],[-1.172013,60.003378],[-1.175464,60.003062],[-1.17853,60.003055],[-1.177151,60.004442],[-1.181295,60.005465],[-1.181443,60.006718],[-1.185105,60.00775],[-1.188533,60.00828]]],[[[-1.367173,60.023901],[-1.368926,60.024614],[-1.370444,60.024518],[-1.369652,60.020411],[-1.370634,60.019715],[-1.36817,60.01867],[-1.366425,60.01912],[-1.36595,60.02077],[-1.367173,60.023901]]],[[[-1.36356,60.030448],[-1.365458,60.030057],[-1.365162,60.027236],[-1.363437,60.026433],[-1.362644,60.025226],[-1.360908,60.025011],[-1.359961,60.022003],[-1.357161,60.022689],[-1.356622,60.023459],[-1.354283,60.023825],[-1.351572,60.02255],[-1.351906,60.02062],[-1.350009,60.02036],[-1.349299,60.022297],[-1.350092,60.024357],[-1.348048,60.024769],[-1.346007,60.026824],[-1.346579,60.028749],[-1.347668,60.02905],[-1.348995,60.027727],[-1.350799,60.027696],[-1.352286,60.028273],[-1.354253,60.02813],[-1.355643,60.026799],[-1.356595,60.027648],[-1.358949,60.027965],[-1.359535,60.028708],[-1.362199,60.028788],[-1.363766,60.029847],[-1.36356,60.030448]]],[[[-1.361095,60.053454],[-1.363563,60.053066],[-1.362619,60.052404],[-1.360712,60.052634],[-1.361095,60.053454]]],[[[-1.332343,60.067899],[-1.332485,60.06895],[-1.334301,60.068918],[-1.334902,60.067947],[-1.332343,60.067899]]],[[[-1.299593,60.097025],[-1.302317,60.096919],[-1.30587,60.095639],[-1.307531,60.096182],[-1.310938,60.093983],[-1.31218,60.095281],[-1.314269,60.092688],[-1.314644,60.091343],[-1.31792,60.089865],[-1.319494,60.087645],[-1.32133,60.086458],[-1.3215,60.085472],[-1.323118,60.084829],[-1.323077,60.083511],[-1.325847,60.08225],[-1.329021,60.082159],[-1.330172,60.081707],[-1.330595,60.080584],[-1.330253,60.079271],[-1.332304,60.077501],[-1.330751,60.075288],[-1.327589,60.075168],[-1.326885,60.072409],[-1.327479,60.071815],[-1.327311,60.069701],[-1.328994,60.068659],[-1.329302,60.067293],[-1.326306,60.066696],[-1.327666,60.065316],[-1.33037,60.064961],[-1.330546,60.06311],[-1.328484,60.062717],[-1.32773,60.061919],[-1.325195,60.061505],[-1.324154,60.06062],[-1.328933,60.059212],[-1.329821,60.057442],[-1.32988,60.055908],[-1.331103,60.05451],[-1.331275,60.053545],[-1.333077,60.052314],[-1.33641,60.051326],[-1.337285,60.049759],[-1.338953,60.04899],[-1.339708,60.048015],[-1.339408,60.046855],[-1.341095,60.044434],[-1.34096,60.042872],[-1.336783,60.042584],[-1.336899,60.040289],[-1.330968,60.042521],[-1.330399,60.043831],[-1.331572,60.044163],[-1.332804,60.045834],[-1.330861,60.0478],[-1.329033,60.0485],[-1.327365,60.049668],[-1.32752,60.050394],[-1.324768,60.050746],[-1.324922,60.051577],[-1.323401,60.052194],[-1.323298,60.054173],[-1.32117,60.055257],[-1.320031,60.057128],[-1.318835,60.060265],[-1.319837,60.060828],[-1.324621,60.061278],[-1.322938,60.063991],[-1.323113,60.065606],[-1.320625,60.067625],[-1.318373,60.067469],[-1.3163,60.066057],[-1.314098,60.067177],[-1.311923,60.069631],[-1.310739,60.07213],[-1.307656,60.074771],[-1.304755,60.081132],[-1.303812,60.081939],[-1.30186,60.082472],[-1.298147,60.086363],[-1.296192,60.092486],[-1.297112,60.094305],[-1.299593,60.097025]]],[[[-1.371711,60.107765],[-1.374671,60.108095],[-1.375551,60.107699],[-1.374258,60.106647],[-1.371054,60.107238],[-1.371711,60.107765]]],[[[-1.315269,60.117157],[-1.315846,60.118399],[-1.319129,60.117958],[-1.320093,60.117039],[-1.320642,60.114338],[-1.319988,60.113527],[-1.321295,60.111859],[-1.320966,60.110734],[-1.31964,60.110109],[-1.322565,60.108607],[-1.322081,60.107841],[-1.319991,60.10687],[-1.321124,60.105159],[-1.326497,60.1059],[-1.32988,60.10541],[-1.33243,60.106408],[-1.335673,60.108434],[-1.338577,60.109807],[-1.341107,60.108979],[-1.340861,60.107501],[-1.339579,60.105651],[-1.337746,60.105617],[-1.337282,60.103874],[-1.339859,60.103221],[-1.343265,60.103358],[-1.345239,60.104539],[-1.344764,60.105269],[-1.345951,60.106541],[-1.347561,60.1073],[-1.348688,60.106849],[-1.348851,60.105735],[-1.345597,60.104209],[-1.343995,60.102007],[-1.344586,60.100219],[-1.341344,60.100759],[-1.34193,60.099219],[-1.340369,60.098485],[-1.339675,60.099762],[-1.336345,60.10105],[-1.334978,60.101872],[-1.331404,60.101018],[-1.329306,60.101265],[-1.32768,60.100847],[-1.327711,60.099384],[-1.326813,60.098147],[-1.327455,60.096043],[-1.32597,60.095348],[-1.326646,60.094372],[-1.328166,60.094107],[-1.328691,60.092843],[-1.328549,60.091414],[-1.329627,60.090741],[-1.332294,60.090235],[-1.333903,60.089363],[-1.337124,60.089793],[-1.337489,60.088918],[-1.340263,60.08908],[-1.342624,60.088356],[-1.342684,60.087135],[-1.34467,60.086242],[-1.346808,60.083559],[-1.341545,60.083376],[-1.341209,60.082234],[-1.342344,60.080717],[-1.344603,60.080531],[-1.34586,60.081516],[-1.347994,60.081284],[-1.348845,60.081881],[-1.35303,60.081134],[-1.355091,60.079132],[-1.354172,60.077839],[-1.35592,60.077166],[-1.354051,60.076236],[-1.353308,60.074733],[-1.351414,60.075563],[-1.349487,60.075185],[-1.349974,60.073374],[-1.352285,60.071887],[-1.354961,60.071843],[-1.356451,60.071307],[-1.357111,60.069943],[-1.356236,60.068454],[-1.354391,60.066862],[-1.355003,60.065965],[-1.353773,60.065196],[-1.353004,60.063547],[-1.353429,60.062309],[-1.349689,60.061971],[-1.347776,60.062643],[-1.344989,60.06151],[-1.343017,60.059543],[-1.343633,60.05881],[-1.346845,60.057605],[-1.349092,60.057485],[-1.350144,60.05789],[-1.350104,60.059915],[-1.352159,60.060441],[-1.353933,60.06019],[-1.354015,60.059225],[-1.357665,60.057146],[-1.356887,60.055131],[-1.35892,60.054494],[-1.360014,60.052206],[-1.363435,60.051344],[-1.36376,60.050266],[-1.367928,60.049526],[-1.369819,60.048467],[-1.374452,60.047933],[-1.374935,60.049281],[-1.377629,60.049422],[-1.376321,60.048327],[-1.378116,60.047302],[-1.376736,60.046318],[-1.374903,60.045941],[-1.37692,60.044908],[-1.375264,60.043918],[-1.376,60.043294],[-1.374338,60.0421],[-1.370307,60.041681],[-1.367698,60.041067],[-1.364791,60.041388],[-1.359757,60.044181],[-1.358265,60.044281],[-1.357046,60.046053],[-1.357446,60.046697],[-1.356026,60.047736],[-1.354809,60.047528],[-1.352671,60.048488],[-1.350667,60.048622],[-1.350554,60.049815],[-1.348944,60.051778],[-1.349754,60.053486],[-1.349784,60.056524],[-1.347553,60.0572],[-1.34207,60.057473],[-1.340889,60.058145],[-1.338946,60.061444],[-1.339726,60.064413],[-1.336595,60.064936],[-1.334644,60.066027],[-1.334367,60.067245],[-1.336773,60.067529],[-1.338235,60.069597],[-1.335829,60.071046],[-1.33565,60.071743],[-1.334034,60.072528],[-1.332953,60.073741],[-1.334346,60.075688],[-1.334695,60.077261],[-1.334311,60.080708],[-1.333299,60.082064],[-1.330868,60.082136],[-1.328892,60.083134],[-1.329239,60.083768],[-1.327124,60.084603],[-1.32705,60.085752],[-1.324598,60.088564],[-1.322332,60.089906],[-1.318431,60.094685],[-1.316228,60.096021],[-1.317399,60.097932],[-1.317388,60.099758],[-1.314378,60.102631],[-1.314367,60.103786],[-1.311952,60.103999],[-1.310226,60.105091],[-1.31074,60.105592],[-1.310188,60.107577],[-1.312179,60.109136],[-1.31323,60.112222],[-1.31226,60.113905],[-1.309456,60.115066],[-1.310667,60.116532],[-1.313026,60.117436],[-1.315269,60.117157]]],[[[-1.367222,60.12323],[-1.371625,60.122571],[-1.37311,60.121134],[-1.377146,60.119918],[-1.378272,60.1189],[-1.3767,60.117339],[-1.37633,60.114989],[-1.375307,60.112502],[-1.374046,60.112119],[-1.372017,60.112307],[-1.367858,60.113522],[-1.367899,60.114204],[-1.366341,60.114776],[-1.364961,60.116323],[-1.364211,60.117908],[-1.360051,60.117624],[-1.358665,60.118623],[-1.359601,60.119983],[-1.364945,60.119991],[-1.364354,60.121223],[-1.364688,60.122095],[-1.367187,60.122215],[-1.367222,60.12323]]],[[[-1.348291,60.124126],[-1.349925,60.1243],[-1.352153,60.12357],[-1.353664,60.12223],[-1.355644,60.122182],[-1.355649,60.121032],[-1.354209,60.121048],[-1.34958,60.12217],[-1.349304,60.121109],[-1.352575,60.120842],[-1.352919,60.120296],[-1.351054,60.11951],[-1.349435,60.119965],[-1.344626,60.11885],[-1.34169,60.120793],[-1.338161,60.118643],[-1.33612,60.119055],[-1.335059,60.1203],[-1.335665,60.121962],[-1.334319,60.123462],[-1.334612,60.124334],[-1.336659,60.12435],[-1.337558,60.122717],[-1.339357,60.122272],[-1.340701,60.122539],[-1.340277,60.123489],[-1.342975,60.123556],[-1.343843,60.124288],[-1.347617,60.123139],[-1.348291,60.124126]]],[[[-1.314242,60.123267],[-1.312677,60.124534],[-1.314338,60.12553],[-1.316157,60.124669],[-1.316605,60.122983],[-1.314242,60.123267]]],[[[-1.372175,60.126293],[-1.372923,60.125277],[-1.371354,60.125005],[-1.370812,60.126066],[-1.372175,60.126293]]],[[[-1.355167,60.123589],[-1.355399,60.125539],[-1.357377,60.126536],[-1.359824,60.126561],[-1.360543,60.125475],[-1.359601,60.124603],[-1.357605,60.124503],[-1.357995,60.123432],[-1.356591,60.122061],[-1.355136,60.122408],[-1.355167,60.123589]]],[[[-1.374401,60.126115],[-1.373288,60.127438],[-1.377271,60.128095],[-1.378711,60.126624],[-1.378142,60.125791],[-1.375945,60.125386],[-1.374401,60.126115]]],[[[-1.371513,60.130828],[-1.375075,60.13086],[-1.378308,60.130344],[-1.379943,60.129054],[-1.377946,60.128574],[-1.375683,60.128778],[-1.372105,60.128387],[-1.370879,60.129083],[-1.369811,60.130448],[-1.371513,60.130828]]],[[[-1.273349,60.130681],[-1.276016,60.131692],[-1.279056,60.129737],[-1.281359,60.130192],[-1.284421,60.128833],[-1.288339,60.128624],[-1.290961,60.127794],[-1.291513,60.126987],[-1.293292,60.126287],[-1.296691,60.127737],[-1.297908,60.127474],[-1.299518,60.126242],[-1.300935,60.124508],[-1.300004,60.123421],[-1.299483,60.121597],[-1.300506,60.119817],[-1.299719,60.119402],[-1.300776,60.118397],[-1.300545,60.117408],[-1.298863,60.115808],[-1.29632,60.114054],[-1.29661,60.113062],[-1.298145,60.112096],[-1.298735,60.110393],[-1.297791,60.108621],[-1.299611,60.107516],[-1.30143,60.1075],[-1.304705,60.106128],[-1.305994,60.103101],[-1.305284,60.101719],[-1.310705,60.0996],[-1.310363,60.099201],[-1.305399,60.099498],[-1.304131,60.099162],[-1.297598,60.100336],[-1.294432,60.101633],[-1.288252,60.105921],[-1.286183,60.106714],[-1.284942,60.109123],[-1.284688,60.11169],[-1.285303,60.113055],[-1.284994,60.114776],[-1.285713,60.118046],[-1.284006,60.121002],[-1.284184,60.123507],[-1.282724,60.125596],[-1.277249,60.126104],[-1.276157,60.126638],[-1.273349,60.130681]]],[[[-1.370482,60.131058],[-1.369582,60.131556],[-1.371392,60.132951],[-1.373013,60.132411],[-1.37315,60.131384],[-1.370482,60.131058]]],[[[-1.352033,60.14032],[-1.353423,60.140881],[-1.355257,60.139716],[-1.353646,60.138281],[-1.350278,60.137891],[-1.3473,60.138614],[-1.347027,60.139797],[-1.347662,60.140478],[-1.350709,60.140713],[-1.352033,60.14032]]],[[[-1.32769,60.139772],[-1.329624,60.140321],[-1.329278,60.138752],[-1.327662,60.138066],[-1.329194,60.136655],[-1.329628,60.135234],[-1.330971,60.133809],[-1.328616,60.134134],[-1.326493,60.135829],[-1.326485,60.136779],[-1.32769,60.139772]]],[[[-1.304262,60.144689],[-1.30629,60.14456],[-1.307078,60.143306],[-1.304109,60.14398],[-1.304262,60.144689]]],[[[-1.361672,60.152448],[-1.363481,60.15203],[-1.363431,60.150409],[-1.366996,60.148091],[-1.368282,60.145871],[-1.367901,60.14507],[-1.369589,60.143435],[-1.369245,60.142603],[-1.365813,60.139902],[-1.362033,60.139834],[-1.360608,60.139055],[-1.359252,60.139349],[-1.35772,60.140815],[-1.35607,60.140474],[-1.35452,60.141912],[-1.354806,60.142947],[-1.35326,60.143761],[-1.350382,60.147275],[-1.352201,60.150018],[-1.35415,60.150742],[-1.355447,60.150721],[-1.356689,60.151604],[-1.359592,60.151482],[-1.361672,60.152448]]],[[[-2.073471,60.157628],[-2.076111,60.157296],[-2.079125,60.156073],[-2.080633,60.15673],[-2.083197,60.156524],[-2.08533,60.155912],[-2.086174,60.154861],[-2.089218,60.154662],[-2.090609,60.153166],[-2.09757,60.151189],[-2.101188,60.149342],[-2.104912,60.148046],[-2.107215,60.147582],[-2.109903,60.146166],[-2.11218,60.145917],[-2.111708,60.144768],[-2.112688,60.144314],[-2.112286,60.142743],[-2.113976,60.142113],[-2.114097,60.140644],[-2.111603,60.137845],[-2.111628,60.137347],[-2.116693,60.133962],[-2.114456,60.132581],[-2.110271,60.132679],[-2.106362,60.13164],[-2.104535,60.131678],[-2.09978,60.130613],[-2.097395,60.130417],[-2.093071,60.129096],[-2.091007,60.12802],[-2.090753,60.127127],[-2.092029,60.126399],[-2.088739,60.124286],[-2.088844,60.123312],[-2.086201,60.120669],[-2.086675,60.119533],[-2.08139,60.118113],[-2.079032,60.117925],[-2.075264,60.1184],[-2.070602,60.117392],[-2.068351,60.116536],[-2.068286,60.115292],[-2.064423,60.113328],[-2.06515,60.112529],[-2.067881,60.11118],[-2.064074,60.109669],[-2.063014,60.110379],[-2.061171,60.110717],[-2.061903,60.112346],[-2.060166,60.112037],[-2.059773,60.113407],[-2.053585,60.113957],[-2.054299,60.115811],[-2.053599,60.116547],[-2.050838,60.117518],[-2.050482,60.11979],[-2.049548,60.120396],[-2.049802,60.12177],[-2.050676,60.122807],[-2.049427,60.123656],[-2.050067,60.124634],[-2.049934,60.125923],[-2.048677,60.126489],[-2.048919,60.127504],[-2.046292,60.127253],[-2.044746,60.129094],[-2.045575,60.129929],[-2.047942,60.129475],[-2.048115,60.131091],[-2.045694,60.130903],[-2.046246,60.132932],[-2.047812,60.133035],[-2.051521,60.134044],[-2.047111,60.133987],[-2.045646,60.135388],[-2.044099,60.136206],[-2.041696,60.13635],[-2.040744,60.137909],[-2.041267,60.138968],[-2.0399,60.139511],[-2.040702,60.14058],[-2.042792,60.141369],[-2.04255,60.142712],[-2.045144,60.143245],[-2.044173,60.144071],[-2.047697,60.146584],[-2.050364,60.148006],[-2.048301,60.149165],[-2.049081,60.15079],[-2.052515,60.152922],[-2.054605,60.152997],[-2.054023,60.155372],[-2.059804,60.154984],[-2.059982,60.153632],[-2.060927,60.153349],[-2.070108,60.155284],[-2.071299,60.156491],[-2.073471,60.157628]]],[[[-1.035734,60.154479],[-1.038801,60.154308],[-1.041131,60.153167],[-1.042474,60.151587],[-1.044023,60.151567],[-1.046407,60.150435],[-1.047388,60.148574],[-1.045681,60.148431],[-1.045065,60.149823],[-1.043155,60.14985],[-1.04173,60.149283],[-1.044228,60.146378],[-1.043604,60.144932],[-1.041162,60.145903],[-1.039674,60.145995],[-1.034597,60.148086],[-1.032079,60.146461],[-1.03269,60.144045],[-1.032466,60.141857],[-1.026927,60.138579],[-1.02311,60.133992],[-1.01873,60.132381],[-1.015913,60.132087],[-1.014018,60.131359],[-1.01055,60.131732],[-1.010614,60.133807],[-1.00801,60.134484],[-1.010007,60.136321],[-1.010246,60.138267],[-1.006752,60.13829],[-1.007104,60.139187],[-1.003129,60.139345],[-1.005104,60.140707],[-1.005855,60.142967],[-1.003422,60.144429],[-1.004233,60.145092],[-1.003145,60.146552],[-1.005267,60.146982],[-1.004205,60.148062],[-1.005792,60.148358],[-1.004731,60.149778],[-1.005681,60.150544],[-1.009489,60.151716],[-1.011228,60.151437],[-1.014622,60.151783],[-1.016276,60.151283],[-1.020598,60.151917],[-1.025198,60.151677],[-1.029099,60.151032],[-1.031799,60.151999],[-1.035413,60.151891],[-1.034255,60.153916],[-1.035734,60.154479]]],[[[-1.376344,60.15809],[-1.377806,60.157445],[-1.380025,60.157766],[-1.380457,60.156811],[-1.379623,60.155209],[-1.376995,60.155547],[-1.375829,60.157212],[-1.376344,60.15809]]],[[[-1.508342,60.161343],[-1.509745,60.162102],[-1.512252,60.161299],[-1.511962,60.160799],[-1.508342,60.161343]]],[[[-1.333947,60.166834],[-1.334957,60.167381],[-1.337053,60.167094],[-1.338263,60.166049],[-1.34117,60.16711],[-1.341848,60.165614],[-1.340504,60.163928],[-1.336445,60.162817],[-1.334517,60.162816],[-1.333809,60.1649],[-1.332068,60.164541],[-1.332754,60.166264],[-1.333947,60.166834]]],[[[-1.099872,60.183718],[-1.102875,60.183172],[-1.103616,60.182083],[-1.102051,60.181513],[-1.09985,60.181899],[-1.097616,60.183474],[-1.099872,60.183718]]],[[[-1.366323,60.186439],[-1.366083,60.187659],[-1.368266,60.18714],[-1.367949,60.185324],[-1.366323,60.186439]]],[[[-1.324798,60.188575],[-1.326633,60.18847],[-1.327744,60.188988],[-1.330594,60.186951],[-1.330126,60.185179],[-1.326989,60.184176],[-1.324798,60.188575]]],[[[-1.080819,60.188432],[-1.080078,60.189455],[-1.086964,60.187917],[-1.088574,60.186433],[-1.085982,60.186595],[-1.08501,60.185578],[-1.086925,60.184761],[-1.088638,60.182815],[-1.088693,60.179857],[-1.089221,60.178697],[-1.085819,60.176511],[-1.083436,60.176561],[-1.081309,60.175083],[-1.078584,60.174534],[-1.077049,60.17464],[-1.075734,60.173333],[-1.077195,60.172652],[-1.07778,60.171394],[-1.07997,60.170759],[-1.083434,60.171641],[-1.089682,60.171663],[-1.091057,60.173296],[-1.094029,60.173965],[-1.093372,60.174975],[-1.093337,60.176443],[-1.094926,60.17805],[-1.098107,60.179055],[-1.1002,60.17932],[-1.103364,60.17777],[-1.105916,60.178112],[-1.106717,60.179023],[-1.110736,60.179399],[-1.113623,60.180722],[-1.112988,60.181995],[-1.11532,60.181607],[-1.116205,60.179007],[-1.119662,60.179227],[-1.121117,60.181104],[-1.126288,60.181565],[-1.126617,60.182401],[-1.129925,60.184134],[-1.132568,60.183707],[-1.13436,60.182062],[-1.133838,60.180335],[-1.135185,60.179818],[-1.137694,60.179686],[-1.140697,60.179975],[-1.142052,60.180914],[-1.143352,60.180504],[-1.146785,60.180185],[-1.147278,60.179237],[-1.146006,60.178259],[-1.147657,60.175257],[-1.147065,60.173563],[-1.147973,60.172882],[-1.143828,60.172658],[-1.142546,60.172057],[-1.142412,60.168208],[-1.140173,60.165119],[-1.138392,60.163499],[-1.13667,60.162788],[-1.134095,60.162382],[-1.131718,60.160989],[-1.129787,60.16041],[-1.127726,60.160749],[-1.122459,60.159168],[-1.121704,60.157885],[-1.121822,60.156493],[-1.120669,60.155361],[-1.114956,60.157812],[-1.117011,60.155543],[-1.115862,60.153049],[-1.11644,60.151863],[-1.114311,60.151321],[-1.114078,60.14988],[-1.112799,60.148924],[-1.115416,60.147472],[-1.115758,60.145638],[-1.11678,60.14527],[-1.116161,60.142176],[-1.117392,60.140267],[-1.121085,60.139505],[-1.123664,60.140282],[-1.12495,60.139593],[-1.126413,60.137978],[-1.1251,60.136995],[-1.12513,60.135342],[-1.12597,60.134758],[-1.125315,60.132337],[-1.12382,60.13103],[-1.124206,60.13039],[-1.123313,60.129123],[-1.121808,60.128529],[-1.122099,60.123319],[-1.12111,60.122302],[-1.122569,60.121539],[-1.122563,60.120498],[-1.121625,60.119836],[-1.118178,60.118852],[-1.113242,60.115753],[-1.111007,60.115572],[-1.110914,60.113995],[-1.106742,60.112943],[-1.104313,60.112936],[-1.102714,60.111869],[-1.101468,60.1117],[-1.097856,60.10992],[-1.095165,60.109969],[-1.093299,60.110459],[-1.090401,60.10858],[-1.088415,60.108167],[-1.085724,60.108256],[-1.085805,60.109236],[-1.082574,60.109281],[-1.08212,60.107509],[-1.081308,60.106641],[-1.078529,60.10536],[-1.077298,60.103686],[-1.075808,60.102957],[-1.072919,60.102726],[-1.071251,60.103855],[-1.071842,60.105228],[-1.073224,60.10597],[-1.073253,60.106841],[-1.074924,60.108186],[-1.073386,60.108844],[-1.072052,60.111834],[-1.070755,60.111865],[-1.068927,60.113213],[-1.069687,60.115643],[-1.068081,60.116736],[-1.068299,60.119871],[-1.066798,60.121069],[-1.068372,60.123324],[-1.067456,60.12422],[-1.068226,60.125941],[-1.066837,60.126677],[-1.06858,60.129032],[-1.065787,60.130728],[-1.066983,60.132038],[-1.065407,60.132193],[-1.065622,60.133367],[-1.064614,60.133993],[-1.064813,60.134914],[-1.06314,60.13581],[-1.063291,60.137463],[-1.06189,60.137688],[-1.062126,60.138882],[-1.05989,60.13901],[-1.056312,60.139757],[-1.052223,60.141717],[-1.052504,60.143537],[-1.051438,60.145218],[-1.052363,60.147806],[-1.051148,60.149651],[-1.049544,60.150331],[-1.048777,60.152225],[-1.049546,60.154305],[-1.050961,60.155204],[-1.051042,60.156466],[-1.049898,60.158654],[-1.050353,60.160691],[-1.049685,60.16228],[-1.048449,60.163892],[-1.046268,60.164235],[-1.045441,60.166362],[-1.045662,60.167113],[-1.047849,60.167192],[-1.047578,60.169112],[-1.048736,60.169856],[-1.051375,60.169897],[-1.053317,60.168192],[-1.054202,60.165307],[-1.055944,60.163294],[-1.056295,60.162049],[-1.057376,60.161414],[-1.060646,60.161729],[-1.062593,60.162641],[-1.064154,60.161934],[-1.065069,60.159538],[-1.067411,60.158718],[-1.070951,60.15832],[-1.073191,60.158984],[-1.073299,60.160301],[-1.075069,60.160762],[-1.076804,60.162494],[-1.077649,60.164174],[-1.07696,60.165278],[-1.072626,60.165944],[-1.071311,60.166878],[-1.070827,60.169052],[-1.072523,60.170262],[-1.071705,60.171451],[-1.06937,60.173724],[-1.070641,60.175291],[-1.072956,60.175667],[-1.076527,60.175593],[-1.07631,60.177217],[-1.073375,60.177434],[-1.072739,60.178893],[-1.073503,60.179903],[-1.072804,60.181691],[-1.073877,60.182646],[-1.073657,60.184386],[-1.072569,60.184913],[-1.076166,60.185903],[-1.075684,60.186685],[-1.076358,60.187714],[-1.080819,60.188432]]],[[[-1.073877,60.190664],[-1.073592,60.191506],[-1.078021,60.19111],[-1.079233,60.190023],[-1.079305,60.189041],[-1.073877,60.190664]]],[[[-1.067507,60.191446],[-1.067166,60.192036],[-1.069462,60.193288],[-1.071981,60.192658],[-1.073352,60.191684],[-1.071218,60.190632],[-1.068264,60.190189],[-1.067507,60.191446]]],[[[-1.322751,60.200963],[-1.323873,60.199918],[-1.325535,60.199801],[-1.327395,60.197476],[-1.325401,60.197116],[-1.323496,60.198956],[-1.322243,60.199394],[-1.320294,60.198962],[-1.319491,60.198127],[-1.319871,60.196769],[-1.317292,60.197209],[-1.31703,60.198523],[-1.318851,60.19899],[-1.319032,60.200711],[-1.320817,60.200307],[-1.322751,60.200963]]],[[[-1.320379,60.206657],[-1.321748,60.205865],[-1.32318,60.206443],[-1.324086,60.204903],[-1.323613,60.203796],[-1.320544,60.20502],[-1.320379,60.206657]]],[[[-1.587092,60.210075],[-1.58968,60.208884],[-1.591992,60.208514],[-1.594522,60.207507],[-1.596348,60.206386],[-1.597839,60.207242],[-1.600083,60.207093],[-1.601752,60.205666],[-1.599313,60.204442],[-1.604777,60.201933],[-1.605334,60.199544],[-1.603579,60.199207],[-1.600431,60.197033],[-1.600366,60.196016],[-1.597128,60.195034],[-1.594795,60.195548],[-1.591289,60.193962],[-1.589519,60.193494],[-1.587702,60.19167],[-1.586114,60.191764],[-1.585254,60.195177],[-1.582221,60.194463],[-1.580511,60.194875],[-1.577293,60.19482],[-1.575492,60.195326],[-1.573767,60.193413],[-1.572107,60.193511],[-1.569423,60.192582],[-1.567711,60.193196],[-1.569372,60.194418],[-1.569309,60.195733],[-1.567698,60.196221],[-1.565359,60.194056],[-1.563147,60.19459],[-1.5644,60.196004],[-1.564092,60.197516],[-1.566894,60.200403],[-1.566891,60.202056],[-1.568014,60.203381],[-1.57273,60.205235],[-1.57362,60.206194],[-1.575805,60.206708],[-1.576252,60.208416],[-1.578697,60.209083],[-1.58405,60.209558],[-1.587092,60.210075]]],[[[-1.109511,60.207401],[-1.110434,60.208564],[-1.111872,60.207389],[-1.109511,60.207401]]],[[[-1.630321,60.212613],[-1.632586,60.212574],[-1.632872,60.211858],[-1.629403,60.211441],[-1.630321,60.212613]]],[[[-1.566387,60.213565],[-1.56836,60.215747],[-1.566977,60.216461],[-1.568148,60.217986],[-1.571737,60.218506],[-1.57198,60.217662],[-1.57555,60.216933],[-1.575473,60.214972],[-1.572162,60.21352],[-1.571387,60.212755],[-1.568806,60.212845],[-1.567178,60.21244],[-1.566387,60.213565]]],[[[-1.150614,60.240143],[-1.151634,60.239996],[-1.152416,60.238717],[-1.15428,60.237521],[-1.154902,60.235779],[-1.1527,60.235055],[-1.148944,60.237159],[-1.143827,60.238778],[-1.14386,60.239203],[-1.148603,60.238818],[-1.148085,60.239464],[-1.150614,60.240143]]],[[[-1.138771,60.242287],[-1.136973,60.243264],[-1.136892,60.243949],[-1.140056,60.243836],[-1.142421,60.242496],[-1.138771,60.242287]]],[[[-1.08843,60.248676],[-1.09054,60.249919],[-1.091294,60.248851],[-1.08843,60.248676]]],[[[-1.077896,60.305196],[-1.080372,60.304164],[-1.07894,60.303475],[-1.077386,60.303828],[-1.077896,60.305196]]],[[[-1.550994,60.307395],[-1.549621,60.30792],[-1.550161,60.308961],[-1.551668,60.309083],[-1.553272,60.308262],[-1.55312,60.307494],[-1.550994,60.307395]]],[[[-1.653288,60.311891],[-1.655342,60.310617],[-1.655842,60.309523],[-1.653227,60.308623],[-1.651454,60.309435],[-1.651357,60.310916],[-1.653288,60.311891]]],[[[-1.54618,60.314899],[-1.54914,60.313959],[-1.551128,60.312233],[-1.552508,60.310581],[-1.551767,60.31018],[-1.547754,60.30946],[-1.546297,60.310644],[-1.545575,60.311935],[-1.543983,60.312563],[-1.545756,60.313885],[-1.54618,60.314899]]],[[[-1.489247,60.315801],[-1.491978,60.316397],[-1.493164,60.31584],[-1.488696,60.314472],[-1.48808,60.313926],[-1.485397,60.313579],[-1.485582,60.31508],[-1.489247,60.315801]]],[[[-1.449825,60.319834],[-1.449175,60.318915],[-1.446851,60.319059],[-1.447266,60.319781],[-1.449825,60.319834]]],[[[-1.489041,60.322731],[-1.490532,60.323316],[-1.492699,60.322536],[-1.490942,60.321929],[-1.49069,60.321227],[-1.48614,60.322215],[-1.489041,60.322731]]],[[[-0.90499,60.326439],[-0.906601,60.326832],[-0.908562,60.325098],[-0.905712,60.325224],[-0.90499,60.326439]]],[[[-1.744248,60.336298],[-1.743902,60.335355],[-1.741651,60.334803],[-1.740255,60.335106],[-1.740362,60.336019],[-1.742586,60.33577],[-1.744248,60.336298]]],[[[-1.123879,60.33316],[-1.12666,60.333878],[-1.127904,60.333078],[-1.124896,60.332133],[-1.123879,60.33316]]],[[[-1.750073,60.336815],[-1.751419,60.335284],[-1.750011,60.334648],[-1.751649,60.334092],[-1.749127,60.33331],[-1.746361,60.333573],[-1.744801,60.334816],[-1.746587,60.335984],[-1.750073,60.336815]]],[[[-1.472634,60.341287],[-1.474282,60.341421],[-1.477592,60.341114],[-1.480124,60.340221],[-1.480249,60.339194],[-1.483292,60.338645],[-1.482524,60.33681],[-1.485884,60.336208],[-1.484661,60.335687],[-1.48768,60.334293],[-1.487176,60.333537],[-1.487603,60.332277],[-1.486845,60.331529],[-1.488243,60.330726],[-1.488229,60.328711],[-1.490917,60.327055],[-1.487069,60.326714],[-1.485307,60.327411],[-1.484955,60.326021],[-1.481265,60.326066],[-1.479385,60.326333],[-1.478453,60.327438],[-1.474015,60.328628],[-1.472773,60.328156],[-1.472328,60.326461],[-1.46978,60.32735],[-1.466231,60.327345],[-1.466511,60.325757],[-1.467418,60.325055],[-1.466314,60.323929],[-1.470391,60.322652],[-1.47368,60.322427],[-1.473702,60.324474],[-1.475304,60.325357],[-1.477899,60.324657],[-1.477743,60.3237],[-1.480718,60.3229],[-1.480562,60.321749],[-1.482184,60.321055],[-1.480484,60.319226],[-1.4785,60.318792],[-1.478187,60.318062],[-1.475196,60.317643],[-1.475118,60.316897],[-1.476792,60.316338],[-1.479132,60.3143],[-1.478364,60.313121],[-1.474208,60.313244],[-1.474437,60.312486],[-1.47664,60.311686],[-1.472885,60.311021],[-1.471437,60.311652],[-1.469391,60.311698],[-1.467673,60.313312],[-1.467821,60.315346],[-1.469402,60.316035],[-1.468021,60.316936],[-1.466451,60.317164],[-1.468205,60.318423],[-1.468859,60.319422],[-1.463853,60.319549],[-1.461801,60.318173],[-1.459245,60.318396],[-1.453151,60.321231],[-1.450726,60.322792],[-1.450814,60.323475],[-1.453644,60.324259],[-1.452527,60.324986],[-1.448346,60.324906],[-1.447318,60.326248],[-1.447725,60.326843],[-1.445805,60.3274],[-1.444233,60.326514],[-1.442712,60.32666],[-1.438819,60.326118],[-1.440726,60.328959],[-1.440436,60.330062],[-1.442844,60.331698],[-1.443831,60.331666],[-1.443522,60.330116],[-1.444224,60.329311],[-1.446634,60.329209],[-1.446023,60.331617],[-1.447783,60.332522],[-1.448683,60.331745],[-1.448905,60.329891],[-1.448213,60.328456],[-1.450426,60.328825],[-1.452502,60.32974],[-1.452737,60.330836],[-1.458505,60.331621],[-1.45737,60.332674],[-1.457301,60.334097],[-1.458898,60.335005],[-1.463037,60.335498],[-1.466548,60.335126],[-1.468009,60.3354],[-1.47074,60.334627],[-1.471509,60.332439],[-1.472694,60.331945],[-1.471276,60.331176],[-1.471652,60.330289],[-1.475508,60.331498],[-1.475121,60.332534],[-1.476108,60.333095],[-1.474728,60.33502],[-1.475937,60.335859],[-1.478639,60.336202],[-1.477133,60.336959],[-1.475699,60.336829],[-1.473483,60.337538],[-1.472302,60.337183],[-1.469746,60.338407],[-1.472634,60.341287]]],[[[-1.385368,60.342462],[-1.386402,60.34287],[-1.391056,60.342012],[-1.393712,60.340924],[-1.396503,60.341822],[-1.398947,60.340957],[-1.400546,60.339662],[-1.39958,60.339025],[-1.396756,60.338904],[-1.394229,60.339414],[-1.393442,60.336452],[-1.392802,60.335299],[-1.391175,60.334641],[-1.391604,60.333489],[-1.393678,60.333449],[-1.395264,60.333874],[-1.39605,60.333011],[-1.399565,60.33195],[-1.401117,60.332221],[-1.401589,60.333144],[-1.403403,60.333013],[-1.402389,60.330517],[-1.402909,60.329316],[-1.402145,60.328001],[-1.404998,60.327735],[-1.401894,60.326397],[-1.401112,60.32559],[-1.401359,60.324469],[-1.397836,60.32351],[-1.397046,60.322196],[-1.394744,60.321359],[-1.392409,60.321331],[-1.390328,60.321761],[-1.38804,60.323569],[-1.387415,60.32551],[-1.382621,60.326772],[-1.381423,60.328356],[-1.383563,60.330557],[-1.383168,60.331363],[-1.381415,60.332127],[-1.379608,60.333802],[-1.378154,60.33455],[-1.375509,60.334614],[-1.376007,60.337458],[-1.379912,60.340708],[-1.385368,60.342462]]],[[[-1.716262,60.345775],[-1.716848,60.346245],[-1.720483,60.346034],[-1.718136,60.344053],[-1.72294,60.343663],[-1.725432,60.345351],[-1.728889,60.346122],[-1.732045,60.345653],[-1.731557,60.344467],[-1.732896,60.342422],[-1.730742,60.341094],[-1.72816,60.340083],[-1.730456,60.339562],[-1.731166,60.340237],[-1.734457,60.340459],[-1.736285,60.339933],[-1.734047,60.337805],[-1.737453,60.337758],[-1.737678,60.336865],[-1.736978,60.334852],[-1.733694,60.334532],[-1.733771,60.333234],[-1.731385,60.332309],[-1.731,60.32957],[-1.72717,60.329562],[-1.72639,60.328573],[-1.72695,60.327667],[-1.726224,60.326862],[-1.724146,60.326283],[-1.720423,60.326527],[-1.720505,60.326001],[-1.724729,60.325808],[-1.724328,60.325049],[-1.725224,60.324099],[-1.723525,60.323732],[-1.721689,60.324581],[-1.720576,60.323465],[-1.722071,60.322252],[-1.720093,60.321749],[-1.718837,60.3198],[-1.717326,60.319292],[-1.715884,60.320609],[-1.715082,60.322304],[-1.712015,60.322984],[-1.709636,60.324946],[-1.706192,60.325374],[-1.704075,60.326058],[-1.703935,60.326671],[-1.706077,60.327169],[-1.706149,60.329185],[-1.704737,60.329169],[-1.701829,60.328372],[-1.697814,60.32584],[-1.696976,60.324442],[-1.698041,60.323798],[-1.697919,60.322298],[-1.699021,60.321524],[-1.703511,60.321592],[-1.704953,60.322215],[-1.707094,60.321695],[-1.706676,60.319911],[-1.707352,60.319235],[-1.709911,60.318464],[-1.708787,60.317586],[-1.706899,60.318278],[-1.704582,60.31821],[-1.704045,60.317585],[-1.700299,60.31644],[-1.701039,60.315611],[-1.696661,60.315444],[-1.694804,60.31562],[-1.691932,60.315348],[-1.691015,60.314909],[-1.687954,60.316269],[-1.686672,60.316485],[-1.684061,60.320069],[-1.680408,60.32119],[-1.680419,60.322695],[-1.677248,60.322935],[-1.675088,60.322743],[-1.674647,60.320995],[-1.666077,60.321358],[-1.6646,60.322554],[-1.662887,60.322974],[-1.661327,60.324653],[-1.661578,60.32655],[-1.664825,60.32784],[-1.667034,60.32787],[-1.667609,60.326252],[-1.670518,60.32599],[-1.674256,60.326876],[-1.676336,60.328783],[-1.674646,60.329981],[-1.673442,60.33149],[-1.670788,60.332463],[-1.667045,60.332671],[-1.664714,60.333731],[-1.665955,60.335636],[-1.665513,60.33722],[-1.663207,60.338673],[-1.665822,60.338882],[-1.665866,60.339892],[-1.667388,60.340994],[-1.668765,60.342758],[-1.670407,60.342524],[-1.670242,60.341555],[-1.673205,60.341418],[-1.674704,60.340991],[-1.676027,60.341843],[-1.67624,60.343141],[-1.682087,60.341768],[-1.681465,60.340559],[-1.682394,60.339088],[-1.684057,60.33834],[-1.684035,60.337045],[-1.681344,60.336293],[-1.678366,60.336982],[-1.678052,60.338602],[-1.676262,60.338288],[-1.676599,60.33709],[-1.676168,60.335841],[-1.677473,60.335727],[-1.680672,60.334635],[-1.681974,60.334755],[-1.684557,60.333478],[-1.683373,60.332064],[-1.684949,60.331537],[-1.687382,60.33145],[-1.68966,60.332156],[-1.690501,60.334173],[-1.690187,60.334873],[-1.688473,60.335138],[-1.68823,60.336857],[-1.689708,60.33761],[-1.689517,60.33867],[-1.691007,60.341025],[-1.690956,60.342601],[-1.693965,60.342437],[-1.693655,60.341642],[-1.694942,60.340608],[-1.69645,60.33821],[-1.694217,60.336772],[-1.696332,60.336221],[-1.699065,60.338453],[-1.698555,60.339786],[-1.697008,60.340563],[-1.697474,60.341108],[-1.700825,60.342116],[-1.698138,60.342739],[-1.699616,60.343586],[-1.69976,60.34465],[-1.702637,60.343983],[-1.702979,60.343302],[-1.701245,60.342737],[-1.703458,60.341422],[-1.706031,60.341342],[-1.709826,60.340381],[-1.710364,60.340889],[-1.709353,60.342672],[-1.711178,60.343091],[-1.712343,60.344588],[-1.717654,60.345318],[-1.716262,60.345775]]],[[[-0.8556,60.342325],[-0.857603,60.342432],[-0.862719,60.340358],[-0.861919,60.339867],[-0.862244,60.33835],[-0.860006,60.338679],[-0.85688,60.339745],[-0.857967,60.340464],[-0.855892,60.341302],[-0.8556,60.342325]]],[[[-0.883216,60.34256],[-0.884264,60.34344],[-0.886931,60.34308],[-0.888787,60.341758],[-0.890533,60.341306],[-0.892269,60.340072],[-0.893,60.338811],[-0.891569,60.338526],[-0.889713,60.339054],[-0.88919,60.337896],[-0.887263,60.337848],[-0.884883,60.339907],[-0.88288,60.340734],[-0.883216,60.34256]]],[[[-0.881355,60.344707],[-0.883912,60.343718],[-0.882786,60.342691],[-0.880204,60.344025],[-0.881355,60.344707]]],[[[-1.069419,60.351017],[-1.068727,60.352409],[-1.070129,60.354076],[-1.071353,60.353406],[-1.072321,60.351577],[-1.070806,60.350655],[-1.069419,60.351017]]],[[[-1.057202,60.356149],[-1.057269,60.357581],[-1.061156,60.356345],[-1.058668,60.355584],[-1.057202,60.356149]]],[[[-1.355189,60.361184],[-1.35946,60.361111],[-1.363679,60.361351],[-1.366282,60.360766],[-1.367449,60.359461],[-1.367585,60.357499],[-1.366019,60.353452],[-1.362606,60.352685],[-1.358351,60.353013],[-1.354652,60.354896],[-1.353725,60.356405],[-1.353284,60.358526],[-1.353855,60.359798],[-1.355189,60.361184]]],[[[-0.904186,60.359006],[-0.908757,60.359236],[-0.908691,60.358499],[-0.911077,60.357077],[-0.90988,60.356282],[-0.904806,60.357799],[-0.904186,60.359006]]],[[[-0.897704,60.365556],[-0.899666,60.365446],[-0.902429,60.364648],[-0.903404,60.363174],[-0.901597,60.362728],[-0.898798,60.363751],[-0.896028,60.365291],[-0.897704,60.365556]]],[[[-1.0522,60.365483],[-1.050295,60.366148],[-1.050309,60.367863],[-1.051029,60.368667],[-1.052717,60.368899],[-1.054124,60.365261],[-1.0522,60.365483]]],[[[-1.025384,60.369497],[-1.025744,60.370186],[-1.027825,60.370345],[-1.031011,60.369924],[-1.034227,60.369979],[-1.036137,60.368879],[-1.038102,60.367102],[-1.037833,60.366076],[-1.039057,60.364514],[-1.043337,60.364154],[-1.045306,60.363171],[-1.045526,60.361848],[-1.043717,60.360776],[-1.044121,60.360239],[-1.042741,60.358851],[-1.044196,60.35619],[-1.043706,60.355599],[-1.043785,60.353817],[-1.041773,60.353515],[-1.041519,60.352314],[-1.042806,60.351354],[-1.041637,60.350753],[-1.0403,60.351866],[-1.038338,60.351721],[-1.037442,60.352276],[-1.032997,60.353389],[-1.031819,60.354911],[-1.03225,60.356566],[-1.033453,60.356647],[-1.03459,60.358954],[-1.033282,60.361508],[-1.030484,60.36231],[-1.028033,60.366391],[-1.025743,60.367743],[-1.026622,60.368428],[-1.025384,60.369497]]],[[[-0.894097,60.368213],[-0.893489,60.368772],[-0.89529,60.369402],[-0.897183,60.368643],[-0.897947,60.367219],[-0.897053,60.366309],[-0.894097,60.368213]]],[[[-1.812838,60.372704],[-1.811976,60.373844],[-1.814076,60.374241],[-1.814794,60.373052],[-1.812838,60.372704]]],[[[-1.02371,60.373332],[-1.025821,60.372773],[-1.026149,60.371805],[-1.023582,60.37154],[-1.021402,60.372893],[-1.02371,60.373332]]],[[[-1.814647,60.376548],[-1.816442,60.376655],[-1.818213,60.376109],[-1.817847,60.37513],[-1.812851,60.375527],[-1.814647,60.376548]]],[[[-0.913299,60.383701],[-0.913354,60.384797],[-0.915118,60.384655],[-0.915592,60.383482],[-0.917782,60.382495],[-0.917445,60.382061],[-0.920457,60.38108],[-0.924532,60.381533],[-0.929109,60.380978],[-0.933105,60.378939],[-0.933554,60.377326],[-0.936159,60.376705],[-0.93922,60.377556],[-0.939308,60.378621],[-0.940884,60.378848],[-0.942582,60.37844],[-0.94411,60.379283],[-0.945542,60.379192],[-0.946805,60.377966],[-0.951271,60.378601],[-0.952948,60.378376],[-0.953684,60.379121],[-0.956727,60.379027],[-0.958001,60.380248],[-0.957095,60.381304],[-0.958072,60.382501],[-0.960153,60.382899],[-0.962598,60.382683],[-0.96487,60.381228],[-0.968831,60.380079],[-0.970349,60.379117],[-0.968742,60.377744],[-0.969354,60.377012],[-0.968443,60.376301],[-0.969241,60.375427],[-0.971689,60.374283],[-0.970999,60.372907],[-0.973096,60.372166],[-0.973863,60.371284],[-0.978744,60.37009],[-0.980152,60.370523],[-0.983228,60.368487],[-0.987231,60.368792],[-0.988499,60.36858],[-0.990923,60.369077],[-0.994338,60.368271],[-0.995267,60.369204],[-0.993539,60.369726],[-0.992682,60.370939],[-0.994823,60.371301],[-0.997058,60.370158],[-0.995517,60.368315],[-0.997663,60.367752],[-1.000344,60.3683],[-1.000549,60.367557],[-1.003912,60.366353],[-1.004089,60.365301],[-1.005647,60.364384],[-1.008464,60.364407],[-1.010428,60.363554],[-1.010422,60.362384],[-1.013151,60.361935],[-1.015167,60.361077],[-1.018423,60.358417],[-1.019693,60.356125],[-1.020905,60.355325],[-1.021984,60.35359],[-1.021584,60.35274],[-1.022856,60.351239],[-1.021001,60.349964],[-1.021378,60.349204],[-1.019158,60.348314],[-1.015561,60.347902],[-1.014919,60.347135],[-1.016635,60.345692],[-1.022008,60.3457],[-1.023618,60.346504],[-1.025562,60.343824],[-1.024843,60.341564],[-1.027773,60.340819],[-1.029364,60.342407],[-1.030638,60.342787],[-1.032381,60.342113],[-1.03673,60.341277],[-1.038599,60.340511],[-1.038778,60.338925],[-1.037853,60.336975],[-1.036122,60.336021],[-1.037125,60.33545],[-1.035509,60.334098],[-1.032745,60.333488],[-1.031527,60.333928],[-1.030094,60.333359],[-1.025623,60.334704],[-1.023044,60.334231],[-1.021002,60.33307],[-1.021181,60.33226],[-1.022741,60.331188],[-1.019874,60.330618],[-1.017126,60.330868],[-1.014717,60.330597],[-1.011132,60.329164],[-1.011902,60.328124],[-1.009242,60.328416],[-1.006387,60.327279],[-1.004983,60.326388],[-1.000037,60.328724],[-0.998687,60.32859],[-0.997051,60.329404],[-0.995198,60.329377],[-0.993698,60.32809],[-0.991889,60.328004],[-0.990086,60.328472],[-0.989898,60.329159],[-0.985514,60.3306],[-0.983382,60.330614],[-0.981081,60.331455],[-0.978776,60.331381],[-0.97745,60.332943],[-0.977585,60.333979],[-0.974112,60.336136],[-0.975885,60.337397],[-0.975931,60.339682],[-0.973688,60.341399],[-0.970274,60.341247],[-0.965111,60.342378],[-0.963376,60.344259],[-0.963386,60.345076],[-0.961313,60.345311],[-0.961266,60.346514],[-0.95787,60.349305],[-0.955924,60.350089],[-0.953461,60.349899],[-0.950203,60.350888],[-0.95046,60.353884],[-0.948875,60.354695],[-0.948606,60.355586],[-0.94443,60.356181],[-0.944532,60.356968],[-0.942705,60.357523],[-0.94244,60.358642],[-0.940379,60.36008],[-0.940221,60.361959],[-0.940786,60.362866],[-0.938325,60.363458],[-0.934831,60.367076],[-0.933403,60.367299],[-0.932297,60.368522],[-0.930748,60.368087],[-0.928886,60.369817],[-0.929213,60.370545],[-0.926579,60.372086],[-0.92304,60.375066],[-0.920789,60.374793],[-0.917854,60.376716],[-0.912094,60.377954],[-0.910745,60.378441],[-0.909443,60.379674],[-0.907183,60.379827],[-0.90133,60.381655],[-0.901962,60.382342],[-0.909131,60.382774],[-0.910289,60.383681],[-0.913299,60.383701]]],[[[-1.4258,60.388623],[-1.427746,60.389786],[-1.429265,60.391367],[-1.431275,60.389855],[-1.429692,60.388406],[-1.432599,60.388397],[-1.432674,60.389961],[-1.433706,60.390936],[-1.437798,60.390761],[-1.440154,60.390412],[-1.440568,60.389647],[-1.443078,60.389134],[-1.443347,60.388123],[-1.445181,60.388243],[-1.444567,60.38705],[-1.445917,60.386028],[-1.447589,60.386924],[-1.448982,60.386692],[-1.449386,60.385805],[-1.451004,60.385605],[-1.452539,60.384394],[-1.451758,60.383336],[-1.453597,60.382962],[-1.453391,60.3817],[-1.455038,60.3819],[-1.45606,60.381001],[-1.45382,60.380426],[-1.452923,60.380966],[-1.45071,60.380961],[-1.449716,60.379871],[-1.449994,60.37879],[-1.451916,60.378785],[-1.454114,60.37711],[-1.454403,60.375926],[-1.458155,60.377083],[-1.460396,60.377073],[-1.46297,60.376046],[-1.461564,60.374958],[-1.459405,60.375022],[-1.458192,60.37384],[-1.462053,60.373344],[-1.463849,60.372741],[-1.465805,60.372933],[-1.466157,60.374681],[-1.467077,60.374936],[-1.46659,60.377039],[-1.467449,60.378309],[-1.469393,60.377526],[-1.469797,60.376657],[-1.469419,60.374788],[-1.472239,60.37594],[-1.47433,60.375598],[-1.475656,60.37431],[-1.471914,60.372472],[-1.474307,60.37176],[-1.472425,60.371119],[-1.471543,60.369602],[-1.468841,60.369093],[-1.468496,60.367449],[-1.46462,60.36663],[-1.466028,60.364786],[-1.461944,60.361833],[-1.464163,60.362426],[-1.465287,60.361909],[-1.46166,60.358671],[-1.463822,60.3578],[-1.463425,60.356084],[-1.460207,60.35445],[-1.457271,60.353926],[-1.458363,60.353114],[-1.455211,60.351377],[-1.453408,60.351374],[-1.451791,60.350034],[-1.451716,60.348552],[-1.448602,60.348409],[-1.447426,60.34721],[-1.443078,60.346137],[-1.44121,60.347283],[-1.441442,60.34806],[-1.4388,60.348341],[-1.436655,60.347343],[-1.435414,60.34791],[-1.433311,60.347263],[-1.433443,60.346355],[-1.430014,60.345148],[-1.42779,60.345394],[-1.428563,60.34678],[-1.427601,60.347798],[-1.425857,60.348318],[-1.423275,60.348185],[-1.421099,60.347358],[-1.418897,60.347913],[-1.417069,60.346785],[-1.415581,60.348093],[-1.413798,60.348093],[-1.409982,60.346188],[-1.408391,60.347446],[-1.407262,60.34762],[-1.403528,60.349036],[-1.400753,60.350753],[-1.400359,60.351575],[-1.398028,60.351132],[-1.396122,60.351412],[-1.394485,60.351052],[-1.390036,60.353011],[-1.38896,60.354367],[-1.386466,60.355521],[-1.386273,60.356336],[-1.382586,60.357422],[-1.381019,60.358366],[-1.38,60.362055],[-1.379214,60.363482],[-1.380226,60.365582],[-1.378749,60.367806],[-1.380144,60.37314],[-1.382435,60.376175],[-1.384424,60.376688],[-1.385986,60.376321],[-1.389934,60.376516],[-1.391619,60.37634],[-1.395418,60.377671],[-1.395901,60.378381],[-1.404336,60.381589],[-1.408156,60.383647],[-1.410693,60.3838],[-1.410079,60.382522],[-1.410865,60.381361],[-1.414233,60.381492],[-1.415869,60.382539],[-1.416391,60.383662],[-1.422368,60.386224],[-1.424464,60.38618],[-1.426235,60.387067],[-1.4258,60.388623]]],[[[-0.802477,60.395188],[-0.800788,60.396462],[-0.802726,60.397574],[-0.805126,60.396353],[-0.805038,60.394883],[-0.802477,60.395188]]],[[[-0.793653,60.403662],[-0.795125,60.402395],[-0.792154,60.402747],[-0.793653,60.403662]]],[[[-0.796213,60.406105],[-0.798196,60.40574],[-0.795928,60.404737],[-0.793814,60.404974],[-0.792586,60.405856],[-0.796213,60.406105]]],[[[-1.427786,60.409876],[-1.429111,60.410914],[-1.432914,60.410387],[-1.431366,60.408589],[-1.427187,60.406443],[-1.424665,60.407218],[-1.425673,60.408183],[-1.427499,60.408649],[-1.427786,60.409876]]],[[[-1.420999,60.41078],[-1.420875,60.411583],[-1.422325,60.412272],[-1.425233,60.412078],[-1.428918,60.41103],[-1.426345,60.409753],[-1.422977,60.409752],[-1.420999,60.41078]]],[[[-0.735598,60.425282],[-0.738195,60.42491],[-0.739348,60.423745],[-0.744232,60.421447],[-0.744988,60.420211],[-0.747664,60.420981],[-0.748036,60.420055],[-0.747167,60.419177],[-0.744372,60.418984],[-0.741182,60.419308],[-0.73715,60.420474],[-0.73521,60.420626],[-0.736072,60.42159],[-0.734952,60.422599],[-0.738196,60.423025],[-0.734891,60.423694],[-0.733708,60.424455],[-0.735598,60.425282]]],[[[-0.726521,60.423852],[-0.725587,60.424526],[-0.725996,60.425509],[-0.729367,60.423946],[-0.727888,60.42351],[-0.726521,60.423852]]],[[[-1.150757,60.428109],[-1.151576,60.42877],[-1.151108,60.429638],[-1.152272,60.430274],[-1.155344,60.429895],[-1.154673,60.42862],[-1.152341,60.427901],[-1.150757,60.428109]]],[[[-0.748371,60.430475],[-0.751487,60.429521],[-0.752195,60.428118],[-0.754784,60.427608],[-0.756548,60.425759],[-0.757911,60.425863],[-0.759081,60.42479],[-0.757347,60.424384],[-0.757159,60.423062],[-0.75407,60.423006],[-0.753918,60.42456],[-0.752161,60.424102],[-0.752344,60.423346],[-0.749096,60.422345],[-0.744818,60.423909],[-0.745104,60.425667],[-0.744203,60.426435],[-0.740078,60.426953],[-0.742217,60.427781],[-0.742687,60.429245],[-0.74479,60.42935],[-0.748371,60.430475]]],[[[-0.75967,60.430733],[-0.7602,60.432104],[-0.762076,60.430747],[-0.765643,60.431305],[-0.766723,60.430839],[-0.768856,60.430904],[-0.769704,60.429856],[-0.772419,60.43011],[-0.773019,60.428877],[-0.775008,60.428205],[-0.777295,60.42677],[-0.775797,60.425925],[-0.774191,60.425659],[-0.769123,60.426246],[-0.765153,60.427708],[-0.765101,60.426671],[-0.769297,60.424894],[-0.770004,60.423577],[-0.772418,60.423571],[-0.772678,60.422983],[-0.775123,60.422263],[-0.777958,60.422403],[-0.780423,60.421997],[-0.782869,60.42224],[-0.785329,60.421752],[-0.785199,60.420857],[-0.783879,60.419811],[-0.786643,60.418149],[-0.78793,60.417973],[-0.790154,60.416776],[-0.791774,60.417003],[-0.792482,60.415441],[-0.794884,60.414336],[-0.795283,60.413352],[-0.797947,60.412015],[-0.799049,60.409956],[-0.797468,60.409488],[-0.795864,60.410636],[-0.791892,60.412509],[-0.791102,60.413247],[-0.788279,60.414218],[-0.787958,60.414794],[-0.789228,60.416027],[-0.784877,60.416082],[-0.78202,60.418243],[-0.78036,60.418241],[-0.778665,60.417546],[-0.77727,60.418376],[-0.776232,60.420495],[-0.775061,60.420246],[-0.775941,60.418695],[-0.768818,60.41962],[-0.767892,60.42006],[-0.766111,60.418709],[-0.761176,60.418257],[-0.757346,60.419414],[-0.755561,60.41906],[-0.753777,60.419785],[-0.756012,60.421143],[-0.75746,60.421516],[-0.759175,60.423118],[-0.760988,60.42358],[-0.762303,60.423021],[-0.763704,60.423459],[-0.761182,60.425079],[-0.760047,60.425266],[-0.7595,60.427294],[-0.760532,60.428608],[-0.75967,60.430733]]],[[[-1.453068,60.442202],[-1.454375,60.442795],[-1.457382,60.442255],[-1.459013,60.441422],[-1.459379,60.439081],[-1.461614,60.438589],[-1.461423,60.437993],[-1.45914,60.437162],[-1.45813,60.437724],[-1.454085,60.437851],[-1.453181,60.43866],[-1.451485,60.439053],[-1.451294,60.440161],[-1.45323,60.441161],[-1.453068,60.442202]]],[[[-0.861827,60.439358],[-0.860592,60.440337],[-0.862057,60.440832],[-0.863387,60.44047],[-0.863681,60.439337],[-0.861827,60.439358]]],[[[-1.452507,60.446931],[-1.45433,60.447091],[-1.455665,60.446594],[-1.456594,60.445422],[-1.45301,60.44512],[-1.452033,60.446223],[-1.452507,60.446931]]],[[[-1.148473,60.439044],[-1.149677,60.440969],[-1.150094,60.443082],[-1.149197,60.444041],[-1.150318,60.445665],[-1.152871,60.446381],[-1.156006,60.445678],[-1.157688,60.443862],[-1.15808,60.441705],[-1.160045,60.439876],[-1.159727,60.438801],[-1.157966,60.437708],[-1.154293,60.438139],[-1.150284,60.437902],[-1.148473,60.439044]]],[[[-1.130359,60.452257],[-1.133721,60.451632],[-1.135475,60.449578],[-1.137441,60.448778],[-1.137901,60.445814],[-1.135086,60.44607],[-1.13336,60.447241],[-1.132258,60.449234],[-1.131278,60.449856],[-1.131786,60.451579],[-1.130359,60.452257]]],[[[-1.042364,60.45213],[-1.041666,60.452978],[-1.039506,60.453474],[-1.039284,60.455388],[-1.041909,60.456464],[-1.042895,60.4563],[-1.045268,60.454746],[-1.045824,60.452833],[-1.044124,60.451927],[-1.042364,60.45213]]],[[[-1.519159,60.465523],[-1.520418,60.466661],[-1.521754,60.465851],[-1.519159,60.465523]]],[[[-1.627682,60.47096],[-1.62933,60.472478],[-1.629857,60.474421],[-1.631287,60.474452],[-1.632967,60.473642],[-1.633599,60.472103],[-1.631721,60.471703],[-1.631916,60.47055],[-1.628937,60.470263],[-1.627682,60.47096]]],[[[-1.625233,60.475824],[-1.627349,60.476315],[-1.628734,60.474438],[-1.628043,60.472838],[-1.62256,60.471206],[-1.62124,60.472105],[-1.620758,60.473263],[-1.622172,60.474101],[-1.62222,60.475452],[-1.625233,60.475824]]],[[[-1.146451,60.467688],[-1.148098,60.468354],[-1.148705,60.46948],[-1.152543,60.472598],[-1.152736,60.473582],[-1.154101,60.47496],[-1.15541,60.474977],[-1.157868,60.473466],[-1.1561,60.471148],[-1.157891,60.469435],[-1.158101,60.468341],[-1.160308,60.46774],[-1.162876,60.467931],[-1.162683,60.466273],[-1.158539,60.465825],[-1.156366,60.465107],[-1.153313,60.463282],[-1.150777,60.462566],[-1.14833,60.462627],[-1.145221,60.462234],[-1.144298,60.462444],[-1.141564,60.461977],[-1.140404,60.463227],[-1.140432,60.464556],[-1.142494,60.465341],[-1.144569,60.465283],[-1.146632,60.46702],[-1.146451,60.467688]]],[[[-1.101737,60.477675],[-1.102889,60.478446],[-1.102204,60.47956],[-1.103087,60.481186],[-1.106377,60.480961],[-1.10782,60.477442],[-1.105012,60.476692],[-1.101737,60.477675]]],[[[-1.272507,60.501544],[-1.274687,60.500523],[-1.274856,60.49946],[-1.271909,60.498586],[-1.270395,60.497101],[-1.268869,60.496567],[-1.267139,60.494955],[-1.264131,60.495186],[-1.263351,60.496259],[-1.265001,60.497336],[-1.263608,60.498182],[-1.265724,60.498795],[-1.265437,60.499408],[-1.268716,60.499319],[-1.26783,60.500257],[-1.270751,60.500681],[-1.270251,60.501491],[-1.272507,60.501544]]],[[[-1.193354,60.498191],[-1.193507,60.499601],[-1.194966,60.5003],[-1.195409,60.501827],[-1.197337,60.502191],[-1.200342,60.501163],[-1.202182,60.499199],[-1.20038,60.49798],[-1.197479,60.497604],[-1.195112,60.493867],[-1.195213,60.491289],[-1.193274,60.489377],[-1.190702,60.488251],[-1.188827,60.486305],[-1.184996,60.485974],[-1.181917,60.487127],[-1.182131,60.48932],[-1.183923,60.490082],[-1.184726,60.491075],[-1.184492,60.492566],[-1.185698,60.493251],[-1.185585,60.494215],[-1.188863,60.496615],[-1.189368,60.497443],[-1.193354,60.498191]]],[[[-1.199872,60.514745],[-1.201126,60.514088],[-1.20073,60.510925],[-1.199149,60.508954],[-1.197974,60.508982],[-1.197506,60.507283],[-1.195573,60.506665],[-1.192243,60.50805],[-1.191971,60.509112],[-1.194161,60.511119],[-1.197285,60.512929],[-1.198831,60.513383],[-1.199872,60.514745]]],[[[-1.225115,60.518521],[-1.226881,60.518567],[-1.229578,60.516975],[-1.231257,60.516455],[-1.23519,60.517282],[-1.235389,60.515011],[-1.234236,60.514461],[-1.23174,60.514106],[-1.229472,60.512221],[-1.227459,60.511868],[-1.225892,60.510772],[-1.221672,60.510932],[-1.219659,60.510606],[-1.218312,60.511316],[-1.21838,60.512273],[-1.220131,60.512943],[-1.223628,60.515572],[-1.22532,60.516417],[-1.22381,60.517095],[-1.225115,60.518521]]],[[[-1.287056,60.520074],[-1.288845,60.518573],[-1.292149,60.518079],[-1.294058,60.518493],[-1.294096,60.517299],[-1.2966,60.516567],[-1.298964,60.514394],[-1.299435,60.512978],[-1.297463,60.511967],[-1.295896,60.510666],[-1.293965,60.511217],[-1.293783,60.512957],[-1.288919,60.514453],[-1.285967,60.514821],[-1.284633,60.517039],[-1.282753,60.517867],[-1.283319,60.51978],[-1.286598,60.51952],[-1.287056,60.520074]]],[[[-1.476583,60.564751],[-1.478964,60.565069],[-1.478522,60.563852],[-1.476583,60.564751]]],[[[-1.265069,60.582466],[-1.266155,60.583597],[-1.267433,60.581986],[-1.267854,60.580718],[-1.267449,60.579309],[-1.266101,60.577986],[-1.26512,60.579672],[-1.262978,60.581391],[-1.263178,60.582493],[-1.265069,60.582466]]],[[[-1.208258,60.585722],[-1.209218,60.585248],[-1.208896,60.583145],[-1.206817,60.583815],[-1.208258,60.585722]]],[[[-1.036574,60.602578],[-1.038939,60.603178],[-1.037888,60.60137],[-1.035456,60.601488],[-1.036574,60.602578]]],[[[-1.428414,60.62088],[-1.430325,60.621547],[-1.431272,60.620613],[-1.434576,60.620328],[-1.436124,60.61964],[-1.437706,60.616439],[-1.435347,60.617291],[-1.434386,60.616425],[-1.432508,60.616234],[-1.431264,60.615477],[-1.42982,60.616447],[-1.427326,60.616605],[-1.424227,60.617656],[-1.422073,60.617864],[-1.420306,60.61759],[-1.418789,60.61609],[-1.416626,60.616946],[-1.416886,60.618407],[-1.420933,60.618437],[-1.422623,60.620136],[-1.426153,60.620162],[-1.428414,60.62088]]],[[[-0.988222,60.619003],[-0.989846,60.619347],[-0.993258,60.618924],[-0.99732,60.619327],[-0.999617,60.6189],[-1.000951,60.616553],[-0.999189,60.61416],[-0.999705,60.611336],[-1.001908,60.610109],[-1.003951,60.609594],[-1.005839,60.607027],[-1.00691,60.606321],[-1.011113,60.605665],[-1.014537,60.602682],[-1.013547,60.600129],[-1.011345,60.598663],[-1.006626,60.598615],[-1.002469,60.596927],[-1.000161,60.59748],[-1.00041,60.599763],[-1.001461,60.601822],[-1.003926,60.603582],[-1.003148,60.604232],[-1.002566,60.605947],[-0.994955,60.60695],[-0.993888,60.606601],[-0.992111,60.60425],[-0.988736,60.60315],[-0.986015,60.602851],[-0.985297,60.603613],[-0.983239,60.602839],[-0.980105,60.602979],[-0.977743,60.605114],[-0.977979,60.606896],[-0.979287,60.607994],[-0.977241,60.609109],[-0.972126,60.608882],[-0.970901,60.609296],[-0.971829,60.610483],[-0.970529,60.611712],[-0.968743,60.611595],[-0.969028,60.612953],[-0.971804,60.613841],[-0.970438,60.614863],[-0.970752,60.615615],[-0.972881,60.616475],[-0.974251,60.617626],[-0.980407,60.616811],[-0.982475,60.615826],[-0.98628,60.616524],[-0.988334,60.61745],[-0.988222,60.619003]]],[[[-0.866313,60.63268],[-0.869151,60.632825],[-0.877279,60.62985],[-0.878253,60.628915],[-0.879966,60.628347],[-0.881559,60.626923],[-0.882528,60.625283],[-0.885947,60.622591],[-0.890368,60.62155],[-0.891407,60.6219],[-0.89333,60.620991],[-0.897634,60.620425],[-0.899089,60.620639],[-0.902632,60.623118],[-0.905448,60.623625],[-0.910302,60.624098],[-0.911632,60.625029],[-0.910907,60.625665],[-0.912506,60.626738],[-0.913416,60.628348],[-0.914888,60.627399],[-0.91917,60.626694],[-0.922173,60.627142],[-0.923338,60.62696],[-0.926868,60.627433],[-0.930603,60.628603],[-0.931734,60.629597],[-0.936261,60.630794],[-0.936938,60.630229],[-0.936236,60.628778],[-0.937129,60.627771],[-0.936094,60.626977],[-0.937777,60.625861],[-0.938608,60.624186],[-0.941621,60.623415],[-0.944135,60.621424],[-0.947055,60.620688],[-0.945656,60.618751],[-0.94625,60.617912],[-0.945699,60.615434],[-0.945869,60.613971],[-0.948119,60.613375],[-0.949001,60.612325],[-0.947764,60.610979],[-0.947977,60.610106],[-0.94517,60.610265],[-0.944162,60.610915],[-0.940137,60.610241],[-0.939168,60.609522],[-0.939694,60.607668],[-0.937399,60.606318],[-0.93676,60.605365],[-0.938644,60.602999],[-0.938253,60.602236],[-0.934016,60.601316],[-0.932691,60.600347],[-0.928296,60.598443],[-0.928438,60.597919],[-0.926495,60.596734],[-0.924929,60.594989],[-0.924254,60.593084],[-0.921666,60.591136],[-0.920888,60.588821],[-0.917789,60.587924],[-0.917662,60.58548],[-0.916165,60.585477],[-0.916015,60.584492],[-0.914132,60.583888],[-0.913151,60.581721],[-0.914641,60.580917],[-0.912888,60.578684],[-0.911087,60.578439],[-0.912194,60.577354],[-0.910403,60.577019],[-0.911566,60.57567],[-0.910437,60.575225],[-0.909355,60.573838],[-0.909983,60.573358],[-0.908563,60.571645],[-0.904092,60.57111],[-0.903106,60.569243],[-0.900062,60.569981],[-0.898299,60.568418],[-0.895398,60.567626],[-0.896728,60.566888],[-0.895238,60.566157],[-0.895847,60.56517],[-0.89326,60.564515],[-0.894863,60.563514],[-0.894048,60.562834],[-0.89153,60.5631],[-0.887436,60.56202],[-0.885769,60.563811],[-0.884359,60.563449],[-0.881964,60.564915],[-0.878506,60.565223],[-0.874919,60.564771],[-0.87427,60.566642],[-0.8733,60.567267],[-0.869498,60.567473],[-0.867663,60.568557],[-0.866562,60.567448],[-0.867176,60.566202],[-0.8636,60.566844],[-0.860046,60.568834],[-0.860856,60.569936],[-0.865637,60.570691],[-0.867071,60.572979],[-0.86546,60.574182],[-0.867231,60.574664],[-0.868476,60.574279],[-0.870613,60.575281],[-0.870649,60.575811],[-0.872898,60.576467],[-0.873922,60.577971],[-0.87326,60.578396],[-0.875785,60.581345],[-0.878216,60.581769],[-0.880978,60.581586],[-0.881643,60.582696],[-0.887012,60.583378],[-0.889928,60.583515],[-0.891122,60.584643],[-0.895105,60.585847],[-0.896684,60.586942],[-0.897279,60.588757],[-0.896253,60.590628],[-0.894339,60.591889],[-0.890911,60.592918],[-0.88906,60.592601],[-0.88267,60.590315],[-0.879385,60.590275],[-0.876982,60.590878],[-0.874559,60.590947],[-0.872333,60.590167],[-0.871065,60.590215],[-0.869539,60.592671],[-0.867878,60.593637],[-0.864982,60.591686],[-0.861854,60.592634],[-0.859673,60.593609],[-0.856238,60.590798],[-0.8541,60.587886],[-0.853302,60.588541],[-0.85015,60.586326],[-0.849519,60.584655],[-0.847474,60.584496],[-0.848077,60.583352],[-0.846524,60.582946],[-0.845711,60.583842],[-0.843062,60.584953],[-0.842688,60.587353],[-0.840222,60.5877],[-0.838664,60.58626],[-0.836727,60.586776],[-0.834702,60.588007],[-0.831849,60.588426],[-0.829905,60.587564],[-0.830942,60.586421],[-0.828852,60.58355],[-0.829519,60.583178],[-0.825602,60.580327],[-0.824374,60.579134],[-0.822046,60.579321],[-0.819647,60.578357],[-0.819326,60.577087],[-0.816459,60.575318],[-0.813586,60.574822],[-0.811898,60.57592],[-0.811698,60.577186],[-0.810737,60.577903],[-0.808837,60.576334],[-0.807157,60.576518],[-0.807089,60.574456],[-0.80289,60.572839],[-0.804198,60.570352],[-0.804034,60.569472],[-0.802621,60.568567],[-0.800986,60.56831],[-0.798179,60.571363],[-0.795147,60.570535],[-0.792826,60.572047],[-0.793453,60.573729],[-0.794678,60.575473],[-0.793578,60.576611],[-0.791626,60.576878],[-0.789103,60.577756],[-0.789831,60.580381],[-0.7914,60.580807],[-0.790988,60.581736],[-0.792177,60.582354],[-0.789819,60.584363],[-0.788057,60.584885],[-0.784255,60.583741],[-0.78089,60.584282],[-0.782297,60.586484],[-0.778237,60.588288],[-0.777133,60.588412],[-0.776452,60.589726],[-0.774774,60.590839],[-0.774393,60.591823],[-0.771411,60.591854],[-0.770845,60.592367],[-0.772875,60.593597],[-0.771752,60.59442],[-0.771503,60.597024],[-0.769358,60.597637],[-0.769253,60.599047],[-0.768429,60.59973],[-0.766783,60.602229],[-0.765833,60.604501],[-0.769971,60.605055],[-0.771196,60.606429],[-0.772908,60.605288],[-0.775586,60.606878],[-0.774796,60.607827],[-0.775685,60.608922],[-0.774966,60.610956],[-0.77663,60.612165],[-0.775634,60.612498],[-0.777838,60.613884],[-0.775681,60.613932],[-0.774989,60.615288],[-0.777709,60.616003],[-0.779452,60.615275],[-0.780032,60.614026],[-0.781351,60.613722],[-0.781587,60.612405],[-0.782724,60.611927],[-0.78727,60.611263],[-0.788008,60.611895],[-0.790382,60.612068],[-0.792083,60.612631],[-0.794672,60.611047],[-0.794555,60.60917],[-0.793634,60.607913],[-0.795073,60.607028],[-0.795375,60.605899],[-0.797319,60.604296],[-0.796949,60.603299],[-0.798568,60.600961],[-0.800164,60.60067],[-0.800684,60.59974],[-0.804788,60.599731],[-0.805439,60.599049],[-0.807836,60.599028],[-0.81156,60.599861],[-0.812912,60.600646],[-0.810396,60.601883],[-0.809804,60.60301],[-0.808153,60.603913],[-0.80818,60.605216],[-0.81253,60.60606],[-0.814747,60.604101],[-0.818168,60.601832],[-0.819873,60.602647],[-0.819026,60.603476],[-0.81994,60.60417],[-0.823271,60.605339],[-0.822185,60.606291],[-0.824969,60.606917],[-0.824666,60.607965],[-0.82284,60.609622],[-0.821371,60.611627],[-0.822267,60.612437],[-0.823059,60.614515],[-0.822228,60.616981],[-0.824226,60.618552],[-0.824569,60.620496],[-0.823295,60.621061],[-0.826099,60.62382],[-0.828884,60.624001],[-0.829329,60.624959],[-0.83204,60.626543],[-0.830938,60.627099],[-0.831507,60.628179],[-0.834986,60.629188],[-0.83736,60.629027],[-0.836727,60.62786],[-0.840883,60.627998],[-0.843448,60.627642],[-0.851501,60.6285],[-0.854044,60.629468],[-0.856916,60.629489],[-0.857346,60.63057],[-0.858668,60.63072],[-0.85934,60.632004],[-0.861038,60.632021],[-0.866313,60.63268]]],[[[-1.30768,60.636832],[-1.309533,60.637565],[-1.310885,60.636501],[-1.311851,60.634791],[-1.313222,60.633385],[-1.316276,60.633007],[-1.318255,60.631018],[-1.320689,60.631469],[-1.320778,60.630679],[-1.322832,60.629374],[-1.323285,60.627287],[-1.324617,60.626043],[-1.323852,60.624158],[-1.327101,60.622547],[-1.330274,60.621777],[-1.33177,60.622386],[-1.331092,60.623552],[-1.331998,60.625565],[-1.333953,60.624323],[-1.334614,60.62539],[-1.33672,60.625477],[-1.338804,60.624926],[-1.340469,60.626447],[-1.343119,60.627643],[-1.343982,60.626629],[-1.345998,60.626164],[-1.345979,60.625188],[-1.344836,60.624594],[-1.346292,60.622833],[-1.34657,60.621657],[-1.348157,60.621452],[-1.350011,60.620464],[-1.349709,60.618957],[-1.350308,60.616386],[-1.351314,60.615166],[-1.350775,60.613854],[-1.34726,60.612492],[-1.344996,60.612088],[-1.343751,60.612421],[-1.340637,60.611952],[-1.339585,60.609499],[-1.337826,60.608442],[-1.337501,60.605865],[-1.335808,60.605235],[-1.334411,60.605514],[-1.333891,60.603371],[-1.331394,60.60157],[-1.331131,60.600495],[-1.333481,60.599741],[-1.338372,60.599604],[-1.339273,60.599877],[-1.3377,60.601764],[-1.337732,60.604452],[-1.340755,60.60461],[-1.343224,60.606689],[-1.34685,60.604755],[-1.34859,60.604874],[-1.347483,60.607078],[-1.348596,60.607642],[-1.348647,60.6087],[-1.349672,60.609975],[-1.353945,60.609145],[-1.358368,60.610221],[-1.358784,60.609262],[-1.361761,60.608283],[-1.361659,60.606541],[-1.362484,60.605689],[-1.364189,60.60582],[-1.364234,60.607145],[-1.363379,60.608535],[-1.363865,60.609279],[-1.365611,60.609386],[-1.36639,60.608532],[-1.368048,60.608672],[-1.370583,60.608013],[-1.369765,60.606957],[-1.370709,60.606273],[-1.373841,60.606297],[-1.375691,60.606756],[-1.376604,60.608332],[-1.378277,60.608311],[-1.378765,60.609163],[-1.38471,60.609069],[-1.386345,60.610137],[-1.387719,60.609811],[-1.388678,60.611714],[-1.390118,60.612605],[-1.392643,60.612058],[-1.395795,60.611818],[-1.39929,60.612049],[-1.402131,60.611081],[-1.403479,60.611187],[-1.403588,60.614209],[-1.407362,60.615454],[-1.410873,60.614412],[-1.412765,60.61486],[-1.416445,60.61493],[-1.418359,60.615657],[-1.42045,60.614162],[-1.418862,60.613082],[-1.42126,60.612748],[-1.419002,60.611354],[-1.422357,60.610875],[-1.424496,60.61006],[-1.423621,60.608954],[-1.428614,60.606546],[-1.431145,60.606353],[-1.431626,60.605222],[-1.43337,60.605173],[-1.434775,60.603218],[-1.431373,60.602893],[-1.428468,60.60309],[-1.427664,60.602537],[-1.422962,60.603055],[-1.42154,60.603726],[-1.419182,60.603835],[-1.418273,60.603145],[-1.419185,60.602033],[-1.420852,60.601161],[-1.427411,60.599506],[-1.428075,60.598438],[-1.432302,60.596542],[-1.434783,60.595924],[-1.435245,60.59679],[-1.436942,60.596547],[-1.438682,60.594509],[-1.440293,60.593576],[-1.44321,60.590226],[-1.444513,60.589574],[-1.445285,60.588077],[-1.444313,60.587293],[-1.444464,60.585237],[-1.441955,60.584587],[-1.438933,60.584899],[-1.436013,60.583841],[-1.433702,60.581668],[-1.435612,60.579765],[-1.432905,60.578961],[-1.432375,60.57794],[-1.435926,60.577698],[-1.436288,60.576409],[-1.434267,60.574747],[-1.435267,60.573256],[-1.437194,60.572627],[-1.440834,60.573114],[-1.442288,60.572504],[-1.445478,60.571992],[-1.450044,60.571907],[-1.450947,60.57108],[-1.450161,60.570239],[-1.45355,60.56883],[-1.456197,60.566039],[-1.459329,60.564144],[-1.465698,60.561709],[-1.467774,60.561575],[-1.472546,60.560664],[-1.475021,60.559209],[-1.471828,60.558802],[-1.470304,60.557216],[-1.470736,60.554766],[-1.473978,60.552184],[-1.483592,60.548437],[-1.489012,60.548086],[-1.493279,60.546248],[-1.492936,60.543737],[-1.495518,60.541772],[-1.497349,60.541687],[-1.497639,60.540701],[-1.496701,60.539764],[-1.496572,60.537322],[-1.494949,60.536198],[-1.494148,60.534126],[-1.492524,60.532984],[-1.490217,60.532516],[-1.488233,60.531589],[-1.48583,60.532024],[-1.482173,60.530574],[-1.477888,60.527383],[-1.473477,60.522468],[-1.470036,60.520084],[-1.46741,60.517388],[-1.464286,60.515329],[-1.455466,60.511307],[-1.452636,60.510897],[-1.449563,60.509861],[-1.445106,60.509401],[-1.439275,60.510338],[-1.434635,60.511733],[-1.429017,60.513211],[-1.424656,60.512354],[-1.410332,60.511798],[-1.406601,60.512204],[-1.403755,60.512941],[-1.399082,60.514852],[-1.396496,60.515018],[-1.396485,60.513636],[-1.394281,60.512714],[-1.393984,60.511978],[-1.396763,60.511926],[-1.4007,60.511244],[-1.406734,60.509381],[-1.413713,60.508087],[-1.416361,60.508153],[-1.417992,60.507761],[-1.427334,60.508043],[-1.433309,60.506787],[-1.43697,60.504654],[-1.444659,60.503793],[-1.447135,60.504328],[-1.44729,60.505003],[-1.449818,60.504615],[-1.451313,60.505261],[-1.4534,60.507469],[-1.456941,60.509109],[-1.458574,60.509019],[-1.462022,60.510189],[-1.464112,60.509888],[-1.465506,60.510356],[-1.467575,60.510247],[-1.46954,60.510906],[-1.469613,60.511653],[-1.474381,60.512886],[-1.479615,60.515585],[-1.486089,60.519995],[-1.487411,60.52119],[-1.490742,60.522078],[-1.49118,60.522542],[-1.495383,60.52354],[-1.496636,60.524417],[-1.501409,60.52496],[-1.503382,60.526801],[-1.504724,60.526807],[-1.508401,60.529393],[-1.511652,60.529481],[-1.514871,60.530742],[-1.516314,60.530823],[-1.518321,60.531697],[-1.517822,60.532965],[-1.518731,60.533767],[-1.518256,60.534524],[-1.520331,60.535196],[-1.522553,60.537166],[-1.520449,60.542223],[-1.520439,60.543474],[-1.521731,60.543426],[-1.519873,60.54576],[-1.520286,60.546882],[-1.519426,60.547687],[-1.520591,60.549051],[-1.522618,60.549449],[-1.521301,60.550678],[-1.524603,60.553122],[-1.527969,60.553836],[-1.53072,60.555403],[-1.533491,60.556289],[-1.534342,60.555482],[-1.539218,60.553602],[-1.540898,60.553297],[-1.543033,60.551102],[-1.545938,60.551388],[-1.549111,60.550087],[-1.550322,60.548701],[-1.55168,60.54843],[-1.555595,60.548403],[-1.555767,60.546433],[-1.559829,60.545205],[-1.560633,60.54262],[-1.561954,60.541284],[-1.560558,60.540076],[-1.562574,60.538235],[-1.564513,60.538684],[-1.566466,60.537806],[-1.566672,60.535525],[-1.56522,60.533837],[-1.566337,60.533453],[-1.565418,60.532366],[-1.567948,60.530914],[-1.567828,60.529158],[-1.568696,60.528492],[-1.569317,60.52693],[-1.568559,60.524463],[-1.566639,60.523396],[-1.566461,60.521422],[-1.568502,60.518216],[-1.566205,60.515645],[-1.567767,60.51301],[-1.569815,60.513257],[-1.572587,60.513039],[-1.572054,60.512014],[-1.575173,60.510101],[-1.576477,60.508817],[-1.576318,60.507763],[-1.575211,60.506732],[-1.57251,60.506397],[-1.567696,60.506821],[-1.564446,60.506027],[-1.563163,60.506354],[-1.561962,60.505507],[-1.561712,60.504267],[-1.564599,60.503697],[-1.568772,60.500492],[-1.570481,60.501103],[-1.573385,60.500478],[-1.575097,60.500719],[-1.577006,60.50318],[-1.576748,60.503919],[-1.580798,60.50589],[-1.582289,60.508168],[-1.585019,60.507717],[-1.584711,60.505764],[-1.585132,60.505231],[-1.588494,60.504571],[-1.589744,60.504709],[-1.590668,60.506286],[-1.592276,60.507437],[-1.594401,60.506171],[-1.596981,60.506012],[-1.599876,60.508372],[-1.602419,60.509037],[-1.605185,60.508453],[-1.60684,60.509315],[-1.608751,60.508697],[-1.610744,60.508747],[-1.612912,60.507093],[-1.615035,60.506951],[-1.614235,60.50568],[-1.613129,60.505838],[-1.612979,60.50417],[-1.614388,60.503421],[-1.614293,60.502382],[-1.616775,60.501443],[-1.616399,60.500138],[-1.616653,60.49852],[-1.617476,60.497594],[-1.618815,60.497676],[-1.619977,60.496041],[-1.62155,60.494708],[-1.624077,60.493198],[-1.622747,60.492164],[-1.625226,60.491312],[-1.623651,60.490766],[-1.628051,60.490145],[-1.630294,60.488851],[-1.629653,60.488327],[-1.631051,60.487363],[-1.632999,60.487219],[-1.631202,60.485937],[-1.632405,60.484854],[-1.630464,60.481509],[-1.627958,60.481529],[-1.625871,60.480679],[-1.62305,60.480131],[-1.618253,60.480744],[-1.617492,60.480345],[-1.618434,60.479178],[-1.616667,60.478983],[-1.615788,60.47812],[-1.612268,60.47715],[-1.612892,60.475196],[-1.614564,60.475296],[-1.616169,60.474128],[-1.613287,60.473312],[-1.611467,60.47416],[-1.605924,60.474534],[-1.606356,60.476294],[-1.607378,60.478285],[-1.606133,60.479051],[-1.603215,60.478744],[-1.602169,60.479658],[-1.600736,60.479774],[-1.597516,60.478849],[-1.595216,60.476727],[-1.593743,60.477465],[-1.592236,60.477044],[-1.591751,60.478604],[-1.5898,60.478259],[-1.588833,60.479642],[-1.585071,60.481752],[-1.581341,60.481674],[-1.58077,60.479708],[-1.57855,60.480641],[-1.57528,60.480426],[-1.573845,60.476374],[-1.572867,60.477168],[-1.571242,60.476414],[-1.571167,60.478191],[-1.569163,60.478696],[-1.568167,60.48016],[-1.568589,60.48142],[-1.565965,60.483431],[-1.56436,60.483491],[-1.560983,60.486465],[-1.561258,60.487563],[-1.558611,60.488861],[-1.55793,60.489651],[-1.554336,60.490686],[-1.55074,60.490534],[-1.548412,60.489817],[-1.546359,60.487952],[-1.546096,60.486275],[-1.54429,60.486253],[-1.542525,60.485102],[-1.542854,60.483572],[-1.539673,60.482717],[-1.536354,60.480017],[-1.533837,60.480676],[-1.532835,60.481881],[-1.53025,60.481939],[-1.525508,60.480899],[-1.523555,60.479838],[-1.523758,60.478563],[-1.52195,60.478829],[-1.521606,60.479614],[-1.519624,60.479253],[-1.516325,60.47938],[-1.515781,60.480464],[-1.51275,60.480606],[-1.5108,60.480151],[-1.510254,60.480881],[-1.507799,60.48185],[-1.506476,60.482871],[-1.504628,60.483332],[-1.502339,60.48461],[-1.499291,60.48464],[-1.496484,60.483684],[-1.496971,60.482231],[-1.496412,60.481402],[-1.497791,60.48073],[-1.496073,60.480215],[-1.494778,60.479043],[-1.495691,60.478433],[-1.493473,60.477566],[-1.493781,60.476331],[-1.495299,60.475703],[-1.498325,60.476318],[-1.500503,60.475151],[-1.504971,60.475036],[-1.50859,60.473221],[-1.506366,60.471945],[-1.506246,60.469944],[-1.507947,60.469561],[-1.507792,60.468782],[-1.511359,60.467232],[-1.515123,60.466793],[-1.514728,60.465617],[-1.512286,60.466045],[-1.510547,60.465006],[-1.511663,60.462094],[-1.507638,60.461043],[-1.505971,60.461253],[-1.504406,60.458675],[-1.502686,60.458243],[-1.502684,60.45754],[-1.501052,60.456836],[-1.502298,60.456244],[-1.502673,60.454657],[-1.500159,60.45442],[-1.496591,60.453237],[-1.496147,60.454607],[-1.494408,60.455128],[-1.494291,60.457368],[-1.490444,60.457257],[-1.49076,60.458795],[-1.488278,60.458513],[-1.48993,60.461132],[-1.488989,60.462673],[-1.48552,60.463615],[-1.485993,60.464182],[-1.48331,60.464796],[-1.483991,60.465441],[-1.482205,60.466745],[-1.482738,60.468306],[-1.482246,60.469327],[-1.480797,60.469876],[-1.481712,60.471088],[-1.484048,60.471096],[-1.485247,60.472371],[-1.489059,60.473342],[-1.489326,60.474441],[-1.487701,60.476087],[-1.4836,60.476814],[-1.480741,60.476898],[-1.477521,60.478387],[-1.47677,60.479602],[-1.474791,60.480578],[-1.473593,60.481742],[-1.471421,60.482419],[-1.466605,60.485984],[-1.465564,60.486321],[-1.465181,60.487924],[-1.463006,60.489973],[-1.457804,60.490642],[-1.454442,60.489689],[-1.453363,60.487847],[-1.457034,60.486147],[-1.458324,60.484768],[-1.457934,60.483364],[-1.461354,60.47968],[-1.464097,60.478073],[-1.464405,60.4767],[-1.465427,60.475831],[-1.464036,60.473345],[-1.462807,60.473097],[-1.465594,60.471725],[-1.466051,60.469958],[-1.467526,60.469286],[-1.464649,60.467254],[-1.463269,60.467123],[-1.459735,60.467544],[-1.456523,60.466843],[-1.454197,60.467392],[-1.452483,60.467268],[-1.451362,60.468155],[-1.444698,60.470002],[-1.441718,60.472115],[-1.437914,60.473536],[-1.436838,60.473367],[-1.433365,60.471723],[-1.430464,60.471252],[-1.432907,60.470383],[-1.434393,60.470862],[-1.439256,60.471225],[-1.440684,60.470869],[-1.441761,60.469618],[-1.440977,60.468509],[-1.443104,60.464895],[-1.447135,60.464476],[-1.44863,60.465012],[-1.451607,60.464698],[-1.453651,60.465563],[-1.456795,60.464978],[-1.462245,60.465279],[-1.464438,60.464609],[-1.465413,60.46337],[-1.46477,60.462114],[-1.46852,60.461829],[-1.469635,60.460383],[-1.467926,60.459232],[-1.465818,60.459223],[-1.466068,60.458353],[-1.464844,60.457621],[-1.466258,60.456177],[-1.46565,60.455003],[-1.466136,60.453762],[-1.464625,60.452722],[-1.461844,60.452438],[-1.462193,60.451185],[-1.461733,60.450049],[-1.45999,60.449911],[-1.451568,60.450856],[-1.446844,60.450564],[-1.446908,60.44966],[-1.444226,60.4492],[-1.440593,60.450159],[-1.439058,60.450072],[-1.435348,60.451374],[-1.431337,60.450998],[-1.424827,60.451578],[-1.424747,60.450648],[-1.426707,60.450022],[-1.429843,60.450482],[-1.431338,60.448802],[-1.436236,60.446994],[-1.436972,60.446171],[-1.438482,60.446065],[-1.441222,60.446831],[-1.441597,60.447757],[-1.443793,60.447385],[-1.4466,60.445843],[-1.446598,60.444828],[-1.449352,60.4443],[-1.449071,60.443752],[-1.45023,60.442343],[-1.448895,60.441776],[-1.449322,60.43859],[-1.45044,60.438139],[-1.450096,60.435719],[-1.450942,60.434157],[-1.454842,60.434977],[-1.456069,60.434677],[-1.456798,60.432044],[-1.456181,60.431467],[-1.457309,60.429513],[-1.453697,60.426538],[-1.455368,60.425828],[-1.454527,60.425089],[-1.45454,60.423911],[-1.452686,60.4236],[-1.450154,60.424295],[-1.448113,60.423551],[-1.449936,60.421773],[-1.451617,60.421007],[-1.450622,60.420009],[-1.454076,60.419233],[-1.452521,60.417101],[-1.452747,60.416022],[-1.445981,60.414093],[-1.442158,60.415031],[-1.440714,60.415938],[-1.439561,60.415117],[-1.437324,60.41456],[-1.433197,60.414378],[-1.430181,60.413418],[-1.427372,60.414503],[-1.427663,60.415929],[-1.425388,60.415745],[-1.42469,60.415065],[-1.419771,60.414995],[-1.416081,60.415733],[-1.412536,60.417532],[-1.409359,60.417102],[-1.404932,60.417282],[-1.40303,60.418037],[-1.400367,60.417657],[-1.399872,60.41941],[-1.397238,60.418478],[-1.394887,60.41659],[-1.395754,60.415256],[-1.393185,60.412816],[-1.390229,60.408361],[-1.392353,60.408178],[-1.39468,60.408673],[-1.395453,60.40995],[-1.397962,60.412137],[-1.400776,60.413788],[-1.404075,60.412606],[-1.406496,60.414119],[-1.408943,60.413847],[-1.411229,60.411936],[-1.413137,60.411356],[-1.413578,60.410025],[-1.413031,60.408159],[-1.415374,60.406055],[-1.415756,60.404463],[-1.414671,60.403749],[-1.412817,60.403902],[-1.411132,60.403292],[-1.409897,60.402291],[-1.409787,60.400298],[-1.405363,60.398621],[-1.402564,60.398353],[-1.400751,60.397272],[-1.39786,60.397057],[-1.395945,60.398593],[-1.394078,60.398458],[-1.392925,60.400433],[-1.39189,60.401004],[-1.390515,60.399259],[-1.386887,60.398422],[-1.38866,60.397558],[-1.390473,60.39777],[-1.390607,60.396786],[-1.393254,60.396412],[-1.394763,60.395283],[-1.398,60.39638],[-1.399707,60.396288],[-1.40186,60.39518],[-1.404817,60.394477],[-1.407744,60.395816],[-1.409881,60.394632],[-1.408961,60.393286],[-1.41074,60.392782],[-1.412329,60.390809],[-1.412241,60.388977],[-1.409845,60.386583],[-1.406663,60.385855],[-1.40627,60.384633],[-1.405068,60.383799],[-1.401415,60.382639],[-1.398022,60.382499],[-1.396745,60.381386],[-1.393322,60.38026],[-1.391813,60.379203],[-1.389824,60.380016],[-1.387633,60.379833],[-1.386454,60.378862],[-1.382635,60.377135],[-1.380215,60.376741],[-1.377697,60.376824],[-1.376066,60.377524],[-1.376623,60.378962],[-1.375091,60.379963],[-1.374127,60.381237],[-1.373905,60.384567],[-1.370872,60.385115],[-1.369039,60.386239],[-1.368092,60.387576],[-1.367354,60.39076],[-1.365918,60.392081],[-1.363174,60.392506],[-1.359365,60.394324],[-1.356994,60.39487],[-1.352725,60.394122],[-1.351689,60.391617],[-1.353011,60.389739],[-1.352335,60.388968],[-1.35255,60.386917],[-1.350954,60.385157],[-1.347928,60.385083],[-1.345646,60.384364],[-1.343692,60.382693],[-1.345698,60.382115],[-1.347329,60.382648],[-1.349623,60.381931],[-1.349989,60.380948],[-1.349143,60.379988],[-1.349725,60.378566],[-1.350985,60.378041],[-1.351851,60.376679],[-1.351524,60.374882],[-1.352597,60.373416],[-1.356275,60.372956],[-1.358091,60.37337],[-1.360157,60.373007],[-1.363284,60.371385],[-1.362756,60.370423],[-1.364355,60.369334],[-1.359874,60.36866],[-1.357541,60.368889],[-1.355178,60.368678],[-1.350931,60.367878],[-1.347128,60.365913],[-1.343153,60.365256],[-1.340731,60.365365],[-1.33601,60.366172],[-1.334896,60.366997],[-1.332888,60.367576],[-1.330176,60.367764],[-1.328333,60.368343],[-1.32422,60.368566],[-1.322827,60.368036],[-1.313646,60.369247],[-1.307587,60.369848],[-1.301995,60.369783],[-1.293553,60.367346],[-1.292074,60.366561],[-1.291439,60.365319],[-1.287314,60.363277],[-1.286585,60.361769],[-1.286643,60.359143],[-1.285528,60.358315],[-1.284825,60.35687],[-1.281383,60.355981],[-1.278983,60.355936],[-1.276355,60.35545],[-1.270564,60.356107],[-1.271145,60.355272],[-1.269642,60.354054],[-1.267054,60.353649],[-1.263877,60.352641],[-1.261533,60.351308],[-1.265788,60.350545],[-1.269599,60.349081],[-1.271169,60.348842],[-1.273131,60.351105],[-1.276571,60.352643],[-1.278816,60.353228],[-1.282402,60.35332],[-1.284105,60.353755],[-1.289764,60.356906],[-1.29139,60.358387],[-1.300359,60.360643],[-1.304306,60.360116],[-1.306889,60.358715],[-1.312201,60.358516],[-1.316562,60.357875],[-1.318215,60.358392],[-1.32096,60.358458],[-1.324747,60.357645],[-1.327856,60.357587],[-1.33257,60.359282],[-1.337373,60.35998],[-1.339612,60.359748],[-1.340923,60.358579],[-1.340981,60.357436],[-1.337099,60.354321],[-1.335057,60.354028],[-1.333927,60.352963],[-1.335598,60.351172],[-1.337333,60.350417],[-1.338712,60.347756],[-1.337741,60.344699],[-1.338189,60.342708],[-1.337153,60.341086],[-1.334549,60.338714],[-1.332047,60.338485],[-1.330608,60.337433],[-1.33267,60.336597],[-1.335542,60.337065],[-1.336685,60.334849],[-1.338757,60.333636],[-1.339307,60.334561],[-1.34278,60.33576],[-1.345538,60.337421],[-1.346699,60.338849],[-1.347131,60.343066],[-1.348458,60.344684],[-1.350546,60.345354],[-1.355899,60.345069],[-1.359985,60.342421],[-1.360498,60.34182],[-1.363788,60.34175],[-1.365086,60.341132],[-1.368272,60.337466],[-1.370189,60.336721],[-1.368323,60.335307],[-1.36738,60.333489],[-1.36925,60.330756],[-1.367022,60.329532],[-1.366524,60.327662],[-1.367409,60.326327],[-1.368792,60.32602],[-1.368933,60.324551],[-1.36979,60.323487],[-1.371348,60.32306],[-1.375037,60.323729],[-1.375999,60.32266],[-1.374223,60.321821],[-1.369706,60.321311],[-1.3682,60.319643],[-1.367341,60.315827],[-1.368468,60.313264],[-1.368207,60.311578],[-1.369305,60.311131],[-1.366737,60.310018],[-1.36609,60.307967],[-1.366282,60.306591],[-1.364401,60.304571],[-1.359409,60.30297],[-1.357617,60.303842],[-1.355381,60.303964],[-1.353878,60.304521],[-1.348786,60.304427],[-1.344761,60.304928],[-1.341415,60.303819],[-1.34011,60.303005],[-1.341612,60.302134],[-1.344517,60.302798],[-1.345639,60.302713],[-1.347478,60.30359],[-1.351987,60.303031],[-1.353706,60.303095],[-1.358036,60.300405],[-1.361681,60.301338],[-1.362803,60.30058],[-1.36269,60.29922],[-1.36615,60.298512],[-1.367283,60.297462],[-1.367,60.293958],[-1.367462,60.293515],[-1.3679,60.290721],[-1.367043,60.288768],[-1.368618,60.286211],[-1.369606,60.285672],[-1.376688,60.285268],[-1.375396,60.286484],[-1.378245,60.286147],[-1.380274,60.287341],[-1.381325,60.290904],[-1.381388,60.295124],[-1.380347,60.297163],[-1.379051,60.297728],[-1.380218,60.299702],[-1.381714,60.300428],[-1.384858,60.301178],[-1.385966,60.302739],[-1.388663,60.304024],[-1.38985,60.305218],[-1.388933,60.306304],[-1.386281,60.306344],[-1.385053,60.30715],[-1.386052,60.310832],[-1.387694,60.312654],[-1.387712,60.313736],[-1.389732,60.314899],[-1.392402,60.314862],[-1.394372,60.315544],[-1.394069,60.316265],[-1.396993,60.31632],[-1.399687,60.316892],[-1.403666,60.318388],[-1.409528,60.319853],[-1.412408,60.320168],[-1.412939,60.31881],[-1.413998,60.318851],[-1.414888,60.317669],[-1.416661,60.316676],[-1.417943,60.314828],[-1.419696,60.315509],[-1.419975,60.316662],[-1.421262,60.317515],[-1.421355,60.318345],[-1.422821,60.319486],[-1.421886,60.320627],[-1.422103,60.321701],[-1.423806,60.322139],[-1.425817,60.322067],[-1.423091,60.323676],[-1.425116,60.324884],[-1.422983,60.325153],[-1.424205,60.327475],[-1.425723,60.327579],[-1.42664,60.328805],[-1.430546,60.328112],[-1.429552,60.326963],[-1.430201,60.325557],[-1.433448,60.324699],[-1.434308,60.32209],[-1.436606,60.321638],[-1.443062,60.322151],[-1.442123,60.320835],[-1.445234,60.321521],[-1.447216,60.322674],[-1.449076,60.322413],[-1.449055,60.320838],[-1.446668,60.3208],[-1.445726,60.319201],[-1.447266,60.318292],[-1.449002,60.318201],[-1.450674,60.317252],[-1.452872,60.317907],[-1.455167,60.317549],[-1.456673,60.316064],[-1.458233,60.315559],[-1.45925,60.313673],[-1.462254,60.31376],[-1.463518,60.312819],[-1.462495,60.312263],[-1.46453,60.311234],[-1.464166,60.310236],[-1.462978,60.309854],[-1.460299,60.310445],[-1.45658,60.310738],[-1.456457,60.310191],[-1.45391,60.309907],[-1.452078,60.308896],[-1.449965,60.308296],[-1.446039,60.310341],[-1.444198,60.309503],[-1.44394,60.30873],[-1.446701,60.307726],[-1.450201,60.307705],[-1.451874,60.306128],[-1.455569,60.307009],[-1.457355,60.306249],[-1.459087,60.306539],[-1.460297,60.305587],[-1.4634,60.306089],[-1.465494,60.305959],[-1.465977,60.304965],[-1.463321,60.30491],[-1.462018,60.303997],[-1.462219,60.30306],[-1.463418,60.302552],[-1.463283,60.301657],[-1.460459,60.302028],[-1.457557,60.300733],[-1.454281,60.301227],[-1.453214,60.300485],[-1.446163,60.29995],[-1.443954,60.300454],[-1.442654,60.298735],[-1.444557,60.297246],[-1.449084,60.297518],[-1.449324,60.296568],[-1.450956,60.296243],[-1.451811,60.294958],[-1.453042,60.295201],[-1.45333,60.296533],[-1.452157,60.29898],[-1.45652,60.299525],[-1.457799,60.29848],[-1.458914,60.299518],[-1.462598,60.299795],[-1.466725,60.299022],[-1.467489,60.299627],[-1.468079,60.301549],[-1.4673,60.302364],[-1.469842,60.302742],[-1.471138,60.305514],[-1.473815,60.306697],[-1.474627,60.307418],[-1.476638,60.307733],[-1.47817,60.307127],[-1.478328,60.30627],[-1.480115,60.306367],[-1.482298,60.305832],[-1.485059,60.307441],[-1.48801,60.306797],[-1.488702,60.304617],[-1.486203,60.304424],[-1.481353,60.303104],[-1.481773,60.301594],[-1.480106,60.299622],[-1.481003,60.296879],[-1.480351,60.295555],[-1.480656,60.294211],[-1.478646,60.293309],[-1.481306,60.290886],[-1.478881,60.290599],[-1.477499,60.28944],[-1.478117,60.288764],[-1.474267,60.288687],[-1.473911,60.288006],[-1.469652,60.289436],[-1.462689,60.291047],[-1.460519,60.289359],[-1.459279,60.28886],[-1.462058,60.287632],[-1.465106,60.288709],[-1.467377,60.288641],[-1.470355,60.287338],[-1.468836,60.286766],[-1.468334,60.285359],[-1.469063,60.283898],[-1.470706,60.283496],[-1.471727,60.285224],[-1.472956,60.284152],[-1.476997,60.283072],[-1.477055,60.282255],[-1.479122,60.281327],[-1.479421,60.280145],[-1.476723,60.279631],[-1.475115,60.279779],[-1.472077,60.279228],[-1.471957,60.27828],[-1.47573,60.276365],[-1.477058,60.274722],[-1.47984,60.274284],[-1.481221,60.27442],[-1.479501,60.276267],[-1.480301,60.277694],[-1.480455,60.279384],[-1.482031,60.280107],[-1.480768,60.282572],[-1.481659,60.283561],[-1.47983,60.28494],[-1.478261,60.283972],[-1.47695,60.284183],[-1.477405,60.285833],[-1.479086,60.286229],[-1.481483,60.285021],[-1.482553,60.286123],[-1.484644,60.286042],[-1.483613,60.289074],[-1.484189,60.290065],[-1.483714,60.291342],[-1.486072,60.294098],[-1.487491,60.294943],[-1.48758,60.295887],[-1.486552,60.29673],[-1.489305,60.298015],[-1.488016,60.299597],[-1.488532,60.300821],[-1.490137,60.301046],[-1.491516,60.305774],[-1.491167,60.306929],[-1.493686,60.30835],[-1.495371,60.30999],[-1.4957,60.312173],[-1.495033,60.313085],[-1.495723,60.314162],[-1.49774,60.314839],[-1.496564,60.317209],[-1.498361,60.318042],[-1.501695,60.317228],[-1.502585,60.318212],[-1.505347,60.319523],[-1.508653,60.318943],[-1.510738,60.319004],[-1.512871,60.317961],[-1.514417,60.317846],[-1.517423,60.31669],[-1.518271,60.315777],[-1.522955,60.314842],[-1.525611,60.313284],[-1.526145,60.313758],[-1.531529,60.312066],[-1.532937,60.311075],[-1.534895,60.31039],[-1.536944,60.30787],[-1.539611,60.308723],[-1.54179,60.308564],[-1.544713,60.308907],[-1.54838,60.307271],[-1.549048,60.30632],[-1.550634,60.306004],[-1.550096,60.304992],[-1.551932,60.302422],[-1.550802,60.301386],[-1.54878,60.301054],[-1.548857,60.299277],[-1.545387,60.29926],[-1.544194,60.29888],[-1.542133,60.299527],[-1.538738,60.299714],[-1.536739,60.299146],[-1.535636,60.297741],[-1.536353,60.295536],[-1.535177,60.294194],[-1.539437,60.295103],[-1.540909,60.295005],[-1.542398,60.296161],[-1.543738,60.296205],[-1.545693,60.297054],[-1.546998,60.296759],[-1.548064,60.295564],[-1.549916,60.295066],[-1.552253,60.296137],[-1.554107,60.296144],[-1.554969,60.296734],[-1.557626,60.296766],[-1.559538,60.297589],[-1.561968,60.296726],[-1.565982,60.294858],[-1.568372,60.2947],[-1.570479,60.295412],[-1.569295,60.296601],[-1.570275,60.297193],[-1.570574,60.299705],[-1.574051,60.301597],[-1.577238,60.301579],[-1.581615,60.299519],[-1.577069,60.298526],[-1.575359,60.297838],[-1.575736,60.29706],[-1.577518,60.29666],[-1.577206,60.29493],[-1.57491,60.294111],[-1.572238,60.293895],[-1.570968,60.294726],[-1.568999,60.293081],[-1.57046,60.291955],[-1.571413,60.290037],[-1.570027,60.287837],[-1.572202,60.287475],[-1.573745,60.2877],[-1.574988,60.288786],[-1.5764,60.288687],[-1.57811,60.289344],[-1.577668,60.289967],[-1.579413,60.291418],[-1.581461,60.292554],[-1.583787,60.293066],[-1.583732,60.294663],[-1.586094,60.296399],[-1.588862,60.296],[-1.589353,60.294901],[-1.591668,60.29494],[-1.592519,60.29568],[-1.595,60.296361],[-1.595414,60.298947],[-1.59609,60.30076],[-1.593389,60.300352],[-1.593364,60.30164],[-1.597504,60.302519],[-1.599821,60.302567],[-1.597341,60.304549],[-1.601716,60.305595],[-1.601209,60.306722],[-1.605448,60.307385],[-1.6063,60.307809],[-1.610047,60.306863],[-1.613668,60.305271],[-1.61487,60.305412],[-1.617831,60.306571],[-1.619891,60.306363],[-1.620897,60.306998],[-1.62241,60.306115],[-1.624822,60.305855],[-1.626959,60.304984],[-1.633177,60.304996],[-1.639001,60.306349],[-1.63979,60.307423],[-1.642719,60.30807],[-1.64439,60.306696],[-1.644689,60.305483],[-1.645728,60.304455],[-1.648209,60.303716],[-1.650345,60.303531],[-1.653642,60.303831],[-1.655135,60.304494],[-1.657321,60.304423],[-1.659018,60.303771],[-1.661769,60.303778],[-1.663857,60.304432],[-1.663765,60.305639],[-1.666073,60.305784],[-1.667946,60.302364],[-1.670468,60.301803],[-1.672409,60.302379],[-1.680116,60.301347],[-1.682423,60.30149],[-1.686669,60.300957],[-1.688475,60.300198],[-1.689887,60.298809],[-1.692991,60.298423],[-1.693515,60.295624],[-1.697032,60.293865],[-1.697853,60.29111],[-1.702718,60.289146],[-1.701459,60.287619],[-1.69951,60.286939],[-1.702,60.285566],[-1.700184,60.283461],[-1.698646,60.283641],[-1.691329,60.282716],[-1.693814,60.281599],[-1.692394,60.281051],[-1.690544,60.282088],[-1.685134,60.281092],[-1.680618,60.27876],[-1.680192,60.277067],[-1.680915,60.276148],[-1.688451,60.275079],[-1.686856,60.273422],[-1.68981,60.272771],[-1.687657,60.2718],[-1.685026,60.271664],[-1.684177,60.26974],[-1.685132,60.269114],[-1.688134,60.268933],[-1.687802,60.267747],[-1.686688,60.266958],[-1.688133,60.266185],[-1.688644,60.264678],[-1.689648,60.264189],[-1.693077,60.264257],[-1.696554,60.265356],[-1.696939,60.263978],[-1.695671,60.262873],[-1.693354,60.262712],[-1.692582,60.263456],[-1.690765,60.263071],[-1.69125,60.260381],[-1.694563,60.259996],[-1.697968,60.25894],[-1.699698,60.256199],[-1.702916,60.255202],[-1.702811,60.254181],[-1.700559,60.2543],[-1.697426,60.254988],[-1.696503,60.254109],[-1.692615,60.253621],[-1.688783,60.254739],[-1.687493,60.254672],[-1.686468,60.253764],[-1.687048,60.252169],[-1.685949,60.25142],[-1.68688,60.250454],[-1.689805,60.24973],[-1.693126,60.249926],[-1.693324,60.248825],[-1.69528,60.248668],[-1.697917,60.247231],[-1.697357,60.246449],[-1.692254,60.247219],[-1.691783,60.245844],[-1.693487,60.245393],[-1.692088,60.243888],[-1.690442,60.243543],[-1.693235,60.241069],[-1.69082,60.240582],[-1.691921,60.239775],[-1.690884,60.238118],[-1.692201,60.235915],[-1.691381,60.234891],[-1.689703,60.234071],[-1.685992,60.233879],[-1.68627,60.235436],[-1.684254,60.23631],[-1.680561,60.235592],[-1.67936,60.234534],[-1.675873,60.233801],[-1.67471,60.232519],[-1.668873,60.232338],[-1.666471,60.230489],[-1.663606,60.230094],[-1.665012,60.22945],[-1.661478,60.228988],[-1.660281,60.227697],[-1.659229,60.228144],[-1.655071,60.226854],[-1.652123,60.227904],[-1.645547,60.228721],[-1.643846,60.229786],[-1.641391,60.229904],[-1.641007,60.229202],[-1.638643,60.229761],[-1.637105,60.229087],[-1.638063,60.228474],[-1.637627,60.22745],[-1.639637,60.227224],[-1.639505,60.226228],[-1.643037,60.224805],[-1.645046,60.224294],[-1.646876,60.224434],[-1.646949,60.223471],[-1.650779,60.222365],[-1.652257,60.220856],[-1.651798,60.219944],[-1.64979,60.219481],[-1.649104,60.216924],[-1.647766,60.216342],[-1.646235,60.216508],[-1.639298,60.213513],[-1.636903,60.213026],[-1.632902,60.212648],[-1.630583,60.213404],[-1.626506,60.212503],[-1.62372,60.210808],[-1.625039,60.209878],[-1.623261,60.209082],[-1.626329,60.208216],[-1.626976,60.207697],[-1.623428,60.20651],[-1.622112,60.20702],[-1.619853,60.20639],[-1.616395,60.208299],[-1.614261,60.207934],[-1.611661,60.208236],[-1.613725,60.209145],[-1.612652,60.209932],[-1.60868,60.209332],[-1.607193,60.210019],[-1.607374,60.21072],[-1.603007,60.211529],[-1.600495,60.210342],[-1.597813,60.210597],[-1.59864,60.21137],[-1.59747,60.212078],[-1.599288,60.213161],[-1.598597,60.214299],[-1.600476,60.215442],[-1.603648,60.216143],[-1.607874,60.21861],[-1.610438,60.218147],[-1.612111,60.220112],[-1.608888,60.219548],[-1.60684,60.218737],[-1.604455,60.218525],[-1.604916,60.219485],[-1.602452,60.220877],[-1.598843,60.219763],[-1.596992,60.219785],[-1.593887,60.219203],[-1.589994,60.219145],[-1.587817,60.218797],[-1.587619,60.2196],[-1.588742,60.220292],[-1.58763,60.221347],[-1.588981,60.221771],[-1.591245,60.221759],[-1.593965,60.223084],[-1.591246,60.223002],[-1.587874,60.221703],[-1.585351,60.221901],[-1.579706,60.219585],[-1.57535,60.219168],[-1.574463,60.220237],[-1.571803,60.221711],[-1.572132,60.222546],[-1.570181,60.223488],[-1.569395,60.226217],[-1.566994,60.226899],[-1.566795,60.228274],[-1.561698,60.227137],[-1.562451,60.226265],[-1.561405,60.224453],[-1.56174,60.223667],[-1.564065,60.223293],[-1.562869,60.221908],[-1.557441,60.220713],[-1.554292,60.221349],[-1.553006,60.222459],[-1.55085,60.220865],[-1.552314,60.220123],[-1.553701,60.220789],[-1.558039,60.220144],[-1.558104,60.218542],[-1.554844,60.217886],[-1.554493,60.216071],[-1.555088,60.215363],[-1.557277,60.21542],[-1.557274,60.21296],[-1.5596,60.210968],[-1.559425,60.207925],[-1.559061,60.20682],[-1.559855,60.206135],[-1.562111,60.206076],[-1.56156,60.204369],[-1.562939,60.203488],[-1.560841,60.200518],[-1.558675,60.199999],[-1.557651,60.19903],[-1.556243,60.199372],[-1.555172,60.200631],[-1.555305,60.202426],[-1.554087,60.202484],[-1.551168,60.200293],[-1.54971,60.200926],[-1.55003,60.201674],[-1.551935,60.202226],[-1.553155,60.203316],[-1.551893,60.204841],[-1.550693,60.207269],[-1.547955,60.209413],[-1.546124,60.209755],[-1.546248,60.210699],[-1.543024,60.210051],[-1.540635,60.210347],[-1.540932,60.212557],[-1.537617,60.215563],[-1.535806,60.215876],[-1.53479,60.216761],[-1.532973,60.217252],[-1.526923,60.21673],[-1.524696,60.21722],[-1.521795,60.218655],[-1.52088,60.219635],[-1.522247,60.223685],[-1.520935,60.22514],[-1.51778,60.226093],[-1.517841,60.227472],[-1.516281,60.22801],[-1.514697,60.229176],[-1.515753,60.230122],[-1.520484,60.229434],[-1.521671,60.230431],[-1.523337,60.230661],[-1.525323,60.231903],[-1.52812,60.232631],[-1.530398,60.233809],[-1.531171,60.23577],[-1.529399,60.238128],[-1.528035,60.238682],[-1.529388,60.240281],[-1.528242,60.241346],[-1.528716,60.242756],[-1.532956,60.244941],[-1.534176,60.246817],[-1.530255,60.246953],[-1.531261,60.245962],[-1.528688,60.243923],[-1.525151,60.242852],[-1.521242,60.242851],[-1.51807,60.242374],[-1.516995,60.241793],[-1.515297,60.24193],[-1.513853,60.240942],[-1.514928,60.240156],[-1.520156,60.23915],[-1.521886,60.237801],[-1.521847,60.23672],[-1.520408,60.236134],[-1.518816,60.236301],[-1.517802,60.234445],[-1.515719,60.232461],[-1.510925,60.231777],[-1.497863,60.232163],[-1.494012,60.231714],[-1.49455,60.230993],[-1.500738,60.229028],[-1.503045,60.228979],[-1.505504,60.228437],[-1.505689,60.225884],[-1.50714,60.224097],[-1.506094,60.223334],[-1.506808,60.221722],[-1.505083,60.218648],[-1.506307,60.217039],[-1.50667,60.215229],[-1.503449,60.21494],[-1.498625,60.216358],[-1.495275,60.216171],[-1.491543,60.216652],[-1.489436,60.217284],[-1.477749,60.218863],[-1.473776,60.220965],[-1.471293,60.221245],[-1.470214,60.220637],[-1.471562,60.219678],[-1.47221,60.217963],[-1.475164,60.21655],[-1.479446,60.216002],[-1.480593,60.215416],[-1.486226,60.21511],[-1.490358,60.21395],[-1.496582,60.213476],[-1.499029,60.212762],[-1.500826,60.210865],[-1.502423,60.210284],[-1.504167,60.208585],[-1.50386,60.207734],[-1.501942,60.206887],[-1.499108,60.206369],[-1.494883,60.206614],[-1.491703,60.20754],[-1.487575,60.207304],[-1.485767,60.208501],[-1.483274,60.20849],[-1.481332,60.207671],[-1.481788,60.206882],[-1.484132,60.206327],[-1.483856,60.205162],[-1.484687,60.204527],[-1.491221,60.204243],[-1.497428,60.204747],[-1.502835,60.206164],[-1.506738,60.206971],[-1.507889,60.207503],[-1.510152,60.207676],[-1.512004,60.208447],[-1.515092,60.208835],[-1.520463,60.207993],[-1.525036,60.208027],[-1.528385,60.207294],[-1.53031,60.207621],[-1.530227,60.205899],[-1.534701,60.204007],[-1.537459,60.204089],[-1.541255,60.20486],[-1.542026,60.203583],[-1.539387,60.201042],[-1.539157,60.20009],[-1.540763,60.198749],[-1.542037,60.19899],[-1.546055,60.198223],[-1.547532,60.197061],[-1.54713,60.196153],[-1.545627,60.195857],[-1.5458,60.194483],[-1.544292,60.193979],[-1.545289,60.192874],[-1.544975,60.19158],[-1.546882,60.191559],[-1.545286,60.190236],[-1.547444,60.189581],[-1.544969,60.187968],[-1.546926,60.18656],[-1.545719,60.185197],[-1.543429,60.184796],[-1.542298,60.183718],[-1.539858,60.182313],[-1.540498,60.180922],[-1.539028,60.180847],[-1.532311,60.178606],[-1.531683,60.179525],[-1.5333,60.18154],[-1.530356,60.181174],[-1.529324,60.182618],[-1.528163,60.182287],[-1.528419,60.180868],[-1.527131,60.179643],[-1.525883,60.17978],[-1.525697,60.181069],[-1.524281,60.181657],[-1.522369,60.181094],[-1.522086,60.180024],[-1.518607,60.179775],[-1.517163,60.181497],[-1.514371,60.181665],[-1.512471,60.183153],[-1.511789,60.182082],[-1.513263,60.181206],[-1.513007,60.1804],[-1.510475,60.179985],[-1.510083,60.178144],[-1.513534,60.177093],[-1.513961,60.176129],[-1.513277,60.174237],[-1.510242,60.173952],[-1.509463,60.173127],[-1.510184,60.171954],[-1.509138,60.170791],[-1.51033,60.169364],[-1.50976,60.16832],[-1.512486,60.166719],[-1.509943,60.165721],[-1.510561,60.164668],[-1.508374,60.163753],[-1.507833,60.162763],[-1.505527,60.16319],[-1.503353,60.16255],[-1.499348,60.162223],[-1.495622,60.163151],[-1.496175,60.165029],[-1.49504,60.166774],[-1.489203,60.166733],[-1.487398,60.163878],[-1.490143,60.162866],[-1.490976,60.161651],[-1.490577,60.160059],[-1.486112,60.158982],[-1.487326,60.161971],[-1.485485,60.161441],[-1.484002,60.161993],[-1.482106,60.160842],[-1.478638,60.161045],[-1.476395,60.160711],[-1.474604,60.159804],[-1.471995,60.160696],[-1.469242,60.159864],[-1.47031,60.159096],[-1.470774,60.156271],[-1.467614,60.15693],[-1.466241,60.15555],[-1.463954,60.154984],[-1.465207,60.153478],[-1.46417,60.152224],[-1.461886,60.152209],[-1.463398,60.150909],[-1.46284,60.149857],[-1.463973,60.149067],[-1.464172,60.147162],[-1.461199,60.146649],[-1.455544,60.148338],[-1.455649,60.149063],[-1.452,60.15244],[-1.452747,60.154172],[-1.451459,60.155283],[-1.450942,60.15742],[-1.452364,60.160342],[-1.450182,60.1605],[-1.449912,60.161782],[-1.451035,60.163126],[-1.450564,60.163787],[-1.451672,60.16618],[-1.451043,60.167281],[-1.452503,60.168258],[-1.451245,60.169099],[-1.451577,60.17027],[-1.450488,60.171257],[-1.452293,60.173294],[-1.451986,60.174536],[-1.453172,60.175134],[-1.45346,60.176356],[-1.452132,60.177002],[-1.449974,60.177253],[-1.448299,60.176631],[-1.447267,60.175267],[-1.445191,60.176021],[-1.445029,60.177215],[-1.442845,60.178849],[-1.441298,60.179157],[-1.441604,60.180087],[-1.439319,60.180529],[-1.439885,60.182254],[-1.439643,60.183761],[-1.438544,60.185586],[-1.4393,60.187887],[-1.438497,60.188767],[-1.43538,60.188182],[-1.435188,60.187291],[-1.433209,60.185294],[-1.430777,60.184112],[-1.432135,60.183261],[-1.43264,60.181882],[-1.436299,60.180549],[-1.438462,60.179311],[-1.436198,60.177911],[-1.436996,60.176175],[-1.438451,60.175409],[-1.437661,60.174167],[-1.4393,60.173698],[-1.438767,60.172183],[-1.437255,60.172077],[-1.434833,60.173028],[-1.43321,60.172263],[-1.433664,60.170783],[-1.434895,60.169405],[-1.432135,60.169479],[-1.430387,60.169081],[-1.427884,60.167503],[-1.425534,60.167873],[-1.425052,60.168665],[-1.422836,60.168572],[-1.422913,60.166763],[-1.421634,60.165871],[-1.420924,60.16455],[-1.417647,60.166974],[-1.416266,60.167143],[-1.416092,60.168286],[-1.413714,60.169987],[-1.414536,60.171231],[-1.413113,60.171636],[-1.413231,60.172638],[-1.411439,60.174071],[-1.410791,60.175523],[-1.409273,60.175759],[-1.407978,60.177603],[-1.405731,60.178218],[-1.404499,60.1791],[-1.403207,60.178807],[-1.402095,60.18042],[-1.402821,60.181194],[-1.401694,60.182894],[-1.40136,60.184909],[-1.40404,60.184053],[-1.405129,60.184103],[-1.40738,60.185101],[-1.40783,60.18636],[-1.405649,60.187308],[-1.405722,60.188767],[-1.40651,60.189288],[-1.405047,60.190699],[-1.405331,60.191913],[-1.404338,60.192999],[-1.406589,60.193153],[-1.406857,60.194308],[-1.404625,60.19608],[-1.40515,60.196927],[-1.403638,60.198756],[-1.401282,60.200362],[-1.402528,60.201073],[-1.401746,60.202137],[-1.402653,60.205311],[-1.402381,60.2069],[-1.402846,60.208926],[-1.402328,60.210412],[-1.40266,60.211293],[-1.400571,60.212687],[-1.399463,60.214432],[-1.399395,60.216183],[-1.398405,60.217361],[-1.394718,60.217143],[-1.395591,60.214498],[-1.394617,60.213733],[-1.394386,60.210425],[-1.395273,60.209925],[-1.39493,60.208581],[-1.396577,60.205651],[-1.3962,60.204572],[-1.394004,60.203142],[-1.395121,60.202345],[-1.393454,60.201093],[-1.390002,60.202144],[-1.387706,60.202347],[-1.386105,60.202026],[-1.384027,60.202371],[-1.382186,60.203561],[-1.379138,60.203234],[-1.376538,60.206174],[-1.376166,60.209041],[-1.373202,60.209767],[-1.368674,60.209816],[-1.367789,60.209081],[-1.367906,60.206798],[-1.36717,60.205663],[-1.367308,60.204137],[-1.368289,60.20235],[-1.367202,60.198861],[-1.368747,60.196345],[-1.368346,60.194687],[-1.369023,60.193338],[-1.370106,60.193191],[-1.371844,60.191911],[-1.369645,60.19138],[-1.36893,60.19055],[-1.364932,60.190963],[-1.364749,60.192753],[-1.362788,60.192759],[-1.360666,60.1936],[-1.360232,60.19495],[-1.36078,60.196096],[-1.363257,60.196728],[-1.363599,60.198148],[-1.36137,60.201464],[-1.361921,60.204695],[-1.360231,60.207645],[-1.360167,60.20905],[-1.360956,60.21164],[-1.360686,60.213728],[-1.362192,60.214732],[-1.365624,60.215183],[-1.366808,60.215663],[-1.369871,60.218823],[-1.372449,60.220207],[-1.373681,60.221362],[-1.376694,60.228084],[-1.376343,60.231377],[-1.377022,60.232709],[-1.375898,60.23437],[-1.376605,60.235653],[-1.376354,60.236513],[-1.378295,60.236998],[-1.380043,60.236212],[-1.383306,60.236016],[-1.385323,60.234885],[-1.388471,60.235034],[-1.392724,60.237927],[-1.395454,60.238761],[-1.396369,60.240031],[-1.402286,60.242375],[-1.406228,60.242636],[-1.406265,60.243193],[-1.408688,60.246128],[-1.409517,60.249089],[-1.410736,60.249179],[-1.41484,60.251917],[-1.417334,60.251921],[-1.418793,60.252354],[-1.422439,60.252563],[-1.424726,60.252334],[-1.428461,60.253252],[-1.429095,60.253993],[-1.431443,60.253299],[-1.435014,60.25447],[-1.430066,60.255188],[-1.426972,60.254989],[-1.421084,60.255486],[-1.417922,60.256531],[-1.415951,60.256206],[-1.414456,60.255016],[-1.412426,60.255358],[-1.410936,60.255128],[-1.407824,60.252794],[-1.403564,60.251195],[-1.403758,60.249861],[-1.401929,60.24715],[-1.402322,60.246393],[-1.393839,60.244116],[-1.389409,60.244345],[-1.387377,60.244798],[-1.384372,60.246113],[-1.383412,60.24775],[-1.383746,60.249141],[-1.38518,60.249731],[-1.385586,60.250734],[-1.381941,60.249823],[-1.382471,60.249188],[-1.378085,60.249541],[-1.37639,60.248855],[-1.374559,60.248706],[-1.374004,60.247986],[-1.371999,60.247506],[-1.369354,60.245895],[-1.367664,60.245487],[-1.365851,60.245992],[-1.361552,60.246371],[-1.356952,60.245686],[-1.355111,60.244504],[-1.354808,60.242457],[-1.354128,60.242151],[-1.35236,60.239469],[-1.352241,60.237713],[-1.355297,60.2362],[-1.357497,60.236733],[-1.35937,60.238408],[-1.365726,60.239821],[-1.367423,60.239852],[-1.368596,60.238501],[-1.368939,60.234745],[-1.366397,60.233775],[-1.364065,60.233268],[-1.363243,60.230965],[-1.360259,60.228903],[-1.360274,60.22814],[-1.361597,60.226988],[-1.36379,60.223276],[-1.361973,60.217645],[-1.359445,60.216379],[-1.356294,60.216947],[-1.353296,60.216696],[-1.352171,60.21705],[-1.349747,60.216838],[-1.34802,60.216112],[-1.349753,60.207397],[-1.349246,60.207207],[-1.348595,60.204406],[-1.348717,60.202319],[-1.347532,60.200692],[-1.346372,60.20096],[-1.340709,60.204528],[-1.337376,60.208799],[-1.334476,60.209894],[-1.331847,60.212305],[-1.329787,60.213216],[-1.327824,60.215342],[-1.322088,60.218276],[-1.319393,60.221149],[-1.316373,60.223364],[-1.313464,60.226453],[-1.315428,60.228144],[-1.313636,60.231587],[-1.311237,60.232572],[-1.308627,60.232904],[-1.308312,60.233864],[-1.307014,60.234114],[-1.304843,60.235577],[-1.301916,60.241046],[-1.300145,60.242399],[-1.29832,60.244814],[-1.295355,60.246515],[-1.295999,60.248642],[-1.294653,60.252721],[-1.292719,60.253941],[-1.291834,60.252848],[-1.29323,60.250154],[-1.293186,60.246741],[-1.294206,60.244467],[-1.293947,60.240308],[-1.295542,60.238667],[-1.297818,60.237796],[-1.298995,60.235929],[-1.299796,60.235954],[-1.301776,60.234424],[-1.300209,60.233925],[-1.298567,60.234188],[-1.296449,60.235567],[-1.291817,60.234574],[-1.293705,60.232338],[-1.294592,60.232984],[-1.296709,60.232799],[-1.295036,60.230542],[-1.297596,60.229366],[-1.301167,60.229268],[-1.301551,60.230675],[-1.300996,60.231451],[-1.300901,60.233969],[-1.302491,60.234243],[-1.30431,60.233256],[-1.305818,60.230179],[-1.306715,60.229537],[-1.306482,60.227704],[-1.30516,60.227018],[-1.303221,60.227604],[-1.3025,60.227066],[-1.302776,60.225294],[-1.301757,60.224387],[-1.303197,60.221841],[-1.302548,60.220466],[-1.301422,60.219516],[-1.300817,60.217932],[-1.302812,60.216959],[-1.304485,60.217615],[-1.306429,60.216437],[-1.306851,60.212388],[-1.307619,60.211139],[-1.308879,60.210718],[-1.310835,60.205975],[-1.310508,60.20248],[-1.311773,60.199331],[-1.313277,60.197731],[-1.315767,60.197205],[-1.316702,60.196483],[-1.31636,60.194893],[-1.315129,60.193709],[-1.315595,60.190584],[-1.317117,60.189544],[-1.317566,60.187881],[-1.319915,60.18634],[-1.320143,60.183149],[-1.321721,60.182263],[-1.322923,60.180801],[-1.325549,60.175387],[-1.324783,60.172271],[-1.32602,60.171228],[-1.325255,60.168597],[-1.326291,60.166824],[-1.327816,60.165831],[-1.329599,60.16544],[-1.328426,60.164222],[-1.326324,60.165235],[-1.326241,60.166195],[-1.322783,60.168768],[-1.319341,60.170499],[-1.319304,60.171853],[-1.321086,60.172845],[-1.320766,60.174388],[-1.318038,60.177705],[-1.318133,60.178792],[-1.31653,60.181691],[-1.313787,60.185013],[-1.312642,60.187324],[-1.308467,60.194176],[-1.308737,60.196421],[-1.307025,60.200402],[-1.300417,60.205665],[-1.29877,60.208885],[-1.298317,60.211069],[-1.296785,60.21128],[-1.296025,60.210516],[-1.295695,60.20844],[-1.296236,60.206668],[-1.294748,60.206294],[-1.293487,60.207545],[-1.289555,60.210667],[-1.290245,60.212874],[-1.28821,60.215254],[-1.288225,60.216587],[-1.28648,60.217766],[-1.284525,60.217641],[-1.283252,60.216275],[-1.281271,60.216202],[-1.28066,60.217911],[-1.278992,60.219921],[-1.278421,60.222963],[-1.276184,60.225711],[-1.275042,60.229084],[-1.273878,60.230055],[-1.272934,60.232194],[-1.271828,60.23296],[-1.270842,60.235656],[-1.268964,60.237333],[-1.266591,60.236706],[-1.268133,60.235414],[-1.267385,60.234128],[-1.265382,60.233365],[-1.267824,60.231642],[-1.26917,60.229613],[-1.268718,60.22848],[-1.269076,60.225668],[-1.270739,60.224325],[-1.270371,60.223559],[-1.272265,60.221359],[-1.273476,60.221297],[-1.27562,60.218054],[-1.277272,60.217097],[-1.279545,60.214094],[-1.281607,60.213641],[-1.281439,60.210743],[-1.284442,60.208892],[-1.285826,60.208653],[-1.286587,60.207072],[-1.288694,60.206028],[-1.290213,60.205746],[-1.292553,60.203084],[-1.294497,60.203443],[-1.294996,60.20568],[-1.297199,60.205314],[-1.302717,60.200648],[-1.303095,60.198132],[-1.304361,60.194971],[-1.305646,60.194275],[-1.304754,60.193356],[-1.306134,60.191073],[-1.307095,60.190513],[-1.307466,60.189193],[-1.309297,60.187269],[-1.309929,60.18533],[-1.311185,60.183939],[-1.312272,60.181141],[-1.312496,60.177937],[-1.314443,60.176483],[-1.315362,60.17299],[-1.317933,60.172368],[-1.317966,60.171137],[-1.317113,60.170167],[-1.317826,60.169264],[-1.317879,60.167576],[-1.315996,60.166688],[-1.316773,60.163131],[-1.31787,60.16235],[-1.318457,60.160548],[-1.318135,60.15955],[-1.31571,60.159622],[-1.316522,60.161323],[-1.31485,60.163565],[-1.312706,60.164158],[-1.311079,60.165556],[-1.309568,60.169795],[-1.308677,60.170468],[-1.307504,60.1724],[-1.307525,60.173546],[-1.305712,60.174979],[-1.306,60.175714],[-1.303737,60.176592],[-1.302875,60.178161],[-1.302056,60.182189],[-1.300821,60.182966],[-1.298874,60.183349],[-1.297623,60.184549],[-1.295793,60.184526],[-1.295596,60.18615],[-1.297107,60.186737],[-1.296905,60.188198],[-1.297912,60.189733],[-1.297013,60.193421],[-1.295287,60.193628],[-1.294891,60.192124],[-1.293523,60.192291],[-1.294378,60.19445],[-1.292885,60.19576],[-1.293029,60.197549],[-1.291396,60.198326],[-1.290334,60.196825],[-1.292159,60.196419],[-1.291629,60.195304],[-1.289621,60.195781],[-1.288153,60.196595],[-1.286145,60.196439],[-1.283271,60.195241],[-1.285693,60.192773],[-1.286708,60.190265],[-1.288343,60.189587],[-1.288347,60.187436],[-1.289154,60.186807],[-1.286285,60.186091],[-1.286021,60.183737],[-1.286898,60.181528],[-1.289297,60.178964],[-1.289742,60.177108],[-1.291254,60.174728],[-1.293514,60.171844],[-1.29492,60.170985],[-1.295728,60.169485],[-1.295133,60.168642],[-1.29694,60.164198],[-1.296836,60.163281],[-1.297945,60.161824],[-1.297255,60.158691],[-1.297924,60.157307],[-1.300075,60.156111],[-1.298954,60.155036],[-1.30135,60.151246],[-1.300785,60.150457],[-1.302317,60.148961],[-1.301284,60.148125],[-1.297994,60.148965],[-1.29513,60.148461],[-1.290681,60.14959],[-1.290163,60.14913],[-1.290479,60.14725],[-1.293592,60.143875],[-1.296008,60.142798],[-1.297396,60.14256],[-1.299257,60.141247],[-1.29894,60.140231],[-1.299605,60.139408],[-1.303024,60.138514],[-1.304213,60.135898],[-1.303697,60.135612],[-1.305577,60.133804],[-1.304448,60.132778],[-1.302622,60.134538],[-1.300569,60.133984],[-1.29708,60.131605],[-1.295377,60.132289],[-1.290983,60.132695],[-1.287417,60.132138],[-1.285926,60.132748],[-1.285521,60.134432],[-1.284428,60.136232],[-1.278832,60.137488],[-1.275255,60.136483],[-1.276236,60.135668],[-1.276496,60.133495],[-1.274447,60.133305],[-1.272476,60.13427],[-1.270943,60.135539],[-1.272356,60.136117],[-1.27019,60.137432],[-1.267983,60.141842],[-1.267005,60.142343],[-1.266763,60.137349],[-1.267417,60.134337],[-1.268743,60.133218],[-1.269398,60.130487],[-1.271349,60.129185],[-1.270953,60.127893],[-1.27149,60.127118],[-1.270215,60.125612],[-1.27167,60.124143],[-1.272211,60.122544],[-1.271574,60.122065],[-1.273546,60.11667],[-1.275586,60.112659],[-1.274846,60.110557],[-1.276953,60.107759],[-1.27615,60.106069],[-1.277363,60.103626],[-1.27787,60.101286],[-1.276917,60.099434],[-1.275655,60.099693],[-1.273035,60.098184],[-1.274467,60.097201],[-1.276603,60.097699],[-1.279715,60.097737],[-1.281772,60.096658],[-1.280445,60.094911],[-1.280754,60.093118],[-1.289009,60.084146],[-1.291472,60.076567],[-1.294319,60.072842],[-1.294547,60.069358],[-1.296993,60.067074],[-1.298082,60.066559],[-1.299583,60.064092],[-1.300208,60.061618],[-1.302889,60.060537],[-1.304261,60.058497],[-1.304155,60.056709],[-1.305101,60.055695],[-1.305795,60.05351],[-1.305079,60.052898],[-1.30629,60.050458],[-1.305836,60.050056],[-1.306595,60.047308],[-1.306867,60.044219],[-1.308382,60.041965],[-1.307711,60.039858],[-1.306071,60.039437],[-1.307534,60.036174],[-1.310388,60.033328],[-1.30923,60.0323],[-1.311075,60.031423],[-1.311561,60.029462],[-1.317232,60.026074],[-1.318252,60.024795],[-1.318416,60.023057],[-1.317303,60.021799],[-1.321359,60.019094],[-1.320076,60.018243],[-1.320488,60.017405],[-1.31988,60.016268],[-1.321891,60.01642],[-1.322138,60.014038],[-1.318301,60.013358],[-1.317551,60.012766],[-1.32002,60.011797],[-1.320252,60.010949],[-1.321731,60.010509],[-1.320801,60.009546],[-1.320853,60.008339],[-1.322185,60.007645],[-1.324427,60.005808],[-1.32824,60.005225],[-1.331078,60.005857],[-1.330844,60.008327],[-1.332011,60.009478],[-1.333154,60.008651],[-1.333204,60.007461],[-1.335579,60.006464],[-1.336228,60.005647],[-1.336195,60.00296],[-1.337395,60.002392],[-1.338806,60.002859],[-1.340371,60.00168],[-1.341874,60.002944],[-1.343265,60.000379],[-1.344361,60.000268],[-1.346843,59.996985],[-1.346194,59.99507],[-1.345055,59.99417],[-1.345151,59.99318],[-1.344139,59.992006],[-1.343765,59.990417],[-1.341355,59.990488],[-1.339712,59.98977],[-1.340492,59.988937],[-1.339338,59.987784],[-1.337918,59.987271],[-1.338395,59.985956],[-1.337939,59.984285],[-1.336823,59.983667],[-1.33802,59.982288],[-1.336674,59.980912],[-1.334783,59.980061],[-1.334563,59.978996],[-1.332974,59.978071],[-1.329953,59.97804],[-1.328838,59.977461],[-1.328747,59.976513],[-1.331402,59.974778],[-1.330807,59.972773],[-1.330161,59.972204],[-1.331571,59.971028],[-1.333682,59.970304],[-1.336223,59.970133],[-1.339476,59.970481],[-1.340787,59.971238],[-1.340607,59.97266],[-1.339554,59.973984],[-1.34576,59.975245],[-1.346496,59.976617],[-1.349428,59.977755],[-1.351293,59.979694],[-1.352021,59.979393],[-1.354731,59.980649],[-1.356079,59.980187],[-1.35464,59.979235],[-1.355613,59.977556],[-1.353069,59.976596],[-1.352792,59.975643],[-1.355044,59.974968],[-1.351149,59.974108],[-1.353629,59.973742],[-1.354398,59.972847],[-1.356685,59.972881],[-1.357889,59.972388],[-1.358162,59.970455],[-1.359731,59.970286],[-1.361351,59.969395],[-1.3603,59.968635],[-1.355963,59.968068],[-1.352464,59.968955],[-1.351238,59.968137],[-1.349425,59.968757],[-1.348256,59.968069],[-1.343232,59.966842],[-1.343603,59.968782],[-1.341079,59.969605],[-1.336115,59.969885],[-1.332706,59.969468],[-1.331047,59.967272],[-1.332749,59.963495],[-1.332008,59.962702],[-1.333686,59.962245],[-1.334435,59.961103],[-1.333215,59.960845],[-1.334607,59.959498],[-1.334832,59.958044],[-1.337636,59.955258],[-1.338281,59.953963],[-1.337031,59.953019],[-1.334739,59.952756],[-1.333596,59.953958],[-1.331875,59.953984],[-1.329529,59.952515],[-1.330452,59.951659],[-1.330178,59.950569],[-1.328887,59.949281],[-1.329892,59.948328],[-1.329637,59.947205],[-1.33132,59.945621],[-1.333371,59.945267],[-1.336172,59.945242],[-1.340111,59.945728],[-1.34107,59.946577],[-1.340184,59.94836],[-1.34076,59.949099],[-1.342573,59.949072],[-1.344342,59.947579],[-1.343144,59.947016],[-1.342557,59.945464],[-1.344288,59.945661],[-1.346892,59.944293],[-1.344097,59.943416],[-1.346933,59.942697],[-1.347565,59.943627],[-1.348983,59.944037],[-1.350795,59.943651],[-1.352764,59.944025],[-1.353563,59.943261],[-1.357832,59.944538],[-1.359069,59.944404],[-1.36187,59.945106],[-1.363749,59.94421],[-1.363382,59.943279],[-1.364805,59.942828],[-1.364867,59.941899],[-1.362818,59.941299],[-1.362046,59.940174],[-1.365052,59.939268],[-1.364756,59.937631],[-1.365667,59.937052],[-1.364097,59.93592],[-1.366255,59.935748],[-1.367079,59.934291],[-1.36864,59.933354],[-1.371858,59.934107],[-1.372508,59.933644],[-1.371205,59.93254],[-1.368308,59.932985],[-1.366155,59.932167],[-1.364611,59.930602],[-1.365443,59.928971],[-1.36802,59.928097],[-1.367993,59.926704],[-1.369451,59.925581],[-1.370833,59.925249],[-1.366476,59.923313],[-1.365288,59.92173],[-1.363544,59.920712],[-1.36498,59.919068],[-1.367442,59.918587],[-1.368414,59.917],[-1.370748,59.917075],[-1.372004,59.916482],[-1.378388,59.915604],[-1.380565,59.917142],[-1.382682,59.913532],[-1.384081,59.91438],[-1.386048,59.914038],[-1.389856,59.915603],[-1.391476,59.915866],[-1.39227,59.913141],[-1.391439,59.911628],[-1.389878,59.910621],[-1.390411,59.909931],[-1.388937,59.90789],[-1.389751,59.905698],[-1.387564,59.904824],[-1.385335,59.901683],[-1.385039,59.899687],[-1.385545,59.899235],[-1.383893,59.896431],[-1.381706,59.895747],[-1.379582,59.894546],[-1.379032,59.893766],[-1.379943,59.892633],[-1.384322,59.891804],[-1.384544,59.890661],[-1.383519,59.890425],[-1.381634,59.888681],[-1.380211,59.889256],[-1.377732,59.887919],[-1.377448,59.88891],[-1.375493,59.888759],[-1.374424,59.890532],[-1.372212,59.891711],[-1.367932,59.890839],[-1.364426,59.891518],[-1.361762,59.892905],[-1.358654,59.89285],[-1.358878,59.890513],[-1.356762,59.889033],[-1.357429,59.888233],[-1.356221,59.887445],[-1.354401,59.887036],[-1.354173,59.885669],[-1.352287,59.886454],[-1.352116,59.884526],[-1.350188,59.883424],[-1.347774,59.884921],[-1.345982,59.886988],[-1.345665,59.888588],[-1.346254,59.889556],[-1.344734,59.890074],[-1.346077,59.891719],[-1.346304,59.89428],[-1.345535,59.895681],[-1.344483,59.89599],[-1.344409,59.897049],[-1.340339,59.898609],[-1.334581,59.899173],[-1.327508,59.898886],[-1.318883,59.897524],[-1.318033,59.896114],[-1.318909,59.893843],[-1.31804,59.893593],[-1.318279,59.891752],[-1.317532,59.890392],[-1.316274,59.889948],[-1.312732,59.890207],[-1.314289,59.88855],[-1.313719,59.886012],[-1.312062,59.885013],[-1.312252,59.884293],[-1.310554,59.883633],[-1.308318,59.883511],[-1.306316,59.881658],[-1.307848,59.881104],[-1.306446,59.880071],[-1.307156,59.879019],[-1.310344,59.877369],[-1.310468,59.876396],[-1.312316,59.875209],[-1.311669,59.874074],[-1.31204,59.873196],[-1.314027,59.872444],[-1.316579,59.869491],[-1.314402,59.868004],[-1.314751,59.866169],[-1.31319,59.866536],[-1.312269,59.863967],[-1.310585,59.86333],[-1.309783,59.862015],[-1.310303,59.860621],[-1.311911,59.85975],[-1.311918,59.858016],[-1.312484,59.856951],[-1.310567,59.8569],[-1.310617,59.857982],[-1.309562,59.858532],[-1.307916,59.861182],[-1.308474,59.862522],[-1.305918,59.861998],[-1.305735,59.863585],[-1.307009,59.865536],[-1.306109,59.867093],[-1.306686,59.868054],[-1.305729,59.868503],[-1.303776,59.86831],[-1.301465,59.869698],[-1.301307,59.870758],[-1.302706,59.873023],[-1.301322,59.875157],[-1.299269,59.875647],[-1.296961,59.875666],[-1.293616,59.875017],[-1.291521,59.874117],[-1.289496,59.87258],[-1.288944,59.871055],[-1.291145,59.870701],[-1.292614,59.869218],[-1.289343,59.868276],[-1.287673,59.866864],[-1.287251,59.865732],[-1.285208,59.863668],[-1.282552,59.862098],[-1.28109,59.859992],[-1.278285,59.858891],[-1.278122,59.857364],[-1.275484,59.855463],[-1.277241,59.854016],[-1.278016,59.852696],[-1.27664,59.852376],[-1.273016,59.853587],[-1.271771,59.854802],[-1.273027,59.855641],[-1.271183,59.85639],[-1.270975,59.857475],[-1.269872,59.858202],[-1.27104,59.858851],[-1.27075,59.860269],[-1.271856,59.860476],[-1.271794,59.863777],[-1.272733,59.865757],[-1.272646,59.866714],[-1.271255,59.867602],[-1.272229,59.868463],[-1.271499,59.870226],[-1.272384,59.870929],[-1.272071,59.871857],[-1.274184,59.872615],[-1.273957,59.874165],[-1.272,59.875238],[-1.270179,59.874541],[-1.268661,59.875581],[-1.270382,59.876503],[-1.272603,59.876044],[-1.273544,59.876411],[-1.277979,59.87408],[-1.27894,59.873108],[-1.280845,59.872236],[-1.283609,59.872618],[-1.285171,59.873353],[-1.286356,59.875194],[-1.283764,59.876529],[-1.281461,59.876596],[-1.279832,59.877918],[-1.282641,59.879711],[-1.283805,59.880081],[-1.283426,59.881324],[-1.279899,59.881805],[-1.280046,59.882697],[-1.283702,59.882789],[-1.285139,59.883088],[-1.290884,59.882646],[-1.297836,59.88228],[-1.300018,59.883119],[-1.300412,59.883916],[-1.29823,59.88519],[-1.293808,59.88677],[-1.288952,59.886225],[-1.287704,59.885109],[-1.285554,59.885501],[-1.284814,59.88422],[-1.283095,59.884194],[-1.280557,59.885638],[-1.276495,59.885037],[-1.272029,59.885678],[-1.272723,59.888123],[-1.269688,59.888884],[-1.273431,59.890214],[-1.273253,59.891778],[-1.276035,59.892371],[-1.27672,59.892859],[-1.276095,59.8953],[-1.276735,59.896043],[-1.271755,59.898854],[-1.273352,59.899731],[-1.274545,59.901233],[-1.273392,59.902385],[-1.271005,59.903517],[-1.26964,59.905128],[-1.271783,59.908119],[-1.269252,59.908192],[-1.271567,59.9101],[-1.274878,59.910052],[-1.275391,59.910614],[-1.278022,59.91134],[-1.276692,59.912646],[-1.28136,59.913283],[-1.282388,59.914012],[-1.284294,59.914289],[-1.2839,59.915005],[-1.285608,59.915476],[-1.286252,59.916488],[-1.285491,59.917149],[-1.287606,59.917851],[-1.289559,59.920544],[-1.291294,59.921044],[-1.292035,59.922132],[-1.290476,59.923278],[-1.287538,59.92157],[-1.285167,59.921491],[-1.281502,59.920368],[-1.279167,59.920467],[-1.277664,59.91984],[-1.274448,59.919632],[-1.271597,59.92042],[-1.270685,59.921643],[-1.271784,59.922096],[-1.270182,59.923046],[-1.271628,59.924792],[-1.2701,59.924905],[-1.267878,59.926579],[-1.268487,59.92963],[-1.269943,59.930586],[-1.26978,59.932503],[-1.268908,59.933413],[-1.265546,59.932745],[-1.264407,59.933716],[-1.262063,59.934204],[-1.262502,59.935002],[-1.260744,59.935295],[-1.259357,59.934692],[-1.258019,59.935975],[-1.258394,59.936609],[-1.260863,59.93752],[-1.257706,59.938879],[-1.260169,59.939851],[-1.26103,59.941215],[-1.258781,59.942039],[-1.260091,59.942637],[-1.258883,59.943711],[-1.260374,59.944308],[-1.260464,59.945131],[-1.26334,59.945513],[-1.262578,59.946183],[-1.265127,59.947909],[-1.264357,59.949515],[-1.26504,59.951191],[-1.262609,59.95071],[-1.26369,59.95219],[-1.259905,59.953812],[-1.257191,59.954613],[-1.254485,59.955905],[-1.254884,59.957649],[-1.257348,59.959347],[-1.256312,59.961319],[-1.259397,59.963135],[-1.259462,59.964121],[-1.261729,59.965031],[-1.259833,59.965491],[-1.259496,59.966782],[-1.258051,59.967339],[-1.260178,59.968636],[-1.261141,59.970053],[-1.26116,59.971042],[-1.259145,59.971767],[-1.25777,59.970957],[-1.256568,59.971297],[-1.255171,59.972557],[-1.255658,59.974398],[-1.254651,59.97489],[-1.254116,59.976331],[-1.255933,59.977195],[-1.258498,59.977071],[-1.259349,59.975122],[-1.261498,59.974844],[-1.264526,59.975159],[-1.26723,59.976602],[-1.26743,59.977758],[-1.269763,59.978152],[-1.270819,59.979329],[-1.268301,59.981449],[-1.26821,59.982691],[-1.26986,59.98308],[-1.269037,59.984075],[-1.271755,59.985735],[-1.272154,59.987507],[-1.275679,59.988826],[-1.277263,59.989053],[-1.277525,59.99008],[-1.276136,59.991517],[-1.273924,59.992081],[-1.270051,59.991149],[-1.269926,59.990494],[-1.265283,59.990046],[-1.26188,59.988542],[-1.259692,59.990225],[-1.260114,59.991019],[-1.25867,59.991684],[-1.256563,59.991513],[-1.257572,59.992784],[-1.257415,59.995457],[-1.255087,59.996701],[-1.25224,59.996426],[-1.252166,59.994036],[-1.251452,59.993116],[-1.248542,59.993064],[-1.242393,59.992147],[-1.24266,59.989346],[-1.240702,59.987581],[-1.239678,59.986095],[-1.242292,59.984362],[-1.242402,59.983424],[-1.240647,59.982471],[-1.234194,59.981126],[-1.232402,59.981946],[-1.233625,59.983827],[-1.231913,59.984616],[-1.233229,59.985862],[-1.230246,59.987448],[-1.231213,59.988525],[-1.231075,59.989649],[-1.229307,59.991387],[-1.228525,59.994806],[-1.227134,59.995437],[-1.223663,59.995586],[-1.222187,59.994738],[-1.220726,59.994982],[-1.218897,59.992435],[-1.218175,59.989967],[-1.216192,59.98899],[-1.217569,59.985881],[-1.213754,59.984363],[-1.212029,59.984029],[-1.212003,59.982831],[-1.21342,59.981063],[-1.212971,59.980633],[-1.213878,59.978922],[-1.213208,59.97846],[-1.214683,59.977108],[-1.213864,59.975352],[-1.211857,59.975758],[-1.210968,59.974338],[-1.206875,59.972069],[-1.204814,59.9724],[-1.204758,59.973245],[-1.202803,59.973494],[-1.201917,59.974475],[-1.205608,59.975987],[-1.205904,59.97735],[-1.203074,59.978435],[-1.206098,59.979845],[-1.20509,59.980574],[-1.207266,59.981956],[-1.205987,59.982893],[-1.208305,59.983577],[-1.207417,59.984454],[-1.207219,59.986265],[-1.208413,59.986625],[-1.206462,59.988115],[-1.208604,59.988906],[-1.2054,59.990457],[-1.199411,59.989472],[-1.198867,59.990523],[-1.199336,59.991649],[-1.201352,59.991922],[-1.201785,59.993847],[-1.20522,59.995421],[-1.209668,59.996442],[-1.21057,59.998092],[-1.212825,59.999515],[-1.213371,60.001366],[-1.214643,60.002767],[-1.214494,60.003718],[-1.215615,60.004146],[-1.215949,60.005733],[-1.21869,60.006747],[-1.2211,60.006633],[-1.223372,60.007551],[-1.223974,60.010128],[-1.222371,60.012359],[-1.222474,60.014606],[-1.223756,60.016013],[-1.226329,60.016431],[-1.226476,60.017303],[-1.228099,60.017671],[-1.227945,60.020445],[-1.230088,60.020598],[-1.231113,60.0223],[-1.23036,60.023449],[-1.231265,60.025181],[-1.233098,60.026096],[-1.233568,60.027491],[-1.233244,60.028714],[-1.234074,60.030811],[-1.233162,60.033108],[-1.231053,60.033834],[-1.228498,60.034099],[-1.226832,60.033869],[-1.225381,60.032999],[-1.224317,60.033738],[-1.220695,60.033795],[-1.219336,60.032413],[-1.217363,60.034091],[-1.214458,60.034006],[-1.212949,60.035433],[-1.215016,60.036738],[-1.216352,60.038448],[-1.216598,60.039756],[-1.214432,60.041452],[-1.215456,60.042872],[-1.213071,60.043638],[-1.209919,60.043551],[-1.209817,60.044358],[-1.207537,60.04567],[-1.207465,60.041974],[-1.209343,60.040862],[-1.211081,60.041244],[-1.212771,60.040786],[-1.211682,60.039197],[-1.211143,60.036659],[-1.207999,60.036939],[-1.205556,60.035645],[-1.204103,60.03704],[-1.20054,60.038398],[-1.19829,60.037733],[-1.195452,60.038074],[-1.19208,60.037179],[-1.186302,60.036841],[-1.185066,60.03721],[-1.18087,60.037673],[-1.178469,60.037593],[-1.17623,60.035751],[-1.173823,60.035832],[-1.174675,60.037265],[-1.176007,60.038212],[-1.173214,60.039375],[-1.171963,60.04142],[-1.175466,60.042131],[-1.180635,60.040603],[-1.185084,60.040767],[-1.18682,60.041858],[-1.186592,60.042362],[-1.189086,60.044134],[-1.192345,60.044566],[-1.195965,60.044042],[-1.198487,60.045128],[-1.201618,60.047041],[-1.203542,60.047606],[-1.204102,60.048578],[-1.203975,60.050509],[-1.201548,60.051681],[-1.199979,60.053443],[-1.1983,60.053897],[-1.199767,60.057194],[-1.201264,60.058115],[-1.200378,60.058866],[-1.202143,60.059725],[-1.204216,60.05974],[-1.207732,60.060193],[-1.207329,60.062053],[-1.20878,60.06334],[-1.208812,60.06401],[-1.212247,60.064384],[-1.213088,60.065441],[-1.210929,60.067853],[-1.21051,60.070585],[-1.208475,60.07156],[-1.209088,60.072965],[-1.212118,60.073551],[-1.213093,60.072276],[-1.215276,60.072058],[-1.217139,60.073307],[-1.216485,60.075192],[-1.211676,60.076555],[-1.211588,60.078164],[-1.212317,60.079054],[-1.210994,60.079643],[-1.211305,60.081779],[-1.213783,60.082746],[-1.210366,60.083229],[-1.209677,60.084431],[-1.207884,60.085097],[-1.206951,60.086209],[-1.208354,60.087671],[-1.206905,60.089832],[-1.210212,60.091979],[-1.210893,60.093145],[-1.213563,60.093711],[-1.21525,60.093607],[-1.217139,60.094736],[-1.219717,60.097095],[-1.222369,60.097325],[-1.223635,60.097871],[-1.224486,60.099771],[-1.222623,60.101078],[-1.219073,60.100596],[-1.215456,60.101753],[-1.209751,60.102567],[-1.20852,60.104768],[-1.204802,60.105636],[-1.203631,60.106997],[-1.201232,60.107225],[-1.19938,60.106324],[-1.199917,60.108875],[-1.19852,60.108935],[-1.197583,60.11017],[-1.198098,60.110751],[-1.196578,60.11199],[-1.197178,60.113574],[-1.196725,60.115569],[-1.194693,60.116741],[-1.193735,60.118214],[-1.195778,60.119065],[-1.201134,60.122398],[-1.204539,60.12253],[-1.20663,60.123895],[-1.206083,60.124765],[-1.206047,60.127401],[-1.204056,60.129023],[-1.20396,60.130602],[-1.200921,60.130835],[-1.199129,60.130352],[-1.198976,60.129552],[-1.191463,60.127769],[-1.191191,60.128616],[-1.18478,60.125843],[-1.183767,60.124575],[-1.182419,60.124504],[-1.181298,60.122455],[-1.179754,60.12292],[-1.174985,60.119164],[-1.174183,60.12065],[-1.172498,60.121138],[-1.171485,60.122788],[-1.171567,60.125253],[-1.173566,60.126613],[-1.176053,60.129713],[-1.176084,60.131383],[-1.174344,60.133626],[-1.175844,60.136289],[-1.175221,60.138166],[-1.174121,60.139336],[-1.172478,60.139973],[-1.172527,60.141235],[-1.169094,60.140651],[-1.16644,60.140942],[-1.164398,60.140579],[-1.162277,60.136375],[-1.16217,60.133169],[-1.160295,60.130772],[-1.159974,60.129522],[-1.155511,60.129552],[-1.153908,60.130783],[-1.15214,60.133694],[-1.154248,60.134963],[-1.153742,60.135386],[-1.15625,60.138365],[-1.15777,60.139015],[-1.156594,60.140964],[-1.158889,60.140462],[-1.160073,60.141142],[-1.16,60.142712],[-1.158848,60.143404],[-1.1605,60.145638],[-1.159123,60.146626],[-1.160041,60.148403],[-1.159183,60.14905],[-1.154372,60.149046],[-1.153558,60.149821],[-1.150929,60.150028],[-1.149056,60.150939],[-1.146187,60.149378],[-1.144703,60.149511],[-1.142539,60.147202],[-1.137137,60.145871],[-1.135236,60.146961],[-1.132528,60.1479],[-1.131981,60.148941],[-1.133805,60.150004],[-1.13411,60.151233],[-1.136939,60.152619],[-1.139721,60.152817],[-1.142163,60.153549],[-1.143071,60.15572],[-1.145128,60.159287],[-1.146978,60.159377],[-1.148366,60.158381],[-1.150903,60.157912],[-1.15091,60.159109],[-1.152123,60.159753],[-1.154552,60.159892],[-1.157933,60.16282],[-1.161003,60.166492],[-1.162781,60.16713],[-1.164559,60.169638],[-1.162512,60.170793],[-1.160629,60.170229],[-1.158636,60.171254],[-1.159224,60.171825],[-1.15605,60.172114],[-1.156674,60.172697],[-1.153833,60.173424],[-1.153427,60.175369],[-1.155194,60.175589],[-1.154891,60.179773],[-1.151413,60.180582],[-1.151774,60.181427],[-1.150753,60.18605],[-1.152183,60.186703],[-1.149564,60.187418],[-1.149306,60.188647],[-1.146267,60.189395],[-1.147803,60.190294],[-1.150807,60.191296],[-1.153365,60.189656],[-1.155013,60.18937],[-1.155878,60.188493],[-1.158763,60.189044],[-1.158471,60.190114],[-1.159515,60.191024],[-1.159754,60.192934],[-1.158322,60.194662],[-1.158795,60.195904],[-1.15787,60.198245],[-1.15182,60.201656],[-1.152947,60.202287],[-1.152741,60.203228],[-1.153982,60.203863],[-1.159413,60.200295],[-1.162515,60.199618],[-1.165671,60.197497],[-1.168863,60.195723],[-1.170164,60.194216],[-1.173488,60.193266],[-1.175525,60.193722],[-1.178638,60.192511],[-1.181397,60.188889],[-1.183541,60.188322],[-1.185457,60.187302],[-1.188958,60.186475],[-1.193982,60.183026],[-1.19798,60.183234],[-1.199158,60.182608],[-1.196611,60.182063],[-1.196248,60.181419],[-1.202894,60.177971],[-1.206482,60.177184],[-1.206698,60.176435],[-1.211588,60.173647],[-1.213066,60.172375],[-1.217275,60.171205],[-1.219401,60.172232],[-1.218752,60.172602],[-1.218218,60.174397],[-1.216479,60.17605],[-1.213984,60.177274],[-1.211477,60.176794],[-1.210425,60.177278],[-1.206161,60.182278],[-1.202234,60.184369],[-1.201762,60.185251],[-1.19984,60.186043],[-1.198048,60.18768],[-1.196415,60.188235],[-1.195399,60.190709],[-1.193007,60.191917],[-1.190923,60.192539],[-1.19003,60.195645],[-1.18709,60.196094],[-1.186853,60.197146],[-1.18778,60.19789],[-1.187471,60.199428],[-1.185536,60.202239],[-1.187394,60.204163],[-1.185911,60.205036],[-1.184289,60.204814],[-1.181935,60.205189],[-1.178541,60.20644],[-1.176917,60.20659],[-1.175983,60.207355],[-1.174211,60.207283],[-1.170505,60.208465],[-1.171271,60.209694],[-1.17063,60.210758],[-1.173562,60.210218],[-1.175302,60.210551],[-1.179127,60.209744],[-1.179827,60.211134],[-1.180955,60.212022],[-1.179367,60.213355],[-1.176305,60.214745],[-1.176476,60.216191],[-1.173131,60.216081],[-1.170269,60.216853],[-1.17083,60.218212],[-1.172251,60.218765],[-1.170525,60.22028],[-1.170048,60.221332],[-1.168395,60.22173],[-1.167183,60.222813],[-1.167787,60.223285],[-1.170961,60.223035],[-1.173724,60.22396],[-1.176984,60.222561],[-1.177343,60.22193],[-1.17931,60.221514],[-1.180915,60.220373],[-1.181458,60.219042],[-1.185315,60.217174],[-1.189801,60.214103],[-1.193245,60.21319],[-1.19543,60.212065],[-1.195753,60.21097],[-1.197383,60.210448],[-1.196612,60.209405],[-1.197558,60.207983],[-1.202329,60.205534],[-1.205799,60.206236],[-1.206963,60.20532],[-1.204389,60.205019],[-1.205946,60.20331],[-1.210428,60.203011],[-1.212377,60.201709],[-1.215194,60.201337],[-1.216683,60.199732],[-1.217967,60.201122],[-1.215869,60.203368],[-1.215885,60.204305],[-1.214684,60.205483],[-1.212402,60.206299],[-1.210838,60.206318],[-1.210199,60.20714],[-1.20703,60.209112],[-1.206013,60.210822],[-1.203195,60.212499],[-1.20302,60.214547],[-1.199305,60.21766],[-1.196807,60.218704],[-1.195261,60.221061],[-1.194027,60.221327],[-1.194387,60.222342],[-1.197397,60.223383],[-1.195562,60.225337],[-1.19731,60.226591],[-1.197299,60.227355],[-1.195816,60.228234],[-1.192963,60.228993],[-1.190928,60.229165],[-1.18953,60.230917],[-1.186721,60.230985],[-1.186848,60.232081],[-1.190558,60.232799],[-1.190238,60.234436],[-1.192035,60.235165],[-1.196015,60.234489],[-1.197992,60.23376],[-1.20087,60.232062],[-1.203436,60.231234],[-1.207394,60.229125],[-1.209991,60.228271],[-1.212016,60.228208],[-1.21695,60.228979],[-1.219104,60.228285],[-1.223557,60.228919],[-1.22522,60.228546],[-1.227813,60.229133],[-1.230254,60.228954],[-1.231365,60.229702],[-1.228467,60.232719],[-1.22716,60.232162],[-1.225894,60.232877],[-1.224364,60.232593],[-1.223854,60.23359],[-1.224883,60.235743],[-1.22314,60.236537],[-1.219482,60.236539],[-1.218287,60.236958],[-1.212105,60.237925],[-1.209943,60.237518],[-1.207353,60.238236],[-1.204039,60.240922],[-1.200708,60.241616],[-1.198703,60.242717],[-1.195813,60.243831],[-1.193292,60.245741],[-1.195151,60.246409],[-1.194122,60.247164],[-1.194568,60.248061],[-1.193503,60.250394],[-1.195474,60.253008],[-1.201499,60.253239],[-1.205616,60.253743],[-1.203427,60.263264],[-1.205321,60.264912],[-1.208816,60.265442],[-1.209247,60.266073],[-1.206149,60.267562],[-1.201948,60.268158],[-1.200632,60.269428],[-1.199031,60.269845],[-1.195611,60.268904],[-1.193666,60.267276],[-1.19254,60.265657],[-1.192179,60.264152],[-1.190351,60.261518],[-1.187785,60.259056],[-1.182117,60.259391],[-1.181116,60.259106],[-1.177347,60.259166],[-1.174711,60.258904],[-1.172305,60.258152],[-1.169035,60.260799],[-1.165868,60.260551],[-1.16459,60.259579],[-1.167794,60.257567],[-1.168912,60.255513],[-1.171772,60.25488],[-1.176735,60.251789],[-1.175944,60.251066],[-1.178172,60.249751],[-1.178044,60.247282],[-1.179462,60.245602],[-1.178444,60.243927],[-1.179283,60.243254],[-1.179298,60.242109],[-1.177957,60.23995],[-1.175942,60.239227],[-1.172451,60.239835],[-1.170606,60.23924],[-1.17036,60.238255],[-1.168224,60.23883],[-1.166627,60.24082],[-1.168338,60.241281],[-1.167369,60.242571],[-1.163166,60.243374],[-1.156514,60.242211],[-1.153869,60.242899],[-1.152166,60.243749],[-1.150643,60.24353],[-1.150409,60.24533],[-1.147427,60.247233],[-1.145411,60.247664],[-1.144179,60.248478],[-1.139382,60.249556],[-1.139109,60.250681],[-1.1408,60.250607],[-1.143395,60.249111],[-1.149455,60.247044],[-1.151718,60.245944],[-1.154442,60.246776],[-1.152809,60.249181],[-1.151524,60.249551],[-1.149378,60.249315],[-1.148106,60.250943],[-1.146817,60.251205],[-1.144457,60.254471],[-1.144603,60.255443],[-1.143775,60.256373],[-1.144456,60.257288],[-1.14255,60.258309],[-1.144081,60.259451],[-1.139268,60.259274],[-1.137143,60.259522],[-1.136086,60.259133],[-1.133265,60.259214],[-1.130747,60.259625],[-1.128169,60.260497],[-1.126429,60.261575],[-1.123909,60.262219],[-1.124219,60.262815],[-1.122653,60.263627],[-1.121147,60.263262],[-1.119009,60.261609],[-1.117103,60.261007],[-1.115244,60.259727],[-1.114203,60.260781],[-1.11165,60.259314],[-1.109867,60.259432],[-1.105191,60.258265],[-1.103262,60.259096],[-1.102109,60.25898],[-1.099972,60.260461],[-1.099242,60.261394],[-1.096336,60.263556],[-1.098788,60.26443],[-1.095903,60.266476],[-1.097407,60.266666],[-1.098104,60.267604],[-1.096396,60.268598],[-1.096263,60.269602],[-1.097524,60.270617],[-1.100441,60.269389],[-1.10329,60.26865],[-1.108661,60.265911],[-1.11164,60.266016],[-1.114774,60.267092],[-1.116276,60.270872],[-1.115223,60.272573],[-1.113276,60.272676],[-1.109794,60.273596],[-1.108107,60.274839],[-1.107952,60.276008],[-1.11035,60.275602],[-1.112402,60.27612],[-1.113602,60.275488],[-1.117009,60.276401],[-1.11884,60.275883],[-1.118633,60.274508],[-1.120225,60.273122],[-1.1161,60.272841],[-1.118584,60.271612],[-1.123514,60.270796],[-1.126759,60.271053],[-1.126404,60.271883],[-1.129,60.272511],[-1.132487,60.27147],[-1.134437,60.272123],[-1.133409,60.272872],[-1.133959,60.273617],[-1.135797,60.27338],[-1.138134,60.273833],[-1.142413,60.271958],[-1.14502,60.27247],[-1.146543,60.27067],[-1.145004,60.268472],[-1.146329,60.266963],[-1.145703,60.266247],[-1.147249,60.265082],[-1.147378,60.268246],[-1.149065,60.270308],[-1.150928,60.271104],[-1.154152,60.27145],[-1.153363,60.272304],[-1.154326,60.272788],[-1.150362,60.276014],[-1.145807,60.277213],[-1.146332,60.277899],[-1.144041,60.279465],[-1.145143,60.280491],[-1.147555,60.279168],[-1.1474,60.278207],[-1.149099,60.277522],[-1.151223,60.27789],[-1.151159,60.278594],[-1.15458,60.277902],[-1.157365,60.278028],[-1.159178,60.27902],[-1.159895,60.280714],[-1.159035,60.281586],[-1.156285,60.282576],[-1.156447,60.283433],[-1.15523,60.283917],[-1.149607,60.284776],[-1.14935,60.285605],[-1.146615,60.286121],[-1.144737,60.28843],[-1.143128,60.289462],[-1.140598,60.290415],[-1.137373,60.291997],[-1.136062,60.292038],[-1.133333,60.292871],[-1.131511,60.29432],[-1.130694,60.295613],[-1.128556,60.295938],[-1.127618,60.297595],[-1.125659,60.298074],[-1.124883,60.299093],[-1.122324,60.299539],[-1.120039,60.300926],[-1.117535,60.301743],[-1.116384,60.302865],[-1.10977,60.303707],[-1.109712,60.302338],[-1.106679,60.301855],[-1.106321,60.301069],[-1.103372,60.301914],[-1.101021,60.303483],[-1.099106,60.303697],[-1.095169,60.301602],[-1.091044,60.301897],[-1.089954,60.301086],[-1.090498,60.29981],[-1.087584,60.299454],[-1.083696,60.301304],[-1.083842,60.302566],[-1.082272,60.303381],[-1.081773,60.3051],[-1.083753,60.305166],[-1.08302,60.306476],[-1.087844,60.305238],[-1.089178,60.306134],[-1.088104,60.307211],[-1.090123,60.307578],[-1.089946,60.308807],[-1.0927,60.310378],[-1.090274,60.314005],[-1.090186,60.31519],[-1.088949,60.315738],[-1.089178,60.317944],[-1.087486,60.31822],[-1.083215,60.320112],[-1.082425,60.321485],[-1.081374,60.321288],[-1.079982,60.322429],[-1.080629,60.323283],[-1.083199,60.322963],[-1.082593,60.324561],[-1.085176,60.325764],[-1.088269,60.325561],[-1.089479,60.324681],[-1.090799,60.324748],[-1.094416,60.323892],[-1.095798,60.322744],[-1.095778,60.321814],[-1.098914,60.321342],[-1.104575,60.321878],[-1.107275,60.321798],[-1.109888,60.322246],[-1.111092,60.32326],[-1.11065,60.325197],[-1.109148,60.326502],[-1.110425,60.327467],[-1.113399,60.327999],[-1.116965,60.327249],[-1.117954,60.326699],[-1.11996,60.32431],[-1.123572,60.323612],[-1.126485,60.324291],[-1.127807,60.325502],[-1.133344,60.327464],[-1.13506,60.3262],[-1.135261,60.323917],[-1.136686,60.323255],[-1.135471,60.322236],[-1.13323,60.322444],[-1.132305,60.321688],[-1.133557,60.320735],[-1.135676,60.320635],[-1.136305,60.321705],[-1.137949,60.3229],[-1.13756,60.324099],[-1.136462,60.325055],[-1.137221,60.327137],[-1.139517,60.328425],[-1.140617,60.330305],[-1.142911,60.332],[-1.144496,60.331615],[-1.146567,60.332777],[-1.14745,60.331203],[-1.14717,60.329887],[-1.147732,60.32852],[-1.14883,60.328214],[-1.150129,60.331269],[-1.152725,60.332422],[-1.152121,60.333693],[-1.152385,60.335387],[-1.155006,60.337712],[-1.158434,60.337172],[-1.160079,60.335207],[-1.163799,60.332802],[-1.163048,60.331728],[-1.164484,60.329371],[-1.165973,60.328061],[-1.165073,60.326883],[-1.165634,60.325749],[-1.165437,60.322836],[-1.168921,60.323557],[-1.170307,60.327616],[-1.171337,60.32864],[-1.173428,60.329823],[-1.175653,60.330653],[-1.173897,60.33173],[-1.172322,60.338835],[-1.173376,60.340476],[-1.173047,60.3431],[-1.175183,60.346773],[-1.178042,60.348021],[-1.18207,60.34887],[-1.182716,60.349843],[-1.18591,60.350908],[-1.186695,60.350617],[-1.190247,60.352245],[-1.188468,60.352446],[-1.180534,60.351593],[-1.176482,60.351781],[-1.173717,60.352565],[-1.169555,60.352601],[-1.165978,60.353092],[-1.163298,60.352269],[-1.161167,60.352124],[-1.1601,60.351371],[-1.15579,60.350871],[-1.153324,60.349723],[-1.15054,60.350496],[-1.148031,60.350338],[-1.144784,60.349377],[-1.141187,60.348958],[-1.136815,60.349568],[-1.133956,60.349069],[-1.131248,60.350174],[-1.128889,60.34956],[-1.125708,60.349124],[-1.125469,60.348489],[-1.12333,60.347325],[-1.122538,60.345789],[-1.120748,60.346295],[-1.118184,60.345311],[-1.11262,60.347052],[-1.10925,60.347113],[-1.108416,60.347917],[-1.108594,60.349162],[-1.105053,60.349749],[-1.104299,60.350844],[-1.102676,60.351667],[-1.102136,60.352691],[-1.100661,60.352979],[-1.096911,60.355549],[-1.094323,60.355724],[-1.09198,60.354945],[-1.090521,60.355572],[-1.088853,60.35555],[-1.086611,60.354136],[-1.084733,60.3552],[-1.082767,60.355142],[-1.081417,60.356444],[-1.079819,60.356561],[-1.078786,60.357835],[-1.07648,60.357564],[-1.0755,60.356735],[-1.073997,60.358487],[-1.075131,60.359179],[-1.076818,60.358845],[-1.077632,60.36176],[-1.076972,60.362991],[-1.075671,60.363794],[-1.074901,60.365715],[-1.074424,60.370603],[-1.07677,60.373033],[-1.075311,60.374633],[-1.078108,60.375369],[-1.080794,60.374874],[-1.080902,60.377427],[-1.079711,60.378592],[-1.080396,60.379227],[-1.076755,60.382227],[-1.076508,60.383838],[-1.075222,60.383829],[-1.073208,60.385117],[-1.073048,60.386615],[-1.073777,60.387577],[-1.075784,60.388407],[-1.077561,60.388102],[-1.082816,60.387953],[-1.084136,60.387446],[-1.084463,60.38646],[-1.086517,60.386986],[-1.08902,60.386986],[-1.090869,60.387685],[-1.091906,60.389651],[-1.09374,60.390793],[-1.096558,60.391576],[-1.098188,60.392708],[-1.100685,60.392282],[-1.101836,60.392635],[-1.105172,60.392083],[-1.107926,60.393897],[-1.10922,60.392016],[-1.110474,60.391611],[-1.111835,60.390295],[-1.112341,60.388669],[-1.115374,60.38587],[-1.115402,60.384169],[-1.117029,60.382493],[-1.119567,60.381688],[-1.12302,60.377354],[-1.122749,60.375925],[-1.124111,60.37496],[-1.123187,60.374172],[-1.124887,60.371328],[-1.129069,60.369379],[-1.1324,60.369879],[-1.13359,60.370467],[-1.13213,60.372383],[-1.130252,60.372283],[-1.129257,60.372936],[-1.131219,60.373575],[-1.132168,60.375092],[-1.132222,60.376849],[-1.131172,60.377803],[-1.13084,60.379447],[-1.129703,60.379646],[-1.127903,60.380882],[-1.12726,60.382002],[-1.130519,60.381891],[-1.132957,60.382641],[-1.1341,60.381598],[-1.135765,60.381734],[-1.136748,60.38298],[-1.139606,60.380197],[-1.140838,60.381273],[-1.141189,60.38344],[-1.138703,60.384604],[-1.137999,60.386108],[-1.134967,60.388589],[-1.135062,60.389106],[-1.133376,60.390438],[-1.132427,60.392358],[-1.129992,60.393172],[-1.127964,60.394703],[-1.127248,60.396028],[-1.124371,60.397059],[-1.12196,60.400011],[-1.121647,60.401544],[-1.118151,60.402321],[-1.112638,60.401385],[-1.108834,60.40256],[-1.108033,60.403586],[-1.106429,60.404159],[-1.10538,60.405575],[-1.102893,60.404937],[-1.100548,60.405799],[-1.097838,60.405859],[-1.098202,60.407606],[-1.096059,60.407641],[-1.093594,60.409128],[-1.089716,60.409546],[-1.088016,60.410922],[-1.086226,60.411641],[-1.084941,60.41289],[-1.08523,60.415312],[-1.081977,60.416323],[-1.0788,60.418432],[-1.078473,60.419395],[-1.074201,60.421161],[-1.070682,60.421949],[-1.069098,60.425265],[-1.067219,60.425575],[-1.068304,60.426548],[-1.06644,60.426955],[-1.066342,60.427639],[-1.062429,60.428846],[-1.05965,60.430416],[-1.055483,60.431917],[-1.055125,60.432988],[-1.053844,60.433306],[-1.053786,60.434356],[-1.052731,60.434684],[-1.050874,60.437977],[-1.049863,60.438082],[-1.048319,60.440397],[-1.051469,60.439382],[-1.050671,60.441527],[-1.053652,60.441489],[-1.053455,60.442675],[-1.05164,60.44412],[-1.051668,60.445341],[-1.050581,60.446382],[-1.050813,60.447243],[-1.049183,60.448614],[-1.051703,60.449763],[-1.053497,60.449026],[-1.054338,60.447905],[-1.056058,60.447819],[-1.057094,60.446901],[-1.060261,60.44704],[-1.064208,60.447575],[-1.06604,60.446767],[-1.0661,60.445914],[-1.067839,60.444995],[-1.06966,60.443129],[-1.071092,60.443897],[-1.069598,60.445642],[-1.071241,60.445708],[-1.072097,60.444593],[-1.071955,60.443293],[-1.074153,60.442985],[-1.074591,60.441645],[-1.077288,60.440177],[-1.079339,60.437921],[-1.082023,60.437131],[-1.083938,60.438172],[-1.086404,60.438378],[-1.08946,60.436625],[-1.090404,60.431118],[-1.097223,60.428026],[-1.097096,60.427631],[-1.099852,60.426552],[-1.099035,60.424164],[-1.09962,60.421195],[-1.099052,60.419755],[-1.096922,60.418313],[-1.097822,60.417745],[-1.101127,60.418154],[-1.105698,60.417592],[-1.107586,60.417964],[-1.109893,60.416246],[-1.110046,60.415277],[-1.112324,60.415337],[-1.113952,60.4159],[-1.114709,60.41752],[-1.112671,60.418608],[-1.113583,60.422116],[-1.111688,60.423684],[-1.108888,60.42455],[-1.110456,60.42678],[-1.11351,60.427822],[-1.115793,60.428016],[-1.117631,60.429569],[-1.11869,60.429378],[-1.120048,60.426868],[-1.119954,60.424596],[-1.122269,60.4233],[-1.1209,60.422533],[-1.120699,60.420888],[-1.121436,60.419838],[-1.124844,60.417669],[-1.126772,60.417242],[-1.128991,60.416053],[-1.129529,60.414975],[-1.131713,60.413728],[-1.135777,60.41282],[-1.136872,60.41192],[-1.136345,60.411257],[-1.133602,60.409937],[-1.133233,60.409163],[-1.133867,60.407151],[-1.131658,60.407019],[-1.130205,60.407859],[-1.126371,60.408056],[-1.125563,60.406639],[-1.123856,60.40584],[-1.122238,60.405881],[-1.121763,60.404385],[-1.123547,60.404088],[-1.123007,60.403227],[-1.124247,60.402629],[-1.126172,60.402817],[-1.127764,60.40214],[-1.131386,60.402377],[-1.131155,60.401505],[-1.134662,60.400683],[-1.138704,60.400646],[-1.140069,60.400134],[-1.143474,60.401094],[-1.143725,60.403996],[-1.147208,60.403385],[-1.149275,60.404152],[-1.151369,60.403546],[-1.15293,60.402133],[-1.156025,60.396991],[-1.155441,60.395581],[-1.153813,60.394998],[-1.151294,60.394894],[-1.151041,60.394175],[-1.153267,60.393349],[-1.15242,60.392787],[-1.153817,60.392064],[-1.15352,60.391299],[-1.155977,60.391359],[-1.160718,60.389369],[-1.162335,60.387157],[-1.16199,60.383928],[-1.162586,60.383076],[-1.161758,60.381156],[-1.161992,60.379552],[-1.16328,60.377862],[-1.165026,60.378162],[-1.165736,60.3795],[-1.164978,60.379933],[-1.167458,60.381375],[-1.166546,60.382216],[-1.167598,60.383483],[-1.167245,60.386092],[-1.166033,60.38762],[-1.167229,60.390173],[-1.166037,60.39743],[-1.166724,60.398579],[-1.169525,60.397963],[-1.170643,60.399042],[-1.169876,60.399896],[-1.16674,60.400451],[-1.167904,60.40247],[-1.170451,60.402975],[-1.17093,60.403737],[-1.168212,60.405709],[-1.168637,60.406852],[-1.16788,60.408037],[-1.169392,60.412118],[-1.168299,60.413332],[-1.169562,60.4144],[-1.17669,60.413214],[-1.182863,60.411407],[-1.18879,60.409247],[-1.196043,60.407356],[-1.202232,60.404812],[-1.20766,60.403282],[-1.210485,60.402819],[-1.216914,60.400869],[-1.21916,60.401663],[-1.221817,60.401715],[-1.223574,60.403299],[-1.221366,60.404404],[-1.215723,60.405745],[-1.211264,60.407371],[-1.197421,60.411136],[-1.190788,60.413601],[-1.189693,60.414533],[-1.189891,60.41571],[-1.191537,60.41669],[-1.191643,60.418266],[-1.193853,60.419986],[-1.203843,60.418016],[-1.217491,60.413778],[-1.219584,60.412807],[-1.227519,60.410793],[-1.237038,60.40727],[-1.24667,60.404635],[-1.248072,60.404059],[-1.250215,60.402273],[-1.253221,60.4017],[-1.25519,60.400748],[-1.258331,60.398426],[-1.261442,60.399192],[-1.260231,60.400611],[-1.258399,60.400321],[-1.258977,60.402427],[-1.255514,60.404438],[-1.255221,60.404948],[-1.250539,60.407288],[-1.237306,60.412308],[-1.229865,60.414478],[-1.228564,60.415396],[-1.228788,60.41669],[-1.227928,60.417341],[-1.220786,60.420235],[-1.214952,60.421943],[-1.2111,60.423546],[-1.204575,60.427835],[-1.195319,60.431516],[-1.193497,60.431172],[-1.190736,60.429849],[-1.191791,60.428505],[-1.193953,60.426936],[-1.190969,60.424969],[-1.190833,60.423846],[-1.189067,60.422847],[-1.186536,60.422446],[-1.180289,60.420648],[-1.176563,60.42042],[-1.174279,60.420625],[-1.168116,60.420101],[-1.166974,60.422209],[-1.168396,60.423062],[-1.168922,60.424861],[-1.171615,60.426462],[-1.172263,60.427427],[-1.176155,60.428456],[-1.173113,60.431159],[-1.172508,60.432776],[-1.173239,60.433687],[-1.176276,60.433935],[-1.179447,60.433169],[-1.182248,60.432927],[-1.18317,60.432136],[-1.187582,60.431135],[-1.190436,60.429987],[-1.192744,60.431827],[-1.190737,60.43294],[-1.186374,60.434437],[-1.184461,60.434111],[-1.184357,60.435166],[-1.176929,60.437212],[-1.171623,60.437605],[-1.166275,60.437119],[-1.165141,60.437762],[-1.165106,60.439836],[-1.167359,60.441987],[-1.16897,60.442577],[-1.169665,60.443501],[-1.173507,60.444993],[-1.174235,60.446376],[-1.17837,60.446711],[-1.191482,60.444545],[-1.202001,60.444542],[-1.202498,60.445621],[-1.193903,60.447625],[-1.186622,60.450214],[-1.18295,60.451086],[-1.17968,60.452884],[-1.178307,60.453047],[-1.17594,60.45574],[-1.175782,60.456571],[-1.17839,60.460632],[-1.179445,60.460748],[-1.181861,60.462053],[-1.184027,60.462258],[-1.185862,60.463646],[-1.189909,60.463697],[-1.194299,60.463382],[-1.198045,60.461869],[-1.200436,60.460118],[-1.20608,60.457802],[-1.20695,60.457161],[-1.208772,60.4585],[-1.207182,60.462478],[-1.208879,60.466763],[-1.208266,60.468032],[-1.204568,60.469208],[-1.202508,60.469171],[-1.201255,60.470294],[-1.201163,60.471479],[-1.202347,60.472087],[-1.20399,60.47408],[-1.204026,60.477052],[-1.203184,60.478321],[-1.204111,60.478772],[-1.20553,60.48057],[-1.206336,60.483763],[-1.210646,60.486534],[-1.212234,60.487096],[-1.212882,60.488132],[-1.214221,60.488841],[-1.216434,60.488768],[-1.219859,60.490113],[-1.222985,60.492596],[-1.225858,60.492698],[-1.22719,60.493089],[-1.227146,60.494492],[-1.228819,60.495045],[-1.229852,60.494274],[-1.232875,60.494197],[-1.238087,60.493549],[-1.243087,60.492177],[-1.244189,60.490589],[-1.243763,60.489348],[-1.244804,60.48838],[-1.245153,60.486662],[-1.246537,60.485063],[-1.24943,60.483907],[-1.250213,60.483072],[-1.251802,60.483193],[-1.253769,60.482315],[-1.255142,60.481063],[-1.258014,60.480063],[-1.259516,60.478841],[-1.260798,60.476757],[-1.26179,60.476295],[-1.269328,60.47681],[-1.27058,60.47721],[-1.271264,60.478327],[-1.270423,60.480001],[-1.270457,60.481362],[-1.271559,60.483338],[-1.273337,60.484372],[-1.273259,60.485422],[-1.275431,60.485941],[-1.276212,60.486789],[-1.280231,60.487763],[-1.281444,60.486377],[-1.281276,60.485344],[-1.282965,60.484639],[-1.285006,60.484942],[-1.286888,60.484566],[-1.286457,60.483742],[-1.28745,60.482635],[-1.287328,60.481089],[-1.287915,60.480468],[-1.287243,60.478759],[-1.288587,60.47591],[-1.288463,60.474637],[-1.293995,60.471637],[-1.296896,60.47143],[-1.300783,60.471723],[-1.301305,60.470725],[-1.30382,60.468036],[-1.303954,60.466339],[-1.300935,60.462463],[-1.298154,60.460949],[-1.294232,60.459975],[-1.292044,60.458929],[-1.291299,60.458026],[-1.28863,60.45757],[-1.288145,60.457036],[-1.284519,60.457178],[-1.282235,60.456684],[-1.279506,60.458686],[-1.27685,60.458095],[-1.274673,60.456673],[-1.272227,60.45302],[-1.263321,60.44951],[-1.259924,60.448646],[-1.258865,60.445073],[-1.259704,60.443512],[-1.262055,60.442504],[-1.267707,60.441631],[-1.268416,60.442204],[-1.272465,60.443755],[-1.273146,60.444662],[-1.275859,60.446618],[-1.277409,60.448199],[-1.278427,60.447533],[-1.279414,60.445304],[-1.276586,60.443101],[-1.278605,60.441448],[-1.279161,60.440298],[-1.27828,60.43941],[-1.278936,60.438013],[-1.281165,60.437712],[-1.281782,60.436581],[-1.283337,60.437087],[-1.285336,60.436672],[-1.284115,60.43996],[-1.284943,60.441312],[-1.286671,60.442161],[-1.295454,60.443892],[-1.300599,60.442445],[-1.311637,60.440107],[-1.316316,60.437527],[-1.319185,60.437129],[-1.321239,60.437552],[-1.327119,60.437941],[-1.330377,60.437154],[-1.334104,60.435278],[-1.337403,60.4316],[-1.3396,60.429873],[-1.341654,60.42934],[-1.342702,60.427379],[-1.344105,60.426703],[-1.343674,60.425556],[-1.34425,60.42353],[-1.343063,60.422074],[-1.343563,60.42112],[-1.346167,60.419876],[-1.345111,60.417725],[-1.346889,60.416463],[-1.346391,60.415046],[-1.346748,60.413553],[-1.345581,60.412412],[-1.345683,60.411402],[-1.342615,60.410049],[-1.341447,60.409918],[-1.33642,60.410728],[-1.33206,60.41089],[-1.329823,60.41157],[-1.328524,60.411048],[-1.330354,60.409535],[-1.333349,60.409083],[-1.335799,60.408046],[-1.342054,60.408152],[-1.345572,60.407451],[-1.349626,60.403946],[-1.349539,60.403003],[-1.350741,60.401561],[-1.352871,60.400089],[-1.354513,60.399687],[-1.359743,60.39951],[-1.363951,60.398233],[-1.368429,60.398254],[-1.373118,60.39657],[-1.37524,60.393742],[-1.378182,60.394009],[-1.38042,60.39616],[-1.383716,60.3975],[-1.382681,60.400839],[-1.383779,60.403484],[-1.38349,60.404094],[-1.377653,60.403326],[-1.372763,60.404255],[-1.36961,60.406009],[-1.37099,60.407295],[-1.372845,60.407285],[-1.374234,60.408139],[-1.373064,60.41033],[-1.373516,60.411765],[-1.369688,60.413491],[-1.368152,60.413185],[-1.365964,60.411751],[-1.362985,60.41136],[-1.359558,60.411631],[-1.357506,60.41233],[-1.355957,60.413346],[-1.356139,60.41561],[-1.357138,60.417442],[-1.359369,60.418952],[-1.362765,60.420297],[-1.361477,60.425325],[-1.362866,60.428795],[-1.363649,60.429253],[-1.357736,60.430838],[-1.357382,60.433642],[-1.3563,60.434891],[-1.354684,60.438488],[-1.344749,60.441911],[-1.344376,60.442956],[-1.341808,60.445225],[-1.341219,60.451318],[-1.345026,60.453662],[-1.348443,60.454577],[-1.348253,60.455878],[-1.346165,60.456685],[-1.342076,60.456584],[-1.339338,60.455367],[-1.338204,60.454333],[-1.337604,60.449886],[-1.335713,60.448448],[-1.334324,60.448068],[-1.326517,60.448798],[-1.32396,60.448521],[-1.323643,60.449416],[-1.320162,60.451703],[-1.320163,60.452596],[-1.321628,60.454419],[-1.324014,60.455944],[-1.323649,60.456723],[-1.325766,60.458795],[-1.332072,60.460826],[-1.333188,60.461851],[-1.332045,60.463488],[-1.332383,60.464307],[-1.331804,60.466108],[-1.329215,60.467591],[-1.32588,60.468818],[-1.324972,60.469626],[-1.324704,60.473328],[-1.326034,60.475409],[-1.32789,60.476684],[-1.330678,60.477454],[-1.331128,60.47846],[-1.329859,60.47957],[-1.327743,60.480297],[-1.323638,60.480119],[-1.319922,60.479329],[-1.316829,60.479362],[-1.315032,60.480542],[-1.311529,60.482199],[-1.310991,60.483117],[-1.311715,60.484162],[-1.311036,60.484854],[-1.312956,60.485726],[-1.316765,60.488484],[-1.317827,60.490308],[-1.316443,60.492119],[-1.31432,60.493109],[-1.311376,60.492879],[-1.310178,60.4936],[-1.31041,60.495518],[-1.311611,60.496408],[-1.315811,60.497938],[-1.31697,60.497338],[-1.319314,60.497534],[-1.32138,60.4971],[-1.322448,60.497402],[-1.325708,60.495556],[-1.327329,60.495052],[-1.328293,60.493764],[-1.328311,60.492425],[-1.330293,60.490866],[-1.331903,60.488945],[-1.332069,60.488021],[-1.334138,60.486933],[-1.335459,60.484934],[-1.335336,60.483627],[-1.334409,60.482265],[-1.332255,60.480925],[-1.330548,60.480324],[-1.330794,60.479127],[-1.332116,60.478277],[-1.333963,60.477991],[-1.343558,60.479693],[-1.348718,60.479397],[-1.351729,60.47882],[-1.354294,60.479453],[-1.352835,60.480944],[-1.353053,60.481747],[-1.3489,60.48254],[-1.344672,60.483989],[-1.342152,60.486054],[-1.339625,60.48675],[-1.339712,60.487196],[-1.337365,60.4889],[-1.337314,60.490045],[-1.33602,60.4925],[-1.336355,60.493552],[-1.335913,60.495531],[-1.334152,60.498447],[-1.334773,60.501113],[-1.339622,60.501633],[-1.341112,60.501427],[-1.342394,60.502589],[-1.344048,60.503065],[-1.339778,60.504817],[-1.339066,60.505806],[-1.335088,60.506835],[-1.331154,60.506393],[-1.329197,60.507005],[-1.325467,60.50715],[-1.324176,60.509281],[-1.324104,60.510555],[-1.328588,60.512091],[-1.329042,60.514934],[-1.330872,60.515236],[-1.332121,60.514322],[-1.333838,60.514782],[-1.333412,60.515729],[-1.335047,60.517721],[-1.334797,60.518367],[-1.33763,60.519472],[-1.340068,60.519344],[-1.341743,60.519856],[-1.34955,60.519198],[-1.351948,60.517196],[-1.356637,60.515919],[-1.360675,60.517011],[-1.35687,60.518326],[-1.3529,60.520938],[-1.351301,60.522321],[-1.34823,60.523163],[-1.341861,60.52347],[-1.333947,60.523211],[-1.331989,60.523376],[-1.329106,60.523023],[-1.326515,60.523349],[-1.323962,60.524966],[-1.325619,60.526181],[-1.32882,60.526871],[-1.330451,60.527723],[-1.329982,60.528839],[-1.331196,60.529163],[-1.334997,60.529034],[-1.335826,60.528603],[-1.339383,60.529289],[-1.340819,60.529938],[-1.345378,60.529296],[-1.345811,60.529496],[-1.352619,60.529156],[-1.359699,60.526997],[-1.364871,60.526261],[-1.363643,60.528378],[-1.358267,60.529826],[-1.358753,60.531992],[-1.356664,60.533477],[-1.352216,60.539511],[-1.353162,60.541732],[-1.35069,60.54073],[-1.347138,60.540088],[-1.345089,60.537721],[-1.343318,60.537008],[-1.341327,60.536765],[-1.33935,60.537172],[-1.336885,60.539443],[-1.333874,60.540371],[-1.33042,60.540125],[-1.327467,60.537216],[-1.324543,60.537619],[-1.321527,60.536729],[-1.320651,60.537297],[-1.320284,60.538664],[-1.319054,60.538816],[-1.317047,60.541055],[-1.316404,60.543201],[-1.316869,60.544163],[-1.315196,60.54441],[-1.315508,60.546525],[-1.317229,60.547917],[-1.316744,60.551532],[-1.31779,60.552859],[-1.317188,60.55464],[-1.314617,60.555248],[-1.314681,60.556276],[-1.313696,60.558004],[-1.314278,60.560238],[-1.31394,60.564138],[-1.315291,60.565283],[-1.315454,60.566269],[-1.314237,60.566918],[-1.313331,60.568776],[-1.313899,60.569507],[-1.313765,60.571091],[-1.316186,60.571341],[-1.317922,60.573401],[-1.321688,60.573025],[-1.323952,60.573827],[-1.322656,60.576891],[-1.323552,60.578579],[-1.326695,60.578641],[-1.330115,60.576769],[-1.335685,60.583313],[-1.33276,60.585465],[-1.330585,60.585711],[-1.326709,60.586975],[-1.324289,60.587011],[-1.32242,60.586356],[-1.320418,60.583664],[-1.318941,60.583317],[-1.317028,60.58526],[-1.314349,60.58706],[-1.313855,60.588024],[-1.31193,60.588969],[-1.309994,60.589068],[-1.310084,60.590248],[-1.308087,60.591133],[-1.307822,60.592411],[-1.306548,60.593866],[-1.305145,60.594129],[-1.304444,60.595759],[-1.307447,60.597902],[-1.305293,60.598318],[-1.304976,60.599359],[-1.305748,60.600432],[-1.308796,60.601879],[-1.308604,60.603474],[-1.306645,60.605006],[-1.304666,60.604475],[-1.304041,60.605505],[-1.305919,60.605649],[-1.304083,60.607812],[-1.30579,60.609078],[-1.302989,60.611524],[-1.303192,60.612683],[-1.304424,60.614018],[-1.304149,60.616185],[-1.304712,60.617194],[-1.303488,60.618898],[-1.300729,60.619732],[-1.300746,60.620625],[-1.303597,60.624429],[-1.306071,60.623652],[-1.308163,60.623694],[-1.308142,60.624655],[-1.309381,60.625245],[-1.311145,60.623947],[-1.312894,60.624634],[-1.314059,60.624425],[-1.315384,60.625702],[-1.314255,60.626388],[-1.31461,60.62814],[-1.316184,60.629517],[-1.314512,60.630211],[-1.312215,60.629066],[-1.310195,60.629518],[-1.309794,60.630279],[-1.311642,60.630621],[-1.310453,60.632819],[-1.307965,60.635486],[-1.30768,60.636832]]],[[[-0.898952,60.631902],[-0.898114,60.632358],[-0.895469,60.632475],[-0.895211,60.633047],[-0.897346,60.633694],[-0.898275,60.634595],[-0.900481,60.632898],[-0.901431,60.631568],[-0.898952,60.631902]]],[[[-0.912721,60.641842],[-0.915185,60.641166],[-0.913902,60.639333],[-0.91484,60.636997],[-0.910566,60.636552],[-0.907754,60.639467],[-0.907361,60.641218],[-0.909267,60.641765],[-0.911353,60.640906],[-0.912721,60.641842]]],[[[-0.93883,60.645513],[-0.941106,60.6447],[-0.944512,60.645095],[-0.946507,60.645039],[-0.944932,60.643725],[-0.943523,60.643476],[-0.938554,60.644082],[-0.93883,60.645513]]],[[[-1.300247,60.653363],[-1.303264,60.654259],[-1.306005,60.652911],[-1.306212,60.651989],[-1.304283,60.651117],[-1.300874,60.651441],[-1.300247,60.653363]]],[[[-0.877487,60.654935],[-0.877033,60.655892],[-0.878416,60.656608],[-0.880106,60.656164],[-0.87918,60.654639],[-0.877487,60.654935]]],[[[-0.838336,60.665219],[-0.840315,60.665402],[-0.84374,60.664538],[-0.84454,60.663405],[-0.843123,60.662872],[-0.841896,60.660878],[-0.838357,60.659805],[-0.837948,60.659231],[-0.835417,60.659569],[-0.8338,60.660557],[-0.837179,60.662039],[-0.837267,60.664155],[-0.838336,60.665219]]],[[[-0.948621,60.670807],[-0.948298,60.672026],[-0.950612,60.671496],[-0.948621,60.670807]]],[[[-0.985609,60.672458],[-0.988701,60.671982],[-0.988629,60.669903],[-0.986278,60.668408],[-0.98536,60.667054],[-0.982343,60.666389],[-0.978528,60.663501],[-0.977482,60.661279],[-0.975118,60.660251],[-0.974595,60.659439],[-0.97094,60.659618],[-0.970816,60.66033],[-0.968387,60.661362],[-0.969056,60.66218],[-0.970721,60.662453],[-0.971915,60.664608],[-0.973565,60.664805],[-0.976123,60.666342],[-0.977979,60.666675],[-0.978068,60.667632],[-0.980192,60.66816],[-0.980302,60.669602],[-0.982964,60.670197],[-0.983114,60.67097],[-0.985609,60.672458]]],[[[-0.907221,60.679356],[-0.909165,60.679076],[-0.912297,60.679354],[-0.917197,60.678728],[-0.919232,60.67782],[-0.919726,60.675637],[-0.918737,60.672922],[-0.915933,60.672495],[-0.911465,60.671198],[-0.909421,60.671033],[-0.90905,60.669822],[-0.902564,60.667623],[-0.902052,60.666542],[-0.900491,60.665375],[-0.901945,60.662693],[-0.9005,60.66107],[-0.897901,60.662705],[-0.894543,60.66274],[-0.891581,60.66373],[-0.888067,60.663239],[-0.88802,60.660886],[-0.886592,60.659586],[-0.884318,60.661066],[-0.882895,60.662529],[-0.882704,60.664371],[-0.886437,60.664873],[-0.885476,60.667532],[-0.882753,60.668717],[-0.878899,60.66798],[-0.878082,60.669378],[-0.876639,60.670089],[-0.876605,60.671067],[-0.879626,60.672085],[-0.883076,60.670493],[-0.885849,60.670758],[-0.888513,60.672311],[-0.889631,60.673317],[-0.893319,60.675453],[-0.895967,60.675902],[-0.899604,60.675806],[-0.904557,60.676834],[-0.905366,60.677815],[-0.90454,60.678679],[-0.907221,60.679356]]],[[[-1.07327,60.731624],[-1.077857,60.731525],[-1.077326,60.72975],[-1.076001,60.729111],[-1.076598,60.728419],[-1.07528,60.727063],[-1.072486,60.72607],[-1.077555,60.723771],[-1.07624,60.721155],[-1.076825,60.720084],[-1.074757,60.719843],[-1.074251,60.71908],[-1.074046,60.716313],[-1.074602,60.715283],[-1.074077,60.714103],[-1.075114,60.712323],[-1.075262,60.710821],[-1.074342,60.70815],[-1.075431,60.707167],[-1.076776,60.709116],[-1.077601,60.711995],[-1.076599,60.71465],[-1.077258,60.716724],[-1.075922,60.717064],[-1.077937,60.718286],[-1.07884,60.719349],[-1.082566,60.720839],[-1.082787,60.722527],[-1.084599,60.72396],[-1.082724,60.725763],[-1.085941,60.726404],[-1.086069,60.728354],[-1.088367,60.727826],[-1.089644,60.728414],[-1.091646,60.728174],[-1.092558,60.729686],[-1.094741,60.730178],[-1.097119,60.729607],[-1.097623,60.728925],[-1.102133,60.729484],[-1.102906,60.728889],[-1.106555,60.730764],[-1.109126,60.730895],[-1.109576,60.730197],[-1.11183,60.729892],[-1.112434,60.728971],[-1.114198,60.729266],[-1.117049,60.728645],[-1.117609,60.727803],[-1.119147,60.727492],[-1.122457,60.727837],[-1.127931,60.726855],[-1.127582,60.723784],[-1.124541,60.722804],[-1.125689,60.721294],[-1.125478,60.720239],[-1.119524,60.719791],[-1.119074,60.719226],[-1.122348,60.718079],[-1.122207,60.717136],[-1.123147,60.716334],[-1.125963,60.715054],[-1.1291,60.714595],[-1.127867,60.713694],[-1.1294,60.713171],[-1.128059,60.710459],[-1.12705,60.710198],[-1.127887,60.708476],[-1.133446,60.705943],[-1.135368,60.704714],[-1.132631,60.701657],[-1.13274,60.699713],[-1.131758,60.699299],[-1.133073,60.697544],[-1.132032,60.695422],[-1.130075,60.695764],[-1.128257,60.694963],[-1.129724,60.694168],[-1.12866,60.692836],[-1.125876,60.692459],[-1.129448,60.691113],[-1.129118,60.68947],[-1.131925,60.68915],[-1.133462,60.68837],[-1.130772,60.68518],[-1.130598,60.684308],[-1.127322,60.682694],[-1.129315,60.682094],[-1.129419,60.680548],[-1.128447,60.679251],[-1.130473,60.678781],[-1.132161,60.676079],[-1.13225,60.674642],[-1.131092,60.673956],[-1.131643,60.67322],[-1.13033,60.672122],[-1.131807,60.671485],[-1.131637,60.669973],[-1.134868,60.669156],[-1.137632,60.66771],[-1.137631,60.665206],[-1.136905,60.662779],[-1.13827,60.660802],[-1.137052,60.659247],[-1.137537,60.656824],[-1.139595,60.657389],[-1.140041,60.655819],[-1.13884,60.654116],[-1.14009,60.65379],[-1.139973,60.650862],[-1.143369,60.650762],[-1.144437,60.65036],[-1.145543,60.648478],[-1.145637,60.646028],[-1.146573,60.645412],[-1.145874,60.641859],[-1.146435,60.638685],[-1.145737,60.635404],[-1.144273,60.633356],[-1.146236,60.629634],[-1.146189,60.627613],[-1.144525,60.626556],[-1.140296,60.624824],[-1.129608,60.623722],[-1.127831,60.621183],[-1.12454,60.619918],[-1.120775,60.61759],[-1.120166,60.615804],[-1.11864,60.615152],[-1.118086,60.613034],[-1.116631,60.612773],[-1.117037,60.610208],[-1.11603,60.608356],[-1.111044,60.606042],[-1.116187,60.605667],[-1.116867,60.605133],[-1.119712,60.604955],[-1.121731,60.606607],[-1.124297,60.610004],[-1.123926,60.6112],[-1.127833,60.615386],[-1.130441,60.617207],[-1.132206,60.619851],[-1.133209,60.619929],[-1.136743,60.622049],[-1.138745,60.622349],[-1.140888,60.621931],[-1.142714,60.62255],[-1.146114,60.622045],[-1.14805,60.622543],[-1.149333,60.621173],[-1.150788,60.6205],[-1.153062,60.621178],[-1.154528,60.628151],[-1.153712,60.639042],[-1.154228,60.640647],[-1.155148,60.641009],[-1.154465,60.642215],[-1.156027,60.642396],[-1.154401,60.643911],[-1.1548,60.645259],[-1.153968,60.646104],[-1.152597,60.649241],[-1.153807,60.650382],[-1.153139,60.65142],[-1.154177,60.651995],[-1.1542,60.653678],[-1.1551,60.65445],[-1.152334,60.656192],[-1.15483,60.657211],[-1.157161,60.656615],[-1.15911,60.654634],[-1.159118,60.653207],[-1.160415,60.653039],[-1.161119,60.65129],[-1.164019,60.650177],[-1.166309,60.650025],[-1.167328,60.648251],[-1.171369,60.647492],[-1.170117,60.646296],[-1.171465,60.642591],[-1.17457,60.643073],[-1.176489,60.642425],[-1.177586,60.641318],[-1.180004,60.64044],[-1.181076,60.639539],[-1.179458,60.638892],[-1.179548,60.637514],[-1.180924,60.636948],[-1.182283,60.635277],[-1.184776,60.634832],[-1.186442,60.636277],[-1.188163,60.635519],[-1.187608,60.633963],[-1.188564,60.630462],[-1.189977,60.630606],[-1.189864,60.628212],[-1.188358,60.626295],[-1.188578,60.62336],[-1.187411,60.622891],[-1.188757,60.622064],[-1.187699,60.620518],[-1.189083,60.620356],[-1.191195,60.61921],[-1.192461,60.619712],[-1.19524,60.619661],[-1.197426,60.620289],[-1.195487,60.617059],[-1.19626,60.61612],[-1.194114,60.614635],[-1.194152,60.613091],[-1.193495,60.611251],[-1.194275,60.609414],[-1.197478,60.608976],[-1.199541,60.609424],[-1.200748,60.608224],[-1.201291,60.606579],[-1.203084,60.606078],[-1.201452,60.605265],[-1.202789,60.604707],[-1.198407,60.602831],[-1.199414,60.601603],[-1.200399,60.597972],[-1.201314,60.597515],[-1.200862,60.595474],[-1.198291,60.593502],[-1.196687,60.593025],[-1.195781,60.591664],[-1.193805,60.589858],[-1.193135,60.588597],[-1.19348,60.587062],[-1.192091,60.585296],[-1.190739,60.584573],[-1.188536,60.584108],[-1.186785,60.583204],[-1.187256,60.582041],[-1.189234,60.581025],[-1.190684,60.580971],[-1.192687,60.580195],[-1.194363,60.581157],[-1.195115,60.579366],[-1.197093,60.579148],[-1.197708,60.577516],[-1.196539,60.575757],[-1.197976,60.573794],[-1.197929,60.571338],[-1.200032,60.570306],[-1.201225,60.567831],[-1.202404,60.566967],[-1.198135,60.564339],[-1.197262,60.563183],[-1.195196,60.561914],[-1.193397,60.562028],[-1.192044,60.561437],[-1.189308,60.56217],[-1.187488,60.565581],[-1.187409,60.568307],[-1.189625,60.569991],[-1.189914,60.57118],[-1.193741,60.571887],[-1.193873,60.5736],[-1.191605,60.573537],[-1.18936,60.572031],[-1.186895,60.572041],[-1.185293,60.572772],[-1.181984,60.572845],[-1.180656,60.572187],[-1.183434,60.569864],[-1.183134,60.568626],[-1.181569,60.56789],[-1.181334,60.565204],[-1.183818,60.562148],[-1.184136,60.55931],[-1.183229,60.556934],[-1.18054,60.554399],[-1.181969,60.552334],[-1.185159,60.550885],[-1.18739,60.548816],[-1.187806,60.54748],[-1.189503,60.547064],[-1.188869,60.545799],[-1.189443,60.544716],[-1.187332,60.544586],[-1.185999,60.539959],[-1.185117,60.539504],[-1.185431,60.537908],[-1.18215,60.535422],[-1.182376,60.534209],[-1.180346,60.533141],[-1.178453,60.530546],[-1.179355,60.529871],[-1.179047,60.528952],[-1.176568,60.526468],[-1.177557,60.525846],[-1.177201,60.524895],[-1.178444,60.524262],[-1.180518,60.524384],[-1.181732,60.52494],[-1.182924,60.526333],[-1.18488,60.526466],[-1.187071,60.5259],[-1.188118,60.524088],[-1.18779,60.521936],[-1.183572,60.520514],[-1.181396,60.521114],[-1.17989,60.523519],[-1.176815,60.523507],[-1.17564,60.522766],[-1.174643,60.521332],[-1.173232,60.520316],[-1.173784,60.519021],[-1.173203,60.518041],[-1.175055,60.516885],[-1.173373,60.515721],[-1.173527,60.512885],[-1.172634,60.512324],[-1.17184,60.510412],[-1.17238,60.507497],[-1.170728,60.503967],[-1.16886,60.501624],[-1.167916,60.499142],[-1.165696,60.497364],[-1.159307,60.496077],[-1.158338,60.497268],[-1.156826,60.497565],[-1.15268,60.494537],[-1.152297,60.493281],[-1.153943,60.490802],[-1.153252,60.488715],[-1.151852,60.487952],[-1.149122,60.487634],[-1.147301,60.487995],[-1.145367,60.487506],[-1.146443,60.486364],[-1.149132,60.486552],[-1.149052,60.485438],[-1.146402,60.483782],[-1.145232,60.484673],[-1.145782,60.486625],[-1.144593,60.487551],[-1.142598,60.487956],[-1.140861,60.488968],[-1.137089,60.48849],[-1.133614,60.485707],[-1.131099,60.486552],[-1.129153,60.486822],[-1.126717,60.488086],[-1.124059,60.488355],[-1.121597,60.488202],[-1.118629,60.487048],[-1.11721,60.486014],[-1.113652,60.484977],[-1.112831,60.483528],[-1.11166,60.482787],[-1.109604,60.483053],[-1.108901,60.483789],[-1.105628,60.485361],[-1.103811,60.485604],[-1.100733,60.485368],[-1.098917,60.48624],[-1.098645,60.48851],[-1.097523,60.490231],[-1.099374,60.491397],[-1.105414,60.491966],[-1.108322,60.49369],[-1.115323,60.492985],[-1.116512,60.493128],[-1.121742,60.498341],[-1.122248,60.499278],[-1.121787,60.50077],[-1.120146,60.501619],[-1.117583,60.502141],[-1.117617,60.50325],[-1.119969,60.503791],[-1.122227,60.503105],[-1.122291,60.504753],[-1.117897,60.505672],[-1.115905,60.506925],[-1.114417,60.506416],[-1.112625,60.505013],[-1.110798,60.504246],[-1.107762,60.503838],[-1.105192,60.504106],[-1.103382,60.503331],[-1.10444,60.501874],[-1.099455,60.502343],[-1.098347,60.501706],[-1.095509,60.50126],[-1.091934,60.499994],[-1.095139,60.499049],[-1.096352,60.499871],[-1.099312,60.500351],[-1.10331,60.500123],[-1.104772,60.501256],[-1.110271,60.500885],[-1.110897,60.500511],[-1.109831,60.498345],[-1.10763,60.498213],[-1.105148,60.496879],[-1.101433,60.496135],[-1.100041,60.496373],[-1.097203,60.497758],[-1.094397,60.498041],[-1.093914,60.499284],[-1.0905,60.499532],[-1.086861,60.498304],[-1.082895,60.495626],[-1.08078,60.495311],[-1.079658,60.494478],[-1.07801,60.494246],[-1.075358,60.492802],[-1.068647,60.489705],[-1.06365,60.490384],[-1.059864,60.492212],[-1.057944,60.493403],[-1.054854,60.494727],[-1.053938,60.494546],[-1.051469,60.495397],[-1.049498,60.495011],[-1.047156,60.495487],[-1.046371,60.49644],[-1.043457,60.497927],[-1.039546,60.499048],[-1.037709,60.498569],[-1.0377,60.496971],[-1.044653,60.49501],[-1.049125,60.49331],[-1.053605,60.492219],[-1.050224,60.491164],[-1.044441,60.492345],[-1.043241,60.491582],[-1.044471,60.490903],[-1.042719,60.489827],[-1.040817,60.490442],[-1.041044,60.49109],[-1.039566,60.492188],[-1.038821,60.494055],[-1.037657,60.494779],[-1.033777,60.494647],[-1.032077,60.493961],[-1.030941,60.495129],[-1.031464,60.496507],[-1.028819,60.496991],[-1.029707,60.497747],[-1.033681,60.498768],[-1.035563,60.499486],[-1.035133,60.500767],[-1.03778,60.501791],[-1.036089,60.503054],[-1.034957,60.50302],[-1.035146,60.504998],[-1.032926,60.506989],[-1.03506,60.508125],[-1.033911,60.508982],[-1.035851,60.510691],[-1.032415,60.510201],[-1.027955,60.510686],[-1.027646,60.509746],[-1.025168,60.509857],[-1.027475,60.512157],[-1.029477,60.511842],[-1.02921,60.513228],[-1.0297,60.514123],[-1.031144,60.514662],[-1.031885,60.515981],[-1.030458,60.517081],[-1.030019,60.518226],[-1.026294,60.518282],[-1.024252,60.518786],[-1.023811,60.519594],[-1.025474,60.520055],[-1.024833,60.521555],[-1.026558,60.521952],[-1.027301,60.523376],[-1.029665,60.523858],[-1.029989,60.524583],[-1.028263,60.525037],[-1.026722,60.526606],[-1.02554,60.526526],[-1.021757,60.530215],[-1.021091,60.532036],[-1.02143,60.532835],[-1.023061,60.533468],[-1.024772,60.532263],[-1.026311,60.532122],[-1.029565,60.530727],[-1.03265,60.53104],[-1.035256,60.529982],[-1.038543,60.530776],[-1.038854,60.532289],[-1.040285,60.533014],[-1.043652,60.533794],[-1.043043,60.53543],[-1.040716,60.535878],[-1.036862,60.535937],[-1.035093,60.537981],[-1.039462,60.538957],[-1.040524,60.541644],[-1.04261,60.541536],[-1.043215,60.542122],[-1.048407,60.543226],[-1.048507,60.549996],[-1.045287,60.550596],[-1.042675,60.550586],[-1.040183,60.549204],[-1.037982,60.547515],[-1.030701,60.54836],[-1.02752,60.549531],[-1.02489,60.548771],[-1.02365,60.547587],[-1.020931,60.547046],[-1.018039,60.547428],[-1.013787,60.548762],[-1.014383,60.55052],[-1.01415,60.551787],[-1.013112,60.552088],[-1.013914,60.553903],[-1.016755,60.554005],[-1.017817,60.55501],[-1.016505,60.556239],[-1.016797,60.557745],[-1.016169,60.558442],[-1.018141,60.559595],[-1.019446,60.559339],[-1.023495,60.560309],[-1.024157,60.561219],[-1.021923,60.562227],[-1.019722,60.561976],[-1.013514,60.564047],[-1.007953,60.563382],[-1.007455,60.565623],[-1.00615,60.566255],[-1.00425,60.565859],[-1.004037,60.568511],[-1.005884,60.570317],[-1.008522,60.571315],[-1.009456,60.572098],[-1.009212,60.575594],[-1.006389,60.575181],[-1.003816,60.576604],[-1.003788,60.577887],[-1.00249,60.578283],[-1.003005,60.581086],[-1.004017,60.581656],[-1.006099,60.581604],[-1.009973,60.58232],[-1.010455,60.58328],[-1.015596,60.58167],[-1.017683,60.58243],[-1.017443,60.584188],[-1.015376,60.585318],[-1.016159,60.586887],[-1.015297,60.588802],[-1.017916,60.590047],[-1.017931,60.590756],[-1.021499,60.590472],[-1.023475,60.589673],[-1.025154,60.586587],[-1.027604,60.586573],[-1.02946,60.586943],[-1.029221,60.589453],[-1.030146,60.590383],[-1.030757,60.593121],[-1.030315,60.594469],[-1.031075,60.595323],[-1.030785,60.597068],[-1.039384,60.596797],[-1.042896,60.596903],[-1.046609,60.596077],[-1.049565,60.596753],[-1.05247,60.598508],[-1.05518,60.598747],[-1.057038,60.597579],[-1.060631,60.597911],[-1.061923,60.598772],[-1.062517,60.600395],[-1.06411,60.601994],[-1.064349,60.603326],[-1.067593,60.60431],[-1.068393,60.603859],[-1.071325,60.604165],[-1.074585,60.605262],[-1.07779,60.606037],[-1.079954,60.606112],[-1.08218,60.605108],[-1.08242,60.604095],[-1.084192,60.603631],[-1.085713,60.605135],[-1.089675,60.605233],[-1.085765,60.606202],[-1.077386,60.607643],[-1.073015,60.609067],[-1.070017,60.611338],[-1.06734,60.610338],[-1.061838,60.6088],[-1.057872,60.608301],[-1.055724,60.607638],[-1.05437,60.606457],[-1.051823,60.602264],[-1.049727,60.600836],[-1.046458,60.600409],[-1.043622,60.60169],[-1.04024,60.605203],[-1.038934,60.605296],[-1.035151,60.60435],[-1.030139,60.604933],[-1.027993,60.605528],[-1.025125,60.609281],[-1.023907,60.611725],[-1.021003,60.61381],[-1.019165,60.61658],[-1.019456,60.618153],[-1.021358,60.620192],[-1.020735,60.621763],[-1.021001,60.623529],[-1.020489,60.625667],[-1.022999,60.628731],[-1.029989,60.629404],[-1.032866,60.63008],[-1.037008,60.629949],[-1.038238,60.630192],[-1.038266,60.632093],[-1.044064,60.634906],[-1.042972,60.635976],[-1.043,60.637739],[-1.044329,60.638333],[-1.046452,60.640099],[-1.050073,60.641],[-1.053039,60.642121],[-1.052272,60.643638],[-1.050895,60.644638],[-1.051013,60.645725],[-1.052472,60.647556],[-1.054462,60.649103],[-1.054535,60.650885],[-1.055441,60.654076],[-1.058423,60.656324],[-1.06072,60.657206],[-1.063684,60.659354],[-1.064913,60.659779],[-1.064869,60.662249],[-1.068124,60.667557],[-1.066527,60.669633],[-1.064602,60.667799],[-1.0613,60.664153],[-1.058565,60.662119],[-1.054369,60.660307],[-1.052195,60.659721],[-1.049109,60.660185],[-1.046747,60.657846],[-1.045336,60.657306],[-1.042627,60.654343],[-1.04286,60.652455],[-1.045279,60.651023],[-1.043533,60.650628],[-1.042332,60.648806],[-1.039808,60.646717],[-1.039574,60.645692],[-1.037726,60.645617],[-1.032777,60.642977],[-1.030872,60.642603],[-1.028055,60.642582],[-1.022722,60.640033],[-1.016766,60.638612],[-1.007297,60.639299],[-1.002471,60.638918],[-1.000675,60.638222],[-0.998997,60.636624],[-0.998445,60.633446],[-0.995623,60.633349],[-0.991565,60.634517],[-0.99189,60.635254],[-0.989533,60.636728],[-0.986359,60.637032],[-0.985277,60.636325],[-0.981689,60.637284],[-0.981526,60.640111],[-0.983118,60.641345],[-0.986843,60.641014],[-0.990789,60.639499],[-0.993965,60.640232],[-0.996261,60.641642],[-0.996622,60.646664],[-0.999548,60.649081],[-0.995806,60.651275],[-0.995681,60.652288],[-0.993814,60.652693],[-0.990973,60.652286],[-0.989331,60.653232],[-0.989344,60.655241],[-0.991013,60.656578],[-0.990423,60.657579],[-0.991132,60.659488],[-0.994685,60.663165],[-0.995041,60.66614],[-0.997368,60.668689],[-0.997041,60.672699],[-0.998408,60.673026],[-0.997897,60.674582],[-0.995779,60.675539],[-0.993724,60.677295],[-0.993542,60.678721],[-0.994605,60.679861],[-0.995393,60.682136],[-0.998174,60.682415],[-0.99947,60.682043],[-1.001452,60.683099],[-1.000481,60.684961],[-0.998598,60.685965],[-0.998115,60.688608],[-0.995719,60.689849],[-0.998206,60.690631],[-1.001774,60.693315],[-1.001054,60.695344],[-1.001352,60.696666],[-0.999022,60.698052],[-0.999802,60.69929],[-1.001327,60.6999],[-1.003186,60.699895],[-1.006717,60.701712],[-1.00642,60.70284],[-1.003722,60.703762],[-1.002542,60.703044],[-1.000269,60.703357],[-0.998771,60.702405],[-0.995418,60.701229],[-0.994716,60.700305],[-0.992063,60.698495],[-0.988375,60.698723],[-0.986787,60.700278],[-0.990417,60.701356],[-0.991516,60.702523],[-0.993061,60.702036],[-0.995306,60.702231],[-0.996545,60.703459],[-0.996544,60.705659],[-1.00001,60.707031],[-1.001517,60.705511],[-1.003076,60.705474],[-1.004907,60.706508],[-1.006849,60.70895],[-1.006765,60.710618],[-1.009387,60.712923],[-1.009386,60.714472],[-1.007659,60.71582],[-1.006215,60.715861],[-1.004108,60.715184],[-1.000942,60.715916],[-1.000216,60.717394],[-1.000948,60.718208],[-0.999387,60.719659],[-1.000455,60.721394],[-1.002383,60.721883],[-1.004805,60.721966],[-1.006611,60.721118],[-1.00808,60.719842],[-1.010068,60.719704],[-1.012004,60.720081],[-1.013971,60.721036],[-1.014869,60.722551],[-1.014239,60.723378],[-1.011484,60.724204],[-1.011467,60.726107],[-1.0125,60.726991],[-1.01808,60.726841],[-1.022768,60.726173],[-1.024728,60.725538],[-1.026312,60.727547],[-1.027915,60.727712],[-1.029717,60.729175],[-1.032778,60.729919],[-1.036269,60.729238],[-1.039835,60.7316],[-1.041606,60.732089],[-1.042555,60.731185],[-1.040336,60.73083],[-1.039199,60.7296],[-1.037604,60.729151],[-1.034376,60.727443],[-1.036082,60.725144],[-1.038608,60.725751],[-1.040794,60.725532],[-1.041548,60.724735],[-1.040803,60.723772],[-1.041981,60.722621],[-1.044842,60.723552],[-1.049361,60.724157],[-1.052348,60.72575],[-1.051943,60.727053],[-1.054584,60.728279],[-1.056725,60.727778],[-1.061655,60.728145],[-1.061533,60.729186],[-1.063944,60.730849],[-1.068232,60.728631],[-1.069629,60.728824],[-1.069261,60.72981],[-1.072227,60.732492],[-1.07327,60.731624]]],[[[-1.043162,60.731777],[-1.041681,60.732447],[-1.044007,60.734068],[-1.045328,60.733685],[-1.044766,60.732291],[-1.043162,60.731777]]],[[[-1.11265,60.738426],[-1.115128,60.737697],[-1.113599,60.736596],[-1.114893,60.734562],[-1.11161,60.734577],[-1.110197,60.73529],[-1.108259,60.735412],[-1.107797,60.736199],[-1.108949,60.73763],[-1.110613,60.737133],[-1.112484,60.737451],[-1.11265,60.738426]]],[[[-0.971298,60.737611],[-0.972987,60.737543],[-0.972714,60.736612],[-0.970633,60.736309],[-0.971298,60.737611]]],[[[-0.80754,60.738722],[-0.808662,60.738884],[-0.811654,60.736334],[-0.813773,60.736294],[-0.813206,60.735369],[-0.814945,60.734109],[-0.81536,60.732802],[-0.814936,60.731613],[-0.811885,60.73155],[-0.811797,60.732209],[-0.808483,60.734303],[-0.807948,60.736373],[-0.806894,60.737576],[-0.80754,60.738722]]],[[[-0.789541,60.759555],[-0.791324,60.760504],[-0.793286,60.760315],[-0.794407,60.759553],[-0.796638,60.756318],[-0.794506,60.754696],[-0.792527,60.753888],[-0.791905,60.752881],[-0.792514,60.751809],[-0.79196,60.75092],[-0.79346,60.749321],[-0.793076,60.747105],[-0.794949,60.746309],[-0.798406,60.746582],[-0.799428,60.745016],[-0.799361,60.742864],[-0.79788,60.742972],[-0.796238,60.741521],[-0.796728,60.740443],[-0.795354,60.739919],[-0.791085,60.740514],[-0.789346,60.742626],[-0.788002,60.743015],[-0.787431,60.744028],[-0.784853,60.745513],[-0.785758,60.747541],[-0.788481,60.748778],[-0.785833,60.749441],[-0.784513,60.750368],[-0.786606,60.752299],[-0.787971,60.751862],[-0.790458,60.753844],[-0.788659,60.754161],[-0.789498,60.756132],[-0.789287,60.757625],[-0.790961,60.757955],[-0.789541,60.759555]]],[[[-0.947526,60.771577],[-0.949783,60.771084],[-0.949275,60.769766],[-0.947253,60.770367],[-0.947526,60.771577]]],[[[-0.954957,60.782393],[-0.95752,60.782157],[-0.955607,60.780944],[-0.954065,60.781469],[-0.954957,60.782393]]],[[[-0.771151,60.830627],[-0.770804,60.831894],[-0.77493,60.83186],[-0.775788,60.830277],[-0.775486,60.829351],[-0.772667,60.829227],[-0.771151,60.830627]]],[[[-0.771594,60.833477],[-0.773202,60.833277],[-0.773955,60.832248],[-0.769884,60.832254],[-0.771594,60.833477]]],[[[-0.873664,60.844627],[-0.874999,60.845697],[-0.877745,60.845665],[-0.878513,60.844799],[-0.880526,60.843882],[-0.881686,60.845309],[-0.883749,60.845551],[-0.886388,60.845361],[-0.887732,60.843567],[-0.890313,60.842824],[-0.891616,60.843405],[-0.894176,60.843023],[-0.896051,60.842101],[-0.8972,60.840213],[-0.89872,60.839835],[-0.901013,60.837883],[-0.898143,60.837385],[-0.898828,60.836406],[-0.897797,60.83601],[-0.897198,60.833794],[-0.894974,60.830665],[-0.89579,60.829813],[-0.898672,60.828907],[-0.899546,60.827572],[-0.901648,60.827396],[-0.904634,60.828301],[-0.904749,60.826815],[-0.90634,60.826801],[-0.908621,60.825972],[-0.909645,60.824242],[-0.908133,60.823023],[-0.907214,60.821112],[-0.909078,60.820381],[-0.911848,60.820022],[-0.911413,60.819045],[-0.913335,60.818746],[-0.913974,60.818055],[-0.912962,60.816184],[-0.918001,60.815313],[-0.922467,60.815897],[-0.923542,60.81674],[-0.927163,60.816774],[-0.928751,60.817119],[-0.931455,60.815686],[-0.931663,60.814138],[-0.93486,60.81336],[-0.93821,60.812951],[-0.93863,60.811904],[-0.935989,60.811461],[-0.935016,60.810874],[-0.932745,60.811458],[-0.931269,60.811051],[-0.926007,60.810394],[-0.925437,60.809581],[-0.927443,60.808111],[-0.927369,60.80759],[-0.930158,60.806889],[-0.932632,60.803811],[-0.934534,60.803791],[-0.935946,60.802778],[-0.938782,60.802046],[-0.940235,60.802013],[-0.941368,60.801093],[-0.943139,60.800586],[-0.944375,60.799572],[-0.946688,60.80025],[-0.947378,60.798253],[-0.948348,60.797816],[-0.946908,60.794954],[-0.949962,60.794476],[-0.949208,60.793793],[-0.952164,60.792346],[-0.954934,60.791344],[-0.951663,60.790556],[-0.952063,60.789827],[-0.950882,60.788305],[-0.948895,60.787571],[-0.947132,60.788437],[-0.9423,60.786761],[-0.940948,60.785417],[-0.938707,60.784317],[-0.934325,60.783417],[-0.932242,60.78186],[-0.934893,60.781638],[-0.93603,60.780884],[-0.936412,60.77959],[-0.935663,60.778659],[-0.936486,60.777916],[-0.936242,60.776688],[-0.934682,60.775163],[-0.935537,60.774703],[-0.934779,60.773471],[-0.936213,60.772854],[-0.937043,60.770809],[-0.936877,60.768873],[-0.939464,60.766534],[-0.939366,60.765391],[-0.940363,60.764197],[-0.939428,60.762731],[-0.940972,60.761596],[-0.943966,60.761495],[-0.945889,60.761922],[-0.94681,60.761283],[-0.946747,60.759846],[-0.945637,60.757588],[-0.944297,60.757556],[-0.944479,60.756346],[-0.943376,60.755487],[-0.942474,60.75306],[-0.942524,60.752086],[-0.940593,60.749463],[-0.943175,60.748445],[-0.943925,60.749395],[-0.94694,60.749454],[-0.946914,60.748022],[-0.949161,60.747178],[-0.947356,60.746566],[-0.945736,60.743941],[-0.946678,60.743472],[-0.951486,60.743685],[-0.954035,60.745662],[-0.95489,60.745036],[-0.955519,60.743483],[-0.959027,60.74417],[-0.960759,60.743932],[-0.959532,60.741902],[-0.960481,60.741771],[-0.960391,60.739865],[-0.959853,60.73905],[-0.96102,60.737555],[-0.964682,60.737749],[-0.964911,60.736337],[-0.962157,60.73531],[-0.961153,60.733749],[-0.958173,60.732205],[-0.957161,60.730566],[-0.957968,60.729588],[-0.960649,60.729014],[-0.962413,60.729164],[-0.965059,60.728677],[-0.966428,60.726733],[-0.964931,60.725719],[-0.961891,60.726499],[-0.958286,60.726684],[-0.956149,60.725906],[-0.955099,60.724585],[-0.955999,60.723524],[-0.954212,60.722788],[-0.956917,60.72152],[-0.955373,60.72016],[-0.955235,60.719393],[-0.953089,60.719043],[-0.952003,60.717626],[-0.953286,60.716903],[-0.954217,60.715661],[-0.956491,60.71505],[-0.961907,60.715464],[-0.964223,60.718962],[-0.96877,60.719576],[-0.974625,60.719818],[-0.977117,60.720425],[-0.979912,60.722449],[-0.982719,60.721788],[-0.98441,60.719605],[-0.982446,60.719076],[-0.982857,60.717984],[-0.980625,60.718046],[-0.980023,60.716919],[-0.978281,60.716301],[-0.979572,60.715533],[-0.977445,60.713756],[-0.977573,60.710729],[-0.976774,60.709859],[-0.971381,60.708044],[-0.970871,60.707225],[-0.971884,60.706073],[-0.970763,60.703591],[-0.97158,60.701677],[-0.970059,60.699922],[-0.970472,60.698942],[-0.965159,60.69593],[-0.967688,60.696062],[-0.969563,60.695739],[-0.972823,60.695868],[-0.975663,60.694458],[-0.97468,60.693393],[-0.976587,60.691823],[-0.97893,60.690696],[-0.979107,60.689436],[-0.981117,60.688711],[-0.981085,60.687687],[-0.982199,60.686052],[-0.981395,60.683959],[-0.976888,60.683188],[-0.974978,60.683898],[-0.974238,60.685015],[-0.970127,60.685332],[-0.96592,60.684489],[-0.965949,60.68267],[-0.966959,60.680802],[-0.967841,60.677839],[-0.966443,60.676046],[-0.963276,60.675227],[-0.958591,60.676677],[-0.955997,60.676163],[-0.953225,60.67641],[-0.948358,60.674653],[-0.94745,60.673312],[-0.943925,60.674223],[-0.938683,60.67415],[-0.934674,60.676655],[-0.930917,60.677644],[-0.93009,60.678571],[-0.927242,60.680145],[-0.923556,60.686256],[-0.920321,60.687228],[-0.918701,60.688262],[-0.915968,60.688737],[-0.916102,60.689317],[-0.9133,60.690128],[-0.907855,60.690251],[-0.904834,60.689269],[-0.904557,60.687677],[-0.905344,60.686014],[-0.905039,60.684973],[-0.905938,60.684184],[-0.904455,60.683336],[-0.89774,60.682442],[-0.893602,60.681741],[-0.89054,60.681664],[-0.888267,60.681093],[-0.88262,60.68067],[-0.879821,60.679882],[-0.877879,60.678365],[-0.876048,60.67839],[-0.874106,60.677724],[-0.873086,60.678028],[-0.869748,60.677425],[-0.867262,60.678786],[-0.864663,60.679284],[-0.860962,60.678168],[-0.859096,60.677102],[-0.858877,60.674752],[-0.856713,60.673878],[-0.853856,60.674143],[-0.851534,60.677993],[-0.850465,60.677686],[-0.846789,60.6808],[-0.844942,60.681582],[-0.843,60.68338],[-0.839628,60.682325],[-0.838025,60.682959],[-0.834505,60.683003],[-0.832718,60.683699],[-0.831315,60.685051],[-0.833545,60.688524],[-0.832736,60.689214],[-0.833053,60.690871],[-0.834634,60.692233],[-0.833483,60.693762],[-0.834239,60.694183],[-0.833438,60.695582],[-0.833938,60.696581],[-0.83614,60.697193],[-0.837473,60.696791],[-0.838351,60.695397],[-0.841323,60.693983],[-0.84142,60.692876],[-0.839773,60.691816],[-0.839683,60.6911],[-0.842703,60.690431],[-0.84538,60.691927],[-0.847285,60.693918],[-0.850065,60.694801],[-0.851905,60.696279],[-0.85499,60.698145],[-0.856744,60.698272],[-0.857937,60.697676],[-0.862923,60.696803],[-0.865839,60.697232],[-0.868561,60.698983],[-0.870728,60.702225],[-0.866662,60.703246],[-0.865512,60.704937],[-0.866232,60.706349],[-0.864017,60.706828],[-0.862343,60.706747],[-0.863146,60.709703],[-0.861715,60.711806],[-0.85942,60.713232],[-0.860533,60.715176],[-0.858492,60.717709],[-0.85856,60.71837],[-0.856976,60.719357],[-0.856924,60.720048],[-0.854895,60.720166],[-0.853525,60.722075],[-0.851257,60.721935],[-0.850053,60.722544],[-0.848107,60.722375],[-0.844391,60.723161],[-0.842602,60.72168],[-0.840988,60.721793],[-0.83935,60.72374],[-0.839538,60.725906],[-0.838021,60.727038],[-0.838157,60.728606],[-0.834367,60.729224],[-0.831214,60.730974],[-0.830439,60.731865],[-0.828519,60.732491],[-0.826445,60.734295],[-0.825526,60.734112],[-0.820431,60.73528],[-0.818369,60.737096],[-0.817263,60.739131],[-0.815997,60.740157],[-0.8161,60.741491],[-0.813834,60.74251],[-0.814226,60.745006],[-0.813961,60.746959],[-0.812819,60.748026],[-0.815564,60.749763],[-0.81609,60.75087],[-0.815659,60.752567],[-0.817006,60.753501],[-0.819966,60.753407],[-0.821077,60.754933],[-0.824219,60.753849],[-0.826415,60.75402],[-0.828526,60.75373],[-0.831445,60.752592],[-0.833038,60.752814],[-0.835661,60.751367],[-0.837737,60.751387],[-0.839712,60.752254],[-0.843306,60.752774],[-0.847257,60.753802],[-0.848864,60.753134],[-0.854231,60.754267],[-0.857725,60.753842],[-0.858299,60.754921],[-0.860521,60.756047],[-0.86277,60.756119],[-0.864317,60.757198],[-0.863376,60.757691],[-0.860751,60.75685],[-0.858543,60.757885],[-0.856583,60.75753],[-0.852948,60.757778],[-0.851059,60.757425],[-0.849278,60.757616],[-0.845292,60.759705],[-0.843691,60.759815],[-0.841539,60.76062],[-0.837643,60.759929],[-0.83203,60.760311],[-0.829716,60.760708],[-0.824025,60.76],[-0.823052,60.759537],[-0.820275,60.760101],[-0.818531,60.759661],[-0.815671,60.759624],[-0.81157,60.758065],[-0.808156,60.757978],[-0.805674,60.758603],[-0.802806,60.758487],[-0.800694,60.760731],[-0.802209,60.760704],[-0.804557,60.761718],[-0.805179,60.762765],[-0.808368,60.763143],[-0.810004,60.765669],[-0.81144,60.767097],[-0.809864,60.767833],[-0.809245,60.768987],[-0.810806,60.769688],[-0.818534,60.770452],[-0.820552,60.771498],[-0.821015,60.772633],[-0.820301,60.773566],[-0.816943,60.774263],[-0.817755,60.775406],[-0.817914,60.777558],[-0.819889,60.779291],[-0.820929,60.780974],[-0.82272,60.781205],[-0.824378,60.782329],[-0.827619,60.783436],[-0.82856,60.784067],[-0.831899,60.784182],[-0.832928,60.785273],[-0.834744,60.785646],[-0.835014,60.787083],[-0.831554,60.787234],[-0.825456,60.789607],[-0.823388,60.789627],[-0.820759,60.787458],[-0.814155,60.786082],[-0.813551,60.785569],[-0.808803,60.784324],[-0.805164,60.785636],[-0.8046,60.78693],[-0.80284,60.786407],[-0.801438,60.785327],[-0.796586,60.78418],[-0.796106,60.783259],[-0.792054,60.78211],[-0.790843,60.782072],[-0.78822,60.780782],[-0.785808,60.780693],[-0.785335,60.780092],[-0.780809,60.780215],[-0.780091,60.780982],[-0.780731,60.782582],[-0.779266,60.78348],[-0.78113,60.78566],[-0.777777,60.785725],[-0.777982,60.786702],[-0.779552,60.78691],[-0.780029,60.7883],[-0.781562,60.789013],[-0.782147,60.790054],[-0.781357,60.792319],[-0.779512,60.792621],[-0.780224,60.795],[-0.780034,60.796131],[-0.777199,60.796501],[-0.779044,60.798722],[-0.78515,60.799795],[-0.784665,60.800702],[-0.786215,60.802242],[-0.787221,60.80261],[-0.787756,60.804734],[-0.790805,60.805188],[-0.795727,60.805134],[-0.798421,60.804695],[-0.801407,60.805938],[-0.803006,60.807526],[-0.803141,60.808429],[-0.804427,60.810025],[-0.798642,60.81316],[-0.795668,60.814022],[-0.792792,60.81374],[-0.791866,60.81419],[-0.78497,60.814963],[-0.784107,60.814418],[-0.779396,60.814386],[-0.775465,60.81498],[-0.773215,60.814672],[-0.770041,60.815954],[-0.767933,60.81532],[-0.764401,60.815032],[-0.761666,60.81544],[-0.760254,60.815266],[-0.759264,60.816068],[-0.760128,60.816674],[-0.759965,60.819013],[-0.761705,60.818709],[-0.767445,60.817003],[-0.768259,60.817594],[-0.767909,60.81927],[-0.76979,60.819862],[-0.7774,60.819182],[-0.779948,60.819142],[-0.782058,60.819736],[-0.783321,60.820618],[-0.78347,60.822999],[-0.785324,60.823326],[-0.785465,60.824216],[-0.788072,60.825132],[-0.787966,60.825917],[-0.786353,60.826747],[-0.783463,60.826824],[-0.77873,60.827939],[-0.778711,60.828923],[-0.78026,60.829781],[-0.782478,60.829676],[-0.784212,60.831316],[-0.787981,60.830235],[-0.788352,60.8296],[-0.793028,60.830259],[-0.795553,60.83014],[-0.795418,60.831118],[-0.797454,60.833516],[-0.800085,60.834389],[-0.802641,60.832221],[-0.803013,60.830982],[-0.80475,60.831244],[-0.807455,60.830118],[-0.809815,60.830055],[-0.812156,60.831022],[-0.812538,60.832961],[-0.816076,60.833385],[-0.816088,60.834995],[-0.817508,60.835136],[-0.819086,60.834451],[-0.81943,60.833014],[-0.822347,60.832729],[-0.823898,60.831126],[-0.826467,60.831026],[-0.832063,60.833785],[-0.831806,60.834602],[-0.833441,60.835013],[-0.832703,60.836133],[-0.833894,60.837077],[-0.833234,60.838033],[-0.833452,60.839874],[-0.834241,60.841566],[-0.833766,60.842358],[-0.835394,60.843858],[-0.836269,60.843654],[-0.836575,60.84119],[-0.838489,60.840677],[-0.837438,60.839942],[-0.838046,60.838678],[-0.839758,60.839539],[-0.8411,60.838925],[-0.843641,60.838905],[-0.845128,60.838125],[-0.846323,60.838581],[-0.848647,60.837493],[-0.846507,60.835504],[-0.849664,60.835852],[-0.849829,60.834871],[-0.847751,60.83368],[-0.848503,60.832009],[-0.852311,60.831996],[-0.853216,60.830952],[-0.851678,60.82982],[-0.854239,60.827594],[-0.853703,60.826499],[-0.856195,60.824428],[-0.854614,60.823513],[-0.853221,60.820365],[-0.854116,60.820032],[-0.853678,60.818577],[-0.856519,60.817817],[-0.858817,60.815642],[-0.860119,60.814944],[-0.861796,60.812632],[-0.860668,60.812038],[-0.862658,60.810356],[-0.865062,60.810054],[-0.867214,60.808193],[-0.8667,60.806516],[-0.867219,60.805676],[-0.869652,60.804715],[-0.872562,60.804492],[-0.875345,60.804777],[-0.87901,60.806325],[-0.878716,60.808019],[-0.876902,60.808658],[-0.876852,60.810072],[-0.872857,60.811981],[-0.872566,60.813041],[-0.874056,60.813553],[-0.87445,60.814682],[-0.873724,60.815498],[-0.871687,60.815779],[-0.871743,60.817393],[-0.873681,60.817944],[-0.871577,60.819267],[-0.871507,60.821012],[-0.870781,60.822362],[-0.86968,60.823128],[-0.868119,60.82848],[-0.870152,60.829349],[-0.869982,60.830336],[-0.868118,60.831953],[-0.868195,60.832616],[-0.866117,60.833592],[-0.86726,60.834053],[-0.867453,60.836355],[-0.868658,60.837179],[-0.867962,60.837823],[-0.870482,60.838575],[-0.869058,60.840634],[-0.871381,60.842698],[-0.873278,60.843535],[-0.873664,60.844627]]],[[[-0.885855,60.854124],[-0.887366,60.854674],[-0.888547,60.854009],[-0.887692,60.853374],[-0.885855,60.854124]]],[[[-0.885069,60.854747],[-0.883903,60.855593],[-0.88454,60.856435],[-0.886823,60.855442],[-0.885069,60.854747]]]]},"properties":{"LAD22CD":"S12000027","LAD22NM":"Shetland Islands","BNG_E":434516,"BNG_N":1180307,"LONG":-1.37344,"LAT":60.50495,"GlobalID":"01ebc993-8cfa-4bb4-b591-0789aca9c2ac"},"id":335}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.108762,55.250838],[-5.10676,55.251776],[-5.109513,55.253059],[-5.113748,55.256325],[-5.116523,55.257598],[-5.119228,55.257939],[-5.120639,55.257488],[-5.122999,55.255591],[-5.123852,55.253781],[-5.123742,55.249891],[-5.124206,55.249514],[-5.1212,55.247688],[-5.119415,55.2471],[-5.116742,55.246765],[-5.112589,55.247363],[-5.111359,55.248115],[-5.108762,55.250838]]],[[[-4.848533,55.305943],[-4.847565,55.30682],[-4.848691,55.307609],[-4.850703,55.306263],[-4.85118,55.305046],[-4.849173,55.305094],[-4.848533,55.305943]]],[[[-4.733602,55.525822],[-4.732531,55.526718],[-4.733841,55.528015],[-4.735503,55.527865],[-4.736446,55.5265],[-4.733602,55.525822]]],[[[-4.461847,55.17022],[-4.46435,55.172492],[-4.464628,55.173551],[-4.466131,55.174244],[-4.465452,55.175332],[-4.465565,55.177038],[-4.466922,55.178421],[-4.467279,55.180425],[-4.468033,55.181366],[-4.467057,55.18194],[-4.467672,55.183266],[-4.466205,55.184617],[-4.468296,55.189115],[-4.467794,55.190838],[-4.466415,55.192063],[-4.467849,55.19314],[-4.469652,55.195872],[-4.472936,55.196506],[-4.475259,55.198751],[-4.471201,55.199129],[-4.470421,55.200297],[-4.470449,55.201549],[-4.469159,55.201688],[-4.468465,55.203738],[-4.464852,55.206314],[-4.460482,55.208987],[-4.456858,55.207815],[-4.455225,55.207722],[-4.454848,55.210017],[-4.451829,55.211278],[-4.453892,55.213606],[-4.452434,55.214863],[-4.452667,55.220324],[-4.453187,55.221345],[-4.452458,55.222146],[-4.453093,55.225483],[-4.44961,55.230862],[-4.447821,55.231518],[-4.450196,55.237401],[-4.447042,55.238676],[-4.446252,55.239413],[-4.446964,55.240291],[-4.446358,55.243581],[-4.444321,55.245208],[-4.438774,55.246704],[-4.438448,55.247578],[-4.436946,55.248256],[-4.435138,55.250051],[-4.433018,55.251136],[-4.430617,55.251388],[-4.430436,55.252321],[-4.431596,55.252947],[-4.43114,55.253923],[-4.429106,55.254024],[-4.429493,55.255591],[-4.435648,55.255831],[-4.437029,55.255227],[-4.437557,55.256727],[-4.439624,55.257243],[-4.438268,55.257915],[-4.441154,55.259086],[-4.441314,55.259698],[-4.439724,55.26049],[-4.438508,55.262204],[-4.441648,55.267626],[-4.439709,55.268326],[-4.43992,55.269169],[-4.438634,55.270389],[-4.438564,55.271637],[-4.458627,55.285244],[-4.4547,55.287147],[-4.454178,55.288767],[-4.451273,55.289523],[-4.450063,55.290257],[-4.450765,55.293796],[-4.452418,55.297086],[-4.449431,55.299991],[-4.450031,55.300789],[-4.447474,55.301598],[-4.444484,55.301374],[-4.44333,55.302332],[-4.442065,55.302375],[-4.441071,55.304029],[-4.440273,55.30392],[-4.437326,55.304887],[-4.438704,55.306519],[-4.437978,55.307826],[-4.440393,55.308659],[-4.44133,55.30931],[-4.445815,55.310536],[-4.448134,55.3121],[-4.455582,55.31441],[-4.456706,55.315241],[-4.460779,55.316234],[-4.465945,55.315191],[-4.465229,55.317213],[-4.468621,55.32013],[-4.468815,55.321019],[-4.471066,55.321729],[-4.471914,55.323204],[-4.473335,55.323746],[-4.474129,55.325177],[-4.481672,55.323455],[-4.486085,55.322817],[-4.487507,55.32401],[-4.490504,55.323266],[-4.493013,55.323939],[-4.495604,55.324074],[-4.494603,55.326158],[-4.494788,55.326846],[-4.49339,55.32739],[-4.493561,55.328299],[-4.49736,55.330394],[-4.510103,55.334056],[-4.515326,55.336483],[-4.516568,55.338044],[-4.517648,55.338655],[-4.517726,55.339643],[-4.519198,55.339967],[-4.521059,55.34121],[-4.52551,55.342754],[-4.525596,55.346333],[-4.527214,55.348826],[-4.528793,55.349715],[-4.531826,55.350641],[-4.535127,55.350581],[-4.542227,55.353758],[-4.544765,55.354112],[-4.547506,55.355461],[-4.550559,55.355582],[-4.555725,55.356717],[-4.556611,55.356489],[-4.564643,55.357473],[-4.562079,55.35878],[-4.560028,55.359196],[-4.558569,55.360508],[-4.559086,55.362198],[-4.556992,55.36352],[-4.554221,55.363944],[-4.551217,55.36308],[-4.548846,55.363309],[-4.545197,55.365251],[-4.543178,55.365891],[-4.54245,55.367176],[-4.539344,55.368002],[-4.537418,55.369043],[-4.53655,55.370669],[-4.537668,55.372825],[-4.531425,55.376113],[-4.529535,55.37807],[-4.523653,55.380645],[-4.521443,55.383042],[-4.519828,55.383574],[-4.521293,55.384529],[-4.521819,55.385476],[-4.521641,55.386683],[-4.5234,55.388315],[-4.524723,55.388846],[-4.527586,55.38935],[-4.527127,55.390861],[-4.528382,55.391946],[-4.529672,55.39227],[-4.533041,55.392428],[-4.534617,55.394403],[-4.535982,55.395269],[-4.538472,55.395305],[-4.539983,55.39479],[-4.542072,55.395981],[-4.544361,55.396051],[-4.545766,55.395554],[-4.547266,55.394019],[-4.551838,55.393136],[-4.553582,55.393807],[-4.55619,55.393681],[-4.557072,55.3917],[-4.560869,55.389978],[-4.562002,55.388844],[-4.562528,55.386689],[-4.564797,55.387178],[-4.565315,55.389124],[-4.567261,55.38942],[-4.57028,55.390487],[-4.570784,55.392045],[-4.57338,55.393719],[-4.57457,55.393367],[-4.576093,55.391834],[-4.578512,55.392724],[-4.580375,55.39415],[-4.581574,55.393318],[-4.579669,55.392336],[-4.582308,55.391483],[-4.585597,55.391621],[-4.584267,55.393003],[-4.585476,55.394375],[-4.585264,55.395964],[-4.587473,55.396838],[-4.589176,55.396893],[-4.592567,55.395547],[-4.594886,55.395965],[-4.596493,55.39503],[-4.599181,55.394488],[-4.601097,55.392464],[-4.603106,55.391947],[-4.602816,55.393552],[-4.603385,55.395164],[-4.596838,55.397954],[-4.595752,55.399105],[-4.5938,55.400071],[-4.587743,55.40104],[-4.585287,55.40043],[-4.579315,55.399932],[-4.577554,55.400754],[-4.575264,55.40268],[-4.574416,55.402799],[-4.571075,55.404474],[-4.567511,55.408713],[-4.567307,55.41291],[-4.563894,55.41565],[-4.562734,55.417429],[-4.568149,55.421007],[-4.570396,55.422097],[-4.566879,55.422994],[-4.564658,55.424599],[-4.565021,55.426302],[-4.561478,55.426484],[-4.55589,55.426296],[-4.553544,55.426648],[-4.551891,55.426055],[-4.551158,55.424666],[-4.552133,55.423314],[-4.547053,55.421539],[-4.545538,55.420717],[-4.542631,55.422444],[-4.542387,55.423754],[-4.540979,55.4241],[-4.539449,55.42355],[-4.536824,55.423947],[-4.535117,55.423846],[-4.533057,55.42175],[-4.531335,55.421251],[-4.531474,55.420154],[-4.530536,55.418932],[-4.531326,55.418517],[-4.528428,55.415709],[-4.527102,55.413955],[-4.525152,55.413649],[-4.52267,55.410798],[-4.527803,55.409137],[-4.521284,55.407389],[-4.516702,55.408933],[-4.511848,55.406221],[-4.502303,55.402684],[-4.501518,55.400846],[-4.501884,55.399131],[-4.500737,55.399127],[-4.492387,55.400983],[-4.487433,55.401627],[-4.484475,55.400258],[-4.480849,55.40097],[-4.476601,55.401256],[-4.469208,55.403481],[-4.468116,55.403027],[-4.466179,55.40346],[-4.465368,55.404204],[-4.46639,55.405786],[-4.464408,55.407344],[-4.462206,55.408173],[-4.456105,55.408549],[-4.453222,55.410347],[-4.452592,55.411469],[-4.450397,55.411987],[-4.450501,55.415176],[-4.452963,55.415917],[-4.451416,55.416922],[-4.451309,55.41784],[-4.452758,55.418743],[-4.454968,55.419458],[-4.454923,55.421465],[-4.452946,55.421531],[-4.45267,55.423283],[-4.452971,55.424339],[-4.454049,55.425393],[-4.452015,55.426458],[-4.452214,55.42756],[-4.454351,55.428788],[-4.454717,55.430083],[-4.455685,55.430983],[-4.458382,55.430182],[-4.461466,55.43045],[-4.46303,55.431021],[-4.464385,55.430271],[-4.466537,55.429808],[-4.468196,55.428477],[-4.471303,55.428977],[-4.470973,55.429734],[-4.472126,55.430476],[-4.474556,55.430259],[-4.47785,55.431395],[-4.479716,55.431113],[-4.481321,55.431958],[-4.479359,55.432681],[-4.47713,55.434619],[-4.478332,55.435285],[-4.480144,55.434623],[-4.481541,55.434747],[-4.48305,55.436706],[-4.486006,55.435715],[-4.489015,55.437874],[-4.492725,55.438147],[-4.493009,55.439276],[-4.492066,55.439628],[-4.491991,55.440916],[-4.494267,55.441247],[-4.493628,55.442518],[-4.491653,55.442388],[-4.489912,55.443817],[-4.485607,55.442519],[-4.484763,55.443884],[-4.483244,55.445129],[-4.4836,55.446001],[-4.482543,55.446727],[-4.479114,55.446647],[-4.4782,55.447774],[-4.475285,55.448049],[-4.475599,55.449488],[-4.476536,55.450186],[-4.475009,55.451404],[-4.477751,55.452448],[-4.47678,55.454792],[-4.481241,55.455982],[-4.480577,55.457334],[-4.482246,55.458064],[-4.48984,55.456872],[-4.493454,55.457341],[-4.491109,55.457902],[-4.489746,55.458715],[-4.488416,55.461332],[-4.489991,55.461871],[-4.490598,55.46263],[-4.492555,55.463733],[-4.490954,55.465785],[-4.493833,55.46858],[-4.492248,55.470797],[-4.482504,55.472268],[-4.483176,55.472748],[-4.48551,55.477855],[-4.47923,55.479917],[-4.473722,55.480016],[-4.473703,55.48122],[-4.475065,55.481819],[-4.47531,55.482723],[-4.472979,55.485254],[-4.47079,55.48631],[-4.468939,55.486465],[-4.466599,55.486001],[-4.463469,55.483678],[-4.462323,55.483371],[-4.458965,55.483591],[-4.454459,55.485241],[-4.448999,55.488836],[-4.448252,55.490994],[-4.447168,55.491548],[-4.443891,55.49233],[-4.440454,55.493825],[-4.440385,55.495056],[-4.441501,55.496486],[-4.439784,55.497604],[-4.436068,55.498014],[-4.434626,55.498543],[-4.433948,55.499837],[-4.43516,55.501214],[-4.441453,55.502565],[-4.441327,55.50343],[-4.439578,55.504384],[-4.436031,55.505545],[-4.434868,55.50553],[-4.431158,55.504425],[-4.428372,55.505057],[-4.425846,55.503764],[-4.420938,55.502771],[-4.419724,55.501079],[-4.415567,55.501356],[-4.414112,55.501138],[-4.412527,55.501518],[-4.412991,55.504053],[-4.417514,55.505555],[-4.418661,55.506628],[-4.414384,55.507255],[-4.413134,55.508391],[-4.411694,55.508415],[-4.411125,55.509511],[-4.409292,55.510282],[-4.406528,55.50994],[-4.402457,55.510526],[-4.39981,55.510428],[-4.398857,55.511339],[-4.400946,55.514481],[-4.400308,55.514654],[-4.403725,55.517608],[-4.40206,55.520196],[-4.401821,55.523643],[-4.403965,55.524021],[-4.407208,55.523826],[-4.407839,55.525782],[-4.406486,55.526201],[-4.405752,55.527179],[-4.406174,55.528592],[-4.408985,55.531936],[-4.409622,55.534119],[-4.41306,55.537303],[-4.4128,55.538283],[-4.411339,55.539127],[-4.409691,55.541659],[-4.408493,55.54447],[-4.408892,55.545502],[-4.410508,55.546279],[-4.411654,55.547677],[-4.411243,55.550424],[-4.411704,55.551547],[-4.409496,55.55319],[-4.410443,55.554343],[-4.41215,55.555027],[-4.41361,55.556386],[-4.417563,55.557259],[-4.424287,55.55576],[-4.425283,55.556022],[-4.426748,55.557589],[-4.426478,55.558554],[-4.427371,55.560643],[-4.429044,55.56149],[-4.431103,55.56002],[-4.434163,55.560319],[-4.436227,55.560928],[-4.436665,55.561904],[-4.435954,55.562838],[-4.437369,55.564258],[-4.435142,55.566639],[-4.437146,55.56788],[-4.439429,55.566537],[-4.438757,55.565747],[-4.440289,55.564181],[-4.441434,55.563626],[-4.445412,55.565132],[-4.447698,55.564262],[-4.449242,55.565145],[-4.453121,55.564077],[-4.454533,55.562045],[-4.458167,55.563502],[-4.459875,55.564838],[-4.462438,55.565248],[-4.464255,55.565065],[-4.466659,55.563304],[-4.470724,55.563059],[-4.471198,55.564986],[-4.477242,55.564126],[-4.482494,55.564121],[-4.482729,55.565152],[-4.486262,55.564803],[-4.487057,55.565849],[-4.492742,55.564899],[-4.491693,55.563708],[-4.495819,55.562896],[-4.499827,55.562796],[-4.500238,55.564544],[-4.501179,55.564832],[-4.504113,55.564517],[-4.506581,55.566025],[-4.506558,55.566731],[-4.509496,55.568865],[-4.511813,55.568691],[-4.513216,55.569194],[-4.515052,55.566952],[-4.513212,55.566228],[-4.514214,55.565604],[-4.515855,55.566068],[-4.516771,55.565446],[-4.518453,55.566003],[-4.51732,55.567457],[-4.516887,55.569989],[-4.518998,55.570514],[-4.516946,55.571385],[-4.519012,55.572218],[-4.520283,55.571396],[-4.52401,55.57094],[-4.524709,55.571125],[-4.526913,55.572899],[-4.529067,55.573498],[-4.52988,55.574209],[-4.533828,55.573131],[-4.53631,55.573755],[-4.53724,55.573616],[-4.538708,55.5751],[-4.534544,55.57649],[-4.537681,55.579693],[-4.539493,55.578217],[-4.541182,55.579728],[-4.540341,55.58006],[-4.542413,55.583947],[-4.543752,55.584995],[-4.544567,55.586554],[-4.543466,55.587411],[-4.541263,55.587629],[-4.540111,55.588891],[-4.539112,55.588748],[-4.535935,55.591589],[-4.539838,55.592813],[-4.540373,55.593381],[-4.542982,55.593861],[-4.54482,55.593038],[-4.546081,55.591885],[-4.549112,55.591492],[-4.554784,55.592814],[-4.561273,55.591928],[-4.565355,55.592202],[-4.569216,55.593093],[-4.569683,55.593703],[-4.567141,55.598454],[-4.567247,55.601387],[-4.568255,55.60187],[-4.572189,55.60097],[-4.575302,55.598626],[-4.579023,55.598043],[-4.584928,55.598578],[-4.588153,55.597846],[-4.592211,55.597949],[-4.593935,55.597728],[-4.599228,55.595991],[-4.59973,55.595098],[-4.603615,55.594158],[-4.605856,55.593241],[-4.638461,55.569647],[-4.643523,55.565734],[-4.647811,55.563358],[-4.652068,55.563074],[-4.654682,55.570599],[-4.657536,55.569748],[-4.658333,55.570201],[-4.65792,55.569494],[-4.659285,55.565679],[-4.659193,55.564211],[-4.658124,55.560645],[-4.659366,55.553337],[-4.658494,55.552423],[-4.658622,55.549904],[-4.659703,55.547705],[-4.660908,55.547246],[-4.66454,55.547827],[-4.669374,55.545615],[-4.670987,55.545409],[-4.674394,55.546141],[-4.672356,55.544586],[-4.673916,55.544208],[-4.676593,55.544386],[-4.678476,55.545321],[-4.6809,55.547607],[-4.68267,55.547785],[-4.682883,55.548929],[-4.684607,55.549758],[-4.685492,55.546587],[-4.684634,55.545068],[-4.683564,55.544946],[-4.677832,55.54209],[-4.675945,55.541919],[-4.675935,55.541258],[-4.67454,55.540459],[-4.670987,55.54032],[-4.668546,55.541743],[-4.663661,55.541799],[-4.658935,55.538786],[-4.656045,55.536103],[-4.653792,55.533277],[-4.6539,55.532774],[-4.652012,55.529705],[-4.649769,55.527089],[-4.642162,55.523991],[-4.634639,55.519755],[-4.630778,55.518928],[-4.632819,55.518398],[-4.627899,55.513787],[-4.62698,55.512001],[-4.623526,55.507862],[-4.621267,55.503696],[-4.621635,55.503272],[-4.620163,55.49825],[-4.6207,55.494365],[-4.622398,55.491471],[-4.627797,55.489691],[-4.627276,55.485753],[-4.627144,55.481252],[-4.628773,55.476891],[-4.631884,55.473825],[-4.634482,55.472549],[-4.636947,55.472477],[-4.644057,55.470579],[-4.642789,55.469807],[-4.641111,55.469499],[-4.63733,55.471521],[-4.636089,55.470414],[-4.639941,55.469035],[-4.633205,55.466188],[-4.62909,55.464812],[-4.621608,55.45957],[-4.623187,55.459855],[-4.63077,55.464718],[-4.635645,55.465764],[-4.640091,55.468279],[-4.642396,55.468084],[-4.641617,55.464597],[-4.642303,55.462284],[-4.642464,55.458638],[-4.648936,55.443782],[-4.651144,55.440782],[-4.652252,55.441429],[-4.654238,55.44127],[-4.658992,55.439647],[-4.662697,55.439651],[-4.667336,55.438684],[-4.670233,55.438725],[-4.673182,55.437817],[-4.676283,55.437848],[-4.677531,55.438382],[-4.683161,55.435527],[-4.68918,55.432763],[-4.693531,55.431752],[-4.697553,55.431695],[-4.701716,55.433499],[-4.706777,55.432881],[-4.713007,55.43289],[-4.714718,55.43075],[-4.717335,55.428443],[-4.722504,55.426287],[-4.725673,55.426953],[-4.727465,55.426546],[-4.72903,55.426847],[-4.734988,55.425051],[-4.736454,55.424886],[-4.73854,55.423042],[-4.742424,55.422111],[-4.744331,55.420913],[-4.746196,55.419028],[-4.749124,55.418162],[-4.749975,55.416964],[-4.753019,55.41636],[-4.753306,55.415069],[-4.754415,55.41281],[-4.755662,55.412335],[-4.757218,55.408162],[-4.759745,55.407065],[-4.760369,55.406024],[-4.762512,55.40528],[-4.765404,55.403433],[-4.766714,55.402248],[-4.769562,55.400579],[-4.768781,55.399433],[-4.769782,55.396357],[-4.770862,55.39516],[-4.770771,55.393123],[-4.772342,55.387844],[-4.771102,55.385683],[-4.770427,55.383193],[-4.770179,55.380812],[-4.771213,55.378321],[-4.769305,55.372727],[-4.770395,55.367597],[-4.7722,55.363147],[-4.775502,55.359356],[-4.778253,55.358857],[-4.781381,55.35711],[-4.783191,55.357339],[-4.784165,55.356013],[-4.785541,55.355199],[-4.787046,55.355554],[-4.789129,55.354948],[-4.790845,55.355013],[-4.792762,55.354066],[-4.794726,55.352662],[-4.796063,55.352586],[-4.797441,55.351852],[-4.798693,55.352165],[-4.799973,55.351383],[-4.802378,55.351033],[-4.803653,55.350325],[-4.805838,55.349905],[-4.806292,55.348499],[-4.809443,55.347582],[-4.808631,55.343199],[-4.810624,55.338878],[-4.812892,55.337026],[-4.815987,55.335421],[-4.818595,55.334687],[-4.82146,55.334507],[-4.822072,55.333108],[-4.824146,55.333472],[-4.82533,55.334255],[-4.827285,55.333884],[-4.828527,55.332784],[-4.831693,55.332204],[-4.833218,55.331207],[-4.834942,55.331082],[-4.837448,55.32966],[-4.839274,55.329369],[-4.841108,55.326674],[-4.842999,55.325972],[-4.845526,55.325825],[-4.844943,55.324335],[-4.846185,55.323546],[-4.846247,55.322611],[-4.844435,55.322461],[-4.842131,55.320999],[-4.84099,55.319385],[-4.839508,55.316516],[-4.837588,55.311276],[-4.838203,55.310078],[-4.837235,55.304711],[-4.838417,55.302169],[-4.837874,55.299347],[-4.835667,55.294328],[-4.836129,55.291921],[-4.83567,55.289049],[-4.836382,55.287975],[-4.835945,55.285539],[-4.837496,55.281588],[-4.837516,55.27789],[-4.838373,55.276321],[-4.840465,55.274683],[-4.843935,55.27365],[-4.847066,55.269529],[-4.847645,55.26737],[-4.849045,55.266076],[-4.85017,55.263813],[-4.850587,55.260393],[-4.853293,55.255885],[-4.854307,55.254963],[-4.857091,55.254425],[-4.858803,55.252909],[-4.859572,55.251363],[-4.86013,55.24646],[-4.860943,55.246213],[-4.860044,55.244807],[-4.857056,55.243802],[-4.858159,55.24347],[-4.860193,55.244278],[-4.862692,55.244846],[-4.863063,55.243303],[-4.859186,55.232327],[-4.860074,55.227373],[-4.861152,55.226174],[-4.863924,55.225464],[-4.865325,55.221727],[-4.866665,55.220909],[-4.868244,55.220564],[-4.872444,55.217655],[-4.874312,55.217367],[-4.875718,55.217777],[-4.879486,55.21768],[-4.879452,55.216777],[-4.881132,55.21444],[-4.883734,55.214034],[-4.887366,55.211886],[-4.890592,55.210533],[-4.892261,55.209181],[-4.892929,55.207559],[-4.896608,55.205598],[-4.898492,55.205027],[-4.89962,55.204007],[-4.901855,55.203392],[-4.902198,55.202817],[-4.904409,55.201771],[-4.907664,55.199307],[-4.909893,55.19906],[-4.913095,55.196305],[-4.914551,55.193968],[-4.916865,55.192201],[-4.917444,55.191202],[-4.918925,55.190506],[-4.92016,55.188706],[-4.92201,55.187573],[-4.923199,55.185787],[-4.925842,55.184218],[-4.927519,55.181747],[-4.92852,55.179554],[-4.92943,55.178757],[-4.929516,55.176611],[-4.930407,55.175747],[-4.93068,55.174111],[-4.931766,55.172599],[-4.933836,55.171552],[-4.934397,55.170526],[-4.936954,55.168596],[-4.938323,55.166723],[-4.941505,55.164144],[-4.945571,55.163498],[-4.94749,55.163839],[-4.949947,55.163234],[-4.953108,55.160668],[-4.956097,55.158915],[-4.959599,55.158206],[-4.960523,55.157363],[-4.967509,55.154398],[-4.97187,55.151677],[-4.979726,55.149431],[-4.98322,55.147408],[-4.983971,55.147412],[-4.984568,55.145723],[-4.988138,55.145288],[-4.990345,55.143862],[-4.991791,55.14344],[-4.992002,55.141699],[-4.993438,55.141048],[-4.993565,55.139953],[-4.994869,55.13962],[-4.996488,55.138261],[-4.996651,55.135466],[-4.995197,55.131112],[-4.995541,55.125814],[-4.996837,55.121456],[-4.998912,55.116801],[-4.999127,55.115012],[-5.002159,55.108039],[-5.003617,55.107232],[-5.005136,55.105517],[-5.008799,55.104291],[-5.01129,55.093942],[-5.010849,55.091728],[-5.009508,55.092268],[-5.010616,55.093821],[-5.006964,55.094036],[-5.006271,55.093439],[-5.007384,55.092406],[-5.010547,55.091242],[-5.012102,55.090186],[-5.013927,55.087076],[-5.016024,55.086322],[-5.018477,55.086158],[-5.018519,55.085254],[-5.020066,55.084923],[-5.024416,55.082947],[-5.024567,55.082104],[-5.026287,55.081874],[-5.028073,55.080847],[-5.028817,55.079138],[-5.030624,55.077301],[-5.032595,55.073866],[-5.035039,55.07144],[-5.037083,55.068831],[-5.037095,55.067907],[-5.03885,55.066677],[-5.03938,55.065383],[-5.041394,55.064059],[-5.041662,55.063294],[-5.043293,55.062103],[-5.043482,55.061008],[-5.045226,55.059962],[-5.044488,55.058748],[-5.046055,55.057334],[-5.04765,55.057382],[-5.049598,55.055355],[-5.04921,55.054146],[-5.051253,55.053051],[-5.051184,55.052394],[-5.052447,55.051268],[-5.053467,55.048659],[-5.053324,55.047297],[-5.052347,55.043891],[-5.051612,55.043506],[-5.053259,55.040958],[-5.055713,55.036091],[-5.05669,55.03596],[-5.058342,55.032286],[-5.059372,55.031764],[-5.059593,55.030013],[-5.060349,55.029567],[-5.06047,55.027262],[-5.060152,55.02514],[-5.058663,55.022129],[-5.057393,55.020975],[-5.057042,55.019747],[-5.055534,55.018239],[-5.054901,55.016902],[-5.055414,55.014915],[-5.054623,55.01159],[-5.053725,55.011031],[-5.051534,55.01169],[-5.049772,55.011089],[-5.049141,55.009599],[-5.04975,55.007648],[-5.048576,55.006807],[-5.048461,55.005655],[-5.047094,55.004749],[-5.045715,55.003206],[-5.043086,55.001496],[-5.039742,54.997771],[-5.035055,54.999018],[-5.032869,55.000722],[-5.029493,55.002618],[-5.028105,55.002666],[-5.015458,55.005759],[-4.992453,55.009069],[-4.98684,55.010996],[-4.978475,55.009255],[-4.973231,55.011537],[-4.981062,55.017867],[-4.97806,55.022121],[-4.976875,55.022919],[-4.974051,55.02355],[-4.969038,55.021892],[-4.962237,55.020274],[-4.956671,55.025749],[-4.95773,55.02749],[-4.955769,55.028486],[-4.952005,55.029755],[-4.949995,55.031368],[-4.944227,55.039257],[-4.944394,55.040371],[-4.943204,55.043561],[-4.940009,55.046421],[-4.935455,55.048435],[-4.930781,55.051382],[-4.930517,55.052049],[-4.931281,55.05372],[-4.9309,55.055033],[-4.931404,55.057435],[-4.929879,55.059278],[-4.932558,55.061861],[-4.9334,55.064372],[-4.930959,55.064732],[-4.923675,55.064952],[-4.923046,55.066208],[-4.919165,55.066476],[-4.915647,55.066125],[-4.912924,55.066388],[-4.908846,55.06199],[-4.905191,55.062024],[-4.901038,55.064267],[-4.898903,55.062591],[-4.89473,55.060862],[-4.894643,55.05836],[-4.896212,55.053621],[-4.888167,55.052275],[-4.882593,55.047157],[-4.882821,55.045102],[-4.88352,55.04435],[-4.883554,55.042675],[-4.884426,55.042057],[-4.884097,55.039336],[-4.882042,55.039828],[-4.879426,55.039798],[-4.876844,55.038393],[-4.875256,55.038188],[-4.872789,55.038377],[-4.871357,55.038927],[-4.869781,55.040093],[-4.865966,55.040704],[-4.865052,55.04118],[-4.863094,55.040867],[-4.862112,55.041321],[-4.859635,55.041487],[-4.857542,55.040682],[-4.855544,55.041538],[-4.855224,55.042427],[-4.851206,55.043703],[-4.849673,55.043074],[-4.848694,55.043393],[-4.844105,55.04315],[-4.843821,55.04433],[-4.841056,55.044745],[-4.837651,55.043755],[-4.83867,55.04267],[-4.83691,55.042127],[-4.83522,55.041038],[-4.836638,55.040272],[-4.835163,55.038563],[-4.83301,55.038109],[-4.833738,55.035571],[-4.830605,55.034641],[-4.827505,55.035293],[-4.825849,55.038231],[-4.826406,55.040021],[-4.82607,55.040698],[-4.824362,55.041232],[-4.821189,55.041521],[-4.819289,55.041225],[-4.816462,55.042984],[-4.812601,55.042736],[-4.810907,55.043247],[-4.809759,55.043058],[-4.806578,55.043797],[-4.80426,55.043113],[-4.80339,55.044221],[-4.802353,55.044393],[-4.798501,55.044037],[-4.799426,55.042716],[-4.79885,55.041638],[-4.796749,55.041137],[-4.791825,55.037983],[-4.790477,55.036602],[-4.792523,55.03576],[-4.794081,55.033068],[-4.792832,55.032098],[-4.789212,55.031467],[-4.786988,55.033024],[-4.782535,55.038101],[-4.779902,55.03964],[-4.776511,55.040967],[-4.775992,55.041838],[-4.766109,55.039937],[-4.761074,55.037975],[-4.759003,55.039051],[-4.756789,55.039581],[-4.755807,55.041168],[-4.752309,55.041751],[-4.7514,55.042985],[-4.749682,55.044188],[-4.747711,55.043648],[-4.74568,55.044049],[-4.743996,55.045063],[-4.743325,55.046584],[-4.741457,55.047309],[-4.740369,55.047203],[-4.739172,55.045832],[-4.739142,55.044134],[-4.737681,55.0436],[-4.737342,55.042183],[-4.735144,55.041515],[-4.733929,55.041621],[-4.731917,55.042984],[-4.730125,55.042763],[-4.728803,55.043658],[-4.728128,55.044828],[-4.726067,55.045647],[-4.722005,55.044222],[-4.720278,55.042561],[-4.719367,55.040986],[-4.716529,55.039409],[-4.716017,55.038095],[-4.715172,55.037511],[-4.711945,55.038635],[-4.710947,55.039624],[-4.708459,55.039045],[-4.70759,55.040019],[-4.705579,55.039895],[-4.7051,55.040562],[-4.702393,55.041607],[-4.698774,55.041787],[-4.695904,55.043036],[-4.694632,55.04258],[-4.689595,55.044902],[-4.688427,55.044137],[-4.68075,55.04428],[-4.676887,55.046666],[-4.67727,55.049013],[-4.671831,55.050094],[-4.670097,55.050973],[-4.666771,55.05065],[-4.664364,55.051534],[-4.66311,55.05269],[-4.660854,55.053508],[-4.658004,55.053503],[-4.656724,55.052506],[-4.654614,55.053729],[-4.651005,55.055053],[-4.6487,55.055346],[-4.64674,55.056382],[-4.645933,55.055667],[-4.647679,55.054591],[-4.645399,55.053261],[-4.644571,55.051989],[-4.644705,55.050813],[-4.645815,55.048771],[-4.642188,55.04933],[-4.640698,55.05072],[-4.639851,55.049993],[-4.636429,55.050916],[-4.633752,55.051366],[-4.635539,55.05369],[-4.633863,55.05512],[-4.632267,55.057995],[-4.630039,55.059603],[-4.629762,55.060751],[-4.627019,55.060594],[-4.627214,55.0613],[-4.628744,55.062652],[-4.629207,55.063985],[-4.626964,55.064892],[-4.625388,55.067021],[-4.625224,55.068449],[-4.627054,55.070927],[-4.629226,55.070844],[-4.630504,55.071576],[-4.631365,55.074312],[-4.628979,55.074812],[-4.628863,55.07629],[-4.630562,55.077233],[-4.632788,55.077491],[-4.634717,55.078236],[-4.638004,55.078173],[-4.638313,55.077043],[-4.641046,55.077622],[-4.643005,55.077244],[-4.644338,55.078004],[-4.64663,55.078067],[-4.648051,55.080135],[-4.646917,55.08133],[-4.650419,55.083122],[-4.649812,55.085194],[-4.652826,55.085159],[-4.653728,55.085769],[-4.654497,55.087433],[-4.655302,55.087631],[-4.658046,55.087149],[-4.660013,55.088501],[-4.661268,55.088768],[-4.662123,55.089744],[-4.660929,55.090479],[-4.659107,55.090308],[-4.658006,55.091546],[-4.657925,55.092927],[-4.656969,55.093033],[-4.656544,55.095241],[-4.657983,55.096149],[-4.657793,55.097775],[-4.658271,55.099423],[-4.659902,55.100494],[-4.658197,55.101493],[-4.660263,55.102746],[-4.659612,55.104271],[-4.659841,55.105206],[-4.658652,55.106756],[-4.660456,55.107763],[-4.65983,55.108729],[-4.66179,55.110022],[-4.662348,55.112283],[-4.661244,55.113139],[-4.66327,55.113643],[-4.663316,55.114577],[-4.661217,55.114492],[-4.660942,55.115555],[-4.65957,55.116021],[-4.658954,55.116908],[-4.658313,55.119938],[-4.656007,55.121038],[-4.654609,55.120939],[-4.651982,55.121503],[-4.650306,55.121185],[-4.648607,55.122997],[-4.64687,55.123893],[-4.646635,55.125202],[-4.644629,55.125938],[-4.645602,55.12784],[-4.642296,55.128977],[-4.641161,55.129717],[-4.639087,55.130148],[-4.637794,55.131106],[-4.635254,55.130914],[-4.631734,55.133078],[-4.629915,55.133214],[-4.626695,55.134381],[-4.626578,55.135605],[-4.625111,55.136249],[-4.626265,55.137086],[-4.626367,55.139378],[-4.624153,55.139529],[-4.623171,55.140784],[-4.620653,55.141158],[-4.616369,55.139834],[-4.614589,55.141657],[-4.612384,55.140931],[-4.610762,55.141811],[-4.608174,55.141471],[-4.607318,55.140855],[-4.605333,55.141329],[-4.605022,55.140531],[-4.602689,55.139404],[-4.600878,55.139316],[-4.598325,55.138423],[-4.597052,55.140198],[-4.594627,55.141162],[-4.592783,55.140073],[-4.590903,55.140963],[-4.591455,55.141495],[-4.590589,55.142655],[-4.586158,55.1427],[-4.584001,55.141977],[-4.581744,55.144443],[-4.579925,55.147146],[-4.577266,55.147171],[-4.578648,55.149133],[-4.574611,55.149686],[-4.575453,55.151478],[-4.575453,55.153003],[-4.573019,55.153729],[-4.57271,55.154895],[-4.570919,55.154276],[-4.567573,55.155453],[-4.567147,55.156518],[-4.564967,55.158015],[-4.562624,55.157467],[-4.560567,55.15749],[-4.557134,55.158517],[-4.553217,55.15877],[-4.551591,55.158499],[-4.54855,55.158818],[-4.547413,55.158487],[-4.543299,55.158474],[-4.542235,55.157521],[-4.53971,55.157942],[-4.537995,55.157354],[-4.532121,55.158325],[-4.515506,55.153137],[-4.513575,55.151713],[-4.500335,55.15264],[-4.491584,55.152113],[-4.482864,55.15301],[-4.478621,55.152926],[-4.476134,55.153965],[-4.475077,55.155901],[-4.471812,55.156161],[-4.468727,55.158565],[-4.468393,55.15939],[-4.465627,55.160731],[-4.464727,55.161805],[-4.463722,55.16205],[-4.464041,55.163397],[-4.462806,55.164761],[-4.46249,55.166651],[-4.461761,55.167304],[-4.462576,55.16855],[-4.461847,55.17022]]]]},"properties":{"LAD22CD":"S12000028","LAD22NM":"South Ayrshire","BNG_E":226545,"BNG_N":596271,"LONG":-4.72899,"LAT":55.23008,"GlobalID":"f4e07ea3-81b1-452c-9940-f20eda8085ac"},"id":336}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.198339,55.833422],[-4.199454,55.833821],[-4.199623,55.835403],[-4.198602,55.836379],[-4.195884,55.837567],[-4.195624,55.838858],[-4.204158,55.844256],[-4.205168,55.844125],[-4.206134,55.842562],[-4.205532,55.841775],[-4.203468,55.841146],[-4.202098,55.840188],[-4.202034,55.839264],[-4.202875,55.838226],[-4.204518,55.837573],[-4.213475,55.836376],[-4.215708,55.835316],[-4.218536,55.833372],[-4.22114,55.832918],[-4.223409,55.834454],[-4.223529,55.835629],[-4.222768,55.838107],[-4.223054,55.83867],[-4.22798,55.840534],[-4.231302,55.838215],[-4.230415,55.837826],[-4.232568,55.836297],[-4.231909,55.835416],[-4.233635,55.833605],[-4.23073,55.832592],[-4.228869,55.824463],[-4.23242,55.823388],[-4.234953,55.823841],[-4.233634,55.819997],[-4.233752,55.818656],[-4.227862,55.818227],[-4.228264,55.817378],[-4.225489,55.812173],[-4.220532,55.813237],[-4.216835,55.814905],[-4.21453,55.815072],[-4.212177,55.809523],[-4.21133,55.800312],[-4.204285,55.800446],[-4.209035,55.798865],[-4.22393,55.791944],[-4.229923,55.785914],[-4.225724,55.784911],[-4.224507,55.784268],[-4.226698,55.781275],[-4.233271,55.783155],[-4.236121,55.782647],[-4.235821,55.783934],[-4.23659,55.78444],[-4.239336,55.785115],[-4.243435,55.787139],[-4.24756,55.785394],[-4.25074,55.784887],[-4.251232,55.781888],[-4.250671,55.780577],[-4.25172,55.779761],[-4.250516,55.778668],[-4.248186,55.777746],[-4.249135,55.776859],[-4.252759,55.777265],[-4.253912,55.776719],[-4.251829,55.775109],[-4.253386,55.773435],[-4.253398,55.772677],[-4.255657,55.771645],[-4.256835,55.771475],[-4.259549,55.772878],[-4.261449,55.772508],[-4.262356,55.773232],[-4.264723,55.773057],[-4.265601,55.773844],[-4.268677,55.773123],[-4.270608,55.772931],[-4.273546,55.771792],[-4.276184,55.771779],[-4.279527,55.769924],[-4.282409,55.769373],[-4.282559,55.768304],[-4.281354,55.765876],[-4.280205,55.76502],[-4.280549,55.764293],[-4.279052,55.763156],[-4.279836,55.761777],[-4.278202,55.760384],[-4.274264,55.759003],[-4.274949,55.757434],[-4.273614,55.754552],[-4.270196,55.75327],[-4.268737,55.753292],[-4.266987,55.75389],[-4.267338,55.754909],[-4.266198,55.755252],[-4.264557,55.754083],[-4.264844,55.75324],[-4.263362,55.75268],[-4.262693,55.750391],[-4.261387,55.7491],[-4.259667,55.748985],[-4.257515,55.750269],[-4.255505,55.748791],[-4.254934,55.746461],[-4.255736,55.744768],[-4.255317,55.744108],[-4.251862,55.743893],[-4.251288,55.742257],[-4.250093,55.741841],[-4.249544,55.740354],[-4.246528,55.737751],[-4.247248,55.736533],[-4.243177,55.73591],[-4.242167,55.735476],[-4.240861,55.733877],[-4.237269,55.733767],[-4.235774,55.733055],[-4.23308,55.733456],[-4.233356,55.731997],[-4.231528,55.730429],[-4.229482,55.729519],[-4.225394,55.7292],[-4.223196,55.727739],[-4.221667,55.723512],[-4.221772,55.721803],[-4.223016,55.720993],[-4.222248,55.717676],[-4.221484,55.716046],[-4.219815,55.716095],[-4.218678,55.714611],[-4.219575,55.712857],[-4.219459,55.710646],[-4.223384,55.707044],[-4.224082,55.705634],[-4.224146,55.703817],[-4.226138,55.699934],[-4.225357,55.698232],[-4.22378,55.696813],[-4.221602,55.691532],[-4.226045,55.688792],[-4.244993,55.681558],[-4.245003,55.680344],[-4.246893,55.679049],[-4.246614,55.674172],[-4.222356,55.65392],[-4.216961,55.647196],[-4.215374,55.643729],[-4.216811,55.643981],[-4.221589,55.636966],[-4.221615,55.635101],[-4.216065,55.63143],[-4.2127,55.630053],[-4.209261,55.629701],[-4.206401,55.628307],[-4.202964,55.627555],[-4.201936,55.626946],[-4.201257,55.623158],[-4.203586,55.620637],[-4.202946,55.617197],[-4.205296,55.61486],[-4.194134,55.612046],[-4.188556,55.610322],[-4.187106,55.609012],[-4.184763,55.608244],[-4.181777,55.605322],[-4.175735,55.604252],[-4.175471,55.60353],[-4.180752,55.602725],[-4.181946,55.603176],[-4.183905,55.602898],[-4.187964,55.60276],[-4.187882,55.602168],[-4.191317,55.601703],[-4.194687,55.600708],[-4.196338,55.598943],[-4.195638,55.598134],[-4.197144,55.597531],[-4.198087,55.59642],[-4.197095,55.595789],[-4.199518,55.595338],[-4.19874,55.59414],[-4.201567,55.593482],[-4.201025,55.592893],[-4.202683,55.591588],[-4.20274,55.589576],[-4.203858,55.588079],[-4.203367,55.587386],[-4.204951,55.586051],[-4.202641,55.585194],[-4.20337,55.583338],[-4.20568,55.582034],[-4.208988,55.581224],[-4.209136,55.580327],[-4.211401,55.578857],[-4.211736,55.577031],[-4.214668,55.575581],[-4.216621,55.575626],[-4.219348,55.574182],[-4.221636,55.573967],[-4.225469,55.57148],[-4.22607,55.570289],[-4.227194,55.569593],[-4.227766,55.568342],[-4.230169,55.566825],[-4.234421,55.564869],[-4.239411,55.563531],[-4.242639,55.562135],[-4.240523,55.561319],[-4.236336,55.561719],[-4.233762,55.560526],[-4.230964,55.560824],[-4.228178,55.560066],[-4.2276,55.558971],[-4.228285,55.552151],[-4.227656,55.552113],[-4.224663,55.550486],[-4.223415,55.55028],[-4.220587,55.550592],[-4.218331,55.55234],[-4.215401,55.552968],[-4.212613,55.552736],[-4.210004,55.553277],[-4.201099,55.556358],[-4.196922,55.55908],[-4.194768,55.559977],[-4.193625,55.561094],[-4.185693,55.563186],[-4.184083,55.564882],[-4.180605,55.56609],[-4.179469,55.565481],[-4.176413,55.56558],[-4.173379,55.564627],[-4.172704,55.565749],[-4.167647,55.565376],[-4.16701,55.566475],[-4.158559,55.567676],[-4.154681,55.569123],[-4.154122,55.570059],[-4.15108,55.572157],[-4.147717,55.572733],[-4.145935,55.570032],[-4.143433,55.569671],[-4.137504,55.567523],[-4.126309,55.565674],[-4.119698,55.566597],[-4.117949,55.566083],[-4.115112,55.566263],[-4.109986,55.566063],[-4.107188,55.566664],[-4.101346,55.569088],[-4.092758,55.570147],[-4.091755,55.568587],[-4.086269,55.569215],[-4.082718,55.568359],[-4.081567,55.567579],[-4.08043,55.568879],[-4.07503,55.571298],[-4.073189,55.571581],[-4.065384,55.575653],[-4.064696,55.576744],[-4.0661,55.578104],[-4.066167,55.579842],[-4.062648,55.580341],[-4.062181,55.581432],[-4.058222,55.582775],[-4.048796,55.584578],[-4.04594,55.586571],[-4.04061,55.589042],[-4.039576,55.592371],[-4.037484,55.589655],[-4.034136,55.588282],[-4.03372,55.584083],[-4.023422,55.581458],[-4.020019,55.579295],[-4.015132,55.577106],[-4.011964,55.576129],[-4.008295,55.575421],[-4.007798,55.574368],[-4.008356,55.571474],[-4.009654,55.569867],[-4.007527,55.56828],[-4.006521,55.568319],[-4.003586,55.567045],[-3.997,55.563536],[-3.994998,55.564242],[-3.993655,55.564017],[-3.99163,55.564423],[-3.991241,55.563638],[-3.989358,55.562941],[-3.987476,55.563196],[-3.985949,55.562718],[-3.983551,55.562714],[-3.981251,55.563643],[-3.976393,55.564656],[-3.975521,55.561651],[-3.973778,55.560259],[-3.97417,55.559704],[-3.97277,55.557862],[-3.972353,55.556439],[-3.969758,55.55645],[-3.967725,55.556845],[-3.965945,55.556606],[-3.964302,55.557162],[-3.958667,55.557091],[-3.957047,55.555751],[-3.958568,55.552239],[-3.958318,55.549435],[-3.960287,55.546478],[-3.960673,55.544674],[-3.959533,55.542945],[-3.958294,55.543207],[-3.958145,55.541812],[-3.958705,55.540788],[-3.96049,55.539864],[-3.96539,55.535001],[-3.972734,55.534347],[-3.974274,55.530448],[-3.976707,55.530708],[-3.978615,55.529499],[-3.987651,55.526445],[-3.989205,55.524582],[-3.989371,55.522705],[-3.988061,55.521702],[-3.988213,55.519839],[-3.990269,55.519626],[-3.992322,55.516829],[-3.994175,55.515101],[-3.9943,55.513337],[-3.99894,55.510979],[-3.999755,55.509725],[-4.003999,55.508016],[-4.006792,55.507345],[-4.007126,55.50565],[-4.01239,55.505006],[-4.013174,55.503308],[-4.015225,55.501774],[-4.015567,55.501022],[-4.01827,55.499692],[-4.019521,55.498611],[-4.019453,55.496366],[-4.018981,55.49534],[-4.023648,55.494276],[-4.025685,55.492449],[-4.024476,55.491358],[-4.02136,55.489697],[-4.02025,55.488583],[-4.016143,55.487208],[-4.013914,55.484496],[-4.011534,55.482638],[-4.013848,55.478048],[-4.014117,55.475419],[-4.01682,55.474745],[-4.016824,55.472961],[-4.01531,55.471979],[-4.014243,55.47246],[-4.011758,55.472433],[-4.008024,55.471353],[-4.003117,55.467412],[-4.001415,55.466918],[-4.002129,55.465235],[-4.000438,55.463712],[-3.998388,55.463526],[-3.995789,55.464674],[-3.993077,55.464534],[-3.991389,55.464786],[-3.986227,55.464052],[-3.980044,55.462831],[-3.976088,55.460909],[-3.974435,55.457898],[-3.96979,55.454364],[-3.965261,55.455178],[-3.956777,55.45983],[-3.950982,55.462592],[-3.950047,55.461268],[-3.948225,55.45994],[-3.940986,55.458434],[-3.935301,55.457952],[-3.927277,55.459804],[-3.924348,55.456327],[-3.919536,55.457702],[-3.916779,55.457767],[-3.913793,55.457014],[-3.910051,55.457634],[-3.908276,55.457388],[-3.906118,55.45757],[-3.902538,55.459038],[-3.900152,55.45964],[-3.895436,55.459758],[-3.893191,55.459595],[-3.890861,55.458337],[-3.889082,55.45636],[-3.869445,55.456981],[-3.868337,55.454783],[-3.864788,55.454247],[-3.860926,55.452137],[-3.838317,55.44789],[-3.833959,55.446154],[-3.825499,55.444416],[-3.824206,55.443109],[-3.825515,55.441171],[-3.825477,55.439316],[-3.822739,55.436175],[-3.819052,55.43454],[-3.818009,55.433163],[-3.817989,55.429636],[-3.816403,55.427269],[-3.810349,55.427583],[-3.807612,55.423202],[-3.80319,55.420994],[-3.80164,55.420617],[-3.800319,55.420924],[-3.796071,55.419076],[-3.79397,55.417503],[-3.792336,55.415442],[-3.792296,55.410545],[-3.790919,55.410318],[-3.789025,55.410687],[-3.786709,55.40856],[-3.781743,55.40825],[-3.781078,55.408732],[-3.778796,55.408742],[-3.777028,55.407191],[-3.777873,55.406519],[-3.778083,55.404868],[-3.777171,55.404246],[-3.769303,55.401852],[-3.764595,55.401102],[-3.763778,55.399438],[-3.763452,55.396715],[-3.765253,55.393737],[-3.761833,55.391917],[-3.762937,55.390832],[-3.762749,55.388727],[-3.761219,55.387531],[-3.761311,55.384798],[-3.758656,55.38028],[-3.756967,55.378875],[-3.754175,55.378363],[-3.752899,55.377702],[-3.75366,55.374941],[-3.7504,55.374723],[-3.748154,55.371471],[-3.746485,55.370596],[-3.744564,55.370875],[-3.742601,55.368571],[-3.736266,55.365879],[-3.734661,55.364891],[-3.728916,55.364492],[-3.725966,55.36505],[-3.720627,55.365249],[-3.715409,55.364642],[-3.712084,55.363286],[-3.711044,55.363242],[-3.712212,55.360917],[-3.71383,55.359321],[-3.717767,55.353573],[-3.718733,55.352951],[-3.72018,55.350245],[-3.717522,55.34786],[-3.712099,55.345357],[-3.710462,55.344149],[-3.711117,55.342154],[-3.714324,55.340097],[-3.710326,55.335799],[-3.710637,55.329696],[-3.712306,55.328409],[-3.711561,55.325764],[-3.710256,55.323714],[-3.711157,55.323159],[-3.707214,55.320709],[-3.699472,55.318017],[-3.699976,55.316606],[-3.698766,55.313612],[-3.693734,55.310811],[-3.690219,55.311139],[-3.686385,55.310455],[-3.68379,55.309637],[-3.680657,55.309707],[-3.678364,55.308948],[-3.673424,55.305385],[-3.672402,55.300573],[-3.66895,55.298445],[-3.670126,55.296074],[-3.666993,55.295353],[-3.665467,55.293321],[-3.663614,55.291751],[-3.662028,55.292244],[-3.657211,55.291914],[-3.655034,55.29202],[-3.652973,55.29132],[-3.649382,55.292649],[-3.645287,55.292435],[-3.644045,55.290771],[-3.639465,55.29143],[-3.634133,55.294836],[-3.632582,55.295041],[-3.630453,55.29422],[-3.626021,55.294201],[-3.619372,55.295461],[-3.618656,55.295745],[-3.619138,55.299462],[-3.618617,55.303099],[-3.616567,55.305566],[-3.618684,55.309582],[-3.617838,55.311836],[-3.621297,55.315129],[-3.621552,55.316542],[-3.614824,55.318899],[-3.613194,55.321441],[-3.607969,55.325514],[-3.607028,55.325827],[-3.599928,55.326828],[-3.598107,55.325841],[-3.596012,55.325662],[-3.59363,55.325037],[-3.592451,55.325515],[-3.586675,55.322952],[-3.575021,55.328154],[-3.573965,55.328361],[-3.575407,55.330526],[-3.577034,55.331624],[-3.578646,55.334643],[-3.584423,55.341187],[-3.583911,55.343075],[-3.587748,55.344774],[-3.588269,55.346175],[-3.587415,55.347216],[-3.584321,55.348331],[-3.580472,55.347961],[-3.577698,55.349139],[-3.575869,55.350515],[-3.574931,55.3529],[-3.572692,55.355103],[-3.572246,55.356992],[-3.577144,55.358182],[-3.577671,55.360126],[-3.576798,55.360384],[-3.574285,55.36384],[-3.572652,55.365228],[-3.571268,55.368139],[-3.571618,55.369213],[-3.577771,55.371573],[-3.578346,55.372919],[-3.575976,55.375443],[-3.573925,55.375838],[-3.574809,55.377233],[-3.580032,55.381169],[-3.580013,55.382077],[-3.578494,55.384963],[-3.574972,55.385149],[-3.571813,55.386449],[-3.570103,55.386815],[-3.564851,55.386321],[-3.558836,55.388271],[-3.557458,55.389124],[-3.556231,55.390663],[-3.556129,55.392066],[-3.555455,55.392592],[-3.554268,55.396956],[-3.549832,55.398985],[-3.548293,55.397989],[-3.54552,55.397944],[-3.54329,55.397064],[-3.540999,55.397017],[-3.538558,55.396162],[-3.536639,55.396757],[-3.5314,55.396436],[-3.530275,55.399398],[-3.528783,55.400028],[-3.526752,55.39999],[-3.523272,55.400847],[-3.521083,55.402456],[-3.52067,55.403629],[-3.521078,55.406226],[-3.514612,55.408526],[-3.512233,55.410357],[-3.51017,55.410517],[-3.507378,55.412264],[-3.508811,55.412992],[-3.510408,55.414473],[-3.509767,55.417554],[-3.51282,55.419911],[-3.513417,55.420879],[-3.515905,55.420435],[-3.517269,55.421186],[-3.516922,55.423275],[-3.520098,55.426556],[-3.523263,55.427092],[-3.523669,55.428817],[-3.525084,55.430669],[-3.525194,55.4329],[-3.531914,55.434007],[-3.533496,55.433835],[-3.536588,55.434712],[-3.537626,55.436407],[-3.539034,55.437458],[-3.539792,55.440693],[-3.539565,55.443172],[-3.537927,55.444154],[-3.536601,55.446422],[-3.53725,55.447474],[-3.535798,55.449564],[-3.535448,55.451945],[-3.530111,55.45482],[-3.530036,55.456538],[-3.529499,55.457371],[-3.53086,55.460472],[-3.531674,55.461262],[-3.526205,55.462391],[-3.524928,55.463108],[-3.525374,55.46379],[-3.524654,55.467685],[-3.522247,55.47029],[-3.522395,55.471047],[-3.519706,55.472505],[-3.518474,55.473778],[-3.51919,55.47634],[-3.518947,55.477861],[-3.517205,55.478836],[-3.515996,55.481353],[-3.519019,55.483225],[-3.519388,55.484371],[-3.523487,55.486234],[-3.521601,55.488415],[-3.522179,55.490263],[-3.516672,55.491945],[-3.515199,55.492111],[-3.512727,55.49309],[-3.511909,55.493832],[-3.512626,55.49767],[-3.511385,55.498948],[-3.511807,55.500048],[-3.511108,55.501651],[-3.511608,55.50271],[-3.508298,55.505991],[-3.508556,55.508382],[-3.504428,55.512468],[-3.5029,55.51268],[-3.502458,55.513544],[-3.500859,55.514403],[-3.495314,55.515819],[-3.488123,55.516217],[-3.486794,55.516678],[-3.486629,55.517965],[-3.488973,55.521949],[-3.491514,55.523572],[-3.49424,55.523817],[-3.494832,55.524196],[-3.494722,55.529014],[-3.495247,55.530113],[-3.498398,55.532986],[-3.498346,55.536204],[-3.501871,55.54366],[-3.50219,55.545491],[-3.503418,55.547442],[-3.502976,55.551015],[-3.501857,55.552839],[-3.500565,55.553673],[-3.496736,55.554906],[-3.495945,55.555745],[-3.495713,55.559281],[-3.495104,55.560165],[-3.489796,55.561915],[-3.488476,55.562668],[-3.500127,55.569225],[-3.500438,55.570937],[-3.502506,55.572741],[-3.503501,55.574917],[-3.505505,55.575907],[-3.508184,55.575857],[-3.508263,55.578318],[-3.508713,55.579103],[-3.508486,55.581051],[-3.510033,55.583948],[-3.512498,55.585467],[-3.51298,55.588783],[-3.516086,55.590231],[-3.516626,55.589983],[-3.52689,55.597014],[-3.527099,55.598637],[-3.526595,55.600104],[-3.529621,55.604371],[-3.531881,55.605342],[-3.530661,55.60771],[-3.530018,55.611397],[-3.526539,55.611696],[-3.524897,55.613729],[-3.519915,55.613773],[-3.515293,55.613186],[-3.508664,55.613752],[-3.495687,55.615882],[-3.481714,55.616428],[-3.484198,55.62026],[-3.481489,55.624644],[-3.480507,55.627564],[-3.47956,55.628157],[-3.480034,55.629725],[-3.478918,55.630134],[-3.477831,55.632677],[-3.479329,55.633347],[-3.48142,55.633555],[-3.484542,55.633346],[-3.487062,55.632716],[-3.489053,55.635002],[-3.489417,55.637809],[-3.48445,55.643249],[-3.484559,55.645206],[-3.485726,55.649038],[-3.482735,55.650225],[-3.479504,55.652769],[-3.478174,55.654965],[-3.473254,55.659717],[-3.468096,55.661592],[-3.458407,55.662982],[-3.456612,55.664383],[-3.455724,55.665676],[-3.455918,55.667085],[-3.455012,55.669834],[-3.45562,55.670745],[-3.447806,55.674669],[-3.441086,55.679911],[-3.431513,55.685786],[-3.426552,55.68814],[-3.419416,55.693297],[-3.415561,55.696626],[-3.409813,55.700156],[-3.40949,55.700826],[-3.405733,55.702701],[-3.401197,55.702225],[-3.401362,55.704649],[-3.396978,55.710656],[-3.396443,55.71629],[-3.398392,55.716532],[-3.401618,55.715201],[-3.406227,55.711967],[-3.409652,55.710224],[-3.419203,55.710562],[-3.420325,55.711077],[-3.419821,55.713392],[-3.421354,55.715023],[-3.42584,55.717406],[-3.425851,55.717941],[-3.428062,55.719312],[-3.430593,55.720132],[-3.439547,55.724064],[-3.439765,55.724973],[-3.437488,55.726217],[-3.436951,55.727673],[-3.438682,55.728365],[-3.439274,55.729591],[-3.437795,55.730395],[-3.436212,55.730474],[-3.435868,55.731787],[-3.437351,55.73313],[-3.440765,55.733376],[-3.443057,55.735735],[-3.444899,55.736657],[-3.445958,55.73881],[-3.447575,55.740349],[-3.447419,55.741283],[-3.444655,55.743417],[-3.444304,55.744253],[-3.446819,55.74593],[-3.449528,55.746379],[-3.452056,55.747756],[-3.453136,55.748727],[-3.453863,55.750295],[-3.453432,55.751325],[-3.454964,55.752057],[-3.453651,55.752737],[-3.454411,55.753443],[-3.453996,55.754288],[-3.454936,55.75589],[-3.45704,55.756431],[-3.457317,55.757673],[-3.456383,55.758479],[-3.455933,55.760524],[-3.457534,55.760945],[-3.456056,55.763618],[-3.457475,55.763843],[-3.459025,55.765658],[-3.462499,55.765851],[-3.464368,55.767441],[-3.466188,55.766894],[-3.46858,55.768191],[-3.469574,55.768345],[-3.470587,55.770687],[-3.471635,55.77097],[-3.473928,55.770715],[-3.475328,55.771084],[-3.479047,55.771408],[-3.480798,55.772398],[-3.482792,55.772019],[-3.488442,55.774067],[-3.502384,55.776768],[-3.529192,55.783385],[-3.531874,55.783917],[-3.532417,55.783656],[-3.53734,55.785438],[-3.5411,55.788574],[-3.547064,55.790733],[-3.554999,55.785691],[-3.564819,55.789746],[-3.564339,55.790072],[-3.568711,55.792121],[-3.568598,55.792782],[-3.571514,55.794161],[-3.575628,55.795512],[-3.576066,55.795233],[-3.583408,55.798715],[-3.583581,55.799981],[-3.584561,55.800707],[-3.587851,55.801838],[-3.58799,55.804171],[-3.590334,55.806246],[-3.589817,55.807268],[-3.591549,55.810215],[-3.607173,55.805793],[-3.612024,55.805626],[-3.614067,55.80466],[-3.615604,55.803072],[-3.616732,55.803327],[-3.623207,55.802496],[-3.629582,55.803481],[-3.639815,55.80383],[-3.653409,55.802511],[-3.657877,55.801795],[-3.669786,55.798412],[-3.67522,55.796424],[-3.679867,55.794141],[-3.685789,55.797362],[-3.698671,55.794629],[-3.704974,55.790686],[-3.706831,55.790651],[-3.714955,55.7895],[-3.719958,55.787948],[-3.732716,55.77787],[-3.734316,55.779425],[-3.738541,55.780147],[-3.739729,55.780683],[-3.741002,55.780435],[-3.743398,55.780703],[-3.744012,55.782009],[-3.746653,55.781285],[-3.750892,55.778749],[-3.750946,55.777994],[-3.752709,55.777659],[-3.753799,55.776902],[-3.754329,55.775578],[-3.756726,55.774636],[-3.758988,55.773345],[-3.762926,55.771932],[-3.766412,55.770053],[-3.768808,55.770162],[-3.769534,55.771239],[-3.771752,55.77198],[-3.773072,55.771921],[-3.772985,55.770875],[-3.7777,55.769733],[-3.782461,55.769628],[-3.784681,55.770243],[-3.785896,55.770126],[-3.78781,55.771029],[-3.791621,55.7714],[-3.794112,55.771319],[-3.79522,55.771828],[-3.796882,55.771045],[-3.799778,55.771272],[-3.806255,55.768756],[-3.812358,55.767324],[-3.817921,55.767529],[-3.836653,55.764773],[-3.843684,55.764771],[-3.848059,55.76427],[-3.849031,55.764431],[-3.85189,55.763948],[-3.859152,55.76445],[-3.868365,55.764153],[-3.868904,55.762121],[-3.869938,55.761147],[-3.871244,55.761451],[-3.876324,55.758855],[-3.878141,55.758084],[-3.880474,55.758394],[-3.882622,55.758109],[-3.884152,55.759206],[-3.886258,55.759538],[-3.888225,55.759122],[-3.889997,55.757972],[-3.892238,55.757703],[-3.893226,55.757189],[-3.896421,55.75665],[-3.896914,55.755643],[-3.899608,55.753727],[-3.900547,55.752592],[-3.902752,55.752127],[-3.903014,55.751393],[-3.904618,55.750761],[-3.906965,55.750464],[-3.908877,55.749089],[-3.907812,55.748352],[-3.910216,55.746176],[-3.911023,55.746219],[-3.91192,55.74459],[-3.913053,55.74397],[-3.912661,55.743023],[-3.914449,55.742518],[-3.915179,55.740945],[-3.916202,55.740227],[-3.91482,55.738514],[-3.916282,55.736957],[-3.916362,55.735078],[-3.917948,55.734716],[-3.919393,55.735006],[-3.92287,55.737401],[-3.924422,55.741754],[-3.928235,55.745217],[-3.930123,55.748509],[-3.932346,55.749025],[-3.936481,55.748326],[-3.938678,55.748267],[-3.941034,55.748645],[-3.943985,55.749848],[-3.947054,55.75053],[-3.949528,55.751914],[-3.951168,55.752054],[-3.953193,55.752872],[-3.955763,55.754807],[-3.957001,55.756397],[-3.961253,55.759087],[-3.968767,55.761669],[-3.974374,55.763015],[-3.972899,55.76649],[-3.97535,55.767568],[-3.981641,55.768667],[-3.989793,55.768344],[-3.992718,55.768551],[-4.000106,55.769967],[-4.002339,55.770749],[-4.002625,55.771667],[-4.000997,55.771963],[-3.998942,55.773279],[-3.998458,55.774354],[-4.00111,55.775336],[-4.001811,55.775999],[-3.998885,55.777715],[-3.99893,55.778735],[-4.000846,55.779413],[-4.007425,55.779868],[-4.014441,55.781144],[-4.015101,55.78337],[-4.017513,55.784824],[-4.023513,55.784414],[-4.025337,55.784803],[-4.038479,55.792375],[-4.042214,55.796078],[-4.045484,55.797049],[-4.046861,55.796655],[-4.048416,55.797261],[-4.053342,55.801278],[-4.051548,55.803817],[-4.04548,55.80723],[-4.041163,55.809024],[-4.047069,55.812345],[-4.063411,55.820001],[-4.068602,55.82207],[-4.074329,55.823347],[-4.081125,55.826041],[-4.093158,55.828894],[-4.096916,55.830395],[-4.101976,55.832998],[-4.107032,55.834653],[-4.107876,55.83358],[-4.109624,55.832573],[-4.109491,55.831319],[-4.111254,55.830282],[-4.112054,55.829147],[-4.112045,55.828058],[-4.110608,55.826828],[-4.111152,55.825868],[-4.112732,55.825974],[-4.119515,55.8289],[-4.121745,55.829532],[-4.129318,55.833091],[-4.130981,55.833224],[-4.133797,55.832458],[-4.136861,55.831141],[-4.140623,55.83031],[-4.146159,55.828198],[-4.150483,55.828265],[-4.158487,55.827659],[-4.164579,55.825853],[-4.172057,55.823025],[-4.17458,55.823345],[-4.175842,55.824324],[-4.178842,55.830182],[-4.179372,55.834712],[-4.180919,55.835759],[-4.186152,55.836803],[-4.187757,55.836583],[-4.190881,55.835076],[-4.191042,55.83266],[-4.192333,55.832024],[-4.194282,55.831738],[-4.198339,55.833422]]]},"properties":{"LAD22CD":"S12000029","LAD22NM":"South Lanarkshire","BNG_E":284634,"BNG_N":636071,"LONG":-3.83272,"LAT":55.60453,"GlobalID":"7402ce52-0119-4553-814b-138c380d5d81"},"id":337}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.82945,56.196549],[-3.836411,56.195621],[-3.843888,56.201814],[-3.840366,56.211746],[-3.841955,56.212248],[-3.843182,56.214306],[-3.842384,56.215153],[-3.842098,56.216744],[-3.842917,56.219194],[-3.846363,56.220593],[-3.848274,56.222757],[-3.84764,56.223513],[-3.847818,56.225523],[-3.855239,56.224383],[-3.864953,56.220135],[-3.871176,56.215444],[-3.873135,56.214462],[-3.875221,56.214745],[-3.876281,56.215313],[-3.877588,56.218789],[-3.878286,56.219861],[-3.883867,56.221852],[-3.885542,56.222132],[-3.887863,56.223076],[-3.889248,56.22431],[-3.892339,56.225147],[-3.894038,56.226033],[-3.899027,56.227565],[-3.898444,56.22853],[-3.898938,56.229577],[-3.900401,56.230665],[-3.901368,56.233464],[-3.916295,56.224927],[-3.917061,56.225476],[-3.918837,56.225567],[-3.92076,56.226913],[-3.920697,56.2282],[-3.922642,56.229737],[-3.926585,56.22997],[-3.9289,56.230875],[-3.931797,56.230663],[-3.934527,56.229458],[-3.934904,56.22839],[-3.937069,56.228336],[-3.93856,56.229337],[-3.939358,56.228162],[-3.940637,56.228267],[-3.940931,56.230283],[-3.943951,56.235207],[-3.947037,56.236783],[-3.947499,56.238862],[-3.956209,56.246573],[-3.95696,56.245474],[-3.959446,56.245646],[-3.96154,56.244781],[-3.963872,56.245248],[-3.967078,56.245286],[-3.976462,56.253265],[-4.005281,56.274934],[-4.017763,56.272274],[-4.025449,56.270238],[-4.030078,56.270895],[-4.037562,56.269111],[-4.038093,56.270377],[-4.039581,56.271446],[-4.035873,56.274279],[-4.034953,56.276072],[-4.037379,56.277657],[-4.038547,56.280263],[-4.052206,56.273491],[-4.061236,56.278782],[-4.078504,56.289915],[-4.079857,56.283301],[-4.080703,56.282514],[-4.084079,56.280889],[-4.088521,56.280872],[-4.093552,56.278918],[-4.101249,56.278773],[-4.103503,56.279217],[-4.105204,56.279156],[-4.107606,56.280252],[-4.112291,56.280258],[-4.115694,56.281031],[-4.118712,56.287841],[-4.135336,56.294447],[-4.13988,56.297822],[-4.140708,56.296889],[-4.144805,56.298269],[-4.150053,56.298385],[-4.151047,56.299532],[-4.161839,56.303311],[-4.165193,56.303589],[-4.166787,56.302919],[-4.168209,56.303334],[-4.171969,56.302945],[-4.178377,56.303205],[-4.188206,56.304218],[-4.191445,56.307136],[-4.191987,56.309116],[-4.193284,56.309606],[-4.193828,56.310913],[-4.197102,56.312598],[-4.197926,56.31443],[-4.202475,56.314232],[-4.209439,56.314562],[-4.210706,56.315793],[-4.211566,56.318222],[-4.216618,56.318613],[-4.22106,56.319634],[-4.225695,56.321748],[-4.230845,56.325614],[-4.230497,56.326447],[-4.234587,56.326405],[-4.236322,56.328553],[-4.237412,56.329212],[-4.236925,56.333601],[-4.233793,56.334822],[-4.231337,56.337364],[-4.229183,56.33858],[-4.228399,56.340118],[-4.22714,56.341286],[-4.22409,56.341143],[-4.223558,56.342294],[-4.226968,56.343334],[-4.228381,56.344522],[-4.236237,56.347835],[-4.24203,56.352781],[-4.241724,56.359693],[-4.239663,56.362647],[-4.238051,56.367461],[-4.238124,56.368286],[-4.239656,56.369288],[-4.239148,56.371818],[-4.239154,56.380198],[-4.240624,56.38439],[-4.196452,56.386696],[-4.196648,56.391513],[-4.197804,56.392859],[-4.198656,56.397099],[-4.197758,56.399932],[-4.195914,56.401272],[-4.202051,56.457819],[-4.201412,56.457574],[-4.19895,56.459487],[-4.194624,56.458503],[-4.180114,56.452698],[-4.17679,56.450465],[-4.174673,56.449913],[-4.173336,56.450094],[-4.16632,56.448698],[-4.165738,56.447289],[-4.163192,56.444632],[-4.159823,56.445019],[-4.156724,56.449732],[-4.148131,56.454307],[-4.14923,56.454953],[-4.148587,56.456636],[-4.145033,56.457798],[-4.142376,56.459183],[-4.14162,56.461317],[-4.136378,56.461627],[-4.134435,56.464024],[-4.131566,56.4641],[-4.115862,56.462505],[-4.110308,56.463772],[-4.105477,56.466532],[-4.103758,56.46715],[-4.100401,56.465441],[-4.098618,56.465345],[-4.107471,56.486694],[-4.108806,56.488936],[-4.110906,56.490042],[-4.116288,56.494816],[-4.119862,56.496849],[-4.122704,56.497996],[-4.124813,56.499973],[-4.126273,56.500788],[-4.130762,56.502315],[-4.134853,56.502541],[-4.137012,56.50294],[-4.141208,56.504588],[-4.146788,56.506285],[-4.154482,56.510285],[-4.194444,56.49532],[-4.242759,56.488146],[-4.274673,56.478571],[-4.296886,56.475044],[-4.299584,56.480448],[-4.300781,56.481437],[-4.302375,56.481875],[-4.302128,56.482626],[-4.29984,56.483194],[-4.300413,56.485151],[-4.299957,56.486467],[-4.300448,56.488947],[-4.297344,56.491216],[-4.29861,56.492396],[-4.298238,56.493091],[-4.303411,56.493754],[-4.304425,56.494122],[-4.303855,56.496518],[-4.305562,56.496927],[-4.307751,56.499394],[-4.308146,56.503493],[-4.307033,56.505105],[-4.307004,56.505963],[-4.311072,56.509914],[-4.309184,56.511346],[-4.310214,56.515578],[-4.315357,56.515289],[-4.317611,56.516002],[-4.31896,56.51586],[-4.321353,56.516839],[-4.320903,56.518663],[-4.323039,56.519297],[-4.327569,56.526348],[-4.33028,56.52773],[-4.331685,56.528899],[-4.333133,56.529308],[-4.334859,56.533441],[-4.333382,56.535747],[-4.332065,56.536931],[-4.330471,56.537599],[-4.331225,56.539018],[-4.333186,56.53983],[-4.335163,56.540103],[-4.341037,56.540267],[-4.35771,56.544323],[-4.362004,56.546785],[-4.365033,56.547091],[-4.368893,56.54664],[-4.371353,56.545259],[-4.371413,56.544274],[-4.370484,56.542427],[-4.372623,56.541262],[-4.374146,56.539086],[-4.37362,56.537294],[-4.374151,56.536174],[-4.375285,56.536094],[-4.378082,56.534279],[-4.378494,56.533592],[-4.381139,56.533357],[-4.384286,56.533616],[-4.385958,56.53344],[-4.390246,56.533861],[-4.396714,56.528636],[-4.399609,56.527875],[-4.400432,56.52727],[-4.402827,56.526829],[-4.408671,56.528598],[-4.414705,56.526818],[-4.417366,56.52558],[-4.418488,56.525707],[-4.422881,56.524857],[-4.425969,56.524842],[-4.427505,56.525594],[-4.4308,56.526513],[-4.431975,56.525942],[-4.433904,56.525733],[-4.437415,56.526348],[-4.439927,56.525587],[-4.441978,56.525737],[-4.441851,56.524656],[-4.444221,56.522565],[-4.446925,56.521137],[-4.449002,56.520813],[-4.450262,56.519444],[-4.453063,56.518378],[-4.456947,56.51836],[-4.458166,56.517715],[-4.460897,56.517715],[-4.469864,56.515987],[-4.470093,56.515268],[-4.477391,56.51301],[-4.478602,56.513139],[-4.481109,56.512568],[-4.482983,56.513883],[-4.48737,56.512357],[-4.48987,56.513048],[-4.490896,56.511967],[-4.494355,56.512657],[-4.497107,56.516075],[-4.499042,56.516441],[-4.500299,56.517269],[-4.502205,56.519172],[-4.504778,56.5185],[-4.506313,56.519956],[-4.507309,56.520273],[-4.507611,56.522006],[-4.506693,56.522631],[-4.507416,56.523363],[-4.511262,56.521896],[-4.51599,56.520987],[-4.516858,56.520228],[-4.519477,56.519995],[-4.521992,56.519068],[-4.528795,56.518566],[-4.530141,56.517662],[-4.531172,56.515327],[-4.532882,56.514034],[-4.53014,56.512166],[-4.53093,56.511207],[-4.53062,56.509604],[-4.528003,56.507775],[-4.528467,56.506201],[-4.527503,56.505641],[-4.528502,56.504898],[-4.532105,56.50482],[-4.538704,56.507021],[-4.539387,56.506428],[-4.541927,56.506003],[-4.552268,56.505341],[-4.553147,56.505485],[-4.555902,56.504408],[-4.557561,56.504913],[-4.558932,56.506557],[-4.561174,56.505459],[-4.562195,56.504211],[-4.569117,56.503362],[-4.570526,56.503648],[-4.573809,56.505566],[-4.577264,56.50522],[-4.578179,56.504815],[-4.582499,56.500357],[-4.583786,56.500761],[-4.584545,56.499613],[-4.587241,56.499481],[-4.588108,56.498964],[-4.591678,56.498301],[-4.593159,56.498562],[-4.595701,56.497956],[-4.600717,56.497554],[-4.603877,56.495268],[-4.60795,56.494126],[-4.608717,56.49323],[-4.614063,56.490169],[-4.614597,56.48943],[-4.616136,56.489371],[-4.618234,56.487879],[-4.622465,56.487857],[-4.625148,56.486484],[-4.625886,56.484716],[-4.62564,56.483508],[-4.624088,56.482426],[-4.621714,56.481924],[-4.620328,56.480438],[-4.621575,56.479796],[-4.623719,56.477446],[-4.624293,56.477402],[-4.628472,56.474307],[-4.629993,56.473646],[-4.633974,56.472748],[-4.636382,56.474095],[-4.638025,56.474599],[-4.639066,56.476037],[-4.643685,56.473445],[-4.646216,56.473297],[-4.649102,56.473702],[-4.651826,56.473631],[-4.655348,56.473034],[-4.658496,56.470675],[-4.659179,56.469644],[-4.66091,56.469203],[-4.664028,56.463878],[-4.665531,56.46008],[-4.666499,56.461506],[-4.675401,56.461346],[-4.684389,56.462653],[-4.686473,56.463196],[-4.689231,56.462256],[-4.691467,56.463102],[-4.693722,56.465151],[-4.695824,56.465479],[-4.700073,56.467354],[-4.700476,56.466397],[-4.701957,56.46508],[-4.702931,56.463019],[-4.704871,56.461767],[-4.71187,56.460433],[-4.716178,56.45926],[-4.720817,56.458646],[-4.724678,56.459851],[-4.726405,56.459489],[-4.727805,56.45785],[-4.729679,56.457166],[-4.733324,56.45492],[-4.728976,56.453128],[-4.724076,56.449757],[-4.723039,56.446387],[-4.726336,56.440782],[-4.727532,56.440127],[-4.730639,56.436396],[-4.732109,56.435847],[-4.733389,56.434242],[-4.735919,56.433786],[-4.739896,56.434049],[-4.740047,56.43445],[-4.743822,56.435395],[-4.746797,56.435491],[-4.752889,56.437059],[-4.755421,56.436509],[-4.757871,56.436621],[-4.761673,56.435705],[-4.768074,56.436492],[-4.768483,56.435975],[-4.766876,56.435076],[-4.766584,56.433847],[-4.76457,56.432031],[-4.766027,56.432102],[-4.769085,56.43154],[-4.771207,56.430391],[-4.77326,56.430071],[-4.774658,56.429438],[-4.779837,56.428171],[-4.781601,56.427008],[-4.783911,56.427325],[-4.789921,56.427329],[-4.791406,56.425678],[-4.789587,56.423979],[-4.795169,56.422703],[-4.796713,56.420979],[-4.798602,56.416779],[-4.803786,56.416271],[-4.808208,56.417416],[-4.811659,56.417598],[-4.81315,56.416378],[-4.814479,56.41406],[-4.814855,56.410483],[-4.814136,56.408329],[-4.811783,56.408517],[-4.811976,56.407614],[-4.8132,56.40684],[-4.816377,56.406067],[-4.815614,56.404961],[-4.817274,56.404712],[-4.816732,56.403745],[-4.817304,56.402051],[-4.816136,56.399848],[-4.814268,56.398592],[-4.812636,56.398108],[-4.821214,56.394434],[-4.828102,56.392475],[-4.832134,56.390797],[-4.835147,56.390134],[-4.835884,56.38708],[-4.834586,56.382588],[-4.83324,56.381145],[-4.83406,56.379436],[-4.83422,56.378094],[-4.836652,56.376604],[-4.83914,56.376516],[-4.845296,56.37522],[-4.854358,56.370674],[-4.853209,56.369258],[-4.85015,56.368744],[-4.848568,56.368924],[-4.844995,56.368247],[-4.839828,56.368015],[-4.836466,56.367346],[-4.834748,56.366557],[-4.83172,56.36679],[-4.826849,56.364209],[-4.822168,56.362657],[-4.820923,56.361373],[-4.81921,56.361309],[-4.818764,56.360205],[-4.813863,56.358734],[-4.810191,56.355811],[-4.807707,56.355274],[-4.801249,56.355632],[-4.799952,56.352407],[-4.795003,56.347818],[-4.787114,56.344414],[-4.783173,56.343856],[-4.783004,56.342309],[-4.780425,56.339563],[-4.778734,56.339008],[-4.78059,56.338049],[-4.784707,56.336927],[-4.785622,56.335604],[-4.788443,56.334902],[-4.79282,56.333127],[-4.789975,56.32885],[-4.788885,56.326218],[-4.7859,56.323832],[-4.783725,56.323553],[-4.78114,56.323972],[-4.779117,56.323967],[-4.774498,56.323346],[-4.770021,56.324404],[-4.767415,56.324044],[-4.766962,56.324715],[-4.765102,56.324608],[-4.762388,56.325001],[-4.760755,56.324674],[-4.752963,56.325072],[-4.748499,56.327454],[-4.747693,56.328497],[-4.744156,56.33084],[-4.743567,56.331653],[-4.739897,56.331914],[-4.73604,56.331712],[-4.73301,56.33119],[-4.730673,56.330523],[-4.728533,56.329213],[-4.724969,56.328693],[-4.720948,56.327326],[-4.720336,56.326333],[-4.720995,56.324228],[-4.720707,56.323475],[-4.722743,56.322424],[-4.72185,56.321468],[-4.719291,56.322563],[-4.71708,56.322175],[-4.7172,56.32557],[-4.719229,56.329534],[-4.715904,56.329985],[-4.712259,56.328658],[-4.709,56.32868],[-4.70697,56.326972],[-4.704698,56.325952],[-4.703708,56.326701],[-4.702074,56.326481],[-4.699594,56.324337],[-4.695701,56.322472],[-4.693329,56.322901],[-4.691933,56.322599],[-4.690372,56.323621],[-4.688562,56.323423],[-4.684379,56.324318],[-4.683961,56.325167],[-4.682541,56.325553],[-4.679113,56.325802],[-4.677235,56.326477],[-4.67444,56.325832],[-4.672077,56.326161],[-4.668828,56.325737],[-4.667323,56.326079],[-4.662889,56.324314],[-4.660943,56.323305],[-4.660883,56.322214],[-4.658469,56.321929],[-4.659038,56.320914],[-4.657909,56.319797],[-4.657289,56.317393],[-4.65897,56.3168],[-4.660782,56.315543],[-4.662722,56.315645],[-4.664606,56.317725],[-4.667741,56.319091],[-4.668869,56.317063],[-4.67105,56.31622],[-4.670744,56.315077],[-4.672565,56.314053],[-4.676703,56.312872],[-4.676978,56.310906],[-4.676077,56.310059],[-4.677387,56.308089],[-4.676395,56.306861],[-4.673155,56.304576],[-4.671856,56.304141],[-4.670659,56.302513],[-4.67391,56.302187],[-4.675011,56.300829],[-4.677611,56.299748],[-4.678622,56.300333],[-4.680771,56.299747],[-4.682109,56.297839],[-4.680611,56.296079],[-4.680266,56.294154],[-4.679515,56.293464],[-4.68009,56.292562],[-4.680106,56.290948],[-4.678579,56.289099],[-4.675696,56.289129],[-4.674565,56.288668],[-4.671624,56.288782],[-4.670038,56.289324],[-4.668126,56.28821],[-4.666645,56.288296],[-4.665433,56.287481],[-4.663318,56.28763],[-4.661975,56.286909],[-4.660666,56.2854],[-4.660864,56.283827],[-4.661599,56.283367],[-4.660306,56.281143],[-4.66094,56.280855],[-4.664398,56.280857],[-4.667071,56.279335],[-4.670386,56.281344],[-4.672081,56.281676],[-4.673485,56.281075],[-4.675213,56.279559],[-4.67702,56.279169],[-4.679636,56.277077],[-4.683052,56.277182],[-4.684171,56.278385],[-4.687554,56.278253],[-4.690179,56.278821],[-4.693822,56.278589],[-4.69379,56.277673],[-4.697125,56.274441],[-4.697774,56.270584],[-4.697453,56.261432],[-4.698258,56.259451],[-4.701147,56.25657],[-4.701416,56.254659],[-4.698575,56.245157],[-4.697078,56.242229],[-4.691798,56.234385],[-4.685533,56.219095],[-4.685026,56.215338],[-4.68565,56.212731],[-4.686425,56.211582],[-4.690365,56.208266],[-4.694945,56.203583],[-4.695752,56.201267],[-4.695367,56.199169],[-4.690521,56.193054],[-4.688876,56.189355],[-4.687669,56.187772],[-4.675729,56.177062],[-4.672756,56.174857],[-4.655591,56.164989],[-4.655267,56.163104],[-4.657539,56.158791],[-4.657304,56.15703],[-4.655011,56.153672],[-4.650863,56.150387],[-4.651756,56.146408],[-4.651286,56.143906],[-4.649999,56.141691],[-4.644421,56.135838],[-4.64278,56.13351],[-4.642064,56.13117],[-4.642014,56.125868],[-4.64115,56.123478],[-4.63747,56.120501],[-4.632739,56.118489],[-4.621963,56.117123],[-4.604986,56.115995],[-4.599737,56.115338],[-4.596556,56.114677],[-4.59415,56.113824],[-4.590424,56.110881],[-4.589118,56.107844],[-4.59086,56.104132],[-4.604396,56.090491],[-4.605309,56.08889],[-4.603955,56.087283],[-4.598188,56.084226],[-4.596799,56.082481],[-4.594521,56.077766],[-4.592679,56.075535],[-4.589597,56.073842],[-4.58737,56.073224],[-4.583095,56.072977],[-4.574957,56.074441],[-4.572192,56.074553],[-4.567428,56.073843],[-4.560763,56.071479],[-4.557226,56.071215],[-4.553443,56.071347],[-4.532351,56.073423],[-4.530184,56.072999],[-4.527297,56.071714],[-4.523761,56.071184],[-4.517066,56.06717],[-4.514763,56.066273],[-4.513148,56.065093],[-4.510221,56.061262],[-4.506885,56.060479],[-4.506308,56.058591],[-4.504274,56.058542],[-4.501271,56.059168],[-4.499664,56.061119],[-4.500364,56.061559],[-4.50384,56.06186],[-4.504816,56.063028],[-4.503578,56.064826],[-4.505155,56.066157],[-4.504863,56.067574],[-4.5034,56.067181],[-4.501915,56.065819],[-4.500363,56.065066],[-4.495873,56.063888],[-4.491705,56.063422],[-4.491447,56.061795],[-4.489095,56.062119],[-4.488207,56.064106],[-4.486124,56.064051],[-4.488377,56.060794],[-4.487015,56.06028],[-4.484905,56.061061],[-4.483818,56.060625],[-4.48252,56.059314],[-4.479243,56.059161],[-4.478517,56.05967],[-4.477964,56.061232],[-4.475481,56.061218],[-4.47582,56.059549],[-4.478102,56.058138],[-4.475854,56.058254],[-4.474893,56.057418],[-4.474552,56.056201],[-4.477966,56.055086],[-4.478207,56.054162],[-4.479495,56.053433],[-4.47957,56.052483],[-4.48189,56.050722],[-4.485478,56.050192],[-4.486806,56.050495],[-4.498936,56.047616],[-4.488227,56.040776],[-4.488527,56.03975],[-4.487215,56.038987],[-4.488587,56.035838],[-4.492132,56.033751],[-4.49001,56.032929],[-4.491757,56.031255],[-4.488252,56.029468],[-4.489045,56.028048],[-4.488186,56.02724],[-4.487814,56.025757],[-4.488807,56.024803],[-4.48547,56.022645],[-4.483188,56.022872],[-4.480835,56.022123],[-4.480814,56.020447],[-4.479203,56.020061],[-4.478962,56.019241],[-4.480727,56.017076],[-4.480575,56.015314],[-4.481056,56.01401],[-4.482639,56.012276],[-4.481901,56.0112],[-4.47921,56.010891],[-4.477016,56.009823],[-4.475851,56.008302],[-4.472879,56.006491],[-4.473023,56.00494],[-4.470793,56.002288],[-4.470083,56.00207],[-4.448694,56.0045],[-4.445891,56.002673],[-4.44532,56.000617],[-4.443993,55.999659],[-4.445321,55.999354],[-4.445429,55.997523],[-4.442833,55.995256],[-4.442944,55.994485],[-4.440806,55.992995],[-4.440207,55.991645],[-4.439136,55.991051],[-4.438874,55.989568],[-4.437271,55.988553],[-4.435002,55.987784],[-4.434421,55.986448],[-4.433379,55.985687],[-4.433757,55.984308],[-4.430657,55.982559],[-4.428667,55.98227],[-4.427654,55.981315],[-4.430339,55.979024],[-4.417817,55.974233],[-4.414023,55.971341],[-4.407892,55.972239],[-4.406409,55.971715],[-4.402038,55.971829],[-4.399461,55.971972],[-4.398152,55.973089],[-4.398986,55.975554],[-4.398209,55.976589],[-4.392842,55.978464],[-4.387865,55.979041],[-4.38369,55.979908],[-4.381359,55.9798],[-4.380499,55.979368],[-4.375342,55.981062],[-4.372206,55.980631],[-4.366375,55.980412],[-4.363145,55.977734],[-4.364077,55.976602],[-4.359411,55.973917],[-4.357622,55.973152],[-4.355536,55.972919],[-4.353353,55.971567],[-4.351465,55.971541],[-4.348968,55.969008],[-4.34755,55.966666],[-4.346437,55.966191],[-4.342966,55.962666],[-4.339215,55.961562],[-4.338171,55.960769],[-4.336545,55.96056],[-4.33521,55.959415],[-4.332631,55.95908],[-4.330935,55.958234],[-4.327739,55.958745],[-4.320296,55.95843],[-4.31941,55.959986],[-4.315609,55.959306],[-4.314487,55.960009],[-4.312637,55.959026],[-4.309033,55.958084],[-4.303703,55.957222],[-4.301203,55.957334],[-4.295131,55.9586],[-4.286401,55.957782],[-4.28596,55.958973],[-4.287855,55.960892],[-4.29363,55.96283],[-4.292784,55.964263],[-4.290329,55.964481],[-4.288637,55.966831],[-4.281671,55.967055],[-4.272652,55.965344],[-4.280547,55.975272],[-4.278892,55.977114],[-4.27427,55.976876],[-4.275478,55.983296],[-4.275029,55.993219],[-4.276467,55.996953],[-4.283025,55.99911],[-4.28805,56.003938],[-4.29409,56.008688],[-4.294042,56.011816],[-4.2956,56.014142],[-4.299021,56.016622],[-4.299146,56.018057],[-4.296278,56.020151],[-4.296292,56.022811],[-4.297587,56.023955],[-4.296324,56.025655],[-4.290947,56.02699],[-4.281417,56.028416],[-4.275263,56.02871],[-4.275145,56.027786],[-4.273194,56.025863],[-4.273013,56.023053],[-4.269224,56.022624],[-4.266573,56.022696],[-4.264394,56.021657],[-4.26169,56.021114],[-4.259145,56.019435],[-4.256994,56.017227],[-4.250481,56.015998],[-4.24102,56.016508],[-4.222531,56.02033],[-4.219827,56.019475],[-4.218856,56.018212],[-4.212936,56.016962],[-4.206671,56.016984],[-4.198047,56.010121],[-4.197226,56.010803],[-4.194875,56.011695],[-4.19089,56.011999],[-4.187313,56.013568],[-4.185949,56.013714],[-4.184745,56.014553],[-4.181696,56.015528],[-4.180628,56.016796],[-4.178128,56.01684],[-4.17452,56.018014],[-4.173652,56.018712],[-4.173527,56.020049],[-4.174075,56.021235],[-4.171902,56.022689],[-4.172098,56.023175],[-4.170832,56.0245],[-4.170364,56.025879],[-4.169467,56.026335],[-4.169855,56.02725],[-4.168584,56.02818],[-4.168839,56.029245],[-4.166838,56.028956],[-4.162723,56.030291],[-4.161191,56.028435],[-4.158682,56.027333],[-4.158275,56.026361],[-4.156808,56.025241],[-4.158096,56.022581],[-4.156753,56.020802],[-4.156707,56.019397],[-4.155613,56.017757],[-4.156736,56.01417],[-4.157333,56.013513],[-4.156356,56.011665],[-4.15392,56.009699],[-4.152376,56.008036],[-4.15027,56.007233],[-4.146203,56.007214],[-4.141301,56.006607],[-4.138351,56.006627],[-4.136397,56.006247],[-4.132329,56.00723],[-4.129901,56.008283],[-4.129115,56.009015],[-4.123465,56.009976],[-4.122294,56.010845],[-4.121567,56.012507],[-4.120044,56.012969],[-4.120234,56.013797],[-4.116595,56.014282],[-4.114352,56.015223],[-4.111392,56.01478],[-4.11023,56.01555],[-4.108596,56.01574],[-4.106996,56.017286],[-4.105651,56.017187],[-4.09991,56.019303],[-4.098608,56.021482],[-4.098369,56.023],[-4.097138,56.024854],[-4.096681,56.027369],[-4.093694,56.027793],[-4.086502,56.027147],[-4.081744,56.027151],[-4.083167,56.026021],[-4.081791,56.025343],[-4.079705,56.025954],[-4.078991,56.027143],[-4.077357,56.027786],[-4.075038,56.027794],[-4.070615,56.028371],[-4.068682,56.028233],[-4.067375,56.028996],[-4.064112,56.02875],[-4.062482,56.029636],[-4.05837,56.029435],[-4.058545,56.030155],[-4.05461,56.030462],[-4.053472,56.031252],[-4.048345,56.030299],[-4.045466,56.031362],[-4.044213,56.031037],[-4.043312,56.029832],[-4.042273,56.029494],[-4.037962,56.029364],[-4.034096,56.028753],[-4.031507,56.029859],[-4.026855,56.029159],[-4.02208,56.027922],[-4.020121,56.028037],[-4.019018,56.028447],[-4.017847,56.029756],[-4.014858,56.029673],[-4.012638,56.031279],[-4.010388,56.030872],[-4.004722,56.033357],[-4.002881,56.03499],[-4.001291,56.03494],[-3.997842,56.035945],[-3.995932,56.036997],[-3.994621,56.038702],[-3.993115,56.038709],[-3.991808,56.038117],[-3.988707,56.038994],[-3.981572,56.040042],[-3.978651,56.03937],[-3.978367,56.040344],[-3.979143,56.04361],[-3.97594,56.047642],[-3.973356,56.048622],[-3.961256,56.048194],[-3.954324,56.050066],[-3.946899,56.049175],[-3.946407,56.049699],[-3.944119,56.049606],[-3.942888,56.050004],[-3.942828,56.050978],[-3.93939,56.050767],[-3.934625,56.049402],[-3.930332,56.049897],[-3.925117,56.048838],[-3.923871,56.050051],[-3.922715,56.049497],[-3.920611,56.049494],[-3.920007,56.048341],[-3.914626,56.049295],[-3.905267,56.047762],[-3.900957,56.046264],[-3.89673,56.045421],[-3.895127,56.04574],[-3.893336,56.046995],[-3.893057,56.047925],[-3.89149,56.048479],[-3.884234,56.047892],[-3.883356,56.047436],[-3.879414,56.047022],[-3.873307,56.048329],[-3.873819,56.049764],[-3.873091,56.05047],[-3.870761,56.050367],[-3.869743,56.049868],[-3.868186,56.050049],[-3.865633,56.049648],[-3.860887,56.050737],[-3.857774,56.049949],[-3.85375,56.050036],[-3.851518,56.05079],[-3.850274,56.050386],[-3.848017,56.050572],[-3.841372,56.050764],[-3.836585,56.051846],[-3.834592,56.051902],[-3.833224,56.050397],[-3.830277,56.051257],[-3.826773,56.050956],[-3.824498,56.051091],[-3.820988,56.054295],[-3.819446,56.054595],[-3.817605,56.054412],[-3.817266,56.053516],[-3.813794,56.053459],[-3.811009,56.054884],[-3.811323,56.056307],[-3.815271,56.058261],[-3.814728,56.060034],[-3.815565,56.060543],[-3.814431,56.0614],[-3.81315,56.061085],[-3.811698,56.062288],[-3.809239,56.062237],[-3.805431,56.063109],[-3.804264,56.062775],[-3.802168,56.063336],[-3.799668,56.062804],[-3.797899,56.065419],[-3.798596,56.06644],[-3.800225,56.067143],[-3.8003,56.068086],[-3.804066,56.069374],[-3.806814,56.069736],[-3.805484,56.073043],[-3.807778,56.072906],[-3.8128,56.074845],[-3.817849,56.075714],[-3.823265,56.078617],[-3.829492,56.080952],[-3.832932,56.083385],[-3.83589,56.084648],[-3.833329,56.087499],[-3.828641,56.086543],[-3.826015,56.090304],[-3.82314,56.09108],[-3.821858,56.096717],[-3.820817,56.097703],[-3.82026,56.098307],[-3.821386,56.099217],[-3.829135,56.098939],[-3.833338,56.099048],[-3.834035,56.099673],[-3.838096,56.101836],[-3.838707,56.101902],[-3.840561,56.104461],[-3.841404,56.106583],[-3.840526,56.108792],[-3.837781,56.112317],[-3.837452,56.114296],[-3.838123,56.115427],[-3.840071,56.116336],[-3.842595,56.116618],[-3.850878,56.118476],[-3.854621,56.118467],[-3.855377,56.117355],[-3.8537,56.114667],[-3.853328,56.11293],[-3.854483,56.110393],[-3.857569,56.108039],[-3.8601,56.106858],[-3.862879,56.106043],[-3.865487,56.105808],[-3.870974,56.107286],[-3.872543,56.108302],[-3.872969,56.10951],[-3.87267,56.111289],[-3.869861,56.113058],[-3.866351,56.113974],[-3.864244,56.115172],[-3.864258,56.116855],[-3.866194,56.119493],[-3.867841,56.120408],[-3.869571,56.120261],[-3.873645,56.119043],[-3.875631,56.118806],[-3.878858,56.119509],[-3.880394,56.120603],[-3.880619,56.123695],[-3.884429,56.126177],[-3.885691,56.12807],[-3.887209,56.12902],[-3.888824,56.129211],[-3.89147,56.128856],[-3.894109,56.12613],[-3.900032,56.121428],[-3.901409,56.12091],[-3.904115,56.120679],[-3.907204,56.121198],[-3.907886,56.122518],[-3.906576,56.123393],[-3.902633,56.124385],[-3.901967,56.125071],[-3.902884,56.126733],[-3.905611,56.127994],[-3.908939,56.128665],[-3.911245,56.127628],[-3.913128,56.124106],[-3.914194,56.120893],[-3.915268,56.120096],[-3.918099,56.119765],[-3.922704,56.120124],[-3.92847,56.118893],[-3.930581,56.119398],[-3.932449,56.121205],[-3.932599,56.122616],[-3.931171,56.123283],[-3.929071,56.12343],[-3.92598,56.121992],[-3.923509,56.122169],[-3.92323,56.123569],[-3.925036,56.127005],[-3.92535,56.129221],[-3.923349,56.131157],[-3.919288,56.132277],[-3.919355,56.133604],[-3.921358,56.134225],[-3.926125,56.134228],[-3.927794,56.133676],[-3.929253,56.132624],[-3.929693,56.131479],[-3.926713,56.129066],[-3.927183,56.127671],[-3.92843,56.126858],[-3.93084,56.126286],[-3.934662,56.126545],[-3.937062,56.127528],[-3.937522,56.12851],[-3.936797,56.130534],[-3.939387,56.131885],[-3.94681,56.132958],[-3.950044,56.132969],[-3.956706,56.132112],[-3.9589,56.132831],[-3.959307,56.134732],[-3.958103,56.135582],[-3.952546,56.137479],[-3.951399,56.139058],[-3.952014,56.140171],[-3.956191,56.141161],[-3.957226,56.141905],[-3.958702,56.142119],[-3.960672,56.141746],[-3.964306,56.139646],[-3.965743,56.140936],[-3.962594,56.142276],[-3.959791,56.142817],[-3.957504,56.142684],[-3.954554,56.141324],[-3.951596,56.140702],[-3.950621,56.139636],[-3.95066,56.138594],[-3.951626,56.137115],[-3.95693,56.135308],[-3.95794,56.134557],[-3.958036,56.133577],[-3.956698,56.132624],[-3.955369,56.132606],[-3.950522,56.133486],[-3.945924,56.133681],[-3.940908,56.13309],[-3.937044,56.131821],[-3.935824,56.130234],[-3.936363,56.128683],[-3.935202,56.127512],[-3.93357,56.127085],[-3.930367,56.126934],[-3.927599,56.128213],[-3.927655,56.129218],[-3.930035,56.130672],[-3.930542,56.131518],[-3.93015,56.132731],[-3.9282,56.134275],[-3.926223,56.134782],[-3.923122,56.135071],[-3.920189,56.134721],[-3.918424,56.133822],[-3.918315,56.132092],[-3.923037,56.130585],[-3.924409,56.129099],[-3.923971,56.127029],[-3.922064,56.124078],[-3.922624,56.121892],[-3.923866,56.12135],[-3.925931,56.121348],[-3.928866,56.122869],[-3.931654,56.122347],[-3.930666,56.120517],[-3.92893,56.119583],[-3.927453,56.119665],[-3.924228,56.120669],[-3.917595,56.120403],[-3.916015,56.120771],[-3.91573,56.123209],[-3.912297,56.12806],[-3.910041,56.129188],[-3.907665,56.129256],[-3.905325,56.128619],[-3.902548,56.127477],[-3.901449,56.126536],[-3.9009,56.125326],[-3.901517,56.124135],[-3.90306,56.123427],[-3.905624,56.122981],[-3.905553,56.121799],[-3.903258,56.121527],[-3.900466,56.122488],[-3.891737,56.130456],[-3.888006,56.131023],[-3.886494,56.130774],[-3.88396,56.12944],[-3.881814,56.128964],[-3.880837,56.129827],[-3.880574,56.132081],[-3.879381,56.132455],[-3.87797,56.134883],[-3.870379,56.134691],[-3.857495,56.135313],[-3.857957,56.136181],[-3.860607,56.136778],[-3.859996,56.137509],[-3.857263,56.137834],[-3.857848,56.13919],[-3.860344,56.140291],[-3.86039,56.141401],[-3.8636,56.142037],[-3.864798,56.142554],[-3.868753,56.146842],[-3.870847,56.148148],[-3.874285,56.148365],[-3.875286,56.149906],[-3.877869,56.14996],[-3.873479,56.15125],[-3.866029,56.1522],[-3.863184,56.152343],[-3.859262,56.1521],[-3.857104,56.152687],[-3.854257,56.152887],[-3.855485,56.154829],[-3.856763,56.155739],[-3.856547,56.157394],[-3.857588,56.159006],[-3.857625,56.16054],[-3.856345,56.162515],[-3.858173,56.164523],[-3.856613,56.165737],[-3.855781,56.16752],[-3.853088,56.169277],[-3.851908,56.172372],[-3.849316,56.174258],[-3.848255,56.175639],[-3.848465,56.179339],[-3.845526,56.181714],[-3.844084,56.182212],[-3.841187,56.188501],[-3.842516,56.190687],[-3.838481,56.191052],[-3.832517,56.190756],[-3.82945,56.196549]]]},"properties":{"LAD22CD":"S12000030","LAD22NM":"Stirling","BNG_E":255980,"BNG_N":708769,"LONG":-4.32595,"LAT":56.24953,"GlobalID":"f434336e-5632-4c45-b86e-03314befee4a"},"id":338}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.06136,57.211974],[-2.063058,57.212607],[-2.063775,57.214249],[-2.069428,57.214595],[-2.075955,57.218276],[-2.080852,57.219294],[-2.084439,57.219332],[-2.08661,57.219051],[-2.094663,57.222491],[-2.116041,57.225011],[-2.128238,57.227442],[-2.129403,57.225912],[-2.128935,57.222851],[-2.131441,57.217911],[-2.135011,57.216943],[-2.137759,57.216551],[-2.136602,57.214726],[-2.140743,57.213097],[-2.140295,57.2128],[-2.143127,57.211286],[-2.146094,57.212332],[-2.148086,57.211264],[-2.151969,57.212174],[-2.151452,57.212868],[-2.154637,57.213639],[-2.160415,57.213197],[-2.160817,57.213947],[-2.165095,57.213252],[-2.166507,57.212016],[-2.166915,57.211045],[-2.169458,57.212311],[-2.171789,57.212543],[-2.174669,57.210264],[-2.17676,57.211795],[-2.179274,57.21295],[-2.179252,57.21486],[-2.179855,57.215766],[-2.183735,57.216212],[-2.186015,57.217888],[-2.192464,57.219167],[-2.197366,57.22136],[-2.201646,57.222757],[-2.20379,57.225151],[-2.204444,57.23079],[-2.205276,57.231475],[-2.206799,57.231295],[-2.211113,57.229189],[-2.213088,57.229215],[-2.217711,57.23023],[-2.221781,57.229673],[-2.223991,57.230333],[-2.226294,57.228503],[-2.22848,57.22877],[-2.229788,57.230854],[-2.231586,57.231034],[-2.234555,57.229574],[-2.236593,57.229387],[-2.237578,57.230593],[-2.237531,57.233425],[-2.23921,57.23458],[-2.24119,57.235338],[-2.243854,57.233933],[-2.248059,57.233834],[-2.252539,57.233199],[-2.253274,57.232688],[-2.253625,57.231177],[-2.255007,57.230231],[-2.259731,57.228691],[-2.261863,57.228487],[-2.264727,57.229224],[-2.264587,57.231426],[-2.266675,57.232626],[-2.269861,57.232822],[-2.272863,57.234612],[-2.275133,57.23421],[-2.273487,57.23275],[-2.273938,57.230174],[-2.276972,57.229408],[-2.277686,57.228513],[-2.279057,57.228254],[-2.279492,57.226857],[-2.278774,57.225248],[-2.280323,57.224526],[-2.279638,57.223823],[-2.279044,57.221852],[-2.279376,57.220284],[-2.278948,57.219715],[-2.281623,57.218437],[-2.280684,57.217509],[-2.281945,57.214881],[-2.283458,57.214193],[-2.281738,57.212924],[-2.277936,57.212975],[-2.277857,57.210821],[-2.281685,57.206967],[-2.281162,57.206068],[-2.278378,57.204188],[-2.279592,57.201213],[-2.281568,57.200911],[-2.289594,57.201846],[-2.292867,57.200074],[-2.295067,57.197838],[-2.290196,57.193138],[-2.28564,57.187673],[-2.282237,57.186977],[-2.279789,57.184436],[-2.277572,57.183122],[-2.275724,57.182785],[-2.273936,57.181681],[-2.272409,57.179001],[-2.27332,57.17668],[-2.271459,57.175286],[-2.272033,57.174568],[-2.271095,57.172762],[-2.267731,57.17324],[-2.262178,57.17091],[-2.260995,57.169888],[-2.26005,57.167902],[-2.255505,57.16173],[-2.253517,57.160164],[-2.254377,57.158325],[-2.257463,57.157337],[-2.259248,57.154249],[-2.267063,57.146882],[-2.267207,57.145557],[-2.272826,57.14444],[-2.274559,57.141626],[-2.277658,57.138187],[-2.278287,57.136626],[-2.278074,57.135275],[-2.276533,57.133155],[-2.274402,57.131868],[-2.275034,57.130186],[-2.277294,57.128946],[-2.278639,57.128896],[-2.280684,57.130672],[-2.283765,57.130772],[-2.287586,57.129915],[-2.289588,57.128875],[-2.296239,57.128384],[-2.300157,57.126471],[-2.304201,57.125811],[-2.304623,57.124828],[-2.304178,57.123416],[-2.30909,57.124834],[-2.317111,57.124641],[-2.323692,57.125542],[-2.325579,57.126371],[-2.33326,57.131755],[-2.339354,57.133753],[-2.342586,57.133975],[-2.351185,57.135632],[-2.353835,57.132854],[-2.350562,57.131006],[-2.351702,57.120757],[-2.360797,57.111563],[-2.360877,57.10918],[-2.35138,57.108293],[-2.349178,57.107043],[-2.34438,57.10663],[-2.341063,57.104056],[-2.337572,57.102545],[-2.330951,57.101496],[-2.325401,57.101881],[-2.321646,57.102612],[-2.319617,57.101783],[-2.316758,57.102318],[-2.309896,57.102757],[-2.309285,57.103897],[-2.307653,57.10373],[-2.30611,57.104558],[-2.303968,57.105049],[-2.302246,57.10498],[-2.300549,57.103956],[-2.298459,57.104345],[-2.297402,57.103886],[-2.295619,57.104089],[-2.294864,57.103582],[-2.292438,57.103812],[-2.292572,57.102811],[-2.289934,57.102189],[-2.287471,57.102151],[-2.285663,57.103305],[-2.283638,57.102727],[-2.284496,57.101698],[-2.280983,57.100676],[-2.279647,57.099309],[-2.279712,57.097418],[-2.280655,57.095944],[-2.284656,57.094099],[-2.288127,57.093727],[-2.291359,57.089305],[-2.290685,57.088323],[-2.293548,57.088134],[-2.295535,57.087383],[-2.297804,57.087401],[-2.299813,57.086562],[-2.301374,57.085234],[-2.309816,57.082034],[-2.317018,57.080021],[-2.312793,57.077522],[-2.307754,57.077747],[-2.307644,57.076175],[-2.306028,57.076629],[-2.299277,57.077542],[-2.293855,57.07914],[-2.289251,57.079631],[-2.282924,57.079329],[-2.276981,57.077994],[-2.27355,57.078334],[-2.269817,57.079474],[-2.260617,57.085793],[-2.25982,57.087848],[-2.261023,57.093777],[-2.259378,57.095215],[-2.2542,57.095933],[-2.245907,57.096041],[-2.237536,57.094388],[-2.235233,57.094304],[-2.231927,57.094989],[-2.229885,57.095972],[-2.229276,57.096902],[-2.226004,57.099513],[-2.221948,57.101654],[-2.218526,57.101771],[-2.215614,57.100391],[-2.210317,57.101372],[-2.209693,57.102594],[-2.202107,57.104861],[-2.200365,57.105039],[-2.195892,57.104079],[-2.192838,57.104469],[-2.190961,57.105114],[-2.189823,57.107478],[-2.18851,57.108049],[-2.184724,57.108266],[-2.182256,57.107595],[-2.181495,57.106936],[-2.178886,57.107146],[-2.176434,57.109464],[-2.175415,57.112473],[-2.174222,57.113524],[-2.171929,57.114583],[-2.165696,57.114167],[-2.160193,57.112833],[-2.149659,57.114756],[-2.145071,57.117],[-2.143351,57.117303],[-2.135941,57.117477],[-2.126075,57.118411],[-2.124035,57.117378],[-2.123045,57.114983],[-2.124584,57.113631],[-2.121072,57.113642],[-2.121985,57.108442],[-2.118747,57.103773],[-2.118687,57.090421],[-2.097811,57.08833],[-2.088966,57.087045],[-2.085248,57.085856],[-2.083205,57.086549],[-2.080483,57.089045],[-2.081444,57.089638],[-2.082868,57.092032],[-2.080562,57.092146],[-2.079103,57.093205],[-2.077317,57.093919],[-2.078512,57.095563],[-2.077829,57.096291],[-2.075184,57.096746],[-2.073578,57.096468],[-2.073173,57.099719],[-2.074216,57.099992],[-2.072918,57.101943],[-2.074042,57.102423],[-2.07287,57.104092],[-2.070436,57.104114],[-2.069581,57.105099],[-2.067223,57.105604],[-2.064563,57.106713],[-2.063513,57.107724],[-2.064373,57.108481],[-2.064221,57.109416],[-2.061644,57.111494],[-2.061749,57.112522],[-2.05944,57.112778],[-2.059739,57.115263],[-2.058807,57.115491],[-2.057809,57.117155],[-2.055172,57.118817],[-2.056335,57.119754],[-2.053794,57.121225],[-2.053518,57.122375],[-2.051829,57.124222],[-2.051827,57.125077],[-2.050825,57.1269],[-2.050996,57.127548],[-2.048414,57.129178],[-2.050754,57.130025],[-2.052953,57.1298],[-2.054501,57.130457],[-2.056116,57.130223],[-2.058382,57.131738],[-2.058577,57.13375],[-2.057642,57.135476],[-2.055477,57.136487],[-2.052725,57.136416],[-2.049425,57.137573],[-2.047447,57.137715],[-2.046627,57.13852],[-2.046881,57.140158],[-2.048044,57.140405],[-2.05125,57.139825],[-2.053058,57.140379],[-2.053535,57.141357],[-2.055232,57.142456],[-2.060636,57.142689],[-2.062185,57.14217],[-2.066691,57.141323],[-2.071166,57.139764],[-2.075141,57.139961],[-2.086376,57.139714],[-2.089421,57.139546],[-2.091715,57.138863],[-2.093278,57.137846],[-2.095067,57.135607],[-2.094283,57.135259],[-2.095479,57.13249],[-2.094974,57.130817],[-2.095759,57.129771],[-2.098365,57.128303],[-2.103549,57.127107],[-2.109547,57.128219],[-2.113679,57.127664],[-2.115301,57.126545],[-2.116879,57.124946],[-2.117967,57.1226],[-2.12289,57.119068],[-2.122716,57.120075],[-2.119775,57.123078],[-2.117659,57.125831],[-2.114357,57.128412],[-2.111251,57.129216],[-2.105513,57.128412],[-2.102442,57.128473],[-2.099827,57.128977],[-2.098087,57.129744],[-2.096831,57.13103],[-2.097023,57.133083],[-2.096115,57.134866],[-2.096313,57.136099],[-2.095567,57.137763],[-2.09332,57.1394],[-2.089799,57.14048],[-2.077294,57.140568],[-2.07541,57.141248],[-2.091138,57.142448],[-2.091391,57.143409],[-2.089662,57.143542],[-2.079469,57.142378],[-2.079157,57.143034],[-2.090406,57.14536],[-2.09233,57.145279],[-2.093904,57.144463],[-2.095024,57.145393],[-2.09377,57.145868],[-2.087647,57.146335],[-2.081614,57.144877],[-2.080188,57.143954],[-2.079124,57.145005],[-2.076551,57.144393],[-2.072257,57.142128],[-2.069173,57.142185],[-2.068773,57.142996],[-2.070906,57.143803],[-2.073454,57.145742],[-2.076198,57.149158],[-2.078126,57.1537],[-2.078942,57.157541],[-2.079086,57.162047],[-2.077703,57.172785],[-2.077759,57.174378],[-2.079518,57.174868],[-2.083998,57.174105],[-2.088916,57.174901],[-2.091929,57.175126],[-2.094317,57.174975],[-2.098582,57.176439],[-2.098997,57.177751],[-2.101559,57.177367],[-2.107021,57.177222],[-2.107166,57.177617],[-2.102005,57.17768],[-2.100748,57.178161],[-2.098351,57.178064],[-2.098171,57.177126],[-2.095379,57.176483],[-2.088305,57.175953],[-2.08075,57.176233],[-2.078696,57.175794],[-2.077564,57.176078],[-2.072793,57.187924],[-2.0728,57.189407],[-2.070384,57.193182],[-2.065599,57.203148],[-2.063469,57.206454],[-2.06136,57.211974]]]},"properties":{"LAD22CD":"S12000033","LAD22NM":"Aberdeen City","BNG_E":387763,"BNG_N":808479,"LONG":-2.20398,"LAT":57.16697,"GlobalID":"26638057-8a65-4c1d-bc2b-b5caf88140b7"},"id":339}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.772663,57.471589],[-1.776252,57.470976],[-1.774509,57.469262],[-1.772239,57.469909],[-1.772663,57.471589]]],[[[-2.06136,57.211974],[-2.058748,57.216906],[-2.058644,57.218025],[-2.042799,57.243215],[-2.041452,57.244509],[-2.036695,57.251341],[-2.034804,57.253464],[-2.022465,57.269555],[-2.017078,57.276371],[-2.006749,57.28744],[-1.999417,57.296002],[-1.990297,57.304726],[-1.989905,57.306041],[-1.992175,57.309905],[-1.994165,57.310888],[-1.995116,57.31209],[-1.993577,57.315019],[-1.991509,57.316155],[-1.994684,57.319663],[-1.997023,57.320288],[-2.00001,57.319505],[-1.999788,57.321026],[-1.998377,57.321416],[-1.995626,57.32083],[-1.995198,57.321509],[-1.997091,57.321901],[-1.99981,57.324061],[-1.997983,57.324567],[-1.999573,57.325687],[-1.999898,57.326894],[-1.998828,57.331699],[-2.002145,57.3332],[-2.002846,57.334889],[-2.004886,57.334495],[-2.008816,57.335402],[-2.011915,57.335739],[-2.010392,57.337374],[-2.009146,57.337771],[-2.007389,57.337369],[-2.008991,57.340576],[-2.008019,57.342907],[-2.003451,57.345409],[-2.000275,57.345645],[-1.998207,57.344433],[-1.995218,57.346835],[-1.998603,57.347718],[-2.001955,57.347848],[-2.00742,57.349597],[-2.008207,57.3504],[-2.010688,57.351514],[-2.009283,57.35328],[-2.010156,57.355056],[-2.011886,57.35618],[-2.012506,57.357344],[-2.017435,57.358592],[-2.017995,57.359888],[-2.023856,57.360001],[-2.02665,57.36092],[-2.030177,57.361154],[-2.032044,57.36066],[-2.035151,57.361932],[-2.03805,57.362319],[-2.04198,57.361793],[-2.044498,57.363003],[-2.042786,57.36329],[-2.04081,57.362445],[-2.035602,57.36331],[-2.034079,57.362918],[-2.033417,57.36201],[-2.03155,57.361474],[-2.028512,57.361734],[-2.022627,57.360583],[-2.016965,57.361135],[-2.016103,57.359653],[-2.013649,57.359192],[-2.012086,57.358536],[-2.00941,57.356338],[-2.007779,57.3559],[-2.005389,57.353193],[-2.00275,57.352944],[-2.001492,57.352191],[-1.997759,57.35169],[-1.997173,57.351246],[-1.992405,57.350142],[-1.990602,57.348953],[-1.990182,57.346533],[-1.993565,57.34428],[-1.996418,57.343529],[-1.998556,57.341239],[-1.999115,57.338909],[-1.99787,57.333517],[-1.996886,57.332325],[-1.995727,57.332667],[-1.993591,57.331425],[-1.994234,57.329626],[-1.993685,57.328893],[-1.994718,57.328217],[-1.99453,57.327136],[-1.992808,57.32642],[-1.992559,57.325023],[-1.991444,57.324222],[-1.990994,57.32302],[-1.988832,57.321376],[-1.98867,57.319862],[-1.985996,57.317799],[-1.98614,57.315641],[-1.988789,57.314106],[-1.990273,57.312726],[-1.992348,57.311802],[-1.99161,57.311083],[-1.988084,57.310367],[-1.9861,57.31072],[-1.982752,57.313557],[-1.979035,57.31821],[-1.973569,57.323623],[-1.968887,57.327256],[-1.967452,57.328055],[-1.964797,57.327974],[-1.963541,57.328591],[-1.959335,57.329779],[-1.957246,57.329509],[-1.956363,57.330663],[-1.955345,57.330623],[-1.952875,57.331774],[-1.95401,57.332544],[-1.95627,57.333044],[-1.955982,57.334153],[-1.952242,57.335146],[-1.952057,57.335869],[-1.949157,57.336925],[-1.946997,57.338385],[-1.945269,57.338391],[-1.941974,57.340384],[-1.941769,57.341898],[-1.940061,57.342834],[-1.939942,57.343728],[-1.936399,57.343415],[-1.934108,57.344931],[-1.934109,57.346533],[-1.935166,57.346932],[-1.931475,57.348411],[-1.930231,57.347412],[-1.927831,57.349907],[-1.925222,57.350717],[-1.923917,57.352783],[-1.921302,57.353272],[-1.922869,57.355009],[-1.919041,57.356357],[-1.917968,57.358478],[-1.916409,57.358967],[-1.91593,57.359981],[-1.913535,57.36002],[-1.911515,57.360434],[-1.914593,57.361779],[-1.914422,57.363111],[-1.911471,57.363575],[-1.910179,57.365862],[-1.907433,57.36528],[-1.905131,57.367681],[-1.903233,57.367287],[-1.901118,57.368743],[-1.899318,57.369444],[-1.898612,57.370922],[-1.896723,57.370491],[-1.895086,57.371122],[-1.895304,57.372097],[-1.892789,57.373709],[-1.888099,57.37314],[-1.888078,57.373895],[-1.885987,57.37458],[-1.886553,57.375624],[-1.885738,57.376337],[-1.883565,57.376628],[-1.882314,57.378291],[-1.878638,57.379736],[-1.875486,57.380365],[-1.874857,57.382467],[-1.871439,57.383499],[-1.872372,57.38455],[-1.871041,57.385154],[-1.869804,57.384565],[-1.868277,57.385016],[-1.869197,57.386024],[-1.868224,57.387022],[-1.866019,57.387181],[-1.866583,57.388164],[-1.865139,57.389043],[-1.862938,57.389249],[-1.86104,57.388732],[-1.860149,57.390032],[-1.858324,57.390321],[-1.859595,57.391203],[-1.861584,57.391453],[-1.859972,57.393056],[-1.861,57.3932],[-1.863175,57.394429],[-1.863465,57.395052],[-1.862548,57.397356],[-1.864592,57.400377],[-1.86216,57.405461],[-1.859451,57.408044],[-1.855307,57.410942],[-1.847647,57.413834],[-1.84533,57.411432],[-1.84353,57.411083],[-1.842261,57.410154],[-1.839821,57.409696],[-1.838359,57.409903],[-1.834902,57.411708],[-1.835684,57.414111],[-1.833082,57.413904],[-1.831672,57.415366],[-1.830209,57.415677],[-1.830032,57.417022],[-1.831006,57.417753],[-1.829263,57.418964],[-1.827679,57.421051],[-1.825735,57.422156],[-1.823239,57.422951],[-1.823411,57.423746],[-1.821075,57.425027],[-1.821735,57.426023],[-1.818925,57.426013],[-1.816175,57.426975],[-1.815552,57.427813],[-1.816928,57.429086],[-1.814583,57.43059],[-1.814732,57.431016],[-1.818743,57.431719],[-1.819986,57.432321],[-1.81703,57.433782],[-1.819546,57.435355],[-1.818246,57.436134],[-1.813021,57.436929],[-1.81159,57.438434],[-1.809953,57.438773],[-1.807525,57.439963],[-1.806487,57.441133],[-1.808246,57.442524],[-1.806465,57.442796],[-1.804566,57.443561],[-1.805051,57.444879],[-1.80091,57.445481],[-1.797548,57.447197],[-1.798214,57.448512],[-1.796867,57.449371],[-1.796559,57.451248],[-1.799131,57.451208],[-1.798542,57.452584],[-1.801012,57.453739],[-1.797051,57.453879],[-1.794651,57.45493],[-1.794084,57.455532],[-1.792317,57.455318],[-1.791414,57.456153],[-1.789947,57.45588],[-1.789578,57.457284],[-1.788637,57.458363],[-1.786642,57.458822],[-1.787392,57.459501],[-1.784618,57.460428],[-1.781899,57.46055],[-1.781052,57.461736],[-1.782702,57.461955],[-1.782029,57.463859],[-1.779477,57.465493],[-1.77882,57.467654],[-1.780154,57.467551],[-1.781298,57.468236],[-1.778514,57.4692],[-1.776415,57.470965],[-1.77694,57.471741],[-1.77626,57.472983],[-1.776447,57.474015],[-1.777854,57.474937],[-1.782532,57.476743],[-1.785944,57.479102],[-1.786422,57.480334],[-1.789998,57.480423],[-1.791924,57.481229],[-1.794413,57.481707],[-1.795834,57.483003],[-1.796082,57.484711],[-1.794956,57.485671],[-1.791058,57.486532],[-1.784999,57.488506],[-1.783574,57.488639],[-1.783206,57.490494],[-1.782577,57.49119],[-1.789246,57.494948],[-1.791538,57.494203],[-1.793496,57.494722],[-1.793955,57.495755],[-1.792997,57.499021],[-1.791189,57.502288],[-1.789471,57.503413],[-1.787493,57.503189],[-1.784528,57.503827],[-1.781306,57.503256],[-1.780175,57.502029],[-1.777356,57.501898],[-1.774031,57.502697],[-1.772907,57.50498],[-1.774818,57.505873],[-1.77545,57.50733],[-1.772688,57.506807],[-1.770436,57.506853],[-1.770494,57.505449],[-1.771828,57.504192],[-1.772885,57.501981],[-1.773896,57.501169],[-1.76943,57.500909],[-1.766647,57.503141],[-1.768583,57.503461],[-1.769427,57.504775],[-1.767685,57.50579],[-1.767077,57.506892],[-1.769455,57.506939],[-1.773705,57.508926],[-1.774552,57.510738],[-1.776213,57.511319],[-1.781656,57.51203],[-1.78334,57.512666],[-1.785807,57.514878],[-1.790055,57.51608],[-1.795589,57.515873],[-1.80025,57.516407],[-1.803658,57.516165],[-1.804673,57.516483],[-1.809665,57.516688],[-1.811475,57.518093],[-1.809653,57.518421],[-1.808668,57.517115],[-1.806346,57.517087],[-1.803861,57.517577],[-1.801819,57.516868],[-1.797623,57.516614],[-1.797284,57.517499],[-1.800329,57.520898],[-1.799126,57.5221],[-1.79893,57.523539],[-1.803534,57.525398],[-1.805312,57.527509],[-1.806885,57.531084],[-1.807055,57.535121],[-1.806176,57.53896],[-1.802324,57.543252],[-1.801913,57.544895],[-1.804749,57.54781],[-1.806191,57.551466],[-1.805924,57.554063],[-1.804137,57.556391],[-1.80788,57.557702],[-1.812542,57.560469],[-1.815756,57.563296],[-1.821306,57.5698],[-1.823011,57.569753],[-1.82267,57.568677],[-1.824531,57.568889],[-1.825377,57.571088],[-1.822376,57.57084],[-1.826011,57.578221],[-1.827629,57.584602],[-1.827465,57.586606],[-1.82808,57.587857],[-1.82833,57.591975],[-1.827836,57.593624],[-1.827919,57.596981],[-1.826485,57.59861],[-1.825977,57.601614],[-1.820855,57.607548],[-1.823199,57.610752],[-1.823544,57.612244],[-1.826879,57.614736],[-1.837599,57.617604],[-1.842366,57.619284],[-1.844624,57.619514],[-1.84813,57.620361],[-1.864322,57.625438],[-1.86788,57.626964],[-1.876625,57.631789],[-1.886774,57.638552],[-1.887854,57.638168],[-1.886303,57.637223],[-1.887767,57.636171],[-1.88872,57.6377],[-1.887744,57.638687],[-1.885728,57.638492],[-1.893878,57.646336],[-1.895407,57.649493],[-1.898115,57.651359],[-1.898995,57.653085],[-1.898822,57.655363],[-1.902092,57.657242],[-1.908098,57.659679],[-1.911412,57.661915],[-1.912538,57.664385],[-1.918052,57.667758],[-1.919191,57.671197],[-1.918561,57.672431],[-1.919523,57.673428],[-1.920069,57.674906],[-1.921783,57.674442],[-1.922634,57.675406],[-1.924151,57.674999],[-1.925346,57.676037],[-1.927391,57.676082],[-1.929061,57.67724],[-1.93238,57.67745],[-1.934105,57.678211],[-1.937886,57.679261],[-1.940065,57.680478],[-1.941918,57.680781],[-1.943832,57.680085],[-1.944982,57.67919],[-1.948994,57.678279],[-1.950137,57.677455],[-1.950595,57.676093],[-1.953992,57.674955],[-1.968169,57.675456],[-1.973495,57.676163],[-1.991258,57.6799],[-1.99534,57.681017],[-2.001018,57.683849],[-2.001347,57.685829],[-1.999075,57.687454],[-1.998571,57.689579],[-1.999091,57.690118],[-2.00108,57.689786],[-2.001822,57.691568],[-2.003666,57.692063],[-2.002684,57.693409],[-2.002714,57.695494],[-2.00014,57.696935],[-2.002283,57.69734],[-2.002321,57.69862],[-2.005421,57.698854],[-2.008357,57.697542],[-2.009422,57.697573],[-2.011446,57.695636],[-2.013632,57.695798],[-2.014635,57.696338],[-2.014472,57.697353],[-2.016,57.698021],[-2.023328,57.696864],[-2.02377,57.696042],[-2.026945,57.695682],[-2.028074,57.694874],[-2.031998,57.693827],[-2.034099,57.692877],[-2.041274,57.691743],[-2.042821,57.69174],[-2.05198,57.693441],[-2.055123,57.694846],[-2.057811,57.695368],[-2.05908,57.697251],[-2.060762,57.69789],[-2.063709,57.698335],[-2.065984,57.697709],[-2.067721,57.698794],[-2.069947,57.698849],[-2.070873,57.69949],[-2.077954,57.700035],[-2.079822,57.700553],[-2.086281,57.700239],[-2.088043,57.699689],[-2.093169,57.699107],[-2.094888,57.698553],[-2.100245,57.697998],[-2.102838,57.69805],[-2.109956,57.69717],[-2.112673,57.697677],[-2.116916,57.700273],[-2.118687,57.700137],[-2.121173,57.699198],[-2.122936,57.699717],[-2.124078,57.698952],[-2.124876,57.697472],[-2.126594,57.697079],[-2.127871,57.695736],[-2.130897,57.695155],[-2.132419,57.695142],[-2.133915,57.694518],[-2.136473,57.692696],[-2.13905,57.690467],[-2.139852,57.68892],[-2.144972,57.686861],[-2.145772,57.686255],[-2.148066,57.6861],[-2.148608,57.685018],[-2.150262,57.685022],[-2.151548,57.684193],[-2.151596,57.683206],[-2.153214,57.68333],[-2.154891,57.682795],[-2.155878,57.681469],[-2.158345,57.681802],[-2.157926,57.683123],[-2.159928,57.683185],[-2.15958,57.684078],[-2.162912,57.683503],[-2.163809,57.681812],[-2.165162,57.680689],[-2.164806,57.679849],[-2.167422,57.67879],[-2.168449,57.677706],[-2.170006,57.677379],[-2.17171,57.67627],[-2.174009,57.675279],[-2.173803,57.674583],[-2.175211,57.673594],[-2.177832,57.673852],[-2.181482,57.673763],[-2.182052,57.673059],[-2.184897,57.671853],[-2.187622,57.671893],[-2.191915,57.671318],[-2.193498,57.671545],[-2.197843,57.673276],[-2.198388,57.67393],[-2.202027,57.674541],[-2.202158,57.675432],[-2.20469,57.675189],[-2.205817,57.675867],[-2.208117,57.676213],[-2.209395,57.677342],[-2.20888,57.67784],[-2.211377,57.678434],[-2.21225,57.67923],[-2.214708,57.679243],[-2.215494,57.67824],[-2.217343,57.677712],[-2.220487,57.677565],[-2.223357,57.678651],[-2.225162,57.67857],[-2.225951,57.679274],[-2.228258,57.67994],[-2.229432,57.679643],[-2.230867,57.680768],[-2.231986,57.680302],[-2.235152,57.680433],[-2.237687,57.679568],[-2.238654,57.680556],[-2.241301,57.68163],[-2.244755,57.681665],[-2.246989,57.682629],[-2.250761,57.682332],[-2.251836,57.681821],[-2.255758,57.681028],[-2.258887,57.678991],[-2.263316,57.679295],[-2.265065,57.680173],[-2.265049,57.680888],[-2.267356,57.681516],[-2.269604,57.681468],[-2.27197,57.682136],[-2.271016,57.683448],[-2.271955,57.683986],[-2.273868,57.683943],[-2.272697,57.685742],[-2.274993,57.685999],[-2.275182,57.68732],[-2.2769,57.686855],[-2.279028,57.687306],[-2.28011,57.688179],[-2.283183,57.688824],[-2.2845,57.68774],[-2.286114,57.689032],[-2.290398,57.689101],[-2.292441,57.689362],[-2.292778,57.690385],[-2.291732,57.691495],[-2.290143,57.6921],[-2.289865,57.693235],[-2.291575,57.694045],[-2.295346,57.694883],[-2.295338,57.695714],[-2.299871,57.694635],[-2.301827,57.694496],[-2.303432,57.693183],[-2.30738,57.692442],[-2.308074,57.691536],[-2.310348,57.691586],[-2.312352,57.692544],[-2.31302,57.691467],[-2.315324,57.691025],[-2.316055,57.690077],[-2.317897,57.690438],[-2.320753,57.688214],[-2.32356,57.687938],[-2.325595,57.686502],[-2.326317,57.683459],[-2.326039,57.682282],[-2.324573,57.68076],[-2.324204,57.679233],[-2.324945,57.6775],[-2.327286,57.676091],[-2.331904,57.675032],[-2.333002,57.674281],[-2.334487,57.674197],[-2.337111,57.673288],[-2.339326,57.671689],[-2.344574,57.669909],[-2.347983,57.669449],[-2.349949,57.669625],[-2.351567,57.671522],[-2.354189,57.673451],[-2.359029,57.675628],[-2.360945,57.675919],[-2.363179,57.675766],[-2.367078,57.674603],[-2.369751,57.674707],[-2.372752,57.672958],[-2.376057,57.672011],[-2.379839,57.67013],[-2.39648,57.668275],[-2.400804,57.668684],[-2.402086,57.668564],[-2.407439,57.66955],[-2.408744,57.67106],[-2.412028,57.671801],[-2.415414,57.670734],[-2.418391,57.670331],[-2.419291,57.67103],[-2.42271,57.670629],[-2.423938,57.671505],[-2.42839,57.672244],[-2.428466,57.673181],[-2.430364,57.673583],[-2.431363,57.67186],[-2.432451,57.672127],[-2.434612,57.671161],[-2.436774,57.671576],[-2.438996,57.670799],[-2.44027,57.67083],[-2.441398,57.671689],[-2.443646,57.671382],[-2.447026,57.668844],[-2.453064,57.669732],[-2.453034,57.670489],[-2.458257,57.670968],[-2.459323,57.671515],[-2.461437,57.671109],[-2.466554,57.670739],[-2.467525,57.671236],[-2.46997,57.671496],[-2.471929,57.671279],[-2.47258,57.670524],[-2.474457,57.671295],[-2.473881,57.672044],[-2.474601,57.673144],[-2.48354,57.672906],[-2.488767,57.671709],[-2.495036,57.673221],[-2.498769,57.671618],[-2.497592,57.671421],[-2.498489,57.669987],[-2.500272,57.669351],[-2.502557,57.669669],[-2.504784,57.668248],[-2.506805,57.666268],[-2.508995,57.665921],[-2.51205,57.663648],[-2.512532,57.659014],[-2.514593,57.657014],[-2.520217,57.654055],[-2.524312,57.653001],[-2.516546,57.656726],[-2.514684,57.657892],[-2.513675,57.659316],[-2.514355,57.664333],[-2.516219,57.665107],[-2.520281,57.666016],[-2.520724,57.667304],[-2.523206,57.669626],[-2.522887,57.670891],[-2.524691,57.671312],[-2.525848,57.670738],[-2.531178,57.669788],[-2.536371,57.670051],[-2.539224,57.66975],[-2.541018,57.669066],[-2.544211,57.669935],[-2.547532,57.669896],[-2.553394,57.670629],[-2.558046,57.671833],[-2.559874,57.67269],[-2.563387,57.673301],[-2.566923,57.674859],[-2.568329,57.676434],[-2.567875,57.677809],[-2.568322,57.679346],[-2.570599,57.681229],[-2.576075,57.682393],[-2.577922,57.680654],[-2.578547,57.679617],[-2.580003,57.679655],[-2.581098,57.678072],[-2.583743,57.677523],[-2.585178,57.677723],[-2.58601,57.678766],[-2.587347,57.67834],[-2.588985,57.678536],[-2.590725,57.678107],[-2.592656,57.678397],[-2.595092,57.67933],[-2.598278,57.682091],[-2.603259,57.680945],[-2.605406,57.681554],[-2.607494,57.681362],[-2.608296,57.680586],[-2.612398,57.679056],[-2.615603,57.679184],[-2.616393,57.679816],[-2.615327,57.681479],[-2.618807,57.681158],[-2.620615,57.680323],[-2.622063,57.680597],[-2.622835,57.681679],[-2.624485,57.680807],[-2.628695,57.680503],[-2.632428,57.681272],[-2.634105,57.680311],[-2.638225,57.68019],[-2.639946,57.68065],[-2.640576,57.681939],[-2.644045,57.681972],[-2.646276,57.682841],[-2.644615,57.683338],[-2.64866,57.68431],[-2.648654,57.685598],[-2.647414,57.686758],[-2.649685,57.687909],[-2.651341,57.687011],[-2.653433,57.68705],[-2.655839,57.686645],[-2.662174,57.686852],[-2.660949,57.688377],[-2.663178,57.689375],[-2.664841,57.689061],[-2.667551,57.690584],[-2.670061,57.689084],[-2.671189,57.68919],[-2.672526,57.687488],[-2.67458,57.686925],[-2.675901,57.685636],[-2.67761,57.686146],[-2.68071,57.684493],[-2.681743,57.682807],[-2.685665,57.683095],[-2.686762,57.683708],[-2.685511,57.685167],[-2.685848,57.686586],[-2.689581,57.686446],[-2.688549,57.685779],[-2.690609,57.684607],[-2.693068,57.685402],[-2.694019,57.684397],[-2.695892,57.685337],[-2.69713,57.685254],[-2.700191,57.686242],[-2.703057,57.685814],[-2.704823,57.686867],[-2.708126,57.687188],[-2.708398,57.688647],[-2.709565,57.688919],[-2.710214,57.690232],[-2.712902,57.690598],[-2.714193,57.69202],[-2.715362,57.692422],[-2.717769,57.6919],[-2.71844,57.690807],[-2.720559,57.689715],[-2.723496,57.689367],[-2.724702,57.688837],[-2.726586,57.687106],[-2.728447,57.686974],[-2.731892,57.686158],[-2.731505,57.685274],[-2.732068,57.68424],[-2.73494,57.684053],[-2.736229,57.683032],[-2.73848,57.681941],[-2.740186,57.681885],[-2.745868,57.682863],[-2.747515,57.68263],[-2.747998,57.684239],[-2.746759,57.686042],[-2.748414,57.687119],[-2.748298,57.688989],[-2.748879,57.690968],[-2.75357,57.690765],[-2.756624,57.690413],[-2.756548,57.691224],[-2.758303,57.691735],[-2.757711,57.694068],[-2.759295,57.693883],[-2.760283,57.692777],[-2.762503,57.693013],[-2.764728,57.692403],[-2.766907,57.692686],[-2.772033,57.692324],[-2.774325,57.693827],[-2.777871,57.692415],[-2.779908,57.692986],[-2.78151,57.69401],[-2.785747,57.694843],[-2.785619,57.695963],[-2.789353,57.697482],[-2.788078,57.699879],[-2.789841,57.699495],[-2.794311,57.700347],[-2.797504,57.696831],[-2.801546,57.695113],[-2.801921,57.691363],[-2.801525,57.679719],[-2.802327,57.673749],[-2.802917,57.672436],[-2.801571,57.67093],[-2.802796,57.669624],[-2.799898,57.668975],[-2.799831,57.667397],[-2.803168,57.665526],[-2.799957,57.663821],[-2.797551,57.662005],[-2.790805,57.661531],[-2.78875,57.658288],[-2.785986,57.655787],[-2.783206,57.654144],[-2.778268,57.653632],[-2.775652,57.651851],[-2.772407,57.650253],[-2.773795,57.648762],[-2.775882,57.648119],[-2.775557,57.645939],[-2.78,57.642566],[-2.782403,57.635269],[-2.785222,57.629307],[-2.787942,57.625237],[-2.797412,57.61892],[-2.802887,57.613109],[-2.805179,57.611514],[-2.810643,57.609936],[-2.792258,57.605069],[-2.782846,57.596948],[-2.780687,57.587993],[-2.778706,57.587236],[-2.775169,57.58469],[-2.77565,57.584131],[-2.759517,57.578699],[-2.75542,57.579809],[-2.752417,57.580171],[-2.748669,57.580118],[-2.747266,57.57967],[-2.748118,57.578337],[-2.748941,57.574515],[-2.746928,57.574166],[-2.748102,57.571479],[-2.748888,57.571658],[-2.749934,57.569952],[-2.752183,57.568981],[-2.749227,57.568334],[-2.749517,57.567559],[-2.742629,57.566605],[-2.740202,57.564838],[-2.736701,57.564287],[-2.734765,57.565016],[-2.729397,57.565882],[-2.726821,57.56523],[-2.719956,57.564214],[-2.717281,57.555766],[-2.717288,57.550622],[-2.716425,57.547266],[-2.711459,57.54368],[-2.715749,57.539441],[-2.714634,57.53772],[-2.712878,57.536563],[-2.712588,57.534781],[-2.711572,57.533926],[-2.711089,57.532257],[-2.707398,57.530192],[-2.703797,57.529807],[-2.701802,57.530509],[-2.700154,57.530378],[-2.69635,57.531692],[-2.697658,57.532343],[-2.698096,57.533771],[-2.696347,57.537208],[-2.694643,57.537919],[-2.68577,57.538986],[-2.677324,57.537116],[-2.67264,57.537024],[-2.668766,57.537642],[-2.664313,57.536617],[-2.663532,57.535992],[-2.664453,57.535099],[-2.667469,57.535753],[-2.669305,57.535035],[-2.668263,57.534215],[-2.662869,57.533999],[-2.658512,57.534842],[-2.655813,57.534953],[-2.652777,57.534393],[-2.651554,57.533501],[-2.649825,57.529555],[-2.650316,57.528877],[-2.654814,57.528035],[-2.656612,57.528631],[-2.658652,57.528462],[-2.660816,57.527335],[-2.660803,57.526768],[-2.667241,57.524576],[-2.670424,57.522418],[-2.678921,57.521007],[-2.68076,57.520583],[-2.681248,57.516773],[-2.68927,57.516725],[-2.692761,57.516381],[-2.691137,57.513556],[-2.692177,57.51232],[-2.693126,57.508869],[-2.695001,57.507849],[-2.697997,57.507943],[-2.700595,57.509654],[-2.703668,57.509538],[-2.708306,57.510991],[-2.717957,57.500953],[-2.723766,57.504439],[-2.7283,57.504583],[-2.732776,57.504112],[-2.73471,57.503636],[-2.736762,57.504006],[-2.741894,57.504021],[-2.742642,57.504645],[-2.743396,57.506511],[-2.744753,57.507656],[-2.749851,57.509339],[-2.753876,57.510174],[-2.759929,57.513759],[-2.760671,57.515408],[-2.75906,57.516593],[-2.75908,57.517822],[-2.757713,57.520467],[-2.758878,57.521845],[-2.760738,57.521512],[-2.763728,57.521806],[-2.765745,57.521435],[-2.772296,57.518342],[-2.775022,57.516123],[-2.778037,57.515446],[-2.779974,57.51553],[-2.781535,57.513745],[-2.782394,57.510036],[-2.786936,57.508161],[-2.788581,57.508273],[-2.791638,57.509608],[-2.79471,57.510505],[-2.79538,57.511105],[-2.800048,57.512669],[-2.802885,57.515201],[-2.806623,57.51689],[-2.80809,57.518549],[-2.809804,57.519649],[-2.811618,57.520053],[-2.815549,57.51966],[-2.817053,57.519878],[-2.818543,57.52287],[-2.81885,57.525343],[-2.818252,57.526308],[-2.818418,57.52828],[-2.819177,57.52936],[-2.820961,57.535081],[-2.823691,57.53557],[-2.826022,57.539162],[-2.836804,57.537883],[-2.846285,57.534677],[-2.851476,57.533798],[-2.859342,57.531652],[-2.86388,57.530071],[-2.866284,57.52965],[-2.868847,57.529633],[-2.883255,57.532933],[-2.88593,57.53237],[-2.889548,57.526282],[-2.886435,57.521884],[-2.909446,57.509141],[-2.914535,57.508104],[-2.91959,57.506283],[-2.921336,57.502303],[-2.920256,57.499843],[-2.916424,57.497017],[-2.916749,57.495018],[-2.928096,57.49501],[-2.937744,57.494311],[-2.939612,57.494468],[-2.948217,57.493951],[-2.95348,57.494041],[-2.962273,57.493628],[-2.967731,57.49509],[-2.970311,57.497274],[-2.972557,57.496693],[-2.971508,57.49559],[-2.972435,57.495265],[-2.971472,57.492924],[-2.972569,57.492532],[-2.971971,57.491304],[-2.973805,57.490502],[-2.976714,57.490114],[-2.976543,57.488877],[-2.97915,57.487183],[-2.980124,57.486012],[-2.983104,57.484448],[-2.984781,57.484595],[-2.986546,57.483039],[-2.986369,57.481116],[-2.987993,57.480607],[-2.986289,57.479096],[-2.985697,57.477793],[-2.989999,57.471863],[-2.99278,57.47087],[-2.993622,57.469323],[-2.996251,57.467171],[-2.998885,57.466601],[-3.000756,57.465475],[-3.001741,57.465396],[-3.003361,57.46411],[-3.006533,57.462462],[-3.011265,57.461899],[-3.012958,57.460553],[-3.013124,57.459613],[-3.010966,57.456098],[-3.01136,57.453978],[-3.012919,57.45239],[-3.014452,57.451594],[-3.017317,57.451076],[-3.019943,57.44951],[-3.016779,57.447619],[-3.010631,57.442875],[-3.000674,57.443623],[-2.998641,57.444389],[-2.996466,57.443889],[-2.995085,57.442283],[-2.991371,57.439709],[-2.989692,57.440675],[-2.987293,57.440204],[-2.984223,57.440594],[-2.98384,57.441383],[-2.981669,57.44132],[-2.980079,57.442344],[-2.979221,57.442159],[-2.975468,57.442575],[-2.972226,57.441302],[-2.969111,57.441642],[-2.965208,57.440455],[-2.961856,57.440303],[-2.960481,57.440497],[-2.959137,57.439414],[-2.957658,57.440078],[-2.955426,57.439523],[-2.955485,57.438522],[-2.957742,57.4376],[-2.960962,57.437911],[-2.96273,57.436944],[-2.962405,57.436277],[-2.964179,57.435539],[-2.965247,57.435679],[-2.967818,57.434063],[-2.970047,57.433718],[-2.971566,57.432015],[-2.973884,57.431297],[-2.975404,57.429694],[-2.978491,57.428999],[-2.980081,57.427729],[-2.983983,57.425948],[-2.98978,57.424777],[-2.990952,57.423831],[-2.992909,57.423125],[-2.995515,57.422629],[-2.997247,57.422744],[-3.00681,57.420646],[-3.017975,57.412973],[-3.018931,57.408146],[-3.021193,57.407198],[-3.024049,57.405158],[-3.023039,57.404757],[-3.011872,57.40266],[-3.007909,57.402899],[-3.006332,57.403347],[-3.002517,57.403485],[-2.99989,57.399692],[-2.997891,57.398688],[-2.995708,57.398073],[-2.993299,57.397896],[-2.989228,57.398691],[-2.988544,57.397824],[-2.985284,57.395712],[-2.984818,57.394511],[-2.985619,57.393476],[-2.983567,57.392529],[-2.982012,57.390521],[-2.979407,57.388701],[-2.976797,57.387609],[-2.975873,57.386806],[-2.96778,57.383464],[-2.962484,57.381941],[-2.961211,57.380954],[-2.957089,57.379476],[-2.954485,57.377816],[-2.956909,57.375763],[-2.960499,57.374105],[-2.968997,57.371273],[-2.974798,57.369953],[-2.979613,57.364984],[-2.983532,57.363282],[-2.977735,57.356667],[-2.972591,57.354384],[-2.969877,57.351369],[-2.970263,57.342068],[-2.97358,57.338714],[-2.972178,57.32808],[-2.968584,57.32659],[-2.965616,57.322004],[-2.962716,57.319771],[-2.95458,57.318443],[-2.951928,57.318589],[-2.952814,57.316778],[-2.954396,57.315802],[-2.957622,57.314668],[-2.959141,57.314536],[-2.962261,57.313153],[-2.976684,57.298877],[-2.977055,57.297221],[-2.973017,57.288512],[-2.976455,57.284892],[-2.983281,57.281146],[-2.983078,57.280389],[-2.984587,57.278495],[-2.984404,57.277746],[-2.988469,57.277934],[-2.990056,57.27401],[-2.998332,57.271591],[-3.006486,57.270187],[-3.010676,57.268164],[-3.01828,57.266422],[-3.018925,57.265761],[-3.019069,57.261659],[-3.025218,57.262827],[-3.026933,57.263675],[-3.029736,57.26698],[-3.029604,57.268482],[-3.030645,57.270445],[-3.03021,57.270902],[-3.031307,57.272474],[-3.034814,57.273923],[-3.037678,57.27434],[-3.038994,57.275129],[-3.04087,57.277265],[-3.043367,57.278178],[-3.046048,57.277945],[-3.047634,57.276845],[-3.050036,57.276479],[-3.053854,57.275418],[-3.055663,57.276045],[-3.060201,57.276676],[-3.064677,57.276621],[-3.067123,57.27806],[-3.066064,57.278989],[-3.067322,57.280632],[-3.069219,57.28053],[-3.07084,57.281527],[-3.073714,57.281974],[-3.076887,57.280986],[-3.078164,57.281258],[-3.081196,57.281138],[-3.082012,57.281521],[-3.083857,57.281088],[-3.088594,57.281128],[-3.092394,57.284266],[-3.095238,57.282849],[-3.102214,57.281207],[-3.104254,57.278435],[-3.108651,57.277925],[-3.110244,57.277129],[-3.115203,57.280418],[-3.119189,57.281663],[-3.122116,57.280272],[-3.126954,57.278755],[-3.128449,57.2761],[-3.136933,57.27774],[-3.141032,57.27808],[-3.143233,57.277916],[-3.146251,57.272571],[-3.152793,57.268298],[-3.157033,57.267086],[-3.159781,57.264051],[-3.164913,57.262239],[-3.184856,57.263472],[-3.188421,57.262683],[-3.192823,57.258352],[-3.194841,57.256918],[-3.19645,57.254675],[-3.199607,57.25438],[-3.201565,57.254698],[-3.205632,57.256164],[-3.208524,57.256122],[-3.213248,57.252326],[-3.216976,57.250291],[-3.218559,57.249786],[-3.225158,57.243137],[-3.225991,57.241763],[-3.22426,57.238771],[-3.229497,57.237588],[-3.235629,57.232411],[-3.236477,57.229789],[-3.238717,57.227687],[-3.236478,57.225369],[-3.235372,57.223255],[-3.243625,57.220995],[-3.245188,57.219552],[-3.246305,57.215196],[-3.248833,57.213082],[-3.247408,57.210356],[-3.239909,57.205705],[-3.242571,57.202144],[-3.247716,57.200588],[-3.25532,57.199569],[-3.258092,57.199555],[-3.264384,57.20326],[-3.265773,57.203215],[-3.275147,57.200492],[-3.277463,57.197333],[-3.280139,57.191215],[-3.284479,57.193237],[-3.290377,57.19367],[-3.296045,57.19367],[-3.297578,57.193035],[-3.307931,57.192837],[-3.313852,57.192281],[-3.322,57.188755],[-3.325113,57.188578],[-3.327844,57.188837],[-3.344838,57.182035],[-3.353523,57.178159],[-3.354992,57.176261],[-3.355398,57.174941],[-3.357719,57.173285],[-3.35828,57.171653],[-3.356708,57.166679],[-3.354914,57.164664],[-3.352839,57.159911],[-3.344617,57.157942],[-3.342365,57.157162],[-3.341757,57.156374],[-3.342322,57.155294],[-3.348964,57.151804],[-3.349375,57.148121],[-3.333523,57.142334],[-3.332883,57.139709],[-3.333801,57.138338],[-3.335521,57.137259],[-3.327386,57.134552],[-3.324616,57.132398],[-3.322499,57.131423],[-3.322479,57.130408],[-3.324204,57.125044],[-3.326641,57.123437],[-3.327847,57.123222],[-3.328169,57.118134],[-3.329988,57.116363],[-3.335215,57.112691],[-3.336342,57.110981],[-3.340884,57.110331],[-3.341583,57.10978],[-3.345531,57.110079],[-3.348345,57.109361],[-3.350575,57.109158],[-3.353209,57.109399],[-3.355969,57.110146],[-3.358085,57.108636],[-3.360958,57.1075],[-3.3638,57.104415],[-3.361833,57.10347],[-3.365121,57.102851],[-3.367519,57.101634],[-3.368674,57.100283],[-3.374921,57.09981],[-3.377145,57.098806],[-3.37814,57.097798],[-3.382483,57.097638],[-3.384395,57.098453],[-3.396982,57.100873],[-3.401919,57.099821],[-3.403311,57.098642],[-3.410212,57.098255],[-3.412608,57.099189],[-3.415578,57.099793],[-3.415934,57.10177],[-3.415546,57.102857],[-3.417017,57.105275],[-3.422733,57.105368],[-3.425755,57.104974],[-3.426912,57.104364],[-3.431799,57.103082],[-3.433114,57.099949],[-3.434468,57.0993],[-3.43846,57.098603],[-3.441365,57.097519],[-3.44305,57.095222],[-3.44796,57.092474],[-3.449122,57.092214],[-3.45461,57.091818],[-3.456154,57.091414],[-3.459741,57.091776],[-3.462686,57.092779],[-3.46614,57.09229],[-3.467566,57.091613],[-3.473776,57.091306],[-3.478183,57.091946],[-3.479611,57.093816],[-3.486282,57.094519],[-3.487232,57.093712],[-3.487101,57.092088],[-3.48793,57.09095],[-3.489808,57.090672],[-3.490513,57.089738],[-3.493279,57.088555],[-3.493728,57.087813],[-3.497582,57.088235],[-3.49937,57.087557],[-3.504958,57.088627],[-3.507306,57.088549],[-3.516814,57.086372],[-3.520685,57.088028],[-3.523557,57.088236],[-3.526105,57.087809],[-3.531065,57.090431],[-3.538433,57.090821],[-3.538671,57.089394],[-3.540819,57.086079],[-3.542395,57.085081],[-3.544171,57.084524],[-3.54787,57.084205],[-3.55263,57.082618],[-3.55898,57.082939],[-3.560083,57.083483],[-3.560752,57.085851],[-3.559174,57.088345],[-3.558134,57.089127],[-3.557242,57.092076],[-3.557913,57.092714],[-3.557262,57.093908],[-3.557026,57.096157],[-3.557728,57.096382],[-3.561991,57.096275],[-3.564209,57.095255],[-3.569334,57.095631],[-3.572158,57.094706],[-3.576283,57.094084],[-3.578683,57.092706],[-3.583019,57.091627],[-3.588597,57.087953],[-3.589763,57.084911],[-3.593257,57.08404],[-3.596525,57.084465],[-3.604777,57.086602],[-3.607062,57.086384],[-3.610756,57.085388],[-3.615267,57.086669],[-3.616221,57.088485],[-3.620358,57.089883],[-3.621738,57.088589],[-3.623659,57.087616],[-3.629628,57.087691],[-3.633268,57.085654],[-3.63484,57.086136],[-3.638823,57.086282],[-3.640803,57.087397],[-3.6443,57.087733],[-3.646481,57.088342],[-3.647891,57.084223],[-3.651485,57.082664],[-3.652682,57.081388],[-3.653744,57.080969],[-3.653818,57.078197],[-3.654638,57.077705],[-3.652147,57.075869],[-3.654871,57.073506],[-3.656943,57.068537],[-3.660602,57.068848],[-3.664913,57.068441],[-3.669107,57.070366],[-3.666686,57.07357],[-3.666789,57.074593],[-3.666038,57.075672],[-3.667161,57.076259],[-3.673356,57.077717],[-3.675981,57.07942],[-3.677114,57.081669],[-3.674851,57.083443],[-3.673835,57.084871],[-3.678241,57.087261],[-3.679769,57.08839],[-3.680303,57.0896],[-3.681799,57.091121],[-3.68333,57.091765],[-3.684031,57.093203],[-3.683265,57.093972],[-3.683696,57.095235],[-3.684727,57.093988],[-3.686212,57.093263],[-3.695312,57.091402],[-3.697629,57.090279],[-3.704581,57.08982],[-3.706166,57.089296],[-3.709324,57.087447],[-3.711853,57.082884],[-3.711844,57.081622],[-3.714891,57.078988],[-3.720086,57.079663],[-3.726403,57.079603],[-3.727784,57.078443],[-3.730058,57.078029],[-3.730265,57.076611],[-3.735185,57.075636],[-3.742022,57.076134],[-3.74605,57.075853],[-3.749733,57.076283],[-3.751231,57.074995],[-3.751833,57.072704],[-3.753367,57.071663],[-3.755745,57.071895],[-3.758064,57.069306],[-3.756301,57.066375],[-3.753883,57.064234],[-3.752468,57.061505],[-3.749767,57.05966],[-3.748329,57.059065],[-3.747101,57.057667],[-3.744048,57.05744],[-3.743271,57.057056],[-3.737494,57.057104],[-3.7346,57.056385],[-3.73244,57.056743],[-3.74051,57.050198],[-3.742104,57.048325],[-3.744574,57.0467],[-3.74983,57.044709],[-3.751081,57.043276],[-3.751017,57.042612],[-3.753331,57.041345],[-3.75364,57.040392],[-3.755768,57.039374],[-3.757391,57.037797],[-3.755711,57.036949],[-3.753484,57.03411],[-3.754116,57.033],[-3.753287,57.031309],[-3.749727,57.026215],[-3.749638,57.020291],[-3.745527,57.017999],[-3.744396,57.016712],[-3.746818,57.013736],[-3.747985,57.010516],[-3.747746,57.008422],[-3.7487,57.005232],[-3.747986,57.003881],[-3.749204,57.001937],[-3.748088,57.000973],[-3.747841,56.996583],[-3.749038,56.995609],[-3.74823,56.993109],[-3.752879,56.989576],[-3.758146,56.987143],[-3.757724,56.978883],[-3.758426,56.97789],[-3.758302,56.976674],[-3.760391,56.974385],[-3.761899,56.973577],[-3.767289,56.972738],[-3.769818,56.971942],[-3.772094,56.969808],[-3.771928,56.96857],[-3.777162,56.966551],[-3.780876,56.966489],[-3.784172,56.96438],[-3.787843,56.963231],[-3.789288,56.960609],[-3.789828,56.958324],[-3.791294,56.956956],[-3.791679,56.953032],[-3.790971,56.951978],[-3.793147,56.948496],[-3.797607,56.946711],[-3.799558,56.944212],[-3.800654,56.941029],[-3.800106,56.938701],[-3.801646,56.93588],[-3.798256,56.932034],[-3.792336,56.92768],[-3.790861,56.925343],[-3.787944,56.923624],[-3.783498,56.923081],[-3.781893,56.923189],[-3.774596,56.925557],[-3.767751,56.928502],[-3.765785,56.930013],[-3.763847,56.930718],[-3.760572,56.931326],[-3.753963,56.931963],[-3.746527,56.933572],[-3.740687,56.933608],[-3.734618,56.932111],[-3.732809,56.93118],[-3.731048,56.928473],[-3.728096,56.925759],[-3.725218,56.918418],[-3.714533,56.917896],[-3.709223,56.916567],[-3.70888,56.916068],[-3.710218,56.914783],[-3.708699,56.914611],[-3.704891,56.915575],[-3.698106,56.915757],[-3.696494,56.916426],[-3.692306,56.91589],[-3.6885,56.916377],[-3.683552,56.916116],[-3.682935,56.917921],[-3.683368,56.919321],[-3.682954,56.921065],[-3.676023,56.925323],[-3.677259,56.926524],[-3.67588,56.929826],[-3.67628,56.931618],[-3.675471,56.932442],[-3.671813,56.932415],[-3.667518,56.931362],[-3.664212,56.931123],[-3.661728,56.932536],[-3.658062,56.933065],[-3.654735,56.932898],[-3.654287,56.932437],[-3.655424,56.931209],[-3.654042,56.9293],[-3.650789,56.928031],[-3.649806,56.92715],[-3.650311,56.925387],[-3.650138,56.923704],[-3.645821,56.923043],[-3.640913,56.923332],[-3.639231,56.923951],[-3.637694,56.925611],[-3.634156,56.924912],[-3.631784,56.925356],[-3.629763,56.924965],[-3.62771,56.924996],[-3.626531,56.925456],[-3.6182,56.926215],[-3.615114,56.928169],[-3.613319,56.928651],[-3.610688,56.92996],[-3.602646,56.931151],[-3.599667,56.930834],[-3.594263,56.931281],[-3.592499,56.930777],[-3.589734,56.931244],[-3.584224,56.931139],[-3.582736,56.930924],[-3.578791,56.929536],[-3.579057,56.927089],[-3.576778,56.926031],[-3.578466,56.923197],[-3.577995,56.920993],[-3.573839,56.916324],[-3.572243,56.910989],[-3.569017,56.910248],[-3.565855,56.90748],[-3.565293,56.906207],[-3.56306,56.904465],[-3.562679,56.902614],[-3.558718,56.900345],[-3.560002,56.899265],[-3.560509,56.897246],[-3.561672,56.896378],[-3.563815,56.895619],[-3.568174,56.895039],[-3.56859,56.892235],[-3.567879,56.890739],[-3.565304,56.888237],[-3.563911,56.885725],[-3.560782,56.884103],[-3.556203,56.885476],[-3.549447,56.885834],[-3.54555,56.887041],[-3.54318,56.889272],[-3.540879,56.889799],[-3.539173,56.891441],[-3.537656,56.892255],[-3.52925,56.883607],[-3.526914,56.884889],[-3.524753,56.886816],[-3.521859,56.887305],[-3.518862,56.887467],[-3.515112,56.88586],[-3.512939,56.887737],[-3.510415,56.888235],[-3.502541,56.887112],[-3.499197,56.886007],[-3.499344,56.884536],[-3.498622,56.882092],[-3.496489,56.8817],[-3.491788,56.881504],[-3.48985,56.876716],[-3.482475,56.874661],[-3.480484,56.87473],[-3.477416,56.874128],[-3.475405,56.874089],[-3.469628,56.874692],[-3.465707,56.872811],[-3.460021,56.874468],[-3.457199,56.874483],[-3.455826,56.875662],[-3.453334,56.876365],[-3.449397,56.876168],[-3.446313,56.875557],[-3.446149,56.877041],[-3.444789,56.878998],[-3.44658,56.879705],[-3.445662,56.880569],[-3.443532,56.88023],[-3.441791,56.882325],[-3.439291,56.88389],[-3.43804,56.885508],[-3.434804,56.885856],[-3.43332,56.886335],[-3.429832,56.886546],[-3.42957,56.884631],[-3.425932,56.883693],[-3.42169,56.881743],[-3.421287,56.879573],[-3.410536,56.880818],[-3.405962,56.882666],[-3.404962,56.884021],[-3.401152,56.882415],[-3.400495,56.881757],[-3.397476,56.881095],[-3.396682,56.880264],[-3.39454,56.879371],[-3.387468,56.879832],[-3.382677,56.878973],[-3.381176,56.876977],[-3.380041,56.877134],[-3.375425,56.874983],[-3.372138,56.874615],[-3.369809,56.875081],[-3.366724,56.877105],[-3.366313,56.87887],[-3.367944,56.881058],[-3.367319,56.881707],[-3.362956,56.883341],[-3.360357,56.884092],[-3.357767,56.883716],[-3.353639,56.883927],[-3.353151,56.884732],[-3.348735,56.886972],[-3.348679,56.889753],[-3.346336,56.890322],[-3.341927,56.892346],[-3.33859,56.894269],[-3.337062,56.895839],[-3.332823,56.895979],[-3.328815,56.895455],[-3.322951,56.895823],[-3.321618,56.895496],[-3.315407,56.897219],[-3.311145,56.897174],[-3.309297,56.899022],[-3.303625,56.899494],[-3.302169,56.899878],[-3.298922,56.902135],[-3.297873,56.904778],[-3.291614,56.905665],[-3.288603,56.906923],[-3.284855,56.907267],[-3.286198,56.909315],[-3.283365,56.912664],[-3.283998,56.914602],[-3.285245,56.91529],[-3.286927,56.917856],[-3.288005,56.921016],[-3.291098,56.925445],[-3.289193,56.927351],[-3.284247,56.928557],[-3.278459,56.927713],[-3.278131,56.925542],[-3.276464,56.924625],[-3.27194,56.92349],[-3.272372,56.922165],[-3.269937,56.919876],[-3.269167,56.920176],[-3.265895,56.919858],[-3.263321,56.920742],[-3.261597,56.921726],[-3.256333,56.919811],[-3.248762,56.919132],[-3.243939,56.918345],[-3.238254,56.91806],[-3.235121,56.918208],[-3.232551,56.917716],[-3.22801,56.916503],[-3.224258,56.913769],[-3.219614,56.913145],[-3.21222,56.910759],[-3.203523,56.908961],[-3.19945,56.90613],[-3.198512,56.905825],[-3.191486,56.904585],[-3.188872,56.904749],[-3.186421,56.904103],[-3.184137,56.905598],[-3.179873,56.905773],[-3.179223,56.904162],[-3.177346,56.902962],[-3.176989,56.902063],[-3.173916,56.900398],[-3.173515,56.905662],[-3.17255,56.906322],[-3.169056,56.907734],[-3.167191,56.907985],[-3.165134,56.907299],[-3.160447,56.906822],[-3.157511,56.905326],[-3.153624,56.904967],[-3.147612,56.903028],[-3.144225,56.900197],[-3.139132,56.897638],[-3.13905,56.893601],[-3.134777,56.89019],[-3.130635,56.888363],[-3.129083,56.888629],[-3.12452,56.888333],[-3.120338,56.888447],[-3.117663,56.890093],[-3.116603,56.891975],[-3.115767,56.892589],[-3.113206,56.893385],[-3.108813,56.893873],[-3.106754,56.895036],[-3.108989,56.897591],[-3.109343,56.900422],[-3.110705,56.901232],[-3.112357,56.903207],[-3.110187,56.905603],[-3.108842,56.907892],[-3.110315,56.909361],[-3.110887,56.911212],[-3.110774,56.918732],[-3.10891,56.920959],[-3.094615,56.932346],[-3.093905,56.934221],[-3.098652,56.945324],[-3.097747,56.945835],[-3.095827,56.945686],[-3.095644,56.946734],[-3.094255,56.947555],[-3.093888,56.95019],[-3.089918,56.949924],[-3.08588,56.950709],[-3.083636,56.950697],[-3.083571,56.952153],[-3.08244,56.954822],[-3.08317,56.958432],[-3.071844,56.960311],[-3.072098,56.961124],[-3.069508,56.961694],[-3.066934,56.960534],[-3.063244,56.962017],[-3.059757,56.962891],[-3.058378,56.964129],[-3.048039,56.963443],[-3.046038,56.965104],[-3.042629,56.966134],[-3.039758,56.966073],[-3.038927,56.96696],[-3.035597,56.966992],[-3.029758,56.969956],[-3.028158,56.970072],[-3.02634,56.972773],[-3.023851,56.971091],[-3.019118,56.969719],[-3.018591,56.969126],[-3.00727,56.966815],[-3.001417,56.968429],[-2.998682,56.970702],[-2.994121,56.968079],[-2.981802,56.968077],[-2.97614,56.968566],[-2.973637,56.969066],[-2.973646,56.969736],[-2.967474,56.969581],[-2.954079,56.966801],[-2.947138,56.968385],[-2.945701,56.97304],[-2.944675,56.973771],[-2.930488,56.972162],[-2.924077,56.972349],[-2.916237,56.975591],[-2.910245,56.975787],[-2.912959,56.981636],[-2.909599,56.983015],[-2.905375,56.983239],[-2.899791,56.985727],[-2.892429,56.986804],[-2.883918,56.985629],[-2.877738,56.98243],[-2.874571,56.980345],[-2.866675,56.980441],[-2.86463,56.979502],[-2.861383,56.978874],[-2.858269,56.975495],[-2.85798,56.974347],[-2.851088,56.972566],[-2.84084,56.973664],[-2.837063,56.9758],[-2.833166,56.977007],[-2.8337,56.972903],[-2.830328,56.969974],[-2.828271,56.967356],[-2.827583,56.965581],[-2.826136,56.964486],[-2.824509,56.961936],[-2.817327,56.962145],[-2.809126,56.960128],[-2.80607,56.959842],[-2.802623,56.958238],[-2.790542,56.957264],[-2.787253,56.957667],[-2.783232,56.956812],[-2.772842,56.959693],[-2.768198,56.960161],[-2.76567,56.959961],[-2.752676,56.953702],[-2.749021,56.950162],[-2.74622,56.948598],[-2.743823,56.948751],[-2.741378,56.949376],[-2.74002,56.948486],[-2.735818,56.943768],[-2.734586,56.941758],[-2.73454,56.939001],[-2.72863,56.933385],[-2.728742,56.930725],[-2.724687,56.92583],[-2.721447,56.924766],[-2.718863,56.923245],[-2.713614,56.924501],[-2.71031,56.924435],[-2.707179,56.922588],[-2.700931,56.921406],[-2.698854,56.920582],[-2.695349,56.918482],[-2.69283,56.917714],[-2.692477,56.916836],[-2.689607,56.916192],[-2.686753,56.915066],[-2.684435,56.912694],[-2.681288,56.910344],[-2.679954,56.908739],[-2.681455,56.907293],[-2.678736,56.903193],[-2.680017,56.900469],[-2.682399,56.898322],[-2.680579,56.896616],[-2.679569,56.894327],[-2.681153,56.891174],[-2.681151,56.888348],[-2.680637,56.887628],[-2.678105,56.888711],[-2.669307,56.890492],[-2.662419,56.888948],[-2.66115,56.885428],[-2.662247,56.881106],[-2.661839,56.879837],[-2.663021,56.868754],[-2.663841,56.867335],[-2.665116,56.861062],[-2.665971,56.859355],[-2.667811,56.858822],[-2.671735,56.858693],[-2.66777,56.850253],[-2.668206,56.849666],[-2.671114,56.848635],[-2.671772,56.847385],[-2.671267,56.846369],[-2.667453,56.845135],[-2.670148,56.843319],[-2.670556,56.842281],[-2.66595,56.838139],[-2.666491,56.836481],[-2.666172,56.834657],[-2.66438,56.833145],[-2.658417,56.829881],[-2.657727,56.82859],[-2.65097,56.822597],[-2.649827,56.815436],[-2.650683,56.813859],[-2.652906,56.811801],[-2.652787,56.810422],[-2.650847,56.810065],[-2.645171,56.81194],[-2.643795,56.812129],[-2.633666,56.80998],[-2.631611,56.809077],[-2.628501,56.8041],[-2.626209,56.799022],[-2.623549,56.796824],[-2.617183,56.793007],[-2.615864,56.78773],[-2.616848,56.784025],[-2.615819,56.783294],[-2.612024,56.783199],[-2.605386,56.782498],[-2.603572,56.782656],[-2.598188,56.784116],[-2.594727,56.78715],[-2.591512,56.78831],[-2.589416,56.788242],[-2.585747,56.787456],[-2.581623,56.786154],[-2.573617,56.78617],[-2.570682,56.785496],[-2.566884,56.785883],[-2.558566,56.786999],[-2.556321,56.786864],[-2.551301,56.78496],[-2.547951,56.782391],[-2.54415,56.781529],[-2.5399,56.781936],[-2.532056,56.784892],[-2.529411,56.785035],[-2.521422,56.781723],[-2.518754,56.779676],[-2.515802,56.775764],[-2.513498,56.774651],[-2.511084,56.774742],[-2.506555,56.773744],[-2.505612,56.773228],[-2.502698,56.770105],[-2.501247,56.769462],[-2.491984,56.766206],[-2.483817,56.765075],[-2.480379,56.763661],[-2.47796,56.761588],[-2.47644,56.757689],[-2.474398,56.754908],[-2.472076,56.753376],[-2.466771,56.751543],[-2.463442,56.748179],[-2.461765,56.747453],[-2.459431,56.747129],[-2.456889,56.747526],[-2.454203,56.748698],[-2.451802,56.750496],[-2.449574,56.751389],[-2.444918,56.751678],[-2.44407,56.75187],[-2.439015,56.75118],[-2.436146,56.75126],[-2.434017,56.752141],[-2.431963,56.752355],[-2.429831,56.753745],[-2.42814,56.753406],[-2.424542,56.756558],[-2.421861,56.757361],[-2.419661,56.758756],[-2.413416,56.764966],[-2.408294,56.769085],[-2.399409,56.774267],[-2.396182,56.775213],[-2.394884,56.774772],[-2.391418,56.775528],[-2.389326,56.775372],[-2.387503,56.775912],[-2.38548,56.775893],[-2.384154,56.774801],[-2.380726,56.773806],[-2.377747,56.773894],[-2.375845,56.773622],[-2.376192,56.775013],[-2.375793,56.777115],[-2.373332,56.778626],[-2.370788,56.779091],[-2.368794,56.780627],[-2.367806,56.782319],[-2.364737,56.783608],[-2.361524,56.783518],[-2.358263,56.787191],[-2.357221,56.787469],[-2.354825,56.78725],[-2.35002,56.789032],[-2.347224,56.790264],[-2.337693,56.792336],[-2.336057,56.79345],[-2.336027,56.794166],[-2.33185,56.794722],[-2.326341,56.795976],[-2.319024,56.800372],[-2.316118,56.801574],[-2.314451,56.802841],[-2.313937,56.804239],[-2.311024,56.805453],[-2.308196,56.807116],[-2.307526,56.809128],[-2.304079,56.811736],[-2.301581,56.815431],[-2.295882,56.819172],[-2.293379,56.823143],[-2.290706,56.824374],[-2.291392,56.825833],[-2.28957,56.827643],[-2.282914,56.827887],[-2.2773,56.829659],[-2.277693,56.831557],[-2.275863,56.832591],[-2.27481,56.834569],[-2.2754,56.84122],[-2.273331,56.843576],[-2.2711,56.844308],[-2.269906,56.843419],[-2.264304,56.844596],[-2.262155,56.844534],[-2.259173,56.845863],[-2.256599,56.847396],[-2.254426,56.849806],[-2.25248,56.85123],[-2.250658,56.854482],[-2.246853,56.85621],[-2.244837,56.856729],[-2.244058,56.858561],[-2.242733,56.858854],[-2.242491,56.860409],[-2.2405,56.860462],[-2.239095,56.859645],[-2.237224,56.861491],[-2.236521,56.862724],[-2.234899,56.86241],[-2.233255,56.862778],[-2.231455,56.865256],[-2.230941,56.866979],[-2.229962,56.867606],[-2.230053,56.868585],[-2.226793,56.869302],[-2.227164,56.870017],[-2.224539,56.872748],[-2.225186,56.873379],[-2.22433,56.874511],[-2.220478,56.875888],[-2.217457,56.879019],[-2.217147,56.880415],[-2.216095,56.881816],[-2.214659,56.881901],[-2.213677,56.884147],[-2.214857,56.884996],[-2.215924,56.884535],[-2.217444,56.885188],[-2.219247,56.886605],[-2.217873,56.88802],[-2.215736,56.887957],[-2.215856,56.889451],[-2.214141,56.89026],[-2.213074,56.891278],[-2.213216,56.892989],[-2.215686,56.893017],[-2.216448,56.894631],[-2.215105,56.895415],[-2.210061,56.896742],[-2.209878,56.89719],[-2.20678,56.8976],[-2.206845,56.898824],[-2.208081,56.899625],[-2.207029,56.900402],[-2.20524,56.900898],[-2.204683,56.900144],[-2.203152,56.900259],[-2.203335,56.90234],[-2.204967,56.903042],[-2.205081,56.904739],[-2.203463,56.905476],[-2.203514,56.907972],[-2.20163,56.907658],[-2.19774,56.907651],[-2.196543,56.908893],[-2.197155,56.910877],[-2.197206,56.912943],[-2.198195,56.913737],[-2.197255,56.914428],[-2.200196,56.918947],[-2.200608,56.9209],[-2.199797,56.921711],[-2.201069,56.922616],[-2.200095,56.923077],[-2.199269,56.924626],[-2.197095,56.925741],[-2.196684,56.927409],[-2.198,56.928252],[-2.198057,56.929493],[-2.197114,56.930604],[-2.197811,56.931736],[-2.199898,56.931937],[-2.202215,56.933269],[-2.199835,56.934427],[-2.198065,56.934126],[-2.198127,56.935405],[-2.199774,56.936483],[-2.199948,56.937293],[-2.198778,56.939063],[-2.195765,56.939715],[-2.196344,56.940366],[-2.195458,56.942377],[-2.197363,56.943304],[-2.199167,56.943442],[-2.199355,56.944762],[-2.198348,56.945479],[-2.195377,56.945268],[-2.196,56.946683],[-2.197973,56.946432],[-2.200441,56.9478],[-2.199784,56.949315],[-2.197905,56.950139],[-2.19638,56.949741],[-2.19556,56.950689],[-2.193833,56.950067],[-2.191781,56.950319],[-2.191441,56.951525],[-2.195654,56.952242],[-2.197249,56.953109],[-2.199314,56.953114],[-2.200668,56.954442],[-2.19984,56.955477],[-2.197586,56.956732],[-2.196437,56.956807],[-2.194537,56.958293],[-2.195577,56.959163],[-2.201275,56.957923],[-2.203376,56.958601],[-2.203602,56.96033],[-2.201776,56.960607],[-2.201789,56.961365],[-2.20499,56.961472],[-2.206474,56.963468],[-2.206443,56.9667],[-2.204208,56.969184],[-2.199764,56.971273],[-2.196638,56.973812],[-2.192443,56.975146],[-2.190199,56.976553],[-2.188044,56.976435],[-2.188507,56.977572],[-2.187496,56.978676],[-2.184178,56.979018],[-2.182279,56.97863],[-2.178435,56.979164],[-2.180654,56.979928],[-2.181666,56.980763],[-2.182003,56.982242],[-2.180607,56.983404],[-2.181653,56.984542],[-2.1822,56.985998],[-2.181051,56.98778],[-2.179925,56.988495],[-2.179283,56.989913],[-2.179603,56.991202],[-2.176371,56.993575],[-2.177055,56.994522],[-2.175103,56.997282],[-2.172694,56.997888],[-2.169527,56.999218],[-2.170653,56.999493],[-2.170417,57.000493],[-2.168615,57.001438],[-2.169132,57.002225],[-2.168083,57.002882],[-2.168111,57.003855],[-2.169104,57.005494],[-2.167859,57.006054],[-2.168309,57.007319],[-2.167902,57.009104],[-2.16687,57.009519],[-2.163393,57.009062],[-2.161146,57.009719],[-2.161739,57.012043],[-2.163229,57.012497],[-2.16403,57.013719],[-2.162988,57.014471],[-2.162845,57.015482],[-2.161632,57.016182],[-2.161292,57.018076],[-2.158332,57.019069],[-2.155376,57.02077],[-2.15359,57.020705],[-2.14994,57.022398],[-2.147704,57.023696],[-2.146247,57.025103],[-2.147181,57.026592],[-2.145514,57.026775],[-2.146001,57.027884],[-2.144602,57.029159],[-2.142857,57.0293],[-2.141963,57.030911],[-2.143409,57.033059],[-2.141002,57.032569],[-2.137308,57.032594],[-2.135858,57.033439],[-2.135464,57.034394],[-2.133614,57.035114],[-2.13413,57.036512],[-2.131653,57.036146],[-2.130737,57.03718],[-2.132609,57.038407],[-2.129325,57.038973],[-2.12779,57.040918],[-2.124981,57.04219],[-2.124704,57.043406],[-2.12302,57.042762],[-2.120808,57.043507],[-2.121831,57.045234],[-2.120029,57.046238],[-2.12153,57.047259],[-2.123177,57.047777],[-2.121418,57.048598],[-2.120589,57.049672],[-2.116345,57.050767],[-2.116814,57.051506],[-2.115626,57.052691],[-2.111135,57.053641],[-2.111059,57.057078],[-2.107796,57.056697],[-2.105516,57.058445],[-2.104929,57.05961],[-2.106329,57.060203],[-2.107486,57.061339],[-2.107073,57.062006],[-2.105202,57.062225],[-2.105877,57.063526],[-2.103484,57.06385],[-2.103614,57.064606],[-2.101567,57.064612],[-2.098717,57.065132],[-2.099143,57.066177],[-2.097064,57.065905],[-2.092174,57.067983],[-2.094145,57.068507],[-2.093035,57.069837],[-2.092569,57.072701],[-2.093931,57.073463],[-2.095667,57.073162],[-2.096214,57.073973],[-2.09417,57.074944],[-2.092799,57.076128],[-2.093335,57.077482],[-2.091854,57.078091],[-2.089502,57.078444],[-2.089684,57.079221],[-2.091695,57.079935],[-2.091131,57.080837],[-2.089421,57.081504],[-2.087244,57.083501],[-2.087424,57.08432],[-2.085248,57.085856],[-2.088966,57.087045],[-2.097811,57.08833],[-2.118687,57.090421],[-2.118747,57.103773],[-2.121985,57.108442],[-2.121072,57.113642],[-2.124584,57.113631],[-2.123045,57.114983],[-2.124035,57.117378],[-2.126075,57.118411],[-2.135941,57.117477],[-2.143351,57.117303],[-2.145071,57.117],[-2.149659,57.114756],[-2.160193,57.112833],[-2.165696,57.114167],[-2.171929,57.114583],[-2.174222,57.113524],[-2.175415,57.112473],[-2.176434,57.109464],[-2.178886,57.107146],[-2.181495,57.106936],[-2.182256,57.107595],[-2.184724,57.108266],[-2.18851,57.108049],[-2.189823,57.107478],[-2.190961,57.105114],[-2.192838,57.104469],[-2.195892,57.104079],[-2.200365,57.105039],[-2.202107,57.104861],[-2.209693,57.102594],[-2.210317,57.101372],[-2.215614,57.100391],[-2.218526,57.101771],[-2.221948,57.101654],[-2.226004,57.099513],[-2.229276,57.096902],[-2.229885,57.095972],[-2.231927,57.094989],[-2.235233,57.094304],[-2.237536,57.094388],[-2.245907,57.096041],[-2.2542,57.095933],[-2.259378,57.095215],[-2.261023,57.093777],[-2.25982,57.087848],[-2.260617,57.085793],[-2.269817,57.079474],[-2.27355,57.078334],[-2.276981,57.077994],[-2.282924,57.079329],[-2.289251,57.079631],[-2.293855,57.07914],[-2.299277,57.077542],[-2.306028,57.076629],[-2.307644,57.076175],[-2.307754,57.077747],[-2.312793,57.077522],[-2.317018,57.080021],[-2.309816,57.082034],[-2.301374,57.085234],[-2.299813,57.086562],[-2.297804,57.087401],[-2.295535,57.087383],[-2.293548,57.088134],[-2.290685,57.088323],[-2.291359,57.089305],[-2.288127,57.093727],[-2.284656,57.094099],[-2.280655,57.095944],[-2.279712,57.097418],[-2.279647,57.099309],[-2.280983,57.100676],[-2.284496,57.101698],[-2.283638,57.102727],[-2.285663,57.103305],[-2.287471,57.102151],[-2.289934,57.102189],[-2.292572,57.102811],[-2.292438,57.103812],[-2.294864,57.103582],[-2.295619,57.104089],[-2.297402,57.103886],[-2.298459,57.104345],[-2.300549,57.103956],[-2.302246,57.10498],[-2.303968,57.105049],[-2.30611,57.104558],[-2.307653,57.10373],[-2.309285,57.103897],[-2.309896,57.102757],[-2.316758,57.102318],[-2.319617,57.101783],[-2.321646,57.102612],[-2.325401,57.101881],[-2.330951,57.101496],[-2.337572,57.102545],[-2.341063,57.104056],[-2.34438,57.10663],[-2.349178,57.107043],[-2.35138,57.108293],[-2.360877,57.10918],[-2.360797,57.111563],[-2.351702,57.120757],[-2.350562,57.131006],[-2.353835,57.132854],[-2.351185,57.135632],[-2.342586,57.133975],[-2.339354,57.133753],[-2.33326,57.131755],[-2.325579,57.126371],[-2.323692,57.125542],[-2.317111,57.124641],[-2.30909,57.124834],[-2.304178,57.123416],[-2.304623,57.124828],[-2.304201,57.125811],[-2.300157,57.126471],[-2.296239,57.128384],[-2.289588,57.128875],[-2.287586,57.129915],[-2.283765,57.130772],[-2.280684,57.130672],[-2.278639,57.128896],[-2.277294,57.128946],[-2.275034,57.130186],[-2.274402,57.131868],[-2.276533,57.133155],[-2.278074,57.135275],[-2.278287,57.136626],[-2.277658,57.138187],[-2.274559,57.141626],[-2.272826,57.14444],[-2.267207,57.145557],[-2.267063,57.146882],[-2.259248,57.154249],[-2.257463,57.157337],[-2.254377,57.158325],[-2.253517,57.160164],[-2.255505,57.16173],[-2.26005,57.167902],[-2.260995,57.169888],[-2.262178,57.17091],[-2.267731,57.17324],[-2.271095,57.172762],[-2.272033,57.174568],[-2.271459,57.175286],[-2.27332,57.17668],[-2.272409,57.179001],[-2.273936,57.181681],[-2.275724,57.182785],[-2.277572,57.183122],[-2.279789,57.184436],[-2.282237,57.186977],[-2.28564,57.187673],[-2.290196,57.193138],[-2.295067,57.197838],[-2.292867,57.200074],[-2.289594,57.201846],[-2.281568,57.200911],[-2.279592,57.201213],[-2.278378,57.204188],[-2.281162,57.206068],[-2.281685,57.206967],[-2.277857,57.210821],[-2.277936,57.212975],[-2.281738,57.212924],[-2.283458,57.214193],[-2.281945,57.214881],[-2.280684,57.217509],[-2.281623,57.218437],[-2.278948,57.219715],[-2.279376,57.220284],[-2.279044,57.221852],[-2.279638,57.223823],[-2.280323,57.224526],[-2.278774,57.225248],[-2.279492,57.226857],[-2.279057,57.228254],[-2.277686,57.228513],[-2.276972,57.229408],[-2.273938,57.230174],[-2.273487,57.23275],[-2.275133,57.23421],[-2.272863,57.234612],[-2.269861,57.232822],[-2.266675,57.232626],[-2.264587,57.231426],[-2.264727,57.229224],[-2.261863,57.228487],[-2.259731,57.228691],[-2.255007,57.230231],[-2.253625,57.231177],[-2.253274,57.232688],[-2.252539,57.233199],[-2.248059,57.233834],[-2.243854,57.233933],[-2.24119,57.235338],[-2.23921,57.23458],[-2.237531,57.233425],[-2.237578,57.230593],[-2.236593,57.229387],[-2.234555,57.229574],[-2.231586,57.231034],[-2.229788,57.230854],[-2.22848,57.22877],[-2.226294,57.228503],[-2.223991,57.230333],[-2.221781,57.229673],[-2.217711,57.23023],[-2.213088,57.229215],[-2.211113,57.229189],[-2.206799,57.231295],[-2.205276,57.231475],[-2.204444,57.23079],[-2.20379,57.225151],[-2.201646,57.222757],[-2.197366,57.22136],[-2.192464,57.219167],[-2.186015,57.217888],[-2.183735,57.216212],[-2.179855,57.215766],[-2.179252,57.21486],[-2.179274,57.21295],[-2.17676,57.211795],[-2.174669,57.210264],[-2.171789,57.212543],[-2.169458,57.212311],[-2.166915,57.211045],[-2.166507,57.212016],[-2.165095,57.213252],[-2.160817,57.213947],[-2.160415,57.213197],[-2.154637,57.213639],[-2.151452,57.212868],[-2.151969,57.212174],[-2.148086,57.211264],[-2.146094,57.212332],[-2.143127,57.211286],[-2.140295,57.2128],[-2.140743,57.213097],[-2.136602,57.214726],[-2.137759,57.216551],[-2.135011,57.216943],[-2.131441,57.217911],[-2.128935,57.222851],[-2.129403,57.225912],[-2.128238,57.227442],[-2.116041,57.225011],[-2.094663,57.222491],[-2.08661,57.219051],[-2.084439,57.219332],[-2.080852,57.219294],[-2.075955,57.218276],[-2.069428,57.214595],[-2.063775,57.214249],[-2.063058,57.212607],[-2.06136,57.211974]]]]},"properties":{"LAD22CD":"S12000034","LAD22NM":"Aberdeenshire","BNG_E":352284,"BNG_N":816277,"LONG":-2.79208,"LAT":57.23469,"GlobalID":"076a4f64-d293-4aa3-bcd4-2800283d0d23"},"id":340}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.572266,55.286564],[-5.572603,55.285382],[-5.575423,55.28556],[-5.578217,55.28404],[-5.579993,55.28356],[-5.582861,55.284348],[-5.584414,55.285947],[-5.586925,55.286],[-5.590248,55.284594],[-5.59405,55.283691],[-5.597754,55.279279],[-5.595603,55.277441],[-5.593036,55.276401],[-5.591419,55.276112],[-5.58553,55.275872],[-5.583993,55.275418],[-5.583878,55.27467],[-5.582025,55.274551],[-5.581907,55.275515],[-5.579861,55.277724],[-5.577363,55.278054],[-5.575255,55.277387],[-5.573686,55.27728],[-5.573088,55.278246],[-5.569553,55.277954],[-5.567854,55.279079],[-5.566313,55.279551],[-5.565947,55.280555],[-5.564518,55.281487],[-5.566188,55.284473],[-5.568402,55.284386],[-5.570243,55.284808],[-5.572266,55.286564]]],[[[-5.55522,55.287704],[-5.558354,55.287681],[-5.557455,55.286881],[-5.55522,55.287704]]],[[[-5.570229,55.289895],[-5.569196,55.290618],[-5.569879,55.291821],[-5.572396,55.293944],[-5.574329,55.294238],[-5.574935,55.293087],[-5.573487,55.289951],[-5.572859,55.289538],[-5.570229,55.289895]]],[[[-5.538717,55.427317],[-5.539772,55.428415],[-5.542403,55.428577],[-5.545577,55.427729],[-5.546254,55.427009],[-5.549151,55.425805],[-5.551756,55.425495],[-5.55248,55.424494],[-5.551007,55.423148],[-5.547825,55.421514],[-5.544271,55.421019],[-5.54194,55.421199],[-5.536314,55.423161],[-5.536235,55.424849],[-5.538717,55.427317]]],[[[-6.134314,55.621326],[-6.138536,55.62112],[-6.14101,55.620092],[-6.142711,55.619797],[-6.145471,55.618467],[-6.147088,55.618736],[-6.147579,55.618044],[-6.149732,55.617958],[-6.15318,55.615476],[-6.151999,55.613708],[-6.15021,55.613227],[-6.149102,55.613811],[-6.142332,55.613343],[-6.141933,55.615515],[-6.140745,55.616684],[-6.138586,55.617683],[-6.135819,55.617592],[-6.132961,55.618588],[-6.131966,55.61971],[-6.134135,55.620684],[-6.134314,55.621326]]],[[[-5.747186,55.639016],[-5.749177,55.639638],[-5.750616,55.638308],[-5.751605,55.638179],[-5.753444,55.636716],[-5.752547,55.634823],[-5.754745,55.634036],[-5.756081,55.633128],[-5.756359,55.63222],[-5.758074,55.630702],[-5.758697,55.626636],[-5.756061,55.62745],[-5.753326,55.625272],[-5.751217,55.625409],[-5.749607,55.628093],[-5.74974,55.629154],[-5.748318,55.630493],[-5.748148,55.632867],[-5.747002,55.635011],[-5.745127,55.635689],[-5.746269,55.636827],[-5.745232,55.637533],[-5.747186,55.639016]]],[[[-5.739721,55.649508],[-5.739185,55.651835],[-5.741775,55.650947],[-5.743661,55.649631],[-5.743327,55.64813],[-5.740528,55.648211],[-5.739721,55.649508]]],[[[-6.087684,55.643499],[-6.088723,55.642255],[-6.090203,55.641926],[-6.090477,55.641009],[-6.092669,55.639431],[-6.091612,55.638335],[-6.089794,55.63797],[-6.088476,55.639282],[-6.087087,55.638919],[-6.084174,55.639122],[-6.083111,55.642649],[-6.085378,55.642659],[-6.086376,55.642239],[-6.087684,55.643499]]],[[[-6.09047,55.643604],[-6.091352,55.642532],[-6.088676,55.642491],[-6.088709,55.64311],[-6.09047,55.643604]]],[[[-6.041883,55.655946],[-6.042972,55.656629],[-6.045668,55.655234],[-6.044054,55.654893],[-6.041883,55.655946]]],[[[-5.775758,55.664382],[-5.774473,55.666022],[-5.776043,55.666513],[-5.776948,55.665838],[-5.777347,55.66445],[-5.775758,55.664382]]],[[[-6.038857,55.659148],[-6.041763,55.657899],[-6.042068,55.656812],[-6.039651,55.655754],[-6.038234,55.656502],[-6.038857,55.659148]]],[[[-6.039684,55.659607],[-6.042509,55.658924],[-6.04154,55.658322],[-6.039684,55.659607]]],[[[-5.731098,55.670036],[-5.731142,55.671382],[-5.733338,55.670218],[-5.731098,55.670036]]],[[[-6.05488,55.659053],[-6.052029,55.660863],[-6.053699,55.661603],[-6.054761,55.660255],[-6.05488,55.659053]]],[[[-6.047401,55.665391],[-6.052416,55.662505],[-6.051337,55.66161],[-6.047151,55.663975],[-6.047401,55.665391]]],[[[-6.020234,55.669653],[-6.023277,55.668681],[-6.025782,55.668599],[-6.025237,55.667708],[-6.021302,55.666961],[-6.018243,55.669289],[-6.020234,55.669653]]],[[[-6.046314,55.668885],[-6.047568,55.669774],[-6.04876,55.668534],[-6.046314,55.668885]]],[[[-6.028272,55.672928],[-6.031115,55.672331],[-6.032501,55.671107],[-6.031473,55.670139],[-6.030279,55.670623],[-6.028584,55.670539],[-6.026811,55.672185],[-6.028272,55.672928]]],[[[-6.042828,55.671486],[-6.038667,55.675351],[-6.040262,55.67569],[-6.041738,55.674724],[-6.044156,55.672558],[-6.044815,55.671317],[-6.042828,55.671486]]],[[[-6.513149,55.676586],[-6.515643,55.676278],[-6.516474,55.674556],[-6.51526,55.673137],[-6.516341,55.672138],[-6.513863,55.67097],[-6.511997,55.671978],[-6.510142,55.671407],[-6.506286,55.671341],[-6.506205,55.672368],[-6.50945,55.673928],[-6.510454,55.675608],[-6.513149,55.676586]]],[[[-6.517262,55.682588],[-6.518108,55.683452],[-6.521634,55.681354],[-6.520653,55.680406],[-6.51723,55.679833],[-6.516702,55.678611],[-6.51491,55.677681],[-6.51399,55.678218],[-6.513914,55.679312],[-6.514928,55.680554],[-6.516349,55.681238],[-6.517262,55.682588]]],[[[-5.721915,55.728527],[-5.722095,55.729412],[-5.724325,55.729735],[-5.725834,55.729018],[-5.728416,55.725439],[-5.728124,55.724791],[-5.730577,55.724285],[-5.732302,55.723086],[-5.735519,55.723402],[-5.735623,55.724905],[-5.737747,55.725703],[-5.739434,55.72527],[-5.741341,55.723552],[-5.74195,55.721767],[-5.742971,55.721196],[-5.743014,55.718183],[-5.741442,55.718075],[-5.735707,55.722533],[-5.733855,55.722324],[-5.734523,55.721148],[-5.733754,55.720187],[-5.736166,55.717011],[-5.735824,55.715596],[-5.736178,55.714466],[-5.738828,55.711136],[-5.738714,55.709425],[-5.736924,55.70961],[-5.736314,55.709058],[-5.736927,55.707308],[-5.73929,55.707367],[-5.740368,55.70674],[-5.742326,55.706815],[-5.743943,55.707818],[-5.744804,55.70923],[-5.746034,55.709302],[-5.748977,55.706005],[-5.746808,55.70555],[-5.74763,55.703241],[-5.746357,55.701675],[-5.748543,55.70065],[-5.752797,55.696604],[-5.752945,55.695448],[-5.754498,55.694592],[-5.754101,55.693687],[-5.754937,55.692568],[-5.756894,55.692599],[-5.757959,55.691752],[-5.761259,55.690401],[-5.761363,55.688748],[-5.76391,55.687489],[-5.765118,55.686147],[-5.765085,55.683918],[-5.766029,55.683483],[-5.76606,55.682476],[-5.76716,55.681978],[-5.766818,55.680928],[-5.768204,55.680773],[-5.769758,55.678896],[-5.771891,55.679567],[-5.774342,55.676848],[-5.774037,55.675163],[-5.774888,55.673095],[-5.772876,55.670963],[-5.770697,55.670225],[-5.770925,55.668132],[-5.770499,55.667759],[-5.767473,55.668382],[-5.768298,55.669022],[-5.767673,55.670049],[-5.765045,55.669689],[-5.765025,55.668408],[-5.763864,55.667913],[-5.760136,55.669026],[-5.759374,55.666801],[-5.759875,55.664398],[-5.762518,55.66537],[-5.763633,55.663447],[-5.762952,55.662892],[-5.761226,55.663975],[-5.761346,55.661993],[-5.763397,55.661984],[-5.765168,55.660544],[-5.765985,55.660362],[-5.767075,55.658714],[-5.765872,55.657529],[-5.76768,55.656817],[-5.768716,55.655081],[-5.768664,55.65332],[-5.765203,55.653386],[-5.763107,55.652668],[-5.761256,55.651053],[-5.763769,55.649464],[-5.764245,55.648209],[-5.763721,55.645824],[-5.761604,55.645633],[-5.758747,55.646431],[-5.754827,55.648336],[-5.754683,55.650485],[-5.75254,55.652848],[-5.75074,55.653816],[-5.748935,55.653646],[-5.747569,55.654043],[-5.747308,55.655589],[-5.746307,55.655853],[-5.745089,55.657167],[-5.74255,55.658315],[-5.741678,55.659173],[-5.739684,55.659124],[-5.738076,55.65985],[-5.736221,55.659407],[-5.734359,55.659401],[-5.731839,55.662832],[-5.730575,55.663257],[-5.7321,55.664236],[-5.730454,55.664906],[-5.729073,55.666764],[-5.730793,55.667135],[-5.731591,55.668005],[-5.731473,55.669263],[-5.733012,55.669216],[-5.736815,55.667725],[-5.738152,55.667895],[-5.73616,55.671283],[-5.738338,55.672507],[-5.736138,55.673635],[-5.737503,55.674012],[-5.736717,55.675115],[-5.736528,55.67713],[-5.735423,55.678058],[-5.732756,55.678715],[-5.732895,55.68059],[-5.731075,55.68003],[-5.73043,55.679374],[-5.72712,55.680442],[-5.726529,55.68176],[-5.724847,55.682058],[-5.72652,55.683001],[-5.726158,55.683794],[-5.724174,55.682932],[-5.722179,55.68279],[-5.719315,55.68397],[-5.717993,55.685215],[-5.717749,55.68801],[-5.719583,55.685783],[-5.720695,55.685174],[-5.72242,55.686322],[-5.723801,55.685363],[-5.72514,55.685219],[-5.726224,55.683819],[-5.727997,55.683801],[-5.732585,55.682677],[-5.734368,55.684354],[-5.733372,55.685337],[-5.733117,55.686757],[-5.729731,55.688973],[-5.729286,55.68998],[-5.730117,55.691852],[-5.729525,55.692567],[-5.730171,55.694588],[-5.727358,55.698725],[-5.726643,55.698661],[-5.726716,55.696838],[-5.723683,55.698337],[-5.724244,55.701139],[-5.72703,55.699634],[-5.726695,55.70213],[-5.725722,55.703949],[-5.728045,55.704593],[-5.732186,55.705268],[-5.733083,55.706414],[-5.731024,55.70778],[-5.73161,55.708253],[-5.730563,55.710213],[-5.730853,55.710829],[-5.727478,55.712766],[-5.724247,55.712959],[-5.722964,55.714958],[-5.720366,55.715556],[-5.716494,55.71702],[-5.715412,55.718199],[-5.714386,55.71805],[-5.713491,55.71953],[-5.714045,55.721082],[-5.711534,55.722232],[-5.711858,55.724304],[-5.713813,55.725347],[-5.715887,55.723868],[-5.716967,55.724419],[-5.71861,55.724352],[-5.720846,55.724823],[-5.721543,55.725872],[-5.719765,55.726505],[-5.720239,55.727404],[-5.721505,55.727478],[-5.721915,55.728527]]],[[[-5.595797,55.759275],[-5.59279,55.760712],[-5.591806,55.761774],[-5.592539,55.762271],[-5.591923,55.763629],[-5.594508,55.763135],[-5.596727,55.761766],[-5.598124,55.761532],[-5.597532,55.760214],[-5.597995,55.759175],[-5.595797,55.759275]]],[[[-5.160473,55.805049],[-5.163116,55.804972],[-5.165113,55.8043],[-5.166467,55.802623],[-5.166179,55.800038],[-5.166912,55.798055],[-5.167992,55.79102],[-5.166457,55.789711],[-5.166988,55.788389],[-5.166183,55.787511],[-5.166681,55.786873],[-5.165656,55.786135],[-5.165584,55.784946],[-5.164244,55.782104],[-5.163437,55.781891],[-5.162354,55.780337],[-5.160172,55.778901],[-5.159183,55.777132],[-5.15816,55.776705],[-5.154753,55.77708],[-5.152447,55.778546],[-5.151753,55.780915],[-5.14927,55.781176],[-5.148392,55.781666],[-5.147458,55.78472],[-5.147659,55.785671],[-5.149361,55.788128],[-5.151546,55.789303],[-5.152566,55.792936],[-5.154235,55.795914],[-5.155925,55.797372],[-5.159346,55.804534],[-5.160473,55.805049]]],[[[-5.989909,55.789136],[-5.98971,55.790342],[-5.992109,55.791325],[-5.994019,55.790566],[-5.99523,55.788139],[-5.99346,55.787841],[-5.99166,55.786632],[-5.989909,55.789136]]],[[[-6.261568,55.783416],[-6.263375,55.783812],[-6.265556,55.783466],[-6.265893,55.782974],[-6.261829,55.781784],[-6.261049,55.782386],[-6.261568,55.783416]]],[[[-6.034392,55.790554],[-6.035188,55.792304],[-6.038162,55.793667],[-6.039548,55.793869],[-6.040515,55.79234],[-6.040371,55.790798],[-6.038915,55.790841],[-6.036892,55.790265],[-6.034392,55.790554]]],[[[-6.0747,55.811354],[-6.0767,55.812151],[-6.077473,55.811905],[-6.074838,55.810455],[-6.0747,55.811354]]],[[[-5.459302,55.836265],[-5.458018,55.83749],[-5.458595,55.838769],[-5.460231,55.837941],[-5.460802,55.836733],[-5.459302,55.836265]]],[[[-5.287678,55.848086],[-5.288999,55.848783],[-5.289854,55.848028],[-5.289022,55.847165],[-5.287678,55.848086]]],[[[-5.306287,55.848095],[-5.306842,55.848983],[-5.3084,55.8486],[-5.308982,55.847838],[-5.307809,55.847002],[-5.306287,55.848095]]],[[[-5.936111,55.83432],[-5.932306,55.83722],[-5.928938,55.840664],[-5.931164,55.840863],[-5.933281,55.839833],[-5.93578,55.837203],[-5.936505,55.835687],[-5.936111,55.83432]]],[[[-5.923246,55.848314],[-5.924907,55.847672],[-5.925406,55.844536],[-5.922969,55.845963],[-5.921201,55.847773],[-5.923246,55.848314]]],[[[-5.92904,55.851043],[-5.930596,55.849082],[-5.929473,55.848246],[-5.927506,55.850296],[-5.92904,55.851043]]],[[[-5.909322,55.861728],[-5.911136,55.860417],[-5.912063,55.858226],[-5.910933,55.858284],[-5.910532,55.85684],[-5.906616,55.859954],[-5.908196,55.861671],[-5.909322,55.861728]]],[[[-5.336968,55.880939],[-5.336976,55.882238],[-5.33868,55.881693],[-5.336968,55.880939]]],[[[-5.662991,55.890996],[-5.659898,55.893382],[-5.659934,55.894365],[-5.663241,55.891511],[-5.662991,55.890996]]],[[[-5.635813,55.907961],[-5.635028,55.909068],[-5.63704,55.909009],[-5.637447,55.907891],[-5.635813,55.907961]]],[[[-6.352778,55.889088],[-6.353225,55.889386],[-6.356327,55.888593],[-6.357303,55.887977],[-6.357079,55.887076],[-6.35184,55.887645],[-6.350944,55.888355],[-6.352778,55.889088]]],[[[-5.184199,55.925453],[-5.185754,55.926743],[-5.188391,55.925129],[-5.188058,55.924684],[-5.189326,55.923455],[-5.189879,55.920671],[-5.19121,55.919882],[-5.193448,55.919748],[-5.196133,55.91775],[-5.197166,55.916006],[-5.196578,55.914739],[-5.197896,55.913595],[-5.200757,55.913746],[-5.20258,55.913274],[-5.204559,55.912101],[-5.206493,55.911578],[-5.207175,55.910828],[-5.210341,55.910017],[-5.211114,55.908338],[-5.211971,55.907763],[-5.212182,55.906063],[-5.214918,55.904692],[-5.217815,55.904311],[-5.217981,55.903232],[-5.21927,55.902852],[-5.221419,55.901178],[-5.220131,55.899926],[-5.217436,55.900325],[-5.215105,55.899711],[-5.21294,55.896151],[-5.213346,55.895271],[-5.212268,55.893942],[-5.213584,55.893314],[-5.211511,55.892205],[-5.213527,55.890502],[-5.212233,55.889457],[-5.213005,55.888349],[-5.213353,55.88647],[-5.212377,55.88579],[-5.211979,55.88416],[-5.209831,55.882962],[-5.206416,55.883023],[-5.204812,55.882285],[-5.20135,55.878535],[-5.19998,55.876269],[-5.198151,55.874631],[-5.197761,55.873183],[-5.193857,55.869672],[-5.192406,55.867382],[-5.187313,55.865127],[-5.183352,55.864318],[-5.180528,55.862799],[-5.177009,55.860126],[-5.172148,55.854035],[-5.169448,55.851794],[-5.164591,55.850818],[-5.160564,55.84957],[-5.159288,55.848588],[-5.156788,55.847835],[-5.156119,55.847049],[-5.154025,55.847147],[-5.150087,55.84928],[-5.148638,55.850806],[-5.145711,55.851653],[-5.141299,55.85107],[-5.136443,55.849519],[-5.132372,55.847239],[-5.131485,55.847082],[-5.129236,55.845222],[-5.127151,55.842341],[-5.128692,55.839646],[-5.130679,55.839009],[-5.133556,55.838719],[-5.13561,55.838224],[-5.137376,55.837244],[-5.138508,55.836038],[-5.139425,55.830167],[-5.140658,55.826087],[-5.140616,55.821573],[-5.141187,55.820463],[-5.140648,55.819491],[-5.141482,55.818854],[-5.141191,55.817122],[-5.140238,55.814908],[-5.142892,55.813267],[-5.142391,55.811212],[-5.141067,55.809547],[-5.140248,55.810579],[-5.14022,55.812702],[-5.136473,55.811374],[-5.135274,55.810167],[-5.135495,55.808148],[-5.137612,55.807478],[-5.137304,55.806627],[-5.138026,55.804586],[-5.138097,55.802107],[-5.13671,55.802318],[-5.135861,55.803171],[-5.13598,55.805353],[-5.136425,55.805917],[-5.13566,55.80782],[-5.132055,55.809633],[-5.127717,55.809904],[-5.12673,55.809482],[-5.126439,55.806999],[-5.124979,55.802697],[-5.123639,55.802148],[-5.122679,55.800565],[-5.12393,55.798135],[-5.123822,55.795137],[-5.125148,55.794584],[-5.125831,55.793484],[-5.127629,55.793104],[-5.128854,55.790549],[-5.127864,55.788057],[-5.127824,55.785864],[-5.126313,55.78636],[-5.124855,55.78587],[-5.124371,55.784553],[-5.125594,55.783964],[-5.125381,55.782237],[-5.123639,55.781806],[-5.121365,55.780371],[-5.121319,55.779139],[-5.120574,55.777881],[-5.1208,55.776043],[-5.121673,55.7753],[-5.120364,55.772291],[-5.116899,55.771637],[-5.115885,55.772724],[-5.112442,55.774047],[-5.111815,55.775173],[-5.105387,55.777983],[-5.104301,55.779063],[-5.102606,55.779708],[-5.097594,55.779619],[-5.093573,55.778027],[-5.094496,55.7758],[-5.094293,55.774659],[-5.092753,55.773843],[-5.093837,55.772629],[-5.092372,55.771646],[-5.090785,55.772252],[-5.089275,55.770097],[-5.084286,55.768015],[-5.082202,55.767775],[-5.081261,55.768271],[-5.079358,55.768305],[-5.075852,55.767184],[-5.075798,55.766035],[-5.074447,55.763551],[-5.072359,55.762453],[-5.066797,55.76248],[-5.063441,55.760653],[-5.060937,55.758505],[-5.062019,55.757061],[-5.061525,55.755574],[-5.061511,55.752921],[-5.059842,55.749924],[-5.06131,55.749132],[-5.062147,55.747723],[-5.060154,55.746357],[-5.056994,55.74493],[-5.055504,55.743749],[-5.055156,55.742774],[-5.057004,55.740659],[-5.053936,55.738816],[-5.049573,55.737212],[-5.049843,55.735875],[-5.052752,55.735182],[-5.054055,55.733707],[-5.053764,55.733256],[-5.05066,55.73216],[-5.048893,55.731876],[-5.041555,55.728404],[-5.041181,55.727554],[-5.038578,55.726549],[-5.038675,55.725036],[-5.036062,55.724512],[-5.033721,55.723491],[-5.033074,55.72255],[-5.031808,55.722141],[-5.027428,55.722451],[-5.02744,55.723116],[-5.024899,55.724302],[-5.023669,55.723991],[-5.021705,55.725887],[-5.02011,55.725751],[-5.018629,55.727711],[-5.014254,55.727684],[-5.013383,55.728159],[-5.00816,55.727253],[-5.009415,55.728351],[-5.009873,55.730879],[-5.007684,55.731531],[-5.005822,55.730515],[-5.00503,55.730634],[-5.004138,55.73213],[-5.005437,55.734098],[-5.005322,55.736227],[-5.006476,55.737767],[-5.00632,55.738953],[-5.007342,55.739734],[-5.007478,55.740957],[-5.009534,55.742614],[-5.010096,55.743598],[-5.012306,55.745603],[-5.014622,55.746368],[-5.014991,55.746962],[-5.017884,55.747739],[-5.021615,55.749292],[-5.024543,55.750997],[-5.0305,55.753328],[-5.032077,55.753606],[-5.032407,55.754625],[-5.031968,55.756779],[-5.028623,55.76027],[-5.022452,55.762754],[-5.016853,55.763751],[-5.013256,55.76359],[-5.011929,55.763236],[-5.008794,55.763614],[-5.008209,55.764824],[-5.005508,55.765258],[-5.004439,55.766583],[-5.002883,55.766882],[-5.001057,55.769913],[-5.002461,55.772751],[-5.002083,55.77493],[-5.002959,55.775998],[-5.005642,55.777028],[-5.00656,55.778694],[-5.006648,55.780458],[-5.009515,55.78309],[-5.013234,55.787969],[-5.012957,55.793262],[-5.013466,55.798406],[-5.01585,55.799412],[-5.018135,55.805534],[-5.019435,55.807377],[-5.021007,55.807877],[-5.022298,55.809346],[-5.021443,55.810553],[-5.021118,55.812393],[-5.021422,55.813507],[-5.022859,55.814427],[-5.02326,55.816525],[-5.023991,55.817568],[-5.023369,55.82168],[-5.022585,55.823845],[-5.021654,55.824775],[-5.021651,55.826548],[-5.023376,55.826122],[-5.024861,55.82723],[-5.024304,55.831696],[-5.025044,55.832629],[-5.025218,55.834934],[-5.02406,55.838186],[-5.024268,55.839257],[-5.023713,55.840833],[-5.024734,55.843531],[-5.027658,55.845036],[-5.032073,55.84495],[-5.038833,55.844099],[-5.042387,55.842925],[-5.044146,55.842017],[-5.046404,55.841559],[-5.051799,55.837854],[-5.054074,55.83788],[-5.054103,55.838509],[-5.058889,55.839197],[-5.061703,55.841416],[-5.062298,55.842594],[-5.062262,55.845243],[-5.063048,55.84805],[-5.062367,55.849272],[-5.06262,55.852699],[-5.06176,55.855885],[-5.06229,55.85691],[-5.061559,55.858352],[-5.062841,55.858795],[-5.067182,55.859083],[-5.069231,55.859616],[-5.071568,55.860986],[-5.073035,55.86121],[-5.077828,55.860951],[-5.082548,55.860057],[-5.09091,55.861543],[-5.092246,55.86334],[-5.092497,55.865045],[-5.091908,55.866197],[-5.086573,55.867313],[-5.081154,55.87075],[-5.076966,55.872577],[-5.074928,55.874205],[-5.074868,55.876112],[-5.076626,55.879705],[-5.078303,55.881385],[-5.07994,55.882187],[-5.082326,55.881704],[-5.087022,55.882033],[-5.091555,55.884053],[-5.096454,55.887702],[-5.100915,55.888988],[-5.105921,55.889873],[-5.113731,55.892413],[-5.117446,55.894355],[-5.121376,55.897064],[-5.123785,55.897884],[-5.124545,55.898575],[-5.132045,55.902299],[-5.133599,55.903402],[-5.135797,55.904168],[-5.139447,55.906075],[-5.148209,55.913371],[-5.153856,55.91511],[-5.15589,55.91659],[-5.158386,55.92094],[-5.160181,55.921242],[-5.161236,55.922061],[-5.164209,55.92185],[-5.167073,55.921032],[-5.167835,55.921453],[-5.169634,55.921111],[-5.173985,55.922236],[-5.175382,55.923928],[-5.176902,55.924252],[-5.177382,55.924966],[-5.180648,55.924219],[-5.184199,55.925453]]],[[[-5.172288,55.925864],[-5.173185,55.926264],[-5.172489,55.927936],[-5.174552,55.927918],[-5.17469,55.927089],[-5.173494,55.926417],[-5.173835,55.925406],[-5.17248,55.925082],[-5.172288,55.925864]]],[[[-5.734938,55.915267],[-5.733916,55.916886],[-5.735922,55.917285],[-5.736345,55.916651],[-5.738177,55.915889],[-5.739465,55.914056],[-5.738822,55.912947],[-5.737199,55.912803],[-5.737396,55.910402],[-5.736013,55.91038],[-5.734725,55.911138],[-5.73354,55.912883],[-5.734353,55.913339],[-5.730688,55.916849],[-5.732239,55.916834],[-5.734328,55.914581],[-5.734938,55.915267]]],[[[-5.700344,55.914858],[-5.696921,55.917532],[-5.696352,55.919037],[-5.69997,55.91677],[-5.700344,55.914858]]],[[[-5.192062,55.932185],[-5.191962,55.933307],[-5.193275,55.934086],[-5.194521,55.933847],[-5.194525,55.93293],[-5.192062,55.932185]]],[[[-5.711993,55.920935],[-5.71285,55.921435],[-5.714769,55.920411],[-5.714479,55.919642],[-5.712979,55.919525],[-5.711993,55.920935]]],[[[-5.716837,55.922273],[-5.718312,55.921369],[-5.719037,55.919747],[-5.721032,55.918423],[-5.721756,55.916288],[-5.71966,55.916558],[-5.718315,55.918312],[-5.716247,55.919377],[-5.715965,55.921611],[-5.716837,55.922273]]],[[[-6.328839,55.903248],[-6.333448,55.902726],[-6.335604,55.902034],[-6.336077,55.901324],[-6.337622,55.901252],[-6.342652,55.899851],[-6.343813,55.899212],[-6.344534,55.897212],[-6.343109,55.896426],[-6.339362,55.895771],[-6.337642,55.895999],[-6.332584,55.899649],[-6.33006,55.900421],[-6.328196,55.902007],[-6.328839,55.903248]]],[[[-5.707369,55.936777],[-5.706134,55.938299],[-5.707428,55.938425],[-5.707369,55.936777]]],[[[-6.126801,55.937846],[-6.129286,55.937857],[-6.131204,55.936614],[-6.134563,55.937082],[-6.137783,55.935728],[-6.138737,55.934612],[-6.140543,55.93367],[-6.142294,55.933417],[-6.148802,55.933225],[-6.151123,55.933282],[-6.153428,55.934153],[-6.155812,55.933384],[-6.162555,55.933439],[-6.163868,55.932909],[-6.164638,55.931282],[-6.166754,55.931143],[-6.167443,55.930324],[-6.1663,55.929301],[-6.166755,55.928692],[-6.170443,55.927834],[-6.171485,55.926571],[-6.1737,55.925795],[-6.176885,55.925547],[-6.178793,55.926166],[-6.180128,55.925693],[-6.183829,55.925851],[-6.185365,55.924653],[-6.186751,55.92554],[-6.188792,55.92487],[-6.190732,55.924653],[-6.195875,55.926744],[-6.197668,55.926211],[-6.196969,55.925156],[-6.199643,55.92448],[-6.201071,55.92377],[-6.202066,55.922598],[-6.203511,55.922414],[-6.205173,55.919277],[-6.206876,55.918589],[-6.206585,55.917735],[-6.208066,55.916349],[-6.208288,55.915218],[-6.213213,55.913529],[-6.214592,55.912218],[-6.219859,55.912505],[-6.221659,55.910213],[-6.223822,55.909343],[-6.225673,55.909432],[-6.225414,55.907714],[-6.227969,55.906916],[-6.228197,55.905927],[-6.229987,55.905308],[-6.231049,55.903747],[-6.233448,55.903278],[-6.235151,55.900989],[-6.237679,55.900681],[-6.239517,55.898977],[-6.247055,55.896104],[-6.248054,55.89624],[-6.250327,55.894196],[-6.253644,55.893866],[-6.254885,55.89255],[-6.257651,55.892018],[-6.258545,55.892432],[-6.260303,55.891468],[-6.261456,55.89176],[-6.266349,55.8899],[-6.269388,55.888139],[-6.268211,55.887839],[-6.266701,55.886546],[-6.267445,55.884803],[-6.269163,55.882752],[-6.272783,55.881163],[-6.274359,55.879998],[-6.281327,55.877956],[-6.285937,55.876985],[-6.296107,55.875237],[-6.310339,55.874038],[-6.3115,55.87374],[-6.308516,55.869386],[-6.306608,55.867776],[-6.304994,55.867225],[-6.308326,55.860478],[-6.310025,55.859415],[-6.308979,55.85799],[-6.309743,55.857014],[-6.311229,55.856178],[-6.312783,55.856238],[-6.315909,55.854794],[-6.315886,55.854091],[-6.317494,55.853734],[-6.318517,55.851143],[-6.3205,55.849639],[-6.319588,55.843879],[-6.319657,55.842127],[-6.322683,55.840159],[-6.323173,55.839247],[-6.327761,55.835658],[-6.32833,55.833592],[-6.327963,55.832665],[-6.325436,55.831562],[-6.325009,55.830673],[-6.323693,55.829912],[-6.323429,55.826733],[-6.32397,55.826318],[-6.3219,55.823747],[-6.322611,55.822814],[-6.324147,55.824888],[-6.327403,55.824296],[-6.329403,55.824279],[-6.329908,55.82362],[-6.334697,55.824862],[-6.33728,55.825024],[-6.339418,55.82738],[-6.339422,55.828011],[-6.341529,55.830759],[-6.343473,55.83209],[-6.344301,55.833482],[-6.346093,55.834512],[-6.345497,55.835333],[-6.345993,55.83648],[-6.345525,55.838588],[-6.344654,55.839586],[-6.344519,55.841102],[-6.341514,55.844037],[-6.342353,55.845532],[-6.342311,55.846518],[-6.339342,55.85157],[-6.338262,55.852206],[-6.337272,55.853936],[-6.336977,55.856672],[-6.338458,55.859336],[-6.337985,55.860329],[-6.338789,55.860795],[-6.337083,55.862416],[-6.338308,55.864369],[-6.337351,55.865892],[-6.338241,55.866845],[-6.337916,55.868516],[-6.337022,55.869358],[-6.335067,55.869503],[-6.334113,55.871996],[-6.330892,55.874308],[-6.329976,55.875569],[-6.326267,55.87768],[-6.326704,55.878785],[-6.3264,55.879979],[-6.32439,55.88154],[-6.323659,55.884519],[-6.321722,55.886427],[-6.322797,55.88746],[-6.32279,55.888472],[-6.323732,55.889819],[-6.325292,55.890754],[-6.327928,55.890994],[-6.331681,55.891635],[-6.333089,55.890848],[-6.334201,55.891109],[-6.336283,55.889921],[-6.339195,55.887692],[-6.340548,55.887698],[-6.343725,55.88656],[-6.346602,55.885172],[-6.346162,55.88481],[-6.347563,55.882818],[-6.349084,55.882256],[-6.348519,55.881637],[-6.351089,55.880085],[-6.352904,55.880434],[-6.356085,55.880119],[-6.357106,55.879305],[-6.359062,55.878633],[-6.356675,55.877962],[-6.356213,55.875617],[-6.360003,55.875757],[-6.361986,55.876312],[-6.365516,55.87585],[-6.36782,55.875124],[-6.369009,55.875388],[-6.370846,55.875003],[-6.371979,55.8732],[-6.373362,55.872202],[-6.375777,55.871698],[-6.376325,55.869888],[-6.380075,55.869516],[-6.38472,55.867304],[-6.384962,55.866194],[-6.386564,55.865291],[-6.38618,55.864725],[-6.389231,55.862916],[-6.389222,55.862062],[-6.39089,55.860896],[-6.39049,55.859768],[-6.39305,55.857936],[-6.394313,55.857481],[-6.396364,55.857475],[-6.398631,55.857016],[-6.402787,55.857137],[-6.40486,55.856379],[-6.40547,55.855696],[-6.407285,55.856688],[-6.409904,55.856053],[-6.412815,55.85483],[-6.411554,55.853436],[-6.412607,55.852436],[-6.415035,55.851778],[-6.4161,55.852499],[-6.41783,55.852801],[-6.41714,55.853906],[-6.421355,55.855674],[-6.42147,55.85648],[-6.423162,55.856657],[-6.422982,55.859155],[-6.425784,55.860655],[-6.428086,55.860644],[-6.430083,55.859718],[-6.431044,55.858392],[-6.433935,55.85934],[-6.435137,55.858038],[-6.434404,55.856915],[-6.435917,55.855338],[-6.437369,55.8555],[-6.438865,55.854764],[-6.442726,55.855731],[-6.443751,55.854591],[-6.445216,55.854157],[-6.447844,55.854433],[-6.448555,55.853484],[-6.451191,55.853333],[-6.455228,55.852071],[-6.454424,55.851124],[-6.455478,55.849305],[-6.456325,55.848672],[-6.454854,55.846373],[-6.454295,55.843376],[-6.455839,55.843459],[-6.457593,55.842859],[-6.458361,55.840008],[-6.455742,55.840817],[-6.452638,55.8427],[-6.451291,55.841857],[-6.455082,55.839785],[-6.456415,55.838374],[-6.455999,55.836069],[-6.455039,55.835649],[-6.45632,55.834056],[-6.45898,55.834049],[-6.459977,55.832637],[-6.456809,55.832468],[-6.457985,55.830595],[-6.460634,55.830211],[-6.460979,55.828975],[-6.464711,55.828421],[-6.463494,55.827427],[-6.461188,55.827663],[-6.458096,55.82613],[-6.456746,55.824038],[-6.45669,55.822978],[-6.458456,55.82237],[-6.459872,55.820848],[-6.459224,55.819725],[-6.455553,55.817389],[-6.456015,55.816747],[-6.457712,55.816645],[-6.458479,55.814692],[-6.457423,55.813143],[-6.457941,55.809787],[-6.458616,55.808845],[-6.461038,55.808591],[-6.46437,55.806585],[-6.466878,55.8068],[-6.467219,55.80573],[-6.46912,55.806084],[-6.470586,55.805702],[-6.470629,55.804059],[-6.472585,55.804406],[-6.473006,55.80279],[-6.474325,55.801689],[-6.477746,55.800746],[-6.477153,55.800241],[-6.480844,55.799913],[-6.482583,55.79886],[-6.481491,55.79832],[-6.482889,55.796196],[-6.484235,55.79629],[-6.48523,55.79557],[-6.48401,55.794823],[-6.482948,55.792393],[-6.485002,55.793173],[-6.486961,55.792719],[-6.486283,55.791547],[-6.482633,55.789935],[-6.484717,55.788901],[-6.484193,55.788089],[-6.482018,55.788546],[-6.479791,55.787849],[-6.478034,55.788192],[-6.475721,55.786579],[-6.473933,55.787091],[-6.472607,55.785763],[-6.471806,55.786849],[-6.467546,55.786033],[-6.464558,55.786844],[-6.461611,55.786797],[-6.459606,55.785301],[-6.457139,55.78249],[-6.456055,55.7787],[-6.45644,55.774559],[-6.455986,55.772677],[-6.457192,55.772],[-6.45889,55.770099],[-6.459125,55.769087],[-6.461678,55.767483],[-6.463004,55.765758],[-6.467112,55.763382],[-6.468909,55.761598],[-6.469278,55.757991],[-6.470461,55.756837],[-6.470003,55.755766],[-6.470897,55.754937],[-6.466705,55.753772],[-6.465817,55.7527],[-6.463392,55.75299],[-6.461514,55.75275],[-6.461362,55.751754],[-6.464118,55.750268],[-6.466714,55.750651],[-6.469555,55.750255],[-6.470539,55.750668],[-6.473412,55.750121],[-6.472969,55.749357],[-6.475736,55.748479],[-6.477451,55.748878],[-6.478774,55.747556],[-6.480217,55.747756],[-6.480779,55.746328],[-6.482004,55.746032],[-6.483541,55.744521],[-6.486981,55.742715],[-6.4882,55.739864],[-6.490363,55.739407],[-6.490699,55.73858],[-6.493363,55.737975],[-6.495186,55.736491],[-6.496082,55.736733],[-6.498136,55.733729],[-6.49828,55.732559],[-6.497572,55.731955],[-6.499379,55.730414],[-6.499224,55.729481],[-6.503605,55.727024],[-6.501845,55.726429],[-6.502749,55.72425],[-6.504581,55.724174],[-6.503398,55.723102],[-6.505374,55.720209],[-6.50651,55.720374],[-6.507044,55.718794],[-6.505642,55.718585],[-6.504418,55.717538],[-6.504481,55.716882],[-6.500282,55.717298],[-6.497844,55.716326],[-6.494193,55.715897],[-6.493122,55.713094],[-6.495252,55.712355],[-6.496849,55.712598],[-6.496896,55.711329],[-6.499408,55.710192],[-6.500756,55.708016],[-6.500296,55.70635],[-6.501369,55.705362],[-6.504211,55.704313],[-6.506264,55.704228],[-6.509916,55.701778],[-6.510326,55.701168],[-6.512331,55.700488],[-6.513499,55.699078],[-6.515624,55.69799],[-6.516694,55.696887],[-6.516611,55.695747],[-6.517777,55.695091],[-6.520836,55.694413],[-6.522128,55.695027],[-6.523799,55.694606],[-6.525334,55.692965],[-6.523882,55.692137],[-6.52378,55.690958],[-6.522444,55.690472],[-6.521268,55.688759],[-6.518242,55.689337],[-6.516763,55.689283],[-6.516046,55.688316],[-6.514147,55.68714],[-6.516004,55.686344],[-6.514379,55.684575],[-6.512805,55.684274],[-6.512815,55.683224],[-6.513621,55.681904],[-6.512582,55.681471],[-6.510884,55.679883],[-6.50983,55.679527],[-6.507658,55.680315],[-6.506884,55.68005],[-6.509915,55.678003],[-6.509788,55.676845],[-6.507678,55.676526],[-6.504999,55.67452],[-6.503172,55.675086],[-6.500941,55.674552],[-6.498556,55.67508],[-6.497348,55.673304],[-6.493957,55.673854],[-6.49475,55.672563],[-6.491936,55.671829],[-6.489175,55.671874],[-6.488241,55.671018],[-6.485517,55.672252],[-6.483365,55.672843],[-6.481891,55.672551],[-6.482358,55.674328],[-6.479215,55.674695],[-6.476647,55.675621],[-6.476429,55.676636],[-6.474327,55.677604],[-6.472897,55.680089],[-6.474494,55.681011],[-6.470978,55.681099],[-6.469404,55.681806],[-6.468211,55.681267],[-6.464833,55.682319],[-6.46493,55.682925],[-6.46237,55.683518],[-6.461978,55.684121],[-6.458925,55.685559],[-6.457193,55.686634],[-6.454762,55.686749],[-6.452599,55.688029],[-6.450944,55.688246],[-6.450884,55.689859],[-6.449631,55.690354],[-6.446046,55.69047],[-6.443966,55.690802],[-6.443352,55.691778],[-6.440644,55.692123],[-6.437282,55.693716],[-6.437677,55.694812],[-6.435928,55.694747],[-6.433525,55.695345],[-6.433409,55.696006],[-6.431259,55.696569],[-6.427541,55.698822],[-6.426824,55.698677],[-6.425096,55.700535],[-6.422343,55.701447],[-6.414763,55.706042],[-6.413325,55.707983],[-6.412104,55.710856],[-6.410658,55.711101],[-6.409073,55.712723],[-6.407479,55.713707],[-6.405695,55.714131],[-6.403616,55.716117],[-6.400083,55.718627],[-6.399816,55.719797],[-6.396925,55.721219],[-6.39673,55.72211],[-6.394985,55.722601],[-6.394907,55.723747],[-6.393004,55.725254],[-6.39037,55.726562],[-6.390042,55.727757],[-6.387759,55.728759],[-6.386912,55.729854],[-6.385567,55.730263],[-6.385148,55.731406],[-6.383259,55.733347],[-6.381951,55.735787],[-6.380471,55.736106],[-6.377518,55.738321],[-6.377169,55.739699],[-6.378153,55.740479],[-6.37808,55.741399],[-6.37601,55.742019],[-6.372982,55.744578],[-6.371795,55.744671],[-6.372302,55.746365],[-6.371785,55.747517],[-6.372108,55.748491],[-6.371076,55.749811],[-6.371124,55.750962],[-6.369368,55.752602],[-6.369502,55.753256],[-6.368622,55.75558],[-6.369444,55.756043],[-6.368322,55.757271],[-6.367011,55.757609],[-6.364755,55.759068],[-6.361543,55.76294],[-6.361868,55.765458],[-6.359113,55.767429],[-6.35912,55.768077],[-6.357142,55.768551],[-6.357012,55.770744],[-6.352817,55.775026],[-6.353153,55.776595],[-6.352427,55.777046],[-6.352648,55.778613],[-6.351889,55.780593],[-6.350814,55.781603],[-6.346598,55.784142],[-6.342708,55.785024],[-6.339939,55.785309],[-6.337003,55.785222],[-6.329464,55.7867],[-6.325014,55.786856],[-6.317591,55.786131],[-6.310986,55.784428],[-6.308327,55.783119],[-6.30585,55.782442],[-6.301976,55.782569],[-6.301304,55.784398],[-6.298885,55.784879],[-6.295876,55.784976],[-6.29132,55.784109],[-6.284588,55.781809],[-6.279849,55.78105],[-6.276088,55.781605],[-6.273187,55.7824],[-6.272395,55.78322],[-6.270678,55.782891],[-6.268664,55.783753],[-6.265651,55.783713],[-6.263121,55.784005],[-6.261415,55.783719],[-6.259382,55.78268],[-6.260264,55.781712],[-6.258302,55.77965],[-6.256787,55.779427],[-6.255242,55.777637],[-6.253448,55.777378],[-6.252715,55.776191],[-6.252166,55.773498],[-6.252545,55.772649],[-6.255162,55.770689],[-6.258394,55.770617],[-6.260913,55.768762],[-6.260578,55.766828],[-6.261875,55.76384],[-6.265147,55.763856],[-6.275497,55.760709],[-6.28093,55.760245],[-6.286092,55.757596],[-6.288473,55.757768],[-6.293435,55.75657],[-6.295791,55.755494],[-6.299389,55.751942],[-6.305071,55.748313],[-6.307971,55.747712],[-6.310025,55.748332],[-6.31181,55.748472],[-6.314231,55.74938],[-6.314763,55.747486],[-6.316852,55.745038],[-6.322222,55.743828],[-6.324473,55.743084],[-6.327069,55.743635],[-6.328193,55.742844],[-6.329723,55.742691],[-6.330531,55.74193],[-6.332027,55.741734],[-6.332772,55.740661],[-6.33111,55.739315],[-6.332689,55.738391],[-6.331499,55.736643],[-6.333256,55.732655],[-6.336324,55.731364],[-6.339434,55.730368],[-6.340046,55.729566],[-6.338973,55.728594],[-6.337665,55.728582],[-6.336801,55.727835],[-6.33674,55.724993],[-6.335613,55.723739],[-6.338406,55.721959],[-6.337247,55.719868],[-6.339417,55.719107],[-6.341198,55.717139],[-6.34129,55.716137],[-6.338998,55.71691],[-6.33739,55.715554],[-6.333852,55.715983],[-6.332783,55.715461],[-6.332783,55.71417],[-6.330609,55.713536],[-6.328686,55.713838],[-6.327289,55.714567],[-6.32716,55.715983],[-6.325296,55.715207],[-6.323291,55.716583],[-6.318231,55.717152],[-6.315684,55.716667],[-6.314084,55.715814],[-6.312329,55.716299],[-6.306086,55.714081],[-6.301543,55.711956],[-6.291108,55.705144],[-6.287523,55.702191],[-6.285136,55.699192],[-6.282716,55.697752],[-6.276097,55.691255],[-6.269724,55.682208],[-6.268824,55.680555],[-6.270205,55.679582],[-6.269236,55.678449],[-6.267765,55.67801],[-6.265673,55.673857],[-6.262585,55.667289],[-6.261629,55.662012],[-6.260474,55.660464],[-6.259494,55.657818],[-6.260021,55.657696],[-6.262161,55.655576],[-6.263578,55.654928],[-6.267445,55.654147],[-6.26752,55.653514],[-6.269469,55.652785],[-6.270025,55.650689],[-6.272248,55.650777],[-6.27347,55.649527],[-6.27921,55.651173],[-6.282986,55.651344],[-6.285597,55.651246],[-6.289197,55.650275],[-6.290265,55.650689],[-6.294227,55.650385],[-6.29567,55.649621],[-6.296776,55.650165],[-6.298121,55.649798],[-6.300067,55.65014],[-6.303036,55.64862],[-6.303217,55.647512],[-6.304106,55.646708],[-6.305489,55.646749],[-6.306707,55.645914],[-6.308957,55.645619],[-6.309193,55.643066],[-6.3109,55.641243],[-6.310895,55.640282],[-6.313057,55.638243],[-6.314866,55.638989],[-6.315218,55.637632],[-6.316492,55.636423],[-6.315918,55.634891],[-6.318691,55.634375],[-6.319984,55.633051],[-6.321474,55.632865],[-6.322511,55.631533],[-6.321738,55.630913],[-6.322039,55.629486],[-6.321561,55.628421],[-6.322611,55.627757],[-6.325474,55.627332],[-6.325526,55.626296],[-6.326782,55.625428],[-6.32843,55.625388],[-6.328039,55.623004],[-6.329194,55.622143],[-6.327552,55.621095],[-6.329995,55.620345],[-6.331798,55.620829],[-6.33344,55.619661],[-6.331679,55.619452],[-6.330738,55.61714],[-6.330764,55.616205],[-6.332299,55.615039],[-6.331021,55.61457],[-6.330721,55.613605],[-6.332357,55.612078],[-6.331275,55.611],[-6.32931,55.611191],[-6.328243,55.61059],[-6.329789,55.607617],[-6.330853,55.607462],[-6.33309,55.605494],[-6.331673,55.605084],[-6.332808,55.603861],[-6.332788,55.603117],[-6.330777,55.603179],[-6.332987,55.601041],[-6.332278,55.600086],[-6.333713,55.599055],[-6.334661,55.597772],[-6.333991,55.597168],[-6.332035,55.597167],[-6.333348,55.595744],[-6.336178,55.595246],[-6.334421,55.593817],[-6.338077,55.591612],[-6.338245,55.589679],[-6.337071,55.589058],[-6.334068,55.589823],[-6.331418,55.589917],[-6.327866,55.588459],[-6.325649,55.588304],[-6.323439,55.588566],[-6.322028,55.588361],[-6.319787,55.589078],[-6.314154,55.588907],[-6.313303,55.588528],[-6.314249,55.587029],[-6.312385,55.58646],[-6.311967,55.583669],[-6.312879,55.582955],[-6.311892,55.582409],[-6.307491,55.583183],[-6.305094,55.583987],[-6.303265,55.583818],[-6.302471,55.58287],[-6.296375,55.580269],[-6.294617,55.579737],[-6.29161,55.58004],[-6.286225,55.581034],[-6.282483,55.580499],[-6.281927,55.58006],[-6.278531,55.580588],[-6.274503,55.579987],[-6.273099,55.580423],[-6.271753,55.579651],[-6.268993,55.580409],[-6.266771,55.579978],[-6.266316,55.581051],[-6.265094,55.58157],[-6.264564,55.583198],[-6.2634,55.583082],[-6.26158,55.586716],[-6.259169,55.58791],[-6.258783,55.589403],[-6.257382,55.589007],[-6.253857,55.589724],[-6.253449,55.590316],[-6.250287,55.591169],[-6.2484,55.590974],[-6.244958,55.591898],[-6.242171,55.591576],[-6.240964,55.591756],[-6.239913,55.592761],[-6.23805,55.593451],[-6.239497,55.594335],[-6.237671,55.595442],[-6.236072,55.595426],[-6.23436,55.596637],[-6.23456,55.599004],[-6.235443,55.599531],[-6.235941,55.600984],[-6.23357,55.603153],[-6.233058,55.604227],[-6.23087,55.605886],[-6.228026,55.605741],[-6.226717,55.606416],[-6.226578,55.607194],[-6.224828,55.608041],[-6.223686,55.609074],[-6.223277,55.611059],[-6.221454,55.611515],[-6.221448,55.612228],[-6.220177,55.613558],[-6.220488,55.614451],[-6.218857,55.615096],[-6.218772,55.615915],[-6.216382,55.61824],[-6.213004,55.619297],[-6.212942,55.620022],[-6.214982,55.621112],[-6.214877,55.622424],[-6.216019,55.622767],[-6.216597,55.623961],[-6.218706,55.624698],[-6.220111,55.626601],[-6.217638,55.629987],[-6.211658,55.631188],[-6.209062,55.630982],[-6.206962,55.631257],[-6.206401,55.632054],[-6.204302,55.632844],[-6.203504,55.63232],[-6.201933,55.633058],[-6.199937,55.633263],[-6.198395,55.632529],[-6.196519,55.633004],[-6.193951,55.632967],[-6.191229,55.631529],[-6.189634,55.629725],[-6.190731,55.628441],[-6.189194,55.627794],[-6.187556,55.629159],[-6.185531,55.629456],[-6.183599,55.628501],[-6.184891,55.626585],[-6.186638,55.626291],[-6.189524,55.625306],[-6.186466,55.624336],[-6.186003,55.62334],[-6.18258,55.623808],[-6.182767,55.624649],[-6.180681,55.625228],[-6.180118,55.624346],[-6.178421,55.624631],[-6.174285,55.62604],[-6.173196,55.627512],[-6.170449,55.628658],[-6.168172,55.628394],[-6.16552,55.630818],[-6.163673,55.630328],[-6.160725,55.630441],[-6.159771,55.629286],[-6.157657,55.628181],[-6.155584,55.628677],[-6.154046,55.62845],[-6.151604,55.629373],[-6.150389,55.628629],[-6.151897,55.627801],[-6.150661,55.627032],[-6.150848,55.625722],[-6.149398,55.625565],[-6.144616,55.626392],[-6.142663,55.627312],[-6.141132,55.627112],[-6.139204,55.628281],[-6.137377,55.628751],[-6.136516,55.630604],[-6.135215,55.631143],[-6.133138,55.630741],[-6.131811,55.631631],[-6.130232,55.63147],[-6.128495,55.631925],[-6.129412,55.632613],[-6.131272,55.632835],[-6.130892,55.633892],[-6.127107,55.634602],[-6.123799,55.635651],[-6.122821,55.635071],[-6.123455,55.633573],[-6.120972,55.633749],[-6.117366,55.635171],[-6.113438,55.636296],[-6.111786,55.637612],[-6.110547,55.637848],[-6.109982,55.63954],[-6.107272,55.639879],[-6.105078,55.640835],[-6.10305,55.640331],[-6.099454,55.642157],[-6.096676,55.643874],[-6.093653,55.644694],[-6.091764,55.646322],[-6.089318,55.645972],[-6.087751,55.647427],[-6.087999,55.64812],[-6.086286,55.648987],[-6.084689,55.648664],[-6.084524,55.64758],[-6.086289,55.64507],[-6.084915,55.644626],[-6.083736,55.643307],[-6.082287,55.642902],[-6.082857,55.64158],[-6.08048,55.640592],[-6.079508,55.641798],[-6.076955,55.641555],[-6.075462,55.642949],[-6.074273,55.6423],[-6.073374,55.643895],[-6.073373,55.645168],[-6.074526,55.645948],[-6.072774,55.647643],[-6.072542,55.64859],[-6.071396,55.649469],[-6.071369,55.650603],[-6.072236,55.651405],[-6.074242,55.651871],[-6.074012,55.652625],[-6.072466,55.65419],[-6.074771,55.656115],[-6.076599,55.656545],[-6.078163,55.657621],[-6.078381,55.659228],[-6.076793,55.660239],[-6.073148,55.659695],[-6.071733,55.660613],[-6.074267,55.662185],[-6.07206,55.663913],[-6.070165,55.663058],[-6.067098,55.662634],[-6.06567,55.661751],[-6.067016,55.660581],[-6.065482,55.659324],[-6.065699,55.657892],[-6.06166,55.660393],[-6.059845,55.66073],[-6.057783,55.659481],[-6.05355,55.662367],[-6.051271,55.6652],[-6.052242,55.665204],[-6.055095,55.663787],[-6.055491,55.664386],[-6.057843,55.664056],[-6.05833,55.664611],[-6.056101,55.666375],[-6.056475,55.66682],[-6.053457,55.668533],[-6.053409,55.669019],[-6.049875,55.671546],[-6.047462,55.670902],[-6.044848,55.6724],[-6.043862,55.673511],[-6.043559,55.674765],[-6.042033,55.674889],[-6.040787,55.676846],[-6.037308,55.677982],[-6.036539,55.677701],[-6.03823,55.675429],[-6.037658,55.673667],[-6.036022,55.674386],[-6.034932,55.674161],[-6.032376,55.674911],[-6.028255,55.676808],[-6.025182,55.678969],[-6.024206,55.681744],[-6.021788,55.682224],[-6.019971,55.684177],[-6.019787,55.684826],[-6.02226,55.684879],[-6.02444,55.684565],[-6.029052,55.682206],[-6.030176,55.6843],[-6.027671,55.684861],[-6.027684,55.68561],[-6.025664,55.686247],[-6.02304,55.688438],[-6.02447,55.689106],[-6.024331,55.690855],[-6.026064,55.691369],[-6.02462,55.692496],[-6.023496,55.694416],[-6.025124,55.694691],[-6.02611,55.695531],[-6.02819,55.695166],[-6.031162,55.693553],[-6.033279,55.692944],[-6.035701,55.694038],[-6.03621,55.695424],[-6.034025,55.698396],[-6.032177,55.698772],[-6.030581,55.701293],[-6.032119,55.700995],[-6.033144,55.70151],[-6.034974,55.701117],[-6.039385,55.703804],[-6.040109,55.705417],[-6.040497,55.708556],[-6.038013,55.711876],[-6.035662,55.712947],[-6.036632,55.715474],[-6.034361,55.717392],[-6.032174,55.71835],[-6.031468,55.722083],[-6.029926,55.722812],[-6.030002,55.725332],[-6.031701,55.726814],[-6.031019,55.728621],[-6.03371,55.72883],[-6.033324,55.730111],[-6.033948,55.730656],[-6.036675,55.730068],[-6.038134,55.730613],[-6.041056,55.730675],[-6.043382,55.732199],[-6.044302,55.733544],[-6.04579,55.73337],[-6.047559,55.734363],[-6.050162,55.737416],[-6.049828,55.739491],[-6.051315,55.739923],[-6.051829,55.741165],[-6.052834,55.741959],[-6.053077,55.743075],[-6.0507,55.74582],[-6.049418,55.749909],[-6.048129,55.751773],[-6.049093,55.752925],[-6.049066,55.754116],[-6.047128,55.755192],[-6.047789,55.756182],[-6.046893,55.75908],[-6.047606,55.761952],[-6.046912,55.763644],[-6.049691,55.76437],[-6.051704,55.765774],[-6.054796,55.769278],[-6.059623,55.771826],[-6.061846,55.774167],[-6.063307,55.775098],[-6.066095,55.776283],[-6.069813,55.776897],[-6.074642,55.77921],[-6.081535,55.781184],[-6.083979,55.782578],[-6.084889,55.78418],[-6.084585,55.785845],[-6.085902,55.788135],[-6.089373,55.788514],[-6.091119,55.789939],[-6.092059,55.791968],[-6.091389,55.793119],[-6.092107,55.79448],[-6.091427,55.795303],[-6.092477,55.795879],[-6.092815,55.798103],[-6.092392,55.799088],[-6.093195,55.800275],[-6.094383,55.800641],[-6.09557,55.802058],[-6.097273,55.802923],[-6.09942,55.806709],[-6.09938,55.807997],[-6.098579,55.808725],[-6.100715,55.809674],[-6.104031,55.812882],[-6.103333,55.81398],[-6.104599,55.814405],[-6.105255,55.816232],[-6.10489,55.817952],[-6.10593,55.819145],[-6.104225,55.822291],[-6.104681,55.822825],[-6.102333,55.82526],[-6.104097,55.82623],[-6.102719,55.829222],[-6.104057,55.830562],[-6.105183,55.83364],[-6.104584,55.835387],[-6.105161,55.836159],[-6.101941,55.839118],[-6.101447,55.840344],[-6.103159,55.842706],[-6.10259,55.843444],[-6.103252,55.844191],[-6.10375,55.847006],[-6.104602,55.847341],[-6.104735,55.848833],[-6.10652,55.850205],[-6.105597,55.851637],[-6.105923,55.852983],[-6.108018,55.853786],[-6.109319,55.854792],[-6.10922,55.856726],[-6.108659,55.857681],[-6.109702,55.860069],[-6.108988,55.861526],[-6.109233,55.862369],[-6.110648,55.863118],[-6.11061,55.864198],[-6.112415,55.865613],[-6.111229,55.86651],[-6.11222,55.867166],[-6.113155,55.869653],[-6.114716,55.871287],[-6.116411,55.872458],[-6.117558,55.877392],[-6.119065,55.878704],[-6.120157,55.882304],[-6.121509,55.883151],[-6.123172,55.882598],[-6.124437,55.882721],[-6.128068,55.884243],[-6.128981,55.885576],[-6.130178,55.885623],[-6.129264,55.887245],[-6.130416,55.887551],[-6.132071,55.889644],[-6.132177,55.892091],[-6.131044,55.895579],[-6.127729,55.897066],[-6.128364,55.898902],[-6.126239,55.902921],[-6.12652,55.904135],[-6.125334,55.906312],[-6.126429,55.908171],[-6.124159,55.910388],[-6.124225,55.911308],[-6.123164,55.912061],[-6.123563,55.914491],[-6.122596,55.916542],[-6.12194,55.916924],[-6.122253,55.918442],[-6.120874,55.919932],[-6.120398,55.92163],[-6.120601,55.923318],[-6.121531,55.924002],[-6.12108,55.924991],[-6.122418,55.927075],[-6.121552,55.929249],[-6.121755,55.930726],[-6.120512,55.931671],[-6.120581,55.933292],[-6.120094,55.934396],[-6.12112,55.934979],[-6.122954,55.937152],[-6.126801,55.937846]]],[[[-5.675006,55.953156],[-5.675905,55.954267],[-5.672634,55.956788],[-5.666735,55.962615],[-5.668277,55.962623],[-5.670275,55.961066],[-5.676168,55.954421],[-5.680297,55.951906],[-5.681003,55.953602],[-5.68269,55.953821],[-5.687793,55.95566],[-5.690224,55.955852],[-5.691579,55.957538],[-5.692945,55.956319],[-5.697139,55.955006],[-5.698906,55.953618],[-5.701489,55.950505],[-5.700182,55.950118],[-5.702813,55.946294],[-5.701632,55.946177],[-5.70607,55.938764],[-5.704291,55.939196],[-5.703387,55.93822],[-5.703219,55.937128],[-5.701187,55.936232],[-5.700007,55.93495],[-5.699231,55.932051],[-5.696847,55.933894],[-5.693777,55.933195],[-5.69415,55.931309],[-5.689755,55.934691],[-5.688636,55.935278],[-5.681681,55.943457],[-5.677639,55.947211],[-5.675809,55.949711],[-5.675006,55.953156]]],[[[-5.92058,55.966516],[-5.921691,55.966243],[-5.921274,55.964274],[-5.919241,55.96374],[-5.918279,55.965245],[-5.919817,55.96516],[-5.92058,55.966516]]],[[[-5.891377,55.96645],[-5.887838,55.969533],[-5.889847,55.969893],[-5.892781,55.967192],[-5.891377,55.96645]]],[[[-5.91123,55.969669],[-5.912045,55.969953],[-5.913685,55.969123],[-5.912389,55.968279],[-5.91123,55.969669]]],[[[-5.656732,55.979924],[-5.658281,55.980279],[-5.660818,55.979376],[-5.662207,55.977783],[-5.659998,55.977409],[-5.656699,55.978721],[-5.656732,55.979924]]],[[[-5.654687,55.979491],[-5.652022,55.982438],[-5.655484,55.982074],[-5.656231,55.980389],[-5.656189,55.979014],[-5.655272,55.978561],[-5.656086,55.977502],[-5.652917,55.978073],[-5.650949,55.979651],[-5.650919,55.980605],[-5.65285,55.98084],[-5.654687,55.979491]]],[[[-5.640832,55.986146],[-5.642836,55.985437],[-5.647738,55.982507],[-5.648044,55.980304],[-5.646884,55.980323],[-5.645653,55.98157],[-5.642248,55.983901],[-5.640832,55.986146]]],[[[-5.397562,55.998998],[-5.394586,56.001462],[-5.393908,56.003243],[-5.39443,56.004168],[-5.397518,56.001786],[-5.39998,55.999034],[-5.399844,55.99777],[-5.397562,55.998998]]],[[[-5.600004,56.00907],[-5.600575,56.010025],[-5.600131,56.011202],[-5.602012,56.011151],[-5.603535,56.011782],[-5.604838,56.010417],[-5.60696,56.00719],[-5.605287,56.005656],[-5.602683,56.007675],[-5.601782,56.007652],[-5.600004,56.00907]]],[[[-5.66869,56.014773],[-5.670675,56.013588],[-5.671604,56.012504],[-5.67013,56.012188],[-5.66869,56.014773]]],[[[-5.671696,56.013719],[-5.670274,56.014553],[-5.669077,56.016267],[-5.671673,56.015595],[-5.672862,56.013239],[-5.673849,56.012738],[-5.672785,56.011673],[-5.671696,56.013719]]],[[[-6.274064,56.000136],[-6.274901,56.000089],[-6.276994,55.998694],[-6.275339,55.997735],[-6.271678,55.999027],[-6.274064,56.000136]]],[[[-6.270352,56.000535],[-6.273647,56.000141],[-6.269284,55.998714],[-6.268058,55.99989],[-6.270352,56.000535]]],[[[-6.260288,56.001786],[-6.264889,56.002302],[-6.267271,56.003591],[-6.269788,56.002522],[-6.265611,55.999624],[-6.261896,55.998203],[-6.259858,55.99867],[-6.257786,55.998401],[-6.256784,55.998718],[-6.257384,55.999958],[-6.260288,56.001786]]],[[[-6.2182,56.007454],[-6.21987,56.00769],[-6.222205,56.006355],[-6.223499,56.00439],[-6.222004,56.003421],[-6.219496,56.00536],[-6.2182,56.007454]]],[[[-5.65805,56.027339],[-5.659197,56.027929],[-5.660934,56.026853],[-5.663969,56.024146],[-5.664464,56.02124],[-5.662674,56.020655],[-5.659595,56.022887],[-5.658719,56.026015],[-5.65805,56.027339]]],[[[-5.653477,56.026099],[-5.65189,56.028011],[-5.652472,56.028381],[-5.655028,56.027226],[-5.660173,56.021705],[-5.658963,56.021476],[-5.65542,56.025591],[-5.653477,56.026099]]],[[[-6.265296,56.015017],[-6.267607,56.01518],[-6.270666,56.014851],[-6.271149,56.014353],[-6.269007,56.013505],[-6.266611,56.013664],[-6.265194,56.014255],[-6.265296,56.015017]]],[[[-6.271403,56.018171],[-6.273483,56.018755],[-6.275802,56.018747],[-6.277679,56.018295],[-6.277998,56.017483],[-6.27628,56.015956],[-6.27172,56.016397],[-6.271525,56.015433],[-6.27036,56.015131],[-6.266245,56.015483],[-6.263077,56.015135],[-6.263413,56.015922],[-6.26233,56.016921],[-6.264982,56.018192],[-6.271403,56.018171]]],[[[-5.640383,56.044389],[-5.642264,56.043406],[-5.64421,56.041882],[-5.644031,56.040774],[-5.645497,56.038523],[-5.645747,56.037338],[-5.64387,56.037614],[-5.640055,56.04248],[-5.640383,56.044389]]],[[[-6.219454,56.02695],[-6.219573,56.02789],[-6.226374,56.028471],[-6.227317,56.02843],[-6.23137,56.026942],[-6.231264,56.026199],[-6.234783,56.025264],[-6.236552,56.025504],[-6.239249,56.026662],[-6.241262,56.026498],[-6.242402,56.026854],[-6.247036,56.026785],[-6.250134,56.02626],[-6.254417,56.025995],[-6.254837,56.025441],[-6.257097,56.024737],[-6.259903,56.024622],[-6.262515,56.024865],[-6.263962,56.024513],[-6.265629,56.024851],[-6.266611,56.024363],[-6.269471,56.0243],[-6.271245,56.023717],[-6.270649,56.022537],[-6.272801,56.020214],[-6.270197,56.019688],[-6.266224,56.019218],[-6.260016,56.019314],[-6.258802,56.018796],[-6.259284,56.017613],[-6.260896,56.017003],[-6.2615,56.016218],[-6.260121,56.015845],[-6.256902,56.015759],[-6.254761,56.015245],[-6.252867,56.013517],[-6.252329,56.011052],[-6.255556,56.009807],[-6.254766,56.008027],[-6.25511,56.006414],[-6.257577,56.006225],[-6.258712,56.005304],[-6.256512,56.003766],[-6.255841,56.002777],[-6.258252,56.001714],[-6.257268,56.001019],[-6.253882,56.000507],[-6.252711,56.001316],[-6.251348,56.001404],[-6.248276,56.002805],[-6.24696,56.004923],[-6.24435,56.004986],[-6.242211,56.005672],[-6.24037,56.005497],[-6.239573,56.0065],[-6.23741,56.007272],[-6.235562,56.009008],[-6.235711,56.010073],[-6.234891,56.011972],[-6.233394,56.01319],[-6.233217,56.014173],[-6.23393,56.015548],[-6.231142,56.018986],[-6.228762,56.019512],[-6.226166,56.019649],[-6.22484,56.019269],[-6.22276,56.019866],[-6.218711,56.019124],[-6.218526,56.020444],[-6.216686,56.020502],[-6.21559,56.021349],[-6.21376,56.021789],[-6.210486,56.02071],[-6.209999,56.018743],[-6.208058,56.019722],[-6.205937,56.019925],[-6.209569,56.021501],[-6.209223,56.022669],[-6.210271,56.023231],[-6.211244,56.024564],[-6.211437,56.025889],[-6.210691,56.02671],[-6.21335,56.027379],[-6.216227,56.026588],[-6.217935,56.026494],[-6.219454,56.02695]]],[[[-6.246306,56.029571],[-6.247371,56.028594],[-6.244995,56.028312],[-6.244345,56.028829],[-6.246306,56.029571]]],[[[-5.566093,56.092295],[-5.566995,56.092983],[-5.56836,56.092154],[-5.567712,56.089789],[-5.566891,56.089625],[-5.565393,56.090829],[-5.56714,56.091049],[-5.566093,56.092295]]],[[[-5.239512,56.101651],[-5.239767,56.102673],[-5.240973,56.102772],[-5.241464,56.101051],[-5.239512,56.101651]]],[[[-5.54036,56.093228],[-5.538911,56.094875],[-5.54092,56.095379],[-5.542982,56.092793],[-5.541695,56.092615],[-5.54036,56.093228]]],[[[-5.57556,56.110739],[-5.575101,56.112389],[-5.576242,56.112443],[-5.577138,56.110348],[-5.57556,56.110739]]],[[[-5.619331,56.112137],[-5.617084,56.113493],[-5.618103,56.114569],[-5.620689,56.112726],[-5.619331,56.112137]]],[[[-5.576124,56.12184],[-5.57683,56.122678],[-5.578741,56.120829],[-5.577128,56.120777],[-5.576124,56.12184]]],[[[-5.607166,56.123571],[-5.60835,56.124012],[-5.61184,56.123802],[-5.612673,56.123119],[-5.613234,56.120394],[-5.614878,56.119617],[-5.615381,56.117725],[-5.613887,56.117776],[-5.611781,56.118886],[-5.608894,56.121142],[-5.607166,56.123571]]],[[[-5.643109,56.132742],[-5.641544,56.133979],[-5.642576,56.135531],[-5.644908,56.134226],[-5.6444,56.133365],[-5.645286,56.132349],[-5.646538,56.132479],[-5.648398,56.130108],[-5.647224,56.128934],[-5.645256,56.129743],[-5.644014,56.131079],[-5.643121,56.131339],[-5.643109,56.132742]]],[[[-5.55608,56.141903],[-5.559323,56.14192],[-5.562428,56.140551],[-5.565581,56.137911],[-5.566923,56.136231],[-5.569252,56.134604],[-5.570209,56.133205],[-5.570818,56.131093],[-5.572575,56.13043],[-5.574204,56.128032],[-5.572022,56.128113],[-5.570791,56.129507],[-5.568531,56.130309],[-5.568103,56.131072],[-5.565556,56.130953],[-5.564157,56.132274],[-5.562039,56.133482],[-5.560373,56.133575],[-5.557182,56.136584],[-5.557001,56.138105],[-5.556026,56.139878],[-5.556516,56.14096],[-5.55608,56.141903]]],[[[-5.554769,56.145283],[-5.555162,56.145912],[-5.557348,56.145256],[-5.557565,56.144027],[-5.558775,56.144055],[-5.560118,56.143342],[-5.559635,56.142731],[-5.55671,56.143148],[-5.556503,56.143954],[-5.554769,56.145283]]],[[[-5.627527,56.14428],[-5.630255,56.1436],[-5.629701,56.141955],[-5.627675,56.14297],[-5.627527,56.14428]]],[[[-5.743465,56.144461],[-5.743731,56.145626],[-5.74561,56.145241],[-5.745219,56.144286],[-5.743465,56.144461]]],[[[-6.146648,56.13285],[-6.147595,56.133646],[-6.152721,56.131751],[-6.150882,56.130905],[-6.148747,56.131633],[-6.147853,56.130741],[-6.149328,56.130381],[-6.149232,56.129337],[-6.152703,56.128901],[-6.154339,56.128023],[-6.155626,56.127933],[-6.158175,56.12649],[-6.158275,56.124508],[-6.161188,56.124046],[-6.164115,56.124661],[-6.167523,56.12367],[-6.169637,56.122376],[-6.168061,56.121105],[-6.16848,56.120049],[-6.171458,56.119411],[-6.173602,56.120936],[-6.175805,56.120776],[-6.178225,56.119561],[-6.178007,56.118417],[-6.179168,56.117784],[-6.18083,56.117672],[-6.180902,56.115255],[-6.1787,56.114957],[-6.176459,56.116021],[-6.176235,56.114813],[-6.178217,56.114392],[-6.177427,56.113234],[-6.180024,56.112621],[-6.179836,56.111629],[-6.177941,56.111154],[-6.179204,56.109663],[-6.175784,56.108111],[-6.175259,56.106833],[-6.177399,56.105043],[-6.179604,56.103934],[-6.186234,56.10213],[-6.187735,56.103213],[-6.190906,56.103955],[-6.191453,56.105178],[-6.192661,56.10593],[-6.198207,56.106165],[-6.200307,56.107652],[-6.2048,56.107886],[-6.205264,56.107077],[-6.207447,56.106837],[-6.2079,56.105574],[-6.209486,56.105794],[-6.210763,56.10521],[-6.211888,56.105624],[-6.213683,56.105484],[-6.211289,56.102925],[-6.211109,56.100956],[-6.215514,56.099231],[-6.21688,56.099508],[-6.218197,56.098533],[-6.222468,56.098305],[-6.22327,56.097257],[-6.224921,56.09734],[-6.225937,56.096631],[-6.226395,56.094286],[-6.227612,56.093201],[-6.232458,56.094042],[-6.233533,56.093506],[-6.233879,56.091965],[-6.234887,56.090383],[-6.236018,56.090646],[-6.238384,56.088312],[-6.242201,56.087339],[-6.244541,56.085429],[-6.245856,56.085685],[-6.246741,56.084741],[-6.246408,56.083548],[-6.249069,56.081064],[-6.248447,56.080447],[-6.248833,56.078922],[-6.248278,56.078334],[-6.248766,56.076636],[-6.253455,56.075326],[-6.252842,56.074881],[-6.248759,56.073942],[-6.246134,56.074276],[-6.243846,56.074105],[-6.241306,56.073423],[-6.241316,56.072567],[-6.24382,56.072098],[-6.249327,56.070055],[-6.249205,56.068513],[-6.248182,56.067909],[-6.248502,56.067098],[-6.249922,56.066046],[-6.251679,56.065941],[-6.25282,56.066522],[-6.254363,56.066518],[-6.258343,56.065796],[-6.256491,56.064879],[-6.255982,56.063915],[-6.253381,56.064772],[-6.251745,56.064761],[-6.248914,56.064154],[-6.247052,56.064206],[-6.245609,56.063354],[-6.248047,56.062019],[-6.250578,56.062342],[-6.250854,56.061761],[-6.255683,56.060391],[-6.256899,56.058858],[-6.260202,56.058696],[-6.259765,56.058084],[-6.261322,56.057167],[-6.257758,56.056239],[-6.257773,56.055104],[-6.255079,56.056034],[-6.251974,56.056015],[-6.249467,56.056815],[-6.248207,56.056253],[-6.247856,56.055248],[-6.248824,56.05419],[-6.250801,56.054702],[-6.252987,56.054338],[-6.254579,56.05333],[-6.25692,56.053501],[-6.257795,56.05312],[-6.256127,56.051114],[-6.256755,56.050543],[-6.255083,56.048865],[-6.256981,56.048152],[-6.25893,56.047905],[-6.259745,56.046743],[-6.263136,56.045726],[-6.26573,56.045643],[-6.268506,56.044884],[-6.269004,56.042908],[-6.267906,56.041989],[-6.270227,56.039837],[-6.271221,56.04],[-6.274557,56.039562],[-6.276058,56.038606],[-6.278805,56.039185],[-6.279786,56.038247],[-6.279799,56.036987],[-6.278728,56.035878],[-6.274847,56.035068],[-6.272082,56.035339],[-6.268737,56.036107],[-6.266736,56.037045],[-6.265086,56.036944],[-6.264679,56.037912],[-6.26259,56.038354],[-6.262068,56.039497],[-6.257529,56.041545],[-6.256643,56.041294],[-6.253383,56.042628],[-6.251104,56.043089],[-6.250295,56.044498],[-6.246343,56.045376],[-6.243835,56.044487],[-6.24269,56.043577],[-6.243004,56.041246],[-6.24607,56.039544],[-6.247722,56.039294],[-6.248773,56.038268],[-6.250869,56.037899],[-6.251458,56.036975],[-6.252952,56.036384],[-6.251121,56.035664],[-6.249671,56.034235],[-6.248487,56.035009],[-6.246348,56.034912],[-6.245851,56.03434],[-6.24333,56.034858],[-6.240502,56.033611],[-6.239957,56.032236],[-6.2374,56.03294],[-6.235288,56.034478],[-6.232672,56.033763],[-6.228711,56.034264],[-6.230629,56.036523],[-6.228575,56.037128],[-6.22676,56.03809],[-6.226442,56.039329],[-6.224621,56.039925],[-6.221305,56.040122],[-6.218675,56.039073],[-6.220215,56.038022],[-6.218373,56.037343],[-6.218182,56.035448],[-6.218815,56.034477],[-6.220568,56.033468],[-6.219977,56.031955],[-6.21736,56.032036],[-6.217178,56.031399],[-6.219047,56.030944],[-6.219568,56.030346],[-6.217899,56.028298],[-6.216585,56.028177],[-6.213156,56.029729],[-6.209795,56.030568],[-6.206531,56.03054],[-6.204766,56.03078],[-6.204527,56.032119],[-6.200855,56.034174],[-6.19861,56.035163],[-6.197328,56.036304],[-6.195657,56.036959],[-6.193662,56.036995],[-6.19398,56.037938],[-6.196323,56.037692],[-6.194482,56.039306],[-6.192506,56.038793],[-6.189761,56.040069],[-6.188747,56.041677],[-6.187745,56.041253],[-6.186269,56.042009],[-6.184717,56.043775],[-6.185018,56.045887],[-6.187598,56.045525],[-6.188506,56.04701],[-6.187409,56.048598],[-6.184861,56.049476],[-6.18235,56.052174],[-6.184834,56.054037],[-6.188062,56.055573],[-6.189589,56.055494],[-6.190575,56.056729],[-6.189735,56.057216],[-6.189771,56.058577],[-6.192394,56.059715],[-6.194796,56.059851],[-6.196995,56.060649],[-6.196664,56.061779],[-6.192085,56.063454],[-6.188942,56.064118],[-6.187091,56.063947],[-6.186061,56.064679],[-6.183891,56.064973],[-6.181551,56.066298],[-6.18126,56.067104],[-6.18617,56.068482],[-6.187062,56.070015],[-6.185821,56.070089],[-6.183005,56.071176],[-6.18242,56.072592],[-6.181411,56.072727],[-6.179416,56.074],[-6.177637,56.074128],[-6.176927,56.074751],[-6.173995,56.074869],[-6.172133,56.076247],[-6.1677,56.078032],[-6.165436,56.081117],[-6.166753,56.081625],[-6.163905,56.084734],[-6.164719,56.086388],[-6.163158,56.088019],[-6.163692,56.089458],[-6.162836,56.091138],[-6.159575,56.091702],[-6.158733,56.092328],[-6.158775,56.094724],[-6.15937,56.095463],[-6.155938,56.096461],[-6.155625,56.097442],[-6.15648,56.097904],[-6.151595,56.099687],[-6.15241,56.100231],[-6.15216,56.101566],[-6.150596,56.102059],[-6.149826,56.10298],[-6.150136,56.104359],[-6.151145,56.105211],[-6.149474,56.106279],[-6.148113,56.10605],[-6.146384,56.106432],[-6.144093,56.108393],[-6.144755,56.109158],[-6.143076,56.110388],[-6.144442,56.110958],[-6.14363,56.111867],[-6.14176,56.112603],[-6.142625,56.114123],[-6.141419,56.115255],[-6.137571,56.117642],[-6.137306,56.118847],[-6.133978,56.120312],[-6.13308,56.121241],[-6.133,56.122444],[-6.137146,56.122224],[-6.13966,56.122842],[-6.140352,56.124482],[-6.139225,56.126053],[-6.137891,56.126831],[-6.139462,56.128037],[-6.142016,56.127974],[-6.140816,56.12962],[-6.143018,56.129582],[-6.146179,56.130748],[-6.147219,56.131878],[-6.146648,56.13285]]],[[[-5.619553,56.151732],[-5.622512,56.151672],[-5.623791,56.151064],[-5.62462,56.149943],[-5.62336,56.14819],[-5.624987,56.146407],[-5.625568,56.145156],[-5.624007,56.144467],[-5.623308,56.145594],[-5.621893,56.146561],[-5.622092,56.147648],[-5.620756,56.148595],[-5.621177,56.149392],[-5.619954,56.150336],[-5.619553,56.151732]]],[[[-5.704035,56.148588],[-5.707439,56.149006],[-5.709324,56.149663],[-5.712294,56.148325],[-5.713627,56.148784],[-5.715934,56.148409],[-5.7212,56.148133],[-5.722459,56.147587],[-5.722639,56.146781],[-5.724156,56.146254],[-5.724029,56.144676],[-5.722819,56.142865],[-5.720773,56.141685],[-5.719762,56.141855],[-5.717776,56.140387],[-5.718089,56.139955],[-5.722221,56.139304],[-5.721538,56.138447],[-5.722121,56.137556],[-5.724242,56.137625],[-5.724259,56.138463],[-5.725692,56.139042],[-5.72537,56.139756],[-5.727688,56.140793],[-5.728161,56.141611],[-5.730487,56.141932],[-5.733595,56.141343],[-5.738445,56.141208],[-5.736928,56.140424],[-5.737917,56.138822],[-5.735488,56.137622],[-5.735949,56.136807],[-5.741202,56.138006],[-5.744737,56.138254],[-5.745939,56.137619],[-5.746687,56.135708],[-5.747938,56.135662],[-5.749205,56.134784],[-5.74729,56.132894],[-5.74818,56.13203],[-5.746412,56.131644],[-5.746877,56.129728],[-5.748404,56.128049],[-5.749271,56.128927],[-5.750992,56.128011],[-5.752113,56.128525],[-5.753455,56.128089],[-5.756166,56.125656],[-5.755219,56.125207],[-5.754259,56.123789],[-5.756124,56.12337],[-5.756791,56.122098],[-5.760384,56.122132],[-5.760702,56.122586],[-5.759415,56.124086],[-5.760108,56.124744],[-5.76188,56.123773],[-5.765423,56.122882],[-5.767161,56.122218],[-5.769033,56.122102],[-5.771189,56.12079],[-5.770018,56.120494],[-5.769793,56.119592],[-5.771429,56.119201],[-5.771595,56.118018],[-5.774457,56.116757],[-5.775611,56.117283],[-5.777989,56.117332],[-5.778961,56.116493],[-5.779783,56.114782],[-5.782247,56.114801],[-5.781004,56.11304],[-5.781839,56.111792],[-5.783233,56.11107],[-5.78384,56.109631],[-5.785187,56.108439],[-5.787615,56.107847],[-5.789642,56.108338],[-5.790417,56.109505],[-5.790525,56.110846],[-5.791684,56.111427],[-5.791917,56.112632],[-5.793435,56.112452],[-5.795668,56.113143],[-5.79708,56.113027],[-5.798259,56.112002],[-5.800449,56.111773],[-5.802006,56.110102],[-5.803483,56.109903],[-5.804672,56.108842],[-5.803252,56.107487],[-5.804128,56.106664],[-5.804537,56.105181],[-5.803104,56.104277],[-5.804254,56.103459],[-5.806085,56.10373],[-5.807666,56.103304],[-5.808816,56.103624],[-5.811382,56.103136],[-5.81317,56.101201],[-5.815153,56.101405],[-5.817912,56.100681],[-5.820293,56.098158],[-5.821891,56.097163],[-5.823277,56.095731],[-5.823319,56.095019],[-5.821742,56.092577],[-5.820963,56.089989],[-5.822902,56.089034],[-5.824911,56.089252],[-5.82645,56.088879],[-5.829028,56.089253],[-5.830225,56.088753],[-5.832131,56.089323],[-5.835994,56.089266],[-5.837268,56.088984],[-5.838526,56.087969],[-5.837854,56.086628],[-5.840016,56.086189],[-5.841872,56.084583],[-5.844026,56.084817],[-5.84505,56.08291],[-5.848253,56.083345],[-5.84908,56.082204],[-5.852752,56.080889],[-5.854952,56.081742],[-5.857466,56.079307],[-5.861012,56.07867],[-5.862779,56.078817],[-5.864201,56.077837],[-5.864315,56.076975],[-5.86643,56.077219],[-5.868823,56.075755],[-5.871656,56.074978],[-5.872754,56.073743],[-5.874213,56.073544],[-5.876116,56.071843],[-5.879163,56.070488],[-5.880082,56.069322],[-5.882885,56.069139],[-5.885729,56.067445],[-5.886981,56.067427],[-5.888157,56.068177],[-5.890258,56.067005],[-5.891733,56.06725],[-5.892938,56.066803],[-5.895465,56.064844],[-5.898636,56.064074],[-5.903495,56.061281],[-5.903636,56.059743],[-5.904882,56.057995],[-5.90392,56.057383],[-5.903974,56.056491],[-5.904988,56.055388],[-5.910473,56.053695],[-5.911011,56.052819],[-5.912411,56.052523],[-5.914554,56.051317],[-5.915137,56.050098],[-5.916402,56.049343],[-5.91967,56.048057],[-5.922817,56.047556],[-5.924748,56.047747],[-5.926642,56.047178],[-5.929453,56.045353],[-5.930633,56.045185],[-5.932139,56.043959],[-5.933768,56.04379],[-5.93625,56.04229],[-5.939892,56.04122],[-5.944843,56.03827],[-5.948183,56.038095],[-5.950005,56.037533],[-5.951371,56.036203],[-5.953855,56.035364],[-5.955418,56.03432],[-5.95596,56.032162],[-5.957581,56.031679],[-5.958215,56.030426],[-5.961151,56.029689],[-5.963967,56.027552],[-5.964059,56.026763],[-5.962825,56.025579],[-5.964428,56.023437],[-5.963847,56.022633],[-5.964577,56.020905],[-5.965736,56.02054],[-5.964046,56.018234],[-5.963766,56.016912],[-5.965364,56.014963],[-5.968166,56.014499],[-5.970685,56.014481],[-5.974027,56.013105],[-5.976254,56.011743],[-5.97612,56.009809],[-5.977417,56.007524],[-5.979263,56.006668],[-5.982288,56.005892],[-5.983263,56.00475],[-5.986448,56.002484],[-5.98691,56.00152],[-5.98881,56.001427],[-5.989543,55.999973],[-5.990427,55.999913],[-5.99301,55.996021],[-5.993268,55.994637],[-5.995831,55.992656],[-5.998393,55.991831],[-5.9991,55.990909],[-5.999584,55.988838],[-6.001574,55.988297],[-6.002398,55.985716],[-6.001221,55.985354],[-6.001429,55.984107],[-6.000229,55.982972],[-5.997843,55.982551],[-5.998887,55.981631],[-6.000001,55.979679],[-6.00223,55.978879],[-6.001671,55.97815],[-6.003035,55.977611],[-6.003071,55.97649],[-6.004814,55.975665],[-6.005364,55.974554],[-6.004802,55.973772],[-6.001376,55.97414],[-5.999728,55.975116],[-5.996889,55.975753],[-5.994074,55.975724],[-5.990011,55.974358],[-5.988297,55.971876],[-5.980124,55.969982],[-5.976309,55.971398],[-5.973203,55.971032],[-5.971377,55.969522],[-5.972135,55.968222],[-5.971346,55.967802],[-5.971101,55.966378],[-5.968236,55.966243],[-5.968601,55.965422],[-5.967499,55.964765],[-5.965887,55.964911],[-5.965298,55.966126],[-5.963501,55.966746],[-5.962705,55.967769],[-5.961272,55.968363],[-5.959437,55.968362],[-5.955749,55.967174],[-5.953939,55.965827],[-5.951892,55.965506],[-5.950638,55.964503],[-5.949919,55.963276],[-5.947568,55.963486],[-5.945072,55.96291],[-5.942335,55.963025],[-5.940139,55.961926],[-5.940373,55.960374],[-5.938407,55.960817],[-5.936714,55.963011],[-5.934883,55.962346],[-5.9337,55.962465],[-5.932302,55.963773],[-5.930664,55.964293],[-5.929765,55.963813],[-5.929133,55.962318],[-5.927117,55.96284],[-5.924577,55.962288],[-5.920935,55.969383],[-5.917816,55.97057],[-5.918485,55.971956],[-5.91651,55.973588],[-5.914237,55.974506],[-5.912976,55.974406],[-5.91213,55.972936],[-5.911075,55.97257],[-5.908599,55.974096],[-5.905889,55.973301],[-5.903538,55.974958],[-5.902696,55.976614],[-5.900977,55.976812],[-5.896549,55.974348],[-5.895145,55.974262],[-5.893597,55.975695],[-5.893992,55.976799],[-5.895557,55.977634],[-5.897282,55.977966],[-5.896837,55.978961],[-5.893517,55.982408],[-5.89228,55.981807],[-5.890535,55.981997],[-5.890073,55.980357],[-5.891153,55.97906],[-5.89283,55.978193],[-5.893309,55.977211],[-5.891282,55.977145],[-5.889956,55.978234],[-5.887557,55.979106],[-5.88638,55.980474],[-5.885151,55.980454],[-5.88647,55.97682],[-5.888186,55.975705],[-5.887021,55.975364],[-5.884081,55.975556],[-5.883326,55.974419],[-5.886541,55.972902],[-5.88795,55.972718],[-5.888944,55.970964],[-5.886851,55.969842],[-5.88468,55.969215],[-5.882478,55.969887],[-5.88122,55.971176],[-5.879866,55.973742],[-5.876925,55.975592],[-5.874391,55.974876],[-5.872423,55.975397],[-5.870985,55.976413],[-5.869233,55.976059],[-5.866418,55.977573],[-5.866048,55.978286],[-5.863778,55.97989],[-5.863628,55.981194],[-5.862391,55.98166],[-5.860315,55.984234],[-5.859108,55.984677],[-5.85911,55.985742],[-5.857848,55.986762],[-5.856308,55.989175],[-5.854269,55.989639],[-5.852774,55.989286],[-5.851413,55.987944],[-5.853148,55.986518],[-5.852531,55.985157],[-5.854346,55.984943],[-5.854148,55.983519],[-5.854632,55.981701],[-5.852608,55.982551],[-5.851802,55.981785],[-5.853465,55.980286],[-5.853029,55.979449],[-5.851541,55.979163],[-5.849924,55.979681],[-5.848138,55.979297],[-5.849369,55.978534],[-5.851942,55.978679],[-5.852848,55.978039],[-5.854613,55.977885],[-5.856236,55.976552],[-5.859495,55.976828],[-5.8631,55.974058],[-5.865426,55.973827],[-5.865508,55.975772],[-5.871595,55.973701],[-5.874041,55.972023],[-5.878574,55.972128],[-5.88018,55.971039],[-5.879899,55.969914],[-5.881682,55.968748],[-5.881369,55.968016],[-5.882679,55.967493],[-5.884598,55.96505],[-5.88625,55.965537],[-5.885623,55.967108],[-5.88472,55.967941],[-5.886681,55.969026],[-5.892838,55.964798],[-5.895553,55.965571],[-5.897838,55.965306],[-5.898906,55.963604],[-5.901743,55.962327],[-5.903228,55.962028],[-5.9062,55.959946],[-5.909636,55.960475],[-5.912836,55.959223],[-5.915,55.957639],[-5.915879,55.956419],[-5.918231,55.955985],[-5.920162,55.956845],[-5.919318,55.958562],[-5.920887,55.958879],[-5.922619,55.958318],[-5.923437,55.959633],[-5.92548,55.959103],[-5.9271,55.959429],[-5.930077,55.95946],[-5.932281,55.958036],[-5.933239,55.958712],[-5.934664,55.957987],[-5.936051,55.956014],[-5.939838,55.954715],[-5.943069,55.954971],[-5.944476,55.954377],[-5.9475,55.95433],[-5.948596,55.955257],[-5.950207,55.955016],[-5.9543,55.95609],[-5.95914,55.95635],[-5.961113,55.955628],[-5.961356,55.954401],[-5.964375,55.952816],[-5.965225,55.952892],[-5.968698,55.951554],[-5.974352,55.950451],[-5.979365,55.949089],[-5.980773,55.949089],[-5.983522,55.950243],[-5.985833,55.951996],[-5.991518,55.950396],[-5.994592,55.949972],[-5.996835,55.950043],[-5.997917,55.950588],[-5.999158,55.952288],[-6.000293,55.952795],[-6.003595,55.952022],[-6.003469,55.951586],[-6.005667,55.950444],[-6.006872,55.950778],[-6.010693,55.947978],[-6.012833,55.947904],[-6.013532,55.948848],[-6.014993,55.94733],[-6.01672,55.946518],[-6.0205,55.946273],[-6.022097,55.947376],[-6.023622,55.947556],[-6.026074,55.947246],[-6.028038,55.946175],[-6.029386,55.944422],[-6.033317,55.942],[-6.037414,55.941335],[-6.041051,55.940109],[-6.043178,55.939913],[-6.043033,55.939289],[-6.045053,55.936848],[-6.046797,55.935284],[-6.050407,55.933115],[-6.055031,55.929159],[-6.055126,55.928076],[-6.056726,55.926292],[-6.057941,55.925816],[-6.060952,55.923361],[-6.063481,55.922436],[-6.063743,55.921191],[-6.064721,55.92021],[-6.065411,55.916473],[-6.066792,55.915218],[-6.068967,55.913819],[-6.069495,55.912129],[-6.072371,55.910244],[-6.072414,55.90928],[-6.073634,55.907936],[-6.073598,55.905842],[-6.075242,55.904807],[-6.07735,55.904224],[-6.078808,55.90325],[-6.07865,55.90217],[-6.080853,55.901986],[-6.082385,55.901485],[-6.085377,55.901552],[-6.085073,55.900339],[-6.086898,55.899501],[-6.086671,55.898186],[-6.087337,55.897139],[-6.088742,55.896566],[-6.087897,55.895614],[-6.092436,55.89214],[-6.092936,55.890882],[-6.093094,55.888745],[-6.092323,55.886743],[-6.092708,55.884698],[-6.094044,55.882954],[-6.093487,55.881843],[-6.092026,55.880889],[-6.092462,55.879562],[-6.091641,55.878299],[-6.093077,55.877194],[-6.094271,55.877523],[-6.093845,55.875307],[-6.094627,55.872929],[-6.096564,55.871874],[-6.095263,55.870929],[-6.094961,55.869348],[-6.09198,55.866479],[-6.090592,55.866292],[-6.089822,55.865359],[-6.087795,55.864865],[-6.086313,55.863466],[-6.087856,55.855411],[-6.088638,55.85418],[-6.089868,55.85332],[-6.089637,55.851833],[-6.090126,55.848644],[-6.091503,55.846826],[-6.086335,55.840034],[-6.086805,55.83652],[-6.087939,55.834537],[-6.086423,55.832513],[-6.085939,55.830706],[-6.083513,55.828068],[-6.082307,55.827388],[-6.082609,55.826609],[-6.081207,55.825127],[-6.080616,55.823452],[-6.081388,55.822131],[-6.080504,55.820631],[-6.079278,55.819759],[-6.077516,55.817048],[-6.07398,55.814769],[-6.072255,55.812784],[-6.072344,55.811887],[-6.069865,55.810858],[-6.068508,55.8091],[-6.065543,55.807854],[-6.064656,55.806089],[-6.055408,55.802766],[-6.051446,55.803131],[-6.047614,55.802668],[-6.046702,55.802042],[-6.041886,55.801791],[-6.041198,55.801081],[-6.03924,55.800525],[-6.037033,55.799253],[-6.035242,55.797149],[-6.035899,55.795493],[-6.031209,55.79605],[-6.029541,55.795273],[-6.028079,55.795267],[-6.023613,55.795998],[-6.021626,55.796707],[-6.016926,55.79764],[-6.013867,55.798056],[-6.009944,55.79803],[-6.005382,55.796999],[-6.001992,55.797019],[-5.999938,55.796223],[-5.998465,55.794855],[-5.991431,55.793901],[-5.988747,55.794811],[-5.986735,55.795821],[-5.984122,55.796333],[-5.981059,55.795807],[-5.979689,55.795289],[-5.980776,55.793276],[-5.978539,55.794194],[-5.978149,55.792165],[-5.976618,55.792192],[-5.974988,55.793414],[-5.97355,55.791918],[-5.971343,55.793437],[-5.97001,55.791871],[-5.968943,55.791896],[-5.967104,55.79366],[-5.965626,55.793496],[-5.963999,55.792439],[-5.962891,55.794205],[-5.962889,55.795412],[-5.961889,55.795812],[-5.961037,55.797183],[-5.960053,55.797611],[-5.959971,55.799044],[-5.957007,55.80203],[-5.958494,55.802715],[-5.958985,55.803693],[-5.957814,55.806464],[-5.95606,55.807514],[-5.955601,55.808892],[-5.954343,55.809166],[-5.953731,55.810364],[-5.951691,55.811837],[-5.951157,55.813491],[-5.952662,55.813366],[-5.953585,55.814982],[-5.952716,55.817285],[-5.951009,55.817852],[-5.95012,55.819792],[-5.948149,55.821308],[-5.946351,55.821374],[-5.945068,55.823138],[-5.942743,55.822812],[-5.93965,55.825943],[-5.941657,55.825575],[-5.942497,55.8259],[-5.94255,55.828245],[-5.943882,55.82885],[-5.942957,55.830206],[-5.946383,55.830922],[-5.94681,55.832358],[-5.949128,55.832831],[-5.951106,55.834597],[-5.950232,55.836258],[-5.950749,55.836589],[-5.94699,55.842536],[-5.945989,55.845531],[-5.944485,55.847356],[-5.944419,55.848882],[-5.945288,55.849807],[-5.94348,55.851959],[-5.942638,55.853678],[-5.94219,55.856549],[-5.939242,55.86068],[-5.939642,55.861049],[-5.936519,55.867399],[-5.930274,55.870239],[-5.925075,55.871214],[-5.92473,55.871621],[-5.918271,55.872237],[-5.917154,55.872568],[-5.913245,55.872266],[-5.911083,55.871606],[-5.906627,55.871028],[-5.905639,55.869877],[-5.906179,55.868403],[-5.905495,55.868205],[-5.902641,55.869406],[-5.901633,55.868687],[-5.902103,55.867072],[-5.896054,55.87153],[-5.898764,55.872843],[-5.894625,55.876548],[-5.895064,55.877582],[-5.896276,55.877944],[-5.898526,55.879401],[-5.89831,55.87988],[-5.900128,55.881338],[-5.900236,55.88392],[-5.898982,55.885529],[-5.899464,55.886192],[-5.89812,55.888425],[-5.89689,55.889161],[-5.897395,55.889886],[-5.893777,55.890986],[-5.893761,55.891463],[-5.891635,55.892286],[-5.88821,55.892843],[-5.881667,55.891499],[-5.881398,55.89001],[-5.881919,55.888978],[-5.881036,55.888628],[-5.881877,55.886717],[-5.881138,55.886296],[-5.882922,55.884535],[-5.881933,55.884238],[-5.886532,55.880316],[-5.88693,55.879022],[-5.876867,55.886962],[-5.876496,55.887872],[-5.875086,55.888092],[-5.875182,55.89066],[-5.876785,55.891244],[-5.877409,55.892329],[-5.877836,55.89488],[-5.87764,55.896846],[-5.875875,55.897843],[-5.874502,55.900038],[-5.876764,55.901608],[-5.87569,55.90336],[-5.876155,55.905206],[-5.873794,55.908496],[-5.871422,55.910391],[-5.87057,55.911565],[-5.868547,55.912707],[-5.868233,55.913976],[-5.869147,55.914716],[-5.868195,55.916001],[-5.868322,55.91744],[-5.864378,55.918112],[-5.862962,55.919254],[-5.860779,55.922339],[-5.858768,55.923336],[-5.85694,55.925198],[-5.855254,55.925876],[-5.853128,55.927615],[-5.852856,55.928981],[-5.850835,55.931693],[-5.851308,55.933557],[-5.849902,55.93384],[-5.850146,55.935005],[-5.848987,55.935757],[-5.848729,55.936704],[-5.847559,55.937424],[-5.846298,55.939491],[-5.850191,55.938601],[-5.851368,55.939396],[-5.850072,55.941675],[-5.850603,55.942261],[-5.849475,55.943187],[-5.848599,55.944833],[-5.847046,55.945808],[-5.846944,55.946562],[-5.843709,55.948439],[-5.84332,55.949768],[-5.841215,55.951322],[-5.841215,55.951893],[-5.83842,55.954975],[-5.837571,55.957083],[-5.837709,55.959286],[-5.836858,55.959834],[-5.836898,55.961699],[-5.834909,55.965574],[-5.834452,55.968164],[-5.836471,55.97025],[-5.835714,55.971268],[-5.832279,55.971469],[-5.830705,55.968343],[-5.827425,55.968603],[-5.824267,55.971529],[-5.822697,55.971299],[-5.820379,55.97308],[-5.817994,55.976697],[-5.81669,55.977457],[-5.816613,55.978304],[-5.814669,55.979403],[-5.814573,55.981519],[-5.813481,55.981432],[-5.812635,55.983913],[-5.810778,55.985166],[-5.811021,55.985604],[-5.808531,55.989718],[-5.808919,55.989913],[-5.808656,55.9931],[-5.806527,55.995265],[-5.804461,55.999061],[-5.80007,56.001809],[-5.797324,56.004659],[-5.794748,56.010938],[-5.793061,56.013211],[-5.790947,56.014409],[-5.789907,56.014436],[-5.788468,56.013267],[-5.783817,56.016103],[-5.783535,56.014452],[-5.782167,56.013681],[-5.776982,56.016452],[-5.77607,56.017563],[-5.775258,56.019688],[-5.772381,56.021466],[-5.768804,56.025366],[-5.768231,56.026894],[-5.768957,56.029403],[-5.767576,56.029567],[-5.763435,56.031999],[-5.76386,56.033448],[-5.763716,56.035452],[-5.762035,56.035815],[-5.760355,56.035632],[-5.758698,56.036676],[-5.755952,56.03908],[-5.75596,56.039902],[-5.754585,56.041357],[-5.757623,56.040904],[-5.755598,56.043609],[-5.754288,56.046005],[-5.755507,56.047717],[-5.753334,56.047675],[-5.751968,56.049569],[-5.748943,56.052251],[-5.746543,56.05583],[-5.738557,56.065033],[-5.737663,56.065267],[-5.736285,56.066882],[-5.73402,56.067985],[-5.731153,56.072095],[-5.731138,56.073162],[-5.727334,56.074477],[-5.725647,56.076236],[-5.724919,56.076464],[-5.724668,56.078662],[-5.721759,56.080342],[-5.720183,56.080933],[-5.718484,56.082315],[-5.715936,56.085818],[-5.713517,56.087838],[-5.712087,56.088515],[-5.710794,56.090293],[-5.710348,56.092339],[-5.708185,56.09502],[-5.705903,56.095871],[-5.703571,56.097803],[-5.702927,56.0978],[-5.697788,56.101407],[-5.697178,56.10276],[-5.697745,56.103642],[-5.697604,56.105274],[-5.696829,56.106673],[-5.69443,56.107828],[-5.692903,56.107847],[-5.689514,56.10892],[-5.688609,56.110642],[-5.68755,56.111433],[-5.687598,56.114035],[-5.689259,56.116165],[-5.690103,56.118166],[-5.691133,56.118843],[-5.691432,56.12003],[-5.693539,56.120848],[-5.694098,56.123155],[-5.693368,56.12427],[-5.688264,56.124256],[-5.6874,56.129182],[-5.688419,56.129741],[-5.691608,56.129074],[-5.692188,56.13001],[-5.691904,56.131358],[-5.692838,56.133673],[-5.692016,56.136853],[-5.693863,56.138812],[-5.697425,56.144127],[-5.700047,56.145006],[-5.701401,56.146582],[-5.704035,56.148588]]],[[[-5.565514,56.159123],[-5.566712,56.158522],[-5.56678,56.15709],[-5.565328,56.156799],[-5.563698,56.155732],[-5.562843,56.156939],[-5.563116,56.158055],[-5.565194,56.158224],[-5.565514,56.159123]]],[[[-5.602003,56.1605],[-5.604484,56.159551],[-5.605109,56.157883],[-5.602798,56.157415],[-5.602003,56.1605]]],[[[-5.551044,56.162883],[-5.55231,56.163452],[-5.554685,56.162703],[-5.557152,56.162897],[-5.558162,56.162495],[-5.55936,56.160815],[-5.559396,56.159812],[-5.561385,56.157282],[-5.56041,56.156496],[-5.558954,56.156691],[-5.556217,56.160276],[-5.555062,56.160482],[-5.553688,56.161595],[-5.552127,56.161963],[-5.551044,56.162883]]],[[[-5.528515,56.1667],[-5.527487,56.168485],[-5.531663,56.166763],[-5.533445,56.166604],[-5.53529,56.165207],[-5.537334,56.16509],[-5.539121,56.163937],[-5.538717,56.1634],[-5.543937,56.159812],[-5.544169,56.157261],[-5.546393,56.153425],[-5.547794,56.152945],[-5.551152,56.151063],[-5.555531,56.147247],[-5.55411,56.147507],[-5.553165,56.146694],[-5.549086,56.146744],[-5.548557,56.146428],[-5.543291,56.151752],[-5.540402,56.153966],[-5.540557,56.155737],[-5.537723,56.158637],[-5.536307,56.159356],[-5.535059,56.160767],[-5.530981,56.163114],[-5.530473,56.164603],[-5.527186,56.166527],[-5.528515,56.1667]]],[[[-5.546557,56.165224],[-5.543823,56.166877],[-5.542482,56.16893],[-5.540589,56.169986],[-5.540608,56.170894],[-5.537497,56.172026],[-5.536842,56.173488],[-5.533292,56.174664],[-5.530837,56.177328],[-5.527527,56.179545],[-5.527648,56.180076],[-5.530523,56.181843],[-5.530691,56.180226],[-5.535927,56.177812],[-5.538354,56.175643],[-5.540722,56.174662],[-5.542892,56.172244],[-5.545101,56.170855],[-5.54757,56.167803],[-5.548718,56.165433],[-5.546557,56.165224]]],[[[-5.638262,56.189408],[-5.638997,56.188479],[-5.640699,56.188833],[-5.639832,56.186071],[-5.63877,56.187191],[-5.636008,56.186885],[-5.63525,56.189016],[-5.638262,56.189408]]],[[[-5.68432,56.197724],[-5.686914,56.199852],[-5.690071,56.200809],[-5.691212,56.198838],[-5.692488,56.198188],[-5.693101,56.197185],[-5.694779,56.196771],[-5.696006,56.197291],[-5.698291,56.19623],[-5.699078,56.196867],[-5.702788,56.196535],[-5.703509,56.194985],[-5.706149,56.194263],[-5.710049,56.194125],[-5.710833,56.192922],[-5.714156,56.193101],[-5.717933,56.192717],[-5.721595,56.191236],[-5.725414,56.190711],[-5.727294,56.190142],[-5.729132,56.189143],[-5.73032,56.188014],[-5.731265,56.188197],[-5.732398,56.186742],[-5.731113,56.1863],[-5.732484,56.182738],[-5.73233,56.181147],[-5.734011,56.179617],[-5.736334,56.178396],[-5.736866,56.177323],[-5.738469,56.176816],[-5.740588,56.177305],[-5.740274,56.177858],[-5.742597,56.178318],[-5.744211,56.17701],[-5.747495,56.175874],[-5.747087,56.175012],[-5.748179,56.173981],[-5.746762,56.173175],[-5.748649,56.172605],[-5.749792,56.171181],[-5.750681,56.171526],[-5.751891,56.170235],[-5.750751,56.1697],[-5.751889,56.168478],[-5.751331,56.167722],[-5.7495,56.167944],[-5.747822,56.165369],[-5.748778,56.165003],[-5.74863,56.163825],[-5.74667,56.162082],[-5.745034,56.161565],[-5.74415,56.160674],[-5.740786,56.160709],[-5.740407,56.160046],[-5.737119,56.159539],[-5.733665,56.160143],[-5.731452,56.15909],[-5.729449,56.159038],[-5.726384,56.160659],[-5.724343,56.159467],[-5.721946,56.159256],[-5.720963,56.159587],[-5.718015,56.159428],[-5.71524,56.160555],[-5.711039,56.159773],[-5.70783,56.160913],[-5.7058,56.160245],[-5.703917,56.160603],[-5.700576,56.159629],[-5.698199,56.160293],[-5.695018,56.161647],[-5.694073,56.163384],[-5.691115,56.16412],[-5.689474,56.165913],[-5.687403,56.166411],[-5.686563,56.167826],[-5.684791,56.168247],[-5.68391,56.169402],[-5.681237,56.169257],[-5.679837,56.166916],[-5.677924,56.167391],[-5.677883,56.168229],[-5.676152,56.16841],[-5.674168,56.167881],[-5.672338,56.168218],[-5.670058,56.170574],[-5.670885,56.171472],[-5.671536,56.173394],[-5.670951,56.174446],[-5.671898,56.175326],[-5.672279,56.176699],[-5.674535,56.177535],[-5.674273,56.178505],[-5.675886,56.179523],[-5.675635,56.180357],[-5.676887,56.180972],[-5.676977,56.181828],[-5.678848,56.183269],[-5.680154,56.186467],[-5.678665,56.186993],[-5.678541,56.18839],[-5.677458,56.189034],[-5.676722,56.191119],[-5.675966,56.191722],[-5.678716,56.192997],[-5.681171,56.193284],[-5.68303,56.194672],[-5.682656,56.195564],[-5.68432,56.197724]]],[[[-5.569785,56.205649],[-5.567521,56.208333],[-5.570004,56.209572],[-5.572715,56.20801],[-5.573842,56.206405],[-5.571628,56.205346],[-5.569785,56.205649]]],[[[-5.722103,56.209666],[-5.721866,56.208334],[-5.723867,56.207424],[-5.724507,56.206581],[-5.723992,56.205107],[-5.7218,56.205243],[-5.719288,56.20685],[-5.719546,56.208202],[-5.718823,56.208898],[-5.722103,56.209666]]],[[[-5.573383,56.220449],[-5.572348,56.221907],[-5.572282,56.224359],[-5.574464,56.221581],[-5.574805,56.220535],[-5.573383,56.220449]]],[[[-5.607469,56.227711],[-5.60927,56.228328],[-5.608887,56.229636],[-5.610671,56.229658],[-5.612947,56.226921],[-5.612205,56.225635],[-5.610656,56.225729],[-5.609885,56.224574],[-5.612543,56.224087],[-5.61369,56.223159],[-5.614635,56.220942],[-5.614682,56.219304],[-5.615648,56.218512],[-5.61677,56.216541],[-5.616973,56.213824],[-5.617392,56.213556],[-5.618576,56.209012],[-5.617334,56.207214],[-5.615142,56.206119],[-5.613293,56.206955],[-5.612032,56.20599],[-5.612107,56.203272],[-5.612775,56.20252],[-5.612099,56.200022],[-5.612733,56.198695],[-5.611695,56.198294],[-5.612338,56.196648],[-5.611292,56.195388],[-5.609322,56.196219],[-5.607076,56.196514],[-5.605723,56.19756],[-5.605989,56.198245],[-5.604039,56.198432],[-5.601971,56.199167],[-5.599479,56.201227],[-5.597304,56.201339],[-5.596601,56.202183],[-5.595152,56.202472],[-5.593277,56.203552],[-5.592172,56.203462],[-5.589691,56.204443],[-5.588717,56.207397],[-5.588888,56.208966],[-5.589789,56.210064],[-5.592378,56.2098],[-5.592907,56.210279],[-5.591897,56.21207],[-5.592296,56.213569],[-5.593422,56.213451],[-5.590482,56.217034],[-5.591588,56.217811],[-5.591278,56.218557],[-5.591742,56.220315],[-5.593552,56.220955],[-5.592335,56.221651],[-5.591295,56.223039],[-5.592941,56.223216],[-5.594654,56.225684],[-5.595721,56.226695],[-5.59902,56.226419],[-5.600099,56.227431],[-5.60153,56.227623],[-5.602701,56.229441],[-5.604627,56.228549],[-5.607469,56.227711]]],[[[-5.815279,56.216853],[-5.811274,56.218775],[-5.806751,56.220353],[-5.805901,56.221549],[-5.801879,56.221673],[-5.800671,56.222519],[-5.801064,56.223226],[-5.798058,56.227095],[-5.79787,56.22845],[-5.799863,56.229018],[-5.802501,56.227948],[-5.813186,56.221774],[-5.818782,56.216385],[-5.817942,56.216052],[-5.815279,56.216853]]],[[[-5.792942,56.231339],[-5.795123,56.230871],[-5.794342,56.229916],[-5.792942,56.231339]]],[[[-5.710858,56.235098],[-5.712599,56.234508],[-5.71394,56.233443],[-5.718037,56.234066],[-5.719167,56.233488],[-5.720625,56.233543],[-5.724237,56.232643],[-5.72522,56.231374],[-5.724372,56.230652],[-5.726057,56.230129],[-5.726949,56.228187],[-5.723908,56.22803],[-5.724863,56.226735],[-5.720039,56.227037],[-5.718446,56.227881],[-5.716067,56.22828],[-5.715644,56.229539],[-5.713691,56.230785],[-5.713569,56.232029],[-5.712114,56.231668],[-5.710684,56.232156],[-5.71082,56.23289],[-5.709517,56.234529],[-5.710858,56.235098]]],[[[-5.578758,56.237977],[-5.577044,56.238679],[-5.577643,56.239486],[-5.579922,56.239769],[-5.58121,56.238953],[-5.580793,56.23813],[-5.578758,56.237977]]],[[[-5.69037,56.235567],[-5.691562,56.235669],[-5.693743,56.234764],[-5.696388,56.231475],[-5.69512,56.230627],[-5.696959,56.229942],[-5.69895,56.228494],[-5.698174,56.225392],[-5.700561,56.226377],[-5.701815,56.226074],[-5.701345,56.224294],[-5.699866,56.223188],[-5.700591,56.221836],[-5.702885,56.221277],[-5.702607,56.220152],[-5.704307,56.219625],[-5.705815,56.220528],[-5.70713,56.220192],[-5.705526,56.218707],[-5.707066,56.21787],[-5.710248,56.218147],[-5.712417,56.218968],[-5.71279,56.214901],[-5.71526,56.211799],[-5.714578,56.209956],[-5.711136,56.208486],[-5.708166,56.208886],[-5.705925,56.210823],[-5.706205,56.213215],[-5.704112,56.213597],[-5.702393,56.213006],[-5.701362,56.212097],[-5.701381,56.210631],[-5.700475,56.209431],[-5.701166,56.207563],[-5.69967,56.206353],[-5.698306,56.205841],[-5.699768,56.204031],[-5.698285,56.202191],[-5.697008,56.201996],[-5.694608,56.202373],[-5.692654,56.203349],[-5.691101,56.202554],[-5.689045,56.202306],[-5.686073,56.20252],[-5.685434,56.203002],[-5.685665,56.204308],[-5.686576,56.204812],[-5.687625,56.206327],[-5.688945,56.206377],[-5.689013,56.207342],[-5.690425,56.208271],[-5.692628,56.208614],[-5.693139,56.20964],[-5.694544,56.209914],[-5.692844,56.211611],[-5.693827,56.212354],[-5.693075,56.214648],[-5.693466,56.215476],[-5.691853,56.216145],[-5.690789,56.218634],[-5.691515,56.221941],[-5.693041,56.222363],[-5.694828,56.221064],[-5.695904,56.221095],[-5.697689,56.222458],[-5.697679,56.223937],[-5.695639,56.222941],[-5.693785,56.222633],[-5.691721,56.223153],[-5.692523,56.227715],[-5.694826,56.228158],[-5.693447,56.229517],[-5.691952,56.228487],[-5.69037,56.235567]]],[[[-5.664731,56.239728],[-5.665603,56.239814],[-5.666935,56.238039],[-5.6669,56.236837],[-5.665717,56.23603],[-5.663923,56.235503],[-5.665195,56.234787],[-5.663875,56.233814],[-5.662959,56.23648],[-5.661925,56.237231],[-5.661893,56.238836],[-5.664731,56.239728]]],[[[-5.71819,56.23947],[-5.719228,56.239992],[-5.721257,56.239382],[-5.721158,56.238275],[-5.723895,56.237032],[-5.72132,56.235127],[-5.719875,56.234546],[-5.717928,56.23491],[-5.71715,56.235747],[-5.716182,56.237831],[-5.717673,56.23855],[-5.71819,56.23947]]],[[[-5.780773,56.238249],[-5.782121,56.236855],[-5.78381,56.237932],[-5.786465,56.237437],[-5.788965,56.235287],[-5.789019,56.234445],[-5.791033,56.233024],[-5.789566,56.232368],[-5.782987,56.234423],[-5.78233,56.236026],[-5.780651,56.23668],[-5.780773,56.238249]]],[[[-5.660383,56.244159],[-5.661352,56.243222],[-5.660337,56.241557],[-5.659575,56.244147],[-5.660383,56.244159]]],[[[-5.696157,56.243467],[-5.69643,56.242775],[-5.695371,56.241764],[-5.693634,56.242342],[-5.694758,56.24328],[-5.696157,56.243467]]],[[[-5.657095,56.24659],[-5.658136,56.245399],[-5.659274,56.241503],[-5.657985,56.241699],[-5.656924,56.244032],[-5.6577,56.245061],[-5.657095,56.24659]]],[[[-5.750829,56.245982],[-5.750054,56.246069],[-5.750145,56.248476],[-5.752283,56.249543],[-5.75394,56.249795],[-5.757623,56.249633],[-5.758579,56.248768],[-5.766231,56.24756],[-5.76951,56.246111],[-5.771921,56.245498],[-5.774977,56.243735],[-5.777213,56.241281],[-5.777833,56.239378],[-5.776291,56.23733],[-5.774953,56.236692],[-5.7721,56.237157],[-5.766906,56.239419],[-5.763315,56.240005],[-5.763847,56.241068],[-5.755984,56.241492],[-5.753391,56.2418],[-5.754371,56.242822],[-5.751363,56.244181],[-5.751472,56.245459],[-5.750829,56.245982]]],[[[-5.742736,56.25162],[-5.746065,56.250848],[-5.74723,56.25021],[-5.74824,56.248322],[-5.747586,56.247325],[-5.74603,56.247633],[-5.742191,56.25096],[-5.742736,56.25162]]],[[[-5.691322,56.253623],[-5.694639,56.253207],[-5.69381,56.250946],[-5.691054,56.250759],[-5.689317,56.251166],[-5.691322,56.253623]]],[[[-5.551528,56.255764],[-5.550802,56.255947],[-5.549748,56.257682],[-5.551083,56.258232],[-5.552126,56.25768],[-5.552693,56.256387],[-5.551528,56.255764]]],[[[-5.609377,56.265795],[-5.611597,56.265519],[-5.612387,56.264214],[-5.614358,56.263636],[-5.617766,56.261899],[-5.620479,56.257787],[-5.622419,56.255536],[-5.623772,56.255907],[-5.625282,56.25426],[-5.626239,56.253862],[-5.625479,56.252227],[-5.623325,56.251689],[-5.620922,56.254015],[-5.620443,56.252122],[-5.620664,56.250313],[-5.617242,56.250114],[-5.615165,56.250862],[-5.613645,56.250669],[-5.612104,56.25128],[-5.611793,56.253469],[-5.610767,56.254061],[-5.609573,56.25562],[-5.607933,56.256387],[-5.607022,56.259399],[-5.60857,56.262375],[-5.607842,56.263641],[-5.609788,56.264412],[-5.609377,56.265795]]],[[[-5.639035,56.270828],[-5.640306,56.270179],[-5.642006,56.268596],[-5.642777,56.267198],[-5.642234,56.266238],[-5.644744,56.266555],[-5.645756,56.265136],[-5.648044,56.264646],[-5.648372,56.263854],[-5.651429,56.261089],[-5.652331,56.259372],[-5.652789,56.25681],[-5.65415,56.256054],[-5.654042,56.254367],[-5.655734,56.253054],[-5.654208,56.252294],[-5.654703,56.249956],[-5.65396,56.248849],[-5.652331,56.248277],[-5.652601,56.247132],[-5.651394,56.246924],[-5.652599,56.244151],[-5.653491,56.243509],[-5.654186,56.240134],[-5.657591,56.235799],[-5.658287,56.237086],[-5.65982,56.23277],[-5.661654,56.232199],[-5.661314,56.230829],[-5.660364,56.230524],[-5.66201,56.227729],[-5.661322,56.225843],[-5.661793,56.22453],[-5.663117,56.223438],[-5.663782,56.220856],[-5.665222,56.220239],[-5.665746,56.218779],[-5.66356,56.218019],[-5.662348,56.218056],[-5.660588,56.217048],[-5.657031,56.217094],[-5.655894,56.215856],[-5.656467,56.214763],[-5.657959,56.21454],[-5.659594,56.213527],[-5.658225,56.212084],[-5.654884,56.209701],[-5.653238,56.209696],[-5.65017,56.208905],[-5.650728,56.208246],[-5.649617,56.207586],[-5.650702,56.206952],[-5.65063,56.205515],[-5.649664,56.204092],[-5.650025,56.203654],[-5.648852,56.201747],[-5.650364,56.201113],[-5.650199,56.198524],[-5.648149,56.195028],[-5.644851,56.193161],[-5.643479,56.19094],[-5.641064,56.190126],[-5.636585,56.189826],[-5.634916,56.190595],[-5.633736,56.188436],[-5.632426,56.188142],[-5.631767,56.189263],[-5.630588,56.189423],[-5.631349,56.191073],[-5.632391,56.192117],[-5.630145,56.192493],[-5.629509,56.193267],[-5.628869,56.196568],[-5.62928,56.197243],[-5.628579,56.199386],[-5.629045,56.200644],[-5.631027,56.202663],[-5.633129,56.20212],[-5.635364,56.204774],[-5.635044,56.206425],[-5.633281,56.207047],[-5.633209,56.205526],[-5.63157,56.204652],[-5.629933,56.204443],[-5.630359,56.206396],[-5.631391,56.206429],[-5.63162,56.207915],[-5.633554,56.20806],[-5.632414,56.210328],[-5.630732,56.211656],[-5.630161,56.214024],[-5.630578,56.216505],[-5.628913,56.216985],[-5.631337,56.218084],[-5.632682,56.217912],[-5.634393,56.219014],[-5.630706,56.220577],[-5.629069,56.222384],[-5.628723,56.223586],[-5.626977,56.224235],[-5.627041,56.226701],[-5.627604,56.226937],[-5.626893,56.229774],[-5.62292,56.233139],[-5.623034,56.234154],[-5.621295,56.236731],[-5.620614,56.237092],[-5.620707,56.238812],[-5.618351,56.241343],[-5.617602,56.242949],[-5.617946,56.244554],[-5.619075,56.246082],[-5.617697,56.247734],[-5.619366,56.248853],[-5.62166,56.247372],[-5.623023,56.247031],[-5.623251,56.250698],[-5.625771,56.25153],[-5.626714,56.252443],[-5.628583,56.252387],[-5.630114,56.254751],[-5.631744,56.254156],[-5.633533,56.255142],[-5.631647,56.257988],[-5.633228,56.259445],[-5.632349,56.260829],[-5.630341,56.262389],[-5.63138,56.264058],[-5.630995,56.265392],[-5.631999,56.266495],[-5.635153,56.266532],[-5.634612,56.268413],[-5.636525,56.269418],[-5.636908,56.270549],[-5.639035,56.270828]]],[[[-6.291701,56.267613],[-6.291345,56.269262],[-6.29301,56.27049],[-6.294588,56.270944],[-6.295044,56.26939],[-6.296492,56.267891],[-6.294391,56.266876],[-6.29219,56.267074],[-6.291701,56.267613]]],[[[-5.595643,56.293948],[-5.597781,56.293816],[-5.599153,56.294343],[-5.599801,56.293031],[-5.597518,56.291954],[-5.596212,56.29254],[-5.596597,56.293586],[-5.595643,56.293948]]],[[[-5.656185,56.294019],[-5.6567,56.294694],[-5.658745,56.294249],[-5.660591,56.294324],[-5.661765,56.293845],[-5.663268,56.292315],[-5.662408,56.291002],[-5.660718,56.291063],[-5.656551,56.290567],[-5.654203,56.28969],[-5.653254,56.289829],[-5.653692,56.292415],[-5.65681,56.293294],[-5.656185,56.294019]]],[[[-6.344496,56.27245],[-6.345622,56.271336],[-6.342165,56.270922],[-6.342129,56.271535],[-6.344496,56.27245]]],[[[-6.350571,56.275412],[-6.351674,56.274873],[-6.355668,56.274593],[-6.353084,56.272769],[-6.34919,56.271651],[-6.34735,56.273025],[-6.346198,56.273056],[-6.34469,56.273946],[-6.344994,56.274627],[-6.34658,56.275282],[-6.350571,56.275412]]],[[[-6.352086,56.281402],[-6.352716,56.282747],[-6.355953,56.2832],[-6.357897,56.280393],[-6.357181,56.279923],[-6.354174,56.280074],[-6.352086,56.281402]]],[[[-6.352573,56.287735],[-6.353259,56.288651],[-6.354696,56.288348],[-6.354081,56.287493],[-6.352573,56.287735]]],[[[-6.392104,56.289003],[-6.393336,56.28784],[-6.393658,56.286344],[-6.391319,56.285622],[-6.390174,56.286068],[-6.390036,56.28726],[-6.391425,56.287885],[-6.392104,56.289003]]],[[[-6.455176,56.286854],[-6.458309,56.286057],[-6.457263,56.284435],[-6.453842,56.282764],[-6.453634,56.283892],[-6.451233,56.285138],[-6.452766,56.286082],[-6.455176,56.286854]]],[[[-6.383461,56.293668],[-6.385159,56.29296],[-6.387252,56.293016],[-6.387493,56.292014],[-6.388945,56.291778],[-6.387958,56.290225],[-6.386487,56.290161],[-6.385202,56.291785],[-6.383538,56.292995],[-6.383461,56.293668]]],[[[-5.662698,56.317471],[-5.665198,56.317065],[-5.66567,56.315918],[-5.668859,56.31661],[-5.672757,56.314536],[-5.672373,56.312941],[-5.674106,56.312714],[-5.674581,56.311927],[-5.676511,56.310757],[-5.675314,56.309051],[-5.675078,56.307762],[-5.672952,56.30752],[-5.672281,56.308282],[-5.670562,56.308989],[-5.669854,56.312314],[-5.667458,56.313222],[-5.666212,56.314742],[-5.663669,56.314372],[-5.661928,56.315269],[-5.661863,56.317038],[-5.662698,56.317471]]],[[[-6.379844,56.294214],[-6.381238,56.294453],[-6.381985,56.29328],[-6.378959,56.293126],[-6.378985,56.293633],[-6.379844,56.294214]]],[[[-5.605185,56.319817],[-5.606879,56.319713],[-5.607642,56.318819],[-5.605669,56.318555],[-5.605185,56.319817]]],[[[-5.593169,56.322023],[-5.595176,56.321255],[-5.594098,56.320198],[-5.592976,56.32126],[-5.593169,56.322023]]],[[[-6.380928,56.29866],[-6.382729,56.300332],[-6.383649,56.299143],[-6.380928,56.29866]]],[[[-5.588577,56.325506],[-5.589003,56.325983],[-5.591945,56.325098],[-5.591464,56.323673],[-5.588096,56.32494],[-5.588577,56.325506]]],[[[-5.967624,56.314157],[-5.970364,56.314442],[-5.9702,56.313719],[-5.967624,56.314157]]],[[[-6.372999,56.300829],[-6.37475,56.300502],[-6.376721,56.299281],[-6.377839,56.297253],[-6.377606,56.296565],[-6.376068,56.295985],[-6.376081,56.295065],[-6.377678,56.294615],[-6.377908,56.293977],[-6.378428,56.293505],[-6.378469,56.292658],[-6.379177,56.292983],[-6.380808,56.293029],[-6.3821,56.292021],[-6.384939,56.290688],[-6.385627,56.289955],[-6.385559,56.287923],[-6.384516,56.287285],[-6.382139,56.289263],[-6.381311,56.288388],[-6.382365,56.287427],[-6.381179,56.28618],[-6.379024,56.286212],[-6.37785,56.287746],[-6.375868,56.288722],[-6.376657,56.29032],[-6.373972,56.290676],[-6.373173,56.29146],[-6.371735,56.291619],[-6.373834,56.289611],[-6.374422,56.288225],[-6.372801,56.287223],[-6.372205,56.286039],[-6.368867,56.285775],[-6.36849,56.285159],[-6.36605,56.285101],[-6.362274,56.284465],[-6.361686,56.286042],[-6.360801,56.286222],[-6.358708,56.287721],[-6.357279,56.291495],[-6.355647,56.292933],[-6.355788,56.293738],[-6.354584,56.296591],[-6.355143,56.29738],[-6.354453,56.298772],[-6.357173,56.299364],[-6.361077,56.2987],[-6.361335,56.299262],[-6.363747,56.299982],[-6.364247,56.301102],[-6.36582,56.300642],[-6.372999,56.300829]]],[[[-5.58225,56.320483],[-5.582296,56.321759],[-5.581435,56.323025],[-5.582155,56.323624],[-5.58212,56.325068],[-5.580993,56.325345],[-5.580768,56.326438],[-5.582415,56.326565],[-5.582951,56.325467],[-5.589233,56.321634],[-5.59012,56.319969],[-5.592981,56.319336],[-5.594985,56.319262],[-5.597173,56.318207],[-5.596516,56.317062],[-5.600422,56.315511],[-5.600784,56.31286],[-5.60258,56.312816],[-5.605785,56.313282],[-5.607003,56.312512],[-5.60831,56.310421],[-5.609689,56.310034],[-5.611927,56.311284],[-5.609452,56.312904],[-5.605778,56.314909],[-5.605317,56.315794],[-5.603748,56.316456],[-5.60303,56.317792],[-5.604945,56.31829],[-5.606566,56.317634],[-5.607932,56.316354],[-5.610693,56.316005],[-5.611714,56.316986],[-5.612606,56.318954],[-5.614405,56.31866],[-5.614958,56.319377],[-5.617457,56.319814],[-5.61876,56.319421],[-5.617002,56.322358],[-5.619288,56.32187],[-5.620291,56.321115],[-5.620675,56.319711],[-5.622161,56.318471],[-5.624079,56.318847],[-5.628684,56.316136],[-5.630717,56.315996],[-5.632696,56.315376],[-5.635458,56.313537],[-5.636358,56.31365],[-5.638375,56.31266],[-5.639963,56.311413],[-5.642558,56.308176],[-5.645049,56.306394],[-5.644865,56.305065],[-5.648635,56.301604],[-5.64686,56.300615],[-5.647108,56.299704],[-5.649768,56.298383],[-5.653145,56.298441],[-5.654185,56.296889],[-5.652519,56.296233],[-5.651,56.294485],[-5.648988,56.293937],[-5.648204,56.293003],[-5.646175,56.293087],[-5.642034,56.293904],[-5.639975,56.293119],[-5.639335,56.292384],[-5.636333,56.291468],[-5.63452,56.291295],[-5.633174,56.289095],[-5.636772,56.284779],[-5.635894,56.282757],[-5.636739,56.280744],[-5.634364,56.278735],[-5.635833,56.277543],[-5.635416,56.276419],[-5.636659,56.275265],[-5.634601,56.27447],[-5.634321,56.273884],[-5.635311,56.272603],[-5.632913,56.271569],[-5.633068,56.270183],[-5.630872,56.268588],[-5.629024,56.268894],[-5.629043,56.267055],[-5.628129,56.266924],[-5.626864,56.26561],[-5.622532,56.265149],[-5.621483,56.266434],[-5.62018,56.266793],[-5.6173,56.269452],[-5.615229,56.271041],[-5.612591,56.271432],[-5.612149,56.272826],[-5.612915,56.273486],[-5.611612,56.276048],[-5.612539,56.276571],[-5.610388,56.277265],[-5.609819,56.279046],[-5.607944,56.277944],[-5.606239,56.27834],[-5.60582,56.279308],[-5.602216,56.278351],[-5.60187,56.279129],[-5.600163,56.279228],[-5.599161,56.279961],[-5.59938,56.281515],[-5.601218,56.282743],[-5.601197,56.285022],[-5.60198,56.286574],[-5.60327,56.286714],[-5.600816,56.288686],[-5.600314,56.290354],[-5.604409,56.291852],[-5.607194,56.292338],[-5.60821,56.292053],[-5.609263,56.293018],[-5.608559,56.293704],[-5.609343,56.294472],[-5.606518,56.29794],[-5.603416,56.299175],[-5.601779,56.300339],[-5.600487,56.300484],[-5.598476,56.299121],[-5.595761,56.300066],[-5.593255,56.300456],[-5.590228,56.301751],[-5.591441,56.304944],[-5.589944,56.305958],[-5.58861,56.307686],[-5.58789,56.307932],[-5.588063,56.309905],[-5.586689,56.310718],[-5.586972,56.311357],[-5.585226,56.313487],[-5.586086,56.314581],[-5.584782,56.314887],[-5.583824,56.316356],[-5.58225,56.320483]]],[[[-5.583954,56.329609],[-5.586028,56.329293],[-5.589757,56.327126],[-5.586504,56.327121],[-5.583952,56.328719],[-5.583954,56.329609]]],[[[-5.589455,56.333037],[-5.590502,56.333735],[-5.592797,56.332882],[-5.591854,56.331875],[-5.594106,56.330353],[-5.592011,56.329326],[-5.590419,56.329862],[-5.58864,56.332112],[-5.589455,56.333037]]],[[[-6.434034,56.307496],[-6.436106,56.308065],[-6.437066,56.307307],[-6.436311,56.306142],[-6.434034,56.307496]]],[[[-6.250223,56.324043],[-6.251761,56.326089],[-6.253718,56.326109],[-6.25467,56.325488],[-6.253726,56.323994],[-6.250907,56.323003],[-6.250223,56.324043]]],[[[-6.214478,56.336905],[-6.214122,56.335793],[-6.212318,56.335639],[-6.212298,56.336864],[-6.214478,56.336905]]],[[[-6.429179,56.331137],[-6.430313,56.33142],[-6.434356,56.331019],[-6.431683,56.330319],[-6.429179,56.331137]]],[[[-5.867195,56.350436],[-5.866252,56.351596],[-5.868227,56.352355],[-5.870915,56.351368],[-5.871567,56.350135],[-5.867195,56.350436]]],[[[-6.365169,56.339437],[-6.365448,56.340008],[-6.367987,56.340667],[-6.36906,56.339745],[-6.368552,56.338789],[-6.371525,56.33805],[-6.371862,56.336808],[-6.371304,56.335346],[-6.371782,56.333161],[-6.37062,56.33354],[-6.368812,56.334858],[-6.366709,56.337619],[-6.366854,56.338072],[-6.365169,56.339437]]],[[[-5.619608,56.366918],[-5.620985,56.367687],[-5.622191,56.367],[-5.621671,56.366219],[-5.619608,56.366918]]],[[[-6.466138,56.34687],[-6.467261,56.347987],[-6.468628,56.347037],[-6.466138,56.34687]]],[[[-6.385549,56.350028],[-6.389512,56.34991],[-6.38992,56.348888],[-6.391334,56.348069],[-6.397413,56.347208],[-6.401542,56.347664],[-6.403939,56.346074],[-6.405613,56.345641],[-6.407583,56.346075],[-6.40907,56.344929],[-6.41285,56.344074],[-6.411844,56.343427],[-6.414792,56.342314],[-6.417056,56.341091],[-6.419519,56.340756],[-6.420702,56.340138],[-6.424002,56.33948],[-6.426857,56.338613],[-6.426883,56.33716],[-6.429014,56.336405],[-6.429523,56.334587],[-6.430947,56.33388],[-6.428087,56.332399],[-6.428732,56.331117],[-6.425099,56.330505],[-6.422612,56.328872],[-6.421747,56.327396],[-6.421884,56.325135],[-6.423223,56.324532],[-6.424909,56.324474],[-6.42516,56.323526],[-6.424287,56.322277],[-6.425079,56.321414],[-6.427133,56.321413],[-6.428874,56.320903],[-6.431228,56.319573],[-6.43238,56.319523],[-6.433524,56.318371],[-6.43646,56.31724],[-6.436961,56.316586],[-6.440104,56.316304],[-6.441765,56.31526],[-6.444908,56.313901],[-6.442703,56.312056],[-6.439931,56.311665],[-6.440164,56.310195],[-6.433762,56.309336],[-6.431851,56.308094],[-6.429966,56.308276],[-6.42776,56.30907],[-6.425516,56.307995],[-6.421758,56.306704],[-6.420938,56.307934],[-6.418922,56.308199],[-6.417292,56.309566],[-6.416393,56.310889],[-6.415008,56.310669],[-6.413547,56.311602],[-6.411984,56.313345],[-6.4095,56.313132],[-6.407772,56.315199],[-6.405997,56.316203],[-6.404141,56.318022],[-6.40463,56.319035],[-6.402675,56.319415],[-6.401688,56.321675],[-6.398985,56.32243],[-6.396637,56.325653],[-6.395386,56.326206],[-6.394925,56.327223],[-6.393387,56.328203],[-6.393881,56.328955],[-6.392124,56.330445],[-6.391945,56.331478],[-6.389561,56.332631],[-6.385842,56.335393],[-6.384822,56.337584],[-6.385266,56.339613],[-6.384222,56.341247],[-6.385437,56.341758],[-6.385245,56.343088],[-6.384002,56.345142],[-6.383613,56.346847],[-6.381444,56.348649],[-6.382489,56.349624],[-6.385549,56.350028]]],[[[-6.402251,56.350532],[-6.404009,56.350258],[-6.405226,56.348875],[-6.402004,56.349871],[-6.402251,56.350532]]],[[[-6.459317,56.348861],[-6.460904,56.349065],[-6.464013,56.348777],[-6.462078,56.347539],[-6.460619,56.347663],[-6.459317,56.348861]]],[[[-6.374984,56.353672],[-6.375933,56.353823],[-6.378111,56.352405],[-6.376385,56.35226],[-6.374998,56.352943],[-6.374984,56.353672]]],[[[-5.572953,56.380744],[-5.575614,56.380518],[-5.576431,56.378688],[-5.572374,56.37992],[-5.572953,56.380744]]],[[[-5.599273,56.382836],[-5.602023,56.382732],[-5.602202,56.381505],[-5.599324,56.380452],[-5.598362,56.381334],[-5.599273,56.382836]]],[[[-5.53826,56.414538],[-5.537596,56.416207],[-5.539259,56.416384],[-5.540734,56.415321],[-5.540429,56.413523],[-5.53864,56.413911],[-5.53826,56.414538]]],[[[-5.499356,56.425528],[-5.500802,56.425375],[-5.502543,56.424325],[-5.502056,56.423577],[-5.500396,56.423872],[-5.499785,56.423057],[-5.500524,56.422353],[-5.502481,56.421767],[-5.503986,56.419508],[-5.505448,56.418275],[-5.507346,56.417827],[-5.510256,56.41768],[-5.511686,56.41825],[-5.512418,56.41534],[-5.51411,56.413973],[-5.515536,56.413856],[-5.517274,56.41294],[-5.52005,56.412557],[-5.522859,56.411196],[-5.526738,56.410785],[-5.529218,56.411478],[-5.530428,56.412545],[-5.528496,56.413917],[-5.530309,56.413969],[-5.535266,56.412592],[-5.536312,56.41162],[-5.540324,56.410448],[-5.540389,56.408301],[-5.542809,56.407611],[-5.548744,56.408444],[-5.548942,56.409018],[-5.551147,56.409504],[-5.553373,56.409543],[-5.557946,56.409191],[-5.559517,56.408305],[-5.561781,56.40815],[-5.566108,56.405196],[-5.567393,56.403754],[-5.567017,56.403111],[-5.567617,56.401549],[-5.565879,56.399266],[-5.565404,56.397922],[-5.56675,56.397407],[-5.568842,56.39732],[-5.569731,56.397991],[-5.57206,56.398099],[-5.573436,56.398599],[-5.574823,56.396536],[-5.573333,56.395428],[-5.574044,56.394796],[-5.573237,56.393885],[-5.5735,56.392191],[-5.574962,56.391623],[-5.576459,56.392205],[-5.579099,56.392003],[-5.580563,56.391196],[-5.582657,56.390965],[-5.584272,56.388576],[-5.584009,56.387077],[-5.585213,56.386948],[-5.585871,56.384906],[-5.585295,56.383687],[-5.587866,56.382681],[-5.588272,56.382],[-5.587443,56.381111],[-5.583575,56.380311],[-5.581872,56.381061],[-5.576912,56.381056],[-5.575289,56.381629],[-5.572703,56.381965],[-5.569691,56.380694],[-5.567774,56.38168],[-5.564604,56.382109],[-5.564915,56.380252],[-5.562977,56.378527],[-5.557755,56.380191],[-5.556908,56.379829],[-5.557749,56.378287],[-5.554899,56.378775],[-5.553836,56.378622],[-5.553991,56.377069],[-5.557299,56.375361],[-5.559959,56.372959],[-5.55851,56.371845],[-5.558624,56.370547],[-5.551588,56.372754],[-5.550438,56.373808],[-5.546833,56.375686],[-5.54504,56.376994],[-5.543548,56.378657],[-5.541739,56.379628],[-5.542589,56.381015],[-5.540779,56.382376],[-5.539185,56.38301],[-5.537503,56.384615],[-5.535053,56.385675],[-5.534358,56.386563],[-5.536242,56.386698],[-5.537253,56.387545],[-5.5368,56.388606],[-5.535364,56.389024],[-5.533361,56.388924],[-5.529883,56.389525],[-5.525776,56.392971],[-5.527015,56.394868],[-5.5266,56.396199],[-5.523927,56.397587],[-5.523143,56.398468],[-5.51919,56.399287],[-5.515307,56.401748],[-5.512638,56.405005],[-5.5126,56.406174],[-5.511082,56.407467],[-5.507632,56.408307],[-5.50524,56.409269],[-5.503217,56.410724],[-5.502488,56.412377],[-5.499076,56.412373],[-5.497606,56.412812],[-5.497966,56.413689],[-5.496766,56.41484],[-5.496706,56.41615],[-5.498906,56.416178],[-5.499514,56.417126],[-5.498487,56.418359],[-5.498147,56.419897],[-5.496037,56.420926],[-5.494128,56.420352],[-5.492313,56.421749],[-5.49144,56.420312],[-5.489077,56.421079],[-5.491831,56.423093],[-5.493739,56.42267],[-5.494134,56.423518],[-5.496172,56.424602],[-5.497761,56.424422],[-5.499356,56.425528]]],[[[-5.49122,56.430221],[-5.493753,56.431681],[-5.493433,56.43011],[-5.49122,56.430221]]],[[[-6.244946,56.411211],[-6.246713,56.411713],[-6.246957,56.410557],[-6.24553,56.410197],[-6.244946,56.411211]]],[[[-5.430803,56.455656],[-5.429026,56.456748],[-5.428354,56.457898],[-5.429015,56.459131],[-5.432115,56.459545],[-5.43347,56.459047],[-5.432378,56.458334],[-5.434291,56.456996],[-5.433543,56.455991],[-5.430803,56.455656]]],[[[-5.601434,56.4584],[-5.602063,56.45947],[-5.605407,56.457484],[-5.606104,56.456534],[-5.602475,56.457309],[-5.601434,56.4584]]],[[[-6.336732,56.437274],[-6.336816,56.438431],[-6.338228,56.439002],[-6.338786,56.440471],[-6.342288,56.43908],[-6.34379,56.43802],[-6.342778,56.437548],[-6.346811,56.435473],[-6.344704,56.435573],[-6.342617,56.433785],[-6.344144,56.432378],[-6.341086,56.431253],[-6.339096,56.432735],[-6.337886,56.434225],[-6.338637,56.435399],[-6.337614,56.436892],[-6.336732,56.437274]]],[[[-6.150779,56.447183],[-6.153562,56.447387],[-6.1552,56.446774],[-6.158451,56.445058],[-6.16115,56.445382],[-6.163827,56.444801],[-6.165902,56.443354],[-6.165542,56.441461],[-6.163173,56.440785],[-6.162825,56.439927],[-6.164999,56.439324],[-6.16552,56.437079],[-6.164291,56.436311],[-6.161594,56.435543],[-6.162389,56.437783],[-6.162958,56.43819],[-6.161323,56.439792],[-6.158116,56.441174],[-6.156402,56.441256],[-6.156598,56.44274],[-6.152524,56.44391],[-6.149758,56.445639],[-6.150779,56.447183]]],[[[-5.515239,56.47539],[-5.514424,56.476941],[-5.516223,56.476984],[-5.517608,56.476472],[-5.517851,56.47527],[-5.515239,56.47539]]],[[[-5.509742,56.477968],[-5.512078,56.477749],[-5.512346,56.476429],[-5.510089,56.477325],[-5.509742,56.477968]]],[[[-6.169613,56.45804],[-6.171067,56.456862],[-6.167906,56.45655],[-6.168522,56.457798],[-6.169613,56.45804]]],[[[-6.263024,56.455131],[-6.265857,56.455407],[-6.266864,56.452589],[-6.266165,56.450989],[-6.264092,56.448578],[-6.261903,56.448182],[-6.26158,56.44732],[-6.258511,56.446234],[-6.255324,56.446856],[-6.256076,56.447402],[-6.255304,56.448413],[-6.253584,56.448575],[-6.252234,56.447902],[-6.250228,56.449059],[-6.251255,56.450908],[-6.24966,56.451669],[-6.252656,56.453122],[-6.253931,56.453195],[-6.255897,56.454796],[-6.259542,56.455723],[-6.260271,56.455059],[-6.262113,56.454542],[-6.263024,56.455131]]],[[[-6.238536,56.456924],[-6.237805,56.458451],[-6.23986,56.458068],[-6.240506,56.456965],[-6.238536,56.456924]]],[[[-6.233216,56.460052],[-6.235306,56.459562],[-6.237105,56.458723],[-6.235653,56.458161],[-6.233053,56.459464],[-6.233216,56.460052]]],[[[-6.21687,56.46154],[-6.217737,56.462329],[-6.219312,56.46174],[-6.217917,56.460362],[-6.21687,56.46154]]],[[[-6.481893,56.453783],[-6.483197,56.453335],[-6.483148,56.452505],[-6.485112,56.450847],[-6.483322,56.449099],[-6.481575,56.450876],[-6.481645,56.452024],[-6.48078,56.452398],[-6.481893,56.453783]]],[[[-6.237154,56.46266],[-6.237925,56.46396],[-6.240809,56.463309],[-6.242726,56.461498],[-6.240683,56.46124],[-6.240142,56.46039],[-6.238058,56.460785],[-6.237933,56.461995],[-6.237154,56.46266]]],[[[-6.219365,56.462799],[-6.219235,56.463824],[-6.220379,56.464033],[-6.220847,56.462834],[-6.219365,56.462799]]],[[[-6.089957,56.470218],[-6.09161,56.469723],[-6.091816,56.468619],[-6.094412,56.468515],[-6.097324,56.46765],[-6.0985,56.466429],[-6.098694,56.465438],[-6.100535,56.464059],[-6.097839,56.462858],[-6.092367,56.462355],[-6.090275,56.461853],[-6.088107,56.462168],[-6.085684,56.462063],[-6.084813,56.462425],[-6.080456,56.462842],[-6.07953,56.463745],[-6.078126,56.464133],[-6.077681,56.465137],[-6.075913,56.465613],[-6.076131,56.46727],[-6.078093,56.467232],[-6.078415,56.467887],[-6.081623,56.469693],[-6.085175,56.469261],[-6.087766,56.470317],[-6.089957,56.470218]]],[[[-5.518953,56.487071],[-5.520994,56.48797],[-5.522604,56.487021],[-5.52475,56.487122],[-5.526861,56.48565],[-5.526449,56.484672],[-5.524616,56.484617],[-5.520098,56.486279],[-5.518953,56.487071]]],[[[-5.510153,56.488305],[-5.5107,56.489035],[-5.513534,56.487469],[-5.512637,56.486782],[-5.510378,56.487849],[-5.508736,56.486785],[-5.511107,56.485612],[-5.512041,56.484556],[-5.510429,56.484431],[-5.506435,56.486404],[-5.508315,56.486963],[-5.510153,56.488305]]],[[[-6.210057,56.465436],[-6.209903,56.467573],[-6.211368,56.467082],[-6.211058,56.465002],[-6.210057,56.465436]]],[[[-6.221427,56.469002],[-6.222806,56.468766],[-6.222471,56.467793],[-6.220159,56.468042],[-6.221427,56.469002]]],[[[-6.129518,56.474014],[-6.132309,56.475464],[-6.133163,56.474353],[-6.129518,56.474014]]],[[[-5.459183,56.495063],[-5.458329,56.49613],[-5.459604,56.496477],[-5.460936,56.494862],[-5.459183,56.495063]]],[[[-6.470253,56.463453],[-6.470295,56.46482],[-6.47273,56.463693],[-6.47503,56.463152],[-6.478297,56.461235],[-6.480256,56.458969],[-6.479965,56.45795],[-6.480475,56.455939],[-6.479091,56.456048],[-6.47781,56.457448],[-6.473926,56.458951],[-6.471464,56.462606],[-6.470253,56.463453]]],[[[-6.307523,56.473707],[-6.309152,56.473457],[-6.308701,56.472128],[-6.307282,56.471795],[-6.306266,56.472298],[-6.307523,56.473707]]],[[[-5.578548,56.497471],[-5.580412,56.497692],[-5.582542,56.496484],[-5.585803,56.495724],[-5.586388,56.494781],[-5.593338,56.492045],[-5.595309,56.490801],[-5.594957,56.490177],[-5.590141,56.491584],[-5.587977,56.491553],[-5.585766,56.491032],[-5.583595,56.49283],[-5.581632,56.493377],[-5.579211,56.493559],[-5.578722,56.495102],[-5.575311,56.495901],[-5.576525,56.496797],[-5.578548,56.497471]]],[[[-6.155297,56.486561],[-6.158851,56.48651],[-6.156155,56.485269],[-6.15735,56.484973],[-6.154397,56.483385],[-6.152062,56.482992],[-6.151912,56.484521],[-6.152579,56.485636],[-6.154011,56.485354],[-6.155297,56.486561]]],[[[-6.162799,56.486561],[-6.164871,56.487378],[-6.16539,56.486699],[-6.163342,56.485734],[-6.162799,56.486561]]],[[[-6.159152,56.487322],[-6.158159,56.487688],[-6.161651,56.489213],[-6.163338,56.488962],[-6.162429,56.488008],[-6.160254,56.487002],[-6.159152,56.487322]]],[[[-6.288795,56.497083],[-6.292161,56.497871],[-6.292971,56.49662],[-6.294534,56.496282],[-6.298587,56.496681],[-6.300834,56.497134],[-6.301122,56.49595],[-6.29924,56.494909],[-6.297774,56.493161],[-6.298643,56.492299],[-6.300271,56.491667],[-6.301346,56.489822],[-6.302062,56.49205],[-6.303382,56.492504],[-6.304559,56.491491],[-6.307899,56.490121],[-6.308063,56.489274],[-6.307052,56.488531],[-6.306439,56.486637],[-6.308059,56.485942],[-6.305908,56.484468],[-6.306559,56.483759],[-6.305945,56.482076],[-6.306554,56.480063],[-6.305487,56.479327],[-6.303719,56.479959],[-6.304969,56.481137],[-6.303801,56.482125],[-6.303091,56.483611],[-6.300958,56.482403],[-6.302873,56.481169],[-6.299326,56.48056],[-6.297503,56.481258],[-6.297028,56.480479],[-6.295634,56.480339],[-6.293965,56.481614],[-6.293265,56.479127],[-6.29233,56.478167],[-6.291056,56.478844],[-6.291027,56.480027],[-6.289717,56.481726],[-6.287312,56.482308],[-6.283685,56.482142],[-6.281705,56.4831],[-6.281793,56.481654],[-6.281028,56.480704],[-6.280781,56.47931],[-6.282064,56.477863],[-6.280335,56.476717],[-6.278528,56.473956],[-6.275579,56.475325],[-6.274148,56.477488],[-6.273153,56.478323],[-6.273316,56.479266],[-6.271356,56.480476],[-6.272609,56.481503],[-6.271161,56.482569],[-6.267916,56.48327],[-6.266634,56.484515],[-6.265227,56.484437],[-6.262697,56.486008],[-6.261543,56.485796],[-6.259042,56.488783],[-6.255075,56.492035],[-6.25388,56.494289],[-6.255775,56.495887],[-6.258278,56.493998],[-6.261752,56.493438],[-6.26398,56.494171],[-6.263334,56.495295],[-6.264425,56.495526],[-6.267004,56.493662],[-6.270566,56.492519],[-6.269913,56.49148],[-6.268284,56.491091],[-6.272573,56.489626],[-6.27265,56.490671],[-6.274781,56.492126],[-6.277202,56.495645],[-6.278733,56.496455],[-6.28008,56.497803],[-6.281952,56.497824],[-6.283568,56.497089],[-6.285493,56.496923],[-6.288795,56.497083]]],[[[-6.225567,56.500203],[-6.230926,56.500358],[-6.229636,56.498131],[-6.229934,56.495328],[-6.232835,56.494082],[-6.235271,56.49413],[-6.237482,56.494562],[-6.24413,56.497748],[-6.246293,56.497458],[-6.249501,56.496417],[-6.24947,56.494107],[-6.25007,56.493219],[-6.252911,56.491516],[-6.254887,56.491736],[-6.257153,56.489837],[-6.257241,56.489029],[-6.260481,56.485747],[-6.262342,56.48263],[-6.265767,56.479769],[-6.266449,56.478828],[-6.268606,56.478421],[-6.267931,56.476754],[-6.265678,56.477389],[-6.264946,56.47651],[-6.262396,56.475434],[-6.258487,56.474421],[-6.25416,56.474385],[-6.251396,56.473644],[-6.250159,56.472971],[-6.246533,56.472664],[-6.244065,56.471804],[-6.247426,56.471131],[-6.248391,56.470239],[-6.247019,56.469378],[-6.243691,56.468966],[-6.243506,56.467821],[-6.242018,56.466793],[-6.243267,56.466188],[-6.240946,56.465557],[-6.239791,56.465906],[-6.237441,56.467633],[-6.235382,56.468548],[-6.233779,56.468302],[-6.233076,56.46914],[-6.23167,56.468626],[-6.228299,56.468116],[-6.227053,56.467434],[-6.224795,56.467876],[-6.22452,56.468982],[-6.225215,56.470995],[-6.223463,56.470947],[-6.220919,56.471371],[-6.219144,56.470168],[-6.216861,56.47061],[-6.214713,56.471744],[-6.211576,56.470344],[-6.209334,56.471378],[-6.208002,56.472476],[-6.206415,56.469962],[-6.20593,56.468594],[-6.208351,56.468228],[-6.208683,56.467264],[-6.208542,56.464392],[-6.209027,56.462598],[-6.206784,56.46244],[-6.203494,56.463905],[-6.201687,56.464164],[-6.200922,56.463417],[-6.203887,56.461288],[-6.203503,56.460164],[-6.199918,56.460942],[-6.19761,56.460553],[-6.19614,56.461299],[-6.193917,56.461541],[-6.194078,56.463811],[-6.195161,56.464201],[-6.197675,56.463437],[-6.199255,56.463766],[-6.189785,56.465979],[-6.188518,56.466571],[-6.185872,56.466368],[-6.183816,56.465628],[-6.183193,56.464912],[-6.180208,56.464652],[-6.177906,56.465877],[-6.176388,56.46604],[-6.174531,56.4651],[-6.174697,56.464321],[-6.17125,56.464374],[-6.169212,56.464011],[-6.168124,56.464457],[-6.164777,56.464151],[-6.164533,56.463705],[-6.160072,56.463392],[-6.158272,56.464608],[-6.157054,56.464625],[-6.157642,56.465992],[-6.157043,56.467018],[-6.154995,56.466359],[-6.15339,56.466718],[-6.15441,56.469609],[-6.152197,56.469505],[-6.150822,56.4699],[-6.149737,56.469442],[-6.147895,56.470071],[-6.146226,56.470026],[-6.142382,56.470873],[-6.141385,56.471977],[-6.142719,56.475351],[-6.145444,56.477129],[-6.149578,56.475019],[-6.151811,56.475826],[-6.153543,56.475927],[-6.151131,56.477424],[-6.152853,56.477775],[-6.154446,56.478606],[-6.152749,56.479569],[-6.152702,56.481091],[-6.154161,56.482647],[-6.159428,56.481906],[-6.160752,56.479946],[-6.16189,56.479714],[-6.165868,56.482987],[-6.165267,56.484244],[-6.166838,56.485816],[-6.169296,56.487409],[-6.173449,56.488443],[-6.17501,56.48638],[-6.176811,56.486054],[-6.176153,56.485168],[-6.176687,56.483747],[-6.174842,56.482483],[-6.178864,56.482482],[-6.179269,56.484316],[-6.180368,56.485071],[-6.184133,56.485011],[-6.185837,56.485363],[-6.18874,56.485152],[-6.191831,56.486505],[-6.194812,56.490384],[-6.196178,56.491637],[-6.197534,56.492211],[-6.198531,56.493509],[-6.199557,56.493442],[-6.201005,56.492206],[-6.202711,56.492126],[-6.203964,56.492578],[-6.206205,56.494602],[-6.212837,56.497304],[-6.216527,56.498312],[-6.22082,56.500293],[-6.221985,56.500384],[-6.224694,56.499594],[-6.225567,56.500203]]],[[[-6.305721,56.49736],[-6.308286,56.498395],[-6.308921,56.497474],[-6.31033,56.497569],[-6.309807,56.495685],[-6.307769,56.495486],[-6.306634,56.494513],[-6.304921,56.494825],[-6.30519,56.493078],[-6.302669,56.493743],[-6.302541,56.495631],[-6.304023,56.49687],[-6.305721,56.49736]]],[[[-5.459254,56.520552],[-5.457005,56.521835],[-5.456409,56.523235],[-5.454135,56.524611],[-5.453457,56.525641],[-5.456509,56.525664],[-5.459072,56.523894],[-5.458962,56.522872],[-5.461202,56.520499],[-5.459254,56.520552]]],[[[-6.420645,56.496652],[-6.422734,56.496096],[-6.422118,56.495273],[-6.422171,56.493913],[-6.42361,56.492939],[-6.427514,56.49168],[-6.427033,56.491172],[-6.42673,56.487072],[-6.429316,56.485549],[-6.42985,56.484208],[-6.433395,56.482966],[-6.433845,56.481524],[-6.431832,56.48044],[-6.428445,56.481429],[-6.428963,56.482459],[-6.424659,56.483251],[-6.42384,56.4848],[-6.425345,56.48579],[-6.423138,56.487353],[-6.42194,56.48879],[-6.419811,56.489639],[-6.418001,56.491129],[-6.417111,56.492843],[-6.418417,56.495117],[-6.420645,56.496652]]],[[[-6.421943,56.498935],[-6.421765,56.499774],[-6.420119,56.500098],[-6.419925,56.501009],[-6.421765,56.500956],[-6.422327,56.49992],[-6.426067,56.497691],[-6.424109,56.497351],[-6.421943,56.498935]]],[[[-6.413377,56.502792],[-6.413143,56.503872],[-6.41183,56.504818],[-6.414035,56.505248],[-6.415189,56.503282],[-6.413377,56.502792]]],[[[-5.406783,56.537133],[-5.408905,56.53712],[-5.413236,56.535439],[-5.415219,56.5354],[-5.42133,56.532838],[-5.423193,56.531015],[-5.425234,56.530054],[-5.427512,56.527954],[-5.428738,56.527305],[-5.430576,56.525042],[-5.427637,56.525352],[-5.424388,56.526353],[-5.423347,56.52746],[-5.421659,56.527935],[-5.419356,56.52944],[-5.41825,56.52912],[-5.41902,56.527216],[-5.415226,56.527172],[-5.412524,56.527906],[-5.410596,56.526729],[-5.408899,56.526527],[-5.406547,56.530695],[-5.400844,56.534797],[-5.401495,56.536827],[-5.405476,56.536283],[-5.406783,56.537133]]],[[[-5.933138,56.522009],[-5.931231,56.520908],[-5.930811,56.521879],[-5.933138,56.522009]]],[[[-6.388183,56.510029],[-6.389722,56.511876],[-6.390766,56.51197],[-6.392407,56.513499],[-6.393111,56.513537],[-6.394257,56.510578],[-6.3977,56.509548],[-6.397568,56.508199],[-6.398462,56.506026],[-6.396969,56.505283],[-6.39516,56.507987],[-6.39442,56.506516],[-6.390727,56.507704],[-6.388402,56.508834],[-6.388183,56.510029]]],[[[-6.381346,56.517169],[-6.380196,56.518055],[-6.38166,56.51946],[-6.383613,56.518973],[-6.383056,56.517387],[-6.381346,56.517169]]],[[[-6.376375,56.519975],[-6.378229,56.519833],[-6.378669,56.518918],[-6.376742,56.518861],[-6.376375,56.519975]]],[[[-5.4775,56.551692],[-5.478367,56.552554],[-5.476315,56.553942],[-5.478002,56.554194],[-5.480329,56.552763],[-5.48078,56.551903],[-5.478455,56.550957],[-5.4775,56.551692]]],[[[-5.447925,56.556437],[-5.446937,56.557262],[-5.447126,56.558425],[-5.450574,56.557549],[-5.451141,56.556321],[-5.447925,56.556437]]],[[[-5.440503,56.559274],[-5.439353,56.560232],[-5.440379,56.560594],[-5.44147,56.559607],[-5.443221,56.558897],[-5.444824,56.557121],[-5.440503,56.559274]]],[[[-5.427862,56.560531],[-5.427216,56.561403],[-5.429142,56.561993],[-5.43087,56.561445],[-5.432582,56.560253],[-5.433897,56.560473],[-5.436557,56.559738],[-5.440881,56.556636],[-5.442669,56.556343],[-5.444122,56.555022],[-5.447771,56.553287],[-5.449134,56.55193],[-5.450348,56.551798],[-5.455943,56.549772],[-5.455669,56.55127],[-5.457683,56.551248],[-5.459971,56.550656],[-5.462318,56.550964],[-5.463754,56.554387],[-5.463234,56.555367],[-5.464644,56.556029],[-5.463806,56.557817],[-5.464616,56.558127],[-5.466325,56.557185],[-5.469809,56.557681],[-5.471971,56.557467],[-5.472365,56.55653],[-5.470148,56.556314],[-5.47274,56.552987],[-5.470766,56.553204],[-5.469894,56.552212],[-5.467673,56.552841],[-5.466773,56.552579],[-5.467029,56.55141],[-5.468803,56.550072],[-5.46783,56.549141],[-5.472169,56.54782],[-5.472372,56.547092],[-5.477154,56.54753],[-5.480135,56.546194],[-5.481387,56.545136],[-5.480249,56.544018],[-5.481599,56.542827],[-5.487503,56.540238],[-5.489668,56.538676],[-5.49322,56.53685],[-5.490626,56.536678],[-5.49021,56.536237],[-5.492598,56.53544],[-5.496287,56.533229],[-5.498654,56.531293],[-5.497992,56.530472],[-5.499985,56.529943],[-5.500793,56.527926],[-5.502797,56.526624],[-5.506523,56.52496],[-5.507883,56.523914],[-5.507732,56.523153],[-5.509308,56.522629],[-5.510097,56.521735],[-5.512627,56.520388],[-5.516032,56.519215],[-5.520059,56.51686],[-5.520707,56.515572],[-5.51926,56.515016],[-5.5216,56.514188],[-5.521358,56.513141],[-5.524422,56.511851],[-5.525524,56.512163],[-5.524062,56.514465],[-5.52901,56.513271],[-5.529942,56.512458],[-5.529355,56.511391],[-5.530075,56.510222],[-5.531425,56.509429],[-5.532804,56.50778],[-5.535659,56.507399],[-5.53779,56.506101],[-5.539422,56.505603],[-5.541263,56.504117],[-5.544315,56.504262],[-5.547942,56.503228],[-5.549975,56.503071],[-5.550076,56.502322],[-5.552568,56.5015],[-5.553232,56.502173],[-5.557346,56.500349],[-5.559,56.50003],[-5.559551,56.499126],[-5.562254,56.498817],[-5.566639,56.49719],[-5.567263,56.496484],[-5.569545,56.495681],[-5.570229,56.496133],[-5.568581,56.497012],[-5.570206,56.497527],[-5.569301,56.499397],[-5.570801,56.499288],[-5.572222,56.498395],[-5.571474,56.497698],[-5.573576,56.496284],[-5.57281,56.494805],[-5.571572,56.493824],[-5.573734,56.491919],[-5.573531,56.490023],[-5.572933,56.489892],[-5.576627,56.483735],[-5.575148,56.482519],[-5.574621,56.479599],[-5.57636,56.475552],[-5.577547,56.474354],[-5.579924,56.473633],[-5.591508,56.467117],[-5.597059,56.463391],[-5.599016,56.461415],[-5.597631,56.460596],[-5.595087,56.461691],[-5.59358,56.461119],[-5.589837,56.461551],[-5.588413,56.462212],[-5.586875,56.462176],[-5.584929,56.462888],[-5.584136,56.46395],[-5.580677,56.464733],[-5.574819,56.467455],[-5.572252,56.469089],[-5.569776,56.469282],[-5.568085,56.470293],[-5.564529,56.47169],[-5.560796,56.472682],[-5.557813,56.474387],[-5.554623,56.475624],[-5.55226,56.475463],[-5.547257,56.47851],[-5.545892,56.480077],[-5.543608,56.480848],[-5.542707,56.482681],[-5.540352,56.484081],[-5.536806,56.487426],[-5.533098,56.489096],[-5.532414,56.48979],[-5.530744,56.48997],[-5.528522,56.491282],[-5.524842,56.492482],[-5.52355,56.492483],[-5.515588,56.495838],[-5.507001,56.498072],[-5.502779,56.501725],[-5.502474,56.50247],[-5.500479,56.503965],[-5.498774,56.504512],[-5.496328,56.506866],[-5.493717,56.508813],[-5.49247,56.510313],[-5.492254,56.512011],[-5.492731,56.512374],[-5.489356,56.514711],[-5.486417,56.518544],[-5.482128,56.520687],[-5.480561,56.52091],[-5.47411,56.525483],[-5.467398,56.529354],[-5.463662,56.533241],[-5.461232,56.534189],[-5.459887,56.535542],[-5.454863,56.53888],[-5.453381,56.540686],[-5.451134,56.541686],[-5.449772,56.541868],[-5.448218,56.542909],[-5.44649,56.543478],[-5.444644,56.546338],[-5.443112,56.547139],[-5.441178,56.547426],[-5.434204,56.551303],[-5.434171,56.552814],[-5.433475,56.554928],[-5.431563,56.555925],[-5.431072,56.556968],[-5.428802,56.559139],[-5.427005,56.560056],[-5.427862,56.560531]]],[[[-5.415736,56.567343],[-5.417288,56.567399],[-5.419036,56.566645],[-5.421818,56.564906],[-5.419579,56.56481],[-5.417492,56.565681],[-5.415766,56.565868],[-5.415736,56.567343]]],[[[-7.002693,56.521687],[-7.004659,56.52276],[-7.004589,56.521314],[-7.002693,56.521687]]],[[[-7.013744,56.524075],[-7.014803,56.524077],[-7.015289,56.522897],[-7.013828,56.522434],[-7.012338,56.523043],[-7.013744,56.524075]]],[[[-7.005612,56.524988],[-7.005759,56.52339],[-7.004123,56.52382],[-7.004428,56.525023],[-7.005612,56.524988]]],[[[-6.76958,56.545921],[-6.769567,56.546664],[-6.770958,56.547555],[-6.772665,56.546432],[-6.76958,56.545921]]],[[[-5.388232,56.595336],[-5.390069,56.59547],[-5.392051,56.59404],[-5.393692,56.594261],[-5.396072,56.593724],[-5.399252,56.592666],[-5.402657,56.590213],[-5.404286,56.586586],[-5.402828,56.585327],[-5.402636,56.583736],[-5.40001,56.582248],[-5.399047,56.579955],[-5.397201,56.578536],[-5.393881,56.578757],[-5.391881,56.580151],[-5.391473,56.581421],[-5.389551,56.581963],[-5.389689,56.582692],[-5.388332,56.58376],[-5.386332,56.586355],[-5.383821,56.59266],[-5.382319,56.594454],[-5.380736,56.595607],[-5.383519,56.595392],[-5.384725,56.59567],[-5.388232,56.595336]]],[[[-4.639066,56.476037],[-4.640933,56.476955],[-4.642961,56.476696],[-4.645553,56.477414],[-4.648808,56.479029],[-4.652722,56.479256],[-4.660811,56.479037],[-4.668092,56.479793],[-4.670834,56.479752],[-4.673379,56.481877],[-4.675898,56.482942],[-4.67784,56.48307],[-4.679174,56.483783],[-4.682529,56.486443],[-4.682899,56.489491],[-4.686206,56.490547],[-4.682304,56.492339],[-4.679986,56.495405],[-4.677735,56.4969],[-4.67608,56.50005],[-4.665679,56.505249],[-4.665142,56.506505],[-4.663595,56.508196],[-4.661386,56.509497],[-4.658299,56.510682],[-4.658807,56.511898],[-4.655984,56.513824],[-4.653685,56.518156],[-4.652578,56.518709],[-4.653555,56.519888],[-4.654693,56.52314],[-4.653723,56.52601],[-4.657045,56.531183],[-4.658554,56.532171],[-4.659454,56.534452],[-4.665835,56.533147],[-4.66747,56.532227],[-4.668166,56.533214],[-4.671258,56.535542],[-4.680271,56.539707],[-4.683356,56.539973],[-4.688634,56.53927],[-4.697626,56.541044],[-4.699152,56.543509],[-4.698105,56.547203],[-4.697361,56.547835],[-4.697585,56.549956],[-4.695522,56.551492],[-4.692119,56.55295],[-4.688899,56.552067],[-4.682054,56.553186],[-4.681833,56.55409],[-4.676862,56.555244],[-4.675903,56.555835],[-4.673995,56.55602],[-4.668009,56.559402],[-4.661332,56.562251],[-4.658102,56.561565],[-4.656809,56.562163],[-4.654185,56.561181],[-4.648801,56.561229],[-4.648128,56.562897],[-4.641089,56.567698],[-4.641408,56.567952],[-4.632107,56.568109],[-4.628266,56.568478],[-4.624416,56.569651],[-4.612772,56.570786],[-4.611048,56.572108],[-4.606567,56.571923],[-4.604825,56.573591],[-4.603078,56.574342],[-4.601925,56.575575],[-4.599524,56.576659],[-4.596144,56.574496],[-4.593012,56.574288],[-4.589326,56.5748],[-4.586084,56.573214],[-4.584335,56.573242],[-4.580851,56.571696],[-4.579465,56.571775],[-4.577595,56.57122],[-4.575944,56.571232],[-4.5707,56.572055],[-4.567735,56.572031],[-4.563754,56.571421],[-4.561746,56.570142],[-4.55984,56.573003],[-4.567707,56.575092],[-4.570513,56.576252],[-4.571219,56.577891],[-4.570599,56.579198],[-4.572781,56.578955],[-4.573718,56.581124],[-4.574705,56.581867],[-4.575979,56.588374],[-4.58273,56.594458],[-4.58614,56.599654],[-4.597315,56.604251],[-4.609817,56.61481],[-4.616373,56.616038],[-4.621409,56.616148],[-4.62536,56.615413],[-4.626424,56.615597],[-4.627727,56.614882],[-4.631709,56.614128],[-4.633589,56.613154],[-4.636205,56.613862],[-4.639123,56.614214],[-4.641145,56.613528],[-4.643386,56.614456],[-4.657583,56.612607],[-4.659361,56.611585],[-4.660362,56.611685],[-4.665167,56.610481],[-4.667483,56.60946],[-4.66843,56.609723],[-4.672725,56.608463],[-4.672893,56.607605],[-4.675565,56.605521],[-4.677306,56.605488],[-4.679646,56.604593],[-4.680611,56.603723],[-4.684016,56.601757],[-4.68417,56.601183],[-4.687912,56.600752],[-4.690498,56.602128],[-4.691931,56.602317],[-4.694131,56.60171],[-4.69724,56.603332],[-4.700847,56.603795],[-4.701284,56.604989],[-4.703297,56.604331],[-4.703248,56.60324],[-4.704273,56.602949],[-4.704097,56.601891],[-4.705272,56.600507],[-4.704894,56.599524],[-4.703555,56.598394],[-4.706893,56.597566],[-4.709643,56.596475],[-4.712878,56.596764],[-4.713936,56.595346],[-4.716675,56.594536],[-4.717943,56.593747],[-4.718693,56.592431],[-4.722649,56.590323],[-4.726188,56.587807],[-4.747205,56.586607],[-4.748031,56.585763],[-4.7503,56.585069],[-4.752571,56.585492],[-4.754495,56.584675],[-4.758293,56.585588],[-4.763756,56.585259],[-4.766089,56.586493],[-4.769761,56.586452],[-4.772716,56.587987],[-4.774448,56.58851],[-4.779443,56.587769],[-4.780626,56.587248],[-4.782157,56.582698],[-4.788103,56.580834],[-4.791992,56.578806],[-4.795425,56.577996],[-4.801101,56.573599],[-4.805643,56.572499],[-4.808722,56.572191],[-4.818137,56.574099],[-4.820205,56.573009],[-4.82076,56.571936],[-4.830025,56.569218],[-4.831914,56.569328],[-4.834671,56.570707],[-4.83544,56.570541],[-4.83794,56.572619],[-4.83861,56.57384],[-4.84296,56.572464],[-4.847923,56.571779],[-4.854711,56.571534],[-4.856604,56.571701],[-4.860626,56.57084],[-4.866728,56.571657],[-4.869003,56.571056],[-4.87068,56.56988],[-4.871172,56.56746],[-4.876132,56.566096],[-4.880047,56.566194],[-4.881721,56.567877],[-4.884676,56.569156],[-4.895222,56.569738],[-4.896871,56.569259],[-4.900678,56.570613],[-4.902179,56.571814],[-4.904934,56.570374],[-4.909332,56.56944],[-4.915629,56.570348],[-4.919036,56.572511],[-4.926434,56.574471],[-4.92955,56.575607],[-4.933459,56.574764],[-4.936013,56.574533],[-4.942086,56.574313],[-4.945617,56.574589],[-4.947472,56.575727],[-4.950527,56.572185],[-4.952723,56.5682],[-4.952922,56.565427],[-4.951333,56.564458],[-4.951532,56.56368],[-4.955867,56.562589],[-4.958866,56.56138],[-4.964297,56.560896],[-4.970888,56.55921],[-4.971988,56.557777],[-4.971142,56.554566],[-4.97282,56.554796],[-4.979017,56.55475],[-4.982307,56.555287],[-4.985128,56.556487],[-4.988921,56.554333],[-4.989122,56.552553],[-4.987019,56.549313],[-4.988227,56.546255],[-4.992454,56.544046],[-4.99432,56.542131],[-5.000448,56.541754],[-5.005339,56.542292],[-5.006731,56.540757],[-5.009896,56.539539],[-5.011248,56.538634],[-5.017692,56.538352],[-5.022722,56.536144],[-5.026731,56.536231],[-5.032537,56.538247],[-5.039292,56.538185],[-5.040574,56.538657],[-5.045293,56.537045],[-5.051885,56.536177],[-5.055059,56.533277],[-5.057545,56.531728],[-5.057311,56.529828],[-5.058032,56.52879],[-5.061743,56.527107],[-5.068502,56.527723],[-5.078842,56.527876],[-5.081686,56.528542],[-5.08558,56.528931],[-5.092119,56.529024],[-5.095004,56.528301],[-5.095919,56.528494],[-5.095737,56.527716],[-5.09746,56.526316],[-5.097435,56.525018],[-5.098228,56.523272],[-5.097801,56.52233],[-5.099128,56.51976],[-5.099534,56.517381],[-5.101855,56.516512],[-5.103404,56.515376],[-5.10293,56.514655],[-5.103311,56.512453],[-5.105661,56.511666],[-5.106975,56.509251],[-5.109147,56.507677],[-5.112086,56.506152],[-5.117716,56.504136],[-5.119393,56.501402],[-5.118549,56.500043],[-5.119798,56.497927],[-5.121745,56.496799],[-5.124032,56.493586],[-5.128209,56.49202],[-5.126646,56.490957],[-5.128369,56.490297],[-5.129906,56.490822],[-5.132013,56.490167],[-5.136307,56.489906],[-5.136698,56.488264],[-5.135483,56.487616],[-5.137852,56.487089],[-5.139009,56.485064],[-5.142179,56.483815],[-5.143208,56.482302],[-5.141406,56.481127],[-5.142765,56.479504],[-5.14168,56.478758],[-5.139599,56.478838],[-5.137114,56.478056],[-5.13541,56.477883],[-5.135325,56.476847],[-5.141892,56.475436],[-5.145176,56.475474],[-5.146398,56.474651],[-5.149086,56.473895],[-5.150422,56.472918],[-5.156895,56.471944],[-5.157811,56.470267],[-5.160782,56.46967],[-5.161071,56.468133],[-5.165283,56.465115],[-5.165163,56.464452],[-5.162501,56.463199],[-5.162719,56.462407],[-5.167345,56.461266],[-5.169812,56.459264],[-5.16995,56.457512],[-5.173394,56.456754],[-5.174644,56.455873],[-5.175127,56.454858],[-5.181293,56.453077],[-5.182872,56.451868],[-5.187159,56.450597],[-5.189186,56.448849],[-5.190487,56.448306],[-5.196105,56.446979],[-5.197904,56.446852],[-5.20117,56.448053],[-5.205028,56.447886],[-5.207559,56.44711],[-5.21056,56.446794],[-5.213612,56.445019],[-5.215481,56.444453],[-5.21974,56.444522],[-5.221996,56.444067],[-5.225251,56.444136],[-5.22593,56.442937],[-5.228148,56.442413],[-5.228433,56.440571],[-5.230901,56.441517],[-5.23246,56.43948],[-5.232288,56.437814],[-5.234304,56.437194],[-5.237108,56.437168],[-5.239009,56.437907],[-5.24401,56.437364],[-5.249104,56.438739],[-5.252137,56.441201],[-5.25144,56.442072],[-5.251988,56.443297],[-5.255204,56.445846],[-5.258289,56.450125],[-5.262258,56.453243],[-5.263367,56.454814],[-5.266978,56.45792],[-5.268315,56.457606],[-5.270579,56.455811],[-5.269361,56.454953],[-5.270091,56.453433],[-5.269397,56.453105],[-5.268792,56.450882],[-5.27064,56.450955],[-5.271723,56.452499],[-5.275085,56.453746],[-5.278239,56.451064],[-5.280654,56.450933],[-5.283957,56.449978],[-5.285779,56.449844],[-5.288088,56.452337],[-5.288934,56.452718],[-5.290682,56.452106],[-5.292469,56.453991],[-5.295959,56.453516],[-5.299835,56.456074],[-5.303754,56.454563],[-5.305785,56.454763],[-5.311811,56.453675],[-5.312624,56.455448],[-5.316065,56.457746],[-5.318528,56.456956],[-5.320265,56.454756],[-5.321559,56.454361],[-5.322027,56.453454],[-5.324656,56.451888],[-5.325257,56.451165],[-5.328703,56.450476],[-5.330353,56.450522],[-5.331287,56.452391],[-5.334446,56.453426],[-5.335193,56.452414],[-5.337425,56.452149],[-5.33924,56.452866],[-5.339298,56.454674],[-5.34053,56.456196],[-5.343873,56.458038],[-5.346886,56.458289],[-5.348212,56.459418],[-5.349961,56.459727],[-5.352482,56.45905],[-5.358599,56.456343],[-5.362514,56.455698],[-5.366264,56.454453],[-5.371507,56.455035],[-5.375415,56.454084],[-5.378701,56.45397],[-5.381531,56.454471],[-5.384768,56.45448],[-5.387811,56.455145],[-5.388438,56.455706],[-5.391927,56.454942],[-5.394226,56.455035],[-5.396627,56.452654],[-5.3977,56.452204],[-5.399859,56.452329],[-5.401689,56.453131],[-5.405024,56.453054],[-5.406764,56.452397],[-5.407546,56.450744],[-5.409507,56.450206],[-5.413588,56.449989],[-5.415675,56.451274],[-5.41395,56.454888],[-5.414911,56.455241],[-5.422065,56.452558],[-5.422689,56.450713],[-5.42427,56.450807],[-5.42889,56.450114],[-5.43186,56.449853],[-5.434875,56.447562],[-5.437272,56.447355],[-5.441446,56.447631],[-5.443355,56.448587],[-5.44526,56.448888],[-5.444405,56.449816],[-5.44162,56.450863],[-5.439339,56.450909],[-5.439014,56.453316],[-5.436589,56.453583],[-5.435533,56.454373],[-5.435955,56.455469],[-5.438202,56.455661],[-5.439787,56.45518],[-5.440868,56.455602],[-5.443938,56.454251],[-5.444279,56.453075],[-5.442642,56.452788],[-5.443905,56.451636],[-5.445794,56.45145],[-5.446875,56.452509],[-5.448397,56.451777],[-5.45163,56.451452],[-5.453185,56.449764],[-5.455435,56.449321],[-5.458533,56.448062],[-5.461019,56.448017],[-5.462842,56.446817],[-5.465469,56.44596],[-5.467704,56.443347],[-5.467573,56.442735],[-5.468961,56.440223],[-5.469416,56.438221],[-5.472512,56.436693],[-5.47418,56.436516],[-5.474465,56.435651],[-5.476111,56.435502],[-5.476585,56.43619],[-5.47848,56.435669],[-5.47947,56.434467],[-5.482106,56.435038],[-5.481506,56.436584],[-5.482319,56.43705],[-5.483886,56.435955],[-5.484271,56.434284],[-5.484039,56.433083],[-5.482626,56.432037],[-5.48254,56.430452],[-5.485086,56.428781],[-5.486393,56.426233],[-5.483589,56.425349],[-5.483995,56.422112],[-5.478815,56.418872],[-5.47549,56.417936],[-5.473989,56.41557],[-5.475198,56.414773],[-5.472669,56.414157],[-5.472752,56.41292],[-5.474518,56.412916],[-5.476644,56.412121],[-5.478323,56.410841],[-5.481586,56.411854],[-5.484118,56.411595],[-5.486764,56.410411],[-5.489249,56.407838],[-5.4932,56.406991],[-5.495912,56.405839],[-5.499438,56.404961],[-5.503369,56.403001],[-5.503408,56.401304],[-5.505495,56.399709],[-5.506611,56.39827],[-5.51032,56.396939],[-5.512264,56.396588],[-5.514083,56.395624],[-5.51576,56.393779],[-5.514188,56.392984],[-5.516,56.390599],[-5.517384,56.390348],[-5.519747,56.389262],[-5.521096,56.387958],[-5.523187,56.386772],[-5.522723,56.384379],[-5.52312,56.383424],[-5.529223,56.380091],[-5.524515,56.379747],[-5.525511,56.379248],[-5.522869,56.377613],[-5.525428,56.376414],[-5.526874,56.374701],[-5.530097,56.374421],[-5.531651,56.373055],[-5.533217,56.372485],[-5.533709,56.371308],[-5.531514,56.370568],[-5.529343,56.370999],[-5.528626,56.370601],[-5.52986,56.36936],[-5.532622,56.367514],[-5.534685,56.365537],[-5.534489,56.364293],[-5.536325,56.363486],[-5.53818,56.361136],[-5.5382,56.359683],[-5.536745,56.356394],[-5.534356,56.35648],[-5.535448,56.354106],[-5.533475,56.354406],[-5.531834,56.353899],[-5.528521,56.354354],[-5.526792,56.35358],[-5.526504,56.352384],[-5.525358,56.351113],[-5.523573,56.350103],[-5.524079,56.34927],[-5.522876,56.348591],[-5.523962,56.347038],[-5.52371,56.346119],[-5.520388,56.345347],[-5.51956,56.345459],[-5.517373,56.346912],[-5.515026,56.347478],[-5.513776,56.34902],[-5.514506,56.349758],[-5.51325,56.350861],[-5.512765,56.352165],[-5.508991,56.354389],[-5.506724,56.356425],[-5.505352,56.356594],[-5.504159,56.355484],[-5.503125,56.355876],[-5.49626,56.359634],[-5.495705,56.36231],[-5.492861,56.363343],[-5.490946,56.362955],[-5.490399,56.362222],[-5.49329,56.361202],[-5.493867,56.359827],[-5.494989,56.359291],[-5.49602,56.357856],[-5.493859,56.357383],[-5.490302,56.357928],[-5.487406,56.357254],[-5.485568,56.355832],[-5.482771,56.356149],[-5.479768,56.355361],[-5.47695,56.355975],[-5.47574,56.357003],[-5.472793,56.358344],[-5.469466,56.359251],[-5.46834,56.360218],[-5.468027,56.361858],[-5.467378,56.362645],[-5.461019,56.364637],[-5.458606,56.366203],[-5.455009,56.366996],[-5.45323,56.367922],[-5.450055,56.368437],[-5.447576,56.368282],[-5.444475,56.366759],[-5.444434,56.367574],[-5.442776,56.367583],[-5.441584,56.365834],[-5.442428,56.365181],[-5.441536,56.364343],[-5.443144,56.362811],[-5.444521,56.362101],[-5.452887,56.360816],[-5.45535,56.359938],[-5.457059,56.35869],[-5.458384,56.358392],[-5.458599,56.357546],[-5.463577,56.356638],[-5.464654,56.355749],[-5.469413,56.353944],[-5.477046,56.352412],[-5.478782,56.35316],[-5.480434,56.352722],[-5.481895,56.353117],[-5.485474,56.353389],[-5.491198,56.353291],[-5.49889,56.352133],[-5.503598,56.350147],[-5.504315,56.348631],[-5.505929,56.346933],[-5.506797,56.346655],[-5.50844,56.345067],[-5.510214,56.344553],[-5.512105,56.343196],[-5.513096,56.342929],[-5.51812,56.343179],[-5.519618,56.343702],[-5.521431,56.343165],[-5.522197,56.34233],[-5.524896,56.342799],[-5.530502,56.345891],[-5.531954,56.347333],[-5.534604,56.348849],[-5.535679,56.348562],[-5.538105,56.349238],[-5.538972,56.350206],[-5.541137,56.348621],[-5.541456,56.346693],[-5.542692,56.344666],[-5.54477,56.344373],[-5.546351,56.345366],[-5.54649,56.346513],[-5.548508,56.346882],[-5.548409,56.347995],[-5.549611,56.348208],[-5.552513,56.347383],[-5.554539,56.347576],[-5.556317,56.346936],[-5.558653,56.34508],[-5.56211,56.343605],[-5.564358,56.341072],[-5.563831,56.340539],[-5.566071,56.339306],[-5.568048,56.338768],[-5.57098,56.335801],[-5.572352,56.336029],[-5.574527,56.334849],[-5.575546,56.334872],[-5.577594,56.333521],[-5.578348,56.330301],[-5.579325,56.328533],[-5.579214,56.327548],[-5.580015,56.326603],[-5.579862,56.324972],[-5.581169,56.322313],[-5.581903,56.318396],[-5.582774,56.317177],[-5.581578,56.316534],[-5.580819,56.313953],[-5.582293,56.313392],[-5.584176,56.311666],[-5.586411,56.305636],[-5.587249,56.306803],[-5.588506,56.306025],[-5.587826,56.305005],[-5.586476,56.304303],[-5.587899,56.302738],[-5.588757,56.300457],[-5.586753,56.297804],[-5.588246,56.297082],[-5.587777,56.295958],[-5.589678,56.291855],[-5.590178,56.289354],[-5.590833,56.288763],[-5.589939,56.286603],[-5.591359,56.285187],[-5.59197,56.282511],[-5.589798,56.282662],[-5.587338,56.285798],[-5.584762,56.287348],[-5.581993,56.286287],[-5.581585,56.285622],[-5.57993,56.285366],[-5.5792,56.28388],[-5.583412,56.280266],[-5.584453,56.278698],[-5.584282,56.277138],[-5.586516,56.27657],[-5.587927,56.274902],[-5.5893,56.271014],[-5.592176,56.269119],[-5.593534,56.267407],[-5.594693,56.264848],[-5.592376,56.262298],[-5.595765,56.259507],[-5.599234,56.254227],[-5.598405,56.252111],[-5.598735,56.251038],[-5.59699,56.250016],[-5.596028,56.248822],[-5.593509,56.249925],[-5.591258,56.250035],[-5.590278,56.249659],[-5.588642,56.250296],[-5.586019,56.249014],[-5.581683,56.248151],[-5.580284,56.249518],[-5.578042,56.250059],[-5.577588,56.252028],[-5.5752,56.254048],[-5.57014,56.255723],[-5.567625,56.258017],[-5.563758,56.259079],[-5.561875,56.260727],[-5.55821,56.26074],[-5.550151,56.258847],[-5.548614,56.259264],[-5.546369,56.258825],[-5.544764,56.25946],[-5.542416,56.258795],[-5.534061,56.258106],[-5.532422,56.259715],[-5.530272,56.259439],[-5.52549,56.262241],[-5.522802,56.263046],[-5.521486,56.262356],[-5.519052,56.262761],[-5.517806,56.262209],[-5.518346,56.259563],[-5.515716,56.260029],[-5.514614,56.261229],[-5.51323,56.261808],[-5.513431,56.262854],[-5.512541,56.26363],[-5.511787,56.265201],[-5.509056,56.267055],[-5.51,56.267546],[-5.505201,56.270117],[-5.502037,56.26957],[-5.5009,56.269003],[-5.499173,56.269954],[-5.494938,56.268528],[-5.496516,56.265707],[-5.497477,56.26525],[-5.497736,56.263621],[-5.496502,56.263142],[-5.495124,56.261551],[-5.49358,56.261169],[-5.49248,56.260064],[-5.489677,56.25933],[-5.487407,56.257609],[-5.483197,56.257145],[-5.483001,56.256425],[-5.484476,56.255567],[-5.485024,56.254668],[-5.486329,56.254858],[-5.488133,56.255782],[-5.491525,56.255639],[-5.498594,56.257436],[-5.500126,56.257109],[-5.502034,56.255311],[-5.504179,56.254515],[-5.507234,56.254462],[-5.508826,56.253765],[-5.510859,56.252126],[-5.511531,56.251122],[-5.511201,56.250075],[-5.511532,56.248402],[-5.510626,56.247861],[-5.512267,56.246561],[-5.515932,56.247204],[-5.51739,56.246118],[-5.520692,56.246304],[-5.522078,56.247388],[-5.521786,56.248246],[-5.523257,56.24968],[-5.527398,56.248803],[-5.525902,56.246625],[-5.52808,56.245839],[-5.529509,56.244174],[-5.533027,56.244023],[-5.536375,56.245041],[-5.538137,56.244029],[-5.538758,56.242451],[-5.540832,56.240576],[-5.543176,56.239455],[-5.544903,56.239725],[-5.54648,56.238909],[-5.550955,56.238122],[-5.552013,56.238808],[-5.55559,56.239049],[-5.555895,56.239878],[-5.557419,56.240009],[-5.559398,56.238758],[-5.562924,56.238628],[-5.565763,56.237539],[-5.566985,56.236386],[-5.566459,56.23455],[-5.563843,56.233348],[-5.562949,56.231829],[-5.559852,56.232693],[-5.558177,56.233789],[-5.55206,56.232359],[-5.548518,56.230509],[-5.548746,56.228417],[-5.547959,56.227156],[-5.547526,56.224481],[-5.546318,56.223486],[-5.547178,56.221234],[-5.5461,56.219116],[-5.542862,56.217358],[-5.54406,56.216006],[-5.545935,56.215556],[-5.547651,56.214026],[-5.552873,56.21173],[-5.553735,56.21184],[-5.55444,56.213169],[-5.553317,56.215155],[-5.555516,56.214858],[-5.556605,56.214067],[-5.556111,56.212636],[-5.554666,56.213104],[-5.554077,56.211989],[-5.556895,56.210981],[-5.557393,56.210406],[-5.556681,56.209377],[-5.558132,56.208795],[-5.560474,56.209751],[-5.564051,56.210647],[-5.563053,56.212263],[-5.560969,56.212244],[-5.560231,56.213255],[-5.562654,56.213366],[-5.56676,56.210758],[-5.565479,56.209865],[-5.56223,56.20991],[-5.560198,56.209243],[-5.560116,56.208254],[-5.557366,56.205715],[-5.557283,56.203878],[-5.5583,56.203359],[-5.560637,56.203773],[-5.561669,56.201902],[-5.562531,56.201495],[-5.562218,56.200119],[-5.563073,56.199241],[-5.566023,56.198668],[-5.566611,56.197622],[-5.570478,56.195158],[-5.571048,56.193684],[-5.570321,56.192531],[-5.570752,56.189869],[-5.575805,56.186004],[-5.575113,56.183783],[-5.577512,56.182377],[-5.57891,56.180943],[-5.581017,56.181677],[-5.582654,56.181454],[-5.586776,56.177401],[-5.587458,56.176119],[-5.587335,56.174887],[-5.588621,56.173621],[-5.588804,56.172543],[-5.586902,56.171694],[-5.584713,56.171865],[-5.584343,56.17098],[-5.585314,56.168935],[-5.587145,56.167995],[-5.589686,56.168631],[-5.593793,56.167123],[-5.595368,56.166295],[-5.598655,56.163281],[-5.598486,56.162603],[-5.600468,56.161138],[-5.598747,56.160008],[-5.597312,56.160726],[-5.595835,56.160324],[-5.600387,56.155368],[-5.59936,56.154386],[-5.600774,56.152542],[-5.601999,56.152116],[-5.60311,56.150077],[-5.602967,56.148317],[-5.600479,56.147132],[-5.597566,56.149673],[-5.594461,56.1535],[-5.591998,56.153435],[-5.591429,56.154387],[-5.587952,56.154022],[-5.587765,56.153454],[-5.590249,56.15164],[-5.592773,56.149013],[-5.596722,56.147452],[-5.598661,56.145724],[-5.598662,56.145243],[-5.602116,56.144323],[-5.603825,56.143162],[-5.607116,56.140386],[-5.607739,56.13878],[-5.609862,56.136093],[-5.612218,56.13418],[-5.614661,56.13156],[-5.612549,56.130887],[-5.611123,56.131947],[-5.607906,56.131556],[-5.606875,56.130597],[-5.605209,56.130349],[-5.603796,56.131757],[-5.598349,56.132734],[-5.597872,56.13349],[-5.595903,56.134307],[-5.595042,56.136116],[-5.59314,56.136788],[-5.591753,56.138195],[-5.592824,56.140618],[-5.591691,56.142557],[-5.58957,56.143127],[-5.587448,56.142995],[-5.585531,56.144548],[-5.580489,56.146003],[-5.580765,56.148629],[-5.578806,56.149558],[-5.577178,56.152283],[-5.57791,56.153192],[-5.57686,56.154208],[-5.578488,56.154954],[-5.579828,56.156671],[-5.578447,56.157523],[-5.576103,56.157202],[-5.57472,56.157575],[-5.570292,56.159429],[-5.568459,56.159866],[-5.566889,56.16203],[-5.563852,56.163342],[-5.561789,56.164497],[-5.55844,56.164802],[-5.556035,56.167016],[-5.553014,56.167894],[-5.547681,56.171078],[-5.548224,56.172687],[-5.544838,56.175988],[-5.541828,56.177305],[-5.540401,56.178933],[-5.538069,56.178473],[-5.53557,56.180151],[-5.534572,56.181669],[-5.53188,56.182222],[-5.531038,56.183424],[-5.528044,56.185347],[-5.527247,56.186849],[-5.525556,56.188223],[-5.523748,56.188072],[-5.521335,56.189],[-5.516682,56.190033],[-5.515374,56.190921],[-5.513983,56.191047],[-5.509593,56.190492],[-5.509016,56.190082],[-5.505908,56.189504],[-5.503583,56.188692],[-5.50211,56.187679],[-5.501332,56.186076],[-5.504126,56.184255],[-5.504836,56.1834],[-5.507877,56.18235],[-5.509426,56.181499],[-5.511576,56.181209],[-5.513838,56.180479],[-5.515708,56.178097],[-5.516942,56.177184],[-5.518081,56.175593],[-5.519811,56.17468],[-5.519967,56.173916],[-5.51739,56.170416],[-5.51711,56.169035],[-5.518812,56.167471],[-5.52001,56.165549],[-5.523343,56.162467],[-5.524277,56.160644],[-5.525772,56.1599],[-5.52765,56.159789],[-5.529508,56.159088],[-5.532355,56.15545],[-5.536062,56.153195],[-5.536633,56.152467],[-5.536404,56.150605],[-5.538211,56.150284],[-5.539896,56.148995],[-5.543117,56.145058],[-5.545142,56.144227],[-5.546345,56.144497],[-5.548281,56.143247],[-5.548894,56.1422],[-5.54758,56.141936],[-5.548554,56.140859],[-5.547995,56.140243],[-5.549157,56.139268],[-5.548615,56.138405],[-5.551051,56.136882],[-5.552266,56.133737],[-5.553988,56.133774],[-5.555978,56.131921],[-5.556628,56.130329],[-5.55567,56.129458],[-5.556115,56.128263],[-5.557837,56.126433],[-5.559484,56.125967],[-5.561295,56.124575],[-5.562193,56.122796],[-5.561863,56.1221],[-5.562885,56.119144],[-5.566666,56.116261],[-5.568102,56.113612],[-5.568017,56.112],[-5.566936,56.112225],[-5.568205,56.10977],[-5.56688,56.10997],[-5.563862,56.109351],[-5.561203,56.110003],[-5.560103,56.109244],[-5.562702,56.106483],[-5.560655,56.106499],[-5.55861,56.108774],[-5.557038,56.10966],[-5.555621,56.10985],[-5.553502,56.11158],[-5.550971,56.111337],[-5.550753,56.109752],[-5.547693,56.110554],[-5.547362,56.109975],[-5.550193,56.107349],[-5.552662,56.105939],[-5.554494,56.103998],[-5.555322,56.101375],[-5.552173,56.102298],[-5.549711,56.101505],[-5.547346,56.102554],[-5.54565,56.102908],[-5.544293,56.103905],[-5.53954,56.104441],[-5.53726,56.104048],[-5.536588,56.102994],[-5.538065,56.102308],[-5.537945,56.10143],[-5.533691,56.102321],[-5.530288,56.100557],[-5.52931,56.099277],[-5.530027,56.096653],[-5.533663,56.095349],[-5.533168,56.094689],[-5.534308,56.092651],[-5.536279,56.0917],[-5.536806,56.090777],[-5.537999,56.090725],[-5.539755,56.088921],[-5.542099,56.087734],[-5.542878,56.085819],[-5.545026,56.084503],[-5.543871,56.083835],[-5.5406,56.085597],[-5.538556,56.085669],[-5.535866,56.086228],[-5.534093,56.084952],[-5.532384,56.084642],[-5.52888,56.085101],[-5.527456,56.083771],[-5.532301,56.079793],[-5.532156,56.078211],[-5.529318,56.077145],[-5.528405,56.074843],[-5.525331,56.074859],[-5.52179,56.075261],[-5.516406,56.07386],[-5.515097,56.073879],[-5.514457,56.076019],[-5.51243,56.074673],[-5.516018,56.073129],[-5.517163,56.073083],[-5.518836,56.073799],[-5.523011,56.073132],[-5.527998,56.073263],[-5.530143,56.074132],[-5.534973,56.075531],[-5.537448,56.075784],[-5.541811,56.077336],[-5.54349,56.07847],[-5.54762,56.079578],[-5.550465,56.080791],[-5.551061,56.081767],[-5.547917,56.085346],[-5.547684,56.086652],[-5.549206,56.088951],[-5.553302,56.091076],[-5.557025,56.091646],[-5.560559,56.091758],[-5.564824,56.088512],[-5.566417,56.087739],[-5.570849,56.088239],[-5.57317,56.089144],[-5.573182,56.090146],[-5.57636,56.091722],[-5.57922,56.091693],[-5.582415,56.092409],[-5.584654,56.091751],[-5.586842,56.089851],[-5.586658,56.089141],[-5.588257,56.08643],[-5.59055,56.085977],[-5.59477,56.083464],[-5.599978,56.078947],[-5.599875,56.077528],[-5.603233,56.075137],[-5.603415,56.074554],[-5.605751,56.073567],[-5.605883,56.072835],[-5.60812,56.070369],[-5.607219,56.069419],[-5.609002,56.067634],[-5.610525,56.066713],[-5.611518,56.06462],[-5.613238,56.06321],[-5.616002,56.059883],[-5.617751,56.060798],[-5.615769,56.063918],[-5.616092,56.064097],[-5.622655,56.059458],[-5.622333,56.057908],[-5.624175,56.057157],[-5.626053,56.055686],[-5.627046,56.055989],[-5.63265,56.052538],[-5.630267,56.052999],[-5.634436,56.049088],[-5.632116,56.049087],[-5.638581,56.043533],[-5.638479,56.041257],[-5.636932,56.040601],[-5.637988,56.038511],[-5.639187,56.037689],[-5.640458,56.036006],[-5.640761,56.034707],[-5.640298,56.033962],[-5.638619,56.033705],[-5.637584,56.03423],[-5.636463,56.033323],[-5.637103,56.032132],[-5.635315,56.030546],[-5.635778,56.029148],[-5.637818,56.027607],[-5.641426,56.02848],[-5.643522,56.029695],[-5.645687,56.029557],[-5.646387,56.028958],[-5.648315,56.028652],[-5.651119,56.027311],[-5.656698,56.022901],[-5.65548,56.02224],[-5.65469,56.020425],[-5.655741,56.01864],[-5.657451,56.017199],[-5.657376,56.01616],[-5.658654,56.015326],[-5.658917,56.013061],[-5.660141,56.01298],[-5.661944,56.013803],[-5.665538,56.011331],[-5.666402,56.009948],[-5.668079,56.008679],[-5.668499,56.007606],[-5.67021,56.006188],[-5.670565,56.004517],[-5.671899,56.003872],[-5.673777,56.002269],[-5.673959,56.000722],[-5.676153,55.998826],[-5.677594,55.998792],[-5.6802,55.996165],[-5.680647,55.995077],[-5.683869,55.992409],[-5.686504,55.988743],[-5.684962,55.989234],[-5.68353,55.988508],[-5.681323,55.990606],[-5.679767,55.99086],[-5.67782,55.992311],[-5.677483,55.991135],[-5.680715,55.989698],[-5.682528,55.987732],[-5.683417,55.985728],[-5.685028,55.984448],[-5.686793,55.983613],[-5.688631,55.981612],[-5.690417,55.981167],[-5.69454,55.977743],[-5.695702,55.977488],[-5.697669,55.975159],[-5.697893,55.97365],[-5.700066,55.9727],[-5.701589,55.971629],[-5.703952,55.968428],[-5.705938,55.966898],[-5.707348,55.963961],[-5.706645,55.963986],[-5.704601,55.965406],[-5.703476,55.965129],[-5.704412,55.963438],[-5.704272,55.960969],[-5.705158,55.960758],[-5.706008,55.958925],[-5.70771,55.957611],[-5.70901,55.955394],[-5.712577,55.952864],[-5.714959,55.94872],[-5.713632,55.9486],[-5.707054,55.955612],[-5.705452,55.956687],[-5.703584,55.959048],[-5.697764,55.961552],[-5.695985,55.961218],[-5.693419,55.962136],[-5.690384,55.962753],[-5.68807,55.964459],[-5.684423,55.965211],[-5.681249,55.966898],[-5.680232,55.967],[-5.676721,55.969195],[-5.676381,55.968733],[-5.677247,55.96713],[-5.68218,55.965506],[-5.681251,55.96465],[-5.684597,55.959802],[-5.685715,55.959391],[-5.688042,55.956255],[-5.68557,55.955291],[-5.683037,55.955106],[-5.681039,55.956177],[-5.679153,55.958679],[-5.677168,55.95904],[-5.674006,55.96086],[-5.671695,55.963789],[-5.670649,55.963658],[-5.671913,55.961641],[-5.668264,55.963945],[-5.663284,55.969344],[-5.662727,55.970408],[-5.656185,55.974986],[-5.654745,55.977299],[-5.656468,55.976858],[-5.659846,55.976563],[-5.662923,55.977011],[-5.664845,55.976491],[-5.665465,55.974774],[-5.666393,55.974242],[-5.670396,55.973187],[-5.671675,55.974219],[-5.671691,55.97532],[-5.670546,55.976015],[-5.671679,55.977389],[-5.672042,55.979104],[-5.670948,55.979744],[-5.665925,55.977421],[-5.665036,55.978535],[-5.66652,55.979395],[-5.665934,55.981323],[-5.66458,55.979212],[-5.663393,55.980153],[-5.664367,55.981122],[-5.664748,55.982941],[-5.662598,55.984632],[-5.661817,55.986539],[-5.659412,55.987065],[-5.659165,55.988008],[-5.656169,55.990511],[-5.655173,55.993296],[-5.653143,55.995663],[-5.653054,55.996416],[-5.654129,55.997697],[-5.650968,55.999744],[-5.65198,56.000674],[-5.649231,56.001304],[-5.647071,56.000493],[-5.642581,56.007445],[-5.641639,56.008174],[-5.641361,56.009396],[-5.636666,56.013055],[-5.635714,56.012917],[-5.640113,56.006201],[-5.641221,56.003061],[-5.643341,56.001883],[-5.644438,55.999563],[-5.647511,55.995932],[-5.648636,55.99398],[-5.650053,55.992788],[-5.650603,55.991473],[-5.650036,55.99045],[-5.650368,55.98955],[-5.653758,55.986127],[-5.658405,55.983624],[-5.652906,55.983729],[-5.650473,55.983527],[-5.648516,55.982933],[-5.643634,55.986868],[-5.639965,55.988865],[-5.637911,55.991241],[-5.636736,55.991559],[-5.634785,55.993064],[-5.635285,55.993773],[-5.633985,55.995641],[-5.632482,55.996893],[-5.632242,55.998858],[-5.629935,56.00232],[-5.624846,56.005536],[-5.618222,56.011665],[-5.615671,56.01348],[-5.613963,56.015211],[-5.611273,56.01957],[-5.612222,56.020168],[-5.616002,56.019931],[-5.620985,56.020944],[-5.623368,56.020496],[-5.624409,56.021615],[-5.627219,56.021406],[-5.625286,56.024232],[-5.623764,56.025305],[-5.621014,56.02643],[-5.620015,56.026151],[-5.618951,56.024306],[-5.615695,56.023455],[-5.612088,56.024251],[-5.607146,56.028844],[-5.604332,56.030266],[-5.598687,56.035127],[-5.596198,56.036751],[-5.595046,56.038401],[-5.595338,56.039095],[-5.58839,56.04642],[-5.588648,56.047587],[-5.584799,56.049385],[-5.583109,56.050803],[-5.581877,56.051286],[-5.582432,56.052358],[-5.579554,56.054586],[-5.577624,56.053869],[-5.576174,56.05392],[-5.577251,56.051687],[-5.580784,56.048699],[-5.583917,56.047195],[-5.585265,56.04693],[-5.584877,56.045479],[-5.58515,56.043987],[-5.586593,56.042153],[-5.588478,56.040882],[-5.589336,56.039785],[-5.594322,56.036408],[-5.598355,56.033923],[-5.60292,56.029238],[-5.606575,56.026937],[-5.609047,56.02396],[-5.606881,56.024274],[-5.604158,56.025987],[-5.603922,56.024924],[-5.602323,56.024643],[-5.597924,56.026201],[-5.597416,56.025492],[-5.594979,56.027249],[-5.594857,56.028444],[-5.593828,56.029463],[-5.594337,56.030531],[-5.592288,56.031695],[-5.588606,56.03461],[-5.589647,56.035353],[-5.589121,56.036699],[-5.58682,56.039063],[-5.584999,56.038226],[-5.581956,56.039186],[-5.581312,56.038904],[-5.583724,56.035709],[-5.585416,56.033983],[-5.584916,56.032822],[-5.581825,56.033828],[-5.577884,56.036848],[-5.575923,56.037016],[-5.573628,56.038393],[-5.56953,56.040276],[-5.566442,56.041457],[-5.566717,56.03999],[-5.568974,56.038121],[-5.570224,56.03612],[-5.573359,56.033578],[-5.575742,56.032027],[-5.573938,56.031305],[-5.572561,56.032282],[-5.569394,56.032386],[-5.571214,56.030502],[-5.572803,56.029677],[-5.574009,56.031202],[-5.576819,56.031271],[-5.58007,56.029769],[-5.582568,56.027717],[-5.590255,56.023135],[-5.594345,56.018973],[-5.596573,56.017552],[-5.597986,56.015702],[-5.597226,56.015432],[-5.592472,56.019198],[-5.591123,56.01842],[-5.594987,56.014849],[-5.593389,56.014128],[-5.590793,56.015386],[-5.587646,56.016408],[-5.585936,56.017613],[-5.585472,56.01858],[-5.582486,56.019777],[-5.578881,56.021693],[-5.577289,56.021398],[-5.574805,56.022066],[-5.574034,56.024019],[-5.570023,56.025967],[-5.567047,56.029501],[-5.565075,56.029342],[-5.563579,56.028624],[-5.565374,56.026946],[-5.566919,56.026124],[-5.568454,56.024439],[-5.569095,56.023155],[-5.568372,56.022884],[-5.571806,56.019134],[-5.572491,56.017078],[-5.575395,56.016027],[-5.576336,56.015006],[-5.576356,56.01314],[-5.582921,56.01098],[-5.59016,56.009609],[-5.591778,56.009666],[-5.593305,56.010498],[-5.595837,56.00953],[-5.600385,56.00595],[-5.606275,55.999819],[-5.611579,55.995631],[-5.613208,55.993573],[-5.614936,55.992699],[-5.615852,55.991048],[-5.617637,55.989559],[-5.61797,55.987463],[-5.618657,55.985643],[-5.622105,55.981767],[-5.622614,55.980354],[-5.62528,55.979093],[-5.628041,55.977092],[-5.629586,55.977052],[-5.632996,55.974441],[-5.634693,55.972383],[-5.636858,55.968361],[-5.6392,55.966417],[-5.640514,55.964431],[-5.649381,55.959642],[-5.653386,55.956543],[-5.657501,55.95522],[-5.660503,55.95206],[-5.662833,55.951447],[-5.665919,55.948657],[-5.667074,55.946645],[-5.665778,55.944971],[-5.67045,55.941347],[-5.67108,55.940213],[-5.671173,55.937306],[-5.672323,55.935582],[-5.67359,55.934501],[-5.675302,55.931941],[-5.681641,55.925745],[-5.680635,55.925462],[-5.679839,55.923299],[-5.685309,55.918006],[-5.686671,55.915317],[-5.687089,55.912216],[-5.688404,55.910895],[-5.68853,55.9097],[-5.68749,55.909132],[-5.684316,55.909737],[-5.681759,55.908689],[-5.681127,55.907256],[-5.681319,55.905201],[-5.680846,55.904634],[-5.68135,55.902932],[-5.683701,55.901082],[-5.684885,55.89961],[-5.686883,55.898139],[-5.686464,55.897044],[-5.686859,55.895655],[-5.685364,55.892783],[-5.683263,55.893484],[-5.683728,55.890449],[-5.68231,55.890703],[-5.681702,55.889449],[-5.682788,55.888747],[-5.683316,55.887396],[-5.682105,55.886856],[-5.67885,55.88636],[-5.676264,55.886928],[-5.675287,55.887551],[-5.673603,55.890059],[-5.671098,55.892374],[-5.664017,55.897748],[-5.662268,55.898429],[-5.659397,55.900594],[-5.658523,55.902633],[-5.656377,55.903067],[-5.65355,55.902702],[-5.648291,55.903539],[-5.645955,55.904323],[-5.646304,55.903092],[-5.649113,55.900611],[-5.647056,55.900822],[-5.643998,55.903905],[-5.644012,55.905416],[-5.64032,55.908586],[-5.638537,55.910831],[-5.636243,55.910488],[-5.633045,55.91153],[-5.631649,55.912985],[-5.632666,55.915122],[-5.626783,55.917363],[-5.625021,55.91924],[-5.624999,55.917194],[-5.623852,55.917185],[-5.621576,55.91989],[-5.619787,55.923715],[-5.615548,55.923768],[-5.61477,55.924865],[-5.61554,55.925566],[-5.612841,55.926252],[-5.609005,55.929213],[-5.605902,55.929643],[-5.604669,55.929242],[-5.603547,55.930414],[-5.600951,55.930229],[-5.600394,55.928802],[-5.593963,55.93104],[-5.591892,55.9328],[-5.590023,55.933441],[-5.588022,55.934851],[-5.586033,55.935687],[-5.582969,55.937893],[-5.579477,55.939636],[-5.575976,55.939104],[-5.575998,55.937867],[-5.571855,55.936283],[-5.571766,55.934964],[-5.570764,55.934257],[-5.571395,55.933289],[-5.576405,55.931161],[-5.576978,55.93043],[-5.579884,55.929037],[-5.582121,55.927502],[-5.584598,55.926238],[-5.583916,55.92544],[-5.583645,55.922593],[-5.585402,55.920379],[-5.588084,55.918741],[-5.590983,55.917964],[-5.593016,55.91701],[-5.597495,55.91714],[-5.599586,55.916747],[-5.603786,55.914892],[-5.607524,55.91213],[-5.610029,55.908856],[-5.612151,55.906977],[-5.613232,55.904145],[-5.614818,55.902188],[-5.618088,55.900293],[-5.619586,55.900074],[-5.62183,55.897637],[-5.622109,55.896457],[-5.619947,55.894115],[-5.619414,55.892265],[-5.62222,55.891067],[-5.622663,55.89015],[-5.624368,55.889278],[-5.625995,55.889311],[-5.628878,55.887783],[-5.62817,55.887291],[-5.626357,55.888771],[-5.623718,55.888078],[-5.626027,55.88544],[-5.625416,55.883417],[-5.629136,55.881063],[-5.642545,55.869432],[-5.646829,55.86805],[-5.650346,55.865316],[-5.653843,55.859736],[-5.654219,55.857599],[-5.655142,55.85606],[-5.654652,55.855666],[-5.655153,55.852918],[-5.657201,55.85243],[-5.657503,55.851567],[-5.658948,55.851644],[-5.661046,55.848701],[-5.662879,55.847374],[-5.661498,55.845019],[-5.662816,55.843253],[-5.664284,55.840451],[-5.664432,55.839347],[-5.662479,55.838291],[-5.661404,55.835445],[-5.661805,55.832408],[-5.662578,55.831967],[-5.662886,55.829211],[-5.663534,55.828629],[-5.662768,55.827592],[-5.66369,55.827235],[-5.665687,55.824519],[-5.665671,55.823333],[-5.670563,55.816429],[-5.670532,55.815283],[-5.671301,55.813723],[-5.668853,55.813327],[-5.667106,55.812437],[-5.666611,55.811253],[-5.667046,55.809973],[-5.665996,55.809544],[-5.66576,55.80859],[-5.667902,55.807466],[-5.668366,55.805982],[-5.665833,55.805918],[-5.664432,55.804312],[-5.664644,55.802746],[-5.665693,55.801761],[-5.663702,55.801214],[-5.663536,55.800135],[-5.664392,55.7993],[-5.662892,55.798378],[-5.657794,55.797798],[-5.656371,55.796757],[-5.656275,55.795312],[-5.655099,55.79443],[-5.653643,55.794212],[-5.651272,55.793186],[-5.650163,55.793533],[-5.648615,55.79259],[-5.648172,55.791439],[-5.646098,55.791276],[-5.644553,55.790326],[-5.64394,55.789352],[-5.640121,55.786836],[-5.636874,55.787175],[-5.634523,55.786953],[-5.629755,55.787593],[-5.629278,55.788124],[-5.627142,55.788317],[-5.625012,55.790035],[-5.624048,55.789888],[-5.621369,55.790848],[-5.618933,55.790742],[-5.616229,55.791769],[-5.615634,55.792415],[-5.613261,55.793235],[-5.609383,55.793479],[-5.610037,55.792126],[-5.608287,55.790208],[-5.609317,55.788744],[-5.610933,55.78853],[-5.611807,55.787722],[-5.616962,55.784625],[-5.617993,55.785295],[-5.619627,55.784685],[-5.619928,55.782685],[-5.620985,55.782059],[-5.618994,55.780911],[-5.616707,55.780245],[-5.617495,55.77877],[-5.616313,55.778153],[-5.613028,55.778515],[-5.614071,55.776771],[-5.612371,55.776502],[-5.610448,55.77691],[-5.606041,55.777313],[-5.601611,55.776931],[-5.602435,55.776007],[-5.605914,55.775334],[-5.608219,55.775557],[-5.609176,55.775072],[-5.609618,55.773899],[-5.612565,55.773421],[-5.614583,55.772096],[-5.615974,55.769414],[-5.616993,55.768539],[-5.615847,55.76771],[-5.614305,55.767845],[-5.613181,55.766385],[-5.61412,55.765159],[-5.613196,55.764569],[-5.614507,55.763141],[-5.615869,55.762431],[-5.615549,55.760705],[-5.613625,55.76042],[-5.606787,55.761443],[-5.603838,55.762879],[-5.600378,55.763749],[-5.599315,55.764851],[-5.596902,55.765919],[-5.58944,55.767176],[-5.589045,55.768492],[-5.585829,55.769938],[-5.583229,55.771828],[-5.582984,55.772396],[-5.580791,55.773618],[-5.580586,55.775114],[-5.57912,55.776177],[-5.578466,55.779051],[-5.577139,55.779193],[-5.57589,55.780016],[-5.574398,55.779659],[-5.571425,55.779863],[-5.570413,55.778737],[-5.570336,55.777813],[-5.5758,55.775182],[-5.57335,55.774664],[-5.568707,55.775698],[-5.566667,55.776849],[-5.565545,55.776797],[-5.55995,55.778766],[-5.555763,55.779742],[-5.55165,55.782927],[-5.548885,55.783839],[-5.546509,55.785256],[-5.543871,55.784842],[-5.541079,55.786168],[-5.539213,55.786091],[-5.537957,55.787813],[-5.532175,55.790915],[-5.531228,55.792004],[-5.528891,55.793424],[-5.528492,55.794303],[-5.52377,55.794991],[-5.522505,55.796224],[-5.521268,55.796309],[-5.519272,55.797338],[-5.516852,55.800782],[-5.516424,55.802468],[-5.514988,55.803574],[-5.512415,55.804241],[-5.511634,55.80594],[-5.509545,55.806584],[-5.507087,55.809252],[-5.505521,55.810304],[-5.505341,55.810957],[-5.49908,55.815294],[-5.496935,55.817454],[-5.492567,55.817093],[-5.490455,55.818025],[-5.489548,55.817884],[-5.482228,55.821918],[-5.479703,55.825658],[-5.478437,55.826503],[-5.47719,55.828102],[-5.475628,55.831716],[-5.475984,55.834003],[-5.475371,55.835194],[-5.47343,55.836175],[-5.472567,55.837161],[-5.470301,55.837279],[-5.467827,55.838194],[-5.466649,55.837976],[-5.465819,55.835302],[-5.462755,55.836683],[-5.462423,55.837883],[-5.460986,55.839061],[-5.458702,55.840145],[-5.457589,55.841202],[-5.456485,55.84371],[-5.456894,55.845964],[-5.456583,55.847412],[-5.4512,55.850508],[-5.450349,55.851633],[-5.451133,55.853085],[-5.449193,55.854192],[-5.445924,55.857165],[-5.440481,55.860316],[-5.436215,55.85957],[-5.436763,55.857866],[-5.435512,55.857201],[-5.438297,55.855603],[-5.441012,55.854853],[-5.443591,55.852474],[-5.44603,55.851322],[-5.448532,55.848087],[-5.450441,55.847129],[-5.450228,55.846579],[-5.451187,55.844601],[-5.449778,55.843031],[-5.447857,55.843984],[-5.44721,55.843625],[-5.447395,55.842203],[-5.446378,55.841005],[-5.448029,55.838891],[-5.447433,55.837217],[-5.449815,55.836692],[-5.451393,55.836742],[-5.453866,55.83598],[-5.455335,55.834536],[-5.45505,55.832135],[-5.459872,55.831118],[-5.459299,55.829259],[-5.463495,55.828395],[-5.465724,55.82643],[-5.466335,55.824768],[-5.468026,55.824122],[-5.469435,55.82219],[-5.470549,55.821785],[-5.470382,55.82063],[-5.471736,55.819862],[-5.467677,55.819214],[-5.467023,55.817605],[-5.468558,55.816649],[-5.469486,55.815499],[-5.468595,55.814924],[-5.470555,55.813068],[-5.473032,55.811839],[-5.474898,55.811732],[-5.477274,55.809907],[-5.479148,55.808884],[-5.477759,55.807744],[-5.478069,55.806087],[-5.47981,55.806295],[-5.480898,55.807588],[-5.483473,55.806698],[-5.482965,55.805677],[-5.480926,55.806069],[-5.478253,55.805818],[-5.478999,55.804018],[-5.481451,55.80314],[-5.481955,55.802168],[-5.485101,55.801301],[-5.487588,55.801792],[-5.487293,55.80323],[-5.488207,55.803452],[-5.489119,55.80196],[-5.491697,55.800387],[-5.491239,55.799516],[-5.493915,55.798494],[-5.496738,55.798063],[-5.499106,55.795944],[-5.502729,55.795054],[-5.505258,55.79531],[-5.509952,55.794093],[-5.510626,55.793212],[-5.511114,55.791403],[-5.513369,55.790929],[-5.51416,55.789078],[-5.511659,55.788999],[-5.513897,55.787308],[-5.515976,55.784803],[-5.517791,55.784136],[-5.52243,55.783211],[-5.525133,55.782131],[-5.527718,55.780636],[-5.528861,55.77934],[-5.530061,55.779202],[-5.534526,55.776368],[-5.539302,55.77503],[-5.543731,55.773211],[-5.548699,55.769525],[-5.550116,55.769032],[-5.553442,55.76705],[-5.55578,55.767239],[-5.559177,55.766448],[-5.561632,55.76635],[-5.562775,55.767086],[-5.56538,55.767923],[-5.569826,55.766926],[-5.571368,55.764166],[-5.574981,55.762703],[-5.576167,55.761758],[-5.577027,55.759271],[-5.579976,55.757441],[-5.580807,55.755893],[-5.583282,55.755275],[-5.584681,55.753229],[-5.583458,55.751794],[-5.583603,55.748789],[-5.584258,55.748041],[-5.585998,55.748064],[-5.587505,55.747502],[-5.588264,55.746643],[-5.587678,55.745995],[-5.589743,55.7454],[-5.591343,55.743482],[-5.596126,55.740667],[-5.598418,55.741166],[-5.601442,55.740216],[-5.599661,55.73936],[-5.597285,55.737243],[-5.598344,55.735915],[-5.600878,55.734171],[-5.600547,55.733277],[-5.602286,55.732061],[-5.604178,55.729406],[-5.606004,55.727817],[-5.60584,55.726293],[-5.607169,55.723521],[-5.609311,55.722397],[-5.609422,55.721521],[-5.611128,55.71956],[-5.615937,55.715921],[-5.616263,55.714711],[-5.617695,55.713837],[-5.617521,55.712386],[-5.620206,55.709901],[-5.623744,55.708385],[-5.62947,55.702816],[-5.637449,55.69675],[-5.647468,55.692629],[-5.660368,55.6881],[-5.668699,55.6846],[-5.675227,55.683267],[-5.67655,55.682441],[-5.676094,55.681313],[-5.673421,55.678781],[-5.668636,55.675867],[-5.665996,55.673325],[-5.664689,55.671606],[-5.663072,55.667837],[-5.664346,55.665812],[-5.666371,55.665014],[-5.667358,55.663496],[-5.667676,55.661882],[-5.667148,55.659147],[-5.669093,55.658359],[-5.670066,55.657541],[-5.669187,55.65516],[-5.669204,55.652499],[-5.670257,55.651296],[-5.672374,55.65066],[-5.672866,55.648713],[-5.674072,55.646216],[-5.672607,55.644241],[-5.674138,55.639452],[-5.674287,55.637906],[-5.672653,55.634798],[-5.672371,55.632721],[-5.673655,55.631158],[-5.67503,55.630398],[-5.676415,55.628302],[-5.677725,55.627529],[-5.678715,55.624699],[-5.678329,55.622786],[-5.678844,55.618279],[-5.680311,55.616025],[-5.681984,55.614965],[-5.684553,55.614725],[-5.683586,55.611553],[-5.683404,55.606754],[-5.685271,55.600314],[-5.686401,55.598331],[-5.68852,55.596408],[-5.690903,55.595884],[-5.691283,55.59491],[-5.690945,55.593313],[-5.692642,55.589906],[-5.692729,55.587372],[-5.696683,55.586077],[-5.700686,55.584531],[-5.701639,55.584538],[-5.704336,55.582838],[-5.705748,55.582993],[-5.706107,55.582002],[-5.707746,55.581125],[-5.709358,55.581254],[-5.711124,55.580245],[-5.712059,55.580316],[-5.713428,55.579299],[-5.715312,55.57854],[-5.715561,55.576136],[-5.714685,55.575102],[-5.716174,55.573478],[-5.715244,55.573201],[-5.714633,55.570688],[-5.715597,55.568294],[-5.713475,55.567585],[-5.712775,55.566831],[-5.713649,55.565314],[-5.712234,55.56387],[-5.711675,55.562502],[-5.7125,55.561077],[-5.710984,55.559041],[-5.710031,55.556976],[-5.707011,55.552614],[-5.706818,55.549381],[-5.705742,55.548056],[-5.705254,55.54556],[-5.705747,55.542791],[-5.704759,55.541299],[-5.703933,55.536888],[-5.704432,55.532587],[-5.706848,55.529921],[-5.707181,55.528301],[-5.710535,55.52752],[-5.711011,55.526538],[-5.710287,55.525819],[-5.711799,55.523867],[-5.712396,55.5217],[-5.713699,55.520563],[-5.71281,55.518974],[-5.713786,55.51678],[-5.712661,55.51441],[-5.714011,55.512655],[-5.714086,55.509797],[-5.714716,55.509326],[-5.714094,55.508032],[-5.712938,55.507847],[-5.712418,55.506848],[-5.712187,55.500984],[-5.712602,55.499602],[-5.711888,55.498966],[-5.711226,55.495494],[-5.712018,55.49451],[-5.711384,55.492925],[-5.712134,55.492338],[-5.712321,55.490462],[-5.713051,55.489286],[-5.714236,55.488498],[-5.713438,55.487667],[-5.71399,55.486188],[-5.712861,55.484531],[-5.713404,55.483465],[-5.711604,55.481375],[-5.712022,55.480095],[-5.71301,55.479171],[-5.713157,55.477832],[-5.712287,55.477401],[-5.713042,55.474584],[-5.712004,55.472863],[-5.713676,55.466307],[-5.71289,55.460353],[-5.713269,55.455101],[-5.713875,55.453891],[-5.714409,55.449735],[-5.716232,55.442441],[-5.719806,55.433259],[-5.722982,55.428568],[-5.726012,55.42616],[-5.729977,55.423963],[-5.731351,55.424231],[-5.73648,55.423079],[-5.740023,55.423585],[-5.741764,55.42345],[-5.743392,55.423806],[-5.745948,55.422684],[-5.747772,55.423372],[-5.748974,55.424516],[-5.751607,55.423855],[-5.750606,55.422879],[-5.753243,55.421984],[-5.753777,55.420516],[-5.753545,55.419185],[-5.752496,55.419017],[-5.752269,55.417974],[-5.752923,55.416661],[-5.755308,55.414174],[-5.758002,55.413745],[-5.760546,55.412412],[-5.763715,55.412494],[-5.765827,55.411188],[-5.766589,55.410139],[-5.768889,55.409484],[-5.769995,55.408577],[-5.771515,55.408765],[-5.773451,55.408345],[-5.772572,55.407253],[-5.773788,55.406334],[-5.773903,55.405049],[-5.775697,55.404481],[-5.775595,55.403742],[-5.778684,55.402163],[-5.77895,55.401305],[-5.785407,55.397863],[-5.789495,55.396743],[-5.791502,55.39584],[-5.791733,55.394214],[-5.794173,55.392974],[-5.795912,55.391252],[-5.796747,55.389661],[-5.796604,55.388092],[-5.795834,55.387477],[-5.79547,55.384831],[-5.793907,55.384183],[-5.793496,55.382613],[-5.795045,55.381639],[-5.795474,55.380426],[-5.794727,55.379882],[-5.796081,55.378527],[-5.796736,55.377207],[-5.798637,55.37619],[-5.797952,55.374998],[-5.798519,55.373977],[-5.797028,55.373412],[-5.797184,55.371744],[-5.796512,55.369017],[-5.79901,55.367411],[-5.799435,55.366323],[-5.800931,55.365296],[-5.803032,55.364756],[-5.803812,55.364062],[-5.802007,55.363105],[-5.801137,55.363168],[-5.799662,55.362108],[-5.799548,55.360182],[-5.802146,55.356986],[-5.799126,55.353307],[-5.801873,55.350852],[-5.801747,55.350276],[-5.804748,55.348335],[-5.803356,55.347717],[-5.802077,55.345415],[-5.800354,55.344803],[-5.798341,55.343314],[-5.798192,55.342082],[-5.797441,55.341252],[-5.798111,55.340255],[-5.797252,55.337382],[-5.797688,55.336454],[-5.796701,55.334431],[-5.797985,55.332431],[-5.797637,55.331021],[-5.798917,55.330535],[-5.801455,55.326671],[-5.801409,55.325773],[-5.800346,55.324844],[-5.79963,55.322852],[-5.798392,55.321614],[-5.799415,55.320525],[-5.799417,55.318974],[-5.800385,55.318625],[-5.800441,55.317571],[-5.802046,55.316055],[-5.802202,55.313398],[-5.80481,55.31092],[-5.804196,55.309527],[-5.802498,55.308676],[-5.80209,55.307785],[-5.803357,55.306945],[-5.803869,55.305711],[-5.801697,55.304093],[-5.802086,55.302974],[-5.798668,55.299381],[-5.79501,55.299526],[-5.795164,55.298505],[-5.792261,55.298674],[-5.791569,55.297639],[-5.78738,55.296948],[-5.785063,55.29546],[-5.779268,55.294026],[-5.776233,55.293912],[-5.775689,55.292921],[-5.77408,55.292329],[-5.765724,55.290457],[-5.761595,55.288871],[-5.758141,55.289256],[-5.752764,55.289215],[-5.749306,55.289816],[-5.744539,55.289971],[-5.738102,55.290892],[-5.736169,55.291784],[-5.734718,55.291779],[-5.731355,55.29087],[-5.730324,55.291293],[-5.726929,55.291554],[-5.726041,55.291999],[-5.719904,55.29327],[-5.715497,55.295356],[-5.713544,55.297393],[-5.710382,55.299306],[-5.706638,55.299977],[-5.704007,55.300916],[-5.703229,55.301892],[-5.702063,55.30208],[-5.701318,55.302999],[-5.698838,55.303565],[-5.694579,55.303355],[-5.693375,55.304631],[-5.690963,55.305253],[-5.691141,55.306747],[-5.688524,55.3077],[-5.680642,55.308528],[-5.676032,55.308542],[-5.671288,55.307724],[-5.668488,55.307753],[-5.663822,55.308337],[-5.662407,55.308907],[-5.658844,55.3096],[-5.656734,55.309338],[-5.654829,55.309962],[-5.653649,55.310946],[-5.648167,55.310548],[-5.645322,55.309612],[-5.644199,55.308369],[-5.644475,55.307767],[-5.643016,55.307078],[-5.640323,55.308265],[-5.640756,55.308899],[-5.629895,55.308822],[-5.618545,55.306341],[-5.616314,55.307575],[-5.61362,55.30759],[-5.609686,55.307145],[-5.609061,55.30756],[-5.606855,55.307239],[-5.6036,55.307515],[-5.601543,55.308488],[-5.599195,55.309029],[-5.59668,55.310238],[-5.596757,55.310599],[-5.593006,55.31178],[-5.591981,55.312647],[-5.587263,55.314375],[-5.586197,55.315469],[-5.584024,55.316662],[-5.576064,55.319274],[-5.573406,55.319958],[-5.57196,55.319839],[-5.57141,55.320773],[-5.568284,55.322392],[-5.561829,55.323709],[-5.561959,55.324982],[-5.562932,55.32668],[-5.561163,55.328845],[-5.561588,55.329979],[-5.56,55.331356],[-5.558553,55.331659],[-5.558244,55.332441],[-5.555712,55.33252],[-5.554971,55.3334],[-5.551877,55.334614],[-5.551522,55.335577],[-5.548603,55.337069],[-5.548743,55.337843],[-5.545667,55.33952],[-5.545352,55.341556],[-5.542039,55.34297],[-5.537486,55.347022],[-5.533935,55.348519],[-5.527006,55.355054],[-5.525509,55.357655],[-5.523353,55.359408],[-5.521564,55.359796],[-5.519674,55.362328],[-5.51962,55.363764],[-5.516761,55.368095],[-5.516566,55.369197],[-5.519504,55.376755],[-5.52136,55.379431],[-5.521645,55.380591],[-5.523781,55.382503],[-5.522947,55.384128],[-5.52419,55.385315],[-5.524872,55.387921],[-5.526591,55.38949],[-5.526438,55.391845],[-5.528723,55.393384],[-5.529289,55.396277],[-5.532377,55.39795],[-5.534946,55.398847],[-5.537412,55.400803],[-5.541105,55.40253],[-5.541851,55.403623],[-5.541969,55.405292],[-5.545418,55.406662],[-5.548438,55.41223],[-5.548716,55.415239],[-5.550839,55.416697],[-5.552343,55.418128],[-5.559081,55.417999],[-5.561134,55.417364],[-5.563543,55.418305],[-5.565749,55.415692],[-5.568778,55.414317],[-5.572963,55.413677],[-5.575072,55.414326],[-5.579946,55.413586],[-5.584044,55.413744],[-5.585676,55.414444],[-5.589037,55.41668],[-5.590536,55.416986],[-5.596805,55.419875],[-5.600285,55.422676],[-5.60336,55.424726],[-5.604102,55.425934],[-5.602988,55.427906],[-5.59961,55.42874],[-5.594026,55.427775],[-5.591551,55.427658],[-5.587429,55.427971],[-5.585659,55.427567],[-5.584416,55.426643],[-5.582198,55.42611],[-5.581293,55.424685],[-5.57905,55.426034],[-5.573163,55.427315],[-5.570815,55.427413],[-5.567824,55.42835],[-5.562935,55.432012],[-5.561903,55.432367],[-5.560911,55.433547],[-5.558295,55.435079],[-5.555829,55.435443],[-5.554093,55.435329],[-5.5531,55.434466],[-5.551358,55.434876],[-5.552445,55.437124],[-5.555302,55.438898],[-5.555188,55.441922],[-5.553709,55.443295],[-5.550483,55.444867],[-5.548766,55.443695],[-5.547539,55.4461],[-5.548539,55.447514],[-5.547338,55.448878],[-5.545569,55.449629],[-5.547208,55.450355],[-5.545241,55.453223],[-5.545285,55.4568],[-5.544332,55.457988],[-5.545782,55.462522],[-5.545266,55.464437],[-5.545594,55.466042],[-5.544415,55.467843],[-5.543032,55.469169],[-5.539953,55.471136],[-5.537522,55.472114],[-5.535323,55.472338],[-5.532963,55.473402],[-5.533337,55.474823],[-5.530149,55.477058],[-5.530139,55.477837],[-5.527344,55.47813],[-5.523971,55.478783],[-5.522268,55.480095],[-5.524055,55.482052],[-5.521182,55.484429],[-5.520002,55.484072],[-5.517721,55.484861],[-5.516773,55.487147],[-5.513004,55.486386],[-5.510338,55.48756],[-5.511082,55.488281],[-5.51333,55.488175],[-5.515337,55.488841],[-5.515186,55.492245],[-5.513528,55.493951],[-5.515734,55.496315],[-5.514127,55.497655],[-5.511898,55.498917],[-5.509305,55.499709],[-5.507763,55.499111],[-5.507035,55.500364],[-5.508462,55.500377],[-5.509582,55.501221],[-5.509849,55.503677],[-5.511731,55.504886],[-5.511475,55.506197],[-5.50859,55.509288],[-5.507344,55.511405],[-5.507205,55.51242],[-5.504731,55.514622],[-5.504203,55.516962],[-5.503586,55.51769],[-5.503299,55.52008],[-5.503773,55.521658],[-5.502894,55.523095],[-5.503515,55.523657],[-5.502868,55.525649],[-5.504224,55.52664],[-5.500791,55.528406],[-5.495296,55.529894],[-5.490629,55.529114],[-5.48998,55.529929],[-5.489774,55.532425],[-5.491169,55.533082],[-5.490114,55.53456],[-5.490397,55.535882],[-5.489744,55.537002],[-5.492955,55.540224],[-5.493075,55.541848],[-5.493714,55.542877],[-5.493334,55.543778],[-5.494489,55.544995],[-5.494273,55.546372],[-5.493153,55.546647],[-5.492749,55.549608],[-5.492149,55.550079],[-5.493993,55.552417],[-5.494143,55.553956],[-5.492716,55.555399],[-5.491538,55.557757],[-5.490681,55.562758],[-5.488855,55.563192],[-5.489974,55.565071],[-5.492665,55.565448],[-5.494211,55.56642],[-5.494397,55.567763],[-5.492661,55.570032],[-5.49311,55.570628],[-5.489875,55.572387],[-5.488284,55.572338],[-5.487109,55.573585],[-5.487632,55.574739],[-5.486707,55.57513],[-5.487648,55.578937],[-5.477311,55.581006],[-5.471429,55.581589],[-5.46998,55.580898],[-5.469949,55.579686],[-5.468775,55.578433],[-5.469168,55.577435],[-5.468056,55.576162],[-5.468826,55.575026],[-5.468334,55.572747],[-5.466873,55.571113],[-5.465814,55.571501],[-5.466892,55.574127],[-5.465668,55.575448],[-5.46457,55.574787],[-5.462427,55.57442],[-5.458454,55.576425],[-5.458603,55.577755],[-5.460395,55.579509],[-5.460317,55.580939],[-5.459487,55.581224],[-5.459791,55.582506],[-5.460711,55.582779],[-5.463313,55.584856],[-5.464659,55.584885],[-5.464621,55.586114],[-5.460789,55.586546],[-5.459123,55.587376],[-5.458715,55.589047],[-5.459043,55.590696],[-5.460309,55.59182],[-5.462266,55.592655],[-5.466335,55.592783],[-5.467515,55.593656],[-5.468278,55.595492],[-5.470856,55.595972],[-5.471214,55.596619],[-5.470618,55.598047],[-5.472122,55.598265],[-5.472861,55.599166],[-5.472804,55.600673],[-5.473497,55.602133],[-5.474419,55.602511],[-5.475481,55.604189],[-5.476127,55.606918],[-5.475598,55.607297],[-5.47613,55.612856],[-5.475309,55.61346],[-5.475417,55.615394],[-5.476306,55.617981],[-5.478442,55.619143],[-5.478858,55.620161],[-5.477741,55.621716],[-5.478313,55.622348],[-5.476173,55.623411],[-5.477321,55.624452],[-5.476238,55.625998],[-5.476288,55.626928],[-5.478165,55.629279],[-5.477368,55.630507],[-5.476407,55.633919],[-5.47708,55.635141],[-5.479711,55.636095],[-5.479369,55.637387],[-5.479497,55.639276],[-5.480534,55.639939],[-5.481114,55.641535],[-5.482584,55.641816],[-5.483659,55.642642],[-5.482196,55.644427],[-5.479862,55.645528],[-5.478825,55.646573],[-5.475964,55.647832],[-5.475052,55.648762],[-5.473899,55.648664],[-5.472799,55.649702],[-5.469694,55.650464],[-5.469243,55.652734],[-5.470096,55.653024],[-5.468592,55.654717],[-5.468248,55.656579],[-5.468742,55.657131],[-5.466515,55.659536],[-5.465109,55.660556],[-5.464547,55.661669],[-5.465355,55.66424],[-5.464171,55.665505],[-5.462331,55.666731],[-5.461478,55.668328],[-5.461649,55.669281],[-5.460759,55.670191],[-5.461562,55.671715],[-5.460765,55.672592],[-5.46094,55.674219],[-5.459182,55.675563],[-5.459043,55.676426],[-5.457564,55.677515],[-5.456509,55.679201],[-5.457555,55.680293],[-5.460062,55.681027],[-5.460762,55.681826],[-5.460326,55.682661],[-5.457694,55.684394],[-5.453592,55.686051],[-5.4503,55.686445],[-5.448777,55.687679],[-5.448866,55.689313],[-5.447266,55.691296],[-5.447121,55.695526],[-5.445852,55.697297],[-5.446129,55.698359],[-5.448788,55.699762],[-5.447812,55.701921],[-5.447019,55.702132],[-5.446784,55.703627],[-5.448465,55.704268],[-5.45056,55.706353],[-5.448332,55.708448],[-5.447477,55.709955],[-5.445255,55.711482],[-5.443614,55.711929],[-5.442536,55.713084],[-5.44303,55.713523],[-5.441246,55.714419],[-5.440746,55.715435],[-5.437208,55.717494],[-5.435614,55.719387],[-5.435458,55.72114],[-5.433842,55.722606],[-5.430007,55.723742],[-5.42866,55.724544],[-5.427953,55.725652],[-5.42628,55.726287],[-5.425589,55.728856],[-5.424766,55.730466],[-5.42318,55.73118],[-5.422963,55.731887],[-5.42024,55.733455],[-5.412798,55.734539],[-5.410851,55.735506],[-5.409986,55.736735],[-5.410758,55.737086],[-5.408421,55.739705],[-5.407608,55.742352],[-5.406174,55.742545],[-5.402802,55.745554],[-5.400141,55.746929],[-5.398614,55.747264],[-5.395997,55.748761],[-5.394297,55.750566],[-5.388566,55.75103],[-5.387798,55.750578],[-5.384612,55.752029],[-5.381128,55.752754],[-5.378915,55.754173],[-5.376849,55.754891],[-5.374234,55.754895],[-5.368537,55.756207],[-5.366697,55.756419],[-5.363516,55.757612],[-5.358818,55.759988],[-5.357817,55.760124],[-5.355938,55.761469],[-5.353349,55.762272],[-5.352339,55.763266],[-5.352008,55.764965],[-5.350727,55.766145],[-5.347937,55.765915],[-5.34572,55.766187],[-5.33927,55.765979],[-5.332748,55.765307],[-5.331484,55.764788],[-5.329807,55.76495],[-5.328632,55.764353],[-5.327038,55.765016],[-5.327105,55.765617],[-5.324694,55.766235],[-5.321767,55.768283],[-5.319735,55.770603],[-5.319635,55.771886],[-5.316175,55.77529],[-5.316941,55.775669],[-5.31615,55.777718],[-5.317581,55.779073],[-5.317195,55.780719],[-5.315783,55.781841],[-5.314699,55.784761],[-5.315878,55.7861],[-5.315754,55.787411],[-5.317009,55.788942],[-5.319233,55.790599],[-5.31918,55.79176],[-5.319818,55.792979],[-5.318758,55.79739],[-5.320412,55.800789],[-5.322842,55.802243],[-5.322589,55.804322],[-5.323356,55.806023],[-5.324804,55.807651],[-5.326686,55.808189],[-5.327022,55.809133],[-5.330852,55.810976],[-5.331158,55.812127],[-5.332874,55.814279],[-5.332177,55.817466],[-5.332358,55.818882],[-5.334143,55.820519],[-5.336369,55.821619],[-5.337231,55.822445],[-5.337046,55.823646],[-5.337828,55.825315],[-5.339756,55.827213],[-5.343341,55.82935],[-5.347146,55.830775],[-5.350259,55.83104],[-5.352277,55.83312],[-5.354982,55.833842],[-5.355806,55.834418],[-5.356971,55.836252],[-5.356455,55.837682],[-5.359115,55.839627],[-5.360842,55.840191],[-5.360908,55.841516],[-5.36222,55.843201],[-5.366457,55.845072],[-5.366356,55.847138],[-5.369705,55.849456],[-5.374115,55.850828],[-5.377092,55.85236],[-5.378848,55.854262],[-5.379102,55.855163],[-5.38083,55.855911],[-5.383478,55.858154],[-5.383341,55.859437],[-5.384001,55.860023],[-5.38321,55.860863],[-5.385197,55.862476],[-5.387666,55.863333],[-5.389989,55.863479],[-5.392631,55.863266],[-5.395134,55.864999],[-5.397596,55.865586],[-5.403362,55.865961],[-5.406496,55.865244],[-5.409922,55.86517],[-5.412398,55.864133],[-5.413071,55.863466],[-5.415072,55.863588],[-5.414294,55.865296],[-5.408654,55.868599],[-5.406433,55.871028],[-5.40502,55.869768],[-5.405946,55.86799],[-5.403839,55.868695],[-5.402196,55.868376],[-5.40057,55.868983],[-5.399869,55.870562],[-5.396712,55.869935],[-5.398179,55.873141],[-5.400094,55.875051],[-5.401425,55.875096],[-5.402426,55.876295],[-5.403758,55.876721],[-5.404521,55.878584],[-5.405733,55.880366],[-5.408261,55.882287],[-5.408589,55.884387],[-5.409788,55.885618],[-5.409984,55.886629],[-5.411523,55.888705],[-5.413052,55.889887],[-5.411654,55.890384],[-5.409079,55.888207],[-5.405344,55.88761],[-5.403222,55.886756],[-5.402211,55.886842],[-5.402513,55.888255],[-5.405017,55.88899],[-5.405989,55.891035],[-5.407852,55.892359],[-5.41016,55.892648],[-5.411054,55.892366],[-5.411849,55.890767],[-5.415327,55.890477],[-5.415431,55.891975],[-5.416782,55.892243],[-5.419513,55.896459],[-5.41855,55.898967],[-5.419798,55.902236],[-5.418514,55.904102],[-5.418887,55.905247],[-5.4179,55.907302],[-5.419431,55.906881],[-5.420896,55.909151],[-5.420069,55.912941],[-5.421716,55.91464],[-5.422692,55.917449],[-5.422501,55.921091],[-5.424402,55.924486],[-5.425056,55.928181],[-5.424418,55.929664],[-5.424461,55.93103],[-5.425742,55.933498],[-5.427633,55.935589],[-5.428431,55.93955],[-5.42921,55.941475],[-5.428663,55.946781],[-5.432066,55.952562],[-5.434179,55.954696],[-5.435528,55.954915],[-5.43785,55.956064],[-5.441294,55.956682],[-5.443996,55.957969],[-5.443808,55.958738],[-5.444758,55.961031],[-5.444628,55.963723],[-5.446059,55.964034],[-5.447615,55.965137],[-5.448321,55.968025],[-5.448007,55.968866],[-5.451107,55.971854],[-5.4475,55.974625],[-5.449092,55.975681],[-5.448532,55.978075],[-5.446758,55.98026],[-5.445356,55.981001],[-5.446275,55.981685],[-5.445741,55.982617],[-5.445771,55.984212],[-5.446677,55.986012],[-5.445875,55.987185],[-5.445977,55.988603],[-5.444972,55.989827],[-5.445644,55.991166],[-5.447192,55.992156],[-5.447447,55.994204],[-5.447059,55.995343],[-5.448501,55.998746],[-5.446852,56.000976],[-5.447199,56.002078],[-5.449038,56.003465],[-5.449225,56.004606],[-5.450236,56.005361],[-5.450602,56.008138],[-5.4488,56.010612],[-5.446237,56.011957],[-5.445397,56.013304],[-5.445696,56.014216],[-5.446936,56.014632],[-5.446965,56.015662],[-5.448147,56.017311],[-5.44646,56.020792],[-5.445402,56.021601],[-5.445755,56.024882],[-5.444849,56.025533],[-5.445023,56.026759],[-5.443394,56.028431],[-5.440919,56.034329],[-5.439246,56.035432],[-5.43698,56.036198],[-5.436918,56.036824],[-5.431872,56.03574],[-5.430476,56.034772],[-5.430907,56.033584],[-5.431398,56.028174],[-5.430426,56.027209],[-5.429193,56.024197],[-5.42781,56.023087],[-5.428216,56.021041],[-5.427416,56.018948],[-5.428356,56.017254],[-5.428296,56.015673],[-5.427449,56.013188],[-5.426198,56.012198],[-5.423599,56.011973],[-5.42366,56.010457],[-5.422197,56.009338],[-5.421175,56.009578],[-5.417853,56.008398],[-5.412605,56.008321],[-5.411409,56.007385],[-5.411474,56.00648],[-5.407279,56.006223],[-5.406797,56.005755],[-5.40802,56.003617],[-5.407771,56.002129],[-5.405799,56.00144],[-5.403338,56.001917],[-5.400543,56.003149],[-5.400661,56.003677],[-5.396443,56.006531],[-5.394363,56.007339],[-5.393352,56.007237],[-5.392478,56.005242],[-5.390398,56.004576],[-5.38621,56.007142],[-5.384777,56.007327],[-5.38326,56.006344],[-5.382583,56.004377],[-5.380041,56.005768],[-5.377324,56.009295],[-5.375081,56.010067],[-5.374125,56.011801],[-5.372105,56.012383],[-5.368708,56.014184],[-5.366693,56.015835],[-5.366619,56.016924],[-5.365114,56.019267],[-5.365511,56.021268],[-5.364284,56.022592],[-5.361837,56.023893],[-5.3578,56.02491],[-5.354794,56.024759],[-5.354173,56.02202],[-5.352235,56.022351],[-5.350966,56.021788],[-5.349184,56.022066],[-5.34852,56.021526],[-5.34667,56.021666],[-5.345363,56.022426],[-5.344339,56.026643],[-5.343494,56.027911],[-5.3415,56.028437],[-5.34028,56.030938],[-5.338446,56.031824],[-5.337748,56.033137],[-5.338109,56.036989],[-5.337584,56.038019],[-5.33782,56.040008],[-5.33708,56.043611],[-5.338561,56.04598],[-5.341193,56.04781],[-5.341762,56.049373],[-5.340392,56.051455],[-5.33877,56.052569],[-5.336576,56.053487],[-5.33558,56.054417],[-5.333398,56.054827],[-5.331208,56.054795],[-5.326197,56.058006],[-5.328366,56.058579],[-5.330106,56.058605],[-5.332484,56.060716],[-5.334692,56.061002],[-5.334884,56.062146],[-5.336709,56.063128],[-5.335372,56.066649],[-5.332818,56.068753],[-5.329573,56.069325],[-5.325982,56.069284],[-5.324126,56.068591],[-5.32132,56.068615],[-5.323713,56.066798],[-5.324188,56.065779],[-5.321141,56.0652],[-5.320945,56.064706],[-5.324503,56.063001],[-5.323299,56.062737],[-5.324161,56.060997],[-5.322609,56.06089],[-5.320753,56.058827],[-5.319528,56.05935],[-5.316087,56.05885],[-5.315318,56.057751],[-5.312338,56.058604],[-5.312177,56.05953],[-5.309242,56.060063],[-5.305749,56.061303],[-5.302463,56.064502],[-5.300156,56.06468],[-5.297485,56.0653],[-5.297127,56.067314],[-5.295786,56.068636],[-5.295516,56.069713],[-5.29416,56.070486],[-5.294237,56.071577],[-5.295323,56.073287],[-5.293871,56.074355],[-5.293836,56.075633],[-5.29222,56.077982],[-5.292385,56.07991],[-5.288703,56.083205],[-5.283423,56.089175],[-5.278367,56.090326],[-5.273908,56.09235],[-5.272216,56.092777],[-5.269443,56.094689],[-5.263143,56.094932],[-5.259858,56.096026],[-5.259247,56.096878],[-5.257101,56.097461],[-5.257655,56.098979],[-5.257463,56.099942],[-5.259259,56.099777],[-5.260429,56.101059],[-5.257853,56.102264],[-5.255385,56.104002],[-5.254978,56.104971],[-5.256643,56.106589],[-5.255181,56.109809],[-5.25608,56.111078],[-5.255278,56.113318],[-5.254413,56.114304],[-5.251676,56.116112],[-5.251899,56.116569],[-5.250329,56.117804],[-5.247679,56.118964],[-5.246809,56.119679],[-5.24584,56.12168],[-5.244384,56.12304],[-5.242679,56.123953],[-5.2399,56.124382],[-5.236843,56.124202],[-5.237401,56.127472],[-5.236739,56.128398],[-5.230793,56.130576],[-5.228035,56.132296],[-5.225241,56.131993],[-5.225217,56.133243],[-5.222927,56.134228],[-5.220983,56.135911],[-5.218056,56.137118],[-5.215942,56.138768],[-5.213331,56.139339],[-5.210882,56.14059],[-5.209581,56.140909],[-5.206321,56.143691],[-5.200238,56.146146],[-5.19829,56.147476],[-5.195526,56.148091],[-5.192128,56.149887],[-5.190207,56.149823],[-5.185705,56.150726],[-5.182728,56.150778],[-5.176647,56.151177],[-5.176145,56.151706],[-5.174096,56.151628],[-5.169951,56.154016],[-5.163954,56.156003],[-5.158935,56.156482],[-5.151848,56.157777],[-5.145303,56.157827],[-5.140892,56.158417],[-5.13533,56.160927],[-5.133894,56.161197],[-5.13206,56.162323],[-5.131287,56.163313],[-5.129588,56.16384],[-5.127936,56.164989],[-5.126154,56.165668],[-5.123033,56.168206],[-5.120908,56.168718],[-5.119373,56.169961],[-5.117337,56.170843],[-5.11819,56.171776],[-5.116358,56.17291],[-5.117166,56.173532],[-5.11566,56.175637],[-5.113354,56.176928],[-5.11197,56.178328],[-5.108419,56.180652],[-5.107289,56.183516],[-5.107428,56.184938],[-5.105835,56.18687],[-5.106794,56.190653],[-5.105882,56.192132],[-5.108145,56.194588],[-5.108073,56.195799],[-5.110221,56.19703],[-5.110594,56.198153],[-5.106905,56.197797],[-5.104484,56.199123],[-5.104718,56.201964],[-5.100006,56.204877],[-5.09869,56.206377],[-5.094612,56.207733],[-5.095163,56.209454],[-5.090501,56.217717],[-5.086944,56.219633],[-5.08364,56.219536],[-5.081174,56.222137],[-5.077536,56.223351],[-5.077523,56.224223],[-5.076435,56.225257],[-5.076555,56.226184],[-5.07564,56.228265],[-5.072116,56.229593],[-5.071173,56.231219],[-5.073659,56.232562],[-5.072706,56.234278],[-5.070312,56.235723],[-5.066997,56.237222],[-5.065604,56.238507],[-5.057837,56.243032],[-5.057192,56.244504],[-5.053582,56.246554],[-5.051563,56.24667],[-5.04611,56.24585],[-5.044004,56.247718],[-5.043938,56.248669],[-5.046844,56.250375],[-5.045987,56.251671],[-5.047825,56.252726],[-5.047031,56.254308],[-5.044712,56.255509],[-5.043302,56.25691],[-5.041912,56.259535],[-5.040001,56.25925],[-5.038561,56.257178],[-5.040542,56.255053],[-5.041583,56.254706],[-5.041356,56.25343],[-5.042041,56.252621],[-5.044708,56.250774],[-5.046385,56.25023],[-5.043927,56.249271],[-5.043237,56.248085],[-5.046903,56.242866],[-5.04653,56.240794],[-5.047421,56.236278],[-5.046664,56.234066],[-5.044765,56.233732],[-5.03985,56.234239],[-5.034196,56.235601],[-5.027532,56.238169],[-5.024645,56.238608],[-5.022758,56.239859],[-5.016545,56.240806],[-5.008872,56.24262],[-5.002464,56.243117],[-4.999062,56.242849],[-4.997632,56.242322],[-4.996569,56.243287],[-4.98953,56.245345],[-4.979382,56.249577],[-4.977068,56.251178],[-4.967433,56.254682],[-4.961934,56.256234],[-4.953227,56.257764],[-4.94844,56.259141],[-4.944489,56.261528],[-4.941558,56.262797],[-4.940934,56.263608],[-4.934903,56.267767],[-4.933171,56.268133],[-4.932096,56.269495],[-4.929124,56.270821],[-4.926885,56.271505],[-4.924154,56.27103],[-4.922932,56.270479],[-4.920176,56.270518],[-4.917435,56.272546],[-4.916748,56.272307],[-4.918676,56.270012],[-4.931662,56.260652],[-4.933009,56.260062],[-4.937015,56.256724],[-4.939835,56.255024],[-4.941415,56.256936],[-4.942776,56.257002],[-4.944194,56.256134],[-4.945731,56.254087],[-4.947455,56.252936],[-4.948248,56.251071],[-4.950278,56.249977],[-4.951688,56.250004],[-4.953734,56.248978],[-4.956112,56.249115],[-4.95762,56.247421],[-4.958794,56.246737],[-4.963626,56.246585],[-4.964063,56.246071],[-4.970558,56.242725],[-4.971044,56.241899],[-4.974547,56.238979],[-4.979673,56.236815],[-4.981554,56.235583],[-4.983152,56.235373],[-4.984987,56.234277],[-4.989254,56.234565],[-4.990565,56.234399],[-4.992166,56.233412],[-4.994636,56.232489],[-4.99495,56.231654],[-5.002081,56.231414],[-5.004247,56.231051],[-5.005881,56.231304],[-5.007583,56.230166],[-5.01863,56.227238],[-5.020823,56.227178],[-5.021742,56.226571],[-5.026417,56.225072],[-5.028424,56.224063],[-5.032039,56.223295],[-5.034927,56.22169],[-5.038514,56.219216],[-5.042037,56.217547],[-5.043246,56.21642],[-5.046543,56.214465],[-5.055176,56.210899],[-5.061563,56.206605],[-5.05988,56.204927],[-5.063777,56.202411],[-5.070628,56.196941],[-5.074486,56.190239],[-5.080103,56.182188],[-5.080607,56.18038],[-5.082857,56.176575],[-5.084024,56.175529],[-5.083025,56.171955],[-5.080402,56.168599],[-5.080329,56.167354],[-5.081604,56.167456],[-5.089244,56.162666],[-5.095188,56.159916],[-5.097361,56.158328],[-5.101878,56.155945],[-5.113047,56.152133],[-5.117975,56.150062],[-5.120293,56.149787],[-5.121751,56.148843],[-5.124426,56.148362],[-5.127798,56.146065],[-5.137075,56.141956],[-5.140363,56.141856],[-5.141675,56.141322],[-5.143172,56.14171],[-5.14575,56.140124],[-5.147677,56.139858],[-5.149059,56.138984],[-5.152664,56.137591],[-5.154976,56.137556],[-5.158837,56.138425],[-5.163445,56.138153],[-5.16482,56.138932],[-5.166873,56.138053],[-5.170072,56.137894],[-5.173379,56.136222],[-5.17889,56.13609],[-5.181641,56.135771],[-5.185438,56.134869],[-5.188856,56.133567],[-5.190984,56.133121],[-5.194175,56.131515],[-5.195797,56.131323],[-5.199629,56.130119],[-5.203242,56.128376],[-5.202279,56.127826],[-5.20554,56.125619],[-5.205513,56.123939],[-5.206958,56.12245],[-5.206878,56.121881],[-5.209096,56.121167],[-5.209475,56.120595],[-5.207916,56.119265],[-5.207759,56.118163],[-5.210373,56.116871],[-5.211441,56.115523],[-5.209601,56.115445],[-5.207693,56.114097],[-5.208169,56.112938],[-5.2099,56.111217],[-5.209365,56.109136],[-5.205998,56.10841],[-5.204517,56.107051],[-5.204675,56.10595],[-5.208428,56.105524],[-5.214656,56.10266],[-5.216921,56.100309],[-5.216655,56.099341],[-5.218461,56.096799],[-5.219675,56.095922],[-5.223882,56.094495],[-5.229457,56.091944],[-5.234102,56.089031],[-5.237111,56.087622],[-5.238107,56.086562],[-5.24253,56.084385],[-5.243303,56.083698],[-5.242627,56.082847],[-5.24361,56.081545],[-5.246865,56.080488],[-5.248101,56.079228],[-5.253691,56.077076],[-5.254412,56.076091],[-5.259645,56.073827],[-5.260831,56.072644],[-5.264256,56.071228],[-5.265429,56.069327],[-5.265386,56.067265],[-5.269852,56.065106],[-5.268667,56.063159],[-5.268798,56.062625],[-5.274892,56.059924],[-5.277562,56.058248],[-5.279174,56.057742],[-5.28431,56.054657],[-5.287049,56.05164],[-5.288274,56.050834],[-5.289378,56.048615],[-5.290864,56.047771],[-5.290766,56.046722],[-5.291817,56.045763],[-5.29202,56.044567],[-5.293635,56.042595],[-5.293251,56.040448],[-5.293742,56.039612],[-5.293126,56.038792],[-5.293144,56.037493],[-5.295032,56.035815],[-5.296328,56.033655],[-5.298466,56.032406],[-5.299326,56.030248],[-5.302198,56.027533],[-5.302603,56.026451],[-5.301384,56.025031],[-5.301507,56.02364],[-5.308394,56.018771],[-5.312701,56.013406],[-5.314889,56.011683],[-5.318629,56.010108],[-5.320796,56.008436],[-5.327587,56.008074],[-5.328131,56.005712],[-5.331423,56.004576],[-5.332586,56.003731],[-5.3331,56.002242],[-5.332437,56.000696],[-5.333177,55.999134],[-5.335364,55.997156],[-5.337636,55.996892],[-5.340742,55.996178],[-5.341882,55.995073],[-5.341941,55.992325],[-5.342617,55.991583],[-5.342525,55.989989],[-5.339017,55.984461],[-5.338641,55.981963],[-5.339903,55.98023],[-5.34328,55.978861],[-5.344308,55.976941],[-5.347023,55.974485],[-5.347277,55.973071],[-5.346253,55.969192],[-5.345487,55.968287],[-5.345947,55.967421],[-5.342109,55.965309],[-5.341613,55.963079],[-5.339598,55.963035],[-5.338746,55.962357],[-5.336137,55.962958],[-5.333476,55.961834],[-5.330601,55.958952],[-5.329567,55.954844],[-5.328334,55.955353],[-5.329963,55.958219],[-5.328304,55.958073],[-5.327035,55.955886],[-5.32843,55.954033],[-5.331101,55.953142],[-5.332542,55.951903],[-5.334853,55.947111],[-5.336735,55.944871],[-5.33827,55.944479],[-5.339199,55.943532],[-5.340614,55.943114],[-5.340836,55.941523],[-5.342556,55.940295],[-5.343384,55.938748],[-5.342628,55.933689],[-5.340936,55.932085],[-5.343093,55.930827],[-5.345486,55.930438],[-5.347895,55.927639],[-5.348119,55.924118],[-5.346535,55.921854],[-5.344579,55.922061],[-5.34174,55.921606],[-5.340556,55.920184],[-5.340461,55.919361],[-5.342284,55.917529],[-5.342725,55.916515],[-5.344902,55.916056],[-5.347249,55.916441],[-5.347249,55.915421],[-5.345638,55.915218],[-5.348328,55.913327],[-5.351013,55.909974],[-5.35067,55.907397],[-5.346967,55.90575],[-5.347064,55.904273],[-5.344436,55.904615],[-5.343926,55.903801],[-5.345145,55.902433],[-5.347372,55.902188],[-5.351785,55.899272],[-5.351672,55.898426],[-5.349327,55.898876],[-5.348766,55.897295],[-5.345715,55.896893],[-5.346464,55.893883],[-5.345312,55.89258],[-5.347423,55.889695],[-5.348037,55.888208],[-5.347082,55.887596],[-5.345615,55.888022],[-5.343616,55.88746],[-5.341604,55.889741],[-5.340082,55.889719],[-5.338172,55.888346],[-5.335956,55.887966],[-5.335264,55.886703],[-5.337101,55.884159],[-5.335642,55.88347],[-5.33457,55.88514],[-5.332064,55.884929],[-5.330803,55.885988],[-5.328822,55.885637],[-5.326592,55.884533],[-5.326188,55.883366],[-5.324945,55.883045],[-5.323434,55.881647],[-5.323684,55.879704],[-5.326427,55.879157],[-5.32706,55.877958],[-5.325737,55.877521],[-5.323301,55.877888],[-5.323198,55.879691],[-5.32051,55.878692],[-5.31694,55.878555],[-5.313584,55.877762],[-5.313845,55.876987],[-5.317972,55.876198],[-5.319315,55.875227],[-5.318689,55.873386],[-5.316974,55.870803],[-5.312389,55.876076],[-5.311214,55.875631],[-5.311193,55.874613],[-5.31326,55.872641],[-5.313347,55.87168],[-5.31092,55.871872],[-5.309838,55.871039],[-5.309053,55.869521],[-5.310607,55.868148],[-5.311579,55.864818],[-5.314076,55.863924],[-5.315149,55.862045],[-5.315595,55.858116],[-5.317197,55.857304],[-5.31643,55.856843],[-5.314582,55.857293],[-5.312245,55.856785],[-5.311212,55.857042],[-5.304406,55.855486],[-5.30577,55.854609],[-5.31056,55.854736],[-5.312438,55.854169],[-5.313068,55.853032],[-5.310813,55.852167],[-5.306832,55.852435],[-5.304723,55.851986],[-5.301679,55.851788],[-5.300702,55.852656],[-5.299315,55.85275],[-5.298997,55.853613],[-5.301741,55.853935],[-5.303896,55.854573],[-5.303674,55.855515],[-5.296682,55.854871],[-5.295534,55.855628],[-5.295263,55.857243],[-5.290781,55.857002],[-5.28919,55.857373],[-5.287809,55.857019],[-5.287805,55.854605],[-5.289511,55.851152],[-5.288368,55.849542],[-5.285086,55.84834],[-5.282438,55.849719],[-5.27992,55.848568],[-5.279442,55.847825],[-5.275485,55.849131],[-5.274173,55.847975],[-5.272256,55.847419],[-5.270552,55.847774],[-5.269544,55.848623],[-5.267774,55.84837],[-5.266799,55.849794],[-5.267683,55.852462],[-5.265602,55.852704],[-5.261777,55.852572],[-5.256215,55.851742],[-5.254433,55.851169],[-5.251466,55.849225],[-5.251862,55.845847],[-5.251057,55.844718],[-5.250784,55.842221],[-5.249403,55.840622],[-5.247688,55.839961],[-5.245655,55.840011],[-5.243124,55.83965],[-5.241635,55.839804],[-5.238837,55.839098],[-5.236578,55.839126],[-5.235613,55.838567],[-5.233707,55.839566],[-5.23151,55.839561],[-5.225419,55.837869],[-5.224479,55.834922],[-5.222159,55.833621],[-5.220704,55.831578],[-5.219619,55.83091],[-5.219557,55.830074],[-5.216586,55.827744],[-5.215492,55.826491],[-5.211851,55.828033],[-5.210611,55.827824],[-5.208523,55.826134],[-5.205837,55.826195],[-5.204204,55.826888],[-5.205001,55.827559],[-5.204009,55.828428],[-5.20409,55.829904],[-5.202219,55.83016],[-5.201436,55.83094],[-5.200763,55.834014],[-5.200881,55.835449],[-5.201931,55.839863],[-5.204062,55.840918],[-5.205946,55.841183],[-5.207222,55.842233],[-5.20857,55.844531],[-5.209172,55.851626],[-5.208752,55.853799],[-5.207825,55.854484],[-5.208671,55.856314],[-5.212724,55.856226],[-5.213396,55.856429],[-5.21483,55.858603],[-5.215187,55.860598],[-5.218931,55.866339],[-5.220526,55.867345],[-5.221834,55.8703],[-5.225889,55.876487],[-5.22859,55.878304],[-5.230135,55.880344],[-5.233187,55.882936],[-5.234994,55.88535],[-5.234924,55.885881],[-5.237498,55.887454],[-5.240288,55.890933],[-5.240504,55.892008],[-5.242191,55.894389],[-5.240918,55.896659],[-5.24091,55.899244],[-5.240055,55.900412],[-5.239804,55.902062],[-5.23682,55.904459],[-5.233694,55.905557],[-5.23196,55.907176],[-5.228641,55.908066],[-5.224093,55.910522],[-5.220432,55.912815],[-5.219894,55.913912],[-5.21642,55.916255],[-5.214994,55.916624],[-5.212151,55.916703],[-5.209626,55.916277],[-5.207478,55.91643],[-5.20766,55.917342],[-5.206393,55.918863],[-5.205782,55.920783],[-5.205938,55.922356],[-5.204496,55.923771],[-5.201728,55.928226],[-5.20015,55.929377],[-5.199453,55.932316],[-5.198098,55.931588],[-5.19599,55.93212],[-5.197536,55.933221],[-5.196921,55.934603],[-5.194777,55.935073],[-5.194412,55.936467],[-5.196002,55.938214],[-5.200853,55.94061],[-5.202176,55.941655],[-5.201978,55.943569],[-5.202583,55.944394],[-5.20149,55.946194],[-5.200503,55.949999],[-5.198795,55.95226],[-5.199627,55.953313],[-5.200378,55.956012],[-5.197995,55.958106],[-5.197915,55.959169],[-5.198756,55.961111],[-5.197144,55.964291],[-5.19811,55.966477],[-5.197566,55.967269],[-5.199094,55.970533],[-5.196587,55.972886],[-5.196478,55.975842],[-5.194601,55.977567],[-5.19375,55.979372],[-5.193958,55.980645],[-5.193109,55.981075],[-5.190336,55.981503],[-5.187623,55.982589],[-5.187506,55.981464],[-5.18853,55.980561],[-5.189344,55.978185],[-5.186901,55.974791],[-5.184259,55.973273],[-5.184486,55.972233],[-5.186054,55.970547],[-5.188372,55.969975],[-5.189369,55.968852],[-5.188403,55.967336],[-5.187163,55.966685],[-5.187517,55.964899],[-5.186047,55.963936],[-5.185379,55.962941],[-5.18537,55.960088],[-5.186144,55.958971],[-5.185225,55.956567],[-5.185487,55.955365],[-5.187204,55.953747],[-5.187711,55.949972],[-5.189211,55.948931],[-5.188498,55.947857],[-5.190015,55.94731],[-5.188368,55.945878],[-5.187999,55.944314],[-5.185714,55.943996],[-5.185778,55.942558],[-5.184881,55.940885],[-5.185387,55.938849],[-5.184387,55.938079],[-5.182616,55.939626],[-5.180447,55.938576],[-5.178395,55.938125],[-5.176984,55.936288],[-5.176828,55.935267],[-5.178236,55.934516],[-5.178575,55.933037],[-5.176435,55.933176],[-5.175391,55.932378],[-5.173543,55.932017],[-5.170438,55.93242],[-5.16747,55.93216],[-5.166431,55.932384],[-5.16331,55.929777],[-5.162727,55.928502],[-5.159843,55.928872],[-5.155916,55.926588],[-5.152837,55.923579],[-5.152947,55.922345],[-5.148533,55.922197],[-5.144007,55.920774],[-5.139312,55.918133],[-5.138577,55.91643],[-5.13417,55.915795],[-5.132553,55.91506],[-5.127687,55.911874],[-5.123794,55.908714],[-5.118894,55.906701],[-5.117191,55.905329],[-5.112168,55.902552],[-5.111734,55.901529],[-5.109627,55.901695],[-5.107231,55.900448],[-5.103991,55.899466],[-5.102039,55.899253],[-5.097411,55.899904],[-5.094951,55.899266],[-5.091123,55.898908],[-5.088366,55.897727],[-5.086272,55.897955],[-5.08278,55.897503],[-5.07841,55.897581],[-5.075706,55.899388],[-5.074361,55.901094],[-5.073669,55.906199],[-5.076782,55.916302],[-5.076239,55.920365],[-5.078928,55.922878],[-5.079388,55.925446],[-5.08162,55.931476],[-5.08152,55.934751],[-5.082548,55.937494],[-5.082436,55.938513],[-5.08379,55.940321],[-5.08518,55.9407],[-5.087044,55.942577],[-5.086822,55.942911],[-5.088688,55.945022],[-5.088645,55.946591],[-5.09073,55.948625],[-5.091249,55.94992],[-5.092775,55.951576],[-5.092397,55.952354],[-5.093053,55.953744],[-5.095521,55.955255],[-5.098047,55.95579],[-5.099027,55.95652],[-5.103283,55.958341],[-5.105705,55.962865],[-5.109805,55.96374],[-5.112419,55.965967],[-5.113488,55.968282],[-5.115337,55.969668],[-5.115561,55.97094],[-5.117101,55.971346],[-5.118361,55.973152],[-5.117526,55.974722],[-5.117902,55.976117],[-5.1188,55.977119],[-5.118222,55.978496],[-5.119017,55.979914],[-5.11879,55.980769],[-5.120518,55.982317],[-5.120302,55.98412],[-5.120828,55.985064],[-5.123085,55.9872],[-5.12583,55.991909],[-5.127187,55.992715],[-5.129291,55.996716],[-5.129581,55.998322],[-5.127945,56.000804],[-5.127015,56.00339],[-5.128008,56.005553],[-5.127013,56.007138],[-5.125957,56.007965],[-5.12051,56.008369],[-5.12117,56.006801],[-5.120262,56.004999],[-5.119211,55.999924],[-5.12288,55.999373],[-5.120248,55.997372],[-5.119777,55.996293],[-5.11644,55.995095],[-5.115721,55.994439],[-5.114134,55.989769],[-5.113292,55.989368],[-5.111775,55.987554],[-5.110405,55.98308],[-5.107909,55.980055],[-5.1071,55.976867],[-5.105921,55.975157],[-5.106398,55.974309],[-5.105403,55.971592],[-5.103812,55.970572],[-5.102734,55.969201],[-5.098948,55.967128],[-5.096367,55.964448],[-5.089851,55.964028],[-5.087282,55.962865],[-5.085949,55.962797],[-5.08353,55.961835],[-5.080512,55.959956],[-5.080585,55.959464],[-5.077507,55.958642],[-5.072558,55.954532],[-5.069691,55.953256],[-5.068503,55.952197],[-5.068004,55.950034],[-5.066402,55.946802],[-5.067045,55.945053],[-5.065391,55.944143],[-5.065428,55.943392],[-5.064238,55.942325],[-5.062241,55.937934],[-5.058969,55.933911],[-5.060022,55.93205],[-5.058196,55.930935],[-5.05718,55.928994],[-5.055106,55.927665],[-5.05578,55.921689],[-5.057064,55.920708],[-5.05566,55.919656],[-5.055132,55.917624],[-5.051534,55.911964],[-5.049652,55.90757],[-5.04734,55.896157],[-5.047684,55.890789],[-5.04619,55.888307],[-5.042668,55.884101],[-5.042379,55.881901],[-5.040522,55.881817],[-5.040817,55.87936],[-5.042656,55.878842],[-5.04343,55.874853],[-5.044861,55.870804],[-5.043159,55.870827],[-5.041245,55.871642],[-5.039508,55.870816],[-5.039865,55.870168],[-5.041774,55.869348],[-5.040665,55.868755],[-5.039069,55.86988],[-5.037683,55.869248],[-5.038461,55.867176],[-5.035062,55.868362],[-5.034273,55.869087],[-5.03109,55.868502],[-5.026034,55.868819],[-5.021961,55.868382],[-5.020632,55.867614],[-5.021387,55.866445],[-5.02049,55.865403],[-5.010652,55.86613],[-5.009505,55.865326],[-5.006017,55.864591],[-5.005435,55.864847],[-5.000614,55.864887],[-4.99724,55.864255],[-4.994787,55.864449],[-4.991696,55.864266],[-4.990817,55.864629],[-4.988111,55.864405],[-4.986882,55.863375],[-4.984346,55.862596],[-4.983687,55.861862],[-4.981697,55.862206],[-4.981188,55.861582],[-4.978879,55.861769],[-4.979159,55.864138],[-4.979692,55.865584],[-4.97823,55.868426],[-4.977014,55.869879],[-4.976167,55.872905],[-4.976718,55.873786],[-4.975247,55.875913],[-4.975355,55.877154],[-4.972127,55.880794],[-4.971779,55.881812],[-4.966393,55.884446],[-4.966639,55.885512],[-4.965936,55.886157],[-4.962382,55.887625],[-4.960151,55.888973],[-4.959664,55.890445],[-4.952856,55.895389],[-4.952648,55.896417],[-4.95105,55.897826],[-4.949197,55.904515],[-4.949294,55.907072],[-4.94758,55.911817],[-4.946458,55.913354],[-4.946699,55.915401],[-4.946415,55.916531],[-4.945287,55.917648],[-4.945129,55.91997],[-4.942994,55.921591],[-4.941474,55.923702],[-4.939278,55.925279],[-4.936864,55.929576],[-4.936847,55.932547],[-4.935022,55.936817],[-4.934636,55.940288],[-4.933626,55.943069],[-4.932491,55.943772],[-4.930086,55.944465],[-4.923554,55.944843],[-4.922094,55.945459],[-4.923486,55.948887],[-4.924603,55.950446],[-4.916125,55.955052],[-4.914558,55.95663],[-4.913021,55.957672],[-4.912245,55.958801],[-4.910025,55.96011],[-4.910045,55.962123],[-4.907865,55.968474],[-4.909101,55.970892],[-4.909756,55.970641],[-4.910911,55.973031],[-4.913526,55.975159],[-4.915785,55.976279],[-4.921685,55.977316],[-4.924401,55.978222],[-4.925992,55.979626],[-4.929431,55.980326],[-4.930658,55.981336],[-4.93253,55.981399],[-4.935386,55.980443],[-4.940099,55.980896],[-4.940847,55.981264],[-4.944092,55.980806],[-4.946093,55.982215],[-4.947839,55.982635],[-4.952624,55.98554],[-4.954598,55.986094],[-4.957122,55.987237],[-4.96103,55.989637],[-4.961454,55.991138],[-4.963132,55.991743],[-4.962012,55.992447],[-4.95986,55.993054],[-4.958613,55.99387],[-4.954644,55.994895],[-4.955287,55.996746],[-4.95424,55.997639],[-4.954595,55.998689],[-4.956079,55.998993],[-4.956309,56.001781],[-4.958528,56.001699],[-4.958554,56.000514],[-4.961292,56.000213],[-4.962075,56.001803],[-4.961972,56.002912],[-4.960644,56.003687],[-4.959145,56.003859],[-4.957843,56.002952],[-4.954773,56.001867],[-4.949095,55.99787],[-4.946684,55.997356],[-4.94512,55.996534],[-4.941719,55.99558],[-4.939956,55.995378],[-4.936243,55.993974],[-4.930999,55.990925],[-4.928731,55.990065],[-4.928043,55.988817],[-4.925995,55.989325],[-4.920111,55.988839],[-4.917875,55.98808],[-4.916669,55.986607],[-4.914207,55.986795],[-4.910045,55.98593],[-4.906029,55.984716],[-4.904016,55.983656],[-4.901068,55.983179],[-4.897515,55.983543],[-4.895934,55.986236],[-4.895043,55.991368],[-4.895115,55.997312],[-4.898796,56.006602],[-4.900239,56.009397],[-4.902496,56.011186],[-4.90316,56.013916],[-4.902716,56.015628],[-4.903162,56.017112],[-4.900112,56.01881],[-4.89936,56.020015],[-4.902363,56.023355],[-4.902554,56.025571],[-4.903527,56.026559],[-4.903866,56.02883],[-4.906935,56.032272],[-4.905918,56.035833],[-4.907463,56.037163],[-4.907381,56.039808],[-4.909158,56.04227],[-4.908976,56.043325],[-4.907455,56.044794],[-4.910909,56.046748],[-4.911551,56.04789],[-4.913513,56.049265],[-4.914431,56.051279],[-4.913374,56.052371],[-4.910724,56.053731],[-4.907859,56.054579],[-4.904794,56.056181],[-4.902757,56.056366],[-4.902248,56.057178],[-4.900333,56.05758],[-4.898327,56.058453],[-4.896231,56.060907],[-4.893944,56.062457],[-4.892407,56.064547],[-4.892469,56.065628],[-4.890591,56.06715],[-4.890774,56.068261],[-4.888097,56.070333],[-4.887458,56.072634],[-4.88609,56.074411],[-4.884798,56.075347],[-4.883033,56.075212],[-4.881978,56.078743],[-4.880455,56.079293],[-4.878756,56.081336],[-4.878794,56.0835],[-4.876855,56.083903],[-4.874717,56.084936],[-4.874109,56.086407],[-4.874697,56.08732],[-4.874216,56.089237],[-4.875452,56.091885],[-4.875817,56.094131],[-4.877463,56.094032],[-4.884726,56.095957],[-4.886436,56.097839],[-4.888754,56.097876],[-4.888166,56.099385],[-4.891186,56.09949],[-4.89313,56.100618],[-4.892938,56.102742],[-4.896886,56.102461],[-4.89751,56.103016],[-4.899855,56.103689],[-4.903823,56.106509],[-4.90297,56.107102],[-4.90561,56.107855],[-4.906884,56.109091],[-4.907318,56.110242],[-4.909327,56.112178],[-4.909006,56.114543],[-4.909259,56.11598],[-4.910375,56.116699],[-4.911428,56.118809],[-4.910516,56.122076],[-4.908307,56.124676],[-4.90889,56.126429],[-4.908654,56.127998],[-4.907841,56.128417],[-4.907875,56.129916],[-4.904921,56.131956],[-4.901764,56.133203],[-4.902296,56.13449],[-4.901152,56.135438],[-4.901514,56.136405],[-4.900622,56.137594],[-4.90031,56.139534],[-4.901571,56.140673],[-4.900947,56.142004],[-4.900626,56.145126],[-4.899973,56.146077],[-4.900256,56.147149],[-4.901306,56.147623],[-4.902333,56.149289],[-4.905344,56.150876],[-4.906659,56.153057],[-4.908949,56.154592],[-4.909271,56.155323],[-4.911072,56.155919],[-4.913017,56.157576],[-4.914561,56.160754],[-4.915493,56.16207],[-4.91737,56.162923],[-4.917682,56.164011],[-4.915129,56.166443],[-4.914949,56.167054],[-4.911804,56.168709],[-4.909965,56.170365],[-4.907363,56.171765],[-4.906202,56.170953],[-4.902863,56.170876],[-4.901359,56.170419],[-4.900761,56.16961],[-4.901232,56.16495],[-4.898538,56.162987],[-4.895792,56.1579],[-4.891456,56.15402],[-4.888353,56.152186],[-4.88703,56.150993],[-4.884961,56.146268],[-4.883688,56.145373],[-4.882569,56.141573],[-4.883409,56.140401],[-4.882666,56.138929],[-4.884056,56.133211],[-4.886307,56.12975],[-4.888032,56.128947],[-4.889999,56.127075],[-4.891237,56.125231],[-4.891489,56.123456],[-4.890851,56.118243],[-4.888693,56.114276],[-4.886842,56.109176],[-4.885639,56.108083],[-4.883792,56.104916],[-4.882327,56.104043],[-4.875352,56.104599],[-4.872457,56.104475],[-4.867927,56.102881],[-4.865434,56.100714],[-4.862627,56.100209],[-4.861662,56.10042],[-4.857842,56.103719],[-4.853259,56.112771],[-4.850119,56.114753],[-4.847349,56.117958],[-4.843337,56.119972],[-4.841273,56.122086],[-4.838856,56.123297],[-4.836562,56.123573],[-4.83402,56.122945],[-4.832575,56.123134],[-4.831663,56.12505],[-4.828708,56.127877],[-4.829401,56.130203],[-4.828723,56.132641],[-4.827525,56.13457],[-4.827727,56.137362],[-4.826512,56.141395],[-4.824119,56.143307],[-4.821394,56.144404],[-4.821093,56.146195],[-4.819315,56.149061],[-4.817378,56.149994],[-4.817605,56.15099],[-4.816762,56.152255],[-4.81683,56.153179],[-4.813732,56.155964],[-4.811089,56.157256],[-4.810963,56.158068],[-4.809545,56.158505],[-4.808005,56.159906],[-4.8077,56.160919],[-4.805101,56.162498],[-4.803268,56.165519],[-4.800392,56.166959],[-4.798605,56.1694],[-4.798446,56.170815],[-4.797181,56.171229],[-4.797498,56.172683],[-4.795672,56.173821],[-4.792949,56.174822],[-4.7919,56.175794],[-4.790903,56.17783],[-4.790526,56.181294],[-4.789166,56.182647],[-4.787086,56.18352],[-4.786206,56.185837],[-4.783937,56.185996],[-4.781315,56.185727],[-4.778528,56.187205],[-4.778016,56.187859],[-4.780029,56.189913],[-4.775525,56.192823],[-4.767634,56.196065],[-4.765898,56.196032],[-4.763706,56.19693],[-4.762473,56.19656],[-4.760992,56.197414],[-4.756727,56.199304],[-4.754297,56.202889],[-4.74947,56.206569],[-4.744807,56.205882],[-4.744003,56.204948],[-4.74429,56.203165],[-4.745377,56.202523],[-4.745285,56.201624],[-4.746296,56.200099],[-4.74837,56.198842],[-4.748713,56.197993],[-4.748108,56.19655],[-4.748457,56.195816],[-4.75165,56.193568],[-4.754431,56.192635],[-4.758686,56.190357],[-4.761865,56.189039],[-4.76381,56.18882],[-4.767793,56.186911],[-4.769258,56.18695],[-4.770099,56.184981],[-4.771338,56.184284],[-4.771631,56.183428],[-4.774874,56.180011],[-4.779355,56.17769],[-4.78063,56.176493],[-4.781712,56.172954],[-4.787105,56.166334],[-4.787764,56.16476],[-4.794383,56.15964],[-4.795616,56.158097],[-4.798979,56.155504],[-4.802788,56.151668],[-4.807561,56.146646],[-4.807981,56.145682],[-4.811058,56.142727],[-4.816836,56.133687],[-4.81778,56.130899],[-4.818064,56.128523],[-4.818632,56.127966],[-4.819792,56.124861],[-4.823598,56.121021],[-4.825765,56.119416],[-4.826504,56.119665],[-4.828294,56.118128],[-4.829956,56.117945],[-4.832697,56.11681],[-4.833763,56.11685],[-4.836341,56.11464],[-4.838974,56.113498],[-4.839952,56.110645],[-4.841351,56.109162],[-4.841931,56.107483],[-4.842025,56.105848],[-4.844509,56.10307],[-4.845654,56.100007],[-4.850394,56.097794],[-4.85134,56.096287],[-4.851755,56.094402],[-4.853718,56.091925],[-4.85475,56.089507],[-4.859298,56.085609],[-4.859408,56.084263],[-4.860886,56.082533],[-4.861702,56.080451],[-4.863612,56.07913],[-4.865582,56.07609],[-4.866249,56.073754],[-4.869232,56.06992],[-4.87164,56.067851],[-4.875448,56.06353],[-4.87997,56.058159],[-4.880319,56.056149],[-4.881094,56.05403],[-4.880557,56.052659],[-4.881235,56.049416],[-4.878621,56.047528],[-4.878429,56.046242],[-4.876917,56.04446],[-4.875222,56.043644],[-4.871346,56.043006],[-4.8702,56.042487],[-4.87023,56.040887],[-4.86743,56.037799],[-4.866785,56.034486],[-4.867818,56.033562],[-4.865985,56.031779],[-4.866261,56.028383],[-4.865959,56.027426],[-4.865862,56.02299],[-4.867307,56.020797],[-4.868176,56.017979],[-4.867055,56.013547],[-4.866161,56.012309],[-4.862959,56.010367],[-4.863018,56.009934],[-4.857202,56.006287],[-4.856277,56.005166],[-4.854456,56.004101],[-4.852896,56.002354],[-4.852111,56.000015],[-4.8535,55.996917],[-4.85341,55.995612],[-4.854467,55.993889],[-4.853397,55.990275],[-4.85189,55.98904],[-4.846109,55.98634],[-4.843864,55.986164],[-4.839287,55.984352],[-4.835108,55.983591],[-4.827909,55.983619],[-4.822246,55.984036],[-4.817948,55.985406],[-4.815983,55.984931],[-4.814469,55.984043],[-4.80792,55.982871],[-4.803367,55.982599],[-4.80087,55.983377],[-4.800789,55.984505],[-4.799063,55.985339],[-4.792855,55.9851],[-4.787915,55.985708],[-4.784856,55.986403],[-4.780258,55.988713],[-4.777605,55.988009],[-4.776589,55.988549],[-4.774644,55.988596],[-4.773624,55.987317],[-4.768533,55.987464],[-4.767782,55.987879],[-4.766946,55.989596],[-4.767385,55.990549],[-4.770533,55.99118],[-4.771918,55.993036],[-4.771925,55.994928],[-4.771155,55.995394],[-4.768496,55.995799],[-4.767989,55.996965],[-4.768173,55.998123],[-4.770945,56.001178],[-4.77413,56.001901],[-4.774984,56.003426],[-4.778226,56.001509],[-4.781048,56.000859],[-4.782549,56.000854],[-4.784653,56.000104],[-4.785958,56.000323],[-4.788148,56.001659],[-4.790898,56.000323],[-4.792846,56.000833],[-4.793441,56.00172],[-4.793546,56.003627],[-4.791666,56.003827],[-4.792373,56.004663],[-4.7939,56.005264],[-4.793929,56.00683],[-4.796345,56.008109],[-4.795595,56.012622],[-4.799808,56.012995],[-4.801676,56.012575],[-4.804612,56.012609],[-4.806276,56.012948],[-4.811109,56.017031],[-4.814161,56.02207],[-4.81854,56.025802],[-4.819246,56.026034],[-4.822191,56.029134],[-4.823403,56.031234],[-4.825745,56.033493],[-4.830083,56.040964],[-4.838071,56.0512],[-4.841795,56.058812],[-4.841838,56.059969],[-4.840771,56.062846],[-4.840276,56.063136],[-4.84046,56.065723],[-4.839632,56.06638],[-4.839937,56.069157],[-4.839191,56.069824],[-4.83893,56.071269],[-4.837237,56.073041],[-4.838761,56.078571],[-4.837513,56.079692],[-4.835729,56.080003],[-4.830729,56.07987],[-4.828718,56.078747],[-4.828218,56.077707],[-4.827995,56.072084],[-4.826267,56.06792],[-4.824553,56.067305],[-4.820474,56.06721],[-4.817368,56.065089],[-4.81685,56.062533],[-4.818498,56.061158],[-4.820609,56.055285],[-4.820223,56.054062],[-4.819259,56.054023],[-4.818323,56.052703],[-4.815248,56.05058],[-4.811294,56.047168],[-4.807094,56.04493],[-4.802153,56.036844],[-4.799095,56.033293],[-4.79486,56.030207],[-4.793368,56.028848],[-4.792463,56.027305],[-4.790521,56.026861],[-4.787884,56.025661],[-4.787175,56.024483],[-4.786785,56.022009],[-4.784288,56.01919],[-4.785544,56.015921],[-4.781957,56.016599],[-4.778249,56.016136],[-4.776966,56.015237],[-4.776588,56.014328],[-4.774799,56.012675],[-4.771416,56.012846],[-4.770827,56.013633],[-4.769082,56.013599],[-4.768122,56.012724],[-4.766158,56.01309],[-4.763719,56.012479],[-4.762474,56.011397],[-4.762838,56.010691],[-4.761512,56.00985],[-4.761812,56.008292],[-4.761279,56.00772],[-4.759112,56.007261],[-4.753821,56.005326],[-4.746949,56.004797],[-4.736325,56.002962],[-4.737178,56.001622],[-4.735341,56.001134],[-4.733811,56.00237],[-4.730745,56.001611],[-4.727494,56.001786],[-4.72462,56.001167],[-4.71989,55.999047],[-4.716866,55.997028],[-4.713592,55.995569],[-4.714491,55.994794],[-4.71181,55.994459],[-4.707972,55.992475],[-4.705864,55.993702],[-4.703584,55.993348],[-4.700176,55.991696],[-4.697436,55.988997],[-4.695623,55.986286],[-4.694466,55.985631],[-4.694087,55.984472],[-4.695811,55.982536],[-4.694756,55.979817],[-4.693771,55.978591],[-4.688266,55.977709],[-4.686994,55.976403],[-4.685062,55.975641],[-4.68901,55.973475],[-4.691341,55.973114],[-4.694065,55.97319],[-4.698955,55.974471],[-4.702647,55.974147],[-4.705045,55.972389],[-4.70467,55.969859],[-4.702762,55.968686],[-4.701726,55.967286],[-4.700485,55.967165],[-4.699069,55.967862],[-4.694996,55.967803],[-4.694138,55.968485],[-4.690553,55.968537],[-4.68901,55.969646],[-4.688366,55.971202],[-4.686264,55.971312],[-4.682478,55.970516],[-4.681546,55.969031],[-4.678722,55.967698],[-4.676481,55.965886],[-4.674045,55.961472],[-4.672729,55.96138],[-4.670461,55.960044],[-4.666437,55.958364],[-4.66525,55.95827],[-4.658154,55.960075],[-4.654637,55.960237],[-4.652637,55.95936],[-4.650982,55.958157],[-4.649321,55.95762],[-4.647125,55.955941],[-4.638023,55.953583],[-4.633154,55.951886],[-4.623068,55.951345],[-4.621119,55.950518],[-4.620499,55.949688],[-4.617676,55.949361],[-4.615705,55.947982],[-4.612303,55.946952],[-4.609617,55.946563],[-4.60862,55.948737],[-4.607733,55.948538],[-4.607109,55.951247],[-4.605703,55.953842],[-4.602228,55.95802],[-4.60571,55.959709],[-4.605904,55.960561],[-4.60926,55.9627],[-4.612355,55.963531],[-4.61395,55.966894],[-4.615009,55.967007],[-4.617171,55.968072],[-4.619982,55.968928],[-4.619171,55.970472],[-4.621327,55.970855],[-4.624947,55.972402],[-4.621719,55.975147],[-4.618859,55.976354],[-4.616814,55.977689],[-4.616566,55.979403],[-4.61433,55.980832],[-4.618499,55.98495],[-4.61623,55.987354],[-4.61754,55.989066],[-4.624706,55.986199],[-4.633759,55.99205],[-4.634989,55.991864],[-4.637635,55.992504],[-4.641788,55.99404],[-4.639005,55.996032],[-4.63779,55.998098],[-4.637697,55.999547],[-4.639871,55.998975],[-4.641608,55.999163],[-4.645613,55.99851],[-4.649453,55.999079],[-4.650247,55.998716],[-4.653706,55.998413],[-4.655974,55.9992],[-4.65426,56.001219],[-4.65989,56.002747],[-4.658596,56.003983],[-4.654523,56.006453],[-4.652935,56.008105],[-4.64152,56.005389],[-4.638897,56.004452],[-4.636869,56.004356],[-4.63437,56.003461],[-4.63033,56.002671],[-4.628338,56.004152],[-4.623169,56.006113],[-4.62259,56.00671],[-4.624618,56.007956],[-4.629951,56.009061],[-4.629672,56.009974],[-4.624503,56.010408],[-4.622078,56.011206],[-4.618961,56.011731],[-4.616521,56.013064],[-4.614896,56.013309],[-4.614186,56.014174],[-4.610583,56.014069],[-4.609961,56.015078],[-4.601532,56.020224],[-4.614065,56.032233],[-4.620088,56.039381],[-4.621432,56.042139],[-4.62194,56.045013],[-4.620873,56.04988],[-4.619528,56.052449],[-4.614989,56.057978],[-4.60797,56.06396],[-4.602816,56.070264],[-4.599622,56.077383],[-4.598188,56.084226],[-4.603955,56.087283],[-4.605309,56.08889],[-4.604396,56.090491],[-4.59086,56.104132],[-4.589118,56.107844],[-4.590424,56.110881],[-4.59415,56.113824],[-4.596556,56.114677],[-4.599737,56.115338],[-4.604986,56.115995],[-4.621963,56.117123],[-4.632739,56.118489],[-4.63747,56.120501],[-4.64115,56.123478],[-4.642014,56.125868],[-4.642064,56.13117],[-4.64278,56.13351],[-4.644421,56.135838],[-4.649999,56.141691],[-4.651286,56.143906],[-4.651756,56.146408],[-4.650863,56.150387],[-4.655011,56.153672],[-4.657304,56.15703],[-4.657539,56.158791],[-4.655267,56.163104],[-4.655591,56.164989],[-4.672756,56.174857],[-4.675729,56.177062],[-4.687669,56.187772],[-4.688876,56.189355],[-4.690521,56.193054],[-4.695367,56.199169],[-4.695752,56.201267],[-4.694945,56.203583],[-4.690365,56.208266],[-4.686425,56.211582],[-4.68565,56.212731],[-4.685026,56.215338],[-4.685533,56.219095],[-4.691798,56.234385],[-4.697078,56.242229],[-4.698575,56.245157],[-4.701416,56.254659],[-4.701147,56.25657],[-4.698258,56.259451],[-4.697453,56.261432],[-4.697774,56.270584],[-4.697125,56.274441],[-4.69379,56.277673],[-4.693822,56.278589],[-4.690179,56.278821],[-4.687554,56.278253],[-4.684171,56.278385],[-4.683052,56.277182],[-4.679636,56.277077],[-4.67702,56.279169],[-4.675213,56.279559],[-4.673485,56.281075],[-4.672081,56.281676],[-4.670386,56.281344],[-4.667071,56.279335],[-4.664398,56.280857],[-4.66094,56.280855],[-4.660306,56.281143],[-4.661599,56.283367],[-4.660864,56.283827],[-4.660666,56.2854],[-4.661975,56.286909],[-4.663318,56.28763],[-4.665433,56.287481],[-4.666645,56.288296],[-4.668126,56.28821],[-4.670038,56.289324],[-4.671624,56.288782],[-4.674565,56.288668],[-4.675696,56.289129],[-4.678579,56.289099],[-4.680106,56.290948],[-4.68009,56.292562],[-4.679515,56.293464],[-4.680266,56.294154],[-4.680611,56.296079],[-4.682109,56.297839],[-4.680771,56.299747],[-4.678622,56.300333],[-4.677611,56.299748],[-4.675011,56.300829],[-4.67391,56.302187],[-4.670659,56.302513],[-4.671856,56.304141],[-4.673155,56.304576],[-4.676395,56.306861],[-4.677387,56.308089],[-4.676077,56.310059],[-4.676978,56.310906],[-4.676703,56.312872],[-4.672565,56.314053],[-4.670744,56.315077],[-4.67105,56.31622],[-4.668869,56.317063],[-4.667741,56.319091],[-4.664606,56.317725],[-4.662722,56.315645],[-4.660782,56.315543],[-4.65897,56.3168],[-4.657289,56.317393],[-4.657909,56.319797],[-4.659038,56.320914],[-4.658469,56.321929],[-4.660883,56.322214],[-4.660943,56.323305],[-4.662889,56.324314],[-4.667323,56.326079],[-4.668828,56.325737],[-4.672077,56.326161],[-4.67444,56.325832],[-4.677235,56.326477],[-4.679113,56.325802],[-4.682541,56.325553],[-4.683961,56.325167],[-4.684379,56.324318],[-4.688562,56.323423],[-4.690372,56.323621],[-4.691933,56.322599],[-4.693329,56.322901],[-4.695701,56.322472],[-4.699594,56.324337],[-4.702074,56.326481],[-4.703708,56.326701],[-4.704698,56.325952],[-4.70697,56.326972],[-4.709,56.32868],[-4.712259,56.328658],[-4.715904,56.329985],[-4.719229,56.329534],[-4.7172,56.32557],[-4.71708,56.322175],[-4.719291,56.322563],[-4.72185,56.321468],[-4.722743,56.322424],[-4.720707,56.323475],[-4.720995,56.324228],[-4.720336,56.326333],[-4.720948,56.327326],[-4.724969,56.328693],[-4.728533,56.329213],[-4.730673,56.330523],[-4.73301,56.33119],[-4.73604,56.331712],[-4.739897,56.331914],[-4.743567,56.331653],[-4.744156,56.33084],[-4.747693,56.328497],[-4.748499,56.327454],[-4.752963,56.325072],[-4.760755,56.324674],[-4.762388,56.325001],[-4.765102,56.324608],[-4.766962,56.324715],[-4.767415,56.324044],[-4.770021,56.324404],[-4.774498,56.323346],[-4.779117,56.323967],[-4.78114,56.323972],[-4.783725,56.323553],[-4.7859,56.323832],[-4.788885,56.326218],[-4.789975,56.32885],[-4.79282,56.333127],[-4.788443,56.334902],[-4.785622,56.335604],[-4.784707,56.336927],[-4.78059,56.338049],[-4.778734,56.339008],[-4.780425,56.339563],[-4.783004,56.342309],[-4.783173,56.343856],[-4.787114,56.344414],[-4.795003,56.347818],[-4.799952,56.352407],[-4.801249,56.355632],[-4.807707,56.355274],[-4.810191,56.355811],[-4.813863,56.358734],[-4.818764,56.360205],[-4.81921,56.361309],[-4.820923,56.361373],[-4.822168,56.362657],[-4.826849,56.364209],[-4.83172,56.36679],[-4.834748,56.366557],[-4.836466,56.367346],[-4.839828,56.368015],[-4.844995,56.368247],[-4.848568,56.368924],[-4.85015,56.368744],[-4.853209,56.369258],[-4.854358,56.370674],[-4.845296,56.37522],[-4.83914,56.376516],[-4.836652,56.376604],[-4.83422,56.378094],[-4.83406,56.379436],[-4.83324,56.381145],[-4.834586,56.382588],[-4.835884,56.38708],[-4.835147,56.390134],[-4.832134,56.390797],[-4.828102,56.392475],[-4.821214,56.394434],[-4.812636,56.398108],[-4.814268,56.398592],[-4.816136,56.399848],[-4.817304,56.402051],[-4.816732,56.403745],[-4.817274,56.404712],[-4.815614,56.404961],[-4.816377,56.406067],[-4.8132,56.40684],[-4.811976,56.407614],[-4.811783,56.408517],[-4.814136,56.408329],[-4.814855,56.410483],[-4.814479,56.41406],[-4.81315,56.416378],[-4.811659,56.417598],[-4.808208,56.417416],[-4.803786,56.416271],[-4.798602,56.416779],[-4.796713,56.420979],[-4.795169,56.422703],[-4.789587,56.423979],[-4.791406,56.425678],[-4.789921,56.427329],[-4.783911,56.427325],[-4.781601,56.427008],[-4.779837,56.428171],[-4.774658,56.429438],[-4.77326,56.430071],[-4.771207,56.430391],[-4.769085,56.43154],[-4.766027,56.432102],[-4.76457,56.432031],[-4.766584,56.433847],[-4.766876,56.435076],[-4.768483,56.435975],[-4.768074,56.436492],[-4.761673,56.435705],[-4.757871,56.436621],[-4.755421,56.436509],[-4.752889,56.437059],[-4.746797,56.435491],[-4.743822,56.435395],[-4.740047,56.43445],[-4.739896,56.434049],[-4.735919,56.433786],[-4.733389,56.434242],[-4.732109,56.435847],[-4.730639,56.436396],[-4.727532,56.440127],[-4.726336,56.440782],[-4.723039,56.446387],[-4.724076,56.449757],[-4.728976,56.453128],[-4.733324,56.45492],[-4.729679,56.457166],[-4.727805,56.45785],[-4.726405,56.459489],[-4.724678,56.459851],[-4.720817,56.458646],[-4.716178,56.45926],[-4.71187,56.460433],[-4.704871,56.461767],[-4.702931,56.463019],[-4.701957,56.46508],[-4.700476,56.466397],[-4.700073,56.467354],[-4.695824,56.465479],[-4.693722,56.465151],[-4.691467,56.463102],[-4.689231,56.462256],[-4.686473,56.463196],[-4.684389,56.462653],[-4.675401,56.461346],[-4.666499,56.461506],[-4.665531,56.46008],[-4.664028,56.463878],[-4.66091,56.469203],[-4.659179,56.469644],[-4.658496,56.470675],[-4.655348,56.473034],[-4.651826,56.473631],[-4.649102,56.473702],[-4.646216,56.473297],[-4.643685,56.473445],[-4.639066,56.476037]]],[[[-6.760283,56.551959],[-6.762721,56.551789],[-6.762457,56.551048],[-6.760613,56.55089],[-6.760283,56.551959]]],[[[-6.754021,56.556275],[-6.756408,56.555941],[-6.758239,56.554847],[-6.758642,56.55282],[-6.758582,56.550752],[-6.759667,56.550374],[-6.759429,56.547792],[-6.762237,56.548118],[-6.762423,56.545992],[-6.764602,56.545716],[-6.763478,56.54452],[-6.767158,56.544434],[-6.768297,56.543882],[-6.770952,56.543989],[-6.773052,56.543268],[-6.774746,56.542079],[-6.774092,56.540625],[-6.77478,56.539419],[-6.776859,56.537795],[-6.780604,56.536594],[-6.782745,56.536568],[-6.786747,56.536956],[-6.787933,56.537478],[-6.789894,56.53654],[-6.793418,56.535388],[-6.79561,56.535044],[-6.797852,56.535114],[-6.799713,56.535812],[-6.799596,56.536537],[-6.800752,56.538065],[-6.80325,56.539397],[-6.803538,56.540003],[-6.80595,56.541274],[-6.806982,56.542456],[-6.809083,56.541904],[-6.81068,56.542867],[-6.812756,56.542737],[-6.81406,56.542178],[-6.817417,56.54335],[-6.819626,56.542344],[-6.820505,56.541472],[-6.819737,56.540128],[-6.820667,56.539713],[-6.823447,56.540269],[-6.825533,56.54122],[-6.825823,56.540174],[-6.82798,56.540238],[-6.828916,56.540805],[-6.832356,56.539888],[-6.832571,56.538189],[-6.834586,56.536953],[-6.839136,56.536299],[-6.841628,56.534889],[-6.842652,56.535103],[-6.845301,56.534275],[-6.844707,56.533207],[-6.845713,56.531841],[-6.849362,56.53231],[-6.850364,56.531871],[-6.85296,56.531738],[-6.854548,56.532184],[-6.856418,56.531324],[-6.858618,56.531359],[-6.858956,56.529807],[-6.860504,56.52854],[-6.858861,56.527502],[-6.858466,56.526119],[-6.860725,56.524556],[-6.861643,56.524958],[-6.863221,56.524315],[-6.863181,56.52262],[-6.864911,56.521444],[-6.869559,56.519794],[-6.874267,56.51871],[-6.879524,56.518244],[-6.882359,56.518323],[-6.886428,56.519346],[-6.887845,56.521309],[-6.887502,56.523605],[-6.892577,56.525743],[-6.89336,56.524482],[-6.895153,56.523868],[-6.897492,56.523736],[-6.898178,56.524524],[-6.900252,56.523549],[-6.902618,56.524127],[-6.90505,56.526231],[-6.904106,56.52755],[-6.904351,56.528538],[-6.907859,56.528685],[-6.910003,56.529914],[-6.911682,56.52979],[-6.912837,56.530657],[-6.915663,56.529453],[-6.916136,56.527809],[-6.918242,56.527318],[-6.920114,56.526466],[-6.922757,56.526168],[-6.927279,56.526307],[-6.930941,56.527296],[-6.93195,56.529413],[-6.935815,56.529635],[-6.93769,56.529113],[-6.939325,56.529743],[-6.941416,56.529606],[-6.943766,56.529025],[-6.946261,56.529704],[-6.946918,56.528677],[-6.948948,56.529078],[-6.951018,56.528984],[-6.952094,56.526944],[-6.953992,56.526478],[-6.952348,56.525297],[-6.951191,56.525296],[-6.951036,56.52404],[-6.955003,56.520915],[-6.956301,56.520574],[-6.95825,56.521231],[-6.960716,56.520397],[-6.964737,56.520492],[-6.965702,56.521094],[-6.967389,56.520913],[-6.967959,56.519948],[-6.970991,56.518786],[-6.970475,56.51795],[-6.971751,56.517025],[-6.975947,56.516888],[-6.977498,56.515189],[-6.978136,56.512367],[-6.980929,56.508447],[-6.983905,56.506226],[-6.987208,56.505365],[-6.989952,56.506403],[-6.992954,56.505964],[-6.994233,56.506872],[-6.996675,56.505992],[-6.99639,56.504959],[-6.997954,56.504778],[-6.997914,56.503847],[-6.999118,56.502908],[-6.998457,56.502114],[-6.996602,56.502913],[-6.994348,56.502851],[-6.993001,56.504613],[-6.989572,56.504461],[-6.986128,56.503669],[-6.986885,56.502826],[-6.987158,56.501332],[-6.988097,56.500191],[-6.98462,56.501104],[-6.983195,56.500989],[-6.981516,56.500244],[-6.978982,56.497487],[-6.97789,56.495771],[-6.978242,56.493434],[-6.980312,56.491054],[-6.978372,56.49002],[-6.976724,56.490113],[-6.974737,56.489221],[-6.973773,56.488378],[-6.976632,56.486644],[-6.975995,56.485797],[-6.97809,56.485159],[-6.977924,56.484317],[-6.979012,56.483752],[-6.978849,56.48245],[-6.977333,56.482611],[-6.975407,56.481547],[-6.976472,56.480204],[-6.978659,56.478581],[-6.978778,56.477807],[-6.977016,56.477405],[-6.977838,56.475909],[-6.977912,56.47444],[-6.976346,56.471836],[-6.976305,56.471245],[-6.972688,56.470329],[-6.971455,56.469385],[-6.970601,56.468016],[-6.97117,56.466236],[-6.972224,56.466035],[-6.974371,56.464289],[-6.97613,56.463942],[-6.975662,56.462578],[-6.976327,56.461868],[-6.977885,56.462292],[-6.979672,56.460862],[-6.979748,56.45979],[-6.981543,56.459242],[-6.980625,56.457717],[-6.980325,56.45537],[-6.979628,56.455289],[-6.979138,56.453321],[-6.97811,56.451986],[-6.976175,56.45217],[-6.974857,56.452764],[-6.972575,56.452419],[-6.969906,56.454322],[-6.969205,56.455824],[-6.968192,56.45636],[-6.967358,56.457759],[-6.96621,56.458525],[-6.961107,56.459282],[-6.954862,56.459271],[-6.950534,56.458803],[-6.946179,56.457883],[-6.94303,56.456868],[-6.943124,56.454639],[-6.939627,56.452242],[-6.938569,56.45198],[-6.938513,56.450379],[-6.937533,56.448223],[-6.935401,56.448225],[-6.933099,56.446266],[-6.933243,56.44506],[-6.934232,56.443866],[-6.93025,56.44378],[-6.926213,56.442666],[-6.924483,56.443181],[-6.922033,56.44202],[-6.919698,56.443255],[-6.915286,56.441583],[-6.914471,56.442115],[-6.912251,56.441854],[-6.912567,56.440864],[-6.908579,56.441363],[-6.905503,56.442512],[-6.903718,56.443653],[-6.902037,56.443602],[-6.900667,56.444305],[-6.898417,56.444013],[-6.896478,56.444767],[-6.89568,56.445577],[-6.893394,56.445498],[-6.892147,56.445825],[-6.891128,56.446852],[-6.889847,56.446925],[-6.888511,56.448594],[-6.890601,56.448509],[-6.892877,56.449026],[-6.894548,56.450584],[-6.894149,56.452036],[-6.894591,56.45437],[-6.893477,56.454602],[-6.893713,56.456169],[-6.892518,56.456194],[-6.892525,56.457394],[-6.890943,56.460045],[-6.892088,56.460599],[-6.892459,56.462356],[-6.893632,56.463088],[-6.894753,56.465128],[-6.894045,56.466457],[-6.895044,56.46812],[-6.893841,56.46925],[-6.897407,56.470603],[-6.897173,56.472088],[-6.895475,56.474218],[-6.890863,56.477456],[-6.885729,56.479944],[-6.883046,56.480362],[-6.882962,56.481458],[-6.881729,56.481631],[-6.880869,56.483464],[-6.879293,56.483979],[-6.878346,56.486496],[-6.878779,56.48775],[-6.877703,56.48836],[-6.873324,56.489808],[-6.868444,56.490917],[-6.856701,56.492746],[-6.853216,56.492651],[-6.851887,56.492144],[-6.848965,56.492351],[-6.847929,56.490573],[-6.848225,56.48928],[-6.847221,56.48811],[-6.845261,56.487206],[-6.845841,56.489091],[-6.843429,56.489269],[-6.843112,56.490491],[-6.838287,56.491458],[-6.836954,56.49065],[-6.834853,56.49051],[-6.833225,56.489906],[-6.833237,56.49146],[-6.832314,56.491665],[-6.830597,56.490692],[-6.829527,56.490706],[-6.829577,56.489336],[-6.828079,56.489106],[-6.828286,56.49036],[-6.826586,56.490645],[-6.824884,56.490073],[-6.822985,56.490359],[-6.821786,56.491087],[-6.819238,56.488899],[-6.816847,56.487981],[-6.814883,56.487802],[-6.811845,56.489196],[-6.813608,56.489459],[-6.812945,56.491425],[-6.811624,56.492105],[-6.808442,56.491816],[-6.807823,56.493975],[-6.806505,56.494095],[-6.806962,56.496065],[-6.809511,56.497552],[-6.808122,56.497869],[-6.805254,56.499632],[-6.803252,56.49974],[-6.802188,56.500951],[-6.803056,56.502138],[-6.80024,56.502312],[-6.800533,56.503745],[-6.798579,56.50388],[-6.798109,56.504565],[-6.795683,56.505299],[-6.794878,56.505974],[-6.797289,56.506711],[-6.797222,56.508599],[-6.800638,56.50864],[-6.801611,56.509262],[-6.805161,56.510055],[-6.806904,56.511114],[-6.80676,56.511622],[-6.808503,56.512459],[-6.811486,56.511656],[-6.814026,56.512361],[-6.813662,56.515198],[-6.811684,56.517949],[-6.808359,56.520962],[-6.803573,56.523973],[-6.799178,56.524695],[-6.789763,56.526845],[-6.78239,56.527769],[-6.779299,56.527788],[-6.775118,56.527407],[-6.771741,56.526546],[-6.765685,56.52312],[-6.764361,56.523333],[-6.761312,56.525094],[-6.759549,56.525615],[-6.757178,56.524807],[-6.755191,56.523788],[-6.75516,56.525254],[-6.756377,56.525537],[-6.75555,56.52757],[-6.752399,56.52836],[-6.750972,56.526968],[-6.750664,56.525289],[-6.749358,56.525398],[-6.749604,56.526523],[-6.74771,56.526457],[-6.746929,56.527358],[-6.744801,56.526801],[-6.742034,56.526996],[-6.741889,56.528489],[-6.742432,56.52972],[-6.741545,56.53014],[-6.739993,56.52825],[-6.738456,56.528132],[-6.73814,56.526512],[-6.736712,56.527012],[-6.735098,56.525195],[-6.73337,56.524644],[-6.73214,56.52492],[-6.731156,56.525904],[-6.729024,56.526027],[-6.728482,56.527113],[-6.725645,56.526551],[-6.72484,56.528751],[-6.723293,56.529571],[-6.724338,56.531781],[-6.724027,56.534267],[-6.724843,56.536231],[-6.724476,56.536915],[-6.726291,56.540797],[-6.728907,56.542914],[-6.731437,56.543064],[-6.734342,56.541996],[-6.737579,56.542093],[-6.739706,56.543474],[-6.742295,56.54395],[-6.744236,56.54571],[-6.747256,56.547468],[-6.749929,56.551478],[-6.751619,56.551618],[-6.752532,56.552792],[-6.751928,56.553615],[-6.754021,56.556275]]],[[[-6.631976,56.568367],[-6.633782,56.567418],[-6.633108,56.566966],[-6.634009,56.565943],[-6.631312,56.566075],[-6.62978,56.566537],[-6.630606,56.56809],[-6.631976,56.568367]]],[[[-6.707484,56.567615],[-6.710639,56.567996],[-6.711254,56.567225],[-6.714904,56.567767],[-6.717373,56.567601],[-6.720096,56.566526],[-6.720721,56.565001],[-6.722664,56.56513],[-6.724865,56.564671],[-6.725515,56.564012],[-6.729757,56.564188],[-6.73329,56.562991],[-6.732732,56.562042],[-6.731405,56.56132],[-6.732965,56.560216],[-6.73193,56.559919],[-6.730495,56.560749],[-6.728874,56.560692],[-6.72686,56.559959],[-6.724617,56.560605],[-6.721933,56.560572],[-6.718898,56.561776],[-6.715921,56.562524],[-6.715041,56.563966],[-6.713728,56.56469],[-6.710241,56.564857],[-6.707922,56.564658],[-6.706706,56.565001],[-6.707431,56.566091],[-6.706298,56.566702],[-6.707484,56.567615]]],[[[-6.711936,56.571077],[-6.713419,56.570987],[-6.713321,56.569702],[-6.711093,56.569148],[-6.71042,56.570222],[-6.711936,56.571077]]],[[[-6.61383,56.576828],[-6.613769,56.578198],[-6.615849,56.578283],[-6.615607,56.577028],[-6.61383,56.576828]]],[[[-5.097635,56.53574],[-5.100448,56.535904],[-5.103973,56.53703],[-5.107547,56.538945],[-5.11051,56.541446],[-5.114463,56.547972],[-5.114204,56.548383],[-5.107772,56.550225],[-5.106602,56.550843],[-5.104923,56.550903],[-5.102415,56.553267],[-5.102074,56.554381],[-5.099675,56.555286],[-5.098822,56.557999],[-5.097506,56.55952],[-5.100166,56.56517],[-5.100936,56.565924],[-5.099797,56.56891],[-5.100224,56.569951],[-5.099627,56.571305],[-5.097373,56.573011],[-5.095433,56.573882],[-5.096703,56.574974],[-5.095912,56.576459],[-5.100312,56.576596],[-5.101381,56.57701],[-5.104951,56.577357],[-5.104702,56.579188],[-5.106322,56.582051],[-5.108256,56.58349],[-5.108742,56.584444],[-5.108073,56.585319],[-5.108903,56.587487],[-5.103468,56.588859],[-5.101534,56.588026],[-5.099073,56.589499],[-5.099455,56.590883],[-5.097422,56.59172],[-5.095039,56.59217],[-5.09557,56.593775],[-5.094395,56.594654],[-5.092525,56.594993],[-5.091376,56.595983],[-5.086172,56.596804],[-5.087861,56.59834],[-5.087855,56.601055],[-5.085653,56.601527],[-5.08024,56.606197],[-5.079586,56.607078],[-5.080465,56.608323],[-5.079951,56.609454],[-5.081407,56.60954],[-5.08275,56.608898],[-5.085138,56.609001],[-5.086942,56.608633],[-5.091841,56.608542],[-5.094048,56.609328],[-5.09707,56.611199],[-5.098948,56.611341],[-5.099729,56.612009],[-5.103891,56.613271],[-5.105009,56.61398],[-5.11183,56.615945],[-5.115181,56.616148],[-5.125842,56.616227],[-5.129058,56.615692],[-5.131137,56.616094],[-5.135824,56.615495],[-5.140763,56.61559],[-5.143893,56.61499],[-5.146775,56.613478],[-5.150633,56.613516],[-5.15307,56.612825],[-5.154188,56.614598],[-5.152288,56.615662],[-5.153916,56.617109],[-5.153396,56.618587],[-5.15132,56.620972],[-5.152668,56.624426],[-5.152978,56.62667],[-5.179086,56.626652],[-5.18006,56.627189],[-5.183187,56.627042],[-5.184434,56.62848],[-5.18949,56.629258],[-5.191778,56.629307],[-5.19582,56.630152],[-5.198738,56.630229],[-5.203749,56.631624],[-5.207633,56.631353],[-5.213821,56.631917],[-5.214811,56.631568],[-5.213904,56.629249],[-5.214582,56.628203],[-5.214633,56.626412],[-5.215805,56.625519],[-5.215942,56.623974],[-5.216591,56.623355],[-5.215238,56.620581],[-5.213556,56.620368],[-5.212362,56.618785],[-5.213723,56.614952],[-5.212356,56.612583],[-5.211197,56.611507],[-5.210756,56.609766],[-5.21112,56.6083],[-5.213552,56.607087],[-5.215442,56.606979],[-5.216754,56.606312],[-5.218442,56.602591],[-5.216474,56.602157],[-5.219595,56.601298],[-5.220456,56.600113],[-5.222948,56.599715],[-5.226364,56.597828],[-5.228961,56.596952],[-5.229984,56.594619],[-5.235485,56.593299],[-5.23687,56.593209],[-5.238597,56.593869],[-5.24011,56.593848],[-5.240989,56.592782],[-5.24346,56.59301],[-5.244434,56.592674],[-5.249669,56.59216],[-5.254558,56.594252],[-5.255903,56.594545],[-5.257336,56.595578],[-5.259289,56.596025],[-5.259537,56.59663],[-5.263179,56.596822],[-5.264583,56.597698],[-5.272764,56.59959],[-5.27396,56.600606],[-5.275947,56.600585],[-5.278749,56.599631],[-5.279799,56.599625],[-5.28153,56.598726],[-5.284699,56.598336],[-5.288203,56.596652],[-5.291514,56.596695],[-5.293081,56.597472],[-5.297372,56.598001],[-5.298793,56.599806],[-5.298091,56.601011],[-5.298486,56.601702],[-5.301714,56.602654],[-5.314915,56.608865],[-5.319748,56.615636],[-5.319609,56.616282],[-5.322457,56.617708],[-5.323387,56.619386],[-5.325036,56.620679],[-5.331643,56.617875],[-5.335751,56.616933],[-5.341168,56.613943],[-5.345304,56.611121],[-5.349911,56.609109],[-5.35391,56.606691],[-5.356881,56.605545],[-5.358399,56.605392],[-5.360909,56.603005],[-5.362743,56.601813],[-5.361902,56.600879],[-5.361941,56.599857],[-5.363564,56.598491],[-5.36396,56.596683],[-5.368928,56.593494],[-5.374038,56.589208],[-5.375365,56.586137],[-5.375266,56.58492],[-5.377006,56.583716],[-5.379442,56.58102],[-5.380654,56.578523],[-5.382147,56.57806],[-5.383185,56.578976],[-5.383062,56.581142],[-5.385528,56.579837],[-5.387885,56.57646],[-5.38778,56.575285],[-5.385441,56.574521],[-5.38403,56.575911],[-5.381872,56.575511],[-5.382898,56.573693],[-5.382216,56.573151],[-5.382092,56.570611],[-5.376626,56.568841],[-5.374971,56.569178],[-5.373932,56.568223],[-5.374861,56.567263],[-5.372978,56.566361],[-5.37161,56.567092],[-5.370336,56.567087],[-5.369396,56.565909],[-5.371448,56.564841],[-5.374962,56.565511],[-5.379718,56.564561],[-5.383713,56.564485],[-5.384988,56.563811],[-5.387693,56.560596],[-5.389029,56.559734],[-5.390355,56.559547],[-5.391722,56.560131],[-5.391512,56.561154],[-5.38971,56.562014],[-5.38877,56.563756],[-5.385996,56.564062],[-5.385533,56.565767],[-5.387234,56.56676],[-5.3855,56.567064],[-5.391065,56.568779],[-5.39194,56.567441],[-5.393879,56.567503],[-5.398244,56.564891],[-5.401417,56.56423],[-5.4022,56.562871],[-5.4041,56.561437],[-5.408273,56.56068],[-5.405854,56.558421],[-5.406064,56.556179],[-5.407923,56.555567],[-5.409597,56.555691],[-5.412383,56.554472],[-5.414847,56.553102],[-5.415772,56.552053],[-5.417932,56.550753],[-5.419565,56.54852],[-5.421183,56.547518],[-5.420026,56.546417],[-5.417264,56.547822],[-5.41366,56.54901],[-5.412231,56.550624],[-5.410268,56.551302],[-5.407725,56.55068],[-5.405083,56.549039],[-5.408663,56.546626],[-5.40956,56.545557],[-5.415171,56.541906],[-5.414508,56.540729],[-5.416145,56.539789],[-5.412425,56.539443],[-5.411242,56.540199],[-5.409644,56.540255],[-5.403133,56.542586],[-5.398082,56.543831],[-5.39322,56.543739],[-5.392368,56.542015],[-5.395455,56.539269],[-5.39556,56.537835],[-5.394489,56.536939],[-5.392912,56.533606],[-5.38995,56.534344],[-5.388304,56.534308],[-5.387108,56.533721],[-5.387454,56.532393],[-5.386439,56.532226],[-5.387396,56.5305],[-5.386422,56.53007],[-5.387755,56.528111],[-5.384129,56.52658],[-5.382257,56.526951],[-5.381082,56.525886],[-5.382797,56.524158],[-5.379312,56.52477],[-5.377496,56.526279],[-5.377731,56.526814],[-5.375137,56.529287],[-5.372739,56.529227],[-5.37183,56.528484],[-5.371962,56.527179],[-5.370794,56.52647],[-5.367361,56.525531],[-5.368337,56.524515],[-5.36757,56.524102],[-5.360314,56.526181],[-5.357877,56.527788],[-5.355092,56.529076],[-5.349663,56.530684],[-5.347567,56.53191],[-5.343903,56.534912],[-5.339746,56.53657],[-5.336099,56.537095],[-5.334706,56.539479],[-5.333025,56.539794],[-5.328126,56.542928],[-5.326996,56.545068],[-5.323894,56.547557],[-5.322424,56.547229],[-5.320249,56.54812],[-5.315974,56.5489],[-5.314322,56.549871],[-5.312607,56.550245],[-5.305653,56.55065],[-5.30191,56.551346],[-5.299154,56.550211],[-5.299315,56.549338],[-5.297886,56.548734],[-5.295514,56.549275],[-5.292639,56.549342],[-5.291888,56.547905],[-5.28753,56.547838],[-5.285101,56.548312],[-5.283967,56.549093],[-5.278786,56.549778],[-5.276203,56.550489],[-5.274421,56.550302],[-5.274173,56.551104],[-5.270145,56.552051],[-5.264829,56.554209],[-5.26267,56.554181],[-5.260279,56.555057],[-5.256971,56.556613],[-5.254657,56.557249],[-5.253557,56.558096],[-5.247411,56.560545],[-5.245356,56.562792],[-5.244312,56.561048],[-5.245007,56.560235],[-5.24897,56.557475],[-5.248024,56.55612],[-5.248524,56.555122],[-5.246611,56.55426],[-5.245214,56.553119],[-5.246379,56.55089],[-5.249488,56.548422],[-5.25342,56.547591],[-5.258055,56.547366],[-5.260303,56.546633],[-5.26232,56.546719],[-5.264916,56.546197],[-5.267681,56.54519],[-5.275751,56.544042],[-5.278787,56.544897],[-5.28054,56.545785],[-5.283782,56.545731],[-5.285739,56.546623],[-5.292468,56.546922],[-5.29414,56.545897],[-5.293865,56.544251],[-5.296108,56.54375],[-5.297074,56.542884],[-5.299031,56.543866],[-5.30013,56.543882],[-5.301277,56.542845],[-5.300002,56.542411],[-5.303844,56.540929],[-5.303825,56.539042],[-5.30449,56.537518],[-5.306501,56.537352],[-5.306965,56.536706],[-5.3061,56.534286],[-5.30928,56.532136],[-5.310755,56.532544],[-5.313726,56.528971],[-5.321061,56.527697],[-5.321842,56.527269],[-5.324211,56.527337],[-5.325151,56.525438],[-5.329338,56.524334],[-5.329113,56.523303],[-5.333723,56.520144],[-5.337164,56.519716],[-5.340561,56.518776],[-5.343295,56.518522],[-5.345338,56.518917],[-5.345537,56.519698],[-5.348106,56.519314],[-5.349077,56.519903],[-5.353386,56.519482],[-5.35581,56.517648],[-5.354134,56.516942],[-5.353652,56.515097],[-5.3566,56.514157],[-5.36142,56.51352],[-5.363192,56.514468],[-5.362782,56.515434],[-5.364813,56.516791],[-5.367507,56.516105],[-5.367626,56.515579],[-5.372891,56.512359],[-5.376409,56.511239],[-5.376739,56.511823],[-5.382679,56.509921],[-5.389776,56.5102],[-5.389546,56.511431],[-5.390325,56.512521],[-5.390234,56.513525],[-5.392916,56.514169],[-5.396814,56.5155],[-5.399853,56.515362],[-5.401898,56.516639],[-5.402573,56.51875],[-5.402368,56.520362],[-5.401488,56.521815],[-5.399731,56.523204],[-5.399526,56.524199],[-5.400938,56.524668],[-5.401891,56.525709],[-5.403371,56.525754],[-5.404589,56.523871],[-5.405887,56.523742],[-5.408572,56.522364],[-5.410481,56.52091],[-5.41168,56.520731],[-5.412994,56.521641],[-5.409923,56.52169],[-5.410124,56.522477],[-5.41203,56.524134],[-5.412526,56.525532],[-5.420305,56.526558],[-5.421706,56.525039],[-5.421719,56.522369],[-5.422414,56.52093],[-5.426228,56.518718],[-5.427892,56.518106],[-5.430866,56.517744],[-5.432902,56.518211],[-5.435034,56.519303],[-5.434024,56.52001],[-5.432627,56.519237],[-5.43164,56.520114],[-5.434231,56.52134],[-5.43519,56.52117],[-5.438969,56.518399],[-5.441782,56.515588],[-5.442593,56.514399],[-5.442203,56.513256],[-5.44415,56.51116],[-5.446367,56.509738],[-5.448064,56.508022],[-5.449209,56.507739],[-5.451531,56.505831],[-5.452143,56.502641],[-5.453166,56.501461],[-5.448278,56.502946],[-5.446843,56.502361],[-5.448256,56.50118],[-5.450539,56.500186],[-5.452305,56.500218],[-5.454318,56.499469],[-5.455368,56.49797],[-5.453784,56.497183],[-5.451521,56.497043],[-5.455033,56.495453],[-5.456929,56.494357],[-5.459868,56.493244],[-5.461773,56.493884],[-5.463562,56.491844],[-5.466371,56.490125],[-5.46649,56.489474],[-5.464838,56.488644],[-5.466675,56.488296],[-5.469807,56.486558],[-5.470517,56.485172],[-5.471586,56.484962],[-5.472181,56.483647],[-5.473851,56.481797],[-5.473123,56.480797],[-5.47148,56.481225],[-5.469394,56.480443],[-5.464808,56.482976],[-5.460778,56.485897],[-5.458753,56.486054],[-5.455011,56.488392],[-5.454045,56.48854],[-5.451632,56.487978],[-5.451941,56.486532],[-5.451125,56.486241],[-5.45123,56.484726],[-5.453924,56.481931],[-5.454276,56.481157],[-5.457637,56.479055],[-5.457068,56.476751],[-5.458482,56.475743],[-5.458905,56.474713],[-5.456625,56.475005],[-5.453875,56.476116],[-5.452001,56.47793],[-5.448267,56.479575],[-5.44638,56.481062],[-5.440675,56.486781],[-5.438607,56.490044],[-5.435157,56.492243],[-5.435331,56.493627],[-5.430094,56.496895],[-5.428185,56.497349],[-5.425032,56.499226],[-5.426355,56.499763],[-5.424556,56.50251],[-5.424481,56.503236],[-5.4223,56.504259],[-5.423525,56.505912],[-5.421058,56.506425],[-5.421407,56.505348],[-5.419613,56.504222],[-5.421085,56.502192],[-5.420763,56.500386],[-5.427045,56.49567],[-5.424688,56.494478],[-5.422746,56.495451],[-5.416733,56.493671],[-5.413597,56.492232],[-5.409577,56.489799],[-5.409531,56.487823],[-5.405356,56.484317],[-5.400832,56.472247],[-5.400376,56.468334],[-5.401041,56.465765],[-5.402066,56.464084],[-5.40703,56.458892],[-5.399972,56.457518],[-5.39399,56.457485],[-5.39209,56.457001],[-5.389864,56.458604],[-5.387308,56.45946],[-5.384311,56.459322],[-5.380359,56.458302],[-5.374387,56.458097],[-5.366584,56.458983],[-5.365508,56.45935],[-5.361468,56.462355],[-5.362645,56.463753],[-5.36266,56.465647],[-5.363771,56.468019],[-5.363441,56.468876],[-5.361955,56.470128],[-5.358734,56.470317],[-5.356201,56.471032],[-5.3534,56.470178],[-5.35071,56.470348],[-5.34857,56.471392],[-5.34648,56.471782],[-5.344089,56.471228],[-5.342395,56.471305],[-5.339327,56.470863],[-5.338657,56.470079],[-5.335338,56.468343],[-5.332182,56.466029],[-5.331252,56.466197],[-5.328706,56.465407],[-5.327545,56.466247],[-5.324894,56.46657],[-5.323479,56.465893],[-5.322644,56.464608],[-5.320881,56.464412],[-5.318637,56.463542],[-5.316195,56.464034],[-5.314662,56.463491],[-5.310914,56.46297],[-5.308312,56.46357],[-5.306473,56.463156],[-5.306482,56.462423],[-5.302624,56.463335],[-5.298168,56.463355],[-5.2974,56.462718],[-5.294209,56.461537],[-5.291951,56.462071],[-5.290122,56.46188],[-5.288199,56.460444],[-5.286166,56.460853],[-5.284288,56.460821],[-5.282048,56.462505],[-5.280711,56.46271],[-5.277829,56.464311],[-5.275333,56.464704],[-5.274047,56.464552],[-5.270802,56.463397],[-5.268223,56.463146],[-5.26504,56.463427],[-5.263047,56.462819],[-5.25969,56.46306],[-5.256745,56.464036],[-5.255786,56.463644],[-5.254243,56.461549],[-5.252425,56.460173],[-5.250315,56.459477],[-5.248319,56.458261],[-5.246125,56.456233],[-5.243568,56.45441],[-5.241714,56.455083],[-5.238768,56.453545],[-5.238386,56.452806],[-5.236441,56.451679],[-5.229344,56.450675],[-5.230393,56.448981],[-5.232539,56.44757],[-5.230227,56.446636],[-5.228663,56.447529],[-5.226479,56.447608],[-5.22429,56.448214],[-5.222339,56.44933],[-5.224918,56.449826],[-5.226342,56.449351],[-5.228042,56.449491],[-5.228175,56.450283],[-5.226201,56.450551],[-5.224232,56.450112],[-5.220418,56.450503],[-5.218156,56.451492],[-5.214974,56.452357],[-5.212508,56.451225],[-5.210292,56.453332],[-5.20489,56.454348],[-5.20389,56.45548],[-5.200985,56.45578],[-5.194979,56.456861],[-5.193426,56.458568],[-5.19054,56.458418],[-5.18893,56.459547],[-5.186637,56.459794],[-5.184589,56.46093],[-5.183867,56.462387],[-5.185615,56.463583],[-5.185003,56.46461],[-5.185098,56.466186],[-5.179777,56.47056],[-5.177552,56.47037],[-5.175744,56.470695],[-5.175112,56.471488],[-5.174741,56.47366],[-5.175865,56.474283],[-5.174209,56.475656],[-5.173391,56.477524],[-5.174561,56.480051],[-5.173853,56.481881],[-5.171333,56.482345],[-5.170554,56.484307],[-5.168789,56.485156],[-5.166579,56.484754],[-5.164368,56.485129],[-5.162253,56.487638],[-5.161408,56.490262],[-5.162027,56.491356],[-5.160884,56.492464],[-5.158891,56.493023],[-5.15928,56.495939],[-5.157394,56.497101],[-5.156901,56.500067],[-5.155912,56.50127],[-5.153161,56.502198],[-5.150451,56.502348],[-5.148657,56.503351],[-5.14844,56.503963],[-5.146245,56.50396],[-5.143674,56.503248],[-5.142769,56.504291],[-5.140283,56.504102],[-5.138755,56.505966],[-5.137389,56.50576],[-5.137749,56.504818],[-5.13485,56.503364],[-5.13388,56.504016],[-5.131184,56.507397],[-5.129664,56.508487],[-5.129207,56.509704],[-5.128105,56.50979],[-5.126691,56.510873],[-5.123928,56.511081],[-5.123211,56.511859],[-5.121711,56.511802],[-5.120982,56.513016],[-5.119452,56.512799],[-5.117809,56.514278],[-5.117114,56.516107],[-5.112443,56.518624],[-5.1119,56.519348],[-5.108859,56.52133],[-5.107469,56.523018],[-5.106625,56.525714],[-5.105416,56.526742],[-5.104448,56.529121],[-5.101432,56.532118],[-5.100973,56.533069],[-5.09874,56.534547],[-5.097635,56.53574]]],[[[-6.560285,56.592885],[-6.563306,56.592943],[-6.562956,56.59137],[-6.560285,56.592885]]],[[[-6.029595,56.611514],[-6.033004,56.612695],[-6.033142,56.611742],[-6.030402,56.610824],[-6.029595,56.611514]]],[[[-6.046123,56.621029],[-6.048039,56.621636],[-6.051053,56.620249],[-6.049765,56.619843],[-6.047682,56.620386],[-6.046815,56.619704],[-6.045351,56.61987],[-6.046123,56.621029]]],[[[-6.045838,56.624995],[-6.046389,56.624424],[-6.043471,56.621398],[-6.043769,56.619783],[-6.044976,56.618652],[-6.04361,56.617818],[-6.044135,56.616871],[-6.039925,56.614314],[-6.038238,56.613699],[-6.03346,56.612718],[-6.028728,56.61305],[-6.029392,56.613905],[-6.032639,56.615327],[-6.032114,56.616667],[-6.033417,56.617419],[-6.033789,56.619415],[-6.037726,56.620406],[-6.037723,56.622251],[-6.039081,56.622908],[-6.040858,56.622895],[-6.042843,56.624368],[-6.045838,56.624995]]],[[[-6.521781,56.609693],[-6.522934,56.610533],[-6.524622,56.609036],[-6.526895,56.608747],[-6.525545,56.606732],[-6.526361,56.605649],[-6.526732,56.604048],[-6.52551,56.603517],[-6.524886,56.606068],[-6.522404,56.605699],[-6.522417,56.607169],[-6.520482,56.607901],[-6.52048,56.608567],[-6.521781,56.609693]]],[[[-6.5164,56.61905],[-6.516044,56.617979],[-6.513893,56.61718],[-6.51443,56.618807],[-6.5164,56.61905]]],[[[-6.123135,56.65503],[-6.124241,56.654998],[-6.126026,56.65586],[-6.129203,56.656326],[-6.130185,56.655596],[-6.129234,56.653398],[-6.129461,56.651816],[-6.131297,56.650622],[-6.134201,56.650085],[-6.137778,56.650996],[-6.141783,56.651343],[-6.145587,56.653067],[-6.149787,56.651904],[-6.151163,56.6509],[-6.151868,56.649599],[-6.156126,56.648607],[-6.159921,56.645863],[-6.162766,56.645912],[-6.164796,56.645372],[-6.166601,56.644129],[-6.165644,56.642766],[-6.166176,56.641754],[-6.169888,56.641803],[-6.17079,56.641178],[-6.172517,56.641586],[-6.175937,56.641751],[-6.176882,56.641134],[-6.18018,56.642271],[-6.181499,56.642216],[-6.182942,56.641372],[-6.186728,56.642519],[-6.189104,56.643637],[-6.193132,56.64316],[-6.197509,56.641942],[-6.199943,56.640272],[-6.198607,56.63882],[-6.200092,56.637578],[-6.200657,56.635612],[-6.202475,56.635533],[-6.203005,56.634814],[-6.19853,56.632046],[-6.200209,56.63203],[-6.20233,56.63342],[-6.205255,56.634112],[-6.205575,56.635158],[-6.206949,56.635993],[-6.20816,56.635507],[-6.206975,56.634171],[-6.205659,56.63364],[-6.204667,56.631551],[-6.201076,56.629707],[-6.199051,56.627631],[-6.196191,56.626127],[-6.195752,56.624226],[-6.197895,56.623915],[-6.198658,56.625351],[-6.200322,56.626077],[-6.203861,56.628705],[-6.207274,56.630784],[-6.20784,56.630445],[-6.210813,56.631932],[-6.212838,56.631877],[-6.216586,56.6338],[-6.217854,56.633977],[-6.219587,56.63306],[-6.22123,56.632869],[-6.222962,56.632086],[-6.224721,56.632494],[-6.224528,56.633463],[-6.227005,56.633437],[-6.227184,56.632707],[-6.226221,56.631094],[-6.227873,56.630044],[-6.227999,56.628763],[-6.225674,56.628037],[-6.226276,56.627288],[-6.225836,56.624308],[-6.226533,56.622594],[-6.228933,56.621586],[-6.227588,56.619923],[-6.226138,56.618992],[-6.22624,56.617572],[-6.224215,56.615212],[-6.226196,56.615865],[-6.226978,56.614179],[-6.224781,56.61299],[-6.224955,56.612503],[-6.222933,56.608709],[-6.214797,56.604633],[-6.21624,56.604116],[-6.218044,56.604428],[-6.219204,56.605841],[-6.222882,56.607015],[-6.223378,56.605326],[-6.224234,56.604838],[-6.220226,56.602658],[-6.219349,56.601587],[-6.216209,56.601221],[-6.214173,56.599919],[-6.215349,56.598471],[-6.209601,56.594808],[-6.209026,56.595081],[-6.206558,56.594264],[-6.204238,56.593883],[-6.201461,56.592379],[-6.198283,56.591485],[-6.194666,56.589437],[-6.192732,56.588881],[-6.188251,56.58646],[-6.186776,56.585122],[-6.188186,56.583886],[-6.190441,56.58417],[-6.19,56.585628],[-6.192004,56.58628],[-6.194204,56.584443],[-6.195225,56.585425],[-6.196863,56.585279],[-6.199597,56.587003],[-6.201066,56.587017],[-6.202692,56.5864],[-6.204385,56.590192],[-6.208628,56.592287],[-6.20956,56.593878],[-6.211659,56.595522],[-6.215071,56.596053],[-6.218771,56.597874],[-6.218822,56.599648],[-6.221711,56.59902],[-6.22493,56.600542],[-6.226534,56.601904],[-6.225776,56.603077],[-6.231083,56.604456],[-6.230871,56.606735],[-6.231995,56.607937],[-6.233569,56.606849],[-6.234118,56.605778],[-6.232809,56.603921],[-6.231102,56.603386],[-6.231339,56.602595],[-6.233431,56.601908],[-6.233884,56.603844],[-6.235957,56.606183],[-6.235224,56.606411],[-6.236506,56.60809],[-6.240836,56.60992],[-6.242583,56.608633],[-6.24629,56.608533],[-6.247996,56.610359],[-6.250798,56.610983],[-6.251606,56.612075],[-6.255015,56.611499],[-6.256876,56.612101],[-6.25782,56.613885],[-6.260725,56.613111],[-6.261597,56.614115],[-6.262914,56.613863],[-6.261621,56.612811],[-6.262446,56.612022],[-6.262022,56.611308],[-6.262565,56.609397],[-6.262262,56.608373],[-6.264317,56.607799],[-6.263768,56.605677],[-6.265566,56.605714],[-6.270061,56.604656],[-6.270793,56.603384],[-6.272779,56.603963],[-6.273186,56.603267],[-6.276802,56.603471],[-6.279968,56.606037],[-6.281917,56.606757],[-6.282607,56.606369],[-6.285391,56.606758],[-6.2861,56.605893],[-6.289786,56.606764],[-6.291941,56.606352],[-6.29356,56.607034],[-6.294529,56.605809],[-6.296749,56.605543],[-6.298757,56.603981],[-6.30183,56.603389],[-6.305384,56.603832],[-6.305746,56.604426],[-6.308863,56.603662],[-6.310055,56.601817],[-6.311892,56.601412],[-6.313763,56.602592],[-6.315935,56.602049],[-6.317922,56.60417],[-6.316926,56.604676],[-6.323019,56.605751],[-6.324336,56.605071],[-6.322785,56.603277],[-6.323117,56.601835],[-6.321809,56.601157],[-6.322501,56.599581],[-6.320806,56.598876],[-6.319762,56.597657],[-6.321903,56.595712],[-6.31999,56.593234],[-6.318864,56.592589],[-6.316847,56.59234],[-6.31732,56.591555],[-6.316801,56.589509],[-6.317647,56.589142],[-6.315911,56.587565],[-6.316563,56.585784],[-6.315642,56.584787],[-6.3159,56.581338],[-6.316287,56.579584],[-6.313161,56.577251],[-6.309533,56.575803],[-6.305847,56.576061],[-6.302922,56.5777],[-6.301266,56.57747],[-6.299587,56.578612],[-6.297756,56.57935],[-6.295795,56.579296],[-6.293126,56.580472],[-6.290654,56.58081],[-6.288787,56.580726],[-6.286913,56.581083],[-6.280911,56.580335],[-6.279718,56.577343],[-6.280068,56.576234],[-6.282679,56.576495],[-6.2852,56.576177],[-6.288474,56.574949],[-6.289727,56.57321],[-6.292571,56.571426],[-6.293999,56.571084],[-6.294661,56.569959],[-6.293761,56.568709],[-6.296087,56.567671],[-6.296843,56.566651],[-6.298989,56.565969],[-6.299563,56.564857],[-6.302384,56.563518],[-6.303648,56.563892],[-6.304743,56.562678],[-6.305448,56.561105],[-6.306766,56.559809],[-6.306985,56.55851],[-6.311044,56.55854],[-6.312407,56.557753],[-6.315546,56.557673],[-6.317521,56.55657],[-6.319859,56.556152],[-6.321181,56.556461],[-6.324435,56.556361],[-6.326068,56.55697],[-6.328444,56.556244],[-6.333597,56.55516],[-6.334578,56.553628],[-6.336306,56.553289],[-6.337352,56.55247],[-6.3389,56.549776],[-6.336989,56.548809],[-6.336393,56.546307],[-6.338167,56.54445],[-6.338363,56.542676],[-6.34007,56.542167],[-6.33893,56.541303],[-6.338682,56.540282],[-6.339799,56.539654],[-6.33828,56.536986],[-6.336396,56.534961],[-6.332883,56.533919],[-6.332963,56.533331],[-6.330186,56.533388],[-6.328092,56.532728],[-6.325014,56.532565],[-6.323592,56.533658],[-6.321495,56.532679],[-6.319496,56.532708],[-6.316833,56.53183],[-6.314893,56.532234],[-6.313853,56.531389],[-6.312498,56.531283],[-6.311794,56.529316],[-6.310045,56.528751],[-6.306537,56.528599],[-6.305457,56.529185],[-6.304082,56.528828],[-6.30024,56.529177],[-6.295376,56.529125],[-6.293515,56.527998],[-6.29219,56.527932],[-6.289728,56.527171],[-6.290235,56.525189],[-6.286794,56.523464],[-6.285585,56.523928],[-6.28259,56.524131],[-6.281908,56.524649],[-6.279667,56.524618],[-6.278215,56.524003],[-6.276453,56.523888],[-6.275589,56.523298],[-6.268658,56.523811],[-6.267007,56.523166],[-6.263989,56.523243],[-6.263184,56.524907],[-6.261637,56.525378],[-6.255507,56.526384],[-6.25437,56.526117],[-6.252445,56.526764],[-6.250657,56.526201],[-6.245427,56.527167],[-6.244083,56.526541],[-6.24179,56.526945],[-6.239857,56.527904],[-6.235304,56.527776],[-6.233753,56.528823],[-6.232815,56.528688],[-6.228784,56.529514],[-6.226631,56.528695],[-6.225353,56.528856],[-6.225577,56.526751],[-6.22318,56.524104],[-6.221099,56.523023],[-6.215571,56.522766],[-6.211908,56.522105],[-6.210714,56.520824],[-6.208834,56.521179],[-6.206948,56.521046],[-6.204977,56.519532],[-6.201003,56.517302],[-6.197859,56.516903],[-6.198416,56.515453],[-6.196801,56.514641],[-6.193882,56.515671],[-6.191973,56.515796],[-6.192097,56.514674],[-6.190378,56.513757],[-6.189769,56.512223],[-6.186708,56.509732],[-6.184722,56.509185],[-6.182592,56.509662],[-6.18195,56.5108],[-6.183424,56.511148],[-6.181239,56.513127],[-6.179284,56.511242],[-6.178504,56.511771],[-6.175094,56.511365],[-6.174841,56.510557],[-6.172402,56.509547],[-6.175599,56.509261],[-6.173382,56.508374],[-6.174787,56.50776],[-6.175118,56.506926],[-6.174064,56.505774],[-6.17236,56.50544],[-6.17004,56.505487],[-6.166171,56.503949],[-6.164317,56.504537],[-6.161836,56.503195],[-6.159355,56.502896],[-6.154645,56.502793],[-6.15461,56.50248],[-6.148724,56.500177],[-6.147419,56.498948],[-6.148002,56.497517],[-6.149338,56.497094],[-6.149526,56.495842],[-6.145458,56.495888],[-6.143883,56.494553],[-6.143884,56.493221],[-6.142505,56.492685],[-6.139462,56.49316],[-6.138712,56.492051],[-6.138537,56.490462],[-6.140441,56.490185],[-6.140594,56.488709],[-6.143527,56.488317],[-6.146001,56.486423],[-6.148126,56.485938],[-6.148578,56.485096],[-6.150409,56.485565],[-6.150889,56.484524],[-6.149114,56.483459],[-6.150131,56.481889],[-6.149595,56.481076],[-6.146236,56.47993],[-6.143163,56.479655],[-6.142218,56.480065],[-6.139712,56.479968],[-6.138244,56.480385],[-6.137352,56.481702],[-6.1359,56.481962],[-6.136074,56.480353],[-6.134956,56.479249],[-6.134477,56.477376],[-6.131768,56.476162],[-6.128706,56.476561],[-6.125607,56.475484],[-6.124477,56.474578],[-6.124352,56.473354],[-6.121811,56.472099],[-6.118527,56.472388],[-6.116458,56.47368],[-6.112432,56.474465],[-6.110098,56.475267],[-6.109404,56.476441],[-6.106559,56.476801],[-6.104961,56.478486],[-6.102571,56.478691],[-6.101876,56.479258],[-6.099458,56.478911],[-6.098367,56.47927],[-6.096813,56.478575],[-6.095091,56.479181],[-6.090112,56.479498],[-6.086651,56.479046],[-6.084454,56.479473],[-6.083206,56.479073],[-6.080571,56.479332],[-6.081327,56.480314],[-6.080641,56.480813],[-6.077121,56.480727],[-6.076174,56.481284],[-6.073115,56.481785],[-6.071138,56.48176],[-6.069891,56.482637],[-6.064703,56.482906],[-6.062241,56.483742],[-6.060813,56.485358],[-6.058522,56.485824],[-6.054896,56.487175],[-6.053955,56.486891],[-6.051468,56.487345],[-6.048361,56.487092],[-6.045787,56.487361],[-6.043359,56.486951],[-6.042062,56.487595],[-6.039003,56.488186],[-6.035071,56.488306],[-6.034781,56.489206],[-6.032772,56.489816],[-6.031436,56.491273],[-6.026621,56.492939],[-6.0246,56.492861],[-6.023084,56.493708],[-6.022812,56.494502],[-6.021155,56.494852],[-6.021073,56.495624],[-6.017395,56.496817],[-6.015312,56.497798],[-6.015629,56.498561],[-6.014177,56.498944],[-6.013269,56.499922],[-6.011162,56.49971],[-6.006851,56.500283],[-6.004663,56.499218],[-6.001942,56.494892],[-6.002138,56.494616],[-5.99889,56.49159],[-5.996512,56.488273],[-5.995942,56.485199],[-5.995966,56.483915],[-5.996671,56.482635],[-5.998246,56.482173],[-6.001815,56.477969],[-6.004445,56.477637],[-6.005427,56.478087],[-6.008157,56.477243],[-6.009749,56.476234],[-6.010165,56.474485],[-6.012647,56.473137],[-6.013134,56.471983],[-6.016086,56.470395],[-6.017945,56.467772],[-6.019239,56.467644],[-6.020966,56.46677],[-6.024099,56.466596],[-6.027152,56.466816],[-6.030267,56.465712],[-6.031697,56.466246],[-6.034156,56.464624],[-6.03825,56.464167],[-6.039403,56.463248],[-6.041783,56.463328],[-6.043455,56.461636],[-6.043849,56.460535],[-6.04587,56.459835],[-6.046409,56.458869],[-6.049106,56.456677],[-6.050681,56.45431],[-6.05193,56.454215],[-6.05261,56.45283],[-6.05476,56.45137],[-6.058931,56.450816],[-6.05964,56.451292],[-6.061779,56.450794],[-6.06398,56.449585],[-6.069129,56.449147],[-6.071731,56.448668],[-6.073821,56.448793],[-6.07434,56.448283],[-6.076442,56.448562],[-6.078318,56.447692],[-6.081399,56.448363],[-6.084423,56.447953],[-6.08533,56.448457],[-6.087618,56.448793],[-6.090504,56.448824],[-6.092005,56.449566],[-6.093781,56.449471],[-6.096139,56.449807],[-6.098951,56.450735],[-6.101603,56.450485],[-6.108086,56.45067],[-6.112051,56.451146],[-6.118385,56.451372],[-6.124386,56.45048],[-6.129083,56.448426],[-6.129467,56.446879],[-6.129093,56.444486],[-6.132252,56.440091],[-6.135324,56.438856],[-6.140048,56.438554],[-6.13929,56.43674],[-6.137809,56.435315],[-6.138062,56.433211],[-6.137955,56.430737],[-6.139042,56.429608],[-6.140667,56.428871],[-6.144917,56.427612],[-6.144833,56.424225],[-6.146367,56.422965],[-6.147016,56.421339],[-6.148854,56.420516],[-6.150744,56.418739],[-6.150821,56.417306],[-6.149588,56.415808],[-6.152438,56.412797],[-6.154211,56.411919],[-6.154603,56.411078],[-6.15647,56.410498],[-6.155938,56.409864],[-6.15848,56.408929],[-6.159451,56.407795],[-6.163204,56.406954],[-6.164157,56.40618],[-6.166797,56.405398],[-6.1678,56.404047],[-6.169991,56.402944],[-6.171834,56.402823],[-6.173538,56.401938],[-6.175897,56.401787],[-6.177761,56.400964],[-6.179126,56.40099],[-6.181459,56.399931],[-6.183125,56.399668],[-6.186204,56.398394],[-6.18981,56.395871],[-6.189873,56.394745],[-6.191984,56.393891],[-6.194778,56.392025],[-6.196463,56.391491],[-6.19786,56.391956],[-6.198271,56.390467],[-6.200084,56.390145],[-6.200357,56.388647],[-6.202709,56.386895],[-6.2048,56.386379],[-6.204457,56.383782],[-6.206231,56.382089],[-6.208875,56.380489],[-6.206591,56.376758],[-6.207745,56.374731],[-6.209319,56.37372],[-6.208011,56.371196],[-6.205309,56.368743],[-6.203662,56.365265],[-6.202879,56.365147],[-6.200373,56.36284],[-6.194854,56.358846],[-6.192046,56.358212],[-6.186,56.358624],[-6.18139,56.357651],[-6.176316,56.357367],[-6.171634,56.358074],[-6.169878,56.359393],[-6.167439,56.360113],[-6.164687,56.36],[-6.164248,56.360925],[-6.157161,56.363903],[-6.152946,56.365277],[-6.150302,56.365517],[-6.149239,56.366188],[-6.144839,56.367017],[-6.138898,56.366113],[-6.13831,56.366312],[-6.13467,56.365944],[-6.131147,56.366548],[-6.126532,56.366651],[-6.125995,56.36715],[-6.122653,56.367563],[-6.117156,56.365579],[-6.111133,56.365923],[-6.109931,56.366493],[-6.105376,56.366622],[-6.101052,56.367323],[-6.098329,56.368927],[-6.092333,56.371417],[-6.090602,56.371261],[-6.089618,56.371736],[-6.08338,56.372007],[-6.080151,56.373283],[-6.078164,56.374858],[-6.076479,56.376947],[-6.072948,56.37921],[-6.072354,56.380819],[-6.07308,56.381769],[-6.072142,56.383035],[-6.070419,56.383377],[-6.066129,56.383113],[-6.061717,56.381821],[-6.060073,56.381043],[-6.05977,56.380343],[-6.062683,56.37868],[-6.064142,56.376751],[-6.061343,56.375656],[-6.059418,56.375841],[-6.056904,56.376656],[-6.056137,56.378119],[-6.056539,56.378755],[-6.055537,56.380561],[-6.050901,56.381556],[-6.051051,56.382886],[-6.048625,56.383316],[-6.047604,56.384465],[-6.043307,56.386975],[-6.039964,56.389458],[-6.036764,56.390628],[-6.033453,56.392328],[-6.031496,56.392625],[-6.029501,56.393387],[-6.025608,56.393833],[-6.022728,56.394655],[-6.021044,56.394602],[-6.019349,56.393906],[-6.017512,56.391938],[-6.015183,56.391375],[-6.01011,56.391625],[-6.007409,56.392917],[-6.005167,56.393642],[-6.003236,56.393702],[-6.000762,56.390989],[-6.001134,56.3903],[-5.996761,56.388138],[-5.995552,56.388507],[-5.995292,56.386724],[-5.994137,56.387183],[-5.994454,56.388646],[-5.989824,56.38902],[-5.989905,56.390665],[-5.987431,56.390035],[-5.986868,56.391145],[-5.985302,56.390452],[-5.983352,56.389061],[-5.97877,56.390301],[-5.981115,56.387877],[-5.979479,56.387396],[-5.979305,56.385886],[-5.982168,56.384853],[-5.982834,56.383833],[-5.98599,56.384264],[-5.989047,56.383734],[-5.992028,56.383697],[-5.992722,56.382737],[-5.997718,56.383004],[-5.997961,56.384893],[-5.999597,56.383975],[-6.000202,56.385517],[-6.002672,56.385734],[-6.00404,56.386428],[-6.005762,56.385734],[-6.006055,56.386885],[-6.009172,56.387285],[-6.010135,56.388544],[-6.012711,56.388609],[-6.01498,56.388097],[-6.016887,56.386628],[-6.015474,56.38449],[-6.014044,56.384057],[-6.011268,56.381327],[-6.011671,56.379042],[-6.007612,56.379202],[-6.00606,56.379472],[-6.004187,56.38074],[-6.003305,56.379926],[-6.003295,56.378411],[-6.004366,56.376614],[-6.005727,56.37632],[-6.005779,56.375523],[-6.007983,56.374955],[-6.008671,56.373961],[-6.013418,56.371483],[-6.014088,56.370103],[-6.015288,56.369421],[-6.0155,56.368238],[-6.0189,56.365214],[-6.02243,56.364379],[-6.023774,56.364624],[-6.024947,56.364083],[-6.026781,56.36436],[-6.029441,56.363805],[-6.032133,56.364155],[-6.034101,56.363106],[-6.038007,56.362896],[-6.041693,56.362315],[-6.042556,56.36083],[-6.043708,56.360124],[-6.048081,56.3601],[-6.048871,56.359553],[-6.05623,56.357899],[-6.057073,56.35817],[-6.060527,56.357287],[-6.062264,56.357441],[-6.065418,56.356383],[-6.068646,56.356733],[-6.070858,56.356492],[-6.075125,56.354316],[-6.075688,56.353516],[-6.07957,56.353305],[-6.082978,56.352566],[-6.084646,56.3527],[-6.089088,56.351331],[-6.089429,56.350718],[-6.088205,56.349245],[-6.089575,56.348534],[-6.088998,56.347423],[-6.091473,56.345918],[-6.095709,56.345187],[-6.097186,56.345149],[-6.098179,56.345966],[-6.100396,56.345948],[-6.099582,56.344851],[-6.10095,56.343739],[-6.10404,56.342688],[-6.109084,56.344329],[-6.112428,56.343982],[-6.114196,56.344454],[-6.117296,56.344067],[-6.120815,56.344638],[-6.123686,56.344232],[-6.126654,56.344578],[-6.129067,56.345474],[-6.13033,56.346749],[-6.131889,56.346409],[-6.131172,56.345322],[-6.128971,56.343768],[-6.129227,56.341642],[-6.131057,56.341126],[-6.133705,56.341272],[-6.138661,56.339946],[-6.140386,56.340095],[-6.142187,56.339756],[-6.141446,56.337957],[-6.141931,56.337296],[-6.14495,56.337168],[-6.148554,56.33756],[-6.150739,56.337248],[-6.152293,56.337466],[-6.153498,56.336867],[-6.159241,56.337043],[-6.160681,56.338074],[-6.162879,56.337964],[-6.165604,56.338974],[-6.168428,56.339108],[-6.169959,56.340154],[-6.172922,56.34089],[-6.175485,56.341154],[-6.177747,56.341033],[-6.179813,56.34023],[-6.18062,56.338661],[-6.183747,56.338595],[-6.185353,56.338262],[-6.185342,56.337151],[-6.181559,56.336041],[-6.178514,56.335885],[-6.176801,56.335004],[-6.17655,56.334324],[-6.179977,56.333631],[-6.184342,56.334044],[-6.18627,56.333909],[-6.187337,56.33477],[-6.188326,56.332886],[-6.190299,56.332205],[-6.194032,56.333195],[-6.194626,56.333608],[-6.200152,56.334546],[-6.201149,56.336285],[-6.203026,56.337452],[-6.208061,56.336934],[-6.206241,56.335954],[-6.2059,56.334892],[-6.207556,56.334906],[-6.208937,56.33427],[-6.212313,56.335037],[-6.212438,56.333014],[-6.214386,56.33337],[-6.215554,56.335655],[-6.219368,56.336909],[-6.221058,56.338794],[-6.225256,56.341168],[-6.226839,56.34233],[-6.228787,56.342199],[-6.232761,56.343569],[-6.234836,56.343957],[-6.238193,56.344166],[-6.241686,56.343736],[-6.243806,56.343065],[-6.24856,56.343077],[-6.249525,56.342217],[-6.251285,56.342318],[-6.252904,56.340639],[-6.251203,56.339978],[-6.25146,56.336691],[-6.249634,56.334715],[-6.247605,56.334618],[-6.246745,56.333127],[-6.247126,56.332083],[-6.245617,56.332014],[-6.247869,56.32976],[-6.245161,56.329163],[-6.243449,56.33093],[-6.243364,56.331781],[-6.242122,56.332277],[-6.240548,56.332196],[-6.239971,56.33151],[-6.238378,56.331291],[-6.236428,56.328924],[-6.236134,56.327526],[-6.237389,56.326957],[-6.241045,56.326285],[-6.24133,56.323548],[-6.240571,56.322613],[-6.238912,56.321715],[-6.238841,56.319659],[-6.235546,56.318592],[-6.23373,56.317249],[-6.236444,56.315706],[-6.237413,56.315828],[-6.240747,56.31795],[-6.243961,56.319101],[-6.245194,56.319168],[-6.247555,56.318554],[-6.25033,56.319058],[-6.25199,56.319777],[-6.258014,56.320191],[-6.259808,56.319657],[-6.261747,56.319923],[-6.263327,56.318565],[-6.26576,56.318779],[-6.268177,56.318011],[-6.270804,56.318995],[-6.272036,56.320348],[-6.273111,56.320784],[-6.273963,56.322307],[-6.275402,56.322932],[-6.276729,56.322535],[-6.279491,56.323181],[-6.282031,56.322996],[-6.285168,56.323488],[-6.287022,56.323064],[-6.288501,56.322109],[-6.291155,56.323688],[-6.296562,56.32447],[-6.29725,56.325036],[-6.289862,56.324349],[-6.290998,56.326022],[-6.290232,56.326852],[-6.284773,56.326152],[-6.279916,56.324416],[-6.276736,56.3252],[-6.274848,56.324621],[-6.272635,56.324599],[-6.270672,56.323968],[-6.268951,56.323953],[-6.267704,56.325865],[-6.268657,56.327298],[-6.269723,56.327788],[-6.270862,56.329641],[-6.271013,56.33085],[-6.273266,56.332535],[-6.272939,56.33301],[-6.273964,56.334652],[-6.273293,56.337913],[-6.274692,56.337752],[-6.276773,56.338112],[-6.277392,56.337281],[-6.285058,56.340518],[-6.287224,56.337673],[-6.286381,56.337019],[-6.288341,56.335076],[-6.288973,56.336237],[-6.290404,56.337298],[-6.290668,56.340076],[-6.29263,56.341681],[-6.292152,56.342328],[-6.293165,56.343683],[-6.294636,56.344238],[-6.296845,56.344253],[-6.297149,56.343613],[-6.301145,56.343809],[-6.30291,56.34441],[-6.304442,56.343629],[-6.302552,56.342933],[-6.302935,56.342169],[-6.30865,56.342751],[-6.309205,56.343907],[-6.311882,56.343813],[-6.315752,56.344236],[-6.316917,56.343291],[-6.319277,56.343825],[-6.321925,56.343827],[-6.32363,56.344159],[-6.325855,56.345693],[-6.327304,56.346207],[-6.329385,56.34599],[-6.331245,56.346532],[-6.332558,56.346427],[-6.333213,56.347317],[-6.336778,56.347408],[-6.339394,56.347821],[-6.340342,56.346816],[-6.340425,56.345742],[-6.342667,56.345861],[-6.344006,56.346352],[-6.346651,56.346112],[-6.347166,56.347342],[-6.348957,56.346546],[-6.347213,56.34472],[-6.348129,56.343933],[-6.351019,56.344672],[-6.351803,56.345442],[-6.353755,56.344848],[-6.352113,56.343387],[-6.353637,56.342571],[-6.355762,56.342924],[-6.357272,56.343697],[-6.358697,56.341636],[-6.357709,56.34108],[-6.358369,56.339914],[-6.360761,56.340118],[-6.36082,56.339387],[-6.364696,56.337933],[-6.364817,56.336617],[-6.366185,56.335211],[-6.366642,56.33383],[-6.368444,56.331748],[-6.368524,56.329336],[-6.367798,56.327052],[-6.365875,56.326438],[-6.365638,56.325817],[-6.371049,56.325843],[-6.371558,56.324786],[-6.370233,56.323664],[-6.370702,56.322595],[-6.372873,56.320711],[-6.37222,56.318184],[-6.371327,56.317662],[-6.371559,56.315095],[-6.369279,56.31398],[-6.369272,56.313211],[-6.373406,56.313065],[-6.373019,56.31096],[-6.373514,56.310052],[-6.376816,56.309783],[-6.376906,56.308804],[-6.373819,56.309183],[-6.373256,56.309783],[-6.367152,56.311063],[-6.365166,56.310714],[-6.367425,56.309301],[-6.365335,56.308957],[-6.367345,56.306839],[-6.366599,56.30562],[-6.367997,56.3049],[-6.366231,56.304396],[-6.365843,56.303537],[-6.36206,56.303275],[-6.361007,56.303686],[-6.35821,56.303919],[-6.356989,56.303634],[-6.355234,56.304686],[-6.353663,56.304331],[-6.353068,56.305347],[-6.35175,56.305803],[-6.348244,56.306325],[-6.346798,56.305989],[-6.345613,56.304778],[-6.348567,56.304978],[-6.350072,56.304253],[-6.349633,56.303498],[-6.351773,56.302302],[-6.352143,56.30058],[-6.351028,56.299455],[-6.352855,56.299368],[-6.352573,56.297817],[-6.353535,56.297037],[-6.353612,56.295154],[-6.353042,56.293493],[-6.350578,56.293152],[-6.348202,56.292462],[-6.348803,56.291132],[-6.350352,56.290741],[-6.35085,56.289648],[-6.349299,56.287886],[-6.349831,56.286167],[-6.34912,56.285392],[-6.349117,56.283868],[-6.349889,56.282838],[-6.349205,56.281944],[-6.347626,56.281325],[-6.346396,56.28198],[-6.343048,56.282587],[-6.342335,56.281457],[-6.338014,56.281784],[-6.338369,56.282487],[-6.336211,56.283561],[-6.334056,56.283664],[-6.332623,56.285432],[-6.330036,56.285217],[-6.328366,56.284398],[-6.32927,56.283454],[-6.326151,56.283257],[-6.323331,56.28198],[-6.327854,56.281232],[-6.328325,56.279771],[-6.33077,56.278609],[-6.32972,56.276185],[-6.329665,56.274518],[-6.330228,56.272996],[-6.328793,56.272026],[-6.324432,56.270487],[-6.323591,56.269338],[-6.322046,56.269757],[-6.319484,56.269608],[-6.316843,56.270195],[-6.31494,56.269803],[-6.313095,56.268927],[-6.311819,56.271157],[-6.310995,56.268933],[-6.307473,56.267734],[-6.303611,56.267306],[-6.301862,56.269359],[-6.300532,56.269676],[-6.300416,56.272962],[-6.299715,56.274201],[-6.297615,56.274211],[-6.295874,56.272743],[-6.295667,56.272057],[-6.291327,56.27148],[-6.29093,56.270675],[-6.285346,56.270608],[-6.281879,56.271331],[-6.280802,56.273338],[-6.27927,56.273258],[-6.278775,56.271775],[-6.277364,56.271649],[-6.273982,56.272117],[-6.272656,56.27299],[-6.271755,56.272441],[-6.26994,56.272549],[-6.26857,56.271495],[-6.268659,56.270633],[-6.273173,56.270018],[-6.273617,56.268348],[-6.270429,56.267954],[-6.271545,56.266949],[-6.271258,56.266109],[-6.272637,56.265072],[-6.270572,56.264891],[-6.267743,56.264095],[-6.26465,56.264242],[-6.264398,56.265757],[-6.262924,56.266882],[-6.262694,56.26779],[-6.259847,56.269583],[-6.262179,56.270573],[-6.261562,56.271125],[-6.259786,56.270781],[-6.257397,56.271606],[-6.258985,56.273606],[-6.255511,56.274846],[-6.254451,56.276658],[-6.255302,56.277254],[-6.253739,56.278104],[-6.255281,56.279103],[-6.253864,56.28046],[-6.254878,56.280853],[-6.253901,56.281881],[-6.253799,56.283406],[-6.251267,56.284647],[-6.252271,56.285447],[-6.251134,56.286501],[-6.245396,56.288574],[-6.241249,56.288538],[-6.238359,56.288187],[-6.234552,56.28731],[-6.233627,56.286859],[-6.233185,56.285],[-6.230069,56.28472],[-6.227884,56.285015],[-6.227743,56.284082],[-6.225469,56.283376],[-6.224618,56.283839],[-6.223652,56.285904],[-6.220869,56.286418],[-6.219348,56.285585],[-6.21796,56.287609],[-6.218918,56.288444],[-6.218642,56.289241],[-6.215429,56.290465],[-6.212566,56.290383],[-6.211197,56.290061],[-6.209095,56.288896],[-6.20718,56.290301],[-6.20504,56.290104],[-6.203381,56.291557],[-6.200071,56.291681],[-6.198599,56.29205],[-6.197808,56.291394],[-6.198936,56.288716],[-6.197502,56.289272],[-6.197443,56.290646],[-6.195575,56.291236],[-6.194484,56.290953],[-6.19458,56.289983],[-6.19234,56.289686],[-6.188741,56.290046],[-6.187594,56.291093],[-6.186205,56.290735],[-6.185859,56.289793],[-6.187947,56.288927],[-6.189111,56.287588],[-6.188162,56.286383],[-6.186425,56.286617],[-6.185147,56.289417],[-6.184171,56.289437],[-6.183302,56.288297],[-6.181474,56.287473],[-6.180907,56.286211],[-6.179137,56.285848],[-6.177108,56.28651],[-6.177019,56.287246],[-6.175501,56.288376],[-6.17213,56.289493],[-6.169763,56.289739],[-6.168967,56.290297],[-6.166686,56.290135],[-6.163688,56.28882],[-6.16264,56.287439],[-6.158701,56.288318],[-6.157439,56.287636],[-6.160266,56.286422],[-6.159203,56.28594],[-6.155958,56.285316],[-6.156184,56.283901],[-6.152937,56.285198],[-6.1508,56.285391],[-6.14805,56.286877],[-6.14519,56.288758],[-6.143418,56.288372],[-6.144675,56.287287],[-6.144024,56.286131],[-6.145416,56.285918],[-6.144444,56.284714],[-6.142883,56.284402],[-6.141508,56.285667],[-6.139629,56.285864],[-6.139523,56.286821],[-6.136872,56.287327],[-6.135605,56.291489],[-6.134297,56.292104],[-6.13268,56.291879],[-6.13251,56.293302],[-6.130669,56.294294],[-6.129601,56.294141],[-6.127734,56.296245],[-6.126605,56.296727],[-6.119743,56.297356],[-6.114287,56.296859],[-6.112365,56.29628],[-6.10076,56.297331],[-6.096271,56.29672],[-6.094008,56.297861],[-6.091719,56.297401],[-6.087046,56.297871],[-6.085205,56.298732],[-6.083442,56.300395],[-6.07898,56.302382],[-6.077531,56.302295],[-6.074216,56.300408],[-6.072702,56.2991],[-6.068393,56.296984],[-6.06654,56.295683],[-6.062988,56.294374],[-6.05738,56.293115],[-6.057285,56.292077],[-6.054964,56.291948],[-6.053803,56.292762],[-6.051516,56.292637],[-6.050658,56.293007],[-6.045429,56.292796],[-6.041659,56.294309],[-6.040163,56.294151],[-6.038335,56.2956],[-6.036082,56.296631],[-6.032922,56.297103],[-6.027877,56.299413],[-6.025872,56.301115],[-6.023558,56.301639],[-6.022316,56.302287],[-6.018329,56.30306],[-6.013218,56.30676],[-6.011164,56.307609],[-6.009671,56.309024],[-6.006579,56.309857],[-6.004418,56.311622],[-6.000476,56.312519],[-5.995939,56.314549],[-5.990805,56.318428],[-5.989242,56.320201],[-5.989422,56.321036],[-5.986802,56.322854],[-5.981834,56.322811],[-5.979204,56.322122],[-5.974265,56.321533],[-5.972635,56.32027],[-5.970151,56.319581],[-5.966888,56.319774],[-5.963656,56.31895],[-5.961628,56.318814],[-5.957445,56.319133],[-5.955608,56.318422],[-5.955009,56.319125],[-5.952495,56.319376],[-5.950005,56.318777],[-5.947248,56.319337],[-5.945695,56.319967],[-5.943934,56.319681],[-5.941182,56.320848],[-5.937455,56.320638],[-5.935358,56.321807],[-5.933576,56.321944],[-5.932097,56.324006],[-5.92999,56.325071],[-5.928328,56.325519],[-5.925713,56.327158],[-5.924887,56.328178],[-5.924649,56.329633],[-5.92329,56.330117],[-5.921643,56.331338],[-5.920072,56.333137],[-5.920149,56.334128],[-5.919013,56.334964],[-5.916838,56.335779],[-5.915405,56.336953],[-5.914478,56.337077],[-5.913178,56.339078],[-5.91163,56.339851],[-5.910228,56.341411],[-5.910248,56.341999],[-5.905554,56.343199],[-5.905944,56.343533],[-5.903656,56.344914],[-5.90223,56.346874],[-5.900309,56.347416],[-5.900132,56.348055],[-5.897423,56.34864],[-5.896414,56.349387],[-5.892018,56.349471],[-5.891501,56.351151],[-5.890387,56.351905],[-5.891503,56.352603],[-5.890856,56.353244],[-5.888847,56.353635],[-5.883728,56.353618],[-5.88219,56.352748],[-5.879809,56.353352],[-5.87975,56.354349],[-5.876344,56.354893],[-5.876051,56.355816],[-5.873664,56.355933],[-5.869894,56.354834],[-5.867859,56.354907],[-5.866529,56.354441],[-5.866098,56.353405],[-5.860974,56.354878],[-5.858645,56.354066],[-5.854857,56.354366],[-5.851446,56.353419],[-5.85111,56.35221],[-5.847788,56.351895],[-5.846415,56.350571],[-5.846032,56.348621],[-5.848748,56.34655],[-5.846773,56.346391],[-5.846717,56.345018],[-5.848495,56.345081],[-5.848278,56.343589],[-5.849376,56.342555],[-5.8561,56.341545],[-5.85763,56.341785],[-5.858731,56.341058],[-5.857943,56.340314],[-5.86092,56.340293],[-5.858456,56.338747],[-5.858942,56.337468],[-5.860133,56.336438],[-5.861938,56.336912],[-5.863432,56.336564],[-5.863328,56.335538],[-5.864234,56.335046],[-5.864182,56.333893],[-5.863402,56.332905],[-5.865215,56.332026],[-5.866389,56.330753],[-5.869259,56.329849],[-5.870114,56.32886],[-5.873092,56.328461],[-5.873573,56.327381],[-5.875373,56.326861],[-5.876489,56.325019],[-5.877598,56.324544],[-5.881918,56.323972],[-5.882992,56.32348],[-5.885764,56.323519],[-5.886679,56.322654],[-5.888958,56.321678],[-5.885199,56.3202],[-5.886099,56.319821],[-5.883732,56.318583],[-5.883744,56.317823],[-5.881791,56.317709],[-5.880136,56.316866],[-5.877705,56.317383],[-5.876602,56.31601],[-5.874554,56.315031],[-5.87071,56.314778],[-5.867855,56.314063],[-5.865119,56.314211],[-5.853976,56.312648],[-5.852191,56.312677],[-5.851278,56.31325],[-5.849763,56.312582],[-5.846358,56.312342],[-5.843752,56.31088],[-5.837243,56.311069],[-5.834124,56.31086],[-5.831893,56.311352],[-5.830943,56.312209],[-5.828426,56.313078],[-5.831193,56.315591],[-5.828456,56.316687],[-5.825372,56.316994],[-5.82381,56.317959],[-5.821494,56.317532],[-5.816995,56.318655],[-5.809991,56.319573],[-5.806838,56.320402],[-5.805567,56.32153],[-5.803523,56.322622],[-5.802507,56.322734],[-5.799448,56.324276],[-5.79625,56.32499],[-5.794996,56.325968],[-5.792218,56.326017],[-5.789941,56.326802],[-5.78755,56.326277],[-5.786794,56.328602],[-5.783757,56.329482],[-5.781537,56.329446],[-5.779659,56.32994],[-5.777895,56.331981],[-5.775301,56.333332],[-5.773988,56.332819],[-5.771916,56.333804],[-5.762412,56.336643],[-5.758492,56.338596],[-5.753741,56.339914],[-5.751729,56.339989],[-5.748885,56.340987],[-5.745803,56.34175],[-5.743526,56.343303],[-5.74337,56.34427],[-5.741109,56.346055],[-5.733941,56.348344],[-5.732041,56.349364],[-5.729955,56.352376],[-5.727882,56.353445],[-5.727672,56.354235],[-5.724886,56.354106],[-5.722412,56.354891],[-5.720073,56.355155],[-5.718865,56.355969],[-5.713952,56.358409],[-5.711428,56.360427],[-5.708021,56.360457],[-5.706025,56.361088],[-5.705004,56.362998],[-5.703756,56.36424],[-5.700034,56.366037],[-5.699417,56.367355],[-5.698086,56.367916],[-5.695787,56.370938],[-5.694517,56.373885],[-5.69491,56.375182],[-5.6931,56.376148],[-5.691274,56.37645],[-5.69039,56.377699],[-5.689844,56.379415],[-5.691266,56.382641],[-5.694039,56.383578],[-5.698495,56.38407],[-5.703995,56.383542],[-5.709219,56.383763],[-5.713524,56.38226],[-5.718673,56.382276],[-5.720922,56.382767],[-5.724011,56.382816],[-5.728693,56.382283],[-5.735905,56.380137],[-5.73762,56.378535],[-5.742123,56.377194],[-5.749776,56.372633],[-5.756201,56.370082],[-5.758602,56.370122],[-5.76307,56.369424],[-5.767417,56.369062],[-5.770067,56.367844],[-5.773128,56.366933],[-5.778508,56.365892],[-5.780704,56.366149],[-5.785638,56.365094],[-5.787642,56.365455],[-5.789137,56.365071],[-5.791873,56.365525],[-5.794118,56.366615],[-5.792399,56.367641],[-5.78907,56.36833],[-5.787958,56.369281],[-5.783213,56.369795],[-5.780382,56.370659],[-5.779006,56.371645],[-5.777221,56.372028],[-5.773759,56.373473],[-5.770959,56.374332],[-5.768176,56.374699],[-5.767946,56.376797],[-5.765716,56.37669],[-5.762698,56.379366],[-5.760273,56.380411],[-5.759569,56.38148],[-5.75814,56.381213],[-5.758167,56.385097],[-5.756137,56.388022],[-5.756669,56.38971],[-5.754334,56.391264],[-5.755443,56.392478],[-5.754348,56.39373],[-5.754515,56.394611],[-5.749777,56.392481],[-5.74842,56.392451],[-5.746215,56.39303],[-5.744949,56.391935],[-5.742173,56.391408],[-5.740415,56.393556],[-5.738661,56.393694],[-5.736825,56.394802],[-5.733934,56.395087],[-5.731768,56.39606],[-5.732274,56.397331],[-5.730437,56.399845],[-5.731879,56.401492],[-5.731887,56.403394],[-5.73398,56.404899],[-5.735796,56.406958],[-5.738756,56.407619],[-5.741108,56.407544],[-5.743659,56.40793],[-5.745459,56.408833],[-5.7452,56.41139],[-5.748194,56.413497],[-5.744925,56.412967],[-5.743029,56.41306],[-5.738429,56.411639],[-5.732372,56.413719],[-5.730507,56.413802],[-5.729715,56.411511],[-5.728239,56.41044],[-5.726693,56.409893],[-5.723977,56.409642],[-5.72257,56.410431],[-5.723595,56.41254],[-5.722444,56.413456],[-5.722317,56.414732],[-5.714912,56.414896],[-5.711925,56.413448],[-5.711135,56.413916],[-5.709476,56.413458],[-5.709543,56.412148],[-5.710654,56.410815],[-5.711767,56.410333],[-5.711563,56.409161],[-5.713134,56.408219],[-5.711242,56.407278],[-5.711192,56.406434],[-5.713144,56.405085],[-5.714889,56.404516],[-5.71727,56.404328],[-5.716545,56.401653],[-5.715223,56.400541],[-5.716462,56.399038],[-5.718115,56.399029],[-5.717369,56.39786],[-5.716413,56.397533],[-5.718772,56.395381],[-5.718222,56.393312],[-5.71692,56.392177],[-5.717517,56.390653],[-5.714808,56.390469],[-5.712989,56.388557],[-5.709261,56.387196],[-5.707344,56.38715],[-5.70474,56.387705],[-5.701373,56.387914],[-5.698362,56.387792],[-5.695992,56.388169],[-5.68997,56.386159],[-5.68751,56.386871],[-5.683319,56.386438],[-5.682024,56.385865],[-5.681864,56.385052],[-5.679034,56.38478],[-5.676686,56.385394],[-5.675422,56.386902],[-5.672586,56.387912],[-5.67051,56.388243],[-5.667648,56.389654],[-5.666793,56.390543],[-5.666478,56.391901],[-5.665326,56.39265],[-5.664426,56.394412],[-5.664219,56.396306],[-5.665827,56.397522],[-5.666031,56.398545],[-5.667284,56.399681],[-5.665956,56.40071],[-5.664022,56.401086],[-5.662582,56.400697],[-5.660924,56.404285],[-5.657951,56.407595],[-5.656444,56.408873],[-5.654574,56.412068],[-5.654402,56.413997],[-5.652624,56.415472],[-5.652948,56.417249],[-5.655976,56.416346],[-5.655599,56.417389],[-5.656964,56.418926],[-5.6583,56.41899],[-5.659809,56.417561],[-5.660859,56.418276],[-5.663532,56.41689],[-5.666307,56.417157],[-5.667378,56.418591],[-5.667085,56.422116],[-5.667677,56.423213],[-5.669086,56.423261],[-5.671345,56.42247],[-5.675264,56.419625],[-5.676159,56.420993],[-5.675193,56.422999],[-5.675525,56.426402],[-5.674622,56.42724],[-5.674585,56.428547],[-5.675874,56.432],[-5.677496,56.432658],[-5.678214,56.434752],[-5.681052,56.434533],[-5.68212,56.434794],[-5.68433,56.434194],[-5.685999,56.43477],[-5.68721,56.433333],[-5.687179,56.430876],[-5.686129,56.430126],[-5.687186,56.429292],[-5.687273,56.427816],[-5.688983,56.426094],[-5.691901,56.425099],[-5.693794,56.424824],[-5.694309,56.426592],[-5.695376,56.42739],[-5.693741,56.428007],[-5.69135,56.427994],[-5.690494,56.429174],[-5.68914,56.429815],[-5.690516,56.431458],[-5.687547,56.432763],[-5.688161,56.433735],[-5.68697,56.435423],[-5.68742,56.436214],[-5.685142,56.437833],[-5.684234,56.438893],[-5.682524,56.439458],[-5.681135,56.438692],[-5.680226,56.43941],[-5.680901,56.440397],[-5.679457,56.440987],[-5.676877,56.439906],[-5.676635,56.438624],[-5.677262,56.437196],[-5.676304,56.436401],[-5.672793,56.4352],[-5.672279,56.434542],[-5.669498,56.434519],[-5.66772,56.434917],[-5.665236,56.433656],[-5.664106,56.432591],[-5.663971,56.431558],[-5.665165,56.430244],[-5.667573,56.430221],[-5.670438,56.428736],[-5.668198,56.427774],[-5.665095,56.42706],[-5.662571,56.427586],[-5.660186,56.427502],[-5.658399,56.426252],[-5.657607,56.424949],[-5.6548,56.423594],[-5.654208,56.424613],[-5.652006,56.426095],[-5.651646,56.429463],[-5.650905,56.431362],[-5.648747,56.43034],[-5.64781,56.431743],[-5.648258,56.43641],[-5.647773,56.436856],[-5.648465,56.438903],[-5.647116,56.438637],[-5.646282,56.440429],[-5.646905,56.442186],[-5.646433,56.444209],[-5.646891,56.445171],[-5.645867,56.447188],[-5.646988,56.450496],[-5.64839,56.45268],[-5.650136,56.453945],[-5.650371,56.454703],[-5.652372,56.456689],[-5.654376,56.457311],[-5.657308,56.457375],[-5.657636,56.456091],[-5.65943,56.455445],[-5.658453,56.453349],[-5.658806,56.452546],[-5.657791,56.451221],[-5.658188,56.449432],[-5.66156,56.448185],[-5.664061,56.44838],[-5.666734,56.4499],[-5.670389,56.450103],[-5.670813,56.451086],[-5.675661,56.451303],[-5.675591,56.452562],[-5.674509,56.454048],[-5.676663,56.453656],[-5.677084,56.452722],[-5.679663,56.452407],[-5.680942,56.451496],[-5.68336,56.451839],[-5.684576,56.452454],[-5.684064,56.454133],[-5.683126,56.454664],[-5.683127,56.455766],[-5.682274,56.456515],[-5.679922,56.456711],[-5.680095,56.457825],[-5.678119,56.459142],[-5.678315,56.460741],[-5.681259,56.460456],[-5.683224,56.460964],[-5.683667,56.462007],[-5.687233,56.464553],[-5.690299,56.466354],[-5.692181,56.468418],[-5.694522,56.469324],[-5.696083,56.470692],[-5.697229,56.470541],[-5.700975,56.46845],[-5.701984,56.46911],[-5.705221,56.470232],[-5.713269,56.474752],[-5.712714,56.476602],[-5.712076,56.477238],[-5.710011,56.476599],[-5.709514,56.478001],[-5.712387,56.480117],[-5.713931,56.482112],[-5.720273,56.486063],[-5.722484,56.485701],[-5.722456,56.484542],[-5.724555,56.48513],[-5.727507,56.485441],[-5.729251,56.48432],[-5.729114,56.482809],[-5.733005,56.482884],[-5.738968,56.481951],[-5.741528,56.481905],[-5.74344,56.482935],[-5.745072,56.483029],[-5.74798,56.484104],[-5.750698,56.486203],[-5.756087,56.487258],[-5.758587,56.487317],[-5.761388,56.488679],[-5.764394,56.488673],[-5.768436,56.489284],[-5.76691,56.490279],[-5.76871,56.490975],[-5.770097,56.492915],[-5.771736,56.493706],[-5.771304,56.49475],[-5.774347,56.495916],[-5.775406,56.495679],[-5.774136,56.498188],[-5.775759,56.499276],[-5.773797,56.499456],[-5.777465,56.500971],[-5.777407,56.501341],[-5.780216,56.502171],[-5.780371,56.503864],[-5.781886,56.504946],[-5.787365,56.505835],[-5.788665,56.506807],[-5.789219,56.508364],[-5.791666,56.509579],[-5.793167,56.510693],[-5.794466,56.512376],[-5.794706,56.514288],[-5.796869,56.515094],[-5.800169,56.515735],[-5.801631,56.515227],[-5.804385,56.51512],[-5.804486,56.513773],[-5.806356,56.514745],[-5.807717,56.514451],[-5.809886,56.514834],[-5.814663,56.514296],[-5.822203,56.517225],[-5.823619,56.517226],[-5.825803,56.516062],[-5.824856,56.513124],[-5.825462,56.510402],[-5.824583,56.506921],[-5.82788,56.506899],[-5.82932,56.50746],[-5.833088,56.507622],[-5.838239,56.509172],[-5.837905,56.510369],[-5.840597,56.513586],[-5.847004,56.516706],[-5.848634,56.518827],[-5.850242,56.519858],[-5.854839,56.520653],[-5.857499,56.520826],[-5.85925,56.520529],[-5.862394,56.520885],[-5.863744,56.521603],[-5.870104,56.520321],[-5.873912,56.520495],[-5.874972,56.520129],[-5.877547,56.52057],[-5.881052,56.520645],[-5.882317,56.521086],[-5.886199,56.521347],[-5.887896,56.521078],[-5.894598,56.521151],[-5.896455,56.520859],[-5.89962,56.521668],[-5.903217,56.520894],[-5.903427,56.520088],[-5.90636,56.520581],[-5.915165,56.51733],[-5.920252,56.516454],[-5.924441,56.51809],[-5.923354,56.518595],[-5.927462,56.519616],[-5.928216,56.519129],[-5.931667,56.519384],[-5.931589,56.519966],[-5.932972,56.521064],[-5.93355,56.522327],[-5.935012,56.522614],[-5.936693,56.524033],[-5.939378,56.524831],[-5.941424,56.524576],[-5.941029,56.522752],[-5.943152,56.522225],[-5.942767,56.521315],[-5.946715,56.520829],[-5.947197,56.520195],[-5.949347,56.52007],[-5.948116,56.519117],[-5.949551,56.517852],[-5.952011,56.51894],[-5.954076,56.521097],[-5.957032,56.522979],[-5.95836,56.524372],[-5.958664,56.526478],[-5.960057,56.5268],[-5.961266,56.528186],[-5.963821,56.529984],[-5.969716,56.530294],[-5.97202,56.531421],[-5.969964,56.532233],[-5.964432,56.532893],[-5.964637,56.535807],[-5.96507,56.537501],[-5.963326,56.537567],[-5.962573,56.538147],[-5.96325,56.538987],[-5.965161,56.539595],[-5.964975,56.54079],[-5.966207,56.541786],[-5.965964,56.542463],[-5.968015,56.543769],[-5.967159,56.544687],[-5.970116,56.545959],[-5.971733,56.54709],[-5.971379,56.547519],[-5.972697,56.549995],[-5.970907,56.552718],[-5.971937,56.555091],[-5.974196,56.556803],[-5.973149,56.557791],[-5.974762,56.55903],[-5.976207,56.559387],[-5.977532,56.560836],[-5.978914,56.561189],[-5.97865,56.559481],[-5.980668,56.559538],[-5.980206,56.56059],[-5.981308,56.561256],[-5.983198,56.561181],[-5.983341,56.563055],[-5.984644,56.564804],[-5.987441,56.565748],[-5.987341,56.568299],[-5.986716,56.5689],[-5.987115,56.57029],[-5.988284,56.571286],[-5.985939,56.572345],[-5.983941,56.572773],[-5.986426,56.574253],[-5.987881,56.575595],[-5.987194,56.575984],[-5.988235,56.577205],[-5.987777,56.578161],[-5.989372,56.579688],[-5.990994,56.580166],[-5.992273,56.579621],[-5.994504,56.579374],[-5.998429,56.581132],[-6.000516,56.580763],[-6.000274,56.581783],[-6.002019,56.582954],[-6.006362,56.584653],[-6.00964,56.586444],[-6.010399,56.587297],[-6.01223,56.58797],[-6.013572,56.589092],[-6.016131,56.592552],[-6.017906,56.596599],[-6.017955,56.597744],[-6.023771,56.60185],[-6.024688,56.604185],[-6.026961,56.605624],[-6.032507,56.61024],[-6.03693,56.610996],[-6.040366,56.61261],[-6.043162,56.613138],[-6.044606,56.61387],[-6.045492,56.615098],[-6.046862,56.615503],[-6.049019,56.615258],[-6.050516,56.614438],[-6.049685,56.612739],[-6.051706,56.611783],[-6.054947,56.613195],[-6.059912,56.615016],[-6.062103,56.617613],[-6.063538,56.617898],[-6.066709,56.619275],[-6.067861,56.620801],[-6.069714,56.621467],[-6.067405,56.623093],[-6.064101,56.622878],[-6.062768,56.623519],[-6.06234,56.625529],[-6.059029,56.626673],[-6.058252,56.628081],[-6.06017,56.634554],[-6.064352,56.636993],[-6.067907,56.638196],[-6.069802,56.638094],[-6.07923,56.639087],[-6.085516,56.638512],[-6.091722,56.64074],[-6.092951,56.640704],[-6.097164,56.642157],[-6.102333,56.643012],[-6.102551,56.642469],[-6.112631,56.643899],[-6.114459,56.644571],[-6.117169,56.646599],[-6.117574,56.648515],[-6.116626,56.650974],[-6.117238,56.653058],[-6.12077,56.65438],[-6.123135,56.65503]]],[[[-6.469475,56.691584],[-6.469873,56.690873],[-6.472863,56.69045],[-6.47433,56.689251],[-6.472642,56.688043],[-6.473379,56.686829],[-6.476602,56.687739],[-6.478203,56.689107],[-6.480853,56.68755],[-6.483305,56.687484],[-6.485011,56.687049],[-6.487292,56.688023],[-6.487833,56.689272],[-6.493215,56.689447],[-6.494872,56.687786],[-6.495078,56.686159],[-6.497138,56.685617],[-6.494406,56.684564],[-6.495454,56.683492],[-6.49775,56.685406],[-6.498943,56.684441],[-6.502298,56.685574],[-6.503502,56.684919],[-6.500942,56.683393],[-6.503473,56.683512],[-6.504264,56.683092],[-6.503856,56.681726],[-6.506157,56.681427],[-6.506597,56.682509],[-6.508631,56.68216],[-6.508561,56.679803],[-6.5102,56.680188],[-6.513945,56.679328],[-6.513871,56.680072],[-6.515384,56.680903],[-6.515896,56.679787],[-6.517626,56.679841],[-6.515866,56.678191],[-6.51813,56.677772],[-6.516886,56.675304],[-6.518971,56.676204],[-6.521168,56.675656],[-6.523331,56.676113],[-6.524173,56.677067],[-6.528064,56.676547],[-6.527787,56.675195],[-6.531838,56.676135],[-6.534106,56.674272],[-6.532315,56.673779],[-6.53237,56.672266],[-6.533428,56.671285],[-6.534835,56.671506],[-6.536582,56.670619],[-6.537796,56.668416],[-6.539645,56.668511],[-6.541583,56.667653],[-6.542525,56.666588],[-6.544926,56.666586],[-6.545355,56.664857],[-6.544869,56.664218],[-6.545594,56.663184],[-6.547765,56.661616],[-6.547947,56.660283],[-6.549915,56.659394],[-6.552059,56.659237],[-6.55507,56.66111],[-6.556324,56.660601],[-6.556414,56.659594],[-6.558711,56.659002],[-6.56062,56.659121],[-6.562136,56.657954],[-6.565676,56.658593],[-6.567154,56.655022],[-6.569018,56.652142],[-6.569299,56.651021],[-6.571228,56.64943],[-6.572163,56.649665],[-6.574817,56.649334],[-6.577469,56.650064],[-6.57941,56.649911],[-6.58023,56.65074],[-6.584874,56.650128],[-6.585078,56.649189],[-6.582669,56.646143],[-6.584042,56.645397],[-6.587001,56.645058],[-6.588604,56.645793],[-6.589724,56.645157],[-6.591794,56.644922],[-6.594182,56.645161],[-6.59603,56.643533],[-6.596541,56.642175],[-6.598184,56.641189],[-6.598203,56.640179],[-6.599698,56.638118],[-6.600979,56.637921],[-6.603344,56.638772],[-6.604711,56.638739],[-6.606273,56.638034],[-6.607881,56.638096],[-6.611234,56.637418],[-6.612239,56.637763],[-6.613513,56.635363],[-6.615974,56.633734],[-6.615731,56.633279],[-6.617505,56.631644],[-6.617495,56.630889],[-6.616035,56.630232],[-6.615966,56.62893],[-6.614563,56.6286],[-6.615197,56.627448],[-6.614042,56.626083],[-6.615893,56.623604],[-6.619321,56.62074],[-6.622516,56.619344],[-6.62917,56.620176],[-6.629433,56.618864],[-6.630871,56.618031],[-6.634032,56.618039],[-6.634986,56.6175],[-6.63713,56.617955],[-6.634792,56.615698],[-6.636739,56.6155],[-6.637076,56.61466],[-6.639272,56.614672],[-6.638951,56.613587],[-6.64077,56.611198],[-6.640957,56.609864],[-6.642483,56.609016],[-6.64361,56.607629],[-6.642472,56.606601],[-6.645072,56.603013],[-6.643893,56.602514],[-6.646003,56.600585],[-6.648705,56.600794],[-6.649093,56.601648],[-6.65234,56.6019],[-6.655031,56.60032],[-6.655871,56.600909],[-6.658511,56.600567],[-6.657288,56.598719],[-6.655837,56.597528],[-6.657223,56.597062],[-6.654532,56.594708],[-6.65539,56.593521],[-6.659275,56.592047],[-6.66405,56.591001],[-6.667881,56.590557],[-6.671244,56.590674],[-6.675861,56.591494],[-6.676143,56.592428],[-6.675744,56.594004],[-6.676986,56.595019],[-6.678794,56.595333],[-6.68034,56.594123],[-6.683246,56.59356],[-6.683379,56.591416],[-6.685597,56.59103],[-6.685386,56.590222],[-6.686215,56.589301],[-6.688923,56.588195],[-6.688754,56.587428],[-6.690223,56.587112],[-6.691159,56.585722],[-6.693074,56.584544],[-6.695228,56.582062],[-6.698547,56.581733],[-6.702006,56.582507],[-6.703535,56.582508],[-6.704255,56.581574],[-6.709746,56.579401],[-6.710262,56.57746],[-6.709752,56.576499],[-6.710144,56.575135],[-6.707484,56.574714],[-6.705227,56.575614],[-6.702404,56.574692],[-6.700251,56.573582],[-6.699197,56.57018],[-6.697166,56.568794],[-6.697096,56.567381],[-6.695949,56.566101],[-6.696454,56.564984],[-6.69564,56.563813],[-6.693261,56.563487],[-6.692103,56.562683],[-6.690307,56.563147],[-6.688393,56.562969],[-6.688175,56.564079],[-6.686229,56.564699],[-6.686021,56.566012],[-6.683847,56.565264],[-6.682241,56.565252],[-6.68247,56.566756],[-6.683679,56.567343],[-6.680524,56.570737],[-6.680217,56.57293],[-6.680354,56.574558],[-6.681774,56.575363],[-6.680669,56.575922],[-6.680605,56.577571],[-6.679844,56.578072],[-6.678465,56.581433],[-6.675651,56.581167],[-6.673825,56.582416],[-6.670984,56.583325],[-6.667412,56.583541],[-6.666531,56.584087],[-6.659166,56.584551],[-6.654258,56.584231],[-6.647576,56.582938],[-6.644661,56.58137],[-6.644673,56.580098],[-6.645652,56.579023],[-6.644232,56.578666],[-6.643857,56.577894],[-6.644458,56.576853],[-6.645636,56.576878],[-6.647946,56.57574],[-6.646742,56.575029],[-6.647212,56.573482],[-6.644796,56.573577],[-6.644001,56.572482],[-6.641107,56.573206],[-6.639671,56.572792],[-6.637212,56.573969],[-6.637073,56.574997],[-6.636006,56.576162],[-6.634649,56.576835],[-6.63507,56.578737],[-6.633206,56.578646],[-6.631079,56.577851],[-6.631048,56.584099],[-6.629761,56.584703],[-6.628786,56.587262],[-6.629085,56.588196],[-6.628897,56.590376],[-6.627066,56.590729],[-6.625689,56.592272],[-6.624089,56.592406],[-6.623036,56.591732],[-6.623229,56.590151],[-6.62218,56.588801],[-6.618891,56.58824],[-6.618884,56.58658],[-6.617751,56.585439],[-6.619726,56.584795],[-6.619084,56.583744],[-6.619319,56.582293],[-6.620645,56.581581],[-6.619872,56.580058],[-6.620493,56.578739],[-6.618306,56.577714],[-6.617499,56.578509],[-6.61612,56.578763],[-6.615804,56.58053],[-6.614236,56.579683],[-6.612454,56.580977],[-6.611336,56.578154],[-6.612031,56.577177],[-6.610922,56.575295],[-6.609941,56.575939],[-6.610041,56.577293],[-6.609334,56.578646],[-6.610416,56.579236],[-6.608213,56.581018],[-6.607846,56.581818],[-6.606196,56.581655],[-6.60393,56.583317],[-6.603936,56.584905],[-6.60257,56.587681],[-6.601064,56.588097],[-6.599741,56.586801],[-6.60081,56.584737],[-6.600273,56.583138],[-6.598448,56.583008],[-6.597427,56.584867],[-6.595095,56.583654],[-6.594365,56.584153],[-6.594549,56.585932],[-6.591603,56.585699],[-6.590385,56.586945],[-6.588639,56.585723],[-6.586224,56.587045],[-6.58636,56.588304],[-6.58536,56.589335],[-6.580254,56.591855],[-6.580366,56.590428],[-6.582409,56.589327],[-6.582722,56.588411],[-6.579794,56.588721],[-6.577008,56.587225],[-6.574035,56.58731],[-6.572932,56.587711],[-6.571089,56.587433],[-6.569243,56.587681],[-6.566798,56.587127],[-6.565818,56.588017],[-6.566505,56.589884],[-6.565869,56.59097],[-6.5669,56.593218],[-6.565548,56.594673],[-6.564138,56.594264],[-6.563186,56.595337],[-6.560456,56.596956],[-6.55985,56.59618],[-6.55788,56.595933],[-6.558681,56.594874],[-6.558603,56.593212],[-6.556904,56.593252],[-6.555149,56.595125],[-6.553732,56.595541],[-6.551548,56.594258],[-6.550058,56.594749],[-6.548011,56.597181],[-6.548035,56.598943],[-6.54634,56.600098],[-6.547053,56.601142],[-6.546555,56.602222],[-6.541635,56.602263],[-6.542647,56.603557],[-6.544003,56.60381],[-6.544933,56.604665],[-6.543628,56.605684],[-6.540828,56.603349],[-6.540257,56.604841],[-6.537769,56.605381],[-6.537184,56.60682],[-6.534935,56.605067],[-6.532946,56.605139],[-6.531452,56.608054],[-6.532668,56.609624],[-6.532624,56.610678],[-6.531024,56.610399],[-6.52966,56.6112],[-6.528678,56.61022],[-6.527831,56.612265],[-6.525211,56.611165],[-6.523066,56.615149],[-6.523401,56.617031],[-6.522747,56.61798],[-6.52351,56.620311],[-6.523103,56.621339],[-6.526278,56.623511],[-6.525231,56.624612],[-6.525561,56.62813],[-6.529752,56.63426],[-6.5268,56.632712],[-6.526911,56.63131],[-6.525541,56.630679],[-6.524096,56.628768],[-6.521731,56.627569],[-6.52039,56.625934],[-6.520466,56.625125],[-6.518584,56.623371],[-6.515129,56.622537],[-6.515453,56.621356],[-6.51366,56.620216],[-6.511942,56.6199],[-6.511515,56.61872],[-6.510498,56.618532],[-6.508655,56.617038],[-6.506502,56.616424],[-6.50293,56.619136],[-6.503984,56.62041],[-6.50184,56.620218],[-6.499512,56.621624],[-6.49767,56.623336],[-6.497598,56.624122],[-6.50001,56.625397],[-6.496865,56.62687],[-6.495854,56.626672],[-6.493038,56.62762],[-6.493097,56.629754],[-6.490541,56.63111],[-6.49118,56.63298],[-6.487526,56.634574],[-6.486371,56.637215],[-6.487408,56.63859],[-6.484667,56.638738],[-6.484329,56.639672],[-6.485042,56.64114],[-6.481936,56.640964],[-6.480129,56.642311],[-6.480436,56.644346],[-6.479053,56.644517],[-6.477511,56.64674],[-6.47531,56.647445],[-6.476084,56.649562],[-6.474253,56.648994],[-6.473976,56.650443],[-6.473019,56.650703],[-6.471959,56.652297],[-6.469818,56.65214],[-6.469549,56.653108],[-6.466854,56.654752],[-6.468496,56.65655],[-6.46669,56.656885],[-6.466613,56.658097],[-6.465196,56.659853],[-6.465043,56.662194],[-6.463807,56.661364],[-6.462639,56.662742],[-6.463325,56.66336],[-6.462041,56.665273],[-6.459303,56.665668],[-6.458986,56.666651],[-6.457482,56.667671],[-6.456794,56.669755],[-6.457591,56.670532],[-6.45529,56.671105],[-6.454834,56.67347],[-6.455692,56.673739],[-6.455876,56.675226],[-6.454388,56.675081],[-6.452756,56.675783],[-6.454558,56.677346],[-6.454387,56.678108],[-6.455528,56.678845],[-6.45454,56.679681],[-6.456105,56.680614],[-6.456011,56.681316],[-6.453629,56.681373],[-6.453204,56.680543],[-6.451005,56.681503],[-6.451584,56.682665],[-6.450959,56.683456],[-6.453043,56.683944],[-6.451353,56.684998],[-6.453776,56.686755],[-6.453415,56.68778],[-6.458228,56.687644],[-6.458754,56.688628],[-6.460886,56.690215],[-6.461665,56.689198],[-6.463163,56.688807],[-6.464578,56.690128],[-6.466426,56.6911],[-6.469475,56.691584]]],[[[-6.443321,56.698845],[-6.446342,56.698953],[-6.447861,56.697904],[-6.449005,56.696451],[-6.449223,56.695184],[-6.446974,56.694963],[-6.446423,56.694452],[-6.443624,56.694625],[-6.442062,56.69656],[-6.441994,56.697228],[-6.443321,56.698845]]],[[[-6.451364,56.703675],[-6.45238,56.702384],[-6.4499,56.702018],[-6.451364,56.703675]]]]},"properties":{"LAD22CD":"S12000035","LAD22NM":"Argyll and Bute","BNG_E":200740,"BNG_N":715443,"LONG":-5.22114,"LAT":56.28944,"GlobalID":"7c317261-31fa-41c9-82c9-0f25134df65c"},"id":341}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.171741,55.987503],[-3.170846,55.987006],[-3.164344,55.984642],[-3.162244,55.984976],[-3.167666,55.986278],[-3.170334,55.987326],[-3.171741,55.987503]]],[[[-3.289492,55.991514],[-3.287535,55.992587],[-3.287593,55.994908],[-3.290123,55.995445],[-3.291868,55.994868],[-3.291379,55.993926],[-3.292586,55.993085],[-3.290963,55.990802],[-3.289492,55.991514]]],[[[-3.077849,55.946575],[-3.081578,55.948161],[-3.089388,55.949068],[-3.090452,55.948838],[-3.093708,55.948957],[-3.096067,55.949568],[-3.110645,55.955305],[-3.11366,55.956785],[-3.116321,55.956912],[-3.11854,55.958472],[-3.135141,55.967844],[-3.137823,55.968615],[-3.136972,55.969869],[-3.141158,55.972538],[-3.151013,55.976058],[-3.15555,55.979093],[-3.157195,55.981917],[-3.160454,55.982981],[-3.162395,55.98402],[-3.164177,55.984232],[-3.179577,55.989588],[-3.181137,55.988726],[-3.180812,55.988223],[-3.184592,55.988115],[-3.185486,55.988781],[-3.195671,55.98486],[-3.196358,55.983931],[-3.195427,55.981062],[-3.196967,55.980712],[-3.202345,55.980042],[-3.213658,55.980777],[-3.21689,55.980271],[-3.218784,55.980302],[-3.22201,55.980819],[-3.22322,55.981588],[-3.223008,55.983468],[-3.22336,55.984658],[-3.22625,55.985162],[-3.22612,55.985996],[-3.227831,55.987112],[-3.230105,55.987062],[-3.233869,55.983689],[-3.237749,55.984109],[-3.239568,55.983223],[-3.241303,55.983522],[-3.250084,55.983863],[-3.259652,55.980853],[-3.25999,55.980139],[-3.263176,55.979135],[-3.26745,55.979898],[-3.269373,55.979752],[-3.276333,55.980269],[-3.279998,55.979802],[-3.283995,55.980003],[-3.289254,55.979039],[-3.291686,55.979182],[-3.294921,55.979859],[-3.298938,55.981282],[-3.301769,55.979574],[-3.304268,55.981305],[-3.308628,55.983054],[-3.312182,55.982971],[-3.315177,55.984134],[-3.31759,55.982973],[-3.325336,55.985998],[-3.330224,55.988161],[-3.332529,55.989667],[-3.333858,55.992658],[-3.337029,55.993577],[-3.343003,55.996988],[-3.345129,55.997309],[-3.351967,56.001582],[-3.355744,56.000013],[-3.359078,56.000222],[-3.361482,55.999577],[-3.365921,55.998725],[-3.366955,55.99799],[-3.367075,55.996846],[-3.368472,55.995296],[-3.372135,55.993875],[-3.376761,55.991457],[-3.379864,55.991344],[-3.382189,55.990589],[-3.383172,55.990959],[-3.389672,55.989723],[-3.392757,55.990072],[-3.394482,55.989887],[-3.39655,55.990589],[-3.397008,55.991325],[-3.398812,55.991756],[-3.400088,55.991419],[-3.403325,55.992482],[-3.403905,55.993207],[-3.409626,55.993454],[-3.410265,55.992412],[-3.413541,55.992385],[-3.417294,55.993487],[-3.421201,55.993495],[-3.423975,55.994063],[-3.425436,55.993795],[-3.425495,55.99112],[-3.42756,55.989629],[-3.430532,55.989665],[-3.431953,55.989222],[-3.431727,55.988277],[-3.430598,55.987251],[-3.429883,55.984909],[-3.430212,55.983438],[-3.429703,55.981812],[-3.432361,55.98144],[-3.435337,55.98044],[-3.43686,55.979029],[-3.441935,55.977799],[-3.446706,55.977834],[-3.448267,55.977575],[-3.445602,55.973045],[-3.444076,55.972987],[-3.444856,55.96988],[-3.442104,55.969135],[-3.442565,55.968336],[-3.441937,55.967488],[-3.443374,55.961485],[-3.441811,55.96115],[-3.437618,55.961042],[-3.42595,55.959326],[-3.425963,55.956027],[-3.424914,55.953755],[-3.429,55.953327],[-3.428453,55.95209],[-3.43468,55.950939],[-3.439669,55.951279],[-3.449529,55.950936],[-3.446544,55.948098],[-3.442625,55.94318],[-3.437543,55.939526],[-3.432903,55.937393],[-3.428246,55.935825],[-3.424198,55.934826],[-3.418078,55.933869],[-3.421288,55.931646],[-3.42538,55.932473],[-3.4293,55.932392],[-3.431376,55.931814],[-3.428887,55.930066],[-3.429049,55.928424],[-3.427796,55.926221],[-3.428104,55.925455],[-3.430021,55.924175],[-3.431717,55.922264],[-3.433629,55.921281],[-3.434327,55.919756],[-3.433524,55.916949],[-3.435953,55.915868],[-3.436857,55.914555],[-3.436923,55.913179],[-3.437749,55.912799],[-3.442237,55.91285],[-3.441643,55.909973],[-3.444197,55.907742],[-3.442604,55.906423],[-3.44312,55.905629],[-3.442152,55.904718],[-3.440482,55.905182],[-3.433929,55.90572],[-3.432013,55.904376],[-3.426037,55.903302],[-3.421444,55.901788],[-3.407302,55.903038],[-3.40257,55.902703],[-3.397836,55.903324],[-3.389962,55.902668],[-3.387709,55.902854],[-3.39106,55.900822],[-3.390484,55.898936],[-3.3881,55.898987],[-3.386803,55.897791],[-3.387313,55.895662],[-3.388687,55.895038],[-3.38887,55.894043],[-3.390642,55.891938],[-3.398393,55.888304],[-3.402499,55.887748],[-3.40345,55.887293],[-3.403561,55.885545],[-3.402265,55.884228],[-3.400847,55.883943],[-3.401348,55.881807],[-3.402033,55.881321],[-3.404701,55.880743],[-3.405492,55.879696],[-3.412062,55.879122],[-3.413813,55.878354],[-3.405226,55.870022],[-3.403155,55.870154],[-3.399598,55.870974],[-3.39659,55.868732],[-3.400058,55.868804],[-3.401844,55.867542],[-3.403232,55.867031],[-3.404278,55.865589],[-3.405645,55.865044],[-3.408809,55.865488],[-3.410629,55.864674],[-3.410649,55.863698],[-3.412378,55.862106],[-3.413623,55.861669],[-3.414072,55.860634],[-3.416841,55.860353],[-3.416495,55.859196],[-3.417728,55.858393],[-3.415832,55.857739],[-3.415112,55.856574],[-3.412836,55.856021],[-3.413508,55.854191],[-3.41621,55.854383],[-3.41665,55.853452],[-3.41471,55.851332],[-3.415585,55.850124],[-3.418841,55.848123],[-3.419212,55.8462],[-3.418098,55.845786],[-3.415782,55.843497],[-3.413359,55.8432],[-3.411367,55.842567],[-3.40891,55.841288],[-3.408763,55.840755],[-3.410921,55.83972],[-3.409903,55.839174],[-3.409326,55.838008],[-3.407148,55.837179],[-3.405726,55.83561],[-3.404065,55.834492],[-3.399894,55.833043],[-3.397811,55.832842],[-3.395975,55.831736],[-3.39085,55.825018],[-3.390813,55.823972],[-3.392782,55.821245],[-3.394763,55.81974],[-3.391242,55.818791],[-3.386395,55.820059],[-3.379268,55.820485],[-3.378584,55.820318],[-3.373172,55.821641],[-3.372106,55.822646],[-3.369037,55.824109],[-3.367592,55.824116],[-3.361495,55.825738],[-3.360012,55.825754],[-3.356002,55.82477],[-3.350673,55.827133],[-3.349789,55.828347],[-3.349559,55.830218],[-3.346481,55.831923],[-3.328166,55.844144],[-3.2957,55.866134],[-3.29317,55.866885],[-3.291751,55.866977],[-3.288597,55.865692],[-3.284029,55.865889],[-3.274075,55.871219],[-3.269164,55.875773],[-3.265089,55.876072],[-3.260779,55.87257],[-3.255294,55.870171],[-3.254904,55.869183],[-3.253186,55.86978],[-3.250921,55.87147],[-3.249446,55.873204],[-3.249022,55.875475],[-3.244167,55.877208],[-3.242073,55.877199],[-3.239752,55.878036],[-3.23982,55.880482],[-3.238412,55.88274],[-3.237201,55.882481],[-3.234351,55.882994],[-3.232157,55.883972],[-3.229607,55.883402],[-3.227886,55.883856],[-3.224574,55.88235],[-3.221332,55.883002],[-3.219451,55.882251],[-3.21174,55.881977],[-3.209088,55.883253],[-3.213449,55.884481],[-3.213948,55.88644],[-3.21103,55.888119],[-3.206935,55.889656],[-3.200743,55.89039],[-3.201911,55.894392],[-3.201545,55.894821],[-3.19094,55.892647],[-3.177884,55.891289],[-3.161738,55.889459],[-3.147755,55.889802],[-3.140552,55.890765],[-3.13277,55.892456],[-3.132994,55.892853],[-3.125077,55.895654],[-3.117716,55.897695],[-3.110503,55.89889],[-3.097275,55.899311],[-3.092675,55.899802],[-3.092159,55.900216],[-3.09524,55.90156],[-3.098136,55.904042],[-3.10492,55.90688],[-3.106415,55.908196],[-3.11273,55.912102],[-3.114601,55.912973],[-3.117643,55.913069],[-3.113702,55.921997],[-3.112994,55.926397],[-3.111672,55.92969],[-3.10977,55.929611],[-3.105338,55.930055],[-3.099222,55.931307],[-3.092188,55.932019],[-3.088577,55.931385],[-3.089284,55.931829],[-3.079625,55.934082],[-3.081441,55.936299],[-3.080813,55.936836],[-3.083979,55.938623],[-3.082147,55.939643],[-3.081475,55.941464],[-3.082214,55.942555],[-3.081916,55.943822],[-3.082395,55.944735],[-3.07929,55.945086],[-3.077849,55.946575]]]]},"properties":{"LAD22CD":"S12000036","LAD22NM":"City of Edinburgh","BNG_E":320193,"BNG_N":669417,"LONG":-3.27826,"LAT":55.9112,"GlobalID":"4b97a79a-be39-454d-8561-416ee8391017"},"id":342}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.354406,55.872931],[-4.356596,55.874344],[-4.363534,55.877152],[-4.364712,55.877362],[-4.370671,55.880018],[-4.371372,55.880706],[-4.381673,55.885163],[-4.383639,55.886251],[-4.387397,55.887105],[-4.403635,55.891306],[-4.404845,55.890601],[-4.406463,55.887267],[-4.405387,55.883008],[-4.40871,55.880239],[-4.409013,55.879327],[-4.4092,55.875122],[-4.408528,55.874842],[-4.410787,55.872509],[-4.414241,55.870637],[-4.414974,55.871091],[-4.417118,55.870307],[-4.420258,55.867446],[-4.422502,55.86235],[-4.422698,55.860956],[-4.422037,55.857726],[-4.424008,55.856778],[-4.422935,55.859097],[-4.423734,55.861757],[-4.422904,55.86424],[-4.421695,55.865748],[-4.421606,55.867327],[-4.41772,55.870785],[-4.412955,55.872177],[-4.411195,55.873161],[-4.410061,55.875314],[-4.410028,55.877723],[-4.410457,55.878249],[-4.409485,55.88002],[-4.407252,55.882489],[-4.411431,55.880469],[-4.414201,55.880437],[-4.417619,55.881893],[-4.419095,55.882175],[-4.423785,55.880554],[-4.436074,55.878803],[-4.437857,55.878975],[-4.440214,55.878147],[-4.440662,55.876927],[-4.443908,55.874646],[-4.449988,55.874591],[-4.452782,55.874834],[-4.455722,55.872715],[-4.46119,55.870675],[-4.463849,55.871518],[-4.467955,55.875286],[-4.467526,55.875352],[-4.463766,55.871853],[-4.461342,55.871136],[-4.455587,55.873204],[-4.453378,55.875221],[-4.445684,55.874919],[-4.44379,55.875213],[-4.441101,55.878363],[-4.439087,55.879264],[-4.435749,55.879327],[-4.431919,55.880406],[-4.429257,55.880423],[-4.424514,55.88096],[-4.420699,55.88264],[-4.419289,55.88275],[-4.417112,55.882321],[-4.414313,55.881304],[-4.412158,55.881182],[-4.407958,55.883336],[-4.407281,55.884169],[-4.408282,55.887197],[-4.406651,55.89081],[-4.406907,55.89216],[-4.417555,55.900343],[-4.421389,55.901947],[-4.424823,55.902911],[-4.428647,55.903614],[-4.434536,55.904196],[-4.434124,55.903646],[-4.431702,55.902602],[-4.430004,55.902203],[-4.42293,55.900018],[-4.425673,55.898411],[-4.426239,55.898441],[-4.436638,55.902484],[-4.437154,55.902928],[-4.440141,55.903724],[-4.441264,55.905192],[-4.447945,55.907365],[-4.447678,55.90786],[-4.455667,55.913844],[-4.459036,55.914644],[-4.460639,55.915766],[-4.46158,55.917372],[-4.463173,55.917889],[-4.463613,55.918844],[-4.466192,55.920544],[-4.470704,55.921947],[-4.472096,55.92308],[-4.473908,55.922939],[-4.476572,55.924078],[-4.486361,55.925765],[-4.487067,55.926431],[-4.490731,55.926481],[-4.492836,55.926113],[-4.4954,55.924585],[-4.498706,55.92446],[-4.502272,55.922816],[-4.504715,55.922479],[-4.505323,55.922946],[-4.509344,55.923195],[-4.513344,55.925361],[-4.516107,55.925558],[-4.520705,55.924651],[-4.523033,55.923775],[-4.53092,55.922668],[-4.539434,55.923187],[-4.543706,55.924076],[-4.549636,55.923848],[-4.555155,55.92414],[-4.556711,55.924497],[-4.560085,55.923895],[-4.563411,55.924197],[-4.565972,55.923446],[-4.571885,55.923175],[-4.58281,55.924636],[-4.592118,55.927248],[-4.596649,55.927759],[-4.601326,55.927492],[-4.605136,55.92826],[-4.609835,55.929944],[-4.614311,55.930218],[-4.617356,55.92866],[-4.618176,55.925931],[-4.617409,55.924181],[-4.618118,55.92318],[-4.620123,55.921766],[-4.623133,55.921441],[-4.623712,55.920222],[-4.622812,55.919651],[-4.623753,55.918398],[-4.624942,55.918087],[-4.627965,55.916259],[-4.629555,55.916409],[-4.631869,55.915489],[-4.633755,55.913953],[-4.634092,55.913076],[-4.632787,55.909552],[-4.630765,55.907432],[-4.628323,55.907384],[-4.627832,55.906462],[-4.626269,55.906329],[-4.618996,55.906669],[-4.615974,55.907106],[-4.613215,55.906031],[-4.615396,55.905434],[-4.613897,55.903113],[-4.611996,55.901523],[-4.611996,55.89833],[-4.613845,55.896562],[-4.613033,55.893907],[-4.614473,55.892318],[-4.617247,55.891566],[-4.618488,55.890478],[-4.61915,55.889029],[-4.61749,55.888544],[-4.615752,55.888726],[-4.612299,55.887707],[-4.610943,55.886679],[-4.609904,55.885086],[-4.606419,55.884923],[-4.603926,55.884064],[-4.604705,55.881681],[-4.602029,55.880479],[-4.599099,55.879673],[-4.599433,55.878623],[-4.601863,55.876684],[-4.605207,55.87545],[-4.600206,55.871905],[-4.604526,55.871396],[-4.608629,55.87028],[-4.610386,55.869067],[-4.609065,55.867894],[-4.603301,55.865099],[-4.598675,55.86393],[-4.597299,55.862396],[-4.601392,55.862854],[-4.609709,55.863097],[-4.611464,55.862886],[-4.612303,55.86206],[-4.617448,55.862224],[-4.619353,55.861789],[-4.622808,55.861594],[-4.624668,55.860214],[-4.625697,55.858822],[-4.624601,55.857853],[-4.624751,55.855736],[-4.622044,55.854433],[-4.623279,55.851216],[-4.62302,55.849831],[-4.624802,55.848403],[-4.627323,55.848093],[-4.628734,55.847291],[-4.630694,55.844852],[-4.63174,55.84241],[-4.632623,55.841104],[-4.639082,55.840694],[-4.640448,55.839562],[-4.643323,55.839081],[-4.654741,55.84021],[-4.678406,55.838222],[-4.68126,55.838397],[-4.684083,55.840067],[-4.68664,55.840668],[-4.694054,55.841045],[-4.695143,55.840846],[-4.698523,55.841801],[-4.69909,55.840759],[-4.701202,55.840915],[-4.701016,55.84215],[-4.703336,55.842441],[-4.702075,55.843826],[-4.704451,55.845037],[-4.703214,55.845513],[-4.703809,55.846714],[-4.705752,55.846397],[-4.707826,55.84716],[-4.710035,55.847107],[-4.712418,55.847836],[-4.71382,55.848695],[-4.715526,55.849089],[-4.71671,55.850604],[-4.71864,55.851357],[-4.723847,55.852448],[-4.727013,55.852502],[-4.729384,55.853267],[-4.730031,55.852558],[-4.734381,55.851134],[-4.736566,55.851152],[-4.738782,55.850344],[-4.745994,55.849869],[-4.749296,55.849296],[-4.750878,55.849755],[-4.753195,55.849119],[-4.75371,55.848154],[-4.759567,55.847113],[-4.759826,55.846305],[-4.762114,55.845791],[-4.76509,55.845512],[-4.767786,55.845677],[-4.771169,55.844612],[-4.773692,55.844591],[-4.775889,55.844937],[-4.780061,55.84429],[-4.781363,55.844404],[-4.783502,55.843596],[-4.783369,55.841968],[-4.783992,55.841513],[-4.783709,55.839789],[-4.779092,55.839453],[-4.765034,55.833478],[-4.757925,55.829283],[-4.748938,55.827071],[-4.744908,55.824275],[-4.73092,55.822238],[-4.72235,55.820786],[-4.73035,55.811013],[-4.728339,55.80953],[-4.721512,55.80605],[-4.720456,55.805107],[-4.709974,55.803999],[-4.697995,55.803517],[-4.688845,55.804589],[-4.687175,55.803875],[-4.685698,55.803737],[-4.68438,55.802332],[-4.684644,55.801526],[-4.683315,55.799034],[-4.682201,55.798146],[-4.681893,55.796553],[-4.680905,55.796426],[-4.679429,55.795309],[-4.679208,55.794065],[-4.678382,55.793383],[-4.677508,55.791549],[-4.676114,55.790389],[-4.673346,55.789043],[-4.67366,55.787574],[-4.672755,55.786842],[-4.673189,55.785154],[-4.674672,55.783602],[-4.67678,55.782482],[-4.677196,55.780939],[-4.676809,55.779946],[-4.677486,55.779075],[-4.67286,55.779135],[-4.671233,55.77857],[-4.670858,55.777409],[-4.669759,55.776592],[-4.668403,55.774834],[-4.669056,55.774286],[-4.666144,55.772251],[-4.66657,55.771245],[-4.664607,55.770987],[-4.664035,55.769737],[-4.665396,55.769358],[-4.665616,55.768446],[-4.663978,55.767406],[-4.662359,55.768004],[-4.659677,55.766548],[-4.658454,55.766298],[-4.658161,55.765402],[-4.656649,55.764631],[-4.657669,55.763115],[-4.657702,55.761284],[-4.659193,55.759941],[-4.655047,55.759841],[-4.650454,55.76085],[-4.648653,55.762433],[-4.644537,55.7689],[-4.638668,55.774785],[-4.633733,55.77604],[-4.634552,55.775063],[-4.631846,55.773899],[-4.634647,55.770875],[-4.634192,55.768924],[-4.634471,55.76831],[-4.631914,55.765616],[-4.628271,55.764477],[-4.626006,55.76453],[-4.623917,55.764125],[-4.61928,55.764412],[-4.61844,55.764846],[-4.616655,55.762951],[-4.616536,55.761496],[-4.614694,55.762646],[-4.612471,55.765561],[-4.610983,55.766038],[-4.610205,55.766955],[-4.606951,55.767388],[-4.60614,55.769605],[-4.604568,55.770337],[-4.601667,55.770803],[-4.599763,55.77258],[-4.596798,55.771759],[-4.594436,55.774356],[-4.5894,55.776308],[-4.584694,55.776405],[-4.584985,55.77565],[-4.583074,55.775293],[-4.580247,55.776361],[-4.579502,55.777065],[-4.580957,55.777821],[-4.579141,55.780325],[-4.578762,55.781888],[-4.576673,55.783051],[-4.574642,55.783452],[-4.572204,55.783391],[-4.5725,55.781744],[-4.573302,55.781035],[-4.57236,55.77896],[-4.569241,55.778076],[-4.567133,55.778736],[-4.564943,55.777956],[-4.564527,55.774627],[-4.562825,55.773572],[-4.562349,55.771546],[-4.560552,55.771324],[-4.559691,55.77065],[-4.557439,55.769928],[-4.558282,55.767879],[-4.55823,55.7666],[-4.550927,55.766383],[-4.54873,55.76933],[-4.54785,55.772017],[-4.546978,55.77268],[-4.546781,55.775004],[-4.541902,55.778545],[-4.537147,55.778581],[-4.532852,55.777943],[-4.531119,55.777362],[-4.532259,55.776754],[-4.521985,55.774422],[-4.517206,55.77945],[-4.517269,55.781164],[-4.515987,55.783096],[-4.514292,55.78445],[-4.510635,55.785881],[-4.506707,55.785877],[-4.505833,55.786476],[-4.503898,55.786785],[-4.503594,55.787449],[-4.499541,55.78885],[-4.497902,55.790245],[-4.495706,55.790719],[-4.494961,55.791616],[-4.496759,55.792867],[-4.496731,55.793521],[-4.499307,55.793728],[-4.5011,55.792985],[-4.501803,55.793452],[-4.498727,55.797845],[-4.496251,55.798996],[-4.496605,55.799455],[-4.495145,55.801445],[-4.489543,55.799227],[-4.485841,55.798276],[-4.48551,55.797778],[-4.480522,55.798256],[-4.475644,55.797748],[-4.472714,55.797793],[-4.468728,55.802919],[-4.465806,55.804726],[-4.459139,55.802132],[-4.458371,55.801215],[-4.453216,55.802473],[-4.445096,55.80314],[-4.442627,55.803894],[-4.441257,55.804669],[-4.4378,55.805793],[-4.436599,55.807357],[-4.434679,55.808259],[-4.420473,55.808019],[-4.416587,55.808518],[-4.412404,55.809552],[-4.411925,55.810009],[-4.407688,55.8111],[-4.407792,55.812937],[-4.405358,55.813763],[-4.404141,55.812696],[-4.400557,55.810945],[-4.396604,55.813506],[-4.394738,55.816608],[-4.393473,55.816341],[-4.381414,55.823148],[-4.377558,55.826787],[-4.378593,55.828878],[-4.374763,55.835626],[-4.373818,55.837701],[-4.371064,55.838447],[-4.37024,55.839445],[-4.370903,55.840742],[-4.369746,55.841246],[-4.368781,55.845266],[-4.368029,55.84544],[-4.368585,55.846883],[-4.37035,55.846685],[-4.371358,55.847627],[-4.374879,55.848654],[-4.373921,55.850301],[-4.375881,55.8514],[-4.377173,55.851517],[-4.379874,55.851044],[-4.379216,55.852668],[-4.380873,55.856342],[-4.377576,55.856239],[-4.376545,55.856461],[-4.364672,55.855324],[-4.360484,55.860832],[-4.356709,55.863521],[-4.353092,55.863574],[-4.355133,55.865759],[-4.356256,55.873178],[-4.354406,55.872931]]]},"properties":{"LAD22CD":"S12000038","LAD22NM":"Renfrewshire","BNG_E":239305,"BNG_N":664698,"LONG":-4.56834,"LAT":55.84862,"GlobalID":"b541e3f0-863b-41bc-9604-ae404bfacad5"},"id":343}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.402038,55.971829],[-4.406409,55.971715],[-4.407892,55.972239],[-4.414023,55.971341],[-4.417817,55.974233],[-4.430339,55.979024],[-4.427654,55.981315],[-4.428667,55.98227],[-4.430657,55.982559],[-4.433757,55.984308],[-4.433379,55.985687],[-4.434421,55.986448],[-4.435002,55.987784],[-4.437271,55.988553],[-4.438874,55.989568],[-4.439136,55.991051],[-4.440207,55.991645],[-4.440806,55.992995],[-4.442944,55.994485],[-4.442833,55.995256],[-4.445429,55.997523],[-4.445321,55.999354],[-4.443993,55.999659],[-4.44532,56.000617],[-4.445891,56.002673],[-4.448694,56.0045],[-4.470083,56.00207],[-4.470793,56.002288],[-4.473023,56.00494],[-4.472879,56.006491],[-4.475851,56.008302],[-4.477016,56.009823],[-4.47921,56.010891],[-4.481901,56.0112],[-4.482639,56.012276],[-4.481056,56.01401],[-4.480575,56.015314],[-4.480727,56.017076],[-4.478962,56.019241],[-4.479203,56.020061],[-4.480814,56.020447],[-4.480835,56.022123],[-4.483188,56.022872],[-4.48547,56.022645],[-4.488807,56.024803],[-4.487814,56.025757],[-4.488186,56.02724],[-4.489045,56.028048],[-4.488252,56.029468],[-4.491757,56.031255],[-4.49001,56.032929],[-4.492132,56.033751],[-4.488587,56.035838],[-4.487215,56.038987],[-4.488527,56.03975],[-4.488227,56.040776],[-4.498936,56.047616],[-4.486806,56.050495],[-4.485478,56.050192],[-4.48189,56.050722],[-4.47957,56.052483],[-4.479495,56.053433],[-4.478207,56.054162],[-4.477966,56.055086],[-4.474552,56.056201],[-4.474893,56.057418],[-4.475854,56.058254],[-4.478102,56.058138],[-4.47582,56.059549],[-4.475481,56.061218],[-4.477964,56.061232],[-4.478517,56.05967],[-4.479243,56.059161],[-4.48252,56.059314],[-4.483818,56.060625],[-4.484905,56.061061],[-4.487015,56.06028],[-4.488377,56.060794],[-4.486124,56.064051],[-4.488207,56.064106],[-4.489095,56.062119],[-4.491447,56.061795],[-4.491705,56.063422],[-4.495873,56.063888],[-4.500363,56.065066],[-4.501915,56.065819],[-4.5034,56.067181],[-4.504863,56.067574],[-4.505155,56.066157],[-4.503578,56.064826],[-4.504816,56.063028],[-4.50384,56.06186],[-4.500364,56.061559],[-4.499664,56.061119],[-4.501271,56.059168],[-4.504274,56.058542],[-4.506308,56.058591],[-4.506885,56.060479],[-4.510221,56.061262],[-4.513148,56.065093],[-4.514763,56.066273],[-4.517066,56.06717],[-4.523761,56.071184],[-4.527297,56.071714],[-4.530184,56.072999],[-4.532351,56.073423],[-4.553443,56.071347],[-4.557226,56.071215],[-4.560763,56.071479],[-4.567428,56.073843],[-4.572192,56.074553],[-4.574957,56.074441],[-4.583095,56.072977],[-4.58737,56.073224],[-4.589597,56.073842],[-4.592679,56.075535],[-4.594521,56.077766],[-4.596799,56.082481],[-4.598188,56.084226],[-4.599622,56.077383],[-4.602816,56.070264],[-4.60797,56.06396],[-4.614989,56.057978],[-4.619528,56.052449],[-4.620873,56.04988],[-4.62194,56.045013],[-4.621432,56.042139],[-4.620088,56.039381],[-4.614065,56.032233],[-4.601532,56.020224],[-4.609961,56.015078],[-4.610583,56.014069],[-4.614186,56.014174],[-4.614896,56.013309],[-4.616521,56.013064],[-4.618961,56.011731],[-4.622078,56.011206],[-4.624503,56.010408],[-4.629672,56.009974],[-4.629951,56.009061],[-4.624618,56.007956],[-4.62259,56.00671],[-4.623169,56.006113],[-4.628338,56.004152],[-4.63033,56.002671],[-4.63437,56.003461],[-4.636869,56.004356],[-4.638897,56.004452],[-4.64152,56.005389],[-4.652935,56.008105],[-4.654523,56.006453],[-4.658596,56.003983],[-4.65989,56.002747],[-4.65426,56.001219],[-4.655974,55.9992],[-4.653706,55.998413],[-4.650247,55.998716],[-4.649453,55.999079],[-4.645613,55.99851],[-4.641608,55.999163],[-4.639871,55.998975],[-4.637697,55.999547],[-4.63779,55.998098],[-4.639005,55.996032],[-4.641788,55.99404],[-4.637635,55.992504],[-4.634989,55.991864],[-4.633759,55.99205],[-4.624706,55.986199],[-4.61754,55.989066],[-4.61623,55.987354],[-4.618499,55.98495],[-4.61433,55.980832],[-4.616566,55.979403],[-4.616814,55.977689],[-4.618859,55.976354],[-4.621719,55.975147],[-4.624947,55.972402],[-4.621327,55.970855],[-4.619171,55.970472],[-4.619982,55.968928],[-4.617171,55.968072],[-4.615009,55.967007],[-4.61395,55.966894],[-4.612355,55.963531],[-4.60926,55.9627],[-4.605904,55.960561],[-4.60571,55.959709],[-4.602228,55.95802],[-4.605703,55.953842],[-4.607109,55.951247],[-4.607733,55.948538],[-4.60862,55.948737],[-4.609617,55.946563],[-4.604601,55.945708],[-4.603473,55.944881],[-4.601169,55.944886],[-4.597953,55.943845],[-4.596557,55.94369],[-4.594524,55.942616],[-4.59181,55.941967],[-4.587748,55.939741],[-4.585075,55.939369],[-4.582203,55.938418],[-4.574041,55.93801],[-4.568128,55.939093],[-4.565409,55.938969],[-4.565636,55.940452],[-4.568034,55.940758],[-4.57495,55.942829],[-4.576118,55.944133],[-4.576507,55.945316],[-4.574386,55.949615],[-4.576816,55.951269],[-4.580015,55.952428],[-4.579943,55.953671],[-4.579178,55.954564],[-4.577659,55.954551],[-4.574259,55.956659],[-4.574975,55.957449],[-4.575299,55.959178],[-4.573463,55.958231],[-4.574244,55.956229],[-4.577797,55.952825],[-4.573979,55.951921],[-4.572739,55.950991],[-4.573129,55.949003],[-4.57492,55.944979],[-4.574127,55.943594],[-4.573037,55.942973],[-4.566149,55.941554],[-4.563828,55.941256],[-4.56255,55.939945],[-4.563562,55.937951],[-4.564678,55.937853],[-4.565286,55.93682],[-4.563138,55.935235],[-4.561955,55.935336],[-4.560085,55.936289],[-4.558058,55.936257],[-4.556865,55.937072],[-4.553309,55.936607],[-4.552176,55.935992],[-4.54955,55.935768],[-4.546043,55.934948],[-4.543413,55.934075],[-4.54127,55.933029],[-4.534744,55.932957],[-4.531704,55.933325],[-4.529104,55.932726],[-4.526274,55.932996],[-4.524285,55.932186],[-4.523151,55.932772],[-4.520681,55.932818],[-4.519922,55.932471],[-4.51743,55.932588],[-4.516414,55.932046],[-4.515555,55.930034],[-4.50986,55.929679],[-4.506533,55.931079],[-4.505253,55.930635],[-4.506884,55.929437],[-4.503214,55.929292],[-4.495116,55.929679],[-4.494379,55.930297],[-4.492767,55.930331],[-4.492297,55.930991],[-4.489358,55.930895],[-4.48339,55.930109],[-4.481881,55.929274],[-4.478487,55.928108],[-4.475742,55.927582],[-4.466581,55.924802],[-4.466723,55.924472],[-4.463239,55.922395],[-4.46049,55.920211],[-4.458337,55.919737],[-4.457309,55.918578],[-4.451734,55.914218],[-4.449552,55.91195],[-4.443839,55.908379],[-4.437485,55.906211],[-4.432998,55.905715],[-4.429544,55.905699],[-4.417853,55.90304],[-4.405335,55.894571],[-4.403148,55.89342],[-4.401797,55.894946],[-4.399333,55.894117],[-4.399558,55.893299],[-4.39212,55.890545],[-4.393432,55.890343],[-4.401532,55.892997],[-4.397851,55.891056],[-4.392423,55.889595],[-4.390464,55.890747],[-4.385319,55.89014],[-4.385617,55.89091],[-4.387217,55.891251],[-4.385918,55.892637],[-4.383591,55.892081],[-4.382687,55.893802],[-4.383188,55.894534],[-4.380662,55.895342],[-4.38175,55.896503],[-4.380356,55.896764],[-4.380378,55.89799],[-4.378928,55.900088],[-4.375548,55.899967],[-4.376211,55.901525],[-4.38068,55.903996],[-4.389953,55.910511],[-4.386877,55.911182],[-4.388719,55.913158],[-4.387792,55.916619],[-4.385152,55.917884],[-4.379992,55.918787],[-4.379617,55.92098],[-4.381751,55.922655],[-4.380208,55.9239],[-4.381452,55.926804],[-4.383695,55.92654],[-4.38407,55.928129],[-4.380229,55.930203],[-4.38026,55.931778],[-4.38249,55.932209],[-4.382607,55.933563],[-4.388978,55.933934],[-4.389114,55.936561],[-4.387852,55.937886],[-4.386836,55.939879],[-4.38857,55.941352],[-4.388854,55.942526],[-4.389897,55.943139],[-4.389653,55.945106],[-4.387412,55.945872],[-4.385468,55.945775],[-4.386503,55.952451],[-4.387183,55.952959],[-4.393945,55.953611],[-4.398061,55.955296],[-4.399009,55.957034],[-4.398037,55.95841],[-4.400217,55.96243],[-4.400233,55.963985],[-4.399128,55.966981],[-4.400776,55.968095],[-4.402038,55.971829]]]},"properties":{"LAD22CD":"S12000039","LAD22NM":"West Dunbartonshire","BNG_E":242904,"BNG_N":681586,"LONG":-4.52074,"LAT":56.0014,"GlobalID":"70908502-b9d8-4277-b6e7-832abee8330d"},"id":344}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.515721,56.002079],[-3.516151,56.001977],[-3.516203,56.001965],[-3.517645,56.000065],[-3.516549,55.999267],[-3.513622,55.998547],[-3.511528,55.993966],[-3.51753,55.992339],[-3.522881,55.993321],[-3.528776,55.992729],[-3.529505,55.989971],[-3.529014,55.988823],[-3.530183,55.98643],[-3.539433,55.988506],[-3.538954,55.987511],[-3.535849,55.986706],[-3.5364,55.985723],[-3.539191,55.986304],[-3.542073,55.986463],[-3.54303,55.985775],[-3.551196,55.987115],[-3.55835,55.987785],[-3.564213,55.988949],[-3.564577,55.988327],[-3.576233,55.989664],[-3.581561,55.989686],[-3.583428,55.992091],[-3.58109,55.994524],[-3.584796,55.995747],[-3.589932,55.996552],[-3.593272,55.996464],[-3.59505,55.997004],[-3.59884,55.997034],[-3.601001,55.994036],[-3.601155,55.992409],[-3.606988,55.992046],[-3.609926,55.992902],[-3.611658,55.992612],[-3.614095,55.991473],[-3.614015,55.989994],[-3.614918,55.989429],[-3.615255,55.986995],[-3.616501,55.986777],[-3.618374,55.985328],[-3.618538,55.984448],[-3.620597,55.984829],[-3.622512,55.984579],[-3.626531,55.98505],[-3.627367,55.984052],[-3.62744,55.982734],[-3.630804,55.982986],[-3.632346,55.982013],[-3.631945,55.979906],[-3.630004,55.977426],[-3.632014,55.975165],[-3.631809,55.973832],[-3.637672,55.971927],[-3.639775,55.970716],[-3.642331,55.970876],[-3.644628,55.969615],[-3.646973,55.969856],[-3.648664,55.969426],[-3.649396,55.968633],[-3.649396,55.967164],[-3.652406,55.965565],[-3.652191,55.964666],[-3.656993,55.964777],[-3.657424,55.964035],[-3.654639,55.963205],[-3.652931,55.959259],[-3.656196,55.95867],[-3.661186,55.95974],[-3.661466,55.960561],[-3.663865,55.960655],[-3.664615,55.960172],[-3.6655,55.958085],[-3.667892,55.957342],[-3.668689,55.955101],[-3.670377,55.9546],[-3.672583,55.954684],[-3.674212,55.953924],[-3.674346,55.953044],[-3.673022,55.951477],[-3.672707,55.949698],[-3.670971,55.948832],[-3.667971,55.948564],[-3.667572,55.945438],[-3.670869,55.944343],[-3.673126,55.945255],[-3.677463,55.942367],[-3.683413,55.942287],[-3.686036,55.940045],[-3.689729,55.938879],[-3.690363,55.938294],[-3.694174,55.938987],[-3.696925,55.938667],[-3.698914,55.939316],[-3.699496,55.938439],[-3.699747,55.93584],[-3.703247,55.934586],[-3.707978,55.935409],[-3.708955,55.933921],[-3.71068,55.933733],[-3.715601,55.934028],[-3.71596,55.935534],[-3.718904,55.935254],[-3.720836,55.935661],[-3.724705,55.934982],[-3.726979,55.936074],[-3.729584,55.936059],[-3.732694,55.93511],[-3.735485,55.933237],[-3.739153,55.933102],[-3.741352,55.931292],[-3.742229,55.931016],[-3.742235,55.928339],[-3.742546,55.926231],[-3.743773,55.925814],[-3.750495,55.925181],[-3.750963,55.923241],[-3.752981,55.922313],[-3.752417,55.921497],[-3.754688,55.920675],[-3.755238,55.919552],[-3.758888,55.918377],[-3.762056,55.917905],[-3.762437,55.916842],[-3.761458,55.915863],[-3.76023,55.91551],[-3.76134,55.913958],[-3.763734,55.912803],[-3.764291,55.910883],[-3.766183,55.910681],[-3.76719,55.91011],[-3.766864,55.908612],[-3.768139,55.907838],[-3.771555,55.90743],[-3.772122,55.906925],[-3.775956,55.906781],[-3.77743,55.906403],[-3.779206,55.904946],[-3.781,55.904649],[-3.780596,55.90393],[-3.781941,55.902993],[-3.782104,55.901633],[-3.786018,55.900778],[-3.792452,55.900366],[-3.797959,55.899617],[-3.799302,55.898799],[-3.802014,55.897898],[-3.804323,55.89787],[-3.805728,55.897382],[-3.808477,55.897198],[-3.809843,55.896714],[-3.821524,55.895421],[-3.822557,55.896484],[-3.825463,55.895334],[-3.826959,55.895208],[-3.828081,55.894404],[-3.830087,55.894585],[-3.831249,55.89359],[-3.828423,55.892293],[-3.827408,55.891266],[-3.828209,55.890379],[-3.825968,55.88812],[-3.826534,55.887813],[-3.822857,55.883869],[-3.812106,55.883924],[-3.802175,55.875479],[-3.801807,55.874775],[-3.798852,55.874643],[-3.79544,55.873511],[-3.787786,55.875474],[-3.785927,55.877005],[-3.784072,55.877491],[-3.78208,55.876431],[-3.778301,55.876189],[-3.776152,55.879192],[-3.774631,55.8805],[-3.773418,55.880992],[-3.770331,55.880967],[-3.770186,55.879831],[-3.770852,55.878335],[-3.769453,55.876351],[-3.764169,55.874128],[-3.76223,55.872693],[-3.762092,55.874599],[-3.758832,55.877125],[-3.735179,55.881424],[-3.730019,55.883776],[-3.725147,55.884854],[-3.718094,55.88588],[-3.719116,55.884924],[-3.716406,55.883612],[-3.713515,55.883029],[-3.711922,55.882071],[-3.713118,55.87975],[-3.712975,55.875663],[-3.711127,55.873799],[-3.730553,55.870221],[-3.737508,55.866998],[-3.740103,55.866848],[-3.74237,55.866002],[-3.745464,55.865892],[-3.747183,55.865506],[-3.746335,55.860522],[-3.750248,55.858999],[-3.748884,55.856373],[-3.744117,55.838909],[-3.739783,55.830508],[-3.736699,55.827872],[-3.736637,55.826379],[-3.733517,55.824328],[-3.732609,55.823064],[-3.730324,55.822658],[-3.727881,55.821814],[-3.726179,55.820778],[-3.723678,55.817775],[-3.719498,55.816378],[-3.717812,55.81495],[-3.716733,55.815074],[-3.715051,55.813951],[-3.715551,55.813168],[-3.717795,55.812246],[-3.720369,55.811542],[-3.722138,55.808968],[-3.725215,55.808192],[-3.725752,55.807708],[-3.72913,55.807239],[-3.73025,55.805502],[-3.733841,55.804625],[-3.736389,55.802562],[-3.741633,55.799406],[-3.733469,55.793033],[-3.735956,55.791753],[-3.737044,55.78915],[-3.738021,55.788341],[-3.738133,55.787086],[-3.741575,55.785231],[-3.74265,55.782883],[-3.744012,55.782009],[-3.743398,55.780703],[-3.741002,55.780435],[-3.739729,55.780683],[-3.738541,55.780147],[-3.734316,55.779425],[-3.732716,55.77787],[-3.719958,55.787948],[-3.714955,55.7895],[-3.706831,55.790651],[-3.704974,55.790686],[-3.698671,55.794629],[-3.685789,55.797362],[-3.679867,55.794141],[-3.67522,55.796424],[-3.669786,55.798412],[-3.657877,55.801795],[-3.653409,55.802511],[-3.639815,55.80383],[-3.629582,55.803481],[-3.623207,55.802496],[-3.616732,55.803327],[-3.615604,55.803072],[-3.614067,55.80466],[-3.612024,55.805626],[-3.607173,55.805793],[-3.591549,55.810215],[-3.589817,55.807268],[-3.590334,55.806246],[-3.58799,55.804171],[-3.587851,55.801838],[-3.584561,55.800707],[-3.583581,55.799981],[-3.583408,55.798715],[-3.576066,55.795233],[-3.575628,55.795512],[-3.571514,55.794161],[-3.568598,55.792782],[-3.568711,55.792121],[-3.564339,55.790072],[-3.564819,55.789746],[-3.554999,55.785691],[-3.547064,55.790733],[-3.5411,55.788574],[-3.53734,55.785438],[-3.532417,55.783656],[-3.531874,55.783917],[-3.529192,55.783385],[-3.502384,55.776768],[-3.488442,55.774067],[-3.482792,55.772019],[-3.480798,55.772398],[-3.479047,55.771408],[-3.475328,55.771084],[-3.473928,55.770715],[-3.471635,55.77097],[-3.471786,55.771399],[-3.469565,55.774447],[-3.464323,55.776024],[-3.463615,55.776481],[-3.459489,55.777415],[-3.452152,55.780553],[-3.448458,55.780053],[-3.447611,55.781946],[-3.445219,55.783888],[-3.441154,55.78478],[-3.439401,55.784594],[-3.438811,55.78567],[-3.438671,55.78835],[-3.438242,55.789262],[-3.440574,55.789365],[-3.442592,55.79046],[-3.443999,55.791846],[-3.444617,55.793456],[-3.440744,55.796997],[-3.439118,55.800691],[-3.436532,55.802824],[-3.435529,55.805496],[-3.428795,55.80743],[-3.426466,55.808962],[-3.425967,55.810589],[-3.41931,55.809642],[-3.415738,55.809463],[-3.41056,55.814096],[-3.399653,55.819006],[-3.394763,55.81974],[-3.392782,55.821245],[-3.390813,55.823972],[-3.39085,55.825018],[-3.395975,55.831736],[-3.397811,55.832842],[-3.399894,55.833043],[-3.404065,55.834492],[-3.405726,55.83561],[-3.407148,55.837179],[-3.409326,55.838008],[-3.409903,55.839174],[-3.410921,55.83972],[-3.408763,55.840755],[-3.40891,55.841288],[-3.411367,55.842567],[-3.413359,55.8432],[-3.415782,55.843497],[-3.418098,55.845786],[-3.419212,55.8462],[-3.418841,55.848123],[-3.415585,55.850124],[-3.41471,55.851332],[-3.41665,55.853452],[-3.41621,55.854383],[-3.413508,55.854191],[-3.412836,55.856021],[-3.415112,55.856574],[-3.415832,55.857739],[-3.417728,55.858393],[-3.416495,55.859196],[-3.416841,55.860353],[-3.414072,55.860634],[-3.413623,55.861669],[-3.412378,55.862106],[-3.410649,55.863698],[-3.410629,55.864674],[-3.408809,55.865488],[-3.405645,55.865044],[-3.404278,55.865589],[-3.403232,55.867031],[-3.401844,55.867542],[-3.400058,55.868804],[-3.39659,55.868732],[-3.399598,55.870974],[-3.403155,55.870154],[-3.405226,55.870022],[-3.413813,55.878354],[-3.412062,55.879122],[-3.405492,55.879696],[-3.404701,55.880743],[-3.402033,55.881321],[-3.401348,55.881807],[-3.400847,55.883943],[-3.402265,55.884228],[-3.403561,55.885545],[-3.40345,55.887293],[-3.402499,55.887748],[-3.398393,55.888304],[-3.390642,55.891938],[-3.38887,55.894043],[-3.388687,55.895038],[-3.387313,55.895662],[-3.386803,55.897791],[-3.3881,55.898987],[-3.390484,55.898936],[-3.39106,55.900822],[-3.387709,55.902854],[-3.389962,55.902668],[-3.397836,55.903324],[-3.40257,55.902703],[-3.407302,55.903038],[-3.421444,55.901788],[-3.426037,55.903302],[-3.432013,55.904376],[-3.433929,55.90572],[-3.440482,55.905182],[-3.442152,55.904718],[-3.44312,55.905629],[-3.442604,55.906423],[-3.444197,55.907742],[-3.441643,55.909973],[-3.442237,55.91285],[-3.437749,55.912799],[-3.436923,55.913179],[-3.436857,55.914555],[-3.435953,55.915868],[-3.433524,55.916949],[-3.434327,55.919756],[-3.433629,55.921281],[-3.431717,55.922264],[-3.430021,55.924175],[-3.428104,55.925455],[-3.427796,55.926221],[-3.429049,55.928424],[-3.428887,55.930066],[-3.431376,55.931814],[-3.4293,55.932392],[-3.42538,55.932473],[-3.421288,55.931646],[-3.418078,55.933869],[-3.424198,55.934826],[-3.428246,55.935825],[-3.432903,55.937393],[-3.437543,55.939526],[-3.442625,55.94318],[-3.446544,55.948098],[-3.449529,55.950936],[-3.439669,55.951279],[-3.43468,55.950939],[-3.428453,55.95209],[-3.429,55.953327],[-3.424914,55.953755],[-3.425963,55.956027],[-3.42595,55.959326],[-3.437618,55.961042],[-3.441811,55.96115],[-3.443374,55.961485],[-3.441937,55.967488],[-3.442565,55.968336],[-3.442104,55.969135],[-3.444856,55.96988],[-3.444076,55.972987],[-3.445602,55.973045],[-3.448267,55.977575],[-3.446706,55.977834],[-3.441935,55.977799],[-3.43686,55.979029],[-3.435337,55.98044],[-3.432361,55.98144],[-3.429703,55.981812],[-3.430212,55.983438],[-3.429883,55.984909],[-3.430598,55.987251],[-3.431727,55.988277],[-3.431953,55.989222],[-3.430532,55.989665],[-3.42756,55.989629],[-3.425495,55.99112],[-3.425436,55.993795],[-3.434555,55.993338],[-3.436819,55.994147],[-3.438439,55.99391],[-3.442387,55.994631],[-3.443109,55.995575],[-3.444794,55.995306],[-3.447587,55.996178],[-3.450075,55.996196],[-3.452739,55.996911],[-3.457737,55.99686],[-3.46284,55.997487],[-3.465898,55.998122],[-3.467024,55.99925],[-3.468728,55.999148],[-3.470031,55.999695],[-3.472554,55.99994],[-3.475439,55.999046],[-3.477561,55.998831],[-3.47764,55.998129],[-3.481081,55.997654],[-3.486035,55.99802],[-3.489438,55.997783],[-3.494511,55.998238],[-3.504694,55.997981],[-3.509233,55.998471],[-3.512868,55.999495],[-3.515721,56.002079]]]},"properties":{"LAD22CD":"S12000040","LAD22NM":"West Lothian","BNG_E":299483,"BNG_N":668514,"LONG":-3.60909,"LAT":55.8992,"GlobalID":"c27f5112-c415-4134-bb46-56a3557201be"},"id":345}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.444918,56.751678],[-2.449574,56.751389],[-2.451802,56.750496],[-2.454203,56.748698],[-2.456889,56.747526],[-2.459431,56.747129],[-2.461765,56.747453],[-2.463442,56.748179],[-2.466771,56.751543],[-2.472076,56.753376],[-2.474398,56.754908],[-2.47644,56.757689],[-2.47796,56.761588],[-2.480379,56.763661],[-2.483817,56.765075],[-2.491984,56.766206],[-2.501247,56.769462],[-2.502698,56.770105],[-2.505612,56.773228],[-2.506555,56.773744],[-2.511084,56.774742],[-2.513498,56.774651],[-2.515802,56.775764],[-2.518754,56.779676],[-2.521422,56.781723],[-2.529411,56.785035],[-2.532056,56.784892],[-2.5399,56.781936],[-2.54415,56.781529],[-2.547951,56.782391],[-2.551301,56.78496],[-2.556321,56.786864],[-2.558566,56.786999],[-2.566884,56.785883],[-2.570682,56.785496],[-2.573617,56.78617],[-2.581623,56.786154],[-2.585747,56.787456],[-2.589416,56.788242],[-2.591512,56.78831],[-2.594727,56.78715],[-2.598188,56.784116],[-2.603572,56.782656],[-2.605386,56.782498],[-2.612024,56.783199],[-2.615819,56.783294],[-2.616848,56.784025],[-2.615864,56.78773],[-2.617183,56.793007],[-2.623549,56.796824],[-2.626209,56.799022],[-2.628501,56.8041],[-2.631611,56.809077],[-2.633666,56.80998],[-2.643795,56.812129],[-2.645171,56.81194],[-2.650847,56.810065],[-2.652787,56.810422],[-2.652906,56.811801],[-2.650683,56.813859],[-2.649827,56.815436],[-2.65097,56.822597],[-2.657727,56.82859],[-2.658417,56.829881],[-2.66438,56.833145],[-2.666172,56.834657],[-2.666491,56.836481],[-2.66595,56.838139],[-2.670556,56.842281],[-2.670148,56.843319],[-2.667453,56.845135],[-2.671267,56.846369],[-2.671772,56.847385],[-2.671114,56.848635],[-2.668206,56.849666],[-2.66777,56.850253],[-2.671735,56.858693],[-2.667811,56.858822],[-2.665971,56.859355],[-2.665116,56.861062],[-2.663841,56.867335],[-2.663021,56.868754],[-2.661839,56.879837],[-2.662247,56.881106],[-2.66115,56.885428],[-2.662419,56.888948],[-2.669307,56.890492],[-2.678105,56.888711],[-2.680637,56.887628],[-2.681151,56.888348],[-2.681153,56.891174],[-2.679569,56.894327],[-2.680579,56.896616],[-2.682399,56.898322],[-2.680017,56.900469],[-2.678736,56.903193],[-2.681455,56.907293],[-2.679954,56.908739],[-2.681288,56.910344],[-2.684435,56.912694],[-2.686753,56.915066],[-2.689607,56.916192],[-2.692477,56.916836],[-2.69283,56.917714],[-2.695349,56.918482],[-2.698854,56.920582],[-2.700931,56.921406],[-2.707179,56.922588],[-2.71031,56.924435],[-2.713614,56.924501],[-2.718863,56.923245],[-2.721447,56.924766],[-2.724687,56.92583],[-2.728742,56.930725],[-2.72863,56.933385],[-2.73454,56.939001],[-2.734586,56.941758],[-2.735818,56.943768],[-2.74002,56.948486],[-2.741378,56.949376],[-2.743823,56.948751],[-2.74622,56.948598],[-2.749021,56.950162],[-2.752676,56.953702],[-2.76567,56.959961],[-2.768198,56.960161],[-2.772842,56.959693],[-2.783232,56.956812],[-2.787253,56.957667],[-2.790542,56.957264],[-2.802623,56.958238],[-2.80607,56.959842],[-2.809126,56.960128],[-2.817327,56.962145],[-2.824509,56.961936],[-2.826136,56.964486],[-2.827583,56.965581],[-2.828271,56.967356],[-2.830328,56.969974],[-2.8337,56.972903],[-2.833166,56.977007],[-2.837063,56.9758],[-2.84084,56.973664],[-2.851088,56.972566],[-2.85798,56.974347],[-2.858269,56.975495],[-2.861383,56.978874],[-2.86463,56.979502],[-2.866675,56.980441],[-2.874571,56.980345],[-2.877738,56.98243],[-2.883918,56.985629],[-2.892429,56.986804],[-2.899791,56.985727],[-2.905375,56.983239],[-2.909599,56.983015],[-2.912959,56.981636],[-2.910245,56.975787],[-2.916237,56.975591],[-2.924077,56.972349],[-2.930488,56.972162],[-2.944675,56.973771],[-2.945701,56.97304],[-2.947138,56.968385],[-2.954079,56.966801],[-2.967474,56.969581],[-2.973646,56.969736],[-2.973637,56.969066],[-2.97614,56.968566],[-2.981802,56.968077],[-2.994121,56.968079],[-2.998682,56.970702],[-3.001417,56.968429],[-3.00727,56.966815],[-3.018591,56.969126],[-3.019118,56.969719],[-3.023851,56.971091],[-3.02634,56.972773],[-3.028158,56.970072],[-3.029758,56.969956],[-3.035597,56.966992],[-3.038927,56.96696],[-3.039758,56.966073],[-3.042629,56.966134],[-3.046038,56.965104],[-3.048039,56.963443],[-3.058378,56.964129],[-3.059757,56.962891],[-3.063244,56.962017],[-3.066934,56.960534],[-3.069508,56.961694],[-3.072098,56.961124],[-3.071844,56.960311],[-3.08317,56.958432],[-3.08244,56.954822],[-3.083571,56.952153],[-3.083636,56.950697],[-3.08588,56.950709],[-3.089918,56.949924],[-3.093888,56.95019],[-3.094255,56.947555],[-3.095644,56.946734],[-3.095827,56.945686],[-3.097747,56.945835],[-3.098652,56.945324],[-3.093905,56.934221],[-3.094615,56.932346],[-3.10891,56.920959],[-3.110774,56.918732],[-3.110887,56.911212],[-3.110315,56.909361],[-3.108842,56.907892],[-3.110187,56.905603],[-3.112357,56.903207],[-3.110705,56.901232],[-3.109343,56.900422],[-3.108989,56.897591],[-3.106754,56.895036],[-3.108813,56.893873],[-3.113206,56.893385],[-3.115767,56.892589],[-3.116603,56.891975],[-3.117663,56.890093],[-3.120338,56.888447],[-3.12452,56.888333],[-3.129083,56.888629],[-3.130635,56.888363],[-3.134777,56.89019],[-3.13905,56.893601],[-3.139132,56.897638],[-3.144225,56.900197],[-3.147612,56.903028],[-3.153624,56.904967],[-3.157511,56.905326],[-3.160447,56.906822],[-3.165134,56.907299],[-3.167191,56.907985],[-3.169056,56.907734],[-3.17255,56.906322],[-3.173515,56.905662],[-3.173916,56.900398],[-3.176989,56.902063],[-3.177346,56.902962],[-3.179223,56.904162],[-3.179873,56.905773],[-3.184137,56.905598],[-3.186421,56.904103],[-3.188872,56.904749],[-3.191486,56.904585],[-3.198512,56.905825],[-3.19945,56.90613],[-3.203523,56.908961],[-3.21222,56.910759],[-3.219614,56.913145],[-3.224258,56.913769],[-3.22801,56.916503],[-3.232551,56.917716],[-3.235121,56.918208],[-3.238254,56.91806],[-3.243939,56.918345],[-3.248762,56.919132],[-3.256333,56.919811],[-3.261597,56.921726],[-3.263321,56.920742],[-3.265895,56.919858],[-3.269167,56.920176],[-3.269937,56.919876],[-3.272372,56.922165],[-3.27194,56.92349],[-3.276464,56.924625],[-3.278131,56.925542],[-3.278459,56.927713],[-3.284247,56.928557],[-3.289193,56.927351],[-3.291098,56.925445],[-3.288005,56.921016],[-3.286927,56.917856],[-3.285245,56.91529],[-3.283998,56.914602],[-3.283365,56.912664],[-3.286198,56.909315],[-3.284855,56.907267],[-3.288603,56.906923],[-3.291614,56.905665],[-3.297873,56.904778],[-3.298922,56.902135],[-3.302169,56.899878],[-3.303625,56.899494],[-3.309297,56.899022],[-3.311145,56.897174],[-3.315407,56.897219],[-3.321618,56.895496],[-3.322951,56.895823],[-3.328815,56.895455],[-3.332823,56.895979],[-3.337062,56.895839],[-3.33859,56.894269],[-3.341927,56.892346],[-3.346336,56.890322],[-3.348679,56.889753],[-3.348735,56.886972],[-3.353151,56.884732],[-3.353639,56.883927],[-3.357767,56.883716],[-3.360357,56.884092],[-3.362956,56.883341],[-3.367319,56.881707],[-3.367944,56.881058],[-3.366313,56.87887],[-3.366724,56.877105],[-3.369809,56.875081],[-3.372138,56.874615],[-3.37446,56.873732],[-3.379083,56.868488],[-3.379689,56.866913],[-3.378198,56.863614],[-3.378519,56.86096],[-3.387377,56.855027],[-3.3909,56.851398],[-3.393724,56.850855],[-3.397831,56.851042],[-3.400829,56.84901],[-3.401221,56.847873],[-3.403089,56.845647],[-3.405913,56.845089],[-3.407022,56.843406],[-3.400753,56.843018],[-3.39841,56.843709],[-3.392801,56.842563],[-3.388825,56.840101],[-3.384948,56.837004],[-3.381549,56.83639],[-3.38056,56.833342],[-3.37689,56.829807],[-3.370244,56.83112],[-3.36612,56.829036],[-3.364076,56.827144],[-3.358541,56.825646],[-3.351637,56.820276],[-3.360021,56.817881],[-3.366731,56.813436],[-3.364899,56.812158],[-3.364488,56.809849],[-3.362807,56.808214],[-3.358206,56.806665],[-3.357642,56.804434],[-3.359476,56.802159],[-3.35926,56.801402],[-3.360304,56.800385],[-3.362601,56.800054],[-3.36717,56.795346],[-3.366748,56.793194],[-3.370267,56.79024],[-3.374119,56.789259],[-3.38001,56.781386],[-3.379445,56.780507],[-3.379509,56.777101],[-3.389798,56.769234],[-3.388415,56.765458],[-3.383109,56.757763],[-3.378563,56.754435],[-3.37784,56.75323],[-3.373102,56.752474],[-3.371075,56.752487],[-3.368712,56.752944],[-3.366548,56.752577],[-3.363909,56.751514],[-3.361315,56.749418],[-3.357842,56.747654],[-3.357,56.745849],[-3.357875,56.743144],[-3.363947,56.738118],[-3.349111,56.729439],[-3.352784,56.726151],[-3.344475,56.722975],[-3.338539,56.719405],[-3.337702,56.716547],[-3.334878,56.714071],[-3.333989,56.712728],[-3.33266,56.712347],[-3.331801,56.710236],[-3.327906,56.70911],[-3.32473,56.709364],[-3.319287,56.710194],[-3.315284,56.709958],[-3.315248,56.708458],[-3.313837,56.707094],[-3.314031,56.706346],[-3.311768,56.704896],[-3.306808,56.702711],[-3.306609,56.698845],[-3.303099,56.696515],[-3.302024,56.694949],[-3.308529,56.689948],[-3.306821,56.68896],[-3.303132,56.688266],[-3.302955,56.686678],[-3.299396,56.683607],[-3.296066,56.683143],[-3.29349,56.682284],[-3.292753,56.681488],[-3.288083,56.679568],[-3.287243,56.678683],[-3.283801,56.677796],[-3.285839,56.677144],[-3.286787,56.676382],[-3.286765,56.668202],[-3.284108,56.665597],[-3.281185,56.665534],[-3.271848,56.666155],[-3.270522,56.667458],[-3.270032,56.669148],[-3.268841,56.670117],[-3.266916,56.670635],[-3.26411,56.670596],[-3.261038,56.6697],[-3.260381,56.668404],[-3.25305,56.665417],[-3.24951,56.663472],[-3.244819,56.662206],[-3.244301,56.661359],[-3.242201,56.660495],[-3.239308,56.659875],[-3.233987,56.65944],[-3.230533,56.658569],[-3.226024,56.657912],[-3.225082,56.658553],[-3.223683,56.658369],[-3.212743,56.655379],[-3.205078,56.654703],[-3.187193,56.654491],[-3.184661,56.653287],[-3.18313,56.652206],[-3.181336,56.65174],[-3.175738,56.651957],[-3.174771,56.652741],[-3.172718,56.653381],[-3.172673,56.654664],[-3.16976,56.655769],[-3.164889,56.655518],[-3.163052,56.65589],[-3.162116,56.655514],[-3.160095,56.656203],[-3.158359,56.655654],[-3.157222,56.656176],[-3.155561,56.65463],[-3.151321,56.653167],[-3.150742,56.65253],[-3.151869,56.65157],[-3.150272,56.649732],[-3.150145,56.648009],[-3.148787,56.6461],[-3.148634,56.643805],[-3.153674,56.637908],[-3.155886,56.637154],[-3.161051,56.636906],[-3.164722,56.636303],[-3.172803,56.635653],[-3.178138,56.635598],[-3.17846,56.635121],[-3.176724,56.634186],[-3.1781,56.632921],[-3.177775,56.630346],[-3.177082,56.629864],[-3.174705,56.62953],[-3.174327,56.628036],[-3.171352,56.62612],[-3.175613,56.624238],[-3.191285,56.621949],[-3.185845,56.617561],[-3.180941,56.615761],[-3.174092,56.617722],[-3.170716,56.617965],[-3.168799,56.617766],[-3.160898,56.619234],[-3.157534,56.617401],[-3.155705,56.614614],[-3.153064,56.613876],[-3.150892,56.610832],[-3.149922,56.608134],[-3.154143,56.608452],[-3.155814,56.606546],[-3.159522,56.606244],[-3.161205,56.605467],[-3.16219,56.604382],[-3.162198,56.603221],[-3.164058,56.602574],[-3.16597,56.601083],[-3.164426,56.600139],[-3.165867,56.5989],[-3.160767,56.599365],[-3.157212,56.598466],[-3.155495,56.599006],[-3.153101,56.599045],[-3.149343,56.598395],[-3.14825,56.597205],[-3.145986,56.595972],[-3.14446,56.595547],[-3.142732,56.596037],[-3.14246,56.596665],[-3.145128,56.596691],[-3.145388,56.597211],[-3.141995,56.597131],[-3.139561,56.597862],[-3.137032,56.597891],[-3.136152,56.598555],[-3.136765,56.599327],[-3.135637,56.600454],[-3.135517,56.601386],[-3.132736,56.601263],[-3.13225,56.601662],[-3.129814,56.601498],[-3.130605,56.602659],[-3.128273,56.60437],[-3.126194,56.604266],[-3.125754,56.605063],[-3.121702,56.607632],[-3.118544,56.607862],[-3.117282,56.608667],[-3.116743,56.609821],[-3.114892,56.610163],[-3.113109,56.609685],[-3.112916,56.611567],[-3.113855,56.612006],[-3.112918,56.613014],[-3.110652,56.612194],[-3.105364,56.613726],[-3.10162,56.614342],[-3.099908,56.615929],[-3.096009,56.615476],[-3.093963,56.616057],[-3.094737,56.616678],[-3.091311,56.617095],[-3.088144,56.613186],[-3.105274,56.607387],[-3.101418,56.605566],[-3.100126,56.603695],[-3.100262,56.601876],[-3.097947,56.598317],[-3.112137,56.593872],[-3.117317,56.590267],[-3.116479,56.589396],[-3.12301,56.584014],[-3.128112,56.581868],[-3.13266,56.579091],[-3.137706,56.577558],[-3.137802,56.576627],[-3.14021,56.576226],[-3.141839,56.576375],[-3.149386,56.574395],[-3.153044,56.574356],[-3.16399,56.569539],[-3.165582,56.569556],[-3.167147,56.568846],[-3.179469,56.566196],[-3.17944,56.56591],[-3.183607,56.564995],[-3.190205,56.561295],[-3.190363,56.556328],[-3.18911,56.555275],[-3.18554,56.554602],[-3.184029,56.553758],[-3.181702,56.551085],[-3.179307,56.546308],[-3.175447,56.543256],[-3.171177,56.542081],[-3.164045,56.53814],[-3.173623,56.530986],[-3.174061,56.529467],[-3.173024,56.526192],[-3.180272,56.525108],[-3.182398,56.524392],[-3.183912,56.523448],[-3.186048,56.523762],[-3.190378,56.52371],[-3.195172,56.524197],[-3.200857,56.5259],[-3.208661,56.525369],[-3.212066,56.524285],[-3.210309,56.52117],[-3.209015,56.519887],[-3.207257,56.519063],[-3.207219,56.518407],[-3.200765,56.515327],[-3.199814,56.514514],[-3.197352,56.514463],[-3.1942,56.51351],[-3.192484,56.512471],[-3.190132,56.510002],[-3.190133,56.508788],[-3.185982,56.508338],[-3.185553,56.507146],[-3.189172,56.506968],[-3.19344,56.505542],[-3.192539,56.503968],[-3.191567,56.503287],[-3.183792,56.50131],[-3.178562,56.498176],[-3.177594,56.496697],[-3.167299,56.493334],[-3.166829,56.492169],[-3.164165,56.491297],[-3.162195,56.490331],[-3.15737,56.490362],[-3.150823,56.48893],[-3.143517,56.488176],[-3.142043,56.487551],[-3.142342,56.483714],[-3.144112,56.480844],[-3.143629,56.479744],[-3.130116,56.479178],[-3.130609,56.477905],[-3.122182,56.477419],[-3.118744,56.476827],[-3.116567,56.474478],[-3.116847,56.474104],[-3.123437,56.474223],[-3.120624,56.468631],[-3.119612,56.467669],[-3.116352,56.467487],[-3.113452,56.467775],[-3.111282,56.467283],[-3.103909,56.467073],[-3.09782,56.467432],[-3.091893,56.467272],[-3.089427,56.466937],[-3.095874,56.475929],[-3.09719,56.47709],[-3.098041,56.47925],[-3.09301,56.479768],[-3.092656,56.480955],[-3.088384,56.480824],[-3.08414,56.478901],[-3.084503,56.480933],[-3.082017,56.483215],[-3.073588,56.484515],[-3.068501,56.484008],[-3.058292,56.483746],[-3.056468,56.482996],[-3.051219,56.482542],[-3.050939,56.489845],[-3.051342,56.492554],[-3.047484,56.491689],[-3.047272,56.492221],[-3.051312,56.493166],[-3.052033,56.496853],[-3.044958,56.498718],[-3.031777,56.500312],[-3.031727,56.502457],[-3.009781,56.50169],[-3.008055,56.501161],[-3.004776,56.498874],[-3.001323,56.497217],[-3.000931,56.498548],[-2.99712,56.498076],[-2.995143,56.498286],[-2.993088,56.496944],[-2.987379,56.495578],[-2.983013,56.496216],[-2.981743,56.494538],[-2.980884,56.494282],[-2.975413,56.495412],[-2.974483,56.4948],[-2.972117,56.494873],[-2.969604,56.494226],[-2.968089,56.495346],[-2.96846,56.500281],[-2.961927,56.500631],[-2.959506,56.500282],[-2.959857,56.499108],[-2.959024,56.498818],[-2.954784,56.499706],[-2.949315,56.499678],[-2.947204,56.503982],[-2.945786,56.503375],[-2.9431,56.500409],[-2.932475,56.501026],[-2.92636,56.502404],[-2.922482,56.502583],[-2.919765,56.500928],[-2.920496,56.50021],[-2.918382,56.496541],[-2.914478,56.496376],[-2.911993,56.49753],[-2.910464,56.497311],[-2.908162,56.497795],[-2.904538,56.495924],[-2.90212,56.495279],[-2.899226,56.495086],[-2.896508,56.493194],[-2.891642,56.493967],[-2.891102,56.493724],[-2.889065,56.495947],[-2.881641,56.494895],[-2.881192,56.493982],[-2.874899,56.494626],[-2.862672,56.496086],[-2.861755,56.495824],[-2.860607,56.492274],[-2.851575,56.492912],[-2.84983,56.491662],[-2.846031,56.491645],[-2.839405,56.492017],[-2.838353,56.492487],[-2.836016,56.490045],[-2.835646,56.488711],[-2.839353,56.486878],[-2.837611,56.485058],[-2.844053,56.480675],[-2.842631,56.478931],[-2.84549,56.478509],[-2.845716,56.4779],[-2.841125,56.475825],[-2.838673,56.474056],[-2.83641,56.475108],[-2.832641,56.476153],[-2.829792,56.47628],[-2.82357,56.477793],[-2.811788,56.478698],[-2.802826,56.48016],[-2.795858,56.480489],[-2.796468,56.479326],[-2.792605,56.479246],[-2.788731,56.478394],[-2.772116,56.473918],[-2.76789,56.472543],[-2.755655,56.467642],[-2.748705,56.465688],[-2.743684,56.464586],[-2.740539,56.464541],[-2.734586,56.465479],[-2.731524,56.467035],[-2.724687,56.473225],[-2.720674,56.479189],[-2.714487,56.493069],[-2.715058,56.494419],[-2.714851,56.495725],[-2.71313,56.496222],[-2.7083,56.499269],[-2.702505,56.500438],[-2.698781,56.500594],[-2.696543,56.501138],[-2.693443,56.503809],[-2.681835,56.50694],[-2.673532,56.50964],[-2.669952,56.511407],[-2.667761,56.51304],[-2.666003,56.515635],[-2.66484,56.516399],[-2.659677,56.51826],[-2.653678,56.521428],[-2.646333,56.52321],[-2.636105,56.526985],[-2.635065,56.52782],[-2.632841,56.531125],[-2.627221,56.536391],[-2.617704,56.543115],[-2.616723,56.544256],[-2.611996,56.547636],[-2.609584,56.548869],[-2.60529,56.550713],[-2.602197,56.551562],[-2.598562,56.551589],[-2.596463,56.551108],[-2.590916,56.551597],[-2.586907,56.552794],[-2.585892,56.55497],[-2.584979,56.555877],[-2.583419,56.556422],[-2.581326,56.555628],[-2.57622,56.556959],[-2.570438,56.559699],[-2.567749,56.560503],[-2.561636,56.561203],[-2.55694,56.560811],[-2.554734,56.560305],[-2.550259,56.561641],[-2.547822,56.562148],[-2.54575,56.56292],[-2.54608,56.563959],[-2.54434,56.564009],[-2.540345,56.565337],[-2.540252,56.566226],[-2.53817,56.56677],[-2.537937,56.568327],[-2.539353,56.568425],[-2.539857,56.569966],[-2.539071,56.570747],[-2.540323,56.572963],[-2.537511,56.575984],[-2.534304,56.576007],[-2.535006,56.576748],[-2.534147,56.578043],[-2.53244,56.578636],[-2.528416,56.579327],[-2.524359,56.579358],[-2.522273,56.581965],[-2.523172,56.582971],[-2.522536,56.584401],[-2.519845,56.585044],[-2.519792,56.585672],[-2.518004,56.586077],[-2.518951,56.587477],[-2.518938,56.589094],[-2.519614,56.590331],[-2.517738,56.592893],[-2.515049,56.59466],[-2.513449,56.595213],[-2.5133,56.595875],[-2.510692,56.59658],[-2.50912,56.597497],[-2.506842,56.597663],[-2.504329,56.599098],[-2.505148,56.600473],[-2.504392,56.601731],[-2.502262,56.602985],[-2.502228,56.604077],[-2.500987,56.60492],[-2.496101,56.606328],[-2.496517,56.607098],[-2.494131,56.609044],[-2.49488,56.609549],[-2.491628,56.612359],[-2.491427,56.613223],[-2.488387,56.614098],[-2.487227,56.615595],[-2.487909,56.616244],[-2.486723,56.617017],[-2.487454,56.617703],[-2.487186,56.61872],[-2.485967,56.620011],[-2.483592,56.621199],[-2.481988,56.620951],[-2.482782,56.622608],[-2.481847,56.624162],[-2.480213,56.623987],[-2.480182,56.624973],[-2.481823,56.626367],[-2.481182,56.627435],[-2.483056,56.628747],[-2.486548,56.629016],[-2.487406,56.629604],[-2.492454,56.630099],[-2.500734,56.629533],[-2.502668,56.630638],[-2.503682,56.631694],[-2.505806,56.635108],[-2.506876,56.639131],[-2.507141,56.642917],[-2.506703,56.648562],[-2.508096,56.650248],[-2.509085,56.650715],[-2.506474,56.651581],[-2.504491,56.653694],[-2.500118,56.662505],[-2.495984,56.663675],[-2.495531,56.664187],[-2.492089,56.665645],[-2.491465,56.666746],[-2.487699,56.667633],[-2.48759,56.668149],[-2.484262,56.668607],[-2.483718,56.670009],[-2.483917,56.671341],[-2.480919,56.672393],[-2.476388,56.672173],[-2.469547,56.672825],[-2.467965,56.673915],[-2.466628,56.674],[-2.466601,56.675673],[-2.465144,56.676027],[-2.464239,56.675332],[-2.462225,56.676204],[-2.461172,56.676147],[-2.458732,56.677411],[-2.455428,56.678359],[-2.454715,56.678077],[-2.452008,56.678327],[-2.450142,56.679351],[-2.449748,56.680203],[-2.450673,56.680983],[-2.448188,56.681557],[-2.448142,56.680732],[-2.446917,56.680049],[-2.446125,56.681298],[-2.447268,56.681484],[-2.449126,56.68341],[-2.447274,56.683968],[-2.446152,56.685246],[-2.444544,56.686086],[-2.440879,56.686704],[-2.440027,56.688424],[-2.441054,56.689223],[-2.439175,56.689584],[-2.439834,56.691913],[-2.442213,56.691661],[-2.443531,56.693253],[-2.441335,56.694952],[-2.442704,56.695964],[-2.441889,56.697791],[-2.44038,56.699074],[-2.436322,56.699911],[-2.435887,56.700982],[-2.436623,56.701829],[-2.439428,56.701673],[-2.440328,56.70221],[-2.442751,56.702284],[-2.444624,56.70199],[-2.449641,56.702147],[-2.46272,56.701664],[-2.465058,56.701775],[-2.469009,56.702387],[-2.473041,56.704358],[-2.474758,56.70431],[-2.476,56.704908],[-2.479714,56.704321],[-2.480932,56.703543],[-2.481789,56.701782],[-2.479943,56.700465],[-2.480059,56.699716],[-2.483877,56.699443],[-2.48531,56.699731],[-2.487418,56.701052],[-2.488412,56.700945],[-2.491031,56.69945],[-2.493127,56.699103],[-2.502149,56.698642],[-2.504223,56.698931],[-2.511249,56.698575],[-2.514617,56.698798],[-2.516293,56.698548],[-2.522484,56.700658],[-2.52482,56.703792],[-2.528191,56.705098],[-2.531377,56.705433],[-2.532292,56.708649],[-2.534687,56.710856],[-2.536366,56.711646],[-2.539545,56.711922],[-2.54224,56.712991],[-2.543181,56.715345],[-2.544153,56.715967],[-2.547145,56.716184],[-2.555652,56.716101],[-2.552865,56.716631],[-2.549989,56.716398],[-2.54469,56.71652],[-2.542959,56.715695],[-2.541805,56.713422],[-2.540928,56.712716],[-2.538553,56.712204],[-2.534542,56.712167],[-2.532755,56.713907],[-2.5317,56.714476],[-2.535492,56.716187],[-2.537173,56.717636],[-2.540006,56.718631],[-2.538992,56.719485],[-2.537438,56.718942],[-2.533746,56.716702],[-2.53163,56.716201],[-2.530065,56.715195],[-2.530706,56.713309],[-2.53269,56.712092],[-2.530833,56.710296],[-2.528058,56.710098],[-2.526423,56.710844],[-2.526415,56.711931],[-2.523385,56.714627],[-2.521786,56.71566],[-2.520266,56.717589],[-2.518553,56.718773],[-2.518773,56.720166],[-2.517877,56.721341],[-2.515926,56.722256],[-2.515859,56.723478],[-2.512421,56.723201],[-2.510622,56.723669],[-2.508993,56.723266],[-2.497083,56.722409],[-2.495295,56.7215],[-2.492199,56.722068],[-2.482299,56.720648],[-2.478259,56.721161],[-2.477404,56.721588],[-2.474347,56.719933],[-2.475143,56.718231],[-2.473312,56.716642],[-2.475421,56.716225],[-2.473933,56.714568],[-2.472305,56.714245],[-2.47322,56.710832],[-2.475929,56.707778],[-2.474976,56.706703],[-2.471014,56.70663],[-2.465709,56.703847],[-2.464016,56.703325],[-2.454573,56.703487],[-2.452219,56.704369],[-2.450173,56.707397],[-2.449015,56.710802],[-2.447809,56.711741],[-2.447294,56.7144],[-2.447829,56.715936],[-2.447421,56.717108],[-2.44146,56.730014],[-2.434865,56.740968],[-2.426943,56.752116],[-2.4282,56.75145],[-2.432094,56.750637],[-2.439295,56.750675],[-2.444082,56.751052],[-2.444918,56.751678]]]},"properties":{"LAD22CD":"S12000041","LAD22NM":"Angus","BNG_E":345506,"BNG_N":759636,"LONG":-2.8921,"LAT":56.72518,"GlobalID":"142695c6-4cfc-421a-abaf-71d13c30c3bf"},"id":346}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.838673,56.474056],[-2.841125,56.475825],[-2.845716,56.4779],[-2.84549,56.478509],[-2.842631,56.478931],[-2.844053,56.480675],[-2.837611,56.485058],[-2.839353,56.486878],[-2.835646,56.488711],[-2.836016,56.490045],[-2.838353,56.492487],[-2.839405,56.492017],[-2.846031,56.491645],[-2.84983,56.491662],[-2.851575,56.492912],[-2.860607,56.492274],[-2.861755,56.495824],[-2.862672,56.496086],[-2.874899,56.494626],[-2.881192,56.493982],[-2.881641,56.494895],[-2.889065,56.495947],[-2.891102,56.493724],[-2.891642,56.493967],[-2.896508,56.493194],[-2.899226,56.495086],[-2.90212,56.495279],[-2.904538,56.495924],[-2.908162,56.497795],[-2.910464,56.497311],[-2.911993,56.49753],[-2.914478,56.496376],[-2.918382,56.496541],[-2.920496,56.50021],[-2.919765,56.500928],[-2.922482,56.502583],[-2.92636,56.502404],[-2.932475,56.501026],[-2.9431,56.500409],[-2.945786,56.503375],[-2.947204,56.503982],[-2.949315,56.499678],[-2.954784,56.499706],[-2.959024,56.498818],[-2.959857,56.499108],[-2.959506,56.500282],[-2.961927,56.500631],[-2.96846,56.500281],[-2.968089,56.495346],[-2.969604,56.494226],[-2.972117,56.494873],[-2.974483,56.4948],[-2.975413,56.495412],[-2.980884,56.494282],[-2.981743,56.494538],[-2.983013,56.496216],[-2.987379,56.495578],[-2.993088,56.496944],[-2.995143,56.498286],[-2.99712,56.498076],[-3.000931,56.498548],[-3.001323,56.497217],[-3.004776,56.498874],[-3.008055,56.501161],[-3.009781,56.50169],[-3.031727,56.502457],[-3.031777,56.500312],[-3.044958,56.498718],[-3.052033,56.496853],[-3.051312,56.493166],[-3.047272,56.492221],[-3.047484,56.491689],[-3.051342,56.492554],[-3.050939,56.489845],[-3.051219,56.482542],[-3.056468,56.482996],[-3.058292,56.483746],[-3.068501,56.484008],[-3.073588,56.484515],[-3.082017,56.483215],[-3.084503,56.480933],[-3.08414,56.478901],[-3.088384,56.480824],[-3.092656,56.480955],[-3.09301,56.479768],[-3.098041,56.47925],[-3.09719,56.47709],[-3.095874,56.475929],[-3.089427,56.466937],[-3.087476,56.461922],[-3.080308,56.46181],[-3.070643,56.462178],[-3.067027,56.462864],[-3.064439,56.463752],[-3.062749,56.464767],[-3.057853,56.463042],[-3.053882,56.460694],[-3.053821,56.459219],[-3.052648,56.458858],[-3.051695,56.458339],[-3.048164,56.45648],[-3.044494,56.452608],[-3.041391,56.451351],[-3.037967,56.450971],[-3.031879,56.451558],[-3.029024,56.451347],[-2.988938,56.451322],[-2.988188,56.451398],[-2.976261,56.453673],[-2.966935,56.456848],[-2.962915,56.458896],[-2.955544,56.461225],[-2.952626,56.461891],[-2.953135,56.462763],[-2.95483,56.462326],[-2.955772,56.463687],[-2.952789,56.464304],[-2.95114,56.462302],[-2.94301,56.464188],[-2.932998,56.465283],[-2.930897,56.465669],[-2.929178,56.465409],[-2.926923,56.465715],[-2.92521,56.465293],[-2.917276,56.465492],[-2.917392,56.467148],[-2.909345,56.468025],[-2.904778,56.467859],[-2.898911,56.468354],[-2.894644,56.468099],[-2.891515,56.468625],[-2.888627,56.468743],[-2.886035,56.468067],[-2.879536,56.465389],[-2.876381,56.464864],[-2.872798,56.464698],[-2.870817,56.464056],[-2.870177,56.462441],[-2.865075,56.464014],[-2.858172,56.467035],[-2.854245,56.467855],[-2.84853,56.468454],[-2.84414,56.471476],[-2.838673,56.474056]]]},"properties":{"LAD22CD":"S12000042","LAD22NM":"Dundee City","BNG_E":340291,"BNG_N":732145,"LONG":-2.97095,"LAT":56.4776,"GlobalID":"4b739d08-ae1b-4b4f-849a-94b864a7796d"},"id":347}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.152376,56.008036],[-4.15392,56.009699],[-4.156356,56.011665],[-4.157333,56.013513],[-4.156736,56.01417],[-4.155613,56.017757],[-4.156707,56.019397],[-4.156753,56.020802],[-4.158096,56.022581],[-4.156808,56.025241],[-4.158275,56.026361],[-4.158682,56.027333],[-4.161191,56.028435],[-4.162723,56.030291],[-4.166838,56.028956],[-4.168839,56.029245],[-4.168584,56.02818],[-4.169855,56.02725],[-4.169467,56.026335],[-4.170364,56.025879],[-4.170832,56.0245],[-4.172098,56.023175],[-4.171902,56.022689],[-4.174075,56.021235],[-4.173527,56.020049],[-4.173652,56.018712],[-4.17452,56.018014],[-4.178128,56.01684],[-4.180628,56.016796],[-4.181696,56.015528],[-4.184745,56.014553],[-4.185949,56.013714],[-4.187313,56.013568],[-4.19089,56.011999],[-4.194875,56.011695],[-4.197226,56.010803],[-4.198047,56.010121],[-4.206671,56.016984],[-4.212936,56.016962],[-4.218856,56.018212],[-4.219827,56.019475],[-4.222531,56.02033],[-4.24102,56.016508],[-4.250481,56.015998],[-4.256994,56.017227],[-4.259145,56.019435],[-4.26169,56.021114],[-4.264394,56.021657],[-4.266573,56.022696],[-4.269224,56.022624],[-4.273013,56.023053],[-4.273194,56.025863],[-4.275145,56.027786],[-4.275263,56.02871],[-4.281417,56.028416],[-4.290947,56.02699],[-4.296324,56.025655],[-4.297587,56.023955],[-4.296292,56.022811],[-4.296278,56.020151],[-4.299146,56.018057],[-4.299021,56.016622],[-4.2956,56.014142],[-4.294042,56.011816],[-4.29409,56.008688],[-4.28805,56.003938],[-4.283025,55.99911],[-4.276467,55.996953],[-4.275029,55.993219],[-4.275478,55.983296],[-4.27427,55.976876],[-4.278892,55.977114],[-4.280547,55.975272],[-4.272652,55.965344],[-4.281671,55.967055],[-4.288637,55.966831],[-4.290329,55.964481],[-4.292784,55.964263],[-4.29363,55.96283],[-4.287855,55.960892],[-4.28596,55.958973],[-4.286401,55.957782],[-4.295131,55.9586],[-4.301203,55.957334],[-4.303703,55.957222],[-4.309033,55.958084],[-4.312637,55.959026],[-4.314487,55.960009],[-4.315609,55.959306],[-4.31941,55.959986],[-4.320296,55.95843],[-4.327739,55.958745],[-4.330935,55.958234],[-4.332631,55.95908],[-4.33521,55.959415],[-4.336545,55.96056],[-4.338171,55.960769],[-4.339215,55.961562],[-4.342966,55.962666],[-4.346437,55.966191],[-4.34755,55.966666],[-4.348968,55.969008],[-4.351465,55.971541],[-4.353353,55.971567],[-4.355536,55.972919],[-4.357622,55.973152],[-4.359411,55.973917],[-4.364077,55.976602],[-4.363145,55.977734],[-4.366375,55.980412],[-4.372206,55.980631],[-4.375342,55.981062],[-4.380499,55.979368],[-4.381359,55.9798],[-4.38369,55.979908],[-4.387865,55.979041],[-4.392842,55.978464],[-4.398209,55.976589],[-4.398986,55.975554],[-4.398152,55.973089],[-4.399461,55.971972],[-4.402038,55.971829],[-4.400776,55.968095],[-4.399128,55.966981],[-4.400233,55.963985],[-4.400217,55.96243],[-4.398037,55.95841],[-4.399009,55.957034],[-4.398061,55.955296],[-4.393945,55.953611],[-4.387183,55.952959],[-4.386503,55.952451],[-4.385468,55.945775],[-4.387412,55.945872],[-4.389653,55.945106],[-4.389897,55.943139],[-4.388854,55.942526],[-4.38857,55.941352],[-4.386836,55.939879],[-4.387852,55.937886],[-4.389114,55.936561],[-4.388978,55.933934],[-4.382607,55.933563],[-4.38249,55.932209],[-4.38026,55.931778],[-4.380229,55.930203],[-4.38407,55.928129],[-4.383695,55.92654],[-4.381452,55.926804],[-4.380208,55.9239],[-4.381751,55.922655],[-4.379617,55.92098],[-4.37074,55.920708],[-4.364162,55.921097],[-4.36149,55.920363],[-4.359174,55.920883],[-4.357548,55.920738],[-4.350069,55.917106],[-4.346215,55.916492],[-4.34809,55.915831],[-4.348673,55.915159],[-4.347505,55.91384],[-4.348397,55.91268],[-4.347586,55.911921],[-4.349401,55.910029],[-4.348608,55.908771],[-4.348926,55.906201],[-4.345068,55.90553],[-4.341607,55.904296],[-4.33678,55.904193],[-4.334872,55.903847],[-4.33289,55.903025],[-4.327841,55.89969],[-4.324073,55.900653],[-4.319446,55.901193],[-4.320206,55.90187],[-4.319582,55.902969],[-4.317358,55.904422],[-4.315686,55.906337],[-4.313332,55.907096],[-4.309458,55.906941],[-4.307004,55.905684],[-4.303671,55.906056],[-4.300566,55.905524],[-4.30018,55.905899],[-4.301135,55.907758],[-4.300969,55.908789],[-4.296623,55.909432],[-4.294589,55.91026],[-4.293762,55.911589],[-4.291121,55.911476],[-4.290421,55.911792],[-4.291977,55.914314],[-4.296079,55.914982],[-4.301264,55.916363],[-4.299662,55.919034],[-4.299125,55.920748],[-4.29805,55.929167],[-4.295886,55.928463],[-4.284265,55.927596],[-4.281979,55.927725],[-4.279261,55.928555],[-4.277991,55.92939],[-4.276344,55.929635],[-4.273665,55.929098],[-4.270776,55.928039],[-4.268578,55.928582],[-4.267094,55.92728],[-4.26796,55.927003],[-4.268213,55.925362],[-4.269866,55.923343],[-4.268804,55.921885],[-4.268795,55.920217],[-4.266081,55.919843],[-4.263706,55.918882],[-4.260252,55.912923],[-4.256198,55.914095],[-4.255551,55.913055],[-4.251085,55.911018],[-4.253135,55.909887],[-4.251645,55.908777],[-4.249394,55.909031],[-4.248624,55.907391],[-4.24915,55.906525],[-4.24676,55.903666],[-4.241219,55.904226],[-4.241039,55.904622],[-4.237701,55.904764],[-4.23707,55.902077],[-4.237594,55.901419],[-4.236562,55.899583],[-4.236365,55.898307],[-4.235572,55.897488],[-4.236359,55.896837],[-4.22596,55.896084],[-4.226175,55.896731],[-4.216586,55.897734],[-4.214253,55.897664],[-4.212877,55.897265],[-4.210839,55.897607],[-4.206861,55.897495],[-4.200741,55.898401],[-4.19887,55.898007],[-4.193648,55.899258],[-4.190849,55.899583],[-4.190709,55.900975],[-4.182449,55.902963],[-4.180416,55.904909],[-4.180704,55.905303],[-4.183984,55.905057],[-4.185091,55.906196],[-4.188634,55.907787],[-4.193481,55.908295],[-4.193613,55.911726],[-4.194474,55.913082],[-4.180695,55.915224],[-4.17159,55.91673],[-4.17181,55.915685],[-4.170225,55.915786],[-4.169468,55.916419],[-4.166338,55.91638],[-4.15637,55.91504],[-4.155389,55.913193],[-4.145876,55.913358],[-4.144876,55.913129],[-4.137539,55.913684],[-4.133664,55.914702],[-4.13174,55.914201],[-4.131284,55.912629],[-4.129644,55.911256],[-4.124683,55.911564],[-4.116133,55.914278],[-4.115859,55.914507],[-4.117807,55.919204],[-4.112185,55.918981],[-4.109237,55.917471],[-4.109744,55.919816],[-4.111365,55.92327],[-4.09639,55.923524],[-4.090391,55.924083],[-4.084022,55.924186],[-4.075507,55.924634],[-4.06932,55.925705],[-4.068774,55.925017],[-4.066066,55.923793],[-4.064323,55.92405],[-4.062478,55.923287],[-4.05793,55.92351],[-4.058389,55.925341],[-4.05792,55.926691],[-4.062915,55.931131],[-4.070699,55.942277],[-4.07144,55.943916],[-4.0668,55.946246],[-4.061828,55.947966],[-4.056127,55.949544],[-4.047576,55.951213],[-4.046862,55.952262],[-4.047723,55.954793],[-4.050042,55.955093],[-4.051883,55.953907],[-4.053401,55.953727],[-4.054363,55.954688],[-4.052029,55.955985],[-4.055589,55.957628],[-4.054671,55.958492],[-4.054785,55.960163],[-4.051369,55.962368],[-4.051038,55.96428],[-4.053219,55.965809],[-4.055937,55.966835],[-4.056576,55.968063],[-4.062778,55.968204],[-4.067873,55.967568],[-4.0763,55.965712],[-4.085641,55.962606],[-4.087245,55.963295],[-4.090888,55.961745],[-4.091771,55.960577],[-4.098193,55.959469],[-4.102936,55.958263],[-4.104982,55.955355],[-4.109503,55.95308],[-4.113503,55.952696],[-4.114715,55.953177],[-4.117142,55.953104],[-4.11836,55.953461],[-4.119569,55.952644],[-4.122999,55.953089],[-4.124666,55.955985],[-4.12209,55.95767],[-4.120062,55.958086],[-4.117155,55.959768],[-4.113656,55.960294],[-4.111382,55.961188],[-4.112187,55.962492],[-4.111784,55.96298],[-4.114389,55.964416],[-4.113998,55.965362],[-4.116164,55.966434],[-4.11663,55.968187],[-4.115614,55.969687],[-4.1164,55.970868],[-4.115064,55.972106],[-4.115796,55.972724],[-4.113493,55.975457],[-4.113026,55.977268],[-4.113759,55.97754],[-4.117327,55.977692],[-4.118765,55.979222],[-4.121359,55.98137],[-4.123574,55.981566],[-4.128781,55.985736],[-4.131561,55.986456],[-4.134076,55.99078],[-4.146074,55.996355],[-4.149329,55.999381],[-4.15076,56.00176],[-4.152777,56.006443],[-4.152376,56.008036]]]},"properties":{"LAD22CD":"S12000045","LAD22NM":"East Dunbartonshire","BNG_E":261240,"BNG_N":676154,"LONG":-4.22417,"LAT":55.95829,"GlobalID":"989ac3b6-357b-428b-80bc-9cd4f62564be"},"id":348}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.302574,56.030941],[-3.304885,56.029784],[-3.306,56.028516],[-3.308356,56.027426],[-3.302899,56.027352],[-3.302896,56.02868],[-3.301331,56.029797],[-3.300194,56.029792],[-3.297812,56.028529],[-3.297164,56.029151],[-3.298498,56.03056],[-3.302509,56.030326],[-3.302574,56.030941]]],[[[-3.136362,56.035855],[-3.137758,56.036934],[-3.138569,56.035044],[-3.140821,56.034942],[-3.140817,56.033994],[-3.138058,56.032146],[-3.136722,56.032262],[-3.135395,56.03134],[-3.135288,56.030424],[-3.132273,56.027779],[-3.130215,56.027883],[-3.132599,56.031213],[-3.132119,56.031532],[-3.133863,56.033016],[-3.136362,56.035855]]],[[[-2.559023,56.189131],[-2.561163,56.189609],[-2.562599,56.189091],[-2.563101,56.187633],[-2.562425,56.186431],[-2.558297,56.184865],[-2.558785,56.184546],[-2.55712,56.183156],[-2.555695,56.182972],[-2.554604,56.182206],[-2.551855,56.181788],[-2.55108,56.180851],[-2.549644,56.180531],[-2.54583,56.180992],[-2.547584,56.181762],[-2.549613,56.183718],[-2.549339,56.18487],[-2.551697,56.185415],[-2.553091,56.186938],[-2.557349,56.18798],[-2.559023,56.189131]]],[[[-2.562479,56.191997],[-2.566245,56.191052],[-2.562731,56.18962],[-2.559238,56.190075],[-2.562479,56.191997]]],[[[-3.738583,56.078375],[-3.736593,56.078624],[-3.736598,56.075736],[-3.724307,56.068901],[-3.724246,56.067752],[-3.7228,56.065956],[-3.721387,56.065196],[-3.708396,56.05636],[-3.702443,56.053524],[-3.693474,56.050451],[-3.685362,56.04784],[-3.674469,56.046428],[-3.66838,56.046545],[-3.664324,56.04727],[-3.661291,56.048253],[-3.652751,56.052344],[-3.647131,56.05296],[-3.64556,56.053389],[-3.638653,56.054585],[-3.632738,56.054677],[-3.627939,56.054264],[-3.622173,56.055295],[-3.62268,56.055909],[-3.617571,56.055959],[-3.615487,56.055513],[-3.613459,56.054175],[-3.611455,56.048769],[-3.610441,56.047429],[-3.608766,56.046305],[-3.606079,56.045699],[-3.593417,56.045879],[-3.591048,56.046399],[-3.589041,56.047438],[-3.587406,56.049025],[-3.586473,56.050872],[-3.586621,56.053649],[-3.585878,56.054374],[-3.587127,56.055448],[-3.586751,56.056085],[-3.590503,56.058157],[-3.589759,56.059676],[-3.585754,56.058577],[-3.575533,56.058855],[-3.572614,56.05789],[-3.570124,56.05654],[-3.568528,56.055211],[-3.566122,56.053709],[-3.564164,56.053082],[-3.561515,56.050943],[-3.558694,56.049379],[-3.556252,56.04634],[-3.556057,56.044496],[-3.553774,56.044017],[-3.551407,56.042482],[-3.546697,56.041019],[-3.546135,56.040459],[-3.543474,56.040061],[-3.53143,56.039801],[-3.530981,56.039181],[-3.528049,56.039493],[-3.527086,56.041423],[-3.525445,56.041705],[-3.521405,56.041704],[-3.513673,56.040447],[-3.512339,56.039081],[-3.507213,56.035047],[-3.503408,56.03467],[-3.502428,56.035453],[-3.498462,56.034998],[-3.493493,56.035267],[-3.490997,56.034831],[-3.487272,56.034646],[-3.482228,56.033846],[-3.48064,56.032288],[-3.47567,56.031027],[-3.473348,56.03116],[-3.47005,56.029472],[-3.469118,56.029447],[-3.465216,56.030459],[-3.463167,56.030201],[-3.459611,56.029032],[-3.459187,56.027868],[-3.462756,56.02402],[-3.457334,56.023104],[-3.457704,56.021673],[-3.456095,56.020445],[-3.451859,56.01953],[-3.450641,56.019523],[-3.442803,56.017909],[-3.445875,56.019422],[-3.445562,56.020224],[-3.448904,56.021073],[-3.448173,56.021938],[-3.446852,56.02202],[-3.446084,56.023203],[-3.445009,56.023323],[-3.443974,56.024906],[-3.441861,56.024476],[-3.442663,56.023095],[-3.440924,56.022725],[-3.439986,56.024093],[-3.438516,56.023697],[-3.439426,56.022231],[-3.418298,56.0178],[-3.409064,56.016203],[-3.409608,56.015494],[-3.407447,56.012785],[-3.404303,56.010613],[-3.404258,56.009645],[-3.401165,56.009093],[-3.396014,56.010008],[-3.391797,56.006893],[-3.390853,56.005822],[-3.388825,56.007387],[-3.389312,56.009276],[-3.391131,56.009992],[-3.38838,56.010798],[-3.387704,56.011435],[-3.388823,56.014279],[-3.390613,56.01523],[-3.390442,56.017118],[-3.388227,56.019139],[-3.388041,56.022444],[-3.389586,56.022906],[-3.394599,56.022862],[-3.395561,56.023711],[-3.39774,56.023281],[-3.401723,56.023096],[-3.400191,56.023922],[-3.401475,56.024558],[-3.400109,56.026147],[-3.398567,56.025635],[-3.395298,56.02671],[-3.394155,56.027517],[-3.391465,56.026468],[-3.390131,56.025424],[-3.384192,56.025483],[-3.382121,56.026693],[-3.380412,56.027057],[-3.37722,56.02899],[-3.374817,56.029317],[-3.372969,56.029125],[-3.371908,56.028164],[-3.3698,56.02802],[-3.369963,56.027237],[-3.365885,56.027485],[-3.364365,56.026803],[-3.363552,56.025872],[-3.361182,56.026937],[-3.357075,56.02613],[-3.356188,56.026823],[-3.352272,56.028091],[-3.352082,56.029023],[-3.350265,56.030462],[-3.348179,56.031174],[-3.346315,56.03088],[-3.345767,56.032175],[-3.343815,56.032947],[-3.341908,56.033088],[-3.341421,56.034076],[-3.342621,56.035094],[-3.346724,56.035846],[-3.345761,56.037608],[-3.343244,56.038466],[-3.336946,56.039422],[-3.329631,56.03949],[-3.323956,56.038204],[-3.323115,56.037623],[-3.322501,56.034777],[-3.321177,56.034211],[-3.318657,56.034938],[-3.317287,56.036392],[-3.313113,56.036707],[-3.313617,56.037585],[-3.310905,56.039295],[-3.308728,56.038917],[-3.306997,56.039751],[-3.307643,56.040825],[-3.309916,56.040431],[-3.310916,56.040964],[-3.311252,56.042168],[-3.310525,56.043663],[-3.307749,56.045153],[-3.305696,56.04477],[-3.305259,56.046363],[-3.303859,56.047796],[-3.301507,56.04803],[-3.299798,56.047256],[-3.297267,56.051047],[-3.293709,56.052935],[-3.290145,56.0513],[-3.28883,56.050237],[-3.287749,56.050041],[-3.283613,56.050393],[-3.286954,56.05209],[-3.286643,56.053369],[-3.284266,56.056152],[-3.279843,56.056586],[-3.268343,56.058758],[-3.267247,56.059198],[-3.261972,56.059798],[-3.259136,56.058992],[-3.256417,56.060061],[-3.254628,56.060172],[-3.250902,56.061012],[-3.248537,56.058664],[-3.246872,56.057511],[-3.245253,56.05755],[-3.243696,56.056716],[-3.240413,56.055827],[-3.240459,56.056864],[-3.235236,56.055406],[-3.234822,56.054252],[-3.224395,56.057188],[-3.223185,56.058651],[-3.223779,56.0596],[-3.225546,56.060217],[-3.225505,56.060775],[-3.221983,56.062675],[-3.220296,56.062728],[-3.21945,56.063354],[-3.216794,56.06383],[-3.208855,56.064345],[-3.20354,56.064376],[-3.199939,56.063902],[-3.196274,56.062375],[-3.191395,56.063465],[-3.187596,56.063367],[-3.184873,56.064071],[-3.183305,56.063798],[-3.181065,56.062806],[-3.177806,56.062061],[-3.176513,56.062634],[-3.175231,56.062392],[-3.173289,56.06343],[-3.172818,56.064456],[-3.174315,56.066371],[-3.173598,56.068721],[-3.171767,56.069573],[-3.170669,56.069073],[-3.168933,56.071931],[-3.168041,56.072603],[-3.166072,56.072786],[-3.165818,56.074378],[-3.164288,56.074843],[-3.163476,56.078536],[-3.162207,56.080345],[-3.160208,56.08123],[-3.159971,56.083417],[-3.158939,56.083732],[-3.158498,56.085046],[-3.158954,56.087829],[-3.159796,56.089295],[-3.1593,56.090042],[-3.160506,56.092274],[-3.160006,56.098475],[-3.159578,56.10149],[-3.154281,56.11216],[-3.153254,56.113452],[-3.151772,56.113715],[-3.152421,56.114938],[-3.150762,56.116826],[-3.149887,56.115884],[-3.150506,56.114835],[-3.148555,56.114072],[-3.14491,56.117569],[-3.141016,56.119764],[-3.138519,56.119961],[-3.13608,56.119092],[-3.131562,56.119325],[-3.128982,56.121245],[-3.126756,56.121243],[-3.124336,56.122322],[-3.123633,56.12163],[-3.121998,56.123264],[-3.11955,56.124332],[-3.117954,56.126948],[-3.115728,56.129206],[-3.112326,56.130719],[-3.111077,56.130838],[-3.1103,56.131866],[-3.108687,56.132736],[-3.106693,56.132908],[-3.104983,56.133518],[-3.100392,56.137727],[-3.095688,56.139919],[-3.093965,56.140081],[-3.090277,56.139185],[-3.08544,56.139444],[-3.084095,56.140121],[-3.07849,56.145964],[-3.076245,56.147525],[-3.073968,56.149769],[-3.069234,56.152509],[-3.06809,56.154182],[-3.06371,56.158238],[-3.06183,56.159432],[-3.059939,56.160101],[-3.053541,56.164021],[-3.051825,56.164464],[-3.046195,56.167685],[-3.043626,56.168336],[-3.03924,56.1671],[-3.038121,56.166216],[-3.036266,56.166571],[-3.032276,56.169254],[-3.026466,56.172096],[-3.022247,56.172839],[-3.017775,56.174444],[-3.017672,56.176085],[-3.01619,56.17752],[-3.016029,56.178251],[-3.013332,56.180346],[-3.01085,56.181188],[-3.010155,56.182067],[-3.007185,56.181949],[-3.004898,56.185584],[-3.004435,56.184966],[-3.002483,56.184731],[-3.000212,56.185691],[-2.996786,56.188511],[-2.996729,56.190584],[-2.998462,56.191721],[-2.998277,56.192511],[-2.996245,56.192411],[-2.991924,56.194473],[-2.9831,56.20024],[-2.97835,56.202057],[-2.967146,56.207384],[-2.963441,56.208635],[-2.955157,56.210336],[-2.952073,56.210386],[-2.94783,56.211325],[-2.943202,56.211478],[-2.941277,56.211913],[-2.935333,56.212438],[-2.924731,56.212203],[-2.909974,56.210426],[-2.906008,56.209078],[-2.902779,56.208673],[-2.899378,56.207767],[-2.897001,56.207714],[-2.892986,56.206711],[-2.883648,56.202744],[-2.877988,56.199039],[-2.875626,56.196299],[-2.876149,56.195461],[-2.880663,56.194869],[-2.882044,56.193008],[-2.879991,56.192778],[-2.878555,56.193266],[-2.874653,56.193801],[-2.873878,56.194759],[-2.872305,56.194958],[-2.870183,56.194697],[-2.867119,56.193617],[-2.865989,56.192799],[-2.867171,56.192356],[-2.866222,56.189988],[-2.866847,56.188967],[-2.869273,56.188003],[-2.86843,56.187149],[-2.864604,56.187314],[-2.862736,56.186759],[-2.859661,56.187941],[-2.856041,56.188929],[-2.851954,56.188959],[-2.847895,56.187726],[-2.844633,56.185838],[-2.843913,56.183753],[-2.839935,56.183813],[-2.838631,56.183371],[-2.836562,56.183978],[-2.837737,56.184868],[-2.837962,56.185788],[-2.834523,56.18753],[-2.831399,56.188636],[-2.826899,56.189744],[-2.825218,56.189848],[-2.821738,56.189318],[-2.818929,56.189689],[-2.817788,56.189494],[-2.815871,56.18782],[-2.811971,56.186953],[-2.810875,56.185725],[-2.813492,56.184501],[-2.811945,56.183513],[-2.808416,56.185179],[-2.808403,56.18658],[-2.805314,56.188422],[-2.803413,56.188983],[-2.803186,56.190182],[-2.800296,56.193142],[-2.797947,56.193801],[-2.796364,56.195243],[-2.794294,56.195412],[-2.792662,56.19677],[-2.790718,56.197312],[-2.78824,56.197387],[-2.785365,56.199333],[-2.78302,56.199733],[-2.781561,56.2009],[-2.778624,56.20117],[-2.778409,56.200585],[-2.775849,56.200873],[-2.773552,56.201922],[-2.771826,56.201745],[-2.770474,56.203211],[-2.769364,56.202876],[-2.766712,56.204742],[-2.761476,56.20488],[-2.758699,56.20581],[-2.753208,56.206489],[-2.745643,56.20991],[-2.743121,56.210677],[-2.738896,56.210746],[-2.736241,56.210474],[-2.734631,56.212178],[-2.731364,56.211636],[-2.728523,56.212043],[-2.727515,56.212777],[-2.724978,56.212728],[-2.719298,56.214981],[-2.713493,56.214753],[-2.710563,56.215078],[-2.708316,56.216084],[-2.708025,56.217684],[-2.705208,56.218801],[-2.704934,56.220756],[-2.702312,56.221995],[-2.700319,56.222561],[-2.69583,56.221513],[-2.69502,56.222007],[-2.689216,56.222775],[-2.68741,56.222705],[-2.686967,56.22347],[-2.68483,56.224281],[-2.684163,56.225062],[-2.681496,56.226304],[-2.680428,56.228223],[-2.679139,56.22896],[-2.678121,56.230298],[-2.675612,56.231755],[-2.675391,56.232613],[-2.668996,56.235337],[-2.662175,56.236542],[-2.658382,56.238256],[-2.654572,56.239228],[-2.651906,56.240966],[-2.649149,56.242048],[-2.64794,56.242897],[-2.64663,56.242994],[-2.641262,56.246564],[-2.639956,56.247023],[-2.63963,56.248424],[-2.638462,56.249448],[-2.635639,56.250444],[-2.634186,56.251679],[-2.631314,56.252528],[-2.630577,56.253442],[-2.629281,56.253282],[-2.628522,56.254289],[-2.63004,56.255416],[-2.63005,56.257121],[-2.62605,56.258069],[-2.625258,56.257792],[-2.622607,56.259086],[-2.622202,56.259945],[-2.620637,56.261036],[-2.618181,56.261808],[-2.614867,56.262042],[-2.612942,56.2611],[-2.608361,56.262083],[-2.604054,56.263534],[-2.60288,56.263544],[-2.601751,56.26437],[-2.600442,56.267298],[-2.598938,56.267301],[-2.595748,56.269028],[-2.592814,56.272308],[-2.59113,56.272259],[-2.590322,56.27424],[-2.589449,56.275327],[-2.587802,56.276214],[-2.587469,56.277087],[-2.585348,56.279093],[-2.587633,56.27914],[-2.588387,56.280235],[-2.589766,56.280259],[-2.590014,56.281833],[-2.592822,56.282406],[-2.595192,56.282052],[-2.596765,56.282521],[-2.598311,56.284053],[-2.599326,56.286631],[-2.601225,56.286802],[-2.603693,56.286127],[-2.606534,56.287213],[-2.607979,56.286911],[-2.609137,56.286053],[-2.61285,56.28647],[-2.617295,56.288192],[-2.617462,56.289222],[-2.618807,56.28943],[-2.6212,56.290556],[-2.625452,56.291663],[-2.626827,56.292609],[-2.628713,56.292387],[-2.63068,56.293027],[-2.631433,56.293955],[-2.633087,56.294389],[-2.633127,56.295033],[-2.634687,56.296723],[-2.638679,56.298059],[-2.641627,56.299802],[-2.64301,56.302332],[-2.646853,56.304723],[-2.648202,56.304907],[-2.650722,56.306508],[-2.65195,56.306894],[-2.654298,56.308669],[-2.658096,56.312635],[-2.658198,56.313542],[-2.65735,56.314359],[-2.658757,56.315603],[-2.65856,56.317018],[-2.660334,56.318353],[-2.663396,56.318616],[-2.665433,56.318421],[-2.668692,56.31896],[-2.668714,56.319576],[-2.671908,56.319344],[-2.672484,56.319847],[-2.678234,56.319585],[-2.67986,56.320117],[-2.678996,56.321243],[-2.681266,56.321999],[-2.681529,56.323363],[-2.683134,56.323343],[-2.683369,56.324275],[-2.684632,56.324501],[-2.689785,56.326254],[-2.692028,56.326159],[-2.694858,56.32517],[-2.697447,56.324851],[-2.698459,56.325257],[-2.701663,56.324787],[-2.703244,56.325041],[-2.706045,56.324504],[-2.708333,56.326312],[-2.709957,56.32717],[-2.71322,56.327081],[-2.715942,56.327755],[-2.718131,56.326695],[-2.721718,56.325902],[-2.723346,56.326532],[-2.72802,56.326389],[-2.729636,56.326865],[-2.731642,56.326802],[-2.735199,56.327614],[-2.735962,56.327228],[-2.739199,56.327589],[-2.740581,56.328301],[-2.743125,56.328691],[-2.747262,56.329752],[-2.748575,56.330881],[-2.748365,56.331865],[-2.749483,56.332295],[-2.755559,56.331358],[-2.760043,56.332176],[-2.762077,56.331757],[-2.766427,56.33196],[-2.768357,56.332338],[-2.770036,56.332206],[-2.771981,56.332569],[-2.774792,56.332375],[-2.777609,56.332733],[-2.779318,56.333562],[-2.780327,56.334528],[-2.783714,56.339765],[-2.786336,56.340261],[-2.786955,56.34091],[-2.78898,56.341535],[-2.791275,56.343247],[-2.798981,56.343145],[-2.798868,56.344039],[-2.800928,56.34398],[-2.800811,56.344965],[-2.804612,56.345176],[-2.811821,56.361262],[-2.814825,56.364582],[-2.818219,56.367139],[-2.82006,56.367914],[-2.822044,56.367586],[-2.82177,56.366487],[-2.82308,56.364253],[-2.824505,56.363004],[-2.827588,56.355564],[-2.829232,56.354578],[-2.833684,56.353587],[-2.838821,56.352927],[-2.840946,56.353256],[-2.844528,56.354775],[-2.848587,56.356015],[-2.851145,56.357638],[-2.85291,56.357629],[-2.855013,56.358587],[-2.858569,56.359105],[-2.859391,56.359497],[-2.861956,56.362514],[-2.863956,56.363991],[-2.864911,56.361602],[-2.868977,56.359945],[-2.871983,56.35976],[-2.876914,56.361066],[-2.879957,56.361276],[-2.880944,56.361798],[-2.884211,56.360821],[-2.886806,56.36205],[-2.887598,56.361701],[-2.887934,56.359303],[-2.887552,56.357912],[-2.888072,56.355574],[-2.891904,56.355426],[-2.892927,56.354648],[-2.895185,56.353903],[-2.902235,56.353576],[-2.907468,56.35392],[-2.910186,56.353725],[-2.91472,56.351007],[-2.915154,56.351362],[-2.912203,56.353098],[-2.911429,56.353972],[-2.909514,56.354404],[-2.901599,56.354386],[-2.89725,56.354962],[-2.892938,56.356119],[-2.889737,56.357755],[-2.889257,56.360434],[-2.889578,56.36369],[-2.889039,56.366108],[-2.885084,56.366513],[-2.883057,56.368019],[-2.881826,56.368253],[-2.878696,56.36796],[-2.876925,56.368392],[-2.871671,56.368494],[-2.868576,56.367489],[-2.866355,56.369472],[-2.863733,56.370485],[-2.860673,56.370429],[-2.85999,56.371276],[-2.857049,56.371025],[-2.855629,56.369312],[-2.853255,56.369126],[-2.843832,56.372321],[-2.838152,56.372338],[-2.840106,56.371358],[-2.843424,56.37202],[-2.84392,56.371028],[-2.839066,56.371296],[-2.837869,56.371885],[-2.836918,56.373562],[-2.835339,56.374645],[-2.830476,56.376283],[-2.827619,56.376804],[-2.826314,56.377633],[-2.823242,56.38093],[-2.822082,56.384032],[-2.82129,56.384958],[-2.81804,56.386316],[-2.812164,56.389635],[-2.810453,56.39256],[-2.809532,56.398822],[-2.808617,56.400994],[-2.807902,56.405867],[-2.805638,56.412766],[-2.804459,56.414307],[-2.802755,56.42081],[-2.801199,56.423344],[-2.803459,56.422101],[-2.804494,56.422207],[-2.805343,56.427993],[-2.807034,56.430019],[-2.806626,56.431631],[-2.805471,56.433035],[-2.805557,56.435601],[-2.806136,56.438282],[-2.808452,56.441628],[-2.81237,56.442077],[-2.812928,56.442552],[-2.817029,56.443705],[-2.828308,56.443705],[-2.831876,56.443237],[-2.836887,56.441735],[-2.841914,56.441234],[-2.851527,56.439036],[-2.854989,56.438674],[-2.86433,56.44048],[-2.865002,56.440718],[-2.866536,56.443442],[-2.86761,56.443774],[-2.869573,56.445893],[-2.874495,56.447279],[-2.875876,56.448031],[-2.876919,56.449866],[-2.878122,56.450529],[-2.879234,56.450103],[-2.88191,56.451985],[-2.883182,56.45241],[-2.886629,56.452343],[-2.887395,56.452633],[-2.892984,56.45296],[-2.898401,56.453022],[-2.900567,56.452588],[-2.90562,56.452649],[-2.920202,56.451734],[-2.923582,56.450893],[-2.925562,56.449628],[-2.931949,56.448346],[-2.937206,56.446455],[-2.9372,56.445864],[-2.938872,56.444988],[-2.939226,56.444094],[-2.941083,56.442964],[-2.941201,56.441394],[-2.943147,56.438306],[-2.944607,56.437642],[-2.946045,56.436329],[-2.952846,56.4347],[-2.955281,56.43312],[-2.95705,56.432756],[-2.958475,56.431938],[-2.961593,56.431332],[-2.964604,56.43159],[-2.967189,56.431153],[-2.972304,56.428947],[-2.973508,56.427531],[-2.976772,56.426773],[-2.9784,56.425962],[-2.980754,56.425918],[-2.984398,56.42449],[-2.989881,56.420753],[-2.995687,56.42006],[-3.001494,56.420939],[-3.004859,56.419811],[-3.00979,56.419407],[-3.012649,56.418157],[-3.015362,56.417507],[-3.023816,56.417497],[-3.02876,56.416787],[-3.033502,56.41668],[-3.039399,56.415714],[-3.041177,56.414879],[-3.043145,56.413349],[-3.043471,56.411881],[-3.045258,56.410728],[-3.04605,56.409455],[-3.047377,56.408549],[-3.054406,56.406486],[-3.063833,56.402802],[-3.067067,56.402561],[-3.0714,56.40143],[-3.079515,56.399974],[-3.085868,56.397318],[-3.08738,56.397515],[-3.089019,56.395727],[-3.095114,56.393859],[-3.099847,56.393043],[-3.11317,56.391591],[-3.11593,56.391816],[-3.117041,56.391079],[-3.122731,56.388859],[-3.133745,56.385103],[-3.141568,56.383173],[-3.145922,56.3826],[-3.159458,56.377364],[-3.166451,56.375364],[-3.167446,56.37559],[-3.179766,56.372007],[-3.185063,56.369845],[-3.194099,56.364436],[-3.197061,56.36357],[-3.199714,56.363791],[-3.203965,56.36286],[-3.211826,56.36023],[-3.230132,56.356088],[-3.23335,56.354461],[-3.235359,56.353958],[-3.246195,56.352879],[-3.246193,56.352497],[-3.249746,56.352453],[-3.255913,56.351227],[-3.260934,56.350823],[-3.276472,56.350653],[-3.276962,56.350386],[-3.276891,56.34936],[-3.273673,56.347722],[-3.269894,56.348049],[-3.265787,56.347916],[-3.261504,56.348578],[-3.257147,56.346505],[-3.255642,56.346268],[-3.255301,56.345223],[-3.257027,56.344341],[-3.258418,56.342414],[-3.25603,56.340097],[-3.262363,56.338605],[-3.264994,56.339094],[-3.267582,56.339069],[-3.267746,56.335714],[-3.268453,56.334912],[-3.272909,56.333963],[-3.273116,56.332561],[-3.267621,56.332399],[-3.267968,56.330176],[-3.266563,56.328153],[-3.27073,56.326318],[-3.275827,56.326226],[-3.282719,56.324188],[-3.284554,56.322986],[-3.287769,56.3219],[-3.289788,56.32081],[-3.291747,56.319316],[-3.292195,56.318504],[-3.295277,56.316839],[-3.297166,56.314804],[-3.300622,56.31398],[-3.30093,56.313097],[-3.299201,56.312185],[-3.295339,56.311842],[-3.294516,56.31123],[-3.299691,56.309935],[-3.298441,56.30697],[-3.295198,56.302911],[-3.293892,56.300312],[-3.293772,56.298826],[-3.296205,56.297521],[-3.295677,56.296285],[-3.292264,56.292796],[-3.294331,56.289776],[-3.299672,56.290107],[-3.300885,56.289864],[-3.302271,56.288435],[-3.306365,56.287541],[-3.308145,56.287808],[-3.310432,56.287337],[-3.312533,56.285248],[-3.318177,56.283728],[-3.320833,56.283278],[-3.321415,56.283656],[-3.324829,56.282801],[-3.326138,56.283509],[-3.328194,56.286105],[-3.32967,56.287205],[-3.330592,56.286769],[-3.333108,56.287677],[-3.335533,56.28945],[-3.341183,56.286309],[-3.342668,56.287475],[-3.345817,56.286609],[-3.347835,56.285531],[-3.350788,56.285671],[-3.353671,56.282911],[-3.350181,56.28173],[-3.351663,56.280422],[-3.35487,56.280414],[-3.357785,56.278601],[-3.361924,56.277655],[-3.364015,56.276351],[-3.367706,56.275022],[-3.369135,56.274976],[-3.370555,56.273947],[-3.371107,56.272584],[-3.373485,56.271159],[-3.375797,56.271153],[-3.377706,56.27074],[-3.383636,56.268761],[-3.38117,56.266415],[-3.379681,56.264158],[-3.377344,56.26261],[-3.371801,56.260761],[-3.368927,56.259979],[-3.361833,56.258813],[-3.360542,56.258739],[-3.354706,56.256775],[-3.35455,56.255788],[-3.353305,56.255272],[-3.355437,56.253783],[-3.356704,56.251113],[-3.357161,56.248604],[-3.358226,56.248226],[-3.363375,56.243121],[-3.367327,56.240769],[-3.367491,56.239761],[-3.360019,56.240897],[-3.359056,56.239992],[-3.356769,56.240802],[-3.349255,56.239216],[-3.343835,56.23842],[-3.340838,56.238187],[-3.336487,56.238342],[-3.329331,56.23735],[-3.321504,56.237864],[-3.317099,56.239608],[-3.314878,56.239524],[-3.310345,56.237561],[-3.308181,56.237324],[-3.305349,56.236542],[-3.291395,56.235113],[-3.288444,56.23539],[-3.285707,56.234739],[-3.284871,56.234225],[-3.27999,56.233733],[-3.285512,56.23186],[-3.287132,56.230899],[-3.288888,56.230685],[-3.291255,56.229732],[-3.29071,56.229128],[-3.290757,56.225823],[-3.290234,56.224981],[-3.285359,56.224247],[-3.275316,56.223661],[-3.275083,56.223841],[-3.268383,56.220066],[-3.264869,56.220054],[-3.265776,56.218316],[-3.269661,56.215977],[-3.268036,56.214629],[-3.274928,56.214164],[-3.273615,56.207744],[-3.270019,56.202684],[-3.266527,56.202948],[-3.263355,56.198216],[-3.260947,56.196138],[-3.309125,56.185305],[-3.307188,56.180301],[-3.305625,56.17906],[-3.302641,56.178988],[-3.300012,56.178578],[-3.298746,56.177956],[-3.300481,56.17724],[-3.298571,56.175398],[-3.294525,56.175309],[-3.292884,56.173456],[-3.296408,56.172205],[-3.296535,56.170576],[-3.307476,56.169681],[-3.30642,56.167922],[-3.309863,56.167409],[-3.313156,56.167213],[-3.316418,56.166485],[-3.320483,56.169963],[-3.324305,56.171884],[-3.327257,56.171975],[-3.330006,56.172933],[-3.33653,56.172975],[-3.339359,56.173909],[-3.341383,56.173853],[-3.345984,56.172762],[-3.348303,56.171781],[-3.348704,56.1704],[-3.355724,56.168543],[-3.358273,56.167126],[-3.365277,56.166268],[-3.371718,56.1644],[-3.367409,56.156154],[-3.366576,56.155022],[-3.369519,56.14699],[-3.370223,56.146125],[-3.372001,56.145504],[-3.373875,56.145596],[-3.375532,56.144945],[-3.379293,56.144354],[-3.380954,56.143018],[-3.382391,56.143372],[-3.387298,56.142699],[-3.388495,56.142954],[-3.391983,56.142149],[-3.393359,56.142326],[-3.397125,56.142056],[-3.399139,56.141587],[-3.400695,56.141848],[-3.407154,56.139532],[-3.408705,56.139609],[-3.410146,56.13895],[-3.411842,56.139449],[-3.412838,56.139049],[-3.4169,56.138439],[-3.418645,56.138792],[-3.42023,56.139619],[-3.423718,56.140041],[-3.426122,56.14167],[-3.427759,56.141559],[-3.430909,56.142509],[-3.432853,56.142201],[-3.434481,56.145076],[-3.440365,56.145032],[-3.442298,56.146426],[-3.445552,56.1472],[-3.452025,56.147086],[-3.453703,56.150378],[-3.456504,56.15017],[-3.458467,56.146952],[-3.460307,56.146261],[-3.465026,56.147162],[-3.46626,56.148522],[-3.468814,56.149215],[-3.471873,56.148397],[-3.473736,56.148496],[-3.478953,56.146928],[-3.481205,56.147225],[-3.491637,56.149777],[-3.496328,56.149329],[-3.498874,56.149806],[-3.511276,56.147925],[-3.517668,56.147551],[-3.524583,56.146581],[-3.525639,56.146166],[-3.527772,56.146864],[-3.529518,56.148245],[-3.533897,56.147284],[-3.540007,56.146462],[-3.540538,56.149847],[-3.542021,56.150904],[-3.546103,56.158524],[-3.549394,56.158338],[-3.5565,56.157307],[-3.562082,56.159683],[-3.563963,56.159811],[-3.567702,56.157991],[-3.568808,56.159054],[-3.57141,56.157362],[-3.577463,56.154516],[-3.582887,56.150872],[-3.582654,56.148599],[-3.583801,56.144059],[-3.581074,56.143736],[-3.580876,56.14275],[-3.578253,56.141081],[-3.580882,56.140037],[-3.580952,56.13931],[-3.588128,56.137562],[-3.591616,56.137925],[-3.594704,56.137726],[-3.597194,56.13711],[-3.603773,56.136571],[-3.607316,56.134805],[-3.612181,56.134621],[-3.614195,56.13495],[-3.618118,56.134743],[-3.621563,56.133545],[-3.623483,56.13337],[-3.625607,56.132458],[-3.628348,56.13277],[-3.628377,56.131222],[-3.631156,56.131272],[-3.636439,56.130371],[-3.637266,56.129652],[-3.640918,56.129894],[-3.643644,56.129656],[-3.645296,56.130007],[-3.646471,56.129568],[-3.648695,56.129581],[-3.650727,56.129169],[-3.654402,56.124934],[-3.657075,56.124298],[-3.660547,56.124184],[-3.663203,56.123587],[-3.663939,56.123046],[-3.659645,56.119831],[-3.657157,56.118857],[-3.651016,56.11775],[-3.644292,56.115588],[-3.629232,56.11145],[-3.628787,56.110441],[-3.634933,56.108834],[-3.6365,56.109419],[-3.638227,56.10917],[-3.640645,56.10937],[-3.641253,56.108956],[-3.647029,56.109556],[-3.648933,56.109221],[-3.650175,56.108361],[-3.652566,56.108171],[-3.653518,56.107494],[-3.656773,56.108323],[-3.656031,56.109027],[-3.657593,56.109592],[-3.659183,56.109321],[-3.661946,56.109372],[-3.664772,56.107704],[-3.669793,56.106937],[-3.672583,56.107799],[-3.674734,56.105927],[-3.674352,56.104013],[-3.674899,56.103498],[-3.675026,56.101286],[-3.674474,56.100232],[-3.679634,56.102096],[-3.686171,56.101866],[-3.688235,56.102156],[-3.690923,56.102112],[-3.701912,56.103004],[-3.70981,56.104609],[-3.714622,56.104487],[-3.717481,56.102649],[-3.717864,56.094284],[-3.718824,56.091766],[-3.721445,56.087787],[-3.723312,56.089363],[-3.728647,56.087899],[-3.73059,56.085603],[-3.734517,56.085278],[-3.736388,56.08323],[-3.736744,56.080883],[-3.738583,56.078375]]]]},"properties":{"LAD22CD":"S12000047","LAD22NM":"Fife","BNG_E":339187,"BNG_N":704721,"LONG":-2.98251,"LAT":56.23112,"GlobalID":"50caf2ec-fd40-422b-ac87-51237d47b6df"},"id":349}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.263082,56.354805],[-3.249029,56.356194],[-3.246009,56.357048],[-3.245466,56.358351],[-3.251749,56.358193],[-3.261014,56.355924],[-3.269207,56.35478],[-3.266603,56.354569],[-3.263082,56.354805]]],[[[-3.417628,56.378294],[-3.416178,56.378963],[-3.415861,56.37971],[-3.418191,56.381848],[-3.42239,56.38686],[-3.422879,56.388705],[-3.422106,56.390644],[-3.42328,56.392977],[-3.42387,56.393301],[-3.424568,56.387924],[-3.42447,56.385043],[-3.423808,56.383017],[-3.42441,56.381427],[-3.426304,56.380032],[-3.426398,56.37897],[-3.425588,56.37843],[-3.421792,56.377927],[-3.418904,56.377886],[-3.417628,56.378294]]],[[[-3.052648,56.458858],[-3.053821,56.459219],[-3.053882,56.460694],[-3.057853,56.463042],[-3.062749,56.464767],[-3.064439,56.463752],[-3.067027,56.462864],[-3.070643,56.462178],[-3.080308,56.46181],[-3.087476,56.461922],[-3.089427,56.466937],[-3.091893,56.467272],[-3.09782,56.467432],[-3.103909,56.467073],[-3.111282,56.467283],[-3.113452,56.467775],[-3.116352,56.467487],[-3.119612,56.467669],[-3.120624,56.468631],[-3.123437,56.474223],[-3.116847,56.474104],[-3.116567,56.474478],[-3.118744,56.476827],[-3.122182,56.477419],[-3.130609,56.477905],[-3.130116,56.479178],[-3.143629,56.479744],[-3.144112,56.480844],[-3.142342,56.483714],[-3.142043,56.487551],[-3.143517,56.488176],[-3.150823,56.48893],[-3.15737,56.490362],[-3.162195,56.490331],[-3.164165,56.491297],[-3.166829,56.492169],[-3.167299,56.493334],[-3.177594,56.496697],[-3.178562,56.498176],[-3.183792,56.50131],[-3.191567,56.503287],[-3.192539,56.503968],[-3.19344,56.505542],[-3.189172,56.506968],[-3.185553,56.507146],[-3.185982,56.508338],[-3.190133,56.508788],[-3.190132,56.510002],[-3.192484,56.512471],[-3.1942,56.51351],[-3.197352,56.514463],[-3.199814,56.514514],[-3.200765,56.515327],[-3.207219,56.518407],[-3.207257,56.519063],[-3.209015,56.519887],[-3.210309,56.52117],[-3.212066,56.524285],[-3.208661,56.525369],[-3.200857,56.5259],[-3.195172,56.524197],[-3.190378,56.52371],[-3.186048,56.523762],[-3.183912,56.523448],[-3.182398,56.524392],[-3.180272,56.525108],[-3.173024,56.526192],[-3.174061,56.529467],[-3.173623,56.530986],[-3.164045,56.53814],[-3.171177,56.542081],[-3.175447,56.543256],[-3.179307,56.546308],[-3.181702,56.551085],[-3.184029,56.553758],[-3.18554,56.554602],[-3.18911,56.555275],[-3.190363,56.556328],[-3.190205,56.561295],[-3.183607,56.564995],[-3.17944,56.56591],[-3.179469,56.566196],[-3.167147,56.568846],[-3.165582,56.569556],[-3.16399,56.569539],[-3.153044,56.574356],[-3.149386,56.574395],[-3.141839,56.576375],[-3.14021,56.576226],[-3.137802,56.576627],[-3.137706,56.577558],[-3.13266,56.579091],[-3.128112,56.581868],[-3.12301,56.584014],[-3.116479,56.589396],[-3.117317,56.590267],[-3.112137,56.593872],[-3.097947,56.598317],[-3.100262,56.601876],[-3.100126,56.603695],[-3.101418,56.605566],[-3.105274,56.607387],[-3.088144,56.613186],[-3.091311,56.617095],[-3.094737,56.616678],[-3.093963,56.616057],[-3.096009,56.615476],[-3.099908,56.615929],[-3.10162,56.614342],[-3.105364,56.613726],[-3.110652,56.612194],[-3.112918,56.613014],[-3.113855,56.612006],[-3.112916,56.611567],[-3.113109,56.609685],[-3.114892,56.610163],[-3.116743,56.609821],[-3.117282,56.608667],[-3.118544,56.607862],[-3.121702,56.607632],[-3.125754,56.605063],[-3.126194,56.604266],[-3.128273,56.60437],[-3.130605,56.602659],[-3.129814,56.601498],[-3.13225,56.601662],[-3.132736,56.601263],[-3.135517,56.601386],[-3.135637,56.600454],[-3.136765,56.599327],[-3.136152,56.598555],[-3.137032,56.597891],[-3.139561,56.597862],[-3.141995,56.597131],[-3.145388,56.597211],[-3.145128,56.596691],[-3.14246,56.596665],[-3.142732,56.596037],[-3.14446,56.595547],[-3.145986,56.595972],[-3.14825,56.597205],[-3.149343,56.598395],[-3.153101,56.599045],[-3.155495,56.599006],[-3.157212,56.598466],[-3.160767,56.599365],[-3.165867,56.5989],[-3.164426,56.600139],[-3.16597,56.601083],[-3.164058,56.602574],[-3.162198,56.603221],[-3.16219,56.604382],[-3.161205,56.605467],[-3.159522,56.606244],[-3.155814,56.606546],[-3.154143,56.608452],[-3.149922,56.608134],[-3.150892,56.610832],[-3.153064,56.613876],[-3.155705,56.614614],[-3.157534,56.617401],[-3.160898,56.619234],[-3.168799,56.617766],[-3.170716,56.617965],[-3.174092,56.617722],[-3.180941,56.615761],[-3.185845,56.617561],[-3.191285,56.621949],[-3.175613,56.624238],[-3.171352,56.62612],[-3.174327,56.628036],[-3.174705,56.62953],[-3.177082,56.629864],[-3.177775,56.630346],[-3.1781,56.632921],[-3.176724,56.634186],[-3.17846,56.635121],[-3.178138,56.635598],[-3.172803,56.635653],[-3.164722,56.636303],[-3.161051,56.636906],[-3.155886,56.637154],[-3.153674,56.637908],[-3.148634,56.643805],[-3.148787,56.6461],[-3.150145,56.648009],[-3.150272,56.649732],[-3.151869,56.65157],[-3.150742,56.65253],[-3.151321,56.653167],[-3.155561,56.65463],[-3.157222,56.656176],[-3.158359,56.655654],[-3.160095,56.656203],[-3.162116,56.655514],[-3.163052,56.65589],[-3.164889,56.655518],[-3.16976,56.655769],[-3.172673,56.654664],[-3.172718,56.653381],[-3.174771,56.652741],[-3.175738,56.651957],[-3.181336,56.65174],[-3.18313,56.652206],[-3.184661,56.653287],[-3.187193,56.654491],[-3.205078,56.654703],[-3.212743,56.655379],[-3.223683,56.658369],[-3.225082,56.658553],[-3.226024,56.657912],[-3.230533,56.658569],[-3.233987,56.65944],[-3.239308,56.659875],[-3.242201,56.660495],[-3.244301,56.661359],[-3.244819,56.662206],[-3.24951,56.663472],[-3.25305,56.665417],[-3.260381,56.668404],[-3.261038,56.6697],[-3.26411,56.670596],[-3.266916,56.670635],[-3.268841,56.670117],[-3.270032,56.669148],[-3.270522,56.667458],[-3.271848,56.666155],[-3.281185,56.665534],[-3.284108,56.665597],[-3.286765,56.668202],[-3.286787,56.676382],[-3.285839,56.677144],[-3.283801,56.677796],[-3.287243,56.678683],[-3.288083,56.679568],[-3.292753,56.681488],[-3.29349,56.682284],[-3.296066,56.683143],[-3.299396,56.683607],[-3.302955,56.686678],[-3.303132,56.688266],[-3.306821,56.68896],[-3.308529,56.689948],[-3.302024,56.694949],[-3.303099,56.696515],[-3.306609,56.698845],[-3.306808,56.702711],[-3.311768,56.704896],[-3.314031,56.706346],[-3.313837,56.707094],[-3.315248,56.708458],[-3.315284,56.709958],[-3.319287,56.710194],[-3.32473,56.709364],[-3.327906,56.70911],[-3.331801,56.710236],[-3.33266,56.712347],[-3.333989,56.712728],[-3.334878,56.714071],[-3.337702,56.716547],[-3.338539,56.719405],[-3.344475,56.722975],[-3.352784,56.726151],[-3.349111,56.729439],[-3.363947,56.738118],[-3.357875,56.743144],[-3.357,56.745849],[-3.357842,56.747654],[-3.361315,56.749418],[-3.363909,56.751514],[-3.366548,56.752577],[-3.368712,56.752944],[-3.371075,56.752487],[-3.373102,56.752474],[-3.37784,56.75323],[-3.378563,56.754435],[-3.383109,56.757763],[-3.388415,56.765458],[-3.389798,56.769234],[-3.379509,56.777101],[-3.379445,56.780507],[-3.38001,56.781386],[-3.374119,56.789259],[-3.370267,56.79024],[-3.366748,56.793194],[-3.36717,56.795346],[-3.362601,56.800054],[-3.360304,56.800385],[-3.35926,56.801402],[-3.359476,56.802159],[-3.357642,56.804434],[-3.358206,56.806665],[-3.362807,56.808214],[-3.364488,56.809849],[-3.364899,56.812158],[-3.366731,56.813436],[-3.360021,56.817881],[-3.351637,56.820276],[-3.358541,56.825646],[-3.364076,56.827144],[-3.36612,56.829036],[-3.370244,56.83112],[-3.37689,56.829807],[-3.38056,56.833342],[-3.381549,56.83639],[-3.384948,56.837004],[-3.388825,56.840101],[-3.392801,56.842563],[-3.39841,56.843709],[-3.400753,56.843018],[-3.407022,56.843406],[-3.405913,56.845089],[-3.403089,56.845647],[-3.401221,56.847873],[-3.400829,56.84901],[-3.397831,56.851042],[-3.393724,56.850855],[-3.3909,56.851398],[-3.387377,56.855027],[-3.378519,56.86096],[-3.378198,56.863614],[-3.379689,56.866913],[-3.379083,56.868488],[-3.37446,56.873732],[-3.372138,56.874615],[-3.375425,56.874983],[-3.380041,56.877134],[-3.381176,56.876977],[-3.382677,56.878973],[-3.387468,56.879832],[-3.39454,56.879371],[-3.396682,56.880264],[-3.397476,56.881095],[-3.400495,56.881757],[-3.401152,56.882415],[-3.404962,56.884021],[-3.405962,56.882666],[-3.410536,56.880818],[-3.421287,56.879573],[-3.42169,56.881743],[-3.425932,56.883693],[-3.42957,56.884631],[-3.429832,56.886546],[-3.43332,56.886335],[-3.434804,56.885856],[-3.43804,56.885508],[-3.439291,56.88389],[-3.441791,56.882325],[-3.443532,56.88023],[-3.445662,56.880569],[-3.44658,56.879705],[-3.444789,56.878998],[-3.446149,56.877041],[-3.446313,56.875557],[-3.449397,56.876168],[-3.453334,56.876365],[-3.455826,56.875662],[-3.457199,56.874483],[-3.460021,56.874468],[-3.465707,56.872811],[-3.469628,56.874692],[-3.475405,56.874089],[-3.477416,56.874128],[-3.480484,56.87473],[-3.482475,56.874661],[-3.48985,56.876716],[-3.491788,56.881504],[-3.496489,56.8817],[-3.498622,56.882092],[-3.499344,56.884536],[-3.499197,56.886007],[-3.502541,56.887112],[-3.510415,56.888235],[-3.512939,56.887737],[-3.515112,56.88586],[-3.518862,56.887467],[-3.521859,56.887305],[-3.524753,56.886816],[-3.526914,56.884889],[-3.52925,56.883607],[-3.537656,56.892255],[-3.539173,56.891441],[-3.540879,56.889799],[-3.54318,56.889272],[-3.54555,56.887041],[-3.549447,56.885834],[-3.556203,56.885476],[-3.560782,56.884103],[-3.563911,56.885725],[-3.565304,56.888237],[-3.567879,56.890739],[-3.56859,56.892235],[-3.568174,56.895039],[-3.563815,56.895619],[-3.561672,56.896378],[-3.560509,56.897246],[-3.560002,56.899265],[-3.558718,56.900345],[-3.562679,56.902614],[-3.56306,56.904465],[-3.565293,56.906207],[-3.565855,56.90748],[-3.569017,56.910248],[-3.572243,56.910989],[-3.573839,56.916324],[-3.577995,56.920993],[-3.578466,56.923197],[-3.576778,56.926031],[-3.579057,56.927089],[-3.578791,56.929536],[-3.582736,56.930924],[-3.584224,56.931139],[-3.589734,56.931244],[-3.592499,56.930777],[-3.594263,56.931281],[-3.599667,56.930834],[-3.602646,56.931151],[-3.610688,56.92996],[-3.613319,56.928651],[-3.615114,56.928169],[-3.6182,56.926215],[-3.626531,56.925456],[-3.62771,56.924996],[-3.629763,56.924965],[-3.631784,56.925356],[-3.634156,56.924912],[-3.637694,56.925611],[-3.639231,56.923951],[-3.640913,56.923332],[-3.645821,56.923043],[-3.650138,56.923704],[-3.650311,56.925387],[-3.649806,56.92715],[-3.650789,56.928031],[-3.654042,56.9293],[-3.655424,56.931209],[-3.654287,56.932437],[-3.654735,56.932898],[-3.658062,56.933065],[-3.661728,56.932536],[-3.664212,56.931123],[-3.667518,56.931362],[-3.671813,56.932415],[-3.675471,56.932442],[-3.67628,56.931618],[-3.67588,56.929826],[-3.677259,56.926524],[-3.676023,56.925323],[-3.682954,56.921065],[-3.683368,56.919321],[-3.682935,56.917921],[-3.683552,56.916116],[-3.6885,56.916377],[-3.692306,56.91589],[-3.696494,56.916426],[-3.698106,56.915757],[-3.704891,56.915575],[-3.708699,56.914611],[-3.710218,56.914783],[-3.70888,56.916068],[-3.709223,56.916567],[-3.714533,56.917896],[-3.725218,56.918418],[-3.728096,56.925759],[-3.731048,56.928473],[-3.732809,56.93118],[-3.734618,56.932111],[-3.740687,56.933608],[-3.746527,56.933572],[-3.753963,56.931963],[-3.760572,56.931326],[-3.763847,56.930718],[-3.765785,56.930013],[-3.767751,56.928502],[-3.774596,56.925557],[-3.781893,56.923189],[-3.783498,56.923081],[-3.787944,56.923624],[-3.790861,56.925343],[-3.792336,56.92768],[-3.798256,56.932034],[-3.801646,56.93588],[-3.804482,56.935538],[-3.810316,56.935876],[-3.81752,56.934276],[-3.820575,56.936442],[-3.822006,56.938308],[-3.824278,56.938387],[-3.826049,56.937957],[-3.827824,56.936947],[-3.831617,56.936042],[-3.834038,56.933293],[-3.838851,56.930563],[-3.839596,56.92902],[-3.842434,56.927415],[-3.842673,56.926917],[-3.845418,56.926113],[-3.852804,56.924952],[-3.854478,56.923741],[-3.854833,56.922788],[-3.858561,56.923424],[-3.866776,56.925867],[-3.869171,56.924969],[-3.871117,56.923143],[-3.873019,56.922894],[-3.878986,56.924925],[-3.880456,56.924746],[-3.883323,56.925071],[-3.886657,56.926656],[-3.8886,56.926092],[-3.894725,56.922756],[-3.89998,56.924652],[-3.901059,56.925674],[-3.901384,56.927057],[-3.899711,56.930187],[-3.900288,56.931841],[-3.904165,56.932298],[-3.906572,56.931471],[-3.912538,56.931159],[-3.91445,56.932384],[-3.915769,56.932471],[-3.918413,56.933864],[-3.923547,56.93352],[-3.925765,56.933014],[-3.929067,56.933623],[-3.932787,56.935327],[-3.936367,56.935429],[-3.937274,56.939602],[-3.938578,56.940494],[-3.939226,56.94158],[-3.937488,56.945947],[-3.938613,56.948619],[-3.945441,56.94634],[-3.950686,56.947116],[-3.952205,56.946145],[-3.954379,56.941968],[-3.952912,56.94001],[-3.953109,56.938915],[-3.955052,56.937717],[-3.959663,56.935996],[-3.96215,56.935786],[-3.962921,56.937162],[-3.966067,56.934943],[-3.965458,56.932593],[-3.968007,56.931206],[-3.969406,56.929377],[-3.968384,56.927767],[-3.968176,56.926005],[-3.966904,56.924785],[-3.968706,56.923422],[-3.968819,56.921044],[-3.970272,56.919776],[-3.970709,56.917941],[-3.963848,56.913839],[-3.965222,56.911378],[-3.963428,56.910836],[-3.962412,56.9098],[-3.96342,56.907574],[-3.966598,56.905224],[-3.966583,56.902443],[-3.967763,56.89928],[-3.969514,56.898223],[-3.973545,56.897743],[-3.975282,56.89634],[-3.977424,56.89534],[-3.987802,56.891846],[-3.992667,56.890991],[-3.999385,56.89029],[-4.000311,56.890716],[-4.00132,56.892712],[-4.000248,56.893848],[-4.000313,56.895304],[-4.001941,56.896732],[-4.007485,56.89834],[-4.012371,56.897816],[-4.012392,56.894053],[-4.013746,56.892063],[-4.014792,56.891359],[-4.017435,56.890755],[-4.018465,56.889907],[-4.022892,56.888753],[-4.024601,56.889385],[-4.023538,56.890364],[-4.024237,56.892518],[-4.032289,56.89807],[-4.034756,56.901488],[-4.036888,56.899876],[-4.039274,56.896883],[-4.040887,56.896174],[-4.042146,56.896293],[-4.044031,56.897645],[-4.046083,56.897483],[-4.048448,56.897709],[-4.052144,56.897255],[-4.054451,56.897398],[-4.055157,56.895608],[-4.061184,56.894879],[-4.069917,56.894407],[-4.072604,56.895791],[-4.077794,56.896558],[-4.078523,56.895495],[-4.08039,56.89466],[-4.085037,56.894236],[-4.088277,56.893598],[-4.101028,56.894507],[-4.111458,56.894731],[-4.117253,56.895446],[-4.118079,56.896389],[-4.119699,56.896447],[-4.120781,56.897134],[-4.126799,56.899305],[-4.131451,56.89751],[-4.136213,56.897235],[-4.138281,56.898071],[-4.14004,56.899546],[-4.144183,56.899925],[-4.14798,56.901275],[-4.149984,56.902417],[-4.155066,56.90326],[-4.155858,56.904333],[-4.160165,56.905117],[-4.161723,56.905787],[-4.164688,56.905924],[-4.165698,56.905084],[-4.168271,56.904698],[-4.173684,56.908684],[-4.174492,56.911707],[-4.179443,56.90857],[-4.184164,56.908132],[-4.18486,56.907388],[-4.187082,56.906342],[-4.185462,56.904762],[-4.18609,56.903565],[-4.187793,56.902502],[-4.188564,56.900929],[-4.192187,56.898871],[-4.194901,56.898248],[-4.199884,56.893762],[-4.199434,56.889609],[-4.202165,56.887328],[-4.203543,56.885367],[-4.205541,56.884447],[-4.202978,56.883989],[-4.200765,56.882231],[-4.191919,56.877467],[-4.193276,56.87654],[-4.195508,56.875701],[-4.19927,56.875491],[-4.200194,56.873897],[-4.1994,56.870443],[-4.205271,56.870105],[-4.207619,56.869439],[-4.208448,56.868611],[-4.212174,56.869476],[-4.215278,56.869659],[-4.216954,56.869],[-4.220467,56.866673],[-4.222955,56.863533],[-4.225858,56.862277],[-4.227138,56.859666],[-4.227101,56.858216],[-4.227696,56.857603],[-4.230489,56.85727],[-4.234318,56.857516],[-4.253357,56.853341],[-4.258517,56.853504],[-4.261056,56.856981],[-4.26287,56.857554],[-4.266094,56.854045],[-4.267771,56.853565],[-4.271883,56.85132],[-4.276565,56.851042],[-4.278392,56.849944],[-4.29086,56.851472],[-4.294982,56.853176],[-4.297854,56.85226],[-4.303959,56.851397],[-4.305305,56.850213],[-4.309109,56.848602],[-4.311104,56.846767],[-4.312117,56.844988],[-4.312322,56.843132],[-4.318463,56.840875],[-4.321202,56.840761],[-4.324021,56.84114],[-4.326173,56.838557],[-4.329722,56.836967],[-4.330764,56.834081],[-4.330257,56.829616],[-4.331106,56.826535],[-4.33051,56.823931],[-4.343325,56.821287],[-4.352434,56.827114],[-4.365059,56.830043],[-4.374264,56.832259],[-4.376746,56.829916],[-4.379379,56.825943],[-4.385977,56.822856],[-4.393362,56.815314],[-4.41537,56.797904],[-4.435232,56.777387],[-4.441844,56.773843],[-4.452722,56.777373],[-4.457063,56.778177],[-4.460339,56.77809],[-4.463051,56.77862],[-4.465565,56.778274],[-4.466588,56.777473],[-4.469098,56.777858],[-4.470225,56.779566],[-4.472019,56.780582],[-4.473346,56.781953],[-4.474313,56.782221],[-4.477752,56.785343],[-4.477906,56.786185],[-4.479694,56.788342],[-4.480612,56.788415],[-4.482069,56.79029],[-4.483252,56.790639],[-4.484404,56.791726],[-4.486051,56.791743],[-4.487726,56.79255],[-4.491466,56.793383],[-4.494425,56.795534],[-4.50304,56.799833],[-4.510971,56.803313],[-4.513188,56.80352],[-4.517058,56.804439],[-4.517286,56.804907],[-4.520513,56.805259],[-4.528528,56.801318],[-4.52979,56.79768],[-4.531528,56.796615],[-4.533369,56.794771],[-4.535618,56.794007],[-4.535204,56.791148],[-4.538295,56.787212],[-4.544957,56.783194],[-4.549653,56.781947],[-4.550103,56.780855],[-4.549356,56.78034],[-4.55072,56.776439],[-4.546793,56.772367],[-4.547651,56.771986],[-4.560418,56.76958],[-4.575229,56.765519],[-4.579121,56.764993],[-4.580785,56.764451],[-4.582841,56.762458],[-4.589872,56.759881],[-4.58649,56.75841],[-4.583996,56.750688],[-4.582112,56.748386],[-4.579862,56.743597],[-4.580236,56.7431],[-4.57951,56.740252],[-4.580184,56.73947],[-4.578135,56.738686],[-4.577631,56.735272],[-4.575996,56.734789],[-4.584532,56.72957],[-4.591507,56.724132],[-4.605917,56.707959],[-4.604718,56.707396],[-4.602694,56.707308],[-4.598346,56.706347],[-4.595327,56.706037],[-4.591712,56.704908],[-4.590545,56.702313],[-4.591578,56.700229],[-4.590509,56.698705],[-4.591541,56.69827],[-4.590022,56.696486],[-4.592016,56.693182],[-4.596774,56.691479],[-4.603255,56.692134],[-4.61036,56.691671],[-4.611318,56.691112],[-4.614911,56.691108],[-4.617184,56.690566],[-4.626994,56.68756],[-4.631045,56.686625],[-4.633365,56.684657],[-4.634928,56.682494],[-4.637583,56.682164],[-4.640579,56.680995],[-4.649436,56.679117],[-4.652016,56.677835],[-4.652813,56.676528],[-4.657569,56.674742],[-4.65902,56.674823],[-4.66083,56.676069],[-4.66287,56.675248],[-4.664164,56.675427],[-4.666527,56.674896],[-4.669556,56.676413],[-4.67188,56.676489],[-4.673435,56.677237],[-4.676431,56.677465],[-4.678625,56.67686],[-4.68237,56.676955],[-4.685401,56.676292],[-4.690993,56.675955],[-4.692609,56.675377],[-4.694646,56.675207],[-4.698991,56.675238],[-4.700834,56.675787],[-4.702557,56.675687],[-4.706223,56.676605],[-4.717536,56.676587],[-4.719405,56.658913],[-4.720433,56.656428],[-4.716643,56.643223],[-4.715421,56.642328],[-4.712201,56.642466],[-4.708402,56.643407],[-4.70483,56.643062],[-4.69631,56.643458],[-4.6944,56.642857],[-4.693018,56.643161],[-4.684968,56.641659],[-4.67864,56.642133],[-4.675649,56.641253],[-4.671439,56.64111],[-4.666712,56.639886],[-4.664137,56.639797],[-4.662895,56.640219],[-4.647547,56.649067],[-4.643044,56.650817],[-4.639507,56.653426],[-4.633396,56.65658],[-4.629811,56.655016],[-4.62858,56.653249],[-4.630262,56.652054],[-4.630586,56.650798],[-4.629687,56.649482],[-4.631202,56.647581],[-4.630448,56.646874],[-4.627857,56.646515],[-4.625795,56.644572],[-4.624007,56.644119],[-4.623089,56.642229],[-4.620697,56.641363],[-4.618519,56.637387],[-4.620227,56.636388],[-4.620528,56.634712],[-4.624041,56.633038],[-4.626046,56.631603],[-4.629316,56.630005],[-4.630853,56.628063],[-4.633136,56.627363],[-4.635411,56.625491],[-4.636797,56.625025],[-4.633993,56.621643],[-4.626424,56.615597],[-4.62536,56.615413],[-4.621409,56.616148],[-4.616373,56.616038],[-4.609817,56.61481],[-4.597315,56.604251],[-4.58614,56.599654],[-4.58273,56.594458],[-4.575979,56.588374],[-4.574705,56.581867],[-4.573718,56.581124],[-4.572781,56.578955],[-4.570599,56.579198],[-4.571219,56.577891],[-4.570513,56.576252],[-4.567707,56.575092],[-4.55984,56.573003],[-4.561746,56.570142],[-4.563754,56.571421],[-4.567735,56.572031],[-4.5707,56.572055],[-4.575944,56.571232],[-4.577595,56.57122],[-4.579465,56.571775],[-4.580851,56.571696],[-4.584335,56.573242],[-4.586084,56.573214],[-4.589326,56.5748],[-4.593012,56.574288],[-4.596144,56.574496],[-4.599524,56.576659],[-4.601925,56.575575],[-4.603078,56.574342],[-4.604825,56.573591],[-4.606567,56.571923],[-4.611048,56.572108],[-4.612772,56.570786],[-4.624416,56.569651],[-4.628266,56.568478],[-4.632107,56.568109],[-4.641408,56.567952],[-4.641089,56.567698],[-4.648128,56.562897],[-4.648801,56.561229],[-4.654185,56.561181],[-4.656809,56.562163],[-4.658102,56.561565],[-4.661332,56.562251],[-4.668009,56.559402],[-4.673995,56.55602],[-4.675903,56.555835],[-4.676862,56.555244],[-4.681833,56.55409],[-4.682054,56.553186],[-4.688899,56.552067],[-4.692119,56.55295],[-4.695522,56.551492],[-4.697585,56.549956],[-4.697361,56.547835],[-4.698105,56.547203],[-4.699152,56.543509],[-4.697626,56.541044],[-4.688634,56.53927],[-4.683356,56.539973],[-4.680271,56.539707],[-4.671258,56.535542],[-4.668166,56.533214],[-4.66747,56.532227],[-4.665835,56.533147],[-4.659454,56.534452],[-4.658554,56.532171],[-4.657045,56.531183],[-4.653723,56.52601],[-4.654693,56.52314],[-4.653555,56.519888],[-4.652578,56.518709],[-4.653685,56.518156],[-4.655984,56.513824],[-4.658807,56.511898],[-4.658299,56.510682],[-4.661386,56.509497],[-4.663595,56.508196],[-4.665142,56.506505],[-4.665679,56.505249],[-4.67608,56.50005],[-4.677735,56.4969],[-4.679986,56.495405],[-4.682304,56.492339],[-4.686206,56.490547],[-4.682899,56.489491],[-4.682529,56.486443],[-4.679174,56.483783],[-4.67784,56.48307],[-4.675898,56.482942],[-4.673379,56.481877],[-4.670834,56.479752],[-4.668092,56.479793],[-4.660811,56.479037],[-4.652722,56.479256],[-4.648808,56.479029],[-4.645553,56.477414],[-4.642961,56.476696],[-4.640933,56.476955],[-4.639066,56.476037],[-4.638025,56.474599],[-4.636382,56.474095],[-4.633974,56.472748],[-4.629993,56.473646],[-4.628472,56.474307],[-4.624293,56.477402],[-4.623719,56.477446],[-4.621575,56.479796],[-4.620328,56.480438],[-4.621714,56.481924],[-4.624088,56.482426],[-4.62564,56.483508],[-4.625886,56.484716],[-4.625148,56.486484],[-4.622465,56.487857],[-4.618234,56.487879],[-4.616136,56.489371],[-4.614597,56.48943],[-4.614063,56.490169],[-4.608717,56.49323],[-4.60795,56.494126],[-4.603877,56.495268],[-4.600717,56.497554],[-4.595701,56.497956],[-4.593159,56.498562],[-4.591678,56.498301],[-4.588108,56.498964],[-4.587241,56.499481],[-4.584545,56.499613],[-4.583786,56.500761],[-4.582499,56.500357],[-4.578179,56.504815],[-4.577264,56.50522],[-4.573809,56.505566],[-4.570526,56.503648],[-4.569117,56.503362],[-4.562195,56.504211],[-4.561174,56.505459],[-4.558932,56.506557],[-4.557561,56.504913],[-4.555902,56.504408],[-4.553147,56.505485],[-4.552268,56.505341],[-4.541927,56.506003],[-4.539387,56.506428],[-4.538704,56.507021],[-4.532105,56.50482],[-4.528502,56.504898],[-4.527503,56.505641],[-4.528467,56.506201],[-4.528003,56.507775],[-4.53062,56.509604],[-4.53093,56.511207],[-4.53014,56.512166],[-4.532882,56.514034],[-4.531172,56.515327],[-4.530141,56.517662],[-4.528795,56.518566],[-4.521992,56.519068],[-4.519477,56.519995],[-4.516858,56.520228],[-4.51599,56.520987],[-4.511262,56.521896],[-4.507416,56.523363],[-4.506693,56.522631],[-4.507611,56.522006],[-4.507309,56.520273],[-4.506313,56.519956],[-4.504778,56.5185],[-4.502205,56.519172],[-4.500299,56.517269],[-4.499042,56.516441],[-4.497107,56.516075],[-4.494355,56.512657],[-4.490896,56.511967],[-4.48987,56.513048],[-4.48737,56.512357],[-4.482983,56.513883],[-4.481109,56.512568],[-4.478602,56.513139],[-4.477391,56.51301],[-4.470093,56.515268],[-4.469864,56.515987],[-4.460897,56.517715],[-4.458166,56.517715],[-4.456947,56.51836],[-4.453063,56.518378],[-4.450262,56.519444],[-4.449002,56.520813],[-4.446925,56.521137],[-4.444221,56.522565],[-4.441851,56.524656],[-4.441978,56.525737],[-4.439927,56.525587],[-4.437415,56.526348],[-4.433904,56.525733],[-4.431975,56.525942],[-4.4308,56.526513],[-4.427505,56.525594],[-4.425969,56.524842],[-4.422881,56.524857],[-4.418488,56.525707],[-4.417366,56.52558],[-4.414705,56.526818],[-4.408671,56.528598],[-4.402827,56.526829],[-4.400432,56.52727],[-4.399609,56.527875],[-4.396714,56.528636],[-4.390246,56.533861],[-4.385958,56.53344],[-4.384286,56.533616],[-4.381139,56.533357],[-4.378494,56.533592],[-4.378082,56.534279],[-4.375285,56.536094],[-4.374151,56.536174],[-4.37362,56.537294],[-4.374146,56.539086],[-4.372623,56.541262],[-4.370484,56.542427],[-4.371413,56.544274],[-4.371353,56.545259],[-4.368893,56.54664],[-4.365033,56.547091],[-4.362004,56.546785],[-4.35771,56.544323],[-4.341037,56.540267],[-4.335163,56.540103],[-4.333186,56.53983],[-4.331225,56.539018],[-4.330471,56.537599],[-4.332065,56.536931],[-4.333382,56.535747],[-4.334859,56.533441],[-4.333133,56.529308],[-4.331685,56.528899],[-4.33028,56.52773],[-4.327569,56.526348],[-4.323039,56.519297],[-4.320903,56.518663],[-4.321353,56.516839],[-4.31896,56.51586],[-4.317611,56.516002],[-4.315357,56.515289],[-4.310214,56.515578],[-4.309184,56.511346],[-4.311072,56.509914],[-4.307004,56.505963],[-4.307033,56.505105],[-4.308146,56.503493],[-4.307751,56.499394],[-4.305562,56.496927],[-4.303855,56.496518],[-4.304425,56.494122],[-4.303411,56.493754],[-4.298238,56.493091],[-4.29861,56.492396],[-4.297344,56.491216],[-4.300448,56.488947],[-4.299957,56.486467],[-4.300413,56.485151],[-4.29984,56.483194],[-4.302128,56.482626],[-4.302375,56.481875],[-4.300781,56.481437],[-4.299584,56.480448],[-4.296886,56.475044],[-4.274673,56.478571],[-4.242759,56.488146],[-4.194444,56.49532],[-4.154482,56.510285],[-4.146788,56.506285],[-4.141208,56.504588],[-4.137012,56.50294],[-4.134853,56.502541],[-4.130762,56.502315],[-4.126273,56.500788],[-4.124813,56.499973],[-4.122704,56.497996],[-4.119862,56.496849],[-4.116288,56.494816],[-4.110906,56.490042],[-4.108806,56.488936],[-4.107471,56.486694],[-4.098618,56.465345],[-4.100401,56.465441],[-4.103758,56.46715],[-4.105477,56.466532],[-4.110308,56.463772],[-4.115862,56.462505],[-4.131566,56.4641],[-4.134435,56.464024],[-4.136378,56.461627],[-4.14162,56.461317],[-4.142376,56.459183],[-4.145033,56.457798],[-4.148587,56.456636],[-4.14923,56.454953],[-4.148131,56.454307],[-4.156724,56.449732],[-4.159823,56.445019],[-4.163192,56.444632],[-4.165738,56.447289],[-4.16632,56.448698],[-4.173336,56.450094],[-4.174673,56.449913],[-4.17679,56.450465],[-4.180114,56.452698],[-4.194624,56.458503],[-4.19895,56.459487],[-4.201412,56.457574],[-4.202051,56.457819],[-4.195914,56.401272],[-4.197758,56.399932],[-4.198656,56.397099],[-4.197804,56.392859],[-4.196648,56.391513],[-4.196452,56.386696],[-4.240624,56.38439],[-4.239154,56.380198],[-4.239148,56.371818],[-4.239656,56.369288],[-4.238124,56.368286],[-4.238051,56.367461],[-4.239663,56.362647],[-4.241724,56.359693],[-4.24203,56.352781],[-4.236237,56.347835],[-4.228381,56.344522],[-4.226968,56.343334],[-4.223558,56.342294],[-4.22409,56.341143],[-4.22714,56.341286],[-4.228399,56.340118],[-4.229183,56.33858],[-4.231337,56.337364],[-4.233793,56.334822],[-4.236925,56.333601],[-4.237412,56.329212],[-4.236322,56.328553],[-4.234587,56.326405],[-4.230497,56.326447],[-4.230845,56.325614],[-4.225695,56.321748],[-4.22106,56.319634],[-4.216618,56.318613],[-4.211566,56.318222],[-4.210706,56.315793],[-4.209439,56.314562],[-4.202475,56.314232],[-4.197926,56.31443],[-4.197102,56.312598],[-4.193828,56.310913],[-4.193284,56.309606],[-4.191987,56.309116],[-4.191445,56.307136],[-4.188206,56.304218],[-4.178377,56.303205],[-4.171969,56.302945],[-4.168209,56.303334],[-4.166787,56.302919],[-4.165193,56.303589],[-4.161839,56.303311],[-4.151047,56.299532],[-4.150053,56.298385],[-4.144805,56.298269],[-4.140708,56.296889],[-4.13988,56.297822],[-4.135336,56.294447],[-4.118712,56.287841],[-4.115694,56.281031],[-4.112291,56.280258],[-4.107606,56.280252],[-4.105204,56.279156],[-4.103503,56.279217],[-4.101249,56.278773],[-4.093552,56.278918],[-4.088521,56.280872],[-4.084079,56.280889],[-4.080703,56.282514],[-4.079857,56.283301],[-4.078504,56.289915],[-4.061236,56.278782],[-4.052206,56.273491],[-4.038547,56.280263],[-4.037379,56.277657],[-4.034953,56.276072],[-4.035873,56.274279],[-4.039581,56.271446],[-4.038093,56.270377],[-4.037562,56.269111],[-4.030078,56.270895],[-4.025449,56.270238],[-4.017763,56.272274],[-4.005281,56.274934],[-3.976462,56.253265],[-3.967078,56.245286],[-3.963872,56.245248],[-3.96154,56.244781],[-3.959446,56.245646],[-3.95696,56.245474],[-3.956209,56.246573],[-3.947499,56.238862],[-3.947037,56.236783],[-3.943951,56.235207],[-3.940931,56.230283],[-3.940637,56.228267],[-3.939358,56.228162],[-3.93856,56.229337],[-3.937069,56.228336],[-3.934904,56.22839],[-3.934527,56.229458],[-3.931797,56.230663],[-3.9289,56.230875],[-3.926585,56.22997],[-3.922642,56.229737],[-3.920697,56.2282],[-3.92076,56.226913],[-3.918837,56.225567],[-3.917061,56.225476],[-3.916295,56.224927],[-3.901368,56.233464],[-3.900401,56.230665],[-3.898938,56.229577],[-3.898444,56.22853],[-3.899027,56.227565],[-3.894038,56.226033],[-3.892339,56.225147],[-3.889248,56.22431],[-3.887863,56.223076],[-3.885542,56.222132],[-3.883867,56.221852],[-3.878286,56.219861],[-3.877588,56.218789],[-3.876281,56.215313],[-3.875221,56.214745],[-3.873135,56.214462],[-3.871176,56.215444],[-3.864953,56.220135],[-3.855239,56.224383],[-3.847818,56.225523],[-3.84764,56.223513],[-3.848274,56.222757],[-3.846363,56.220593],[-3.842917,56.219194],[-3.842098,56.216744],[-3.842384,56.215153],[-3.843182,56.214306],[-3.841955,56.212248],[-3.840366,56.211746],[-3.843888,56.201814],[-3.836411,56.195621],[-3.82945,56.196549],[-3.799241,56.205733],[-3.78913,56.210005],[-3.785903,56.212033],[-3.783119,56.212482],[-3.781871,56.213753],[-3.780879,56.217227],[-3.775099,56.215517],[-3.76426,56.213013],[-3.763293,56.211796],[-3.758939,56.211462],[-3.75531,56.210346],[-3.753394,56.211649],[-3.752188,56.211908],[-3.751112,56.210221],[-3.748406,56.207977],[-3.74828,56.206276],[-3.745746,56.203378],[-3.74512,56.201136],[-3.743107,56.200113],[-3.741146,56.197561],[-3.74076,56.19386],[-3.741308,56.192064],[-3.73886,56.189785],[-3.736621,56.189102],[-3.735442,56.190107],[-3.730855,56.192386],[-3.726329,56.193164],[-3.717957,56.191564],[-3.713995,56.193421],[-3.710804,56.192158],[-3.706248,56.193344],[-3.692532,56.194431],[-3.686454,56.195853],[-3.681837,56.194397],[-3.67511,56.192974],[-3.666936,56.188628],[-3.663256,56.191647],[-3.662352,56.192913],[-3.660851,56.193985],[-3.659614,56.194073],[-3.658929,56.196135],[-3.657621,56.196436],[-3.655472,56.199304],[-3.651796,56.201735],[-3.650553,56.202996],[-3.649097,56.202135],[-3.647068,56.199915],[-3.645636,56.199049],[-3.638064,56.196854],[-3.632443,56.199058],[-3.625946,56.200967],[-3.623864,56.202578],[-3.622784,56.203962],[-3.619266,56.205464],[-3.614605,56.205548],[-3.613189,56.204869],[-3.610966,56.204963],[-3.604775,56.204357],[-3.602853,56.204542],[-3.601982,56.203915],[-3.600164,56.201523],[-3.595958,56.199152],[-3.591737,56.198464],[-3.588144,56.198692],[-3.585093,56.198192],[-3.579371,56.195683],[-3.575247,56.196114],[-3.572291,56.194216],[-3.571407,56.192916],[-3.579948,56.193019],[-3.585032,56.19164],[-3.58537,56.189473],[-3.583162,56.186853],[-3.583076,56.185534],[-3.58234,56.184422],[-3.587914,56.183737],[-3.588064,56.181093],[-3.597977,56.181091],[-3.597176,56.177393],[-3.594929,56.177678],[-3.591406,56.174139],[-3.593341,56.172973],[-3.597516,56.17223],[-3.598158,56.171287],[-3.601658,56.171837],[-3.60392,56.171854],[-3.60557,56.171208],[-3.605903,56.170205],[-3.610501,56.170569],[-3.61436,56.168839],[-3.617663,56.168264],[-3.621452,56.168546],[-3.625883,56.16982],[-3.626881,56.169196],[-3.627026,56.167709],[-3.631462,56.165626],[-3.633335,56.163911],[-3.6368,56.163616],[-3.643442,56.162083],[-3.645144,56.161291],[-3.646827,56.159862],[-3.647924,56.158288],[-3.645855,56.156819],[-3.641865,56.155516],[-3.642799,56.154385],[-3.639274,56.15322],[-3.636661,56.151289],[-3.636645,56.149905],[-3.63895,56.149028],[-3.64026,56.1478],[-3.644706,56.146552],[-3.644092,56.145789],[-3.641479,56.144491],[-3.639753,56.14211],[-3.639236,56.140593],[-3.640889,56.138968],[-3.643693,56.138272],[-3.644786,56.137619],[-3.639834,56.133577],[-3.636862,56.134235],[-3.63425,56.133617],[-3.634098,56.133126],[-3.628348,56.13277],[-3.625607,56.132458],[-3.623483,56.13337],[-3.621563,56.133545],[-3.618118,56.134743],[-3.614195,56.13495],[-3.612181,56.134621],[-3.607316,56.134805],[-3.603773,56.136571],[-3.597194,56.13711],[-3.594704,56.137726],[-3.591616,56.137925],[-3.588128,56.137562],[-3.580952,56.13931],[-3.580882,56.140037],[-3.578253,56.141081],[-3.580876,56.14275],[-3.581074,56.143736],[-3.583801,56.144059],[-3.582654,56.148599],[-3.582887,56.150872],[-3.577463,56.154516],[-3.57141,56.157362],[-3.568808,56.159054],[-3.567702,56.157991],[-3.563963,56.159811],[-3.562082,56.159683],[-3.5565,56.157307],[-3.549394,56.158338],[-3.546103,56.158524],[-3.542021,56.150904],[-3.540538,56.149847],[-3.540007,56.146462],[-3.533897,56.147284],[-3.529518,56.148245],[-3.527772,56.146864],[-3.525639,56.146166],[-3.524583,56.146581],[-3.517668,56.147551],[-3.511276,56.147925],[-3.498874,56.149806],[-3.496328,56.149329],[-3.491637,56.149777],[-3.481205,56.147225],[-3.478953,56.146928],[-3.473736,56.148496],[-3.471873,56.148397],[-3.468814,56.149215],[-3.46626,56.148522],[-3.465026,56.147162],[-3.460307,56.146261],[-3.458467,56.146952],[-3.456504,56.15017],[-3.453703,56.150378],[-3.452025,56.147086],[-3.445552,56.1472],[-3.442298,56.146426],[-3.440365,56.145032],[-3.434481,56.145076],[-3.432853,56.142201],[-3.430909,56.142509],[-3.427759,56.141559],[-3.426122,56.14167],[-3.423718,56.140041],[-3.42023,56.139619],[-3.418645,56.138792],[-3.4169,56.138439],[-3.412838,56.139049],[-3.411842,56.139449],[-3.410146,56.13895],[-3.408705,56.139609],[-3.407154,56.139532],[-3.400695,56.141848],[-3.399139,56.141587],[-3.397125,56.142056],[-3.393359,56.142326],[-3.391983,56.142149],[-3.388495,56.142954],[-3.387298,56.142699],[-3.382391,56.143372],[-3.380954,56.143018],[-3.379293,56.144354],[-3.375532,56.144945],[-3.373875,56.145596],[-3.372001,56.145504],[-3.370223,56.146125],[-3.369519,56.14699],[-3.366576,56.155022],[-3.367409,56.156154],[-3.371718,56.1644],[-3.365277,56.166268],[-3.358273,56.167126],[-3.355724,56.168543],[-3.348704,56.1704],[-3.348303,56.171781],[-3.345984,56.172762],[-3.341383,56.173853],[-3.339359,56.173909],[-3.33653,56.172975],[-3.330006,56.172933],[-3.327257,56.171975],[-3.324305,56.171884],[-3.320483,56.169963],[-3.316418,56.166485],[-3.313156,56.167213],[-3.309863,56.167409],[-3.30642,56.167922],[-3.307476,56.169681],[-3.296535,56.170576],[-3.296408,56.172205],[-3.292884,56.173456],[-3.294525,56.175309],[-3.298571,56.175398],[-3.300481,56.17724],[-3.298746,56.177956],[-3.300012,56.178578],[-3.302641,56.178988],[-3.305625,56.17906],[-3.307188,56.180301],[-3.309125,56.185305],[-3.260947,56.196138],[-3.263355,56.198216],[-3.266527,56.202948],[-3.270019,56.202684],[-3.273615,56.207744],[-3.274928,56.214164],[-3.268036,56.214629],[-3.269661,56.215977],[-3.265776,56.218316],[-3.264869,56.220054],[-3.268383,56.220066],[-3.275083,56.223841],[-3.275316,56.223661],[-3.285359,56.224247],[-3.290234,56.224981],[-3.290757,56.225823],[-3.29071,56.229128],[-3.291255,56.229732],[-3.288888,56.230685],[-3.287132,56.230899],[-3.285512,56.23186],[-3.27999,56.233733],[-3.284871,56.234225],[-3.285707,56.234739],[-3.288444,56.23539],[-3.291395,56.235113],[-3.305349,56.236542],[-3.308181,56.237324],[-3.310345,56.237561],[-3.314878,56.239524],[-3.317099,56.239608],[-3.321504,56.237864],[-3.329331,56.23735],[-3.336487,56.238342],[-3.340838,56.238187],[-3.343835,56.23842],[-3.349255,56.239216],[-3.356769,56.240802],[-3.359056,56.239992],[-3.360019,56.240897],[-3.367491,56.239761],[-3.367327,56.240769],[-3.363375,56.243121],[-3.358226,56.248226],[-3.357161,56.248604],[-3.356704,56.251113],[-3.355437,56.253783],[-3.353305,56.255272],[-3.35455,56.255788],[-3.354706,56.256775],[-3.360542,56.258739],[-3.361833,56.258813],[-3.368927,56.259979],[-3.371801,56.260761],[-3.377344,56.26261],[-3.379681,56.264158],[-3.38117,56.266415],[-3.383636,56.268761],[-3.377706,56.27074],[-3.375797,56.271153],[-3.373485,56.271159],[-3.371107,56.272584],[-3.370555,56.273947],[-3.369135,56.274976],[-3.367706,56.275022],[-3.364015,56.276351],[-3.361924,56.277655],[-3.357785,56.278601],[-3.35487,56.280414],[-3.351663,56.280422],[-3.350181,56.28173],[-3.353671,56.282911],[-3.350788,56.285671],[-3.347835,56.285531],[-3.345817,56.286609],[-3.342668,56.287475],[-3.341183,56.286309],[-3.335533,56.28945],[-3.333108,56.287677],[-3.330592,56.286769],[-3.32967,56.287205],[-3.328194,56.286105],[-3.326138,56.283509],[-3.324829,56.282801],[-3.321415,56.283656],[-3.320833,56.283278],[-3.318177,56.283728],[-3.312533,56.285248],[-3.310432,56.287337],[-3.308145,56.287808],[-3.306365,56.287541],[-3.302271,56.288435],[-3.300885,56.289864],[-3.299672,56.290107],[-3.294331,56.289776],[-3.292264,56.292796],[-3.295677,56.296285],[-3.296205,56.297521],[-3.293772,56.298826],[-3.293892,56.300312],[-3.295198,56.302911],[-3.298441,56.30697],[-3.299691,56.309935],[-3.294516,56.31123],[-3.295339,56.311842],[-3.299201,56.312185],[-3.30093,56.313097],[-3.300622,56.31398],[-3.297166,56.314804],[-3.295277,56.316839],[-3.292195,56.318504],[-3.291747,56.319316],[-3.289788,56.32081],[-3.287769,56.3219],[-3.284554,56.322986],[-3.282719,56.324188],[-3.275827,56.326226],[-3.27073,56.326318],[-3.266563,56.328153],[-3.267968,56.330176],[-3.267621,56.332399],[-3.273116,56.332561],[-3.272909,56.333963],[-3.268453,56.334912],[-3.267746,56.335714],[-3.267582,56.339069],[-3.264994,56.339094],[-3.262363,56.338605],[-3.25603,56.340097],[-3.258418,56.342414],[-3.257027,56.344341],[-3.255301,56.345223],[-3.255642,56.346268],[-3.257147,56.346505],[-3.261504,56.348578],[-3.265787,56.347916],[-3.269894,56.348049],[-3.273673,56.347722],[-3.276891,56.34936],[-3.276962,56.350386],[-3.283,56.350186],[-3.294581,56.351426],[-3.297642,56.351551],[-3.301159,56.350861],[-3.304607,56.348381],[-3.307832,56.347385],[-3.316564,56.348656],[-3.321336,56.348425],[-3.324058,56.348587],[-3.327785,56.349781],[-3.331733,56.351578],[-3.333613,56.351718],[-3.335236,56.350926],[-3.335806,56.349707],[-3.331898,56.345819],[-3.331291,56.344273],[-3.330207,56.34322],[-3.330508,56.34207],[-3.3323,56.340201],[-3.335101,56.338781],[-3.338662,56.338212],[-3.341054,56.338782],[-3.342256,56.339963],[-3.342056,56.341456],[-3.339789,56.342891],[-3.33955,56.344189],[-3.341182,56.345553],[-3.343742,56.346464],[-3.344765,56.347383],[-3.344236,56.350316],[-3.344771,56.351234],[-3.34636,56.351018],[-3.350812,56.349018],[-3.359219,56.349032],[-3.364631,56.35107],[-3.367371,56.352467],[-3.36906,56.350785],[-3.369967,56.350761],[-3.371817,56.351912],[-3.375204,56.351382],[-3.377326,56.349851],[-3.379661,56.349181],[-3.381874,56.349266],[-3.385025,56.351172],[-3.385955,56.351258],[-3.395521,56.349436],[-3.399377,56.349171],[-3.401801,56.349334],[-3.404654,56.35031],[-3.405977,56.352042],[-3.409688,56.35319],[-3.412467,56.352758],[-3.413636,56.353151],[-3.413947,56.35502],[-3.419246,56.359448],[-3.421202,56.360293],[-3.423104,56.359845],[-3.423548,56.357784],[-3.423068,56.356773],[-3.421479,56.355885],[-3.420851,56.354613],[-3.421848,56.353945],[-3.424198,56.353506],[-3.426882,56.353558],[-3.427987,56.354843],[-3.426891,56.356017],[-3.427726,56.357813],[-3.429055,56.35831],[-3.435427,56.357471],[-3.435389,56.357808],[-3.431032,56.35858],[-3.428644,56.358573],[-3.427009,56.357819],[-3.426314,56.355906],[-3.427454,56.354796],[-3.426546,56.353876],[-3.422826,56.354054],[-3.421407,56.354884],[-3.424041,56.357147],[-3.423916,56.359859],[-3.422645,56.360567],[-3.420955,56.36058],[-3.418051,56.359136],[-3.414133,56.35595],[-3.413411,56.355024],[-3.413262,56.353668],[-3.411955,56.353274],[-3.410119,56.353603],[-3.406083,56.352621],[-3.405017,56.352102],[-3.403537,56.350244],[-3.400995,56.349644],[-3.393214,56.350344],[-3.385935,56.351759],[-3.38416,56.351397],[-3.381634,56.349735],[-3.379943,56.349564],[-3.37785,56.350255],[-3.375448,56.351994],[-3.371876,56.352385],[-3.369204,56.35143],[-3.368609,56.352602],[-3.367255,56.352996],[-3.363755,56.351286],[-3.359983,56.350243],[-3.353743,56.349575],[-3.350278,56.349991],[-3.346718,56.351849],[-3.344023,56.351775],[-3.343369,56.350605],[-3.34369,56.348255],[-3.342596,56.346742],[-3.339843,56.345876],[-3.338663,56.344611],[-3.33878,56.342689],[-3.340507,56.341371],[-3.34111,56.340276],[-3.340518,56.339394],[-3.338891,56.338977],[-3.337169,56.339159],[-3.334627,56.340078],[-3.332589,56.342546],[-3.333228,56.345529],[-3.337782,56.349242],[-3.337137,56.351334],[-3.335096,56.352587],[-3.331466,56.352457],[-3.323701,56.349959],[-3.319374,56.349699],[-3.315612,56.349935],[-3.31142,56.349569],[-3.308571,56.348939],[-3.306165,56.349536],[-3.301241,56.353571],[-3.306446,56.35453],[-3.306852,56.35538],[-3.315647,56.358333],[-3.324119,56.360195],[-3.328405,56.363643],[-3.328688,56.364086],[-3.333116,56.367595],[-3.336494,56.369276],[-3.336181,56.370017],[-3.337466,56.371551],[-3.339901,56.372848],[-3.342828,56.373784],[-3.347793,56.374661],[-3.344158,56.372861],[-3.345262,56.371847],[-3.348008,56.372669],[-3.353303,56.375106],[-3.353242,56.37553],[-3.357073,56.376458],[-3.36667,56.377864],[-3.368671,56.378344],[-3.372005,56.3803],[-3.374664,56.380902],[-3.380004,56.381515],[-3.379404,56.383051],[-3.38261,56.384058],[-3.384662,56.383966],[-3.389056,56.382725],[-3.401651,56.378321],[-3.405717,56.378089],[-3.409815,56.378451],[-3.412314,56.378312],[-3.419589,56.376913],[-3.423034,56.377106],[-3.427387,56.378359],[-3.429169,56.381042],[-3.427746,56.3806],[-3.425678,56.381663],[-3.425368,56.382755],[-3.426159,56.389046],[-3.425409,56.395809],[-3.42965,56.405746],[-3.431053,56.407036],[-3.431285,56.408291],[-3.432743,56.410303],[-3.438659,56.414763],[-3.442691,56.416792],[-3.449773,56.418949],[-3.449628,56.420438],[-3.454221,56.422226],[-3.453345,56.422848],[-3.450761,56.422149],[-3.446502,56.41919],[-3.446614,56.420541],[-3.443061,56.418181],[-3.437781,56.416237],[-3.435222,56.413585],[-3.432175,56.412319],[-3.427544,56.405775],[-3.426204,56.402367],[-3.423066,56.397997],[-3.423883,56.395421],[-3.42105,56.390572],[-3.421877,56.389184],[-3.421994,56.387774],[-3.419921,56.385021],[-3.414029,56.379925],[-3.411463,56.379415],[-3.407723,56.380201],[-3.406071,56.379912],[-3.401756,56.380267],[-3.392445,56.383851],[-3.385172,56.385406],[-3.381155,56.385483],[-3.378384,56.384746],[-3.375334,56.38331],[-3.372643,56.382725],[-3.366686,56.382255],[-3.35419,56.378163],[-3.346292,56.377314],[-3.340361,56.375903],[-3.329553,56.370813],[-3.326217,56.368716],[-3.324369,56.366934],[-3.31999,56.364151],[-3.314664,56.361667],[-3.302992,56.358398],[-3.302655,56.358131],[-3.2963,56.357762],[-3.291108,56.358219],[-3.287623,56.359318],[-3.280894,56.359893],[-3.280891,56.361339],[-3.275069,56.362689],[-3.265836,56.365615],[-3.258904,56.367149],[-3.2579,56.367758],[-3.254046,56.368874],[-3.248123,56.368976],[-3.243298,56.369479],[-3.236027,56.369985],[-3.230888,56.371322],[-3.2286,56.372692],[-3.227212,56.371619],[-3.221621,56.373988],[-3.214764,56.375757],[-3.207619,56.378523],[-3.205471,56.382661],[-3.202885,56.384462],[-3.200598,56.384997],[-3.196933,56.385363],[-3.194755,56.385103],[-3.19315,56.387588],[-3.190093,56.388785],[-3.182,56.393783],[-3.179473,56.394646],[-3.178728,56.395471],[-3.170723,56.40052],[-3.168877,56.402132],[-3.165281,56.403707],[-3.163139,56.404138],[-3.159125,56.406111],[-3.158318,56.408153],[-3.156668,56.41027],[-3.149902,56.413833],[-3.151028,56.414406],[-3.147789,56.415236],[-3.145941,56.417231],[-3.145754,56.418325],[-3.14232,56.421513],[-3.139813,56.422782],[-3.139002,56.423629],[-3.136226,56.424712],[-3.135855,56.425363],[-3.133805,56.425996],[-3.132497,56.426965],[-3.130068,56.427815],[-3.12835,56.429973],[-3.12657,56.431121],[-3.124403,56.431633],[-3.123146,56.431426],[-3.121307,56.432886],[-3.117505,56.434109],[-3.110937,56.43457],[-3.108803,56.435774],[-3.102825,56.437355],[-3.10009,56.438618],[-3.099657,56.439522],[-3.097628,56.440336],[-3.095523,56.442263],[-3.094485,56.444264],[-3.091212,56.446319],[-3.085304,56.449679],[-3.085473,56.450521],[-3.082421,56.451327],[-3.077662,56.450911],[-3.072991,56.451338],[-3.070551,56.451285],[-3.069285,56.452473],[-3.068149,56.452283],[-3.066303,56.452852],[-3.063925,56.45309],[-3.062314,56.452431],[-3.0601,56.453216],[-3.058906,56.45294],[-3.057431,56.456285],[-3.055088,56.457538],[-3.051986,56.45834],[-3.052648,56.458858]]]]},"properties":{"LAD22CD":"S12000048","LAD22NM":"Perth and Kinross","BNG_E":284302,"BNG_N":744185,"LONG":-3.88484,"LAT":56.57528,"GlobalID":"4225e2a5-c178-479a-918b-29405f8fc2e1"},"id":350}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.22798,55.840534],[-4.23095,55.842098],[-4.234808,55.8422],[-4.238488,55.842501],[-4.240731,55.843326],[-4.240019,55.845226],[-4.237542,55.847299],[-4.2378,55.848224],[-4.246233,55.851789],[-4.258076,55.854958],[-4.263642,55.855616],[-4.271086,55.855336],[-4.277913,55.855817],[-4.296604,55.859653],[-4.296395,55.858925],[-4.293929,55.858363],[-4.29613,55.856465],[-4.298473,55.856932],[-4.297544,55.858752],[-4.297699,55.859609],[-4.299424,55.860154],[-4.299349,55.861299],[-4.302863,55.862571],[-4.309555,55.864305],[-4.315918,55.866349],[-4.317531,55.866437],[-4.319093,55.867164],[-4.323874,55.867545],[-4.324037,55.865136],[-4.325479,55.865163],[-4.325478,55.867773],[-4.335553,55.868467],[-4.337447,55.868333],[-4.344336,55.86979],[-4.35193,55.872007],[-4.351063,55.866204],[-4.352533,55.865355],[-4.354063,55.872771],[-4.354406,55.872931],[-4.356256,55.873178],[-4.355133,55.865759],[-4.353092,55.863574],[-4.356709,55.863521],[-4.360484,55.860832],[-4.364672,55.855324],[-4.376545,55.856461],[-4.377576,55.856239],[-4.380873,55.856342],[-4.379216,55.852668],[-4.379874,55.851044],[-4.377173,55.851517],[-4.375881,55.8514],[-4.373921,55.850301],[-4.374879,55.848654],[-4.371358,55.847627],[-4.37035,55.846685],[-4.368585,55.846883],[-4.368029,55.84544],[-4.368781,55.845266],[-4.369746,55.841246],[-4.370903,55.840742],[-4.37024,55.839445],[-4.371064,55.838447],[-4.373818,55.837701],[-4.374763,55.835626],[-4.378593,55.828878],[-4.377558,55.826787],[-4.381414,55.823148],[-4.372937,55.818885],[-4.370039,55.81848],[-4.367453,55.8177],[-4.368321,55.81606],[-4.372175,55.815836],[-4.372581,55.814886],[-4.374052,55.81419],[-4.374347,55.812819],[-4.375613,55.812041],[-4.376053,55.810852],[-4.374643,55.80948],[-4.374266,55.807281],[-4.371743,55.806033],[-4.367782,55.803358],[-4.371057,55.803146],[-4.369805,55.802169],[-4.373773,55.799597],[-4.378076,55.799899],[-4.377293,55.798573],[-4.372768,55.795606],[-4.372059,55.794765],[-4.36028,55.794465],[-4.355839,55.79503],[-4.343695,55.795024],[-4.333449,55.792874],[-4.322795,55.80051],[-4.323224,55.803978],[-4.32726,55.80763],[-4.326238,55.808445],[-4.323868,55.807996],[-4.315043,55.80864],[-4.31523,55.809605],[-4.313208,55.80985],[-4.311994,55.811583],[-4.310014,55.810064],[-4.306696,55.809121],[-4.305659,55.809074],[-4.305534,55.810441],[-4.300809,55.810478],[-4.298508,55.809468],[-4.297337,55.80995],[-4.295064,55.812555],[-4.292625,55.813936],[-4.290278,55.812519],[-4.283037,55.811763],[-4.277508,55.809438],[-4.277019,55.809866],[-4.271959,55.808726],[-4.270441,55.808764],[-4.267788,55.8098],[-4.266657,55.810936],[-4.260687,55.811013],[-4.259926,55.810113],[-4.263175,55.807401],[-4.264839,55.807295],[-4.265579,55.80635],[-4.267084,55.80681],[-4.269279,55.803993],[-4.269243,55.802811],[-4.265594,55.804126],[-4.264422,55.801981],[-4.265781,55.80018],[-4.261456,55.79955],[-4.260302,55.797971],[-4.262544,55.795832],[-4.263136,55.793539],[-4.264845,55.793145],[-4.267427,55.793093],[-4.268245,55.791632],[-4.264626,55.787646],[-4.264861,55.786967],[-4.263269,55.786001],[-4.26142,55.785701],[-4.259037,55.787124],[-4.257427,55.786683],[-4.255435,55.787151],[-4.254392,55.786742],[-4.251654,55.78668],[-4.249463,55.785549],[-4.25074,55.784887],[-4.24756,55.785394],[-4.243435,55.787139],[-4.239336,55.785115],[-4.23659,55.78444],[-4.235821,55.783934],[-4.236121,55.782647],[-4.233271,55.783155],[-4.226698,55.781275],[-4.224507,55.784268],[-4.225724,55.784911],[-4.229923,55.785914],[-4.22393,55.791944],[-4.209035,55.798865],[-4.204285,55.800446],[-4.21133,55.800312],[-4.212177,55.809523],[-4.21453,55.815072],[-4.216835,55.814905],[-4.220532,55.813237],[-4.225489,55.812173],[-4.228264,55.817378],[-4.227862,55.818227],[-4.233752,55.818656],[-4.233634,55.819997],[-4.234953,55.823841],[-4.23242,55.823388],[-4.228869,55.824463],[-4.23073,55.832592],[-4.233635,55.833605],[-4.231909,55.835416],[-4.232568,55.836297],[-4.230415,55.837826],[-4.231302,55.838215],[-4.22798,55.840534]]],[[[-4.180416,55.904909],[-4.182449,55.902963],[-4.190709,55.900975],[-4.190849,55.899583],[-4.193648,55.899258],[-4.19887,55.898007],[-4.200741,55.898401],[-4.206861,55.897495],[-4.210839,55.897607],[-4.212877,55.897265],[-4.214253,55.897664],[-4.216586,55.897734],[-4.226175,55.896731],[-4.22596,55.896084],[-4.236359,55.896837],[-4.235572,55.897488],[-4.236365,55.898307],[-4.236562,55.899583],[-4.237594,55.901419],[-4.23707,55.902077],[-4.237701,55.904764],[-4.241039,55.904622],[-4.241219,55.904226],[-4.24676,55.903666],[-4.24915,55.906525],[-4.248624,55.907391],[-4.249394,55.909031],[-4.251645,55.908777],[-4.253135,55.909887],[-4.251085,55.911018],[-4.255551,55.913055],[-4.256198,55.914095],[-4.260252,55.912923],[-4.263706,55.918882],[-4.266081,55.919843],[-4.268795,55.920217],[-4.268804,55.921885],[-4.269866,55.923343],[-4.268213,55.925362],[-4.26796,55.927003],[-4.267094,55.92728],[-4.268578,55.928582],[-4.270776,55.928039],[-4.273665,55.929098],[-4.276344,55.929635],[-4.277991,55.92939],[-4.279261,55.928555],[-4.281979,55.927725],[-4.284265,55.927596],[-4.295886,55.928463],[-4.29805,55.929167],[-4.299125,55.920748],[-4.299662,55.919034],[-4.301264,55.916363],[-4.296079,55.914982],[-4.291977,55.914314],[-4.290421,55.911792],[-4.291121,55.911476],[-4.293762,55.911589],[-4.294589,55.91026],[-4.296623,55.909432],[-4.300969,55.908789],[-4.301135,55.907758],[-4.30018,55.905899],[-4.300566,55.905524],[-4.303671,55.906056],[-4.307004,55.905684],[-4.309458,55.906941],[-4.313332,55.907096],[-4.315686,55.906337],[-4.317358,55.904422],[-4.319582,55.902969],[-4.320206,55.90187],[-4.319446,55.901193],[-4.324073,55.900653],[-4.327841,55.89969],[-4.33289,55.903025],[-4.334872,55.903847],[-4.33678,55.904193],[-4.341607,55.904296],[-4.345068,55.90553],[-4.348926,55.906201],[-4.348608,55.908771],[-4.349401,55.910029],[-4.347586,55.911921],[-4.348397,55.91268],[-4.347505,55.91384],[-4.348673,55.915159],[-4.34809,55.915831],[-4.346215,55.916492],[-4.350069,55.917106],[-4.357548,55.920738],[-4.359174,55.920883],[-4.36149,55.920363],[-4.364162,55.921097],[-4.37074,55.920708],[-4.379617,55.92098],[-4.379992,55.918787],[-4.385152,55.917884],[-4.387792,55.916619],[-4.388719,55.913158],[-4.386877,55.911182],[-4.389953,55.910511],[-4.38068,55.903996],[-4.376211,55.901525],[-4.375548,55.899967],[-4.378928,55.900088],[-4.380378,55.89799],[-4.380356,55.896764],[-4.38175,55.896503],[-4.380662,55.895342],[-4.383188,55.894534],[-4.382687,55.893802],[-4.383591,55.892081],[-4.385918,55.892637],[-4.387217,55.891251],[-4.385617,55.89091],[-4.385319,55.89014],[-4.390464,55.890747],[-4.392423,55.889595],[-4.385694,55.888128],[-4.380518,55.886579],[-4.37647,55.884761],[-4.37247,55.883416],[-4.372475,55.883113],[-4.366915,55.880827],[-4.364696,55.879332],[-4.356416,55.875829],[-4.350353,55.874176],[-4.350334,55.873724],[-4.347465,55.872675],[-4.346853,55.872905],[-4.340975,55.870184],[-4.33382,55.86926],[-4.331186,55.869378],[-4.320073,55.86857],[-4.315769,55.867674],[-4.312869,55.866779],[-4.311316,55.865963],[-4.308943,55.865493],[-4.306581,55.864458],[-4.305755,55.864808],[-4.303852,55.864429],[-4.297291,55.862599],[-4.297148,55.861511],[-4.294951,55.860588],[-4.279027,55.857092],[-4.274035,55.856514],[-4.264537,55.856609],[-4.257445,55.856115],[-4.246923,55.853102],[-4.236637,55.848166],[-4.236596,55.847038],[-4.239879,55.844332],[-4.239303,55.843304],[-4.237183,55.842877],[-4.230109,55.842568],[-4.225496,55.84014],[-4.22212,55.838825],[-4.221837,55.837597],[-4.222866,55.835176],[-4.221069,55.833349],[-4.219776,55.833496],[-4.215711,55.835987],[-4.213091,55.836959],[-4.205668,55.837847],[-4.203583,55.838485],[-4.203145,55.840232],[-4.205772,55.84137],[-4.206701,55.842286],[-4.206386,55.843955],[-4.205571,55.844544],[-4.202722,55.844343],[-4.195001,55.83917],[-4.19461,55.838296],[-4.195223,55.837369],[-4.197859,55.836322],[-4.19892,55.835518],[-4.199105,55.834376],[-4.198339,55.833422],[-4.194282,55.831738],[-4.192333,55.832024],[-4.191042,55.83266],[-4.190881,55.835076],[-4.187757,55.836583],[-4.186152,55.836803],[-4.180919,55.835759],[-4.179372,55.834712],[-4.178842,55.830182],[-4.175842,55.824324],[-4.17458,55.823345],[-4.172057,55.823025],[-4.164579,55.825853],[-4.158487,55.827659],[-4.150483,55.828265],[-4.146159,55.828198],[-4.140623,55.83031],[-4.136861,55.831141],[-4.133797,55.832458],[-4.130981,55.833224],[-4.129318,55.833091],[-4.121745,55.829532],[-4.119515,55.8289],[-4.112732,55.825974],[-4.111152,55.825868],[-4.110608,55.826828],[-4.112045,55.828058],[-4.112054,55.829147],[-4.111254,55.830282],[-4.109491,55.831319],[-4.109624,55.832573],[-4.107876,55.83358],[-4.107032,55.834653],[-4.106672,55.83603],[-4.108174,55.837464],[-4.106094,55.838177],[-4.103636,55.837711],[-4.102698,55.837973],[-4.102806,55.83907],[-4.105802,55.839246],[-4.103811,55.840779],[-4.103093,55.842028],[-4.100424,55.842726],[-4.09716,55.842355],[-4.094685,55.843239],[-4.094199,55.843782],[-4.091835,55.843133],[-4.089875,55.844228],[-4.084851,55.845262],[-4.084095,55.844514],[-4.081768,55.843797],[-4.078523,55.845039],[-4.07685,55.843895],[-4.074704,55.84412],[-4.075771,55.845679],[-4.077683,55.847131],[-4.080197,55.848202],[-4.083094,55.848849],[-4.082657,55.849348],[-4.083518,55.850763],[-4.087232,55.852635],[-4.088392,55.853842],[-4.088017,55.855309],[-4.085986,55.858652],[-4.080605,55.85877],[-4.077172,55.859477],[-4.071705,55.861266],[-4.074985,55.862417],[-4.076729,55.863531],[-4.07744,55.865931],[-4.079761,55.868266],[-4.079291,55.873826],[-4.080123,55.877178],[-4.078421,55.880538],[-4.078807,55.881599],[-4.080177,55.881439],[-4.081922,55.884151],[-4.089331,55.88152],[-4.092507,55.882544],[-4.094881,55.884147],[-4.094945,55.885236],[-4.102872,55.885103],[-4.106137,55.884483],[-4.107191,55.88741],[-4.114542,55.886327],[-4.117634,55.886491],[-4.118883,55.885626],[-4.121657,55.885751],[-4.127354,55.885262],[-4.129529,55.885442],[-4.128703,55.883348],[-4.131016,55.883446],[-4.132671,55.8839],[-4.141478,55.882882],[-4.14408,55.883761],[-4.148534,55.884094],[-4.149091,55.885404],[-4.150872,55.887305],[-4.152315,55.886764],[-4.152894,55.884611],[-4.155074,55.884478],[-4.156549,55.883796],[-4.158418,55.885869],[-4.164381,55.883579],[-4.169674,55.886221],[-4.161621,55.887673],[-4.163249,55.889615],[-4.160262,55.89008],[-4.163106,55.896232],[-4.161268,55.896596],[-4.161514,55.897968],[-4.168183,55.896577],[-4.170797,55.89704],[-4.173342,55.897014],[-4.1775,55.900369],[-4.177675,55.902644],[-4.179454,55.902041],[-4.180147,55.903048],[-4.179331,55.903529],[-4.180416,55.904909]]]]},"properties":{"LAD22CD":"S12000049","LAD22NM":"Glasgow City","BNG_E":261534,"BNG_N":667033,"LONG":-4.21479,"LAT":55.87649,"GlobalID":"03b56638-96e3-4f16-a7be-b0aa76070978"},"id":351}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.020121,56.028037],[-4.02208,56.027922],[-4.026855,56.029159],[-4.031507,56.029859],[-4.034096,56.028753],[-4.037962,56.029364],[-4.042273,56.029494],[-4.043312,56.029832],[-4.044213,56.031037],[-4.045466,56.031362],[-4.048345,56.030299],[-4.053472,56.031252],[-4.05461,56.030462],[-4.058545,56.030155],[-4.05837,56.029435],[-4.062482,56.029636],[-4.064112,56.02875],[-4.067375,56.028996],[-4.068682,56.028233],[-4.070615,56.028371],[-4.075038,56.027794],[-4.077357,56.027786],[-4.078991,56.027143],[-4.079705,56.025954],[-4.081791,56.025343],[-4.083167,56.026021],[-4.081744,56.027151],[-4.086502,56.027147],[-4.093694,56.027793],[-4.096681,56.027369],[-4.097138,56.024854],[-4.098369,56.023],[-4.098608,56.021482],[-4.09991,56.019303],[-4.105651,56.017187],[-4.106996,56.017286],[-4.108596,56.01574],[-4.11023,56.01555],[-4.111392,56.01478],[-4.114352,56.015223],[-4.116595,56.014282],[-4.120234,56.013797],[-4.120044,56.012969],[-4.121567,56.012507],[-4.122294,56.010845],[-4.123465,56.009976],[-4.129115,56.009015],[-4.129901,56.008283],[-4.132329,56.00723],[-4.136397,56.006247],[-4.138351,56.006627],[-4.141301,56.006607],[-4.146203,56.007214],[-4.15027,56.007233],[-4.152376,56.008036],[-4.152777,56.006443],[-4.15076,56.00176],[-4.149329,55.999381],[-4.146074,55.996355],[-4.134076,55.99078],[-4.131561,55.986456],[-4.128781,55.985736],[-4.123574,55.981566],[-4.121359,55.98137],[-4.118765,55.979222],[-4.117327,55.977692],[-4.113759,55.97754],[-4.113026,55.977268],[-4.113493,55.975457],[-4.115796,55.972724],[-4.115064,55.972106],[-4.1164,55.970868],[-4.115614,55.969687],[-4.11663,55.968187],[-4.116164,55.966434],[-4.113998,55.965362],[-4.114389,55.964416],[-4.111784,55.96298],[-4.112187,55.962492],[-4.111382,55.961188],[-4.113656,55.960294],[-4.117155,55.959768],[-4.120062,55.958086],[-4.12209,55.95767],[-4.124666,55.955985],[-4.122999,55.953089],[-4.119569,55.952644],[-4.11836,55.953461],[-4.117142,55.953104],[-4.114715,55.953177],[-4.113503,55.952696],[-4.109503,55.95308],[-4.104982,55.955355],[-4.102936,55.958263],[-4.098193,55.959469],[-4.091771,55.960577],[-4.090888,55.961745],[-4.087245,55.963295],[-4.085641,55.962606],[-4.0763,55.965712],[-4.067873,55.967568],[-4.062778,55.968204],[-4.056576,55.968063],[-4.055937,55.966835],[-4.053219,55.965809],[-4.051038,55.96428],[-4.051369,55.962368],[-4.054785,55.960163],[-4.054671,55.958492],[-4.055589,55.957628],[-4.052029,55.955985],[-4.054363,55.954688],[-4.053401,55.953727],[-4.051883,55.953907],[-4.050042,55.955093],[-4.047723,55.954793],[-4.046862,55.952262],[-4.047576,55.951213],[-4.056127,55.949544],[-4.061828,55.947966],[-4.0668,55.946246],[-4.07144,55.943916],[-4.070699,55.942277],[-4.062915,55.931131],[-4.05792,55.926691],[-4.058389,55.925341],[-4.05793,55.92351],[-4.062478,55.923287],[-4.064323,55.92405],[-4.066066,55.923793],[-4.068774,55.925017],[-4.06932,55.925705],[-4.075507,55.924634],[-4.084022,55.924186],[-4.090391,55.924083],[-4.09639,55.923524],[-4.111365,55.92327],[-4.109744,55.919816],[-4.109237,55.917471],[-4.112185,55.918981],[-4.117807,55.919204],[-4.115859,55.914507],[-4.116133,55.914278],[-4.124683,55.911564],[-4.129644,55.911256],[-4.131284,55.912629],[-4.13174,55.914201],[-4.133664,55.914702],[-4.137539,55.913684],[-4.144876,55.913129],[-4.145876,55.913358],[-4.155389,55.913193],[-4.15637,55.91504],[-4.166338,55.91638],[-4.169468,55.916419],[-4.170225,55.915786],[-4.17181,55.915685],[-4.17159,55.91673],[-4.180695,55.915224],[-4.194474,55.913082],[-4.193613,55.911726],[-4.193481,55.908295],[-4.188634,55.907787],[-4.185091,55.906196],[-4.183984,55.905057],[-4.180704,55.905303],[-4.180416,55.904909],[-4.179331,55.903529],[-4.180147,55.903048],[-4.179454,55.902041],[-4.177675,55.902644],[-4.1775,55.900369],[-4.173342,55.897014],[-4.170797,55.89704],[-4.168183,55.896577],[-4.161514,55.897968],[-4.161268,55.896596],[-4.163106,55.896232],[-4.160262,55.89008],[-4.163249,55.889615],[-4.161621,55.887673],[-4.169674,55.886221],[-4.164381,55.883579],[-4.158418,55.885869],[-4.156549,55.883796],[-4.155074,55.884478],[-4.152894,55.884611],[-4.152315,55.886764],[-4.150872,55.887305],[-4.149091,55.885404],[-4.148534,55.884094],[-4.14408,55.883761],[-4.141478,55.882882],[-4.132671,55.8839],[-4.131016,55.883446],[-4.128703,55.883348],[-4.129529,55.885442],[-4.127354,55.885262],[-4.121657,55.885751],[-4.118883,55.885626],[-4.117634,55.886491],[-4.114542,55.886327],[-4.107191,55.88741],[-4.106137,55.884483],[-4.102872,55.885103],[-4.094945,55.885236],[-4.094881,55.884147],[-4.092507,55.882544],[-4.089331,55.88152],[-4.081922,55.884151],[-4.080177,55.881439],[-4.078807,55.881599],[-4.078421,55.880538],[-4.080123,55.877178],[-4.079291,55.873826],[-4.079761,55.868266],[-4.07744,55.865931],[-4.076729,55.863531],[-4.074985,55.862417],[-4.071705,55.861266],[-4.077172,55.859477],[-4.080605,55.85877],[-4.085986,55.858652],[-4.088017,55.855309],[-4.088392,55.853842],[-4.087232,55.852635],[-4.083518,55.850763],[-4.082657,55.849348],[-4.083094,55.848849],[-4.080197,55.848202],[-4.077683,55.847131],[-4.075771,55.845679],[-4.074704,55.84412],[-4.07685,55.843895],[-4.078523,55.845039],[-4.081768,55.843797],[-4.084095,55.844514],[-4.084851,55.845262],[-4.089875,55.844228],[-4.091835,55.843133],[-4.094199,55.843782],[-4.094685,55.843239],[-4.09716,55.842355],[-4.100424,55.842726],[-4.103093,55.842028],[-4.103811,55.840779],[-4.105802,55.839246],[-4.102806,55.83907],[-4.102698,55.837973],[-4.103636,55.837711],[-4.106094,55.838177],[-4.108174,55.837464],[-4.106672,55.83603],[-4.107032,55.834653],[-4.101976,55.832998],[-4.096916,55.830395],[-4.093158,55.828894],[-4.081125,55.826041],[-4.074329,55.823347],[-4.068602,55.82207],[-4.063411,55.820001],[-4.047069,55.812345],[-4.041163,55.809024],[-4.04548,55.80723],[-4.051548,55.803817],[-4.053342,55.801278],[-4.048416,55.797261],[-4.046861,55.796655],[-4.045484,55.797049],[-4.042214,55.796078],[-4.038479,55.792375],[-4.025337,55.784803],[-4.023513,55.784414],[-4.017513,55.784824],[-4.015101,55.78337],[-4.014441,55.781144],[-4.007425,55.779868],[-4.000846,55.779413],[-3.99893,55.778735],[-3.998885,55.777715],[-4.001811,55.775999],[-4.00111,55.775336],[-3.998458,55.774354],[-3.998942,55.773279],[-4.000997,55.771963],[-4.002625,55.771667],[-4.002339,55.770749],[-4.000106,55.769967],[-3.992718,55.768551],[-3.989793,55.768344],[-3.981641,55.768667],[-3.97535,55.767568],[-3.972899,55.76649],[-3.974374,55.763015],[-3.968767,55.761669],[-3.961253,55.759087],[-3.957001,55.756397],[-3.955763,55.754807],[-3.953193,55.752872],[-3.951168,55.752054],[-3.949528,55.751914],[-3.947054,55.75053],[-3.943985,55.749848],[-3.941034,55.748645],[-3.938678,55.748267],[-3.936481,55.748326],[-3.932346,55.749025],[-3.930123,55.748509],[-3.928235,55.745217],[-3.924422,55.741754],[-3.92287,55.737401],[-3.919393,55.735006],[-3.917948,55.734716],[-3.916362,55.735078],[-3.916282,55.736957],[-3.91482,55.738514],[-3.916202,55.740227],[-3.915179,55.740945],[-3.914449,55.742518],[-3.912661,55.743023],[-3.913053,55.74397],[-3.91192,55.74459],[-3.911023,55.746219],[-3.910216,55.746176],[-3.907812,55.748352],[-3.908877,55.749089],[-3.906965,55.750464],[-3.904618,55.750761],[-3.903014,55.751393],[-3.902752,55.752127],[-3.900547,55.752592],[-3.899608,55.753727],[-3.896914,55.755643],[-3.896421,55.75665],[-3.893226,55.757189],[-3.892238,55.757703],[-3.889997,55.757972],[-3.888225,55.759122],[-3.886258,55.759538],[-3.884152,55.759206],[-3.882622,55.758109],[-3.880474,55.758394],[-3.878141,55.758084],[-3.876324,55.758855],[-3.871244,55.761451],[-3.869938,55.761147],[-3.868904,55.762121],[-3.868365,55.764153],[-3.859152,55.76445],[-3.85189,55.763948],[-3.849031,55.764431],[-3.848059,55.76427],[-3.843684,55.764771],[-3.836653,55.764773],[-3.817921,55.767529],[-3.812358,55.767324],[-3.806255,55.768756],[-3.799778,55.771272],[-3.796882,55.771045],[-3.79522,55.771828],[-3.794112,55.771319],[-3.791621,55.7714],[-3.78781,55.771029],[-3.785896,55.770126],[-3.784681,55.770243],[-3.782461,55.769628],[-3.7777,55.769733],[-3.772985,55.770875],[-3.773072,55.771921],[-3.771752,55.77198],[-3.769534,55.771239],[-3.768808,55.770162],[-3.766412,55.770053],[-3.762926,55.771932],[-3.758988,55.773345],[-3.756726,55.774636],[-3.754329,55.775578],[-3.753799,55.776902],[-3.752709,55.777659],[-3.750946,55.777994],[-3.750892,55.778749],[-3.746653,55.781285],[-3.744012,55.782009],[-3.74265,55.782883],[-3.741575,55.785231],[-3.738133,55.787086],[-3.738021,55.788341],[-3.737044,55.78915],[-3.735956,55.791753],[-3.733469,55.793033],[-3.741633,55.799406],[-3.736389,55.802562],[-3.733841,55.804625],[-3.73025,55.805502],[-3.72913,55.807239],[-3.725752,55.807708],[-3.725215,55.808192],[-3.722138,55.808968],[-3.720369,55.811542],[-3.717795,55.812246],[-3.715551,55.813168],[-3.715051,55.813951],[-3.716733,55.815074],[-3.717812,55.81495],[-3.719498,55.816378],[-3.723678,55.817775],[-3.726179,55.820778],[-3.727881,55.821814],[-3.730324,55.822658],[-3.732609,55.823064],[-3.733517,55.824328],[-3.736637,55.826379],[-3.736699,55.827872],[-3.739783,55.830508],[-3.744117,55.838909],[-3.748884,55.856373],[-3.750248,55.858999],[-3.746335,55.860522],[-3.747183,55.865506],[-3.745464,55.865892],[-3.74237,55.866002],[-3.740103,55.866848],[-3.737508,55.866998],[-3.730553,55.870221],[-3.711127,55.873799],[-3.712975,55.875663],[-3.713118,55.87975],[-3.711922,55.882071],[-3.713515,55.883029],[-3.716406,55.883612],[-3.719116,55.884924],[-3.718094,55.88588],[-3.725147,55.884854],[-3.730019,55.883776],[-3.735179,55.881424],[-3.758832,55.877125],[-3.762092,55.874599],[-3.76223,55.872693],[-3.764169,55.874128],[-3.769453,55.876351],[-3.770852,55.878335],[-3.770186,55.879831],[-3.770331,55.880967],[-3.773418,55.880992],[-3.774631,55.8805],[-3.776152,55.879192],[-3.778301,55.876189],[-3.78208,55.876431],[-3.784072,55.877491],[-3.785927,55.877005],[-3.787786,55.875474],[-3.79544,55.873511],[-3.798852,55.874643],[-3.801807,55.874775],[-3.802175,55.875479],[-3.812106,55.883924],[-3.822857,55.883869],[-3.826534,55.887813],[-3.825968,55.88812],[-3.828209,55.890379],[-3.827408,55.891266],[-3.828423,55.892293],[-3.831249,55.89359],[-3.830087,55.894585],[-3.828081,55.894404],[-3.826959,55.895208],[-3.825463,55.895334],[-3.822557,55.896484],[-3.820635,55.896767],[-3.817781,55.89813],[-3.815248,55.900288],[-3.814303,55.901988],[-3.809994,55.903641],[-3.808936,55.904474],[-3.810154,55.905102],[-3.814033,55.904871],[-3.817206,55.905738],[-3.818026,55.905685],[-3.818735,55.903954],[-3.825027,55.905145],[-3.827171,55.906289],[-3.833029,55.9078],[-3.833056,55.909459],[-3.834156,55.910519],[-3.834917,55.912213],[-3.8431,55.912879],[-3.859693,55.91838],[-3.861749,55.919566],[-3.864648,55.920505],[-3.876742,55.923317],[-3.879488,55.925855],[-3.882335,55.929539],[-3.890346,55.935834],[-3.892079,55.937659],[-3.892897,55.93736],[-3.896374,55.937176],[-3.896523,55.936752],[-3.902704,55.936783],[-3.903779,55.938083],[-3.9024,55.939275],[-3.900219,55.939384],[-3.898354,55.940744],[-3.898107,55.941565],[-3.899273,55.94253],[-3.898126,55.943766],[-3.892635,55.94494],[-3.891927,55.945797],[-3.892311,55.94727],[-3.888958,55.949155],[-3.884949,55.95077],[-3.883089,55.950938],[-3.880645,55.952378],[-3.8792,55.952575],[-3.876053,55.951952],[-3.868806,55.953673],[-3.867873,55.955268],[-3.867973,55.956335],[-3.866266,55.956618],[-3.865565,55.957373],[-3.862837,55.958083],[-3.862399,55.95882],[-3.860379,55.959251],[-3.867813,55.9626],[-3.880815,55.962246],[-3.885997,55.961647],[-3.898565,55.961135],[-3.900581,55.961224],[-3.902473,55.962221],[-3.904248,55.962064],[-3.906106,55.960304],[-3.911075,55.959288],[-3.912374,55.960513],[-3.914035,55.961015],[-3.916989,55.961117],[-3.91948,55.962175],[-3.921197,55.963452],[-3.92139,55.96421],[-3.924189,55.964824],[-3.925952,55.964589],[-3.928864,55.96344],[-3.929863,55.963529],[-3.935868,55.962522],[-3.938095,55.962918],[-3.937927,55.964111],[-3.939372,55.964924],[-3.940986,55.965095],[-3.940087,55.96664],[-3.940497,55.968587],[-3.942097,55.96952],[-3.944414,55.969483],[-3.949722,55.971443],[-3.948746,55.972686],[-3.949132,55.973926],[-3.947229,55.974778],[-3.946061,55.975981],[-3.946142,55.977309],[-3.94326,55.980449],[-3.945515,55.982439],[-3.948623,55.983303],[-3.950802,55.984359],[-3.95291,55.984143],[-3.954388,55.984574],[-3.958238,55.986566],[-3.96324,55.986659],[-3.964811,55.987102],[-3.985231,55.982782],[-3.985577,55.983386],[-3.985121,55.985319],[-3.987832,55.984918],[-3.989324,55.987284],[-3.980256,55.990628],[-3.977499,55.991051],[-3.974635,55.990877],[-3.975281,55.992882],[-3.978052,55.993012],[-3.982242,55.995273],[-3.980942,55.997226],[-3.981175,55.998965],[-3.979634,55.999586],[-3.985258,56.003761],[-3.987231,56.005754],[-3.988418,56.007789],[-3.991037,56.007664],[-3.991312,56.005963],[-3.996217,56.005738],[-4.000296,56.006652],[-4.004798,56.007199],[-4.01187,56.006923],[-4.012581,56.005945],[-4.015152,56.006184],[-4.017699,56.005761],[-4.019382,56.005944],[-4.021867,56.010067],[-4.030341,56.009733],[-4.027241,56.013163],[-4.024283,56.017503],[-4.023247,56.022067],[-4.020945,56.022541],[-4.020133,56.023939],[-4.020219,56.02563],[-4.019176,56.026748],[-4.020121,56.028037]]]},"properties":{"LAD22CD":"S12000050","LAD22NM":"North Lanarkshire","BNG_E":277984,"BNG_N":665608,"LONG":-3.9514,"LAT":55.86814,"GlobalID":"8c55f1a6-7dd7-4f94-b1fc-145725cc4b1a"},"id":352}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.406461,53.140549],[-4.406838,53.142319],[-4.406329,53.143579],[-4.407839,53.143663],[-4.409366,53.142875],[-4.409681,53.14189],[-4.411236,53.140075],[-4.413492,53.139122],[-4.413803,53.13777],[-4.415461,53.135798],[-4.413706,53.134305],[-4.410783,53.137014],[-4.410234,53.138073],[-4.408086,53.138353],[-4.406461,53.140549]]],[[[-4.154533,53.229729],[-4.153837,53.230752],[-4.157776,53.230952],[-4.157798,53.229555],[-4.157111,53.22908],[-4.154533,53.229729]]],[[[-4.030006,53.315614],[-4.027537,53.316518],[-4.020487,53.321055],[-4.021731,53.321368],[-4.026377,53.320894],[-4.029948,53.31915],[-4.032093,53.316629],[-4.031864,53.315511],[-4.030006,53.315614]]],[[[-4.647253,53.320828],[-4.645537,53.322593],[-4.645108,53.323583],[-4.643407,53.324852],[-4.641191,53.325281],[-4.628508,53.325572],[-4.62021,53.330057],[-4.619472,53.331096],[-4.628573,53.325728],[-4.642273,53.325355],[-4.643891,53.324831],[-4.645901,53.323122],[-4.647013,53.322818],[-4.648987,53.320732],[-4.65093,53.321263],[-4.650295,53.322428],[-4.652747,53.323062],[-4.654031,53.322723],[-4.654468,53.321171],[-4.656079,53.321291],[-4.657944,53.320206],[-4.659431,53.320672],[-4.660387,53.319545],[-4.661804,53.318901],[-4.666587,53.318904],[-4.667453,53.319935],[-4.667156,53.320537],[-4.668658,53.321541],[-4.671354,53.321218],[-4.673146,53.321514],[-4.675212,53.321084],[-4.677964,53.322387],[-4.678663,53.323243],[-4.681296,53.323441],[-4.680825,53.322247],[-4.681228,53.320861],[-4.681036,53.31939],[-4.680085,53.317005],[-4.680721,53.315714],[-4.681882,53.31521],[-4.68287,53.313905],[-4.686032,53.312151],[-4.686246,53.311174],[-4.68871,53.311647],[-4.691556,53.310571],[-4.692402,53.31117],[-4.693856,53.310256],[-4.694036,53.309519],[-4.695699,53.308639],[-4.696611,53.307093],[-4.695678,53.306082],[-4.693813,53.305483],[-4.694182,53.30476],[-4.693437,53.303856],[-4.69011,53.30225],[-4.691011,53.30095],[-4.687579,53.299287],[-4.685461,53.299846],[-4.683245,53.299878],[-4.681048,53.300704],[-4.679609,53.299966],[-4.680045,53.299085],[-4.678345,53.298793],[-4.678186,53.297805],[-4.680018,53.297161],[-4.677455,53.295333],[-4.679058,53.293464],[-4.684061,53.29138],[-4.684046,53.290726],[-4.687265,53.288383],[-4.686355,53.287334],[-4.683721,53.286485],[-4.685337,53.285774],[-4.68588,53.284288],[-4.683957,53.283484],[-4.68284,53.282065],[-4.68073,53.282573],[-4.679797,53.283226],[-4.676201,53.284161],[-4.673029,53.283806],[-4.672981,53.28309],[-4.669339,53.283061],[-4.667001,53.281508],[-4.663917,53.283302],[-4.661165,53.28302],[-4.659557,53.284409],[-4.660336,53.285738],[-4.656723,53.286187],[-4.654461,53.286004],[-4.652994,53.286559],[-4.651598,53.287906],[-4.650383,53.286928],[-4.652017,53.285327],[-4.651696,53.284289],[-4.646638,53.283388],[-4.645496,53.284202],[-4.643191,53.284467],[-4.64066,53.285186],[-4.639283,53.283926],[-4.637578,53.284587],[-4.637283,53.283521],[-4.638817,53.283021],[-4.635638,53.281079],[-4.633516,53.280581],[-4.632088,53.280777],[-4.630443,53.280062],[-4.62849,53.281434],[-4.627964,53.279483],[-4.626445,53.279684],[-4.625856,53.280556],[-4.623876,53.278642],[-4.622914,53.279939],[-4.62157,53.279666],[-4.620031,53.280341],[-4.617285,53.279147],[-4.616106,53.27768],[-4.616504,53.276713],[-4.619958,53.276438],[-4.622051,53.275606],[-4.621867,53.273727],[-4.619383,53.273752],[-4.619435,53.27263],[-4.620554,53.27244],[-4.622302,53.271167],[-4.622921,53.272197],[-4.6256,53.269352],[-4.624521,53.268941],[-4.624692,53.26808],[-4.622698,53.267859],[-4.621685,53.267321],[-4.619615,53.267354],[-4.620611,53.265387],[-4.620327,53.263208],[-4.617922,53.26238],[-4.614986,53.263039],[-4.614181,53.261813],[-4.615762,53.261586],[-4.614795,53.26025],[-4.613291,53.260536],[-4.612529,53.259711],[-4.613515,53.2585],[-4.611128,53.257646],[-4.608727,53.255078],[-4.609608,53.253994],[-4.611969,53.253302],[-4.611996,53.251914],[-4.61026,53.252053],[-4.609142,53.251215],[-4.610479,53.250303],[-4.612269,53.24982],[-4.613621,53.248144],[-4.610766,53.246007],[-4.611015,53.245186],[-4.609861,53.244544],[-4.605713,53.244258],[-4.598589,53.241175],[-4.597561,53.240346],[-4.594415,53.240934],[-4.592714,53.240116],[-4.5913,53.241359],[-4.592798,53.242781],[-4.591785,53.244423],[-4.589816,53.24492],[-4.587679,53.244917],[-4.585929,53.243461],[-4.587369,53.242607],[-4.587463,53.241344],[-4.584383,53.24118],[-4.583114,53.240034],[-4.581216,53.240756],[-4.579536,53.240609],[-4.578607,53.241468],[-4.579337,53.243194],[-4.576601,53.242584],[-4.572771,53.243305],[-4.568255,53.243854],[-4.566082,53.244581],[-4.565912,53.245706],[-4.564368,53.246555],[-4.560448,53.246824],[-4.558529,53.246344],[-4.557795,53.245548],[-4.556237,53.245188],[-4.555807,53.246396],[-4.554752,53.247176],[-4.554568,53.248279],[-4.558223,53.247597],[-4.561168,53.248286],[-4.562193,53.250503],[-4.562292,53.252159],[-4.559005,53.251],[-4.557705,53.252552],[-4.558681,53.254115],[-4.560852,53.254636],[-4.562701,53.256133],[-4.563754,53.258455],[-4.566827,53.259985],[-4.569394,53.260139],[-4.569071,53.261072],[-4.572686,53.261615],[-4.571515,53.26211],[-4.569494,53.262249],[-4.566863,53.2632],[-4.56327,53.262872],[-4.561938,53.264057],[-4.563476,53.264725],[-4.565361,53.265034],[-4.566949,53.26632],[-4.56811,53.266441],[-4.571325,53.265238],[-4.575215,53.265657],[-4.579358,53.264651],[-4.5805,53.264844],[-4.577777,53.26704],[-4.57718,53.2682],[-4.579763,53.270684],[-4.576172,53.271731],[-4.576248,53.272278],[-4.578229,53.27324],[-4.580182,53.273063],[-4.582618,53.274808],[-4.584138,53.274901],[-4.587574,53.273615],[-4.589565,53.275203],[-4.590415,53.274504],[-4.594165,53.274813],[-4.595353,53.27589],[-4.595006,53.278069],[-4.591816,53.279486],[-4.592395,53.28069],[-4.594511,53.281343],[-4.595753,53.280351],[-4.597638,53.281243],[-4.598247,53.282023],[-4.600542,53.282481],[-4.604394,53.282439],[-4.607068,53.280756],[-4.607924,53.281304],[-4.605896,53.281927],[-4.604494,53.28288],[-4.599534,53.283],[-4.597159,53.283643],[-4.598078,53.284374],[-4.597561,53.285398],[-4.598533,53.286633],[-4.60321,53.286969],[-4.6018,53.287975],[-4.600445,53.287716],[-4.598253,53.288715],[-4.597776,53.287653],[-4.595185,53.287615],[-4.593244,53.290648],[-4.589657,53.290852],[-4.588648,53.291155],[-4.584542,53.289675],[-4.58359,53.290418],[-4.587652,53.291771],[-4.589057,53.293214],[-4.589203,53.294839],[-4.588645,53.29583],[-4.588996,53.297187],[-4.588266,53.297786],[-4.588537,53.299259],[-4.586682,53.300514],[-4.584917,53.30103],[-4.58649,53.302174],[-4.58942,53.301506],[-4.5911,53.30155],[-4.592161,53.302576],[-4.592518,53.304191],[-4.594165,53.304284],[-4.596061,53.305575],[-4.600496,53.305567],[-4.604674,53.304516],[-4.603541,53.303527],[-4.605358,53.302522],[-4.609363,53.302457],[-4.611191,53.30278],[-4.612832,53.303641],[-4.612583,53.304367],[-4.614802,53.305347],[-4.615419,53.306036],[-4.614857,53.307377],[-4.61318,53.308302],[-4.615259,53.308783],[-4.617082,53.310396],[-4.618567,53.310056],[-4.620897,53.31057],[-4.621122,53.311844],[-4.622344,53.311669],[-4.625042,53.312742],[-4.628992,53.309594],[-4.630996,53.307772],[-4.631672,53.309154],[-4.631095,53.310474],[-4.62863,53.312938],[-4.628952,53.313592],[-4.626305,53.314577],[-4.625146,53.314141],[-4.622455,53.31459],[-4.62159,53.316706],[-4.620134,53.317127],[-4.621386,53.317949],[-4.622734,53.317847],[-4.624602,53.319341],[-4.625643,53.317752],[-4.626863,53.314738],[-4.628803,53.314458],[-4.630635,53.315611],[-4.631008,53.316393],[-4.633764,53.317471],[-4.634892,53.316854],[-4.636764,53.317017],[-4.64187,53.318412],[-4.645458,53.317601],[-4.646116,53.318586],[-4.6482,53.318667],[-4.647253,53.320828]]],[[[-4.610451,53.420959],[-4.612651,53.420456],[-4.609758,53.419531],[-4.610451,53.420959]]],[[[-4.603938,53.423702],[-4.607033,53.423786],[-4.607705,53.423049],[-4.606646,53.422064],[-4.605501,53.422361],[-4.603938,53.423702]]],[[[-4.423324,53.428688],[-4.425856,53.43009],[-4.429363,53.429112],[-4.427816,53.42853],[-4.428683,53.427747],[-4.432945,53.427618],[-4.436075,53.428075],[-4.438086,53.426562],[-4.439621,53.426832],[-4.441609,53.426553],[-4.442538,53.425723],[-4.44164,53.424543],[-4.446205,53.424154],[-4.447838,53.423667],[-4.449033,53.423876],[-4.450301,53.423222],[-4.45039,53.422393],[-4.446496,53.422408],[-4.445497,53.421251],[-4.447559,53.419536],[-4.449516,53.419805],[-4.450202,53.419051],[-4.451647,53.419444],[-4.45266,53.417973],[-4.449164,53.41596],[-4.447385,53.415694],[-4.447757,53.41455],[-4.450232,53.413201],[-4.45098,53.413911],[-4.452719,53.413939],[-4.454892,53.414875],[-4.454111,53.416003],[-4.457573,53.416096],[-4.458031,53.415683],[-4.464593,53.416043],[-4.466116,53.414745],[-4.467682,53.414761],[-4.468774,53.415516],[-4.467749,53.416639],[-4.471759,53.417347],[-4.475655,53.418452],[-4.475368,53.419312],[-4.471933,53.420663],[-4.472235,53.42171],[-4.475757,53.422173],[-4.478415,53.422199],[-4.478752,53.420532],[-4.480028,53.420302],[-4.481289,53.419073],[-4.483754,53.419779],[-4.485906,53.419051],[-4.484857,53.418303],[-4.486702,53.41659],[-4.489406,53.415052],[-4.487322,53.413774],[-4.487445,53.41291],[-4.4939,53.411684],[-4.495584,53.412612],[-4.49621,53.41354],[-4.497901,53.413811],[-4.499859,53.413584],[-4.50228,53.412703],[-4.503785,53.410409],[-4.504333,53.409079],[-4.507519,53.408979],[-4.511448,53.41018],[-4.514047,53.412049],[-4.514022,53.414114],[-4.513011,53.414889],[-4.510676,53.415263],[-4.509714,53.416367],[-4.513641,53.41587],[-4.514812,53.414676],[-4.517094,53.414231],[-4.520209,53.412148],[-4.521989,53.41198],[-4.524295,53.412437],[-4.527202,53.41123],[-4.528308,53.411252],[-4.528578,53.409618],[-4.527769,53.407415],[-4.529798,53.40606],[-4.533035,53.406808],[-4.537019,53.405894],[-4.538552,53.406202],[-4.541455,53.406282],[-4.545104,53.405801],[-4.546037,53.406376],[-4.548776,53.40618],[-4.54912,53.405038],[-4.550776,53.404933],[-4.551336,53.404158],[-4.553856,53.404387],[-4.55463,53.403805],[-4.556055,53.404404],[-4.557452,53.404064],[-4.558981,53.405002],[-4.560448,53.405283],[-4.561019,53.406655],[-4.563054,53.407268],[-4.564865,53.406635],[-4.56883,53.405802],[-4.570806,53.404339],[-4.573483,53.404111],[-4.575444,53.402244],[-4.574728,53.401284],[-4.575892,53.399485],[-4.572116,53.398985],[-4.571319,53.398338],[-4.571256,53.396284],[-4.56971,53.394424],[-4.5712,53.393532],[-4.571238,53.392596],[-4.572162,53.391678],[-4.568491,53.391458],[-4.565142,53.390376],[-4.56489,53.389887],[-4.56547,53.387013],[-4.567631,53.38513],[-4.567455,53.384313],[-4.565874,53.383477],[-4.565173,53.382375],[-4.56371,53.382415],[-4.562728,53.380098],[-4.563694,53.378858],[-4.56336,53.377792],[-4.562022,53.377474],[-4.558991,53.377356],[-4.55789,53.376903],[-4.55705,53.375545],[-4.555266,53.374731],[-4.555577,53.372756],[-4.557406,53.371563],[-4.557299,53.368821],[-4.55858,53.367679],[-4.558416,53.365259],[-4.55963,53.362997],[-4.559829,53.361483],[-4.561191,53.360563],[-4.560906,53.359793],[-4.561903,53.358363],[-4.564284,53.357545],[-4.567151,53.356936],[-4.565798,53.355523],[-4.569024,53.353179],[-4.566419,53.352391],[-4.565784,53.351525],[-4.56643,53.3497],[-4.567342,53.348795],[-4.569198,53.347902],[-4.570128,53.346807],[-4.56961,53.345649],[-4.567362,53.344768],[-4.56699,53.344051],[-4.56816,53.342569],[-4.569648,53.342504],[-4.570903,53.341457],[-4.571044,53.340312],[-4.569496,53.338148],[-4.569666,53.337107],[-4.571738,53.334821],[-4.574626,53.333166],[-4.576483,53.333826],[-4.578408,53.333209],[-4.580146,53.333618],[-4.582823,53.332461],[-4.584475,53.331227],[-4.583619,53.330247],[-4.582115,53.330033],[-4.581075,53.328752],[-4.581218,53.327909],[-4.582916,53.325675],[-4.579689,53.325207],[-4.578642,53.324112],[-4.577515,53.324617],[-4.572365,53.324386],[-4.57078,53.323054],[-4.56997,53.320887],[-4.570997,53.319238],[-4.570377,53.318499],[-4.567711,53.318168],[-4.564333,53.318198],[-4.562364,53.316752],[-4.561231,53.313685],[-4.561869,53.311231],[-4.563199,53.309411],[-4.562545,53.308618],[-4.562659,53.307262],[-4.564023,53.303375],[-4.566695,53.300998],[-4.565267,53.300657],[-4.563143,53.299444],[-4.560834,53.301148],[-4.561427,53.302322],[-4.557899,53.30244],[-4.554467,53.303122],[-4.550307,53.303053],[-4.548445,53.304682],[-4.546393,53.305816],[-4.545115,53.307743],[-4.541817,53.30798],[-4.539816,53.307226],[-4.542661,53.306841],[-4.544309,53.305222],[-4.544531,53.304433],[-4.546174,53.303574],[-4.546001,53.302416],[-4.547044,53.300489],[-4.549004,53.300409],[-4.549945,53.299843],[-4.551753,53.299612],[-4.554371,53.298511],[-4.556399,53.298103],[-4.557546,53.299392],[-4.559736,53.300761],[-4.560145,53.299936],[-4.559716,53.297909],[-4.56092,53.295969],[-4.564414,53.294422],[-4.566836,53.293969],[-4.569583,53.291846],[-4.57307,53.290288],[-4.574791,53.287904],[-4.575582,53.287916],[-4.583161,53.290283],[-4.583781,53.289524],[-4.578568,53.287761],[-4.576183,53.286014],[-4.579184,53.284544],[-4.58338,53.283497],[-4.582374,53.281699],[-4.582821,53.281171],[-4.584988,53.281715],[-4.587744,53.281085],[-4.586746,53.279736],[-4.586482,53.27836],[-4.584462,53.279065],[-4.584593,53.280655],[-4.582411,53.280666],[-4.581904,53.278687],[-4.583096,53.27768],[-4.582822,53.276275],[-4.58026,53.27526],[-4.58027,53.274676],[-4.577379,53.274088],[-4.574926,53.275465],[-4.574058,53.274272],[-4.572162,53.273027],[-4.569871,53.272339],[-4.568803,53.272625],[-4.567074,53.273913],[-4.566105,53.273668],[-4.56625,53.272108],[-4.564387,53.271964],[-4.566449,53.269327],[-4.564554,53.267617],[-4.563071,53.267669],[-4.56302,53.266339],[-4.560422,53.265232],[-4.558865,53.264001],[-4.557422,53.264623],[-4.556393,53.266238],[-4.555443,53.26627],[-4.554796,53.267973],[-4.55276,53.266047],[-4.552091,53.264529],[-4.554424,53.265548],[-4.555083,53.264418],[-4.55722,53.261908],[-4.558024,53.259854],[-4.560229,53.259204],[-4.557556,53.258468],[-4.557022,53.257687],[-4.555726,53.257672],[-4.552461,53.255203],[-4.549414,53.253862],[-4.552435,53.253148],[-4.552962,53.251331],[-4.552567,53.250795],[-4.555299,53.249509],[-4.552916,53.248699],[-4.550952,53.247509],[-4.550003,53.24642],[-4.542306,53.24304],[-4.539001,53.24102],[-4.537143,53.239307],[-4.535896,53.236978],[-4.5298,53.236368],[-4.526025,53.235478],[-4.523917,53.234169],[-4.52113,53.23148],[-4.522531,53.230458],[-4.523875,53.226638],[-4.522911,53.225664],[-4.523074,53.224587],[-4.521115,53.223317],[-4.518709,53.223568],[-4.516139,53.223235],[-4.511469,53.220472],[-4.511029,53.219598],[-4.508118,53.217677],[-4.506278,53.21713],[-4.503953,53.215243],[-4.502812,53.213185],[-4.501308,53.211484],[-4.505148,53.209491],[-4.505811,53.208541],[-4.505322,53.207356],[-4.502832,53.206648],[-4.500577,53.207003],[-4.498284,53.20789],[-4.497287,53.206873],[-4.498735,53.206461],[-4.500209,53.205392],[-4.499656,53.204086],[-4.500738,53.203811],[-4.500663,53.202855],[-4.501406,53.201597],[-4.502862,53.200903],[-4.50276,53.199947],[-4.504539,53.198803],[-4.504794,53.196933],[-4.506072,53.195878],[-4.506544,53.193294],[-4.504694,53.192246],[-4.504383,53.191224],[-4.505982,53.188977],[-4.504086,53.187055],[-4.498891,53.186576],[-4.498272,53.18572],[-4.495293,53.186897],[-4.494462,53.18623],[-4.491559,53.187634],[-4.490795,53.186689],[-4.494048,53.184842],[-4.49321,53.184439],[-4.491608,53.18497],[-4.491368,53.185966],[-4.490386,53.186744],[-4.48832,53.186606],[-4.486405,53.184788],[-4.487976,53.183748],[-4.488473,53.182834],[-4.489981,53.181867],[-4.489927,53.180838],[-4.488606,53.180227],[-4.489627,53.179047],[-4.487201,53.17881],[-4.487147,53.177574],[-4.48645,53.177209],[-4.483819,53.178654],[-4.482941,53.179811],[-4.480863,53.180789],[-4.478269,53.180234],[-4.477764,53.18058],[-4.474435,53.180386],[-4.473478,53.181604],[-4.470681,53.181767],[-4.469035,53.182585],[-4.468115,53.18189],[-4.466735,53.182256],[-4.466137,53.18318],[-4.466788,53.184186],[-4.457974,53.179212],[-4.458432,53.178796],[-4.458987,53.175338],[-4.45719,53.173417],[-4.457135,53.172358],[-4.455772,53.171672],[-4.456478,53.170729],[-4.454634,53.170375],[-4.453543,53.171022],[-4.452222,53.1703],[-4.451809,53.16883],[-4.450733,53.167072],[-4.451262,53.166142],[-4.454355,53.163843],[-4.450707,53.164813],[-4.449645,53.164416],[-4.448425,53.161515],[-4.446616,53.161353],[-4.446269,53.162278],[-4.444452,53.161716],[-4.445737,53.160819],[-4.445454,53.160182],[-4.443075,53.160699],[-4.443184,53.159465],[-4.441116,53.159655],[-4.442736,53.157756],[-4.442576,53.157116],[-4.444157,53.15592],[-4.442709,53.155109],[-4.43777,53.158053],[-4.437129,53.157893],[-4.434937,53.159313],[-4.430765,53.159319],[-4.42823,53.160615],[-4.427558,53.162794],[-4.426084,53.165134],[-4.423705,53.166433],[-4.423397,53.167164],[-4.418442,53.168732],[-4.41459,53.170626],[-4.41239,53.173124],[-4.412978,53.174396],[-4.410743,53.178607],[-4.408887,53.178596],[-4.406381,53.179785],[-4.40436,53.180227],[-4.402581,53.181069],[-4.401521,53.182238],[-4.401375,53.183649],[-4.396863,53.187881],[-4.394791,53.188823],[-4.390786,53.189829],[-4.388731,53.190661],[-4.387289,53.19171],[-4.384723,53.191817],[-4.376134,53.195152],[-4.370845,53.198024],[-4.362069,53.199567],[-4.356315,53.201825],[-4.346866,53.202601],[-4.331198,53.214712],[-4.331151,53.214599],[-4.346773,53.202533],[-4.355995,53.201714],[-4.362273,53.199331],[-4.370306,53.197996],[-4.375523,53.195045],[-4.385015,53.191573],[-4.385386,53.191143],[-4.382571,53.186553],[-4.381806,53.184957],[-4.381837,53.183956],[-4.380467,53.182551],[-4.381274,53.181764],[-4.38413,53.181818],[-4.385133,53.181239],[-4.386662,53.179184],[-4.388074,53.176262],[-4.38939,53.174844],[-4.389714,53.173319],[-4.39281,53.173979],[-4.393014,53.174646],[-4.394989,53.17522],[-4.399769,53.174526],[-4.400749,53.173915],[-4.40024,53.172426],[-4.397657,53.172104],[-4.397908,53.170708],[-4.400296,53.169537],[-4.400915,53.168639],[-4.403671,53.16753],[-4.407336,53.167474],[-4.409884,53.165864],[-4.412362,53.165655],[-4.416777,53.16596],[-4.418324,53.162761],[-4.41806,53.159524],[-4.416097,53.15609],[-4.408329,53.14646],[-4.406233,53.143722],[-4.403461,53.144911],[-4.399193,53.145087],[-4.393736,53.144591],[-4.385302,53.142829],[-4.379776,53.141225],[-4.368314,53.13553],[-4.360133,53.131968],[-4.355042,53.130829],[-4.339683,53.12902],[-4.336368,53.128986],[-4.332932,53.128169],[-4.330071,53.126433],[-4.327475,53.126857],[-4.327238,53.127751],[-4.329172,53.129594],[-4.33126,53.13002],[-4.332112,53.12935],[-4.336433,53.13048],[-4.342402,53.134117],[-4.342223,53.135473],[-4.34079,53.136015],[-4.33981,53.137135],[-4.341775,53.137715],[-4.341655,53.13847],[-4.339366,53.140063],[-4.338437,53.141602],[-4.336656,53.143506],[-4.33672,53.144518],[-4.335704,53.14591],[-4.336409,53.147394],[-4.340263,53.148051],[-4.336597,53.14833],[-4.336096,53.148074],[-4.331381,53.147655],[-4.330653,53.147108],[-4.327517,53.147018],[-4.324655,53.148378],[-4.323382,53.148317],[-4.322902,53.146998],[-4.325073,53.14555],[-4.32319,53.14442],[-4.321893,53.144704],[-4.318147,53.144187],[-4.313557,53.145003],[-4.309535,53.146296],[-4.305874,53.14674],[-4.30281,53.147352],[-4.298929,53.148559],[-4.296744,53.149862],[-4.293418,53.150918],[-4.282448,53.155912],[-4.282531,53.156322],[-4.279857,53.158416],[-4.279371,53.159447],[-4.277511,53.161024],[-4.277136,53.16227],[-4.274063,53.164948],[-4.271792,53.166055],[-4.267752,53.166396],[-4.265711,53.167032],[-4.264015,53.168626],[-4.257742,53.17218],[-4.256736,53.173132],[-4.255074,53.173527],[-4.253093,53.1745],[-4.248502,53.175979],[-4.244947,53.179272],[-4.243176,53.179583],[-4.239528,53.18092],[-4.235956,53.181657],[-4.233215,53.181086],[-4.230583,53.181598],[-4.224333,53.184392],[-4.222367,53.185974],[-4.218982,53.185517],[-4.21798,53.186384],[-4.219418,53.187471],[-4.216051,53.189584],[-4.215464,53.192151],[-4.214084,53.192955],[-4.214058,53.195076],[-4.215744,53.199928],[-4.214639,53.204751],[-4.211632,53.208632],[-4.207929,53.211938],[-4.204684,53.213959],[-4.202654,53.214205],[-4.200521,53.215562],[-4.195585,53.216577],[-4.192432,53.216652],[-4.191183,53.216219],[-4.190038,53.216857],[-4.186206,53.217313],[-4.186031,53.218298],[-4.183426,53.219713],[-4.182964,53.220823],[-4.179332,53.222376],[-4.178218,53.223765],[-4.173131,53.223862],[-4.173021,53.224622],[-4.170837,53.225155],[-4.169427,53.223976],[-4.169935,53.223338],[-4.168525,53.221854],[-4.166027,53.220973],[-4.163171,53.221404],[-4.161797,53.22219],[-4.16117,53.22476],[-4.160108,53.226064],[-4.156615,53.227051],[-4.157931,53.227682],[-4.159795,53.227607],[-4.160627,53.228398],[-4.159092,53.229733],[-4.158139,53.232598],[-4.155726,53.232544],[-4.149576,53.235722],[-4.147459,53.235817],[-4.146073,53.23652],[-4.143308,53.2371],[-4.142996,53.237751],[-4.140695,53.238869],[-4.140337,53.239405],[-4.137161,53.24114],[-4.130086,53.244061],[-4.12743,53.245834],[-4.124187,53.247427],[-4.120671,53.248055],[-4.117183,53.249974],[-4.115252,53.250124],[-4.11007,53.252073],[-4.109322,53.252752],[-4.105512,53.254677],[-4.101964,53.254476],[-4.102749,53.256809],[-4.097677,53.261335],[-4.095473,53.262063],[-4.093468,53.262078],[-4.087343,53.263184],[-4.086258,53.265315],[-4.085703,53.267592],[-4.086546,53.273065],[-4.086156,53.274851],[-4.077836,53.280348],[-4.075824,53.281131],[-4.075261,53.282806],[-4.073451,53.285401],[-4.071871,53.289544],[-4.070123,53.290672],[-4.06797,53.29312],[-4.065626,53.294613],[-4.063083,53.294562],[-4.060555,53.295303],[-4.058796,53.29546],[-4.057384,53.297216],[-4.057882,53.298932],[-4.057813,53.301304],[-4.055895,53.303257],[-4.052398,53.304457],[-4.047155,53.304637],[-4.04591,53.305018],[-4.043378,53.308458],[-4.041143,53.309318],[-4.040162,53.310605],[-4.041263,53.311517],[-4.04545,53.31141],[-4.048393,53.312529],[-4.053095,53.313193],[-4.056842,53.314847],[-4.059712,53.314644],[-4.060491,53.314087],[-4.063895,53.313847],[-4.064712,53.313259],[-4.067854,53.312497],[-4.071134,53.312174],[-4.07914,53.313518],[-4.079609,53.313178],[-4.083376,53.313688],[-4.085252,53.314619],[-4.088597,53.315238],[-4.091977,53.31484],[-4.094003,53.315894],[-4.095267,53.315964],[-4.098427,53.317846],[-4.101459,53.318195],[-4.105651,53.317978],[-4.109537,53.319227],[-4.112644,53.318902],[-4.11897,53.319257],[-4.122408,53.31803],[-4.126939,53.317036],[-4.130016,53.315634],[-4.132809,53.315543],[-4.135014,53.314753],[-4.136812,53.311774],[-4.139354,53.311158],[-4.141128,53.310097],[-4.142746,53.307377],[-4.142696,53.305831],[-4.143348,53.305318],[-4.147753,53.304285],[-4.158835,53.303578],[-4.161914,53.303085],[-4.16515,53.303442],[-4.169051,53.303389],[-4.172006,53.303082],[-4.174037,53.301264],[-4.17571,53.301341],[-4.17706,53.300366],[-4.17857,53.300094],[-4.181379,53.300203],[-4.184552,53.298836],[-4.18772,53.297909],[-4.191482,53.29818],[-4.194077,53.297987],[-4.196979,53.296915],[-4.199159,53.296793],[-4.201316,53.295446],[-4.203219,53.295784],[-4.2049,53.295426],[-4.210248,53.296297],[-4.212359,53.297168],[-4.214511,53.298798],[-4.213066,53.300961],[-4.213248,53.301938],[-4.211413,53.30372],[-4.209415,53.305203],[-4.207366,53.305303],[-4.207413,53.306565],[-4.204764,53.310505],[-4.204259,53.31381],[-4.205446,53.314914],[-4.206834,53.314758],[-4.208731,53.315186],[-4.212244,53.316409],[-4.213652,53.317234],[-4.215443,53.317521],[-4.219102,53.319021],[-4.219951,53.320308],[-4.219648,53.321153],[-4.220038,53.323328],[-4.220889,53.324065],[-4.219955,53.325028],[-4.220276,53.326341],[-4.221602,53.327895],[-4.221355,53.329454],[-4.223689,53.331115],[-4.224059,53.331846],[-4.223492,53.334277],[-4.224824,53.337202],[-4.226194,53.33809],[-4.227166,53.33678],[-4.228794,53.337338],[-4.229893,53.336694],[-4.231842,53.337626],[-4.232447,53.339719],[-4.233852,53.340622],[-4.233686,53.34118],[-4.231361,53.341694],[-4.230486,53.342524],[-4.228698,53.343219],[-4.228461,53.343884],[-4.229705,53.345851],[-4.231404,53.346244],[-4.231201,53.347061],[-4.232394,53.347694],[-4.235554,53.347869],[-4.235205,53.349156],[-4.236053,53.351028],[-4.236026,53.35257],[-4.23355,53.353119],[-4.230334,53.356145],[-4.230063,53.35775],[-4.233536,53.357791],[-4.234729,53.357323],[-4.237759,53.357093],[-4.239511,53.357634],[-4.240277,53.358738],[-4.242824,53.359343],[-4.244071,53.360004],[-4.247159,53.360607],[-4.250085,53.359782],[-4.250837,53.361137],[-4.253458,53.360467],[-4.256702,53.359162],[-4.259046,53.35935],[-4.261701,53.36024],[-4.264777,53.360812],[-4.264579,53.361707],[-4.265953,53.362981],[-4.266047,53.364107],[-4.264489,53.365221],[-4.265404,53.367338],[-4.266801,53.36884],[-4.266761,53.369962],[-4.267997,53.37016],[-4.269425,53.3714],[-4.271144,53.371342],[-4.273157,53.373278],[-4.272068,53.37421],[-4.274018,53.37521],[-4.27713,53.374935],[-4.279991,53.376092],[-4.280983,53.375999],[-4.279831,53.374195],[-4.278913,53.373968],[-4.276545,53.371895],[-4.276357,53.371062],[-4.282161,53.368339],[-4.284289,53.3665],[-4.287536,53.365111],[-4.28905,53.364859],[-4.290944,53.365594],[-4.291524,53.367073],[-4.29012,53.368584],[-4.287899,53.369978],[-4.287037,53.371834],[-4.282529,53.375776],[-4.277484,53.378488],[-4.277972,53.380141],[-4.276984,53.380504],[-4.274667,53.382649],[-4.273514,53.383079],[-4.270125,53.386638],[-4.270011,53.38927],[-4.269379,53.390547],[-4.271077,53.392143],[-4.269918,53.394853],[-4.270254,53.395536],[-4.272738,53.396403],[-4.272996,53.397097],[-4.274598,53.397379],[-4.27568,53.398596],[-4.276107,53.400734],[-4.274303,53.401761],[-4.27405,53.402351],[-4.277785,53.404117],[-4.276857,53.404553],[-4.278793,53.405492],[-4.283127,53.406358],[-4.284689,53.407011],[-4.284834,53.408236],[-4.284044,53.408701],[-4.283264,53.410849],[-4.284915,53.411671],[-4.28541,53.413914],[-4.287447,53.414562],[-4.288487,53.415346],[-4.287787,53.417207],[-4.2907,53.416703],[-4.291288,53.414708],[-4.289851,53.412613],[-4.292381,53.411217],[-4.29396,53.411418],[-4.293723,53.4125],[-4.297264,53.414186],[-4.300515,53.414105],[-4.301777,53.414567],[-4.303319,53.414113],[-4.303663,53.413075],[-4.305426,53.413589],[-4.306334,53.414304],[-4.309054,53.414791],[-4.312621,53.415908],[-4.316251,53.416658],[-4.317945,53.416162],[-4.319895,53.417011],[-4.323779,53.417415],[-4.325277,53.418363],[-4.32676,53.417215],[-4.328483,53.417126],[-4.329985,53.416258],[-4.333305,53.415029],[-4.333897,53.415262],[-4.332905,53.417234],[-4.334161,53.417993],[-4.335912,53.418177],[-4.336933,53.419016],[-4.338796,53.419605],[-4.340464,53.419406],[-4.340996,53.418073],[-4.342254,53.417215],[-4.344688,53.417427],[-4.351782,53.416411],[-4.353763,53.414862],[-4.355454,53.414662],[-4.362637,53.41619],[-4.362274,53.41713],[-4.365707,53.417814],[-4.366955,53.420445],[-4.366956,53.421233],[-4.36919,53.421449],[-4.370142,53.422443],[-4.367199,53.42315],[-4.3682,53.424059],[-4.371409,53.424677],[-4.373089,53.424311],[-4.37621,53.425346],[-4.379448,53.426046],[-4.382192,53.424479],[-4.384766,53.424941],[-4.385629,53.424534],[-4.387079,53.425067],[-4.388234,53.424584],[-4.391286,53.425153],[-4.391945,53.424965],[-4.3957,53.426005],[-4.396672,53.425311],[-4.396297,53.424068],[-4.397036,53.422827],[-4.398938,53.422699],[-4.400724,53.421172],[-4.402575,53.420922],[-4.404051,53.421731],[-4.406295,53.422255],[-4.406908,53.423413],[-4.405722,53.423999],[-4.406316,53.42471],[-4.404274,53.425912],[-4.40536,53.427405],[-4.407909,53.427694],[-4.409853,53.427419],[-4.409918,53.426515],[-4.414208,53.426898],[-4.417676,53.426161],[-4.419874,53.426101],[-4.420016,53.427575],[-4.423324,53.428688]]]]},"properties":{"LAD22CD":"W06000001","LAD22NM":"Isle of Anglesey","BNG_E":245217,"BNG_N":378331,"LONG":-4.32298,"LAT":53.27931,"GlobalID":"e807f381-ee38-4466-9e1c-9d8a75905e50"},"id":353}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.793725,52.768644],[-4.795066,52.767978],[-4.796271,52.766288],[-4.796178,52.76491],[-4.794835,52.763724],[-4.796077,52.762567],[-4.794801,52.761044],[-4.796303,52.759821],[-4.795047,52.75641],[-4.7957,52.755568],[-4.797633,52.755796],[-4.798533,52.75496],[-4.798224,52.753488],[-4.80173,52.75096],[-4.801299,52.749922],[-4.802317,52.748935],[-4.801384,52.747995],[-4.80274,52.746817],[-4.801824,52.745635],[-4.800254,52.745716],[-4.799307,52.74745],[-4.795952,52.748957],[-4.795063,52.750823],[-4.797457,52.752758],[-4.796735,52.753681],[-4.795415,52.754249],[-4.793526,52.754315],[-4.791721,52.753657],[-4.790234,52.754271],[-4.786944,52.753088],[-4.785853,52.753156],[-4.785172,52.754257],[-4.783838,52.75507],[-4.783295,52.756212],[-4.780223,52.75899],[-4.780072,52.761133],[-4.780879,52.762603],[-4.779746,52.763925],[-4.779893,52.766019],[-4.78419,52.767581],[-4.785864,52.767478],[-4.786567,52.766876],[-4.787968,52.76775],[-4.788483,52.768734],[-4.791306,52.767598],[-4.793725,52.768644]]],[[[-4.696579,52.785536],[-4.699073,52.785042],[-4.69759,52.784392],[-4.696579,52.785536]]],[[[-4.694781,52.786737],[-4.692702,52.787816],[-4.693387,52.788861],[-4.695545,52.787655],[-4.694781,52.786737]]],[[[-4.469857,52.796731],[-4.470386,52.797922],[-4.470724,52.800729],[-4.471422,52.801842],[-4.472646,52.800188],[-4.472854,52.798236],[-4.470616,52.796081],[-4.469857,52.796731]]],[[[-4.458718,52.804869],[-4.460997,52.80616],[-4.461746,52.807354],[-4.464145,52.806828],[-4.465124,52.805463],[-4.462219,52.803757],[-4.459768,52.803746],[-4.458718,52.804869]]],[[[-4.130654,52.823543],[-4.1316,52.824462],[-4.133512,52.823112],[-4.131606,52.822688],[-4.130654,52.823543]]],[[[-4.079134,52.912853],[-4.080116,52.912924],[-4.080508,52.914018],[-4.08297,52.914086],[-4.083922,52.913546],[-4.083773,52.911706],[-4.081677,52.910528],[-4.079134,52.912853]]],[[[-4.127868,52.918568],[-4.127035,52.919159],[-4.126922,52.920564],[-4.128694,52.920447],[-4.129355,52.918527],[-4.127868,52.918568]]],[[[-3.457982,52.984888],[-3.458719,52.985416],[-3.461632,52.983702],[-3.464006,52.982995],[-3.467553,52.980828],[-3.468057,52.980186],[-3.471889,52.978427],[-3.47319,52.976737],[-3.476968,52.974925],[-3.481968,52.971634],[-3.483032,52.969535],[-3.483867,52.969427],[-3.486038,52.970207],[-3.488272,52.970609],[-3.490046,52.971699],[-3.492369,52.970338],[-3.495531,52.969726],[-3.497827,52.968426],[-3.499223,52.968308],[-3.500901,52.967497],[-3.502785,52.965703],[-3.504542,52.96535],[-3.508153,52.966053],[-3.508761,52.96711],[-3.507982,52.968737],[-3.509089,52.969602],[-3.511971,52.968689],[-3.515392,52.968649],[-3.522917,52.970787],[-3.527596,52.97135],[-3.533809,52.973686],[-3.536887,52.972607],[-3.542848,52.969536],[-3.544091,52.96827],[-3.551789,52.969111],[-3.559264,52.967734],[-3.566685,52.969824],[-3.570321,52.969851],[-3.573483,52.968397],[-3.58299,52.967537],[-3.590977,52.971004],[-3.591898,52.972206],[-3.592105,52.973294],[-3.596252,52.977812],[-3.598709,52.98228],[-3.598993,52.98411],[-3.600243,52.986016],[-3.599565,52.989083],[-3.603072,52.989627],[-3.601074,52.991217],[-3.602164,52.992473],[-3.602336,52.993536],[-3.607181,52.996749],[-3.609457,52.995641],[-3.610789,52.996014],[-3.608799,52.998138],[-3.60858,52.999065],[-3.60529,53.000677],[-3.603133,53.003232],[-3.601973,53.005804],[-3.601082,53.006318],[-3.600556,53.007502],[-3.601066,53.008547],[-3.599553,53.009917],[-3.599622,53.01169],[-3.602069,53.011404],[-3.603499,53.011768],[-3.605049,53.011301],[-3.606779,53.012113],[-3.610745,53.011169],[-3.615322,53.01135],[-3.616107,53.010496],[-3.619192,53.009689],[-3.620495,53.010422],[-3.622248,53.009723],[-3.622627,53.009054],[-3.62485,53.008902],[-3.629119,53.007153],[-3.632545,53.006678],[-3.633096,53.007211],[-3.635094,53.007699],[-3.636284,53.006944],[-3.642981,53.004587],[-3.647163,53.001384],[-3.64898,53.000419],[-3.654518,52.998664],[-3.656758,52.997589],[-3.65956,52.996906],[-3.665106,52.996351],[-3.67295,52.997052],[-3.678215,52.993533],[-3.682998,52.98689],[-3.694611,52.987205],[-3.704123,52.98679],[-3.718772,52.984384],[-3.735342,52.979851],[-3.743921,52.977058],[-3.749027,52.974735],[-3.753761,52.971861],[-3.757402,52.969227],[-3.764558,52.962312],[-3.767355,52.960392],[-3.769723,52.959304],[-3.775113,52.957578],[-3.777475,52.957225],[-3.783387,52.957269],[-3.790741,52.955487],[-3.798022,52.954622],[-3.801508,52.951519],[-3.813224,52.949372],[-3.819729,52.950366],[-3.828674,52.953843],[-3.832628,52.957737],[-3.833745,52.962076],[-3.841038,52.9623],[-3.8418,52.963759],[-3.841463,52.965002],[-3.841923,52.966675],[-3.84972,52.974484],[-3.849372,52.97732],[-3.879497,52.989275],[-3.88274,52.990865],[-3.883464,52.992415],[-3.884806,52.9925],[-3.886547,52.993509],[-3.888258,52.993762],[-3.889627,52.994648],[-3.892949,52.995342],[-3.89656,52.994898],[-3.895385,52.9978],[-3.893414,53.000336],[-3.892221,53.001219],[-3.89298,53.002849],[-3.892552,53.006058],[-3.891069,53.008205],[-3.888792,53.010091],[-3.887813,53.011609],[-3.890241,53.011426],[-3.892164,53.012033],[-3.893223,53.011875],[-3.895699,53.012978],[-3.897579,53.014647],[-3.898936,53.020567],[-3.903378,53.020997],[-3.90585,53.020828],[-3.91501,53.02258],[-3.917234,53.020101],[-3.918734,53.020343],[-3.924378,53.020246],[-3.928796,53.018886],[-3.931387,53.017291],[-3.936291,53.01739],[-3.93743,53.018098],[-3.940508,53.018405],[-3.941195,53.017547],[-3.94537,53.016012],[-3.947024,53.014985],[-3.94816,53.015713],[-3.950886,53.015054],[-3.952791,53.013844],[-3.955128,53.013354],[-3.955999,53.012749],[-3.961582,53.011701],[-3.963268,53.010824],[-3.985424,53.010653],[-3.985149,53.011192],[-3.98665,53.013052],[-3.98908,53.013302],[-3.991626,53.014006],[-3.993229,53.016716],[-3.99302,53.019724],[-3.993545,53.021473],[-3.990404,53.02491],[-3.989837,53.026878],[-3.992197,53.028413],[-3.994935,53.03264],[-3.995011,53.034323],[-3.997214,53.037651],[-3.996025,53.039782],[-3.994724,53.040521],[-3.993419,53.042004],[-3.992819,53.04482],[-3.993274,53.047071],[-3.99274,53.0489],[-3.992894,53.050171],[-3.990148,53.052898],[-3.989706,53.053839],[-3.984383,53.05732],[-3.981314,53.058768],[-3.978579,53.061263],[-3.976839,53.065261],[-3.977062,53.068933],[-3.98148,53.071186],[-3.982481,53.073158],[-3.986284,53.075644],[-3.98765,53.076104],[-3.991323,53.076494],[-3.990883,53.076919],[-3.991177,53.078518],[-3.989443,53.081053],[-3.989473,53.0817],[-3.987445,53.083112],[-3.986675,53.084202],[-3.994071,53.083394],[-3.995057,53.082833],[-3.996823,53.08334],[-3.996812,53.084254],[-3.997801,53.084906],[-3.999558,53.084544],[-4.0007,53.084982],[-4.003399,53.085208],[-4.005697,53.086391],[-4.009372,53.089485],[-4.012149,53.089133],[-4.013598,53.089705],[-4.014119,53.090764],[-4.013383,53.091987],[-4.013361,53.093683],[-4.012118,53.09564],[-4.012231,53.096557],[-4.014113,53.100614],[-4.016229,53.101645],[-4.014103,53.103556],[-4.016345,53.104056],[-4.017098,53.104636],[-4.018814,53.103223],[-4.02125,53.102233],[-4.025291,53.102234],[-4.029118,53.101531],[-4.031127,53.106374],[-4.029557,53.108937],[-4.029388,53.110349],[-4.027917,53.111149],[-4.026496,53.113108],[-4.027139,53.114075],[-4.025243,53.114209],[-4.023627,53.116137],[-4.023545,53.118397],[-4.022138,53.119117],[-4.021418,53.120929],[-4.018627,53.12244],[-4.01796,53.123294],[-4.006277,53.122015],[-4.00491,53.122986],[-4.003114,53.122832],[-4.001929,53.123198],[-3.998803,53.123044],[-3.995565,53.124962],[-3.996008,53.126523],[-3.998339,53.126838],[-3.999452,53.126413],[-4.002934,53.126231],[-4.008689,53.124449],[-4.019028,53.124116],[-4.020119,53.124822],[-4.007856,53.143768],[-4.000703,53.147786],[-3.991504,53.154477],[-3.983439,53.155633],[-3.970329,53.160186],[-3.963319,53.173819],[-3.964975,53.18339],[-3.954611,53.191327],[-3.953787,53.193546],[-3.951136,53.195556],[-3.94457,53.196729],[-3.940326,53.198852],[-3.938935,53.200267],[-3.936439,53.204949],[-3.935468,53.207371],[-3.935293,53.214875],[-3.935922,53.216131],[-3.937724,53.216749],[-3.940426,53.218854],[-3.947294,53.219684],[-3.979355,53.231891],[-3.982308,53.233581],[-3.984294,53.236008],[-3.985227,53.238262],[-3.990025,53.239855],[-3.990281,53.241252],[-3.992359,53.242371],[-3.99271,53.243385],[-3.995059,53.244656],[-3.998201,53.248387],[-4.004193,53.245044],[-4.006719,53.246946],[-4.007387,53.246923],[-4.008512,53.246686],[-4.009183,53.244949],[-4.010563,53.24424],[-4.015945,53.243726],[-4.019205,53.243706],[-4.022601,53.242629],[-4.026688,53.242608],[-4.027976,53.240536],[-4.027923,53.239776],[-4.03112,53.237409],[-4.033693,53.237239],[-4.036497,53.236349],[-4.039067,53.236132],[-4.04411,53.234929],[-4.045171,53.234428],[-4.048014,53.233929],[-4.05595,53.233386],[-4.061007,53.233352],[-4.064768,53.233679],[-4.066635,53.233453],[-4.073258,53.231046],[-4.07923,53.230089],[-4.080405,53.228988],[-4.082685,53.228129],[-4.08349,53.229269],[-4.088096,53.23144],[-4.088254,53.234166],[-4.091723,53.235459],[-4.094034,53.235944],[-4.09942,53.235167],[-4.105207,53.232538],[-4.106264,53.232329],[-4.108118,53.23296],[-4.108507,53.234073],[-4.109544,53.234591],[-4.110531,53.23644],[-4.111886,53.23637],[-4.110266,53.233697],[-4.110898,53.233531],[-4.112587,53.23612],[-4.113179,53.236041],[-4.111361,53.232019],[-4.113814,53.231437],[-4.115666,53.231585],[-4.117393,53.232487],[-4.119086,53.234139],[-4.118369,53.235098],[-4.120184,53.235366],[-4.122372,53.237075],[-4.127775,53.235737],[-4.129749,53.234235],[-4.13197,53.233859],[-4.132227,53.233278],[-4.136606,53.230923],[-4.141136,53.230614],[-4.146398,53.229055],[-4.156282,53.22268],[-4.160386,53.219788],[-4.163113,53.218875],[-4.165885,53.218494],[-4.16895,53.218435],[-4.170996,53.218837],[-4.175518,53.218432],[-4.183624,53.215255],[-4.188453,53.214462],[-4.193998,53.21295],[-4.197801,53.210469],[-4.199319,53.20998],[-4.202053,53.207521],[-4.204798,53.206458],[-4.207569,53.204468],[-4.207994,53.20247],[-4.209456,53.201668],[-4.208559,53.200326],[-4.209056,53.199013],[-4.208567,53.193615],[-4.209696,53.189259],[-4.208106,53.187225],[-4.211152,53.185366],[-4.212107,53.183187],[-4.214209,53.181668],[-4.2166,53.181345],[-4.218914,53.180516],[-4.219593,53.178921],[-4.221373,53.177801],[-4.225869,53.176606],[-4.226806,53.175818],[-4.229494,53.174759],[-4.233832,53.173906],[-4.243632,53.170458],[-4.243735,53.169602],[-4.245456,53.168059],[-4.248918,53.166723],[-4.250262,53.165483],[-4.257908,53.16107],[-4.259098,53.15996],[-4.259996,53.158108],[-4.262058,53.155125],[-4.267562,53.150917],[-4.267837,53.149715],[-4.26888,53.149016],[-4.270283,53.146589],[-4.271887,53.14636],[-4.274021,53.14492],[-4.275041,53.14526],[-4.276368,53.144204],[-4.275351,53.143637],[-4.277113,53.142243],[-4.27827,53.142177],[-4.278852,53.139464],[-4.278371,53.138794],[-4.275583,53.138539],[-4.271575,53.136908],[-4.270774,53.136171],[-4.274096,53.132958],[-4.274203,53.133739],[-4.272654,53.135334],[-4.272862,53.136322],[-4.276274,53.137944],[-4.278731,53.138126],[-4.280387,53.139378],[-4.282743,53.139522],[-4.284494,53.13923],[-4.293683,53.136221],[-4.298159,53.1341],[-4.301125,53.132002],[-4.305705,53.131177],[-4.308017,53.130066],[-4.311701,53.12739],[-4.312899,53.125971],[-4.313497,53.124108],[-4.311766,53.121635],[-4.3118,53.120424],[-4.312999,53.118065],[-4.311318,53.115967],[-4.311201,53.115203],[-4.311997,53.111772],[-4.311301,53.111008],[-4.311542,53.109198],[-4.312388,53.107136],[-4.311129,53.107026],[-4.309128,53.105836],[-4.310614,53.104791],[-4.311655,53.105358],[-4.313764,53.101787],[-4.315825,53.100233],[-4.31914,53.099323],[-4.319103,53.100805],[-4.317474,53.101016],[-4.318295,53.101999],[-4.321067,53.101789],[-4.323308,53.10418],[-4.324555,53.104158],[-4.324648,53.105708],[-4.324011,53.106449],[-4.324503,53.109188],[-4.326212,53.109757],[-4.327541,53.110729],[-4.328836,53.112339],[-4.331734,53.113015],[-4.331008,53.114514],[-4.331305,53.115057],[-4.330091,53.117419],[-4.322902,53.119661],[-4.323042,53.120185],[-4.318686,53.12151],[-4.32148,53.121553],[-4.326381,53.120299],[-4.328772,53.120446],[-4.330155,53.12189],[-4.328629,53.12343],[-4.331388,53.123259],[-4.333575,53.123452],[-4.336389,53.123087],[-4.33912,53.12213],[-4.346418,53.115053],[-4.347691,53.111119],[-4.346932,53.105804],[-4.342903,53.096281],[-4.337962,53.088412],[-4.337936,53.086633],[-4.336853,53.084074],[-4.336548,53.077883],[-4.338299,53.074499],[-4.337741,53.067107],[-4.337918,53.064986],[-4.339599,53.060508],[-4.339072,53.054088],[-4.341034,53.051332],[-4.341989,53.047652],[-4.342923,53.046678],[-4.345575,53.046489],[-4.349396,53.044704],[-4.349314,53.042127],[-4.350014,53.039284],[-4.351138,53.036559],[-4.353698,53.03332],[-4.358693,53.031097],[-4.361692,53.03085],[-4.365246,53.027333],[-4.369401,53.026336],[-4.373357,53.021921],[-4.377029,53.019742],[-4.380601,53.018191],[-4.384189,53.015421],[-4.389828,53.013452],[-4.395564,53.008039],[-4.398864,53.006513],[-4.402059,53.004551],[-4.404162,53.001997],[-4.406969,52.999726],[-4.410158,52.998022],[-4.413037,52.997173],[-4.414886,52.997278],[-4.418012,52.998613],[-4.419936,52.998082],[-4.42188,52.998198],[-4.423213,52.998941],[-4.426207,52.999244],[-4.428485,53.000103],[-4.431471,52.999121],[-4.436347,52.998951],[-4.436747,52.998293],[-4.439679,52.99604],[-4.443532,52.990294],[-4.452377,52.986137],[-4.454634,52.984567],[-4.456655,52.983847],[-4.458301,52.983696],[-4.46026,52.982091],[-4.461378,52.981716],[-4.46092,52.980606],[-4.463478,52.975689],[-4.467871,52.97018],[-4.47159,52.966739],[-4.474017,52.96586],[-4.475595,52.966193],[-4.47844,52.967273],[-4.479713,52.96591],[-4.481972,52.96609],[-4.48308,52.964772],[-4.485327,52.963003],[-4.484873,52.962476],[-4.485419,52.961202],[-4.491101,52.956202],[-4.499714,52.95051],[-4.502576,52.950485],[-4.503808,52.95082],[-4.5052,52.950175],[-4.505112,52.949366],[-4.506703,52.947768],[-4.511105,52.944923],[-4.520154,52.940081],[-4.526066,52.93808],[-4.52891,52.937428],[-4.532841,52.937216],[-4.536353,52.937893],[-4.536691,52.939008],[-4.53656,52.94136],[-4.537891,52.940911],[-4.539027,52.939691],[-4.540497,52.938943],[-4.544824,52.937868],[-4.548004,52.937469],[-4.555692,52.937184],[-4.562513,52.938199],[-4.565428,52.939237],[-4.567019,52.9406],[-4.565819,52.941553],[-4.567222,52.942479],[-4.567657,52.943731],[-4.563868,52.945715],[-4.564002,52.947849],[-4.565227,52.948347],[-4.567731,52.948276],[-4.567474,52.947048],[-4.568249,52.945009],[-4.569054,52.945529],[-4.570371,52.943942],[-4.570421,52.94154],[-4.569252,52.940003],[-4.570571,52.938883],[-4.573052,52.938672],[-4.573912,52.939002],[-4.578242,52.938407],[-4.579879,52.937788],[-4.580369,52.936689],[-4.581798,52.936135],[-4.581569,52.935077],[-4.582624,52.933912],[-4.58251,52.932839],[-4.58439,52.932943],[-4.587697,52.930633],[-4.589941,52.930174],[-4.590982,52.928835],[-4.594028,52.926915],[-4.59861,52.92602],[-4.603024,52.925795],[-4.606744,52.926042],[-4.611234,52.923524],[-4.613671,52.923566],[-4.613998,52.924195],[-4.617707,52.922269],[-4.619261,52.920556],[-4.618703,52.920299],[-4.620832,52.91888],[-4.622537,52.917351],[-4.622634,52.916056],[-4.622045,52.915436],[-4.622967,52.914151],[-4.626959,52.909909],[-4.629357,52.908389],[-4.630148,52.907272],[-4.631572,52.906329],[-4.63402,52.905491],[-4.635812,52.905645],[-4.636852,52.90617],[-4.638169,52.904686],[-4.639129,52.904422],[-4.641471,52.905258],[-4.643743,52.904679],[-4.645306,52.905418],[-4.648456,52.906125],[-4.649997,52.906035],[-4.649642,52.904162],[-4.651231,52.902538],[-4.651026,52.901543],[-4.652325,52.90091],[-4.653751,52.89866],[-4.654935,52.898866],[-4.657191,52.897343],[-4.658869,52.89446],[-4.660736,52.893648],[-4.660609,52.892735],[-4.663711,52.891444],[-4.664486,52.890081],[-4.666783,52.889315],[-4.667363,52.887825],[-4.665336,52.886896],[-4.664746,52.884071],[-4.666266,52.881486],[-4.66802,52.880149],[-4.66816,52.879117],[-4.670791,52.877087],[-4.674465,52.875542],[-4.675656,52.875689],[-4.67702,52.875117],[-4.679469,52.874748],[-4.684365,52.875938],[-4.686766,52.876115],[-4.688052,52.874946],[-4.690071,52.874252],[-4.691501,52.872054],[-4.691354,52.870128],[-4.692646,52.868688],[-4.691834,52.867281],[-4.692794,52.865421],[-4.691423,52.864431],[-4.692473,52.862867],[-4.695948,52.860178],[-4.696349,52.859302],[-4.69858,52.858843],[-4.700409,52.859034],[-4.701357,52.858689],[-4.705098,52.859701],[-4.707041,52.859078],[-4.710578,52.857483],[-4.712444,52.85631],[-4.714126,52.855914],[-4.714192,52.854849],[-4.718241,52.855277],[-4.721378,52.855979],[-4.723033,52.855544],[-4.726165,52.853512],[-4.72551,52.852645],[-4.723467,52.851892],[-4.722748,52.850566],[-4.725311,52.849067],[-4.725995,52.847808],[-4.725326,52.845707],[-4.72687,52.844999],[-4.725153,52.843548],[-4.723529,52.843319],[-4.722342,52.842422],[-4.72251,52.84115],[-4.723682,52.839772],[-4.721895,52.838369],[-4.722538,52.836269],[-4.724473,52.834761],[-4.726667,52.835135],[-4.728306,52.833548],[-4.730813,52.832039],[-4.733204,52.832115],[-4.735224,52.830394],[-4.734671,52.829289],[-4.735141,52.828663],[-4.738121,52.82783],[-4.738072,52.825829],[-4.737228,52.824667],[-4.739941,52.82414],[-4.738715,52.823452],[-4.740431,52.822232],[-4.740937,52.8214],[-4.742961,52.821087],[-4.745385,52.819697],[-4.749352,52.817022],[-4.751595,52.8157],[-4.751232,52.815242],[-4.751299,52.811423],[-4.750981,52.810222],[-4.752947,52.809493],[-4.753461,52.808876],[-4.752404,52.807514],[-4.750492,52.806455],[-4.753351,52.805549],[-4.753097,52.804673],[-4.754946,52.804376],[-4.757245,52.802276],[-4.759312,52.802291],[-4.76233,52.80118],[-4.762695,52.799857],[-4.76395,52.798404],[-4.765367,52.797646],[-4.766117,52.798373],[-4.767534,52.798082],[-4.767766,52.795969],[-4.766787,52.793938],[-4.764736,52.794442],[-4.76356,52.79395],[-4.762731,52.7915],[-4.760458,52.792117],[-4.761004,52.790801],[-4.758613,52.78998],[-4.757326,52.788159],[-4.755868,52.78802],[-4.754607,52.790623],[-4.753218,52.790144],[-4.752998,52.789044],[-4.751435,52.787732],[-4.74926,52.787502],[-4.74627,52.786069],[-4.745196,52.785113],[-4.744472,52.783533],[-4.74094,52.783726],[-4.739334,52.785483],[-4.737933,52.785232],[-4.73724,52.783669],[-4.735352,52.782349],[-4.733367,52.781902],[-4.732076,52.782014],[-4.731214,52.783085],[-4.730941,52.784322],[-4.731371,52.786312],[-4.729221,52.786772],[-4.72902,52.787968],[-4.726131,52.790322],[-4.725213,52.791923],[-4.724465,52.794561],[-4.726026,52.795976],[-4.72528,52.796592],[-4.723785,52.796644],[-4.722586,52.79844],[-4.72309,52.798993],[-4.721237,52.800361],[-4.721298,52.802456],[-4.720752,52.802866],[-4.715946,52.803591],[-4.711662,52.803488],[-4.705249,52.802793],[-4.698774,52.80148],[-4.692295,52.799563],[-4.69248,52.798809],[-4.691251,52.797801],[-4.692571,52.796789],[-4.692288,52.794979],[-4.691622,52.794605],[-4.687445,52.794154],[-4.68592,52.796949],[-4.683967,52.796118],[-4.683238,52.797748],[-4.681453,52.799179],[-4.680295,52.799407],[-4.679041,52.800828],[-4.676456,52.801545],[-4.673866,52.801165],[-4.671725,52.801893],[-4.671428,52.803018],[-4.669326,52.804029],[-4.667575,52.804271],[-4.665849,52.805131],[-4.661305,52.806157],[-4.659727,52.805917],[-4.656482,52.804454],[-4.654908,52.804135],[-4.652056,52.804519],[-4.650677,52.803352],[-4.650005,52.799682],[-4.649558,52.799146],[-4.646778,52.799669],[-4.644399,52.799765],[-4.642775,52.800242],[-4.641205,52.801595],[-4.638596,52.802856],[-4.637714,52.804212],[-4.632843,52.804946],[-4.630067,52.807261],[-4.628725,52.807378],[-4.624512,52.809605],[-4.622877,52.812123],[-4.620839,52.813497],[-4.620363,52.814967],[-4.617194,52.818901],[-4.615201,52.820475],[-4.61547,52.821782],[-4.614169,52.822185],[-4.613581,52.823084],[-4.611189,52.824502],[-4.606652,52.825086],[-4.603249,52.825048],[-4.593791,52.823978],[-4.581049,52.821021],[-4.571867,52.817775],[-4.553928,52.810105],[-4.536114,52.800225],[-4.537259,52.79769],[-4.539368,52.796511],[-4.539914,52.795241],[-4.542235,52.793701],[-4.541157,52.792659],[-4.540894,52.791362],[-4.541663,52.790932],[-4.540882,52.789732],[-4.542488,52.786982],[-4.541945,52.786011],[-4.540657,52.785793],[-4.539786,52.78489],[-4.537666,52.784197],[-4.536414,52.781947],[-4.532771,52.781065],[-4.531647,52.779558],[-4.531357,52.778183],[-4.530366,52.777704],[-4.528028,52.777703],[-4.524546,52.779391],[-4.522611,52.781328],[-4.519775,52.781936],[-4.518942,52.781772],[-4.519564,52.785661],[-4.518384,52.786777],[-4.517065,52.789648],[-4.51743,52.791109],[-4.515858,52.791866],[-4.514851,52.792967],[-4.510471,52.793618],[-4.509239,52.794188],[-4.505869,52.794706],[-4.497416,52.794984],[-4.4955,52.793282],[-4.494892,52.793317],[-4.491554,52.790864],[-4.490779,52.79234],[-4.489339,52.793037],[-4.489049,52.794452],[-4.486778,52.794483],[-4.485437,52.800939],[-4.483576,52.801706],[-4.482942,52.803618],[-4.483151,52.805138],[-4.484158,52.805898],[-4.485323,52.80841],[-4.487479,52.809805],[-4.48833,52.81141],[-4.490423,52.80965],[-4.493045,52.809397],[-4.495295,52.810123],[-4.497105,52.809926],[-4.498605,52.810902],[-4.500026,52.812525],[-4.501528,52.815818],[-4.501381,52.818507],[-4.498508,52.823862],[-4.497632,52.824062],[-4.497312,52.825584],[-4.500202,52.826295],[-4.50355,52.826592],[-4.503143,52.828929],[-4.501578,52.830087],[-4.501935,52.830958],[-4.494516,52.838513],[-4.490734,52.840774],[-4.481967,52.844181],[-4.478369,52.845127],[-4.474029,52.845818],[-4.470329,52.847829],[-4.469877,52.848888],[-4.470284,52.849909],[-4.472307,52.850324],[-4.475721,52.852505],[-4.478889,52.853315],[-4.478629,52.85506],[-4.476513,52.857672],[-4.47324,52.860043],[-4.468666,52.862221],[-4.463966,52.863869],[-4.465948,52.866644],[-4.46505,52.867801],[-4.461349,52.869643],[-4.457065,52.871141],[-4.448516,52.87338],[-4.441666,52.875921],[-4.427512,52.878973],[-4.409812,52.881206],[-4.399232,52.88145],[-4.39723,52.882214],[-4.395642,52.883414],[-4.395587,52.886159],[-4.396492,52.88577],[-4.397076,52.884058],[-4.400564,52.882791],[-4.401835,52.883127],[-4.404366,52.882854],[-4.406238,52.883209],[-4.4081,52.884648],[-4.411047,52.883414],[-4.412604,52.884394],[-4.410008,52.885415],[-4.409108,52.887193],[-4.410729,52.88683],[-4.411284,52.886191],[-4.415126,52.88523],[-4.41688,52.887362],[-4.409413,52.890366],[-4.406905,52.890629],[-4.405448,52.884954],[-4.403676,52.884195],[-4.400455,52.884471],[-4.3992,52.885457],[-4.401749,52.885844],[-4.402789,52.886397],[-4.402856,52.88826],[-4.401336,52.890632],[-4.397858,52.892985],[-4.394101,52.894499],[-4.389005,52.895619],[-4.380694,52.896323],[-4.375477,52.896393],[-4.347795,52.894535],[-4.331037,52.892624],[-4.329042,52.892512],[-4.327376,52.891881],[-4.325427,52.892495],[-4.326999,52.893669],[-4.325599,52.894889],[-4.327865,52.896678],[-4.326077,52.897792],[-4.326884,52.898902],[-4.324904,52.900475],[-4.32532,52.902238],[-4.324919,52.903004],[-4.325029,52.904663],[-4.323835,52.905702],[-4.319402,52.907113],[-4.316496,52.908484],[-4.310296,52.909521],[-4.300305,52.910705],[-4.29004,52.91054],[-4.281198,52.911362],[-4.271845,52.910479],[-4.266744,52.910256],[-4.26416,52.910493],[-4.265798,52.912205],[-4.268761,52.911499],[-4.273665,52.911763],[-4.27189,52.912311],[-4.269263,52.91178],[-4.266511,52.912882],[-4.263756,52.911339],[-4.261123,52.910903],[-4.257893,52.911611],[-4.257287,52.912729],[-4.254683,52.913565],[-4.235389,52.915473],[-4.23368,52.915443],[-4.23219,52.914972],[-4.231378,52.915988],[-4.231618,52.916836],[-4.230233,52.917323],[-4.229588,52.918899],[-4.22798,52.919238],[-4.224795,52.918973],[-4.219438,52.919117],[-4.217744,52.91889],[-4.204238,52.914956],[-4.20133,52.913963],[-4.198796,52.914056],[-4.197074,52.913659],[-4.195138,52.914573],[-4.177801,52.907773],[-4.171431,52.906206],[-4.163306,52.905385],[-4.161175,52.905998],[-4.159888,52.905862],[-4.152059,52.906362],[-4.150617,52.906994],[-4.151908,52.9079],[-4.152055,52.909228],[-4.149743,52.910426],[-4.148714,52.910124],[-4.146543,52.910686],[-4.143972,52.910325],[-4.143435,52.911403],[-4.139397,52.912114],[-4.138855,52.912832],[-4.134991,52.913912],[-4.13466,52.914916],[-4.136059,52.916404],[-4.13441,52.917293],[-4.133814,52.916408],[-4.131628,52.916963],[-4.130004,52.921181],[-4.12995,52.92299],[-4.130464,52.923425],[-4.127687,52.924793],[-4.12685,52.926832],[-4.127241,52.928982],[-4.124353,52.928613],[-4.12333,52.927939],[-4.12344,52.92708],[-4.125121,52.925364],[-4.126756,52.925449],[-4.127338,52.923708],[-4.128864,52.922604],[-4.128501,52.921825],[-4.12631,52.923793],[-4.12063,52.92267],[-4.118162,52.921732],[-4.119187,52.918977],[-4.118106,52.918197],[-4.115823,52.918624],[-4.114605,52.916912],[-4.111918,52.916488],[-4.110757,52.915609],[-4.110321,52.914145],[-4.112327,52.911995],[-4.110355,52.912194],[-4.108957,52.911577],[-4.107791,52.911907],[-4.106356,52.910749],[-4.106391,52.909855],[-4.104124,52.909929],[-4.103006,52.909023],[-4.099684,52.910384],[-4.099118,52.911926],[-4.097759,52.91306],[-4.093579,52.91402],[-4.091234,52.914764],[-4.089043,52.917027],[-4.087144,52.917574],[-4.087032,52.918389],[-4.085455,52.91954],[-4.080439,52.921014],[-4.07702,52.922511],[-4.075158,52.922797],[-4.072773,52.923899],[-4.070304,52.923244],[-4.067608,52.923415],[-4.066417,52.9239],[-4.061155,52.923067],[-4.059071,52.924342],[-4.056466,52.924982],[-4.055353,52.926023],[-4.052363,52.927465],[-4.049705,52.927181],[-4.048527,52.927523],[-4.045934,52.927555],[-4.044842,52.928307],[-4.0421,52.933721],[-4.039701,52.936314],[-4.037105,52.937207],[-4.031751,52.937481],[-4.02837,52.937002],[-4.024958,52.938009],[-4.019374,52.940718],[-4.012222,52.941811],[-4.011453,52.941662],[-4.004897,52.938136],[-4.01096,52.940598],[-4.01383,52.941146],[-4.017109,52.940768],[-4.019738,52.940051],[-4.02254,52.937833],[-4.02482,52.937007],[-4.028131,52.936458],[-4.034079,52.935869],[-4.037799,52.936266],[-4.040144,52.934406],[-4.043903,52.926903],[-4.04562,52.926227],[-4.04716,52.926186],[-4.048498,52.92551],[-4.051701,52.925276],[-4.053169,52.924678],[-4.055014,52.923032],[-4.055808,52.923422],[-4.057201,52.920771],[-4.060561,52.91828],[-4.06267,52.918049],[-4.063777,52.918342],[-4.066572,52.917993],[-4.067526,52.918199],[-4.07185,52.917037],[-4.070236,52.916191],[-4.071452,52.915242],[-4.073785,52.915224],[-4.074788,52.913504],[-4.073842,52.911654],[-4.076156,52.910787],[-4.078093,52.909167],[-4.078792,52.909203],[-4.080266,52.907458],[-4.081706,52.905172],[-4.083248,52.904142],[-4.085564,52.90319],[-4.085364,52.902678],[-4.08249,52.902734],[-4.082746,52.901703],[-4.08648,52.901961],[-4.093472,52.901521],[-4.097501,52.901469],[-4.106264,52.90042],[-4.106671,52.90015],[-4.109574,52.900494],[-4.113801,52.898912],[-4.119696,52.897708],[-4.122011,52.898328],[-4.123634,52.897884],[-4.126051,52.898059],[-4.127673,52.897525],[-4.130692,52.897868],[-4.132046,52.89754],[-4.139637,52.896582],[-4.142604,52.895228],[-4.144282,52.893999],[-4.145248,52.893746],[-4.146892,52.891181],[-4.147426,52.888622],[-4.14635,52.884342],[-4.140574,52.877276],[-4.127998,52.863841],[-4.121316,52.853936],[-4.11899,52.848039],[-4.118784,52.846404],[-4.119424,52.84509],[-4.124504,52.840166],[-4.125556,52.837239],[-4.126918,52.835053],[-4.126806,52.831707],[-4.127629,52.828532],[-4.125853,52.829814],[-4.120869,52.830014],[-4.119684,52.831052],[-4.116715,52.83174],[-4.115422,52.831469],[-4.11154,52.829682],[-4.110872,52.829797],[-4.107925,52.826645],[-4.10831,52.826518],[-4.111149,52.828767],[-4.112395,52.828959],[-4.11573,52.830217],[-4.117609,52.829946],[-4.118566,52.830314],[-4.119423,52.828255],[-4.11866,52.827219],[-4.119785,52.825499],[-4.12174,52.824658],[-4.123603,52.824793],[-4.124047,52.824029],[-4.127129,52.822343],[-4.129406,52.822028],[-4.131432,52.821209],[-4.133638,52.82199],[-4.13229,52.819876],[-4.133473,52.819211],[-4.137442,52.818577],[-4.138655,52.819154],[-4.137302,52.82017],[-4.137843,52.821159],[-4.137054,52.822193],[-4.134619,52.823686],[-4.133671,52.824966],[-4.130818,52.825912],[-4.128908,52.825359],[-4.128523,52.826102],[-4.130883,52.826282],[-4.132543,52.826082],[-4.136863,52.823676],[-4.139548,52.822899],[-4.142153,52.820784],[-4.144502,52.820171],[-4.146981,52.819061],[-4.151813,52.815016],[-4.152323,52.813307],[-4.15006,52.807353],[-4.148367,52.805079],[-4.144214,52.800895],[-4.132947,52.790493],[-4.116329,52.777497],[-4.108134,52.770086],[-4.10106,52.765091],[-4.090838,52.756088],[-4.08921,52.755511],[-4.088941,52.754522],[-4.081411,52.747756],[-4.076484,52.740166],[-4.071796,52.735419],[-4.068554,52.731483],[-4.066623,52.728173],[-4.059476,52.718738],[-4.057551,52.717703],[-4.05412,52.717228],[-4.054133,52.718009],[-4.051683,52.718739],[-4.051232,52.719686],[-4.046936,52.719797],[-4.045044,52.719174],[-4.0444,52.719806],[-4.041708,52.721017],[-4.041159,52.72179],[-4.039373,52.721046],[-4.036589,52.720961],[-4.034795,52.721988],[-4.031294,52.724563],[-4.030702,52.726413],[-4.030895,52.727233],[-4.030118,52.728732],[-4.028706,52.730124],[-4.027915,52.731917],[-4.025832,52.733658],[-4.024231,52.734447],[-4.021358,52.735269],[-4.020191,52.735137],[-4.015121,52.735781],[-4.012907,52.735325],[-4.011161,52.735833],[-4.009277,52.7358],[-4.00428,52.73682],[-4.003407,52.738116],[-4.000896,52.738308],[-3.999965,52.737037],[-3.999052,52.738931],[-3.996768,52.740708],[-3.995792,52.739723],[-3.993532,52.739693],[-3.991889,52.739254],[-3.98957,52.740335],[-3.988407,52.739393],[-3.986567,52.739496],[-3.98404,52.740595],[-3.983155,52.741837],[-3.979235,52.742451],[-3.976778,52.743347],[-3.975057,52.744411],[-3.973245,52.746214],[-3.970275,52.747657],[-3.970533,52.748057],[-3.968361,52.749237],[-3.961142,52.750715],[-3.959396,52.750118],[-3.955084,52.751318],[-3.954282,52.751928],[-3.950165,52.752888],[-3.939303,52.749962],[-3.936751,52.749069],[-3.935591,52.74935],[-3.935674,52.750851],[-3.934863,52.751719],[-3.932137,52.753137],[-3.9256,52.754099],[-3.923651,52.755508],[-3.918434,52.756944],[-3.916827,52.756864],[-3.916166,52.754631],[-3.915344,52.753877],[-3.915141,52.752657],[-3.912678,52.752775],[-3.909776,52.753936],[-3.908711,52.752718],[-3.907483,52.754232],[-3.90404,52.75517],[-3.901512,52.756501],[-3.900856,52.755859],[-3.90753,52.753792],[-3.908114,52.752193],[-3.909315,52.75284],[-3.909739,52.75365],[-3.912616,52.752316],[-3.915062,52.752055],[-3.916652,52.753966],[-3.917178,52.756131],[-3.918014,52.756659],[-3.920952,52.755648],[-3.922752,52.753933],[-3.932787,52.751571],[-3.933995,52.750708],[-3.934726,52.748425],[-3.937319,52.747667],[-3.938585,52.747812],[-3.939582,52.74896],[-3.945039,52.749531],[-3.949018,52.751016],[-3.951859,52.750268],[-3.954223,52.748975],[-3.959034,52.746992],[-3.962155,52.745382],[-3.965871,52.742489],[-3.968654,52.741064],[-3.970394,52.739655],[-3.976095,52.737886],[-3.98319,52.737697],[-3.987068,52.736826],[-3.989457,52.735946],[-3.991872,52.730915],[-3.993737,52.729427],[-3.996942,52.726002],[-3.998086,52.725254],[-3.999431,52.723591],[-4.001608,52.722289],[-4.003431,52.72178],[-4.004662,52.721979],[-4.00697,52.721422],[-4.009173,52.719723],[-4.012952,52.714803],[-4.013846,52.714317],[-4.015194,52.715128],[-4.0135,52.717114],[-4.014726,52.718363],[-4.014673,52.720312],[-4.016236,52.720616],[-4.017759,52.719979],[-4.019575,52.718113],[-4.021392,52.71798],[-4.022098,52.71682],[-4.024563,52.715525],[-4.024517,52.714743],[-4.027326,52.714195],[-4.029516,52.714777],[-4.031425,52.714177],[-4.035851,52.713652],[-4.037909,52.713998],[-4.032663,52.709898],[-4.032288,52.708539],[-4.037127,52.706968],[-4.040707,52.705502],[-4.043499,52.705526],[-4.045202,52.704752],[-4.05144,52.703766],[-4.052471,52.7056],[-4.053867,52.705142],[-4.056403,52.705059],[-4.057473,52.706216],[-4.055817,52.706751],[-4.055284,52.707758],[-4.05307,52.708949],[-4.053768,52.710348],[-4.051785,52.711219],[-4.050993,52.71196],[-4.05144,52.713194],[-4.049482,52.713678],[-4.048248,52.71481],[-4.049839,52.715395],[-4.055209,52.710643],[-4.058302,52.708796],[-4.058753,52.708049],[-4.058285,52.702405],[-4.056546,52.692366],[-4.056676,52.689291],[-4.057397,52.687205],[-4.061774,52.685745],[-4.06534,52.683088],[-4.070057,52.68132],[-4.077231,52.676776],[-4.080988,52.673429],[-4.084887,52.671319],[-4.092998,52.669252],[-4.094859,52.668506],[-4.096996,52.664149],[-4.100514,52.662133],[-4.101175,52.659666],[-4.104461,52.656408],[-4.105879,52.655701],[-4.106629,52.653649],[-4.109989,52.648465],[-4.114483,52.644249],[-4.117176,52.639744],[-4.116919,52.637724],[-4.117395,52.635211],[-4.119418,52.632848],[-4.119549,52.631865],[-4.120562,52.631281],[-4.120836,52.630202],[-4.12287,52.627621],[-4.123918,52.623311],[-4.128486,52.613446],[-4.128602,52.611735],[-4.127731,52.61023],[-4.126229,52.608969],[-4.124943,52.608728],[-4.116122,52.604686],[-4.113051,52.604835],[-4.110886,52.60459],[-4.105653,52.605531],[-4.101581,52.606992],[-4.097626,52.607382],[-4.093949,52.60643],[-4.089665,52.604168],[-4.089151,52.603204],[-4.087903,52.602444],[-4.085196,52.601827],[-4.084201,52.60195],[-4.079754,52.603664],[-4.07833,52.603749],[-4.075752,52.602893],[-4.073644,52.605569],[-4.075847,52.606702],[-4.073836,52.607123],[-4.071556,52.605873],[-4.071915,52.604684],[-4.073343,52.603458],[-4.073324,52.602135],[-4.074973,52.60151],[-4.081123,52.602194],[-4.084929,52.601046],[-4.090634,52.60298],[-4.091333,52.602706],[-4.090633,52.600571],[-4.095941,52.600214],[-4.097563,52.600688],[-4.100056,52.600192],[-4.102371,52.599266],[-4.105562,52.599572],[-4.11332,52.60397],[-4.116808,52.604318],[-4.125181,52.608413],[-4.126435,52.607324],[-4.124037,52.606219],[-4.117931,52.602066],[-4.112215,52.596896],[-4.106594,52.590996],[-4.098361,52.580192],[-4.085212,52.564595],[-4.081394,52.558987],[-4.073661,52.546839],[-4.070207,52.543263],[-4.066541,52.541801],[-4.060596,52.541187],[-4.054973,52.542078],[-4.04787,52.542493],[-4.043825,52.543703],[-4.043482,52.544176],[-4.040511,52.544166],[-4.038798,52.54493],[-4.036313,52.545428],[-4.033333,52.544921],[-4.026637,52.546826],[-4.024125,52.546642],[-4.019704,52.547602],[-4.019001,52.546997],[-4.017412,52.547367],[-4.01433,52.547414],[-4.010008,52.548266],[-4.006916,52.549623],[-4.003322,52.550608],[-4.001414,52.550822],[-3.995236,52.552903],[-3.993851,52.553001],[-3.992761,52.552392],[-3.989172,52.553457],[-3.986573,52.554715],[-3.984881,52.554316],[-3.983352,52.555088],[-3.980866,52.555098],[-3.977554,52.556223],[-3.973348,52.55624],[-3.971296,52.555366],[-3.967722,52.556913],[-3.962077,52.560294],[-3.959507,52.560687],[-3.95899,52.560181],[-3.953982,52.559352],[-3.949414,52.55922],[-3.945779,52.560069],[-3.943048,52.560342],[-3.939796,52.559772],[-3.938452,52.558995],[-3.936568,52.556111],[-3.936409,52.555391],[-3.933993,52.55406],[-3.931616,52.553876],[-3.929065,52.554894],[-3.927703,52.557791],[-3.927764,52.562792],[-3.928971,52.564573],[-3.93097,52.565697],[-3.929744,52.567143],[-3.929192,52.571337],[-3.928318,52.572021],[-3.926785,52.571889],[-3.925492,52.570771],[-3.923665,52.570733],[-3.920802,52.572679],[-3.916534,52.573668],[-3.914133,52.574973],[-3.914314,52.576092],[-3.915796,52.578301],[-3.914653,52.578802],[-3.912071,52.578279],[-3.909464,52.577465],[-3.905829,52.577529],[-3.901849,52.578927],[-3.900074,52.579048],[-3.896787,52.578432],[-3.892203,52.576947],[-3.890756,52.576788],[-3.887587,52.578412],[-3.883922,52.577119],[-3.883013,52.577758],[-3.884539,52.578685],[-3.884401,52.580122],[-3.882725,52.581589],[-3.882857,52.583208],[-3.877548,52.582398],[-3.875221,52.583806],[-3.8753,52.586929],[-3.873104,52.58787],[-3.872663,52.589827],[-3.876208,52.591834],[-3.875378,52.592842],[-3.871604,52.592473],[-3.869578,52.59132],[-3.866175,52.59177],[-3.864966,52.592504],[-3.862821,52.595566],[-3.862185,52.598046],[-3.861532,52.598771],[-3.859326,52.599921],[-3.856747,52.600403],[-3.851228,52.600722],[-3.849036,52.601358],[-3.845831,52.600211],[-3.842077,52.599679],[-3.841434,52.601408],[-3.843876,52.605168],[-3.846839,52.605859],[-3.848749,52.607302],[-3.846796,52.609785],[-3.84533,52.610496],[-3.845459,52.613245],[-3.84658,52.614608],[-3.846789,52.616795],[-3.849783,52.619296],[-3.85045,52.620636],[-3.848511,52.621354],[-3.845618,52.621516],[-3.843567,52.622671],[-3.844694,52.62466],[-3.845723,52.625393],[-3.845288,52.6267],[-3.846198,52.627404],[-3.846242,52.628836],[-3.843641,52.630476],[-3.841155,52.631278],[-3.839402,52.630946],[-3.837775,52.631111],[-3.834968,52.632411],[-3.834026,52.635784],[-3.835179,52.636844],[-3.836921,52.636685],[-3.841975,52.638199],[-3.844016,52.641223],[-3.844033,52.642468],[-3.843125,52.643607],[-3.843229,52.644745],[-3.84132,52.646189],[-3.84053,52.647545],[-3.840918,52.648851],[-3.840452,52.649545],[-3.840714,52.650903],[-3.838715,52.653368],[-3.838643,52.654489],[-3.836714,52.656259],[-3.834884,52.65703],[-3.832895,52.658705],[-3.829924,52.66014],[-3.828858,52.661812],[-3.823741,52.66532],[-3.822399,52.66576],[-3.821997,52.666611],[-3.820382,52.667158],[-3.820241,52.669095],[-3.816789,52.669597],[-3.818162,52.67125],[-3.818011,52.672732],[-3.816527,52.673432],[-3.814066,52.674045],[-3.811291,52.674224],[-3.810469,52.673941],[-3.808434,52.674917],[-3.808877,52.677102],[-3.808096,52.677945],[-3.804776,52.678467],[-3.801349,52.677809],[-3.801018,52.676472],[-3.799652,52.675138],[-3.798162,52.674666],[-3.795224,52.672689],[-3.78822,52.670976],[-3.787454,52.6713],[-3.784172,52.670979],[-3.781939,52.67103],[-3.778499,52.671579],[-3.775192,52.671612],[-3.768518,52.670399],[-3.767738,52.671662],[-3.765395,52.673093],[-3.760952,52.67115],[-3.759352,52.669446],[-3.758074,52.66953],[-3.757023,52.670233],[-3.757195,52.671461],[-3.755252,52.672509],[-3.755244,52.674005],[-3.753484,52.675459],[-3.748012,52.678663],[-3.745447,52.680784],[-3.743908,52.681309],[-3.739968,52.679752],[-3.737208,52.678145],[-3.735868,52.677893],[-3.730918,52.67792],[-3.728974,52.6784],[-3.727062,52.677742],[-3.724196,52.677379],[-3.71676,52.678779],[-3.712593,52.676051],[-3.712691,52.674866],[-3.711518,52.674454],[-3.713067,52.673311],[-3.714346,52.671847],[-3.711911,52.671066],[-3.709368,52.671082],[-3.709261,52.671641],[-3.706083,52.673065],[-3.707056,52.674077],[-3.706744,52.675826],[-3.702848,52.676892],[-3.701416,52.677772],[-3.701364,52.678896],[-3.703497,52.680599],[-3.703847,52.681921],[-3.703432,52.682692],[-3.700449,52.684392],[-3.69694,52.688272],[-3.695174,52.688355],[-3.695321,52.687029],[-3.693593,52.686805],[-3.687965,52.691404],[-3.685884,52.692022],[-3.684446,52.693673],[-3.682486,52.694151],[-3.680449,52.694159],[-3.681141,52.692845],[-3.677738,52.692467],[-3.676292,52.694174],[-3.675546,52.69412],[-3.671252,52.692307],[-3.668881,52.691738],[-3.66815,52.69268],[-3.666962,52.692966],[-3.664119,52.691456],[-3.661415,52.691339],[-3.660037,52.690934],[-3.657825,52.691568],[-3.656375,52.691373],[-3.654507,52.691695],[-3.653421,52.69263],[-3.651488,52.692869],[-3.649587,52.693611],[-3.648121,52.695367],[-3.648442,52.696222],[-3.645636,52.695671],[-3.642645,52.696246],[-3.6391,52.696268],[-3.634656,52.69584],[-3.632973,52.696113],[-3.631721,52.69686],[-3.630027,52.696238],[-3.627334,52.697246],[-3.624382,52.697195],[-3.62341,52.696825],[-3.621418,52.69766],[-3.619602,52.697456],[-3.617857,52.698447],[-3.618165,52.699077],[-3.616675,52.70054],[-3.615609,52.700809],[-3.614403,52.70197],[-3.610044,52.703087],[-3.609863,52.703645],[-3.607583,52.704239],[-3.605599,52.704304],[-3.604962,52.705038],[-3.60279,52.704712],[-3.601983,52.705087],[-3.603456,52.706465],[-3.60412,52.708475],[-3.604722,52.70887],[-3.603927,52.711774],[-3.602015,52.713154],[-3.602397,52.714044],[-3.601031,52.716443],[-3.601988,52.718925],[-3.600709,52.720075],[-3.600953,52.722324],[-3.599582,52.724032],[-3.599294,52.725882],[-3.593457,52.730848],[-3.592043,52.73326],[-3.591791,52.734786],[-3.586296,52.735726],[-3.584229,52.736568],[-3.583514,52.738623],[-3.584206,52.739598],[-3.58737,52.739729],[-3.588989,52.739428],[-3.591388,52.741763],[-3.591222,52.744489],[-3.588211,52.74708],[-3.590111,52.749146],[-3.593089,52.750421],[-3.592563,52.752703],[-3.593564,52.753305],[-3.593647,52.754801],[-3.594354,52.755615],[-3.594764,52.757134],[-3.591835,52.76035],[-3.592162,52.761088],[-3.593715,52.761852],[-3.590249,52.765903],[-3.593179,52.77017],[-3.594735,52.774396],[-3.595969,52.775446],[-3.596093,52.776627],[-3.599311,52.778794],[-3.59899,52.779873],[-3.597542,52.781215],[-3.596956,52.783482],[-3.60281,52.785972],[-3.606462,52.78699],[-3.606102,52.787442],[-3.607018,52.789768],[-3.606895,52.790795],[-3.608722,52.794086],[-3.608669,52.795805],[-3.606973,52.797501],[-3.604902,52.798747],[-3.603166,52.800625],[-3.601217,52.801488],[-3.599574,52.803525],[-3.59693,52.805007],[-3.597641,52.808536],[-3.596494,52.811002],[-3.597768,52.811878],[-3.596308,52.8129],[-3.597058,52.814054],[-3.5923,52.817869],[-3.591031,52.821409],[-3.586476,52.827717],[-3.581648,52.826303],[-3.580017,52.826123],[-3.577795,52.825107],[-3.575052,52.824444],[-3.57335,52.823507],[-3.56817,52.822895],[-3.565379,52.825048],[-3.564394,52.826381],[-3.564953,52.827825],[-3.566673,52.83008],[-3.55107,52.834109],[-3.533796,52.838074],[-3.521846,52.837203],[-3.517898,52.837378],[-3.505448,52.841894],[-3.497335,52.849345],[-3.486943,52.860184],[-3.483013,52.865454],[-3.477499,52.868899],[-3.475039,52.869913],[-3.473562,52.871267],[-3.474175,52.872741],[-3.476034,52.873688],[-3.479116,52.878245],[-3.482596,52.887512],[-3.485287,52.88947],[-3.487026,52.894266],[-3.48852,52.895435],[-3.489968,52.895789],[-3.486114,52.897024],[-3.48561,52.89811],[-3.482295,52.899744],[-3.482008,52.90144],[-3.480856,52.902147],[-3.480251,52.908767],[-3.47069,52.911774],[-3.465959,52.912382],[-3.467452,52.914233],[-3.465844,52.919779],[-3.465116,52.92027],[-3.466513,52.923051],[-3.46762,52.922979],[-3.468463,52.922085],[-3.47197,52.922689],[-3.473718,52.923304],[-3.47601,52.923635],[-3.476843,52.925616],[-3.479584,52.925765],[-3.48029,52.926414],[-3.483118,52.926882],[-3.483656,52.92868],[-3.485106,52.929242],[-3.487448,52.929247],[-3.487508,52.930445],[-3.489591,52.930598],[-3.491429,52.933686],[-3.490072,52.934636],[-3.487728,52.935503],[-3.485659,52.937178],[-3.484202,52.937765],[-3.482267,52.939802],[-3.482938,52.941929],[-3.484028,52.942871],[-3.482483,52.943613],[-3.481044,52.944866],[-3.478452,52.945812],[-3.472513,52.949065],[-3.472461,52.949508],[-3.470057,52.951011],[-3.466238,52.954524],[-3.463716,52.955004],[-3.463198,52.954445],[-3.461419,52.955087],[-3.46133,52.95569],[-3.45191,52.960307],[-3.446713,52.963238],[-3.446602,52.964267],[-3.447835,52.965177],[-3.446097,52.966054],[-3.447345,52.967743],[-3.447187,52.969833],[-3.448305,52.971574],[-3.449304,52.97196],[-3.448745,52.973827],[-3.446778,52.975653],[-3.445302,52.975961],[-3.443426,52.977239],[-3.442358,52.97749],[-3.441542,52.97897],[-3.440256,52.979487],[-3.439711,52.980625],[-3.436786,52.980848],[-3.439309,52.981799],[-3.44228,52.980658],[-3.444195,52.98038],[-3.448856,52.984446],[-3.449979,52.984819],[-3.451902,52.984737],[-3.455352,52.984016],[-3.456782,52.984122],[-3.457982,52.984888]]]]},"properties":{"LAD22CD":"W06000002","LAD22NM":"Gwynedd","BNG_E":280555,"BNG_N":334966,"LONG":-3.77715,"LAT":52.89883,"GlobalID":"1db7bf05-1c7a-40c5-aa01-80ac1d2ea458"},"id":354}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.497613,53.300862],[-3.497196,53.302367],[-3.499683,53.304926],[-3.501671,53.306261],[-3.506625,53.308737],[-3.511119,53.312772],[-3.510701,53.31427],[-3.505976,53.316113],[-3.50658,53.317327],[-3.512013,53.316705],[-3.518899,53.315026],[-3.529208,53.311156],[-3.533138,53.310192],[-3.536822,53.308774],[-3.537981,53.308873],[-3.547615,53.305452],[-3.553739,53.303671],[-3.554432,53.303134],[-3.557547,53.302017],[-3.577402,53.296756],[-3.589361,53.294252],[-3.60097,53.291599],[-3.609578,53.290453],[-3.615702,53.290105],[-3.62183,53.29051],[-3.625266,53.291408],[-3.62919,53.292697],[-3.630991,53.293628],[-3.634451,53.294573],[-3.654561,53.292173],[-3.671846,53.292874],[-3.677028,53.293555],[-3.680652,53.29448],[-3.686282,53.293627],[-3.696659,53.293253],[-3.707569,53.29382],[-3.714853,53.294813],[-3.716223,53.296038],[-3.72311,53.29709],[-3.727505,53.29834],[-3.729953,53.29967],[-3.732118,53.300362],[-3.737459,53.30387],[-3.738705,53.305457],[-3.739033,53.307318],[-3.738571,53.309818],[-3.737234,53.311342],[-3.738933,53.312858],[-3.73911,53.314135],[-3.74084,53.314953],[-3.743641,53.315619],[-3.749109,53.315762],[-3.756544,53.316955],[-3.758482,53.317554],[-3.764344,53.318665],[-3.767704,53.320536],[-3.768245,53.321529],[-3.770747,53.323958],[-3.774026,53.325868],[-3.773888,53.327406],[-3.775298,53.328243],[-3.776459,53.327474],[-3.77833,53.329079],[-3.779511,53.328369],[-3.781129,53.328533],[-3.783272,53.327182],[-3.787967,53.325233],[-3.805069,53.322883],[-3.813553,53.322562],[-3.818805,53.322791],[-3.823357,53.323699],[-3.828417,53.325386],[-3.830294,53.326971],[-3.828728,53.328195],[-3.828228,53.329507],[-3.829943,53.330914],[-3.830115,53.331936],[-3.83177,53.333304],[-3.832658,53.334846],[-3.831427,53.336719],[-3.833007,53.338027],[-3.83474,53.338088],[-3.836282,53.337163],[-3.838151,53.337322],[-3.840725,53.336914],[-3.844913,53.33797],[-3.849932,53.33973],[-3.852227,53.340076],[-3.854276,53.341506],[-3.856547,53.340962],[-3.858765,53.340782],[-3.865761,53.341856],[-3.868511,53.342737],[-3.870308,53.342234],[-3.87151,53.341251],[-3.872436,53.341501],[-3.874796,53.340384],[-3.875864,53.339458],[-3.877324,53.339772],[-3.878971,53.339459],[-3.879535,53.337161],[-3.878598,53.336216],[-3.878363,53.334078],[-3.877289,53.332774],[-3.864791,53.329042],[-3.860334,53.327197],[-3.858739,53.325467],[-3.855724,53.324299],[-3.850648,53.32295],[-3.849417,53.3214],[-3.847304,53.32114],[-3.844527,53.319016],[-3.844558,53.318283],[-3.84347,53.316885],[-3.843558,53.30999],[-3.844694,53.308594],[-3.842679,53.308014],[-3.840906,53.306296],[-3.839995,53.304011],[-3.840036,53.300863],[-3.837916,53.298493],[-3.838189,53.296712],[-3.837861,53.295444],[-3.836166,53.294627],[-3.83477,53.294741],[-3.830782,53.293857],[-3.830066,53.293102],[-3.830089,53.291692],[-3.828183,53.290261],[-3.827196,53.290688],[-3.828928,53.29202],[-3.828068,53.292445],[-3.825827,53.290825],[-3.825321,53.290934],[-3.822745,53.289451],[-3.820973,53.287938],[-3.822601,53.286925],[-3.822524,53.286406],[-3.818661,53.284194],[-3.817834,53.283244],[-3.823274,53.281008],[-3.822139,53.28036],[-3.818015,53.28262],[-3.813099,53.281229],[-3.813704,53.280138],[-3.808538,53.279105],[-3.806037,53.277804],[-3.803733,53.276174],[-3.803243,53.275058],[-3.801835,53.274447],[-3.800097,53.272943],[-3.799126,53.272712],[-3.797575,53.273273],[-3.797672,53.26909],[-3.798699,53.266251],[-3.801062,53.263758],[-3.802579,53.262869],[-3.807686,53.260914],[-3.81022,53.260644],[-3.809972,53.259755],[-3.811908,53.258544],[-3.817398,53.257076],[-3.817256,53.256344],[-3.818168,53.25478],[-3.820158,53.253537],[-3.821353,53.251342],[-3.819694,53.249843],[-3.817159,53.248673],[-3.814111,53.246393],[-3.809183,53.243898],[-3.807141,53.242337],[-3.80615,53.240809],[-3.805807,53.238973],[-3.806075,53.237368],[-3.805514,53.235214],[-3.806648,53.233765],[-3.808687,53.232255],[-3.818187,53.229482],[-3.821739,53.227655],[-3.821697,53.226735],[-3.81961,53.224771],[-3.819691,53.223941],[-3.822079,53.221958],[-3.825913,53.220035],[-3.827156,53.218572],[-3.826043,53.215279],[-3.827672,53.212345],[-3.828549,53.209544],[-3.826696,53.206844],[-3.827464,53.204938],[-3.833373,53.201026],[-3.832791,53.199812],[-3.830916,53.197805],[-3.831895,53.197375],[-3.833683,53.195695],[-3.833369,53.194042],[-3.829991,53.191683],[-3.827754,53.189213],[-3.826151,53.184633],[-3.823294,53.183701],[-3.81921,53.180836],[-3.818852,53.179604],[-3.818538,53.176175],[-3.819807,53.175583],[-3.82199,53.175294],[-3.822086,53.171915],[-3.824094,53.171112],[-3.824905,53.170366],[-3.824436,53.168932],[-3.825351,53.167019],[-3.823558,53.165455],[-3.82277,53.16394],[-3.823982,53.159705],[-3.824092,53.157832],[-3.825115,53.15728],[-3.823347,53.163885],[-3.824276,53.165631],[-3.82584,53.166096],[-3.824987,53.168731],[-3.825539,53.170217],[-3.824667,53.171215],[-3.822752,53.1722],[-3.823106,53.174574],[-3.822609,53.175364],[-3.819268,53.176378],[-3.81948,53.17994],[-3.820046,53.180835],[-3.822453,53.182607],[-3.824026,53.183437],[-3.826424,53.184136],[-3.827532,53.185771],[-3.828797,53.189143],[-3.83086,53.191384],[-3.834749,53.193968],[-3.834744,53.195452],[-3.833811,53.196843],[-3.834843,53.198879],[-3.834751,53.200354],[-3.832216,53.203827],[-3.829826,53.205211],[-3.828451,53.206825],[-3.831645,53.21013],[-3.831645,53.210786],[-3.829498,53.212737],[-3.829154,53.21396],[-3.829392,53.21826],[-3.829938,53.21883],[-3.829215,53.219942],[-3.827332,53.221128],[-3.82585,53.221361],[-3.82301,53.222426],[-3.820942,53.224035],[-3.823545,53.226784],[-3.822994,53.228627],[-3.819276,53.230174],[-3.817103,53.230778],[-3.809667,53.234226],[-3.807963,53.235971],[-3.808582,53.240302],[-3.809677,53.241896],[-3.811645,53.242966],[-3.81894,53.245514],[-3.824039,53.247931],[-3.826965,53.249994],[-3.828168,53.252571],[-3.827338,53.254745],[-3.825037,53.256471],[-3.82416,53.258598],[-3.822814,53.260278],[-3.819433,53.260565],[-3.814925,53.263178],[-3.810864,53.264623],[-3.809635,53.266155],[-3.810512,53.26676],[-3.813136,53.267486],[-3.81373,53.270001],[-3.815639,53.272814],[-3.815839,53.275911],[-3.817694,53.277178],[-3.821313,53.277791],[-3.824378,53.279183],[-3.824848,53.280823],[-3.827841,53.282047],[-3.82835,53.282849],[-3.829801,53.283497],[-3.830618,53.285034],[-3.830244,53.286544],[-3.831702,53.286969],[-3.834861,53.28706],[-3.834789,53.288702],[-3.835791,53.289068],[-3.835674,53.290354],[-3.836508,53.29076],[-3.839846,53.290722],[-3.841279,53.29127],[-3.842385,53.292279],[-3.840569,53.293114],[-3.839511,53.293099],[-3.841459,53.295451],[-3.845922,53.296615],[-3.849464,53.296404],[-3.851758,53.295578],[-3.860239,53.290018],[-3.865104,53.288117],[-3.86895,53.2875],[-3.872418,53.287324],[-3.875719,53.287969],[-3.878249,53.288992],[-3.880092,53.28942],[-3.881523,53.289251],[-3.884269,53.288344],[-3.891157,53.2853],[-3.895501,53.284446],[-3.903822,53.279738],[-3.913025,53.27526],[-3.916584,53.27434],[-3.920678,53.272448],[-3.931745,53.269184],[-3.941649,53.267626],[-3.949897,53.267168],[-3.959372,53.265234],[-3.966615,53.263418],[-3.971965,53.260923],[-3.976851,53.260035],[-3.982388,53.25971],[-3.983486,53.259471],[-3.985035,53.25763],[-3.987699,53.256333],[-3.992472,53.255458],[-3.997387,53.253706],[-4.001644,53.252794],[-4.00318,53.251393],[-4.002725,53.250061],[-4.000924,53.250536],[-3.999793,53.249124],[-4.004063,53.247497],[-4.007387,53.246923],[-4.006719,53.246946],[-4.004193,53.245044],[-3.998201,53.248387],[-3.995059,53.244656],[-3.99271,53.243385],[-3.992359,53.242371],[-3.990281,53.241252],[-3.990025,53.239855],[-3.985227,53.238262],[-3.984294,53.236008],[-3.982308,53.233581],[-3.979355,53.231891],[-3.947294,53.219684],[-3.940426,53.218854],[-3.937724,53.216749],[-3.935922,53.216131],[-3.935293,53.214875],[-3.935468,53.207371],[-3.936439,53.204949],[-3.938935,53.200267],[-3.940326,53.198852],[-3.94457,53.196729],[-3.951136,53.195556],[-3.953787,53.193546],[-3.954611,53.191327],[-3.964975,53.18339],[-3.963319,53.173819],[-3.970329,53.160186],[-3.983439,53.155633],[-3.991504,53.154477],[-4.000703,53.147786],[-4.007856,53.143768],[-4.020119,53.124822],[-4.019028,53.124116],[-4.008689,53.124449],[-4.002934,53.126231],[-3.999452,53.126413],[-3.998339,53.126838],[-3.996008,53.126523],[-3.995565,53.124962],[-3.998803,53.123044],[-4.001929,53.123198],[-4.003114,53.122832],[-4.00491,53.122986],[-4.006277,53.122015],[-4.01796,53.123294],[-4.018627,53.12244],[-4.021418,53.120929],[-4.022138,53.119117],[-4.023545,53.118397],[-4.023627,53.116137],[-4.025243,53.114209],[-4.027139,53.114075],[-4.026496,53.113108],[-4.027917,53.111149],[-4.029388,53.110349],[-4.029557,53.108937],[-4.031127,53.106374],[-4.029118,53.101531],[-4.025291,53.102234],[-4.02125,53.102233],[-4.018814,53.103223],[-4.017098,53.104636],[-4.016345,53.104056],[-4.014103,53.103556],[-4.016229,53.101645],[-4.014113,53.100614],[-4.012231,53.096557],[-4.012118,53.09564],[-4.013361,53.093683],[-4.013383,53.091987],[-4.014119,53.090764],[-4.013598,53.089705],[-4.012149,53.089133],[-4.009372,53.089485],[-4.005697,53.086391],[-4.003399,53.085208],[-4.0007,53.084982],[-3.999558,53.084544],[-3.997801,53.084906],[-3.996812,53.084254],[-3.996823,53.08334],[-3.995057,53.082833],[-3.994071,53.083394],[-3.986675,53.084202],[-3.987445,53.083112],[-3.989473,53.0817],[-3.989443,53.081053],[-3.991177,53.078518],[-3.990883,53.076919],[-3.991323,53.076494],[-3.98765,53.076104],[-3.986284,53.075644],[-3.982481,53.073158],[-3.98148,53.071186],[-3.977062,53.068933],[-3.976839,53.065261],[-3.978579,53.061263],[-3.981314,53.058768],[-3.984383,53.05732],[-3.989706,53.053839],[-3.990148,53.052898],[-3.992894,53.050171],[-3.99274,53.0489],[-3.993274,53.047071],[-3.992819,53.04482],[-3.993419,53.042004],[-3.994724,53.040521],[-3.996025,53.039782],[-3.997214,53.037651],[-3.995011,53.034323],[-3.994935,53.03264],[-3.992197,53.028413],[-3.989837,53.026878],[-3.990404,53.02491],[-3.993545,53.021473],[-3.99302,53.019724],[-3.993229,53.016716],[-3.991626,53.014006],[-3.98908,53.013302],[-3.98665,53.013052],[-3.985149,53.011192],[-3.985424,53.010653],[-3.963268,53.010824],[-3.961582,53.011701],[-3.955999,53.012749],[-3.955128,53.013354],[-3.952791,53.013844],[-3.950886,53.015054],[-3.94816,53.015713],[-3.947024,53.014985],[-3.94537,53.016012],[-3.941195,53.017547],[-3.940508,53.018405],[-3.93743,53.018098],[-3.936291,53.01739],[-3.931387,53.017291],[-3.928796,53.018886],[-3.924378,53.020246],[-3.918734,53.020343],[-3.917234,53.020101],[-3.91501,53.02258],[-3.90585,53.020828],[-3.903378,53.020997],[-3.898936,53.020567],[-3.897579,53.014647],[-3.895699,53.012978],[-3.893223,53.011875],[-3.892164,53.012033],[-3.890241,53.011426],[-3.887813,53.011609],[-3.888792,53.010091],[-3.891069,53.008205],[-3.892552,53.006058],[-3.89298,53.002849],[-3.892221,53.001219],[-3.893414,53.000336],[-3.895385,52.9978],[-3.89656,52.994898],[-3.892949,52.995342],[-3.889627,52.994648],[-3.888258,52.993762],[-3.886547,52.993509],[-3.884806,52.9925],[-3.883464,52.992415],[-3.88274,52.990865],[-3.879497,52.989275],[-3.849372,52.97732],[-3.84972,52.974484],[-3.841923,52.966675],[-3.841463,52.965002],[-3.8418,52.963759],[-3.841038,52.9623],[-3.833745,52.962076],[-3.832628,52.957737],[-3.828674,52.953843],[-3.819729,52.950366],[-3.813224,52.949372],[-3.801508,52.951519],[-3.798022,52.954622],[-3.790741,52.955487],[-3.783387,52.957269],[-3.777475,52.957225],[-3.775113,52.957578],[-3.769723,52.959304],[-3.767355,52.960392],[-3.764558,52.962312],[-3.757402,52.969227],[-3.753761,52.971861],[-3.749027,52.974735],[-3.743921,52.977058],[-3.735342,52.979851],[-3.718772,52.984384],[-3.704123,52.98679],[-3.694611,52.987205],[-3.682998,52.98689],[-3.678215,52.993533],[-3.67295,52.997052],[-3.665106,52.996351],[-3.65956,52.996906],[-3.656758,52.997589],[-3.654518,52.998664],[-3.64898,53.000419],[-3.647163,53.001384],[-3.642981,53.004587],[-3.636284,53.006944],[-3.635094,53.007699],[-3.633096,53.007211],[-3.632545,53.006678],[-3.629119,53.007153],[-3.62485,53.008902],[-3.622627,53.009054],[-3.622248,53.009723],[-3.620495,53.010422],[-3.619192,53.009689],[-3.616107,53.010496],[-3.615322,53.01135],[-3.610745,53.011169],[-3.606779,53.012113],[-3.605049,53.011301],[-3.603499,53.011768],[-3.602069,53.011404],[-3.599622,53.01169],[-3.599553,53.009917],[-3.601066,53.008547],[-3.600556,53.007502],[-3.601082,53.006318],[-3.601973,53.005804],[-3.603133,53.003232],[-3.60529,53.000677],[-3.60858,52.999065],[-3.608799,52.998138],[-3.610789,52.996014],[-3.609457,52.995641],[-3.607181,52.996749],[-3.602336,52.993536],[-3.602164,52.992473],[-3.601074,52.991217],[-3.603072,52.989627],[-3.599565,52.989083],[-3.600243,52.986016],[-3.598993,52.98411],[-3.598709,52.98228],[-3.596252,52.977812],[-3.592105,52.973294],[-3.591898,52.972206],[-3.590977,52.971004],[-3.58299,52.967537],[-3.573483,52.968397],[-3.570321,52.969851],[-3.566685,52.969824],[-3.559264,52.967734],[-3.551789,52.969111],[-3.544091,52.96827],[-3.542848,52.969536],[-3.536887,52.972607],[-3.533809,52.973686],[-3.527596,52.97135],[-3.522917,52.970787],[-3.515392,52.968649],[-3.511971,52.968689],[-3.509089,52.969602],[-3.507982,52.968737],[-3.508761,52.96711],[-3.508153,52.966053],[-3.504542,52.96535],[-3.502785,52.965703],[-3.500901,52.967497],[-3.499223,52.968308],[-3.497827,52.968426],[-3.495531,52.969726],[-3.492369,52.970338],[-3.490046,52.971699],[-3.488272,52.970609],[-3.486038,52.970207],[-3.483867,52.969427],[-3.483032,52.969535],[-3.481968,52.971634],[-3.476968,52.974925],[-3.47319,52.976737],[-3.471889,52.978427],[-3.468057,52.980186],[-3.467553,52.980828],[-3.464006,52.982995],[-3.461632,52.983702],[-3.458719,52.985416],[-3.457982,52.984888],[-3.458233,52.986502],[-3.457484,52.987444],[-3.454614,52.987641],[-3.455517,52.99005],[-3.457475,52.991695],[-3.455998,52.992994],[-3.457617,52.994966],[-3.454592,52.997926],[-3.457728,52.999456],[-3.45958,52.999115],[-3.459499,53.000163],[-3.462378,53.000841],[-3.463018,53.002244],[-3.464169,53.002992],[-3.4627,53.004349],[-3.460873,53.004693],[-3.461055,53.005554],[-3.46261,53.006359],[-3.46376,53.006417],[-3.463891,53.007478],[-3.465281,53.008067],[-3.46431,53.01004],[-3.465145,53.010557],[-3.467351,53.010342],[-3.469758,53.012323],[-3.471289,53.012881],[-3.471713,53.013564],[-3.471385,53.015016],[-3.473559,53.016348],[-3.475165,53.018045],[-3.477493,53.018304],[-3.47918,53.017984],[-3.481184,53.018523],[-3.48115,53.019027],[-3.479149,53.020251],[-3.478092,53.021442],[-3.478543,53.023319],[-3.476275,53.02642],[-3.477536,53.026523],[-3.479615,53.02738],[-3.485048,53.027671],[-3.485662,53.028514],[-3.484697,53.029298],[-3.485571,53.030503],[-3.482867,53.03203],[-3.484587,53.033464],[-3.484338,53.034118],[-3.487306,53.034703],[-3.487102,53.035259],[-3.488765,53.036161],[-3.489658,53.037859],[-3.4895,53.039874],[-3.48892,53.040669],[-3.485256,53.042294],[-3.485077,53.043435],[-3.482533,53.043617],[-3.480377,53.04314],[-3.477753,53.043165],[-3.470182,53.044646],[-3.465047,53.044897],[-3.463165,53.046193],[-3.46516,53.053068],[-3.486888,53.065923],[-3.486238,53.067843],[-3.484987,53.069457],[-3.483269,53.07404],[-3.485223,53.07726],[-3.485348,53.079194],[-3.486275,53.08107],[-3.486929,53.08405],[-3.49039,53.084015],[-3.500533,53.081994],[-3.509586,53.077276],[-3.511644,53.078302],[-3.510616,53.07949],[-3.510052,53.081034],[-3.511304,53.082024],[-3.511521,53.083121],[-3.51571,53.089799],[-3.551881,53.089346],[-3.55291,53.091048],[-3.553808,53.091517],[-3.554675,53.093249],[-3.556825,53.093694],[-3.559883,53.092849],[-3.562852,53.094529],[-3.564931,53.094656],[-3.565696,53.091415],[-3.569309,53.089925],[-3.574004,53.088648],[-3.575294,53.087706],[-3.57777,53.087104],[-3.587721,53.082269],[-3.593058,53.078456],[-3.596904,53.080039],[-3.601618,53.08521],[-3.601717,53.089522],[-3.599889,53.090797],[-3.599445,53.091562],[-3.591742,53.092878],[-3.590841,53.092476],[-3.584428,53.097548],[-3.582275,53.098131],[-3.578971,53.098118],[-3.575972,53.098911],[-3.57282,53.100854],[-3.569424,53.101238],[-3.565839,53.103282],[-3.561631,53.104402],[-3.561257,53.104878],[-3.557948,53.106272],[-3.555952,53.106673],[-3.566439,53.111634],[-3.560069,53.11465],[-3.560238,53.117413],[-3.563343,53.119484],[-3.561161,53.120322],[-3.558034,53.120525],[-3.556287,53.121183],[-3.554068,53.122799],[-3.552098,53.123121],[-3.550919,53.125952],[-3.547916,53.128313],[-3.546518,53.132745],[-3.544351,53.133721],[-3.539251,53.13505],[-3.535945,53.137515],[-3.534072,53.139948],[-3.532198,53.139013],[-3.527314,53.141084],[-3.526263,53.141149],[-3.524851,53.142201],[-3.516969,53.145598],[-3.512936,53.147681],[-3.511691,53.148952],[-3.509723,53.149967],[-3.50732,53.15036],[-3.505739,53.149962],[-3.503601,53.151578],[-3.503109,53.153349],[-3.498935,53.153134],[-3.49667,53.153427],[-3.493798,53.154219],[-3.493265,53.155144],[-3.48931,53.156378],[-3.486755,53.159613],[-3.485206,53.159901],[-3.483267,53.159437],[-3.480624,53.159615],[-3.476147,53.158963],[-3.474077,53.160915],[-3.474607,53.161374],[-3.473068,53.162591],[-3.46966,53.163203],[-3.467087,53.164241],[-3.464383,53.163826],[-3.461781,53.164613],[-3.461831,53.165585],[-3.463256,53.167438],[-3.46777,53.168699],[-3.467896,53.169356],[-3.471031,53.170424],[-3.469765,53.171595],[-3.470592,53.172425],[-3.472385,53.172823],[-3.472229,53.17432],[-3.471311,53.175084],[-3.471982,53.175971],[-3.474459,53.176372],[-3.473184,53.177823],[-3.471882,53.178319],[-3.471959,53.180263],[-3.46948,53.182295],[-3.471803,53.18316],[-3.471235,53.184167],[-3.47272,53.184535],[-3.472995,53.186001],[-3.472037,53.18846],[-3.470107,53.19128],[-3.472336,53.191865],[-3.470663,53.193125],[-3.469854,53.19435],[-3.469481,53.196182],[-3.4681,53.197499],[-3.469264,53.199715],[-3.468089,53.200262],[-3.470859,53.202868],[-3.469373,53.205977],[-3.469159,53.206931],[-3.467906,53.208198],[-3.467697,53.210118],[-3.467207,53.210373],[-3.468355,53.212091],[-3.466213,53.212933],[-3.46488,53.215364],[-3.466187,53.216508],[-3.465965,53.218343],[-3.466753,53.219567],[-3.466025,53.220781],[-3.478067,53.225428],[-3.481379,53.226155],[-3.483793,53.227598],[-3.482811,53.228884],[-3.483477,53.230176],[-3.48721,53.230921],[-3.492434,53.233026],[-3.493547,53.234143],[-3.4972,53.235642],[-3.498079,53.236464],[-3.503671,53.237614],[-3.503556,53.23905],[-3.506366,53.23989],[-3.509329,53.241726],[-3.510588,53.241803],[-3.512078,53.241054],[-3.512324,53.239693],[-3.513606,53.238882],[-3.514928,53.238806],[-3.520939,53.240426],[-3.523813,53.23964],[-3.526772,53.240798],[-3.527866,53.243042],[-3.52782,53.244986],[-3.528977,53.245869],[-3.531055,53.248147],[-3.533079,53.248869],[-3.533254,53.251794],[-3.530595,53.251253],[-3.529177,53.253147],[-3.527717,53.253034],[-3.527328,53.25422],[-3.529863,53.254906],[-3.527164,53.255813],[-3.524956,53.25695],[-3.520255,53.255549],[-3.51898,53.255613],[-3.518338,53.256374],[-3.519004,53.257267],[-3.51818,53.258857],[-3.520414,53.260383],[-3.518493,53.263114],[-3.522359,53.264242],[-3.52637,53.266758],[-3.526428,53.26923],[-3.525032,53.272059],[-3.526551,53.272352],[-3.526317,53.273636],[-3.524539,53.276535],[-3.524299,53.278232],[-3.523427,53.279369],[-3.52192,53.283393],[-3.519804,53.284062],[-3.517498,53.285474],[-3.510913,53.285842],[-3.51253,53.290332],[-3.50518,53.291227],[-3.506459,53.293175],[-3.505013,53.294197],[-3.504301,53.295878],[-3.50633,53.296192],[-3.505653,53.29688],[-3.506847,53.297481],[-3.506652,53.298653],[-3.503459,53.300012],[-3.502572,53.299716],[-3.501993,53.298496],[-3.498198,53.299075],[-3.497619,53.30079],[-3.497619,53.300848],[-3.497613,53.300862]]]},"properties":{"LAD22CD":"W06000003","LAD22NM":"Conwy","BNG_E":283293,"BNG_N":362563,"LONG":-3.74646,"LAT":53.14739,"GlobalID":"d21c4974-f8f6-407c-8f2f-f807626e05a5"},"id":355}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.129617,53.072368],[-3.133168,53.073423],[-3.134529,53.073156],[-3.136814,53.073439],[-3.141179,53.076449],[-3.139889,53.079559],[-3.143009,53.084329],[-3.144512,53.084195],[-3.14737,53.08618],[-3.146017,53.086558],[-3.147962,53.087503],[-3.146876,53.088548],[-3.148218,53.08954],[-3.148321,53.091333],[-3.150854,53.092354],[-3.151836,53.093229],[-3.150124,53.095502],[-3.15037,53.095951],[-3.14917,53.09783],[-3.14784,53.099296],[-3.148165,53.10033],[-3.146903,53.100792],[-3.147258,53.102364],[-3.145908,53.10395],[-3.148419,53.104324],[-3.150001,53.104169],[-3.151332,53.104723],[-3.154493,53.105167],[-3.156912,53.104918],[-3.163351,53.105848],[-3.169928,53.108259],[-3.17251,53.110932],[-3.173741,53.113352],[-3.176762,53.116087],[-3.175739,53.121448],[-3.175792,53.123389],[-3.179081,53.127114],[-3.179312,53.129915],[-3.181117,53.131057],[-3.1859,53.141974],[-3.183151,53.144054],[-3.183206,53.145659],[-3.181339,53.146211],[-3.183791,53.14802],[-3.184173,53.148702],[-3.183045,53.150088],[-3.183802,53.151528],[-3.182346,53.154037],[-3.188844,53.155255],[-3.194269,53.155059],[-3.195775,53.155537],[-3.194974,53.15679],[-3.196173,53.158714],[-3.202031,53.158217],[-3.20306,53.159346],[-3.204215,53.158786],[-3.208226,53.159843],[-3.210262,53.1583],[-3.210971,53.156718],[-3.213875,53.155278],[-3.215843,53.15515],[-3.21734,53.154568],[-3.219473,53.154549],[-3.222134,53.153735],[-3.22557,53.153138],[-3.227648,53.154273],[-3.230324,53.154758],[-3.233014,53.15415],[-3.236431,53.154273],[-3.239978,53.153768],[-3.240866,53.15306],[-3.244152,53.152298],[-3.247382,53.152403],[-3.248996,53.153269],[-3.250758,53.153361],[-3.255994,53.154459],[-3.258681,53.155507],[-3.263693,53.156431],[-3.2651,53.155915],[-3.271206,53.157466],[-3.270804,53.159435],[-3.271709,53.159874],[-3.271147,53.161581],[-3.272662,53.163566],[-3.275394,53.164338],[-3.27657,53.166005],[-3.280296,53.167648],[-3.280978,53.16859],[-3.279946,53.169154],[-3.278071,53.17235],[-3.27901,53.173249],[-3.279252,53.176227],[-3.275975,53.177399],[-3.275135,53.179037],[-3.276224,53.180482],[-3.278248,53.18201],[-3.280122,53.183891],[-3.281831,53.184109],[-3.282191,53.185118],[-3.285531,53.188019],[-3.28972,53.190906],[-3.290353,53.191853],[-3.296427,53.19235],[-3.300412,53.194035],[-3.302029,53.195072],[-3.303213,53.195362],[-3.307403,53.197506],[-3.3093,53.199853],[-3.31103,53.200723],[-3.308934,53.202893],[-3.305523,53.204979],[-3.305243,53.20645],[-3.304216,53.208031],[-3.307247,53.20845],[-3.309111,53.206671],[-3.311491,53.207256],[-3.312889,53.207282],[-3.317085,53.209995],[-3.317778,53.210904],[-3.319155,53.216715],[-3.321011,53.219267],[-3.322379,53.220409],[-3.321587,53.221162],[-3.318688,53.220868],[-3.316944,53.221485],[-3.313985,53.224362],[-3.309225,53.227859],[-3.307299,53.228272],[-3.308248,53.229259],[-3.306666,53.230636],[-3.305445,53.231176],[-3.30444,53.232924],[-3.306877,53.233001],[-3.308191,53.232715],[-3.311202,53.232888],[-3.311481,53.235187],[-3.31565,53.235751],[-3.322604,53.236298],[-3.327221,53.236973],[-3.330062,53.237068],[-3.33366,53.236699],[-3.332715,53.238296],[-3.332921,53.239186],[-3.337571,53.241908],[-3.339057,53.243885],[-3.34169,53.245087],[-3.342993,53.246838],[-3.344362,53.247183],[-3.346835,53.24867],[-3.349078,53.249501],[-3.349289,53.251493],[-3.351062,53.252393],[-3.352891,53.252208],[-3.361755,53.253101],[-3.358085,53.254677],[-3.341199,53.265839],[-3.33278,53.27033],[-3.329798,53.273211],[-3.330631,53.274427],[-3.3349,53.276622],[-3.340261,53.277313],[-3.343196,53.279046],[-3.34477,53.279434],[-3.345438,53.280404],[-3.347438,53.281581],[-3.353979,53.281905],[-3.357034,53.283928],[-3.356769,53.284657],[-3.358397,53.288064],[-3.357166,53.288658],[-3.355881,53.290773],[-3.356233,53.292971],[-3.355655,53.293855],[-3.356129,53.29489],[-3.355537,53.2963],[-3.355755,53.29708],[-3.362016,53.29815],[-3.362301,53.294492],[-3.366882,53.293088],[-3.368832,53.292791],[-3.372004,53.292812],[-3.375131,53.291654],[-3.376702,53.292393],[-3.375663,53.293595],[-3.376639,53.295663],[-3.378922,53.294704],[-3.379709,53.29503],[-3.381762,53.297555],[-3.381439,53.298371],[-3.382178,53.301049],[-3.384095,53.300753],[-3.38641,53.30081],[-3.387336,53.300118],[-3.389301,53.300564],[-3.391959,53.300484],[-3.392339,53.301429],[-3.394341,53.301708],[-3.393878,53.30343],[-3.393091,53.304404],[-3.394047,53.305755],[-3.389567,53.30607],[-3.389766,53.307497],[-3.390856,53.308507],[-3.387082,53.308828],[-3.387964,53.309493],[-3.38718,53.310557],[-3.380381,53.313942],[-3.381308,53.315827],[-3.385368,53.314896],[-3.388278,53.314639],[-3.390967,53.313671],[-3.393527,53.313144],[-3.392351,53.31143],[-3.39762,53.309703],[-3.400599,53.313857],[-3.399864,53.31431],[-3.399373,53.315742],[-3.400253,53.317669],[-3.398077,53.318428],[-3.397019,53.321893],[-3.395966,53.323336],[-3.395875,53.324243],[-3.393699,53.326808],[-3.391814,53.32715],[-3.391035,53.325546],[-3.389801,53.32453],[-3.390676,53.323501],[-3.390464,53.322822],[-3.388347,53.323233],[-3.381594,53.326175],[-3.376249,53.327724],[-3.375288,53.329875],[-3.376886,53.332254],[-3.372784,53.333109],[-3.372896,53.333597],[-3.371391,53.334961],[-3.369144,53.334245],[-3.36818,53.335238],[-3.367659,53.338478],[-3.366808,53.338339],[-3.367504,53.343075],[-3.36902,53.345613],[-3.360669,53.346576],[-3.364198,53.353524],[-3.373342,53.351738],[-3.380792,53.349341],[-3.383754,53.348929],[-3.399265,53.34537],[-3.400787,53.345412],[-3.40513,53.344532],[-3.412815,53.342636],[-3.434708,53.336993],[-3.446983,53.333192],[-3.458981,53.330735],[-3.467823,53.329533],[-3.469257,53.329439],[-3.47101,53.329951],[-3.47245,53.329921],[-3.482591,53.327834],[-3.488477,53.326023],[-3.490319,53.325043],[-3.503002,53.317885],[-3.504831,53.316012],[-3.507643,53.314557],[-3.509309,53.313245],[-3.509131,53.312468],[-3.506306,53.311097],[-3.505019,53.309724],[-3.500219,53.307805],[-3.498781,53.305978],[-3.498057,53.305932],[-3.494816,53.303201],[-3.490797,53.30084],[-3.484583,53.298657],[-3.482769,53.296308],[-3.477428,53.294686],[-3.474316,53.292988],[-3.472351,53.291198],[-3.47258,53.290803],[-3.47623,53.293513],[-3.482952,53.295752],[-3.484796,53.298071],[-3.486073,53.298824],[-3.49292,53.300448],[-3.496591,53.302043],[-3.497025,53.301595],[-3.497182,53.3014],[-3.497238,53.30133],[-3.49727,53.30129],[-3.497619,53.30079],[-3.498198,53.299075],[-3.501993,53.298496],[-3.502572,53.299716],[-3.503459,53.300012],[-3.506652,53.298653],[-3.506847,53.297481],[-3.505653,53.29688],[-3.50633,53.296192],[-3.504301,53.295878],[-3.505013,53.294197],[-3.506459,53.293175],[-3.50518,53.291227],[-3.51253,53.290332],[-3.510913,53.285842],[-3.517498,53.285474],[-3.519804,53.284062],[-3.52192,53.283393],[-3.523427,53.279369],[-3.524299,53.278232],[-3.524539,53.276535],[-3.526317,53.273636],[-3.526551,53.272352],[-3.525032,53.272059],[-3.526428,53.26923],[-3.52637,53.266758],[-3.522359,53.264242],[-3.518493,53.263114],[-3.520414,53.260383],[-3.51818,53.258857],[-3.519004,53.257267],[-3.518338,53.256374],[-3.51898,53.255613],[-3.520255,53.255549],[-3.524956,53.25695],[-3.527164,53.255813],[-3.529863,53.254906],[-3.527328,53.25422],[-3.527717,53.253034],[-3.529177,53.253147],[-3.530595,53.251253],[-3.533254,53.251794],[-3.533079,53.248869],[-3.531055,53.248147],[-3.528977,53.245869],[-3.52782,53.244986],[-3.527866,53.243042],[-3.526772,53.240798],[-3.523813,53.23964],[-3.520939,53.240426],[-3.514928,53.238806],[-3.513606,53.238882],[-3.512324,53.239693],[-3.512078,53.241054],[-3.510588,53.241803],[-3.509329,53.241726],[-3.506366,53.23989],[-3.503556,53.23905],[-3.503671,53.237614],[-3.498079,53.236464],[-3.4972,53.235642],[-3.493547,53.234143],[-3.492434,53.233026],[-3.48721,53.230921],[-3.483477,53.230176],[-3.482811,53.228884],[-3.483793,53.227598],[-3.481379,53.226155],[-3.478067,53.225428],[-3.466025,53.220781],[-3.466753,53.219567],[-3.465965,53.218343],[-3.466187,53.216508],[-3.46488,53.215364],[-3.466213,53.212933],[-3.468355,53.212091],[-3.467207,53.210373],[-3.467697,53.210118],[-3.467906,53.208198],[-3.469159,53.206931],[-3.469373,53.205977],[-3.470859,53.202868],[-3.468089,53.200262],[-3.469264,53.199715],[-3.4681,53.197499],[-3.469481,53.196182],[-3.469854,53.19435],[-3.470663,53.193125],[-3.472336,53.191865],[-3.470107,53.19128],[-3.472037,53.18846],[-3.472995,53.186001],[-3.47272,53.184535],[-3.471235,53.184167],[-3.471803,53.18316],[-3.46948,53.182295],[-3.471959,53.180263],[-3.471882,53.178319],[-3.473184,53.177823],[-3.474459,53.176372],[-3.471982,53.175971],[-3.471311,53.175084],[-3.472229,53.17432],[-3.472385,53.172823],[-3.470592,53.172425],[-3.469765,53.171595],[-3.471031,53.170424],[-3.467896,53.169356],[-3.46777,53.168699],[-3.463256,53.167438],[-3.461831,53.165585],[-3.461781,53.164613],[-3.464383,53.163826],[-3.467087,53.164241],[-3.46966,53.163203],[-3.473068,53.162591],[-3.474607,53.161374],[-3.474077,53.160915],[-3.476147,53.158963],[-3.480624,53.159615],[-3.483267,53.159437],[-3.485206,53.159901],[-3.486755,53.159613],[-3.48931,53.156378],[-3.493265,53.155144],[-3.493798,53.154219],[-3.49667,53.153427],[-3.498935,53.153134],[-3.503109,53.153349],[-3.503601,53.151578],[-3.505739,53.149962],[-3.50732,53.15036],[-3.509723,53.149967],[-3.511691,53.148952],[-3.512936,53.147681],[-3.516969,53.145598],[-3.524851,53.142201],[-3.526263,53.141149],[-3.527314,53.141084],[-3.532198,53.139013],[-3.534072,53.139948],[-3.535945,53.137515],[-3.539251,53.13505],[-3.544351,53.133721],[-3.546518,53.132745],[-3.547916,53.128313],[-3.550919,53.125952],[-3.552098,53.123121],[-3.554068,53.122799],[-3.556287,53.121183],[-3.558034,53.120525],[-3.561161,53.120322],[-3.563343,53.119484],[-3.560238,53.117413],[-3.560069,53.11465],[-3.566439,53.111634],[-3.555952,53.106673],[-3.557948,53.106272],[-3.561257,53.104878],[-3.561631,53.104402],[-3.565839,53.103282],[-3.569424,53.101238],[-3.57282,53.100854],[-3.575972,53.098911],[-3.578971,53.098118],[-3.582275,53.098131],[-3.584428,53.097548],[-3.590841,53.092476],[-3.591742,53.092878],[-3.599445,53.091562],[-3.599889,53.090797],[-3.601717,53.089522],[-3.601618,53.08521],[-3.596904,53.080039],[-3.593058,53.078456],[-3.587721,53.082269],[-3.57777,53.087104],[-3.575294,53.087706],[-3.574004,53.088648],[-3.569309,53.089925],[-3.565696,53.091415],[-3.564931,53.094656],[-3.562852,53.094529],[-3.559883,53.092849],[-3.556825,53.093694],[-3.554675,53.093249],[-3.553808,53.091517],[-3.55291,53.091048],[-3.551881,53.089346],[-3.51571,53.089799],[-3.511521,53.083121],[-3.511304,53.082024],[-3.510052,53.081034],[-3.510616,53.07949],[-3.511644,53.078302],[-3.509586,53.077276],[-3.500533,53.081994],[-3.49039,53.084015],[-3.486929,53.08405],[-3.486275,53.08107],[-3.485348,53.079194],[-3.485223,53.07726],[-3.483269,53.07404],[-3.484987,53.069457],[-3.486238,53.067843],[-3.486888,53.065923],[-3.46516,53.053068],[-3.463165,53.046193],[-3.465047,53.044897],[-3.470182,53.044646],[-3.477753,53.043165],[-3.480377,53.04314],[-3.482533,53.043617],[-3.485077,53.043435],[-3.485256,53.042294],[-3.48892,53.040669],[-3.4895,53.039874],[-3.489658,53.037859],[-3.488765,53.036161],[-3.487102,53.035259],[-3.487306,53.034703],[-3.484338,53.034118],[-3.484587,53.033464],[-3.482867,53.03203],[-3.485571,53.030503],[-3.484697,53.029298],[-3.485662,53.028514],[-3.485048,53.027671],[-3.479615,53.02738],[-3.477536,53.026523],[-3.476275,53.02642],[-3.478543,53.023319],[-3.478092,53.021442],[-3.479149,53.020251],[-3.48115,53.019027],[-3.481184,53.018523],[-3.47918,53.017984],[-3.477493,53.018304],[-3.475165,53.018045],[-3.473559,53.016348],[-3.471385,53.015016],[-3.471713,53.013564],[-3.471289,53.012881],[-3.469758,53.012323],[-3.467351,53.010342],[-3.465145,53.010557],[-3.46431,53.01004],[-3.465281,53.008067],[-3.463891,53.007478],[-3.46376,53.006417],[-3.46261,53.006359],[-3.461055,53.005554],[-3.460873,53.004693],[-3.4627,53.004349],[-3.464169,53.002992],[-3.463018,53.002244],[-3.462378,53.000841],[-3.459499,53.000163],[-3.45958,52.999115],[-3.457728,52.999456],[-3.454592,52.997926],[-3.457617,52.994966],[-3.455998,52.992994],[-3.457475,52.991695],[-3.455517,52.99005],[-3.454614,52.987641],[-3.457484,52.987444],[-3.458233,52.986502],[-3.457982,52.984888],[-3.456782,52.984122],[-3.455352,52.984016],[-3.451902,52.984737],[-3.449979,52.984819],[-3.448856,52.984446],[-3.444195,52.98038],[-3.44228,52.980658],[-3.439309,52.981799],[-3.436786,52.980848],[-3.439711,52.980625],[-3.440256,52.979487],[-3.441542,52.97897],[-3.442358,52.97749],[-3.443426,52.977239],[-3.445302,52.975961],[-3.446778,52.975653],[-3.448745,52.973827],[-3.449304,52.97196],[-3.448305,52.971574],[-3.447187,52.969833],[-3.447345,52.967743],[-3.446097,52.966054],[-3.447835,52.965177],[-3.446602,52.964267],[-3.446713,52.963238],[-3.45191,52.960307],[-3.46133,52.95569],[-3.461419,52.955087],[-3.463198,52.954445],[-3.463716,52.955004],[-3.466238,52.954524],[-3.470057,52.951011],[-3.472461,52.949508],[-3.472513,52.949065],[-3.478452,52.945812],[-3.481044,52.944866],[-3.482483,52.943613],[-3.484028,52.942871],[-3.482938,52.941929],[-3.482267,52.939802],[-3.484202,52.937765],[-3.485659,52.937178],[-3.487728,52.935503],[-3.490072,52.934636],[-3.491429,52.933686],[-3.489591,52.930598],[-3.487508,52.930445],[-3.487448,52.929247],[-3.485106,52.929242],[-3.483656,52.92868],[-3.483118,52.926882],[-3.48029,52.926414],[-3.479584,52.925765],[-3.476843,52.925616],[-3.47601,52.923635],[-3.473718,52.923304],[-3.47197,52.922689],[-3.468463,52.922085],[-3.46762,52.922979],[-3.466513,52.923051],[-3.465116,52.92027],[-3.465844,52.919779],[-3.467452,52.914233],[-3.465959,52.912382],[-3.47069,52.911774],[-3.480251,52.908767],[-3.480856,52.902147],[-3.482008,52.90144],[-3.482295,52.899744],[-3.48561,52.89811],[-3.486114,52.897024],[-3.489968,52.895789],[-3.48852,52.895435],[-3.487026,52.894266],[-3.485287,52.88947],[-3.482596,52.887512],[-3.479116,52.878245],[-3.476034,52.873688],[-3.474175,52.872741],[-3.473562,52.871267],[-3.475039,52.869913],[-3.477499,52.868899],[-3.483013,52.865454],[-3.479862,52.864329],[-3.472881,52.863223],[-3.469268,52.861939],[-3.449384,52.864525],[-3.426263,52.867373],[-3.388824,52.87607],[-3.380304,52.88377],[-3.375015,52.892453],[-3.375525,52.894759],[-3.373085,52.901091],[-3.36937,52.902479],[-3.36338,52.903658],[-3.359411,52.905395],[-3.358627,52.907061],[-3.355908,52.909556],[-3.354391,52.913739],[-3.351704,52.915369],[-3.348876,52.916332],[-3.352168,52.918455],[-3.352743,52.919823],[-3.353715,52.920754],[-3.353316,52.921972],[-3.351874,52.921887],[-3.34826,52.922699],[-3.34,52.925015],[-3.338138,52.926945],[-3.332679,52.92806],[-3.326686,52.932398],[-3.324341,52.931844],[-3.32038,52.938765],[-3.314308,52.946801],[-3.307618,52.946249],[-3.297402,52.942967],[-3.290913,52.944312],[-3.275656,52.944273],[-3.250784,52.945788],[-3.244201,52.946951],[-3.239534,52.948537],[-3.23733,52.949446],[-3.237441,52.951013],[-3.234476,52.94981],[-3.229876,52.94984],[-3.221881,52.948648],[-3.197975,52.944206],[-3.191768,52.944775],[-3.172269,52.948706],[-3.166528,52.948393],[-3.161843,52.948536],[-3.161983,52.947685],[-3.154758,52.949775],[-3.145388,52.95103],[-3.142392,52.951958],[-3.139897,52.953382],[-3.137228,52.954086],[-3.129461,52.954398],[-3.124935,52.954273],[-3.123482,52.954557],[-3.114175,52.955454],[-3.110548,52.955211],[-3.109386,52.956511],[-3.109458,52.957618],[-3.102679,52.957935],[-3.09936,52.958438],[-3.096726,52.959248],[-3.097477,52.96001],[-3.099829,52.960479],[-3.107494,52.96074],[-3.1107,52.961725],[-3.108809,52.962511],[-3.103932,52.963536],[-3.100783,52.963705],[-3.095761,52.962996],[-3.092149,52.964276],[-3.091376,52.965273],[-3.091683,52.968357],[-3.093602,52.96895],[-3.093735,52.969712],[-3.091386,52.970682],[-3.091237,52.971622],[-3.094507,52.97265],[-3.097255,52.972953],[-3.098747,52.97187],[-3.101659,52.971404],[-3.10549,52.969682],[-3.106981,52.96941],[-3.111281,52.969389],[-3.111666,52.970595],[-3.109732,52.971287],[-3.107957,52.972623],[-3.105179,52.973372],[-3.110631,52.973642],[-3.117455,52.974585],[-3.122289,52.97676],[-3.120275,52.977163],[-3.122065,52.982426],[-3.121383,52.983774],[-3.119741,52.984394],[-3.120552,52.985545],[-3.123128,52.98688],[-3.125323,52.987373],[-3.126545,52.987056],[-3.131248,52.988261],[-3.132933,52.989363],[-3.134487,52.989816],[-3.134997,52.990788],[-3.138739,52.992657],[-3.143101,52.993663],[-3.148766,52.998577],[-3.145855,53.000705],[-3.1451,53.004993],[-3.146985,53.008592],[-3.133509,53.018596],[-3.130839,53.024112],[-3.132611,53.03088],[-3.135059,53.033385],[-3.138658,53.038466],[-3.138378,53.039249],[-3.14196,53.041796],[-3.147791,53.043807],[-3.136726,53.05245],[-3.132766,53.057646],[-3.12923,53.061466],[-3.129932,53.063045],[-3.129516,53.064179],[-3.130007,53.065232],[-3.127948,53.067252],[-3.127363,53.068554],[-3.128649,53.069825],[-3.128632,53.071312],[-3.129617,53.072368]]]},"properties":{"LAD22CD":"W06000004","LAD22NM":"Denbighshire","BNG_E":309843,"BNG_N":355416,"LONG":-3.34761,"LAT":53.08833,"GlobalID":"bc9e8e2b-68b6-443d-9389-6b00ee8e9605"},"id":356}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.091123,53.259454],[-3.093047,53.259075],[-3.094693,53.2569],[-3.096377,53.256991],[-3.094763,53.255377],[-3.092564,53.256],[-3.090784,53.255619],[-3.089538,53.256942],[-3.085956,53.256774],[-3.091123,53.259454]]],[[[-3.085566,53.256643],[-3.089492,53.256727],[-3.091033,53.255311],[-3.092724,53.255505],[-3.094547,53.255072],[-3.095573,53.25547],[-3.098166,53.257978],[-3.100361,53.259542],[-3.102346,53.259729],[-3.103441,53.25888],[-3.10586,53.258329],[-3.109283,53.25789],[-3.108351,53.256781],[-3.106152,53.255936],[-3.10323,53.254185],[-3.101949,53.254462],[-3.102038,53.252995],[-3.10145,53.250938],[-3.100508,53.249864],[-3.097018,53.247782],[-3.093968,53.247468],[-3.092602,53.2483],[-3.087568,53.24793],[-3.090579,53.247154],[-3.078907,53.245743],[-3.074859,53.244244],[-3.073825,53.242003],[-3.075166,53.241084],[-3.074758,53.239431],[-3.076388,53.239688],[-3.076092,53.240482],[-3.076269,53.243379],[-3.078691,53.244811],[-3.079802,53.24504],[-3.086194,53.245635],[-3.086863,53.245038],[-3.094642,53.244896],[-3.083348,53.239007],[-3.071283,53.232818],[-3.065634,53.229484],[-3.060773,53.225287],[-3.059486,53.22359],[-3.057569,53.222826],[-3.05426,53.222372],[-3.048297,53.222121],[-3.043411,53.221389],[-3.040776,53.220507],[-3.025227,53.214572],[-2.934823,53.182334],[-2.933109,53.181961],[-2.930792,53.18192],[-2.921502,53.182636],[-2.920492,53.182914],[-2.922299,53.189293],[-2.925163,53.191046],[-2.929238,53.194291],[-2.935653,53.196491],[-2.937566,53.197859],[-2.943676,53.204026],[-2.94951,53.21128],[-2.966163,53.21869],[-2.977837,53.225394],[-2.984912,53.228471],[-2.992559,53.233015],[-3.016423,53.244122],[-3.025905,53.248456],[-3.036063,53.251806],[-3.048671,53.252209],[-3.069137,53.253005],[-3.074425,53.253707],[-3.080523,53.254944],[-3.082686,53.255673],[-3.083094,53.25581],[-3.085566,53.256643]]],[[[-3.094347,53.261384],[-3.095721,53.260377],[-3.098168,53.259913],[-3.096832,53.257886],[-3.094568,53.257722],[-3.093355,53.259074],[-3.094301,53.259921],[-3.092604,53.260226],[-3.094347,53.261384]]],[[[-3.095396,53.262148],[-3.096282,53.261986],[-3.097499,53.261152],[-3.097821,53.260209],[-3.095853,53.260465],[-3.094447,53.261457],[-3.095396,53.262148]]],[[[-3.101655,53.267224],[-3.102818,53.266413],[-3.107641,53.265429],[-3.111005,53.265844],[-3.112699,53.264709],[-3.112263,53.262665],[-3.106689,53.261599],[-3.107553,53.261227],[-3.106414,53.260209],[-3.10427,53.26054],[-3.098798,53.260037],[-3.097696,53.26115],[-3.096403,53.261994],[-3.095433,53.262175],[-3.097444,53.263643],[-3.101655,53.267224]]],[[[-3.107222,53.271957],[-3.108327,53.271724],[-3.108423,53.270327],[-3.110611,53.268807],[-3.110653,53.267625],[-3.111345,53.266362],[-3.10815,53.266148],[-3.106971,53.265633],[-3.105926,53.266327],[-3.102786,53.266467],[-3.10168,53.267246],[-3.107222,53.271957]]],[[[-2.920387,53.182219],[-2.930972,53.181257],[-2.93383,53.18132],[-2.939201,53.183087],[-2.957089,53.189449],[-2.969542,53.193814],[-2.990591,53.20131],[-2.991389,53.201496],[-3.013727,53.209448],[-3.023634,53.212713],[-3.034045,53.21655],[-3.037863,53.218271],[-3.044511,53.220159],[-3.048829,53.220855],[-3.059105,53.221435],[-3.0588,53.221786],[-3.063246,53.223802],[-3.06434,53.226001],[-3.067239,53.228399],[-3.069319,53.229745],[-3.075402,53.232727],[-3.080589,53.234954],[-3.086548,53.237025],[-3.096213,53.239632],[-3.099318,53.242141],[-3.101423,53.242769],[-3.101939,53.242279],[-3.103963,53.24378],[-3.107143,53.245136],[-3.108451,53.244426],[-3.113512,53.247382],[-3.120107,53.249175],[-3.122887,53.250289],[-3.129835,53.253707],[-3.130111,53.255643],[-3.131744,53.256692],[-3.135334,53.253693],[-3.131581,53.257969],[-3.132648,53.25835],[-3.135056,53.258022],[-3.136033,53.25852],[-3.138406,53.258514],[-3.142742,53.259274],[-3.151535,53.264189],[-3.161557,53.268383],[-3.168723,53.27327],[-3.172591,53.275076],[-3.174499,53.276793],[-3.177114,53.277025],[-3.17727,53.277615],[-3.180517,53.279073],[-3.185572,53.282067],[-3.187575,53.283621],[-3.188086,53.285196],[-3.190472,53.28631],[-3.193306,53.289005],[-3.201219,53.293614],[-3.20786,53.296335],[-3.220297,53.300691],[-3.227212,53.302631],[-3.229043,53.303571],[-3.235654,53.305869],[-3.235452,53.307202],[-3.237664,53.307744],[-3.24483,53.310792],[-3.25283,53.313681],[-3.255907,53.313641],[-3.258583,53.314733],[-3.259914,53.316042],[-3.259467,53.318223],[-3.260962,53.318433],[-3.262829,53.319289],[-3.261306,53.320288],[-3.26278,53.323075],[-3.264048,53.323734],[-3.267521,53.321863],[-3.26895,53.322364],[-3.270654,53.321294],[-3.273218,53.320663],[-3.278375,53.321967],[-3.28358,53.325249],[-3.288109,53.327393],[-3.289054,53.328254],[-3.291477,53.328536],[-3.298327,53.33208],[-3.299797,53.333058],[-3.301542,53.335228],[-3.303765,53.336211],[-3.304483,53.337378],[-3.305123,53.340285],[-3.308069,53.343576],[-3.309643,53.344068],[-3.310056,53.34643],[-3.309748,53.348984],[-3.310731,53.349555],[-3.307983,53.35007],[-3.307371,53.350902],[-3.308212,53.354094],[-3.309601,53.35477],[-3.313942,53.355823],[-3.318631,53.35604],[-3.319956,53.356407],[-3.323337,53.356437],[-3.333334,53.355928],[-3.354465,53.353148],[-3.357061,53.353184],[-3.361107,53.353864],[-3.364198,53.353524],[-3.360669,53.346576],[-3.36902,53.345613],[-3.367504,53.343075],[-3.366808,53.338339],[-3.367659,53.338478],[-3.36818,53.335238],[-3.369144,53.334245],[-3.371391,53.334961],[-3.372896,53.333597],[-3.372784,53.333109],[-3.376886,53.332254],[-3.375288,53.329875],[-3.376249,53.327724],[-3.381594,53.326175],[-3.388347,53.323233],[-3.390464,53.322822],[-3.390676,53.323501],[-3.389801,53.32453],[-3.391035,53.325546],[-3.391814,53.32715],[-3.393699,53.326808],[-3.395875,53.324243],[-3.395966,53.323336],[-3.397019,53.321893],[-3.398077,53.318428],[-3.400253,53.317669],[-3.399373,53.315742],[-3.399864,53.31431],[-3.400599,53.313857],[-3.39762,53.309703],[-3.392351,53.31143],[-3.393527,53.313144],[-3.390967,53.313671],[-3.388278,53.314639],[-3.385368,53.314896],[-3.381308,53.315827],[-3.380381,53.313942],[-3.38718,53.310557],[-3.387964,53.309493],[-3.387082,53.308828],[-3.390856,53.308507],[-3.389766,53.307497],[-3.389567,53.30607],[-3.394047,53.305755],[-3.393091,53.304404],[-3.393878,53.30343],[-3.394341,53.301708],[-3.392339,53.301429],[-3.391959,53.300484],[-3.389301,53.300564],[-3.387336,53.300118],[-3.38641,53.30081],[-3.384095,53.300753],[-3.382178,53.301049],[-3.381439,53.298371],[-3.381762,53.297555],[-3.379709,53.29503],[-3.378922,53.294704],[-3.376639,53.295663],[-3.375663,53.293595],[-3.376702,53.292393],[-3.375131,53.291654],[-3.372004,53.292812],[-3.368832,53.292791],[-3.366882,53.293088],[-3.362301,53.294492],[-3.362016,53.29815],[-3.355755,53.29708],[-3.355537,53.2963],[-3.356129,53.29489],[-3.355655,53.293855],[-3.356233,53.292971],[-3.355881,53.290773],[-3.357166,53.288658],[-3.358397,53.288064],[-3.356769,53.284657],[-3.357034,53.283928],[-3.353979,53.281905],[-3.347438,53.281581],[-3.345438,53.280404],[-3.34477,53.279434],[-3.343196,53.279046],[-3.340261,53.277313],[-3.3349,53.276622],[-3.330631,53.274427],[-3.329798,53.273211],[-3.33278,53.27033],[-3.341199,53.265839],[-3.358085,53.254677],[-3.361755,53.253101],[-3.352891,53.252208],[-3.351062,53.252393],[-3.349289,53.251493],[-3.349078,53.249501],[-3.346835,53.24867],[-3.344362,53.247183],[-3.342993,53.246838],[-3.34169,53.245087],[-3.339057,53.243885],[-3.337571,53.241908],[-3.332921,53.239186],[-3.332715,53.238296],[-3.33366,53.236699],[-3.330062,53.237068],[-3.327221,53.236973],[-3.322604,53.236298],[-3.31565,53.235751],[-3.311481,53.235187],[-3.311202,53.232888],[-3.308191,53.232715],[-3.306877,53.233001],[-3.30444,53.232924],[-3.305445,53.231176],[-3.306666,53.230636],[-3.308248,53.229259],[-3.307299,53.228272],[-3.309225,53.227859],[-3.313985,53.224362],[-3.316944,53.221485],[-3.318688,53.220868],[-3.321587,53.221162],[-3.322379,53.220409],[-3.321011,53.219267],[-3.319155,53.216715],[-3.317778,53.210904],[-3.317085,53.209995],[-3.312889,53.207282],[-3.311491,53.207256],[-3.309111,53.206671],[-3.307247,53.20845],[-3.304216,53.208031],[-3.305243,53.20645],[-3.305523,53.204979],[-3.308934,53.202893],[-3.31103,53.200723],[-3.3093,53.199853],[-3.307403,53.197506],[-3.303213,53.195362],[-3.302029,53.195072],[-3.300412,53.194035],[-3.296427,53.19235],[-3.290353,53.191853],[-3.28972,53.190906],[-3.285531,53.188019],[-3.282191,53.185118],[-3.281831,53.184109],[-3.280122,53.183891],[-3.278248,53.18201],[-3.276224,53.180482],[-3.275135,53.179037],[-3.275975,53.177399],[-3.279252,53.176227],[-3.27901,53.173249],[-3.278071,53.17235],[-3.279946,53.169154],[-3.280978,53.16859],[-3.280296,53.167648],[-3.27657,53.166005],[-3.275394,53.164338],[-3.272662,53.163566],[-3.271147,53.161581],[-3.271709,53.159874],[-3.270804,53.159435],[-3.271206,53.157466],[-3.2651,53.155915],[-3.263693,53.156431],[-3.258681,53.155507],[-3.255994,53.154459],[-3.250758,53.153361],[-3.248996,53.153269],[-3.247382,53.152403],[-3.244152,53.152298],[-3.240866,53.15306],[-3.239978,53.153768],[-3.236431,53.154273],[-3.233014,53.15415],[-3.230324,53.154758],[-3.227648,53.154273],[-3.22557,53.153138],[-3.222134,53.153735],[-3.219473,53.154549],[-3.21734,53.154568],[-3.215843,53.15515],[-3.213875,53.155278],[-3.210971,53.156718],[-3.210262,53.1583],[-3.208226,53.159843],[-3.204215,53.158786],[-3.20306,53.159346],[-3.202031,53.158217],[-3.196173,53.158714],[-3.194974,53.15679],[-3.195775,53.155537],[-3.194269,53.155059],[-3.188844,53.155255],[-3.182346,53.154037],[-3.183802,53.151528],[-3.183045,53.150088],[-3.184173,53.148702],[-3.183791,53.14802],[-3.181339,53.146211],[-3.183206,53.145659],[-3.183151,53.144054],[-3.1859,53.141974],[-3.181117,53.131057],[-3.179312,53.129915],[-3.179081,53.127114],[-3.175792,53.123389],[-3.175739,53.121448],[-3.176762,53.116087],[-3.173741,53.113352],[-3.17251,53.110932],[-3.169928,53.108259],[-3.163351,53.105848],[-3.156912,53.104918],[-3.154493,53.105167],[-3.151332,53.104723],[-3.150001,53.104169],[-3.148419,53.104324],[-3.145908,53.10395],[-3.147258,53.102364],[-3.146903,53.100792],[-3.148165,53.10033],[-3.14784,53.099296],[-3.14917,53.09783],[-3.15037,53.095951],[-3.150124,53.095502],[-3.151836,53.093229],[-3.150854,53.092354],[-3.148321,53.091333],[-3.148218,53.08954],[-3.146876,53.088548],[-3.147962,53.087503],[-3.146017,53.086558],[-3.14737,53.08618],[-3.144512,53.084195],[-3.143009,53.084329],[-3.139889,53.079559],[-3.141179,53.076449],[-3.136814,53.073439],[-3.134529,53.073156],[-3.133168,53.073423],[-3.129617,53.072368],[-3.129233,53.072924],[-3.126268,53.073239],[-3.124042,53.074145],[-3.120994,53.072538],[-3.120262,53.072702],[-3.117709,53.072145],[-3.115415,53.072791],[-3.113527,53.072725],[-3.110239,53.073544],[-3.109912,53.074137],[-3.107356,53.075559],[-3.106753,53.076384],[-3.105373,53.076644],[-3.103676,53.077722],[-3.100855,53.078006],[-3.09895,53.078767],[-3.09725,53.078728],[-3.095099,53.07944],[-3.093289,53.081278],[-3.0865,53.083278],[-3.085119,53.084704],[-3.080079,53.086714],[-3.076844,53.088437],[-3.072583,53.089137],[-3.071341,53.089611],[-3.066326,53.085543],[-3.062824,53.085043],[-3.058711,53.085349],[-3.044414,53.089258],[-3.040836,53.090536],[-3.038674,53.091549],[-3.037635,53.092736],[-3.03871,53.093819],[-3.038376,53.09515],[-3.031696,53.097386],[-3.028952,53.095883],[-3.028316,53.09487],[-3.029099,53.093954],[-3.02756,53.092973],[-3.027162,53.095653],[-3.02754,53.097834],[-3.02869,53.099855],[-3.028522,53.101759],[-3.029148,53.103515],[-3.026508,53.103569],[-3.025029,53.104045],[-3.024018,53.105428],[-3.022015,53.105711],[-3.018677,53.107535],[-3.017597,53.109262],[-3.014809,53.108741],[-3.012887,53.110141],[-3.012427,53.11123],[-3.011269,53.1115],[-3.009806,53.112939],[-3.007629,53.114273],[-3.006159,53.115701],[-3.006418,53.117429],[-3.00539,53.118383],[-3.006009,53.119497],[-3.003437,53.12031],[-3.004529,53.121778],[-3.004497,53.122641],[-3.005327,53.124064],[-3.000834,53.125526],[-2.998004,53.128059],[-2.998057,53.128926],[-2.995412,53.130613],[-2.992782,53.130359],[-2.989624,53.131086],[-2.986514,53.131259],[-2.982496,53.132253],[-2.980875,53.131705],[-2.97253,53.134316],[-2.969949,53.133166],[-2.963813,53.132757],[-2.979498,53.150622],[-2.980364,53.149377],[-2.98265,53.148862],[-2.984565,53.14778],[-2.984984,53.148794],[-2.986404,53.149464],[-2.986397,53.150395],[-2.987699,53.152096],[-2.990426,53.153055],[-2.992929,53.153288],[-2.995088,53.154196],[-2.99306,53.154925],[-2.992274,53.156665],[-2.990507,53.156955],[-2.989957,53.157542],[-2.988124,53.156928],[-2.986666,53.157973],[-2.98464,53.158595],[-2.983756,53.157607],[-2.981492,53.156292],[-2.978913,53.157185],[-2.975198,53.157423],[-2.970926,53.160782],[-2.96837,53.160589],[-2.966263,53.159865],[-2.962841,53.161994],[-2.96122,53.16275],[-2.956358,53.163777],[-2.953479,53.165351],[-2.951026,53.165953],[-2.948907,53.166007],[-2.946553,53.167112],[-2.944041,53.165248],[-2.933907,53.169389],[-2.92784,53.171411],[-2.92659,53.173357],[-2.922851,53.175291],[-2.920956,53.177086],[-2.920319,53.179431],[-2.920387,53.182219]]]]},"properties":{"LAD22CD":"W06000005","LAD22NM":"Flintshire","BNG_E":321134,"BNG_N":369280,"LONG":-3.18248,"LAT":53.21471,"GlobalID":"ee32c8a7-6b96-484d-bac9-e6a9ef01b200"},"id":357}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.726841,52.983273],[-2.728908,52.984427],[-2.733384,52.984292],[-2.73727,52.984734],[-2.740229,52.985677],[-2.743742,52.987147],[-2.745733,52.987128],[-2.748167,52.986632],[-2.750775,52.986878],[-2.753718,52.986156],[-2.758532,52.98613],[-2.75994,52.98642],[-2.761601,52.987486],[-2.761686,52.989452],[-2.761014,52.990962],[-2.763791,52.992765],[-2.764411,52.993548],[-2.766857,52.994675],[-2.770427,52.993968],[-2.772611,52.993922],[-2.773528,52.994709],[-2.778418,52.994096],[-2.779736,52.993382],[-2.781587,52.994222],[-2.781946,52.996283],[-2.784416,52.995041],[-2.785002,52.994189],[-2.786139,52.994124],[-2.787691,52.995301],[-2.789324,52.995776],[-2.790967,52.995303],[-2.794254,52.992878],[-2.792031,52.992054],[-2.792365,52.990914],[-2.794503,52.990766],[-2.795219,52.991309],[-2.797226,52.991292],[-2.798137,52.989473],[-2.799383,52.989684],[-2.801043,52.990944],[-2.8039,52.989996],[-2.803712,52.991458],[-2.807156,52.991886],[-2.810237,52.991756],[-2.810146,52.992755],[-2.815222,52.993115],[-2.820757,52.994426],[-2.822517,52.993513],[-2.824287,52.993362],[-2.827862,52.994373],[-2.829311,52.995384],[-2.832204,52.996548],[-2.835996,52.99715],[-2.834898,52.998658],[-2.836172,53.000632],[-2.836198,53.001578],[-2.838042,53.003041],[-2.838469,53.005228],[-2.839868,53.006948],[-2.840621,53.007223],[-2.840759,53.01042],[-2.838735,53.010179],[-2.838522,53.010946],[-2.841251,53.014315],[-2.843527,53.015395],[-2.844279,53.016494],[-2.844062,53.017668],[-2.846223,53.018848],[-2.847765,53.019038],[-2.85028,53.018058],[-2.851627,53.016988],[-2.858702,53.0199],[-2.858736,53.020769],[-2.861044,53.022849],[-2.859714,53.025687],[-2.860388,53.026428],[-2.860496,53.028554],[-2.859185,53.029942],[-2.859285,53.030546],[-2.856135,53.032982],[-2.855512,53.034539],[-2.856643,53.035983],[-2.855715,53.037256],[-2.858199,53.038063],[-2.858946,53.038941],[-2.861873,53.038604],[-2.866704,53.040563],[-2.861287,53.042563],[-2.861601,53.043825],[-2.86251,53.044204],[-2.864185,53.043323],[-2.866262,53.043637],[-2.866396,53.044433],[-2.864998,53.045561],[-2.869299,53.044533],[-2.870118,53.045361],[-2.868486,53.04593],[-2.865339,53.047965],[-2.863119,53.048623],[-2.863476,53.049611],[-2.863008,53.051634],[-2.864827,53.051838],[-2.865909,53.050273],[-2.867674,53.049628],[-2.86854,53.050612],[-2.867669,53.051314],[-2.866046,53.051552],[-2.866091,53.052736],[-2.862924,53.053337],[-2.861036,53.052049],[-2.859789,53.052727],[-2.859236,53.054165],[-2.860201,53.054769],[-2.86688,53.055166],[-2.867093,53.056741],[-2.865599,53.057272],[-2.862423,53.056573],[-2.860886,53.057325],[-2.862408,53.058525],[-2.865676,53.058748],[-2.86798,53.056901],[-2.870287,53.056858],[-2.871764,53.057484],[-2.872563,53.058708],[-2.86968,53.05994],[-2.868293,53.059554],[-2.865801,53.060709],[-2.864678,53.060783],[-2.862419,53.060114],[-2.861513,53.060774],[-2.863922,53.063262],[-2.866683,53.063253],[-2.869627,53.063767],[-2.870201,53.064799],[-2.865509,53.066021],[-2.867686,53.066919],[-2.869358,53.069744],[-2.872319,53.070331],[-2.876214,53.06898],[-2.878199,53.069491],[-2.878048,53.070681],[-2.875633,53.072339],[-2.87583,53.073582],[-2.880799,53.073955],[-2.881751,53.074594],[-2.881255,53.075535],[-2.87952,53.076251],[-2.879273,53.077874],[-2.87725,53.079198],[-2.875722,53.081522],[-2.879913,53.08358],[-2.891051,53.087511],[-2.89182,53.088222],[-2.891915,53.090001],[-2.893576,53.091552],[-2.89579,53.091856],[-2.900944,53.090834],[-2.901854,53.091672],[-2.902161,53.092808],[-2.901447,53.093455],[-2.899149,53.094116],[-2.8994,53.097925],[-2.897139,53.099006],[-2.894838,53.098814],[-2.893954,53.098108],[-2.895303,53.097016],[-2.897555,53.09704],[-2.89782,53.096415],[-2.896791,53.095215],[-2.893487,53.096242],[-2.890351,53.099668],[-2.887304,53.104422],[-2.887951,53.105757],[-2.89338,53.104177],[-2.89308,53.105791],[-2.89163,53.107611],[-2.891716,53.109395],[-2.889902,53.108938],[-2.887806,53.109274],[-2.886588,53.110859],[-2.883879,53.111343],[-2.884026,53.113771],[-2.88162,53.118256],[-2.880942,53.121375],[-2.882118,53.121779],[-2.884094,53.120651],[-2.885237,53.120443],[-2.8865,53.121384],[-2.887973,53.120713],[-2.888034,53.119821],[-2.891704,53.118749],[-2.892063,53.11797],[-2.895122,53.116492],[-2.895181,53.115015],[-2.897002,53.113994],[-2.899416,53.114046],[-2.903392,53.111798],[-2.906059,53.112253],[-2.906785,53.112808],[-2.909406,53.113098],[-2.910233,53.112639],[-2.913795,53.113671],[-2.91438,53.114334],[-2.917297,53.114794],[-2.917098,53.115261],[-2.919725,53.116071],[-2.919962,53.116802],[-2.921305,53.117294],[-2.920836,53.118424],[-2.923138,53.118103],[-2.923967,53.118582],[-2.928559,53.119826],[-2.929043,53.120329],[-2.931925,53.120094],[-2.93441,53.121486],[-2.937645,53.120854],[-2.940403,53.122393],[-2.942371,53.121392],[-2.94498,53.122278],[-2.945011,53.123193],[-2.946906,53.12727],[-2.947998,53.127812],[-2.95235,53.128592],[-2.955585,53.129943],[-2.958171,53.130409],[-2.960159,53.132483],[-2.963813,53.132757],[-2.969949,53.133166],[-2.97253,53.134316],[-2.980875,53.131705],[-2.982496,53.132253],[-2.986514,53.131259],[-2.989624,53.131086],[-2.992782,53.130359],[-2.995412,53.130613],[-2.998057,53.128926],[-2.998004,53.128059],[-3.000834,53.125526],[-3.005327,53.124064],[-3.004497,53.122641],[-3.004529,53.121778],[-3.003437,53.12031],[-3.006009,53.119497],[-3.00539,53.118383],[-3.006418,53.117429],[-3.006159,53.115701],[-3.007629,53.114273],[-3.009806,53.112939],[-3.011269,53.1115],[-3.012427,53.11123],[-3.012887,53.110141],[-3.014809,53.108741],[-3.017597,53.109262],[-3.018677,53.107535],[-3.022015,53.105711],[-3.024018,53.105428],[-3.025029,53.104045],[-3.026508,53.103569],[-3.029148,53.103515],[-3.028522,53.101759],[-3.02869,53.099855],[-3.02754,53.097834],[-3.027162,53.095653],[-3.02756,53.092973],[-3.029099,53.093954],[-3.028316,53.09487],[-3.028952,53.095883],[-3.031696,53.097386],[-3.038376,53.09515],[-3.03871,53.093819],[-3.037635,53.092736],[-3.038674,53.091549],[-3.040836,53.090536],[-3.044414,53.089258],[-3.058711,53.085349],[-3.062824,53.085043],[-3.066326,53.085543],[-3.071341,53.089611],[-3.072583,53.089137],[-3.076844,53.088437],[-3.080079,53.086714],[-3.085119,53.084704],[-3.0865,53.083278],[-3.093289,53.081278],[-3.095099,53.07944],[-3.09725,53.078728],[-3.09895,53.078767],[-3.100855,53.078006],[-3.103676,53.077722],[-3.105373,53.076644],[-3.106753,53.076384],[-3.107356,53.075559],[-3.109912,53.074137],[-3.110239,53.073544],[-3.113527,53.072725],[-3.115415,53.072791],[-3.117709,53.072145],[-3.120262,53.072702],[-3.120994,53.072538],[-3.124042,53.074145],[-3.126268,53.073239],[-3.129233,53.072924],[-3.129617,53.072368],[-3.128632,53.071312],[-3.128649,53.069825],[-3.127363,53.068554],[-3.127948,53.067252],[-3.130007,53.065232],[-3.129516,53.064179],[-3.129932,53.063045],[-3.12923,53.061466],[-3.132766,53.057646],[-3.136726,53.05245],[-3.147791,53.043807],[-3.14196,53.041796],[-3.138378,53.039249],[-3.138658,53.038466],[-3.135059,53.033385],[-3.132611,53.03088],[-3.130839,53.024112],[-3.133509,53.018596],[-3.146985,53.008592],[-3.1451,53.004993],[-3.145855,53.000705],[-3.148766,52.998577],[-3.143101,52.993663],[-3.138739,52.992657],[-3.134997,52.990788],[-3.134487,52.989816],[-3.132933,52.989363],[-3.131248,52.988261],[-3.126545,52.987056],[-3.125323,52.987373],[-3.123128,52.98688],[-3.120552,52.985545],[-3.119741,52.984394],[-3.121383,52.983774],[-3.122065,52.982426],[-3.120275,52.977163],[-3.122289,52.97676],[-3.117455,52.974585],[-3.110631,52.973642],[-3.105179,52.973372],[-3.107957,52.972623],[-3.109732,52.971287],[-3.111666,52.970595],[-3.111281,52.969389],[-3.106981,52.96941],[-3.10549,52.969682],[-3.101659,52.971404],[-3.098747,52.97187],[-3.097255,52.972953],[-3.094507,52.97265],[-3.091237,52.971622],[-3.091386,52.970682],[-3.093735,52.969712],[-3.093602,52.96895],[-3.091683,52.968357],[-3.091376,52.965273],[-3.092149,52.964276],[-3.095761,52.962996],[-3.100783,52.963705],[-3.103932,52.963536],[-3.108809,52.962511],[-3.1107,52.961725],[-3.107494,52.96074],[-3.099829,52.960479],[-3.097477,52.96001],[-3.096726,52.959248],[-3.09936,52.958438],[-3.102679,52.957935],[-3.109458,52.957618],[-3.109386,52.956511],[-3.110548,52.955211],[-3.114175,52.955454],[-3.123482,52.954557],[-3.124935,52.954273],[-3.129461,52.954398],[-3.137228,52.954086],[-3.139897,52.953382],[-3.142392,52.951958],[-3.145388,52.95103],[-3.154758,52.949775],[-3.161983,52.947685],[-3.161843,52.948536],[-3.166528,52.948393],[-3.172269,52.948706],[-3.191768,52.944775],[-3.197975,52.944206],[-3.221881,52.948648],[-3.229876,52.94984],[-3.234476,52.94981],[-3.237441,52.951013],[-3.23733,52.949446],[-3.239534,52.948537],[-3.244201,52.946951],[-3.250784,52.945788],[-3.275656,52.944273],[-3.290913,52.944312],[-3.297402,52.942967],[-3.307618,52.946249],[-3.314308,52.946801],[-3.32038,52.938765],[-3.324341,52.931844],[-3.326686,52.932398],[-3.332679,52.92806],[-3.338138,52.926945],[-3.34,52.925015],[-3.34826,52.922699],[-3.351874,52.921887],[-3.353316,52.921972],[-3.353715,52.920754],[-3.352743,52.919823],[-3.352168,52.918455],[-3.348876,52.916332],[-3.351704,52.915369],[-3.354391,52.913739],[-3.355908,52.909556],[-3.358627,52.907061],[-3.359411,52.905395],[-3.36338,52.903658],[-3.36937,52.902479],[-3.373085,52.901091],[-3.375525,52.894759],[-3.375015,52.892453],[-3.373583,52.89178],[-3.370734,52.892127],[-3.366154,52.893427],[-3.361029,52.891458],[-3.360493,52.891849],[-3.354005,52.890879],[-3.347748,52.892526],[-3.345651,52.892541],[-3.339248,52.890295],[-3.334986,52.88693],[-3.333212,52.886037],[-3.326749,52.883835],[-3.324745,52.883455],[-3.324484,52.882792],[-3.322092,52.882082],[-3.320015,52.882071],[-3.316545,52.883413],[-3.314038,52.88374],[-3.311121,52.883131],[-3.301451,52.882023],[-3.296804,52.880722],[-3.295874,52.879219],[-3.297756,52.876976],[-3.295126,52.874899],[-3.291346,52.870842],[-3.286376,52.871312],[-3.281324,52.870098],[-3.277239,52.868553],[-3.274349,52.867065],[-3.273006,52.867282],[-3.26675,52.867093],[-3.261803,52.866609],[-3.259387,52.86746],[-3.259109,52.868327],[-3.253899,52.867417],[-3.250417,52.867864],[-3.246685,52.868028],[-3.246043,52.867294],[-3.242922,52.868146],[-3.239552,52.868305],[-3.236153,52.867554],[-3.233385,52.86769],[-3.233346,52.870382],[-3.230812,52.872498],[-3.229131,52.873009],[-3.228071,52.873985],[-3.228096,52.87555],[-3.225805,52.875241],[-3.216472,52.876822],[-3.215882,52.878787],[-3.217292,52.878372],[-3.218261,52.879432],[-3.215292,52.880803],[-3.216691,52.88169],[-3.215105,52.885005],[-3.215705,52.88686],[-3.211829,52.88883],[-3.20678,52.890725],[-3.205052,52.892506],[-3.202028,52.892381],[-3.20064,52.891482],[-3.197028,52.890837],[-3.193627,52.893949],[-3.190499,52.894644],[-3.187779,52.894703],[-3.186274,52.896152],[-3.183708,52.89611],[-3.183579,52.898119],[-3.178506,52.897743],[-3.177679,52.898377],[-3.176295,52.900909],[-3.174382,52.901576],[-3.161073,52.898983],[-3.156729,52.898548],[-3.154839,52.898093],[-3.155238,52.897505],[-3.152261,52.896399],[-3.151262,52.895093],[-3.150963,52.893126],[-3.148936,52.891651],[-3.147505,52.890175],[-3.144695,52.892997],[-3.137518,52.894917],[-3.133226,52.89514],[-3.130281,52.894339],[-3.126656,52.894347],[-3.124624,52.894751],[-3.12333,52.895377],[-3.121869,52.895447],[-3.115335,52.894606],[-3.113813,52.895329],[-3.116894,52.899693],[-3.114696,52.904532],[-3.112755,52.906367],[-3.113304,52.9092],[-3.112912,52.911497],[-3.109577,52.918444],[-3.108278,52.920291],[-3.105859,52.921522],[-3.103141,52.924022],[-3.101793,52.926142],[-3.099734,52.928007],[-3.095953,52.930282],[-3.094232,52.929681],[-3.090844,52.929252],[-3.088289,52.929385],[-3.085742,52.928518],[-3.084357,52.926591],[-3.082553,52.926689],[-3.080775,52.926136],[-3.078374,52.925954],[-3.076513,52.925479],[-3.073017,52.925999],[-3.070194,52.92679],[-3.066014,52.926276],[-3.063874,52.926349],[-3.063049,52.926901],[-3.061514,52.929108],[-3.059922,52.929279],[-3.056418,52.928026],[-3.054846,52.92903],[-3.052181,52.929337],[-3.047964,52.927869],[-3.046711,52.928024],[-3.04564,52.929145],[-3.043386,52.928276],[-3.040839,52.927936],[-3.034875,52.929571],[-3.033848,52.930408],[-3.031406,52.931394],[-3.031076,52.933798],[-3.028996,52.93436],[-3.029236,52.935547],[-3.02845,52.936714],[-3.026502,52.936042],[-3.023874,52.936458],[-3.025629,52.937316],[-3.025595,52.93824],[-3.023023,52.940698],[-3.024028,52.942361],[-3.021983,52.943258],[-3.020907,52.943296],[-3.021156,52.944603],[-3.019227,52.945033],[-3.02007,52.945959],[-3.018373,52.947066],[-3.016911,52.947117],[-3.017049,52.948697],[-3.014519,52.948215],[-3.01325,52.948726],[-3.011395,52.952002],[-3.009856,52.956036],[-3.008614,52.956591],[-3.005066,52.957068],[-3.003544,52.957952],[-2.99754,52.958334],[-2.993799,52.95812],[-2.990395,52.959788],[-2.988383,52.959026],[-2.985925,52.958707],[-2.982023,52.959198],[-2.979863,52.96194],[-2.979494,52.965211],[-2.977404,52.967265],[-2.97477,52.968952],[-2.968487,52.964176],[-2.969467,52.962844],[-2.971187,52.962],[-2.972828,52.960462],[-2.971549,52.959035],[-2.968935,52.959055],[-2.96727,52.958345],[-2.966224,52.957385],[-2.965661,52.956112],[-2.964058,52.956388],[-2.962709,52.955742],[-2.962401,52.953619],[-2.960123,52.95236],[-2.959814,52.95117],[-2.956818,52.950009],[-2.955732,52.949115],[-2.951465,52.947594],[-2.950852,52.946921],[-2.948827,52.946772],[-2.948606,52.946037],[-2.943286,52.944815],[-2.940706,52.943376],[-2.937236,52.942586],[-2.934965,52.941806],[-2.934326,52.941083],[-2.932465,52.940574],[-2.931439,52.939577],[-2.93001,52.939386],[-2.928889,52.938679],[-2.927286,52.938794],[-2.927446,52.941882],[-2.924637,52.942344],[-2.920278,52.943395],[-2.91885,52.943567],[-2.914158,52.942412],[-2.910912,52.942387],[-2.908188,52.942085],[-2.904937,52.943978],[-2.902937,52.9444],[-2.901388,52.946571],[-2.900864,52.948197],[-2.898292,52.950275],[-2.896476,52.95092],[-2.893169,52.951192],[-2.890308,52.950455],[-2.887432,52.95253],[-2.886047,52.94838],[-2.883662,52.946669],[-2.871571,52.945262],[-2.869801,52.944771],[-2.866856,52.945385],[-2.864282,52.945008],[-2.863784,52.944622],[-2.861282,52.944676],[-2.860392,52.944344],[-2.854839,52.943725],[-2.853077,52.943889],[-2.849074,52.944919],[-2.843197,52.942193],[-2.841015,52.942624],[-2.840219,52.941921],[-2.840613,52.939074],[-2.841852,52.938048],[-2.839794,52.933741],[-2.839048,52.933495],[-2.838496,52.932184],[-2.835873,52.932157],[-2.835534,52.931092],[-2.834446,52.930904],[-2.834769,52.929828],[-2.824038,52.922838],[-2.821229,52.919138],[-2.819096,52.91888],[-2.817957,52.917645],[-2.813026,52.914941],[-2.812386,52.914157],[-2.812312,52.912677],[-2.812976,52.909563],[-2.810243,52.90766],[-2.807254,52.906582],[-2.804285,52.903262],[-2.801994,52.899904],[-2.80144,52.896763],[-2.800469,52.896658],[-2.800467,52.895515],[-2.798848,52.895759],[-2.794261,52.897344],[-2.792732,52.8994],[-2.793188,52.901221],[-2.781661,52.9087],[-2.781387,52.909238],[-2.778518,52.909976],[-2.77211,52.914266],[-2.755327,52.924628],[-2.744573,52.924437],[-2.728542,52.925178],[-2.726688,52.927729],[-2.725919,52.929976],[-2.727054,52.93431],[-2.726516,52.937968],[-2.727014,52.939801],[-2.725605,52.940542],[-2.726059,52.945729],[-2.728163,52.946992],[-2.727177,52.949051],[-2.727875,52.953626],[-2.724176,52.956458],[-2.724697,52.957819],[-2.726679,52.958555],[-2.727396,52.95932],[-2.728088,52.961952],[-2.726823,52.963396],[-2.726691,52.964775],[-2.728065,52.966776],[-2.732884,52.96755],[-2.735294,52.969946],[-2.733287,52.97154],[-2.73254,52.972813],[-2.730728,52.974851],[-2.73175,52.975597],[-2.73208,52.976955],[-2.729305,52.978731],[-2.729577,52.979723],[-2.727992,52.980137],[-2.726588,52.981778],[-2.726841,52.983273]]]},"properties":{"LAD22CD":"W06000006","LAD22NM":"Wrexham","BNG_E":333523,"BNG_N":345387,"LONG":-2.99203,"LAT":53.00167,"GlobalID":"7ce5a3d9-b05f-4c20-9ec7-04b31f09fb83"},"id":358}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.643318,52.076651],[-4.644289,52.077712],[-4.646257,52.07789],[-4.646245,52.077747],[-4.644303,52.076709],[-4.643318,52.076651]]],[[[-4.647614,52.077671],[-4.647359,52.078628],[-4.64488,52.078735],[-4.644525,52.079551],[-4.648992,52.079823],[-4.654477,52.081166],[-4.657822,52.081258],[-4.659742,52.0804],[-4.661702,52.080299],[-4.662774,52.080841],[-4.665752,52.081193],[-4.667772,52.081885],[-4.670959,52.08232],[-4.672872,52.082017],[-4.672574,52.081062],[-4.670259,52.081111],[-4.669679,52.08037],[-4.671197,52.079809],[-4.672305,52.078846],[-4.670014,52.076687],[-4.669392,52.075378],[-4.670498,52.073772],[-4.673592,52.072349],[-4.675593,52.072402],[-4.677535,52.071804],[-4.678276,52.071099],[-4.680049,52.070484],[-4.682552,52.070392],[-4.682026,52.068064],[-4.680282,52.06685],[-4.681356,52.064881],[-4.680338,52.06372],[-4.678912,52.064171],[-4.677561,52.063465],[-4.673337,52.062529],[-4.672209,52.06107],[-4.669691,52.05967],[-4.668629,52.058033],[-4.666929,52.057538],[-4.66492,52.057808],[-4.664348,52.058822],[-4.663218,52.059243],[-4.662708,52.060256],[-4.660927,52.061265],[-4.657305,52.061916],[-4.656548,52.062471],[-4.65541,52.064282],[-4.655523,52.066604],[-4.654383,52.067671],[-4.65421,52.069108],[-4.652303,52.070119],[-4.65207,52.071225],[-4.650289,52.071741],[-4.651918,52.075067],[-4.65033,52.076615],[-4.649422,52.075436],[-4.647888,52.075858],[-4.647319,52.07665],[-4.647293,52.077201],[-4.647614,52.077671]]],[[[-4.686508,52.132765],[-4.68713,52.133566],[-4.688723,52.134139],[-4.691335,52.132283],[-4.695996,52.131109],[-4.692956,52.130567],[-4.692912,52.130155],[-4.688573,52.130367],[-4.686654,52.130889],[-4.685935,52.132029],[-4.686508,52.132765]]],[[[-3.994978,52.526791],[-3.996539,52.527025],[-3.993205,52.524214],[-3.992476,52.524356],[-3.992809,52.5248],[-3.994978,52.526791]]],[[[-3.99719,52.528775],[-3.9981,52.528432],[-3.99659,52.527142],[-3.995807,52.527509],[-3.99719,52.528775]]],[[[-3.906226,52.560798],[-3.908605,52.56038],[-3.910155,52.561334],[-3.910937,52.561126],[-3.913641,52.56242],[-3.917623,52.560791],[-3.925876,52.560769],[-3.925443,52.558762],[-3.926608,52.555068],[-3.927553,52.554216],[-3.932684,52.552667],[-3.934658,52.55257],[-3.936651,52.553435],[-3.936833,52.554486],[-3.939091,52.555811],[-3.941632,52.557955],[-3.943095,52.558226],[-3.945816,52.557917],[-3.952493,52.556386],[-3.950922,52.555063],[-3.951029,52.554272],[-3.953116,52.553233],[-3.952242,52.555216],[-3.953858,52.556257],[-3.954827,52.55544],[-3.955965,52.555401],[-3.955941,52.554042],[-3.959107,52.552572],[-3.961272,52.549974],[-3.963255,52.549217],[-3.965886,52.548927],[-3.965448,52.544942],[-3.968027,52.544384],[-3.969564,52.542487],[-3.971601,52.540884],[-3.975994,52.539498],[-3.976488,52.538717],[-3.978712,52.538272],[-3.984473,52.53626],[-3.991431,52.53614],[-3.995974,52.535352],[-3.997039,52.534839],[-3.999108,52.532615],[-3.997907,52.531064],[-3.999141,52.530323],[-3.999271,52.529506],[-3.998196,52.528507],[-3.997299,52.528856],[-3.997041,52.528728],[-3.98842,52.520871],[-3.992127,52.524161],[-3.992626,52.52363],[-3.998622,52.528473],[-3.999918,52.529175],[-3.999985,52.530045],[-3.999074,52.531605],[-4.001469,52.532773],[-4.002732,52.532757],[-4.006423,52.531003],[-4.008522,52.529187],[-4.014261,52.526455],[-4.018726,52.526353],[-4.020009,52.525514],[-4.02033,52.523775],[-4.022958,52.523379],[-4.026764,52.524263],[-4.031006,52.524066],[-4.032438,52.523432],[-4.037529,52.522538],[-4.039984,52.52266],[-4.03992,52.519806],[-4.040236,52.51904],[-4.039616,52.511013],[-4.039575,52.501253],[-4.039352,52.488802],[-4.040568,52.516461],[-4.040211,52.517302],[-4.041528,52.524937],[-4.043127,52.525578],[-4.044875,52.525772],[-4.045593,52.526635],[-4.049416,52.528112],[-4.05096,52.529099],[-4.051384,52.530381],[-4.050599,52.531381],[-4.051767,52.534818],[-4.052551,52.534752],[-4.055348,52.533533],[-4.058114,52.530917],[-4.058846,52.528792],[-4.05893,52.522065],[-4.05684,52.516334],[-4.056311,52.512199],[-4.054756,52.507067],[-4.052702,52.496938],[-4.052953,52.495041],[-4.05199,52.490411],[-4.052439,52.490107],[-4.051813,52.485278],[-4.051898,52.481703],[-4.052946,52.479658],[-4.056868,52.478562],[-4.058101,52.478687],[-4.06197,52.47661],[-4.061828,52.474901],[-4.063136,52.473826],[-4.064397,52.471545],[-4.067153,52.470236],[-4.068457,52.46907],[-4.069621,52.464855],[-4.071055,52.462665],[-4.072049,52.46013],[-4.074111,52.457201],[-4.075872,52.451955],[-4.077357,52.450932],[-4.08027,52.444016],[-4.080723,52.442522],[-4.081917,52.441092],[-4.081629,52.43951],[-4.082416,52.438595],[-4.080507,52.435661],[-4.079564,52.432042],[-4.081847,52.430636],[-4.084267,52.426692],[-4.085496,52.425939],[-4.085423,52.424145],[-4.086151,52.424013],[-4.084684,52.420927],[-4.085245,52.419409],[-4.085228,52.417369],[-4.087271,52.415607],[-4.088384,52.415415],[-4.089622,52.414182],[-4.091794,52.413997],[-4.089412,52.410205],[-4.087993,52.411513],[-4.086645,52.411047],[-4.086395,52.409862],[-4.088148,52.408661],[-4.088875,52.40764],[-4.088743,52.405691],[-4.090508,52.405894],[-4.089137,52.400807],[-4.089415,52.398902],[-4.091008,52.396842],[-4.092754,52.396253],[-4.09572,52.393519],[-4.100533,52.385784],[-4.102424,52.384002],[-4.102723,52.38299],[-4.108196,52.378071],[-4.109675,52.37546],[-4.110928,52.374192],[-4.111102,52.370892],[-4.111643,52.369371],[-4.113703,52.367803],[-4.115918,52.365287],[-4.118183,52.361323],[-4.118385,52.358185],[-4.119268,52.356663],[-4.119757,52.353608],[-4.121288,52.35089],[-4.122985,52.349033],[-4.12295,52.346854],[-4.123978,52.345082],[-4.12413,52.343913],[-4.125914,52.342247],[-4.1254,52.341682],[-4.127109,52.340212],[-4.127455,52.338879],[-4.130276,52.338003],[-4.130808,52.337115],[-4.134662,52.334277],[-4.135097,52.332203],[-4.136528,52.331456],[-4.135976,52.330755],[-4.137812,52.32859],[-4.137508,52.326306],[-4.143104,52.319986],[-4.145004,52.318922],[-4.145616,52.317815],[-4.148627,52.316798],[-4.14994,52.315726],[-4.152599,52.312082],[-4.156702,52.308235],[-4.158891,52.307125],[-4.160395,52.307209],[-4.162524,52.306084],[-4.165605,52.300045],[-4.168135,52.296996],[-4.170363,52.29528],[-4.17339,52.293664],[-4.175709,52.292943],[-4.179332,52.292559],[-4.1824,52.291572],[-4.1841,52.290066],[-4.184611,52.287932],[-4.186269,52.286324],[-4.187129,52.283866],[-4.189204,52.280234],[-4.192912,52.276617],[-4.195553,52.275759],[-4.199368,52.273309],[-4.202611,52.267389],[-4.207514,52.263659],[-4.210716,52.26251],[-4.213088,52.262085],[-4.217348,52.259508],[-4.220761,52.25827],[-4.226818,52.255162],[-4.22926,52.254456],[-4.231215,52.252908],[-4.233739,52.251549],[-4.2384,52.249868],[-4.243871,52.249171],[-4.246192,52.248585],[-4.253439,52.248542],[-4.255898,52.248042],[-4.259429,52.246321],[-4.261076,52.245939],[-4.263985,52.243722],[-4.261654,52.242478],[-4.266177,52.242591],[-4.269392,52.239474],[-4.273371,52.239183],[-4.273773,52.238678],[-4.278914,52.235834],[-4.281771,52.2336],[-4.287609,52.231566],[-4.292696,52.228037],[-4.296179,52.227856],[-4.296769,52.227008],[-4.300312,52.225422],[-4.303413,52.223265],[-4.306309,52.222319],[-4.308536,52.220636],[-4.314231,52.217922],[-4.324967,52.213614],[-4.327317,52.213025],[-4.332376,52.212877],[-4.333881,52.213261],[-4.334015,52.214348],[-4.336412,52.214321],[-4.339009,52.212554],[-4.342294,52.211042],[-4.344997,52.210322],[-4.348307,52.209964],[-4.350933,52.210017],[-4.355007,52.210756],[-4.356871,52.211834],[-4.357838,52.213027],[-4.357131,52.213699],[-4.357875,52.214483],[-4.357733,52.215475],[-4.359426,52.215991],[-4.361101,52.218375],[-4.364703,52.218831],[-4.368141,52.217517],[-4.371851,52.216893],[-4.373008,52.217147],[-4.373407,52.216086],[-4.376719,52.215406],[-4.378858,52.214484],[-4.379618,52.213068],[-4.382286,52.210627],[-4.382718,52.209034],[-4.384198,52.20735],[-4.386303,52.207249],[-4.388559,52.206407],[-4.389007,52.205215],[-4.393139,52.203572],[-4.394835,52.201925],[-4.395284,52.200966],[-4.396485,52.200409],[-4.39755,52.19841],[-4.399286,52.198292],[-4.40154,52.196806],[-4.402652,52.194847],[-4.40508,52.194963],[-4.406523,52.192659],[-4.407519,52.191606],[-4.408663,52.192258],[-4.410508,52.191997],[-4.412178,52.190204],[-4.416266,52.189028],[-4.418154,52.187674],[-4.418929,52.186122],[-4.423119,52.182799],[-4.424456,52.181405],[-4.42569,52.180928],[-4.428928,52.178185],[-4.432934,52.176303],[-4.436861,52.174901],[-4.441485,52.17423],[-4.441954,52.173192],[-4.443306,52.171925],[-4.444809,52.171157],[-4.444813,52.17005],[-4.446248,52.169637],[-4.448415,52.170083],[-4.450544,52.169175],[-4.451609,52.169519],[-4.453797,52.168457],[-4.454233,52.167648],[-4.455985,52.167558],[-4.456578,52.168124],[-4.459641,52.167349],[-4.465028,52.168522],[-4.465465,52.169801],[-4.46657,52.17031],[-4.46959,52.169642],[-4.468882,52.16853],[-4.467316,52.168774],[-4.467161,52.166689],[-4.468169,52.165881],[-4.468872,52.163328],[-4.471416,52.161407],[-4.470911,52.16034],[-4.472425,52.159907],[-4.473147,52.160348],[-4.474678,52.159471],[-4.477387,52.159136],[-4.478114,52.15801],[-4.481215,52.157082],[-4.480583,52.156024],[-4.481495,52.155468],[-4.484019,52.155237],[-4.484817,52.154813],[-4.485048,52.153549],[-4.48632,52.15323],[-4.48815,52.153752],[-4.489157,52.151794],[-4.49049,52.151393],[-4.490468,52.150077],[-4.492146,52.147481],[-4.494779,52.146344],[-4.494992,52.145592],[-4.496988,52.144018],[-4.505488,52.139941],[-4.508303,52.138983],[-4.511039,52.138536],[-4.512619,52.137667],[-4.516531,52.136405],[-4.516664,52.135765],[-4.518605,52.134987],[-4.523086,52.134916],[-4.524922,52.13532],[-4.529473,52.13465],[-4.530579,52.135025],[-4.536137,52.134552],[-4.539865,52.134807],[-4.542745,52.135908],[-4.544337,52.135542],[-4.543876,52.134063],[-4.545585,52.133294],[-4.545973,52.134929],[-4.54818,52.135115],[-4.547913,52.135714],[-4.548993,52.136554],[-4.548882,52.137393],[-4.550667,52.138817],[-4.553919,52.13907],[-4.555154,52.138749],[-4.55814,52.140682],[-4.55707,52.14168],[-4.557399,52.142866],[-4.562073,52.144281],[-4.565388,52.144088],[-4.567109,52.144511],[-4.569245,52.144418],[-4.571895,52.143291],[-4.573305,52.143572],[-4.575709,52.143113],[-4.577446,52.140691],[-4.580994,52.139838],[-4.583178,52.138966],[-4.582814,52.137975],[-4.584876,52.138246],[-4.585874,52.137737],[-4.59021,52.137655],[-4.591677,52.138202],[-4.593286,52.137742],[-4.593754,52.138562],[-4.595366,52.138676],[-4.599822,52.138422],[-4.602403,52.139115],[-4.60293,52.139673],[-4.605624,52.140352],[-4.60726,52.139726],[-4.611306,52.139411],[-4.613331,52.138674],[-4.615747,52.13834],[-4.617756,52.139063],[-4.619056,52.138008],[-4.622977,52.138592],[-4.625935,52.138784],[-4.627133,52.137838],[-4.628287,52.138808],[-4.630344,52.138851],[-4.63116,52.138288],[-4.632897,52.138819],[-4.636734,52.138692],[-4.640501,52.138103],[-4.640768,52.138481],[-4.64336,52.138126],[-4.644308,52.137303],[-4.64338,52.136598],[-4.64093,52.136301],[-4.64172,52.135241],[-4.644253,52.133959],[-4.646501,52.133458],[-4.648014,52.133461],[-4.650043,52.134231],[-4.652326,52.133659],[-4.653849,52.134343],[-4.656324,52.133886],[-4.658807,52.134142],[-4.660433,52.133475],[-4.661812,52.132291],[-4.662939,52.13253],[-4.664745,52.131838],[-4.670486,52.131612],[-4.671162,52.131064],[-4.670581,52.130116],[-4.672195,52.129822],[-4.672374,52.128953],[-4.673911,52.128733],[-4.675905,52.129059],[-4.678185,52.128313],[-4.680769,52.128378],[-4.682393,52.129358],[-4.683842,52.128824],[-4.685429,52.130078],[-4.687512,52.1287],[-4.687227,52.125922],[-4.688582,52.123766],[-4.68924,52.121365],[-4.691873,52.119482],[-4.690219,52.118571],[-4.68737,52.116484],[-4.687538,52.114179],[-4.686058,52.112707],[-4.685014,52.110348],[-4.684945,52.109373],[-4.686048,52.107569],[-4.687626,52.106574],[-4.688374,52.104138],[-4.686203,52.104588],[-4.682154,52.104743],[-4.679587,52.103841],[-4.675688,52.10181],[-4.674772,52.100434],[-4.675282,52.095876],[-4.674802,52.094562],[-4.675427,52.093107],[-4.678123,52.090697],[-4.677724,52.088979],[-4.678237,52.087892],[-4.679236,52.087238],[-4.680987,52.085145],[-4.675787,52.083084],[-4.672761,52.083549],[-4.668713,52.083248],[-4.661261,52.081002],[-4.660609,52.080953],[-4.657524,52.082053],[-4.655404,52.082],[-4.653111,52.082504],[-4.650858,52.082375],[-4.647372,52.081506],[-4.646308,52.080817],[-4.643373,52.08019],[-4.64223,52.079531],[-4.641363,52.07832],[-4.641992,52.074638],[-4.63937,52.072888],[-4.638464,52.07188],[-4.637888,52.069863],[-4.636,52.069029],[-4.636642,52.068171],[-4.641146,52.066835],[-4.642257,52.065868],[-4.640224,52.064418],[-4.640102,52.062976],[-4.636945,52.060452],[-4.635682,52.059771],[-4.634437,52.058273],[-4.632016,52.056972],[-4.631187,52.055961],[-4.629768,52.055989],[-4.624667,52.054497],[-4.620523,52.055917],[-4.615373,52.057057],[-4.61303,52.056686],[-4.611315,52.056932],[-4.609877,52.057697],[-4.60888,52.058987],[-4.609318,52.060805],[-4.608124,52.062097],[-4.602553,52.062076],[-4.595581,52.062649],[-4.591717,52.062018],[-4.589504,52.06113],[-4.585308,52.061331],[-4.584752,52.059529],[-4.58395,52.058721],[-4.581294,52.0579],[-4.575557,52.057376],[-4.57346,52.058407],[-4.570259,52.058869],[-4.568634,52.058336],[-4.565892,52.056842],[-4.565754,52.054608],[-4.5633,52.050955],[-4.563016,52.049075],[-4.561331,52.045533],[-4.559755,52.043726],[-4.555372,52.044237],[-4.551177,52.044266],[-4.549315,52.043044],[-4.547682,52.044055],[-4.544928,52.044244],[-4.543307,52.045537],[-4.542838,52.04646],[-4.544972,52.047357],[-4.545192,52.049718],[-4.541077,52.052126],[-4.540676,52.051975],[-4.540011,52.049635],[-4.540149,52.047617],[-4.539626,52.04658],[-4.537725,52.045039],[-4.535623,52.044361],[-4.534207,52.044372],[-4.532404,52.045623],[-4.528928,52.046115],[-4.526955,52.045362],[-4.523354,52.045743],[-4.520969,52.045692],[-4.515435,52.047051],[-4.509304,52.043816],[-4.5066,52.044463],[-4.503461,52.04432],[-4.502761,52.042829],[-4.50196,52.042586],[-4.499713,52.043239],[-4.50024,52.045085],[-4.498177,52.044317],[-4.495168,52.045063],[-4.493012,52.045898],[-4.491631,52.047212],[-4.486942,52.048814],[-4.485545,52.04692],[-4.482672,52.047377],[-4.481025,52.047014],[-4.481756,52.045622],[-4.481633,52.044029],[-4.480808,52.043501],[-4.478164,52.042826],[-4.476961,52.041581],[-4.476693,52.040251],[-4.47495,52.039029],[-4.470867,52.040221],[-4.470317,52.040788],[-4.461356,52.039426],[-4.461052,52.038688],[-4.465646,52.038655],[-4.466854,52.037629],[-4.463655,52.036537],[-4.459986,52.037047],[-4.456429,52.038203],[-4.455462,52.040223],[-4.453023,52.041668],[-4.452186,52.042917],[-4.450869,52.043702],[-4.448732,52.044145],[-4.446078,52.04406],[-4.444756,52.042151],[-4.443713,52.041808],[-4.44065,52.041898],[-4.439268,52.043034],[-4.43756,52.043616],[-4.434761,52.043504],[-4.431511,52.042527],[-4.429257,52.040788],[-4.425457,52.041138],[-4.423279,52.039556],[-4.419714,52.038353],[-4.418126,52.038598],[-4.41503,52.039804],[-4.413271,52.041321],[-4.411101,52.041837],[-4.411336,52.040232],[-4.410476,52.038506],[-4.407885,52.038354],[-4.405377,52.037803],[-4.402309,52.038804],[-4.401599,52.037291],[-4.401943,52.03511],[-4.398842,52.034635],[-4.395737,52.034615],[-4.391542,52.0362],[-4.390639,52.036958],[-4.387821,52.037575],[-4.386154,52.038827],[-4.385523,52.039873],[-4.383252,52.039658],[-4.38272,52.03776],[-4.381415,52.036686],[-4.379793,52.036545],[-4.376542,52.037174],[-4.373882,52.037065],[-4.371218,52.035363],[-4.367914,52.03555],[-4.365325,52.034644],[-4.363548,52.032778],[-4.366012,52.029679],[-4.365795,52.028613],[-4.361988,52.027745],[-4.359184,52.028642],[-4.356657,52.028653],[-4.352351,52.02768],[-4.351946,52.026948],[-4.349944,52.026996],[-4.349274,52.027982],[-4.347407,52.029167],[-4.346431,52.030995],[-4.344314,52.031608],[-4.338162,52.032152],[-4.336681,52.035345],[-4.336198,52.037867],[-4.335337,52.038899],[-4.334829,52.041274],[-4.332557,52.041353],[-4.330241,52.037635],[-4.326949,52.03757],[-4.322884,52.038303],[-4.318393,52.037216],[-4.316665,52.037201],[-4.310396,52.039288],[-4.30654,52.038492],[-4.30446,52.039359],[-4.306505,52.042718],[-4.305943,52.045381],[-4.303334,52.046301],[-4.30279,52.049342],[-4.301072,52.051643],[-4.298285,52.052241],[-4.292857,52.052395],[-4.291445,52.051738],[-4.288967,52.052785],[-4.287102,52.052071],[-4.285425,52.050195],[-4.287201,52.049294],[-4.288059,52.048136],[-4.28999,52.046876],[-4.290755,52.043876],[-4.28672,52.042367],[-4.282498,52.03981],[-4.277055,52.039712],[-4.275393,52.038289],[-4.272601,52.038167],[-4.273444,52.039548],[-4.272099,52.040322],[-4.265806,52.038839],[-4.263323,52.03814],[-4.261315,52.039641],[-4.258562,52.039448],[-4.255037,52.037739],[-4.254082,52.037884],[-4.251182,52.039354],[-4.249042,52.03914],[-4.246345,52.038015],[-4.244802,52.038508],[-4.242416,52.040654],[-4.24087,52.04098],[-4.238564,52.039594],[-4.235195,52.038254],[-4.233595,52.038402],[-4.229971,52.039772],[-4.231164,52.041214],[-4.229601,52.043402],[-4.230605,52.046085],[-4.230405,52.048127],[-4.228269,52.049298],[-4.225641,52.049819],[-4.223458,52.048677],[-4.221696,52.048733],[-4.221806,52.049978],[-4.220147,52.051502],[-4.219229,52.051705],[-4.217152,52.05089],[-4.214235,52.051228],[-4.213908,52.052101],[-4.21426,52.054188],[-4.213164,52.058032],[-4.20928,52.056859],[-4.206947,52.057546],[-4.205384,52.058646],[-4.204303,52.060987],[-4.20602,52.061487],[-4.205844,52.062573],[-4.202787,52.0635],[-4.197076,52.064915],[-4.196018,52.064398],[-4.196473,52.063659],[-4.195375,52.060388],[-4.19294,52.059325],[-4.191123,52.05939],[-4.188949,52.06028],[-4.186165,52.060448],[-4.184869,52.060985],[-4.18422,52.062751],[-4.182612,52.063446],[-4.17981,52.062455],[-4.180593,52.063906],[-4.178825,52.06349],[-4.176227,52.063506],[-4.173882,52.064096],[-4.172072,52.065008],[-4.172531,52.066922],[-4.171488,52.067739],[-4.167366,52.067064],[-4.164156,52.068153],[-4.161977,52.070409],[-4.161681,52.071524],[-4.163641,52.072952],[-4.166487,52.074165],[-4.165918,52.074948],[-4.161266,52.075766],[-4.161455,52.077581],[-4.159933,52.078573],[-4.159319,52.080339],[-4.158417,52.081296],[-4.156681,52.080525],[-4.153876,52.080163],[-4.153049,52.079444],[-4.150719,52.080811],[-4.148662,52.080327],[-4.147398,52.080614],[-4.147269,52.08187],[-4.15297,52.082414],[-4.156208,52.083619],[-4.158899,52.085661],[-4.158674,52.086941],[-4.156073,52.086278],[-4.15458,52.086369],[-4.152707,52.088661],[-4.149403,52.089937],[-4.14436,52.094111],[-4.140486,52.094268],[-4.137128,52.095737],[-4.133985,52.09549],[-4.13074,52.093763],[-4.128923,52.093833],[-4.128245,52.093119],[-4.128265,52.091267],[-4.126974,52.091052],[-4.125515,52.091835],[-4.126381,52.092723],[-4.124311,52.093288],[-4.12081,52.093491],[-4.119617,52.092193],[-4.117818,52.093289],[-4.119487,52.095987],[-4.117791,52.096928],[-4.116924,52.096004],[-4.114024,52.095857],[-4.111688,52.096915],[-4.109123,52.096065],[-4.107215,52.09622],[-4.105007,52.09599],[-4.104779,52.097164],[-4.103342,52.09778],[-4.102331,52.096922],[-4.100055,52.096061],[-4.099382,52.097181],[-4.099762,52.098035],[-4.098013,52.098338],[-4.097401,52.09914],[-4.093801,52.10083],[-4.093166,52.099778],[-4.092047,52.099614],[-4.091005,52.101068],[-4.092809,52.102478],[-4.087766,52.10519],[-4.08484,52.104215],[-4.084183,52.102877],[-4.081471,52.103031],[-4.083142,52.104282],[-4.082855,52.105079],[-4.079311,52.106147],[-4.077023,52.105337],[-4.0753,52.107213],[-4.077826,52.107608],[-4.078815,52.108644],[-4.076577,52.109311],[-4.075602,52.108263],[-4.072854,52.10888],[-4.070849,52.108582],[-4.070008,52.106996],[-4.067532,52.108424],[-4.065445,52.110329],[-4.062948,52.11081],[-4.060867,52.1122],[-4.059724,52.113628],[-4.057688,52.113837],[-4.056377,52.112422],[-4.055376,52.112593],[-4.052152,52.111029],[-4.048876,52.111554],[-4.046963,52.111073],[-4.043756,52.108848],[-4.044753,52.108325],[-4.042413,52.107417],[-4.041206,52.108028],[-4.03988,52.107472],[-4.037845,52.106008],[-4.03774,52.105343],[-4.036259,52.105023],[-4.034572,52.103991],[-4.026061,52.098097],[-4.01874,52.097022],[-4.009387,52.099329],[-4.004118,52.102915],[-4.000329,52.104339],[-3.996711,52.108109],[-3.995841,52.111895],[-3.994488,52.111738],[-3.990479,52.112527],[-3.986618,52.11206],[-3.986142,52.112688],[-3.984291,52.112233],[-3.983377,52.112814],[-3.981503,52.112781],[-3.97904,52.114381],[-3.978601,52.115794],[-3.976068,52.118853],[-3.973683,52.117573],[-3.969642,52.122982],[-3.96427,52.125573],[-3.950882,52.133338],[-3.942605,52.137644],[-3.940489,52.138448],[-3.938981,52.137942],[-3.935471,52.134845],[-3.932674,52.132927],[-3.929699,52.129617],[-3.931134,52.128539],[-3.930996,52.127374],[-3.927503,52.1287],[-3.922719,52.127613],[-3.919829,52.127752],[-3.914964,52.126334],[-3.913642,52.125538],[-3.913616,52.123649],[-3.911696,52.12295],[-3.911016,52.122011],[-3.909043,52.121234],[-3.906723,52.119788],[-3.906019,52.122338],[-3.904322,52.122826],[-3.900056,52.1223],[-3.89893,52.123134],[-3.898861,52.124142],[-3.896854,52.125015],[-3.894159,52.125336],[-3.892304,52.127372],[-3.89145,52.127291],[-3.889583,52.12863],[-3.888815,52.13025],[-3.887191,52.130986],[-3.886288,52.132827],[-3.883335,52.133762],[-3.881266,52.134056],[-3.875715,52.136463],[-3.875802,52.13921],[-3.873785,52.139375],[-3.871827,52.141148],[-3.868695,52.142077],[-3.862321,52.142105],[-3.854394,52.140317],[-3.85266,52.140163],[-3.84906,52.138068],[-3.846774,52.137386],[-3.84501,52.136059],[-3.842193,52.13558],[-3.837327,52.132072],[-3.834243,52.131863],[-3.832777,52.132417],[-3.830528,52.131319],[-3.83047,52.129284],[-3.828915,52.128385],[-3.827788,52.127079],[-3.826524,52.126899],[-3.82281,52.124324],[-3.816302,52.123169],[-3.814903,52.122505],[-3.813715,52.121286],[-3.812061,52.120544],[-3.810855,52.121198],[-3.808897,52.120905],[-3.806308,52.121685],[-3.804622,52.118572],[-3.800204,52.116181],[-3.799563,52.117058],[-3.795067,52.116192],[-3.79805,52.114145],[-3.795434,52.112486],[-3.797018,52.110889],[-3.793848,52.110021],[-3.790934,52.108813],[-3.787948,52.108198],[-3.78631,52.10703],[-3.787496,52.105396],[-3.7861,52.104557],[-3.784161,52.105945],[-3.783289,52.10762],[-3.780273,52.107603],[-3.778444,52.106928],[-3.776327,52.107099],[-3.774123,52.109276],[-3.775002,52.110749],[-3.774701,52.11525],[-3.774061,52.116597],[-3.771891,52.117531],[-3.769088,52.117528],[-3.765703,52.118161],[-3.766005,52.118791],[-3.76415,52.1224],[-3.764618,52.124085],[-3.759937,52.126633],[-3.758102,52.128234],[-3.757708,52.130068],[-3.756018,52.130487],[-3.7526,52.132612],[-3.75052,52.133307],[-3.745535,52.135904],[-3.742553,52.13838],[-3.742057,52.139618],[-3.74371,52.142929],[-3.743337,52.144016],[-3.743889,52.14662],[-3.746162,52.147956],[-3.745737,52.153983],[-3.748229,52.15596],[-3.748282,52.157759],[-3.747226,52.160573],[-3.750006,52.162743],[-3.750787,52.16447],[-3.75073,52.165409],[-3.749406,52.166946],[-3.750114,52.17062],[-3.748568,52.172772],[-3.748963,52.175628],[-3.751091,52.178408],[-3.750467,52.179791],[-3.751534,52.181446],[-3.751235,52.182803],[-3.749829,52.183429],[-3.750289,52.187517],[-3.74938,52.188324],[-3.747201,52.189342],[-3.745772,52.192],[-3.746398,52.193163],[-3.74775,52.194353],[-3.751436,52.196376],[-3.752272,52.197614],[-3.751629,52.1993],[-3.750744,52.20029],[-3.750824,52.202877],[-3.748931,52.20435],[-3.749032,52.205498],[-3.748181,52.206491],[-3.747935,52.20831],[-3.746043,52.210721],[-3.747073,52.211877],[-3.749602,52.213539],[-3.750511,52.2148],[-3.750526,52.217281],[-3.748541,52.221919],[-3.745668,52.224601],[-3.745327,52.225625],[-3.743267,52.226639],[-3.743397,52.227782],[-3.742754,52.228924],[-3.744743,52.232385],[-3.746604,52.23263],[-3.748293,52.233581],[-3.749945,52.233627],[-3.749334,52.23488],[-3.749443,52.235861],[-3.74765,52.237112],[-3.747992,52.239232],[-3.749199,52.241015],[-3.746927,52.243259],[-3.745534,52.244145],[-3.745183,52.245344],[-3.744208,52.246305],[-3.745754,52.248187],[-3.74901,52.248313],[-3.750988,52.250293],[-3.752786,52.251003],[-3.753434,52.251761],[-3.752473,52.252521],[-3.752256,52.253783],[-3.750354,52.254176],[-3.748879,52.255001],[-3.745223,52.258493],[-3.744862,52.260539],[-3.743174,52.262516],[-3.744375,52.264866],[-3.741878,52.265163],[-3.74087,52.265813],[-3.737159,52.266006],[-3.735892,52.267597],[-3.733861,52.268891],[-3.733123,52.269999],[-3.730325,52.271762],[-3.727117,52.270128],[-3.72653,52.270652],[-3.722853,52.27032],[-3.721217,52.272399],[-3.719883,52.273257],[-3.716519,52.273839],[-3.710371,52.273329],[-3.70717,52.274058],[-3.708011,52.274603],[-3.708324,52.275925],[-3.711173,52.277857],[-3.712578,52.279284],[-3.713946,52.279983],[-3.71536,52.282068],[-3.721901,52.285435],[-3.723568,52.286859],[-3.724242,52.287997],[-3.726669,52.287587],[-3.727367,52.288049],[-3.729787,52.288125],[-3.733138,52.290367],[-3.732851,52.292546],[-3.731183,52.292924],[-3.73189,52.294302],[-3.72994,52.295193],[-3.73095,52.296075],[-3.72974,52.296868],[-3.729196,52.298004],[-3.727473,52.297806],[-3.726099,52.299402],[-3.726443,52.300597],[-3.72735,52.301234],[-3.726899,52.302018],[-3.727391,52.304381],[-3.729349,52.306671],[-3.729347,52.308787],[-3.733367,52.309481],[-3.734854,52.310815],[-3.737471,52.310936],[-3.740296,52.311536],[-3.740634,52.312967],[-3.742331,52.313033],[-3.743796,52.31399],[-3.742789,52.315397],[-3.743964,52.317124],[-3.744992,52.317446],[-3.734216,52.324761],[-3.734322,52.325327],[-3.70513,52.341455],[-3.700925,52.340267],[-3.699433,52.340327],[-3.697806,52.34096],[-3.694829,52.340162],[-3.693553,52.340227],[-3.691966,52.339532],[-3.688041,52.339731],[-3.685974,52.34049],[-3.68071,52.341613],[-3.678996,52.343202],[-3.676072,52.343294],[-3.675272,52.344035],[-3.672781,52.343668],[-3.669576,52.344639],[-3.669132,52.345225],[-3.666967,52.345563],[-3.666461,52.346077],[-3.664727,52.346029],[-3.662412,52.346666],[-3.65994,52.346798],[-3.658168,52.347649],[-3.660046,52.349028],[-3.662079,52.349898],[-3.662706,52.351283],[-3.662324,52.352658],[-3.663998,52.352903],[-3.664959,52.354355],[-3.664416,52.35483],[-3.665951,52.355955],[-3.668322,52.356561],[-3.666777,52.358156],[-3.668641,52.359438],[-3.670634,52.360072],[-3.671854,52.359664],[-3.672732,52.360941],[-3.674594,52.361642],[-3.677432,52.362193],[-3.677835,52.363449],[-3.685479,52.368221],[-3.689566,52.367395],[-3.692018,52.366559],[-3.696231,52.367063],[-3.695363,52.368831],[-3.695887,52.3711],[-3.697516,52.372118],[-3.698249,52.373739],[-3.699129,52.374317],[-3.700093,52.37614],[-3.701209,52.377196],[-3.70158,52.381375],[-3.70215,52.382085],[-3.701462,52.382794],[-3.703566,52.385877],[-3.703327,52.387345],[-3.703947,52.388588],[-3.70522,52.389641],[-3.707253,52.390538],[-3.707819,52.391402],[-3.710539,52.39345],[-3.710574,52.394628],[-3.709491,52.396523],[-3.709631,52.397145],[-3.708333,52.397819],[-3.70765,52.399373],[-3.707836,52.400717],[-3.70977,52.400659],[-3.711314,52.401486],[-3.71317,52.401801],[-3.713473,52.402759],[-3.711808,52.405617],[-3.712185,52.406638],[-3.711167,52.40797],[-3.712093,52.409151],[-3.711673,52.409808],[-3.712761,52.410907],[-3.711689,52.412454],[-3.71205,52.413356],[-3.714321,52.414097],[-3.715167,52.414788],[-3.726254,52.416433],[-3.728931,52.418109],[-3.729885,52.419149],[-3.732582,52.42001],[-3.732861,52.421008],[-3.734094,52.421525],[-3.730842,52.425446],[-3.731383,52.425937],[-3.734034,52.426699],[-3.736445,52.428068],[-3.737099,52.429572],[-3.739234,52.430865],[-3.7474,52.432604],[-3.749623,52.433527],[-3.751863,52.434989],[-3.754241,52.435507],[-3.757474,52.437806],[-3.75987,52.438615],[-3.761832,52.439827],[-3.76432,52.440033],[-3.766606,52.44054],[-3.767553,52.441425],[-3.769181,52.441072],[-3.770379,52.442059],[-3.771617,52.442152],[-3.771361,52.444986],[-3.769125,52.449723],[-3.767722,52.454151],[-3.764148,52.458671],[-3.76446,52.465013],[-3.766713,52.467729],[-3.766408,52.469304],[-3.764647,52.470236],[-3.757516,52.470879],[-3.746397,52.473207],[-3.744798,52.474633],[-3.742301,52.477727],[-3.740556,52.480673],[-3.738838,52.486652],[-3.741108,52.495549],[-3.730293,52.498644],[-3.733261,52.50659],[-3.734572,52.507006],[-3.737185,52.506908],[-3.7386,52.507644],[-3.740151,52.507199],[-3.741932,52.507581],[-3.743288,52.507231],[-3.745113,52.50755],[-3.749926,52.505701],[-3.751344,52.50452],[-3.751229,52.503892],[-3.752973,52.503405],[-3.754433,52.502101],[-3.756395,52.501494],[-3.758877,52.501131],[-3.759949,52.500561],[-3.763428,52.499712],[-3.764825,52.500211],[-3.767939,52.498506],[-3.769195,52.496837],[-3.768534,52.495493],[-3.768824,52.494008],[-3.770299,52.492535],[-3.770073,52.490776],[-3.772227,52.488669],[-3.774672,52.4879],[-3.782231,52.487975],[-3.78366,52.487205],[-3.78473,52.487582],[-3.787023,52.487453],[-3.788595,52.486456],[-3.791101,52.486876],[-3.793114,52.486654],[-3.797128,52.487881],[-3.798886,52.486997],[-3.798101,52.484544],[-3.799981,52.484027],[-3.802337,52.484156],[-3.803166,52.482753],[-3.805208,52.481098],[-3.809772,52.479043],[-3.812467,52.478911],[-3.813756,52.481996],[-3.815123,52.48291],[-3.821185,52.483488],[-3.822106,52.483274],[-3.824098,52.483871],[-3.825379,52.483667],[-3.827577,52.485955],[-3.826494,52.488487],[-3.828088,52.489061],[-3.828315,52.490366],[-3.830692,52.491805],[-3.83258,52.49233],[-3.831526,52.494326],[-3.832275,52.495532],[-3.834558,52.495608],[-3.835699,52.496972],[-3.837707,52.497964],[-3.838288,52.499803],[-3.837869,52.50163],[-3.839135,52.503089],[-3.838834,52.504284],[-3.841454,52.507171],[-3.840978,52.508684],[-3.839964,52.510195],[-3.842878,52.511242],[-3.843996,52.512039],[-3.843323,52.513738],[-3.844409,52.517262],[-3.841175,52.519365],[-3.840951,52.520738],[-3.839695,52.522288],[-3.83614,52.525888],[-3.837555,52.528976],[-3.839213,52.530474],[-3.83832,52.53224],[-3.838631,52.53278],[-3.837974,52.535107],[-3.83837,52.535839],[-3.837511,52.53692],[-3.839646,52.539488],[-3.839882,52.541645],[-3.84084,52.543529],[-3.839868,52.544132],[-3.839888,52.545951],[-3.840733,52.546614],[-3.84111,52.548211],[-3.840862,52.551355],[-3.844865,52.552755],[-3.847662,52.555436],[-3.850608,52.557141],[-3.853734,52.557898],[-3.856025,52.559567],[-3.857766,52.559962],[-3.859466,52.560844],[-3.860675,52.560704],[-3.866514,52.560729],[-3.869957,52.561042],[-3.873449,52.56056],[-3.87435,52.560128],[-3.87775,52.560666],[-3.8825,52.560628],[-3.887279,52.56019],[-3.888474,52.560639],[-3.892441,52.560427],[-3.895667,52.560685],[-3.899042,52.559745],[-3.900466,52.560163],[-3.906226,52.560798]]]]},"properties":{"LAD22CD":"W06000008","LAD22NM":"Ceredigion","BNG_E":267127,"BNG_N":268437,"LONG":-3.94993,"LAT":52.29795,"GlobalID":"d25cf812-11fb-4616-aa43-4fae7ebcc75d"},"id":359}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.702205,51.642277],[-4.703627,51.643351],[-4.705143,51.642209],[-4.707731,51.642663],[-4.709515,51.642177],[-4.70799,51.640549],[-4.706595,51.640532],[-4.705911,51.639181],[-4.701658,51.638765],[-4.700997,51.637432],[-4.701254,51.636625],[-4.702963,51.634745],[-4.702446,51.634432],[-4.703905,51.633142],[-4.703472,51.632025],[-4.700947,51.632046],[-4.698902,51.633372],[-4.697232,51.633394],[-4.696631,51.634014],[-4.694401,51.634502],[-4.693258,51.634022],[-4.693291,51.632165],[-4.692376,51.631479],[-4.688496,51.631784],[-4.688127,51.630995],[-4.685958,51.630813],[-4.685635,51.629948],[-4.684057,51.629915],[-4.680288,51.631825],[-4.680234,51.633168],[-4.681211,51.633484],[-4.680554,51.634741],[-4.677616,51.635311],[-4.676985,51.636351],[-4.677747,51.637493],[-4.676825,51.637811],[-4.674671,51.637727],[-4.675214,51.639006],[-4.676846,51.638655],[-4.679016,51.639001],[-4.679121,51.640169],[-4.680444,51.641164],[-4.684575,51.642017],[-4.686954,51.64198],[-4.691726,51.639916],[-4.693817,51.63991],[-4.697771,51.640631],[-4.702205,51.642277]]],[[[-4.714242,51.643938],[-4.716198,51.643931],[-4.719038,51.643211],[-4.719815,51.642042],[-4.717138,51.641606],[-4.715835,51.643103],[-4.714242,51.643938]]],[[[-5.273991,51.703498],[-5.275223,51.702831],[-5.27679,51.702619],[-5.278101,51.701369],[-5.278865,51.701631],[-5.281579,51.700808],[-5.281813,51.698982],[-5.283178,51.698606],[-5.284417,51.6971],[-5.285793,51.696661],[-5.289332,51.69633],[-5.288987,51.694629],[-5.287736,51.694532],[-5.288148,51.693382],[-5.280469,51.693549],[-5.27755,51.693315],[-5.274338,51.694166],[-5.273318,51.695839],[-5.271978,51.695273],[-5.270094,51.695961],[-5.269785,51.696867],[-5.270447,51.697844],[-5.270209,51.699032],[-5.269066,51.700038],[-5.266082,51.700265],[-5.265561,51.702281],[-5.268334,51.702031],[-5.270397,51.701567],[-5.27162,51.702481],[-5.273991,51.703498]]],[[[-5.166126,51.721279],[-5.164746,51.723201],[-5.165544,51.723302],[-5.165742,51.722881],[-5.166528,51.722296],[-5.166716,51.721741],[-5.166126,51.721279]]],[[[-5.263159,51.73631],[-5.264156,51.736841],[-5.266429,51.735128],[-5.264411,51.733467],[-5.263007,51.733776],[-5.261864,51.735066],[-5.262083,51.736031],[-5.263159,51.73631]]],[[[-5.478249,51.73264],[-5.480791,51.731874],[-5.482244,51.730214],[-5.480293,51.729592],[-5.47876,51.72975],[-5.477862,51.731169],[-5.476963,51.731484],[-5.478249,51.73264]]],[[[-5.29569,51.744103],[-5.296361,51.744596],[-5.300642,51.745174],[-5.306614,51.742118],[-5.308373,51.740935],[-5.313153,51.739789],[-5.312423,51.738999],[-5.314693,51.737349],[-5.312337,51.737706],[-5.311588,51.737229],[-5.312894,51.735284],[-5.311078,51.733564],[-5.310796,51.732718],[-5.308978,51.732281],[-5.305871,51.732863],[-5.303206,51.731816],[-5.301136,51.732216],[-5.299902,51.731161],[-5.297913,51.7315],[-5.295011,51.730998],[-5.298019,51.730432],[-5.299044,51.729112],[-5.295333,51.729222],[-5.293036,51.728319],[-5.289937,51.728841],[-5.289775,51.729527],[-5.28776,51.730616],[-5.287763,51.73135],[-5.288908,51.731942],[-5.288804,51.73283],[-5.287709,51.733919],[-5.283145,51.735331],[-5.281419,51.736746],[-5.28015,51.736427],[-5.279924,51.7353],[-5.281827,51.733624],[-5.281501,51.732843],[-5.279193,51.732073],[-5.279214,51.733182],[-5.277496,51.733857],[-5.275368,51.733917],[-5.274526,51.733375],[-5.271857,51.734186],[-5.26926,51.734678],[-5.268842,51.735324],[-5.271755,51.73656],[-5.273109,51.736436],[-5.274973,51.737333],[-5.275212,51.738096],[-5.277266,51.73863],[-5.278297,51.73738],[-5.280265,51.736895],[-5.282197,51.738097],[-5.281074,51.739733],[-5.281462,51.741148],[-5.283127,51.741539],[-5.286702,51.741589],[-5.289132,51.741901],[-5.292098,51.743259],[-5.29569,51.744103]]],[[[-5.33487,51.851263],[-5.338731,51.850859],[-5.338207,51.849377],[-5.340809,51.848138],[-5.341914,51.84707],[-5.340009,51.846762],[-5.338668,51.848307],[-5.337426,51.848401],[-5.3356,51.849613],[-5.33487,51.851263]]],[[[-5.332983,51.851925],[-5.332072,51.852221],[-5.332152,51.853623],[-5.334024,51.853252],[-5.334246,51.852043],[-5.332983,51.851925]]],[[[-5.336796,51.877798],[-5.338523,51.879128],[-5.341463,51.877416],[-5.343976,51.877035],[-5.345544,51.876254],[-5.34826,51.876082],[-5.346803,51.874979],[-5.346089,51.873833],[-5.346917,51.872693],[-5.346551,51.871512],[-5.344764,51.870591],[-5.342355,51.870669],[-5.34182,51.869769],[-5.342757,51.867799],[-5.34416,51.867698],[-5.345557,51.866459],[-5.348947,51.867464],[-5.352594,51.866428],[-5.353266,51.865203],[-5.353371,51.863767],[-5.352246,51.863023],[-5.351317,51.861627],[-5.349214,51.859478],[-5.349948,51.857764],[-5.348384,51.857787],[-5.347946,51.857133],[-5.345189,51.857485],[-5.342422,51.858613],[-5.342596,51.857316],[-5.341472,51.856785],[-5.340912,51.855084],[-5.341168,51.853846],[-5.338536,51.854714],[-5.335588,51.854726],[-5.334957,51.853956],[-5.332894,51.854309],[-5.333272,51.855211],[-5.332629,51.856138],[-5.333605,51.856538],[-5.333966,51.857576],[-5.332918,51.85867],[-5.333272,51.860439],[-5.332272,51.861327],[-5.332939,51.862898],[-5.332453,51.863471],[-5.333405,51.864281],[-5.332461,51.865189],[-5.333581,51.86613],[-5.334768,51.866268],[-5.334283,51.867641],[-5.33333,51.868463],[-5.335055,51.870274],[-5.333257,51.871473],[-5.333137,51.87429],[-5.33246,51.874429],[-5.330289,51.876525],[-5.329811,51.877703],[-5.331157,51.879042],[-5.332344,51.877709],[-5.334013,51.877379],[-5.336796,51.877798]]],[[[-5.388442,51.879071],[-5.388994,51.880106],[-5.39263,51.878727],[-5.395553,51.878],[-5.394807,51.877363],[-5.388442,51.879071]]],[[[-5.381426,51.881958],[-5.383157,51.881769],[-5.384869,51.880824],[-5.383191,51.880442],[-5.381426,51.881958]]],[[[-5.383737,51.9039],[-5.386309,51.903162],[-5.388075,51.903111],[-5.388687,51.901995],[-5.386876,51.901538],[-5.385859,51.903048],[-5.384358,51.90282],[-5.383737,51.9039]]],[[[-4.689385,52.102966],[-4.691932,52.10388],[-4.693168,52.105069],[-4.694303,52.105525],[-4.696924,52.105858],[-4.702408,52.105881],[-4.703213,52.106392],[-4.703333,52.107502],[-4.707886,52.107506],[-4.708199,52.107856],[-4.711052,52.108202],[-4.712286,52.109126],[-4.712632,52.110504],[-4.715428,52.110947],[-4.716264,52.111548],[-4.718356,52.111605],[-4.721135,52.112499],[-4.721584,52.113582],[-4.723159,52.114994],[-4.725525,52.115536],[-4.727044,52.116398],[-4.728065,52.11632],[-4.730078,52.117925],[-4.731542,52.117868],[-4.731802,52.11703],[-4.73347,52.115443],[-4.732403,52.114321],[-4.73428,52.112945],[-4.733763,52.11142],[-4.7367,52.108409],[-4.740039,52.107975],[-4.741956,52.106662],[-4.743246,52.106671],[-4.747454,52.10494],[-4.748984,52.103925],[-4.746529,52.103624],[-4.74325,52.102182],[-4.742089,52.100441],[-4.742793,52.099643],[-4.74144,52.098633],[-4.743614,52.097795],[-4.744475,52.096882],[-4.744188,52.095872],[-4.745958,52.094781],[-4.748367,52.093735],[-4.752122,52.092941],[-4.751234,52.090733],[-4.752851,52.088934],[-4.752264,52.088364],[-4.75495,52.087067],[-4.755929,52.085437],[-4.758538,52.084219],[-4.757354,52.083397],[-4.758808,52.082577],[-4.758734,52.08191],[-4.760363,52.081402],[-4.760776,52.080575],[-4.758865,52.080319],[-4.761066,52.079196],[-4.758926,52.077632],[-4.759052,52.076771],[-4.761664,52.078413],[-4.764296,52.077502],[-4.764945,52.076666],[-4.767143,52.076134],[-4.768941,52.075132],[-4.770789,52.073501],[-4.771476,52.071923],[-4.774321,52.070912],[-4.77358,52.069913],[-4.776028,52.069319],[-4.77717,52.06848],[-4.777337,52.066744],[-4.781201,52.066706],[-4.783332,52.066214],[-4.78503,52.064617],[-4.784312,52.06359],[-4.785431,52.061452],[-4.7878,52.060126],[-4.789901,52.059477],[-4.791431,52.058457],[-4.793054,52.058243],[-4.798534,52.056601],[-4.802756,52.056565],[-4.805137,52.056983],[-4.807061,52.056598],[-4.811295,52.056734],[-4.813672,52.055996],[-4.816127,52.056104],[-4.817154,52.055471],[-4.81901,52.055971],[-4.820619,52.05528],[-4.823728,52.054726],[-4.824132,52.054184],[-4.826659,52.054197],[-4.828724,52.053625],[-4.829551,52.052956],[-4.830122,52.051403],[-4.831388,52.050724],[-4.832615,52.0514],[-4.837935,52.050335],[-4.836749,52.049168],[-4.835445,52.04899],[-4.835654,52.047945],[-4.837415,52.047815],[-4.838196,52.047229],[-4.839733,52.047123],[-4.841163,52.046376],[-4.841387,52.044937],[-4.842403,52.044129],[-4.844003,52.0436],[-4.845269,52.042456],[-4.845216,52.041233],[-4.84675,52.040241],[-4.846993,52.038561],[-4.845327,52.036392],[-4.840421,52.03507],[-4.838811,52.034381],[-4.837778,52.032523],[-4.838448,52.030603],[-4.837424,52.029786],[-4.841327,52.024757],[-4.840667,52.024537],[-4.838385,52.025458],[-4.835815,52.025168],[-4.832808,52.02342],[-4.82785,52.02182],[-4.825639,52.020524],[-4.822414,52.02015],[-4.822637,52.019734],[-4.82592,52.019488],[-4.828877,52.020597],[-4.832103,52.020904],[-4.834213,52.022138],[-4.838253,52.021082],[-4.839067,52.021845],[-4.840541,52.021877],[-4.841851,52.020896],[-4.846779,52.021937],[-4.848577,52.02159],[-4.851642,52.022862],[-4.854022,52.02182],[-4.856061,52.022777],[-4.858403,52.022303],[-4.859294,52.023086],[-4.862302,52.022423],[-4.864489,52.020799],[-4.866851,52.0206],[-4.868769,52.020965],[-4.868427,52.019304],[-4.869583,52.019286],[-4.870328,52.021085],[-4.87311,52.020391],[-4.87459,52.020655],[-4.877152,52.020609],[-4.878274,52.019036],[-4.879209,52.020055],[-4.882036,52.020686],[-4.88521,52.02036],[-4.88754,52.020995],[-4.888446,52.022019],[-4.888032,52.023271],[-4.89423,52.023155],[-4.8949,52.02405],[-4.893449,52.025288],[-4.893056,52.026571],[-4.893836,52.026939],[-4.892536,52.028767],[-4.893545,52.030456],[-4.898792,52.032323],[-4.90062,52.03221],[-4.900339,52.033435],[-4.902919,52.033811],[-4.903198,52.034535],[-4.905565,52.034822],[-4.908214,52.034094],[-4.909386,52.034427],[-4.911534,52.034137],[-4.911458,52.031721],[-4.912173,52.030756],[-4.913868,52.030968],[-4.915759,52.030007],[-4.916691,52.028196],[-4.91658,52.027001],[-4.917691,52.025931],[-4.915671,52.025154],[-4.913895,52.024997],[-4.912042,52.023736],[-4.913618,52.022521],[-4.909974,52.022181],[-4.909501,52.021241],[-4.911795,52.020224],[-4.911719,52.019384],[-4.913361,52.018659],[-4.913931,52.01791],[-4.916594,52.017612],[-4.91689,52.015865],[-4.918413,52.016019],[-4.920547,52.014821],[-4.919904,52.014057],[-4.920394,52.012063],[-4.921229,52.011974],[-4.91971,52.010099],[-4.920993,52.009773],[-4.922112,52.01073],[-4.92521,52.01079],[-4.927209,52.011668],[-4.928301,52.011182],[-4.929228,52.009562],[-4.929159,52.008683],[-4.931003,52.008843],[-4.931753,52.009458],[-4.93366,52.009405],[-4.935438,52.008831],[-4.934722,52.00821],[-4.936123,52.006731],[-4.938313,52.00691],[-4.939479,52.007999],[-4.940918,52.007921],[-4.941309,52.006626],[-4.942613,52.005584],[-4.94407,52.005455],[-4.944534,52.004365],[-4.950239,52.00337],[-4.951299,52.00291],[-4.953724,52.003276],[-4.955368,52.002565],[-4.957689,52.00262],[-4.957504,52.001107],[-4.959801,52.000572],[-4.960661,52.000813],[-4.961932,51.999785],[-4.963793,52.000165],[-4.964256,52.001303],[-4.965962,52.001649],[-4.970168,52.000841],[-4.970795,51.9995],[-4.970429,51.998486],[-4.971966,51.997883],[-4.968892,51.996632],[-4.970799,51.995538],[-4.972912,51.995772],[-4.973657,51.997951],[-4.975982,51.998541],[-4.975615,51.999432],[-4.976481,52.000611],[-4.979083,52.000434],[-4.982413,52.000639],[-4.987044,51.999017],[-4.989799,52.000767],[-4.990468,52.001924],[-4.992034,52.002981],[-4.993221,52.004465],[-4.990267,52.007023],[-4.986316,52.009331],[-4.984831,52.012239],[-4.983761,52.013265],[-4.983533,52.01427],[-4.981666,52.014793],[-4.971147,52.012927],[-4.970586,52.01316],[-4.98113,52.015082],[-4.982668,52.015675],[-4.984553,52.015536],[-4.986809,52.016056],[-4.988526,52.017585],[-4.987524,52.018318],[-4.987679,52.019972],[-4.986539,52.021216],[-4.987336,52.022749],[-4.986603,52.022967],[-4.990022,52.024682],[-4.990642,52.023992],[-4.995016,52.022944],[-4.995238,52.024382],[-4.998235,52.025233],[-4.998653,52.023637],[-5.002612,52.024566],[-5.007717,52.024169],[-5.008044,52.023544],[-5.009945,52.023367],[-5.010499,52.022457],[-5.012206,52.022848],[-5.013873,52.023749],[-5.014683,52.023022],[-5.017069,52.022645],[-5.019009,52.021498],[-5.019267,52.020322],[-5.021803,52.020649],[-5.021592,52.021343],[-5.022593,52.022458],[-5.022427,52.023609],[-5.023103,52.025035],[-5.024387,52.025114],[-5.024949,52.024016],[-5.026629,52.024996],[-5.02816,52.024787],[-5.029372,52.025833],[-5.030344,52.025526],[-5.034086,52.026437],[-5.035196,52.025451],[-5.037003,52.027141],[-5.03917,52.027844],[-5.042327,52.026574],[-5.043944,52.027077],[-5.045983,52.026445],[-5.047817,52.027014],[-5.048747,52.028133],[-5.051392,52.027187],[-5.051555,52.026339],[-5.053845,52.025418],[-5.05481,52.026652],[-5.053955,52.02801],[-5.056362,52.027542],[-5.0588,52.028046],[-5.057872,52.029833],[-5.060447,52.02956],[-5.060748,52.031124],[-5.061942,52.031826],[-5.063427,52.032022],[-5.066386,52.030988],[-5.068627,52.030896],[-5.070318,52.02998],[-5.072131,52.029473],[-5.071993,52.027936],[-5.07064,52.027279],[-5.07216,52.026693],[-5.073827,52.025277],[-5.078545,52.024112],[-5.080741,52.02331],[-5.082,52.023216],[-5.083917,52.021217],[-5.085539,52.020343],[-5.086478,52.018675],[-5.08757,52.018167],[-5.088292,52.016055],[-5.089209,52.016204],[-5.089395,52.014613],[-5.088099,52.014712],[-5.087342,52.01342],[-5.085125,52.012035],[-5.082524,52.012075],[-5.081409,52.011616],[-5.077765,52.011487],[-5.077492,52.010595],[-5.079514,52.010524],[-5.079005,52.00827],[-5.080008,52.007336],[-5.078427,52.005518],[-5.072845,52.005862],[-5.072173,52.004823],[-5.072582,52.003963],[-5.079223,52.00073],[-5.079453,51.999669],[-5.082623,51.998755],[-5.083656,51.998096],[-5.085996,51.997628],[-5.088398,51.996229],[-5.090191,51.995873],[-5.090374,51.995031],[-5.092486,51.994309],[-5.095114,51.994153],[-5.09503,51.993217],[-5.092487,51.992947],[-5.092564,51.991933],[-5.090519,51.991982],[-5.088626,51.99147],[-5.088363,51.989029],[-5.089204,51.987721],[-5.087339,51.987174],[-5.086147,51.987422],[-5.084587,51.986995],[-5.082442,51.987341],[-5.080657,51.986635],[-5.080466,51.985402],[-5.081946,51.985171],[-5.083033,51.984399],[-5.082891,51.98357],[-5.085389,51.982245],[-5.086727,51.980654],[-5.087625,51.980169],[-5.085615,51.979336],[-5.085801,51.977441],[-5.083324,51.975594],[-5.083617,51.974874],[-5.082237,51.974083],[-5.082503,51.973111],[-5.08392,51.971852],[-5.082938,51.970824],[-5.085343,51.968548],[-5.086393,51.967987],[-5.088714,51.967942],[-5.092395,51.96946],[-5.093919,51.968668],[-5.098071,51.969014],[-5.099135,51.970603],[-5.100159,51.970374],[-5.099211,51.969275],[-5.100898,51.968438],[-5.102102,51.969115],[-5.105064,51.968587],[-5.104926,51.967788],[-5.103256,51.967942],[-5.102502,51.965817],[-5.102927,51.96421],[-5.105865,51.963309],[-5.105774,51.962306],[-5.107139,51.962304],[-5.107114,51.961181],[-5.108835,51.96136],[-5.110872,51.962288],[-5.111675,51.961609],[-5.114119,51.961563],[-5.116841,51.961072],[-5.117671,51.961871],[-5.120701,51.961442],[-5.122089,51.960567],[-5.124138,51.961296],[-5.123898,51.962166],[-5.127327,51.961805],[-5.12818,51.961056],[-5.127326,51.959759],[-5.130345,51.960758],[-5.130554,51.961459],[-5.132585,51.961378],[-5.134012,51.962543],[-5.136427,51.962768],[-5.137398,51.963534],[-5.139957,51.962125],[-5.14131,51.962522],[-5.144891,51.961029],[-5.146313,51.961557],[-5.147734,51.96071],[-5.14596,51.960074],[-5.144276,51.96059],[-5.141946,51.959304],[-5.142036,51.958524],[-5.145152,51.957069],[-5.143177,51.956012],[-5.146349,51.955107],[-5.14812,51.955242],[-5.148754,51.954493],[-5.14778,51.953308],[-5.148726,51.952849],[-5.150085,51.953338],[-5.15542,51.953048],[-5.155142,51.952095],[-5.15557,51.950563],[-5.15373,51.950126],[-5.153165,51.949185],[-5.154065,51.948297],[-5.155856,51.948858],[-5.157384,51.947996],[-5.158892,51.947875],[-5.161252,51.948735],[-5.162421,51.948177],[-5.165677,51.948028],[-5.167711,51.948757],[-5.169408,51.949788],[-5.171569,51.949714],[-5.174159,51.948971],[-5.174334,51.950185],[-5.175092,51.9513],[-5.178592,51.951029],[-5.182869,51.950153],[-5.1833,51.949308],[-5.18596,51.950658],[-5.188772,51.949983],[-5.190762,51.950657],[-5.193663,51.950101],[-5.196418,51.950611],[-5.196336,51.949639],[-5.194031,51.949508],[-5.195502,51.947679],[-5.197777,51.947976],[-5.199968,51.947733],[-5.198914,51.946864],[-5.19653,51.946275],[-5.198548,51.945605],[-5.201536,51.945631],[-5.200329,51.943945],[-5.198346,51.942972],[-5.19839,51.941836],[-5.203247,51.9403],[-5.204451,51.940412],[-5.207078,51.93985],[-5.20785,51.93889],[-5.209487,51.938138],[-5.208182,51.937121],[-5.206849,51.937216],[-5.206174,51.936224],[-5.206602,51.934363],[-5.207593,51.934096],[-5.209679,51.932733],[-5.212787,51.932202],[-5.213439,51.932522],[-5.215281,51.93189],[-5.216197,51.932322],[-5.217958,51.931738],[-5.219846,51.93185],[-5.22259,51.931444],[-5.22276,51.93071],[-5.224025,51.929929],[-5.226791,51.929879],[-5.227859,51.930772],[-5.23009,51.930915],[-5.232317,51.929572],[-5.233699,51.930104],[-5.235271,51.929101],[-5.235341,51.927827],[-5.237661,51.927355],[-5.236824,51.926495],[-5.238294,51.92594],[-5.239195,51.924211],[-5.240231,51.924258],[-5.241826,51.923016],[-5.243427,51.922332],[-5.24377,51.921557],[-5.249557,51.921553],[-5.251367,51.919825],[-5.253317,51.919158],[-5.253062,51.91718],[-5.256335,51.915898],[-5.259028,51.915293],[-5.261179,51.915971],[-5.262493,51.914895],[-5.264401,51.9146],[-5.266112,51.913846],[-5.267244,51.914088],[-5.270629,51.91355],[-5.271996,51.913955],[-5.272131,51.912748],[-5.2748,51.911452],[-5.276394,51.911422],[-5.277719,51.912013],[-5.278348,51.912871],[-5.279638,51.913006],[-5.281997,51.911902],[-5.282957,51.912144],[-5.2862,51.910957],[-5.286284,51.912556],[-5.285578,51.913985],[-5.287867,51.914366],[-5.290997,51.913658],[-5.291011,51.912783],[-5.29217,51.911981],[-5.294456,51.911152],[-5.297131,51.911403],[-5.297566,51.910566],[-5.298854,51.91027],[-5.301053,51.908566],[-5.303483,51.908998],[-5.304491,51.908171],[-5.305539,51.908302],[-5.307292,51.90706],[-5.311387,51.90504],[-5.31187,51.903995],[-5.313974,51.902955],[-5.312982,51.902326],[-5.310528,51.902777],[-5.307132,51.902905],[-5.305424,51.903833],[-5.303536,51.903515],[-5.303742,51.902116],[-5.305128,51.900656],[-5.30264,51.90073],[-5.301131,51.90038],[-5.299196,51.900561],[-5.29835,51.899558],[-5.297267,51.899445],[-5.296194,51.897733],[-5.295636,51.894873],[-5.295938,51.893141],[-5.298001,51.891959],[-5.299563,51.889921],[-5.301731,51.889541],[-5.303339,51.887011],[-5.30451,51.886039],[-5.307466,51.88632],[-5.308845,51.887721],[-5.310645,51.887405],[-5.313923,51.8855],[-5.315574,51.885021],[-5.316355,51.884298],[-5.315379,51.883609],[-5.314806,51.881595],[-5.314089,51.880428],[-5.31258,51.880351],[-5.311576,51.879567],[-5.311076,51.87835],[-5.308845,51.878695],[-5.307773,51.876494],[-5.307333,51.87478],[-5.308923,51.874576],[-5.309263,51.873152],[-5.308742,51.872765],[-5.310306,51.869628],[-5.311682,51.869123],[-5.312985,51.869544],[-5.314015,51.869127],[-5.314954,51.866423],[-5.318739,51.866033],[-5.319668,51.865198],[-5.320135,51.86373],[-5.319564,51.861856],[-5.317963,51.860982],[-5.316457,51.861151],[-5.316349,51.860091],[-5.315354,51.859516],[-5.314475,51.86055],[-5.312953,51.859883],[-5.310237,51.861077],[-5.309044,51.860355],[-5.308431,51.861728],[-5.30685,51.862057],[-5.306801,51.863504],[-5.306019,51.864046],[-5.301915,51.863709],[-5.29956,51.864513],[-5.29801,51.86609],[-5.296913,51.865885],[-5.295754,51.864873],[-5.297365,51.863197],[-5.297607,51.862124],[-5.296502,51.861349],[-5.294828,51.861952],[-5.292358,51.862115],[-5.291226,51.864058],[-5.288106,51.864341],[-5.287512,51.865088],[-5.286034,51.865356],[-5.284926,51.864991],[-5.282703,51.865484],[-5.280342,51.866382],[-5.280416,51.868097],[-5.278746,51.867448],[-5.277654,51.8682],[-5.276831,51.86959],[-5.275977,51.869638],[-5.274048,51.868452],[-5.272001,51.86921],[-5.271081,51.870672],[-5.269312,51.870294],[-5.268486,51.871119],[-5.266983,51.871678],[-5.264143,51.871138],[-5.262287,51.869478],[-5.260592,51.868933],[-5.259011,51.869669],[-5.258654,51.870728],[-5.256307,51.872269],[-5.253951,51.872932],[-5.252764,51.872545],[-5.253262,51.870218],[-5.250271,51.868979],[-5.248481,51.871721],[-5.245072,51.872638],[-5.2418,51.871563],[-5.240508,51.870897],[-5.238646,51.870961],[-5.236867,51.871802],[-5.234237,51.872001],[-5.232085,51.873021],[-5.229422,51.873224],[-5.227716,51.872781],[-5.226279,51.872927],[-5.224006,51.872613],[-5.222397,51.872949],[-5.219554,51.872614],[-5.217622,51.873453],[-5.216877,51.871269],[-5.214788,51.871991],[-5.214362,51.87055],[-5.213395,51.870047],[-5.210758,51.869427],[-5.210997,51.868469],[-5.212396,51.86741],[-5.209387,51.867234],[-5.207621,51.867593],[-5.205145,51.868905],[-5.202732,51.868336],[-5.201421,51.868513],[-5.19829,51.867287],[-5.196573,51.868607],[-5.197759,51.869386],[-5.19729,51.871418],[-5.193793,51.872144],[-5.192201,51.873317],[-5.189319,51.87389],[-5.189907,51.872848],[-5.191676,51.872395],[-5.193928,51.871073],[-5.195704,51.870758],[-5.195042,51.869263],[-5.193044,51.869491],[-5.194572,51.867191],[-5.18801,51.86829],[-5.187911,51.86782],[-5.184283,51.867591],[-5.181825,51.868045],[-5.179503,51.867246],[-5.178713,51.86645],[-5.17804,51.86427],[-5.180961,51.862753],[-5.181593,51.861049],[-5.178904,51.861699],[-5.177077,51.863686],[-5.173796,51.863435],[-5.169864,51.86366],[-5.16633,51.864987],[-5.164888,51.864616],[-5.165093,51.863857],[-5.163925,51.863251],[-5.161907,51.86343],[-5.15953,51.861888],[-5.15776,51.863212],[-5.155241,51.861447],[-5.150039,51.863039],[-5.149248,51.862507],[-5.145289,51.862106],[-5.1421,51.862369],[-5.139381,51.864156],[-5.13739,51.863771],[-5.137633,51.863076],[-5.135241,51.862565],[-5.13388,51.86265],[-5.132556,51.86162],[-5.132988,51.861105],[-5.130675,51.8587],[-5.128419,51.858451],[-5.116799,51.843663],[-5.116733,51.842294],[-5.116017,51.841316],[-5.113863,51.837181],[-5.11346,51.834475],[-5.114188,51.832787],[-5.113579,51.831402],[-5.115302,51.829936],[-5.115289,51.828915],[-5.116854,51.827432],[-5.114255,51.827137],[-5.114607,51.825498],[-5.113767,51.824441],[-5.112442,51.82443],[-5.111108,51.823507],[-5.109463,51.824783],[-5.107441,51.824237],[-5.108103,51.823181],[-5.110575,51.822105],[-5.110939,51.820349],[-5.109615,51.81947],[-5.107543,51.818901],[-5.107415,51.817655],[-5.1067,51.816821],[-5.107067,51.815744],[-5.105849,51.815441],[-5.105873,51.814028],[-5.103981,51.812897],[-5.10325,51.811262],[-5.103446,51.810352],[-5.104652,51.809305],[-5.10418,51.806838],[-5.10325,51.804979],[-5.103597,51.804231],[-5.105376,51.803255],[-5.104819,51.802565],[-5.105683,51.80152],[-5.104772,51.800108],[-5.106934,51.798866],[-5.104955,51.797582],[-5.105842,51.796548],[-5.105833,51.795605],[-5.106997,51.795441],[-5.104662,51.793946],[-5.105271,51.792821],[-5.104286,51.790629],[-5.104577,51.787734],[-5.103974,51.786966],[-5.104885,51.78622],[-5.103829,51.78571],[-5.103673,51.784585],[-5.102058,51.783856],[-5.103546,51.77915],[-5.106289,51.778753],[-5.105963,51.777222],[-5.106342,51.776131],[-5.108391,51.775353],[-5.111254,51.773151],[-5.114014,51.77217],[-5.11458,51.770609],[-5.117312,51.769933],[-5.116513,51.7693],[-5.117023,51.768457],[-5.119683,51.768274],[-5.12281,51.769116],[-5.123478,51.768802],[-5.126799,51.769152],[-5.128006,51.768979],[-5.130467,51.76944],[-5.131539,51.770024],[-5.132044,51.771677],[-5.136474,51.773297],[-5.137641,51.772901],[-5.138324,51.7714],[-5.139579,51.770558],[-5.142169,51.770815],[-5.142917,51.771287],[-5.145511,51.771168],[-5.147469,51.77213],[-5.149204,51.772476],[-5.150479,51.771564],[-5.155093,51.771632],[-5.15717,51.770947],[-5.158116,51.771757],[-5.160299,51.772128],[-5.163844,51.77032],[-5.163995,51.769207],[-5.165535,51.769358],[-5.166329,51.768586],[-5.165859,51.767892],[-5.168232,51.767178],[-5.1707,51.767115],[-5.170707,51.765856],[-5.17297,51.765233],[-5.17534,51.765042],[-5.174964,51.76352],[-5.177649,51.763121],[-5.178314,51.762206],[-5.177703,51.760384],[-5.179604,51.760024],[-5.181176,51.759225],[-5.182179,51.759218],[-5.183228,51.758213],[-5.182466,51.757242],[-5.18592,51.754989],[-5.185481,51.754295],[-5.186577,51.753631],[-5.188303,51.755158],[-5.192714,51.755604],[-5.193761,51.756617],[-5.196577,51.75648],[-5.197028,51.755138],[-5.199383,51.754096],[-5.201287,51.755061],[-5.203563,51.754388],[-5.203063,51.753278],[-5.204075,51.752635],[-5.201859,51.749589],[-5.202971,51.749436],[-5.203759,51.74831],[-5.202792,51.74758],[-5.203408,51.747001],[-5.202641,51.745711],[-5.204085,51.743876],[-5.204033,51.743108],[-5.205328,51.742325],[-5.204931,51.741211],[-5.205292,51.738134],[-5.206267,51.737886],[-5.207433,51.736594],[-5.208683,51.736261],[-5.208836,51.734592],[-5.210866,51.733915],[-5.214258,51.733927],[-5.215183,51.734547],[-5.218409,51.734547],[-5.219637,51.735787],[-5.221906,51.736719],[-5.226743,51.737582],[-5.229859,51.737267],[-5.233751,51.737739],[-5.234851,51.736677],[-5.236932,51.737494],[-5.239073,51.737673],[-5.239758,51.736583],[-5.241335,51.736849],[-5.242051,51.737675],[-5.244236,51.736161],[-5.245544,51.736333],[-5.246294,51.73812],[-5.250707,51.738114],[-5.252544,51.739003],[-5.253763,51.738583],[-5.253944,51.73767],[-5.252372,51.73626],[-5.251062,51.736223],[-5.251238,51.734918],[-5.252551,51.734206],[-5.252752,51.733433],[-5.249676,51.73321],[-5.249484,51.732127],[-5.247196,51.732947],[-5.244552,51.732587],[-5.244034,51.730124],[-5.24508,51.729358],[-5.244412,51.728815],[-5.242077,51.728997],[-5.241091,51.727744],[-5.238196,51.726853],[-5.236231,51.725632],[-5.233452,51.725837],[-5.231359,51.725064],[-5.231719,51.72405],[-5.229219,51.723905],[-5.227773,51.723165],[-5.22718,51.721798],[-5.22514,51.723306],[-5.222593,51.724187],[-5.217629,51.72353],[-5.215074,51.723688],[-5.21221,51.722967],[-5.209341,51.721761],[-5.207503,51.721375],[-5.205223,51.720172],[-5.204262,51.718958],[-5.2013,51.717376],[-5.200812,51.715635],[-5.201891,51.714466],[-5.203368,51.713728],[-5.203665,51.711752],[-5.202183,51.711509],[-5.201597,51.710839],[-5.197938,51.710958],[-5.196061,51.710354],[-5.19225,51.709759],[-5.190693,51.709131],[-5.188482,51.709297],[-5.187186,51.708862],[-5.186686,51.707762],[-5.188757,51.706073],[-5.186067,51.705567],[-5.185938,51.704989],[-5.187261,51.704151],[-5.186534,51.703477],[-5.187632,51.702386],[-5.188391,51.700699],[-5.190408,51.699904],[-5.189613,51.698748],[-5.187558,51.697456],[-5.188478,51.696084],[-5.187524,51.694746],[-5.186174,51.693966],[-5.186328,51.692817],[-5.188236,51.689972],[-5.184785,51.689264],[-5.182034,51.689269],[-5.182798,51.68573],[-5.180435,51.684524],[-5.177906,51.683733],[-5.176401,51.682639],[-5.1761,51.681008],[-5.17273,51.680911],[-5.170898,51.681308],[-5.170074,51.682494],[-5.171182,51.682784],[-5.17047,51.683858],[-5.172418,51.684662],[-5.171333,51.686187],[-5.171122,51.687537],[-5.169497,51.688042],[-5.165033,51.687354],[-5.164463,51.687673],[-5.162425,51.687226],[-5.160355,51.687883],[-5.157915,51.687744],[-5.157217,51.689451],[-5.157908,51.690615],[-5.160053,51.691599],[-5.1608,51.692324],[-5.159993,51.693172],[-5.155543,51.694228],[-5.155031,51.695545],[-5.152901,51.69608],[-5.15504,51.697525],[-5.157645,51.698358],[-5.15788,51.699864],[-5.156808,51.700674],[-5.158125,51.701721],[-5.155008,51.702186],[-5.154229,51.702814],[-5.152417,51.702282],[-5.149618,51.702366],[-5.152633,51.704003],[-5.154566,51.70393],[-5.156676,51.704252],[-5.159174,51.704094],[-5.162452,51.704779],[-5.165531,51.706347],[-5.168519,51.706777],[-5.168551,51.709604],[-5.167752,51.711016],[-5.169142,51.711502],[-5.170569,51.712617],[-5.170934,51.713511],[-5.173142,51.71452],[-5.173449,51.715051],[-5.170052,51.718884],[-5.167698,51.71976],[-5.166566,51.721496],[-5.167177,51.721961],[-5.166744,51.721989],[-5.166322,51.722598],[-5.165683,51.723022],[-5.165884,51.72383],[-5.164697,51.724849],[-5.16528,51.723371],[-5.163485,51.723813],[-5.166224,51.720107],[-5.166227,51.719412],[-5.164366,51.717872],[-5.16151,51.717631],[-5.160386,51.717151],[-5.158669,51.715759],[-5.158257,51.714611],[-5.156544,51.712827],[-5.152912,51.712444],[-5.149101,51.712615],[-5.143287,51.713968],[-5.140193,51.713119],[-5.135741,51.71269],[-5.134132,51.713196],[-5.135067,51.714363],[-5.134677,51.715382],[-5.132202,51.715208],[-5.132136,51.716306],[-5.129811,51.717038],[-5.128953,51.716258],[-5.127861,51.717225],[-5.126828,51.716668],[-5.124585,51.717436],[-5.122401,51.716396],[-5.121287,51.714791],[-5.120085,51.715235],[-5.119078,51.714343],[-5.119053,51.712709],[-5.118134,51.712044],[-5.118403,51.711131],[-5.11742,51.710595],[-5.115929,51.710636],[-5.113876,51.711537],[-5.115116,51.711942],[-5.115504,51.7138],[-5.112751,51.714209],[-5.11249,51.715783],[-5.111704,51.716655],[-5.109923,51.716912],[-5.108541,51.715959],[-5.10571,51.71698],[-5.107291,51.718125],[-5.106707,51.719679],[-5.104636,51.720507],[-5.105214,51.721614],[-5.107086,51.723008],[-5.107595,51.7247],[-5.106306,51.725329],[-5.107304,51.728157],[-5.104415,51.730955],[-5.10527,51.732407],[-5.104334,51.734973],[-5.101236,51.734586],[-5.097116,51.736336],[-5.09569,51.737599],[-5.093988,51.738376],[-5.096937,51.734564],[-5.103651,51.732236],[-5.102039,51.729247],[-5.103453,51.728774],[-5.104695,51.727649],[-5.104911,51.726621],[-5.104256,51.725354],[-5.105134,51.723588],[-5.103563,51.723075],[-5.100745,51.722889],[-5.099643,51.722244],[-5.098175,51.722508],[-5.095515,51.721184],[-5.095106,51.720131],[-5.09509,51.716964],[-5.094458,51.716218],[-5.092393,51.715456],[-5.09237,51.714738],[-5.090165,51.713896],[-5.088635,51.713878],[-5.088192,51.7124],[-5.086313,51.711665],[-5.086804,51.710402],[-5.088087,51.709907],[-5.087931,51.707514],[-5.086492,51.707265],[-5.084975,51.706292],[-5.082726,51.706585],[-5.081054,51.706443],[-5.078033,51.707421],[-5.075953,51.706499],[-5.074621,51.706263],[-5.071431,51.706776],[-5.069896,51.707843],[-5.064838,51.707915],[-5.062928,51.707492],[-5.062579,51.709415],[-5.060339,51.710062],[-5.056826,51.709381],[-5.056905,51.707919],[-5.053864,51.707272],[-5.051059,51.707406],[-5.048944,51.708463],[-5.045055,51.708205],[-5.043544,51.707574],[-5.041478,51.707672],[-5.034226,51.711171],[-5.029641,51.709442],[-5.025993,51.709436],[-5.022676,51.707929],[-5.020065,51.71268],[-5.020774,51.714392],[-5.017586,51.714813],[-5.018381,51.713615],[-5.017978,51.712886],[-5.018842,51.710627],[-5.019959,51.709478],[-5.020025,51.708643],[-5.021235,51.70812],[-5.019316,51.706581],[-5.015716,51.705356],[-5.013853,51.704407],[-5.012929,51.704481],[-5.00838,51.702689],[-5.005377,51.702397],[-5.00089,51.701206],[-4.99701,51.70089],[-4.990007,51.699799],[-4.98727,51.699831],[-4.984884,51.699374],[-4.982785,51.700118],[-4.979487,51.700392],[-4.976772,51.701157],[-4.974859,51.70236],[-4.971632,51.703544],[-4.971304,51.704577],[-4.96837,51.705592],[-4.964884,51.705383],[-4.958543,51.706837],[-4.956151,51.707521],[-4.948824,51.70481],[-4.946729,51.704342],[-4.943232,51.705238],[-4.943198,51.708792],[-4.942524,51.710184],[-4.942793,51.711356],[-4.942254,51.713818],[-4.9441,51.716037],[-4.943126,51.716793],[-4.940525,51.713626],[-4.941727,51.712465],[-4.94086,51.709882],[-4.941863,51.708616],[-4.93999,51.708405],[-4.938369,51.709142],[-4.934658,51.709605],[-4.928602,51.70891],[-4.926785,51.708099],[-4.925053,51.706501],[-4.922817,51.706202],[-4.920582,51.705145],[-4.91662,51.70631],[-4.913109,51.709187],[-4.91099,51.710035],[-4.909008,51.71119],[-4.903868,51.712055],[-4.8988,51.7117],[-4.897114,51.710788],[-4.894935,51.711032],[-4.892896,51.713526],[-4.893446,51.716991],[-4.892008,51.719493],[-4.889521,51.722457],[-4.887973,51.72498],[-4.889569,51.727011],[-4.888465,51.728546],[-4.888533,51.729474],[-4.887316,51.730563],[-4.887251,51.731408],[-4.888963,51.732909],[-4.891464,51.734151],[-4.8961,51.735476],[-4.900579,51.737339],[-4.90261,51.739993],[-4.903995,51.740961],[-4.905173,51.741214],[-4.903673,51.743135],[-4.905134,51.744169],[-4.908516,51.744159],[-4.910665,51.745951],[-4.907768,51.74563],[-4.905504,51.74577],[-4.90517,51.747459],[-4.903532,51.746246],[-4.902245,51.746007],[-4.900127,51.746655],[-4.899311,51.748063],[-4.90091,51.752764],[-4.900791,51.754396],[-4.903212,51.756647],[-4.904474,51.758424],[-4.905928,51.75987],[-4.90789,51.760477],[-4.908895,51.761451],[-4.911381,51.762593],[-4.915167,51.762394],[-4.915702,51.7635],[-4.914224,51.764027],[-4.911293,51.764103],[-4.909423,51.763288],[-4.907187,51.761053],[-4.903245,51.76125],[-4.90036,51.762046],[-4.899907,51.762433],[-4.901545,51.76541],[-4.904032,51.767001],[-4.907882,51.76822],[-4.910396,51.769911],[-4.915536,51.77133],[-4.919352,51.771315],[-4.921243,51.771004],[-4.931295,51.767683],[-4.934074,51.767169],[-4.934474,51.766366],[-4.937784,51.765275],[-4.940324,51.765312],[-4.944011,51.766749],[-4.946135,51.768471],[-4.947806,51.769484],[-4.946783,51.770581],[-4.947327,51.772623],[-4.946477,51.774029],[-4.946547,51.77502],[-4.945618,51.77598],[-4.945979,51.776959],[-4.944993,51.778539],[-4.941173,51.780756],[-4.936283,51.782461],[-4.937975,51.78433],[-4.94242,51.785251],[-4.944767,51.786612],[-4.945604,51.787487],[-4.948591,51.787991],[-4.952688,51.789766],[-4.953384,51.790917],[-4.953904,51.792949],[-4.954979,51.794506],[-4.956412,51.794871],[-4.956983,51.796141],[-4.959427,51.796189],[-4.961586,51.798381],[-4.963694,51.798401],[-4.96577,51.799217],[-4.96702,51.801309],[-4.966427,51.801402],[-4.965441,51.799313],[-4.963436,51.798661],[-4.961993,51.798852],[-4.960548,51.798108],[-4.959128,51.796564],[-4.956869,51.796441],[-4.954264,51.794882],[-4.951736,51.790843],[-4.949447,51.789295],[-4.943707,51.788283],[-4.941128,51.786226],[-4.937461,51.785817],[-4.934484,51.784171],[-4.933922,51.783195],[-4.934326,51.781578],[-4.935788,51.780399],[-4.942317,51.777555],[-4.943327,51.775219],[-4.943734,51.771263],[-4.943479,51.770352],[-4.941807,51.767764],[-4.939478,51.76699],[-4.937175,51.767468],[-4.932199,51.771455],[-4.928842,51.772583],[-4.928127,51.773392],[-4.923476,51.774363],[-4.922653,51.774855],[-4.915721,51.774049],[-4.912652,51.773186],[-4.910623,51.773019],[-4.908453,51.773388],[-4.908636,51.774851],[-4.909837,51.775838],[-4.910198,51.777021],[-4.909159,51.7782],[-4.909598,51.779636],[-4.908768,51.780442],[-4.910261,51.783806],[-4.9084,51.78467],[-4.907576,51.784159],[-4.908749,51.78298],[-4.907765,51.779858],[-4.907973,51.776075],[-4.906215,51.775347],[-4.90563,51.773067],[-4.901453,51.771699],[-4.897183,51.76848],[-4.895014,51.768416],[-4.891419,51.770922],[-4.889097,51.771666],[-4.888252,51.772929],[-4.885485,51.772456],[-4.883216,51.774281],[-4.881903,51.774955],[-4.879936,51.774922],[-4.87761,51.774395],[-4.874627,51.775188],[-4.872781,51.777169],[-4.870735,51.778084],[-4.870388,51.778967],[-4.868868,51.779566],[-4.868066,51.782407],[-4.86568,51.784811],[-4.862007,51.785942],[-4.86176,51.787366],[-4.860026,51.788027],[-4.858982,51.787652],[-4.857574,51.788922],[-4.854354,51.789149],[-4.85412,51.790433],[-4.846611,51.790826],[-4.842384,51.790546],[-4.842081,51.790894],[-4.837204,51.791315],[-4.835166,51.791277],[-4.831112,51.79007],[-4.82894,51.790171],[-4.825464,51.790868],[-4.823357,51.792591],[-4.817589,51.795498],[-4.820267,51.793368],[-4.822914,51.791976],[-4.823543,51.791122],[-4.827458,51.789731],[-4.831572,51.789159],[-4.83567,51.789619],[-4.83922,51.789559],[-4.841918,51.78862],[-4.844109,51.788644],[-4.848243,51.787757],[-4.851378,51.787715],[-4.85442,51.787077],[-4.861093,51.784626],[-4.859707,51.783409],[-4.860983,51.783213],[-4.86285,51.784046],[-4.86426,51.783728],[-4.864883,51.782696],[-4.865295,51.779896],[-4.866313,51.778869],[-4.86759,51.775728],[-4.872272,51.77265],[-4.872342,51.771968],[-4.870694,51.770986],[-4.871601,51.770631],[-4.873273,51.772214],[-4.877021,51.771064],[-4.879606,51.770753],[-4.880878,51.769754],[-4.882007,51.77012],[-4.885184,51.768973],[-4.886864,51.767627],[-4.888239,51.767046],[-4.888694,51.765094],[-4.889655,51.76349],[-4.886434,51.762003],[-4.886012,51.761004],[-4.884312,51.761137],[-4.882202,51.76082],[-4.883162,51.759977],[-4.884659,51.759782],[-4.886629,51.760518],[-4.889557,51.760171],[-4.889997,51.757934],[-4.891873,51.756807],[-4.89406,51.754215],[-4.893838,51.752211],[-4.892872,51.751311],[-4.892571,51.74985],[-4.893688,51.747273],[-4.893849,51.744744],[-4.895527,51.743362],[-4.896984,51.740669],[-4.896034,51.73985],[-4.892497,51.738818],[-4.887978,51.738187],[-4.887455,51.737565],[-4.884926,51.736534],[-4.883637,51.735583],[-4.881527,51.73504],[-4.878637,51.735976],[-4.877338,51.734281],[-4.87204,51.733483],[-4.870891,51.732296],[-4.874523,51.731824],[-4.880853,51.732522],[-4.88315,51.732058],[-4.884228,51.729237],[-4.884486,51.7266],[-4.883269,51.721969],[-4.884146,51.71932],[-4.88244,51.719242],[-4.881316,51.718575],[-4.87854,51.718275],[-4.877662,51.718935],[-4.874806,51.719273],[-4.872446,51.720195],[-4.870107,51.722703],[-4.869648,51.723962],[-4.867328,51.723654],[-4.865087,51.722562],[-4.863697,51.722388],[-4.861472,51.723205],[-4.85929,51.722627],[-4.85617,51.722521],[-4.854467,51.723381],[-4.855447,51.725071],[-4.85378,51.724933],[-4.851797,51.723941],[-4.850905,51.724418],[-4.84566,51.725613],[-4.844195,51.725062],[-4.837979,51.724991],[-4.836033,51.723849],[-4.834544,51.723741],[-4.832591,51.725559],[-4.829825,51.725812],[-4.825552,51.725396],[-4.827288,51.724702],[-4.829638,51.725094],[-4.831736,51.724779],[-4.8321,51.723506],[-4.833443,51.72204],[-4.835531,51.721874],[-4.839361,51.722606],[-4.842285,51.722845],[-4.845791,51.722654],[-4.848061,51.722251],[-4.850942,51.719753],[-4.853932,51.720408],[-4.8547,51.717734],[-4.855689,51.717599],[-4.855899,51.720252],[-4.857926,51.720354],[-4.859221,51.719735],[-4.861118,51.719758],[-4.860569,51.718475],[-4.858741,51.717802],[-4.857923,51.716756],[-4.856115,51.716058],[-4.855005,51.715135],[-4.854462,51.713429],[-4.851685,51.711798],[-4.849977,51.711084],[-4.849914,51.70958],[-4.847366,51.70911],[-4.845762,51.707407],[-4.846374,51.705852],[-4.848237,51.705985],[-4.849429,51.705472],[-4.847781,51.703083],[-4.845428,51.701256],[-4.843822,51.700807],[-4.838627,51.701453],[-4.835506,51.700067],[-4.831896,51.700183],[-4.827319,51.699683],[-4.826712,51.699106],[-4.830676,51.699106],[-4.831677,51.698657],[-4.834816,51.698441],[-4.839004,51.700168],[-4.841389,51.700187],[-4.843442,51.699657],[-4.843233,51.697679],[-4.839978,51.695031],[-4.840583,51.6944],[-4.842514,51.695154],[-4.844381,51.697314],[-4.846246,51.697538],[-4.84514,51.699967],[-4.845848,51.700628],[-4.847392,51.700257],[-4.851292,51.697699],[-4.852467,51.698047],[-4.850095,51.700383],[-4.850321,51.70126],[-4.849118,51.701725],[-4.848917,51.702503],[-4.85251,51.704764],[-4.855652,51.705748],[-4.855416,51.706698],[-4.85715,51.706901],[-4.859163,51.706528],[-4.857793,51.708032],[-4.864076,51.714602],[-4.868115,51.716293],[-4.873137,51.716895],[-4.877815,51.716283],[-4.880486,51.71673],[-4.885345,51.716455],[-4.886081,51.715554],[-4.888126,51.710335],[-4.892115,51.707572],[-4.891124,51.706024],[-4.894442,51.707727],[-4.89612,51.70764],[-4.900848,51.708353],[-4.904138,51.707907],[-4.906751,51.706204],[-4.907475,51.704883],[-4.909219,51.703427],[-4.913937,51.70082],[-4.917647,51.6994],[-4.918688,51.698612],[-4.91701,51.69753],[-4.914155,51.696651],[-4.906154,51.695601],[-4.900986,51.694537],[-4.899129,51.694588],[-4.896797,51.694111],[-4.893626,51.694369],[-4.896452,51.692699],[-4.89703,51.69327],[-4.901078,51.693494],[-4.901986,51.693199],[-4.905728,51.694464],[-4.907526,51.69459],[-4.911632,51.694089],[-4.912065,51.692586],[-4.913998,51.692381],[-4.91473,51.693884],[-4.917817,51.694019],[-4.919634,51.692219],[-4.91977,51.695069],[-4.920457,51.696438],[-4.921957,51.697492],[-4.921228,51.699989],[-4.920508,51.700749],[-4.925099,51.701808],[-4.929122,51.703841],[-4.931248,51.704533],[-4.933041,51.704246],[-4.934794,51.701421],[-4.937149,51.700721],[-4.939935,51.699431],[-4.941341,51.699732],[-4.943843,51.698876],[-4.9427,51.697208],[-4.943022,51.695537],[-4.947682,51.695908],[-4.950573,51.696593],[-4.956829,51.697634],[-4.95888,51.697476],[-4.960353,51.693046],[-4.961335,51.692462],[-4.964506,51.69154],[-4.966273,51.691553],[-4.966816,51.690581],[-4.969464,51.688566],[-4.971401,51.688649],[-4.973045,51.688296],[-4.974994,51.688705],[-4.97644,51.688333],[-4.976508,51.687119],[-4.974934,51.686291],[-4.971369,51.685872],[-4.968753,51.684577],[-4.966202,51.684007],[-4.965112,51.683401],[-4.962953,51.683686],[-4.958554,51.683181],[-4.953993,51.681276],[-4.951119,51.681006],[-4.946198,51.679977],[-4.943428,51.680492],[-4.93946,51.679916],[-4.937176,51.681043],[-4.933286,51.681144],[-4.930676,51.681764],[-4.92948,51.681078],[-4.926028,51.680978],[-4.924354,51.679756],[-4.922404,51.679549],[-4.922369,51.67865],[-4.924825,51.679301],[-4.925623,51.679994],[-4.930181,51.680613],[-4.93303,51.679635],[-4.936191,51.679512],[-4.935062,51.678019],[-4.937682,51.677482],[-4.935115,51.676639],[-4.937731,51.676122],[-4.936341,51.674675],[-4.936319,51.67374],[-4.937159,51.672449],[-4.93903,51.673644],[-4.939293,51.674723],[-4.940931,51.676371],[-4.939462,51.67688],[-4.940938,51.677537],[-4.942139,51.676764],[-4.946289,51.677025],[-4.947744,51.676433],[-4.949958,51.676781],[-4.952805,51.675431],[-4.955376,51.676314],[-4.958273,51.675467],[-4.959699,51.675972],[-4.960538,51.675577],[-4.961836,51.676633],[-4.964516,51.676533],[-4.967362,51.675146],[-4.971958,51.674668],[-4.973204,51.673964],[-4.975486,51.674312],[-4.979681,51.674554],[-4.981713,51.674165],[-4.97899,51.67614],[-4.978485,51.677711],[-4.980061,51.679124],[-4.98184,51.679811],[-4.981982,51.681083],[-4.984329,51.683493],[-4.986301,51.683928],[-4.98654,51.684761],[-4.985086,51.684932],[-4.983923,51.686238],[-4.981965,51.686546],[-4.979964,51.686404],[-4.98126,51.689134],[-4.982256,51.689555],[-4.984677,51.689673],[-4.989049,51.688517],[-4.989967,51.688921],[-4.994037,51.689219],[-4.995475,51.689693],[-4.997416,51.689305],[-4.9994,51.689858],[-5.001757,51.689613],[-5.00451,51.689739],[-5.007489,51.68732],[-5.007457,51.688394],[-5.009587,51.690319],[-5.012379,51.690502],[-5.014568,51.691152],[-5.016728,51.691049],[-5.020881,51.691683],[-5.027498,51.694638],[-5.029238,51.694605],[-5.031832,51.694987],[-5.035525,51.695],[-5.038466,51.693429],[-5.040831,51.694548],[-5.044748,51.694713],[-5.047505,51.693846],[-5.051185,51.693872],[-5.051087,51.692091],[-5.05173,51.690448],[-5.056688,51.687863],[-5.051141,51.686828],[-5.049627,51.68681],[-5.046879,51.685354],[-5.044629,51.684805],[-5.043832,51.682917],[-5.042275,51.681144],[-5.043586,51.678072],[-5.045497,51.676599],[-5.046821,51.676224],[-5.049395,51.676382],[-5.051052,51.675935],[-5.053568,51.67666],[-5.056896,51.676654],[-5.059643,51.677789],[-5.065376,51.676774],[-5.067932,51.676804],[-5.073637,51.67779],[-5.075932,51.67873],[-5.078473,51.679233],[-5.080841,51.681923],[-5.083215,51.682302],[-5.085919,51.684288],[-5.084831,51.684884],[-5.081975,51.68407],[-5.080422,51.685363],[-5.079274,51.68555],[-5.075942,51.686968],[-5.075273,51.687813],[-5.077885,51.68841],[-5.080155,51.689854],[-5.08223,51.689814],[-5.087885,51.69049],[-5.090921,51.69022],[-5.093836,51.690559],[-5.095441,51.690139],[-5.098334,51.691088],[-5.100613,51.691421],[-5.102256,51.691282],[-5.105005,51.692106],[-5.107427,51.691947],[-5.109959,51.692296],[-5.113357,51.690969],[-5.113705,51.690035],[-5.110052,51.689158],[-5.10947,51.687482],[-5.106708,51.686854],[-5.107785,51.685175],[-5.112229,51.686037],[-5.112245,51.684826],[-5.113806,51.684251],[-5.1155,51.684586],[-5.116254,51.683733],[-5.120295,51.684036],[-5.1232,51.682484],[-5.124362,51.682423],[-5.123968,51.680443],[-5.122318,51.680486],[-5.121882,51.678836],[-5.119038,51.677141],[-5.119923,51.676342],[-5.117498,51.674719],[-5.118568,51.674171],[-5.119413,51.67251],[-5.120901,51.672039],[-5.123386,51.671844],[-5.122345,51.671049],[-5.120161,51.67116],[-5.117759,51.673007],[-5.112559,51.673847],[-5.113423,51.672073],[-5.109266,51.67129],[-5.108614,51.669777],[-5.107202,51.668831],[-5.105537,51.669696],[-5.104357,51.669549],[-5.104282,51.668287],[-5.102895,51.668475],[-5.100809,51.667245],[-5.096136,51.667871],[-5.094796,51.668569],[-5.094011,51.667507],[-5.092368,51.666354],[-5.089468,51.667063],[-5.089019,51.665927],[-5.087137,51.666301],[-5.084824,51.665258],[-5.082228,51.664939],[-5.080221,51.6652],[-5.076938,51.664473],[-5.075139,51.665054],[-5.072821,51.664364],[-5.070655,51.665012],[-5.068476,51.664332],[-5.06712,51.664514],[-5.06501,51.663329],[-5.060129,51.657482],[-5.058554,51.654763],[-5.058655,51.653206],[-5.05689,51.652085],[-5.05552,51.650135],[-5.054892,51.648072],[-5.055226,51.647465],[-5.052305,51.645408],[-5.050358,51.641097],[-5.050003,51.638417],[-5.050265,51.637245],[-5.052957,51.636447],[-5.051874,51.635945],[-5.051868,51.634895],[-5.050069,51.634268],[-5.050981,51.633002],[-5.052556,51.633245],[-5.057515,51.63266],[-5.059915,51.63154],[-5.060378,51.630272],[-5.062114,51.629274],[-5.062861,51.626161],[-5.062985,51.624467],[-5.062438,51.622928],[-5.060718,51.622423],[-5.059684,51.621629],[-5.059411,51.620603],[-5.057075,51.620127],[-5.05291,51.620741],[-5.052399,51.619659],[-5.051057,51.619596],[-5.047889,51.620393],[-5.046053,51.618958],[-5.044525,51.618643],[-5.043761,51.619412],[-5.04103,51.619547],[-5.040184,51.619074],[-5.039589,51.617852],[-5.038576,51.617502],[-5.035424,51.617496],[-5.033953,51.618209],[-5.032827,51.618157],[-5.031093,51.616149],[-5.025889,51.614755],[-5.019649,51.613875],[-5.017371,51.612755],[-5.016443,51.611203],[-5.012698,51.609612],[-5.00759,51.608569],[-5.006334,51.609325],[-5.003809,51.609443],[-5.001963,51.610492],[-4.998324,51.610834],[-4.99694,51.610685],[-4.996068,51.611677],[-4.994438,51.611204],[-4.993465,51.612448],[-4.991877,51.612352],[-4.992177,51.611252],[-4.990075,51.611005],[-4.99041,51.612129],[-4.989568,51.612816],[-4.98715,51.612285],[-4.986566,51.611618],[-4.984029,51.611067],[-4.981766,51.60942],[-4.980773,51.609743],[-4.977402,51.609286],[-4.977477,51.610146],[-4.975448,51.610339],[-4.973782,51.609803],[-4.974917,51.607498],[-4.973499,51.606014],[-4.972222,51.605794],[-4.965403,51.605863],[-4.962983,51.60531],[-4.96086,51.604426],[-4.958823,51.604496],[-4.955829,51.603726],[-4.956392,51.601838],[-4.955414,51.601149],[-4.95325,51.601384],[-4.952587,51.599803],[-4.951581,51.600481],[-4.949668,51.599894],[-4.949494,51.598179],[-4.948374,51.597037],[-4.94703,51.597643],[-4.9448,51.597105],[-4.944167,51.597905],[-4.942592,51.597242],[-4.940753,51.59764],[-4.939417,51.597211],[-4.936427,51.598451],[-4.933934,51.598895],[-4.930342,51.5987],[-4.927624,51.597689],[-4.926315,51.596113],[-4.923437,51.597202],[-4.923227,51.597621],[-4.925611,51.599305],[-4.925085,51.601814],[-4.923168,51.602846],[-4.923596,51.604879],[-4.921701,51.605675],[-4.922534,51.606797],[-4.92246,51.608],[-4.9209,51.610133],[-4.919644,51.61004],[-4.918402,51.608675],[-4.916382,51.607827],[-4.914523,51.608297],[-4.913824,51.609388],[-4.915024,51.611134],[-4.913329,51.611339],[-4.910626,51.610823],[-4.907848,51.612062],[-4.906498,51.611679],[-4.904253,51.612741],[-4.902643,51.612527],[-4.901924,51.610423],[-4.900797,51.611476],[-4.898162,51.610256],[-4.896048,51.611166],[-4.897136,51.613127],[-4.899452,51.613577],[-4.901081,51.614297],[-4.900674,51.616023],[-4.901955,51.6167],[-4.904061,51.61706],[-4.90389,51.61926],[-4.902059,51.619416],[-4.900291,51.620275],[-4.897997,51.621793],[-4.898165,51.622591],[-4.901058,51.6242],[-4.900071,51.625673],[-4.898366,51.626308],[-4.898885,51.626888],[-4.896813,51.628633],[-4.890177,51.631386],[-4.888287,51.630875],[-4.886194,51.63101],[-4.884708,51.631506],[-4.884509,51.63218],[-4.881843,51.63225],[-4.880356,51.632683],[-4.880115,51.635007],[-4.87835,51.635161],[-4.877107,51.637154],[-4.873233,51.637395],[-4.871712,51.638069],[-4.870485,51.637774],[-4.868728,51.638591],[-4.866118,51.638028],[-4.865553,51.638431],[-4.863273,51.638299],[-4.861772,51.638725],[-4.863521,51.640044],[-4.867524,51.641013],[-4.86712,51.643425],[-4.863597,51.645846],[-4.860789,51.647108],[-4.856038,51.647193],[-4.851056,51.64684],[-4.849915,51.646514],[-4.848361,51.647334],[-4.846542,51.646154],[-4.846229,51.645333],[-4.843585,51.644779],[-4.840232,51.644863],[-4.838377,51.645371],[-4.836126,51.645211],[-4.83612,51.646567],[-4.83485,51.647904],[-4.830472,51.647762],[-4.82977,51.647156],[-4.8276,51.647255],[-4.825024,51.645679],[-4.82624,51.644365],[-4.826442,51.643444],[-4.82503,51.642587],[-4.820627,51.642572],[-4.819951,51.643116],[-4.816949,51.6432],[-4.815629,51.645214],[-4.813174,51.644918],[-4.811118,51.644049],[-4.807171,51.644223],[-4.804281,51.643315],[-4.80351,51.642246],[-4.807107,51.640897],[-4.807543,51.639867],[-4.80655,51.63905],[-4.799974,51.638203],[-4.798535,51.639064],[-4.795783,51.637596],[-4.794072,51.638136],[-4.79257,51.637625],[-4.791837,51.639129],[-4.786908,51.638112],[-4.787273,51.636792],[-4.786084,51.635366],[-4.78434,51.634975],[-4.783007,51.635332],[-4.781059,51.634933],[-4.78024,51.635861],[-4.780891,51.636415],[-4.779523,51.637896],[-4.777175,51.639325],[-4.775142,51.639909],[-4.777258,51.641288],[-4.777117,51.64243],[-4.770499,51.642707],[-4.770162,51.643596],[-4.768583,51.644177],[-4.764921,51.643629],[-4.760989,51.644426],[-4.759275,51.643747],[-4.75594,51.644006],[-4.756088,51.646059],[-4.760434,51.646309],[-4.761346,51.646813],[-4.761631,51.648773],[-4.76012,51.651372],[-4.756851,51.653684],[-4.754255,51.653195],[-4.752106,51.65332],[-4.751415,51.653754],[-4.747848,51.652779],[-4.746094,51.652609],[-4.744139,51.653297],[-4.743511,51.653908],[-4.740713,51.653464],[-4.740655,51.654131],[-4.737568,51.65318],[-4.736503,51.652113],[-4.732225,51.652713],[-4.73046,51.652184],[-4.727204,51.651732],[-4.723172,51.652336],[-4.720862,51.651652],[-4.716843,51.65258],[-4.714377,51.652541],[-4.713421,51.652072],[-4.710796,51.652078],[-4.71301,51.65366],[-4.71606,51.6543],[-4.716361,51.65519],[-4.715917,51.65666],[-4.714281,51.658785],[-4.708947,51.663937],[-4.70322,51.668261],[-4.700321,51.668628],[-4.697457,51.670728],[-4.695786,51.670986],[-4.695014,51.671983],[-4.693354,51.67196],[-4.694003,51.672972],[-4.696752,51.672719],[-4.69818,51.672282],[-4.700849,51.67345],[-4.701873,51.674543],[-4.701809,51.676961],[-4.700339,51.679064],[-4.699348,51.679899],[-4.697752,51.683052],[-4.697149,51.683736],[-4.697495,51.685101],[-4.696153,51.685256],[-4.695899,51.686111],[-4.69446,51.687208],[-4.694797,51.688039],[-4.692391,51.688642],[-4.69159,51.689655],[-4.690327,51.689645],[-4.688811,51.690382],[-4.688454,51.691187],[-4.689683,51.691817],[-4.689206,51.69287],[-4.687825,51.69318],[-4.685823,51.694537],[-4.685024,51.696219],[-4.681386,51.698082],[-4.685112,51.698344],[-4.687846,51.698878],[-4.688247,51.699997],[-4.691182,51.702462],[-4.693864,51.705363],[-4.695114,51.705902],[-4.695881,51.707192],[-4.696239,51.70912],[-4.698523,51.709462],[-4.697907,51.711131],[-4.695336,51.713945],[-4.692216,51.716603],[-4.690045,51.716646],[-4.690362,51.718275],[-4.687791,51.720673],[-4.687792,51.721546],[-4.686427,51.722456],[-4.680697,51.725101],[-4.678679,51.725387],[-4.676273,51.727156],[-4.662784,51.73129],[-4.654068,51.73297],[-4.644421,51.734081],[-4.643104,51.733732],[-4.64051,51.734702],[-4.632654,51.735099],[-4.632592,51.736003],[-4.633484,51.73685],[-4.632619,51.737725],[-4.634293,51.7383],[-4.63545,51.740023],[-4.633125,51.741469],[-4.632251,51.742697],[-4.633054,51.745325],[-4.63314,51.746561],[-4.630387,51.747505],[-4.627238,51.750725],[-4.627699,51.751686],[-4.629834,51.752347],[-4.630252,51.753955],[-4.629629,51.755401],[-4.630587,51.756817],[-4.62996,51.7582],[-4.627396,51.760544],[-4.626326,51.76236],[-4.623509,51.763009],[-4.623823,51.765373],[-4.622597,51.767332],[-4.623205,51.769311],[-4.624404,51.770363],[-4.624379,51.771084],[-4.626243,51.771565],[-4.62779,51.771109],[-4.630584,51.77118],[-4.63514,51.770529],[-4.635907,51.772376],[-4.637801,51.774319],[-4.63973,51.775463],[-4.643559,51.776223],[-4.645405,51.778441],[-4.641243,51.779991],[-4.638995,51.781352],[-4.63762,51.781511],[-4.637106,51.782768],[-4.634264,51.783268],[-4.63472,51.784598],[-4.634119,51.785014],[-4.636901,51.786694],[-4.637319,51.78938],[-4.638831,51.789735],[-4.641425,51.791004],[-4.641625,51.793287],[-4.644198,51.796522],[-4.644402,51.797616],[-4.643504,51.798105],[-4.640755,51.798348],[-4.637706,51.799087],[-4.637274,51.800269],[-4.635388,51.801402],[-4.630255,51.802988],[-4.626072,51.803264],[-4.621483,51.80545],[-4.621241,51.806288],[-4.618277,51.807642],[-4.618231,51.80994],[-4.616846,51.811158],[-4.619547,51.81312],[-4.620585,51.814654],[-4.621917,51.814436],[-4.6219,51.816044],[-4.626044,51.815885],[-4.627343,51.816098],[-4.627815,51.817492],[-4.629196,51.817392],[-4.629384,51.818344],[-4.631451,51.81874],[-4.632387,51.820631],[-4.633891,51.820513],[-4.633806,51.822168],[-4.636604,51.822366],[-4.637965,51.822161],[-4.639947,51.823465],[-4.641593,51.825284],[-4.643337,51.824785],[-4.643432,51.825986],[-4.64195,51.826546],[-4.643145,51.82732],[-4.642628,51.828884],[-4.644068,51.830526],[-4.645103,51.830461],[-4.646567,51.831225],[-4.649876,51.831766],[-4.652172,51.832499],[-4.654532,51.832195],[-4.65511,51.83123],[-4.656839,51.831167],[-4.657264,51.832246],[-4.660437,51.832153],[-4.661595,51.832986],[-4.664826,51.83396],[-4.665102,51.834992],[-4.668213,51.83543],[-4.669597,51.836696],[-4.670911,51.835857],[-4.672806,51.835635],[-4.675718,51.83624],[-4.678386,51.836334],[-4.682307,51.837549],[-4.68422,51.839589],[-4.689393,51.839248],[-4.691843,51.839436],[-4.694355,51.838865],[-4.699936,51.839253],[-4.704263,51.83912],[-4.704911,51.840602],[-4.704513,51.842849],[-4.705141,51.844474],[-4.708576,51.845302],[-4.708567,51.84735],[-4.70645,51.848902],[-4.704408,51.851591],[-4.70362,51.851923],[-4.700179,51.851111],[-4.700075,51.853419],[-4.701744,51.854712],[-4.697215,51.857188],[-4.694952,51.857015],[-4.694976,51.85818],[-4.694102,51.85962],[-4.696888,51.861618],[-4.696464,51.862295],[-4.697734,51.863802],[-4.696537,51.865891],[-4.69813,51.866736],[-4.69959,51.868086],[-4.69913,51.868754],[-4.69975,51.870634],[-4.698969,51.872521],[-4.699172,51.873539],[-4.700149,51.874677],[-4.70032,51.877895],[-4.700887,51.87885],[-4.703142,51.879764],[-4.705765,51.88209],[-4.706299,51.88488],[-4.707091,51.886458],[-4.706531,51.888061],[-4.707084,51.889121],[-4.711207,51.888824],[-4.713347,51.888413],[-4.717663,51.888305],[-4.716242,51.891012],[-4.715139,51.891704],[-4.717225,51.892186],[-4.71911,51.893889],[-4.720823,51.89354],[-4.723104,51.895698],[-4.721712,51.897921],[-4.720736,51.898334],[-4.713538,51.899238],[-4.712629,51.907964],[-4.713009,51.909079],[-4.715709,51.911853],[-4.717858,51.912425],[-4.713428,51.915786],[-4.709186,51.916874],[-4.705913,51.918456],[-4.70487,51.920485],[-4.703169,51.920741],[-4.701184,51.921529],[-4.69994,51.921484],[-4.697934,51.922602],[-4.695514,51.923455],[-4.689056,51.923173],[-4.687747,51.923672],[-4.685795,51.923752],[-4.684777,51.924372],[-4.68253,51.924813],[-4.676869,51.927497],[-4.673313,51.928425],[-4.672987,51.929134],[-4.671292,51.930398],[-4.670393,51.932379],[-4.66789,51.934078],[-4.665231,51.929475],[-4.660332,51.926885],[-4.655337,51.924937],[-4.651013,51.922476],[-4.647488,51.921753],[-4.645577,51.920611],[-4.64115,51.920439],[-4.637495,51.918895],[-4.635611,51.918596],[-4.632461,51.920867],[-4.629132,51.922057],[-4.6292,51.923075],[-4.627483,51.924124],[-4.628508,51.925416],[-4.626613,51.928617],[-4.625131,51.928888],[-4.623528,51.92851],[-4.622419,51.929031],[-4.620554,51.92911],[-4.616651,51.930886],[-4.612786,51.931855],[-4.612014,51.932564],[-4.609224,51.933598],[-4.608788,51.934438],[-4.607453,51.934975],[-4.607591,51.936721],[-4.606544,51.937964],[-4.599954,51.94093],[-4.598336,51.941027],[-4.596603,51.939442],[-4.595164,51.936547],[-4.593715,51.934957],[-4.587811,51.93179],[-4.586217,51.931752],[-4.584446,51.932344],[-4.581742,51.931973],[-4.577685,51.931914],[-4.575976,51.932976],[-4.572911,51.933485],[-4.569479,51.935052],[-4.566262,51.937532],[-4.559972,51.946936],[-4.555898,51.94948],[-4.552619,51.949354],[-4.552634,51.950656],[-4.551674,51.951925],[-4.548031,51.95279],[-4.546207,51.953646],[-4.544069,51.953994],[-4.541426,51.956583],[-4.535251,51.956334],[-4.532765,51.954423],[-4.519288,51.957844],[-4.513068,51.958606],[-4.497784,51.961331],[-4.493311,51.96131],[-4.492776,51.962821],[-4.490352,51.965611],[-4.48775,51.967783],[-4.488007,51.971354],[-4.486979,51.974115],[-4.485614,51.975739],[-4.486746,51.976797],[-4.487097,51.977981],[-4.486515,51.979071],[-4.4867,51.980783],[-4.488155,51.983519],[-4.488082,51.984778],[-4.486991,51.987218],[-4.487111,51.988683],[-4.489692,51.990403],[-4.493933,51.992542],[-4.494893,51.992253],[-4.500157,51.992003],[-4.502233,51.992821],[-4.503106,51.992445],[-4.5072,51.99336],[-4.512275,51.994913],[-4.513812,51.997812],[-4.51563,52.000018],[-4.515252,52.000443],[-4.515582,52.002222],[-4.520288,52.004806],[-4.521429,52.006852],[-4.521486,52.008387],[-4.522609,52.009487],[-4.522158,52.010336],[-4.523012,52.011252],[-4.525205,52.012378],[-4.526677,52.012126],[-4.529904,52.013567],[-4.53547,52.017783],[-4.537467,52.017528],[-4.541528,52.01802],[-4.543306,52.017737],[-4.544963,52.018242],[-4.545387,52.020155],[-4.546492,52.021215],[-4.548016,52.021726],[-4.549333,52.026624],[-4.549033,52.027606],[-4.54966,52.029195],[-4.549399,52.030153],[-4.551088,52.030444],[-4.55118,52.031458],[-4.550375,52.032789],[-4.550855,52.033484],[-4.55014,52.035422],[-4.551986,52.037299],[-4.551239,52.038056],[-4.552897,52.039834],[-4.555086,52.04149],[-4.556421,52.041454],[-4.558355,52.042393],[-4.559755,52.043726],[-4.561331,52.045533],[-4.563016,52.049075],[-4.5633,52.050955],[-4.565754,52.054608],[-4.565892,52.056842],[-4.568634,52.058336],[-4.570259,52.058869],[-4.57346,52.058407],[-4.575557,52.057376],[-4.581294,52.0579],[-4.58395,52.058721],[-4.584752,52.059529],[-4.585308,52.061331],[-4.589504,52.06113],[-4.591717,52.062018],[-4.595581,52.062649],[-4.602553,52.062076],[-4.608124,52.062097],[-4.609318,52.060805],[-4.60888,52.058987],[-4.609877,52.057697],[-4.611315,52.056932],[-4.61303,52.056686],[-4.615373,52.057057],[-4.620523,52.055917],[-4.624667,52.054497],[-4.629768,52.055989],[-4.631187,52.055961],[-4.632016,52.056972],[-4.634437,52.058273],[-4.635682,52.059771],[-4.636945,52.060452],[-4.639397,52.061318],[-4.640474,52.062525],[-4.641037,52.064395],[-4.642839,52.065606],[-4.641872,52.066952],[-4.637588,52.06826],[-4.636706,52.06901],[-4.638542,52.070224],[-4.638832,52.071614],[-4.639607,52.072613],[-4.642598,52.07462],[-4.643318,52.076651],[-4.644303,52.076709],[-4.645237,52.076958],[-4.645244,52.076959],[-4.647319,52.07665],[-4.647888,52.075858],[-4.649422,52.075436],[-4.65033,52.076615],[-4.651918,52.075067],[-4.650289,52.071741],[-4.65207,52.071225],[-4.652303,52.070119],[-4.65421,52.069108],[-4.654383,52.067671],[-4.655523,52.066604],[-4.65541,52.064282],[-4.656548,52.062471],[-4.657305,52.061916],[-4.660927,52.061265],[-4.662708,52.060256],[-4.663218,52.059243],[-4.664348,52.058822],[-4.66492,52.057808],[-4.666929,52.057538],[-4.668629,52.058033],[-4.669691,52.05967],[-4.672209,52.06107],[-4.673337,52.062529],[-4.677561,52.063465],[-4.678912,52.064171],[-4.680338,52.06372],[-4.681356,52.064881],[-4.680282,52.06685],[-4.682026,52.068064],[-4.682552,52.070392],[-4.680049,52.070484],[-4.678276,52.071099],[-4.677535,52.071804],[-4.675593,52.072402],[-4.673592,52.072349],[-4.670498,52.073772],[-4.669392,52.075378],[-4.670014,52.076687],[-4.672305,52.078846],[-4.671197,52.079809],[-4.669679,52.08037],[-4.670259,52.081111],[-4.672574,52.081062],[-4.672872,52.082017],[-4.67728,52.081829],[-4.678712,52.082362],[-4.680081,52.083628],[-4.681739,52.084358],[-4.682284,52.085403],[-4.681433,52.086798],[-4.682496,52.08976],[-4.681078,52.093022],[-4.681313,52.094635],[-4.682184,52.095606],[-4.685189,52.097099],[-4.685451,52.097813],[-4.689479,52.099489],[-4.691133,52.101166],[-4.688913,52.102094],[-4.689385,52.102966]]]]},"properties":{"LAD22CD":"W06000009","LAD22NM":"Pembrokeshire","BNG_E":199821,"BNG_N":221392,"LONG":-4.90818,"LAT":51.85513,"GlobalID":"eafad38c-89b7-48bb-8894-7783a2232816"},"id":360}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.320739,51.722859],[-4.321665,51.723447],[-4.323998,51.722924],[-4.324106,51.7214],[-4.323134,51.721253],[-4.320739,51.722859]]],[[[-4.333344,51.724935],[-4.334424,51.724646],[-4.334654,51.722663],[-4.332779,51.720678],[-4.331169,51.722792],[-4.332485,51.723567],[-4.333344,51.724935]]],[[[-4.33058,51.725211],[-4.330905,51.725985],[-4.333434,51.725496],[-4.332444,51.724098],[-4.330677,51.722815],[-4.328765,51.722532],[-4.328063,51.721734],[-4.327383,51.721899],[-4.326419,51.72249],[-4.325325,51.722647],[-4.324987,51.723704],[-4.326043,51.724621],[-4.32986,51.725684],[-4.33058,51.725211]]],[[[-4.334365,51.727013],[-4.33452,51.728385],[-4.336492,51.727821],[-4.341606,51.726893],[-4.342764,51.725297],[-4.341911,51.724306],[-4.338437,51.723362],[-4.337732,51.722608],[-4.336443,51.722745],[-4.335543,51.723364],[-4.335228,51.726126],[-4.334365,51.727013]]],[[[-4.335419,51.729497],[-4.340018,51.72995],[-4.340653,51.729421],[-4.341434,51.727018],[-4.334544,51.728589],[-4.335419,51.729497]]],[[[-4.34185,51.729291],[-4.342959,51.730498],[-4.34361,51.728835],[-4.346187,51.72899],[-4.347968,51.728449],[-4.350426,51.729296],[-4.352333,51.728541],[-4.354445,51.728263],[-4.35565,51.728516],[-4.357403,51.727561],[-4.357974,51.726649],[-4.357675,51.725992],[-4.358527,51.726023],[-4.359562,51.725034],[-4.359661,51.722778],[-4.357977,51.723126],[-4.355636,51.722713],[-4.35496,51.723195],[-4.355159,51.72336],[-4.353005,51.72295],[-4.352109,51.724413],[-4.345873,51.724989],[-4.345283,51.725697],[-4.342781,51.726274],[-4.342694,51.727506],[-4.34185,51.729291]]],[[[-4.352803,51.73017],[-4.355604,51.730222],[-4.35596,51.728867],[-4.353686,51.72849],[-4.351811,51.729166],[-4.352803,51.73017]]],[[[-4.345258,51.730639],[-4.346384,51.730994],[-4.34668,51.729508],[-4.344678,51.728922],[-4.343597,51.729175],[-4.343179,51.730125],[-4.345258,51.730639]]],[[[-4.34702,51.731415],[-4.34848,51.730829],[-4.352417,51.730506],[-4.351631,51.729164],[-4.350393,51.729463],[-4.347933,51.729429],[-4.347051,51.730364],[-4.34702,51.731415]]],[[[-3.758102,52.128234],[-3.759937,52.126633],[-3.764618,52.124085],[-3.76415,52.1224],[-3.766005,52.118791],[-3.765703,52.118161],[-3.769088,52.117528],[-3.771891,52.117531],[-3.774061,52.116597],[-3.774701,52.11525],[-3.775002,52.110749],[-3.774123,52.109276],[-3.776327,52.107099],[-3.778444,52.106928],[-3.780273,52.107603],[-3.783289,52.10762],[-3.784161,52.105945],[-3.7861,52.104557],[-3.787496,52.105396],[-3.78631,52.10703],[-3.787948,52.108198],[-3.790934,52.108813],[-3.793848,52.110021],[-3.797018,52.110889],[-3.795434,52.112486],[-3.79805,52.114145],[-3.795067,52.116192],[-3.799563,52.117058],[-3.800204,52.116181],[-3.804622,52.118572],[-3.806308,52.121685],[-3.808897,52.120905],[-3.810855,52.121198],[-3.812061,52.120544],[-3.813715,52.121286],[-3.814903,52.122505],[-3.816302,52.123169],[-3.82281,52.124324],[-3.826524,52.126899],[-3.827788,52.127079],[-3.828915,52.128385],[-3.83047,52.129284],[-3.830528,52.131319],[-3.832777,52.132417],[-3.834243,52.131863],[-3.837327,52.132072],[-3.842193,52.13558],[-3.84501,52.136059],[-3.846774,52.137386],[-3.84906,52.138068],[-3.85266,52.140163],[-3.854394,52.140317],[-3.862321,52.142105],[-3.868695,52.142077],[-3.871827,52.141148],[-3.873785,52.139375],[-3.875802,52.13921],[-3.875715,52.136463],[-3.881266,52.134056],[-3.883335,52.133762],[-3.886288,52.132827],[-3.887191,52.130986],[-3.888815,52.13025],[-3.889583,52.12863],[-3.89145,52.127291],[-3.892304,52.127372],[-3.894159,52.125336],[-3.896854,52.125015],[-3.898861,52.124142],[-3.89893,52.123134],[-3.900056,52.1223],[-3.904322,52.122826],[-3.906019,52.122338],[-3.906723,52.119788],[-3.909043,52.121234],[-3.911016,52.122011],[-3.911696,52.12295],[-3.913616,52.123649],[-3.913642,52.125538],[-3.914964,52.126334],[-3.919829,52.127752],[-3.922719,52.127613],[-3.927503,52.1287],[-3.930996,52.127374],[-3.931134,52.128539],[-3.929699,52.129617],[-3.932674,52.132927],[-3.935471,52.134845],[-3.938981,52.137942],[-3.940489,52.138448],[-3.942605,52.137644],[-3.950882,52.133338],[-3.96427,52.125573],[-3.969642,52.122982],[-3.973683,52.117573],[-3.976068,52.118853],[-3.978601,52.115794],[-3.97904,52.114381],[-3.981503,52.112781],[-3.983377,52.112814],[-3.984291,52.112233],[-3.986142,52.112688],[-3.986618,52.11206],[-3.990479,52.112527],[-3.994488,52.111738],[-3.995841,52.111895],[-3.996711,52.108109],[-4.000329,52.104339],[-4.004118,52.102915],[-4.009387,52.099329],[-4.01874,52.097022],[-4.026061,52.098097],[-4.034572,52.103991],[-4.036259,52.105023],[-4.03774,52.105343],[-4.037845,52.106008],[-4.03988,52.107472],[-4.041206,52.108028],[-4.042413,52.107417],[-4.044753,52.108325],[-4.043756,52.108848],[-4.046963,52.111073],[-4.048876,52.111554],[-4.052152,52.111029],[-4.055376,52.112593],[-4.056377,52.112422],[-4.057688,52.113837],[-4.059724,52.113628],[-4.060867,52.1122],[-4.062948,52.11081],[-4.065445,52.110329],[-4.067532,52.108424],[-4.070008,52.106996],[-4.070849,52.108582],[-4.072854,52.10888],[-4.075602,52.108263],[-4.076577,52.109311],[-4.078815,52.108644],[-4.077826,52.107608],[-4.0753,52.107213],[-4.077023,52.105337],[-4.079311,52.106147],[-4.082855,52.105079],[-4.083142,52.104282],[-4.081471,52.103031],[-4.084183,52.102877],[-4.08484,52.104215],[-4.087766,52.10519],[-4.092809,52.102478],[-4.091005,52.101068],[-4.092047,52.099614],[-4.093166,52.099778],[-4.093801,52.10083],[-4.097401,52.09914],[-4.098013,52.098338],[-4.099762,52.098035],[-4.099382,52.097181],[-4.100055,52.096061],[-4.102331,52.096922],[-4.103342,52.09778],[-4.104779,52.097164],[-4.105007,52.09599],[-4.107215,52.09622],[-4.109123,52.096065],[-4.111688,52.096915],[-4.114024,52.095857],[-4.116924,52.096004],[-4.117791,52.096928],[-4.119487,52.095987],[-4.117818,52.093289],[-4.119617,52.092193],[-4.12081,52.093491],[-4.124311,52.093288],[-4.126381,52.092723],[-4.125515,52.091835],[-4.126974,52.091052],[-4.128265,52.091267],[-4.128245,52.093119],[-4.128923,52.093833],[-4.13074,52.093763],[-4.133985,52.09549],[-4.137128,52.095737],[-4.140486,52.094268],[-4.14436,52.094111],[-4.149403,52.089937],[-4.152707,52.088661],[-4.15458,52.086369],[-4.156073,52.086278],[-4.158674,52.086941],[-4.158899,52.085661],[-4.156208,52.083619],[-4.15297,52.082414],[-4.147269,52.08187],[-4.147398,52.080614],[-4.148662,52.080327],[-4.150719,52.080811],[-4.153049,52.079444],[-4.153876,52.080163],[-4.156681,52.080525],[-4.158417,52.081296],[-4.159319,52.080339],[-4.159933,52.078573],[-4.161455,52.077581],[-4.161266,52.075766],[-4.165918,52.074948],[-4.166487,52.074165],[-4.163641,52.072952],[-4.161681,52.071524],[-4.161977,52.070409],[-4.164156,52.068153],[-4.167366,52.067064],[-4.171488,52.067739],[-4.172531,52.066922],[-4.172072,52.065008],[-4.173882,52.064096],[-4.176227,52.063506],[-4.178825,52.06349],[-4.180593,52.063906],[-4.17981,52.062455],[-4.182612,52.063446],[-4.18422,52.062751],[-4.184869,52.060985],[-4.186165,52.060448],[-4.188949,52.06028],[-4.191123,52.05939],[-4.19294,52.059325],[-4.195375,52.060388],[-4.196473,52.063659],[-4.196018,52.064398],[-4.197076,52.064915],[-4.202787,52.0635],[-4.205844,52.062573],[-4.20602,52.061487],[-4.204303,52.060987],[-4.205384,52.058646],[-4.206947,52.057546],[-4.20928,52.056859],[-4.213164,52.058032],[-4.21426,52.054188],[-4.213908,52.052101],[-4.214235,52.051228],[-4.217152,52.05089],[-4.219229,52.051705],[-4.220147,52.051502],[-4.221806,52.049978],[-4.221696,52.048733],[-4.223458,52.048677],[-4.225641,52.049819],[-4.228269,52.049298],[-4.230405,52.048127],[-4.230605,52.046085],[-4.229601,52.043402],[-4.231164,52.041214],[-4.229971,52.039772],[-4.233595,52.038402],[-4.235195,52.038254],[-4.238564,52.039594],[-4.24087,52.04098],[-4.242416,52.040654],[-4.244802,52.038508],[-4.246345,52.038015],[-4.249042,52.03914],[-4.251182,52.039354],[-4.254082,52.037884],[-4.255037,52.037739],[-4.258562,52.039448],[-4.261315,52.039641],[-4.263323,52.03814],[-4.265806,52.038839],[-4.272099,52.040322],[-4.273444,52.039548],[-4.272601,52.038167],[-4.275393,52.038289],[-4.277055,52.039712],[-4.282498,52.03981],[-4.28672,52.042367],[-4.290755,52.043876],[-4.28999,52.046876],[-4.288059,52.048136],[-4.287201,52.049294],[-4.285425,52.050195],[-4.287102,52.052071],[-4.288967,52.052785],[-4.291445,52.051738],[-4.292857,52.052395],[-4.298285,52.052241],[-4.301072,52.051643],[-4.30279,52.049342],[-4.303334,52.046301],[-4.305943,52.045381],[-4.306505,52.042718],[-4.30446,52.039359],[-4.30654,52.038492],[-4.310396,52.039288],[-4.316665,52.037201],[-4.318393,52.037216],[-4.322884,52.038303],[-4.326949,52.03757],[-4.330241,52.037635],[-4.332557,52.041353],[-4.334829,52.041274],[-4.335337,52.038899],[-4.336198,52.037867],[-4.336681,52.035345],[-4.338162,52.032152],[-4.344314,52.031608],[-4.346431,52.030995],[-4.347407,52.029167],[-4.349274,52.027982],[-4.349944,52.026996],[-4.351946,52.026948],[-4.352351,52.02768],[-4.356657,52.028653],[-4.359184,52.028642],[-4.361988,52.027745],[-4.365795,52.028613],[-4.366012,52.029679],[-4.363548,52.032778],[-4.365325,52.034644],[-4.367914,52.03555],[-4.371218,52.035363],[-4.373882,52.037065],[-4.376542,52.037174],[-4.379793,52.036545],[-4.381415,52.036686],[-4.38272,52.03776],[-4.383252,52.039658],[-4.385523,52.039873],[-4.386154,52.038827],[-4.387821,52.037575],[-4.390639,52.036958],[-4.391542,52.0362],[-4.395737,52.034615],[-4.398842,52.034635],[-4.401943,52.03511],[-4.401599,52.037291],[-4.402309,52.038804],[-4.405377,52.037803],[-4.407885,52.038354],[-4.410476,52.038506],[-4.411336,52.040232],[-4.411101,52.041837],[-4.413271,52.041321],[-4.41503,52.039804],[-4.418126,52.038598],[-4.419714,52.038353],[-4.423279,52.039556],[-4.425457,52.041138],[-4.429257,52.040788],[-4.431511,52.042527],[-4.434761,52.043504],[-4.43756,52.043616],[-4.439268,52.043034],[-4.44065,52.041898],[-4.443713,52.041808],[-4.444756,52.042151],[-4.446078,52.04406],[-4.448732,52.044145],[-4.450869,52.043702],[-4.452186,52.042917],[-4.453023,52.041668],[-4.455462,52.040223],[-4.456429,52.038203],[-4.459986,52.037047],[-4.463655,52.036537],[-4.466854,52.037629],[-4.465646,52.038655],[-4.461052,52.038688],[-4.461356,52.039426],[-4.470317,52.040788],[-4.470867,52.040221],[-4.47495,52.039029],[-4.476693,52.040251],[-4.476961,52.041581],[-4.478164,52.042826],[-4.480808,52.043501],[-4.481633,52.044029],[-4.481756,52.045622],[-4.481025,52.047014],[-4.482672,52.047377],[-4.485545,52.04692],[-4.486942,52.048814],[-4.491631,52.047212],[-4.493012,52.045898],[-4.495168,52.045063],[-4.498177,52.044317],[-4.50024,52.045085],[-4.499713,52.043239],[-4.50196,52.042586],[-4.502761,52.042829],[-4.503461,52.04432],[-4.5066,52.044463],[-4.509304,52.043816],[-4.515435,52.047051],[-4.520969,52.045692],[-4.523354,52.045743],[-4.526955,52.045362],[-4.528928,52.046115],[-4.532404,52.045623],[-4.534207,52.044372],[-4.535623,52.044361],[-4.537725,52.045039],[-4.539626,52.04658],[-4.540149,52.047617],[-4.540011,52.049635],[-4.540676,52.051975],[-4.541077,52.052126],[-4.545192,52.049718],[-4.544972,52.047357],[-4.542838,52.04646],[-4.543307,52.045537],[-4.544928,52.044244],[-4.547682,52.044055],[-4.549315,52.043044],[-4.551177,52.044266],[-4.555372,52.044237],[-4.559755,52.043726],[-4.558355,52.042393],[-4.556421,52.041454],[-4.555086,52.04149],[-4.552897,52.039834],[-4.551239,52.038056],[-4.551986,52.037299],[-4.55014,52.035422],[-4.550855,52.033484],[-4.550375,52.032789],[-4.55118,52.031458],[-4.551088,52.030444],[-4.549399,52.030153],[-4.54966,52.029195],[-4.549033,52.027606],[-4.549333,52.026624],[-4.548016,52.021726],[-4.546492,52.021215],[-4.545387,52.020155],[-4.544963,52.018242],[-4.543306,52.017737],[-4.541528,52.01802],[-4.537467,52.017528],[-4.53547,52.017783],[-4.529904,52.013567],[-4.526677,52.012126],[-4.525205,52.012378],[-4.523012,52.011252],[-4.522158,52.010336],[-4.522609,52.009487],[-4.521486,52.008387],[-4.521429,52.006852],[-4.520288,52.004806],[-4.515582,52.002222],[-4.515252,52.000443],[-4.51563,52.000018],[-4.513812,51.997812],[-4.512275,51.994913],[-4.5072,51.99336],[-4.503106,51.992445],[-4.502233,51.992821],[-4.500157,51.992003],[-4.494893,51.992253],[-4.493933,51.992542],[-4.489692,51.990403],[-4.487111,51.988683],[-4.486991,51.987218],[-4.488082,51.984778],[-4.488155,51.983519],[-4.4867,51.980783],[-4.486515,51.979071],[-4.487097,51.977981],[-4.486746,51.976797],[-4.485614,51.975739],[-4.486979,51.974115],[-4.488007,51.971354],[-4.48775,51.967783],[-4.490352,51.965611],[-4.492776,51.962821],[-4.493311,51.96131],[-4.497784,51.961331],[-4.513068,51.958606],[-4.519288,51.957844],[-4.532765,51.954423],[-4.535251,51.956334],[-4.541426,51.956583],[-4.544069,51.953994],[-4.546207,51.953646],[-4.548031,51.95279],[-4.551674,51.951925],[-4.552634,51.950656],[-4.552619,51.949354],[-4.555898,51.94948],[-4.559972,51.946936],[-4.566262,51.937532],[-4.569479,51.935052],[-4.572911,51.933485],[-4.575976,51.932976],[-4.577685,51.931914],[-4.581742,51.931973],[-4.584446,51.932344],[-4.586217,51.931752],[-4.587811,51.93179],[-4.593715,51.934957],[-4.595164,51.936547],[-4.596603,51.939442],[-4.598336,51.941027],[-4.599954,51.94093],[-4.606544,51.937964],[-4.607591,51.936721],[-4.607453,51.934975],[-4.608788,51.934438],[-4.609224,51.933598],[-4.612014,51.932564],[-4.612786,51.931855],[-4.616651,51.930886],[-4.620554,51.92911],[-4.622419,51.929031],[-4.623528,51.92851],[-4.625131,51.928888],[-4.626613,51.928617],[-4.628508,51.925416],[-4.627483,51.924124],[-4.6292,51.923075],[-4.629132,51.922057],[-4.632461,51.920867],[-4.635611,51.918596],[-4.637495,51.918895],[-4.64115,51.920439],[-4.645577,51.920611],[-4.647488,51.921753],[-4.651013,51.922476],[-4.655337,51.924937],[-4.660332,51.926885],[-4.665231,51.929475],[-4.66789,51.934078],[-4.670393,51.932379],[-4.671292,51.930398],[-4.672987,51.929134],[-4.673313,51.928425],[-4.676869,51.927497],[-4.68253,51.924813],[-4.684777,51.924372],[-4.685795,51.923752],[-4.687747,51.923672],[-4.689056,51.923173],[-4.695514,51.923455],[-4.697934,51.922602],[-4.69994,51.921484],[-4.701184,51.921529],[-4.703169,51.920741],[-4.70487,51.920485],[-4.705913,51.918456],[-4.709186,51.916874],[-4.713428,51.915786],[-4.717858,51.912425],[-4.715709,51.911853],[-4.713009,51.909079],[-4.712629,51.907964],[-4.713538,51.899238],[-4.720736,51.898334],[-4.721712,51.897921],[-4.723104,51.895698],[-4.720823,51.89354],[-4.71911,51.893889],[-4.717225,51.892186],[-4.715139,51.891704],[-4.716242,51.891012],[-4.717663,51.888305],[-4.713347,51.888413],[-4.711207,51.888824],[-4.707084,51.889121],[-4.706531,51.888061],[-4.707091,51.886458],[-4.706299,51.88488],[-4.705765,51.88209],[-4.703142,51.879764],[-4.700887,51.87885],[-4.70032,51.877895],[-4.700149,51.874677],[-4.699172,51.873539],[-4.698969,51.872521],[-4.69975,51.870634],[-4.69913,51.868754],[-4.69959,51.868086],[-4.69813,51.866736],[-4.696537,51.865891],[-4.697734,51.863802],[-4.696464,51.862295],[-4.696888,51.861618],[-4.694102,51.85962],[-4.694976,51.85818],[-4.694952,51.857015],[-4.697215,51.857188],[-4.701744,51.854712],[-4.700075,51.853419],[-4.700179,51.851111],[-4.70362,51.851923],[-4.704408,51.851591],[-4.70645,51.848902],[-4.708567,51.84735],[-4.708576,51.845302],[-4.705141,51.844474],[-4.704513,51.842849],[-4.704911,51.840602],[-4.704263,51.83912],[-4.699936,51.839253],[-4.694355,51.838865],[-4.691843,51.839436],[-4.689393,51.839248],[-4.68422,51.839589],[-4.682307,51.837549],[-4.678386,51.836334],[-4.675718,51.83624],[-4.672806,51.835635],[-4.670911,51.835857],[-4.669597,51.836696],[-4.668213,51.83543],[-4.665102,51.834992],[-4.664826,51.83396],[-4.661595,51.832986],[-4.660437,51.832153],[-4.657264,51.832246],[-4.656839,51.831167],[-4.65511,51.83123],[-4.654532,51.832195],[-4.652172,51.832499],[-4.649876,51.831766],[-4.646567,51.831225],[-4.645103,51.830461],[-4.644068,51.830526],[-4.642628,51.828884],[-4.643145,51.82732],[-4.64195,51.826546],[-4.643432,51.825986],[-4.643337,51.824785],[-4.641593,51.825284],[-4.639947,51.823465],[-4.637965,51.822161],[-4.636604,51.822366],[-4.633806,51.822168],[-4.633891,51.820513],[-4.632387,51.820631],[-4.631451,51.81874],[-4.629384,51.818344],[-4.629196,51.817392],[-4.627815,51.817492],[-4.627343,51.816098],[-4.626044,51.815885],[-4.6219,51.816044],[-4.621917,51.814436],[-4.620585,51.814654],[-4.619547,51.81312],[-4.616846,51.811158],[-4.618231,51.80994],[-4.618277,51.807642],[-4.621241,51.806288],[-4.621483,51.80545],[-4.626072,51.803264],[-4.630255,51.802988],[-4.635388,51.801402],[-4.637274,51.800269],[-4.637706,51.799087],[-4.640755,51.798348],[-4.643504,51.798105],[-4.644402,51.797616],[-4.644198,51.796522],[-4.641625,51.793287],[-4.641425,51.791004],[-4.638831,51.789735],[-4.637319,51.78938],[-4.636901,51.786694],[-4.634119,51.785014],[-4.63472,51.784598],[-4.634264,51.783268],[-4.637106,51.782768],[-4.63762,51.781511],[-4.638995,51.781352],[-4.641243,51.779991],[-4.645405,51.778441],[-4.643559,51.776223],[-4.63973,51.775463],[-4.637801,51.774319],[-4.635907,51.772376],[-4.63514,51.770529],[-4.630584,51.77118],[-4.62779,51.771109],[-4.626243,51.771565],[-4.624379,51.771084],[-4.624404,51.770363],[-4.623205,51.769311],[-4.622597,51.767332],[-4.623823,51.765373],[-4.623509,51.763009],[-4.626326,51.76236],[-4.627396,51.760544],[-4.62996,51.7582],[-4.630587,51.756817],[-4.629629,51.755401],[-4.630252,51.753955],[-4.629834,51.752347],[-4.627699,51.751686],[-4.627238,51.750725],[-4.630387,51.747505],[-4.63314,51.746561],[-4.633054,51.745325],[-4.632251,51.742697],[-4.633125,51.741469],[-4.63545,51.740023],[-4.634293,51.7383],[-4.632619,51.737725],[-4.633484,51.73685],[-4.632592,51.736003],[-4.632654,51.735099],[-4.630291,51.733909],[-4.628714,51.73381],[-4.626325,51.735103],[-4.623621,51.73515],[-4.623617,51.735979],[-4.619921,51.737196],[-4.616101,51.737149],[-4.613147,51.738142],[-4.610728,51.738144],[-4.590125,51.7366],[-4.584247,51.735721],[-4.582122,51.734607],[-4.580899,51.734949],[-4.5787,51.734274],[-4.577142,51.735075],[-4.573878,51.738251],[-4.569661,51.738094],[-4.569109,51.737167],[-4.568032,51.737105],[-4.564436,51.739807],[-4.560226,51.741773],[-4.559024,51.741983],[-4.553084,51.741178],[-4.520411,51.737934],[-4.499684,51.735395],[-4.483477,51.734023],[-4.476907,51.733077],[-4.463219,51.731683],[-4.453159,51.732479],[-4.446025,51.733395],[-4.436391,51.737857],[-4.424153,51.740574],[-4.420271,51.742341],[-4.417716,51.744856],[-4.417782,51.745292],[-4.420401,51.746364],[-4.422813,51.745664],[-4.425753,51.746606],[-4.426991,51.747346],[-4.429011,51.747363],[-4.429763,51.748248],[-4.424817,51.74785],[-4.424743,51.74879],[-4.426573,51.748706],[-4.426986,51.749317],[-4.428939,51.749371],[-4.431208,51.75053],[-4.431406,51.751482],[-4.433212,51.751358],[-4.435226,51.752722],[-4.437359,51.753533],[-4.438107,51.755032],[-4.4418,51.756417],[-4.442313,51.757309],[-4.444945,51.759339],[-4.44684,51.759835],[-4.447984,51.760984],[-4.451079,51.762046],[-4.451932,51.761844],[-4.455853,51.761911],[-4.45555,51.76271],[-4.456892,51.764202],[-4.45789,51.766248],[-4.459551,51.766598],[-4.459814,51.769085],[-4.459042,51.770512],[-4.454031,51.773206],[-4.451644,51.775388],[-4.45069,51.777647],[-4.448096,51.781076],[-4.449414,51.781971],[-4.451351,51.782737],[-4.456461,51.786373],[-4.458208,51.788078],[-4.459092,51.788354],[-4.466772,51.788133],[-4.4716,51.789235],[-4.472793,51.790049],[-4.47392,51.792233],[-4.47838,51.79336],[-4.478663,51.794096],[-4.473537,51.792662],[-4.470764,51.789602],[-4.466418,51.788891],[-4.463935,51.789677],[-4.461071,51.790077],[-4.455934,51.789564],[-4.453027,51.787244],[-4.448302,51.786671],[-4.446221,51.786105],[-4.441952,51.783116],[-4.439593,51.780828],[-4.438437,51.779266],[-4.439643,51.77444],[-4.440691,51.773633],[-4.442956,51.77292],[-4.445862,51.77165],[-4.446636,51.770698],[-4.44888,51.770114],[-4.446462,51.7694],[-4.441506,51.767198],[-4.436557,51.765452],[-4.435517,51.763584],[-4.433481,51.763228],[-4.431233,51.763687],[-4.426714,51.763761],[-4.42559,51.763019],[-4.421265,51.762444],[-4.418781,51.761936],[-4.417779,51.760176],[-4.416886,51.759609],[-4.411292,51.758273],[-4.41038,51.757539],[-4.407283,51.756937],[-4.403832,51.757276],[-4.402051,51.757973],[-4.399836,51.759571],[-4.397557,51.762784],[-4.396017,51.763233],[-4.391364,51.763744],[-4.387615,51.765592],[-4.38807,51.766829],[-4.385822,51.768806],[-4.382324,51.770949],[-4.382205,51.772117],[-4.38074,51.773612],[-4.37671,51.775689],[-4.374707,51.777779],[-4.373765,51.779662],[-4.373229,51.782901],[-4.374248,51.784017],[-4.373996,51.785167],[-4.371622,51.787759],[-4.370618,51.790119],[-4.362113,51.794467],[-4.359351,51.795258],[-4.355958,51.795216],[-4.347192,51.797754],[-4.344122,51.799084],[-4.341079,51.799563],[-4.334221,51.798799],[-4.3303,51.799379],[-4.326928,51.800828],[-4.324847,51.805949],[-4.324351,51.810917],[-4.321045,51.815208],[-4.319629,51.81918],[-4.320614,51.82097],[-4.328039,51.826296],[-4.328019,51.827648],[-4.326788,51.828563],[-4.323619,51.830006],[-4.321376,51.831618],[-4.318089,51.83356],[-4.322264,51.836277],[-4.322642,51.83709],[-4.321683,51.838086],[-4.320154,51.838199],[-4.317377,51.837421],[-4.3147,51.838022],[-4.313834,51.838572],[-4.313066,51.840038],[-4.313805,51.840737],[-4.316362,51.840224],[-4.318762,51.841136],[-4.319237,51.842052],[-4.31861,51.84288],[-4.316156,51.843301],[-4.315707,51.843927],[-4.317118,51.848184],[-4.317412,51.849999],[-4.316955,51.850981],[-4.31313,51.853412],[-4.309632,51.854251],[-4.303099,51.855168],[-4.300087,51.85519],[-4.297632,51.854072],[-4.296423,51.854012],[-4.294533,51.854851],[-4.292307,51.856869],[-4.29353,51.857562],[-4.295763,51.856898],[-4.29693,51.857022],[-4.297455,51.857933],[-4.294265,51.860023],[-4.29234,51.86027],[-4.291997,51.859],[-4.290868,51.858328],[-4.287881,51.859233],[-4.287677,51.859759],[-4.289598,51.86124],[-4.28971,51.861899],[-4.288699,51.863189],[-4.283902,51.862772],[-4.278914,51.861121],[-4.27632,51.85856],[-4.274978,51.857995],[-4.270065,51.85848],[-4.269834,51.858186],[-4.274771,51.85772],[-4.276439,51.858158],[-4.278917,51.860661],[-4.284061,51.862452],[-4.288206,51.86289],[-4.289006,51.862624],[-4.289067,51.861414],[-4.286949,51.859961],[-4.287379,51.859003],[-4.290203,51.857962],[-4.291349,51.85805],[-4.292885,51.859647],[-4.294023,51.859807],[-4.296406,51.857919],[-4.296284,51.857261],[-4.293839,51.857962],[-4.29179,51.856999],[-4.293776,51.854993],[-4.295369,51.854002],[-4.297669,51.853701],[-4.300995,51.854918],[-4.308456,51.853918],[-4.312877,51.853012],[-4.315822,51.851069],[-4.316465,51.849948],[-4.316389,51.84869],[-4.315532,51.847676],[-4.31471,51.844417],[-4.315723,51.842762],[-4.318195,51.842315],[-4.317801,51.841082],[-4.316692,51.840625],[-4.313782,51.841425],[-4.312167,51.84019],[-4.31243,51.839149],[-4.315093,51.836773],[-4.316955,51.836649],[-4.320976,51.837672],[-4.321774,51.8372],[-4.321289,51.836255],[-4.317079,51.834327],[-4.315653,51.834119],[-4.327229,51.82682],[-4.326955,51.826233],[-4.323382,51.824629],[-4.321072,51.822969],[-4.319014,51.821149],[-4.31825,51.819022],[-4.318743,51.815648],[-4.319624,51.813372],[-4.32166,51.811373],[-4.322581,51.809929],[-4.322596,51.807804],[-4.322246,51.806138],[-4.32309,51.802729],[-4.325472,51.800239],[-4.328411,51.79872],[-4.33403,51.796888],[-4.340598,51.796794],[-4.343463,51.796944],[-4.347114,51.795246],[-4.350618,51.792947],[-4.355934,51.79034],[-4.359526,51.789294],[-4.363928,51.788457],[-4.366074,51.787245],[-4.366543,51.785965],[-4.366089,51.784795],[-4.363784,51.782881],[-4.36428,51.780941],[-4.362441,51.779883],[-4.363019,51.776256],[-4.363789,51.774568],[-4.365517,51.772656],[-4.366837,51.772075],[-4.370494,51.768837],[-4.372132,51.768007],[-4.37178,51.763707],[-4.372761,51.760533],[-4.373835,51.760166],[-4.373833,51.759236],[-4.375152,51.757648],[-4.375931,51.755559],[-4.376045,51.753876],[-4.374721,51.749544],[-4.375598,51.747478],[-4.374049,51.746285],[-4.37366,51.745097],[-4.372207,51.744458],[-4.370904,51.742456],[-4.36801,51.741215],[-4.366492,51.738808],[-4.364212,51.737232],[-4.359209,51.737301],[-4.35559,51.737678],[-4.353306,51.737116],[-4.345334,51.736894],[-4.340404,51.735494],[-4.336681,51.736845],[-4.331098,51.736648],[-4.328731,51.735712],[-4.32791,51.736071],[-4.321596,51.73453],[-4.32089,51.735482],[-4.321553,51.736882],[-4.320564,51.738469],[-4.317667,51.73671],[-4.318661,51.736379],[-4.319576,51.735002],[-4.321346,51.733469],[-4.323073,51.733348],[-4.325024,51.731897],[-4.323257,51.731987],[-4.32396,51.730896],[-4.322996,51.730284],[-4.325046,51.729681],[-4.32468,51.728078],[-4.322364,51.726653],[-4.320125,51.72621],[-4.312597,51.727914],[-4.309317,51.726239],[-4.309833,51.725548],[-4.311263,51.725496],[-4.312296,51.72627],[-4.313951,51.726662],[-4.315012,51.72626],[-4.317008,51.72477],[-4.319042,51.723891],[-4.320665,51.723719],[-4.319944,51.722297],[-4.323574,51.720905],[-4.325273,51.722232],[-4.327653,51.721627],[-4.329188,51.721675],[-4.3289,51.721996],[-4.330957,51.722776],[-4.332988,51.720399],[-4.335066,51.72231],[-4.336202,51.721117],[-4.33636,51.720176],[-4.338717,51.720277],[-4.337515,51.721231],[-4.336479,51.721253],[-4.335285,51.722664],[-4.337577,51.722537],[-4.339247,51.723162],[-4.340334,51.723819],[-4.34227,51.72423],[-4.343047,51.725056],[-4.344994,51.724377],[-4.346196,51.724715],[-4.352254,51.724135],[-4.352275,51.722556],[-4.352975,51.722797],[-4.354589,51.723157],[-4.355661,51.722596],[-4.357918,51.72301],[-4.35962,51.722659],[-4.360362,51.723283],[-4.35968,51.723793],[-4.359731,51.725024],[-4.358664,51.7261],[-4.358329,51.726187],[-4.357932,51.72732],[-4.356269,51.728306],[-4.357745,51.729241],[-4.359373,51.729438],[-4.361278,51.728798],[-4.361354,51.727839],[-4.363612,51.728488],[-4.361991,51.728982],[-4.360546,51.730291],[-4.366562,51.729389],[-4.368013,51.728847],[-4.370252,51.729854],[-4.371448,51.730921],[-4.374616,51.732578],[-4.378808,51.732608],[-4.380258,51.731488],[-4.380308,51.729479],[-4.379672,51.727349],[-4.375122,51.721664],[-4.370906,51.71467],[-4.369,51.712393],[-4.356403,51.701395],[-4.348324,51.695107],[-4.335627,51.686173],[-4.323977,51.678761],[-4.31652,51.674968],[-4.309034,51.67196],[-4.3028,51.669852],[-4.297825,51.66854],[-4.291236,51.667652],[-4.283093,51.667602],[-4.276113,51.66895],[-4.269185,51.670963],[-4.267556,51.671947],[-4.264996,51.672791],[-4.264193,51.673498],[-4.265381,51.674611],[-4.265566,51.675768],[-4.269692,51.677354],[-4.27064,51.676874],[-4.275136,51.677358],[-4.278187,51.676333],[-4.282242,51.676208],[-4.284134,51.6756],[-4.28434,51.676349],[-4.282036,51.676762],[-4.281224,51.676524],[-4.278299,51.676775],[-4.273871,51.678641],[-4.264258,51.677594],[-4.262094,51.677127],[-4.259309,51.677939],[-4.257097,51.677981],[-4.252987,51.678823],[-4.251587,51.678358],[-4.250915,51.681286],[-4.252642,51.681612],[-4.253663,51.682761],[-4.249099,51.682215],[-4.24985,51.681003],[-4.248535,51.680474],[-4.248805,51.678849],[-4.244609,51.67817],[-4.242797,51.678814],[-4.240485,51.67889],[-4.236355,51.67961],[-4.230705,51.679074],[-4.228056,51.679832],[-4.226031,51.679788],[-4.225109,51.68092],[-4.226545,51.682334],[-4.225376,51.683277],[-4.221584,51.684356],[-4.219041,51.684405],[-4.218528,51.685332],[-4.210867,51.68514],[-4.196639,51.68375],[-4.189086,51.682468],[-4.182339,51.680725],[-4.181362,51.680077],[-4.179145,51.677685],[-4.176101,51.673912],[-4.172632,51.667766],[-4.172968,51.670065],[-4.172851,51.673715],[-4.171639,51.672314],[-4.166149,51.666962],[-4.164527,51.666538],[-4.166918,51.665337],[-4.163575,51.664662],[-4.162722,51.663483],[-4.162579,51.661989],[-4.163162,51.660843],[-4.16137,51.660875],[-4.159315,51.659526],[-4.159228,51.658473],[-4.15795,51.65849],[-4.154339,51.657596],[-4.153359,51.655468],[-4.151961,51.655525],[-4.147746,51.654731],[-4.145636,51.654785],[-4.14369,51.656015],[-4.142493,51.658616],[-4.140931,51.659671],[-4.139927,51.659705],[-4.137096,51.660911],[-4.137645,51.659578],[-4.136312,51.658927],[-4.135649,51.660456],[-4.135801,51.661691],[-4.133803,51.663695],[-4.13301,51.663954],[-4.131522,51.663522],[-4.131118,51.664107],[-4.128181,51.663989],[-4.127945,51.663137],[-4.130388,51.66265],[-4.133002,51.663929],[-4.133813,51.663622],[-4.135589,51.661776],[-4.133888,51.660946],[-4.134088,51.65993],[-4.1319,51.660633],[-4.131488,51.659218],[-4.130122,51.657966],[-4.128216,51.658002],[-4.125854,51.65893],[-4.126885,51.660345],[-4.125154,51.660156],[-4.124735,51.658542],[-4.115882,51.659551],[-4.11294,51.658866],[-4.110786,51.659228],[-4.108837,51.660216],[-4.106032,51.660665],[-4.098208,51.661438],[-4.093907,51.662882],[-4.089491,51.663278],[-4.087709,51.663193],[-4.086505,51.661801],[-4.084352,51.662581],[-4.084194,51.6632],[-4.081936,51.66378],[-4.080935,51.66455],[-4.080435,51.666016],[-4.083069,51.668181],[-4.082917,51.668804],[-4.080561,51.669545],[-4.079974,51.672103],[-4.081088,51.676324],[-4.080626,51.678031],[-4.080589,51.680091],[-4.08213,51.684842],[-4.081728,51.68775],[-4.08097,51.688634],[-4.078068,51.689322],[-4.077354,51.688898],[-4.073655,51.688561],[-4.071156,51.688952],[-4.067717,51.690294],[-4.067008,51.691525],[-4.065207,51.692894],[-4.06454,51.694389],[-4.065605,51.696894],[-4.064418,51.697789],[-4.061961,51.698388],[-4.060015,51.700191],[-4.056197,51.700944],[-4.05569,51.701025],[-4.053233,51.700905],[-4.052864,51.701299],[-4.053622,51.70378],[-4.051708,51.706155],[-4.054288,51.708758],[-4.054028,51.709367],[-4.052389,51.709526],[-4.05018,51.70868],[-4.047164,51.708273],[-4.046156,51.70635],[-4.044836,51.706166],[-4.044156,51.706277],[-4.04341,51.707862],[-4.043714,51.708184],[-4.044709,51.708985],[-4.048982,51.710895],[-4.049582,51.711967],[-4.048317,51.711918],[-4.045961,51.712599],[-4.046435,51.713925],[-4.045828,51.715397],[-4.046494,51.71751],[-4.04611,51.718975],[-4.046555,51.719501],[-4.045146,51.720208],[-4.046743,51.72086],[-4.047931,51.722214],[-4.048343,51.724381],[-4.050376,51.725851],[-4.047501,51.726581],[-4.047857,51.727589],[-4.048922,51.727664],[-4.049461,51.729057],[-4.049088,51.729769],[-4.047022,51.731496],[-4.045718,51.732057],[-4.04407,51.736175],[-4.042444,51.736314],[-4.040074,51.73537],[-4.037334,51.735793],[-4.036442,51.736662],[-4.034134,51.737865],[-4.031934,51.73855],[-4.030842,51.742212],[-4.029959,51.742517],[-4.028019,51.742271],[-4.027549,51.742715],[-4.028461,51.74478],[-4.027066,51.744745],[-4.027284,51.745735],[-4.026309,51.746535],[-4.026301,51.747747],[-4.025585,51.748811],[-4.024329,51.749101],[-4.022177,51.748826],[-4.02011,51.749264],[-4.018902,51.750091],[-4.019897,51.75216],[-4.0179,51.751794],[-4.016047,51.751943],[-4.013676,51.753529],[-4.013267,51.754378],[-4.011706,51.755032],[-4.011956,51.755908],[-4.010504,51.757079],[-4.00841,51.758118],[-4.009387,51.759984],[-4.006739,51.761154],[-4.003723,51.761564],[-4.001594,51.762613],[-4.003331,51.764111],[-4.004326,51.767453],[-4.005184,51.768734],[-4.00464,51.769992],[-4.002044,51.771199],[-3.999804,51.774151],[-3.996218,51.774184],[-3.994371,51.773776],[-3.99367,51.773064],[-3.990899,51.772155],[-3.989297,51.770993],[-3.987647,51.770317],[-3.984955,51.769786],[-3.984508,51.769139],[-3.982702,51.76833],[-3.98163,51.766018],[-3.979609,51.764677],[-3.975503,51.764592],[-3.974092,51.764162],[-3.96749,51.764328],[-3.96519,51.763705],[-3.961891,51.764524],[-3.960242,51.764468],[-3.957715,51.765048],[-3.955583,51.765122],[-3.951984,51.764692],[-3.950946,51.765748],[-3.94859,51.768864],[-3.943746,51.770266],[-3.940944,51.770342],[-3.940184,51.769818],[-3.936505,51.771355],[-3.928512,51.773735],[-3.926807,51.773559],[-3.925277,51.772924],[-3.923029,51.773462],[-3.918425,51.775301],[-3.913508,51.772764],[-3.912887,51.770712],[-3.910811,51.770683],[-3.910395,51.770186],[-3.908249,51.770369],[-3.906708,51.769193],[-3.902029,51.770913],[-3.900412,51.771262],[-3.898368,51.770917],[-3.896602,51.769146],[-3.89074,51.768694],[-3.889862,51.768238],[-3.887206,51.768798],[-3.887272,51.771206],[-3.886409,51.772451],[-3.885368,51.772962],[-3.885021,51.774933],[-3.883698,51.777141],[-3.883875,51.77801],[-3.883095,51.778988],[-3.883064,51.780362],[-3.881669,51.781645],[-3.883449,51.784302],[-3.882096,51.787905],[-3.885625,51.789131],[-3.886035,51.79024],[-3.885435,51.791877],[-3.886146,51.793035],[-3.888865,51.793589],[-3.891994,51.796309],[-3.892252,51.796845],[-3.891835,51.79892],[-3.893225,51.800576],[-3.897731,51.802559],[-3.900018,51.802973],[-3.899882,51.803631],[-3.897671,51.804194],[-3.895673,51.804293],[-3.892042,51.803623],[-3.886668,51.804389],[-3.882908,51.806026],[-3.882211,51.806644],[-3.877518,51.808222],[-3.876379,51.808263],[-3.873721,51.807026],[-3.871902,51.806927],[-3.869883,51.808213],[-3.868435,51.808209],[-3.866185,51.81014],[-3.865104,51.810361],[-3.862977,51.80967],[-3.861683,51.809915],[-3.860393,51.809247],[-3.859149,51.809964],[-3.857118,51.809825],[-3.854637,51.809039],[-3.853283,51.809692],[-3.850858,51.809825],[-3.846509,51.809082],[-3.84557,51.809701],[-3.843981,51.809157],[-3.842126,51.809465],[-3.838634,51.808534],[-3.836226,51.808245],[-3.834843,51.807659],[-3.833987,51.806253],[-3.832509,51.806155],[-3.828714,51.804597],[-3.824367,51.803473],[-3.820922,51.803143],[-3.816842,51.801519],[-3.817072,51.801178],[-3.814362,51.798412],[-3.815818,51.797152],[-3.811632,51.794131],[-3.812043,51.792445],[-3.810342,51.791693],[-3.809689,51.790089],[-3.808654,51.789031],[-3.807694,51.788931],[-3.806691,51.787952],[-3.806552,51.788538],[-3.807842,51.789561],[-3.808622,51.791644],[-3.807352,51.792601],[-3.80774,51.793707],[-3.807531,51.795114],[-3.806651,51.796238],[-3.805615,51.798858],[-3.804249,51.800053],[-3.803688,51.801374],[-3.801963,51.802597],[-3.798756,51.80411],[-3.797574,51.805569],[-3.796383,51.806343],[-3.79694,51.807219],[-3.795826,51.808755],[-3.795883,51.809594],[-3.794564,51.810036],[-3.792144,51.809959],[-3.789219,51.811378],[-3.788077,51.812394],[-3.787478,51.816279],[-3.786093,51.816212],[-3.786486,51.817497],[-3.783328,51.81997],[-3.782955,51.821037],[-3.781951,51.821601],[-3.782441,51.824219],[-3.78391,51.826667],[-3.784166,51.828325],[-3.78347,51.830064],[-3.781531,51.832528],[-3.779887,51.833945],[-3.778998,51.83676],[-3.776604,51.838322],[-3.776692,51.840237],[-3.775281,51.841488],[-3.772646,51.846022],[-3.768103,51.849596],[-3.766707,51.849679],[-3.766496,51.850707],[-3.76402,51.852174],[-3.76455,51.853246],[-3.763424,51.853869],[-3.761111,51.853835],[-3.757928,51.855108],[-3.757556,51.855885],[-3.755553,51.856025],[-3.754611,51.855611],[-3.749191,51.859419],[-3.749774,51.860262],[-3.74842,51.860767],[-3.74814,51.861761],[-3.74632,51.862199],[-3.743069,51.863634],[-3.741243,51.862897],[-3.738822,51.863592],[-3.737842,51.864328],[-3.737783,51.86544],[-3.735888,51.866086],[-3.735281,51.867224],[-3.731365,51.871003],[-3.728094,51.872535],[-3.726211,51.87454],[-3.722745,51.876851],[-3.721685,51.878131],[-3.721955,51.8801],[-3.721332,51.881159],[-3.719436,51.881999],[-3.717411,51.882447],[-3.713838,51.887126],[-3.717965,51.901203],[-3.715856,51.902795],[-3.713423,51.905483],[-3.713716,51.905965],[-3.716706,51.907141],[-3.723556,51.908231],[-3.72652,51.909669],[-3.727379,51.910348],[-3.727608,51.912199],[-3.726737,51.913354],[-3.724723,51.914029],[-3.723936,51.915911],[-3.724565,51.916581],[-3.723024,51.917466],[-3.723018,51.920032],[-3.722732,51.922748],[-3.721866,51.922991],[-3.722809,51.924762],[-3.721404,51.927374],[-3.720599,51.927881],[-3.71886,51.927682],[-3.718166,51.929144],[-3.718526,51.930497],[-3.719379,51.931085],[-3.717712,51.931974],[-3.719212,51.933493],[-3.72173,51.934668],[-3.720532,51.937174],[-3.720971,51.940353],[-3.720513,51.941926],[-3.719053,51.94308],[-3.714945,51.944703],[-3.71266,51.946251],[-3.710571,51.946868],[-3.707351,51.946899],[-3.702779,51.945785],[-3.699907,51.946089],[-3.701247,51.9479],[-3.705018,51.948467],[-3.702463,51.954223],[-3.704871,51.955716],[-3.706072,51.956833],[-3.707467,51.959074],[-3.707354,51.960169],[-3.710843,51.961204],[-3.711204,51.961879],[-3.703022,51.970258],[-3.699832,51.971746],[-3.701146,51.97277],[-3.694067,51.977223],[-3.694123,51.978292],[-3.696121,51.979607],[-3.696698,51.980763],[-3.698237,51.981294],[-3.697801,51.9828],[-3.695176,51.984358],[-3.694785,51.985294],[-3.691339,51.987295],[-3.690301,51.988571],[-3.684926,51.992176],[-3.684624,51.993791],[-3.685391,51.995046],[-3.684086,51.996322],[-3.678006,51.998694],[-3.677578,51.999185],[-3.6753,51.999668],[-3.674774,52.000396],[-3.673018,52.001208],[-3.671851,52.002815],[-3.670017,52.004213],[-3.670563,52.005429],[-3.670207,52.006725],[-3.668075,52.008328],[-3.667658,52.010179],[-3.665669,52.011332],[-3.666191,52.011662],[-3.665649,52.014703],[-3.666913,52.016159],[-3.669648,52.015514],[-3.671788,52.015566],[-3.673224,52.01656],[-3.673533,52.017516],[-3.671743,52.020666],[-3.670272,52.022254],[-3.667168,52.024612],[-3.668272,52.025432],[-3.663982,52.026871],[-3.662021,52.027956],[-3.661766,52.028701],[-3.66235,52.030139],[-3.662281,52.031322],[-3.66038,52.03297],[-3.656609,52.034387],[-3.654782,52.034554],[-3.652795,52.035307],[-3.651439,52.035138],[-3.649912,52.036895],[-3.647137,52.038789],[-3.649749,52.041509],[-3.652616,52.042431],[-3.653687,52.04237],[-3.655825,52.044535],[-3.657656,52.045193],[-3.659386,52.046423],[-3.660804,52.047861],[-3.659554,52.049277],[-3.662677,52.050748],[-3.661886,52.052353],[-3.662856,52.05239],[-3.665872,52.0538],[-3.666828,52.055229],[-3.667893,52.055784],[-3.673777,52.056724],[-3.676209,52.056538],[-3.675431,52.057571],[-3.676172,52.058302],[-3.678015,52.058944],[-3.679773,52.062],[-3.676812,52.063105],[-3.673859,52.065892],[-3.675195,52.066667],[-3.668851,52.069428],[-3.6668,52.073479],[-3.667131,52.074299],[-3.669616,52.074296],[-3.671737,52.074711],[-3.674913,52.074148],[-3.681659,52.07391],[-3.685664,52.075567],[-3.687255,52.076626],[-3.692142,52.07796],[-3.694745,52.078082],[-3.698711,52.080481],[-3.70075,52.082285],[-3.702343,52.082814],[-3.713225,52.084472],[-3.71549,52.085308],[-3.718606,52.085054],[-3.723096,52.085214],[-3.721514,52.08659],[-3.722503,52.091251],[-3.723459,52.093316],[-3.728793,52.093993],[-3.726154,52.09555],[-3.722823,52.099436],[-3.715278,52.103111],[-3.714077,52.104971],[-3.714634,52.105271],[-3.714294,52.106715],[-3.71642,52.110624],[-3.716097,52.113473],[-3.720319,52.117502],[-3.722929,52.115177],[-3.725232,52.118351],[-3.731009,52.119986],[-3.732446,52.12065],[-3.736956,52.120714],[-3.743267,52.122498],[-3.746629,52.124446],[-3.746937,52.125724],[-3.749463,52.127626],[-3.754741,52.128293],[-3.758102,52.128234]]]]},"properties":{"LAD22CD":"W06000010","LAD22NM":"Carmarthenshire","BNG_E":247954,"BNG_N":224133,"LONG":-4.2111,"LAT":51.89495,"GlobalID":"03a7c702-da77-416d-b088-2769f1ca67ca"},"id":361}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.324651,51.565814],[-4.32594,51.566086],[-4.326992,51.565602],[-4.333209,51.56536],[-4.332333,51.564592],[-4.329441,51.565052],[-4.326925,51.564914],[-4.32457,51.565637],[-4.321838,51.565067],[-4.320949,51.563428],[-4.317887,51.562657],[-4.314628,51.562782],[-4.31816,51.564622],[-4.324651,51.565814]]],[[[-4.31024,51.608464],[-4.310139,51.609756],[-4.311972,51.610329],[-4.315509,51.609779],[-4.314881,51.609329],[-4.312521,51.608838],[-4.312259,51.608061],[-4.31024,51.608464]]],[[[-4.212765,51.628696],[-4.215015,51.629623],[-4.215233,51.628642],[-4.213586,51.627446],[-4.212765,51.628696]]],[[[-4.23557,51.635319],[-4.23752,51.634801],[-4.239377,51.633504],[-4.239006,51.632311],[-4.235369,51.632512],[-4.233896,51.634748],[-4.23557,51.635319]]],[[[-4.070115,51.653478],[-4.069768,51.654182],[-4.07092,51.655742],[-4.071986,51.65479],[-4.072738,51.653213],[-4.071309,51.653003],[-4.070115,51.653478]]],[[[-4.087893,51.656855],[-4.088688,51.655749],[-4.087136,51.655356],[-4.085076,51.656109],[-4.085008,51.656871],[-4.087893,51.656855]]],[[[-4.081895,51.655648],[-4.081174,51.657596],[-4.084508,51.657292],[-4.085125,51.655698],[-4.083437,51.654903],[-4.08183,51.654778],[-4.081895,51.655648]]],[[[-4.085241,51.657754],[-4.081529,51.658071],[-4.081847,51.659217],[-4.085241,51.657754]]],[[[-3.936505,51.771355],[-3.940184,51.769818],[-3.940944,51.770342],[-3.943746,51.770266],[-3.94859,51.768864],[-3.950946,51.765748],[-3.951984,51.764692],[-3.955583,51.765122],[-3.957715,51.765048],[-3.960242,51.764468],[-3.961891,51.764524],[-3.96519,51.763705],[-3.96749,51.764328],[-3.974092,51.764162],[-3.975503,51.764592],[-3.979609,51.764677],[-3.98163,51.766018],[-3.982702,51.76833],[-3.984508,51.769139],[-3.984955,51.769786],[-3.987647,51.770317],[-3.989297,51.770993],[-3.990899,51.772155],[-3.99367,51.773064],[-3.994371,51.773776],[-3.996218,51.774184],[-3.999804,51.774151],[-4.002044,51.771199],[-4.00464,51.769992],[-4.005184,51.768734],[-4.004326,51.767453],[-4.003331,51.764111],[-4.001594,51.762613],[-4.003723,51.761564],[-4.006739,51.761154],[-4.009387,51.759984],[-4.00841,51.758118],[-4.010504,51.757079],[-4.011956,51.755908],[-4.011706,51.755032],[-4.013267,51.754378],[-4.013676,51.753529],[-4.016047,51.751943],[-4.0179,51.751794],[-4.019897,51.75216],[-4.018902,51.750091],[-4.02011,51.749264],[-4.022177,51.748826],[-4.024329,51.749101],[-4.025585,51.748811],[-4.026301,51.747747],[-4.026309,51.746535],[-4.027284,51.745735],[-4.027066,51.744745],[-4.028461,51.74478],[-4.027549,51.742715],[-4.028019,51.742271],[-4.029959,51.742517],[-4.030842,51.742212],[-4.031934,51.73855],[-4.034134,51.737865],[-4.036442,51.736662],[-4.037334,51.735793],[-4.040074,51.73537],[-4.042444,51.736314],[-4.04407,51.736175],[-4.045718,51.732057],[-4.047022,51.731496],[-4.049088,51.729769],[-4.049461,51.729057],[-4.048922,51.727664],[-4.047857,51.727589],[-4.047501,51.726581],[-4.050376,51.725851],[-4.048343,51.724381],[-4.047931,51.722214],[-4.046743,51.72086],[-4.045146,51.720208],[-4.046555,51.719501],[-4.04611,51.718975],[-4.046494,51.71751],[-4.045828,51.715397],[-4.046435,51.713925],[-4.045961,51.712599],[-4.048317,51.711918],[-4.049582,51.711967],[-4.048574,51.710908],[-4.044375,51.709044],[-4.042899,51.70753],[-4.043525,51.706277],[-4.045481,51.705944],[-4.046898,51.706521],[-4.047443,51.708086],[-4.049642,51.708427],[-4.050827,51.708611],[-4.05336,51.709004],[-4.053706,51.708528],[-4.050938,51.706816],[-4.051071,51.706036],[-4.052393,51.703806],[-4.051086,51.701986],[-4.052224,51.699334],[-4.054472,51.698994],[-4.058193,51.699328],[-4.059981,51.698575],[-4.060741,51.696961],[-4.061187,51.694297],[-4.062096,51.69302],[-4.06424,51.691439],[-4.065227,51.688738],[-4.068417,51.684551],[-4.068136,51.683816],[-4.069402,51.679842],[-4.069244,51.684288],[-4.071848,51.684474],[-4.073515,51.684868],[-4.075933,51.683995],[-4.076769,51.683024],[-4.077038,51.681505],[-4.075091,51.677277],[-4.070901,51.675101],[-4.070682,51.674895],[-4.06961,51.672522],[-4.06844,51.67068],[-4.068277,51.668978],[-4.06945,51.66862],[-4.071182,51.666974],[-4.074257,51.665795],[-4.077394,51.663764],[-4.079378,51.663029],[-4.080814,51.661193],[-4.078785,51.660345],[-4.077302,51.658466],[-4.075248,51.657704],[-4.073901,51.6567],[-4.071992,51.657276],[-4.066854,51.657729],[-4.066495,51.657427],[-4.071993,51.65682],[-4.070236,51.655701],[-4.068944,51.654288],[-4.069355,51.653182],[-4.071324,51.65248],[-4.073472,51.653258],[-4.072764,51.654731],[-4.07589,51.657299],[-4.078829,51.656788],[-4.080246,51.657007],[-4.081406,51.656618],[-4.082256,51.652783],[-4.083318,51.654541],[-4.085172,51.655631],[-4.087197,51.655264],[-4.089014,51.655509],[-4.090597,51.656197],[-4.093492,51.655855],[-4.093553,51.655276],[-4.097223,51.654565],[-4.09867,51.653787],[-4.102422,51.653508],[-4.10916,51.65125],[-4.11038,51.649933],[-4.113464,51.649707],[-4.114779,51.647482],[-4.116329,51.645841],[-4.115644,51.644584],[-4.109226,51.645139],[-4.107133,51.64482],[-4.104643,51.643713],[-4.106432,51.643481],[-4.108825,51.644312],[-4.112204,51.644051],[-4.113371,51.643509],[-4.116919,51.643178],[-4.120519,51.641651],[-4.12358,51.642339],[-4.126345,51.642078],[-4.129404,51.640804],[-4.130665,51.640638],[-4.134048,51.641612],[-4.134788,51.640562],[-4.136221,51.639932],[-4.137856,51.64018],[-4.139911,51.638495],[-4.137219,51.635712],[-4.138872,51.635511],[-4.142986,51.634185],[-4.148233,51.634957],[-4.150095,51.634541],[-4.150335,51.635234],[-4.152831,51.63583],[-4.158473,51.634316],[-4.161523,51.632048],[-4.162448,51.630326],[-4.162621,51.629034],[-4.164148,51.627962],[-4.164595,51.626549],[-4.165734,51.627187],[-4.165533,51.627957],[-4.167289,51.628663],[-4.168045,51.627141],[-4.167205,51.625771],[-4.167889,51.624937],[-4.16958,51.624275],[-4.170916,51.624496],[-4.173887,51.624397],[-4.175818,51.624594],[-4.177374,51.625446],[-4.17893,51.625832],[-4.179079,51.628137],[-4.181313,51.626224],[-4.183034,51.625688],[-4.185601,51.625383],[-4.186363,51.626713],[-4.187827,51.627167],[-4.189777,51.626108],[-4.191011,51.62632],[-4.193431,51.625839],[-4.193412,51.626623],[-4.197789,51.626239],[-4.200578,51.626354],[-4.205668,51.627542],[-4.206912,51.628304],[-4.208813,51.630955],[-4.209724,51.631297],[-4.211438,51.630972],[-4.211989,51.630141],[-4.213851,51.631347],[-4.214801,51.633805],[-4.215875,51.634866],[-4.217684,51.635556],[-4.217357,51.634151],[-4.21831,51.633824],[-4.217721,51.632558],[-4.215665,51.631885],[-4.214081,51.630674],[-4.21341,51.629359],[-4.211532,51.628902],[-4.209976,51.627816],[-4.211464,51.627017],[-4.212754,51.627585],[-4.21422,51.62693],[-4.216243,51.629586],[-4.21751,51.630439],[-4.218975,51.630821],[-4.219355,51.62962],[-4.221036,51.629544],[-4.224517,51.628666],[-4.22465,51.627695],[-4.223653,51.627184],[-4.222066,51.627566],[-4.219683,51.627381],[-4.217725,51.626143],[-4.217435,51.625482],[-4.218349,51.624354],[-4.216933,51.623177],[-4.215532,51.623629],[-4.214041,51.623476],[-4.212655,51.62432],[-4.211793,51.623084],[-4.213957,51.623208],[-4.217295,51.622742],[-4.218904,51.623381],[-4.219048,51.624255],[-4.221022,51.625885],[-4.225375,51.626229],[-4.227333,51.629801],[-4.228712,51.63036],[-4.230641,51.630581],[-4.230717,51.631392],[-4.232264,51.631504],[-4.233552,51.630926],[-4.237826,51.630979],[-4.240407,51.63062],[-4.242486,51.629709],[-4.241618,51.627283],[-4.243422,51.628379],[-4.243117,51.629782],[-4.242312,51.630683],[-4.242402,51.632042],[-4.240329,51.632854],[-4.240063,51.633721],[-4.237864,51.634823],[-4.238417,51.636015],[-4.235952,51.6367],[-4.234647,51.638211],[-4.234481,51.640183],[-4.232939,51.641043],[-4.232739,51.642944],[-4.234022,51.643686],[-4.238492,51.643938],[-4.240352,51.644514],[-4.242182,51.645637],[-4.241273,51.646549],[-4.236985,51.6458],[-4.232941,51.645849],[-4.230911,51.64659],[-4.230699,51.647953],[-4.237832,51.646623],[-4.245504,51.647589],[-4.246044,51.647269],[-4.247118,51.645251],[-4.249294,51.639146],[-4.252143,51.634336],[-4.255045,51.630861],[-4.258724,51.628847],[-4.261579,51.627907],[-4.262909,51.627782],[-4.264952,51.628459],[-4.266824,51.62782],[-4.270165,51.625355],[-4.271948,51.623307],[-4.272392,51.624885],[-4.27826,51.617092],[-4.279651,51.615911],[-4.283045,51.614212],[-4.286203,51.613777],[-4.288159,51.614131],[-4.290654,51.614159],[-4.29282,51.61475],[-4.294348,51.615607],[-4.295196,51.615209],[-4.298834,51.614783],[-4.298608,51.613831],[-4.300388,51.612871],[-4.302203,51.612916],[-4.302965,51.613457],[-4.305762,51.611509],[-4.308051,51.610937],[-4.307778,51.610298],[-4.309206,51.609618],[-4.309233,51.608756],[-4.307021,51.609115],[-4.306203,51.608462],[-4.299671,51.60094],[-4.296313,51.596368],[-4.290256,51.583864],[-4.289265,51.580226],[-4.289006,51.576351],[-4.289476,51.572669],[-4.290577,51.569809],[-4.292379,51.56927],[-4.297667,51.568881],[-4.301483,51.566448],[-4.303942,51.565545],[-4.30551,51.564633],[-4.305668,51.563712],[-4.308161,51.563022],[-4.306368,51.562166],[-4.30107,51.561546],[-4.299869,51.560561],[-4.29695,51.559592],[-4.295198,51.559838],[-4.295398,51.560906],[-4.294817,51.561726],[-4.291317,51.563074],[-4.289574,51.562057],[-4.285546,51.561376],[-4.28318,51.561603],[-4.281318,51.561038],[-4.278818,51.561503],[-4.279984,51.560167],[-4.279521,51.558583],[-4.27784,51.559364],[-4.276213,51.559006],[-4.276284,51.557977],[-4.275026,51.55718],[-4.274136,51.557468],[-4.272283,51.557185],[-4.2715,51.555368],[-4.269102,51.555099],[-4.267777,51.555568],[-4.267449,51.554453],[-4.265662,51.554392],[-4.262877,51.552737],[-4.261484,51.553737],[-4.26007,51.553167],[-4.258874,51.553439],[-4.259877,51.551344],[-4.258151,51.550259],[-4.255599,51.549965],[-4.254539,51.549231],[-4.252829,51.548949],[-4.247963,51.546593],[-4.245236,51.546725],[-4.244758,51.546036],[-4.243067,51.54572],[-4.24282,51.544811],[-4.240551,51.544114],[-4.23899,51.543269],[-4.237785,51.543329],[-4.236053,51.541868],[-4.233895,51.541627],[-4.232469,51.542256],[-4.2314,51.541344],[-4.227067,51.541194],[-4.223896,51.540321],[-4.222243,51.541162],[-4.220199,51.54053],[-4.218119,51.540804],[-4.217255,51.541523],[-4.215434,51.541099],[-4.215442,51.539941],[-4.214178,51.539354],[-4.213447,51.53758],[-4.210784,51.537149],[-4.209113,51.537803],[-4.209258,51.538856],[-4.206976,51.539075],[-4.209248,51.541517],[-4.209266,51.542882],[-4.207749,51.54476],[-4.205443,51.546053],[-4.201343,51.547489],[-4.194806,51.548264],[-4.191993,51.54816],[-4.190714,51.54747],[-4.187803,51.547141],[-4.186511,51.547903],[-4.184952,51.547817],[-4.183658,51.548487],[-4.182368,51.548444],[-4.180237,51.546999],[-4.178925,51.547345],[-4.176721,51.546637],[-4.173792,51.546732],[-4.171973,51.545987],[-4.169902,51.545841],[-4.166568,51.544822],[-4.163829,51.544415],[-4.161876,51.544559],[-4.15894,51.543017],[-4.158066,51.543014],[-4.157334,51.541459],[-4.15477,51.54097],[-4.152818,51.540951],[-4.150374,51.542613],[-4.147611,51.543361],[-4.14618,51.545155],[-4.147342,51.547306],[-4.147292,51.548047],[-4.150025,51.550027],[-4.151826,51.550211],[-4.158527,51.554248],[-4.161031,51.555259],[-4.15944,51.558931],[-4.15631,51.562047],[-4.152864,51.564049],[-4.144298,51.567591],[-4.143523,51.568963],[-4.140679,51.568603],[-4.135508,51.568851],[-4.128689,51.569703],[-4.126706,51.569464],[-4.125484,51.570074],[-4.123624,51.569841],[-4.123611,51.568512],[-4.120633,51.569136],[-4.118763,51.570596],[-4.11699,51.570213],[-4.11491,51.5724],[-4.111485,51.573328],[-4.109409,51.573148],[-4.109627,51.572318],[-4.10895,51.571377],[-4.110346,51.570113],[-4.107419,51.569646],[-4.105803,51.569119],[-4.105811,51.568219],[-4.103936,51.567667],[-4.103874,51.566555],[-4.101933,51.565253],[-4.097892,51.5655],[-4.096916,51.565112],[-4.094311,51.565615],[-4.09185,51.564338],[-4.088689,51.564612],[-4.087092,51.562426],[-4.084845,51.561748],[-4.083578,51.562046],[-4.081668,51.561481],[-4.081017,51.562081],[-4.079173,51.562223],[-4.07725,51.561482],[-4.076165,51.562155],[-4.074224,51.562209],[-4.072174,51.561411],[-4.070623,51.560455],[-4.069544,51.559235],[-4.068016,51.558979],[-4.066861,51.557834],[-4.064233,51.557245],[-4.060656,51.558049],[-4.059285,51.559262],[-4.058663,51.560689],[-4.05888,51.561583],[-4.05866,51.563986],[-4.056852,51.564794],[-4.054973,51.565139],[-4.054348,51.564666],[-4.052333,51.564431],[-4.050913,51.565197],[-4.047704,51.566345],[-4.045207,51.5655],[-4.042579,51.567087],[-4.042536,51.568112],[-4.040904,51.567892],[-4.036844,51.56831],[-4.036579,51.569584],[-4.034257,51.570125],[-4.030845,51.569638],[-4.031084,51.568311],[-4.029562,51.567495],[-4.027182,51.566729],[-4.026178,51.565632],[-4.026431,51.564638],[-4.024329,51.563149],[-4.023443,51.563974],[-4.020998,51.563899],[-4.017866,51.56436],[-4.013949,51.563984],[-4.013776,51.56586],[-4.014727,51.56689],[-4.012264,51.567941],[-4.009296,51.568087],[-4.006312,51.567657],[-4.004414,51.56607],[-4.003529,51.566286],[-4.000401,51.564921],[-3.997341,51.564124],[-3.996076,51.564095],[-3.993364,51.563104],[-3.987516,51.564655],[-3.984102,51.566162],[-3.983532,51.564706],[-3.981568,51.564535],[-3.980608,51.565008],[-3.980694,51.566521],[-3.978544,51.567562],[-3.977514,51.56732],[-3.977268,51.569062],[-3.985502,51.571291],[-3.992131,51.57295],[-3.996433,51.574541],[-3.997932,51.575587],[-3.998949,51.578124],[-4.000651,51.580295],[-4.000683,51.582983],[-3.999457,51.587384],[-3.997424,51.591455],[-3.995484,51.594971],[-3.992,51.599077],[-3.986224,51.60274],[-3.981205,51.605443],[-3.977005,51.60733],[-3.972051,51.608943],[-3.961255,51.611644],[-3.954831,51.612611],[-3.943503,51.613123],[-3.940356,51.613798],[-3.928733,51.613462],[-3.929164,51.6147],[-3.930261,51.615823],[-3.928725,51.616548],[-3.928371,51.615563],[-3.92605,51.61518],[-3.926592,51.611486],[-3.924618,51.611852],[-3.922869,51.610305],[-3.923859,51.609312],[-3.918467,51.609451],[-3.902766,51.613231],[-3.893538,51.618824],[-3.888504,51.618293],[-3.886274,51.617551],[-3.886355,51.619971],[-3.889361,51.621301],[-3.888664,51.621862],[-3.889492,51.623663],[-3.886846,51.631623],[-3.88702,51.634055],[-3.881518,51.641042],[-3.876214,51.646603],[-3.874366,51.649378],[-3.87489,51.650537],[-3.874336,51.651918],[-3.875569,51.653279],[-3.875242,51.657546],[-3.874065,51.658023],[-3.87107,51.658335],[-3.868975,51.658287],[-3.868474,51.661091],[-3.867127,51.66188],[-3.866117,51.664189],[-3.864205,51.664868],[-3.86525,51.665576],[-3.863908,51.667607],[-3.864604,51.66916],[-3.862763,51.67022],[-3.860872,51.6706],[-3.860156,51.671622],[-3.855642,51.672468],[-3.853282,51.673663],[-3.851075,51.675382],[-3.847697,51.680478],[-3.848432,51.6846],[-3.847256,51.687163],[-3.846232,51.687909],[-3.846982,51.68988],[-3.845505,51.691802],[-3.844517,51.694012],[-3.844434,51.695353],[-3.842747,51.69725],[-3.843088,51.698099],[-3.844948,51.698095],[-3.847218,51.69877],[-3.84864,51.700283],[-3.850931,51.699784],[-3.85091,51.698155],[-3.852443,51.698345],[-3.856332,51.697162],[-3.856356,51.698626],[-3.85569,51.70036],[-3.859182,51.701072],[-3.861141,51.702965],[-3.862569,51.703223],[-3.862446,51.703969],[-3.86444,51.705049],[-3.865542,51.703369],[-3.866763,51.702722],[-3.871223,51.702965],[-3.872373,51.702043],[-3.876023,51.70396],[-3.872666,51.706252],[-3.873556,51.706791],[-3.874231,51.708869],[-3.880365,51.711899],[-3.881289,51.713637],[-3.879904,51.715012],[-3.878707,51.715566],[-3.881375,51.720535],[-3.884592,51.722518],[-3.883487,51.722721],[-3.88461,51.724203],[-3.884657,51.725843],[-3.88406,51.726993],[-3.886515,51.727307],[-3.88501,51.729697],[-3.885285,51.73047],[-3.886642,51.731098],[-3.886364,51.73252],[-3.88752,51.734736],[-3.888506,51.739086],[-3.890964,51.740916],[-3.896113,51.742961],[-3.898444,51.744342],[-3.90381,51.749488],[-3.908021,51.751148],[-3.9092,51.752307],[-3.910191,51.751661],[-3.912051,51.752981],[-3.913141,51.75525],[-3.917593,51.755415],[-3.917551,51.756469],[-3.916403,51.756956],[-3.915875,51.758478],[-3.922481,51.760097],[-3.920181,51.762628],[-3.926767,51.76566],[-3.927654,51.766426],[-3.928745,51.768816],[-3.930119,51.769954],[-3.934002,51.771067],[-3.936505,51.771355]]]]},"properties":{"LAD22CD":"W06000011","LAD22NM":"Swansea","BNG_E":264022,"BNG_N":197308,"LONG":-3.96723,"LAT":51.65806,"GlobalID":"2f2ba04a-76a9-429c-8928-22ab82524868"},"id":362}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.806691,51.787952],[-3.807694,51.788931],[-3.808654,51.789031],[-3.809689,51.790089],[-3.810342,51.791693],[-3.812043,51.792445],[-3.811632,51.794131],[-3.815818,51.797152],[-3.814362,51.798412],[-3.817072,51.801178],[-3.816842,51.801519],[-3.820922,51.803143],[-3.824367,51.803473],[-3.828714,51.804597],[-3.832509,51.806155],[-3.833987,51.806253],[-3.834843,51.807659],[-3.836226,51.808245],[-3.838634,51.808534],[-3.842126,51.809465],[-3.843981,51.809157],[-3.84557,51.809701],[-3.846509,51.809082],[-3.850858,51.809825],[-3.853283,51.809692],[-3.854637,51.809039],[-3.857118,51.809825],[-3.859149,51.809964],[-3.860393,51.809247],[-3.861683,51.809915],[-3.862977,51.80967],[-3.865104,51.810361],[-3.866185,51.81014],[-3.868435,51.808209],[-3.869883,51.808213],[-3.871902,51.806927],[-3.873721,51.807026],[-3.876379,51.808263],[-3.877518,51.808222],[-3.882211,51.806644],[-3.882908,51.806026],[-3.886668,51.804389],[-3.892042,51.803623],[-3.895673,51.804293],[-3.897671,51.804194],[-3.899882,51.803631],[-3.900018,51.802973],[-3.897731,51.802559],[-3.893225,51.800576],[-3.891835,51.79892],[-3.892252,51.796845],[-3.891994,51.796309],[-3.888865,51.793589],[-3.886146,51.793035],[-3.885435,51.791877],[-3.886035,51.79024],[-3.885625,51.789131],[-3.882096,51.787905],[-3.883449,51.784302],[-3.881669,51.781645],[-3.883064,51.780362],[-3.883095,51.778988],[-3.883875,51.77801],[-3.883698,51.777141],[-3.885021,51.774933],[-3.885368,51.772962],[-3.886409,51.772451],[-3.887272,51.771206],[-3.887206,51.768798],[-3.889862,51.768238],[-3.89074,51.768694],[-3.896602,51.769146],[-3.898368,51.770917],[-3.900412,51.771262],[-3.902029,51.770913],[-3.906708,51.769193],[-3.908249,51.770369],[-3.910395,51.770186],[-3.910811,51.770683],[-3.912887,51.770712],[-3.913508,51.772764],[-3.918425,51.775301],[-3.923029,51.773462],[-3.925277,51.772924],[-3.926807,51.773559],[-3.928512,51.773735],[-3.936505,51.771355],[-3.934002,51.771067],[-3.930119,51.769954],[-3.928745,51.768816],[-3.927654,51.766426],[-3.926767,51.76566],[-3.920181,51.762628],[-3.922481,51.760097],[-3.915875,51.758478],[-3.916403,51.756956],[-3.917551,51.756469],[-3.917593,51.755415],[-3.913141,51.75525],[-3.912051,51.752981],[-3.910191,51.751661],[-3.9092,51.752307],[-3.908021,51.751148],[-3.90381,51.749488],[-3.898444,51.744342],[-3.896113,51.742961],[-3.890964,51.740916],[-3.888506,51.739086],[-3.88752,51.734736],[-3.886364,51.73252],[-3.886642,51.731098],[-3.885285,51.73047],[-3.88501,51.729697],[-3.886515,51.727307],[-3.88406,51.726993],[-3.884657,51.725843],[-3.88461,51.724203],[-3.883487,51.722721],[-3.884592,51.722518],[-3.881375,51.720535],[-3.878707,51.715566],[-3.879904,51.715012],[-3.881289,51.713637],[-3.880365,51.711899],[-3.874231,51.708869],[-3.873556,51.706791],[-3.872666,51.706252],[-3.876023,51.70396],[-3.872373,51.702043],[-3.871223,51.702965],[-3.866763,51.702722],[-3.865542,51.703369],[-3.86444,51.705049],[-3.862446,51.703969],[-3.862569,51.703223],[-3.861141,51.702965],[-3.859182,51.701072],[-3.85569,51.70036],[-3.856356,51.698626],[-3.856332,51.697162],[-3.852443,51.698345],[-3.85091,51.698155],[-3.850931,51.699784],[-3.84864,51.700283],[-3.847218,51.69877],[-3.844948,51.698095],[-3.843088,51.698099],[-3.842747,51.69725],[-3.844434,51.695353],[-3.844517,51.694012],[-3.845505,51.691802],[-3.846982,51.68988],[-3.846232,51.687909],[-3.847256,51.687163],[-3.848432,51.6846],[-3.847697,51.680478],[-3.851075,51.675382],[-3.853282,51.673663],[-3.855642,51.672468],[-3.860156,51.671622],[-3.860872,51.6706],[-3.862763,51.67022],[-3.864604,51.66916],[-3.863908,51.667607],[-3.86525,51.665576],[-3.864205,51.664868],[-3.866117,51.664189],[-3.867127,51.66188],[-3.868474,51.661091],[-3.868975,51.658287],[-3.87107,51.658335],[-3.874065,51.658023],[-3.875242,51.657546],[-3.875569,51.653279],[-3.874336,51.651918],[-3.87489,51.650537],[-3.874366,51.649378],[-3.876214,51.646603],[-3.881518,51.641042],[-3.88702,51.634055],[-3.886846,51.631623],[-3.889492,51.623663],[-3.888664,51.621862],[-3.889361,51.621301],[-3.886355,51.619971],[-3.886274,51.617551],[-3.88438,51.617514],[-3.882815,51.617076],[-3.879352,51.616716],[-3.876381,51.6168],[-3.871585,51.617654],[-3.870062,51.618139],[-3.868504,51.619163],[-3.867079,51.619394],[-3.861147,51.619275],[-3.854732,51.618199],[-3.851158,51.618425],[-3.849058,51.61898],[-3.850014,51.619973],[-3.848769,51.621109],[-3.848818,51.622246],[-3.846919,51.621559],[-3.845907,51.620252],[-3.843716,51.621717],[-3.843552,51.622712],[-3.841638,51.622248],[-3.839061,51.622789],[-3.836515,51.623922],[-3.834381,51.626023],[-3.833208,51.628663],[-3.834991,51.628718],[-3.834473,51.629824],[-3.833132,51.629206],[-3.832855,51.631719],[-3.831847,51.634133],[-3.832484,51.636117],[-3.836274,51.638295],[-3.837089,51.640399],[-3.838597,51.64241],[-3.839076,51.644897],[-3.838759,51.648822],[-3.838316,51.650582],[-3.837411,51.65172],[-3.833356,51.655459],[-3.830981,51.656528],[-3.825205,51.654338],[-3.822813,51.654206],[-3.820152,51.654903],[-3.817782,51.656364],[-3.81198,51.661217],[-3.81028,51.662828],[-3.809425,51.664981],[-3.807508,51.666572],[-3.800745,51.666465],[-3.797425,51.66704],[-3.793617,51.6672],[-3.793583,51.668273],[-3.792503,51.669393],[-3.79053,51.669701],[-3.789442,51.670295],[-3.789198,51.672092],[-3.787735,51.67142],[-3.789622,51.669664],[-3.79211,51.668577],[-3.792562,51.667394],[-3.794905,51.666647],[-3.801254,51.666024],[-3.804014,51.66634],[-3.807246,51.666216],[-3.808627,51.665052],[-3.809802,51.662539],[-3.815484,51.657165],[-3.816941,51.655625],[-3.818228,51.654761],[-3.821643,51.653547],[-3.824402,51.653388],[-3.8283,51.654375],[-3.830651,51.655697],[-3.831626,51.655506],[-3.835949,51.651695],[-3.837349,51.649344],[-3.837713,51.646944],[-3.837569,51.643671],[-3.836226,51.642174],[-3.835489,51.642191],[-3.835255,51.639739],[-3.834284,51.638284],[-3.832555,51.637335],[-3.830759,51.636957],[-3.830427,51.635311],[-3.830707,51.631526],[-3.831672,51.626034],[-3.829955,51.626457],[-3.826059,51.628861],[-3.824677,51.628296],[-3.826655,51.626718],[-3.830621,51.625133],[-3.832285,51.624982],[-3.833172,51.623812],[-3.834774,51.622706],[-3.839607,51.620644],[-3.839426,51.620066],[-3.843255,51.618874],[-3.843498,51.617875],[-3.845356,51.617755],[-3.847152,51.616416],[-3.849867,51.615458],[-3.850826,51.614466],[-3.848995,51.612348],[-3.844136,51.608583],[-3.836868,51.604326],[-3.817708,51.593307],[-3.813978,51.590973],[-3.809735,51.587557],[-3.809525,51.586289],[-3.804268,51.583681],[-3.800642,51.584378],[-3.799354,51.585601],[-3.797498,51.590828],[-3.796352,51.591657],[-3.798032,51.587247],[-3.798959,51.583312],[-3.807807,51.581614],[-3.802233,51.581885],[-3.799533,51.57895],[-3.79733,51.575436],[-3.796487,51.573153],[-3.797196,51.56928],[-3.800551,51.56888],[-3.809247,51.570513],[-3.812301,51.571845],[-3.816884,51.57456],[-3.817401,51.574322],[-3.810231,51.570546],[-3.801699,51.568785],[-3.799677,51.568632],[-3.797474,51.568872],[-3.791831,51.571014],[-3.789266,51.569715],[-3.779763,51.559939],[-3.778417,51.558192],[-3.771028,51.547801],[-3.76283,51.538083],[-3.763001,51.536551],[-3.761854,51.536691],[-3.760641,51.535515],[-3.759354,51.53587],[-3.757985,51.534947],[-3.758392,51.533278],[-3.755423,51.533494],[-3.754026,51.532971],[-3.752406,51.533849],[-3.752899,51.534889],[-3.752109,51.535506],[-3.748888,51.535574],[-3.747862,51.536516],[-3.744352,51.536708],[-3.742125,51.53492],[-3.738678,51.533707],[-3.736791,51.532368],[-3.734811,51.53168],[-3.728547,51.5304],[-3.722154,51.531129],[-3.721858,51.531375],[-3.717864,51.531036],[-3.712285,51.530154],[-3.710923,51.529394],[-3.703128,51.527166],[-3.701455,51.527585],[-3.697547,51.529893],[-3.696262,51.530983],[-3.697802,51.53264],[-3.69645,51.534158],[-3.694435,51.534781],[-3.691188,51.534267],[-3.689868,51.534578],[-3.689073,51.536096],[-3.687803,51.537435],[-3.684568,51.537336],[-3.68292,51.538311],[-3.681237,51.538065],[-3.677008,51.538546],[-3.675637,51.539064],[-3.672282,51.53909],[-3.667064,51.538407],[-3.662556,51.538436],[-3.662014,51.538228],[-3.658107,51.538615],[-3.656061,51.539854],[-3.656005,51.541193],[-3.654495,51.542167],[-3.653604,51.543829],[-3.6527,51.544394],[-3.652987,51.545512],[-3.652063,51.545839],[-3.651639,51.549158],[-3.650763,51.549741],[-3.650117,51.552494],[-3.650919,51.553551],[-3.650849,51.555284],[-3.652343,51.556806],[-3.653958,51.557338],[-3.656806,51.558977],[-3.658005,51.560116],[-3.657972,51.561998],[-3.655582,51.563727],[-3.655189,51.564525],[-3.656021,51.565158],[-3.658169,51.565616],[-3.660961,51.566773],[-3.662201,51.568645],[-3.665332,51.570553],[-3.667544,51.571211],[-3.667974,51.572872],[-3.677071,51.575733],[-3.686281,51.585243],[-3.686684,51.585753],[-3.689951,51.586555],[-3.694401,51.594102],[-3.694202,51.596035],[-3.692267,51.598369],[-3.691652,51.60232],[-3.690935,51.60359],[-3.687979,51.603719],[-3.684983,51.603377],[-3.681577,51.602714],[-3.677718,51.601321],[-3.677106,51.601812],[-3.678722,51.602942],[-3.677699,51.605403],[-3.677814,51.607232],[-3.678974,51.607983],[-3.681162,51.608221],[-3.682691,51.609126],[-3.679682,51.616085],[-3.67799,51.618463],[-3.678849,51.6213],[-3.68071,51.621912],[-3.677331,51.627692],[-3.661813,51.645453],[-3.645912,51.643398],[-3.646177,51.642664],[-3.643527,51.642877],[-3.638125,51.642695],[-3.59572,51.637729],[-3.59542,51.641284],[-3.58025,51.644575],[-3.565472,51.642329],[-3.56331,51.645485],[-3.561774,51.647427],[-3.564029,51.654971],[-3.574767,51.662072],[-3.576403,51.663762],[-3.581904,51.673601],[-3.589585,51.679272],[-3.588492,51.681805],[-3.584486,51.68622],[-3.586379,51.690423],[-3.581272,51.695393],[-3.585174,51.703139],[-3.582212,51.714044],[-3.578646,51.717881],[-3.578977,51.722323],[-3.579715,51.723458],[-3.580207,51.728398],[-3.581609,51.735192],[-3.591299,51.748971],[-3.590195,51.750033],[-3.593718,51.753187],[-3.591293,51.754612],[-3.595795,51.758832],[-3.594619,51.76068],[-3.594548,51.761568],[-3.598013,51.764168],[-3.596545,51.765753],[-3.598009,51.767696],[-3.597729,51.769945],[-3.599698,51.771325],[-3.600975,51.77132],[-3.601123,51.772655],[-3.602402,51.77282],[-3.603659,51.77393],[-3.604531,51.773798],[-3.605018,51.772617],[-3.608929,51.771817],[-3.612209,51.771768],[-3.615229,51.77338],[-3.617342,51.774092],[-3.618337,51.773875],[-3.619883,51.774842],[-3.622579,51.774471],[-3.624126,51.774773],[-3.625053,51.773974],[-3.626889,51.775015],[-3.628746,51.774778],[-3.629764,51.775916],[-3.633049,51.777021],[-3.633842,51.777898],[-3.636931,51.777196],[-3.638312,51.777428],[-3.63881,51.779193],[-3.640389,51.77968],[-3.640525,51.780972],[-3.64473,51.781576],[-3.64516,51.782076],[-3.647283,51.782728],[-3.649217,51.782287],[-3.651029,51.783554],[-3.652253,51.783681],[-3.652974,51.785446],[-3.655037,51.785077],[-3.664142,51.785065],[-3.663788,51.786087],[-3.668627,51.7858],[-3.670243,51.786011],[-3.670366,51.787198],[-3.674492,51.784957],[-3.676799,51.784227],[-3.679256,51.784215],[-3.681772,51.781525],[-3.68577,51.780205],[-3.687426,51.780224],[-3.690831,51.781558],[-3.692411,51.781605],[-3.706518,51.779629],[-3.712032,51.778388],[-3.719085,51.77817],[-3.722671,51.777205],[-3.725471,51.776891],[-3.72866,51.775849],[-3.73391,51.771501],[-3.736681,51.769802],[-3.733744,51.768995],[-3.732341,51.767255],[-3.733553,51.766231],[-3.73311,51.765068],[-3.735092,51.764494],[-3.735465,51.761776],[-3.737519,51.758103],[-3.742963,51.757271],[-3.742267,51.756736],[-3.744116,51.755047],[-3.744547,51.754165],[-3.746099,51.753391],[-3.750931,51.754102],[-3.751352,51.753186],[-3.753807,51.753387],[-3.755728,51.752751],[-3.757177,51.75283],[-3.768301,51.754523],[-3.770321,51.754522],[-3.777624,51.756682],[-3.780389,51.759671],[-3.778318,51.760233],[-3.778426,51.762236],[-3.777398,51.763031],[-3.778508,51.764404],[-3.777882,51.765247],[-3.778107,51.766832],[-3.780011,51.768319],[-3.78063,51.771489],[-3.782447,51.773493],[-3.790506,51.77755],[-3.791517,51.778561],[-3.793822,51.779724],[-3.796371,51.78218],[-3.799298,51.781258],[-3.801394,51.781513],[-3.803718,51.785905],[-3.804954,51.786755],[-3.806665,51.78732],[-3.806691,51.787952]]]},"properties":{"LAD22CD":"W06000012","LAD22NM":"Neath Port Talbot","BNG_E":279261,"BNG_N":195412,"LONG":-3.74638,"LAT":51.6445,"GlobalID":"3a91d87a-66a1-48c4-b208-4b403253a450"},"id":363}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.56331,51.645485],[-3.565472,51.642329],[-3.58025,51.644575],[-3.59542,51.641284],[-3.59572,51.637729],[-3.638125,51.642695],[-3.643527,51.642877],[-3.646177,51.642664],[-3.645912,51.643398],[-3.661813,51.645453],[-3.677331,51.627692],[-3.68071,51.621912],[-3.678849,51.6213],[-3.67799,51.618463],[-3.679682,51.616085],[-3.682691,51.609126],[-3.681162,51.608221],[-3.678974,51.607983],[-3.677814,51.607232],[-3.677699,51.605403],[-3.678722,51.602942],[-3.677106,51.601812],[-3.677718,51.601321],[-3.681577,51.602714],[-3.684983,51.603377],[-3.687979,51.603719],[-3.690935,51.60359],[-3.691652,51.60232],[-3.692267,51.598369],[-3.694202,51.596035],[-3.694401,51.594102],[-3.689951,51.586555],[-3.686684,51.585753],[-3.686281,51.585243],[-3.677071,51.575733],[-3.667974,51.572872],[-3.667544,51.571211],[-3.665332,51.570553],[-3.662201,51.568645],[-3.660961,51.566773],[-3.658169,51.565616],[-3.656021,51.565158],[-3.655189,51.564525],[-3.655582,51.563727],[-3.657972,51.561998],[-3.658005,51.560116],[-3.656806,51.558977],[-3.653958,51.557338],[-3.652343,51.556806],[-3.650849,51.555284],[-3.650919,51.553551],[-3.650117,51.552494],[-3.650763,51.549741],[-3.651639,51.549158],[-3.652063,51.545839],[-3.652987,51.545512],[-3.6527,51.544394],[-3.653604,51.543829],[-3.654495,51.542167],[-3.656005,51.541193],[-3.656061,51.539854],[-3.658107,51.538615],[-3.662014,51.538228],[-3.662556,51.538436],[-3.667064,51.538407],[-3.672282,51.53909],[-3.675637,51.539064],[-3.677008,51.538546],[-3.681237,51.538065],[-3.68292,51.538311],[-3.684568,51.537336],[-3.687803,51.537435],[-3.689073,51.536096],[-3.689868,51.534578],[-3.691188,51.534267],[-3.694435,51.534781],[-3.69645,51.534158],[-3.697802,51.53264],[-3.696262,51.530983],[-3.697547,51.529893],[-3.701455,51.527585],[-3.703128,51.527166],[-3.710923,51.529394],[-3.712285,51.530154],[-3.717864,51.531036],[-3.721858,51.531375],[-3.722154,51.531129],[-3.728547,51.5304],[-3.734811,51.53168],[-3.736791,51.532368],[-3.738678,51.533707],[-3.742125,51.53492],[-3.744352,51.536708],[-3.747862,51.536516],[-3.748888,51.535574],[-3.752109,51.535506],[-3.752899,51.534889],[-3.752406,51.533849],[-3.754026,51.532971],[-3.755423,51.533494],[-3.758392,51.533278],[-3.757985,51.534947],[-3.759354,51.53587],[-3.760641,51.535515],[-3.761854,51.536691],[-3.763001,51.536551],[-3.760427,51.529975],[-3.757911,51.525267],[-3.749465,51.51155],[-3.745605,51.507277],[-3.747122,51.505943],[-3.748001,51.504633],[-3.746307,51.504271],[-3.744149,51.50326],[-3.743381,51.501381],[-3.743686,51.500707],[-3.741186,51.49992],[-3.739733,51.500184],[-3.738103,51.499515],[-3.735222,51.498994],[-3.733824,51.49812],[-3.733158,51.496965],[-3.733987,51.496247],[-3.731272,51.494989],[-3.73081,51.493842],[-3.728212,51.492603],[-3.728297,51.491824],[-3.72719,51.491195],[-3.726682,51.490081],[-3.724099,51.488788],[-3.724041,51.488103],[-3.725231,51.486989],[-3.723523,51.485486],[-3.722922,51.48344],[-3.721672,51.482851],[-3.720563,51.481724],[-3.720829,51.479682],[-3.71821,51.47872],[-3.716393,51.479281],[-3.712308,51.477688],[-3.711802,51.476426],[-3.710114,51.475486],[-3.706178,51.476027],[-3.704438,51.475392],[-3.702835,51.473677],[-3.701328,51.473987],[-3.701781,51.475517],[-3.70063,51.475441],[-3.698815,51.478016],[-3.694101,51.477842],[-3.691337,51.477263],[-3.690111,51.476687],[-3.690701,51.475613],[-3.688647,51.475554],[-3.688676,51.47666],[-3.687437,51.477002],[-3.685141,51.476853],[-3.682338,51.476129],[-3.682353,51.475554],[-3.678636,51.47384],[-3.678647,51.475297],[-3.677267,51.476823],[-3.67596,51.477619],[-3.675661,51.478855],[-3.673553,51.4796],[-3.666706,51.480658],[-3.658919,51.480046],[-3.65523,51.479046],[-3.65367,51.478173],[-3.651336,51.477868],[-3.646079,51.474553],[-3.641829,51.470807],[-3.638323,51.46993],[-3.637394,51.47032],[-3.636926,51.471683],[-3.635052,51.472273],[-3.632863,51.473616],[-3.63165,51.473978],[-3.629077,51.474078],[-3.626133,51.474542],[-3.623454,51.475303],[-3.622171,51.476201],[-3.619609,51.476599],[-3.617299,51.477456],[-3.616044,51.478413],[-3.615171,51.479753],[-3.613172,51.480226],[-3.611581,51.480987],[-3.608529,51.481267],[-3.606451,51.482075],[-3.604368,51.482018],[-3.601447,51.48345],[-3.598864,51.484108],[-3.596559,51.483397],[-3.59422,51.483132],[-3.593102,51.482244],[-3.584384,51.483273],[-3.58043,51.485125],[-3.578199,51.485358],[-3.574693,51.486295],[-3.571555,51.488199],[-3.566097,51.490217],[-3.558041,51.4923],[-3.554761,51.492773],[-3.53285,51.481606],[-3.531723,51.485142],[-3.532576,51.486092],[-3.533485,51.488532],[-3.53559,51.489685],[-3.53945,51.491031],[-3.527611,51.493684],[-3.528673,51.495504],[-3.527467,51.495591],[-3.527031,51.496588],[-3.525158,51.497167],[-3.528318,51.499774],[-3.52961,51.501364],[-3.528604,51.501475],[-3.526379,51.500734],[-3.524067,51.500852],[-3.522385,51.502121],[-3.51995,51.501764],[-3.516956,51.503121],[-3.515711,51.502769],[-3.509339,51.506032],[-3.508362,51.50703],[-3.507535,51.509098],[-3.504515,51.509745],[-3.502096,51.511096],[-3.497512,51.512642],[-3.495266,51.51416],[-3.493151,51.514609],[-3.491426,51.51581],[-3.489759,51.516055],[-3.48792,51.516795],[-3.48596,51.518517],[-3.483666,51.522933],[-3.484326,51.523207],[-3.483353,51.525135],[-3.48356,51.526334],[-3.481336,51.52842],[-3.480316,51.530141],[-3.481735,51.53014],[-3.482001,51.530927],[-3.480695,51.532304],[-3.480638,51.533531],[-3.47913,51.535134],[-3.478924,51.536242],[-3.477252,51.538532],[-3.475528,51.539219],[-3.474608,51.540209],[-3.472124,51.540626],[-3.468134,51.540474],[-3.466176,51.541166],[-3.463649,51.542551],[-3.463025,51.543412],[-3.463644,51.544173],[-3.465859,51.544943],[-3.469408,51.548482],[-3.469502,51.551831],[-3.470469,51.554089],[-3.475809,51.557259],[-3.480138,51.558219],[-3.479421,51.559732],[-3.478234,51.560242],[-3.477474,51.565401],[-3.476797,51.566431],[-3.480481,51.567149],[-3.483167,51.568233],[-3.485465,51.569634],[-3.485509,51.570681],[-3.484199,51.571744],[-3.48365,51.572821],[-3.484635,51.573734],[-3.486233,51.573897],[-3.487913,51.57482],[-3.486037,51.575883],[-3.48632,51.576553],[-3.484352,51.576936],[-3.480036,51.57814],[-3.478524,51.580398],[-3.476401,51.581802],[-3.475945,51.583813],[-3.477819,51.585934],[-3.478086,51.588007],[-3.476856,51.588543],[-3.476072,51.589792],[-3.475412,51.592194],[-3.474287,51.592795],[-3.472362,51.595118],[-3.47172,51.596523],[-3.471676,51.598588],[-3.472809,51.601666],[-3.473673,51.602542],[-3.476317,51.603631],[-3.478355,51.605264],[-3.481288,51.605804],[-3.483899,51.607163],[-3.485063,51.609129],[-3.486247,51.610087],[-3.491935,51.609617],[-3.49643,51.610524],[-3.498069,51.611553],[-3.499662,51.614051],[-3.50258,51.615029],[-3.503935,51.616436],[-3.510022,51.618141],[-3.520633,51.629913],[-3.523123,51.634071],[-3.524803,51.635607],[-3.533569,51.63904],[-3.535583,51.640146],[-3.535749,51.641518],[-3.536969,51.643647],[-3.538131,51.644284],[-3.543999,51.643874],[-3.546386,51.644452],[-3.548754,51.645596],[-3.550203,51.645838],[-3.557428,51.645749],[-3.561597,51.64483],[-3.56331,51.645485]]]},"properties":{"LAD22CD":"W06000013","LAD22NM":"Bridgend","BNG_E":288231,"BNG_N":185870,"LONG":-3.61375,"LAT":51.5606,"GlobalID":"d8cb04cd-efb5-4b25-b361-f37952756c4e"},"id":364}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.195379,51.396176],[-3.200863,51.396623],[-3.202468,51.395576],[-3.200606,51.39499],[-3.197449,51.395412],[-3.195062,51.394791],[-3.195379,51.396176]]],[[[-3.335739,51.508427],[-3.341839,51.508498],[-3.348572,51.509058],[-3.354285,51.51009],[-3.358163,51.512193],[-3.359216,51.511556],[-3.361116,51.511778],[-3.36173,51.51099],[-3.365219,51.512064],[-3.367809,51.510641],[-3.370162,51.510234],[-3.370706,51.509177],[-3.375881,51.510849],[-3.376491,51.512829],[-3.379422,51.512483],[-3.379223,51.510979],[-3.381219,51.51099],[-3.383308,51.509803],[-3.387198,51.509163],[-3.39027,51.509579],[-3.391094,51.508854],[-3.392919,51.508725],[-3.395795,51.508025],[-3.397163,51.506814],[-3.397442,51.505458],[-3.398571,51.504794],[-3.399507,51.503447],[-3.399274,51.502249],[-3.399891,51.500135],[-3.401913,51.498963],[-3.403662,51.499268],[-3.405355,51.500045],[-3.407731,51.502275],[-3.40924,51.502902],[-3.40899,51.503894],[-3.409674,51.506239],[-3.411058,51.506767],[-3.412716,51.506003],[-3.414082,51.506704],[-3.416999,51.506566],[-3.420183,51.505276],[-3.421563,51.505563],[-3.423288,51.507331],[-3.42519,51.50698],[-3.427685,51.505552],[-3.429392,51.507608],[-3.432642,51.506266],[-3.433302,51.50707],[-3.437642,51.506595],[-3.442583,51.50881],[-3.443231,51.510147],[-3.449051,51.510648],[-3.454998,51.512038],[-3.462019,51.514141],[-3.467874,51.515019],[-3.475578,51.515318],[-3.490581,51.512754],[-3.494317,51.51245],[-3.497512,51.512642],[-3.502096,51.511096],[-3.504515,51.509745],[-3.507535,51.509098],[-3.508362,51.50703],[-3.509339,51.506032],[-3.515711,51.502769],[-3.516956,51.503121],[-3.51995,51.501764],[-3.522385,51.502121],[-3.524067,51.500852],[-3.526379,51.500734],[-3.528604,51.501475],[-3.52961,51.501364],[-3.528318,51.499774],[-3.525158,51.497167],[-3.527031,51.496588],[-3.527467,51.495591],[-3.528673,51.495504],[-3.527611,51.493684],[-3.53945,51.491031],[-3.53559,51.489685],[-3.533485,51.488532],[-3.532576,51.486092],[-3.531723,51.485142],[-3.53285,51.481606],[-3.554761,51.492773],[-3.558041,51.4923],[-3.566097,51.490217],[-3.571555,51.488199],[-3.574693,51.486295],[-3.578199,51.485358],[-3.58043,51.485125],[-3.584384,51.483273],[-3.593102,51.482244],[-3.59422,51.483132],[-3.596559,51.483397],[-3.598864,51.484108],[-3.601447,51.48345],[-3.604368,51.482018],[-3.606451,51.482075],[-3.608529,51.481267],[-3.611581,51.480987],[-3.613172,51.480226],[-3.615171,51.479753],[-3.616044,51.478413],[-3.617299,51.477456],[-3.619609,51.476599],[-3.621022,51.475428],[-3.625371,51.473978],[-3.63029,51.473445],[-3.632496,51.47292],[-3.636227,51.471267],[-3.635847,51.47074],[-3.638622,51.469204],[-3.641922,51.467902],[-3.641068,51.465818],[-3.641925,51.465103],[-3.641001,51.464126],[-3.641549,51.463192],[-3.639818,51.46165],[-3.637237,51.461127],[-3.637194,51.460417],[-3.635801,51.458786],[-3.633645,51.458037],[-3.633418,51.45721],[-3.631529,51.456779],[-3.630378,51.4555],[-3.624247,51.454032],[-3.618911,51.452257],[-3.617715,51.451098],[-3.614824,51.450501],[-3.614522,51.449952],[-3.612684,51.449278],[-3.61154,51.448363],[-3.606351,51.446385],[-3.604634,51.444356],[-3.604279,51.442519],[-3.606888,51.441911],[-3.60375,51.441362],[-3.598897,51.442153],[-3.596894,51.441094],[-3.594772,51.438538],[-3.592612,51.437692],[-3.589419,51.434876],[-3.587197,51.431948],[-3.586768,51.429994],[-3.583586,51.429276],[-3.578828,51.422093],[-3.579002,51.421034],[-3.577642,51.419855],[-3.576269,51.417645],[-3.574896,51.417452],[-3.571454,51.415543],[-3.567438,51.412634],[-3.563849,51.408514],[-3.561684,51.404441],[-3.558961,51.401326],[-3.551314,51.400306],[-3.546726,51.399247],[-3.543816,51.39818],[-3.539787,51.397608],[-3.534035,51.397966],[-3.530876,51.399318],[-3.528855,51.399329],[-3.527186,51.399887],[-3.519971,51.400037],[-3.515923,51.398465],[-3.514783,51.39897],[-3.513201,51.398176],[-3.508085,51.397931],[-3.505409,51.397053],[-3.500398,51.396101],[-3.495524,51.395538],[-3.492926,51.395768],[-3.488947,51.395384],[-3.479853,51.392939],[-3.47712,51.392558],[-3.475544,51.393022],[-3.471862,51.393647],[-3.469585,51.393105],[-3.465841,51.391485],[-3.455993,51.389099],[-3.452185,51.388876],[-3.447945,51.388027],[-3.445507,51.387849],[-3.440882,51.387878],[-3.437554,51.388566],[-3.435547,51.388546],[-3.427307,51.387419],[-3.42362,51.388335],[-3.420753,51.387931],[-3.417413,51.388023],[-3.410459,51.38678],[-3.408352,51.385562],[-3.405216,51.381478],[-3.405593,51.381],[-3.399142,51.382405],[-3.396654,51.382341],[-3.396307,51.384335],[-3.397974,51.391028],[-3.397363,51.390544],[-3.39609,51.384421],[-3.396036,51.38291],[-3.394112,51.382623],[-3.391647,51.383173],[-3.385314,51.383489],[-3.382716,51.384481],[-3.381152,51.382916],[-3.373063,51.383913],[-3.366011,51.383713],[-3.364935,51.384166],[-3.36262,51.383688],[-3.359379,51.38365],[-3.357246,51.383932],[-3.347724,51.382347],[-3.343129,51.381132],[-3.341488,51.381081],[-3.332979,51.383295],[-3.324724,51.387179],[-3.320787,51.387501],[-3.317455,51.388576],[-3.310738,51.392683],[-3.305552,51.392514],[-3.30285,51.392025],[-3.298704,51.390583],[-3.291799,51.38707],[-3.291318,51.386307],[-3.289595,51.38591],[-3.288844,51.387569],[-3.289798,51.388375],[-3.28822,51.390032],[-3.288769,51.39113],[-3.28709,51.392492],[-3.284099,51.393696],[-3.281497,51.393312],[-3.27949,51.392559],[-3.28095,51.390718],[-3.282234,51.390814],[-3.283772,51.391696],[-3.285162,51.390769],[-3.285019,51.389884],[-3.282632,51.389114],[-3.280646,51.387226],[-3.279685,51.385709],[-3.27862,51.385767],[-3.27954,51.387429],[-3.279693,51.389026],[-3.277289,51.389918],[-3.274397,51.390057],[-3.27062,51.389796],[-3.269254,51.389036],[-3.267867,51.387462],[-3.264754,51.387817],[-3.264758,51.389851],[-3.265723,51.391582],[-3.263441,51.39245],[-3.262933,51.393371],[-3.260463,51.392808],[-3.262011,51.394324],[-3.259636,51.394994],[-3.25551,51.393341],[-3.250758,51.396858],[-3.248905,51.395849],[-3.246435,51.396579],[-3.2435,51.396466],[-3.239832,51.396869],[-3.236273,51.398031],[-3.23433,51.399001],[-3.23356,51.400332],[-3.231607,51.401322],[-3.226465,51.402914],[-3.222263,51.403581],[-3.218553,51.40321],[-3.211514,51.40118],[-3.206252,51.400359],[-3.203065,51.40035],[-3.199612,51.399883],[-3.198782,51.400083],[-3.196882,51.399586],[-3.194487,51.400006],[-3.191482,51.399617],[-3.188338,51.400323],[-3.187933,51.402024],[-3.187139,51.402436],[-3.184443,51.402737],[-3.182599,51.402548],[-3.180289,51.403033],[-3.176003,51.405081],[-3.170531,51.405855],[-3.169697,51.406296],[-3.169628,51.408061],[-3.170823,51.409855],[-3.171502,51.412999],[-3.171352,51.41837],[-3.170822,51.427217],[-3.167298,51.435227],[-3.164418,51.441082],[-3.164703,51.442437],[-3.167017,51.445025],[-3.165714,51.446186],[-3.167612,51.447307],[-3.169015,51.44769],[-3.171255,51.447557],[-3.173351,51.446745],[-3.17517,51.446527],[-3.176917,51.446849],[-3.1796,51.44787],[-3.183241,51.447178],[-3.185143,51.447267],[-3.187694,51.448518],[-3.189684,51.449913],[-3.192355,51.453485],[-3.194187,51.454972],[-3.193274,51.457054],[-3.193634,51.457845],[-3.195211,51.458151],[-3.196542,51.457912],[-3.197028,51.457173],[-3.196225,51.455678],[-3.197008,51.455472],[-3.199732,51.45648],[-3.200678,51.457861],[-3.203021,51.458532],[-3.202494,51.460104],[-3.203733,51.463054],[-3.206868,51.466034],[-3.218238,51.474672],[-3.219645,51.474993],[-3.22462,51.474848],[-3.229664,51.473416],[-3.230545,51.472637],[-3.234599,51.472312],[-3.240881,51.470639],[-3.242808,51.469468],[-3.244199,51.466081],[-3.245322,51.465439],[-3.248053,51.464555],[-3.252857,51.464338],[-3.257989,51.46543],[-3.261224,51.465536],[-3.267307,51.464996],[-3.271442,51.465262],[-3.272624,51.466807],[-3.277443,51.470742],[-3.277982,51.470828],[-3.280152,51.473835],[-3.281778,51.47808],[-3.282182,51.480478],[-3.283136,51.482137],[-3.290184,51.489837],[-3.293586,51.491957],[-3.295529,51.495234],[-3.296409,51.498052],[-3.297933,51.499611],[-3.299847,51.500578],[-3.301857,51.501064],[-3.306323,51.502662],[-3.3094,51.504799],[-3.310801,51.505178],[-3.311573,51.50714],[-3.314841,51.506418],[-3.318835,51.50628],[-3.329792,51.50824],[-3.335739,51.508427]]]]},"properties":{"LAD22CD":"W06000014","LAD22NM":"Vale of Glamorgan","BNG_E":302947,"BNG_N":173080,"LONG":-3.39801,"LAT":51.44836,"GlobalID":"70c3cb99-3fee-41eb-a343-fafa96e67a98"},"id":365}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.117565,51.375466],[-3.116643,51.377607],[-3.117991,51.379177],[-3.119231,51.379761],[-3.121662,51.380165],[-3.124948,51.378505],[-3.124403,51.377789],[-3.12514,51.376968],[-3.123837,51.375857],[-3.12179,51.375613],[-3.120326,51.374967],[-3.117565,51.375466]]],[[[-3.118891,51.545638],[-3.121117,51.547342],[-3.124721,51.546942],[-3.127296,51.547784],[-3.125822,51.548301],[-3.125443,51.5502],[-3.12826,51.549733],[-3.130288,51.550916],[-3.133473,51.551862],[-3.134894,51.551798],[-3.134981,51.55269],[-3.138692,51.553228],[-3.141143,51.554101],[-3.143794,51.553747],[-3.145261,51.555076],[-3.14669,51.552574],[-3.147554,51.552626],[-3.150306,51.551097],[-3.152576,51.551641],[-3.152864,51.552498],[-3.154992,51.554265],[-3.155774,51.556109],[-3.157376,51.557681],[-3.161633,51.559263],[-3.163735,51.560505],[-3.16468,51.559847],[-3.171154,51.558639],[-3.177468,51.558196],[-3.179723,51.557421],[-3.184049,51.556688],[-3.184786,51.556989],[-3.188042,51.556697],[-3.18917,51.557503],[-3.191179,51.557675],[-3.194979,51.556721],[-3.199502,51.556256],[-3.1999,51.556752],[-3.202645,51.555166],[-3.201997,51.554334],[-3.203331,51.553717],[-3.21205,51.551966],[-3.215874,51.551348],[-3.21519,51.553201],[-3.218882,51.552379],[-3.221534,51.551295],[-3.22564,51.550661],[-3.227898,51.550126],[-3.229635,51.551028],[-3.230565,51.550576],[-3.233954,51.552905],[-3.237696,51.552603],[-3.241865,51.550926],[-3.243525,51.54945],[-3.245544,51.548664],[-3.246559,51.546217],[-3.250811,51.541826],[-3.261572,51.537787],[-3.263112,51.53918],[-3.266945,51.541132],[-3.269974,51.543602],[-3.274058,51.545813],[-3.27437,51.546928],[-3.273167,51.548451],[-3.274163,51.549779],[-3.274398,51.551174],[-3.277433,51.551071],[-3.277667,51.551858],[-3.27986,51.550897],[-3.284005,51.551236],[-3.284129,51.549724],[-3.290705,51.549725],[-3.29819,51.547794],[-3.299653,51.548594],[-3.303927,51.547779],[-3.305593,51.54789],[-3.310364,51.548932],[-3.31054,51.547465],[-3.311748,51.546162],[-3.310107,51.544435],[-3.314692,51.543291],[-3.319179,51.54315],[-3.32136,51.542826],[-3.322853,51.541706],[-3.320722,51.540568],[-3.322114,51.540152],[-3.321993,51.538806],[-3.323188,51.538703],[-3.323101,51.537512],[-3.324359,51.535775],[-3.32505,51.535966],[-3.328216,51.535317],[-3.332858,51.536246],[-3.335512,51.53719],[-3.337872,51.535752],[-3.341593,51.535139],[-3.343379,51.532281],[-3.343777,51.529906],[-3.343141,51.528747],[-3.339925,51.526448],[-3.339116,51.524701],[-3.339493,51.522541],[-3.337851,51.522596],[-3.336499,51.521326],[-3.335244,51.518871],[-3.337201,51.518618],[-3.33603,51.516926],[-3.336783,51.516155],[-3.336576,51.5153],[-3.339027,51.514685],[-3.33915,51.511611],[-3.337993,51.511017],[-3.337922,51.510169],[-3.335739,51.508427],[-3.329792,51.50824],[-3.318835,51.50628],[-3.314841,51.506418],[-3.311573,51.50714],[-3.310801,51.505178],[-3.3094,51.504799],[-3.306323,51.502662],[-3.301857,51.501064],[-3.299847,51.500578],[-3.297933,51.499611],[-3.296409,51.498052],[-3.295529,51.495234],[-3.293586,51.491957],[-3.290184,51.489837],[-3.283136,51.482137],[-3.282182,51.480478],[-3.281778,51.47808],[-3.280152,51.473835],[-3.277982,51.470828],[-3.277443,51.470742],[-3.272624,51.466807],[-3.271442,51.465262],[-3.267307,51.464996],[-3.261224,51.465536],[-3.257989,51.46543],[-3.252857,51.464338],[-3.248053,51.464555],[-3.245322,51.465439],[-3.244199,51.466081],[-3.242808,51.469468],[-3.240881,51.470639],[-3.234599,51.472312],[-3.230545,51.472637],[-3.229664,51.473416],[-3.22462,51.474848],[-3.219645,51.474993],[-3.218238,51.474672],[-3.206868,51.466034],[-3.203733,51.463054],[-3.202494,51.460104],[-3.203021,51.458532],[-3.200678,51.457861],[-3.199732,51.45648],[-3.197008,51.455472],[-3.196225,51.455678],[-3.197028,51.457173],[-3.196542,51.457912],[-3.195211,51.458151],[-3.193634,51.457845],[-3.193274,51.457054],[-3.194187,51.454972],[-3.192355,51.453485],[-3.189684,51.449913],[-3.187694,51.448518],[-3.185143,51.447267],[-3.183241,51.447178],[-3.1796,51.44787],[-3.176917,51.446849],[-3.17517,51.446527],[-3.173351,51.446745],[-3.171255,51.447557],[-3.169015,51.44769],[-3.167612,51.447307],[-3.165714,51.446186],[-3.164353,51.445734],[-3.164126,51.445665],[-3.16557,51.44691],[-3.164392,51.448594],[-3.164674,51.451088],[-3.164121,51.451841],[-3.16177,51.452945],[-3.159947,51.453071],[-3.159293,51.452598],[-3.159591,51.451431],[-3.158572,51.451141],[-3.156664,51.451658],[-3.149927,51.45687],[-3.140997,51.462769],[-3.13613,51.466824],[-3.135794,51.468289],[-3.140188,51.472922],[-3.135751,51.47248],[-3.133015,51.473432],[-3.131551,51.474517],[-3.130225,51.47725],[-3.127618,51.478929],[-3.126123,51.480492],[-3.126002,51.481481],[-3.127011,51.48282],[-3.125429,51.483863],[-3.123581,51.486046],[-3.123189,51.489189],[-3.125423,51.488836],[-3.126802,51.489309],[-3.127748,51.490996],[-3.129958,51.491],[-3.125674,51.492417],[-3.124269,51.491901],[-3.124133,51.491223],[-3.126168,51.489906],[-3.125255,51.489428],[-3.123893,51.489848],[-3.122433,51.491906],[-3.121116,51.491584],[-3.118858,51.491854],[-3.11531,51.493139],[-3.112167,51.491755],[-3.110855,51.491501],[-3.106213,51.492986],[-3.103961,51.493435],[-3.102469,51.494184],[-3.097636,51.495499],[-3.096655,51.496047],[-3.093271,51.496742],[-3.092478,51.497551],[-3.090266,51.498346],[-3.087832,51.499675],[-3.084319,51.4994],[-3.082039,51.500933],[-3.083441,51.50293],[-3.087229,51.506023],[-3.086771,51.506282],[-3.088459,51.508733],[-3.088703,51.509958],[-3.088004,51.510539],[-3.086214,51.510718],[-3.082874,51.511826],[-3.082512,51.511401],[-3.078062,51.513225],[-3.079066,51.513928],[-3.08215,51.514853],[-3.080702,51.515238],[-3.077541,51.517099],[-3.076314,51.516207],[-3.073981,51.517597],[-3.073225,51.517141],[-3.071616,51.518011],[-3.06891,51.520266],[-3.073107,51.522041],[-3.074674,51.522285],[-3.077318,51.523666],[-3.080263,51.527352],[-3.078261,51.528194],[-3.07995,51.529692],[-3.079238,51.530058],[-3.080866,51.531606],[-3.081805,51.531262],[-3.084102,51.532466],[-3.090738,51.533362],[-3.092106,51.535578],[-3.094142,51.535704],[-3.094566,51.536918],[-3.096971,51.536976],[-3.096764,51.537776],[-3.101529,51.540371],[-3.10381,51.54095],[-3.107613,51.542893],[-3.109096,51.543084],[-3.108483,51.54516],[-3.110553,51.545868],[-3.110821,51.546456],[-3.11254,51.546757],[-3.113805,51.545424],[-3.117111,51.544385],[-3.11794,51.544426],[-3.118891,51.545638]]]]},"properties":{"LAD22CD":"W06000015","LAD22NM":"Cardiff","BNG_E":315272,"BNG_N":178887,"LONG":-3.22209,"LAT":51.50254,"GlobalID":"e17d9f4c-700e-4ff1-9252-97b24645e15f"},"id":366}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.444203,51.816486],[-3.444138,51.818251],[-3.445958,51.819829],[-3.445389,51.820864],[-3.447647,51.822178],[-3.447794,51.82308],[-3.450906,51.824858],[-3.451593,51.82569],[-3.457743,51.828335],[-3.460132,51.830129],[-3.463042,51.828841],[-3.465702,51.828588],[-3.467141,51.828776],[-3.470074,51.828505],[-3.468737,51.825872],[-3.468545,51.823456],[-3.472878,51.818515],[-3.474007,51.811628],[-3.47452,51.810755],[-3.47633,51.809471],[-3.482435,51.806983],[-3.488268,51.805921],[-3.502342,51.801013],[-3.504503,51.799963],[-3.506465,51.798392],[-3.509171,51.797333],[-3.511306,51.796046],[-3.51734,51.794314],[-3.523117,51.791643],[-3.525133,51.789955],[-3.528775,51.788473],[-3.528666,51.78725],[-3.531336,51.785912],[-3.5327,51.785558],[-3.533671,51.786723],[-3.534917,51.786619],[-3.537798,51.785102],[-3.541213,51.784563],[-3.540554,51.783005],[-3.538155,51.782416],[-3.536973,51.780616],[-3.535354,51.779855],[-3.536174,51.77843],[-3.535415,51.776911],[-3.537064,51.776198],[-3.541083,51.775561],[-3.544037,51.776355],[-3.545135,51.776041],[-3.546639,51.777665],[-3.547958,51.778085],[-3.549479,51.777847],[-3.555497,51.778263],[-3.558162,51.776834],[-3.559868,51.777516],[-3.560458,51.776219],[-3.562117,51.774922],[-3.561109,51.773952],[-3.563472,51.773466],[-3.563463,51.772309],[-3.56432,51.771189],[-3.564201,51.770132],[-3.566273,51.767409],[-3.564935,51.76565],[-3.567573,51.763715],[-3.56989,51.763772],[-3.571229,51.76217],[-3.572302,51.762156],[-3.574662,51.761298],[-3.576721,51.760925],[-3.579263,51.759621],[-3.586001,51.758371],[-3.587511,51.75715],[-3.590114,51.756686],[-3.589936,51.755313],[-3.591293,51.754612],[-3.593718,51.753187],[-3.590195,51.750033],[-3.591299,51.748971],[-3.581609,51.735192],[-3.580207,51.728398],[-3.579715,51.723458],[-3.578977,51.722323],[-3.578646,51.717881],[-3.582212,51.714044],[-3.585174,51.703139],[-3.581272,51.695393],[-3.586379,51.690423],[-3.584486,51.68622],[-3.588492,51.681805],[-3.589585,51.679272],[-3.581904,51.673601],[-3.576403,51.663762],[-3.574767,51.662072],[-3.564029,51.654971],[-3.561774,51.647427],[-3.56331,51.645485],[-3.561597,51.64483],[-3.557428,51.645749],[-3.550203,51.645838],[-3.548754,51.645596],[-3.546386,51.644452],[-3.543999,51.643874],[-3.538131,51.644284],[-3.536969,51.643647],[-3.535749,51.641518],[-3.535583,51.640146],[-3.533569,51.63904],[-3.524803,51.635607],[-3.523123,51.634071],[-3.520633,51.629913],[-3.510022,51.618141],[-3.503935,51.616436],[-3.50258,51.615029],[-3.499662,51.614051],[-3.498069,51.611553],[-3.49643,51.610524],[-3.491935,51.609617],[-3.486247,51.610087],[-3.485063,51.609129],[-3.483899,51.607163],[-3.481288,51.605804],[-3.478355,51.605264],[-3.476317,51.603631],[-3.473673,51.602542],[-3.472809,51.601666],[-3.471676,51.598588],[-3.47172,51.596523],[-3.472362,51.595118],[-3.474287,51.592795],[-3.475412,51.592194],[-3.476072,51.589792],[-3.476856,51.588543],[-3.478086,51.588007],[-3.477819,51.585934],[-3.475945,51.583813],[-3.476401,51.581802],[-3.478524,51.580398],[-3.480036,51.57814],[-3.484352,51.576936],[-3.48632,51.576553],[-3.486037,51.575883],[-3.487913,51.57482],[-3.486233,51.573897],[-3.484635,51.573734],[-3.48365,51.572821],[-3.484199,51.571744],[-3.485509,51.570681],[-3.485465,51.569634],[-3.483167,51.568233],[-3.480481,51.567149],[-3.476797,51.566431],[-3.477474,51.565401],[-3.478234,51.560242],[-3.479421,51.559732],[-3.480138,51.558219],[-3.475809,51.557259],[-3.470469,51.554089],[-3.469502,51.551831],[-3.469408,51.548482],[-3.465859,51.544943],[-3.463644,51.544173],[-3.463025,51.543412],[-3.463649,51.542551],[-3.466176,51.541166],[-3.468134,51.540474],[-3.472124,51.540626],[-3.474608,51.540209],[-3.475528,51.539219],[-3.477252,51.538532],[-3.478924,51.536242],[-3.47913,51.535134],[-3.480638,51.533531],[-3.480695,51.532304],[-3.482001,51.530927],[-3.481735,51.53014],[-3.480316,51.530141],[-3.481336,51.52842],[-3.48356,51.526334],[-3.483353,51.525135],[-3.484326,51.523207],[-3.483666,51.522933],[-3.48596,51.518517],[-3.48792,51.516795],[-3.489759,51.516055],[-3.491426,51.51581],[-3.493151,51.514609],[-3.495266,51.51416],[-3.497512,51.512642],[-3.494317,51.51245],[-3.490581,51.512754],[-3.475578,51.515318],[-3.467874,51.515019],[-3.462019,51.514141],[-3.454998,51.512038],[-3.449051,51.510648],[-3.443231,51.510147],[-3.442583,51.50881],[-3.437642,51.506595],[-3.433302,51.50707],[-3.432642,51.506266],[-3.429392,51.507608],[-3.427685,51.505552],[-3.42519,51.50698],[-3.423288,51.507331],[-3.421563,51.505563],[-3.420183,51.505276],[-3.416999,51.506566],[-3.414082,51.506704],[-3.412716,51.506003],[-3.411058,51.506767],[-3.409674,51.506239],[-3.40899,51.503894],[-3.40924,51.502902],[-3.407731,51.502275],[-3.405355,51.500045],[-3.403662,51.499268],[-3.401913,51.498963],[-3.399891,51.500135],[-3.399274,51.502249],[-3.399507,51.503447],[-3.398571,51.504794],[-3.397442,51.505458],[-3.397163,51.506814],[-3.395795,51.508025],[-3.392919,51.508725],[-3.391094,51.508854],[-3.39027,51.509579],[-3.387198,51.509163],[-3.383308,51.509803],[-3.381219,51.51099],[-3.379223,51.510979],[-3.379422,51.512483],[-3.376491,51.512829],[-3.375881,51.510849],[-3.370706,51.509177],[-3.370162,51.510234],[-3.367809,51.510641],[-3.365219,51.512064],[-3.36173,51.51099],[-3.361116,51.511778],[-3.359216,51.511556],[-3.358163,51.512193],[-3.354285,51.51009],[-3.348572,51.509058],[-3.341839,51.508498],[-3.335739,51.508427],[-3.337922,51.510169],[-3.337993,51.511017],[-3.33915,51.511611],[-3.339027,51.514685],[-3.336576,51.5153],[-3.336783,51.516155],[-3.33603,51.516926],[-3.337201,51.518618],[-3.335244,51.518871],[-3.336499,51.521326],[-3.337851,51.522596],[-3.339493,51.522541],[-3.339116,51.524701],[-3.339925,51.526448],[-3.343141,51.528747],[-3.343777,51.529906],[-3.343379,51.532281],[-3.341593,51.535139],[-3.337872,51.535752],[-3.335512,51.53719],[-3.332858,51.536246],[-3.328216,51.535317],[-3.32505,51.535966],[-3.324359,51.535775],[-3.323101,51.537512],[-3.323188,51.538703],[-3.321993,51.538806],[-3.322114,51.540152],[-3.320722,51.540568],[-3.322853,51.541706],[-3.32136,51.542826],[-3.319179,51.54315],[-3.314692,51.543291],[-3.310107,51.544435],[-3.311748,51.546162],[-3.31054,51.547465],[-3.310364,51.548932],[-3.305593,51.54789],[-3.303927,51.547779],[-3.299653,51.548594],[-3.29819,51.547794],[-3.290705,51.549725],[-3.284129,51.549724],[-3.284005,51.551236],[-3.27986,51.550897],[-3.277667,51.551858],[-3.277433,51.551071],[-3.274398,51.551174],[-3.274163,51.549779],[-3.273167,51.548451],[-3.27437,51.546928],[-3.274058,51.545813],[-3.269974,51.543602],[-3.266945,51.541132],[-3.263112,51.53918],[-3.261572,51.537787],[-3.250811,51.541826],[-3.246559,51.546217],[-3.245544,51.548664],[-3.243525,51.54945],[-3.241865,51.550926],[-3.237696,51.552603],[-3.237367,51.555055],[-3.236339,51.556613],[-3.236796,51.558175],[-3.238446,51.559038],[-3.239775,51.561948],[-3.241549,51.562921],[-3.242454,51.565488],[-3.245801,51.566685],[-3.249283,51.569421],[-3.25006,51.569134],[-3.254221,51.569247],[-3.25853,51.567448],[-3.262777,51.566215],[-3.263598,51.56855],[-3.265796,51.570995],[-3.26811,51.572854],[-3.268157,51.574334],[-3.26962,51.575404],[-3.268535,51.576363],[-3.269373,51.577272],[-3.266345,51.578871],[-3.266769,51.580013],[-3.269848,51.583831],[-3.271132,51.584554],[-3.272563,51.584608],[-3.275902,51.585654],[-3.27744,51.586661],[-3.279868,51.585652],[-3.280937,51.584852],[-3.282934,51.585909],[-3.287252,51.587472],[-3.289446,51.589769],[-3.290431,51.592117],[-3.291382,51.592107],[-3.291462,51.593444],[-3.2927,51.595146],[-3.292023,51.597873],[-3.293753,51.597866],[-3.292986,51.600768],[-3.296102,51.60277],[-3.297261,51.60575],[-3.300271,51.610609],[-3.302704,51.614995],[-3.30026,51.618186],[-3.301458,51.619441],[-3.304131,51.620006],[-3.305559,51.621062],[-3.303098,51.62257],[-3.30256,51.623612],[-3.303346,51.624636],[-3.303401,51.626263],[-3.304753,51.627662],[-3.303373,51.62896],[-3.302686,51.631105],[-3.303212,51.631784],[-3.302818,51.632762],[-3.303349,51.634247],[-3.302645,51.634912],[-3.303075,51.635867],[-3.304496,51.636702],[-3.304415,51.63776],[-3.305696,51.637863],[-3.308296,51.639007],[-3.310392,51.641619],[-3.313907,51.64468],[-3.314612,51.645267],[-3.313688,51.647911],[-3.315857,51.648826],[-3.312732,51.651681],[-3.313297,51.653033],[-3.313157,51.654471],[-3.313862,51.655704],[-3.316691,51.65566],[-3.317736,51.655242],[-3.320306,51.655444],[-3.321292,51.654839],[-3.32193,51.6521],[-3.323852,51.653836],[-3.325682,51.654055],[-3.327583,51.655178],[-3.329281,51.655118],[-3.331467,51.656713],[-3.334289,51.659626],[-3.339797,51.667158],[-3.342513,51.668254],[-3.343533,51.669006],[-3.343978,51.670948],[-3.349433,51.676794],[-3.35658,51.681065],[-3.361199,51.690293],[-3.362417,51.691805],[-3.363205,51.694037],[-3.364981,51.696369],[-3.367505,51.698594],[-3.372207,51.702211],[-3.380604,51.711373],[-3.385703,51.715053],[-3.388913,51.716586],[-3.398995,51.718406],[-3.399956,51.718772],[-3.405435,51.722603],[-3.411594,51.731283],[-3.412891,51.733408],[-3.412215,51.733578],[-3.413488,51.735256],[-3.418218,51.738208],[-3.419872,51.740373],[-3.423686,51.742286],[-3.425211,51.743437],[-3.432957,51.747773],[-3.435825,51.749976],[-3.434957,51.75052],[-3.436578,51.752471],[-3.442561,51.755668],[-3.447652,51.758833],[-3.45315,51.761662],[-3.450102,51.7624],[-3.438597,51.762511],[-3.436807,51.760536],[-3.434052,51.759622],[-3.433044,51.758765],[-3.430896,51.758413],[-3.428664,51.758733],[-3.427472,51.758498],[-3.426618,51.759954],[-3.424231,51.759946],[-3.422933,51.761463],[-3.425421,51.76276],[-3.423632,51.763792],[-3.421033,51.764606],[-3.419956,51.764211],[-3.418401,51.764554],[-3.420432,51.766398],[-3.417498,51.766489],[-3.416577,51.76808],[-3.417386,51.769254],[-3.418876,51.769892],[-3.418315,51.771566],[-3.420102,51.775217],[-3.423586,51.776169],[-3.428442,51.780167],[-3.428651,51.781327],[-3.427734,51.783139],[-3.427403,51.785131],[-3.427965,51.78568],[-3.431604,51.78732],[-3.432451,51.789207],[-3.434243,51.790153],[-3.434069,51.791482],[-3.433082,51.792334],[-3.433529,51.793012],[-3.435796,51.792084],[-3.440038,51.794981],[-3.440688,51.795804],[-3.4417,51.798183],[-3.442509,51.802872],[-3.44543,51.806407],[-3.444417,51.809597],[-3.445836,51.813867],[-3.445363,51.815973],[-3.444203,51.816486]]]},"properties":{"LAD22CD":"W06000016","LAD22NM":"Rhondda Cynon Taf","BNG_E":302237,"BNG_N":192395,"LONG":-3.41359,"LAT":51.62185,"GlobalID":"d1f10b8e-43f9-4838-b9eb-1b0d0f9d730d"},"id":367}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.116115,51.690802],[-3.117901,51.690019],[-3.11861,51.689252],[-3.123217,51.686022],[-3.12138,51.684972],[-3.122038,51.68394],[-3.123637,51.683044],[-3.12549,51.682646],[-3.125634,51.682098],[-3.128307,51.681574],[-3.132864,51.681302],[-3.135568,51.681299],[-3.137668,51.681926],[-3.139034,51.683341],[-3.138927,51.684786],[-3.136908,51.686455],[-3.132298,51.688966],[-3.133354,51.689594],[-3.128515,51.693032],[-3.128142,51.694761],[-3.129938,51.696517],[-3.13301,51.698297],[-3.139892,51.699658],[-3.146155,51.702392],[-3.146699,51.703639],[-3.146136,51.706786],[-3.146389,51.709522],[-3.147329,51.710263],[-3.150828,51.710221],[-3.152509,51.710485],[-3.155814,51.712769],[-3.156144,51.713766],[-3.159211,51.713203],[-3.166001,51.710671],[-3.167249,51.709902],[-3.169101,51.711631],[-3.171965,51.715274],[-3.173582,51.715817],[-3.174077,51.716962],[-3.178979,51.719219],[-3.177784,51.719621],[-3.17828,51.720615],[-3.180317,51.72222],[-3.181484,51.723951],[-3.182539,51.724204],[-3.185371,51.72622],[-3.184717,51.726501],[-3.185699,51.727983],[-3.186851,51.72847],[-3.19407,51.739262],[-3.210131,51.750095],[-3.213565,51.747772],[-3.216209,51.747691],[-3.21819,51.745659],[-3.219598,51.745246],[-3.217142,51.743009],[-3.21733,51.741903],[-3.21525,51.737695],[-3.211789,51.733644],[-3.211553,51.731237],[-3.21333,51.731192],[-3.214134,51.730596],[-3.216264,51.730227],[-3.216971,51.729221],[-3.218786,51.728969],[-3.219712,51.727437],[-3.222811,51.728941],[-3.224049,51.72915],[-3.223697,51.725245],[-3.226797,51.728764],[-3.225995,51.731839],[-3.228428,51.733067],[-3.232617,51.734013],[-3.233326,51.734931],[-3.233385,51.736736],[-3.234312,51.73801],[-3.238453,51.739566],[-3.241372,51.741337],[-3.243883,51.742403],[-3.244774,51.743171],[-3.246489,51.743439],[-3.248489,51.74417],[-3.247037,51.745922],[-3.249207,51.74725],[-3.253425,51.746446],[-3.254132,51.748752],[-3.258129,51.752924],[-3.256665,51.755747],[-3.255709,51.756376],[-3.257497,51.758254],[-3.259495,51.758625],[-3.261864,51.759772],[-3.266973,51.759292],[-3.267407,51.76172],[-3.267144,51.763636],[-3.267529,51.764804],[-3.268571,51.765452],[-3.270366,51.769545],[-3.267571,51.770777],[-3.2683,51.772488],[-3.272455,51.776389],[-3.272483,51.777483],[-3.275364,51.778559],[-3.278294,51.780419],[-3.280414,51.780592],[-3.282589,51.782826],[-3.287009,51.781531],[-3.287688,51.782015],[-3.288899,51.784715],[-3.291323,51.785734],[-3.292182,51.787482],[-3.292026,51.790053],[-3.293555,51.791896],[-3.295274,51.792582],[-3.295372,51.794041],[-3.297721,51.794807],[-3.299881,51.79471],[-3.301317,51.798976],[-3.305202,51.798444],[-3.306695,51.79789],[-3.308648,51.79525],[-3.310095,51.794302],[-3.317045,51.79425],[-3.33447,51.790402],[-3.32906,51.758723],[-3.317943,51.74288],[-3.314768,51.742859],[-3.31222,51.741837],[-3.310113,51.739455],[-3.310198,51.738637],[-3.312641,51.737852],[-3.313829,51.736761],[-3.31416,51.734195],[-3.315245,51.732957],[-3.315512,51.731809],[-3.300637,51.736314],[-3.299484,51.734401],[-3.299578,51.729982],[-3.297269,51.727997],[-3.297724,51.724675],[-3.297486,51.723265],[-3.296524,51.721767],[-3.293332,51.718883],[-3.291519,51.715132],[-3.288601,51.712606],[-3.289576,51.7097],[-3.286027,51.702289],[-3.278725,51.694647],[-3.278239,51.693353],[-3.27803,51.689435],[-3.275424,51.683332],[-3.273931,51.682337],[-3.276103,51.681267],[-3.278851,51.680972],[-3.281029,51.679171],[-3.282504,51.678692],[-3.28468,51.67713],[-3.285071,51.675204],[-3.284314,51.673913],[-3.284611,51.670498],[-3.283649,51.669114],[-3.283339,51.667309],[-3.284192,51.665453],[-3.284375,51.663524],[-3.283418,51.660927],[-3.284036,51.660599],[-3.285304,51.658677],[-3.286194,51.658037],[-3.288804,51.658195],[-3.291095,51.659284],[-3.292515,51.659443],[-3.29316,51.661959],[-3.295205,51.663779],[-3.29611,51.664094],[-3.298581,51.662108],[-3.297465,51.661121],[-3.297717,51.6597],[-3.297075,51.65891],[-3.29764,51.658194],[-3.297033,51.65722],[-3.299343,51.656111],[-3.300797,51.654567],[-3.300022,51.653465],[-3.300972,51.651839],[-3.304118,51.650247],[-3.303759,51.649807],[-3.307645,51.648063],[-3.309095,51.647023],[-3.310027,51.645383],[-3.313907,51.64468],[-3.310392,51.641619],[-3.308296,51.639007],[-3.305696,51.637863],[-3.304415,51.63776],[-3.304496,51.636702],[-3.303075,51.635867],[-3.302645,51.634912],[-3.303349,51.634247],[-3.302818,51.632762],[-3.303212,51.631784],[-3.302686,51.631105],[-3.303373,51.62896],[-3.304753,51.627662],[-3.303401,51.626263],[-3.303346,51.624636],[-3.30256,51.623612],[-3.303098,51.62257],[-3.305559,51.621062],[-3.304131,51.620006],[-3.301458,51.619441],[-3.30026,51.618186],[-3.302704,51.614995],[-3.300271,51.610609],[-3.297261,51.60575],[-3.296102,51.60277],[-3.292986,51.600768],[-3.293753,51.597866],[-3.292023,51.597873],[-3.2927,51.595146],[-3.291462,51.593444],[-3.291382,51.592107],[-3.290431,51.592117],[-3.289446,51.589769],[-3.287252,51.587472],[-3.282934,51.585909],[-3.280937,51.584852],[-3.279868,51.585652],[-3.27744,51.586661],[-3.275902,51.585654],[-3.272563,51.584608],[-3.271132,51.584554],[-3.269848,51.583831],[-3.266769,51.580013],[-3.266345,51.578871],[-3.269373,51.577272],[-3.268535,51.576363],[-3.26962,51.575404],[-3.268157,51.574334],[-3.26811,51.572854],[-3.265796,51.570995],[-3.263598,51.56855],[-3.262777,51.566215],[-3.25853,51.567448],[-3.254221,51.569247],[-3.25006,51.569134],[-3.249283,51.569421],[-3.245801,51.566685],[-3.242454,51.565488],[-3.241549,51.562921],[-3.239775,51.561948],[-3.238446,51.559038],[-3.236796,51.558175],[-3.236339,51.556613],[-3.237367,51.555055],[-3.237696,51.552603],[-3.233954,51.552905],[-3.230565,51.550576],[-3.229635,51.551028],[-3.227898,51.550126],[-3.22564,51.550661],[-3.221534,51.551295],[-3.218882,51.552379],[-3.21519,51.553201],[-3.215874,51.551348],[-3.21205,51.551966],[-3.203331,51.553717],[-3.201997,51.554334],[-3.202645,51.555166],[-3.1999,51.556752],[-3.199502,51.556256],[-3.194979,51.556721],[-3.191179,51.557675],[-3.18917,51.557503],[-3.188042,51.556697],[-3.184786,51.556989],[-3.184049,51.556688],[-3.179723,51.557421],[-3.177468,51.558196],[-3.171154,51.558639],[-3.16468,51.559847],[-3.163735,51.560505],[-3.161633,51.559263],[-3.157376,51.557681],[-3.155774,51.556109],[-3.154992,51.554265],[-3.152864,51.552498],[-3.152576,51.551641],[-3.150306,51.551097],[-3.147554,51.552626],[-3.14669,51.552574],[-3.145261,51.555076],[-3.143794,51.553747],[-3.141143,51.554101],[-3.138692,51.553228],[-3.134981,51.55269],[-3.134894,51.551798],[-3.133473,51.551862],[-3.130288,51.550916],[-3.12826,51.549733],[-3.125443,51.5502],[-3.125822,51.548301],[-3.127296,51.547784],[-3.124721,51.546942],[-3.121117,51.547342],[-3.118891,51.545638],[-3.117325,51.54688],[-3.117113,51.54839],[-3.112696,51.548901],[-3.110532,51.550706],[-3.11025,51.551331],[-3.111446,51.552331],[-3.111225,51.553516],[-3.109058,51.554459],[-3.108878,51.557127],[-3.107592,51.558335],[-3.105968,51.558758],[-3.102201,51.55882],[-3.100044,51.560097],[-3.10064,51.560976],[-3.103752,51.562873],[-3.103757,51.564278],[-3.102434,51.564923],[-3.100128,51.565437],[-3.098934,51.563623],[-3.096574,51.562749],[-3.094293,51.563048],[-3.093293,51.563924],[-3.092891,51.565214],[-3.090228,51.568541],[-3.090751,51.569956],[-3.093066,51.570149],[-3.097453,51.57213],[-3.098587,51.57312],[-3.09947,51.575577],[-3.100158,51.576089],[-3.102896,51.574903],[-3.105014,51.574801],[-3.108806,51.576325],[-3.109581,51.577449],[-3.112279,51.578624],[-3.115125,51.580513],[-3.117663,51.580695],[-3.120272,51.579825],[-3.121768,51.57971],[-3.121705,51.580984],[-3.123898,51.584455],[-3.123292,51.586818],[-3.124192,51.588551],[-3.121396,51.589849],[-3.11995,51.592512],[-3.114241,51.593688],[-3.109367,51.594912],[-3.109622,51.595319],[-3.107655,51.596403],[-3.105158,51.597215],[-3.102702,51.596189],[-3.099583,51.594093],[-3.095385,51.592485],[-3.093738,51.591398],[-3.093571,51.593205],[-3.092187,51.595794],[-3.092566,51.596633],[-3.08992,51.597482],[-3.087565,51.597693],[-3.086108,51.596004],[-3.084406,51.597527],[-3.082065,51.596554],[-3.078507,51.599462],[-3.078371,51.599985],[-3.074356,51.600419],[-3.073545,51.599732],[-3.072173,51.60084],[-3.071805,51.6023],[-3.070459,51.603557],[-3.068819,51.601954],[-3.066922,51.602678],[-3.066988,51.603157],[-3.064573,51.603933],[-3.063701,51.605474],[-3.069607,51.606395],[-3.07126,51.606935],[-3.072438,51.608282],[-3.073884,51.608498],[-3.075409,51.60991],[-3.078682,51.611697],[-3.079161,51.612309],[-3.08122,51.613017],[-3.082977,51.616349],[-3.082843,51.617844],[-3.081829,51.619433],[-3.083288,51.619731],[-3.085688,51.621123],[-3.08681,51.627075],[-3.097235,51.630123],[-3.099319,51.630345],[-3.102079,51.63132],[-3.101943,51.632973],[-3.102655,51.633951],[-3.100629,51.634626],[-3.098217,51.637162],[-3.094188,51.638355],[-3.091922,51.640484],[-3.088983,51.642439],[-3.087011,51.644231],[-3.085005,51.646771],[-3.082422,51.647827],[-3.07844,51.650484],[-3.076036,51.65136],[-3.074839,51.65224],[-3.075415,51.655879],[-3.07834,51.660104],[-3.076739,51.65905],[-3.075681,51.659245],[-3.072709,51.662647],[-3.073207,51.670754],[-3.07166,51.674174],[-3.080946,51.683297],[-3.082741,51.684139],[-3.082573,51.686688],[-3.082961,51.687476],[-3.084423,51.688359],[-3.091288,51.686204],[-3.092255,51.686592],[-3.095376,51.685075],[-3.099319,51.682501],[-3.101974,51.682092],[-3.104223,51.682428],[-3.107416,51.683572],[-3.11006,51.683941],[-3.110139,51.685209],[-3.113839,51.684944],[-3.115579,51.68512],[-3.115353,51.686154],[-3.116336,51.68674],[-3.115348,51.688088],[-3.116061,51.688742],[-3.114808,51.689612],[-3.116115,51.690802]]]},"properties":{"LAD22CD":"W06000018","LAD22NM":"Caerphilly","BNG_E":317245,"BNG_N":195259,"LONG":-3.19753,"LAT":51.65001,"GlobalID":"a4c79899-e554-437a-a718-2822b6df281c"},"id":368}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.157352,51.816051],[-3.192078,51.813249],[-3.202543,51.812778],[-3.204232,51.812958],[-3.206846,51.813766],[-3.208313,51.813476],[-3.238779,51.812355],[-3.283435,51.825489],[-3.308586,51.806133],[-3.310095,51.794302],[-3.308648,51.79525],[-3.306695,51.79789],[-3.305202,51.798444],[-3.301317,51.798976],[-3.299881,51.79471],[-3.297721,51.794807],[-3.295372,51.794041],[-3.295274,51.792582],[-3.293555,51.791896],[-3.292026,51.790053],[-3.292182,51.787482],[-3.291323,51.785734],[-3.288899,51.784715],[-3.287688,51.782015],[-3.287009,51.781531],[-3.282589,51.782826],[-3.280414,51.780592],[-3.278294,51.780419],[-3.275364,51.778559],[-3.272483,51.777483],[-3.272455,51.776389],[-3.2683,51.772488],[-3.267571,51.770777],[-3.270366,51.769545],[-3.268571,51.765452],[-3.267529,51.764804],[-3.267144,51.763636],[-3.267407,51.76172],[-3.266973,51.759292],[-3.261864,51.759772],[-3.259495,51.758625],[-3.257497,51.758254],[-3.255709,51.756376],[-3.256665,51.755747],[-3.258129,51.752924],[-3.254132,51.748752],[-3.253425,51.746446],[-3.249207,51.74725],[-3.247037,51.745922],[-3.248489,51.74417],[-3.246489,51.743439],[-3.244774,51.743171],[-3.243883,51.742403],[-3.241372,51.741337],[-3.238453,51.739566],[-3.234312,51.73801],[-3.233385,51.736736],[-3.233326,51.734931],[-3.232617,51.734013],[-3.228428,51.733067],[-3.225995,51.731839],[-3.226797,51.728764],[-3.223697,51.725245],[-3.224049,51.72915],[-3.222811,51.728941],[-3.219712,51.727437],[-3.218786,51.728969],[-3.216971,51.729221],[-3.216264,51.730227],[-3.214134,51.730596],[-3.21333,51.731192],[-3.211553,51.731237],[-3.211789,51.733644],[-3.21525,51.737695],[-3.21733,51.741903],[-3.217142,51.743009],[-3.219598,51.745246],[-3.21819,51.745659],[-3.216209,51.747691],[-3.213565,51.747772],[-3.210131,51.750095],[-3.19407,51.739262],[-3.186851,51.72847],[-3.185699,51.727983],[-3.184717,51.726501],[-3.185371,51.72622],[-3.182539,51.724204],[-3.181484,51.723951],[-3.180317,51.72222],[-3.17828,51.720615],[-3.177784,51.719621],[-3.178979,51.719219],[-3.174077,51.716962],[-3.173582,51.715817],[-3.171965,51.715274],[-3.169101,51.711631],[-3.167249,51.709902],[-3.166001,51.710671],[-3.159211,51.713203],[-3.156144,51.713766],[-3.155814,51.712769],[-3.152509,51.710485],[-3.150828,51.710221],[-3.147329,51.710263],[-3.146389,51.709522],[-3.146136,51.706786],[-3.146699,51.703639],[-3.146155,51.702392],[-3.139892,51.699658],[-3.13301,51.698297],[-3.129938,51.696517],[-3.128142,51.694761],[-3.128515,51.693032],[-3.133354,51.689594],[-3.132298,51.688966],[-3.136908,51.686455],[-3.138927,51.684786],[-3.139034,51.683341],[-3.137668,51.681926],[-3.135568,51.681299],[-3.132864,51.681302],[-3.128307,51.681574],[-3.125634,51.682098],[-3.12549,51.682646],[-3.123637,51.683044],[-3.122038,51.68394],[-3.12138,51.684972],[-3.123217,51.686022],[-3.11861,51.689252],[-3.117901,51.690019],[-3.116115,51.690802],[-3.117078,51.691657],[-3.117152,51.694377],[-3.114409,51.696121],[-3.115095,51.697437],[-3.109515,51.702272],[-3.107833,51.715068],[-3.109519,51.716662],[-3.110059,51.718549],[-3.106016,51.720515],[-3.109048,51.721983],[-3.109652,51.722967],[-3.108852,51.724739],[-3.108747,51.727036],[-3.110171,51.728628],[-3.111938,51.734794],[-3.108589,51.736387],[-3.107939,51.737011],[-3.10639,51.74176],[-3.107689,51.743139],[-3.10944,51.743718],[-3.110837,51.745057],[-3.111039,51.747435],[-3.110058,51.749665],[-3.110104,51.751119],[-3.111846,51.753451],[-3.11472,51.754875],[-3.11519,51.757237],[-3.114956,51.758583],[-3.106114,51.761252],[-3.123806,51.771111],[-3.143924,51.786101],[-3.136293,51.791742],[-3.134492,51.792254],[-3.134189,51.79281],[-3.138194,51.793104],[-3.13983,51.794176],[-3.141573,51.794716],[-3.145529,51.794857],[-3.150116,51.795898],[-3.152879,51.795686],[-3.155443,51.796452],[-3.154043,51.79812],[-3.152919,51.798122],[-3.151019,51.798832],[-3.149658,51.798752],[-3.149283,51.7997],[-3.152042,51.799857],[-3.152575,51.801394],[-3.153592,51.802625],[-3.152996,51.803678],[-3.148718,51.803702],[-3.147535,51.804532],[-3.145828,51.804697],[-3.147881,51.806448],[-3.151185,51.807486],[-3.150878,51.809214],[-3.149685,51.810382],[-3.150492,51.812721],[-3.152232,51.813837],[-3.154344,51.814172],[-3.157184,51.815178],[-3.157352,51.816051]]]},"properties":{"LAD22CD":"W06000019","LAD22NM":"Blaenau Gwent","BNG_E":318236,"BNG_N":206771,"LONG":-3.18592,"LAT":51.75364,"GlobalID":"36878f97-690b-4ca9-b906-9d0e50aeb5a9"},"id":369}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.958911,51.62878],[-2.959507,51.629447],[-2.958895,51.630272],[-2.960143,51.631099],[-2.959603,51.632218],[-2.961541,51.632577],[-2.962207,51.631678],[-2.964648,51.632098],[-2.965333,51.632737],[-2.966891,51.63174],[-2.968679,51.631617],[-2.970896,51.63331],[-2.973109,51.63402],[-2.97397,51.634935],[-2.974543,51.636712],[-2.973774,51.637501],[-2.974048,51.63857],[-2.975746,51.639835],[-2.976453,51.640881],[-2.977838,51.640945],[-2.978764,51.642003],[-2.978187,51.643295],[-2.979279,51.644598],[-2.977864,51.646415],[-2.975996,51.647229],[-2.977014,51.649224],[-2.976842,51.651451],[-2.980605,51.654876],[-2.982006,51.654831],[-2.982588,51.655509],[-2.984642,51.655723],[-2.986091,51.656655],[-2.986861,51.65633],[-2.989299,51.657823],[-2.99047,51.661115],[-2.990238,51.662101],[-2.991337,51.663132],[-2.991379,51.663995],[-2.996624,51.666531],[-3.000065,51.666644],[-3.000994,51.667955],[-2.99962,51.66891],[-3.00347,51.669057],[-3.002758,51.669594],[-3.002354,51.671002],[-3.003231,51.673228],[-3.002541,51.675507],[-3.001375,51.675991],[-3.001628,51.677788],[-2.997883,51.678299],[-2.995248,51.67919],[-2.990004,51.680117],[-2.98925,51.678038],[-2.989763,51.675724],[-2.988785,51.675715],[-2.986625,51.674867],[-2.979987,51.674937],[-2.980731,51.676166],[-2.977897,51.679378],[-2.975927,51.68391],[-2.974747,51.686227],[-2.971821,51.689298],[-2.968599,51.691439],[-2.969066,51.692573],[-2.970949,51.693887],[-2.979818,51.69335],[-2.985141,51.692253],[-2.989922,51.692281],[-2.991571,51.691722],[-2.996364,51.691277],[-2.997788,51.690715],[-3.002005,51.690829],[-3.000068,51.694224],[-2.999158,51.697288],[-2.997065,51.700253],[-2.99602,51.700064],[-2.994447,51.700751],[-2.992559,51.705236],[-2.991065,51.706285],[-2.988106,51.707292],[-2.985866,51.7089],[-2.985237,51.709682],[-2.985686,51.710545],[-2.984901,51.711583],[-2.983363,51.712499],[-2.9824,51.713923],[-2.984593,51.716208],[-2.98705,51.71731],[-2.987609,51.71806],[-2.988977,51.717842],[-2.991571,51.718521],[-2.994355,51.71785],[-2.997585,51.717683],[-3.00023,51.71909],[-3.00099,51.720575],[-3.00284,51.721294],[-3.004839,51.721467],[-3.00767,51.72086],[-3.009707,51.720845],[-3.01402,51.719469],[-3.01697,51.71989],[-3.01929,51.719882],[-3.023509,51.719],[-3.025416,51.718129],[-3.027044,51.719202],[-3.029161,51.721829],[-3.031287,51.722679],[-3.033893,51.725513],[-3.033733,51.726518],[-3.031526,51.728337],[-3.03212,51.729358],[-3.031534,51.731357],[-3.030686,51.732747],[-3.028334,51.73949],[-3.02778,51.745373],[-3.035343,51.752603],[-3.034521,51.753711],[-3.038217,51.754007],[-3.041266,51.755044],[-3.043465,51.756088],[-3.044543,51.756021],[-3.049337,51.760448],[-3.0495,51.761759],[-3.051057,51.763003],[-3.051442,51.764488],[-3.050142,51.765194],[-3.048024,51.765647],[-3.048848,51.767559],[-3.047617,51.768032],[-3.047686,51.769832],[-3.044864,51.769892],[-3.043449,51.770403],[-3.058877,51.78364],[-3.076934,51.788901],[-3.081795,51.788408],[-3.096364,51.791547],[-3.105968,51.795479],[-3.108441,51.796232],[-3.116308,51.794876],[-3.122496,51.795272],[-3.129383,51.793996],[-3.131374,51.792324],[-3.134189,51.79281],[-3.134492,51.792254],[-3.136293,51.791742],[-3.143924,51.786101],[-3.123806,51.771111],[-3.106114,51.761252],[-3.114956,51.758583],[-3.11519,51.757237],[-3.11472,51.754875],[-3.111846,51.753451],[-3.110104,51.751119],[-3.110058,51.749665],[-3.111039,51.747435],[-3.110837,51.745057],[-3.10944,51.743718],[-3.107689,51.743139],[-3.10639,51.74176],[-3.107939,51.737011],[-3.108589,51.736387],[-3.111938,51.734794],[-3.110171,51.728628],[-3.108747,51.727036],[-3.108852,51.724739],[-3.109652,51.722967],[-3.109048,51.721983],[-3.106016,51.720515],[-3.110059,51.718549],[-3.109519,51.716662],[-3.107833,51.715068],[-3.109515,51.702272],[-3.115095,51.697437],[-3.114409,51.696121],[-3.117152,51.694377],[-3.117078,51.691657],[-3.116115,51.690802],[-3.114808,51.689612],[-3.116061,51.688742],[-3.115348,51.688088],[-3.116336,51.68674],[-3.115353,51.686154],[-3.115579,51.68512],[-3.113839,51.684944],[-3.110139,51.685209],[-3.11006,51.683941],[-3.107416,51.683572],[-3.104223,51.682428],[-3.101974,51.682092],[-3.099319,51.682501],[-3.095376,51.685075],[-3.092255,51.686592],[-3.091288,51.686204],[-3.084423,51.688359],[-3.082961,51.687476],[-3.082573,51.686688],[-3.082741,51.684139],[-3.080946,51.683297],[-3.07166,51.674174],[-3.073207,51.670754],[-3.072709,51.662647],[-3.075681,51.659245],[-3.076739,51.65905],[-3.07834,51.660104],[-3.075415,51.655879],[-3.074839,51.65224],[-3.076036,51.65136],[-3.07844,51.650484],[-3.082422,51.647827],[-3.085005,51.646771],[-3.087011,51.644231],[-3.088983,51.642439],[-3.091922,51.640484],[-3.094188,51.638355],[-3.098217,51.637162],[-3.100629,51.634626],[-3.102655,51.633951],[-3.101943,51.632973],[-3.102079,51.63132],[-3.099319,51.630345],[-3.097235,51.630123],[-3.08681,51.627075],[-3.085688,51.621123],[-3.083288,51.619731],[-3.081829,51.619433],[-3.079626,51.619016],[-3.078554,51.618135],[-3.070945,51.618416],[-3.069551,51.618029],[-3.066716,51.616226],[-3.065139,51.614443],[-3.062573,51.612636],[-3.061964,51.611518],[-3.060466,51.610969],[-3.05995,51.610199],[-3.057271,51.609579],[-3.055489,51.609893],[-3.053984,51.609054],[-3.05082,51.608721],[-3.049079,51.608232],[-3.047715,51.607184],[-3.045229,51.606964],[-3.044914,51.607507],[-3.047289,51.608763],[-3.047623,51.609472],[-3.04491,51.61219],[-3.045048,51.613977],[-3.046648,51.614014],[-3.048299,51.615178],[-3.049556,51.617304],[-3.048395,51.619603],[-3.047816,51.622033],[-3.047172,51.622507],[-3.042755,51.622944],[-3.039452,51.621801],[-3.036812,51.622197],[-3.034878,51.621489],[-3.033284,51.621355],[-3.030266,51.619472],[-3.029481,51.619497],[-3.028614,51.618142],[-3.026918,51.617108],[-3.024669,51.616936],[-3.023918,51.616532],[-3.019547,51.616537],[-3.019919,51.617619],[-3.015801,51.618759],[-3.014893,51.618662],[-3.013619,51.619747],[-3.01126,51.620412],[-3.011073,51.621002],[-3.008356,51.621425],[-3.002392,51.620323],[-3.000281,51.619461],[-3.000101,51.620731],[-2.998698,51.622472],[-2.996193,51.6239],[-2.991306,51.625367],[-2.992568,51.627281],[-2.991838,51.627952],[-2.989326,51.628763],[-2.986148,51.628165],[-2.983963,51.627229],[-2.981755,51.627495],[-2.976872,51.62735],[-2.975777,51.626995],[-2.972362,51.62685],[-2.970736,51.626398],[-2.967915,51.626684],[-2.964754,51.625262],[-2.963485,51.625195],[-2.961755,51.626662],[-2.960242,51.626718],[-2.959399,51.627392],[-2.958911,51.62878]]]},"properties":{"LAD22CD":"W06000020","LAD22NM":"Torfaen","BNG_E":327459,"BNG_N":200480,"LONG":-3.05101,"LAT":51.69836,"GlobalID":"92320223-03e5-40ff-964f-bb852794e4a7"},"id":370}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.650401,51.826125],[-2.653877,51.826085],[-2.656857,51.826881],[-2.657914,51.828169],[-2.65761,51.83153],[-2.658195,51.83271],[-2.660142,51.833699],[-2.666198,51.835624],[-2.671529,51.836248],[-2.676821,51.83635],[-2.679596,51.837553],[-2.682616,51.837765],[-2.682857,51.838456],[-2.686772,51.836379],[-2.686199,51.83605],[-2.687003,51.833056],[-2.693366,51.833873],[-2.693061,51.835855],[-2.693425,51.837701],[-2.695527,51.84209],[-2.697337,51.844798],[-2.699616,51.843479],[-2.703397,51.844571],[-2.705113,51.845696],[-2.707144,51.843044],[-2.706738,51.83971],[-2.710223,51.839069],[-2.712661,51.839534],[-2.716102,51.840735],[-2.7186,51.844499],[-2.718201,51.845496],[-2.71859,51.846882],[-2.717737,51.847551],[-2.719605,51.848919],[-2.725783,51.843799],[-2.727581,51.840142],[-2.729756,51.840214],[-2.731543,51.841392],[-2.73345,51.840009],[-2.735538,51.839442],[-2.738844,51.836619],[-2.7409,51.838645],[-2.741822,51.838578],[-2.740263,51.841316],[-2.741485,51.842567],[-2.742836,51.841752],[-2.74391,51.843166],[-2.746326,51.8446],[-2.751036,51.844991],[-2.751454,51.845351],[-2.754469,51.845912],[-2.75688,51.845906],[-2.757642,51.847449],[-2.757699,51.849394],[-2.760411,51.851573],[-2.761008,51.853128],[-2.762367,51.853632],[-2.763418,51.855653],[-2.76452,51.856121],[-2.764277,51.857129],[-2.764911,51.858034],[-2.766378,51.858797],[-2.767207,51.860163],[-2.768717,51.86057],[-2.769508,51.862359],[-2.772311,51.862204],[-2.7761,51.863684],[-2.778799,51.865859],[-2.779087,51.868816],[-2.777478,51.869614],[-2.776656,51.870642],[-2.777294,51.871888],[-2.776912,51.873217],[-2.774147,51.874451],[-2.772723,51.876795],[-2.770892,51.878165],[-2.770234,51.879625],[-2.769339,51.880276],[-2.775717,51.882117],[-2.776795,51.881668],[-2.779445,51.884073],[-2.784837,51.8843],[-2.785185,51.884767],[-2.78747,51.884991],[-2.791553,51.886507],[-2.793669,51.888199],[-2.796932,51.888389],[-2.799067,51.890418],[-2.801974,51.890472],[-2.801896,51.892601],[-2.802935,51.894135],[-2.805365,51.895566],[-2.808671,51.896228],[-2.8139,51.897786],[-2.815806,51.899089],[-2.81674,51.900962],[-2.816656,51.902066],[-2.81784,51.903868],[-2.819408,51.903809],[-2.821133,51.905432],[-2.825533,51.905012],[-2.832597,51.905181],[-2.834362,51.906136],[-2.836103,51.906051],[-2.836102,51.907272],[-2.836905,51.908348],[-2.836056,51.909614],[-2.836989,51.910177],[-2.837392,51.911573],[-2.837102,51.913829],[-2.840157,51.914745],[-2.840382,51.915962],[-2.84202,51.917754],[-2.844287,51.917135],[-2.84515,51.915222],[-2.846521,51.915656],[-2.846387,51.916523],[-2.848131,51.916813],[-2.848568,51.915869],[-2.851224,51.91601],[-2.853711,51.915735],[-2.854114,51.913302],[-2.855348,51.913401],[-2.855448,51.914445],[-2.858339,51.914945],[-2.860057,51.913853],[-2.861872,51.913979],[-2.863785,51.915966],[-2.863334,51.917176],[-2.860669,51.917752],[-2.851094,51.918854],[-2.848393,51.919924],[-2.846452,51.919899],[-2.846453,51.92072],[-2.84522,51.921482],[-2.845108,51.922213],[-2.84656,51.923254],[-2.848087,51.923652],[-2.854249,51.923723],[-2.855438,51.925001],[-2.857083,51.925542],[-2.857985,51.927185],[-2.859337,51.927729],[-2.865166,51.926636],[-2.866705,51.926904],[-2.868498,51.926607],[-2.869908,51.926792],[-2.871341,51.927628],[-2.87189,51.930274],[-2.873886,51.931074],[-2.875423,51.933089],[-2.877958,51.933838],[-2.882699,51.934342],[-2.885154,51.934177],[-2.888657,51.933462],[-2.889114,51.931904],[-2.887049,51.928163],[-2.891023,51.926526],[-2.892437,51.925371],[-2.894306,51.925153],[-2.896947,51.925464],[-2.89822,51.925247],[-2.900887,51.925909],[-2.902903,51.925151],[-2.904136,51.925182],[-2.905098,51.9245],[-2.906334,51.922639],[-2.908244,51.921687],[-2.908249,51.921094],[-2.911816,51.919555],[-2.912927,51.920111],[-2.915571,51.918786],[-2.916244,51.917692],[-2.920264,51.917431],[-2.928043,51.913892],[-2.93089,51.914909],[-2.933925,51.915051],[-2.935642,51.912613],[-2.93888,51.911883],[-2.941908,51.909631],[-2.94364,51.909242],[-2.944827,51.909476],[-2.946805,51.908641],[-2.948729,51.909404],[-2.950366,51.90855],[-2.950801,51.90744],[-2.952489,51.906227],[-2.953852,51.906116],[-2.9579,51.906856],[-2.960782,51.906746],[-2.964945,51.904776],[-2.966537,51.905073],[-2.968427,51.904539],[-2.97082,51.905513],[-2.971798,51.904965],[-2.972827,51.906018],[-2.972449,51.907919],[-2.972895,51.908968],[-2.975368,51.909517],[-2.973921,51.910483],[-2.973872,51.911528],[-2.971403,51.913915],[-2.972778,51.914652],[-2.973776,51.916622],[-2.973355,51.917914],[-2.974953,51.918603],[-2.976206,51.92119],[-2.974107,51.921249],[-2.973988,51.922591],[-2.975031,51.924229],[-2.974514,51.925109],[-2.976167,51.926015],[-2.976666,51.92749],[-2.979291,51.926991],[-2.980604,51.927684],[-2.981226,51.926612],[-2.983662,51.92573],[-2.987129,51.925766],[-2.999243,51.923458],[-3.002355,51.924049],[-3.008123,51.927131],[-3.010037,51.93044],[-3.010119,51.933477],[-3.008585,51.936276],[-3.008523,51.938081],[-3.010835,51.940868],[-3.013163,51.944955],[-3.021624,51.950035],[-3.022152,51.950854],[-3.022372,51.95287],[-3.025945,51.957282],[-3.030208,51.95883],[-3.035335,51.959741],[-3.036746,51.961626],[-3.038324,51.965142],[-3.039609,51.966481],[-3.042211,51.968115],[-3.051415,51.972092],[-3.052149,51.972945],[-3.05696,51.975228],[-3.057444,51.976484],[-3.059367,51.977971],[-3.059558,51.978622],[-3.062646,51.980061],[-3.067368,51.983143],[-3.075366,51.976924],[-3.077575,51.974327],[-3.078178,51.972589],[-3.080572,51.972827],[-3.081987,51.973431],[-3.083195,51.973112],[-3.085009,51.971751],[-3.086588,51.969688],[-3.093086,51.965191],[-3.088214,51.959354],[-3.081593,51.955394],[-3.085119,51.952675],[-3.090054,51.950355],[-3.089366,51.949331],[-3.087171,51.947517],[-3.086806,51.946678],[-3.087191,51.945021],[-3.085711,51.94351],[-3.085191,51.941737],[-3.083874,51.940728],[-3.083724,51.939844],[-3.080198,51.936086],[-3.080152,51.934977],[-3.083798,51.932873],[-3.083398,51.930712],[-3.081734,51.929907],[-3.081539,51.929244],[-3.079455,51.928237],[-3.079623,51.926362],[-3.078651,51.924531],[-3.077435,51.924627],[-3.075357,51.923049],[-3.071671,51.921944],[-3.070078,51.921761],[-3.06813,51.920269],[-3.065982,51.919198],[-3.062189,51.91909],[-3.060259,51.916848],[-3.060477,51.914601],[-3.059848,51.91369],[-3.053011,51.91265],[-3.049507,51.911446],[-3.049405,51.909224],[-3.050018,51.907612],[-3.048376,51.906295],[-3.049547,51.905652],[-3.047668,51.903821],[-3.044624,51.902689],[-3.042755,51.901469],[-3.043437,51.898698],[-3.041314,51.897611],[-3.041245,51.896493],[-3.040123,51.896125],[-3.0403,51.894309],[-3.038643,51.893692],[-3.038887,51.892382],[-3.03969,51.89148],[-3.041412,51.891533],[-3.042212,51.890882],[-3.041475,51.889047],[-3.04184,51.887439],[-3.040708,51.886615],[-3.040023,51.884667],[-3.043254,51.882607],[-3.043646,51.880714],[-3.04564,51.880865],[-3.048692,51.880391],[-3.050267,51.879657],[-3.052449,51.880226],[-3.057615,51.879649],[-3.061071,51.878729],[-3.062294,51.877185],[-3.064423,51.878565],[-3.065766,51.877495],[-3.068393,51.876421],[-3.069198,51.875476],[-3.071939,51.874769],[-3.073143,51.872618],[-3.073198,51.871494],[-3.070205,51.869634],[-3.065661,51.86467],[-3.063402,51.863323],[-3.068555,51.861371],[-3.070366,51.861004],[-3.071585,51.859753],[-3.07671,51.857926],[-3.077405,51.856386],[-3.076453,51.855015],[-3.082613,51.852458],[-3.08261,51.851341],[-3.083814,51.85014],[-3.085669,51.849851],[-3.087251,51.849031],[-3.090091,51.848151],[-3.094643,51.847635],[-3.097173,51.846428],[-3.098291,51.844884],[-3.098392,51.84365],[-3.097823,51.842598],[-3.096476,51.841518],[-3.096036,51.839791],[-3.09891,51.839618],[-3.101689,51.840268],[-3.103155,51.839878],[-3.103807,51.837325],[-3.101985,51.83343],[-3.100611,51.83257],[-3.101577,51.831834],[-3.105029,51.832386],[-3.10807,51.834847],[-3.110889,51.836112],[-3.115463,51.836892],[-3.116521,51.837314],[-3.118042,51.838936],[-3.120521,51.838921],[-3.119806,51.837288],[-3.122964,51.836453],[-3.12237,51.835247],[-3.124112,51.834455],[-3.125527,51.835431],[-3.126753,51.835733],[-3.128768,51.834228],[-3.127678,51.832967],[-3.129321,51.832853],[-3.131068,51.833325],[-3.132753,51.832311],[-3.13382,51.829358],[-3.135038,51.828413],[-3.137239,51.828092],[-3.136225,51.82681],[-3.138659,51.827328],[-3.140516,51.82616],[-3.143239,51.825734],[-3.141822,51.824981],[-3.140194,51.823193],[-3.140877,51.82203],[-3.143208,51.81986],[-3.144654,51.81934],[-3.148369,51.818723],[-3.153362,51.816506],[-3.157352,51.816051],[-3.157184,51.815178],[-3.154344,51.814172],[-3.152232,51.813837],[-3.150492,51.812721],[-3.149685,51.810382],[-3.150878,51.809214],[-3.151185,51.807486],[-3.147881,51.806448],[-3.145828,51.804697],[-3.147535,51.804532],[-3.148718,51.803702],[-3.152996,51.803678],[-3.153592,51.802625],[-3.152575,51.801394],[-3.152042,51.799857],[-3.149283,51.7997],[-3.149658,51.798752],[-3.151019,51.798832],[-3.152919,51.798122],[-3.154043,51.79812],[-3.155443,51.796452],[-3.152879,51.795686],[-3.150116,51.795898],[-3.145529,51.794857],[-3.141573,51.794716],[-3.13983,51.794176],[-3.138194,51.793104],[-3.134189,51.79281],[-3.131374,51.792324],[-3.129383,51.793996],[-3.122496,51.795272],[-3.116308,51.794876],[-3.108441,51.796232],[-3.105968,51.795479],[-3.096364,51.791547],[-3.081795,51.788408],[-3.076934,51.788901],[-3.058877,51.78364],[-3.043449,51.770403],[-3.044864,51.769892],[-3.047686,51.769832],[-3.047617,51.768032],[-3.048848,51.767559],[-3.048024,51.765647],[-3.050142,51.765194],[-3.051442,51.764488],[-3.051057,51.763003],[-3.0495,51.761759],[-3.049337,51.760448],[-3.044543,51.756021],[-3.043465,51.756088],[-3.041266,51.755044],[-3.038217,51.754007],[-3.034521,51.753711],[-3.035343,51.752603],[-3.02778,51.745373],[-3.028334,51.73949],[-3.030686,51.732747],[-3.031534,51.731357],[-3.03212,51.729358],[-3.031526,51.728337],[-3.033733,51.726518],[-3.033893,51.725513],[-3.031287,51.722679],[-3.029161,51.721829],[-3.027044,51.719202],[-3.025416,51.718129],[-3.023509,51.719],[-3.01929,51.719882],[-3.01697,51.71989],[-3.01402,51.719469],[-3.009707,51.720845],[-3.00767,51.72086],[-3.004839,51.721467],[-3.00284,51.721294],[-3.00099,51.720575],[-3.00023,51.71909],[-2.997585,51.717683],[-2.994355,51.71785],[-2.991571,51.718521],[-2.988977,51.717842],[-2.987609,51.71806],[-2.98705,51.71731],[-2.984593,51.716208],[-2.9824,51.713923],[-2.983363,51.712499],[-2.984901,51.711583],[-2.985686,51.710545],[-2.985237,51.709682],[-2.985866,51.7089],[-2.988106,51.707292],[-2.991065,51.706285],[-2.992559,51.705236],[-2.994447,51.700751],[-2.99602,51.700064],[-2.997065,51.700253],[-2.999158,51.697288],[-3.000068,51.694224],[-3.002005,51.690829],[-2.997788,51.690715],[-2.996364,51.691277],[-2.991571,51.691722],[-2.989922,51.692281],[-2.985141,51.692253],[-2.979818,51.69335],[-2.970949,51.693887],[-2.969066,51.692573],[-2.968599,51.691439],[-2.971821,51.689298],[-2.974747,51.686227],[-2.975927,51.68391],[-2.977897,51.679378],[-2.980731,51.676166],[-2.979987,51.674937],[-2.986625,51.674867],[-2.988785,51.675715],[-2.989763,51.675724],[-2.98925,51.678038],[-2.990004,51.680117],[-2.995248,51.67919],[-2.997883,51.678299],[-3.001628,51.677788],[-3.001375,51.675991],[-3.002541,51.675507],[-3.003231,51.673228],[-3.002354,51.671002],[-3.002758,51.669594],[-3.00347,51.669057],[-2.99962,51.66891],[-3.000994,51.667955],[-3.000065,51.666644],[-2.996624,51.666531],[-2.991379,51.663995],[-2.991337,51.663132],[-2.990238,51.662101],[-2.99047,51.661115],[-2.989299,51.657823],[-2.986861,51.65633],[-2.986091,51.656655],[-2.984642,51.655723],[-2.982588,51.655509],[-2.982006,51.654831],[-2.980605,51.654876],[-2.976842,51.651451],[-2.977014,51.649224],[-2.975996,51.647229],[-2.977864,51.646415],[-2.979279,51.644598],[-2.978187,51.643295],[-2.978764,51.642003],[-2.977838,51.640945],[-2.976453,51.640881],[-2.975746,51.639835],[-2.974048,51.63857],[-2.973774,51.637501],[-2.974543,51.636712],[-2.97397,51.634935],[-2.973109,51.63402],[-2.970896,51.63331],[-2.968679,51.631617],[-2.966891,51.63174],[-2.965333,51.632737],[-2.964648,51.632098],[-2.962207,51.631678],[-2.961541,51.632577],[-2.959603,51.632218],[-2.960143,51.631099],[-2.958895,51.630272],[-2.959507,51.629447],[-2.958911,51.62878],[-2.953947,51.630185],[-2.951996,51.628782],[-2.947696,51.628637],[-2.947769,51.627771],[-2.94557,51.626912],[-2.945496,51.626321],[-2.946867,51.625629],[-2.944158,51.623336],[-2.944826,51.621228],[-2.944821,51.621227],[-2.944682,51.62109],[-2.942351,51.620444],[-2.942445,51.620379],[-2.944055,51.619205],[-2.941783,51.617482],[-2.938926,51.618822],[-2.9323,51.619203],[-2.931027,51.619759],[-2.9281,51.622687],[-2.923809,51.625627],[-2.923432,51.62624],[-2.920317,51.627151],[-2.918461,51.626724],[-2.917296,51.625407],[-2.914511,51.624477],[-2.912437,51.623051],[-2.908666,51.623759],[-2.910925,51.625454],[-2.908285,51.629433],[-2.906288,51.629861],[-2.904972,51.62964],[-2.904089,51.627436],[-2.902647,51.626992],[-2.901082,51.627525],[-2.896052,51.63071],[-2.898741,51.631399],[-2.900381,51.632263],[-2.899773,51.633234],[-2.897318,51.634632],[-2.895155,51.6332],[-2.893883,51.632988],[-2.892366,51.633864],[-2.892403,51.634411],[-2.895483,51.635078],[-2.895982,51.636315],[-2.894652,51.636908],[-2.891837,51.636787],[-2.889134,51.637982],[-2.888962,51.638232],[-2.888638,51.638968],[-2.886486,51.639715],[-2.885196,51.640128],[-2.883603,51.641537],[-2.881121,51.640961],[-2.87998,51.641011],[-2.874274,51.639015],[-2.869711,51.641748],[-2.867887,51.642345],[-2.865205,51.642358],[-2.859138,51.643717],[-2.857607,51.643526],[-2.854978,51.643821],[-2.847982,51.646814],[-2.843393,51.646491],[-2.841533,51.647497],[-2.839433,51.647816],[-2.838764,51.648666],[-2.836825,51.649471],[-2.834395,51.648237],[-2.834525,51.646423],[-2.833729,51.644938],[-2.831784,51.643762],[-2.828504,51.642821],[-2.826896,51.641467],[-2.825821,51.639918],[-2.824538,51.639089],[-2.823538,51.636755],[-2.821845,51.635302],[-2.820188,51.632992],[-2.817708,51.632618],[-2.816146,51.631785],[-2.813585,51.628537],[-2.81103,51.627357],[-2.811536,51.626112],[-2.808313,51.625451],[-2.809098,51.624738],[-2.807973,51.623678],[-2.805679,51.623719],[-2.805393,51.620549],[-2.806954,51.619681],[-2.804907,51.618373],[-2.803011,51.617747],[-2.803284,51.615689],[-2.80502,51.616312],[-2.807769,51.616696],[-2.812365,51.616695],[-2.830282,51.614949],[-2.830354,51.614056],[-2.828938,51.613547],[-2.828335,51.612731],[-2.82804,51.610188],[-2.830303,51.609784],[-2.830414,51.609141],[-2.832466,51.608948],[-2.832521,51.608276],[-2.833747,51.607018],[-2.833617,51.605799],[-2.834849,51.604196],[-2.835989,51.603428],[-2.840518,51.603944],[-2.841084,51.601517],[-2.843181,51.601574],[-2.844001,51.601965],[-2.846723,51.600633],[-2.846226,51.59868],[-2.848402,51.59817],[-2.848804,51.596179],[-2.851255,51.594138],[-2.850185,51.593678],[-2.848985,51.591395],[-2.845986,51.589961],[-2.846797,51.588505],[-2.84691,51.586804],[-2.849389,51.586377],[-2.850063,51.585214],[-2.851845,51.584724],[-2.851638,51.581297],[-2.853076,51.581249],[-2.855294,51.581743],[-2.856189,51.580766],[-2.856063,51.57977],[-2.859199,51.579422],[-2.857846,51.577938],[-2.85723,51.574341],[-2.855647,51.574499],[-2.85453,51.572592],[-2.852666,51.571256],[-2.846279,51.572649],[-2.84454,51.56942],[-2.842682,51.567846],[-2.840646,51.569383],[-2.834227,51.570382],[-2.834121,51.567052],[-2.83346,51.565007],[-2.832111,51.562938],[-2.830384,51.561025],[-2.82423,51.556393],[-2.822389,51.555741],[-2.821632,51.554071],[-2.815617,51.556932],[-2.812967,51.557678],[-2.80755,51.559936],[-2.805317,51.56049],[-2.793586,51.565352],[-2.790661,51.566827],[-2.78118,51.570476],[-2.773291,51.573027],[-2.772496,51.57363],[-2.770674,51.57348],[-2.764814,51.575052],[-2.758475,51.577996],[-2.756085,51.578712],[-2.752324,51.578511],[-2.749936,51.579137],[-2.748447,51.58014],[-2.743684,51.58079],[-2.737138,51.581059],[-2.736732,51.581255],[-2.725048,51.58171],[-2.71656,51.581675],[-2.712814,51.582274],[-2.710429,51.583649],[-2.711063,51.584104],[-2.70865,51.586823],[-2.703456,51.589195],[-2.703293,51.59009],[-2.701737,51.59142],[-2.701155,51.593058],[-2.694016,51.598987],[-2.692872,51.602157],[-2.691674,51.601999],[-2.692523,51.600752],[-2.692178,51.600167],[-2.685527,51.603668],[-2.676864,51.606855],[-2.671407,51.60816],[-2.668844,51.609066],[-2.666502,51.610535],[-2.665286,51.612009],[-2.66456,51.614322],[-2.665546,51.615001],[-2.664148,51.615566],[-2.662221,51.618447],[-2.658977,51.62088],[-2.657951,51.622082],[-2.658093,51.623004],[-2.659231,51.624265],[-2.665475,51.628738],[-2.66956,51.633894],[-2.66974,51.63612],[-2.667755,51.638227],[-2.666825,51.640806],[-2.667122,51.642547],[-2.668934,51.645006],[-2.670137,51.645689],[-2.671944,51.64575],[-2.673699,51.645228],[-2.675505,51.644117],[-2.676869,51.643832],[-2.678238,51.644113],[-2.679936,51.645036],[-2.681028,51.646838],[-2.680459,51.649336],[-2.679512,51.650729],[-2.678206,51.651178],[-2.670813,51.657263],[-2.668103,51.660389],[-2.666816,51.662735],[-2.667203,51.663369],[-2.669063,51.664275],[-2.673648,51.660863],[-2.675816,51.659858],[-2.678219,51.659393],[-2.681974,51.659627],[-2.685671,51.660913],[-2.687002,51.662604],[-2.68703,51.663982],[-2.685493,51.666462],[-2.685144,51.668366],[-2.68264,51.669518],[-2.679629,51.67017],[-2.677709,51.670313],[-2.673398,51.66993],[-2.671585,51.670102],[-2.670638,51.669551],[-2.661243,51.671251],[-2.658637,51.672462],[-2.657549,51.674208],[-2.658101,51.675378],[-2.660443,51.676707],[-2.66767,51.677829],[-2.672474,51.680429],[-2.673633,51.681684],[-2.674011,51.68299],[-2.669919,51.687882],[-2.669429,51.691034],[-2.670307,51.694066],[-2.673388,51.69698],[-2.67753,51.698208],[-2.681325,51.69889],[-2.684152,51.700565],[-2.68405,51.702741],[-2.682471,51.703564],[-2.679068,51.703201],[-2.676473,51.700928],[-2.675285,51.700482],[-2.673098,51.700545],[-2.671063,51.700996],[-2.669391,51.702314],[-2.668823,51.705806],[-2.67017,51.707858],[-2.672882,51.710218],[-2.677949,51.712635],[-2.679585,51.713934],[-2.681959,51.721361],[-2.680703,51.724447],[-2.68687,51.728389],[-2.687792,51.729731],[-2.687884,51.730934],[-2.686807,51.732036],[-2.675601,51.734889],[-2.672419,51.736627],[-2.671617,51.741051],[-2.669535,51.74273],[-2.668564,51.744962],[-2.665055,51.749066],[-2.662779,51.753603],[-2.662932,51.754735],[-2.666049,51.75697],[-2.671547,51.75887],[-2.673266,51.759876],[-2.674735,51.761338],[-2.676417,51.764236],[-2.679458,51.76721],[-2.680452,51.768929],[-2.679925,51.771386],[-2.676846,51.773898],[-2.675054,51.776777],[-2.676134,51.780308],[-2.673487,51.783809],[-2.673362,51.784734],[-2.675844,51.788069],[-2.674092,51.788312],[-2.672891,51.789809],[-2.672715,51.793077],[-2.669811,51.794273],[-2.671473,51.795026],[-2.676749,51.798603],[-2.677566,51.799929],[-2.677734,51.80143],[-2.678586,51.802467],[-2.678303,51.803319],[-2.675751,51.805711],[-2.675536,51.806664],[-2.673486,51.807097],[-2.672611,51.808906],[-2.669771,51.808912],[-2.665002,51.81018],[-2.662025,51.81011],[-2.659539,51.810682],[-2.658863,51.811453],[-2.658852,51.813693],[-2.661107,51.818117],[-2.659733,51.818634],[-2.658889,51.8198],[-2.660872,51.822754],[-2.650164,51.824115],[-2.649873,51.825033],[-2.650401,51.826125]]]},"properties":{"LAD22CD":"W06000021","LAD22NM":"Monmouthshire","BNG_E":337812,"BNG_N":209231,"LONG":-2.9028,"LAT":51.77827,"GlobalID":"1723d842-0317-49cd-9052-fa81e5018470"},"id":371}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.944826,51.621228],[-2.944158,51.623336],[-2.946867,51.625629],[-2.945496,51.626321],[-2.94557,51.626912],[-2.947769,51.627771],[-2.947696,51.628637],[-2.951996,51.628782],[-2.953947,51.630185],[-2.958911,51.62878],[-2.959399,51.627392],[-2.960242,51.626718],[-2.961755,51.626662],[-2.963485,51.625195],[-2.964754,51.625262],[-2.967915,51.626684],[-2.970736,51.626398],[-2.972362,51.62685],[-2.975777,51.626995],[-2.976872,51.62735],[-2.981755,51.627495],[-2.983963,51.627229],[-2.986148,51.628165],[-2.989326,51.628763],[-2.991838,51.627952],[-2.992568,51.627281],[-2.991306,51.625367],[-2.996193,51.6239],[-2.998698,51.622472],[-3.000101,51.620731],[-3.000281,51.619461],[-3.002392,51.620323],[-3.008356,51.621425],[-3.011073,51.621002],[-3.01126,51.620412],[-3.013619,51.619747],[-3.014893,51.618662],[-3.015801,51.618759],[-3.019919,51.617619],[-3.019547,51.616537],[-3.023918,51.616532],[-3.024669,51.616936],[-3.026918,51.617108],[-3.028614,51.618142],[-3.029481,51.619497],[-3.030266,51.619472],[-3.033284,51.621355],[-3.034878,51.621489],[-3.036812,51.622197],[-3.039452,51.621801],[-3.042755,51.622944],[-3.047172,51.622507],[-3.047816,51.622033],[-3.048395,51.619603],[-3.049556,51.617304],[-3.048299,51.615178],[-3.046648,51.614014],[-3.045048,51.613977],[-3.04491,51.61219],[-3.047623,51.609472],[-3.047289,51.608763],[-3.044914,51.607507],[-3.045229,51.606964],[-3.047715,51.607184],[-3.049079,51.608232],[-3.05082,51.608721],[-3.053984,51.609054],[-3.055489,51.609893],[-3.057271,51.609579],[-3.05995,51.610199],[-3.060466,51.610969],[-3.061964,51.611518],[-3.062573,51.612636],[-3.065139,51.614443],[-3.066716,51.616226],[-3.069551,51.618029],[-3.070945,51.618416],[-3.078554,51.618135],[-3.079626,51.619016],[-3.081829,51.619433],[-3.082843,51.617844],[-3.082977,51.616349],[-3.08122,51.613017],[-3.079161,51.612309],[-3.078682,51.611697],[-3.075409,51.60991],[-3.073884,51.608498],[-3.072438,51.608282],[-3.07126,51.606935],[-3.069607,51.606395],[-3.063701,51.605474],[-3.064573,51.603933],[-3.066988,51.603157],[-3.066922,51.602678],[-3.068819,51.601954],[-3.070459,51.603557],[-3.071805,51.6023],[-3.072173,51.60084],[-3.073545,51.599732],[-3.074356,51.600419],[-3.078371,51.599985],[-3.078507,51.599462],[-3.082065,51.596554],[-3.084406,51.597527],[-3.086108,51.596004],[-3.087565,51.597693],[-3.08992,51.597482],[-3.092566,51.596633],[-3.092187,51.595794],[-3.093571,51.593205],[-3.093738,51.591398],[-3.095385,51.592485],[-3.099583,51.594093],[-3.102702,51.596189],[-3.105158,51.597215],[-3.107655,51.596403],[-3.109622,51.595319],[-3.109367,51.594912],[-3.114241,51.593688],[-3.11995,51.592512],[-3.121396,51.589849],[-3.124192,51.588551],[-3.123292,51.586818],[-3.123898,51.584455],[-3.121705,51.580984],[-3.121768,51.57971],[-3.120272,51.579825],[-3.117663,51.580695],[-3.115125,51.580513],[-3.112279,51.578624],[-3.109581,51.577449],[-3.108806,51.576325],[-3.105014,51.574801],[-3.102896,51.574903],[-3.100158,51.576089],[-3.09947,51.575577],[-3.098587,51.57312],[-3.097453,51.57213],[-3.093066,51.570149],[-3.090751,51.569956],[-3.090228,51.568541],[-3.092891,51.565214],[-3.093293,51.563924],[-3.094293,51.563048],[-3.096574,51.562749],[-3.098934,51.563623],[-3.100128,51.565437],[-3.102434,51.564923],[-3.103757,51.564278],[-3.103752,51.562873],[-3.10064,51.560976],[-3.100044,51.560097],[-3.102201,51.55882],[-3.105968,51.558758],[-3.107592,51.558335],[-3.108878,51.557127],[-3.109058,51.554459],[-3.111225,51.553516],[-3.111446,51.552331],[-3.11025,51.551331],[-3.110532,51.550706],[-3.112696,51.548901],[-3.117113,51.54839],[-3.117325,51.54688],[-3.118891,51.545638],[-3.11794,51.544426],[-3.117111,51.544385],[-3.113805,51.545424],[-3.11254,51.546757],[-3.110821,51.546456],[-3.110553,51.545868],[-3.108483,51.54516],[-3.109096,51.543084],[-3.107613,51.542893],[-3.10381,51.54095],[-3.101529,51.540371],[-3.096764,51.537776],[-3.096971,51.536976],[-3.094566,51.536918],[-3.094142,51.535704],[-3.092106,51.535578],[-3.090738,51.533362],[-3.084102,51.532466],[-3.081805,51.531262],[-3.080866,51.531606],[-3.079238,51.530058],[-3.07995,51.529692],[-3.078261,51.528194],[-3.080263,51.527352],[-3.077318,51.523666],[-3.074674,51.522285],[-3.073107,51.522041],[-3.06891,51.520266],[-3.071616,51.518011],[-3.073225,51.517141],[-3.073981,51.517597],[-3.076314,51.516207],[-3.077541,51.517099],[-3.080702,51.515238],[-3.08215,51.514853],[-3.079066,51.513928],[-3.078062,51.513225],[-3.082512,51.511401],[-3.082874,51.511826],[-3.086214,51.510718],[-3.088004,51.510539],[-3.088703,51.509958],[-3.088459,51.508733],[-3.086771,51.506282],[-3.087229,51.506023],[-3.083441,51.50293],[-3.082039,51.500933],[-3.080095,51.50192],[-3.079078,51.501866],[-3.077733,51.502804],[-3.075307,51.50354],[-3.074216,51.504533],[-3.073386,51.503975],[-3.069129,51.505114],[-3.053481,51.512186],[-3.048112,51.513709],[-3.04699,51.514794],[-3.044658,51.515547],[-3.043166,51.517639],[-3.043031,51.519059],[-3.042371,51.519581],[-3.040364,51.518921],[-3.036815,51.519341],[-3.032541,51.518963],[-3.028349,51.520306],[-3.026732,51.521083],[-3.025553,51.522489],[-3.022801,51.522604],[-3.020149,51.524721],[-3.017244,51.525197],[-3.004481,51.530507],[-3.003083,51.531732],[-2.997469,51.534852],[-2.995309,51.53647],[-2.995245,51.538838],[-2.993346,51.541689],[-2.992664,51.543777],[-2.990767,51.544636],[-2.989311,51.547514],[-2.99087,51.549445],[-2.992065,51.550017],[-2.995634,51.553068],[-2.99759,51.556221],[-2.999021,51.556865],[-3.003343,51.557731],[-3.004145,51.559178],[-3.0014,51.560036],[-3.000224,51.560948],[-3.002229,51.562084],[-3.004918,51.565771],[-3.004632,51.565868],[-3.001677,51.562643],[-2.999337,51.561197],[-3.000081,51.560153],[-3.00331,51.55904],[-3.002447,51.55793],[-2.998526,51.557292],[-2.997164,51.556684],[-2.992992,51.551893],[-2.988489,51.549495],[-2.986489,51.550082],[-2.984961,51.550899],[-2.98319,51.551267],[-2.982459,51.552079],[-2.980513,51.552842],[-2.978724,51.552809],[-2.975405,51.553607],[-2.970827,51.555158],[-2.969531,51.556475],[-2.969502,51.557697],[-2.971488,51.559543],[-2.976931,51.561822],[-2.97807,51.561943],[-2.983096,51.564647],[-2.986694,51.568272],[-2.987167,51.570767],[-2.984637,51.573811],[-2.983027,51.574302],[-2.977275,51.575268],[-2.975549,51.576581],[-2.975873,51.577494],[-2.97852,51.57882],[-2.980789,51.579548],[-2.982245,51.580481],[-2.98415,51.582757],[-2.985288,51.583736],[-2.991541,51.586921],[-2.993453,51.588823],[-2.993913,51.588817],[-2.994998,51.591757],[-2.994149,51.59293],[-2.99137,51.595173],[-2.990245,51.596722],[-2.990059,51.598433],[-2.991566,51.60437],[-2.992919,51.606787],[-2.993288,51.608173],[-2.992989,51.609071],[-2.990843,51.609628],[-2.984338,51.609761],[-2.98193,51.608264],[-2.980334,51.606496],[-2.978437,51.605851],[-2.977494,51.60636],[-2.976906,51.60885],[-2.976053,51.609705],[-2.973471,51.609706],[-2.971669,51.609025],[-2.969095,51.606443],[-2.967424,51.605311],[-2.961813,51.602818],[-2.95997,51.602401],[-2.956789,51.602231],[-2.95584,51.603],[-2.955819,51.604863],[-2.954722,51.606452],[-2.952127,51.608131],[-2.950254,51.60833],[-2.946925,51.606918],[-2.945587,51.60729],[-2.944778,51.608416],[-2.945066,51.609385],[-2.94437,51.610522],[-2.94582,51.611575],[-2.94405,51.612106],[-2.94375,51.613748],[-2.942056,51.613856],[-2.94154,51.613018],[-2.943557,51.612626],[-2.944195,51.610908],[-2.940955,51.612823],[-2.935729,51.615215],[-2.936418,51.61575],[-2.94149,51.616373],[-2.941949,51.617206],[-2.944191,51.617851],[-2.943613,51.618663],[-2.944295,51.619344],[-2.944826,51.621228]]],[[[-2.821632,51.554071],[-2.822389,51.555741],[-2.82423,51.556393],[-2.830384,51.561025],[-2.832111,51.562938],[-2.83346,51.565007],[-2.834121,51.567052],[-2.834227,51.570382],[-2.840646,51.569383],[-2.842682,51.567846],[-2.84454,51.56942],[-2.846279,51.572649],[-2.852666,51.571256],[-2.85453,51.572592],[-2.855647,51.574499],[-2.85723,51.574341],[-2.857846,51.577938],[-2.859199,51.579422],[-2.856063,51.57977],[-2.856189,51.580766],[-2.855294,51.581743],[-2.853076,51.581249],[-2.851638,51.581297],[-2.851845,51.584724],[-2.850063,51.585214],[-2.849389,51.586377],[-2.84691,51.586804],[-2.846797,51.588505],[-2.845986,51.589961],[-2.848985,51.591395],[-2.850185,51.593678],[-2.851255,51.594138],[-2.848804,51.596179],[-2.848402,51.59817],[-2.846226,51.59868],[-2.846723,51.600633],[-2.844001,51.601965],[-2.843181,51.601574],[-2.841084,51.601517],[-2.840518,51.603944],[-2.835989,51.603428],[-2.834849,51.604196],[-2.833617,51.605799],[-2.833747,51.607018],[-2.832521,51.608276],[-2.832466,51.608948],[-2.830414,51.609141],[-2.830303,51.609784],[-2.82804,51.610188],[-2.828335,51.612731],[-2.828938,51.613547],[-2.830354,51.614056],[-2.830282,51.614949],[-2.812365,51.616695],[-2.807769,51.616696],[-2.80502,51.616312],[-2.803284,51.615689],[-2.803011,51.617747],[-2.804907,51.618373],[-2.806954,51.619681],[-2.805393,51.620549],[-2.805679,51.623719],[-2.807973,51.623678],[-2.809098,51.624738],[-2.808313,51.625451],[-2.811536,51.626112],[-2.81103,51.627357],[-2.813585,51.628537],[-2.816146,51.631785],[-2.817708,51.632618],[-2.820188,51.632992],[-2.821845,51.635302],[-2.823538,51.636755],[-2.824538,51.639089],[-2.825821,51.639918],[-2.826896,51.641467],[-2.828504,51.642821],[-2.831784,51.643762],[-2.833729,51.644938],[-2.834525,51.646423],[-2.834395,51.648237],[-2.836825,51.649471],[-2.838764,51.648666],[-2.839433,51.647816],[-2.841533,51.647497],[-2.843393,51.646491],[-2.847982,51.646814],[-2.854978,51.643821],[-2.857607,51.643526],[-2.859138,51.643717],[-2.865205,51.642358],[-2.867887,51.642345],[-2.869711,51.641748],[-2.874274,51.639015],[-2.87998,51.641011],[-2.881121,51.640961],[-2.883603,51.641537],[-2.885196,51.640128],[-2.886486,51.639715],[-2.886025,51.639077],[-2.887486,51.638584],[-2.888999,51.637396],[-2.891652,51.636512],[-2.894885,51.63661],[-2.895206,51.635319],[-2.89202,51.634651],[-2.89256,51.633057],[-2.893813,51.632662],[-2.895601,51.633196],[-2.895775,51.633295],[-2.897413,51.634227],[-2.899497,51.632967],[-2.899296,51.631935],[-2.895927,51.631333],[-2.895857,51.63011],[-2.89773,51.629279],[-2.900349,51.627495],[-2.902032,51.626847],[-2.903367,51.626855],[-2.904683,51.627503],[-2.90566,51.629421],[-2.907887,51.629007],[-2.910137,51.626101],[-2.909643,51.624952],[-2.907464,51.624563],[-2.907624,51.623815],[-2.909301,51.623127],[-2.912706,51.622636],[-2.915133,51.62418],[-2.917903,51.625072],[-2.919108,51.626375],[-2.921174,51.626501],[-2.927095,51.622624],[-2.930658,51.619218],[-2.932542,51.618612],[-2.938657,51.618303],[-2.940781,51.617298],[-2.940211,51.616708],[-2.935128,51.616224],[-2.934534,51.615121],[-2.935894,51.614183],[-2.942899,51.610924],[-2.943088,51.608856],[-2.943993,51.607465],[-2.945708,51.606268],[-2.947221,51.606373],[-2.950523,51.607778],[-2.951504,51.607631],[-2.954198,51.605188],[-2.954988,51.601947],[-2.957996,51.601322],[-2.961274,51.601804],[-2.968578,51.604787],[-2.970511,51.606283],[-2.972262,51.608269],[-2.973778,51.60893],[-2.975479,51.608308],[-2.976093,51.605769],[-2.977593,51.604986],[-2.980174,51.605218],[-2.981586,51.605953],[-2.984913,51.608649],[-2.988506,51.608899],[-2.99137,51.608432],[-2.991687,51.60776],[-2.989449,51.60353],[-2.988486,51.59748],[-2.98929,51.595491],[-2.992909,51.592004],[-2.993118,51.590611],[-2.992179,51.589329],[-2.989599,51.587303],[-2.98397,51.584726],[-2.980737,51.581663],[-2.978866,51.580466],[-2.975192,51.579315],[-2.973603,51.578304],[-2.973008,51.576383],[-2.973373,51.575243],[-2.975902,51.57336],[-2.981454,51.571952],[-2.98312,51.571177],[-2.984333,51.570077],[-2.983563,51.568365],[-2.981173,51.566449],[-2.97647,51.564161],[-2.971931,51.562946],[-2.967977,51.561019],[-2.965257,51.558453],[-2.965703,51.557013],[-2.965435,51.555409],[-2.965888,51.554485],[-2.965573,51.553477],[-2.967514,51.553159],[-2.970342,51.551482],[-2.980199,51.548124],[-2.981652,51.546373],[-2.981657,51.545132],[-2.978042,51.542411],[-2.976755,51.541999],[-2.975025,51.54258],[-2.970424,51.540168],[-2.967133,51.539794],[-2.963144,51.538571],[-2.961758,51.537049],[-2.960324,51.536424],[-2.959439,51.53682],[-2.957207,51.5359],[-2.954857,51.535768],[-2.951235,51.535092],[-2.948155,51.535107],[-2.929869,51.536072],[-2.927111,51.535986],[-2.923389,51.537003],[-2.921963,51.5367],[-2.922537,51.535826],[-2.918468,51.535377],[-2.915848,51.535594],[-2.914307,51.534809],[-2.911135,51.534016],[-2.908026,51.532749],[-2.904882,51.532397],[-2.905154,51.533167],[-2.901345,51.535074],[-2.894759,51.536191],[-2.890696,51.535957],[-2.886868,51.537462],[-2.885978,51.538326],[-2.88444,51.538899],[-2.880188,51.538968],[-2.869594,51.542492],[-2.86248,51.542618],[-2.860473,51.543163],[-2.857469,51.543342],[-2.855177,51.544027],[-2.85281,51.544045],[-2.845084,51.545661],[-2.842858,51.546875],[-2.836771,51.549113],[-2.833722,51.549593],[-2.823442,51.553972],[-2.821632,51.554071]]]]},"properties":{"LAD22CD":"W06000022","LAD22NM":"Newport","BNG_E":337897,"BNG_N":187432,"LONG":-2.89769,"LAT":51.58231,"GlobalID":"ac98ea26-e445-4b3d-97c4-9a11ee5341cf"},"id":372}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.906226,52.560798],[-3.912388,52.562986],[-3.9138,52.563089],[-3.918839,52.562236],[-3.921866,52.562368],[-3.925643,52.561899],[-3.925876,52.560769],[-3.917623,52.560791],[-3.913641,52.56242],[-3.910937,52.561126],[-3.910155,52.561334],[-3.908605,52.56038],[-3.906226,52.560798]]],[[[-3.906226,52.560798],[-3.900466,52.560163],[-3.899042,52.559745],[-3.895667,52.560685],[-3.892441,52.560427],[-3.888474,52.560639],[-3.887279,52.56019],[-3.8825,52.560628],[-3.87775,52.560666],[-3.87435,52.560128],[-3.873449,52.56056],[-3.869957,52.561042],[-3.866514,52.560729],[-3.860675,52.560704],[-3.859466,52.560844],[-3.857766,52.559962],[-3.856025,52.559567],[-3.853734,52.557898],[-3.850608,52.557141],[-3.847662,52.555436],[-3.844865,52.552755],[-3.840862,52.551355],[-3.84111,52.548211],[-3.840733,52.546614],[-3.839888,52.545951],[-3.839868,52.544132],[-3.84084,52.543529],[-3.839882,52.541645],[-3.839646,52.539488],[-3.837511,52.53692],[-3.83837,52.535839],[-3.837974,52.535107],[-3.838631,52.53278],[-3.83832,52.53224],[-3.839213,52.530474],[-3.837555,52.528976],[-3.83614,52.525888],[-3.839695,52.522288],[-3.840951,52.520738],[-3.841175,52.519365],[-3.844409,52.517262],[-3.843323,52.513738],[-3.843996,52.512039],[-3.842878,52.511242],[-3.839964,52.510195],[-3.840978,52.508684],[-3.841454,52.507171],[-3.838834,52.504284],[-3.839135,52.503089],[-3.837869,52.50163],[-3.838288,52.499803],[-3.837707,52.497964],[-3.835699,52.496972],[-3.834558,52.495608],[-3.832275,52.495532],[-3.831526,52.494326],[-3.83258,52.49233],[-3.830692,52.491805],[-3.828315,52.490366],[-3.828088,52.489061],[-3.826494,52.488487],[-3.827577,52.485955],[-3.825379,52.483667],[-3.824098,52.483871],[-3.822106,52.483274],[-3.821185,52.483488],[-3.815123,52.48291],[-3.813756,52.481996],[-3.812467,52.478911],[-3.809772,52.479043],[-3.805208,52.481098],[-3.803166,52.482753],[-3.802337,52.484156],[-3.799981,52.484027],[-3.798101,52.484544],[-3.798886,52.486997],[-3.797128,52.487881],[-3.793114,52.486654],[-3.791101,52.486876],[-3.788595,52.486456],[-3.787023,52.487453],[-3.78473,52.487582],[-3.78366,52.487205],[-3.782231,52.487975],[-3.774672,52.4879],[-3.772227,52.488669],[-3.770073,52.490776],[-3.770299,52.492535],[-3.768824,52.494008],[-3.768534,52.495493],[-3.769195,52.496837],[-3.767939,52.498506],[-3.764825,52.500211],[-3.763428,52.499712],[-3.759949,52.500561],[-3.758877,52.501131],[-3.756395,52.501494],[-3.754433,52.502101],[-3.752973,52.503405],[-3.751229,52.503892],[-3.751344,52.50452],[-3.749926,52.505701],[-3.745113,52.50755],[-3.743288,52.507231],[-3.741932,52.507581],[-3.740151,52.507199],[-3.7386,52.507644],[-3.737185,52.506908],[-3.734572,52.507006],[-3.733261,52.50659],[-3.730293,52.498644],[-3.741108,52.495549],[-3.738838,52.486652],[-3.740556,52.480673],[-3.742301,52.477727],[-3.744798,52.474633],[-3.746397,52.473207],[-3.757516,52.470879],[-3.764647,52.470236],[-3.766408,52.469304],[-3.766713,52.467729],[-3.76446,52.465013],[-3.764148,52.458671],[-3.767722,52.454151],[-3.769125,52.449723],[-3.771361,52.444986],[-3.771617,52.442152],[-3.770379,52.442059],[-3.769181,52.441072],[-3.767553,52.441425],[-3.766606,52.44054],[-3.76432,52.440033],[-3.761832,52.439827],[-3.75987,52.438615],[-3.757474,52.437806],[-3.754241,52.435507],[-3.751863,52.434989],[-3.749623,52.433527],[-3.7474,52.432604],[-3.739234,52.430865],[-3.737099,52.429572],[-3.736445,52.428068],[-3.734034,52.426699],[-3.731383,52.425937],[-3.730842,52.425446],[-3.734094,52.421525],[-3.732861,52.421008],[-3.732582,52.42001],[-3.729885,52.419149],[-3.728931,52.418109],[-3.726254,52.416433],[-3.715167,52.414788],[-3.714321,52.414097],[-3.71205,52.413356],[-3.711689,52.412454],[-3.712761,52.410907],[-3.711673,52.409808],[-3.712093,52.409151],[-3.711167,52.40797],[-3.712185,52.406638],[-3.711808,52.405617],[-3.713473,52.402759],[-3.71317,52.401801],[-3.711314,52.401486],[-3.70977,52.400659],[-3.707836,52.400717],[-3.70765,52.399373],[-3.708333,52.397819],[-3.709631,52.397145],[-3.709491,52.396523],[-3.710574,52.394628],[-3.710539,52.39345],[-3.707819,52.391402],[-3.707253,52.390538],[-3.70522,52.389641],[-3.703947,52.388588],[-3.703327,52.387345],[-3.703566,52.385877],[-3.701462,52.382794],[-3.70215,52.382085],[-3.70158,52.381375],[-3.701209,52.377196],[-3.700093,52.37614],[-3.699129,52.374317],[-3.698249,52.373739],[-3.697516,52.372118],[-3.695887,52.3711],[-3.695363,52.368831],[-3.696231,52.367063],[-3.692018,52.366559],[-3.689566,52.367395],[-3.685479,52.368221],[-3.677835,52.363449],[-3.677432,52.362193],[-3.674594,52.361642],[-3.672732,52.360941],[-3.671854,52.359664],[-3.670634,52.360072],[-3.668641,52.359438],[-3.666777,52.358156],[-3.668322,52.356561],[-3.665951,52.355955],[-3.664416,52.35483],[-3.664959,52.354355],[-3.663998,52.352903],[-3.662324,52.352658],[-3.662706,52.351283],[-3.662079,52.349898],[-3.660046,52.349028],[-3.658168,52.347649],[-3.65994,52.346798],[-3.662412,52.346666],[-3.664727,52.346029],[-3.666461,52.346077],[-3.666967,52.345563],[-3.669132,52.345225],[-3.669576,52.344639],[-3.672781,52.343668],[-3.675272,52.344035],[-3.676072,52.343294],[-3.678996,52.343202],[-3.68071,52.341613],[-3.685974,52.34049],[-3.688041,52.339731],[-3.691966,52.339532],[-3.693553,52.340227],[-3.694829,52.340162],[-3.697806,52.34096],[-3.699433,52.340327],[-3.700925,52.340267],[-3.70513,52.341455],[-3.734322,52.325327],[-3.734216,52.324761],[-3.744992,52.317446],[-3.743964,52.317124],[-3.742789,52.315397],[-3.743796,52.31399],[-3.742331,52.313033],[-3.740634,52.312967],[-3.740296,52.311536],[-3.737471,52.310936],[-3.734854,52.310815],[-3.733367,52.309481],[-3.729347,52.308787],[-3.729349,52.306671],[-3.727391,52.304381],[-3.726899,52.302018],[-3.72735,52.301234],[-3.726443,52.300597],[-3.726099,52.299402],[-3.727473,52.297806],[-3.729196,52.298004],[-3.72974,52.296868],[-3.73095,52.296075],[-3.72994,52.295193],[-3.73189,52.294302],[-3.731183,52.292924],[-3.732851,52.292546],[-3.733138,52.290367],[-3.729787,52.288125],[-3.727367,52.288049],[-3.726669,52.287587],[-3.724242,52.287997],[-3.723568,52.286859],[-3.721901,52.285435],[-3.71536,52.282068],[-3.713946,52.279983],[-3.712578,52.279284],[-3.711173,52.277857],[-3.708324,52.275925],[-3.708011,52.274603],[-3.70717,52.274058],[-3.710371,52.273329],[-3.716519,52.273839],[-3.719883,52.273257],[-3.721217,52.272399],[-3.722853,52.27032],[-3.72653,52.270652],[-3.727117,52.270128],[-3.730325,52.271762],[-3.733123,52.269999],[-3.733861,52.268891],[-3.735892,52.267597],[-3.737159,52.266006],[-3.74087,52.265813],[-3.741878,52.265163],[-3.744375,52.264866],[-3.743174,52.262516],[-3.744862,52.260539],[-3.745223,52.258493],[-3.748879,52.255001],[-3.750354,52.254176],[-3.752256,52.253783],[-3.752473,52.252521],[-3.753434,52.251761],[-3.752786,52.251003],[-3.750988,52.250293],[-3.74901,52.248313],[-3.745754,52.248187],[-3.744208,52.246305],[-3.745183,52.245344],[-3.745534,52.244145],[-3.746927,52.243259],[-3.749199,52.241015],[-3.747992,52.239232],[-3.74765,52.237112],[-3.749443,52.235861],[-3.749334,52.23488],[-3.749945,52.233627],[-3.748293,52.233581],[-3.746604,52.23263],[-3.744743,52.232385],[-3.742754,52.228924],[-3.743397,52.227782],[-3.743267,52.226639],[-3.745327,52.225625],[-3.745668,52.224601],[-3.748541,52.221919],[-3.750526,52.217281],[-3.750511,52.2148],[-3.749602,52.213539],[-3.747073,52.211877],[-3.746043,52.210721],[-3.747935,52.20831],[-3.748181,52.206491],[-3.749032,52.205498],[-3.748931,52.20435],[-3.750824,52.202877],[-3.750744,52.20029],[-3.751629,52.1993],[-3.752272,52.197614],[-3.751436,52.196376],[-3.74775,52.194353],[-3.746398,52.193163],[-3.745772,52.192],[-3.747201,52.189342],[-3.74938,52.188324],[-3.750289,52.187517],[-3.749829,52.183429],[-3.751235,52.182803],[-3.751534,52.181446],[-3.750467,52.179791],[-3.751091,52.178408],[-3.748963,52.175628],[-3.748568,52.172772],[-3.750114,52.17062],[-3.749406,52.166946],[-3.75073,52.165409],[-3.750787,52.16447],[-3.750006,52.162743],[-3.747226,52.160573],[-3.748282,52.157759],[-3.748229,52.15596],[-3.745737,52.153983],[-3.746162,52.147956],[-3.743889,52.14662],[-3.743337,52.144016],[-3.74371,52.142929],[-3.742057,52.139618],[-3.742553,52.13838],[-3.745535,52.135904],[-3.75052,52.133307],[-3.7526,52.132612],[-3.756018,52.130487],[-3.757708,52.130068],[-3.758102,52.128234],[-3.754741,52.128293],[-3.749463,52.127626],[-3.746937,52.125724],[-3.746629,52.124446],[-3.743267,52.122498],[-3.736956,52.120714],[-3.732446,52.12065],[-3.731009,52.119986],[-3.725232,52.118351],[-3.722929,52.115177],[-3.720319,52.117502],[-3.716097,52.113473],[-3.71642,52.110624],[-3.714294,52.106715],[-3.714634,52.105271],[-3.714077,52.104971],[-3.715278,52.103111],[-3.722823,52.099436],[-3.726154,52.09555],[-3.728793,52.093993],[-3.723459,52.093316],[-3.722503,52.091251],[-3.721514,52.08659],[-3.723096,52.085214],[-3.718606,52.085054],[-3.71549,52.085308],[-3.713225,52.084472],[-3.702343,52.082814],[-3.70075,52.082285],[-3.698711,52.080481],[-3.694745,52.078082],[-3.692142,52.07796],[-3.687255,52.076626],[-3.685664,52.075567],[-3.681659,52.07391],[-3.674913,52.074148],[-3.671737,52.074711],[-3.669616,52.074296],[-3.667131,52.074299],[-3.6668,52.073479],[-3.668851,52.069428],[-3.675195,52.066667],[-3.673859,52.065892],[-3.676812,52.063105],[-3.679773,52.062],[-3.678015,52.058944],[-3.676172,52.058302],[-3.675431,52.057571],[-3.676209,52.056538],[-3.673777,52.056724],[-3.667893,52.055784],[-3.666828,52.055229],[-3.665872,52.0538],[-3.662856,52.05239],[-3.661886,52.052353],[-3.662677,52.050748],[-3.659554,52.049277],[-3.660804,52.047861],[-3.659386,52.046423],[-3.657656,52.045193],[-3.655825,52.044535],[-3.653687,52.04237],[-3.652616,52.042431],[-3.649749,52.041509],[-3.647137,52.038789],[-3.649912,52.036895],[-3.651439,52.035138],[-3.652795,52.035307],[-3.654782,52.034554],[-3.656609,52.034387],[-3.66038,52.03297],[-3.662281,52.031322],[-3.66235,52.030139],[-3.661766,52.028701],[-3.662021,52.027956],[-3.663982,52.026871],[-3.668272,52.025432],[-3.667168,52.024612],[-3.670272,52.022254],[-3.671743,52.020666],[-3.673533,52.017516],[-3.673224,52.01656],[-3.671788,52.015566],[-3.669648,52.015514],[-3.666913,52.016159],[-3.665649,52.014703],[-3.666191,52.011662],[-3.665669,52.011332],[-3.667658,52.010179],[-3.668075,52.008328],[-3.670207,52.006725],[-3.670563,52.005429],[-3.670017,52.004213],[-3.671851,52.002815],[-3.673018,52.001208],[-3.674774,52.000396],[-3.6753,51.999668],[-3.677578,51.999185],[-3.678006,51.998694],[-3.684086,51.996322],[-3.685391,51.995046],[-3.684624,51.993791],[-3.684926,51.992176],[-3.690301,51.988571],[-3.691339,51.987295],[-3.694785,51.985294],[-3.695176,51.984358],[-3.697801,51.9828],[-3.698237,51.981294],[-3.696698,51.980763],[-3.696121,51.979607],[-3.694123,51.978292],[-3.694067,51.977223],[-3.701146,51.97277],[-3.699832,51.971746],[-3.703022,51.970258],[-3.711204,51.961879],[-3.710843,51.961204],[-3.707354,51.960169],[-3.707467,51.959074],[-3.706072,51.956833],[-3.704871,51.955716],[-3.702463,51.954223],[-3.705018,51.948467],[-3.701247,51.9479],[-3.699907,51.946089],[-3.702779,51.945785],[-3.707351,51.946899],[-3.710571,51.946868],[-3.71266,51.946251],[-3.714945,51.944703],[-3.719053,51.94308],[-3.720513,51.941926],[-3.720971,51.940353],[-3.720532,51.937174],[-3.72173,51.934668],[-3.719212,51.933493],[-3.717712,51.931974],[-3.719379,51.931085],[-3.718526,51.930497],[-3.718166,51.929144],[-3.71886,51.927682],[-3.720599,51.927881],[-3.721404,51.927374],[-3.722809,51.924762],[-3.721866,51.922991],[-3.722732,51.922748],[-3.723018,51.920032],[-3.723024,51.917466],[-3.724565,51.916581],[-3.723936,51.915911],[-3.724723,51.914029],[-3.726737,51.913354],[-3.727608,51.912199],[-3.727379,51.910348],[-3.72652,51.909669],[-3.723556,51.908231],[-3.716706,51.907141],[-3.713716,51.905965],[-3.713423,51.905483],[-3.715856,51.902795],[-3.717965,51.901203],[-3.713838,51.887126],[-3.717411,51.882447],[-3.719436,51.881999],[-3.721332,51.881159],[-3.721955,51.8801],[-3.721685,51.878131],[-3.722745,51.876851],[-3.726211,51.87454],[-3.728094,51.872535],[-3.731365,51.871003],[-3.735281,51.867224],[-3.735888,51.866086],[-3.737783,51.86544],[-3.737842,51.864328],[-3.738822,51.863592],[-3.741243,51.862897],[-3.743069,51.863634],[-3.74632,51.862199],[-3.74814,51.861761],[-3.74842,51.860767],[-3.749774,51.860262],[-3.749191,51.859419],[-3.754611,51.855611],[-3.755553,51.856025],[-3.757556,51.855885],[-3.757928,51.855108],[-3.761111,51.853835],[-3.763424,51.853869],[-3.76455,51.853246],[-3.76402,51.852174],[-3.766496,51.850707],[-3.766707,51.849679],[-3.768103,51.849596],[-3.772646,51.846022],[-3.775281,51.841488],[-3.776692,51.840237],[-3.776604,51.838322],[-3.778998,51.83676],[-3.779887,51.833945],[-3.781531,51.832528],[-3.78347,51.830064],[-3.784166,51.828325],[-3.78391,51.826667],[-3.782441,51.824219],[-3.781951,51.821601],[-3.782955,51.821037],[-3.783328,51.81997],[-3.786486,51.817497],[-3.786093,51.816212],[-3.787478,51.816279],[-3.788077,51.812394],[-3.789219,51.811378],[-3.792144,51.809959],[-3.794564,51.810036],[-3.795883,51.809594],[-3.795826,51.808755],[-3.79694,51.807219],[-3.796383,51.806343],[-3.797574,51.805569],[-3.798756,51.80411],[-3.801963,51.802597],[-3.803688,51.801374],[-3.804249,51.800053],[-3.805615,51.798858],[-3.806651,51.796238],[-3.807531,51.795114],[-3.80774,51.793707],[-3.807352,51.792601],[-3.808622,51.791644],[-3.807842,51.789561],[-3.806552,51.788538],[-3.806691,51.787952],[-3.806665,51.78732],[-3.804954,51.786755],[-3.803718,51.785905],[-3.801394,51.781513],[-3.799298,51.781258],[-3.796371,51.78218],[-3.793822,51.779724],[-3.791517,51.778561],[-3.790506,51.77755],[-3.782447,51.773493],[-3.78063,51.771489],[-3.780011,51.768319],[-3.778107,51.766832],[-3.777882,51.765247],[-3.778508,51.764404],[-3.777398,51.763031],[-3.778426,51.762236],[-3.778318,51.760233],[-3.780389,51.759671],[-3.777624,51.756682],[-3.770321,51.754522],[-3.768301,51.754523],[-3.757177,51.75283],[-3.755728,51.752751],[-3.753807,51.753387],[-3.751352,51.753186],[-3.750931,51.754102],[-3.746099,51.753391],[-3.744547,51.754165],[-3.744116,51.755047],[-3.742267,51.756736],[-3.742963,51.757271],[-3.737519,51.758103],[-3.735465,51.761776],[-3.735092,51.764494],[-3.73311,51.765068],[-3.733553,51.766231],[-3.732341,51.767255],[-3.733744,51.768995],[-3.736681,51.769802],[-3.73391,51.771501],[-3.72866,51.775849],[-3.725471,51.776891],[-3.722671,51.777205],[-3.719085,51.77817],[-3.712032,51.778388],[-3.706518,51.779629],[-3.692411,51.781605],[-3.690831,51.781558],[-3.687426,51.780224],[-3.68577,51.780205],[-3.681772,51.781525],[-3.679256,51.784215],[-3.676799,51.784227],[-3.674492,51.784957],[-3.670366,51.787198],[-3.670243,51.786011],[-3.668627,51.7858],[-3.663788,51.786087],[-3.664142,51.785065],[-3.655037,51.785077],[-3.652974,51.785446],[-3.652253,51.783681],[-3.651029,51.783554],[-3.649217,51.782287],[-3.647283,51.782728],[-3.64516,51.782076],[-3.64473,51.781576],[-3.640525,51.780972],[-3.640389,51.77968],[-3.63881,51.779193],[-3.638312,51.777428],[-3.636931,51.777196],[-3.633842,51.777898],[-3.633049,51.777021],[-3.629764,51.775916],[-3.628746,51.774778],[-3.626889,51.775015],[-3.625053,51.773974],[-3.624126,51.774773],[-3.622579,51.774471],[-3.619883,51.774842],[-3.618337,51.773875],[-3.617342,51.774092],[-3.615229,51.77338],[-3.612209,51.771768],[-3.608929,51.771817],[-3.605018,51.772617],[-3.604531,51.773798],[-3.603659,51.77393],[-3.602402,51.77282],[-3.601123,51.772655],[-3.600975,51.77132],[-3.599698,51.771325],[-3.597729,51.769945],[-3.598009,51.767696],[-3.596545,51.765753],[-3.598013,51.764168],[-3.594548,51.761568],[-3.594619,51.76068],[-3.595795,51.758832],[-3.591293,51.754612],[-3.589936,51.755313],[-3.590114,51.756686],[-3.587511,51.75715],[-3.586001,51.758371],[-3.579263,51.759621],[-3.576721,51.760925],[-3.574662,51.761298],[-3.572302,51.762156],[-3.571229,51.76217],[-3.56989,51.763772],[-3.567573,51.763715],[-3.564935,51.76565],[-3.566273,51.767409],[-3.564201,51.770132],[-3.56432,51.771189],[-3.563463,51.772309],[-3.563472,51.773466],[-3.561109,51.773952],[-3.562117,51.774922],[-3.560458,51.776219],[-3.559868,51.777516],[-3.558162,51.776834],[-3.555497,51.778263],[-3.549479,51.777847],[-3.547958,51.778085],[-3.546639,51.777665],[-3.545135,51.776041],[-3.544037,51.776355],[-3.541083,51.775561],[-3.537064,51.776198],[-3.535415,51.776911],[-3.536174,51.77843],[-3.535354,51.779855],[-3.536973,51.780616],[-3.538155,51.782416],[-3.540554,51.783005],[-3.541213,51.784563],[-3.537798,51.785102],[-3.534917,51.786619],[-3.533671,51.786723],[-3.5327,51.785558],[-3.531336,51.785912],[-3.528666,51.78725],[-3.528775,51.788473],[-3.525133,51.789955],[-3.523117,51.791643],[-3.51734,51.794314],[-3.511306,51.796046],[-3.509171,51.797333],[-3.506465,51.798392],[-3.504503,51.799963],[-3.502342,51.801013],[-3.488268,51.805921],[-3.482435,51.806983],[-3.47633,51.809471],[-3.47452,51.810755],[-3.474007,51.811628],[-3.472878,51.818515],[-3.468545,51.823456],[-3.468737,51.825872],[-3.470074,51.828505],[-3.467141,51.828776],[-3.465702,51.828588],[-3.463042,51.828841],[-3.460132,51.830129],[-3.457743,51.828335],[-3.451593,51.82569],[-3.450906,51.824858],[-3.447794,51.82308],[-3.447647,51.822178],[-3.445389,51.820864],[-3.445958,51.819829],[-3.444138,51.818251],[-3.444203,51.816486],[-3.44168,51.816513],[-3.436709,51.819698],[-3.433395,51.820948],[-3.431129,51.823142],[-3.431142,51.823748],[-3.428467,51.824942],[-3.422232,51.829004],[-3.417132,51.835101],[-3.402417,51.826312],[-3.402252,51.824782],[-3.403864,51.823645],[-3.404409,51.822408],[-3.406201,51.821165],[-3.405941,51.819184],[-3.404797,51.816506],[-3.402644,51.815107],[-3.402308,51.814159],[-3.399913,51.813459],[-3.39785,51.813491],[-3.39485,51.813961],[-3.390392,51.815271],[-3.386187,51.815266],[-3.386022,51.81458],[-3.38257,51.812277],[-3.378184,51.810775],[-3.372863,51.812199],[-3.370365,51.808239],[-3.36628,51.804863],[-3.361935,51.805691],[-3.359838,51.807167],[-3.35754,51.806977],[-3.357253,51.806095],[-3.355935,51.80518],[-3.356453,51.804523],[-3.355656,51.803101],[-3.355808,51.80118],[-3.356563,51.798987],[-3.356022,51.798176],[-3.356369,51.797156],[-3.35554,51.796799],[-3.356735,51.795744],[-3.360054,51.791088],[-3.351447,51.789887],[-3.33447,51.790402],[-3.317045,51.79425],[-3.310095,51.794302],[-3.308586,51.806133],[-3.283435,51.825489],[-3.238779,51.812355],[-3.208313,51.813476],[-3.206846,51.813766],[-3.204232,51.812958],[-3.202543,51.812778],[-3.192078,51.813249],[-3.157352,51.816051],[-3.153362,51.816506],[-3.148369,51.818723],[-3.144654,51.81934],[-3.143208,51.81986],[-3.140877,51.82203],[-3.140194,51.823193],[-3.141822,51.824981],[-3.143239,51.825734],[-3.140516,51.82616],[-3.138659,51.827328],[-3.136225,51.82681],[-3.137239,51.828092],[-3.135038,51.828413],[-3.13382,51.829358],[-3.132753,51.832311],[-3.131068,51.833325],[-3.129321,51.832853],[-3.127678,51.832967],[-3.128768,51.834228],[-3.126753,51.835733],[-3.125527,51.835431],[-3.124112,51.834455],[-3.12237,51.835247],[-3.122964,51.836453],[-3.119806,51.837288],[-3.120521,51.838921],[-3.118042,51.838936],[-3.116521,51.837314],[-3.115463,51.836892],[-3.110889,51.836112],[-3.10807,51.834847],[-3.105029,51.832386],[-3.101577,51.831834],[-3.100611,51.83257],[-3.101985,51.83343],[-3.103807,51.837325],[-3.103155,51.839878],[-3.101689,51.840268],[-3.09891,51.839618],[-3.096036,51.839791],[-3.096476,51.841518],[-3.097823,51.842598],[-3.098392,51.84365],[-3.098291,51.844884],[-3.097173,51.846428],[-3.094643,51.847635],[-3.090091,51.848151],[-3.087251,51.849031],[-3.085669,51.849851],[-3.083814,51.85014],[-3.08261,51.851341],[-3.082613,51.852458],[-3.076453,51.855015],[-3.077405,51.856386],[-3.07671,51.857926],[-3.071585,51.859753],[-3.070366,51.861004],[-3.068555,51.861371],[-3.063402,51.863323],[-3.065661,51.86467],[-3.070205,51.869634],[-3.073198,51.871494],[-3.073143,51.872618],[-3.071939,51.874769],[-3.069198,51.875476],[-3.068393,51.876421],[-3.065766,51.877495],[-3.064423,51.878565],[-3.062294,51.877185],[-3.061071,51.878729],[-3.057615,51.879649],[-3.052449,51.880226],[-3.050267,51.879657],[-3.048692,51.880391],[-3.04564,51.880865],[-3.043646,51.880714],[-3.043254,51.882607],[-3.040023,51.884667],[-3.040708,51.886615],[-3.04184,51.887439],[-3.041475,51.889047],[-3.042212,51.890882],[-3.041412,51.891533],[-3.03969,51.89148],[-3.038887,51.892382],[-3.038643,51.893692],[-3.0403,51.894309],[-3.040123,51.896125],[-3.041245,51.896493],[-3.041314,51.897611],[-3.043437,51.898698],[-3.042755,51.901469],[-3.044624,51.902689],[-3.047668,51.903821],[-3.049547,51.905652],[-3.048376,51.906295],[-3.050018,51.907612],[-3.049405,51.909224],[-3.049507,51.911446],[-3.053011,51.91265],[-3.059848,51.91369],[-3.060477,51.914601],[-3.060259,51.916848],[-3.062189,51.91909],[-3.065982,51.919198],[-3.06813,51.920269],[-3.070078,51.921761],[-3.071671,51.921944],[-3.075357,51.923049],[-3.077435,51.924627],[-3.078651,51.924531],[-3.079623,51.926362],[-3.079455,51.928237],[-3.081539,51.929244],[-3.081734,51.929907],[-3.083398,51.930712],[-3.083798,51.932873],[-3.080152,51.934977],[-3.080198,51.936086],[-3.083724,51.939844],[-3.083874,51.940728],[-3.085191,51.941737],[-3.085711,51.94351],[-3.087191,51.945021],[-3.086806,51.946678],[-3.087171,51.947517],[-3.089366,51.949331],[-3.090054,51.950355],[-3.085119,51.952675],[-3.081593,51.955394],[-3.088214,51.959354],[-3.093086,51.965191],[-3.086588,51.969688],[-3.085009,51.971751],[-3.083195,51.973112],[-3.081987,51.973431],[-3.080572,51.972827],[-3.078178,51.972589],[-3.077575,51.974327],[-3.075366,51.976924],[-3.067368,51.983143],[-3.068544,51.984453],[-3.068612,51.987091],[-3.069425,51.989489],[-3.072502,51.992164],[-3.075631,51.995862],[-3.078902,51.997629],[-3.082219,52.002398],[-3.084088,52.004108],[-3.086114,52.009981],[-3.086897,52.013911],[-3.094347,52.018716],[-3.099199,52.022686],[-3.092762,52.028977],[-3.092833,52.031526],[-3.092355,52.033189],[-3.090868,52.035376],[-3.08953,52.03627],[-3.086932,52.039163],[-3.086287,52.040194],[-3.086492,52.041143],[-3.092813,52.047479],[-3.092942,52.048708],[-3.09075,52.050157],[-3.090781,52.050825],[-3.094941,52.052934],[-3.096115,52.053786],[-3.096808,52.054915],[-3.097713,52.054837],[-3.099866,52.057174],[-3.101416,52.058275],[-3.10426,52.058732],[-3.107017,52.059969],[-3.108137,52.061223],[-3.108006,52.062098],[-3.110828,52.063903],[-3.111577,52.064942],[-3.116413,52.065833],[-3.118607,52.068454],[-3.118333,52.070164],[-3.120156,52.071858],[-3.119565,52.072698],[-3.12072,52.074488],[-3.121724,52.074819],[-3.121199,52.076124],[-3.122269,52.076417],[-3.123821,52.077806],[-3.125896,52.078311],[-3.125332,52.079844],[-3.122916,52.082306],[-3.11886,52.088728],[-3.119543,52.091675],[-3.121087,52.094101],[-3.122715,52.103158],[-3.121401,52.103998],[-3.119766,52.104373],[-3.117202,52.104033],[-3.113015,52.104563],[-3.107971,52.104727],[-3.105466,52.105386],[-3.104666,52.106351],[-3.104708,52.107399],[-3.107419,52.112198],[-3.107907,52.11409],[-3.107329,52.115122],[-3.104985,52.116728],[-3.105859,52.11691],[-3.106717,52.11874],[-3.10972,52.119685],[-3.112626,52.120189],[-3.115032,52.121578],[-3.117473,52.122031],[-3.121824,52.121607],[-3.123549,52.121861],[-3.128062,52.12457],[-3.130944,52.124285],[-3.133867,52.123073],[-3.136815,52.12332],[-3.137046,52.123942],[-3.139448,52.125977],[-3.139771,52.126733],[-3.141921,52.127867],[-3.14123,52.129923],[-3.137205,52.131319],[-3.135776,52.133268],[-3.134137,52.133578],[-3.135873,52.137908],[-3.13191,52.13804],[-3.128847,52.137816],[-3.124046,52.138758],[-3.119155,52.138795],[-3.115355,52.13918],[-3.106714,52.141856],[-3.097993,52.143861],[-3.095388,52.143936],[-3.09369,52.144306],[-3.0833,52.148345],[-3.078279,52.152211],[-3.072538,52.155773],[-3.071572,52.15819],[-3.073639,52.15922],[-3.074439,52.160058],[-3.079427,52.161378],[-3.080913,52.162568],[-3.084035,52.163167],[-3.085664,52.161958],[-3.085739,52.160575],[-3.087055,52.160413],[-3.089825,52.158583],[-3.090079,52.157304],[-3.093123,52.156917],[-3.092793,52.156313],[-3.094385,52.155212],[-3.0979,52.15514],[-3.098896,52.154734],[-3.099784,52.156245],[-3.101683,52.157392],[-3.103487,52.156921],[-3.105259,52.157163],[-3.106391,52.158471],[-3.109647,52.159193],[-3.112067,52.159002],[-3.113387,52.1602],[-3.116931,52.160447],[-3.117755,52.161542],[-3.119444,52.162691],[-3.122431,52.16342],[-3.121995,52.166917],[-3.11246,52.170231],[-3.11249,52.173623],[-3.109063,52.175003],[-3.106888,52.176398],[-3.10141,52.177266],[-3.100566,52.17833],[-3.096698,52.180473],[-3.096403,52.181466],[-3.094651,52.183742],[-3.095859,52.183708],[-3.097378,52.184353],[-3.097105,52.186749],[-3.095642,52.189747],[-3.096335,52.194722],[-3.097845,52.197673],[-3.098869,52.198084],[-3.099901,52.199239],[-3.100617,52.201404],[-3.100052,52.202219],[-3.094144,52.203751],[-3.090932,52.205778],[-3.088468,52.206512],[-3.087072,52.207305],[-3.0857,52.208855],[-3.083652,52.210152],[-3.080935,52.210727],[-3.076794,52.213315],[-3.073526,52.213509],[-3.072092,52.213087],[-3.072211,52.215009],[-3.078011,52.216045],[-3.077225,52.219098],[-3.075806,52.219673],[-3.072133,52.222853],[-3.073181,52.223747],[-3.071665,52.225847],[-3.071291,52.227449],[-3.072079,52.228696],[-3.070373,52.229238],[-3.074002,52.2342],[-3.073121,52.235792],[-3.070905,52.235964],[-3.067728,52.236767],[-3.066053,52.23582],[-3.063259,52.236296],[-3.059959,52.236375],[-3.058684,52.236082],[-3.055247,52.237623],[-3.049159,52.238903],[-3.047805,52.23846],[-3.045424,52.238771],[-3.044147,52.239306],[-3.045524,52.240786],[-3.043822,52.241536],[-3.043071,52.242756],[-3.042857,52.244132],[-3.043679,52.245542],[-3.045599,52.245516],[-3.049936,52.245036],[-3.045285,52.246823],[-3.045166,52.247279],[-3.047261,52.24861],[-3.048318,52.250234],[-3.047475,52.250413],[-3.045599,52.253072],[-3.044153,52.25359],[-3.038845,52.253615],[-3.037139,52.256066],[-3.036171,52.25666],[-3.033684,52.256927],[-3.031911,52.257491],[-3.02893,52.258013],[-3.025008,52.258288],[-3.023565,52.259304],[-3.019545,52.260404],[-3.017008,52.261512],[-3.013664,52.261888],[-3.011374,52.262455],[-3.009271,52.263474],[-3.005502,52.264272],[-3.001615,52.263998],[-2.99872,52.264169],[-2.996114,52.261482],[-2.992927,52.261618],[-2.992759,52.261109],[-2.989869,52.260507],[-2.988078,52.260877],[-2.987284,52.261476],[-2.984772,52.262309],[-2.982799,52.262061],[-2.978575,52.262362],[-2.977058,52.260932],[-2.977503,52.259773],[-2.972707,52.260747],[-2.971772,52.261254],[-2.969945,52.261127],[-2.969072,52.26158],[-2.965598,52.26201],[-2.963822,52.264237],[-2.965039,52.268125],[-2.960698,52.268822],[-2.957377,52.269932],[-2.955642,52.27025],[-2.951959,52.269467],[-2.950881,52.270034],[-2.951457,52.270841],[-2.954494,52.27162],[-2.958768,52.27211],[-2.961311,52.272607],[-2.963408,52.272619],[-2.963297,52.273728],[-2.964928,52.274357],[-2.966761,52.273756],[-2.970352,52.273773],[-2.97422,52.273515],[-2.977339,52.273651],[-2.979326,52.273093],[-2.983324,52.273217],[-2.98381,52.272933],[-2.986745,52.27355],[-2.988524,52.272973],[-2.990293,52.273673],[-2.992727,52.272811],[-2.99463,52.273398],[-2.995545,52.274588],[-2.999496,52.275325],[-2.999454,52.274863],[-3.003303,52.275461],[-3.00517,52.276369],[-3.00735,52.276265],[-3.007902,52.277229],[-3.009544,52.277015],[-3.011661,52.277407],[-3.012618,52.279407],[-3.011301,52.279963],[-3.009369,52.282851],[-3.00975,52.285862],[-3.010716,52.286131],[-3.011963,52.288089],[-3.009901,52.288782],[-3.008168,52.290288],[-3.005603,52.290648],[-3.004705,52.291966],[-3.005376,52.294263],[-3.003791,52.297725],[-3.001321,52.299944],[-3.000637,52.304566],[-3.001271,52.306422],[-3.003469,52.309178],[-3.00375,52.311336],[-3.001584,52.317816],[-3.002116,52.319998],[-3.000866,52.321766],[-2.997147,52.324528],[-2.990463,52.324669],[-2.989583,52.323958],[-2.986027,52.323469],[-2.983168,52.325168],[-2.98153,52.326802],[-2.979146,52.327348],[-2.977938,52.327986],[-2.974297,52.328164],[-2.972131,52.329312],[-2.968914,52.328968],[-2.966801,52.329449],[-2.967268,52.330642],[-2.966818,52.33238],[-2.961651,52.335936],[-2.960675,52.339188],[-2.95633,52.344293],[-2.956136,52.34588],[-2.954652,52.349155],[-2.957552,52.349692],[-2.959019,52.3491],[-2.961123,52.349618],[-2.961629,52.350618],[-2.963389,52.351427],[-2.96889,52.351923],[-2.97053,52.351357],[-2.971703,52.352363],[-2.972652,52.354152],[-2.974503,52.354701],[-2.976426,52.353927],[-2.978372,52.35387],[-2.978932,52.352767],[-2.981938,52.352134],[-2.983435,52.353303],[-2.985343,52.351099],[-2.987476,52.351407],[-2.989425,52.35069],[-2.990866,52.351673],[-2.99241,52.351538],[-2.993453,52.350659],[-2.995478,52.351718],[-2.998212,52.351926],[-3.00339,52.350989],[-3.002725,52.349946],[-3.004244,52.349218],[-3.005848,52.349056],[-3.010224,52.349548],[-3.010463,52.34917],[-3.013226,52.348259],[-3.021805,52.346537],[-3.026476,52.346829],[-3.0319,52.345667],[-3.035986,52.345296],[-3.036831,52.3448],[-3.041326,52.344339],[-3.046554,52.346535],[-3.049344,52.346925],[-3.052038,52.347734],[-3.057627,52.347612],[-3.059929,52.348009],[-3.065214,52.350066],[-3.065301,52.353344],[-3.067702,52.353822],[-3.070558,52.355024],[-3.070544,52.355977],[-3.074189,52.357416],[-3.077082,52.358167],[-3.08346,52.359487],[-3.08534,52.360728],[-3.087055,52.360992],[-3.091741,52.362502],[-3.094026,52.363961],[-3.095232,52.365574],[-3.09759,52.366841],[-3.09761,52.367958],[-3.099004,52.368493],[-3.100759,52.3678],[-3.102213,52.37056],[-3.101688,52.371122],[-3.103061,52.372261],[-3.103878,52.37364],[-3.10563,52.373917],[-3.107273,52.374673],[-3.110607,52.377193],[-3.118708,52.37764],[-3.120213,52.377481],[-3.122464,52.379069],[-3.126154,52.380541],[-3.127109,52.381403],[-3.127973,52.383417],[-3.130533,52.384503],[-3.133621,52.385383],[-3.134645,52.385159],[-3.141247,52.386871],[-3.147712,52.387379],[-3.1491,52.388138],[-3.152231,52.387365],[-3.154447,52.387715],[-3.155683,52.389649],[-3.15677,52.389799],[-3.158238,52.391546],[-3.160808,52.391367],[-3.16153,52.392156],[-3.161985,52.39375],[-3.160315,52.395124],[-3.160424,52.396116],[-3.15921,52.398053],[-3.160582,52.399929],[-3.1645,52.400681],[-3.16507,52.40168],[-3.166917,52.402489],[-3.170142,52.403005],[-3.171639,52.403979],[-3.171574,52.405416],[-3.172945,52.406531],[-3.177197,52.408369],[-3.178837,52.409397],[-3.186332,52.411719],[-3.188404,52.412175],[-3.188066,52.413006],[-3.190157,52.413483],[-3.191581,52.414561],[-3.194609,52.414491],[-3.198009,52.415788],[-3.198985,52.416942],[-3.205436,52.417893],[-3.207527,52.418719],[-3.210032,52.419177],[-3.211715,52.418978],[-3.213748,52.419742],[-3.214078,52.420473],[-3.215682,52.420349],[-3.219545,52.421253],[-3.219238,52.422034],[-3.220865,52.425015],[-3.222255,52.426779],[-3.223886,52.427431],[-3.22557,52.429176],[-3.230685,52.430486],[-3.230836,52.431829],[-3.230188,52.432169],[-3.230379,52.433474],[-3.229513,52.43398],[-3.230137,52.435246],[-3.228814,52.436508],[-3.229666,52.438394],[-3.22832,52.439512],[-3.230722,52.439964],[-3.232542,52.440001],[-3.234829,52.441308],[-3.235541,52.442498],[-3.235072,52.444924],[-3.234287,52.444772],[-3.233457,52.446136],[-3.234268,52.448639],[-3.233427,52.451163],[-3.231659,52.452941],[-3.230294,52.453758],[-3.222988,52.457151],[-3.219683,52.460038],[-3.218314,52.460888],[-3.217602,52.462393],[-3.216881,52.462712],[-3.215887,52.465552],[-3.213671,52.466375],[-3.211977,52.468164],[-3.211244,52.468247],[-3.208165,52.469955],[-3.206008,52.470378],[-3.204001,52.471332],[-3.202002,52.472805],[-3.196851,52.474612],[-3.19724,52.475989],[-3.19443,52.476403],[-3.180592,52.473836],[-3.178699,52.474414],[-3.171016,52.478728],[-3.157528,52.485178],[-3.148291,52.487421],[-3.145329,52.488548],[-3.142552,52.490848],[-3.140386,52.491667],[-3.128259,52.492074],[-3.124873,52.492837],[-3.120768,52.494486],[-3.117839,52.494746],[-3.117176,52.49591],[-3.11489,52.497004],[-3.113547,52.498248],[-3.111547,52.498851],[-3.108124,52.499301],[-3.098541,52.499749],[-3.093662,52.499054],[-3.089958,52.499182],[-3.085023,52.498538],[-3.082471,52.498859],[-3.080285,52.498781],[-3.075765,52.499405],[-3.063173,52.499851],[-3.059527,52.499601],[-3.055789,52.499973],[-3.046365,52.499062],[-3.044662,52.499279],[-3.044269,52.500138],[-3.040261,52.500177],[-3.040394,52.500644],[-3.029202,52.501268],[-3.030775,52.50307],[-3.033478,52.5038],[-3.034576,52.505017],[-3.03428,52.506374],[-3.032111,52.509284],[-3.032183,52.509757],[-3.036364,52.511423],[-3.035968,52.512867],[-3.036711,52.513277],[-3.035387,52.514857],[-3.034352,52.515148],[-3.033473,52.517322],[-3.032672,52.5176],[-3.032014,52.519117],[-3.030796,52.519522],[-3.032379,52.523731],[-3.029233,52.523513],[-3.026047,52.523866],[-3.024375,52.523569],[-3.02301,52.522634],[-3.021407,52.522571],[-3.020325,52.523152],[-3.016635,52.522284],[-3.016113,52.521785],[-3.013961,52.521751],[-3.013106,52.522131],[-3.011292,52.521375],[-3.010629,52.520061],[-3.008315,52.520575],[-3.006775,52.520593],[-3.005731,52.519964],[-3.003874,52.519833],[-3.00374,52.521419],[-3.001474,52.522535],[-3.000906,52.52411],[-3.002318,52.525015],[-3.002111,52.525899],[-3.005075,52.529461],[-3.004209,52.529562],[-3.003395,52.530953],[-3.001814,52.531992],[-3.003759,52.532392],[-3.003878,52.533575],[-3.002028,52.53663],[-3.001657,52.538531],[-2.999967,52.540419],[-2.999782,52.542134],[-2.998837,52.543387],[-2.998202,52.54534],[-2.998373,52.546375],[-2.997765,52.548066],[-2.996239,52.549314],[-2.995642,52.550698],[-2.994722,52.551301],[-2.994307,52.553048],[-2.996503,52.553235],[-2.998665,52.554453],[-2.999375,52.555586],[-2.998018,52.556471],[-2.997909,52.55806],[-2.999445,52.558981],[-2.997604,52.563844],[-2.998578,52.565243],[-3.00016,52.565644],[-3.000916,52.567431],[-3.000566,52.567981],[-3.001631,52.568875],[-3.003141,52.5693],[-3.002947,52.570092],[-3.006484,52.573849],[-3.008011,52.574373],[-3.009818,52.574462],[-3.01444,52.575497],[-3.016844,52.575165],[-3.01862,52.5745],[-3.020451,52.574614],[-3.028336,52.572878],[-3.034775,52.572165],[-3.036452,52.571804],[-3.0394,52.570315],[-3.041267,52.568923],[-3.043878,52.568128],[-3.047284,52.563699],[-3.049754,52.563116],[-3.049915,52.560692],[-3.054071,52.558825],[-3.057004,52.558591],[-3.05807,52.557892],[-3.059817,52.555561],[-3.060547,52.555319],[-3.062907,52.556438],[-3.065004,52.556829],[-3.069238,52.554971],[-3.070961,52.555278],[-3.071307,52.554023],[-3.074569,52.553725],[-3.080672,52.551884],[-3.087276,52.551331],[-3.0861,52.54874],[-3.090557,52.548563],[-3.092966,52.547234],[-3.093943,52.544902],[-3.09056,52.542748],[-3.087919,52.54257],[-3.086266,52.541914],[-3.083516,52.541471],[-3.083198,52.539601],[-3.080751,52.539144],[-3.08255,52.53723],[-3.082618,52.536224],[-3.083757,52.535516],[-3.08537,52.535185],[-3.088774,52.533671],[-3.090162,52.533887],[-3.091118,52.5332],[-3.093221,52.532962],[-3.09428,52.533343],[-3.096123,52.532134],[-3.097927,52.532628],[-3.100148,52.530769],[-3.102994,52.530822],[-3.10582,52.530275],[-3.108683,52.529167],[-3.110252,52.529469],[-3.112102,52.528794],[-3.113999,52.529064],[-3.119867,52.528465],[-3.122554,52.527799],[-3.126867,52.528383],[-3.128868,52.528152],[-3.129611,52.527433],[-3.131492,52.527014],[-3.134936,52.528421],[-3.135135,52.530526],[-3.136419,52.531597],[-3.137169,52.533937],[-3.135481,52.534925],[-3.132989,52.535289],[-3.132566,52.535842],[-3.13008,52.53673],[-3.128035,52.536154],[-3.125815,52.536998],[-3.121464,52.537448],[-3.118778,52.538546],[-3.116975,52.538385],[-3.116385,52.539197],[-3.113918,52.540613],[-3.112552,52.540697],[-3.111496,52.541364],[-3.117208,52.551518],[-3.126152,52.563845],[-3.12736,52.56605],[-3.128369,52.566203],[-3.128988,52.567337],[-3.131538,52.568131],[-3.134527,52.571957],[-3.137708,52.573834],[-3.138129,52.576303],[-3.137771,52.577628],[-3.138272,52.578272],[-3.138586,52.582932],[-3.136284,52.582773],[-3.134981,52.58368],[-3.136313,52.584255],[-3.137435,52.58392],[-3.139359,52.585122],[-3.13835,52.585869],[-3.136028,52.586071],[-3.134442,52.58492],[-3.133072,52.585822],[-3.130441,52.585844],[-3.129088,52.586538],[-3.127152,52.586008],[-3.126006,52.587012],[-3.123939,52.587613],[-3.123224,52.587128],[-3.120389,52.586781],[-3.119236,52.585837],[-3.117338,52.586376],[-3.113809,52.588748],[-3.112352,52.590716],[-3.109803,52.590246],[-3.105534,52.594916],[-3.102057,52.594915],[-3.100977,52.596404],[-3.099201,52.597956],[-3.098264,52.597919],[-3.096881,52.598894],[-3.09567,52.59903],[-3.094058,52.597994],[-3.092502,52.598844],[-3.089528,52.599525],[-3.089727,52.601597],[-3.089286,52.603332],[-3.091234,52.605627],[-3.09161,52.607099],[-3.093623,52.609339],[-3.088141,52.612141],[-3.088116,52.61277],[-3.086276,52.613951],[-3.082601,52.615633],[-3.082043,52.616347],[-3.083092,52.616912],[-3.082677,52.618228],[-3.083341,52.618556],[-3.0809,52.622439],[-3.079618,52.623395],[-3.072058,52.626095],[-3.074947,52.627034],[-3.072287,52.628723],[-3.069887,52.629158],[-3.067824,52.630536],[-3.064557,52.629985],[-3.059801,52.630721],[-3.063731,52.63416],[-3.068021,52.636041],[-3.069576,52.637496],[-3.072422,52.637395],[-3.074242,52.638735],[-3.076321,52.63941],[-3.079358,52.639706],[-3.081277,52.639372],[-3.083566,52.641292],[-3.081713,52.641183],[-3.076455,52.643468],[-3.073367,52.644156],[-3.069885,52.645796],[-3.06763,52.645486],[-3.061715,52.64541],[-3.060466,52.645834],[-3.059686,52.64685],[-3.058174,52.64745],[-3.056279,52.647555],[-3.055069,52.647202],[-3.051116,52.647366],[-3.05132,52.649455],[-3.052221,52.651177],[-3.050598,52.652851],[-3.049877,52.654689],[-3.047313,52.654433],[-3.044936,52.655908],[-3.045445,52.656763],[-3.047613,52.657036],[-3.048634,52.65756],[-3.048646,52.660176],[-3.049385,52.661212],[-3.048711,52.663061],[-3.046744,52.664261],[-3.046159,52.665105],[-3.04471,52.665616],[-3.043033,52.66751],[-3.042636,52.670715],[-3.043077,52.672113],[-3.03858,52.675373],[-3.041909,52.675766],[-3.045657,52.675464],[-3.042578,52.679375],[-3.042692,52.680895],[-3.042082,52.681497],[-3.043315,52.683928],[-3.042674,52.686819],[-3.043492,52.687938],[-3.046638,52.690083],[-3.047048,52.691266],[-3.041356,52.692744],[-3.038945,52.692362],[-3.037776,52.692897],[-3.036024,52.69254],[-3.034224,52.693441],[-3.033523,52.694217],[-3.032986,52.696017],[-3.032119,52.6966],[-3.032123,52.69989],[-3.030654,52.700611],[-3.030191,52.701989],[-3.029377,52.702693],[-3.027093,52.702929],[-3.025913,52.703457],[-3.025393,52.705159],[-3.022486,52.706668],[-3.022989,52.707581],[-3.022208,52.708635],[-3.02175,52.710633],[-3.023558,52.712054],[-3.025374,52.714741],[-3.025338,52.716512],[-3.02368,52.718468],[-3.02355,52.719749],[-3.02215,52.719888],[-3.020432,52.72115],[-3.020305,52.721724],[-3.021477,52.724245],[-3.020357,52.725102],[-3.018872,52.72433],[-3.018121,52.722211],[-3.01838,52.721266],[-3.011559,52.720629],[-3.008367,52.722119],[-3.005434,52.7205],[-3.003049,52.720908],[-3.000555,52.720275],[-2.997574,52.720856],[-2.996864,52.721769],[-2.993012,52.722058],[-2.989206,52.722634],[-2.987401,52.722282],[-2.984935,52.722852],[-2.984684,52.723477],[-2.982158,52.72576],[-2.977592,52.726592],[-2.977492,52.725671],[-2.97612,52.724607],[-2.975418,52.721649],[-2.977134,52.720422],[-2.977411,52.719667],[-2.977252,52.717017],[-2.978103,52.715357],[-2.967403,52.714285],[-2.9656,52.714408],[-2.962923,52.715479],[-2.961549,52.715674],[-2.9611,52.716387],[-2.961433,52.718734],[-2.962344,52.719886],[-2.9611,52.7207],[-2.96222,52.72464],[-2.961722,52.725565],[-2.966698,52.725646],[-2.966742,52.727025],[-2.9655,52.72832],[-2.966633,52.729123],[-2.965066,52.732268],[-2.969049,52.731972],[-2.969428,52.733362],[-2.970758,52.734838],[-2.973653,52.735735],[-2.977095,52.734374],[-2.981483,52.733564],[-2.987068,52.733368],[-2.99103,52.733718],[-2.994011,52.735531],[-2.996562,52.73611],[-2.997383,52.738355],[-2.996801,52.738952],[-2.995027,52.739037],[-2.99354,52.738376],[-2.992319,52.739397],[-2.993106,52.740582],[-2.990583,52.742195],[-2.991993,52.743756],[-2.994894,52.744427],[-2.997671,52.743936],[-2.999795,52.744737],[-3.002408,52.746324],[-3.004676,52.746701],[-3.00562,52.747693],[-3.008115,52.747746],[-3.008075,52.748933],[-3.009769,52.750347],[-3.013615,52.749649],[-3.015383,52.748134],[-3.016643,52.748531],[-3.01797,52.750618],[-3.02113,52.751556],[-3.021891,52.752379],[-3.020375,52.753007],[-3.017205,52.753381],[-3.01436,52.752994],[-3.014486,52.754214],[-3.013302,52.755626],[-3.012961,52.756753],[-3.010837,52.758449],[-3.011255,52.759997],[-3.010614,52.761551],[-3.012274,52.762875],[-3.013121,52.764408],[-3.016453,52.766207],[-3.0172,52.767664],[-3.018731,52.767499],[-3.019789,52.766192],[-3.021498,52.765591],[-3.022041,52.764448],[-3.023734,52.76417],[-3.026235,52.765026],[-3.025726,52.766749],[-3.02716,52.766998],[-3.028843,52.765828],[-3.030584,52.766191],[-3.03299,52.765883],[-3.033546,52.764221],[-3.035575,52.764073],[-3.036943,52.76528],[-3.034865,52.766208],[-3.033118,52.766539],[-3.032646,52.767256],[-3.035366,52.767689],[-3.036104,52.769003],[-3.037577,52.769197],[-3.038035,52.769983],[-3.039578,52.770225],[-3.040336,52.76909],[-3.043425,52.769506],[-3.045139,52.768942],[-3.045804,52.767501],[-3.047593,52.767279],[-3.048932,52.768941],[-3.049849,52.769469],[-3.051542,52.768566],[-3.053128,52.769353],[-3.052742,52.77045],[-3.049642,52.771649],[-3.04767,52.771968],[-3.04779,52.772643],[-3.050101,52.772288],[-3.053907,52.773564],[-3.057926,52.773685],[-3.059003,52.772078],[-3.058933,52.771286],[-3.061317,52.770732],[-3.06117,52.769311],[-3.062611,52.769075],[-3.064116,52.769648],[-3.06285,52.771183],[-3.064872,52.771657],[-3.066796,52.773785],[-3.069556,52.774222],[-3.070661,52.772766],[-3.070357,52.771618],[-3.071575,52.770163],[-3.074246,52.769617],[-3.079516,52.771514],[-3.079959,52.772949],[-3.077858,52.773756],[-3.080512,52.77606],[-3.080649,52.777441],[-3.083933,52.777882],[-3.085231,52.777314],[-3.08882,52.777539],[-3.08778,52.779847],[-3.091694,52.786752],[-3.091178,52.787458],[-3.089022,52.788129],[-3.085738,52.790304],[-3.085588,52.793362],[-3.086632,52.795593],[-3.090958,52.796031],[-3.093462,52.793686],[-3.096463,52.792425],[-3.097731,52.791374],[-3.102397,52.792611],[-3.106101,52.792955],[-3.108466,52.791417],[-3.107527,52.790717],[-3.107272,52.789695],[-3.109708,52.788231],[-3.109748,52.786687],[-3.112189,52.785766],[-3.113762,52.786549],[-3.115926,52.785401],[-3.116171,52.784265],[-3.118287,52.783582],[-3.11953,52.785513],[-3.11891,52.787224],[-3.12253,52.787575],[-3.125789,52.786956],[-3.127128,52.787399],[-3.13129,52.787561],[-3.134626,52.788524],[-3.141622,52.78992],[-3.143637,52.789903],[-3.14456,52.788512],[-3.146275,52.789268],[-3.146769,52.79124],[-3.147998,52.792091],[-3.151074,52.792553],[-3.15183,52.79299],[-3.156459,52.793582],[-3.158425,52.793488],[-3.161083,52.796048],[-3.161915,52.799253],[-3.159139,52.799688],[-3.15713,52.800489],[-3.154121,52.802521],[-3.153567,52.803671],[-3.15319,52.806369],[-3.154301,52.807488],[-3.156266,52.808015],[-3.158322,52.807228],[-3.16142,52.80359],[-3.162492,52.803661],[-3.166222,52.805824],[-3.166922,52.807121],[-3.168205,52.807328],[-3.168357,52.808225],[-3.167318,52.810297],[-3.165464,52.812046],[-3.16604,52.815313],[-3.167693,52.817262],[-3.167888,52.819267],[-3.165368,52.821392],[-3.1649,52.8229],[-3.163806,52.824058],[-3.161409,52.82557],[-3.159542,52.827624],[-3.159165,52.828952],[-3.158197,52.829959],[-3.156677,52.830046],[-3.155104,52.830727],[-3.155587,52.831485],[-3.154066,52.832126],[-3.154169,52.833155],[-3.156479,52.837014],[-3.15548,52.837411],[-3.15533,52.838754],[-3.152255,52.840298],[-3.151261,52.842565],[-3.154609,52.844103],[-3.155099,52.844943],[-3.158501,52.846625],[-3.163015,52.847491],[-3.161437,52.848025],[-3.16128,52.849304],[-3.159737,52.850321],[-3.158192,52.850445],[-3.155789,52.853103],[-3.154122,52.853307],[-3.154002,52.854284],[-3.150726,52.855591],[-3.147644,52.855732],[-3.146276,52.856817],[-3.144563,52.857565],[-3.142342,52.860102],[-3.138878,52.861361],[-3.134419,52.861797],[-3.127713,52.867103],[-3.129056,52.869261],[-3.130636,52.869663],[-3.134425,52.869827],[-3.13618,52.870698],[-3.137212,52.872173],[-3.139757,52.873579],[-3.141826,52.873437],[-3.145381,52.875368],[-3.149824,52.876967],[-3.152417,52.878748],[-3.152487,52.879809],[-3.151092,52.88075],[-3.148305,52.881234],[-3.147042,52.884697],[-3.14417,52.885182],[-3.142754,52.885062],[-3.140127,52.885588],[-3.136606,52.884903],[-3.136187,52.886216],[-3.138313,52.887072],[-3.140273,52.887283],[-3.141403,52.888048],[-3.145756,52.889259],[-3.147505,52.890175],[-3.148936,52.891651],[-3.150963,52.893126],[-3.151262,52.895093],[-3.152261,52.896399],[-3.155238,52.897505],[-3.154839,52.898093],[-3.156729,52.898548],[-3.161073,52.898983],[-3.174382,52.901576],[-3.176295,52.900909],[-3.177679,52.898377],[-3.178506,52.897743],[-3.183579,52.898119],[-3.183708,52.89611],[-3.186274,52.896152],[-3.187779,52.894703],[-3.190499,52.894644],[-3.193627,52.893949],[-3.197028,52.890837],[-3.20064,52.891482],[-3.202028,52.892381],[-3.205052,52.892506],[-3.20678,52.890725],[-3.211829,52.88883],[-3.215705,52.88686],[-3.215105,52.885005],[-3.216691,52.88169],[-3.215292,52.880803],[-3.218261,52.879432],[-3.217292,52.878372],[-3.215882,52.878787],[-3.216472,52.876822],[-3.225805,52.875241],[-3.228096,52.87555],[-3.228071,52.873985],[-3.229131,52.873009],[-3.230812,52.872498],[-3.233346,52.870382],[-3.233385,52.86769],[-3.236153,52.867554],[-3.239552,52.868305],[-3.242922,52.868146],[-3.246043,52.867294],[-3.246685,52.868028],[-3.250417,52.867864],[-3.253899,52.867417],[-3.259109,52.868327],[-3.259387,52.86746],[-3.261803,52.866609],[-3.26675,52.867093],[-3.273006,52.867282],[-3.274349,52.867065],[-3.277239,52.868553],[-3.281324,52.870098],[-3.286376,52.871312],[-3.291346,52.870842],[-3.295126,52.874899],[-3.297756,52.876976],[-3.295874,52.879219],[-3.296804,52.880722],[-3.301451,52.882023],[-3.311121,52.883131],[-3.314038,52.88374],[-3.316545,52.883413],[-3.320015,52.882071],[-3.322092,52.882082],[-3.324484,52.882792],[-3.324745,52.883455],[-3.326749,52.883835],[-3.333212,52.886037],[-3.334986,52.88693],[-3.339248,52.890295],[-3.345651,52.892541],[-3.347748,52.892526],[-3.354005,52.890879],[-3.360493,52.891849],[-3.361029,52.891458],[-3.366154,52.893427],[-3.370734,52.892127],[-3.373583,52.89178],[-3.375015,52.892453],[-3.380304,52.88377],[-3.388824,52.87607],[-3.426263,52.867373],[-3.449384,52.864525],[-3.469268,52.861939],[-3.472881,52.863223],[-3.479862,52.864329],[-3.483013,52.865454],[-3.486943,52.860184],[-3.497335,52.849345],[-3.505448,52.841894],[-3.517898,52.837378],[-3.521846,52.837203],[-3.533796,52.838074],[-3.55107,52.834109],[-3.566673,52.83008],[-3.564953,52.827825],[-3.564394,52.826381],[-3.565379,52.825048],[-3.56817,52.822895],[-3.57335,52.823507],[-3.575052,52.824444],[-3.577795,52.825107],[-3.580017,52.826123],[-3.581648,52.826303],[-3.586476,52.827717],[-3.591031,52.821409],[-3.5923,52.817869],[-3.597058,52.814054],[-3.596308,52.8129],[-3.597768,52.811878],[-3.596494,52.811002],[-3.597641,52.808536],[-3.59693,52.805007],[-3.599574,52.803525],[-3.601217,52.801488],[-3.603166,52.800625],[-3.604902,52.798747],[-3.606973,52.797501],[-3.608669,52.795805],[-3.608722,52.794086],[-3.606895,52.790795],[-3.607018,52.789768],[-3.606102,52.787442],[-3.606462,52.78699],[-3.60281,52.785972],[-3.596956,52.783482],[-3.597542,52.781215],[-3.59899,52.779873],[-3.599311,52.778794],[-3.596093,52.776627],[-3.595969,52.775446],[-3.594735,52.774396],[-3.593179,52.77017],[-3.590249,52.765903],[-3.593715,52.761852],[-3.592162,52.761088],[-3.591835,52.76035],[-3.594764,52.757134],[-3.594354,52.755615],[-3.593647,52.754801],[-3.593564,52.753305],[-3.592563,52.752703],[-3.593089,52.750421],[-3.590111,52.749146],[-3.588211,52.74708],[-3.591222,52.744489],[-3.591388,52.741763],[-3.588989,52.739428],[-3.58737,52.739729],[-3.584206,52.739598],[-3.583514,52.738623],[-3.584229,52.736568],[-3.586296,52.735726],[-3.591791,52.734786],[-3.592043,52.73326],[-3.593457,52.730848],[-3.599294,52.725882],[-3.599582,52.724032],[-3.600953,52.722324],[-3.600709,52.720075],[-3.601988,52.718925],[-3.601031,52.716443],[-3.602397,52.714044],[-3.602015,52.713154],[-3.603927,52.711774],[-3.604722,52.70887],[-3.60412,52.708475],[-3.603456,52.706465],[-3.601983,52.705087],[-3.60279,52.704712],[-3.604962,52.705038],[-3.605599,52.704304],[-3.607583,52.704239],[-3.609863,52.703645],[-3.610044,52.703087],[-3.614403,52.70197],[-3.615609,52.700809],[-3.616675,52.70054],[-3.618165,52.699077],[-3.617857,52.698447],[-3.619602,52.697456],[-3.621418,52.69766],[-3.62341,52.696825],[-3.624382,52.697195],[-3.627334,52.697246],[-3.630027,52.696238],[-3.631721,52.69686],[-3.632973,52.696113],[-3.634656,52.69584],[-3.6391,52.696268],[-3.642645,52.696246],[-3.645636,52.695671],[-3.648442,52.696222],[-3.648121,52.695367],[-3.649587,52.693611],[-3.651488,52.692869],[-3.653421,52.69263],[-3.654507,52.691695],[-3.656375,52.691373],[-3.657825,52.691568],[-3.660037,52.690934],[-3.661415,52.691339],[-3.664119,52.691456],[-3.666962,52.692966],[-3.66815,52.69268],[-3.668881,52.691738],[-3.671252,52.692307],[-3.675546,52.69412],[-3.676292,52.694174],[-3.677738,52.692467],[-3.681141,52.692845],[-3.680449,52.694159],[-3.682486,52.694151],[-3.684446,52.693673],[-3.685884,52.692022],[-3.687965,52.691404],[-3.693593,52.686805],[-3.695321,52.687029],[-3.695174,52.688355],[-3.69694,52.688272],[-3.700449,52.684392],[-3.703432,52.682692],[-3.703847,52.681921],[-3.703497,52.680599],[-3.701364,52.678896],[-3.701416,52.677772],[-3.702848,52.676892],[-3.706744,52.675826],[-3.707056,52.674077],[-3.706083,52.673065],[-3.709261,52.671641],[-3.709368,52.671082],[-3.711911,52.671066],[-3.714346,52.671847],[-3.713067,52.673311],[-3.711518,52.674454],[-3.712691,52.674866],[-3.712593,52.676051],[-3.71676,52.678779],[-3.724196,52.677379],[-3.727062,52.677742],[-3.728974,52.6784],[-3.730918,52.67792],[-3.735868,52.677893],[-3.737208,52.678145],[-3.739968,52.679752],[-3.743908,52.681309],[-3.745447,52.680784],[-3.748012,52.678663],[-3.753484,52.675459],[-3.755244,52.674005],[-3.755252,52.672509],[-3.757195,52.671461],[-3.757023,52.670233],[-3.758074,52.66953],[-3.759352,52.669446],[-3.760952,52.67115],[-3.765395,52.673093],[-3.767738,52.671662],[-3.768518,52.670399],[-3.775192,52.671612],[-3.778499,52.671579],[-3.781939,52.67103],[-3.784172,52.670979],[-3.787454,52.6713],[-3.78822,52.670976],[-3.795224,52.672689],[-3.798162,52.674666],[-3.799652,52.675138],[-3.801018,52.676472],[-3.801349,52.677809],[-3.804776,52.678467],[-3.808096,52.677945],[-3.808877,52.677102],[-3.808434,52.674917],[-3.810469,52.673941],[-3.811291,52.674224],[-3.814066,52.674045],[-3.816527,52.673432],[-3.818011,52.672732],[-3.818162,52.67125],[-3.816789,52.669597],[-3.820241,52.669095],[-3.820382,52.667158],[-3.821997,52.666611],[-3.822399,52.66576],[-3.823741,52.66532],[-3.828858,52.661812],[-3.829924,52.66014],[-3.832895,52.658705],[-3.834884,52.65703],[-3.836714,52.656259],[-3.838643,52.654489],[-3.838715,52.653368],[-3.840714,52.650903],[-3.840452,52.649545],[-3.840918,52.648851],[-3.84053,52.647545],[-3.84132,52.646189],[-3.843229,52.644745],[-3.843125,52.643607],[-3.844033,52.642468],[-3.844016,52.641223],[-3.841975,52.638199],[-3.836921,52.636685],[-3.835179,52.636844],[-3.834026,52.635784],[-3.834968,52.632411],[-3.837775,52.631111],[-3.839402,52.630946],[-3.841155,52.631278],[-3.843641,52.630476],[-3.846242,52.628836],[-3.846198,52.627404],[-3.845288,52.6267],[-3.845723,52.625393],[-3.844694,52.62466],[-3.843567,52.622671],[-3.845618,52.621516],[-3.848511,52.621354],[-3.85045,52.620636],[-3.849783,52.619296],[-3.846789,52.616795],[-3.84658,52.614608],[-3.845459,52.613245],[-3.84533,52.610496],[-3.846796,52.609785],[-3.848749,52.607302],[-3.846839,52.605859],[-3.843876,52.605168],[-3.841434,52.601408],[-3.842077,52.599679],[-3.845831,52.600211],[-3.849036,52.601358],[-3.851228,52.600722],[-3.856747,52.600403],[-3.859326,52.599921],[-3.861532,52.598771],[-3.862185,52.598046],[-3.862821,52.595566],[-3.864966,52.592504],[-3.866175,52.59177],[-3.869578,52.59132],[-3.871604,52.592473],[-3.875378,52.592842],[-3.876208,52.591834],[-3.872663,52.589827],[-3.873104,52.58787],[-3.8753,52.586929],[-3.875221,52.583806],[-3.877548,52.582398],[-3.882857,52.583208],[-3.882725,52.581589],[-3.884401,52.580122],[-3.884539,52.578685],[-3.883013,52.577758],[-3.883922,52.577119],[-3.887587,52.578412],[-3.890756,52.576788],[-3.892203,52.576947],[-3.893554,52.576933],[-3.897106,52.578221],[-3.900351,52.578827],[-3.902745,52.577883],[-3.905458,52.577277],[-3.908494,52.577086],[-3.910957,52.577366],[-3.91299,52.57823],[-3.915238,52.578404],[-3.913422,52.575105],[-3.914947,52.573305],[-3.915774,52.572906],[-3.918317,52.572898],[-3.921048,52.571956],[-3.922567,52.570516],[-3.925389,52.570253],[-3.928372,52.571297],[-3.928376,52.568783],[-3.928862,52.567792],[-3.92873,52.566301],[-3.926722,52.564355],[-3.92598,52.561875],[-3.921962,52.562408],[-3.918849,52.562281],[-3.914008,52.563121],[-3.912188,52.563011],[-3.906226,52.560798]]]]},"properties":{"LAD22CD":"W06000023","LAD22NM":"Powys","BNG_E":302329,"BNG_N":273255,"LONG":-3.43531,"LAT":52.34864,"GlobalID":"fbd703d7-f49a-457f-90db-6f7cf538d804"},"id":373}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.33447,51.790402],[-3.351447,51.789887],[-3.360054,51.791088],[-3.356735,51.795744],[-3.35554,51.796799],[-3.356369,51.797156],[-3.356022,51.798176],[-3.356563,51.798987],[-3.355808,51.80118],[-3.355656,51.803101],[-3.356453,51.804523],[-3.355935,51.80518],[-3.357253,51.806095],[-3.35754,51.806977],[-3.359838,51.807167],[-3.361935,51.805691],[-3.36628,51.804863],[-3.370365,51.808239],[-3.372863,51.812199],[-3.378184,51.810775],[-3.38257,51.812277],[-3.386022,51.81458],[-3.386187,51.815266],[-3.390392,51.815271],[-3.39485,51.813961],[-3.39785,51.813491],[-3.399913,51.813459],[-3.402308,51.814159],[-3.402644,51.815107],[-3.404797,51.816506],[-3.405941,51.819184],[-3.406201,51.821165],[-3.404409,51.822408],[-3.403864,51.823645],[-3.402252,51.824782],[-3.402417,51.826312],[-3.417132,51.835101],[-3.422232,51.829004],[-3.428467,51.824942],[-3.431142,51.823748],[-3.431129,51.823142],[-3.433395,51.820948],[-3.436709,51.819698],[-3.44168,51.816513],[-3.444203,51.816486],[-3.445363,51.815973],[-3.445836,51.813867],[-3.444417,51.809597],[-3.44543,51.806407],[-3.442509,51.802872],[-3.4417,51.798183],[-3.440688,51.795804],[-3.440038,51.794981],[-3.435796,51.792084],[-3.433529,51.793012],[-3.433082,51.792334],[-3.434069,51.791482],[-3.434243,51.790153],[-3.432451,51.789207],[-3.431604,51.78732],[-3.427965,51.78568],[-3.427403,51.785131],[-3.427734,51.783139],[-3.428651,51.781327],[-3.428442,51.780167],[-3.423586,51.776169],[-3.420102,51.775217],[-3.418315,51.771566],[-3.418876,51.769892],[-3.417386,51.769254],[-3.416577,51.76808],[-3.417498,51.766489],[-3.420432,51.766398],[-3.418401,51.764554],[-3.419956,51.764211],[-3.421033,51.764606],[-3.423632,51.763792],[-3.425421,51.76276],[-3.422933,51.761463],[-3.424231,51.759946],[-3.426618,51.759954],[-3.427472,51.758498],[-3.428664,51.758733],[-3.430896,51.758413],[-3.433044,51.758765],[-3.434052,51.759622],[-3.436807,51.760536],[-3.438597,51.762511],[-3.450102,51.7624],[-3.45315,51.761662],[-3.447652,51.758833],[-3.442561,51.755668],[-3.436578,51.752471],[-3.434957,51.75052],[-3.435825,51.749976],[-3.432957,51.747773],[-3.425211,51.743437],[-3.423686,51.742286],[-3.419872,51.740373],[-3.418218,51.738208],[-3.413488,51.735256],[-3.412215,51.733578],[-3.412891,51.733408],[-3.411594,51.731283],[-3.405435,51.722603],[-3.399956,51.718772],[-3.398995,51.718406],[-3.388913,51.716586],[-3.385703,51.715053],[-3.380604,51.711373],[-3.372207,51.702211],[-3.367505,51.698594],[-3.364981,51.696369],[-3.363205,51.694037],[-3.362417,51.691805],[-3.361199,51.690293],[-3.35658,51.681065],[-3.349433,51.676794],[-3.343978,51.670948],[-3.343533,51.669006],[-3.342513,51.668254],[-3.339797,51.667158],[-3.334289,51.659626],[-3.331467,51.656713],[-3.329281,51.655118],[-3.327583,51.655178],[-3.325682,51.654055],[-3.323852,51.653836],[-3.32193,51.6521],[-3.321292,51.654839],[-3.320306,51.655444],[-3.317736,51.655242],[-3.316691,51.65566],[-3.313862,51.655704],[-3.313157,51.654471],[-3.313297,51.653033],[-3.312732,51.651681],[-3.315857,51.648826],[-3.313688,51.647911],[-3.314612,51.645267],[-3.313907,51.64468],[-3.310027,51.645383],[-3.309095,51.647023],[-3.307645,51.648063],[-3.303759,51.649807],[-3.304118,51.650247],[-3.300972,51.651839],[-3.300022,51.653465],[-3.300797,51.654567],[-3.299343,51.656111],[-3.297033,51.65722],[-3.29764,51.658194],[-3.297075,51.65891],[-3.297717,51.6597],[-3.297465,51.661121],[-3.298581,51.662108],[-3.29611,51.664094],[-3.295205,51.663779],[-3.29316,51.661959],[-3.292515,51.659443],[-3.291095,51.659284],[-3.288804,51.658195],[-3.286194,51.658037],[-3.285304,51.658677],[-3.284036,51.660599],[-3.283418,51.660927],[-3.284375,51.663524],[-3.284192,51.665453],[-3.283339,51.667309],[-3.283649,51.669114],[-3.284611,51.670498],[-3.284314,51.673913],[-3.285071,51.675204],[-3.28468,51.67713],[-3.282504,51.678692],[-3.281029,51.679171],[-3.278851,51.680972],[-3.276103,51.681267],[-3.273931,51.682337],[-3.275424,51.683332],[-3.27803,51.689435],[-3.278239,51.693353],[-3.278725,51.694647],[-3.286027,51.702289],[-3.289576,51.7097],[-3.288601,51.712606],[-3.291519,51.715132],[-3.293332,51.718883],[-3.296524,51.721767],[-3.297486,51.723265],[-3.297724,51.724675],[-3.297269,51.727997],[-3.299578,51.729982],[-3.299484,51.734401],[-3.300637,51.736314],[-3.315512,51.731809],[-3.315245,51.732957],[-3.31416,51.734195],[-3.313829,51.736761],[-3.312641,51.737852],[-3.310198,51.738637],[-3.310113,51.739455],[-3.31222,51.741837],[-3.314768,51.742859],[-3.317943,51.74288],[-3.32906,51.758723],[-3.33447,51.790402]]]},"properties":{"LAD22CD":"W06000024","LAD22NM":"Merthyr Tydfil","BNG_E":305916,"BNG_N":206424,"LONG":-3.36425,"LAT":51.74858,"GlobalID":"88806680-dee5-4d46-929e-d8f60f8d2a00"},"id":374} +]} \ No newline at end of file diff --git a/src/_data/sources/transport/active-travel.csv b/src/_data/sources/transport/active-travel.csv new file mode 100644 index 0000000..def56bc --- /dev/null +++ b/src/_data/sources/transport/active-travel.csv @@ -0,0 +1,534 @@ +PCON22CD,Cycle once a month 2016,Cycle once a month 2017,Cycle once a month 2018,Cycle once a month 2019,Cycle once a month 2020,Cycle once a month 2021,Cycle once a month 2022,Cycle once a week 2016,Cycle once a week 2017,Cycle once a week 2018,Cycle once a week 2019,Cycle once a week 2020,Cycle once a week 2021,Cycle once a week 2022,Cycle three times a week 2016,Cycle three times a week 2017,Cycle three times a week 2018,Cycle three times a week 2019,Cycle three times a week 2020,Cycle three times a week 2021,Cycle three times a week 2022,Cycle five times a week 2016,Cycle five times a week 2017,Cycle five times a week 2018,Cycle five times a week 2019,Cycle five times a week 2020,Cycle five times a week 2021,Cycle five times a week 2022,Walk once a month 2016,Walk once a month 2017,Walk once a month 2018,Walk once a month 2019,Walk once a month 2020,Walk once a month 2021,Walk once a month 2022,Walk once a week 2016,Walk once a week 2017,Walk once a week 2018,Walk once a week 2019,Walk once a week 2020,Walk once a week 2021,Walk once a week 2022,Walk three times a week 2016,Walk three times a week 2017,Walk three times a week 2018,Walk three times a week 2019,Walk three times a week 2020,Walk three times a week 2021,Walk three times a week 2022,Walk five times a week 2016,Walk five times a week 2017,Walk five times a week 2018,Walk five times a week 2019,Walk five times a week 2020,Walk five times a week 2021,Walk five times a week 2022 +E14000530,15.2,18.4,15.1,15.5,13.8,11.0,11.7,10.9,14.2,9.9,12.2,10.3,8.2,8.9,0.0,0.0,0.4,0.0,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.8,77.6,74.9,77.8,69.5,75.1,80.5,63.3,65.8,65.8,66.1,57.9,66.7,73.3,37.2,39.0,40.9,40.4,33.7,41.4,40.5,28.4,28.7,27.6,31.1,24.0,32.2,28.6 +E14000531,11.7,8.6,8.4,8.1,8.6,8.0,4.5,7.7,5.6,0.0,0.0,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.9,69.6,74.5,70.9,63.1,65.0,63.6,59.8,59.6,65.0,62.2,53.1,55.0,56.7,34.1,36.0,36.6,38.0,29.2,30.1,32.4,25.2,27.9,28.0,27.3,19.2,20.2,25.6 +E14000532,18.4,17.0,18.4,15.1,22.2,16.8,14.6,12.0,13.2,11.1,10.1,14.8,10.2,10.9,6.6,4.6,5.3,5.3,7.5,4.2,4.5,0.0,0.0,0.0,0.0,5.5,0.0,0.0,79.5,79.0,79.4,82.3,77.6,76.8,78.5,65.5,69.5,69.7,72.9,70.5,69.9,69.6,41.9,42.3,43.5,43.3,43.6,40.0,44.1,29.1,30.6,29.8,30.7,28.8,26.9,32.0 +E14000533,13.7,11.5,15.8,14.7,14.6,8.1,9.3,10.2,7.5,12.4,9.3,9.3,0.0,5.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,78.6,82.4,80.0,82.6,81.5,72.7,66.5,67.8,75.8,71.1,74.9,73.3,64.9,37.4,37.7,47.3,40.0,43.1,47.1,37.0,24.2,29.6,35.4,28.6,33.5,34.2,27.5 +E14000534,21.1,22.6,19.8,19.0,18.7,15.0,13.8,15.1,14.2,13.0,13.3,12.8,11.1,10.0,0.8,5.3,4.2,5.1,3.8,0.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.0,81.4,81.3,85.0,78.5,83.9,79.6,71.4,72.8,74.1,76.1,70.6,77.8,71.8,45.5,45.0,48.4,49.9,45.4,48.2,45.4,32.8,32.6,35.1,37.6,34.4,35.4,31.6 +E14000535,13.0,15.1,13.7,15.3,14.0,9.6,10.4,10.1,10.9,7.6,11.2,9.1,7.2,1.7,1.4,0.0,0.0,1.2,1.1,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,76.3,78.5,76.1,77.2,74.1,76.4,76.7,67.0,68.1,66.4,67.1,67.9,68.0,63.0,37.3,43.4,40.5,39.7,43.0,43.1,37.8,26.8,32.4,30.8,29.5,28.4,27.6,27.9 +E14000536,22.6,19.0,15.6,17.0,19.1,16.5,13.8,15.3,14.5,10.4,10.8,15.2,13.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.7,82.2,78.4,78.6,77.9,76.7,77.8,63.9,70.3,66.6,70.0,68.3,70.1,68.1,39.7,45.5,40.8,42.6,39.8,42.4,37.5,28.7,34.5,31.3,29.9,31.5,30.7,29.0 +E14000537,9.6,10.4,8.9,11.1,8.9,6.8,7.9,6.7,7.5,6.2,7.9,6.9,3.4,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.6,71.1,71.8,75.5,69.1,70.4,69.0,66.0,63.3,62.3,66.5,60.6,60.9,60.5,35.5,38.2,34.4,37.8,35.0,33.7,34.1,27.4,28.7,25.8,27.6,25.9,24.9,23.6 +E14000538,16.8,20.6,15.7,17.6,16.6,11.7,12.9,10.9,13.4,9.8,11.4,11.5,8.5,8.1,4.6,5.2,5.0,4.9,5.1,0.0,0.0,2.5,2.2,3.1,2.0,2.6,0.0,0.0,79.8,83.4,79.9,82.8,81.6,81.9,79.1,70.3,72.4,70.4,73.3,71.7,76.0,71.6,41.9,42.8,43.5,45.1,43.1,43.5,42.8,30.6,31.9,28.4,33.4,31.6,31.6,29.7 +E14000539,18.6,17.8,19.3,17.7,17.2,17.0,16.3,12.8,13.5,10.1,11.4,13.2,11.5,10.2,7.2,6.0,0.0,0.0,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.2,79.6,82.1,83.5,69.7,78.8,80.7,67.4,66.6,70.6,73.9,63.0,71.9,70.3,37.5,36.5,43.7,43.0,39.4,45.2,42.8,26.5,26.1,32.8,30.0,27.2,31.9,30.9 +E14000540,9.9,9.6,10.8,0.0,8.5,9.1,8.8,7.1,6.8,6.7,0.0,0.0,0.0,6.5,2.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.7,70.8,70.5,64.6,64.0,66.1,63.6,61.0,62.2,63.9,56.3,56.9,60.3,56.6,32.5,37.1,40.4,30.2,33.8,30.1,34.0,23.9,25.7,32.6,22.7,24.8,21.2,23.5 +E14000541,6.3,13.8,10.9,9.6,9.9,10.1,0.0,0.0,8.6,8.1,0.0,7.2,5.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.3,72.3,75.4,78.2,67.0,73.6,75.6,61.4,63.2,66.2,68.3,61.0,65.3,67.8,34.7,36.0,38.8,39.9,33.4,41.2,38.4,26.8,28.0,29.6,28.2,26.4,29.5,28.1 +E14000542,6.3,13.8,10.9,9.6,9.9,10.1,0.0,0.0,8.6,8.1,0.0,7.2,5.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.3,72.3,75.4,78.2,67.0,73.6,75.6,61.4,63.2,66.2,68.3,61.0,65.3,67.8,34.7,36.0,38.8,39.9,33.4,41.2,38.4,26.8,28.0,29.6,28.2,26.4,29.5,28.1 +E14000543,15.8,16.5,15.1,16.5,11.0,10.9,10.8,10.0,11.3,10.0,11.8,7.8,9.2,7.8,0.0,0.0,0.0,0.0,1.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.5,78.8,76.8,82.4,77.3,75.9,75.2,65.0,70.1,67.5,74.5,68.6,69.5,70.0,39.2,43.6,39.8,45.4,43.6,44.1,45.8,28.0,32.2,28.5,33.6,33.8,35.3,32.8 +E14000544,13.3,12.7,10.5,9.7,13.6,8.0,11.3,6.7,8.8,7.9,7.0,10.6,0.0,6.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.6,78.0,74.2,77.7,69.4,80.6,74.7,65.3,70.6,64.2,73.3,64.2,72.0,65.8,33.2,43.5,40.5,43.2,41.2,40.8,36.6,25.4,34.9,31.9,30.1,31.0,26.3,24.8 +E14000545,14.8,16.0,18.0,15.6,22.3,12.4,14.5,9.0,12.8,12.6,12.4,15.5,7.2,10.3,0.0,0.0,0.0,7.3,9.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.1,79.7,83.5,79.3,79.0,82.4,84.2,68.2,72.7,69.7,69.5,72.6,75.1,77.6,48.7,44.9,39.4,40.2,49.1,48.1,49.7,36.3,31.3,27.9,31.2,34.5,37.6,35.3 +E14000546,15.8,12.9,16.8,14.9,14.3,13.3,9.5,10.0,9.0,10.4,10.5,9.4,10.8,7.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.2,72.8,73.8,77.9,75.0,75.6,78.1,67.1,64.8,65.4,69.0,65.5,65.9,68.2,41.7,36.7,39.5,41.8,35.2,40.1,43.1,27.0,25.7,31.6,32.2,25.3,28.0,30.5 +E14000547,19.2,19.6,22.3,18.6,17.8,15.1,18.8,11.1,13.6,15.3,12.1,12.6,9.2,13.2,4.7,6.8,7.9,6.7,6.8,0.0,0.0,0.0,3.9,0.0,0.0,0.0,0.0,0.0,81.4,82.9,84.8,84.1,79.7,83.1,82.1,72.1,73.2,79.0,77.1,72.2,77.8,74.3,46.4,48.7,55.1,51.8,51.9,47.4,47.0,30.4,37.8,41.5,39.5,39.3,35.6,39.0 +E14000548,10.0,9.7,11.4,11.3,10.0,7.2,10.8,7.0,5.8,0.0,7.0,5.9,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.1,74.2,71.7,74.3,69.4,73.3,70.9,63.8,64.2,59.8,66.0,61.1,61.2,63.3,36.1,36.4,33.5,36.4,38.0,34.0,38.1,26.7,25.2,25.4,25.8,29.0,24.1,26.7 +E14000549,26.3,22.9,25.8,29.7,32.6,27.5,28.0,19.8,17.2,22.5,23.8,26.5,20.7,20.7,10.4,7.6,11.1,13.6,14.5,9.7,11.4,0.0,0.0,6.5,9.7,0.0,0.0,7.8,85.0,87.3,87.0,89.5,79.6,86.6,86.1,80.1,82.9,81.3,85.8,74.0,79.2,82.2,53.1,54.0,60.1,61.8,53.1,57.2,61.1,40.4,40.7,49.3,48.6,38.9,40.9,48.3 +E14000550,16.8,20.6,15.7,17.6,16.6,11.7,12.9,10.9,13.4,9.8,11.4,11.5,8.5,8.1,4.6,5.2,5.0,4.9,5.1,0.0,0.0,2.5,2.2,3.1,2.0,2.6,0.0,0.0,79.8,83.4,79.9,82.8,81.6,81.9,79.1,70.3,72.4,70.4,73.3,71.7,76.0,71.6,41.9,42.8,43.5,45.1,43.1,43.5,42.8,30.6,31.9,28.4,33.4,31.6,31.6,29.7 +E14000551,12.9,11.6,15.0,9.1,14.8,10.7,13.2,9.9,6.8,10.9,0.0,11.9,0.0,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.2,85.4,82.4,85.2,78.0,84.7,81.6,74.6,78.5,75.1,79.3,70.5,75.8,76.1,48.2,52.7,50.5,54.2,46.8,50.3,44.7,36.6,40.3,38.3,41.8,31.7,35.6,30.5 +E14000552,22.2,24.2,19.8,18.5,16.7,14.8,14.7,15.7,16.9,11.7,13.2,12.0,8.9,11.4,0.0,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.9,75.9,73.6,76.5,72.3,81.7,75.6,64.1,65.8,64.1,69.2,64.1,76.1,67.4,34.6,41.5,44.0,45.3,40.9,45.6,41.2,23.0,30.2,32.9,29.7,30.1,33.3,30.5 +E14000553,26.3,26.9,29.9,25.2,28.1,27.4,28.8,21.8,21.0,25.8,21.9,21.0,19.5,24.5,15.7,13.0,19.1,13.8,11.2,8.8,13.9,12.3,8.1,12.9,10.2,8.0,5.7,8.2,82.4,81.6,81.4,82.7,82.2,83.4,76.5,75.7,75.1,72.9,77.1,76.1,76.2,72.5,55.1,53.2,48.9,54.1,50.0,48.6,49.4,41.3,42.9,38.7,41.9,38.8,36.5,38.3 +E14000554,14.7,14.2,15.9,13.6,10.9,10.4,9.3,9.7,11.1,10.1,9.7,8.4,7.1,5.4,4.1,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,78.5,76.7,83.2,74.8,82.3,77.9,69.1,69.1,66.5,74.4,67.7,74.5,71.1,43.3,44.2,44.5,48.3,41.4,47.0,40.8,31.6,35.1,35.0,34.8,29.3,37.5,32.8 +E14000555,23.8,24.7,20.7,22.1,21.6,18.9,22.1,16.9,19.1,14.3,16.3,18.1,13.2,17.4,10.8,12.5,8.5,9.0,10.4,5.4,10.3,9.1,7.5,5.4,0.0,7.6,0.0,0.0,81.2,82.4,83.1,84.0,74.1,76.3,80.8,76.2,76.7,75.4,77.0,68.6,66.7,75.3,53.0,53.3,53.5,50.4,42.3,47.4,49.0,40.1,39.3,38.2,39.6,31.9,33.5,36.2 +E14000556,17.7,18.6,17.6,17.3,19.0,11.8,15.9,14.1,12.6,11.0,12.4,13.9,8.5,10.5,0.0,5.5,0.0,6.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.7,75.8,77.3,82.0,75.8,76.1,78.5,69.3,68.2,67.6,76.4,70.6,67.4,70.4,44.5,45.5,42.5,51.3,45.4,41.5,45.8,35.4,32.1,30.7,37.3,33.1,32.3,34.6 +E14000557,13.7,15.9,11.9,12.7,11.8,8.7,12.9,7.2,10.1,7.2,9.1,8.3,0.0,9.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.9,78.3,78.9,81.8,75.7,78.6,81.7,69.0,68.1,69.5,72.0,68.9,72.5,74.3,38.9,39.7,45.1,47.3,46.1,43.6,46.6,28.3,28.9,36.0,33.3,35.1,33.7,33.7 +E14000558,10.3,13.5,14.9,12.6,6.8,10.2,8.6,7.3,8.9,8.0,9.2,4.8,6.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.9,79.9,80.5,78.8,67.5,72.8,75.4,70.2,70.9,73.8,70.1,57.5,64.5,67.9,43.9,41.9,49.7,44.7,36.7,37.9,42.1,34.4,30.1,40.0,32.2,25.9,24.5,29.1 +E14000559,17.3,16.2,10.9,15.1,13.8,9.3,9.6,11.2,12.2,7.4,12.6,7.3,0.0,5.8,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,82.0,75.7,79.4,78.0,78.0,77.3,69.9,72.5,68.4,70.4,72.1,71.1,70.9,43.5,45.2,41.7,38.5,44.5,41.8,42.0,34.0,33.2,29.4,27.5,34.4,31.2,30.9 +E14000560,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000561,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000562,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000563,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000564,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000565,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000566,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000567,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000568,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000569,13.8,13.5,10.8,10.0,9.6,10.1,8.0,10.7,10.3,8.6,7.0,6.6,0.0,6.2,0.0,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,80.6,77.1,77.8,75.2,74.8,71.3,65.6,71.3,69.1,71.9,65.8,66.8,64.8,39.2,46.6,46.1,39.8,41.8,39.3,39.2,31.6,34.7,29.0,32.3,31.2,30.6,30.8 +E14000570,10.1,8.4,7.9,9.6,5.0,7.1,0.0,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.2,67.0,70.1,69.6,64.3,67.0,65.1,57.2,60.1,60.1,61.8,55.5,57.6,59.4,35.7,32.9,33.9,35.1,30.8,35.6,31.5,24.2,22.8,25.5,23.8,17.9,24.7,21.3 +E14000571,15.5,18.2,17.0,16.3,17.2,14.1,13.2,10.9,13.8,13.3,11.7,12.2,10.0,9.4,5.0,9.0,6.6,6.9,6.6,4.5,4.6,3.3,5.0,4.4,4.3,3.8,2.6,3.0,73.7,75.3,76.8,77.1,70.3,74.5,72.8,64.3,66.4,69.3,69.1,64.7,66.8,65.3,38.7,42.1,42.0,44.5,40.3,40.6,42.5,28.0,32.5,33.5,34.7,30.3,29.2,31.2 +E14000572,16.9,12.7,12.1,16.6,12.8,8.6,9.0,13.0,7.7,7.4,11.4,8.7,0.5,7.5,7.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.0,74.7,68.5,72.6,73.7,69.9,72.2,62.4,64.9,61.5,63.4,66.4,63.4,66.5,38.2,40.0,36.3,38.9,42.0,34.1,42.5,31.5,29.5,29.7,29.4,30.8,25.5,31.2 +E14000573,16.8,12.7,11.8,16.7,12.8,8.5,8.8,13.2,7.5,7.1,11.4,8.7,0.0,7.5,7.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.9,74.7,68.0,72.3,73.6,69.8,72.0,62.4,64.7,60.8,63.1,66.4,63.3,66.3,38.2,39.9,35.9,38.9,42.1,33.7,42.3,31.8,29.6,29.4,29.3,30.9,25.2,31.1 +E14000574,11.3,10.8,9.5,8.9,15.8,9.1,7.0,7.3,6.8,7.4,5.4,10.9,5.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.5,77.2,82.8,73.8,75.6,75.9,74.8,67.4,66.2,75.5,67.0,68.5,65.8,68.5,32.3,41.7,47.4,38.8,42.8,39.4,40.1,23.7,32.8,37.4,26.8,31.6,30.9,29.2 +E14000575,14.7,14.2,15.9,13.6,10.9,10.4,9.3,9.7,11.1,10.1,9.7,8.4,7.1,5.4,4.1,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,78.5,76.7,83.2,74.8,82.3,77.9,69.1,69.1,66.5,74.4,67.7,74.5,71.1,43.3,44.2,44.5,48.3,41.4,47.0,40.8,31.6,35.1,35.0,34.8,29.3,37.5,32.8 +E14000576,19.5,24.4,22.8,20.4,20.5,15.6,13.4,15.0,16.5,15.1,15.2,13.8,11.6,10.7,0.0,9.8,7.2,8.6,8.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.3,79.1,79.2,84.5,76.7,81.0,76.5,71.3,72.1,71.7,76.1,68.9,75.0,69.1,46.9,45.3,48.2,49.5,43.8,41.6,44.7,34.1,31.0,34.6,38.2,32.6,30.0,28.0 +E14000577,10.5,9.1,8.9,10.8,10.6,8.2,9.4,7.0,0.0,4.0,1.8,6.8,0.0,1.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.9,74.9,71.7,80.4,74.0,73.8,71.5,64.1,63.3,63.5,69.0,65.6,61.9,65.8,36.9,34.2,37.1,39.3,36.7,37.0,41.2,25.6,23.7,26.6,27.5,25.0,29.9,31.9 +E14000578,10.1,8.5,10.6,7.3,7.0,8.5,5.0,6.7,6.2,7.6,5.3,5.6,6.8,3.5,4.4,0.0,3.6,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.1,71.3,73.9,71.3,62.7,70.4,71.4,59.8,62.0,65.1,61.8,54.1,59.5,61.3,33.4,34.9,37.0,33.1,32.9,34.8,33.7,24.1,25.2,26.0,23.7,23.4,23.2,22.9 +E14000579,10.1,8.5,10.6,7.3,7.0,8.5,5.0,6.7,6.2,7.6,5.3,5.6,6.8,3.5,4.4,0.0,3.6,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.1,71.3,73.9,71.3,62.7,70.4,71.4,59.8,62.0,65.1,61.8,54.1,59.5,61.3,33.4,34.9,37.0,33.1,32.9,34.8,33.7,24.1,25.2,26.0,23.7,23.4,23.2,22.9 +E14000580,10.2,8.7,10.8,7.6,7.3,8.5,5.2,6.8,6.4,7.7,5.5,5.8,6.7,3.6,4.1,0.0,3.6,0.2,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.2,71.5,73.9,71.7,63.1,70.5,71.6,59.8,62.0,65.1,62.0,54.6,59.7,61.6,33.5,35.0,36.9,33.4,33.2,34.8,34.0,24.2,25.5,26.1,23.9,23.7,23.3,23.2 +E14000581,18.0,14.6,16.7,16.6,17.3,16.9,13.6,12.2,10.4,12.5,12.2,12.4,10.9,9.1,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,77.0,75.0,77.8,76.1,78.1,72.1,64.5,68.0,66.5,69.3,69.9,70.0,65.9,38.5,43.5,40.1,45.1,41.6,41.3,40.1,27.4,33.8,29.5,28.9,29.9,32.4,29.9 +E14000582,22.4,21.8,18.3,21.3,18.5,10.3,14.5,15.5,16.4,13.1,16.3,16.0,8.0,11.3,7.9,5.5,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.5,72.8,69.6,76.7,68.5,69.2,70.3,68.4,64.3,59.7,66.1,62.2,62.2,63.3,42.1,41.8,38.3,40.3,38.5,34.7,38.9,31.7,31.5,27.6,28.7,26.6,26.2,27.3 +E14000583,14.9,17.4,11.5,12.1,15.0,10.1,11.5,9.2,12.1,8.8,8.7,9.8,6.9,8.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.7,77.3,73.9,82.4,76.0,75.8,75.5,68.8,65.1,65.8,70.9,70.9,68.5,71.5,35.7,36.5,37.1,42.5,44.1,43.0,43.6,23.5,24.9,28.4,32.9,32.5,34.1,30.8 +E14000584,20.9,21.1,17.4,18.6,17.4,20.7,17.9,15.2,14.1,12.9,12.6,14.5,13.8,13.0,8.2,6.3,6.5,6.9,0.0,0.0,5.4,5.1,4.0,3.0,4.5,0.0,0.0,0.0,77.9,83.7,82.0,82.7,74.5,82.1,80.0,68.0,72.8,71.8,73.4,67.9,73.4,73.2,39.0,44.4,45.6,46.5,44.5,43.8,51.6,26.5,30.3,32.5,35.3,36.4,32.2,36.8 +E14000585,20.9,21.1,17.4,18.6,17.4,20.7,17.9,15.2,14.1,12.9,12.6,14.5,13.8,13.0,8.2,6.3,6.5,6.9,0.0,0.0,5.4,5.1,4.0,3.0,4.5,0.0,0.0,0.0,77.9,83.7,82.0,82.7,74.5,82.1,80.0,68.0,72.8,71.8,73.4,67.9,73.4,73.2,39.0,44.4,45.6,46.5,44.5,43.8,51.6,26.5,30.3,32.5,35.3,36.4,32.2,36.8 +E14000586,18.1,18.6,19.9,18.9,22.2,12.2,13.7,11.7,11.5,14.7,12.6,16.7,7.4,9.6,2.1,0.0,5.2,0.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.3,80.3,83.6,83.9,82.3,79.4,79.7,70.6,70.3,73.3,72.8,73.4,72.1,68.7,41.4,43.4,43.5,44.1,48.5,45.0,39.9,30.0,29.8,29.9,30.3,37.0,32.8,27.5 +E14000587,13.1,10.4,11.6,10.0,10.2,10.2,8.0,7.3,4.7,7.5,6.5,7.4,7.5,5.9,3.4,0.0,0.0,0.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.5,75.0,74.3,75.4,69.7,70.6,66.5,59.9,61.4,64.7,65.7,60.8,61.8,56.6,37.7,36.5,40.3,35.5,36.1,37.4,33.7,28.7,25.7,27.3,26.5,28.3,26.1,24.0 +E14000588,13.1,10.4,11.6,10.0,10.2,10.2,8.0,7.3,4.7,7.5,6.5,7.4,7.5,5.9,3.4,0.0,0.0,0.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.5,75.0,74.3,75.4,69.7,70.6,66.5,59.9,61.4,64.7,65.7,60.8,61.8,56.6,37.7,36.5,40.3,35.5,36.1,37.4,33.7,28.7,25.7,27.3,26.5,28.3,26.1,24.0 +E14000589,13.1,10.4,11.6,10.0,10.2,10.2,8.0,7.3,4.7,7.5,6.5,7.4,7.5,5.9,3.4,0.0,0.0,0.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.5,75.0,74.3,75.4,69.7,70.6,66.5,59.9,61.4,64.7,65.7,60.8,61.8,56.6,37.7,36.5,40.3,35.5,36.1,37.4,33.7,28.7,25.7,27.3,26.5,28.3,26.1,24.0 +E14000590,16.5,19.9,15.1,13.2,18.5,12.9,10.7,9.2,13.7,8.1,7.6,12.6,7.5,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.8,83.5,82.4,82.4,74.7,79.2,78.0,66.0,70.2,73.2,71.0,66.7,72.9,67.8,39.2,44.7,49.1,42.2,42.3,46.9,41.5,26.6,33.2,36.9,29.8,31.4,36.9,32.7 +E14000591,11.2,9.8,16.0,13.9,12.6,12.2,11.7,7.2,7.4,12.9,9.0,9.9,8.3,10.5,0.0,0.0,7.1,0.0,6.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.3,72.1,75.2,73.3,68.5,70.3,65.1,62.7,66.2,69.8,66.9,63.2,63.5,59.3,39.4,41.0,44.9,42.7,34.1,35.2,36.9,25.9,30.6,35.6,32.4,23.7,25.1,23.8 +E14000592,11.2,9.8,16.0,13.9,12.6,12.2,11.7,7.2,7.4,12.9,9.0,9.9,8.3,10.5,0.0,0.0,7.1,0.0,6.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.3,72.1,75.2,73.3,68.5,70.3,65.1,62.7,66.2,69.8,66.9,63.2,63.5,59.3,39.4,41.0,44.9,42.7,34.1,35.2,36.9,25.9,30.6,35.6,32.4,23.7,25.1,23.8 +E14000593,13.3,13.1,19.3,15.9,15.7,16.0,13.8,9.5,10.3,14.9,10.8,10.0,11.5,7.7,0.0,5.5,8.5,4.0,0.0,5.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.4,72.5,77.9,75.0,66.0,70.5,73.1,64.0,66.5,70.7,69.2,58.7,63.5,64.2,39.2,39.4,44.2,43.0,35.1,32.9,38.4,26.9,28.1,36.1,31.4,27.6,24.8,28.3 +E14000594,16.7,13.8,11.7,14.8,14.5,11.5,11.4,10.7,9.2,8.0,9.5,10.0,6.9,2.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.6,79.9,79.6,81.5,80.3,80.2,77.3,72.2,71.5,70.7,75.4,72.6,73.6,69.0,42.1,45.9,42.9,46.9,43.9,45.9,45.4,31.7,34.9,33.3,34.1,32.9,33.8,33.2 +E14000595,21.4,24.2,20.3,19.8,18.0,16.7,17.5,15.3,18.6,15.0,12.5,12.9,11.5,12.6,3.5,6.7,6.3,2.8,2.7,0.0,0.0,0.0,4.1,0.0,1.6,0.0,0.0,0.0,74.8,81.4,77.5,80.5,77.8,77.8,78.9,66.7,73.1,68.2,71.0,69.2,67.1,71.2,40.5,46.7,42.0,45.2,46.0,40.2,45.1,28.4,34.6,30.3,33.4,34.4,30.1,33.0 +E14000596,22.2,15.8,14.9,15.1,19.1,8.2,10.7,16.6,10.3,10.2,9.2,14.5,6.8,8.2,7.3,0.9,0.0,1.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,75.5,73.6,74.9,74.0,68.6,68.3,65.7,64.4,65.1,67.3,66.4,60.6,61.4,35.7,38.0,43.0,38.9,39.5,38.8,40.7,26.5,26.9,32.2,29.7,29.1,28.7,27.5 +E14000597,28.2,22.5,25.6,22.2,21.1,16.8,23.5,21.2,17.1,19.3,16.0,15.7,11.3,18.5,13.2,6.7,10.5,6.2,7.0,0.0,9.4,9.6,0.0,0.0,0.0,0.0,0.0,0.0,85.8,87.5,86.3,88.2,80.3,82.9,79.5,78.3,79.5,78.4,83.2,74.4,76.3,73.1,53.1,52.0,52.3,59.4,56.5,53.1,54.3,37.6,42.0,39.3,43.6,46.7,36.5,40.5 +E14000598,28.7,22.6,25.9,22.5,21.3,16.9,23.9,21.5,17.2,19.6,16.2,16.0,11.3,18.8,13.7,6.9,10.6,6.4,7.2,0.0,9.7,9.9,0.0,0.0,0.0,0.0,0.0,0.0,86.0,87.7,86.5,88.3,80.2,83.0,79.2,78.5,79.8,78.7,83.5,74.3,76.4,72.8,53.3,52.2,52.5,59.7,56.7,53.3,54.2,37.7,42.2,39.4,43.7,46.9,36.5,40.5 +E14000599,25.8,28.8,26.3,26.2,24.8,21.8,21.8,19.7,20.6,21.3,20.7,18.0,16.0,17.0,11.9,11.4,12.4,11.6,9.1,9.2,9.6,7.9,7.3,8.7,7.1,5.1,4.8,5.7,81.1,83.3,81.5,84.8,79.4,83.0,80.8,72.1,75.3,73.9,77.2,72.4,76.3,74.7,47.4,48.4,48.8,50.9,44.1,49.0,48.1,33.8,34.3,35.6,38.4,31.5,36.7,35.6 +E14000600,25.8,28.8,26.3,26.2,24.8,21.8,21.8,19.7,20.6,21.3,20.7,18.0,16.0,17.0,11.9,11.4,12.4,11.6,9.1,9.2,9.6,7.9,7.3,8.7,7.1,5.1,4.8,5.7,81.1,83.3,81.5,84.8,79.4,83.0,80.8,72.1,75.3,73.9,77.2,72.4,76.3,74.7,47.4,48.4,48.8,50.9,44.1,49.0,48.1,33.8,34.3,35.6,38.4,31.5,36.7,35.6 +E14000601,25.8,28.8,26.3,26.2,24.8,21.8,21.8,19.7,20.6,21.3,20.7,18.0,16.0,17.0,11.9,11.4,12.4,11.6,9.1,9.2,9.6,7.9,7.3,8.7,7.1,5.1,4.8,5.7,81.1,83.3,81.5,84.8,79.4,83.0,80.8,72.1,75.3,73.9,77.2,72.4,76.3,74.7,47.4,48.4,48.8,50.9,44.1,49.0,48.1,33.8,34.3,35.6,38.4,31.5,36.7,35.6 +E14000602,25.8,28.8,26.3,26.2,24.8,21.8,21.8,19.7,20.6,21.3,20.7,18.0,16.0,17.0,11.9,11.4,12.4,11.6,9.1,9.2,9.6,7.9,7.3,8.7,7.1,5.1,4.8,5.7,81.1,83.3,81.5,84.8,79.4,83.0,80.8,72.1,75.3,73.9,77.2,72.4,76.3,74.7,47.4,48.4,48.8,50.9,44.1,49.0,48.1,33.8,34.3,35.6,38.4,31.5,36.7,35.6 +E14000603,21.2,21.8,20.0,18.5,20.6,16.1,13.1,12.8,13.5,11.7,12.2,16.0,11.2,8.5,4.8,1.1,5.7,6.6,6.2,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.4,81.2,78.3,77.2,80.4,78.4,78.8,68.2,72.3,71.7,69.2,73.9,71.6,70.3,37.8,44.0,43.3,40.0,47.8,46.9,42.1,25.8,29.9,31.0,29.6,39.4,35.6,28.1 +E14000604,12.9,11.6,15.0,9.1,14.8,10.7,13.2,9.9,6.8,10.9,0.0,11.9,0.0,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.2,85.4,82.4,85.2,78.0,84.7,81.6,74.6,78.5,75.1,79.3,70.5,75.8,76.1,48.2,52.7,50.5,54.2,46.8,50.3,44.7,36.6,40.3,38.3,41.8,31.7,35.6,30.5 +E14000605,10.1,13.2,14.1,11.2,12.4,8.8,9.4,7.5,8.9,10.0,7.9,10.2,5.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.7,77.5,75.7,84.2,76.7,81.2,81.4,67.1,64.4,65.8,74.3,68.9,72.6,70.8,42.1,39.7,37.2,42.5,42.7,44.4,42.5,31.2,27.8,27.6,29.4,29.2,33.9,31.5 +E14000606,19.4,15.0,12.5,12.1,16.8,11.5,10.6,13.9,8.8,8.3,7.8,11.2,1.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.3,77.2,75.1,79.4,69.5,76.2,75.2,65.6,68.1,62.1,69.6,61.8,66.5,66.4,38.2,39.0,36.7,40.8,37.4,38.7,38.9,26.3,28.0,26.7,29.1,25.8,26.9,26.3 +E14000607,20.5,21.0,21.0,21.0,18.0,11.7,12.4,16.1,14.8,14.7,14.5,14.7,9.5,10.2,8.6,0.0,0.0,7.7,6.6,0.0,0.0,6.2,0.0,0.0,0.0,0.0,0.0,0.0,77.2,82.1,80.5,82.5,81.3,84.3,80.0,68.8,73.7,71.9,74.5,73.9,75.1,71.6,41.9,45.9,42.6,43.3,45.4,51.0,45.8,28.8,33.0,33.4,29.9,31.9,37.3,31.9 +E14000608,16.8,20.6,15.7,17.6,16.6,11.7,12.9,10.9,13.4,9.8,11.4,11.5,8.5,8.1,4.6,5.2,5.0,4.9,5.1,0.0,0.0,2.5,2.2,3.1,2.0,2.6,0.0,0.0,79.8,83.4,79.9,82.8,81.6,81.9,79.1,70.3,72.4,70.4,73.3,71.7,76.0,71.6,41.9,42.8,43.5,45.1,43.1,43.5,42.8,30.6,31.9,28.4,33.4,31.6,31.6,29.7 +E14000609,8.1,11.0,7.3,11.0,10.4,0.0,6.9,0.0,8.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.6,77.1,71.1,73.8,68.4,73.3,71.1,64.0,65.3,60.1,64.1,60.0,64.3,63.8,32.4,40.9,32.2,37.5,34.8,39.0,36.1,24.3,29.6,23.7,28.1,23.5,28.7,24.7 +E14000610,19.9,13.5,24.0,12.9,13.7,8.5,12.7,16.5,9.6,17.9,8.5,10.4,0.0,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.9,73.9,77.6,75.2,75.8,73.3,75.8,64.3,64.4,67.8,66.8,66.9,64.6,69.8,40.5,37.5,42.9,39.1,42.6,39.3,39.9,30.5,24.7,32.2,28.2,31.2,28.7,28.4 +E14000611,12.5,12.5,10.6,13.8,9.7,7.5,8.9,10.0,8.2,8.6,8.9,7.2,4.1,4.7,3.8,0.0,4.5,3.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.4,76.2,76.1,79.1,76.9,76.5,75.5,64.8,66.4,66.9,67.7,67.2,68.9,67.9,38.4,40.9,37.8,39.0,41.7,41.0,40.7,25.9,28.9,28.1,28.4,31.8,28.6,28.0 +E14000612,12.5,12.5,10.6,13.8,9.7,7.5,8.9,10.0,8.2,8.6,8.9,7.2,4.1,4.7,3.8,0.0,4.5,3.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.4,76.2,76.1,79.1,76.9,76.5,75.5,64.8,66.4,66.9,67.7,67.2,68.9,67.9,38.4,40.9,37.8,39.0,41.7,41.0,40.7,25.9,28.9,28.1,28.4,31.8,28.6,28.0 +E14000613,22.4,18.9,20.6,18.8,21.6,12.2,13.2,16.6,14.1,13.2,13.8,15.2,8.7,7.7,7.6,2.1,2.6,2.2,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,79.4,79.3,83.8,79.5,75.8,81.4,64.9,69.5,67.1,73.3,70.3,68.5,73.2,39.7,39.7,41.8,44.6,48.3,45.9,44.7,29.2,29.7,30.8,34.3,38.1,33.1,33.0 +E14000614,10.6,11.6,11.1,13.6,13.5,9.1,7.0,0.0,8.2,7.3,8.7,8.6,5.8,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.6,73.4,79.7,79.2,75.5,74.5,73.2,62.5,63.7,71.1,70.7,65.9,66.4,64.1,38.9,40.4,45.4,43.1,40.9,38.8,36.6,26.5,30.1,35.3,27.0,29.8,28.4,28.2 +E14000615,26.3,26.9,29.9,25.2,28.1,27.4,28.8,21.8,21.0,25.8,21.9,21.0,19.5,24.5,15.7,13.0,19.1,13.8,11.2,8.8,13.9,12.3,8.1,12.9,10.2,8.0,5.7,8.2,82.4,81.6,81.4,82.7,82.2,83.4,76.5,75.7,75.1,72.9,77.1,76.1,76.2,72.5,55.1,53.2,48.9,54.1,50.0,48.6,49.4,41.3,42.9,38.7,41.9,38.8,36.5,38.3 +E14000616,16.5,13.8,12.8,14.7,12.0,12.8,15.3,9.1,9.7,9.5,9.6,8.6,9.8,9.1,2.9,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,79.7,78.5,83.8,78.0,86.5,81.7,71.8,69.9,71.0,76.4,70.8,75.4,74.0,46.6,41.4,46.3,49.6,46.5,51.2,48.4,36.2,30.4,34.8,36.1,32.5,36.9,39.6 +E14000617,63.2,60.7,63.7,60.3,51.2,49.9,55.9,56.9,54.2,57.5,55.2,44.8,42.6,49.8,40.2,36.9,40.9,40.3,28.7,22.6,28.9,31.6,28.9,30.6,29.4,19.9,15.4,19.6,87.9,83.8,88.7,85.9,80.7,87.9,77.7,77.5,75.8,82.4,78.2,72.5,81.2,73.0,50.0,50.4,52.9,52.9,48.3,50.4,47.5,36.1,36.2,39.7,39.1,32.8,35.5,32.8 +E14000618,9.9,8.1,14.2,11.8,12.7,8.9,9.5,7.4,6.0,10.1,7.3,9.5,0.0,6.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.0,69.2,74.2,75.2,73.1,74.6,74.5,65.4,60.4,59.9,60.2,64.3,68.6,65.6,36.8,36.8,33.4,33.2,38.9,39.3,35.7,28.4,27.9,22.3,23.0,26.4,33.1,24.7 +E14000619,19.0,18.0,16.8,22.4,19.9,13.9,12.1,14.3,13.4,13.7,16.4,12.5,9.4,8.3,0.0,5.5,6.7,9.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.1,87.1,86.0,80.8,83.1,80.8,82.0,70.0,79.9,75.9,74.6,77.4,74.7,75.0,43.7,55.7,54.2,47.9,44.2,46.2,53.3,30.7,44.7,39.4,35.6,32.1,36.2,39.3 +E14000620,16.3,19.0,15.3,16.8,14.9,12.1,10.6,11.6,14.2,9.6,11.3,8.7,8.2,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.9,80.2,77.5,78.6,74.6,80.7,76.7,67.4,71.9,69.0,67.7,66.6,71.8,71.4,40.5,45.4,45.0,39.1,45.2,46.7,45.0,30.2,32.8,37.4,28.4,34.4,34.2,33.0 +E14000621,16.0,8.4,10.8,12.2,14.8,7.9,13.5,8.8,0.0,0.0,7.4,11.4,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.5,80.1,76.7,80.8,73.5,73.6,75.4,70.5,67.0,68.9,73.3,65.6,67.4,69.1,44.1,45.4,40.4,46.3,39.9,40.4,39.4,32.9,35.1,31.4,35.7,30.6,33.1,26.5 +E14000622,18.3,12.4,15.3,12.5,13.8,11.4,9.4,12.7,8.6,10.4,8.2,10.5,8.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.5,74.2,76.8,81.4,76.8,76.0,76.7,61.4,64.3,68.7,73.4,68.9,66.5,70.0,41.5,36.9,43.8,45.8,38.6,41.8,45.5,33.6,28.0,33.3,30.5,29.1,31.6,34.0 +E14000623,20.2,18.9,17.4,18.7,17.5,14.4,13.1,12.6,12.2,11.0,10.2,11.4,9.0,3.2,0.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.8,84.3,82.3,85.4,81.5,82.4,83.7,71.3,72.9,74.3,76.1,74.7,74.0,76.7,45.8,46.9,46.2,49.2,47.8,49.1,48.4,34.5,36.0,34.3,34.0,36.6,35.0,36.8 +E14000624,24.2,19.6,21.0,19.0,19.1,14.2,15.9,17.6,14.8,13.9,14.3,14.8,10.6,10.5,6.5,3.9,3.9,3.7,5.8,0.0,0.0,1.5,1.2,1.3,1.4,0.0,0.0,0.0,78.9,80.0,79.5,81.7,78.6,76.6,82.5,68.0,70.4,68.3,72.7,70.1,69.6,72.8,41.9,41.7,43.4,44.8,48.3,44.7,44.2,30.1,30.0,32.0,33.4,35.8,32.6,32.5 +E14000625,21.5,22.3,15.6,17.6,17.4,13.5,11.9,13.9,14.8,11.7,13.7,11.6,9.1,8.2,6.8,0.0,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.5,75.1,76.6,83.2,77.5,83.9,78.8,75.7,67.3,67.5,74.8,70.1,76.4,69.2,40.9,36.3,39.6,45.9,48.1,49.1,46.6,31.6,25.8,29.3,35.5,37.4,35.6,33.4 +E14000626,12.9,13.0,12.4,12.9,15.8,7.8,10.9,8.0,8.5,5.5,7.9,11.3,5.7,4.7,0.0,0.0,0.0,0.0,4.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.2,79.6,80.3,80.6,73.5,80.1,76.3,69.0,69.9,69.1,70.6,64.9,71.2,66.7,41.2,43.8,41.7,43.6,41.3,39.0,37.4,31.2,30.3,31.1,30.8,31.0,27.6,26.9 +E14000627,14.8,17.4,15.1,15.0,15.1,12.2,13.8,11.1,11.5,10.2,9.2,11.7,8.6,8.1,5.3,5.4,5.0,4.8,4.0,3.6,3.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.0,81.6,78.8,77.9,74.7,80.7,78.0,73.5,72.1,68.7,71.0,66.6,72.3,70.6,42.5,43.9,41.6,43.1,43.0,41.2,42.4,29.4,32.3,32.1,29.7,33.4,30.6,31.2 +E14000628,25.1,17.7,20.2,14.0,19.6,12.0,17.7,16.4,13.6,14.4,10.3,16.0,8.0,11.2,7.4,7.0,7.3,0.0,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.9,79.2,76.0,84.4,82.6,80.6,80.3,62.7,72.4,66.4,76.2,75.0,71.2,73.6,41.1,39.4,39.3,47.3,48.2,38.4,44.9,31.3,26.4,26.9,34.2,30.3,26.5,29.8 +E14000629,29.5,24.2,22.3,24.5,25.3,26.0,25.6,21.3,17.8,18.2,15.6,20.0,20.9,18.7,12.4,11.0,11.2,9.0,11.3,10.3,9.4,6.4,5.2,4.9,3.4,4.5,0.0,5.2,84.0,81.9,81.1,87.1,82.6,84.2,82.7,77.4,76.8,74.3,81.5,76.9,79.2,78.5,56.3,55.1,52.3,59.9,53.6,57.1,55.9,46.7,42.2,42.6,47.7,39.4,43.5,45.7 +E14000630,26.1,21.5,18.7,23.1,20.3,15.9,17.5,19.6,17.1,13.5,19.1,13.9,11.1,10.7,11.6,9.3,8.0,11.5,6.5,0.0,0.0,8.6,7.0,5.6,8.9,0.0,0.0,0.0,86.2,84.2,83.3,83.3,80.1,83.5,81.8,74.7,75.4,74.4,72.0,73.7,78.2,74.4,44.8,51.0,47.1,44.7,46.4,50.8,46.8,34.0,37.5,38.2,33.5,29.6,37.0,26.8 +E14000631,16.8,20.6,15.7,17.6,16.6,11.7,12.9,10.9,13.4,9.8,11.4,11.5,8.5,8.1,4.6,5.2,5.0,4.9,5.1,0.0,0.0,2.5,2.2,3.1,2.0,2.6,0.0,0.0,79.8,83.4,79.9,82.8,81.6,81.9,79.1,70.3,72.4,70.4,73.3,71.7,76.0,71.6,41.9,42.8,43.5,45.1,43.1,43.5,42.8,30.6,31.9,28.4,33.4,31.6,31.6,29.7 +E14000632,14.7,11.4,10.5,11.5,17.8,8.5,9.6,10.5,8.1,5.8,7.1,10.9,0.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,78.0,85.1,77.6,81.0,77.1,77.9,66.2,71.4,72.8,68.0,75.1,68.9,65.8,40.5,44.3,39.6,41.3,48.5,40.3,39.7,29.9,30.6,29.5,29.4,29.4,31.2,28.6 +E14000633,30.3,27.2,23.4,23.8,19.2,19.9,19.2,20.4,15.6,18.1,19.0,14.7,14.8,13.1,7.5,6.1,7.6,9.9,0.0,0.0,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.7,86.0,82.4,84.7,78.4,86.1,80.2,73.2,73.7,75.6,76.1,71.7,79.4,73.1,48.0,46.5,50.3,50.0,45.9,53.8,45.7,34.8,35.6,41.2,35.2,34.8,41.6,36.1 +E14000634,17.8,17.9,14.6,18.0,21.7,17.6,16.5,13.6,13.3,11.1,12.8,14.5,9.7,12.1,7.0,6.5,4.9,6.0,6.9,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.3,82.8,77.1,78.9,69.8,74.9,74.3,71.0,77.4,71.7,73.0,62.3,69.3,68.0,49.3,51.9,49.1,49.6,39.4,37.3,44.1,37.1,41.5,36.1,37.3,29.1,23.6,32.8 +E14000635,19.7,20.4,16.0,17.2,17.1,18.9,15.1,15.5,13.1,10.1,11.9,11.1,10.8,11.5,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.6,80.6,81.4,85.7,81.3,80.7,79.2,72.5,72.0,69.9,75.7,74.9,73.6,72.5,43.3,44.1,44.9,46.4,47.8,48.0,46.4,32.2,34.1,31.9,37.5,37.1,36.0,35.8 +E14000636,10.7,11.7,7.2,12.7,10.2,10.9,11.4,7.6,8.0,0.0,9.5,7.1,7.5,7.8,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,75.6,80.3,76.4,72.9,76.2,74.5,69.2,67.3,71.5,69.3,66.7,68.3,66.3,41.7,46.5,44.6,46.1,42.0,44.3,44.6,30.1,32.9,30.1,33.5,29.4,31.1,32.2 +E14000637,19.3,17.8,15.7,14.9,17.7,10.1,10.4,13.2,13.1,10.7,11.1,13.8,6.6,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.3,79.2,77.0,79.4,81.6,78.9,72.3,69.6,71.0,65.6,69.8,72.0,70.7,66.3,40.6,40.3,38.7,43.6,45.2,42.1,40.6,29.4,27.0,28.0,33.2,33.2,29.9,31.2 +E14000638,20.9,20.9,17.5,18.8,17.6,20.0,17.6,15.1,13.9,13.0,12.8,14.4,13.5,12.8,8.1,6.2,6.4,6.8,0.0,0.0,5.0,5.0,3.9,3.1,4.4,0.0,0.0,0.0,78.0,83.5,82.0,82.7,75.1,82.1,80.2,68.1,72.7,71.9,73.5,68.5,73.7,73.3,39.1,44.5,45.8,46.6,44.6,44.1,51.3,26.7,30.4,32.8,35.3,36.3,32.5,36.8 +E14000639,19.8,22.7,18.4,23.8,18.4,23.2,18.3,14.0,16.4,11.9,17.6,13.6,16.0,14.5,5.0,8.1,6.6,9.2,8.4,5.5,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,82.2,84.1,88.3,73.8,79.9,82.5,72.4,77.6,79.3,82.4,68.0,74.4,78.8,50.9,52.8,60.8,59.6,46.0,48.0,55.3,41.4,43.0,50.4,48.0,34.0,34.0,43.4 +E14000640,19.3,17.5,16.8,14.2,15.4,12.6,12.1,11.5,12.6,13.0,8.7,10.3,9.7,8.9,4.3,5.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.1,79.4,81.5,79.1,75.2,80.5,75.1,68.3,73.2,74.6,69.0,67.1,74.0,66.6,42.1,44.4,41.6,43.2,41.7,48.3,41.3,31.0,32.9,30.4,27.6,33.0,32.7,30.5 +E14000641,13.8,13.5,10.8,10.0,9.6,10.1,8.0,10.7,10.3,8.6,7.0,6.6,0.0,6.2,0.0,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,80.6,77.1,77.8,75.2,74.8,71.3,65.6,71.3,69.1,71.9,65.8,66.8,64.8,39.2,46.6,46.1,39.8,41.8,39.3,39.2,31.6,34.7,29.0,32.3,31.2,30.6,30.8 +E14000642,12.9,19.4,13.6,14.1,13.3,11.7,9.7,10.2,13.7,9.4,10.5,8.5,6.1,7.0,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.2,77.4,76.1,79.0,74.6,74.3,75.2,63.5,68.3,65.1,69.8,67.2,65.7,67.1,39.2,44.4,38.4,41.5,44.9,38.0,39.0,26.5,33.5,26.8,30.7,33.9,29.4,28.7 +E14000643,17.0,21.0,16.8,16.9,14.2,12.0,13.2,11.8,15.0,12.5,12.0,10.3,9.6,10.6,7.0,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.2,72.1,71.2,72.4,69.6,71.3,71.7,66.5,64.0,64.4,64.3,62.0,64.9,64.8,37.0,36.7,38.9,38.8,41.0,41.6,42.5,27.1,26.5,28.0,29.8,30.3,32.6,29.0 +E14000644,19.1,19.6,22.8,22.7,19.3,14.5,13.4,14.9,14.1,17.9,17.0,15.8,11.1,10.0,10.0,0.0,0.0,0.0,7.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.5,78.3,79.9,85.9,75.9,79.6,77.6,70.4,70.9,69.8,76.9,70.4,73.1,70.2,43.3,43.4,39.4,49.1,47.4,44.9,43.0,32.7,32.2,29.2,35.4,38.2,34.0,29.3 +E14000645,10.0,9.7,11.4,11.3,10.0,7.2,10.8,7.0,5.8,0.0,7.0,5.9,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.1,74.2,71.7,74.3,69.4,73.3,70.9,63.8,64.2,59.8,66.0,61.1,61.2,63.3,36.1,36.4,33.5,36.4,38.0,34.0,38.1,26.7,25.2,25.4,25.8,29.0,24.1,26.7 +E14000646,17.1,19.8,16.9,12.3,14.0,12.5,13.1,9.7,15.1,10.2,8.7,9.8,9.5,10.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,83.4,80.4,77.1,78.8,85.3,80.1,66.4,73.1,69.4,66.0,69.0,81.0,70.7,34.1,43.4,44.5,41.6,42.1,45.9,44.0,23.9,32.0,32.5,29.3,32.7,33.5,32.3 +E14000647,15.0,16.2,12.8,10.8,17.4,14.2,10.2,10.7,9.9,9.8,7.7,13.6,10.3,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.3,79.0,77.2,80.8,76.3,78.7,77.2,68.8,70.8,68.6,72.0,70.6,71.4,71.1,42.4,44.0,42.0,45.7,46.3,44.5,44.3,31.1,34.1,31.5,34.2,36.0,34.0,33.6 +E14000648,15.0,13.6,11.5,12.1,12.7,9.7,8.8,9.2,9.2,7.5,8.0,8.1,6.2,6.0,3.6,4.7,3.0,2.8,2.8,2.1,0.0,2.0,2.7,1.9,0.0,0.0,0.0,0.0,77.9,75.8,73.4,80.0,72.5,75.7,73.5,68.6,63.2,64.8,70.8,64.7,67.3,67.3,39.6,37.2,39.3,45.6,38.1,41.7,42.0,28.5,27.9,29.7,34.1,29.1,30.6,31.7 +E14000649,11.7,15.0,9.5,14.8,12.0,10.1,10.2,7.7,10.6,5.4,10.0,9.7,6.8,7.4,4.2,6.2,0.0,0.0,0.0,0.0,0.0,0.0,3.6,0.0,0.0,0.0,0.0,0.0,74.0,70.1,75.3,70.8,70.8,71.7,72.3,64.8,61.2,65.0,63.1,64.7,63.2,64.9,37.0,38.3,42.2,34.9,39.3,35.9,35.5,27.1,28.4,34.3,25.9,31.5,24.6,27.2 +E14000650,11.7,15.0,9.5,14.8,12.0,10.1,10.2,7.7,10.6,5.4,10.0,9.7,6.8,7.4,4.2,6.2,0.0,0.0,0.0,0.0,0.0,0.0,3.6,0.0,0.0,0.0,0.0,0.0,74.0,70.1,75.3,70.8,70.8,71.7,72.3,64.8,61.2,65.0,63.1,64.7,63.2,64.9,37.0,38.3,42.2,34.9,39.3,35.9,35.5,27.1,28.4,34.3,25.9,31.5,24.6,27.2 +E14000651,11.7,15.0,9.5,14.8,12.0,10.1,10.2,7.7,10.6,5.4,10.0,9.7,6.8,7.4,4.2,6.2,0.0,0.0,0.0,0.0,0.0,0.0,3.6,0.0,0.0,0.0,0.0,0.0,74.0,70.1,75.3,70.8,70.8,71.7,72.3,64.8,61.2,65.0,63.1,64.7,63.2,64.9,37.0,38.3,42.2,34.9,39.3,35.9,35.5,27.1,28.4,34.3,25.9,31.5,24.6,27.2 +E14000652,18.1,13.8,15.3,15.0,17.3,12.2,14.0,15.0,8.5,11.7,10.0,13.3,8.4,10.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.4,78.5,78.2,72.5,76.0,73.8,69.6,69.2,69.3,64.9,62.2,68.4,65.0,61.4,38.6,42.5,35.5,38.4,40.2,37.0,37.0,25.5,29.2,27.4,30.3,29.2,28.2,28.5 +E14000653,17.1,19.8,16.9,12.3,14.0,12.5,13.1,9.7,15.1,10.2,8.7,9.8,9.5,10.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,83.4,80.4,77.1,78.8,85.3,80.1,66.4,73.1,69.4,66.0,69.0,81.0,70.7,34.1,43.4,44.5,41.6,42.1,45.9,44.0,23.9,32.0,32.5,29.3,32.7,33.5,32.3 +E14000654,10.3,9.9,12.8,6.6,8.5,10.0,6.1,7.9,7.6,8.0,0.0,5.9,8.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,74.9,77.0,73.5,69.5,71.3,74.2,67.1,68.9,69.6,67.4,62.1,63.5,69.1,48.2,42.1,47.6,42.2,39.7,34.0,42.0,37.9,32.0,36.4,28.5,27.3,24.1,29.4 +E14000655,10.3,9.9,12.8,6.6,8.5,10.0,6.1,7.9,7.6,8.0,0.0,5.9,8.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,74.9,77.0,73.5,69.5,71.3,74.2,67.1,68.9,69.6,67.4,62.1,63.5,69.1,48.2,42.1,47.6,42.2,39.7,34.0,42.0,37.9,32.0,36.4,28.5,27.3,24.1,29.4 +E14000656,10.3,9.9,12.8,6.6,8.5,10.0,6.1,7.9,7.6,8.0,0.0,5.9,8.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,74.9,77.0,73.5,69.5,71.3,74.2,67.1,68.9,69.6,67.4,62.1,63.5,69.1,48.2,42.1,47.6,42.2,39.7,34.0,42.0,37.9,32.0,36.4,28.5,27.3,24.1,29.4 +E14000657,9.8,10.5,8.8,3.1,8.6,8.1,8.4,4.1,7.0,4.0,0.0,0.0,0.0,3.8,1.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,72.3,73.8,71.7,65.9,69.7,66.8,65.1,64.2,67.7,63.5,58.7,62.4,59.9,36.6,38.6,44.5,35.6,36.1,33.9,35.7,26.7,26.9,34.9,26.8,26.8,24.0,25.2 +E14000658,16.1,12.8,12.3,12.9,13.1,10.3,10.6,10.8,8.1,7.9,9.4,9.2,5.7,8.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.1,79.2,77.2,85.2,76.5,71.4,73.9,69.3,68.0,69.2,76.7,68.2,64.9,67.1,46.5,43.0,48.6,45.4,41.1,40.8,43.4,35.5,31.9,36.8,36.1,32.8,29.7,31.8 +E14000659,11.7,16.0,9.8,9.9,10.9,12.6,7.8,7.6,11.3,0.4,6.9,6.7,9.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.8,79.4,80.2,81.9,73.8,77.8,77.1,61.9,70.6,70.2,71.6,66.6,68.4,68.2,37.7,41.8,44.7,41.3,41.4,37.4,41.7,28.0,32.1,31.7,28.4,30.3,28.3,28.7 +E14000660,15.2,15.0,13.2,15.0,14.2,8.7,9.4,10.7,9.4,10.2,10.2,9.4,5.7,6.3,4.1,4.3,5.0,4.5,3.3,1.5,0.0,0.1,0.1,3.4,2.9,2.0,0.0,0.0,76.7,76.4,75.5,77.3,74.0,72.0,74.8,67.1,64.4,65.1,67.7,67.2,64.6,67.5,39.5,38.1,38.1,39.2,43.4,39.2,43.7,29.0,28.7,28.1,28.2,31.2,27.4,33.7 +E14000661,10.7,12.4,10.9,13.0,10.8,8.2,10.1,7.8,8.8,7.4,9.0,8.4,4.8,6.0,1.4,1.4,1.3,1.3,1.1,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.3,73.9,74.0,77.1,71.3,73.6,71.0,67.8,65.7,63.9,68.5,62.7,63.9,62.6,37.1,40.0,35.9,40.2,37.7,35.3,36.2,27.9,29.8,27.1,28.7,28.5,26.1,25.4 +E14000662,18.1,12.2,17.4,13.9,15.2,9.9,10.9,11.8,8.1,11.7,10.1,11.9,7.3,7.9,6.6,3.5,0.0,0.0,0.0,0.0,0.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,73.6,75.3,75.0,76.7,71.4,75.6,73.1,64.1,66.0,66.4,66.8,64.1,66.4,66.0,35.7,37.2,37.7,38.5,47.2,39.4,38.9,27.3,25.5,28.8,27.0,36.1,29.5,25.3 +E14000663,18.1,12.2,17.4,13.9,15.2,9.9,10.9,11.8,8.1,11.7,10.1,11.9,7.3,7.9,6.6,3.5,0.0,0.0,0.0,0.0,0.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,73.6,75.3,75.0,76.7,71.4,75.6,73.1,64.1,66.0,66.4,66.8,64.1,66.4,66.0,35.7,37.2,37.7,38.5,47.2,39.4,38.9,27.3,25.5,28.8,27.0,36.1,29.5,25.3 +E14000664,14.1,18.8,17.2,16.2,15.2,11.5,12.6,9.5,11.8,11.9,11.1,8.9,5.2,8.0,0.0,4.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.2,80.7,80.0,83.4,82.3,83.0,77.1,66.3,69.6,72.6,71.5,76.0,75.4,68.4,38.4,44.4,43.5,42.0,47.2,47.1,40.5,25.7,34.0,31.8,31.4,35.9,36.2,30.7 +E14000665,19.7,20.4,16.0,17.2,17.1,18.9,15.1,15.5,13.1,10.1,11.9,11.1,10.8,11.5,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.6,80.6,81.4,85.7,81.3,80.7,79.2,72.5,72.0,69.9,75.7,74.9,73.6,72.5,43.3,44.1,44.9,46.4,47.8,48.0,46.4,32.2,34.1,31.9,37.5,37.1,36.0,35.8 +E14000666,10.0,9.7,11.4,11.3,10.0,7.2,10.8,7.0,5.8,0.0,7.0,5.9,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.1,74.2,71.7,74.3,69.4,73.3,70.9,63.8,64.2,59.8,66.0,61.1,61.2,63.3,36.1,36.4,33.5,36.4,38.0,34.0,38.1,26.7,25.2,25.4,25.8,29.0,24.1,26.7 +E14000667,18.8,14.3,15.8,13.6,14.3,9.4,8.9,13.6,9.9,11.6,9.0,10.3,6.8,6.4,0.0,0.0,0.0,4.4,4.8,2.3,2.9,0.0,0.0,0.0,2.7,3.1,0.9,1.7,72.9,76.6,75.8,76.7,70.0,71.1,72.9,60.6,68.3,66.9,66.3,61.7,63.0,64.3,40.8,41.6,41.0,40.3,37.3,36.5,38.4,32.0,29.6,33.2,28.8,27.9,25.8,28.5 +E14000668,18.8,14.3,15.8,13.6,14.3,9.4,8.9,13.6,9.9,11.6,9.0,10.3,6.8,6.4,0.0,0.0,0.0,4.4,4.8,2.3,2.9,0.0,0.0,0.0,2.7,3.1,0.9,1.7,72.9,76.6,75.8,76.7,70.0,71.1,72.9,60.6,68.3,66.9,66.3,61.7,63.0,64.3,40.8,41.6,41.0,40.3,37.3,36.5,38.4,32.0,29.6,33.2,28.8,27.9,25.8,28.5 +E14000669,18.8,14.3,15.8,13.6,14.3,9.4,8.9,13.6,9.9,11.6,9.0,10.3,6.8,6.4,0.0,0.0,0.0,4.4,4.8,2.3,2.9,0.0,0.0,0.0,2.7,3.1,0.9,1.7,72.9,76.6,75.8,76.7,70.0,71.1,72.9,60.6,68.3,66.9,66.3,61.7,63.0,64.3,40.8,41.6,41.0,40.3,37.3,36.5,38.4,32.0,29.6,33.2,28.8,27.9,25.8,28.5 +E14000670,21.2,15.7,17.6,18.0,15.2,12.8,13.8,14.5,10.5,10.5,10.3,10.0,8.4,9.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,78.6,82.9,82.0,73.7,79.6,83.4,71.7,70.4,73.6,73.3,67.1,71.5,78.6,47.5,44.5,49.3,48.2,42.2,47.6,50.9,36.9,32.8,38.2,33.2,32.3,36.9,39.7 +E14000671,8.1,8.7,9.9,7.6,7.7,0.0,5.9,5.3,4.9,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.4,72.2,72.6,70.4,70.8,73.6,70.4,61.9,62.6,63.0,60.2,60.2,64.6,60.7,33.4,36.0,35.5,35.6,33.7,40.2,33.8,23.5,26.1,25.2,24.2,24.9,30.4,25.5 +E14000672,8.1,8.7,9.9,7.6,7.7,0.0,5.9,5.3,4.9,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.4,72.2,72.6,70.4,70.8,73.6,70.4,61.9,62.6,63.0,60.2,60.2,64.6,60.7,33.4,36.0,35.5,35.6,33.7,40.2,33.8,23.5,26.1,25.2,24.2,24.9,30.4,25.5 +E14000673,24.4,25.3,24.9,25.3,32.2,25.9,27.7,19.1,19.8,20.9,20.4,24.6,19.1,22.3,12.2,12.3,14.7,12.8,11.4,8.9,13.2,8.5,7.4,10.1,8.5,7.0,2.6,3.7,82.5,82.9,83.3,84.0,82.8,83.9,79.1,76.8,77.2,76.3,78.2,76.6,76.9,74.5,53.6,54.3,52.3,54.7,50.1,53.0,51.6,41.4,43.0,40.1,41.7,38.3,38.2,39.9 +E14000674,16.4,18.0,16.3,13.9,16.0,15.1,13.9,10.6,11.4,11.8,11.1,12.9,9.5,10.2,7.3,5.1,6.4,4.2,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.5,78.4,82.5,75.8,67.7,71.7,77.3,69.5,69.4,74.3,68.4,60.5,65.3,70.1,46.8,39.6,52.4,44.6,35.6,40.1,46.2,36.9,30.3,42.5,35.5,26.2,29.8,35.3 +E14000675,16.4,18.0,16.3,13.9,16.0,15.1,13.9,10.6,11.4,11.8,11.1,12.9,9.5,10.2,7.3,5.1,6.4,4.2,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.5,78.4,82.5,75.8,67.7,71.7,77.3,69.5,69.4,74.3,68.4,60.5,65.3,70.1,46.8,39.6,52.4,44.6,35.6,40.1,46.2,36.9,30.3,42.5,35.5,26.2,29.8,35.3 +E14000676,16.4,18.0,16.3,13.9,16.0,15.1,13.9,10.6,11.4,11.8,11.1,12.9,9.5,10.2,7.3,5.1,6.4,4.2,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.5,78.4,82.5,75.8,67.7,71.7,77.3,69.5,69.4,74.3,68.4,60.5,65.3,70.1,46.8,39.6,52.4,44.6,35.6,40.1,46.2,36.9,30.3,42.5,35.5,26.2,29.8,35.3 +E14000677,13.8,13.5,10.8,10.0,9.6,10.1,8.0,10.7,10.3,8.6,7.0,6.6,0.0,6.2,0.0,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,80.6,77.1,77.8,75.2,74.8,71.3,65.6,71.3,69.1,71.9,65.8,66.8,64.8,39.2,46.6,46.1,39.8,41.8,39.3,39.2,31.6,34.7,29.0,32.3,31.2,30.6,30.8 +E14000678,24.4,23.4,22.1,22.8,18.4,16.0,20.6,18.8,19.2,16.6,16.0,13.6,11.0,12.9,8.1,5.5,4.0,3.2,2.2,2.0,2.7,0.0,3.8,2.3,0.0,0.0,0.0,0.0,80.3,85.6,86.5,85.5,82.5,82.6,78.7,71.3,77.1,76.6,81.6,76.3,74.9,73.1,46.2,49.2,53.7,51.0,49.8,48.6,49.6,34.1,38.0,42.0,40.4,36.7,38.0,35.6 +E14000679,12.3,15.9,14.4,17.8,11.8,13.9,14.3,8.4,9.2,10.0,11.2,8.9,9.2,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,77.4,72.0,78.0,62.5,68.4,72.6,68.3,69.6,63.7,70.6,55.1,63.0,65.3,43.3,44.2,40.1,47.6,29.1,39.5,42.8,33.5,33.9,33.6,39.1,19.5,26.9,34.5 +E14000680,19.7,22.4,21.0,15.3,18.3,17.9,18.0,12.6,16.9,13.8,9.4,15.4,11.0,13.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.3,79.8,79.9,82.9,80.8,87.8,82.6,69.5,68.6,67.8,71.9,71.7,83.1,75.8,42.9,47.0,40.2,42.5,42.6,48.6,48.2,32.8,33.2,26.4,33.9,33.0,35.8,32.3 +E14000681,13.9,14.1,14.2,10.6,14.9,9.9,10.1,8.4,8.4,7.9,8.0,11.1,1.6,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,81.4,79.4,79.7,78.3,83.2,84.1,68.6,73.7,70.1,72.3,69.1,72.9,76.7,38.6,43.1,42.8,45.4,43.0,45.7,48.2,26.7,29.6,31.7,33.9,32.7,31.8,33.9 +E14000682,21.0,19.7,18.6,21.4,23.7,17.8,17.5,15.3,13.3,13.0,16.0,16.9,12.7,12.3,7.9,0.0,6.4,8.0,8.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.2,84.5,83.9,81.8,79.3,79.6,81.4,71.1,75.1,75.3,74.5,73.9,71.9,75.1,43.9,47.6,47.9,47.6,43.5,45.8,49.0,33.6,35.9,35.0,35.8,31.1,33.0,38.4 +E14000683,17.7,18.6,17.6,17.3,19.0,11.8,15.9,14.1,12.6,11.0,12.4,13.9,8.5,10.5,0.0,5.5,0.0,6.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.7,75.8,77.3,82.0,75.8,76.1,78.5,69.3,68.2,67.6,76.4,70.6,67.4,70.4,44.5,45.5,42.5,51.3,45.4,41.5,45.8,35.4,32.1,30.7,37.3,33.1,32.3,34.6 +E14000684,10.9,16.9,12.4,13.3,14.3,11.6,16.5,7.3,12.6,9.1,9.6,10.5,7.7,14.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.7,79.0,75.8,83.0,77.1,78.1,80.9,66.4,71.2,67.5,76.4,71.0,72.6,72.9,43.6,47.9,43.9,46.3,48.4,49.3,47.9,34.6,35.2,31.3,33.4,33.8,37.2,35.9 +E14000685,17.7,18.2,18.4,21.2,16.2,14.8,13.5,14.3,12.8,12.9,15.1,9.7,12.5,10.1,0.0,0.0,0.0,9.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.6,83.1,79.4,82.0,78.7,80.8,79.6,67.0,72.3,66.0,69.1,69.2,71.9,70.8,40.2,44.5,39.6,41.1,41.2,42.1,40.8,27.5,31.1,27.1,28.6,29.4,31.8,30.3 +E14000686,18.4,18.4,16.8,13.5,14.9,12.5,12.5,10.8,13.5,11.9,8.7,10.1,9.6,9.4,2.6,3.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.1,80.9,81.1,78.3,76.6,82.3,77.0,67.5,73.1,72.6,67.8,67.8,76.7,68.2,39.0,44.0,42.8,42.6,41.9,47.4,42.3,28.3,32.6,31.2,28.2,32.9,33.0,31.2 +E14000687,10.8,9.0,9.7,10.3,10.2,10.8,11.6,7.5,6.0,7.6,0.0,7.5,5.9,9.4,3.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.4,75.6,70.5,78.8,68.8,73.2,73.9,66.8,66.3,65.3,70.2,64.2,64.3,64.4,41.1,40.4,43.3,41.4,39.6,37.5,38.9,30.2,29.0,34.8,28.4,25.0,29.3,27.5 +E14000688,19.3,17.5,16.8,14.2,15.4,12.6,12.1,11.5,12.6,13.0,8.7,10.3,9.7,8.9,4.3,5.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.1,79.4,81.5,79.1,75.2,80.5,75.1,68.3,73.2,74.6,69.0,67.1,74.0,66.6,42.1,44.4,41.6,43.2,41.7,48.3,41.3,31.0,32.9,30.4,27.6,33.0,32.7,30.5 +E14000689,13.7,14.0,13.6,14.6,12.1,9.6,9.6,8.5,8.9,10.3,10.3,8.8,6.0,6.0,4.0,4.3,5.1,5.1,3.8,2.9,2.4,2.8,2.5,2.6,2.8,1.6,0.0,0.0,75.2,78.2,79.9,82.0,74.8,78.9,76.3,65.5,69.1,71.6,74.1,67.0,71.1,67.0,40.1,43.1,46.9,45.5,44.0,42.9,41.2,29.5,31.3,35.1,33.3,30.7,30.0,29.8 +E14000690,13.1,17.0,14.8,16.6,13.7,12.6,13.1,8.3,11.7,9.2,11.7,10.8,9.3,10.0,3.8,7.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4,0.0,0.0,0.0,0.0,0.0,79.5,78.1,80.4,79.8,74.3,79.4,75.0,72.7,71.3,72.2,74.6,67.2,74.5,68.2,49.0,46.8,49.2,47.3,42.4,47.6,42.6,40.7,36.3,36.9,37.7,29.8,38.1,28.7 +E14000691,10.8,9.0,9.7,10.3,10.2,10.8,11.6,7.5,6.0,7.6,0.0,7.5,5.9,9.4,3.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.4,75.6,70.5,78.8,68.8,73.2,73.9,66.8,66.3,65.3,70.2,64.2,64.3,64.4,41.1,40.4,43.3,41.4,39.6,37.5,38.9,30.2,29.0,34.8,28.4,25.0,29.3,27.5 +E14000692,10.8,9.0,9.7,10.3,10.2,10.8,11.6,7.5,6.0,7.6,0.0,7.5,5.9,9.4,3.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.4,75.6,70.5,78.8,68.8,73.2,73.9,66.8,66.3,65.3,70.2,64.2,64.3,64.4,41.1,40.4,43.3,41.4,39.6,37.5,38.9,30.2,29.0,34.8,28.4,25.0,29.3,27.5 +E14000693,17.8,14.1,13.4,12.8,14.1,13.1,9.7,11.8,9.9,9.1,9.3,11.1,7.1,5.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.6,83.0,81.6,81.9,78.1,76.7,74.0,73.5,71.8,71.7,74.0,70.7,69.9,64.0,41.0,47.5,42.0,45.6,43.2,44.0,40.1,28.4,34.9,30.9,32.1,29.9,29.3,27.8 +E14000694,21.4,21.6,21.5,19.8,19.4,19.9,15.9,14.2,12.4,16.0,14.6,14.9,15.0,10.9,0.0,0.0,4.4,0.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.8,85.9,85.8,85.1,79.9,84.3,83.5,77.5,77.6,76.3,77.6,73.6,76.5,76.4,48.1,48.1,49.4,49.7,41.8,43.2,49.6,37.8,32.3,34.7,37.4,31.4,31.5,36.9 +E14000695,17.8,16.9,14.9,17.3,15.4,13.2,11.0,13.1,12.2,10.2,9.6,10.0,8.3,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.5,82.1,78.5,78.0,76.5,75.8,81.5,69.0,70.8,69.3,65.3,66.5,66.0,75.3,40.5,44.7,40.0,38.2,42.1,40.7,50.6,30.1,34.8,27.3,27.3,33.7,26.2,35.5 +E14000696,11.7,15.1,14.8,14.5,10.0,11.3,10.7,7.8,10.2,8.6,10.4,7.6,8.0,4.7,1.8,3.2,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,79.7,79.1,80.4,79.3,70.7,75.9,75.2,71.4,71.1,73.1,72.2,62.1,69.2,68.1,46.4,44.2,49.5,45.9,39.4,42.5,42.3,37.4,33.0,38.5,34.8,27.7,30.9,28.9 +E14000697,27.7,27.8,28.0,24.0,23.0,18.4,24.7,21.1,18.1,21.0,17.8,15.7,14.8,18.2,9.5,7.9,11.4,9.2,7.3,0.0,6.8,0.0,0.0,0.0,7.5,0.0,0.0,0.0,82.4,83.6,84.8,87.0,80.9,83.9,84.6,73.2,75.8,72.0,77.2,71.3,76.7,77.8,47.1,46.9,45.1,45.1,44.6,45.7,45.5,33.6,32.1,31.6,32.0,30.7,30.9,31.2 +E14000698,27.7,33.3,27.7,32.2,21.2,19.8,22.8,18.0,29.0,20.7,25.5,16.8,15.1,15.3,8.4,17.6,13.1,10.3,7.4,6.5,8.8,0.0,12.0,7.5,0.0,0.0,0.0,0.0,80.6,88.0,88.3,86.2,83.6,87.2,77.2,72.3,80.0,80.2,79.6,78.3,79.1,72.3,48.2,57.9,56.1,55.5,52.4,53.0,52.3,35.8,44.2,46.2,46.1,42.1,37.2,38.6 +E14000699,23.3,23.9,21.7,19.6,18.5,15.0,15.3,14.5,17.4,14.2,11.4,14.0,10.7,9.4,0.0,9.0,0.0,0.0,5.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.4,84.2,78.6,81.5,78.8,81.1,77.6,67.4,74.2,68.9,68.4,67.5,73.3,69.2,36.9,47.1,43.0,40.7,39.7,47.1,42.6,25.8,31.2,29.4,28.9,27.5,32.7,30.1 +E14000700,14.0,13.3,17.1,16.4,13.7,11.3,11.6,9.4,7.4,10.6,9.6,10.4,5.4,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,79.3,78.7,78.3,73.9,78.1,79.4,66.0,68.4,69.9,68.8,65.8,68.7,70.5,39.0,40.4,39.8,39.9,42.9,42.5,44.4,29.1,28.7,29.0,28.5,32.5,31.4,31.3 +E14000701,13.3,13.1,19.3,15.9,15.7,16.0,13.8,9.5,10.3,14.9,10.8,10.0,11.5,7.7,0.0,5.5,8.5,4.0,0.0,5.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.4,72.5,77.9,75.0,66.0,70.5,73.1,64.0,66.5,70.7,69.2,58.7,63.5,64.2,39.2,39.4,44.2,43.0,35.1,32.9,38.4,26.9,28.1,36.1,31.4,27.6,24.8,28.3 +E14000702,20.5,21.3,19.4,21.9,16.9,12.4,13.2,12.9,14.3,15.7,17.6,12.2,8.9,9.9,6.3,7.3,0.0,0.0,0.0,0.0,0.0,0.0,3.7,0.0,0.0,0.0,0.0,0.0,79.5,81.6,78.3,82.1,76.1,77.5,79.2,67.7,73.6,70.2,73.0,68.8,68.6,69.0,40.7,40.0,42.2,42.7,42.1,44.7,45.7,28.8,28.8,29.4,30.5,30.0,29.4,32.9 +E14000703,10.7,11.7,7.2,12.7,10.2,10.9,11.4,7.6,8.0,0.0,9.5,7.1,7.5,7.8,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,75.6,80.3,76.4,72.9,76.2,74.5,69.2,67.3,71.5,69.3,66.7,68.3,66.3,41.7,46.5,44.6,46.1,42.0,44.3,44.6,30.1,32.9,30.1,33.5,29.4,31.1,32.2 +E14000704,17.0,16.6,21.0,15.7,16.2,10.9,12.6,9.4,10.8,16.4,10.4,12.9,1.6,8.6,0.0,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.4,83.0,82.2,78.7,76.1,76.4,75.6,66.7,73.2,73.5,70.0,70.1,69.0,68.7,44.4,49.9,50.9,42.1,41.7,47.5,44.4,31.7,34.7,38.8,32.3,30.3,32.8,32.6 +E14000705,17.4,17.2,19.1,14.1,16.5,12.7,13.3,10.7,12.6,12.5,9.6,12.0,9.9,8.1,0.0,1.2,0.8,0.0,0.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.9,76.5,80.6,77.6,77.1,79.3,73.4,64.1,68.7,72.4,71.0,71.3,69.4,65.8,37.5,43.5,45.1,41.1,44.6,46.0,42.1,26.6,35.2,34.6,31.5,32.6,35.4,33.2 +E14000706,18.9,18.3,14.6,16.0,14.9,10.3,13.9,12.6,10.8,9.2,11.6,8.9,6.9,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.5,77.7,81.0,78.7,77.6,77.3,79.7,73.8,69.2,72.4,71.0,72.2,70.7,69.5,39.8,43.0,42.1,44.6,45.7,41.8,45.2,29.7,30.8,33.3,32.5,35.3,29.2,33.8 +E14000707,24.1,12.8,14.5,14.8,16.4,9.8,10.9,16.2,9.7,12.0,11.0,13.3,8.2,8.1,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.3,76.2,69.4,79.9,73.0,74.5,71.5,72.2,68.2,62.2,74.2,67.0,68.5,64.2,46.0,41.9,37.5,47.6,42.3,42.8,38.9,35.6,34.4,28.1,35.8,30.1,29.5,29.7 +E14000708,16.0,15.4,14.2,14.8,14.7,8.2,9.4,11.4,11.0,11.3,10.5,11.0,5.6,5.9,5.0,4.9,5.1,4.0,4.8,2.6,2.0,2.6,2.5,3.4,2.3,2.2,1.6,1.3,75.8,76.2,78.7,77.7,72.5,71.3,74.3,65.9,67.3,71.0,69.4,65.6,64.7,66.8,41.2,41.2,42.5,41.4,41.3,38.7,41.4,30.3,31.1,31.8,31.8,30.6,27.6,31.3 +E14000709,11.3,10.8,9.5,8.9,15.8,9.1,7.0,7.3,6.8,7.4,5.4,10.9,5.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.5,77.2,82.8,73.8,75.6,75.9,74.8,67.4,66.2,75.5,67.0,68.5,65.8,68.5,32.3,41.7,47.4,38.8,42.8,39.4,40.1,23.7,32.8,37.4,26.8,31.6,30.9,29.2 +E14000710,13.4,12.6,14.4,10.4,13.6,10.4,9.9,7.3,8.5,8.6,0.0,10.1,7.7,5.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.2,78.3,79.8,83.1,79.2,76.4,77.5,67.8,69.5,68.7,72.0,71.6,68.6,70.9,40.6,44.2,42.7,42.5,43.0,40.1,41.0,30.6,31.9,31.6,29.0,29.4,27.4,27.9 +E14000711,13.5,8.7,8.9,10.2,10.9,0.0,8.4,10.0,6.0,0.0,7.4,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.5,76.4,76.0,75.9,69.3,79.3,73.6,66.5,66.1,63.4,65.4,61.6,68.3,65.6,37.5,39.6,38.2,39.3,38.5,32.2,35.5,28.0,27.8,29.0,28.0,30.4,21.3,23.5 +E14000712,15.9,19.5,21.1,18.1,20.4,11.9,14.3,10.3,15.7,15.3,11.3,15.8,7.9,11.2,0.0,9.5,8.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.2,78.6,76.3,79.6,69.2,77.7,72.9,61.5,64.7,68.6,71.1,60.3,66.9,67.1,33.3,36.8,44.6,42.6,40.3,40.9,41.0,23.7,26.1,32.2,33.4,28.3,31.7,30.2 +E14000713,27.3,26.7,23.4,22.0,24.8,15.9,21.0,22.3,22.3,18.7,15.7,15.9,11.5,15.0,14.5,11.0,8.8,8.4,8.7,5.4,9.4,8.1,6.4,0.0,0.0,0.0,0.0,5.7,80.5,82.3,80.8,75.3,80.1,81.4,77.2,70.7,74.5,73.3,66.2,70.0,71.5,69.7,46.2,46.3,49.6,42.2,42.5,44.5,41.6,35.3,33.5,37.6,31.0,32.6,31.2,31.6 +E14000714,19.1,18.7,18.1,11.7,16.2,13.0,13.0,11.6,11.6,12.5,8.0,11.6,8.6,9.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.2,82.4,81.4,75.3,76.5,77.5,74.1,63.7,71.9,74.9,65.9,67.5,65.5,68.8,38.4,42.4,46.0,39.2,43.8,38.8,36.2,27.4,30.7,35.3,29.2,34.4,29.0,27.5 +E14000715,12.0,13.8,13.5,11.6,11.4,9.3,9.6,8.9,8.7,10.9,8.1,9.5,7.5,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.2,77.3,72.9,74.2,67.5,74.5,72.7,66.0,66.2,61.6,65.6,63.2,62.9,66.6,40.3,39.3,38.5,36.4,35.1,36.3,33.1,32.8,29.2,27.1,22.8,26.5,26.0,24.2 +E14000716,15.5,22.4,17.4,17.5,13.0,13.1,14.1,10.5,16.3,13.1,12.9,9.2,10.5,11.4,6.6,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.3,71.2,70.8,72.2,68.6,72.4,73.0,66.8,64.1,64.3,64.0,61.1,66.4,66.1,37.8,36.7,37.8,39.4,41.6,42.4,43.1,27.7,26.7,26.9,30.2,30.8,33.8,29.7 +E14000717,16.4,18.0,15.1,18.4,14.2,9.8,13.0,11.8,15.3,11.8,13.7,9.1,8.3,10.8,0.0,7.8,0.0,6.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.7,72.9,77.4,76.2,68.9,71.9,77.4,64.2,63.0,68.8,68.3,61.9,64.0,71.0,40.5,38.2,41.9,45.2,37.4,40.0,47.9,31.1,29.2,30.3,35.7,26.8,28.8,37.2 +E14000718,13.1,17.0,14.8,16.6,13.7,12.6,13.1,8.3,11.7,9.2,11.7,10.8,9.3,10.0,3.8,7.0,0.0,0.0,0.0,0.0,0.0,0.0,4.4,0.0,0.0,0.0,0.0,0.0,79.5,78.1,80.4,79.8,74.3,79.4,75.0,72.7,71.3,72.2,74.6,67.2,74.5,68.2,49.0,46.8,49.2,47.3,42.4,47.6,42.6,40.7,36.3,36.9,37.7,29.8,38.1,28.7 +E14000719,22.6,21.0,21.3,25.4,24.6,17.4,17.4,15.6,14.5,14.8,15.7,18.0,11.4,12.9,4.5,4.8,0.0,2.2,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.7,83.0,82.4,83.3,80.1,82.9,82.6,73.1,73.7,75.6,73.6,72.5,77.1,76.8,46.2,44.3,46.6,45.6,46.3,47.9,46.4,33.3,32.0,32.6,33.5,33.4,34.0,34.0 +E14000720,35.9,30.5,28.3,30.8,37.4,31.2,34.2,30.1,26.0,25.3,22.8,32.6,23.4,28.0,18.3,18.5,16.5,15.6,16.1,10.2,14.0,11.9,14.2,12.9,11.2,11.2,7.0,7.4,85.0,84.8,83.8,81.4,81.7,80.2,81.7,78.6,77.8,77.5,73.2,73.8,74.1,76.8,53.1,54.5,49.7,48.7,52.2,50.7,54.3,40.7,41.6,35.4,34.7,38.5,36.7,42.3 +E14000721,35.9,30.5,28.3,30.8,37.4,31.2,34.2,30.1,26.0,25.3,22.8,32.6,23.4,28.0,18.3,18.5,16.5,15.6,16.1,10.2,14.0,11.9,14.2,12.9,11.2,11.2,7.0,7.4,85.0,84.8,83.8,81.4,81.7,80.2,81.7,78.6,77.8,77.5,73.2,73.8,74.1,76.8,53.1,54.5,49.7,48.7,52.2,50.7,54.3,40.7,41.6,35.4,34.7,38.5,36.7,42.3 +E14000722,8.3,8.5,10.8,7.0,4.7,0.0,6.3,5.7,4.9,4.8,0.0,0.0,0.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.1,70.3,71.2,68.6,66.3,69.1,68.3,59.7,60.7,61.0,59.8,55.7,60.3,59.7,33.1,35.8,34.5,35.5,30.5,36.7,33.6,23.0,25.8,25.0,24.4,22.4,27.1,25.0 +E14000723,10.6,11.6,11.1,13.6,13.5,9.1,7.0,0.0,8.2,7.3,8.7,8.6,5.8,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.6,73.4,79.7,79.2,75.5,74.5,73.2,62.5,63.7,71.1,70.7,65.9,66.4,64.1,38.9,40.4,45.4,43.1,40.9,38.8,36.6,26.5,30.1,35.3,27.0,29.8,28.4,28.2 +E14000724,17.7,18.6,17.6,17.3,19.0,11.8,15.9,14.1,12.6,11.0,12.4,13.9,8.5,10.5,0.0,5.5,0.0,6.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.7,75.8,77.3,82.0,75.8,76.1,78.5,69.3,68.2,67.6,76.4,70.6,67.4,70.4,44.5,45.5,42.5,51.3,45.4,41.5,45.8,35.4,32.1,30.7,37.3,33.1,32.3,34.6 +E14000725,14.9,12.5,14.2,12.1,9.4,11.3,11.3,9.9,9.1,9.9,10.3,7.0,7.3,9.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.4,72.4,76.7,74.8,72.2,75.7,69.7,64.5,61.8,68.4,65.0,65.4,66.4,64.0,40.8,38.7,36.4,39.2,39.4,39.0,39.1,30.6,30.1,27.5,28.3,27.8,24.7,31.0 +E14000726,36.9,26.4,23.7,30.9,28.0,28.4,30.8,26.8,19.3,19.8,18.4,22.7,22.5,23.8,16.0,13.5,13.3,11.0,14.7,12.3,12.9,11.3,9.1,8.4,5.9,7.6,0.0,8.9,86.4,82.9,80.2,87.7,82.7,85.3,82.9,80.7,77.5,71.9,81.7,77.0,79.2,77.9,59.1,56.8,49.7,59.7,54.1,56.8,57.6,48.7,43.2,40.1,48.6,37.7,42.6,46.9 +E14000727,16.3,18.6,19.2,17.7,20.1,20.4,18.7,12.3,13.4,14.2,14.3,14.3,15.5,15.2,6.4,5.8,9.4,8.2,7.4,6.7,7.9,4.9,0.0,5.1,0.0,0.0,0.0,4.6,80.4,80.8,82.1,83.2,75.9,79.7,78.6,74.0,75.1,76.9,74.3,69.7,73.7,72.7,51.4,52.2,55.6,47.7,50.3,48.2,47.3,38.5,39.2,44.3,34.4,39.9,37.1,38.0 +E14000728,15.4,15.7,13.1,15.3,14.4,10.0,10.3,10.4,10.7,8.6,10.6,10.5,2.7,7.3,0.0,0.0,0.0,0.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,73.2,75.2,77.4,74.5,75.2,73.2,68.0,63.6,64.7,64.6,67.3,68.1,66.4,38.9,39.3,39.6,39.2,41.0,41.7,38.7,25.8,29.3,26.9,28.5,31.0,30.1,28.6 +E14000729,15.4,12.9,12.8,15.4,10.7,10.0,9.7,9.1,9.1,8.0,10.3,7.5,7.5,5.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.6,78.2,76.5,72.7,74.3,73.8,71.2,63.6,68.5,65.9,63.1,62.7,65.8,62.9,39.7,42.9,37.1,34.1,39.0,37.3,37.4,29.1,32.7,27.3,25.6,29.7,26.8,27.2 +E14000730,17.6,16.5,18.9,18.2,17.3,18.0,13.9,13.4,10.1,12.9,10.7,12.7,13.4,9.7,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.7,83.6,80.3,84.9,78.8,84.8,82.5,74.4,78.4,72.0,76.0,68.9,77.7,73.5,48.3,46.5,41.5,50.1,45.6,49.9,47.8,35.5,31.9,28.1,38.2,34.8,39.5,36.9 +E14000731,10.4,14.1,8.7,11.6,8.0,8.1,7.9,7.7,6.2,0.0,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.2,74.1,74.2,77.7,64.3,74.6,72.7,68.2,66.9,65.5,69.0,56.6,68.3,65.0,39.9,43.2,40.3,47.8,35.5,46.9,46.3,30.9,33.8,30.9,37.0,26.0,33.9,32.0 +E14000732,10.4,14.1,8.7,11.6,8.0,8.1,7.9,7.7,6.2,0.0,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.2,74.1,74.2,77.7,64.3,74.6,72.7,68.2,66.9,65.5,69.0,56.6,68.3,65.0,39.9,43.2,40.3,47.8,35.5,46.9,46.3,30.9,33.8,30.9,37.0,26.0,33.9,32.0 +E14000733,17.0,13.4,10.1,8.7,10.3,8.8,0.0,11.6,9.7,7.6,6.0,8.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,73.9,72.2,71.7,69.5,67.8,73.0,66.0,65.7,65.3,63.7,62.1,61.0,64.3,37.8,39.9,35.3,39.0,36.7,36.8,38.8,30.9,28.0,24.5,28.4,26.1,26.5,26.9 +E14000734,16.3,19.5,18.5,18.7,16.6,13.2,11.7,12.7,13.9,14.0,14.0,12.4,8.8,8.7,5.4,3.2,0.0,0.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.6,77.8,78.1,82.7,75.3,77.2,76.5,67.2,69.7,67.6,73.6,68.9,69.7,68.8,41.4,43.9,38.9,45.6,46.2,41.8,41.2,29.9,32.8,28.1,33.2,36.3,31.9,29.1 +E14000735,13.9,12.2,10.0,13.0,12.6,8.6,9.7,9.5,8.6,7.0,8.6,8.7,0.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.1,78.2,77.7,80.3,70.9,78.2,78.5,69.3,69.2,67.6,71.2,64.4,71.9,71.5,45.1,41.4,44.5,44.8,40.6,47.5,43.9,34.4,30.7,33.2,31.4,29.2,36.7,30.4 +E14000736,22.1,18.2,18.1,19.7,16.7,12.1,13.0,15.3,12.0,11.9,12.3,11.6,8.2,8.6,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.5,80.5,76.2,83.0,73.9,76.0,74.7,67.6,70.4,70.4,73.5,67.2,68.2,66.4,39.0,45.9,43.8,42.5,38.3,45.2,39.3,27.3,32.8,31.9,30.0,28.0,37.5,29.2 +E14000737,10.4,12.1,8.8,17.0,11.0,7.1,9.1,6.4,9.7,0.0,11.5,7.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.0,79.1,73.9,75.7,68.4,70.6,70.2,66.5,70.2,68.1,68.6,63.1,62.5,63.3,39.9,48.2,44.0,44.1,40.6,34.8,35.7,29.4,35.1,31.6,32.5,29.3,27.8,21.4 +E14000738,14.8,17.4,15.1,15.0,15.1,12.2,13.8,11.1,11.5,10.2,9.2,11.7,8.6,8.1,5.3,5.4,5.0,4.8,4.0,3.6,3.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.0,81.6,78.8,77.9,74.7,80.7,78.0,73.5,72.1,68.7,71.0,66.6,72.3,70.6,42.5,43.9,41.6,43.1,43.0,41.2,42.4,29.4,32.3,32.1,29.7,33.4,30.6,31.2 +E14000739,11.6,14.5,17.4,13.3,14.1,9.7,14.6,6.5,10.9,9.8,7.9,11.0,0.0,8.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.9,77.7,81.1,83.0,81.9,78.9,79.4,68.4,67.6,71.6,73.6,73.9,70.6,72.7,39.3,41.2,44.1,43.5,47.0,46.1,42.5,30.6,33.7,29.7,32.4,33.0,32.8,30.8 +E14000740,10.7,13.5,9.4,12.1,15.3,9.6,9.7,7.5,9.7,7.1,6.9,9.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,74.9,71.3,77.2,70.7,73.4,69.5,64.7,63.9,61.0,66.2,60.5,66.5,62.3,36.4,37.5,36.3,37.4,39.7,36.6,36.4,26.3,27.7,26.9,25.9,27.1,28.2,27.5 +E14000741,10.7,11.7,7.2,12.7,10.2,10.9,11.4,7.6,8.0,0.0,9.5,7.1,7.5,7.8,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,75.6,80.3,76.4,72.9,76.2,74.5,69.2,67.3,71.5,69.3,66.7,68.3,66.3,41.7,46.5,44.6,46.1,42.0,44.3,44.6,30.1,32.9,30.1,33.5,29.4,31.1,32.2 +E14000742,22.2,18.2,21.9,22.1,23.9,15.9,21.0,14.0,12.8,16.1,16.5,15.2,11.0,14.8,7.0,6.6,6.6,5.6,1.1,0.0,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.2,79.7,84.3,85.6,81.9,81.6,83.0,65.3,70.8,74.1,75.8,74.3,73.5,74.5,39.7,43.4,46.9,46.2,45.8,49.5,48.6,26.7,29.9,33.6,34.1,34.3,31.5,34.9 +E14000743,17.4,15.2,17.4,17.4,11.9,10.9,11.6,13.1,9.8,13.2,11.9,7.8,7.9,8.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.1,79.4,75.3,78.2,78.5,81.7,77.3,70.5,70.5,67.0,68.2,69.7,73.3,71.3,43.4,45.0,42.4,43.5,50.8,42.1,45.6,30.9,30.5,33.5,32.7,37.4,30.3,36.4 +E14000744,22.9,14.1,14.0,17.6,20.4,19.5,12.8,14.6,9.4,8.0,9.5,12.0,14.4,8.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.9,83.2,81.9,89.1,79.2,84.2,83.5,75.9,75.0,72.3,79.0,71.4,78.6,70.7,47.9,46.3,43.5,43.7,41.9,53.0,45.7,34.5,36.5,30.1,31.6,30.5,38.3,31.9 +E14000745,10.7,10.0,11.5,11.8,9.9,7.0,9.1,7.1,0.0,7.4,5.4,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.4,74.9,78.3,85.5,73.1,73.1,80.5,71.0,66.1,67.5,76.3,66.0,63.4,73.0,42.4,35.8,39.9,48.2,41.9,39.1,46.6,31.8,25.1,24.5,35.5,30.1,29.1,30.9 +E14000746,14.7,14.2,15.9,13.6,10.9,10.4,9.3,9.7,11.1,10.1,9.7,8.4,7.1,5.4,4.1,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,78.5,76.7,83.2,74.8,82.3,77.9,69.1,69.1,66.5,74.4,67.7,74.5,71.1,43.3,44.2,44.5,48.3,41.4,47.0,40.8,31.6,35.1,35.0,34.8,29.3,37.5,32.8 +E14000747,7.6,11.6,7.9,10.1,9.1,6.9,5.1,5.5,8.6,6.1,7.5,6.0,5.1,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.6,68.7,71.0,73.9,67.5,68.1,69.7,58.9,61.4,61.0,65.7,59.3,61.3,61.2,32.6,37.5,36.0,36.1,34.3,35.1,34.9,24.0,28.5,27.9,26.0,22.9,24.9,25.3 +E14000748,15.3,16.2,14.2,13.7,15.2,13.8,9.9,11.0,11.8,10.4,9.0,10.0,9.6,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.7,85.0,79.6,86.4,80.8,80.3,81.2,70.2,79.4,71.2,75.3,76.0,72.9,73.3,48.8,49.5,44.5,45.4,50.0,49.9,47.3,35.0,37.4,32.4,34.5,38.7,38.2,38.0 +E14000749,21.7,21.8,17.2,20.3,20.3,19.9,17.0,14.2,13.6,12.1,13.9,13.2,13.5,11.9,3.9,2.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.5,82.8,84.6,85.5,82.1,83.6,84.8,70.9,75.0,75.2,77.9,73.8,76.9,78.2,46.3,49.2,47.7,48.9,48.8,51.8,51.7,34.2,37.2,33.9,33.8,36.6,36.5,37.4 +E14000750,17.9,21.3,20.2,18.8,22.3,22.6,20.6,13.9,15.3,14.5,15.9,15.6,17.5,16.5,8.4,7.6,10.1,10.6,7.8,8.6,10.0,6.4,0.0,6.7,0.0,0.0,0.0,5.9,83.3,83.5,84.1,86.1,78.1,82.4,82.3,77.5,77.9,78.9,76.5,71.6,76.6,76.4,55.1,55.7,58.7,49.2,55.0,51.8,50.1,42.4,41.9,46.9,35.0,44.6,40.5,41.9 +E14000751,9.7,11.7,5.9,7.5,8.7,6.7,7.8,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,74.6,78.6,81.9,68.6,75.0,71.6,71.0,67.1,73.4,73.7,61.3,65.3,64.6,42.4,40.6,50.4,43.1,39.4,39.3,38.1,30.6,28.7,38.2,32.5,29.6,28.2,27.8 +E14000752,18.9,18.5,15.6,19.6,18.6,18.1,17.4,13.8,15.1,11.2,15.0,14.2,12.1,12.0,9.3,8.2,6.7,9.2,0.0,0.0,5.7,4.5,6.2,0.0,0.0,0.0,0.0,0.0,81.0,82.8,78.8,82.8,77.1,77.3,85.4,75.3,76.1,73.2,76.1,69.3,70.5,78.5,49.5,48.2,50.4,48.2,45.8,47.8,53.1,35.2,38.5,38.7,35.2,31.9,34.3,37.0 +E14000753,20.6,19.4,15.1,15.9,16.1,13.3,12.7,13.8,11.4,9.3,9.8,11.0,9.7,8.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.1,82.7,83.2,85.7,80.0,86.6,83.2,71.3,73.1,76.2,76.4,71.7,80.4,74.8,43.4,44.2,48.3,50.2,47.2,53.8,46.6,31.2,33.7,34.3,37.5,35.9,40.1,34.7 +E14000754,8.5,11.6,11.8,9.3,10.9,6.9,11.6,6.6,7.2,9.1,6.2,7.1,0.0,7.1,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.2,73.5,77.4,71.7,74.6,75.2,73.5,61.1,63.5,69.2,63.0,66.2,67.6,63.5,38.0,34.9,44.2,39.1,39.3,42.5,39.6,27.2,25.4,30.4,31.1,27.1,31.9,29.3 +E14000755,28.7,22.6,25.9,22.5,21.3,16.9,23.9,21.5,17.2,19.6,16.2,16.0,11.3,18.8,13.7,6.9,10.6,6.4,7.2,0.0,9.7,9.9,0.0,0.0,0.0,0.0,0.0,0.0,86.0,87.7,86.5,88.3,80.2,83.0,79.2,78.5,79.8,78.7,83.5,74.3,76.4,72.8,53.3,52.2,52.5,59.7,56.7,53.3,54.2,37.7,42.2,39.4,43.7,46.9,36.5,40.5 +E14000756,10.0,9.7,11.4,11.3,10.0,7.2,10.8,7.0,5.8,0.0,7.0,5.9,0.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.1,74.2,71.7,74.3,69.4,73.3,70.9,63.8,64.2,59.8,66.0,61.1,61.2,63.3,36.1,36.4,33.5,36.4,38.0,34.0,38.1,26.7,25.2,25.4,25.8,29.0,24.1,26.7 +E14000757,24.6,19.6,22.5,17.1,25.4,17.8,18.0,14.6,11.5,15.9,12.7,17.5,12.4,11.4,0.0,0.0,8.8,5.7,6.0,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.9,78.2,78.8,79.3,78.5,85.0,82.3,65.0,74.3,70.4,68.0,71.5,77.2,72.9,34.8,47.7,41.2,42.7,45.2,46.7,43.1,24.1,36.7,29.2,31.8,36.7,35.3,31.8 +E14000758,8.5,12.1,9.6,8.3,7.3,5.8,0.9,0.5,8.3,7.5,5.7,0.7,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.5,73.5,67.0,76.2,69.7,78.1,70.5,62.6,64.7,57.7,65.9,60.1,68.3,62.1,33.8,40.3,34.7,38.8,33.3,42.5,39.2,26.0,28.6,26.9,28.3,23.6,31.2,27.8 +E14000759,12.9,10.2,8.9,9.4,10.8,8.4,9.6,10.1,6.2,6.4,6.8,7.0,0.0,7.7,5.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.1,78.7,70.1,75.4,65.5,71.2,74.1,67.9,71.4,62.8,68.2,59.9,63.9,66.4,44.8,45.2,42.7,47.0,38.5,33.9,37.8,31.6,34.3,31.8,34.2,29.1,18.8,28.2 +E14000760,12.9,10.2,8.9,9.4,10.8,8.4,9.6,10.1,6.2,6.4,6.8,7.0,0.0,7.7,5.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.1,78.7,70.1,75.4,65.5,71.2,74.1,67.9,71.4,62.8,68.2,59.9,63.9,66.4,44.8,45.2,42.7,47.0,38.5,33.9,37.8,31.6,34.3,31.8,34.2,29.1,18.8,28.2 +E14000761,19.4,17.8,17.7,17.9,13.8,13.5,15.0,15.1,12.6,13.3,14.3,8.8,11.7,9.9,0.0,6.1,7.2,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.1,82.3,79.1,76.5,70.5,63.9,76.6,66.6,72.4,69.5,67.9,59.4,56.2,66.8,43.3,43.7,45.6,39.3,38.4,35.8,42.4,27.9,31.6,33.6,29.2,28.1,25.0,32.8 +E14000762,12.3,20.0,12.8,14.9,18.3,14.7,14.6,8.2,15.1,9.9,9.5,12.9,10.4,10.4,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.5,79.3,86.0,82.6,79.6,80.0,74.9,74.6,71.1,78.2,77.3,70.2,74.0,68.1,48.5,44.6,50.9,49.4,51.3,47.9,43.1,36.6,33.3,38.5,37.3,41.0,38.5,33.8 +E14000763,26.3,22.4,29.8,21.1,30.5,31.7,22.7,22.7,17.8,25.3,16.8,24.2,23.8,17.6,13.8,9.3,16.0,9.3,14.6,10.4,9.3,7.9,0.0,7.3,5.3,0.0,5.3,0.0,86.1,87.0,86.5,85.8,83.2,86.4,83.1,80.2,80.4,80.5,78.4,75.2,80.3,76.5,55.7,53.9,57.3,57.9,49.7,57.8,52.8,44.1,40.1,41.0,45.7,37.1,45.5,39.4 +E14000764,26.3,22.4,29.8,21.1,30.5,31.7,22.7,22.7,17.8,25.3,16.8,24.2,23.8,17.6,13.8,9.3,16.0,9.3,14.6,10.4,9.3,7.9,0.0,7.3,5.3,0.0,5.3,0.0,86.1,87.0,86.5,85.8,83.2,86.4,83.1,80.2,80.4,80.5,78.4,75.2,80.3,76.5,55.7,53.9,57.3,57.9,49.7,57.8,52.8,44.1,40.1,41.0,45.7,37.1,45.5,39.4 +E14000765,11.1,11.7,11.3,9.5,9.8,10.5,7.8,9.0,7.2,9.3,6.5,7.6,7.7,5.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.1,72.4,77.4,78.5,75.7,72.9,70.2,65.9,64.3,68.9,69.8,67.4,64.3,62.9,40.6,38.7,38.5,42.4,41.1,39.5,39.6,30.3,29.2,27.8,33.8,33.3,26.2,29.8 +E14000766,13.1,10.4,11.6,10.0,10.2,10.2,8.0,7.3,4.7,7.5,6.5,7.4,7.5,5.9,3.4,0.0,0.0,0.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.5,75.0,74.3,75.4,69.7,70.6,66.5,59.9,61.4,64.7,65.7,60.8,61.8,56.6,37.7,36.5,40.3,35.5,36.1,37.4,33.7,28.7,25.7,27.3,26.5,28.3,26.1,24.0 +E14000767,18.8,16.3,19.1,18.4,18.6,15.5,14.0,12.4,11.2,13.2,13.3,13.6,10.8,9.8,5.7,0.0,0.0,3.9,1.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.6,79.9,79.0,77.8,80.1,82.7,82.7,72.3,71.0,67.8,68.1,71.2,76.5,75.9,42.7,44.0,41.8,43.4,50.5,47.5,48.9,27.3,31.5,29.0,31.6,36.3,35.4,35.5 +E14000768,19.7,21.2,20.4,15.7,21.5,22.6,18.4,14.2,15.7,16.0,11.9,16.2,18.7,11.6,7.8,7.7,8.4,6.4,6.6,7.5,4.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.9,80.4,82.3,86.3,82.6,82.6,82.6,73.1,76.0,77.8,81.3,76.9,79.2,79.4,52.7,52.9,56.0,60.3,53.0,57.5,53.5,44.1,41.0,46.1,46.5,41.7,44.8,44.1 +E14000769,15.0,13.6,11.5,12.1,12.7,9.7,8.8,9.2,9.2,7.5,8.0,8.1,6.2,6.0,3.6,4.7,3.0,2.8,2.8,2.1,0.0,2.0,2.7,1.9,0.0,0.0,0.0,0.0,77.9,75.8,73.4,80.0,72.5,75.7,73.5,68.6,63.2,64.8,70.8,64.7,67.3,67.3,39.6,37.2,39.3,45.6,38.1,41.7,42.0,28.5,27.9,29.7,34.1,29.1,30.6,31.7 +E14000770,20.9,23.8,23.8,24.5,23.0,20.2,23.2,14.5,17.4,19.3,16.3,14.9,10.9,16.5,8.7,7.1,9.1,10.3,6.9,0.0,0.0,6.5,0.0,0.0,0.0,0.0,0.0,0.0,82.0,83.4,89.4,85.1,80.0,82.0,85.6,75.1,76.6,82.5,76.5,73.2,77.5,77.4,50.2,49.7,53.1,49.2,50.6,49.9,54.2,38.2,37.0,40.5,37.0,36.8,33.9,38.6 +E14000771,19.2,22.2,15.3,16.5,14.2,16.5,15.6,16.1,17.2,13.3,13.7,10.0,11.6,12.2,10.0,10.9,0.0,7.8,7.6,0.0,7.4,6.9,0.0,0.0,0.0,0.0,0.0,0.0,76.9,72.7,75.7,75.4,68.3,72.8,70.4,67.8,67.1,66.0,69.1,60.3,65.1,60.8,43.3,41.6,39.1,41.7,39.8,38.9,39.8,31.6,32.9,29.5,30.5,28.2,27.3,30.5 +E14000772,19.2,22.2,15.3,16.5,14.2,16.5,15.6,16.1,17.2,13.3,13.7,10.0,11.6,12.2,10.0,10.9,0.0,7.8,7.6,0.0,7.4,6.9,0.0,0.0,0.0,0.0,0.0,0.0,76.9,72.7,75.7,75.4,68.3,72.8,70.4,67.8,67.1,66.0,69.1,60.3,65.1,60.8,43.3,41.6,39.1,41.7,39.8,38.9,39.8,31.6,32.9,29.5,30.5,28.2,27.3,30.5 +E14000773,19.2,22.2,15.3,16.5,14.3,16.5,15.6,16.1,17.2,13.3,13.7,10.0,11.6,12.2,9.9,10.9,0.0,7.7,7.6,0.0,7.4,6.8,0.0,0.0,0.0,0.0,0.0,0.0,76.9,72.7,75.7,75.5,68.3,72.8,70.5,67.8,67.1,66.1,69.2,60.5,65.2,60.9,43.3,41.6,39.2,41.8,39.9,39.0,39.9,31.6,32.9,29.5,30.6,28.3,27.4,30.5 +E14000774,20.5,21.3,19.4,21.9,16.9,12.4,13.2,12.9,14.3,15.7,17.6,12.2,8.9,9.9,6.3,7.3,0.0,0.0,0.0,0.0,0.0,0.0,3.7,0.0,0.0,0.0,0.0,0.0,79.5,81.6,78.3,82.1,76.1,77.5,79.2,67.7,73.6,70.2,73.0,68.8,68.6,69.0,40.7,40.0,42.2,42.7,42.1,44.7,45.7,28.8,28.8,29.4,30.5,30.0,29.4,32.9 +E14000775,13.8,11.0,13.5,11.2,12.6,0.0,7.7,8.4,7.4,11.3,8.7,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.9,74.1,77.7,73.5,69.7,62.8,68.8,58.1,62.9,68.7,65.2,62.6,52.9,60.9,34.1,36.3,40.3,34.4,38.6,28.9,33.7,25.0,27.0,30.5,28.0,30.7,20.2,24.0 +E14000776,23.4,16.5,17.2,16.9,15.8,11.3,14.6,16.8,11.6,12.9,13.2,10.9,9.0,10.9,7.5,0.0,5.1,0.0,3.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,80.9,80.2,82.2,78.3,78.1,80.5,68.1,75.4,72.9,75.0,69.8,70.3,73.4,42.7,48.9,46.6,42.6,43.3,43.9,49.6,32.1,35.9,34.8,31.0,34.0,31.5,36.4 +E14000777,13.7,14.0,13.6,14.6,12.1,9.6,9.6,8.5,8.9,10.3,10.3,8.8,6.0,6.0,4.0,4.3,5.1,5.1,3.8,2.9,2.4,2.8,2.5,2.6,2.8,1.6,0.0,0.0,75.2,78.2,79.9,82.0,74.8,78.9,76.3,65.5,69.1,71.6,74.1,67.0,71.1,67.0,40.1,43.1,46.9,45.5,44.0,42.9,41.2,29.5,31.3,35.1,33.3,30.7,30.0,29.8 +E14000778,13.7,14.0,13.6,14.6,12.1,9.6,9.6,8.5,8.9,10.3,10.3,8.8,6.0,6.0,4.0,4.3,5.1,5.1,3.8,2.9,2.4,2.8,2.5,2.6,2.8,1.6,0.0,0.0,75.2,78.2,79.9,82.0,74.8,78.9,76.3,65.5,69.1,71.6,74.1,67.0,71.1,67.0,40.1,43.1,46.9,45.5,44.0,42.9,41.2,29.5,31.3,35.1,33.3,30.7,30.0,29.8 +E14000779,13.7,14.0,13.6,14.6,12.1,9.6,9.6,8.5,8.9,10.3,10.3,8.8,6.0,6.0,4.0,4.3,5.1,5.1,3.8,2.9,2.4,2.8,2.5,2.6,2.8,1.6,0.0,0.0,75.2,78.2,79.9,82.0,74.8,78.9,76.3,65.5,69.1,71.6,74.1,67.0,71.1,67.0,40.1,43.1,46.9,45.5,44.0,42.9,41.2,29.5,31.3,35.1,33.3,30.7,30.0,29.8 +E14000780,13.7,14.0,13.6,14.6,12.1,9.6,9.6,8.5,8.9,10.3,10.3,8.8,6.0,6.0,4.0,4.3,5.1,5.1,3.8,2.9,2.4,2.8,2.5,2.6,2.8,1.6,0.0,0.0,75.2,78.2,79.9,82.0,74.8,78.9,76.3,65.5,69.1,71.6,74.1,67.0,71.1,67.0,40.1,43.1,46.9,45.5,44.0,42.9,41.2,29.5,31.3,35.1,33.3,30.7,30.0,29.8 +E14000781,13.7,14.0,13.6,14.6,12.1,9.6,9.6,8.5,8.9,10.3,10.3,8.8,6.0,6.0,4.0,4.3,5.1,5.1,3.8,2.9,2.4,2.8,2.5,2.6,2.8,1.6,0.0,0.0,75.2,78.2,79.9,82.0,74.8,78.9,76.3,65.5,69.1,71.6,74.1,67.0,71.1,67.0,40.1,43.1,46.9,45.5,44.0,42.9,41.2,29.5,31.3,35.1,33.3,30.7,30.0,29.8 +E14000782,13.9,15.7,16.7,15.0,13.9,10.9,7.1,10.4,12.0,12.5,11.3,10.0,8.0,4.7,5.2,6.3,9.2,0.0,0.0,0.0,0.0,4.0,5.4,0.0,0.0,0.0,0.0,0.0,70.3,69.3,71.6,74.8,65.5,65.2,65.1,62.5,61.2,63.7,68.3,56.6,57.4,60.9,36.8,37.6,37.9,43.1,35.5,34.4,36.9,28.3,29.7,28.1,32.8,23.8,23.3,27.1 +E14000783,13.9,15.7,16.7,15.0,13.9,10.9,7.1,10.4,12.0,12.5,11.3,10.0,8.0,4.7,5.2,6.3,9.2,0.0,0.0,0.0,0.0,4.0,5.4,0.0,0.0,0.0,0.0,0.0,70.3,69.3,71.6,74.8,65.5,65.2,65.1,62.5,61.2,63.7,68.3,56.6,57.4,60.9,36.8,37.6,37.9,43.1,35.5,34.4,36.9,28.3,29.7,28.1,32.8,23.8,23.3,27.1 +E14000784,13.9,15.7,16.7,15.0,13.9,10.9,7.1,10.4,12.0,12.5,11.3,10.0,8.0,4.7,5.2,6.3,9.2,0.0,0.0,0.0,0.0,4.0,5.4,0.0,0.0,0.0,0.0,0.0,70.3,69.3,71.6,74.8,65.5,65.2,65.1,62.5,61.2,63.7,68.3,56.6,57.4,60.9,36.8,37.6,37.9,43.1,35.5,34.4,36.9,28.3,29.7,28.1,32.8,23.8,23.3,27.1 +E14000785,11.4,12.0,13.5,12.6,12.5,7.7,8.2,7.5,8.9,9.2,9.1,9.1,5.1,5.9,0.0,0.0,4.5,3.8,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.8,74.3,72.8,77.2,70.5,72.6,75.2,60.6,62.5,64.2,65.6,63.1,63.8,66.7,34.3,38.0,36.4,38.9,38.3,34.9,39.1,26.1,29.5,27.5,27.5,27.7,24.9,26.6 +E14000786,14.6,17.6,16.4,14.1,14.0,13.8,12.8,9.9,12.6,10.9,10.4,8.2,8.8,8.5,0.0,0.0,5.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.3,78.8,79.5,84.2,83.0,80.7,87.6,71.4,70.4,71.2,75.2,75.3,74.9,80.8,46.8,47.1,45.6,50.8,49.5,48.1,55.0,35.6,35.3,34.8,37.5,39.9,35.6,40.8 +E14000787,18.5,15.9,19.7,20.1,20.3,18.0,15.1,13.1,12.7,14.5,15.1,15.4,13.9,10.3,9.0,8.0,6.5,9.5,8.9,7.6,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.4,77.8,83.8,85.6,78.5,81.8,81.4,73.5,70.4,74.5,80.8,70.6,75.9,75.9,53.3,47.3,51.7,58.6,43.9,49.2,52.0,39.9,36.9,37.5,45.9,32.0,37.3,37.9 +E14000788,17.4,15.1,18.8,18.1,19.3,16.6,14.7,12.5,11.6,13.8,12.3,14.8,11.3,9.9,7.3,6.5,5.3,7.7,7.2,6.1,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.1,79.2,83.5,85.6,78.4,82.4,81.5,73.7,71.9,74.6,80.5,70.6,75.9,75.9,52.3,48.3,51.5,57.8,44.5,49.4,50.6,39.3,37.6,37.7,45.2,32.0,36.9,36.5 +E14000789,18.5,15.9,19.7,20.1,20.3,18.0,15.1,13.1,12.7,14.5,15.1,15.4,13.9,10.3,9.0,8.0,6.5,9.5,8.9,7.6,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.4,77.8,83.8,85.6,78.5,81.8,81.4,73.5,70.4,74.5,80.8,70.6,75.9,75.9,53.3,47.3,51.7,58.6,43.9,49.2,52.0,39.9,36.9,37.5,45.9,32.0,37.3,37.9 +E14000790,16.6,16.0,13.1,15.8,18.9,15.3,14.7,12.7,11.5,9.9,11.3,12.6,7.2,11.0,6.7,4.8,3.6,4.4,5.1,0.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.3,81.8,75.3,78.0,68.7,74.0,74.3,70.2,75.9,69.4,71.8,61.7,67.9,67.6,48.2,50.2,47.5,48.9,39.1,36.4,42.5,35.7,39.7,35.0,36.5,29.1,22.4,31.6 +E14000791,17.3,15.7,16.8,15.9,14.7,11.7,11.9,11.7,11.2,11.2,9.2,10.1,6.2,7.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.7,77.2,77.8,78.2,74.5,78.3,79.1,62.5,67.8,69.3,69.9,65.5,69.5,72.0,37.0,37.5,41.7,43.3,41.2,43.0,43.0,28.0,23.9,30.2,31.5,31.1,32.0,33.3 +E14000792,21.7,22.3,19.7,19.7,21.1,16.0,14.2,17.2,16.9,15.7,14.1,16.7,11.7,9.9,9.5,7.6,8.9,6.5,10.0,0.0,0.0,0.0,0.0,6.1,0.0,0.0,0.0,0.0,82.0,77.9,80.7,78.8,75.8,82.3,78.0,72.2,70.3,73.3,71.7,68.0,75.9,70.8,50.3,48.7,49.5,50.9,44.9,55.1,47.9,39.9,38.3,38.5,40.1,30.7,42.5,34.4 +E14000793,16.6,16.5,14.4,15.7,15.3,10.3,9.8,12.1,12.0,11.3,10.9,11.7,7.0,7.4,6.3,6.2,6.4,5.0,6.0,3.3,2.6,3.3,3.1,4.3,2.9,2.8,2.0,1.6,77.9,76.7,79.0,78.7,73.3,73.6,75.8,67.9,68.5,71.6,70.5,66.4,67.8,68.3,43.0,42.5,43.1,43.3,42.0,41.2,43.3,31.7,32.2,32.1,32.8,30.6,29.5,33.1 +E14000794,16.6,16.5,14.4,15.7,15.3,10.3,9.8,12.1,12.0,11.3,10.9,11.7,7.0,7.4,6.3,6.2,6.4,5.0,6.0,3.3,2.6,3.3,3.1,4.3,2.9,2.8,2.0,1.6,77.9,76.7,79.0,78.7,73.3,73.6,75.8,67.9,68.5,71.6,70.5,66.4,67.8,68.3,43.0,42.5,43.1,43.3,42.0,41.2,43.3,31.7,32.2,32.1,32.8,30.6,29.5,33.1 +E14000795,16.6,16.5,14.4,15.7,15.3,10.3,9.8,12.1,12.0,11.3,10.9,11.7,7.0,7.4,6.3,6.2,6.4,5.0,6.0,3.3,2.6,3.3,3.1,4.3,2.9,2.8,2.0,1.6,77.9,76.7,79.0,78.7,73.3,73.6,75.8,67.9,68.5,71.6,70.5,66.4,67.8,68.3,43.0,42.5,43.1,43.3,42.0,41.2,43.3,31.7,32.2,32.1,32.8,30.6,29.5,33.1 +E14000796,16.6,16.5,14.4,15.7,15.3,10.3,9.8,12.1,12.0,11.3,10.9,11.7,7.0,7.4,6.3,6.2,6.4,5.0,6.0,3.3,2.6,3.3,3.1,4.3,2.9,2.8,2.0,1.6,77.9,76.7,79.0,78.7,73.3,73.6,75.8,67.9,68.5,71.6,70.5,66.4,67.8,68.3,43.0,42.5,43.1,43.3,42.0,41.2,43.3,31.7,32.2,32.1,32.8,30.6,29.5,33.1 +E14000797,22.1,23.0,15.7,17.9,17.9,14.1,11.9,14.3,15.2,11.6,14.0,11.8,10.2,8.2,7.8,0.0,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.1,74.6,76.8,83.7,77.7,84.5,79.1,77.5,67.5,67.7,75.7,70.2,76.8,69.0,41.5,35.9,40.0,46.8,48.5,49.8,47.1,32.8,25.6,29.7,36.2,38.0,35.9,33.8 +E14000798,24.1,12.8,14.5,14.8,16.4,9.8,10.9,16.2,9.7,12.0,11.0,13.3,8.2,8.1,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.3,76.2,69.4,79.9,73.0,74.5,71.5,72.2,68.2,62.2,74.2,67.0,68.5,64.2,46.0,41.9,37.5,47.6,42.3,42.8,38.9,35.6,34.4,28.1,35.8,30.1,29.5,29.7 +E14000799,16.0,16.0,19.5,20.4,16.7,11.6,13.2,9.9,10.4,13.6,12.2,11.4,9.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,78.2,76.6,79.6,75.1,79.9,77.9,68.6,69.9,67.8,70.5,65.0,73.5,69.1,41.6,43.7,43.9,40.5,42.3,50.6,45.8,31.4,32.9,35.1,31.3,32.0,39.1,37.2 +E14000800,13.4,9.5,7.6,9.5,9.7,8.0,8.5,9.9,5.8,5.0,4.8,7.3,6.3,0.0,5.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.6,70.7,65.3,68.9,64.2,64.4,63.4,61.5,62.5,59.3,60.0,57.4,58.2,54.0,36.9,36.5,30.6,32.7,32.3,32.0,32.6,23.7,27.1,24.1,25.1,23.5,21.6,23.7 +E14000801,13.6,10.5,8.4,10.0,10.3,8.4,8.9,9.8,6.5,5.6,5.2,7.7,6.5,0.9,4.8,0.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.5,71.8,66.8,70.1,65.5,65.7,65.2,62.0,63.2,60.5,61.1,58.4,59.3,55.6,37.1,37.3,32.1,33.8,33.2,33.0,33.6,23.9,27.4,24.7,25.9,24.2,22.5,24.4 +E14000802,17.1,19.8,16.9,12.3,14.0,12.5,13.1,9.7,15.1,10.2,8.7,9.8,9.5,10.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,83.4,80.4,77.1,78.8,85.3,80.1,66.4,73.1,69.4,66.0,69.0,81.0,70.7,34.1,43.4,44.5,41.6,42.1,45.9,44.0,23.9,32.0,32.5,29.3,32.7,33.5,32.3 +E14000803,24.0,22.6,20.6,21.7,20.7,12.3,15.9,16.5,15.0,14.3,14.9,14.3,8.5,10.8,6.6,0.0,4.4,4.4,3.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.8,81.0,83.3,86.9,77.1,81.2,82.8,71.6,69.8,73.5,76.3,69.6,74.5,73.8,45.2,42.4,44.3,48.3,42.8,47.9,47.8,33.5,29.3,31.6,31.3,31.4,34.0,34.1 +E14000804,13.1,15.1,16.2,18.9,13.8,11.4,12.4,8.5,8.6,10.0,11.9,9.9,7.8,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.5,81.6,81.1,81.5,76.3,81.9,81.0,64.9,71.0,73.4,70.9,68.3,72.3,73.1,40.0,41.1,42.3,41.5,42.5,46.2,48.3,29.5,30.7,30.3,28.5,33.0,33.6,35.1 +E14000805,11.4,12.0,13.5,12.6,12.5,7.7,8.2,7.5,8.9,9.2,9.1,9.1,5.1,5.9,0.0,0.0,4.5,3.8,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.8,74.3,72.8,77.2,70.5,72.6,75.2,60.6,62.5,64.2,65.6,63.1,63.8,66.7,34.3,38.0,36.4,38.9,38.3,34.9,39.1,26.1,29.5,27.5,27.5,27.7,24.9,26.6 +E14000806,21.9,18.4,19.6,14.1,20.5,12.8,14.9,14.2,12.9,13.1,9.5,16.4,8.3,7.1,4.7,4.5,4.7,0.0,7.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.4,80.3,77.7,83.8,83.3,81.1,82.1,64.1,72.8,68.7,75.0,77.0,72.5,75.5,41.3,39.0,40.9,45.8,50.6,41.2,46.6,30.9,27.1,29.9,32.8,35.0,29.5,31.7 +E14000807,15.8,18.8,17.4,17.0,17.4,14.6,13.8,11.3,14.4,13.8,12.2,12.2,10.5,9.8,5.0,9.6,7.0,7.2,6.8,5.2,5.3,3.7,5.7,4.5,5.0,4.3,2.9,3.4,73.8,75.2,77.0,76.5,70.0,74.9,72.8,64.3,66.2,70.0,68.7,64.7,67.0,65.2,39.1,41.9,42.0,44.3,40.3,40.8,42.8,28.5,32.8,34.1,34.7,30.4,29.2,31.6 +E14000808,15.8,18.8,17.4,17.0,17.4,14.6,13.8,11.3,14.4,13.8,12.2,12.2,10.5,9.8,5.0,9.6,7.0,7.2,6.8,5.2,5.3,3.7,5.7,4.5,5.0,4.3,2.9,3.4,73.8,75.2,77.0,76.5,70.0,74.9,72.8,64.3,66.2,70.0,68.7,64.7,67.0,65.2,39.1,41.9,42.0,44.3,40.3,40.8,42.8,28.5,32.8,34.1,34.7,30.4,29.2,31.6 +E14000809,15.8,18.8,17.4,17.0,17.4,14.6,13.8,11.3,14.4,13.8,12.2,12.2,10.5,9.8,5.0,9.6,7.0,7.2,6.8,5.2,5.3,3.7,5.7,4.5,5.0,4.3,2.9,3.4,73.8,75.2,77.0,76.5,70.0,74.9,72.8,64.3,66.2,70.0,68.7,64.7,67.0,65.2,39.1,41.9,42.0,44.3,40.3,40.8,42.8,28.5,32.8,34.1,34.7,30.4,29.2,31.6 +E14000810,10.1,14.5,12.1,10.6,13.6,6.8,0.0,6.7,7.5,8.5,6.0,11.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.7,71.8,75.6,73.8,68.1,72.5,71.6,65.4,62.2,65.1,65.5,62.7,64.3,60.9,36.7,36.1,37.0,37.5,37.7,35.7,39.7,28.4,23.9,26.3,29.1,27.6,29.5,30.5 +E14000811,20.9,19.9,20.4,18.4,23.2,17.5,15.8,11.1,13.7,13.4,10.2,15.9,12.1,10.2,1.3,5.3,4.4,0.0,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.8,85.6,82.1,85.6,83.2,83.9,81.4,70.2,75.7,74.3,77.3,74.8,75.0,73.9,45.2,45.0,48.2,47.6,48.1,47.0,46.5,30.6,31.7,35.0,36.2,35.0,34.3,33.9 +E14000812,13.0,11.7,15.7,14.2,13.5,12.2,9.4,8.6,7.1,10.1,9.7,8.5,0.0,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.6,75.3,73.9,82.2,78.3,79.3,78.8,62.9,64.7,66.2,70.5,68.4,73.3,67.5,36.0,37.2,37.9,44.0,41.9,47.5,38.1,25.1,25.1,27.6,31.8,29.7,32.9,25.8 +E14000813,16.9,20.8,16.4,15.0,16.0,12.1,13.3,9.5,13.7,10.6,9.8,12.0,8.1,9.1,0.0,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.8,81.1,79.4,80.1,76.7,77.8,80.2,66.7,69.8,70.7,71.0,66.8,70.7,69.7,38.5,43.7,45.4,43.4,41.4,42.5,42.3,25.5,30.1,31.3,32.4,30.9,30.5,31.1 +E14000814,17.5,14.2,16.1,15.5,15.2,11.1,10.8,12.2,9.9,11.1,9.8,10.8,7.0,7.7,3.1,1.6,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,75.8,78.7,77.3,77.6,74.8,76.3,76.7,66.4,68.3,68.6,66.6,66.3,66.9,70.0,37.9,40.6,39.7,38.5,44.5,40.8,43.9,28.2,30.1,28.8,27.3,34.8,28.5,30.0 +E14000815,20.7,20.2,17.9,19.3,18.0,18.3,16.7,14.9,13.5,13.2,13.1,14.3,12.4,12.0,7.7,6.1,6.4,6.6,0.0,0.0,4.0,4.6,3.8,3.2,4.1,0.0,0.0,0.0,78.2,83.1,81.9,82.8,76.7,82.2,80.8,68.3,72.6,72.1,73.8,70.3,74.4,73.4,39.5,44.6,46.3,46.7,44.9,44.8,50.7,27.3,31.0,33.5,35.5,36.0,33.4,37.0 +E14000816,19.6,20.8,15.2,19.3,16.5,14.0,13.8,13.2,14.8,9.9,12.0,12.6,9.9,7.8,1.2,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.4,83.8,77.2,77.4,74.0,80.6,80.1,58.8,72.8,69.6,67.4,67.1,74.0,71.4,34.0,44.6,41.6,37.8,39.5,43.9,45.4,25.3,33.7,29.8,28.2,31.5,32.0,34.3 +E14000817,20.7,19.0,13.0,14.2,13.5,15.0,11.4,14.0,12.0,9.0,9.6,8.9,10.6,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.7,82.9,82.6,87.1,75.9,87.4,85.6,73.4,71.7,75.3,78.2,68.6,80.9,78.6,45.4,43.5,50.3,48.9,47.8,53.4,50.1,34.0,33.4,36.4,37.9,33.3,42.7,36.5 +E14000818,15.2,10.5,16.2,17.8,12.8,15.6,10.2,8.2,5.6,9.8,12.7,9.6,10.9,6.7,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.3,76.6,77.6,81.9,79.7,79.6,80.0,65.7,66.5,66.6,73.4,70.7,70.6,71.1,36.6,39.1,35.3,41.7,45.4,44.5,44.6,25.4,30.8,25.7,29.9,34.5,31.1,30.2 +E14000819,16.3,14.5,13.1,11.6,10.5,10.0,9.1,10.8,8.9,10.1,7.1,7.3,8.4,7.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.9,73.4,66.4,70.3,70.7,66.4,67.8,66.1,62.7,59.7,62.2,61.6,58.0,59.6,38.1,37.3,34.8,32.9,33.6,31.9,35.8,29.3,29.5,24.6,20.5,23.4,20.7,26.0 +E14000820,13.0,13.3,12.6,15.3,14.6,10.4,8.1,9.4,8.7,9.4,11.5,9.6,8.1,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.2,75.0,72.6,76.8,75.4,69.1,70.6,67.8,66.4,66.4,68.9,66.1,61.2,63.3,41.2,42.9,37.5,42.3,39.3,37.2,37.1,30.9,32.5,27.1,30.4,28.9,25.7,29.4 +E14000821,21.5,18.2,17.9,16.8,15.2,11.7,16.3,16.5,11.9,12.2,10.5,10.8,8.3,10.8,7.7,4.9,0.0,0.0,0.0,0.0,0.0,5.7,2.7,0.0,0.0,0.0,0.0,0.0,77.8,76.3,82.5,84.4,73.7,77.2,78.2,66.2,64.2,74.1,74.3,66.6,71.6,70.6,45.1,40.2,44.1,47.9,43.9,44.6,43.2,36.4,32.1,31.5,35.3,29.1,30.9,32.0 +E14000822,21.5,18.2,17.9,16.8,15.2,11.7,16.3,16.5,11.9,12.2,10.5,10.8,8.3,10.8,7.7,4.9,0.0,0.0,0.0,0.0,0.0,5.7,2.7,0.0,0.0,0.0,0.0,0.0,77.8,76.3,82.5,84.4,73.7,77.2,78.2,66.2,64.2,74.1,74.3,66.6,71.6,70.6,45.1,40.2,44.1,47.9,43.9,44.6,43.2,36.4,32.1,31.5,35.3,29.1,30.9,32.0 +E14000823,17.2,17.3,16.0,19.8,17.9,17.3,18.8,13.1,12.8,11.4,14.7,12.1,13.3,14.0,7.8,8.4,0.0,8.3,6.6,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.6,79.1,82.1,84.7,72.3,80.5,78.3,80.0,74.4,75.7,79.4,65.2,72.8,71.8,53.7,49.6,50.5,50.5,41.8,46.2,47.4,39.2,37.8,37.9,41.4,28.0,35.0,33.2 +E14000824,22.1,20.5,19.2,25.5,20.6,19.0,18.0,15.0,14.1,15.4,16.5,15.2,12.3,12.5,3.2,3.4,0.0,4.3,3.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.5,81.7,80.7,83.7,76.8,83.9,79.8,71.2,74.0,73.5,72.7,70.3,77.5,74.3,46.4,42.4,45.4,46.3,44.3,47.2,42.7,33.8,30.5,30.5,33.1,32.3,33.7,31.7 +E14000825,26.6,17.8,17.0,18.3,17.3,11.5,16.5,20.7,12.0,12.9,14.1,12.0,9.0,12.8,11.6,0.0,7.9,0.0,6.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.3,84.7,81.3,85.0,80.2,82.2,83.3,70.9,80.1,72.9,78.5,72.3,73.8,75.3,45.1,53.1,48.4,44.7,45.2,45.8,52.3,35.5,39.9,34.5,31.0,36.6,32.1,38.0 +E14000826,12.8,13.9,12.4,13.9,13.0,9.6,9.7,8.2,9.1,9.4,9.4,9.0,4.3,4.3,2.9,3.1,3.7,3.6,2.8,2.1,1.7,2.0,1.8,1.9,2.0,1.1,0.0,0.0,75.3,77.3,77.5,80.6,73.6,77.3,74.4,65.3,67.6,68.6,71.9,65.2,69.8,65.7,39.1,41.5,43.9,43.2,42.8,41.1,39.9,28.6,30.3,32.8,31.2,29.7,29.5,29.1 +E14000827,18.8,25.0,22.1,24.8,23.8,14.2,21.0,11.8,15.7,17.0,15.5,14.5,11.2,14.7,0.0,7.2,9.0,7.7,6.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.2,79.0,84.2,82.3,79.0,81.6,87.2,69.1,65.5,72.4,73.6,71.7,71.8,81.0,44.4,42.5,49.1,48.3,45.6,44.3,48.4,28.9,32.6,34.7,29.8,31.9,33.1,38.0 +E14000828,18.8,25.0,22.1,24.8,23.8,14.2,21.0,11.8,15.7,17.0,15.5,14.5,11.2,14.7,0.0,7.2,9.0,7.7,6.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.2,79.0,84.2,82.3,79.0,81.6,87.2,69.1,65.5,72.4,73.6,71.7,71.8,81.0,44.4,42.5,49.1,48.3,45.6,44.3,48.4,28.9,32.6,34.7,29.8,31.9,33.1,38.0 +E14000829,19.8,20.8,20.1,19.6,15.8,14.5,13.5,14.6,14.3,14.8,12.5,10.6,10.5,9.5,1.8,0.0,5.2,0.0,1.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.9,78.9,77.8,79.0,80.4,80.4,79.7,66.0,69.5,68.6,69.3,71.5,73.2,68.8,38.9,45.6,41.3,44.4,44.6,46.0,43.1,26.7,35.1,30.9,33.3,32.5,34.2,30.3 +E14000830,19.1,18.4,16.1,18.7,25.6,14.9,13.4,13.8,12.2,9.2,11.4,16.8,8.8,8.6,0.0,0.0,0.0,0.0,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.6,83.0,80.3,81.9,83.4,79.7,83.4,67.6,75.2,71.6,74.2,75.7,71.7,76.4,40.9,47.5,48.2,43.7,48.8,45.8,51.3,31.0,34.1,35.4,31.9,36.1,31.2,35.2 +E14000831,17.6,18.0,18.3,16.3,14.3,11.2,13.1,13.2,13.6,13.3,11.2,10.5,8.0,9.5,7.6,5.5,6.8,6.1,5.5,4.3,4.4,4.4,3.8,3.6,4.0,3.6,2.3,2.5,79.2,80.4,77.7,79.6,78.0,77.9,77.6,70.0,73.0,70.6,72.6,72.7,71.2,71.9,44.3,45.5,45.5,48.5,48.5,46.1,46.6,32.8,34.6,35.3,35.8,36.7,35.0,36.0 +E14000832,17.6,18.0,18.3,16.3,14.3,11.2,13.1,13.2,13.6,13.3,11.2,10.5,8.0,9.5,7.6,5.5,6.8,6.1,5.5,4.3,4.4,4.4,3.8,3.6,4.0,3.6,2.3,2.5,79.2,80.4,77.7,79.6,78.0,77.9,77.6,70.0,73.0,70.6,72.6,72.7,71.2,71.9,44.3,45.5,45.5,48.5,48.5,46.1,46.6,32.8,34.6,35.3,35.8,36.7,35.0,36.0 +E14000833,17.6,18.0,18.3,16.3,14.3,11.2,13.1,13.2,13.6,13.3,11.2,10.5,8.0,9.5,7.6,5.5,6.8,6.1,5.5,4.3,4.4,4.4,3.8,3.6,4.0,3.6,2.3,2.5,79.2,80.4,77.7,79.6,78.0,77.9,77.6,70.0,73.0,70.6,72.6,72.7,71.2,71.9,44.3,45.5,45.5,48.5,48.5,46.1,46.6,32.8,34.6,35.3,35.8,36.7,35.0,36.0 +E14000834,10.5,10.3,11.4,10.3,10.1,8.1,8.6,7.3,0.0,7.4,6.6,6.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.4,73.6,74.7,76.4,74.4,79.7,69.4,63.8,63.4,65.2,64.9,64.4,71.1,60.4,35.1,41.9,39.4,41.4,42.2,41.2,34.9,24.6,29.3,29.8,33.3,33.3,29.2,22.1 +E14000835,19.9,20.2,17.9,20.3,19.2,16.4,13.7,11.4,13.8,11.1,10.5,13.1,9.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.3,85.4,82.1,85.3,83.3,81.4,84.8,70.5,74.0,74.5,76.2,78.8,74.2,77.5,46.1,47.9,45.2,48.9,49.5,49.4,49.6,36.0,36.2,34.3,33.8,39.4,35.6,37.7 +E14000836,10.7,13.5,9.4,12.1,15.3,9.6,9.7,7.5,9.7,7.1,6.9,9.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,74.9,71.3,77.2,70.7,73.4,69.5,64.7,63.9,61.0,66.2,60.5,66.5,62.3,36.4,37.5,36.3,37.4,39.7,36.6,36.4,26.3,27.7,26.9,25.9,27.1,28.2,27.5 +E14000837,16.5,13.8,12.8,14.7,12.0,12.8,15.3,9.1,9.7,9.5,9.6,8.6,9.8,9.1,2.9,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,79.7,78.5,83.8,78.0,86.5,81.7,71.8,69.9,71.0,76.4,70.8,75.4,74.0,46.6,41.4,46.3,49.6,46.5,51.2,48.4,36.2,30.4,34.8,36.1,32.5,36.9,39.6 +E14000838,23.4,18.8,11.5,20.3,20.6,17.3,14.5,15.6,13.7,7.3,15.0,13.6,11.5,10.7,0.0,0.0,0.0,8.3,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.2,80.9,83.7,79.8,80.9,84.7,81.1,72.0,71.9,75.5,71.7,74.4,78.2,76.3,51.5,45.4,50.9,45.5,48.5,49.2,52.4,35.9,34.2,40.0,38.1,37.6,36.7,44.9 +E14000839,19.9,17.7,19.7,21.2,19.8,11.0,13.2,13.9,11.6,14.3,14.4,14.0,8.1,8.9,6.1,5.7,6.2,5.7,0.0,0.0,0.0,3.0,3.0,3.5,3.1,0.0,0.0,0.0,79.0,81.3,81.4,83.2,83.2,82.7,83.0,68.9,72.2,73.0,75.0,77.5,77.3,73.8,41.0,45.3,48.2,47.4,46.2,47.6,48.2,29.8,33.1,36.4,36.2,35.0,36.9,37.6 +E14000840,13.8,13.5,10.8,10.0,9.6,10.1,8.0,10.7,10.3,8.6,7.0,6.6,0.0,6.2,0.0,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,80.6,77.1,77.8,75.2,74.8,71.3,65.6,71.3,69.1,71.9,65.8,66.8,64.8,39.2,46.6,46.1,39.8,41.8,39.3,39.2,31.6,34.7,29.0,32.3,31.2,30.6,30.8 +E14000841,20.1,22.8,18.4,17.0,16.4,13.7,14.1,13.2,15.6,11.2,11.8,12.0,8.6,10.4,0.0,5.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.1,78.0,76.0,78.0,74.1,80.1,77.5,65.1,67.4,66.7,69.9,65.2,73.9,68.4,36.2,42.4,44.6,44.5,41.1,44.3,41.7,24.0,30.2,32.2,30.8,30.4,32.1,30.8 +E14000842,17.2,19.0,17.8,21.0,16.7,14.4,13.2,12.4,13.4,12.0,15.1,11.5,9.2,9.5,1.1,1.5,2.0,1.3,1.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.3,72.5,72.6,75.9,72.8,75.1,72.7,64.5,60.1,62.2,64.6,66.1,66.6,65.2,38.8,37.0,35.1,44.3,42.8,33.4,39.8,29.1,26.9,23.9,33.6,30.5,23.2,31.9 +E14000843,12.8,10.1,10.7,12.1,14.9,9.1,10.6,9.0,2.2,1.6,7.5,8.7,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.8,77.2,77.6,79.3,75.9,76.9,77.8,68.4,68.3,67.3,70.1,68.2,68.8,68.2,38.6,37.2,37.5,42.0,42.1,42.6,40.3,25.6,27.0,26.3,30.2,27.8,32.5,28.1 +E14000844,18.6,18.9,21.2,18.0,23.1,17.3,16.2,10.3,14.3,13.6,13.1,17.0,12.7,10.1,0.0,0.0,4.1,2.7,7.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.1,82.6,82.1,81.4,82.4,84.5,85.6,69.7,74.5,72.2,72.3,73.6,75.3,76.3,46.3,45.6,45.1,41.9,47.4,45.4,47.2,34.1,34.1,31.9,30.7,31.6,32.8,33.8 +E14000845,21.0,16.5,15.5,19.1,18.3,19.6,14.4,13.5,10.4,10.2,12.0,11.4,14.2,9.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.1,81.9,82.2,88.0,78.5,82.4,84.6,73.9,74.4,72.2,78.3,70.1,76.8,73.2,47.6,48.4,43.0,47.0,44.4,51.1,46.4,35.0,37.6,30.2,34.6,32.3,37.2,31.1 +E14000846,19.2,19.6,22.3,18.6,17.8,15.1,18.8,11.1,13.6,15.3,12.1,12.6,9.2,13.2,4.7,6.8,7.9,6.7,6.8,0.0,0.0,0.0,3.9,0.0,0.0,0.0,0.0,0.0,81.4,82.9,84.8,84.1,79.7,83.1,82.1,72.1,73.2,79.0,77.1,72.2,77.8,74.3,46.4,48.7,55.1,51.8,51.9,47.4,47.0,30.4,37.8,41.5,39.5,39.3,35.6,39.0 +E14000847,17.4,15.2,17.4,17.4,11.9,10.9,11.6,13.1,9.8,13.2,11.9,7.8,7.9,8.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.1,79.4,75.3,78.2,78.5,81.7,77.3,70.5,70.5,67.0,68.2,69.7,73.3,71.3,43.4,45.0,42.4,43.5,50.8,42.1,45.6,30.9,30.5,33.5,32.7,37.4,30.3,36.4 +E14000848,20.2,19.2,17.5,19.6,20.7,9.9,13.0,14.3,11.6,12.2,14.2,16.8,6.7,9.3,0.0,6.3,0.0,7.3,7.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.7,80.8,84.2,81.2,75.5,83.3,75.9,72.6,73.4,78.9,76.3,70.9,76.5,70.4,43.3,50.4,47.9,48.9,49.8,48.5,45.8,30.2,36.0,35.8,36.2,40.9,36.4,35.1 +E14000849,16.0,16.0,19.5,20.4,16.7,11.6,13.2,9.9,10.4,13.6,12.2,11.4,9.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,78.2,76.6,79.6,75.1,79.9,77.9,68.6,69.9,67.8,70.5,65.0,73.5,69.1,41.6,43.7,43.9,40.5,42.3,50.6,45.8,31.4,32.9,35.1,31.3,32.0,39.1,37.2 +E14000850,19.9,27.2,21.3,15.9,19.6,18.0,17.1,14.5,16.9,15.2,8.4,14.8,10.4,11.0,0.0,10.1,8.6,0.0,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.1,82.0,82.8,83.0,79.4,82.9,82.6,68.7,74.3,74.9,71.8,72.1,74.3,72.7,41.6,38.8,45.1,44.0,46.2,42.1,43.0,32.2,29.4,34.0,29.5,35.4,29.6,29.1 +E14000851,18.9,21.5,19.2,18.7,14.2,15.6,15.4,13.7,15.9,13.8,13.3,9.5,10.8,11.8,6.4,7.3,7.4,0.0,0.0,0.0,0.0,4.3,0.0,0.0,0.0,0.0,0.0,0.0,75.7,79.9,76.0,77.1,73.0,79.8,71.6,65.9,70.4,64.9,68.1,64.1,71.9,64.9,38.8,44.4,37.5,41.3,39.3,41.2,41.5,29.3,33.6,29.2,30.6,29.3,31.6,31.0 +E14000852,15.5,17.5,16.3,16.4,17.7,13.6,14.9,11.2,11.5,11.9,12.2,13.5,8.9,10.4,0.0,1.3,1.6,2.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.7,81.3,79.9,81.7,74.7,76.9,77.5,68.9,73.7,72.3,73.6,68.9,70.5,69.9,42.5,50.0,48.3,47.9,47.8,45.0,41.1,32.0,37.9,35.6,36.9,36.0,32.9,30.2 +E14000853,17.5,18.5,14.0,14.4,18.3,10.2,10.7,11.7,13.4,8.9,11.6,13.1,7.3,7.0,0.0,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.3,79.1,76.5,76.0,76.3,83.9,76.9,70.1,71.3,68.9,66.3,68.8,76.8,70.6,44.7,45.2,45.4,40.2,43.0,45.3,43.2,37.0,33.8,32.9,29.1,31.7,34.8,33.0 +E14000854,17.1,12.1,9.9,10.3,13.0,9.4,11.7,8.9,9.3,5.9,6.6,7.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.8,74.1,78.7,75.4,71.7,77.5,75.8,62.4,63.4,67.6,66.7,65.1,68.7,65.6,35.7,36.4,42.2,40.4,37.6,39.5,38.7,27.1,26.5,31.2,28.5,26.6,30.0,29.3 +E14000855,23.9,21.4,21.6,19.0,24.1,16.3,18.6,14.8,13.6,15.4,14.4,17.4,11.1,13.2,3.5,3.0,8.0,7.4,6.7,3.6,0.0,2.4,2.0,0.0,0.0,0.0,0.0,0.0,75.6,78.0,77.0,77.9,73.0,78.2,77.3,64.8,71.8,67.8,67.5,66.2,69.6,68.7,36.2,45.2,42.0,44.3,43.4,43.2,40.5,24.7,34.6,30.8,33.0,34.2,32.4,29.0 +E14000856,13.8,13.5,10.8,10.0,9.6,10.1,8.0,10.7,10.3,8.6,7.0,6.6,0.0,6.2,0.0,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,80.6,77.1,77.8,75.2,74.8,71.3,65.6,71.3,69.1,71.9,65.8,66.8,64.8,39.2,46.6,46.1,39.8,41.8,39.3,39.2,31.6,34.7,29.0,32.3,31.2,30.6,30.8 +E14000857,15.2,17.8,17.3,15.2,21.7,13.9,15.9,9.4,13.0,11.9,11.6,15.1,8.8,10.1,0.0,0.0,0.0,5.1,6.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.2,81.6,84.3,79.7,80.7,83.1,83.6,68.6,73.7,71.7,70.7,73.5,75.9,76.4,46.6,46.7,40.7,41.3,48.5,48.6,48.5,34.2,33.6,28.4,31.1,35.3,38.1,35.9 +E14000858,17.1,12.0,13.8,10.9,14.2,11.6,11.7,10.9,7.8,9.3,7.0,9.0,6.9,7.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.0,77.7,75.8,81.1,76.7,74.8,81.5,65.7,66.6,65.1,69.6,67.3,65.8,72.1,36.2,40.1,37.5,43.0,46.9,41.0,44.0,25.9,30.9,23.7,29.5,38.8,30.5,29.6 +E14000859,19.2,17.2,16.8,18.8,18.9,14.4,16.4,13.0,10.9,9.5,11.8,12.1,10.6,11.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.3,71.0,78.3,78.8,74.2,73.0,70.8,64.0,64.1,69.7,70.3,65.0,66.1,63.3,36.5,41.2,44.2,41.8,43.2,33.8,41.8,26.4,29.0,34.1,30.6,29.1,26.1,29.1 +E14000860,19.7,20.4,16.0,17.2,17.1,18.9,15.1,15.5,13.1,10.1,11.9,11.1,10.8,11.5,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.6,80.6,81.4,85.7,81.3,80.7,79.2,72.5,72.0,69.9,75.7,74.9,73.6,72.5,43.3,44.1,44.9,46.4,47.8,48.0,46.4,32.2,34.1,31.9,37.5,37.1,36.0,35.8 +E14000861,15.2,15.1,13.3,15.2,14.3,8.7,9.4,10.8,9.4,10.4,10.3,9.4,5.7,6.3,4.1,4.3,5.1,4.6,3.3,1.5,0.0,0.0,0.0,3.4,3.0,2.1,0.0,0.0,76.7,76.4,75.6,77.1,74.1,71.8,74.9,67.0,64.4,65.2,67.5,67.3,64.4,67.5,39.5,38.1,38.0,38.8,43.7,39.1,43.8,29.1,28.8,28.0,27.9,31.3,27.2,33.8 +E14000862,15.2,15.1,13.3,15.2,14.3,8.7,9.4,10.8,9.4,10.4,10.3,9.4,5.7,6.3,4.1,4.3,5.1,4.6,3.3,1.5,0.0,0.0,0.0,3.4,3.0,2.1,0.0,0.0,76.7,76.4,75.6,77.1,74.1,71.8,74.9,67.0,64.4,65.2,67.5,67.3,64.4,67.5,39.5,38.1,38.0,38.8,43.7,39.1,43.8,29.1,28.8,28.0,27.9,31.3,27.2,33.8 +E14000863,27.4,29.2,25.1,22.0,21.1,24.0,23.6,22.0,23.5,19.4,16.9,15.7,16.8,18.5,15.5,13.2,12.2,10.1,8.9,10.7,9.5,10.3,9.2,8.2,7.3,5.7,0.0,0.0,84.2,84.1,82.5,85.9,78.5,80.6,86.9,77.8,77.2,72.1,78.4,72.9,75.0,81.9,52.1,49.9,50.4,50.2,46.7,49.1,54.3,37.9,36.3,38.5,39.6,37.3,35.2,38.1 +E14000864,28.1,30.0,25.7,22.4,21.1,24.8,24.9,23.2,24.7,20.4,17.6,15.7,17.4,19.8,16.8,14.9,12.8,10.6,9.3,11.1,10.7,11.6,10.3,9.3,8.3,6.4,0.0,0.0,85.3,84.4,83.2,87.1,78.1,81.0,87.8,79.1,77.8,72.4,79.8,72.7,75.6,83.4,54.1,50.8,51.4,51.8,46.6,49.4,55.9,39.5,37.2,39.6,41.0,37.0,35.2,39.5 +E14000865,14.0,13.7,15.2,15.9,13.5,11.1,10.9,9.9,9.9,11.9,11.2,10.2,8.5,7.4,5.0,4.7,7.2,6.1,4.7,4.4,3.1,3.4,3.0,4.6,3.4,3.4,2.6,2.0,75.5,76.4,76.7,78.0,67.9,75.7,74.6,65.5,68.4,69.2,70.1,61.7,67.9,67.7,39.8,43.3,45.5,43.9,39.1,41.6,42.7,29.9,30.8,36.3,33.9,27.3,28.9,31.0 +E14000866,14.0,13.7,15.2,15.9,13.5,11.1,10.9,9.9,9.9,11.9,11.2,10.2,8.5,7.4,5.0,4.7,7.2,6.1,4.7,4.4,3.1,3.4,3.0,4.6,3.4,3.4,2.6,2.0,75.5,76.4,76.7,78.0,67.9,75.7,74.6,65.5,68.4,69.2,70.1,61.7,67.9,67.7,39.8,43.3,45.5,43.9,39.1,41.6,42.7,29.9,30.8,36.3,33.9,27.3,28.9,31.0 +E14000867,14.0,13.7,15.2,15.9,13.5,11.1,10.9,9.9,9.9,11.9,11.2,10.2,8.5,7.4,5.0,4.7,7.2,6.1,4.7,4.4,3.1,3.4,3.0,4.6,3.4,3.4,2.6,2.0,75.5,76.4,76.7,78.0,67.9,75.7,74.6,65.5,68.4,69.2,70.1,61.7,67.9,67.7,39.8,43.3,45.5,43.9,39.1,41.6,42.7,29.9,30.8,36.3,33.9,27.3,28.9,31.0 +E14000868,12.6,11.6,11.9,10.6,13.9,9.4,9.8,1.4,10.1,6.2,7.3,8.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.9,72.2,76.9,73.4,71.3,74.2,72.2,57.6,62.8,66.2,65.5,63.9,65.6,60.7,33.6,34.7,38.2,37.4,37.9,37.7,34.5,26.2,26.8,27.7,26.5,26.2,27.1,26.6 +E14000869,10.3,13.5,14.9,12.6,6.8,10.2,8.6,7.3,8.9,8.0,9.2,4.8,6.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.9,79.9,80.5,78.8,67.5,72.8,75.4,70.2,70.9,73.8,70.1,57.5,64.5,67.9,43.9,41.9,49.7,44.7,36.7,37.9,42.1,34.4,30.1,40.0,32.2,25.9,24.5,29.1 +E14000870,10.9,9.1,6.8,6.5,7.7,7.0,4.4,7.2,6.0,5.4,4.0,5.6,3.3,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.8,70.7,70.1,70.6,65.2,68.0,71.0,66.8,62.6,62.8,62.1,57.8,61.1,63.9,36.8,36.4,36.4,32.7,32.2,35.8,34.5,27.4,27.6,28.0,24.7,22.7,26.4,24.4 +E14000871,10.9,9.1,6.8,6.5,7.7,7.0,4.4,7.2,6.0,5.4,4.0,5.6,3.3,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.8,70.7,70.1,70.6,65.2,68.0,71.0,66.8,62.6,62.8,62.1,57.8,61.1,63.9,36.8,36.4,36.4,32.7,32.2,35.8,34.5,27.4,27.6,28.0,24.7,22.7,26.4,24.4 +E14000872,12.9,11.6,15.0,9.1,14.8,10.7,13.2,9.9,6.8,10.9,0.0,11.9,0.0,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.2,85.4,82.4,85.2,78.0,84.7,81.6,74.6,78.5,75.1,79.3,70.5,75.8,76.1,48.2,52.7,50.5,54.2,46.8,50.3,44.7,36.6,40.3,38.3,41.8,31.7,35.6,30.5 +E14000873,42.8,40.0,43.4,44.7,43.0,39.9,41.7,38.8,36.6,39.2,39.6,35.9,33.5,35.0,28.4,25.4,26.8,25.3,20.8,19.1,22.1,19.0,17.4,18.3,19.1,15.6,12.8,15.0,86.7,80.7,87.0,86.7,85.9,85.0,86.6,80.5,74.0,80.0,80.0,80.4,80.0,82.2,51.8,48.2,54.9,50.5,51.9,52.0,52.4,37.2,34.8,43.9,36.8,40.7,35.6,41.1 +E14000874,36.8,34.7,36.1,37.7,36.5,32.6,34.7,31.9,30.1,30.7,32.1,29.1,26.6,28.2,22.5,19.7,19.4,19.4,16.3,12.5,16.8,12.9,11.8,12.1,12.6,10.3,8.4,9.8,85.1,81.6,86.5,86.7,83.8,84.0,85.0,77.2,73.0,78.6,78.6,77.6,78.3,79.8,49.3,45.5,51.3,49.3,50.2,49.7,49.2,35.4,32.6,40.3,35.4,38.8,34.1,37.8 +E14000875,11.4,9.4,9.0,11.5,10.8,9.1,7.1,6.8,7.6,5.6,6.7,7.3,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.4,74.8,65.4,75.2,70.0,69.7,68.8,63.3,63.8,54.6,68.2,61.1,62.7,60.2,35.4,42.4,27.9,39.6,35.8,37.5,33.5,25.3,30.9,20.8,27.4,26.1,25.4,26.1 +E14000876,10.3,13.9,13.3,11.1,11.3,10.6,5.6,5.3,9.3,8.6,5.1,8.6,7.1,3.9,3.1,2.7,2.7,2.4,2.2,2.3,1.9,1.2,1.6,1.8,1.1,1.2,1.3,0.0,74.1,75.1,76.7,78.8,70.7,75.7,76.1,65.6,65.7,68.1,69.7,63.6,67.1,68.4,39.3,39.8,41.4,43.4,38.1,41.0,41.0,28.8,29.9,31.2,31.5,28.8,28.5,30.5 +E14000877,16.0,17.2,15.7,16.9,16.9,14.1,11.7,11.7,12.2,10.0,11.1,10.9,9.9,8.6,0.0,0.0,0.0,0.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.6,79.8,79.8,80.7,77.3,81.0,78.6,69.7,70.9,72.1,70.7,69.9,73.5,72.0,44.2,43.5,45.3,42.8,46.6,49.6,46.4,33.0,31.4,35.2,32.8,36.4,36.4,34.6 +E14000878,23.0,23.6,20.5,21.2,22.6,14.5,19.4,15.0,16.2,14.7,16.6,17.4,9.5,15.2,7.9,6.7,7.1,9.5,7.6,0.0,0.0,5.4,4.5,0.0,0.0,0.0,0.0,0.0,74.0,77.8,74.8,76.3,66.5,70.1,71.1,64.6,68.8,64.6,66.9,59.9,60.4,63.7,37.8,42.2,42.9,46.2,41.2,38.8,37.2,25.5,32.0,32.8,34.4,31.2,29.0,25.6 +E14000879,12.4,13.0,9.7,13.2,13.4,10.9,8.3,7.5,9.6,7.5,8.1,10.9,6.3,6.7,2.7,3.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.1,78.9,76.5,80.9,77.7,77.1,80.4,68.9,69.2,69.4,75.7,71.4,70.8,71.8,41.2,43.0,47.0,52.7,42.1,43.0,47.0,31.1,32.2,37.0,40.3,32.3,29.0,34.2 +E14000880,12.4,13.0,9.7,13.2,13.4,10.9,8.3,7.5,9.6,7.5,8.1,10.9,6.3,6.7,2.7,3.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.1,78.9,76.5,80.9,77.7,77.1,80.4,68.9,69.2,69.4,75.7,71.4,70.8,71.8,41.2,43.0,47.0,52.7,42.1,43.0,47.0,31.1,32.2,37.0,40.3,32.3,29.0,34.2 +E14000881,20.9,21.1,17.4,18.6,17.4,20.7,17.9,15.2,14.1,12.9,12.6,14.5,13.8,13.0,8.2,6.3,6.5,6.9,0.0,0.0,5.4,5.1,4.0,3.0,4.5,0.0,0.0,0.0,77.9,83.7,82.0,82.7,74.5,82.1,80.0,68.0,72.8,71.8,73.4,67.9,73.4,73.2,39.0,44.4,45.6,46.5,44.5,43.8,51.6,26.5,30.3,32.5,35.3,36.4,32.2,36.8 +E14000882,23.8,24.7,20.7,22.1,21.6,18.9,22.1,16.9,19.1,14.3,16.3,18.1,13.2,17.4,10.8,12.5,8.5,9.0,10.4,5.4,10.3,9.1,7.5,5.4,0.0,7.6,0.0,0.0,81.2,82.4,83.1,84.0,74.1,76.3,80.8,76.2,76.7,75.4,77.0,68.6,66.7,75.3,53.0,53.3,53.5,50.4,42.3,47.4,49.0,40.1,39.3,38.2,39.6,31.9,33.5,36.2 +E14000883,23.2,23.1,23.6,21.4,22.2,18.2,16.1,16.7,19.6,19.7,18.4,16.9,13.8,12.3,9.2,10.2,12.1,11.7,10.3,6.2,6.5,5.7,6.7,8.3,0.0,0.0,0.0,0.0,82.6,79.8,85.2,80.7,79.8,81.5,77.2,73.2,70.7,77.5,72.4,70.1,70.9,69.8,47.7,45.8,50.8,47.3,46.8,45.9,46.2,36.7,34.0,34.8,36.3,36.8,32.6,35.1 +E14000884,23.2,23.1,23.6,21.4,22.2,18.2,16.1,16.7,19.6,19.7,18.4,16.9,13.8,12.3,9.2,10.2,12.1,11.7,10.3,6.2,6.5,5.7,6.7,8.3,0.0,0.0,0.0,0.0,82.6,79.8,85.2,80.7,79.8,81.5,77.2,73.2,70.7,77.5,72.4,70.1,70.9,69.8,47.7,45.8,50.8,47.3,46.8,45.9,46.2,36.7,34.0,34.8,36.3,36.8,32.6,35.1 +E14000885,16.7,13.5,16.2,11.9,16.0,14.0,13.1,11.7,8.6,12.6,7.8,9.8,10.5,7.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.3,73.9,78.2,78.6,74.8,74.6,73.4,65.7,61.1,68.7,67.9,66.2,65.6,66.8,37.2,38.9,42.1,43.1,41.7,42.6,43.6,30.4,28.1,31.2,32.7,29.6,29.5,32.9 +E14000886,13.7,14.0,13.6,14.6,12.1,9.6,9.6,8.5,8.9,10.3,10.3,8.8,6.0,6.0,4.0,4.3,5.1,5.1,3.8,2.9,2.4,2.8,2.5,2.6,2.8,1.6,0.0,0.0,75.2,78.2,79.9,82.0,74.8,78.9,76.3,65.5,69.1,71.6,74.1,67.0,71.1,67.0,40.1,43.1,46.9,45.5,44.0,42.9,41.2,29.5,31.3,35.1,33.3,30.7,30.0,29.8 +E14000887,26.3,22.9,25.8,29.7,32.6,27.5,28.0,19.8,17.2,22.5,23.8,26.5,20.7,20.7,10.4,7.6,11.1,13.6,14.5,9.7,11.4,0.0,0.0,6.5,9.7,0.0,0.0,7.8,85.0,87.3,87.0,89.5,79.6,86.6,86.1,80.1,82.9,81.3,85.8,74.0,79.2,82.2,53.1,54.0,60.1,61.8,53.1,57.2,61.1,40.4,40.7,49.3,48.6,38.9,40.9,48.3 +E14000888,15.3,14.7,12.2,13.9,13.7,8.1,8.4,9.6,8.4,8.0,9.9,10.3,0.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.1,78.0,75.4,83.0,71.4,76.1,79.4,66.7,71.0,67.2,75.6,64.5,68.2,72.6,40.1,46.1,43.3,45.6,36.8,37.0,41.4,31.8,37.0,33.6,33.0,26.5,25.4,28.4 +E14000889,23.1,18.0,18.8,20.8,16.5,16.5,14.6,18.0,11.9,14.8,16.2,10.0,12.2,10.4,11.1,6.6,6.6,6.6,0.7,0.0,0.0,6.2,4.4,0.0,0.0,0.0,0.0,0.0,78.6,82.7,84.2,78.2,77.5,78.8,74.2,70.9,74.0,74.9,72.0,70.0,73.3,68.1,45.9,45.9,51.2,45.3,46.3,46.3,40.6,33.0,30.4,37.7,29.7,31.1,33.6,30.1 +E14000890,23.1,17.8,18.3,20.5,16.8,16.7,14.6,18.2,11.8,14.3,16.0,10.1,12.2,10.4,10.7,6.7,6.7,6.7,0.4,0.0,0.0,6.3,4.4,0.0,0.0,0.0,0.0,0.0,78.3,83.0,83.9,77.6,77.9,78.3,74.2,70.6,74.5,74.7,71.7,70.4,72.7,68.5,45.9,46.3,51.7,45.2,46.5,45.8,41.4,33.0,30.7,38.3,29.8,31.3,32.9,30.8 +E14000891,10.7,12.4,12.3,17.6,17.3,10.6,7.5,8.5,8.6,8.9,14.2,11.1,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,76.0,76.6,80.9,78.4,70.9,72.4,68.9,68.9,70.7,73.3,69.1,63.3,65.7,43.1,46.6,39.3,48.3,42.9,40.6,38.0,32.0,34.4,28.7,36.8,32.5,28.9,31.7 +E14000892,14.6,11.7,12.9,13.2,13.5,7.9,9.0,9.2,7.0,8.9,10.4,8.7,2.0,1.3,0.0,0.0,0.0,0.0,0.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,75.5,79.0,76.4,71.9,70.3,68.4,65.4,63.1,67.5,69.1,63.0,61.3,61.9,39.0,36.8,39.5,46.5,39.9,35.3,34.6,29.6,26.8,27.3,35.4,29.6,26.5,25.0 +E14000893,17.1,19.5,16.0,18.8,14.8,17.8,15.5,11.1,14.4,10.3,14.2,8.7,12.5,9.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,83.4,83.0,82.3,74.7,80.6,80.9,69.1,73.0,71.9,74.3,68.2,73.6,71.4,43.3,45.6,44.3,48.2,43.6,45.1,48.4,30.7,32.7,29.4,33.9,32.2,33.4,32.6 +E14000894,19.9,15.0,15.1,15.8,13.8,13.4,10.5,13.7,9.7,11.1,10.6,8.7,10.9,7.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.0,77.3,78.1,82.9,79.9,78.2,79.4,70.9,66.5,68.1,73.1,71.8,69.3,72.1,42.8,38.7,39.7,44.5,48.1,44.7,44.9,28.9,26.9,29.0,35.8,33.1,33.9,30.6 +E14000895,18.1,18.6,16.8,16.8,15.0,14.6,13.4,12.9,12.8,13.2,11.1,11.5,10.8,9.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.3,82.7,82.0,82.9,77.1,81.0,83.7,70.0,74.2,73.2,74.5,69.8,74.6,76.2,44.8,46.2,48.0,50.0,45.8,48.2,48.6,31.4,33.6,34.5,38.0,36.6,36.9,36.0 +E14000896,28.8,28.3,31.0,32.8,29.1,24.7,24.3,23.0,20.4,24.3,23.6,21.2,16.2,17.8,11.7,9.4,12.4,11.8,12.0,4.8,8.9,7.4,0.0,6.2,4.8,5.9,0.0,5.4,84.7,86.8,88.3,88.6,85.3,85.9,85.5,77.0,80.8,82.9,83.2,80.2,78.7,77.7,53.6,52.8,57.9,55.6,55.4,53.9,53.1,39.5,39.1,44.7,38.9,40.8,38.0,37.1 +E14000897,7.6,11.6,7.9,10.1,9.1,6.9,5.1,5.5,8.6,6.1,7.5,6.0,5.1,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.6,68.7,71.0,73.9,67.5,68.1,69.7,58.9,61.4,61.0,65.7,59.3,61.3,61.2,32.6,37.5,36.0,36.1,34.3,35.1,34.9,24.0,28.5,27.9,26.0,22.9,24.9,25.3 +E14000898,13.5,8.7,8.9,10.2,10.9,0.0,8.4,10.0,6.0,0.0,7.4,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.5,76.4,76.0,75.9,69.3,79.3,73.6,66.5,66.1,63.4,65.4,61.6,68.3,65.6,37.5,39.6,38.2,39.3,38.5,32.2,35.5,28.0,27.8,29.0,28.0,30.4,21.3,23.5 +E14000899,19.6,15.7,14.5,15.2,15.6,9.4,12.8,13.8,10.3,11.2,9.1,11.6,4.7,7.2,5.2,3.8,0.0,0.0,0.0,0.0,0.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,80.0,78.6,78.0,78.4,72.9,74.4,79.3,72.2,70.9,69.4,70.0,66.6,66.7,73.3,45.1,45.3,45.1,46.2,39.3,41.4,46.6,35.0,33.8,34.5,32.7,27.2,31.9,34.2 +E14000900,9.7,11.7,5.9,7.5,8.7,6.7,7.8,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,74.6,78.6,81.9,68.6,75.0,71.6,71.0,67.1,73.4,73.7,61.3,65.3,64.6,42.4,40.6,50.4,43.1,39.4,39.3,38.1,30.6,28.7,38.2,32.5,29.6,28.2,27.8 +E14000901,17.3,21.4,15.5,16.4,19.4,17.1,17.6,11.8,13.8,10.9,11.8,13.7,12.5,10.5,2.6,2.8,2.4,3.3,0.0,0.0,0.0,1.7,2.0,0.0,0.0,0.0,0.0,0.0,77.7,84.4,84.4,81.2,81.0,82.2,80.9,70.2,74.4,75.2,73.7,72.5,74.3,73.1,43.4,48.7,44.9,45.3,45.3,47.0,45.9,31.8,38.1,31.8,31.8,34.9,35.1,36.3 +E14000902,9.6,8.8,8.6,9.9,7.1,7.3,3.3,6.1,2.6,2.6,3.5,2.8,1.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,69.6,72.7,72.2,68.0,69.6,68.9,60.3,61.2,63.4,65.0,60.6,61.2,61.5,35.8,34.4,35.4,35.6,32.3,37.9,33.3,25.9,24.4,27.7,24.4,20.5,26.7,23.8 +E14000903,10.1,8.1,8.8,9.0,9.4,0.0,7.4,0.0,0.0,0.0,5.6,5.3,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.6,70.4,68.2,73.6,74.2,72.9,71.2,67.1,59.2,58.5,64.8,66.2,62.3,62.8,37.1,34.1,31.7,38.5,39.4,34.8,35.4,25.1,24.5,26.3,28.2,30.2,27.6,27.3 +E14000904,10.1,8.1,8.8,9.0,9.4,0.0,7.4,0.0,0.0,0.0,5.6,5.3,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.6,70.4,68.2,73.6,74.2,72.9,71.2,67.1,59.2,58.5,64.8,66.2,62.3,62.8,37.1,34.1,31.7,38.5,39.4,34.8,35.4,25.1,24.5,26.3,28.2,30.2,27.6,27.3 +E14000905,13.9,13.0,16.6,16.3,16.0,11.9,13.6,7.7,9.7,9.9,11.1,10.2,5.7,8.9,4.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.7,74.2,74.4,74.4,70.8,77.8,73.7,60.6,63.0,64.1,66.6,60.5,69.1,65.1,37.2,37.0,38.1,42.4,37.6,42.4,39.6,26.5,25.8,26.8,29.1,28.5,31.0,30.9 +E14000906,10.4,12.7,8.8,15.4,10.1,7.4,8.8,6.8,8.7,0.0,10.3,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.6,77.6,74.0,76.3,67.2,71.8,70.9,67.0,69.2,67.3,68.7,61.2,64.2,63.8,39.9,46.7,42.9,45.2,39.1,38.4,38.9,29.8,34.7,31.4,33.8,28.3,29.6,24.6 +E14000907,20.1,23.2,19.8,18.3,19.0,15.7,16.6,13.3,17.4,13.0,11.8,13.7,10.7,12.6,1.9,9.1,2.3,1.8,1.4,0.0,1.3,0.0,0.0,0.0,1.4,0.0,0.0,0.0,75.7,80.5,82.0,84.1,76.3,85.2,79.4,63.5,70.6,73.6,74.3,69.1,73.8,70.8,39.5,38.4,46.4,44.8,46.5,45.5,41.8,27.6,27.8,33.2,33.0,32.1,31.5,31.0 +E14000908,23.0,20.8,23.0,22.1,19.7,13.8,17.6,18.3,13.6,18.5,13.3,14.1,10.7,10.6,9.0,0.0,5.4,0.0,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.7,81.3,84.0,80.3,81.3,85.8,84.2,67.3,69.7,76.0,70.8,73.9,81.0,75.5,38.0,49.8,48.0,46.4,51.0,50.4,48.9,22.5,35.6,34.1,32.6,36.9,38.2,35.7 +E14000909,18.9,19.2,17.5,16.1,19.1,13.7,13.2,10.8,12.6,11.2,9.3,12.9,10.4,8.6,0.0,0.0,0.0,0.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.6,79.8,78.6,80.5,79.5,82.8,79.0,69.0,72.4,69.5,72.8,73.4,76.0,72.0,39.9,44.2,42.4,46.2,45.7,49.3,43.2,28.7,32.8,30.7,34.8,34.7,38.6,31.0 +E14000910,20.9,17.8,17.8,16.0,19.6,14.0,12.7,13.6,12.9,12.3,11.5,14.3,9.9,8.0,3.6,3.4,3.5,0.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.4,79.4,79.4,83.3,82.0,79.9,79.3,67.5,70.4,70.4,76.4,75.3,71.7,71.7,42.3,42.4,43.8,48.5,48.0,40.5,43.6,32.5,30.0,30.3,36.2,33.7,28.5,30.8 +E14000911,13.8,13.9,14.4,11.9,16.4,10.5,9.4,8.5,9.7,9.9,8.4,12.4,6.6,7.0,4.5,4.9,4.4,5.1,5.2,0.0,0.0,0.0,0.0,3.5,0.0,0.0,0.0,0.0,73.0,75.3,75.9,80.9,71.9,71.6,72.7,64.0,67.8,64.4,71.9,64.6,64.8,65.8,36.0,43.0,42.4,46.2,40.6,39.3,40.8,25.2,30.4,29.4,34.5,29.2,28.9,28.8 +E14000912,19.7,20.4,16.0,17.2,17.1,18.9,15.1,15.5,13.1,10.1,11.9,11.1,10.8,11.5,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.6,80.6,81.4,85.7,81.3,80.7,79.2,72.5,72.0,69.9,75.7,74.9,73.6,72.5,43.3,44.1,44.9,46.4,47.8,48.0,46.4,32.2,34.1,31.9,37.5,37.1,36.0,35.8 +E14000913,18.1,15.4,19.1,16.3,12.5,12.9,10.6,11.9,10.3,12.5,11.3,8.3,10.4,7.4,0.0,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.2,79.3,82.6,81.3,75.4,78.3,79.1,70.3,69.7,77.0,72.9,69.5,74.7,70.8,41.9,45.9,53.7,48.9,47.4,51.7,46.7,30.0,34.6,41.9,40.3,34.3,37.8,37.4 +E14000914,23.1,15.2,14.3,14.6,19.2,7.5,9.7,17.1,9.9,10.1,8.5,14.6,6.5,7.7,8.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.7,75.5,72.8,73.5,73.7,67.1,66.2,65.1,63.7,64.6,65.5,65.6,59.3,59.5,34.0,36.6,43.1,36.4,38.4,38.3,39.7,24.8,25.9,32.6,28.2,28.3,28.0,26.0 +E14000915,15.3,13.1,11.7,11.9,11.9,10.2,9.7,10.8,8.8,8.1,8.6,8.3,3.7,7.4,0.0,1.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,79.7,77.1,82.6,76.0,72.6,73.0,68.0,69.1,69.2,75.0,67.4,65.6,66.3,44.0,44.3,47.7,43.5,41.3,40.3,41.9,34.2,32.8,34.1,34.8,32.2,30.0,31.4 +E14000916,18.0,14.6,16.7,16.6,17.3,16.9,13.6,12.2,10.4,12.5,12.2,12.4,10.9,9.1,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,77.0,75.0,77.8,76.1,78.1,72.1,64.5,68.0,66.5,69.3,69.9,70.0,65.9,38.5,43.5,40.1,45.1,41.6,41.3,40.1,27.4,33.8,29.5,28.9,29.9,32.4,29.9 +E14000917,18.7,20.8,19.3,21.5,19.0,16.0,15.0,13.1,13.5,14.9,14.1,13.8,9.5,10.7,0.0,0.0,0.0,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.0,76.7,78.8,80.7,78.1,79.6,81.0,70.3,66.9,69.5,73.5,70.5,70.8,71.4,44.0,41.6,39.8,49.4,45.3,44.1,42.3,31.4,33.1,31.2,36.4,30.8,32.7,31.6 +E14000918,14.3,13.4,16.1,17.9,14.6,9.5,7.1,9.9,8.3,10.9,11.5,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.7,81.5,82.0,81.1,73.7,77.5,80.9,69.5,71.7,73.8,71.9,67.0,69.8,71.3,40.3,47.3,43.1,43.3,43.3,44.5,44.4,30.0,33.9,33.9,30.5,33.9,33.3,28.5 +E14000919,13.1,14.0,14.9,12.2,12.3,11.0,9.5,9.1,9.7,9.0,8.7,9.7,8.1,6.7,5.2,4.7,4.6,4.0,3.8,4.0,3.3,2.0,2.7,3.0,1.8,2.1,2.2,0.0,76.1,77.1,77.5,79.3,73.4,77.2,76.5,68.6,67.4,69.5,70.6,65.5,68.4,68.8,42.5,42.5,43.1,45.9,41.5,40.9,42.8,30.2,31.2,32.3,33.8,30.5,27.9,32.3 +E14000920,13.1,14.0,14.9,12.2,12.3,11.0,9.5,9.1,9.7,9.0,8.7,9.7,8.1,6.7,5.2,4.7,4.6,4.0,3.8,4.0,3.3,2.0,2.7,3.0,1.8,2.1,2.2,0.0,76.1,77.1,77.5,79.3,73.4,77.2,76.5,68.6,67.4,69.5,70.6,65.5,68.4,68.8,42.5,42.5,43.1,45.9,41.5,40.9,42.8,30.2,31.2,32.3,33.8,30.5,27.9,32.3 +E14000921,13.1,14.0,14.9,12.2,12.3,11.0,9.5,9.1,9.7,9.0,8.7,9.7,8.1,6.7,5.2,4.7,4.6,4.0,3.8,4.0,3.3,2.0,2.7,3.0,1.8,2.1,2.2,0.0,76.1,77.1,77.5,79.3,73.4,77.2,76.5,68.6,67.4,69.5,70.6,65.5,68.4,68.8,42.5,42.5,43.1,45.9,41.5,40.9,42.8,30.2,31.2,32.3,33.8,30.5,27.9,32.3 +E14000922,13.1,14.0,14.9,12.2,12.3,11.0,9.5,9.1,9.7,9.0,8.7,9.7,8.1,6.7,5.2,4.7,4.6,4.0,3.8,4.0,3.3,2.0,2.7,3.0,1.8,2.1,2.2,0.0,76.1,77.1,77.5,79.3,73.4,77.2,76.5,68.6,67.4,69.5,70.6,65.5,68.4,68.8,42.5,42.5,43.1,45.9,41.5,40.9,42.8,30.2,31.2,32.3,33.8,30.5,27.9,32.3 +E14000923,13.1,14.0,14.9,12.2,12.3,11.0,9.5,9.1,9.7,9.0,8.7,9.7,8.1,6.7,5.2,4.7,4.6,4.0,3.8,4.0,3.3,2.0,2.7,3.0,1.8,2.1,2.2,0.0,76.1,77.1,77.5,79.3,73.4,77.2,76.5,68.6,67.4,69.5,70.6,65.5,68.4,68.8,42.5,42.5,43.1,45.9,41.5,40.9,42.8,30.2,31.2,32.3,33.8,30.5,27.9,32.3 +E14000924,15.1,15.9,15.8,13.7,13.9,11.6,10.9,9.7,11.0,10.1,5.1,9.7,8.3,6.1,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,78.7,78.4,81.0,79.1,77.3,77.7,66.9,69.6,67.8,70.3,71.3,69.6,68.4,39.4,44.9,41.5,42.6,43.7,42.1,40.4,29.3,33.8,30.8,30.5,30.3,29.3,27.9 +E14000925,13.1,10.4,11.6,10.0,10.2,10.2,8.0,7.3,4.7,7.5,6.5,7.4,7.5,5.9,3.4,0.0,0.0,0.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.5,75.0,74.3,75.4,69.7,70.6,66.5,59.9,61.4,64.7,65.7,60.8,61.8,56.6,37.7,36.5,40.3,35.5,36.1,37.4,33.7,28.7,25.7,27.3,26.5,28.3,26.1,24.0 +E14000926,16.0,16.0,19.5,20.4,16.7,11.6,13.2,9.9,10.4,13.6,12.2,11.4,9.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,78.2,76.6,79.6,75.1,79.9,77.9,68.6,69.9,67.8,70.5,65.0,73.5,69.1,41.6,43.7,43.9,40.5,42.3,50.6,45.8,31.4,32.9,35.1,31.3,32.0,39.1,37.2 +E14000927,15.7,12.0,16.1,11.8,15.8,11.2,10.5,10.0,7.6,11.6,6.9,11.7,0.0,7.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.9,77.3,76.1,77.6,72.2,72.0,77.1,70.4,68.5,66.0,70.2,66.6,65.6,68.8,42.5,43.9,41.5,43.5,47.2,41.1,40.5,32.6,28.9,30.8,33.1,35.9,31.0,28.8 +E14000928,16.1,17.4,17.6,17.3,16.4,17.9,13.9,11.9,11.5,12.4,11.0,12.0,13.5,9.6,0.0,0.0,0.0,2.0,3.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.4,84.4,81.5,83.6,80.9,84.1,82.5,73.1,77.1,72.4,75.1,71.6,77.3,73.1,47.0,45.9,44.5,48.8,48.3,50.7,46.1,34.2,32.6,31.2,37.0,37.5,39.5,35.4 +E14000929,22.6,18.8,20.5,15.6,17.2,16.7,14.5,16.9,12.2,13.3,9.9,11.0,12.6,10.0,7.4,5.4,0.0,0.0,4.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.8,79.1,79.5,78.8,75.5,78.1,78.9,70.4,69.8,70.1,69.1,68.3,69.5,71.3,45.0,42.2,42.5,43.3,41.5,42.6,43.4,33.3,31.2,30.1,32.1,32.5,32.8,33.3 +E14000930,12.1,12.0,9.2,10.6,14.8,9.2,7.8,8.4,9.2,7.0,8.4,11.2,7.2,0.0,3.8,3.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.8,68.3,67.6,69.1,63.8,62.5,62.3,63.6,59.5,62.3,63.5,56.8,55.4,53.1,37.6,30.2,37.4,32.8,34.3,31.5,31.2,28.4,20.3,26.9,24.5,27.2,20.1,22.6 +E14000931,13.0,11.7,15.7,14.2,13.5,12.2,9.4,8.6,7.1,10.1,9.7,8.5,0.0,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.6,75.3,73.9,82.2,78.3,79.3,78.8,62.9,64.7,66.2,70.5,68.4,73.3,67.5,36.0,37.2,37.9,44.0,41.9,47.5,38.1,25.1,25.1,27.6,31.8,29.7,32.9,25.8 +E14000932,20.5,14.9,14.0,16.3,16.9,11.2,10.9,11.5,10.3,10.3,10.2,11.6,6.0,7.7,0.0,0.0,0.0,0.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.3,77.8,79.4,82.8,80.8,79.6,82.5,70.4,69.1,71.0,74.9,73.1,72.9,72.8,43.8,41.4,45.1,47.0,42.1,45.6,46.2,32.1,31.9,34.7,34.3,31.7,34.1,33.6 +E14000933,11.6,12.6,13.7,9.1,11.6,8.4,8.7,7.0,8.6,9.2,2.7,7.9,3.5,2.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.3,73.9,71.6,75.4,66.3,74.7,72.7,63.0,67.2,61.9,67.6,59.9,65.3,63.4,35.6,39.3,39.1,39.3,34.9,37.5,39.4,27.0,29.4,28.7,27.9,25.0,26.2,29.4 +E14000934,36.2,41.4,35.1,34.3,36.4,31.6,28.2,27.4,35.6,30.9,25.0,29.8,24.7,21.8,13.9,21.0,18.0,14.0,15.7,11.7,12.2,10.6,13.1,11.6,3.5,2.4,1.8,2.2,80.5,86.5,79.3,83.4,77.8,83.4,81.7,69.9,77.9,69.9,73.5,70.3,74.7,72.7,44.0,46.4,40.9,46.0,47.8,47.6,46.6,29.4,30.8,29.0,32.3,34.4,34.0,33.4 +E14000935,16.7,15.6,14.9,13.6,15.3,10.9,8.4,10.7,8.6,11.0,7.0,10.5,8.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.4,83.0,77.2,76.1,74.9,81.2,80.0,66.4,70.5,68.0,66.7,65.5,73.5,72.1,40.7,44.1,42.2,42.0,37.4,43.8,43.0,30.9,31.4,31.5,31.9,27.4,32.1,34.7 +E14000936,19.9,17.7,19.7,21.2,19.8,11.0,13.2,13.9,11.6,14.3,14.4,14.0,8.1,8.9,6.1,5.7,6.2,5.7,0.0,0.0,0.0,3.0,3.0,3.5,3.1,0.0,0.0,0.0,79.0,81.3,81.4,83.2,83.2,82.7,83.0,68.9,72.2,73.0,75.0,77.5,77.3,73.8,41.0,45.3,48.2,47.4,46.2,47.6,48.2,29.8,33.1,36.4,36.2,35.0,36.9,37.6 +E14000937,28.1,29.5,29.4,28.0,28.5,21.3,21.5,19.0,22.7,23.3,19.0,21.9,14.4,15.8,7.7,12.4,12.3,8.3,9.6,4.4,4.3,3.2,4.5,3.9,0.0,0.0,0.0,0.0,76.0,83.8,79.9,82.8,82.0,80.3,79.9,68.3,74.4,69.2,72.0,74.5,71.3,73.0,42.9,45.2,40.0,45.2,50.4,46.8,47.9,30.8,30.5,29.7,32.4,36.0,35.1,36.1 +E14000938,16.5,13.8,12.8,14.7,12.0,12.8,15.3,9.1,9.7,9.5,9.6,8.6,9.8,9.1,2.9,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,79.7,78.5,83.8,78.0,86.5,81.7,71.8,69.9,71.0,76.4,70.8,75.4,74.0,46.6,41.4,46.3,49.6,46.5,51.2,48.4,36.2,30.4,34.8,36.1,32.5,36.9,39.6 +E14000939,19.5,17.4,16.1,16.4,17.0,10.4,12.1,11.0,13.4,9.5,11.3,12.3,5.6,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.9,69.6,69.7,71.8,70.6,67.6,76.1,59.1,61.6,61.0,59.4,62.0,58.0,68.9,35.0,37.5,37.9,36.1,37.9,33.6,40.8,26.5,27.7,28.2,28.2,28.5,23.0,30.6 +E14000940,17.4,18.8,16.6,15.7,15.6,9.6,11.8,10.9,13.0,12.7,12.0,11.2,1.9,8.5,0.0,0.0,4.9,0.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.7,79.3,76.5,79.7,76.8,81.6,76.7,64.1,67.4,67.4,68.6,69.9,74.1,70.5,37.9,41.3,38.5,40.4,46.1,45.3,41.5,24.9,29.0,26.4,31.0,34.1,34.0,29.5 +E14000941,26.7,25.0,20.8,21.8,19.1,18.1,20.1,18.7,16.9,12.3,14.6,14.3,10.9,13.8,6.0,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.1,83.0,84.4,81.7,73.6,81.6,83.7,64.3,73.6,76.4,71.5,66.9,74.1,75.7,39.8,44.6,46.0,44.5,39.9,45.5,48.2,31.7,32.3,34.3,32.4,30.9,35.6,38.1 +E14000942,15.2,15.1,13.3,15.2,14.3,8.7,9.4,10.8,9.4,10.4,10.3,9.4,5.7,6.3,4.1,4.3,5.1,4.6,3.3,1.5,0.0,0.0,0.0,3.4,3.0,2.1,0.0,0.0,76.7,76.4,75.6,77.1,74.1,71.8,74.9,67.0,64.4,65.2,67.5,67.3,64.4,67.5,39.5,38.1,38.0,38.8,43.7,39.1,43.8,29.1,28.8,28.0,27.9,31.3,27.2,33.8 +E14000943,18.8,16.9,15.3,15.0,14.0,12.6,10.5,12.7,12.0,10.8,9.5,10.4,7.6,6.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.3,78.1,77.4,79.4,78.0,77.5,78.4,69.0,68.4,67.0,68.8,69.7,68.6,70.9,42.7,39.9,38.2,40.5,45.6,43.8,42.9,29.4,29.3,28.0,31.6,30.8,33.3,30.4 +E14000944,11.1,11.8,11.5,9.5,9.2,10.6,7.9,9.2,7.2,9.6,6.6,7.2,8.0,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.7,71.8,76.8,79.0,75.7,72.6,69.7,65.7,64.1,68.2,70.1,67.3,64.1,62.3,41.5,38.4,37.4,42.8,40.9,39.6,39.5,31.0,28.8,26.7,34.6,33.5,25.6,29.9 +E14000945,11.0,14.5,14.1,9.3,12.1,12.0,8.8,5.8,8.1,8.2,6.0,8.1,8.2,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.5,78.6,77.8,77.6,73.7,74.6,75.4,65.6,67.4,66.7,66.1,64.0,65.0,65.7,35.8,38.6,37.4,37.1,37.3,40.0,38.0,22.5,26.2,26.6,26.8,23.8,28.7,30.4 +E14000946,19.2,21.1,17.5,18.2,17.4,14.7,15.2,12.5,12.8,9.9,11.4,12.5,8.9,11.3,0.6,0.5,0.6,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.5,84.2,78.7,77.9,78.9,81.3,80.4,70.0,71.2,68.1,70.0,73.5,74.9,71.9,39.7,45.2,44.0,43.6,45.6,46.7,44.5,30.9,35.9,32.3,34.7,34.2,36.3,30.7 +E14000947,18.9,21.5,19.2,18.7,14.2,15.6,15.4,13.7,15.9,13.8,13.3,9.5,10.8,11.8,6.4,7.3,7.4,0.0,0.0,0.0,0.0,4.3,0.0,0.0,0.0,0.0,0.0,0.0,75.7,79.9,76.0,77.1,73.0,79.8,71.6,65.9,70.4,64.9,68.1,64.1,71.9,64.9,38.8,44.4,37.5,41.3,39.3,41.2,41.5,29.3,33.6,29.2,30.6,29.3,31.6,31.0 +E14000948,17.8,16.5,16.9,16.3,16.1,13.1,14.8,12.4,10.7,10.9,10.6,11.9,8.6,10.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.4,79.0,80.5,82.0,72.9,77.7,79.8,70.1,71.0,72.4,73.3,66.6,70.3,73.6,44.8,46.3,47.9,48.1,45.5,46.1,44.2,34.6,34.2,36.3,35.2,34.8,34.4,33.6 +E14000949,16.0,20.2,15.8,14.4,15.9,11.7,13.0,8.4,13.2,10.4,9.2,12.0,7.9,8.7,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.4,82.0,80.5,80.7,77.5,77.1,81.0,67.1,70.5,71.8,71.3,67.2,69.8,70.1,39.2,44.0,45.7,43.1,41.5,42.0,42.5,25.9,30.1,31.0,32.9,31.0,30.0,31.2 +E14000950,14.6,13.7,11.8,14.8,14.8,11.6,8.8,9.4,9.7,8.5,8.8,11.1,6.9,6.6,1.9,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,80.4,78.2,82.6,79.0,79.4,82.1,68.7,70.6,70.8,75.6,73.2,73.1,73.9,41.2,44.5,47.8,50.0,45.4,44.4,49.1,30.0,33.7,36.8,37.8,35.1,31.7,37.1 +E14000951,14.2,13.9,16.0,11.8,15.5,11.2,14.1,8.7,9.7,9.4,7.9,11.9,4.1,9.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.3,80.0,81.8,82.8,79.0,80.0,80.8,68.7,70.6,70.9,72.8,71.7,72.3,72.1,42.5,41.0,43.2,45.0,46.1,46.1,43.4,29.8,32.7,29.5,34.6,33.0,32.2,31.6 +E14000952,18.5,18.5,15.3,18.7,17.3,13.6,14.2,12.4,12.6,9.4,11.6,12.1,10.1,8.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,77.5,76.9,77.6,74.2,76.7,75.1,60.8,68.4,68.8,68.3,66.1,70.1,66.9,34.6,42.9,42.3,38.9,41.3,38.7,43.3,25.0,31.6,31.3,28.9,30.4,28.6,31.2 +E14000953,18.8,19.7,17.9,21.3,25.5,17.5,18.2,12.5,13.4,8.7,13.6,18.0,12.8,13.6,0.0,0.0,0.0,5.9,8.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.2,83.2,81.2,87.3,81.3,82.9,88.1,70.2,71.3,74.2,78.9,71.9,76.2,79.7,41.1,44.1,43.3,49.3,43.5,44.7,52.4,26.1,32.6,29.7,37.3,31.5,32.4,37.8 +E14000954,19.7,20.4,16.0,17.2,17.1,18.9,15.1,15.5,13.1,10.1,11.9,11.1,10.8,11.5,0.0,7.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.6,80.6,81.4,85.7,81.3,80.7,79.2,72.5,72.0,69.9,75.7,74.9,73.6,72.5,43.3,44.1,44.9,46.4,47.8,48.0,46.4,32.2,34.1,31.9,37.5,37.1,36.0,35.8 +E14000955,19.9,19.7,14.9,20.8,17.3,16.2,13.5,14.6,14.6,12.4,16.6,12.7,12.9,12.2,8.0,8.6,7.6,10.5,0.0,0.0,0.0,5.1,6.0,0.0,0.0,0.0,0.0,0.0,78.0,80.2,80.5,82.6,72.8,77.0,78.4,71.9,71.0,71.9,74.1,66.1,66.5,71.9,47.2,44.2,47.3,48.5,41.4,40.4,46.1,37.6,35.6,36.1,33.7,30.0,26.7,34.1 +E14000956,19.9,19.7,14.9,20.8,17.3,16.2,13.5,14.6,14.6,12.4,16.6,12.7,12.9,12.2,8.0,8.6,7.6,10.5,0.0,0.0,0.0,5.1,6.0,0.0,0.0,0.0,0.0,0.0,78.0,80.2,80.5,82.6,72.8,77.0,78.4,71.9,71.0,71.9,74.1,66.1,66.5,71.9,47.2,44.2,47.3,48.5,41.4,40.4,46.1,37.6,35.6,36.1,33.7,30.0,26.7,34.1 +E14000957,21.0,15.7,15.2,15.0,16.4,9.9,15.1,15.0,11.2,12.4,8.3,12.2,6.5,10.1,7.3,5.3,0.0,0.0,0.0,0.0,0.0,4.1,0.0,0.0,0.0,0.0,0.0,0.0,81.3,78.9,78.8,75.6,73.2,74.5,78.4,74.1,70.8,69.8,67.4,67.4,66.8,72.4,46.0,44.5,45.2,46.0,41.1,43.9,47.9,35.2,32.2,34.6,32.0,28.3,34.7,35.9 +E14000958,18.0,14.6,16.7,16.6,17.3,16.9,13.6,12.2,10.4,12.5,12.2,12.4,10.9,9.1,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,77.0,75.0,77.8,76.1,78.1,72.1,64.5,68.0,66.5,69.3,69.9,70.0,65.9,38.5,43.5,40.1,45.1,41.6,41.3,40.1,27.4,33.8,29.5,28.9,29.9,32.4,29.9 +E14000959,17.6,20.3,19.3,15.2,18.9,13.3,16.2,13.5,14.2,16.1,11.9,12.9,9.2,12.5,0.0,0.0,7.5,0.0,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.2,77.4,78.4,80.5,73.7,75.0,81.1,70.7,67.8,70.3,68.5,65.4,67.5,72.1,43.1,41.0,40.1,43.8,37.9,36.9,42.7,29.1,28.0,28.1,30.3,26.1,27.0,30.9 +E14000960,22.9,21.8,16.7,18.5,22.5,19.0,16.8,15.0,13.9,11.1,12.4,14.5,12.7,11.7,5.5,4.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,84.3,85.5,84.6,83.8,85.2,83.7,70.5,75.6,76.3,77.4,76.0,78.0,78.0,45.7,46.9,49.9,47.3,48.8,52.7,53.0,32.6,35.5,35.2,31.7,37.1,36.3,40.6 +E14000961,16.5,13.8,12.8,14.7,12.0,12.8,15.3,9.1,9.7,9.5,9.6,8.6,9.8,9.1,2.9,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,79.7,78.5,83.8,78.0,86.5,81.7,71.8,69.9,71.0,76.4,70.8,75.4,74.0,46.6,41.4,46.3,49.6,46.5,51.2,48.4,36.2,30.4,34.8,36.1,32.5,36.9,39.6 +E14000962,12.2,8.8,7.9,9.7,10.9,8.0,7.3,7.1,7.1,0.0,8.3,9.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6,72.0,75.5,77.2,73.0,78.2,69.1,65.6,62.6,65.0,66.9,63.8,69.5,61.5,40.9,39.1,37.1,38.4,35.3,37.6,35.2,29.0,29.5,26.7,27.0,24.2,27.9,25.9 +E14000963,12.6,9.3,9.1,10.0,11.2,6.3,7.4,7.4,7.2,2.5,8.4,9.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.9,72.5,76.0,76.4,72.2,74.7,69.0,63.9,62.7,65.8,66.6,63.5,65.8,61.4,39.4,38.4,37.8,37.5,36.0,35.7,34.8,28.1,29.0,27.5,27.2,25.6,26.2,25.5 +E14000964,17.2,14.4,13.6,15.3,12.4,13.2,15.8,9.9,10.2,10.2,10.2,9.0,10.1,9.7,3.5,5.2,0.8,0.5,0.0,0.0,0.0,0.6,0.0,0.6,0.4,0.0,0.0,0.0,81.2,79.9,78.7,83.9,78.2,86.6,81.7,72.0,70.3,71.3,76.6,71.2,75.7,74.1,46.9,42.0,46.8,50.2,47.1,51.7,48.7,36.5,31.0,35.2,36.7,33.2,37.4,39.8 +E14000965,13.4,15.2,13.6,13.8,14.5,12.6,11.2,8.4,8.9,9.2,9.5,10.5,7.9,7.1,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.1,79.3,76.7,78.7,75.3,78.3,75.7,69.0,67.5,67.8,66.8,65.4,69.5,65.2,40.4,38.4,39.0,39.0,39.5,41.9,38.0,28.9,25.9,28.1,28.9,27.7,30.3,29.7 +E14000966,12.9,10.7,9.6,9.5,11.2,10.0,9.3,9.4,7.3,6.9,6.2,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.1,78.4,75.3,78.4,73.6,82.6,77.9,58.0,67.0,61.9,69.2,63.9,73.3,69.2,34.0,36.9,37.8,45.0,39.2,42.2,44.3,26.6,26.3,30.6,34.0,27.1,33.1,32.7 +E14000967,9.3,10.7,9.4,12.2,9.2,6.7,8.8,6.6,7.8,6.4,8.9,7.2,3.4,5.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.3,71.2,72.3,76.8,70.1,71.0,68.5,65.7,63.5,62.2,67.6,61.3,60.9,59.7,35.2,38.6,33.9,39.1,35.7,33.2,34.0,27.3,28.9,25.2,28.4,26.7,24.5,23.4 +E14000968,14.9,18.6,18.1,18.2,16.2,12.3,14.6,9.3,12.7,11.9,12.0,13.1,6.5,11.4,0.0,0.0,6.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.6,76.3,78.2,78.8,70.7,76.2,76.9,69.6,67.3,69.6,67.7,62.8,71.3,68.1,43.2,45.6,45.4,38.0,39.8,44.7,40.1,31.8,32.8,33.7,28.8,30.8,30.5,28.2 +E14000969,14.8,17.4,15.1,15.0,15.1,12.2,13.8,11.1,11.5,10.2,9.2,11.7,8.6,8.1,5.3,5.4,5.0,4.8,4.0,3.6,3.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.0,81.6,78.8,77.9,74.7,80.7,78.0,73.5,72.1,68.7,71.0,66.6,72.3,70.6,42.5,43.9,41.6,43.1,43.0,41.2,42.4,29.4,32.3,32.1,29.7,33.4,30.6,31.2 +E14000970,13.2,11.0,15.2,15.4,15.5,7.5,7.1,8.7,7.8,9.1,11.0,9.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.4,73.9,73.0,77.4,79.3,76.4,69.8,66.4,65.6,65.7,69.9,70.1,68.3,62.6,38.6,39.8,41.7,37.5,42.4,37.3,38.1,27.5,31.5,31.2,25.6,29.6,26.3,26.6 +E14000971,13.2,11.0,15.2,15.4,15.5,7.5,7.1,8.7,7.8,9.1,11.0,9.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.4,73.9,73.0,77.4,79.3,76.4,69.8,66.4,65.6,65.7,69.9,70.1,68.3,62.6,38.6,39.8,41.7,37.5,42.4,37.3,38.1,27.5,31.5,31.2,25.6,29.6,26.3,26.6 +E14000972,7.7,8.3,11.0,7.4,9.1,9.3,6.4,4.5,5.7,6.3,6.6,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.7,69.3,73.5,69.7,68.5,67.2,71.2,59.8,59.9,63.9,59.4,59.5,57.0,62.8,31.9,35.2,38.5,38.2,30.9,30.6,33.1,23.4,26.6,29.4,28.6,22.5,21.8,25.0 +E14000973,7.9,8.4,11.0,7.6,9.2,9.2,6.6,4.8,5.2,6.4,6.6,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.6,69.6,73.6,70.3,69.0,68.3,71.0,60.1,60.2,64.0,59.9,59.9,58.2,62.6,32.2,35.8,38.5,38.4,31.9,31.5,33.3,23.5,26.9,29.4,29.0,23.4,22.5,24.8 +E14000974,7.7,8.3,11.0,7.4,9.1,9.3,6.4,4.5,5.7,6.3,6.6,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.7,69.3,73.5,69.7,68.5,67.2,71.2,59.8,59.9,63.9,59.4,59.5,57.0,62.8,31.9,35.2,38.5,38.2,30.9,30.6,33.1,23.4,26.6,29.4,28.6,22.5,21.8,25.0 +E14000975,13.7,13.4,12.2,14.8,13.9,11.0,11.5,9.5,5.8,8.9,10.2,10.4,4.2,4.8,2.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.5,77.4,75.3,78.4,75.7,81.3,73.6,68.2,66.0,67.0,66.7,65.7,72.9,63.4,40.7,39.5,40.0,41.4,41.8,42.7,37.3,30.7,27.1,29.8,32.1,32.1,31.0,26.7 +E14000976,8.1,8.7,9.9,7.6,7.7,0.0,5.9,5.3,4.9,7.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.4,72.2,72.6,70.4,70.8,73.6,70.4,61.9,62.6,63.0,60.2,60.2,64.6,60.7,33.4,36.0,35.5,35.6,33.7,40.2,33.8,23.5,26.1,25.2,24.2,24.9,30.4,25.5 +E14000977,14.8,14.9,21.3,18.6,18.3,15.0,11.6,8.0,9.7,14.6,11.9,12.7,11.4,6.5,0.0,0.0,0.0,0.0,6.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.2,83.2,81.6,79.5,84.1,85.2,81.1,67.8,73.7,68.8,72.5,71.8,78.0,72.5,40.2,47.4,46.2,45.2,47.6,49.0,46.1,29.3,33.1,32.3,31.7,36.0,36.8,37.5 +E14000978,22.9,24.1,20.7,25.5,35.5,24.6,26.8,16.8,18.9,16.7,19.1,27.4,18.8,20.6,9.5,11.7,11.1,12.0,11.6,9.0,12.5,5.4,6.8,7.8,7.1,6.3,0.0,0.0,82.5,84.0,84.8,85.1,83.3,84.2,81.3,77.7,78.9,79.1,79.1,77.1,77.5,76.1,52.5,55.1,55.1,55.1,50.2,56.7,53.5,41.4,43.1,41.3,41.5,37.9,39.6,41.2 +E14000979,18.4,17.0,18.4,15.1,22.2,16.8,14.6,12.0,13.2,11.1,10.1,14.8,10.2,10.9,6.6,4.6,5.3,5.3,7.5,4.2,4.5,0.0,0.0,0.0,0.0,5.5,0.0,0.0,79.5,79.0,79.4,82.3,77.6,76.8,78.5,65.5,69.5,69.7,72.9,70.5,69.9,69.6,41.9,42.3,43.5,43.3,43.6,40.0,44.1,29.1,30.6,29.8,30.7,28.8,26.9,32.0 +E14000980,22.3,18.0,17.9,17.0,20.8,19.8,12.6,15.1,13.6,13.4,10.6,12.8,12.3,9.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.7,79.9,83.4,86.3,82.0,79.9,85.6,71.3,69.4,75.1,76.7,72.1,72.3,77.4,44.5,43.3,49.5,50.6,46.8,45.8,46.7,33.5,31.3,39.2,37.2,37.7,32.5,36.6 +E14000981,25.7,22.3,23.7,21.6,20.3,17.5,19.4,17.3,17.1,16.4,14.6,17.4,13.0,14.4,7.3,7.6,7.0,6.0,7.8,0.0,0.0,4.2,3.2,3.6,3.8,0.0,0.0,0.0,80.2,79.6,78.1,80.6,79.4,83.0,84.9,71.0,71.6,69.5,72.1,73.1,76.6,74.6,43.4,44.9,46.3,45.4,50.8,47.6,47.1,34.0,31.8,35.0,32.7,36.1,36.2,36.2 +E14000982,8.5,11.6,11.8,9.3,10.9,6.9,11.6,6.6,7.2,9.1,6.2,7.1,0.0,7.1,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.2,73.5,77.4,71.7,74.6,75.2,73.5,61.1,63.5,69.2,63.0,66.2,67.6,63.5,38.0,34.9,44.2,39.1,39.3,42.5,39.6,27.2,25.4,30.4,31.1,27.1,31.9,29.3 +E14000983,17.9,19.6,17.0,18.5,14.9,14.8,14.8,10.8,12.0,11.9,12.8,11.9,10.0,9.4,0.5,0.6,0.0,0.0,0.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.2,78.2,79.6,81.7,81.1,81.2,84.2,63.2,67.7,67.7,69.9,72.5,73.7,72.6,38.3,44.0,39.5,38.7,50.9,43.3,39.9,26.1,31.4,27.1,26.4,34.6,31.4,27.9 +E14000984,16.0,8.4,10.8,12.2,14.8,7.9,13.5,8.8,0.0,0.0,7.4,11.4,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.5,80.1,76.7,80.8,73.5,73.6,75.4,70.5,67.0,68.9,73.3,65.6,67.4,69.1,44.1,45.4,40.4,46.3,39.9,40.4,39.4,32.9,35.1,31.4,35.7,30.6,33.1,26.5 +E14000985,12.7,13.6,13.6,8.9,10.9,9.5,7.6,9.0,9.9,9.9,6.7,8.0,6.2,4.8,4.3,4.6,4.8,2.4,3.6,3.2,2.0,2.8,3.0,3.1,0.0,2.3,1.4,0.0,73.3,73.8,72.6,75.4,64.7,68.7,65.2,63.2,64.0,62.4,65.3,56.5,60.4,58.1,39.4,39.5,36.2,38.2,34.5,35.6,34.2,31.2,30.0,25.9,29.8,24.8,25.0,24.4 +E14000986,14.8,16.8,11.5,14.8,14.4,10.4,9.4,9.5,11.7,7.4,9.8,9.4,4.2,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.6,76.1,75.8,79.4,75.1,76.5,74.7,61.8,66.1,67.9,69.1,64.5,69.0,67.2,32.5,39.1,38.3,42.5,42.5,43.9,41.5,23.0,27.5,28.4,30.6,31.5,34.2,32.8 +E14000987,17.9,19.0,16.8,13.0,14.5,12.5,12.7,10.4,14.2,11.2,8.7,10.0,9.6,9.8,1.5,2.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,82.0,80.8,77.8,77.6,83.6,78.3,67.0,73.1,71.2,67.1,68.3,78.5,69.3,36.9,43.7,43.5,42.1,42.0,46.8,43.1,26.4,32.3,31.8,28.7,32.8,33.2,31.7 +E14000988,21.2,29.2,19.2,21.2,17.3,15.6,20.9,15.1,22.2,14.4,14.5,10.7,11.0,14.6,6.4,12.2,5.8,5.0,0.0,0.0,0.0,0.0,7.5,0.0,3.0,0.0,0.0,0.0,79.1,85.2,75.0,81.3,81.2,77.6,80.3,71.5,76.6,67.3,72.5,73.6,69.4,72.3,45.6,49.3,42.8,45.8,49.9,40.5,47.1,31.9,35.2,31.0,34.9,37.6,32.1,33.9 +E14000989,22.2,13.0,12.0,16.4,12.6,10.9,9.7,17.5,8.6,7.7,11.7,9.2,6.7,6.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.8,69.3,75.8,78.4,74.6,74.5,69.4,61.4,60.0,66.2,70.2,65.1,68.1,63.1,36.4,37.5,42.1,41.1,39.3,40.9,36.3,26.0,28.9,31.9,32.7,29.5,31.6,27.4 +E14000990,20.0,20.5,17.2,18.3,17.1,14.8,15.8,14.1,16.9,12.4,13.8,13.2,11.5,10.5,2.5,9.5,7.1,2.4,5.8,0.0,0.0,1.9,1.5,1.2,1.9,0.0,0.0,0.0,80.0,79.3,79.1,83.0,76.7,80.5,78.4,71.6,69.4,71.1,73.3,67.8,70.9,72.1,42.6,43.3,40.1,44.9,44.8,42.3,46.8,30.9,31.8,29.9,33.5,29.9,31.9,36.0 +E14000991,20.2,15.5,18.0,14.7,21.3,15.9,15.2,12.9,12.0,14.2,9.2,15.0,10.6,10.3,0.0,4.7,0.0,0.0,6.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.1,82.4,86.0,86.8,83.6,84.0,83.8,75.5,72.1,79.0,79.3,74.7,74.8,75.2,44.8,44.6,46.6,47.8,51.2,50.4,46.4,35.5,34.8,35.4,36.4,40.5,36.9,34.8 +E14000992,21.8,13.2,12.6,16.7,12.9,10.9,9.9,17.0,8.7,8.1,11.7,9.4,6.9,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.3,70.0,75.8,78.5,74.7,74.9,70.0,62.0,60.7,66.3,70.3,65.1,68.5,63.5,36.8,37.9,42.2,41.0,39.6,41.6,36.9,26.4,29.2,32.1,32.6,29.7,32.2,28.1 +E14000993,18.1,17.9,16.6,18.7,15.7,13.2,12.5,11.3,14.6,12.2,11.4,11.5,8.1,7.9,0.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.5,82.1,80.3,81.5,78.8,78.6,80.3,69.9,73.9,72.1,73.1,72.0,73.7,73.0,42.1,48.1,47.9,44.9,47.9,46.5,46.0,31.0,34.4,33.8,32.9,38.4,35.4,35.5 +E14000994,20.5,21.3,19.4,21.9,16.9,12.4,13.2,12.9,14.3,15.7,17.6,12.2,8.9,9.9,6.3,7.3,0.0,0.0,0.0,0.0,0.0,0.0,3.7,0.0,0.0,0.0,0.0,0.0,79.5,81.6,78.3,82.1,76.1,77.5,79.2,67.7,73.6,70.2,73.0,68.8,68.6,69.0,40.7,40.0,42.2,42.7,42.1,44.7,45.7,28.8,28.8,29.4,30.5,30.0,29.4,32.9 +E14000995,10.5,12.5,15.6,8.8,10.4,8.8,7.2,7.1,8.4,10.0,0.0,6.3,5.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.9,71.4,70.0,74.0,64.4,71.0,71.5,61.6,65.0,60.5,64.1,57.3,61.2,61.9,37.1,36.7,38.2,36.8,31.1,35.4,41.2,28.0,26.0,26.8,26.6,21.3,26.2,32.3 +E14000996,23.1,17.7,18.8,18.3,16.2,13.4,17.1,18.2,12.6,13.9,11.2,10.6,8.8,10.4,5.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,83.8,84.6,85.6,80.5,81.6,80.3,71.4,73.7,75.0,80.0,73.4,72.8,74.2,45.0,44.9,51.1,49.4,47.8,47.1,47.7,32.8,35.2,37.8,36.3,34.1,36.5,34.9 +E14000997,12.9,15.8,15.5,15.8,18.5,12.9,11.4,7.3,10.1,10.2,9.1,13.2,7.6,6.4,0.0,0.0,0.0,0.0,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.6,82.1,83.3,83.6,76.1,79.9,79.0,70.7,72.7,73.7,74.0,67.4,72.5,68.6,43.2,47.2,44.3,46.1,43.5,44.4,40.3,32.9,32.7,33.0,32.4,32.1,32.8,29.3 +E14000998,26.3,22.9,25.8,29.7,32.6,27.5,28.0,19.8,17.2,22.5,23.8,26.5,20.7,20.7,10.4,7.6,11.1,13.6,14.5,9.7,11.4,0.0,0.0,6.5,9.7,0.0,0.0,7.8,85.0,87.3,87.0,89.5,79.6,86.6,86.1,80.1,82.9,81.3,85.8,74.0,79.2,82.2,53.1,54.0,60.1,61.8,53.1,57.2,61.1,40.4,40.7,49.3,48.6,38.9,40.9,48.3 +E14000999,12.8,14.3,12.9,10.6,11.6,5.8,8.0,7.5,9.6,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.5,83.3,77.0,80.9,76.9,77.3,78.9,74.1,70.8,70.3,73.9,73.1,69.5,70.0,42.5,45.1,48.5,48.2,48.5,49.6,41.3,30.3,37.1,36.5,35.2,37.4,36.4,31.8 +E14001000,13.7,17.9,17.4,14.1,14.4,11.5,9.6,8.0,10.1,9.0,9.4,10.0,5.9,2.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.3,81.1,81.9,80.5,79.7,79.4,79.8,65.4,71.5,73.3,73.0,71.4,70.6,72.0,41.7,44.0,47.4,45.6,46.5,45.1,46.3,30.8,33.8,36.2,33.5,34.8,35.4,35.3 +E14001001,16.3,15.0,14.9,14.5,14.8,9.5,9.0,10.6,9.9,9.3,5.0,5.5,4.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.3,83.7,79.6,83.9,79.5,81.0,82.5,71.3,72.3,72.1,74.5,75.2,74.0,74.3,41.9,46.6,49.1,45.8,50.9,48.8,47.5,28.9,37.4,36.4,33.3,39.6,37.4,37.8 +E14001002,18.9,18.5,15.6,19.6,18.6,18.1,17.4,13.8,15.1,11.2,15.0,14.2,12.1,12.0,9.3,8.2,6.7,9.2,0.0,0.0,5.7,4.5,6.2,0.0,0.0,0.0,0.0,0.0,81.0,82.8,78.8,82.8,77.1,77.3,85.4,75.3,76.1,73.2,76.1,69.3,70.5,78.5,49.5,48.2,50.4,48.2,45.8,47.8,53.1,35.2,38.5,38.7,35.2,31.9,34.3,37.0 +E14001003,16.5,13.8,12.8,14.7,12.0,12.8,15.3,9.1,9.7,9.5,9.6,8.6,9.8,9.1,2.9,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.0,79.7,78.5,83.8,78.0,86.5,81.7,71.8,69.9,71.0,76.4,70.8,75.4,74.0,46.6,41.4,46.3,49.6,46.5,51.2,48.4,36.2,30.4,34.8,36.1,32.5,36.9,39.6 +E14001004,12.6,17.5,13.5,19.4,16.0,11.7,13.2,7.1,11.4,9.8,14.1,10.4,7.1,8.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.2,84.2,83.4,87.4,79.2,83.6,82.0,67.1,76.6,76.4,76.6,74.2,76.6,76.9,45.5,46.1,48.8,48.4,46.0,52.4,52.4,33.9,34.9,34.4,33.3,37.6,37.6,40.5 +E14001005,32.3,30.4,34.1,36.3,31.7,26.7,24.8,26.6,21.7,26.5,26.8,23.8,18.4,18.4,13.1,10.4,13.7,12.5,14.3,6.9,12.9,7.8,0.0,8.9,6.8,8.4,0.0,7.8,85.9,88.3,87.8,90.1,87.6,87.6,85.4,77.7,82.6,83.1,86.0,83.2,79.3,77.8,55.1,54.2,60.0,58.3,57.4,55.7,52.7,40.1,40.1,46.4,39.7,42.5,39.7,36.5 +E14001006,17.5,18.5,14.0,14.4,18.3,10.2,10.7,11.7,13.4,8.9,11.6,13.1,7.3,7.0,0.0,6.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.3,79.1,76.5,76.0,76.3,83.9,76.9,70.1,71.3,68.9,66.3,68.8,76.8,70.6,44.7,45.2,45.4,40.2,43.0,45.3,43.2,37.0,33.8,32.9,29.1,31.7,34.8,33.0 +E14001007,10.4,12.1,8.8,17.0,11.0,7.1,9.1,6.4,9.7,0.0,11.5,7.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.0,79.1,73.9,75.7,68.4,70.6,70.2,66.5,70.2,68.1,68.6,63.1,62.5,63.3,39.9,48.2,44.0,44.1,40.6,34.8,35.7,29.4,35.1,31.6,32.5,29.3,27.8,21.4 +E14001008,22.9,24.1,20.7,25.5,35.5,24.6,26.8,16.8,18.9,16.7,19.1,27.4,18.8,20.6,9.5,11.7,11.1,12.0,11.6,9.0,12.5,5.4,6.8,7.8,7.1,6.3,0.0,0.0,82.5,84.0,84.8,85.1,83.3,84.2,81.3,77.7,78.9,79.1,79.1,77.1,77.5,76.1,52.5,55.1,55.1,55.1,50.2,56.7,53.5,41.4,43.1,41.3,41.5,37.9,39.6,41.2 +E14001009,10.7,13.5,9.4,12.1,15.3,9.6,9.7,7.5,9.7,7.1,6.9,9.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,74.9,71.3,77.2,70.7,73.4,69.5,64.7,63.9,61.0,66.2,60.5,66.5,62.3,36.4,37.5,36.3,37.4,39.7,36.6,36.4,26.3,27.7,26.9,25.9,27.1,28.2,27.5 +E14001010,17.3,16.2,10.9,15.1,13.8,9.3,9.6,11.2,12.2,7.4,12.6,7.3,0.0,5.8,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,82.0,75.7,79.4,78.0,78.0,77.3,69.9,72.5,68.4,70.4,72.1,71.1,70.9,43.5,45.2,41.7,38.5,44.5,41.8,42.0,34.0,33.2,29.4,27.5,34.4,31.2,30.9 +E14001011,11.7,8.6,8.4,8.1,8.6,8.0,4.5,7.7,5.6,0.0,0.0,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.9,69.6,74.5,70.9,63.1,65.0,63.6,59.8,59.6,65.0,62.2,53.1,55.0,56.7,34.1,36.0,36.6,38.0,29.2,30.1,32.4,25.2,27.9,28.0,27.3,19.2,20.2,25.6 +E14001012,11.7,8.6,8.4,8.1,8.6,8.0,4.5,7.7,5.6,0.0,0.0,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.9,69.6,74.5,70.9,63.1,65.0,63.6,59.8,59.6,65.0,62.2,53.1,55.0,56.7,34.1,36.0,36.6,38.0,29.2,30.1,32.4,25.2,27.9,28.0,27.3,19.2,20.2,25.6 +E14001013,18.9,19.8,16.0,20.1,24.3,19.8,18.2,14.4,14.9,12.2,14.3,16.3,12.0,13.2,7.3,8.0,6.0,7.4,8.5,0.0,6.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.3,83.8,78.8,79.7,70.8,75.8,74.4,71.7,78.8,73.8,74.1,62.9,70.5,68.4,50.3,53.5,50.7,50.2,39.6,38.1,45.6,38.4,43.2,37.1,38.0,29.1,24.7,33.9 +E14001014,14.7,14.2,15.9,13.6,10.9,10.4,9.3,9.7,11.1,10.1,9.7,8.4,7.1,5.4,4.1,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,78.5,76.7,83.2,74.8,82.3,77.9,69.1,69.1,66.5,74.4,67.7,74.5,71.1,43.3,44.2,44.5,48.3,41.4,47.0,40.8,31.6,35.1,35.0,34.8,29.3,37.5,32.8 +E14001015,25.6,24.4,22.6,26.0,25.8,18.9,23.4,18.2,16.8,15.8,19.7,16.6,14.0,17.3,10.3,8.1,6.7,10.0,6.9,0.0,8.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.3,84.2,86.4,87.6,83.4,83.0,82.8,70.3,72.4,77.4,76.5,75.5,75.8,76.9,45.3,41.7,44.8,48.2,49.3,46.1,44.2,32.5,28.9,33.2,33.9,37.4,31.0,32.6 +E14001016,8.7,8.3,12.2,5.9,0.0,0.0,6.8,6.2,4.9,0.0,0.0,0.0,0.0,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.7,67.3,69.0,65.7,59.3,62.0,65.0,56.4,57.6,57.9,59.3,48.8,53.5,58.2,32.6,35.6,32.9,35.4,25.5,31.4,33.5,22.1,25.4,24.7,24.7,18.7,22.1,24.1 +E14001017,19.0,20.1,18.7,16.2,20.2,11.6,15.4,12.0,13.5,10.6,12.8,14.4,8.6,12.0,4.4,6.2,0.0,0.0,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.8,75.1,77.1,78.6,73.9,77.3,78.0,65.8,63.9,69.0,68.2,64.7,70.4,66.7,39.7,40.1,38.7,43.0,40.7,41.5,39.5,25.5,30.6,26.4,31.0,28.5,27.6,26.1 +E14001018,19.0,20.1,18.7,16.2,20.2,11.6,15.4,12.0,13.5,10.6,12.8,14.4,8.6,12.0,4.4,6.2,0.0,0.0,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.8,75.1,77.1,78.6,73.9,77.3,78.0,65.8,63.9,69.0,68.2,64.7,70.4,66.7,39.7,40.1,38.7,43.0,40.7,41.5,39.5,25.5,30.6,26.4,31.0,28.5,27.6,26.1 +E14001019,22.0,17.8,18.6,18.3,19.4,16.7,14.7,15.0,12.4,13.4,14.2,15.1,11.7,10.4,7.9,0.0,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.4,80.3,79.8,78.3,81.9,82.9,86.4,77.8,72.7,68.9,66.6,75.1,78.0,80.7,45.2,44.9,41.3,42.4,56.3,48.1,52.9,26.7,33.0,28.5,32.2,39.0,35.9,35.9 +E14001020,8.5,11.6,11.8,9.3,10.9,6.9,11.6,6.6,7.2,9.1,6.2,7.1,0.0,7.1,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.2,73.5,77.4,71.7,74.6,75.2,73.5,61.1,63.5,69.2,63.0,66.2,67.6,63.5,38.0,34.9,44.2,39.1,39.3,42.5,39.6,27.2,25.4,30.4,31.1,27.1,31.9,29.3 +E14001021,21.8,16.6,11.8,14.6,19.1,13.0,10.9,15.6,11.8,6.9,8.4,13.2,7.6,8.0,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.9,81.6,74.8,80.3,77.5,77.5,72.5,71.3,72.9,67.0,71.8,69.7,68.2,65.8,43.7,41.6,38.5,43.5,40.9,36.2,38.7,29.9,32.0,26.8,31.2,31.1,23.5,27.8 +E14001022,25.7,22.3,23.7,21.6,20.3,17.5,19.4,17.3,17.1,16.4,14.6,17.4,13.0,14.4,7.3,7.6,7.0,6.0,7.8,0.0,0.0,4.2,3.2,3.6,3.8,0.0,0.0,0.0,80.2,79.6,78.1,80.6,79.4,83.0,84.9,71.0,71.6,69.5,72.1,73.1,76.6,74.6,43.4,44.9,46.3,45.4,50.8,47.6,47.1,34.0,31.8,35.0,32.7,36.1,36.2,36.2 +E14001023,14.7,13.4,14.2,15.9,12.3,8.9,11.2,8.0,8.2,8.0,9.7,9.0,0.0,6.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.7,79.1,79.7,80.8,81.1,79.2,82.2,72.8,67.6,70.3,74.4,70.3,72.2,75.4,39.9,42.0,42.8,45.8,46.6,42.4,49.3,30.0,30.7,33.3,32.6,36.8,32.6,37.9 +E14001024,17.2,15.2,15.6,13.3,12.6,11.9,11.7,10.8,10.9,11.6,9.5,8.7,8.6,9.1,2.3,3.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.3,76.1,79.2,77.1,73.8,78.3,72.6,66.5,67.9,71.7,67.1,66.3,70.5,65.4,41.5,41.8,39.2,41.3,40.6,44.0,40.3,30.8,31.6,29.1,27.9,30.6,29.0,30.8 +E14001025,15.0,13.6,11.5,12.1,12.7,9.7,8.8,9.2,9.2,7.5,8.0,8.1,6.2,6.0,3.6,4.7,3.0,2.8,2.8,2.1,0.0,2.0,2.7,1.9,0.0,0.0,0.0,0.0,77.9,75.8,73.4,80.0,72.5,75.7,73.5,68.6,63.2,64.8,70.8,64.7,67.3,67.3,39.6,37.2,39.3,45.6,38.1,41.7,42.0,28.5,27.9,29.7,34.1,29.1,30.6,31.7 +E14001026,21.2,18.9,18.8,18.6,18.1,14.7,12.7,11.3,14.0,13.5,11.2,13.8,9.0,9.8,0.0,0.0,3.2,0.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.7,77.5,79.5,82.2,78.3,80.5,80.8,66.6,68.1,69.4,72.9,67.8,69.7,73.0,41.9,43.8,42.2,45.4,40.7,41.9,47.0,31.7,34.5,32.2,33.1,30.5,28.6,34.3 +E14001027,18.7,18.4,19.7,13.6,20.8,10.3,12.4,12.1,12.9,13.0,9.4,14.7,7.5,8.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.6,78.1,78.7,79.5,79.0,76.8,80.0,61.9,67.1,69.3,69.2,73.4,66.7,74.6,41.6,41.4,44.8,38.9,43.4,44.6,46.6,30.0,32.0,31.7,28.6,29.4,34.8,34.0 +E14001028,9.5,8.9,9.1,9.1,9.4,1.5,6.4,0.0,1.2,1.1,4.8,5.6,0.8,5.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.3,70.7,69.2,74.3,73.1,73.0,71.8,66.3,59.8,59.6,65.3,65.4,62.7,63.6,36.7,34.4,32.7,38.7,38.6,35.7,35.8,25.3,25.0,26.8,28.2,29.6,27.9,27.4 +E14001029,8.7,8.3,12.2,5.9,0.0,0.0,6.8,6.2,4.9,0.0,0.0,0.0,0.0,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.7,67.3,69.0,65.7,59.3,62.0,65.0,56.4,57.6,57.9,59.3,48.8,53.5,58.2,32.6,35.6,32.9,35.4,25.5,31.4,33.5,22.1,25.4,24.7,24.7,18.7,22.1,24.1 +E14001030,8.7,8.3,12.2,5.9,0.0,0.0,6.8,6.2,4.9,0.0,0.0,0.0,0.0,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.7,67.3,69.0,65.7,59.3,62.0,65.0,56.4,57.6,57.9,59.3,48.8,53.5,58.2,32.6,35.6,32.9,35.4,25.5,31.4,33.5,22.1,25.4,24.7,24.7,18.7,22.1,24.1 +E14001031,19.9,17.7,19.7,21.2,19.8,11.0,13.2,13.9,11.6,14.3,14.4,14.0,8.1,8.9,6.1,5.7,6.2,5.7,0.0,0.0,0.0,3.0,3.0,3.5,3.1,0.0,0.0,0.0,79.0,81.3,81.4,83.2,83.2,82.7,83.0,68.9,72.2,73.0,75.0,77.5,77.3,73.8,41.0,45.3,48.2,47.4,46.2,47.6,48.2,29.8,33.1,36.4,36.2,35.0,36.9,37.6 +E14001032,12.3,15.9,14.4,17.8,11.8,13.9,14.3,8.4,9.2,10.0,11.2,8.9,9.2,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.7,77.4,72.0,78.0,62.5,68.4,72.6,68.3,69.6,63.7,70.6,55.1,63.0,65.3,43.3,44.2,40.1,47.6,29.1,39.5,42.8,33.5,33.9,33.6,39.1,19.5,26.9,34.5 +E14001033,16.3,15.2,13.2,13.0,11.0,8.5,9.8,10.9,12.0,7.8,8.4,7.9,0.0,7.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,75.1,76.7,74.7,74.9,78.1,78.2,66.3,66.3,67.9,65.9,68.3,72.7,71.0,37.7,36.7,39.2,40.9,45.4,45.9,40.8,27.7,27.5,30.7,29.4,29.6,32.2,30.6 +E14001034,18.5,20.0,21.0,20.9,23.3,12.7,12.8,13.1,14.6,14.8,13.5,15.1,9.5,7.9,5.9,5.3,6.6,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.3,79.6,77.1,82.3,76.9,74.4,78.8,63.0,70.9,67.6,70.4,67.5,66.9,72.2,39.1,42.0,44.5,41.2,45.2,45.7,48.1,31.4,32.2,33.6,31.8,36.9,33.6,38.8 +E14001035,15.6,15.9,14.9,16.4,14.8,10.9,8.4,9.1,11.6,8.6,11.2,9.8,7.7,6.3,0.0,0.0,0.0,0.0,1.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.4,81.3,76.8,84.6,78.5,79.8,81.8,69.2,70.2,66.1,74.9,71.3,70.3,71.9,42.7,43.2,39.0,44.0,46.1,44.1,42.8,31.6,31.7,28.4,33.4,33.5,32.6,31.7 +E14001036,19.2,23.0,18.3,23.6,18.3,23.6,19.5,13.5,16.5,12.5,17.9,13.4,16.2,15.4,5.3,8.6,6.9,9.7,8.9,5.9,7.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.5,81.7,83.8,88.2,73.4,81.6,84.9,71.6,77.0,78.9,82.1,67.5,75.9,81.2,50.3,51.8,60.6,59.0,45.6,48.8,57.3,41.2,42.2,50.4,47.4,33.7,34.8,45.3 +E14001037,21.1,22.8,16.4,20.4,19.2,14.5,20.6,10.5,14.7,13.0,13.7,13.8,11.1,17.9,0.0,0.0,0.0,0.0,6.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.4,81.0,82.4,84.8,79.3,82.1,84.6,73.1,72.1,73.0,76.5,73.2,77.3,79.7,46.9,47.6,41.5,44.4,44.2,48.5,51.5,33.9,33.9,31.8,30.7,31.7,38.3,37.6 +E14001038,19.9,27.2,21.3,15.9,19.6,18.0,17.1,14.5,16.9,15.2,8.4,14.8,10.4,11.0,0.0,10.1,8.6,0.0,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.1,82.0,82.8,83.0,79.4,82.9,82.6,68.7,74.3,74.9,71.8,72.1,74.3,72.7,41.6,38.8,45.1,44.0,46.2,42.1,43.0,32.2,29.4,34.0,29.5,35.4,29.6,29.1 +E14001039,11.4,12.0,13.5,12.6,12.5,7.7,8.2,7.5,8.9,9.2,9.1,9.1,5.1,5.9,0.0,0.0,4.5,3.8,4.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.8,74.3,72.8,77.2,70.5,72.6,75.2,60.6,62.5,64.2,65.6,63.1,63.8,66.7,34.3,38.0,36.4,38.9,38.3,34.9,39.1,26.1,29.5,27.5,27.5,27.7,24.9,26.6 +E14001040,17.2,17.3,16.0,19.8,17.9,17.3,18.8,13.1,12.8,11.4,14.7,12.1,13.3,14.0,7.8,8.4,0.0,8.3,6.6,0.0,6.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.6,79.1,82.1,84.7,72.3,80.5,78.3,80.0,74.4,75.7,79.4,65.2,72.8,71.8,53.7,49.6,50.5,50.5,41.8,46.2,47.4,39.2,37.8,37.9,41.4,28.0,35.0,33.2 +E14001041,20.2,19.7,20.5,19.0,24.4,18.3,15.8,10.4,13.5,13.6,10.6,16.0,13.3,10.1,0.0,6.5,5.4,1.5,6.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.1,87.4,83.4,86.1,85.1,84.6,82.5,70.4,77.6,74.9,77.7,76.2,74.9,74.9,46.2,44.3,49.1,48.6,50.1,46.4,47.0,30.5,31.1,35.8,36.8,36.1,32.9,34.7 +E14001042,19.8,19.0,17.8,17.5,20.7,11.7,14.4,14.3,12.5,13.0,12.6,15.0,7.6,9.3,3.3,0.5,6.5,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.0,79.1,80.8,81.9,78.2,75.4,77.8,70.0,68.2,70.9,71.5,69.8,68.4,68.6,43.1,41.2,43.1,44.6,43.5,41.3,43.3,31.1,28.2,31.2,30.3,33.8,28.5,31.2 +E14001043,17.3,16.2,10.9,15.1,13.8,9.3,9.6,11.2,12.2,7.4,12.6,7.3,0.0,5.8,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,82.0,75.7,79.4,78.0,78.0,77.3,69.9,72.5,68.4,70.4,72.1,71.1,70.9,43.5,45.2,41.7,38.5,44.5,41.8,42.0,34.0,33.2,29.4,27.5,34.4,31.2,30.9 +E14001044,17.3,16.2,10.9,15.1,13.8,9.3,9.6,11.2,12.2,7.4,12.6,7.3,0.0,5.8,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,82.0,75.7,79.4,78.0,78.0,77.3,69.9,72.5,68.4,70.4,72.1,71.1,70.9,43.5,45.2,41.7,38.5,44.5,41.8,42.0,34.0,33.2,29.4,27.5,34.4,31.2,30.9 +E14001045,17.7,19.7,19.6,18.1,19.6,13.9,11.9,12.2,13.5,13.5,12.3,15.1,9.5,7.3,4.9,0.0,0.0,0.0,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.7,80.7,80.8,84.2,77.3,80.0,79.3,68.3,71.2,71.5,74.3,71.4,73.4,71.3,41.7,42.8,43.2,45.8,47.4,45.7,43.9,30.3,31.7,32.8,32.6,37.2,35.0,31.5 +E14001046,21.4,18.7,18.3,22.3,19.3,16.9,14.3,14.8,12.5,13.5,15.5,15.7,11.5,11.6,0.0,0.0,6.7,7.7,8.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.3,80.5,85.2,84.7,79.2,88.3,81.9,70.5,74.1,77.6,77.1,71.6,79.0,75.1,48.4,48.7,50.5,49.5,43.6,49.3,46.4,36.9,37.3,39.3,37.3,32.7,40.1,34.0 +E14001047,21.8,23.9,19.6,24.5,19.2,17.0,17.1,14.0,15.7,13.5,18.3,14.1,11.6,10.6,7.1,6.2,0.0,8.3,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.7,81.0,82.8,80.5,74.6,83.8,81.2,73.8,69.3,76.0,69.0,67.0,77.4,74.1,45.2,43.8,49.1,44.5,46.2,47.0,48.1,37.1,27.7,31.5,32.8,30.5,34.9,35.3 +E14001048,20.1,20.4,20.5,22.0,21.9,12.9,13.4,12.0,13.0,14.0,13.6,15.7,8.4,8.8,4.8,0.0,0.0,0.0,7.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.3,80.4,83.2,86.2,79.0,83.7,82.2,70.4,71.4,74.3,76.6,71.6,76.4,71.8,41.5,43.3,44.5,44.7,47.1,50.8,42.6,31.6,30.2,30.0,30.2,33.6,37.5,28.6 +E14001049,11.0,8.4,9.9,9.4,10.1,8.6,7.1,8.5,6.9,0.0,8.1,0.0,0.0,0.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.4,69.1,67.5,64.6,65.1,68.0,68.1,59.0,59.9,59.9,57.8,56.8,59.2,60.8,35.2,35.1,39.5,35.2,32.3,32.5,36.5,24.9,24.7,27.5,27.5,23.9,21.9,28.3 +E14001050,10.7,8.4,9.9,9.2,9.9,7.6,6.9,8.1,6.7,0.9,7.2,0.0,0.0,0.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.6,69.4,68.1,65.3,65.8,68.7,68.4,59.4,60.2,60.2,58.1,57.2,59.8,60.8,35.0,35.2,39.1,35.2,32.5,33.4,36.2,24.8,24.9,27.3,27.1,24.0,22.9,27.9 +E14001051,11.0,8.4,9.9,9.4,10.1,8.6,7.1,8.5,6.9,0.0,8.1,0.0,0.0,0.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.4,69.1,67.5,64.6,65.1,68.0,68.1,59.0,59.9,59.9,57.8,56.8,59.2,60.8,35.2,35.1,39.5,35.2,32.3,32.5,36.5,24.9,24.7,27.5,27.5,23.9,21.9,28.3 +E14001052,16.0,24.2,14.9,16.9,15.4,15.5,10.2,9.6,20.0,10.9,9.4,12.2,10.6,7.7,0.0,10.0,5.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.1,80.0,77.5,82.6,69.6,77.0,81.6,70.1,69.4,69.8,74.3,63.3,68.6,74.5,40.6,46.7,48.3,46.7,43.7,41.5,49.2,27.8,35.1,34.5,33.9,32.4,32.5,35.5 +E14001053,16.2,16.5,12.5,14.9,16.8,12.5,12.8,11.0,10.6,9.5,11.5,12.6,9.8,9.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.9,84.0,79.8,80.7,81.1,80.0,78.3,70.7,75.9,71.9,74.5,75.6,73.5,72.7,45.5,48.0,39.6,51.5,52.3,49.6,45.7,32.7,31.6,28.5,39.7,41.8,38.1,36.1 +E14001054,13.8,13.9,14.4,11.9,16.4,10.5,9.4,8.5,9.7,9.9,8.4,12.4,6.6,7.0,4.5,4.9,4.4,5.1,5.2,0.0,0.0,0.0,0.0,3.5,0.0,0.0,0.0,0.0,73.0,75.3,75.9,80.9,71.9,71.6,72.7,64.0,67.8,64.4,71.9,64.6,64.8,65.8,36.0,43.0,42.4,46.2,40.6,39.3,40.8,25.2,30.4,29.4,34.5,29.2,28.9,28.8 +E14001055,21.1,20.1,18.5,19.2,20.9,15.7,13.4,15.0,14.2,13.0,13.9,14.6,12.6,10.8,6.9,1.1,7.0,6.3,6.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.4,85.4,84.3,83.6,78.9,81.0,83.1,73.3,76.4,75.6,77.3,73.5,74.1,75.6,46.6,49.3,49.6,50.7,43.9,46.8,47.5,35.8,35.9,34.4,37.9,30.6,32.7,35.6 +E14001056,16.8,20.6,15.7,17.6,16.6,11.7,12.9,10.9,13.4,9.8,11.4,11.5,8.5,8.1,4.6,5.2,5.0,4.9,5.1,0.0,0.0,2.5,2.2,3.1,2.0,2.6,0.0,0.0,79.8,83.4,79.9,82.8,81.6,81.9,79.1,70.3,72.4,70.4,73.3,71.7,76.0,71.6,41.9,42.8,43.5,45.1,43.1,43.5,42.8,30.6,31.9,28.4,33.4,31.6,31.6,29.7 +E14001057,17.0,13.8,16.7,12.8,14.9,12.8,12.3,10.9,9.5,12.8,9.3,9.5,9.9,7.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.1,74.0,78.2,78.1,74.8,73.2,74.2,64.8,63.5,70.4,68.3,65.9,65.0,67.9,37.6,39.8,42.6,41.4,40.9,41.8,44.0,28.7,28.4,32.7,32.0,29.5,29.9,33.1 +E14001058,17.0,14.3,10.3,13.5,12.0,8.7,8.4,12.5,10.4,5.8,9.9,8.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.5,78.9,76.1,81.7,77.6,77.5,77.7,68.0,68.2,67.2,73.0,69.0,68.1,70.4,40.6,39.4,41.5,42.2,36.5,40.4,38.7,29.5,30.3,29.4,31.4,26.2,31.1,27.6 +E14001059,16.1,18.6,17.5,16.8,17.9,14.9,13.9,11.4,14.3,13.5,12.0,12.5,10.4,9.9,5.2,9.0,6.8,7.0,6.9,5.0,5.2,3.3,5.0,4.0,4.4,4.4,2.6,3.0,74.5,75.7,77.3,77.2,70.9,75.1,73.5,64.5,66.6,70.0,69.2,65.4,67.4,65.7,39.5,42.0,42.2,44.1,40.7,40.7,42.9,28.5,32.6,33.6,34.2,30.2,29.0,31.6 +E14001060,20.2,12.0,12.5,14.7,16.5,10.8,10.0,13.8,8.2,9.5,8.8,11.2,5.8,6.6,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.8,77.7,80.0,81.8,79.9,77.7,81.7,69.7,70.1,72.0,74.2,74.3,72.1,71.1,41.1,39.8,46.2,47.5,43.3,46.8,43.5,28.3,30.0,34.8,34.3,32.4,37.2,32.0 +E14001061,33.6,29.7,27.1,31.0,27.9,20.6,27.7,27.2,25.0,21.0,22.1,21.2,16.0,22.2,13.9,14.3,8.8,12.9,10.1,0.0,9.2,10.4,9.3,0.0,10.2,0.0,0.0,5.6,84.8,86.0,85.2,83.0,80.3,81.1,85.3,73.7,74.6,78.7,76.4,73.7,74.0,79.2,47.4,50.2,49.0,53.4,52.3,50.4,52.1,37.9,39.7,35.7,41.7,39.7,36.7,37.7 +E14001062,33.6,29.7,27.1,31.0,27.9,20.6,27.7,27.2,25.0,21.0,22.1,21.2,16.0,22.2,13.9,14.3,8.8,12.9,10.1,0.0,9.2,10.4,9.3,0.0,10.2,0.0,0.0,5.6,84.8,86.0,85.2,83.0,80.3,81.1,85.3,73.7,74.6,78.7,76.4,73.7,74.0,79.2,47.4,50.2,49.0,53.4,52.3,50.4,52.1,37.9,39.7,35.7,41.7,39.7,36.7,37.7 diff --git a/src/themes/transport/active-travel.njk b/src/themes/transport/active-travel.njk new file mode 100644 index 0000000..1734af2 --- /dev/null +++ b/src/themes/transport/active-travel.njk @@ -0,0 +1,327 @@ +--- +title: Active Travel (England) +theme: transport +description: | + Walking and cycling (England). +--- + +
Data and statistics about walking and cycling, based on the National Travel Survey and Active Lives Survey.
+ +The proportion of adults that cycle at least once a month.
+{% comp 'hexmap', { + "config": { + "width": 600, + "hexjson": "hexjson.constituencies", + "data": "sources.transport.active-travel", + "columns": [{ + "name": "filterLabel", + "template": "{{ n }} ({{ a }})" + }], + "value": "Cycle once a month 2022", + "scale": "Viridis", + "min": 0, + "max": 100, + "matchKey": "PCON22CD", + "legend": { + "position": "top right", + "items": [{ + "value": 100, + "label": "100%" + },{ + "value": 75, + "label": "75%" + },{ + "value": 50, + "label": "50%" + },{ + "value": 25, + "label": "25%" + },{ + "value": 0, + "label": "0%" + }] + }, + "tools": { + "filter": { + "label": "filterLabel" + }, + "slider": { + "columns": ["Cycle once a month 2016","Cycle once a month 2017","Cycle once a month 2018","Cycle once a month 2019","Cycle once a month 2020","Cycle once a month 2021","Cycle once a month 2022"], + "width": "600px" + } + }, + "tooltip": "{{ n }}The proportion of adults that cycle at least once a week.
+{% comp 'hexmap', { + "config": { + "width": 600, + "hexjson": "hexjson.constituencies", + "data": "sources.transport.active-travel", + "columns": [{ + "name": "filterLabel", + "template": "{{ n }} ({{ a }})" + }], + "value": "Cycle once a week 2022", + "scale": "Viridis", + "min": 0, + "max": 100, + "matchKey": "PCON22CD", + "legend": { + "position": "top right", + "items": [{ + "value": 100, + "label": "100%" + },{ + "value": 75, + "label": "75%" + },{ + "value": 50, + "label": "50%" + },{ + "value": 25, + "label": "25%" + },{ + "value": 0, + "label": "0%" + }] + }, + "tools": { + "filter": { + "label": "filterLabel" + }, + "slider": { + "columns": ["Cycle once a week 2016","Cycle once a week 2017","Cycle once a week 2018","Cycle once a week 2019","Cycle once a week 2020","Cycle once a week 2021","Cycle once a week 2022"], + "width": "600px" + } + }, + "tooltip": "{{ n }}The proportion of adults that cycle at least three times a week.
+{% comp 'hexmap', { + "config": { + "width": 600, + "hexjson": "hexjson.constituencies", + "data": "sources.transport.active-travel", + "columns": [{ + "name": "filterLabel", + "template": "{{ n }} ({{ a }})" + }], + "value": "Cycle three times a week 2022", + "scale": "Viridis", + "min": 0, + "max": 100, + "matchKey": "PCON22CD", + "legend": { + "position": "top right", + "items": [{ + "value": 100, + "label": "100%" + },{ + "value": 75, + "label": "75%" + },{ + "value": 50, + "label": "50%" + },{ + "value": 25, + "label": "25%" + },{ + "value": 0, + "label": "0%" + }] + }, + "tools": { + "filter": { + "label": "filterLabel" + }, + "slider": { + "columns": ["Cycle three times a week 2016","Cycle three times a week 2017","Cycle three times a week 2018","Cycle three times a week 2019","Cycle three times a week 2020","Cycle three times a week 2021","Cycle three times a week 2022"], + "width": "600px" + } + }, + "tooltip": "{{ n }}The proportion of adults that walk at least once a month.
+{% comp 'hexmap', { + "config": { + "width": 600, + "hexjson": "hexjson.constituencies", + "data": "sources.transport.active-travel", + "columns": [{ + "name": "filterLabel", + "template": "{{ n }} ({{ a }})" + }], + "value": "Walk once a month 2022", + "scale": "Viridis", + "min": 0, + "max": 100, + "matchKey": "PCON22CD", + "legend": { + "position": "top right", + "items": [{ + "value": 100, + "label": "100%" + },{ + "value": 75, + "label": "75%" + },{ + "value": 50, + "label": "50%" + },{ + "value": 25, + "label": "25%" + },{ + "value": 0, + "label": "0%" + }] + }, + "tools": { + "filter": { + "label": "filterLabel" + }, + "slider": { + "columns": ["Walk once a month 2016","Walk once a month 2017","Walk once a month 2018","Walk once a month 2019","Walk once a month 2020","Walk once a month 2021","Walk once a month 2022"], + "width": "600px" + } + }, + "tooltip": "{{ n }}The proportion of adults that walk at least once a week.
+{% comp 'hexmap', { + "config": { + "width": 600, + "hexjson": "hexjson.constituencies", + "data": "sources.transport.active-travel", + "columns": [{ + "name": "filterLabel", + "template": "{{ n }} ({{ a }})" + }], + "value": "Walk once a week 2022", + "scale": "Viridis", + "min": 0, + "max": 100, + "matchKey": "PCON22CD", + "legend": { + "position": "top right", + "items": [{ + "value": 100, + "label": "100%" + },{ + "value": 75, + "label": "75%" + },{ + "value": 50, + "label": "50%" + },{ + "value": 25, + "label": "25%" + },{ + "value": 0, + "label": "0%" + }] + }, + "tools": { + "filter": { + "label": "filterLabel" + }, + "slider": { + "columns": ["Walk once a week 2016","Walk once a week 2017","Walk once a week 2018","Walk once a week 2019","Walk once a week 2020","Walk once a week 2021","Walk once a week 2022"], + "width": "600px" + } + }, + "tooltip": "{{ n }}The proportion of adults that walk at least three times a week.
+{% comp 'hexmap', { + "config": { + "width": 600, + "hexjson": "hexjson.constituencies", + "data": "sources.transport.active-travel", + "columns": [{ + "name": "filterLabel", + "template": "{{ n }} ({{ a }})" + }], + "value": "Walk three times a week 2022", + "scale": "Viridis", + "min": 0, + "max": 100, + "matchKey": "PCON22CD", + "legend": { + "position": "top right", + "items": [{ + "value": 100, + "label": "100%" + },{ + "value": 75, + "label": "75%" + },{ + "value": 50, + "label": "50%" + },{ + "value": 25, + "label": "25%" + },{ + "value": 0, + "label": "0%" + }] + }, + "tools": { + "filter": { + "label": "filterLabel" + }, + "slider": { + "columns": ["Walk three times a week 2016","Walk three times a week 2017","Walk three times a week 2018","Walk three times a week 2019","Walk three times a week 2020","Walk three times a week 2021","Walk three times a week 2022"], + "width": "600px" + } + }, + "tooltip": "{{ n }}"Walking" refers to any continuous walk of over 10 minutes, irrespective of purpose.
+"Cycling" refers to any cycling, irrespective of length or purpose.
+These statistics cover the time period mid-November to mid-November for each year. For example, if data is labelled as 2021, this covers mid-November 2020 to mid-November 2021.
+The data from the Active Lives Survey is produced at local authority level and covers where respondents live, which may not be the same as the area where they walk or cycle.. For each local authority we have calculated the number of respondents for each category using the Weighted_sample
column. We have then apportioned these respondents between the constituencies associated with that local authority by the amount of geographic overlap. In some cases - where a constituency is entirely within a particular local authority - the value will match that local authority. For instance, the constituency of Oxford East is entirely within the local authority of Oxford so has the same values. However Oxford West and Abingdon is partly in Oxford, partly in Vale of White Horse and partly in Cherwell so gets a contribution from each.
The constituency values vary a lot between constituencies and between years. This could be, for example, because of small sample sizes in some areas and/or few people cycling.
\ No newline at end of file