Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save florinvirdol/f09ba297c63d2211c94964d3160a7ea5 to your computer and use it in GitHub Desktop.
Save florinvirdol/f09ba297c63d2211c94964d3160a7ea5 to your computer and use it in GitHub Desktop.
/*
Mostly copied and adapted from RussCam's GIST: https://gist.github.com/russcam/5c40e5c6fb95b9afd9242df675fce428
*/
/*
Questions:
1. Regarding not working scenarios (#3, #4, #5) how can i deserialize a GeoJson string into a Geometry object?
2. Regarding Scenario #6, why GeometryCollection data isn't visibile on Kibana Map like simple Geometry (Polygons)?
- 2.1. Don't know if it's related, but when dragging on Kibana Maps i get this error:
`Error {message: "Input data given to 'cfe5e9a5-de63-4beb-85b2-4b67ad455ae9' is not a valid GeoJSON object."}
message: "Input data given to 'cfe5e9a5-de63-4beb-85b2-4b67ad455ae9' is not a valid GeoJSON object."_ proto _: Object
overrideMethod @ react_devtools_backend.js:2430
Ut.fire @ maps.chunk.1.js:31
3. What are the differences and pro / cons of ingesting ElasticSearch geoshape as multiple individual Geometry objects (polygons in individual documents) rather than one single GeometryCollection (polygons in a single document)?
- 3.1. What about indexing (execution time and performance - even when using Bulk Index)?
- 3.2. What about querying, searching, filtering (usability, performance, etc.)?
4. Regarding Scenario #7, why some Geometries seems invalid?
- 4.1. Does NTS have a MakeValid method? Or how can i fix this in C#?
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection.Metadata;
using System.Text;
using Bogus.DataSets;
using Elasticsearch.Net;
using ElasticSearch;
using GeoAPI.Geometries;
using Microsoft.Extensions.Configuration;
using Nest;
using Nest.JsonNetSerializer;
using NetTopologySuite.Features;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NetTopologySuite.IO;
using NetTopologySuite.Geometries;
using NetTopologySuite.IO.Converters;
using Newtonsoft.Json.Converters;
using Coordinate = NetTopologySuite.Geometries.Coordinate;
using GeometryCollection = NetTopologySuite.Geometries.GeometryCollection;
private static void Main()
{
try {
var defaultIndex = "my_shapes";
string cloudId = "cloudId";
string username = "username";
string password = "password";
var credentials = new BasicAuthenticationCredentials(username, password);
//var pool = new SingleNodeConnectionPool(new Uri($"http://localhost:9200"));
var pool = new CloudConnectionPool(cloudId, credentials);
var settings = new ConnectionSettings(pool, (c, s) =>
new JsonNetSerializer(c, s, contractJsonConverters: new JsonConverter[]
{
new AttributesTableConverter(),
new CoordinateConverter(),
new EnvelopeConverter(),
new FeatureConverter(),
new FeatureCollectionConverter(),
new GeometryConverter(),
new GeometryArrayConverter(),
new StringEnumConverter()
}))
.DefaultIndex(defaultIndex)
.DisableDirectStreaming()
.PrettyJson()
.OnRequestCompleted(callDetails => {
if (callDetails.RequestBodyInBytes != null) {
var json = JObject.Parse(Encoding.UTF8.GetString(callDetails.RequestBodyInBytes));
Console.WriteLine(
$"{callDetails.HttpMethod} {callDetails.Uri} \n" +
$"{json.ToString(Newtonsoft.Json.Formatting.Indented)}");
}
else {
Console.WriteLine($"{callDetails.HttpMethod} {callDetails.Uri}");
}
Console.WriteLine();
if (callDetails.ResponseBodyInBytes != null) {
Console.WriteLine($"Status: {callDetails.HttpStatusCode}\n" +
$"{Encoding.UTF8.GetString(callDetails.ResponseBodyInBytes)}\n" +
$"{new string('-', 30)}\n");
}
else {
Console.WriteLine($"Status: {callDetails.HttpStatusCode}\n" +
$"{new string('-', 30)}\n");
}
});
var client = new ElasticClient(settings);
var createIndexResponse = client.Indices.Create(defaultIndex, c => c
.Map<MyDocument>(m => m
.Properties(p => p
.GeoShape(g => g
.Name(n => n.Geometry)
)
)
)
);
if (!createIndexResponse.IsValid) {
throw new Exception($"Error creating index: {createIndexResponse.DebugInformation}");
}
IndexResponse indexResponse;
MyDocument document;
Geometry geometryPolygon;
FeatureCollection featureCollection;
//Working Scenario #1: Geometry from mock Polygon -------------------works!!!!!!!!!!!
var polygon = new Polygon(new LinearRing(new [] {
new Coordinate(0, 0),
new Coordinate(0, 4),
new Coordinate(4, 4),
new Coordinate(4, 0),
new Coordinate(0, 0)
}));
document = new MyDocument(1, polygon);
indexResponse = client.IndexDocument(document);
//End of Scenario #1 -------------------
//Working Scenario #2: Geometry from FeatureCollection from real GeoJson file ------------------- works
var geojsonFileName = @"..\..\..\_GeoDataFiles\GeoJSONs\PostalArea.geojson";
var jsonData = File.ReadAllText(geojsonFileName);
featureCollection = new GeoJsonReader().Read<FeatureCollection>(jsonData);
if (featureCollection == null) return;
var geometry = featureCollection[0].Geometry;
document = new MyDocument(1, geometry);
indexResponse = client.IndexDocument(document);
//End of Scenario #2-------------------
//NOT Working Scenario #3: Geometry deserialized (with GeoJsonSerializer) from mock GeoJson string -------------------
//excluded coordinates arrays for clarity
var geoJsonPolygonStr1 = "{\"type\":\"Polygon\",\"coordinates\":[ ... ]}";
var serializer = new NetTopologySuite.IO.GeoJsonSerializer();
using(var stringReader = new StringReader(geoJsonPolygonStr1))
using (var jsonReader = new JsonTextReader(stringReader))
{
/*Error:
{"Could not create an instance of type NetTopologySuite.Geometries.Geometry.
Type is an interface or abstract class and cannot be instantiated.
Path 'type', line 2, position 8."}*/
geometryPolygon = serializer.Deserialize<Geometry>(jsonReader);
}
document = new MyDocument(1, geometryPolygon);
indexResponse = client.IndexDocument(document);
//End of Scenario #3 -------------------
//NOT Working Scenario #4: Geometry deserialized (with JsonConvert) from mock GeoJson string -------------------
//excluded coordinates arrays for clarity
var geoJsonPolygonStr2 = "{\"type\":\"Polygon\",\"coordinates\":[ ... ]}";
/*Error:
{"Could not create an instance of type NetTopologySuite.Geometries.Geometry.
Type is an interface or abstract class and cannot be instantiated.
Path 'type', line 2, position 8."}*/
geometryPolygon = JsonConvert.DeserializeObject<Geometry>(geoJsonPolygonStr2);
document = new MyDocument(1, geometryPolygon);
indexResponse = client.IndexDocument(document);
//End of Scenario #4 -------------------
//NOT Working Scenario #5: GeometryCollection deserialized (with JsonConvert) from mock GeoJson string -------------------
var geoCollectionMock =
@"{""type"": ""geometrycollection"",
""geometries"": ["
+ geoJsonPolygonStr1 +
","
+ geoJsonPolygonStr2 +
@"]
}";
/*Error:
{"Could not create an instance of type NetTopologySuite.Geometries.Geometry.
Type is an interface or abstract class and cannot be instantiated.
Path 'type', line 2, position 8."}*/
geometryPolygon = JsonConvert.DeserializeObject<Geometry>(geoCollectionMock);
document = new MyDocument(1, geometryPolygon);
indexResponse = client.IndexDocument(document);
//End of Scenario #5 -------------------
//Weired Scenario #6: GeometryCollection built from multiple Geometry objects from FeatureCollection from real GeoJson file -------------------
//Data ingested into ElasticSearch Index, BUT, polygons from GeometryCollection can't be seen on Kibana Maps as other simple Polygons can be seen
var geoCollectionObj = new NetTopologySuite.Geometries.GeometryCollection(new[]
{
featureCollection[0].Geometry,
featureCollection[1].Geometry,
featureCollection[2].Geometry
});
document = new MyDocument(1, geoCollectionObj);
indexResponse = client.IndexDocument(document);
//End of Scenario #6 -------------------
//Not working Scenario #7: Geometry from FeatureCollection from real GeoJson file - invalid Geometry -------------------
var isValid = featureCollection[0].Geometry.IsValid;//= false
/*Error:
"type" : "mapper_parsing_exception",
"reason" : "failed to parse field [geometry] of type [geo_shape]",
"caused_by" : {
"type" : "invalid_shape_exception",
"reason" : "Self-intersection at or near point [-3.173,57.545]"
}*/
document = new MyDocument(99, featureCollection[99].Geometry);
indexResponse = client.IndexDocument(document);
//End of Scenario #7 -------------------
if (!indexResponse.IsValid) {
throw new Exception($"Error indexinf document: {indexResponse.DebugInformation}");
}
}
catch (Exception ex)
{
Console.WriteLine($"General error: {ex}");
}
}
public class MyDocument {
public MyDocument(int id, Geometry geometry) {
Id = id;
Geometry = geometry;
}
public int Id { get; set; }
public Geometry Geometry { get; set; }
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection", "features": [
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.214,56.89],[-2.219,56.891],[-2.227,56.89],[-2.228,56.892],[-2.237,56.892],[-2.241,56.89],[-2.245,56.89],[-2.251,56.894],[-2.262,56.89],[-2.267,56.887],[-2.27,56.89],[-2.277,56.888],[-2.277,56.884],[-2.28,56.884],[-2.286,56.883],[-2.295,56.882],[-2.298,56.884],[-2.307,56.881],[-2.31,56.879],[-2.306,56.874],[-2.307,56.871],[-2.312,56.869],[-2.312,56.866],[-2.305,56.865],[-2.301,56.863],[-2.302,56.862],[-2.308,56.863],[-2.311,56.862],[-2.315,56.857],[-2.318,56.857],[-2.33,56.852],[-2.332,56.852],[-2.335,56.844],[-2.336,56.844],[-2.335,56.837],[-2.342,56.839],[-2.346,56.835],[-2.351,56.835],[-2.353,56.836],[-2.362,56.835],[-2.362,56.831],[-2.366,56.828],[-2.372,56.827],[-2.37,56.821],[-2.361,56.816],[-2.367,56.813],[-2.369,56.812],[-2.375,56.812],[-2.378,56.814],[-2.376,56.808],[-2.383,56.804],[-2.396,56.804],[-2.395,56.802],[-2.404,56.805],[-2.41,56.803],[-2.417,56.806],[-2.42,56.805],[-2.43,56.808],[-2.433,56.806],[-2.437,56.805],[-2.446,56.802],[-2.447,56.804],[-2.464,56.809],[-2.467,56.813],[-2.481,56.806],[-2.477,56.802],[-2.478,56.8],[-2.47,56.799],[-2.474,56.797],[-2.473,56.794],[-2.472,56.792],[-2.478,56.786],[-2.469,56.784],[-2.46,56.782],[-2.462,56.782],[-2.46,56.778],[-2.465,56.774],[-2.459,56.767],[-2.459,56.766],[-2.464,56.763],[-2.473,56.762],[-2.473,56.769],[-2.476,56.771],[-2.479,56.771],[-2.492,56.772],[-2.496,56.773],[-2.5,56.775],[-2.506,56.774],[-2.511,56.775],[-2.518,56.775],[-2.519,56.776],[-2.525,56.779],[-2.529,56.782],[-2.537,56.78],[-2.539,56.778],[-2.55,56.777],[-2.555,56.777],[-2.556,56.777],[-2.564,56.77],[-2.566,56.769],[-2.567,56.766],[-2.586,56.764],[-2.597,56.763],[-2.602,56.765],[-2.595,56.767],[-2.595,56.77],[-2.593,56.772],[-2.595,56.776],[-2.593,56.78],[-2.596,56.781],[-2.606,56.785],[-2.613,56.784],[-2.615,56.785],[-2.622,56.787],[-2.618,56.79],[-2.615,56.791],[-2.614,56.796],[-2.606,56.8],[-2.604,56.803],[-2.602,56.804],[-2.605,56.807],[-2.602,56.81],[-2.597,56.81],[-2.596,56.812],[-2.598,56.814],[-2.593,56.815],[-2.597,56.817],[-2.595,56.82],[-2.593,56.821],[-2.59,56.825],[-2.593,56.829],[-2.597,56.829],[-2.598,56.826],[-2.605,56.828],[-2.606,56.83],[-2.613,56.83],[-2.613,56.833],[-2.615,56.833],[-2.619,56.83],[-2.624,56.833],[-2.627,56.834],[-2.632,56.833],[-2.635,56.838],[-2.632,56.841],[-2.632,56.844],[-2.638,56.848],[-2.636,56.851],[-2.645,56.852],[-2.647,56.854],[-2.648,56.859],[-2.656,56.874],[-2.654,56.881],[-2.595,56.915],[-2.658,56.924],[-2.657,56.934],[-2.654,56.956],[-2.719,56.97],[-2.754,56.957],[-2.762,56.957],[-2.782,56.963],[-2.792,56.965],[-2.869,56.976],[-2.882,56.98],[-2.888,56.979],[-2.899,56.975],[-2.972,56.973],[-3.006,56.955],[-3.017,56.953],[-3.048,56.951],[-3.078,56.887],[-3.092,56.888],[-3.106,56.891],[-3.134,56.908],[-3.15,56.91],[-3.174,56.936],[-3.206,56.952],[-3.228,56.958],[-3.259,56.954],[-3.267,56.954],[-3.305,56.907],[-3.288,56.878],[-3.332,56.867],[-3.363,56.859],[-3.402,56.844],[-3.427,56.849],[-3.432,56.85],[-3.429,56.856],[-3.424,56.861],[-3.423,56.862],[-3.418,56.864],[-3.426,56.866],[-3.438,56.867],[-3.454,56.878],[-3.483,56.888],[-3.506,56.908],[-3.539,56.91],[-3.569,56.936],[-3.565,56.946],[-3.601,56.991],[-3.655,57.005],[-3.622,57.047],[-3.613,57.048],[-3.583,57.053],[-3.58,57.056],[-3.563,57.084],[-3.517,57.1],[-3.484,57.099],[-3.48,57.183],[-3.476,57.186],[-3.466,57.203],[-3.463,57.208],[-3.459,57.213],[-3.451,57.219],[-3.454,57.224],[-3.468,57.239],[-3.5,57.259],[-3.497,57.264],[-3.495,57.264],[-3.494,57.271],[-3.506,57.289],[-3.493,57.302],[-3.48,57.309],[-3.475,57.31],[-3.472,57.313],[-3.467,57.321],[-3.461,57.324],[-3.456,57.328],[-3.437,57.347],[-3.433,57.35],[-3.431,57.35],[-3.41,57.356],[-3.402,57.361],[-3.398,57.365],[-3.391,57.369],[-3.388,57.372],[-3.386,57.387],[-3.386,57.39],[-3.387,57.391],[-3.396,57.399],[-3.399,57.403],[-3.403,57.403],[-3.402,57.404],[-3.414,57.413],[-3.415,57.413],[-3.409,57.415],[-3.397,57.415],[-3.398,57.417],[-3.44,57.422],[-3.454,57.425],[-3.457,57.427],[-3.47,57.428],[-3.487,57.431],[-3.514,57.453],[-3.484,57.468],[-3.478,57.468],[-3.453,57.471],[-3.447,57.49],[-3.45,57.504],[-3.442,57.506],[-3.421,57.504],[-3.409,57.5],[-3.4,57.503],[-3.405,57.504],[-3.409,57.507],[-3.412,57.51],[-3.413,57.512],[-3.373,57.515],[-3.369,57.522],[-3.361,57.528],[-3.354,57.533],[-3.312,57.529],[-3.291,57.539],[-3.292,57.552],[-3.268,57.564],[-3.257,57.564],[-3.253,57.566],[-3.265,57.575],[-3.255,57.578],[-3.245,57.571],[-3.222,57.571],[-3.22,57.572],[-3.211,57.571],[-3.203,57.571],[-3.196,57.551],[-3.191,57.55],[-3.19,57.548],[-3.178,57.545],[-3.175,57.544],[-3.173,57.545],[-3.181,57.552],[-3.178,57.553],[-3.173,57.552],[-3.169,57.546],[-3.173,57.545],[-3.172,57.544],[-3.175,57.542],[-3.181,57.539],[-3.175,57.535],[-3.172,57.534],[-3.168,57.535],[-3.161,57.525],[-3.146,57.525],[-3.128,57.525],[-3.119,57.533],[-3.12,57.536],[-3.124,57.538],[-3.122,57.547],[-3.123,57.547],[-3.131,57.55],[-3.125,57.55],[-3.126,57.553],[-3.125,57.554],[-3.119,57.564],[-3.123,57.564],[-3.124,57.568],[-3.124,57.569],[-3.11,57.57],[-3.113,57.581],[-3.111,57.584],[-3.101,57.584],[-3.079,57.58],[-3.077,57.58],[-3.06,57.586],[-3.077,57.592],[-3.086,57.599],[-3.091,57.605],[-3.086,57.607],[-3.085,57.606],[-3.081,57.603],[-3.075,57.601],[-3.066,57.599],[-3.048,57.607],[-3.048,57.608],[-3.061,57.619],[-3.048,57.626],[-3.058,57.631],[-3.06,57.632],[-3.052,57.638],[-3.047,57.641],[-3.045,57.642],[-3.043,57.644],[-3.043,57.646],[-3.038,57.642],[-3.034,57.643],[-3.032,57.645],[-3.031,57.646],[-3.028,57.648],[-3.025,57.652],[-3.032,57.655],[-3.037,57.655],[-3.041,57.654],[-3.048,57.659],[-3.044,57.66],[-3.041,57.663],[-3.041,57.666],[-3.034,57.666],[-3.027,57.665],[-3.023,57.665],[-3.015,57.666],[-3.014,57.666],[-3.009,57.667],[-3.005,57.667],[-3.001,57.669],[-2.999,57.672],[-2.997,57.673],[-2.993,57.674],[-2.987,57.675],[-2.984,57.677],[-2.977,57.678],[-2.975,57.678],[-2.974,57.679],[-2.968,57.68],[-2.967,57.679],[-2.964,57.679],[-2.961,57.68],[-2.959,57.679],[-2.952,57.681],[-2.953,57.683],[-2.952,57.685],[-2.946,57.685],[-2.937,57.687],[-2.934,57.687],[-2.932,57.688],[-2.928,57.691],[-2.929,57.693],[-2.927,57.696],[-2.926,57.696],[-2.923,57.698],[-2.919,57.698],[-2.916,57.699],[-2.91,57.7],[-2.906,57.699],[-2.904,57.7],[-2.902,57.702],[-2.899,57.702],[-2.897,57.703],[-2.895,57.7],[-2.893,57.701],[-2.886,57.702],[-2.88,57.704],[-2.879,57.706],[-2.875,57.706],[-2.873,57.704],[-2.871,57.705],[-2.866,57.704],[-2.862,57.705],[-2.862,57.706],[-2.855,57.707],[-2.849,57.706],[-2.846,57.705],[-2.846,57.702],[-2.844,57.7],[-2.844,57.699],[-2.841,57.697],[-2.835,57.695],[-2.83,57.694],[-2.825,57.693],[-2.823,57.695],[-2.816,57.695],[-2.814,57.697],[-2.809,57.697],[-2.806,57.698],[-2.805,57.697],[-2.802,57.696],[-2.798,57.697],[-2.795,57.7],[-2.788,57.701],[-2.788,57.698],[-2.786,57.698],[-2.785,57.696],[-2.777,57.693],[-2.774,57.694],[-2.77,57.693],[-2.765,57.694],[-2.762,57.693],[-2.758,57.694],[-2.757,57.692],[-2.755,57.691],[-2.752,57.691],[-2.75,57.692],[-2.747,57.69],[-2.747,57.688],[-2.746,57.687],[-2.747,57.685],[-2.742,57.683],[-2.739,57.683],[-2.736,57.685],[-2.732,57.685],[-2.732,57.687],[-2.727,57.687],[-2.723,57.69],[-2.721,57.689],[-2.716,57.692],[-2.713,57.692],[-2.713,57.691],[-2.71,57.69],[-2.705,57.687],[-2.702,57.686],[-2.698,57.687],[-2.694,57.685],[-2.688,57.687],[-2.685,57.687],[-2.685,57.684],[-2.681,57.684],[-2.681,57.685],[-2.678,57.687],[-2.676,57.686],[-2.673,57.688],[-2.671,57.69],[-2.667,57.691],[-2.664,57.69],[-2.661,57.689],[-2.661,57.687],[-2.655,57.687],[-2.651,57.688],[-2.648,57.688],[-2.647,57.685],[-2.644,57.683],[-2.64,57.683],[-2.637,57.681],[-2.631,57.681],[-2.627,57.682],[-2.626,57.683],[-2.621,57.682],[-2.615,57.682],[-2.615,57.68],[-2.612,57.68],[-2.605,57.682],[-2.603,57.682],[-2.6,57.683],[-2.597,57.683],[-2.595,57.681],[-2.593,57.679],[-2.589,57.679],[-2.587,57.681],[-2.581,57.679],[-2.579,57.681],[-2.575,57.684],[-2.573,57.684],[-2.571,57.682],[-2.567,57.68],[-2.566,57.679],[-2.567,57.676],[-2.562,57.674],[-2.559,57.674],[-2.55,57.672],[-2.547,57.671],[-2.544,57.672],[-2.541,57.67],[-2.535,57.671],[-2.532,57.671],[-2.528,57.672],[-2.523,57.671],[-2.519,57.668],[-2.511,57.667],[-2.507,57.668],[-2.506,57.669],[-2.502,57.671],[-2.498,57.67],[-2.498,57.674],[-2.49,57.673],[-2.488,57.673],[-2.485,57.674],[-2.481,57.673],[-2.474,57.674],[-2.472,57.671],[-2.47,57.673],[-2.467,57.673],[-2.465,57.672],[-2.459,57.672],[-2.457,57.672],[-2.449,57.671],[-2.447,57.669],[-2.443,57.672],[-2.439,57.671],[-2.436,57.673],[-2.434,57.672],[-2.429,57.674],[-2.428,57.673],[-2.424,57.673],[-2.422,57.671],[-2.415,57.671],[-2.412,57.672],[-2.408,57.672],[-2.408,57.67],[-2.403,57.669],[-2.395,57.669],[-2.393,57.67],[-2.382,57.67],[-2.373,57.673],[-2.37,57.675],[-2.359,57.676],[-2.354,57.674],[-2.349,57.671],[-2.341,57.673],[-2.337,57.675],[-2.335,57.675],[-2.333,57.676],[-2.329,57.676],[-2.326,57.678],[-2.325,57.68],[-2.327,57.684],[-2.327,57.686],[-2.324,57.688],[-2.316,57.691],[-2.311,57.693],[-2.309,57.692],[-2.305,57.694],[-2.299,57.696],[-2.296,57.696],[-2.29,57.694],[-2.29,57.693],[-2.292,57.69],[-2.283,57.689],[-2.279,57.687],[-2.275,57.687],[-2.274,57.686],[-2.271,57.686],[-2.272,57.682],[-2.267,57.682],[-2.263,57.68],[-2.26,57.68],[-2.256,57.682],[-2.247,57.683],[-2.244,57.682],[-2.242,57.682],[-2.238,57.68],[-2.235,57.681],[-2.228,57.68],[-2.225,57.679],[-2.222,57.68],[-2.221,57.679],[-2.211,57.68],[-2.207,57.677],[-2.205,57.677],[-2.2,57.675],[-2.195,57.675],[-2.192,57.672],[-2.187,57.674],[-2.185,57.673],[-2.182,57.675],[-2.176,57.674],[-2.173,57.677],[-2.169,57.678],[-2.165,57.68],[-2.163,57.684],[-2.16,57.684],[-2.156,57.682],[-2.154,57.684],[-2.152,57.684],[-2.149,57.686],[-2.146,57.687],[-2.141,57.689],[-2.14,57.69],[-2.136,57.694],[-2.133,57.696],[-2.129,57.696],[-2.123,57.7],[-2.118,57.702],[-2.116,57.702],[-2.11,57.7],[-2.106,57.701],[-2.102,57.7],[-2.1,57.701],[-2.097,57.7],[-2.094,57.7],[-2.088,57.701],[-2.086,57.701],[-2.08,57.702],[-2.071,57.701],[-2.07,57.7],[-2.06,57.699],[-2.055,57.698],[-2.05,57.696],[-2.044,57.696],[-2.044,57.695],[-2.041,57.693],[-2.038,57.695],[-2.034,57.694],[-2.033,57.696],[-2.022,57.698],[-2.02,57.699],[-2.016,57.699],[-2.011,57.697],[-2.009,57.698],[-2.005,57.699],[-2.002,57.699],[-2.002,57.697],[-2,57.696],[-1.999,57.694],[-1.995,57.692],[-1.998,57.691],[-1.999,57.687],[-1.998,57.684],[-1.991,57.681],[-1.986,57.68],[-1.982,57.68],[-1.977,57.678],[-1.971,57.677],[-1.97,57.677],[-1.966,57.677],[-1.957,57.677],[-1.951,57.679],[-1.946,57.68],[-1.946,57.682],[-1.944,57.682],[-1.943,57.685],[-1.94,57.685],[-1.942,57.682],[-1.939,57.682],[-1.936,57.68],[-1.932,57.679],[-1.927,57.679],[-1.926,57.677],[-1.923,57.676],[-1.921,57.676],[-1.916,57.672],[-1.917,57.669],[-1.915,57.667],[-1.909,57.665],[-1.91,57.664],[-1.908,57.661],[-1.899,57.657],[-1.896,57.655],[-1.897,57.652],[-1.895,57.652],[-1.892,57.65],[-1.892,57.648],[-1.886,57.641],[-1.882,57.639],[-1.882,57.637],[-1.878,57.634],[-1.876,57.634],[-1.875,57.633],[-1.866,57.628],[-1.864,57.627],[-1.855,57.623],[-1.854,57.624],[-1.85,57.623],[-1.846,57.621],[-1.841,57.62],[-1.834,57.618],[-1.828,57.616],[-1.825,57.615],[-1.818,57.614],[-1.821,57.613],[-1.822,57.611],[-1.819,57.61],[-1.816,57.608],[-1.821,57.606],[-1.824,57.601],[-1.825,57.598],[-1.826,57.594],[-1.826,57.592],[-1.826,57.589],[-1.825,57.583],[-1.824,57.582],[-1.825,57.579],[-1.824,57.576],[-1.82,57.571],[-1.819,57.568],[-1.816,57.565],[-1.81,57.56],[-1.804,57.558],[-1.801,57.558],[-1.801,57.556],[-1.803,57.555],[-1.803,57.552],[-1.804,57.551],[-1.802,57.547],[-1.799,57.546],[-1.799,57.544],[-1.803,57.539],[-1.805,57.536],[-1.805,57.532],[-1.803,57.527],[-1.802,57.526],[-1.797,57.524],[-1.798,57.521],[-1.796,57.519],[-1.79,57.517],[-1.785,57.517],[-1.781,57.515],[-1.782,57.514],[-1.779,57.512],[-1.776,57.512],[-1.772,57.511],[-1.772,57.509],[-1.769,57.507],[-1.766,57.508],[-1.766,57.506],[-1.768,57.505],[-1.768,57.504],[-1.765,57.503],[-1.765,57.502],[-1.77,57.501],[-1.774,57.501],[-1.782,57.504],[-1.786,57.504],[-1.788,57.502],[-1.791,57.502],[-1.791,57.5],[-1.793,57.496],[-1.792,57.495],[-1.789,57.495],[-1.783,57.491],[-1.782,57.488],[-1.785,57.488],[-1.788,57.486],[-1.794,57.485],[-1.794,57.483],[-1.79,57.481],[-1.785,57.481],[-1.785,57.479],[-1.782,57.477],[-1.777,57.476],[-1.778,57.474],[-1.776,57.472],[-1.771,57.472],[-1.772,57.47],[-1.778,57.47],[-1.778,57.467],[-1.78,57.465],[-1.782,57.461],[-1.787,57.46],[-1.788,57.458],[-1.797,57.454],[-1.799,57.454],[-1.799,57.451],[-1.797,57.452],[-1.797,57.449],[-1.799,57.446],[-1.803,57.445],[-1.805,57.444],[-1.807,57.44],[-1.813,57.437],[-1.817,57.436],[-1.817,57.433],[-1.814,57.431],[-1.817,57.429],[-1.815,57.428],[-1.821,57.425],[-1.828,57.421],[-1.83,57.418],[-1.83,57.416],[-1.832,57.414],[-1.835,57.414],[-1.835,57.412],[-1.839,57.41],[-1.844,57.41],[-1.846,57.411],[-1.851,57.411],[-1.856,57.408],[-1.858,57.406],[-1.86,57.403],[-1.86,57.4],[-1.859,57.397],[-1.861,57.395],[-1.86,57.393],[-1.857,57.39],[-1.859,57.389],[-1.859,57.388],[-1.865,57.388],[-1.868,57.387],[-1.869,57.385],[-1.875,57.382],[-1.875,57.381],[-1.878,57.38],[-1.882,57.378],[-1.885,57.376],[-1.886,57.375],[-1.888,57.373],[-1.893,57.373],[-1.895,57.371],[-1.901,57.369],[-1.903,57.367],[-1.905,57.367],[-1.907,57.365],[-1.91,57.365],[-1.911,57.363],[-1.913,57.363],[-1.911,57.361],[-1.912,57.359],[-1.915,57.36],[-1.918,57.358],[-1.919,57.356],[-1.922,57.355],[-1.921,57.353],[-1.925,57.352],[-1.922,57.351],[-1.924,57.35],[-1.928,57.35],[-1.93,57.348],[-1.932,57.348],[-1.934,57.347],[-1.934,57.345],[-1.936,57.343],[-1.94,57.344],[-1.941,57.342],[-1.941,57.34],[-1.943,57.339],[-1.946,57.339],[-1.95,57.337],[-1.955,57.333],[-1.952,57.331],[-1.956,57.331],[-1.961,57.328],[-1.967,57.327],[-1.97,57.324],[-1.972,57.323],[-1.975,57.319],[-1.976,57.317],[-1.98,57.312],[-1.98,57.31],[-1.983,57.305],[-1.987,57.304],[-1.989,57.303],[-1.996,57.297],[-2.002,57.29],[-2.002,57.288],[-2.005,57.287],[-2.007,57.284],[-2.015,57.276],[-2.023,57.265],[-2.025,57.264],[-2.027,57.259],[-2.03,57.257],[-2.032,57.254],[-2.032,57.253],[-2.034,57.249],[-2.037,57.246],[-2.039,57.243],[-2.042,57.241],[-2.044,57.236],[-2.046,57.235],[-2.046,57.233],[-2.048,57.23],[-2.051,57.228],[-2.053,57.225],[-2.054,57.222],[-2.055,57.22],[-2.06,57.211],[-2.06,57.209],[-2.063,57.205],[-2.066,57.199],[-2.065,57.197],[-2.068,57.194],[-2.07,57.19],[-2.069,57.188],[-2.071,57.184],[-2.073,57.183],[-2.073,57.18],[-2.072,57.179],[-2.077,57.175],[-2.078,57.169],[-2.079,57.161],[-2.078,57.155],[-2.077,57.15],[-2.073,57.146],[-2.068,57.143],[-2.067,57.141],[-2.061,57.143],[-2.057,57.143],[-2.052,57.14],[-2.048,57.14],[-2.047,57.138],[-2.057,57.135],[-2.058,57.131],[-2.057,57.131],[-2.051,57.13],[-2.049,57.129],[-2.052,57.124],[-2.053,57.123],[-2.054,57.12],[-2.056,57.119],[-2.06,57.117],[-2.06,57.116],[-2.062,57.112],[-2.065,57.111],[-2.064,57.108],[-2.066,57.106],[-2.071,57.105],[-2.072,57.104],[-2.073,57.099],[-2.072,57.097],[-2.074,57.096],[-2.078,57.096],[-2.077,57.094],[-2.081,57.093],[-2.081,57.088],[-2.082,57.087],[-2.087,57.085],[-2.088,57.083],[-2.09,57.082],[-2.089,57.08],[-2.093,57.078],[-2.095,57.075],[-2.092,57.073],[-2.093,57.07],[-2.094,57.068],[-2.101,57.065],[-2.106,57.061],[-2.104,57.059],[-2.105,57.058],[-2.11,57.057],[-2.111,57.053],[-2.116,57.05],[-2.121,57.049],[-2.12,57.047],[-2.121,57.044],[-2.127,57.041],[-2.131,57.038],[-2.131,57.037],[-2.134,57.034],[-2.141,57.032],[-2.142,57.03],[-2.146,57.028],[-2.147,57.024],[-2.152,57.021],[-2.159,57.019],[-2.159,57.016],[-2.162,57.015],[-2.163,57.013],[-2.161,57.012],[-2.162,57.01],[-2.166,57.01],[-2.167,57.009],[-2.168,57.005],[-2.167,57.004],[-2.169,57],[-2.173,56.997],[-2.178,56.993],[-2.179,56.99],[-2.181,56.988],[-2.181,56.984],[-2.181,56.982],[-2.178,56.98],[-2.18,56.979],[-2.187,56.978],[-2.188,56.978],[-2.192,56.976],[-2.197,56.973],[-2.199,56.971],[-2.202,56.97],[-2.205,56.968],[-2.205,56.967],[-2.204,56.962],[-2.2,56.962],[-2.198,56.959],[-2.194,56.959],[-2.198,56.956],[-2.2,56.955],[-2.199,56.954],[-2.193,56.953],[-2.191,56.951],[-2.196,56.951],[-2.199,56.95],[-2.199,56.948],[-2.196,56.946],[-2.198,56.944],[-2.195,56.943],[-2.196,56.94],[-2.199,56.938],[-2.198,56.935],[-2.2,56.934],[-2.197,56.931],[-2.196,56.927],[-2.2,56.922],[-2.198,56.917],[-2.196,56.91],[-2.197,56.908],[-2.202,56.908],[-2.202,56.906],[-2.204,56.905],[-2.205,56.903],[-2.203,56.902],[-2.207,56.899],[-2.212,56.895],[-2.214,56.893],[-2.214,56.89]]]},"properties":{"OBJECTID":1,"NAME":"AB","KEY":"AB","Shape_Leng":8.20084,"Shape_Area":1.13549}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.151,51.727],[-0.156,51.726],[-0.159,51.726],[-0.162,51.725],[-0.164,51.72],[-0.164,51.718],[-0.158,51.715],[-0.162,51.715],[-0.162,51.712],[-0.164,51.711],[-0.166,51.713],[-0.171,51.714],[-0.174,51.716],[-0.177,51.716],[-0.175,51.713],[-0.185,51.716],[-0.187,51.716],[-0.191,51.716],[-0.193,51.712],[-0.199,51.713],[-0.203,51.713],[-0.209,51.71],[-0.218,51.708],[-0.22,51.709],[-0.222,51.713],[-0.237,51.715],[-0.243,51.716],[-0.248,51.717],[-0.252,51.718],[-0.262,51.72],[-0.275,51.716],[-0.272,51.715],[-0.268,51.714],[-0.264,51.711],[-0.272,51.706],[-0.271,51.704],[-0.277,51.703],[-0.283,51.707],[-0.294,51.709],[-0.295,51.71],[-0.301,51.71],[-0.311,51.711],[-0.312,51.707],[-0.317,51.706],[-0.324,51.711],[-0.326,51.704],[-0.326,51.702],[-0.333,51.704],[-0.336,51.702],[-0.339,51.703],[-0.341,51.701],[-0.343,51.7],[-0.34,51.698],[-0.34,51.696],[-0.342,51.694],[-0.349,51.694],[-0.351,51.697],[-0.354,51.699],[-0.359,51.698],[-0.359,51.695],[-0.36,51.693],[-0.363,51.691],[-0.364,51.689],[-0.368,51.685],[-0.376,51.684],[-0.376,51.688],[-0.375,51.692],[-0.364,51.701],[-0.376,51.702],[-0.38,51.703],[-0.383,51.708],[-0.385,51.717],[-0.392,51.732],[-0.394,51.738],[-0.398,51.742],[-0.408,51.748],[-0.412,51.751],[-0.415,51.755],[-0.417,51.758],[-0.417,51.761],[-0.413,51.774],[-0.415,51.775],[-0.422,51.778],[-0.424,51.779],[-0.43,51.778],[-0.433,51.78],[-0.435,51.78],[-0.44,51.785],[-0.446,51.787],[-0.448,51.79],[-0.443,51.795],[-0.445,51.796],[-0.451,51.797],[-0.454,51.802],[-0.456,51.801],[-0.463,51.807],[-0.467,51.808],[-0.472,51.812],[-0.473,51.814],[-0.473,51.817],[-0.476,51.816],[-0.481,51.815],[-0.483,51.812],[-0.486,51.815],[-0.488,51.816],[-0.49,51.819],[-0.493,51.818],[-0.495,51.818],[-0.502,51.82],[-0.501,51.823],[-0.502,51.826],[-0.496,51.831],[-0.498,51.834],[-0.498,51.835],[-0.492,51.842],[-0.484,51.841],[-0.48,51.84],[-0.47,51.844],[-0.476,51.849],[-0.471,51.851],[-0.468,51.852],[-0.467,51.851],[-0.462,51.854],[-0.461,51.854],[-0.456,51.856],[-0.454,51.853],[-0.456,51.852],[-0.453,51.851],[-0.452,51.85],[-0.449,51.85],[-0.445,51.849],[-0.443,51.85],[-0.443,51.845],[-0.436,51.844],[-0.434,51.843],[-0.438,51.84],[-0.435,51.838],[-0.43,51.839],[-0.424,51.835],[-0.423,51.836],[-0.419,51.834],[-0.418,51.836],[-0.415,51.838],[-0.412,51.836],[-0.407,51.835],[-0.402,51.836],[-0.397,51.835],[-0.396,51.836],[-0.391,51.835],[-0.381,51.839],[-0.379,51.841],[-0.367,51.839],[-0.365,51.84],[-0.359,51.835],[-0.359,51.84],[-0.358,51.84],[-0.357,51.838],[-0.353,51.833],[-0.351,51.833],[-0.35,51.837],[-0.344,51.842],[-0.346,51.844],[-0.343,51.849],[-0.338,51.848],[-0.337,51.849],[-0.329,51.846],[-0.326,51.844],[-0.325,51.842],[-0.321,51.844],[-0.318,51.842],[-0.319,51.842],[-0.318,51.839],[-0.315,51.838],[-0.314,51.84],[-0.313,51.841],[-0.311,51.84],[-0.309,51.842],[-0.309,51.844],[-0.307,51.846],[-0.304,51.845],[-0.304,51.842],[-0.303,51.84],[-0.302,51.837],[-0.299,51.834],[-0.296,51.836],[-0.295,51.839],[-0.291,51.835],[-0.289,51.834],[-0.281,51.834],[-0.281,51.839],[-0.287,51.837],[-0.291,51.838],[-0.293,51.84],[-0.278,51.846],[-0.274,51.85],[-0.268,51.848],[-0.259,51.847],[-0.257,51.841],[-0.255,51.84],[-0.246,51.84],[-0.246,51.839],[-0.242,51.835],[-0.24,51.835],[-0.234,51.836],[-0.234,51.839],[-0.235,51.84],[-0.232,51.845],[-0.231,51.846],[-0.228,51.846],[-0.224,51.848],[-0.22,51.849],[-0.223,51.852],[-0.224,51.855],[-0.228,51.86],[-0.224,51.861],[-0.222,51.86],[-0.22,51.861],[-0.217,51.86],[-0.212,51.861],[-0.214,51.863],[-0.211,51.864],[-0.206,51.862],[-0.205,51.861],[-0.2,51.86],[-0.196,51.859],[-0.196,51.858],[-0.195,51.857],[-0.189,51.855],[-0.184,51.854],[-0.183,51.846],[-0.183,51.844],[-0.179,51.844],[-0.179,51.845],[-0.172,51.846],[-0.171,51.845],[-0.169,51.844],[-0.169,51.841],[-0.167,51.84],[-0.159,51.839],[-0.157,51.84],[-0.155,51.84],[-0.157,51.838],[-0.154,51.836],[-0.149,51.837],[-0.146,51.834],[-0.143,51.834],[-0.138,51.831],[-0.136,51.83],[-0.137,51.828],[-0.142,51.825],[-0.144,51.819],[-0.143,51.817],[-0.145,51.815],[-0.151,51.812],[-0.152,51.811],[-0.156,51.81],[-0.153,51.806],[-0.152,51.804],[-0.15,51.802],[-0.154,51.801],[-0.156,51.799],[-0.156,51.794],[-0.158,51.794],[-0.164,51.79],[-0.159,51.789],[-0.156,51.789],[-0.151,51.788],[-0.151,51.784],[-0.148,51.782],[-0.143,51.777],[-0.143,51.774],[-0.146,51.773],[-0.147,51.769],[-0.144,51.769],[-0.141,51.767],[-0.141,51.765],[-0.147,51.765],[-0.146,51.763],[-0.144,51.762],[-0.14,51.762],[-0.137,51.76],[-0.138,51.756],[-0.144,51.753],[-0.143,51.751],[-0.141,51.75],[-0.143,51.744],[-0.145,51.742],[-0.147,51.741],[-0.146,51.738],[-0.142,51.736],[-0.149,51.737],[-0.153,51.738],[-0.151,51.727]]]},"properties":{"OBJECTID":2,"NAME":"AL","KEY":"AL","Shape_Leng":1.38278,"Shape_Area":0.0388041}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.828,52.131],[-1.833,52.132],[-1.842,52.131],[-1.842,52.132],[-1.846,52.132],[-1.857,52.137],[-1.858,52.139],[-1.862,52.141],[-1.865,52.141],[-1.87,52.14],[-1.872,52.14],[-1.871,52.143],[-1.869,52.143],[-1.866,52.145],[-1.869,52.147],[-1.868,52.151],[-1.871,52.154],[-1.875,52.155],[-1.88,52.155],[-1.882,52.154],[-1.885,52.157],[-1.882,52.159],[-1.881,52.161],[-1.884,52.165],[-1.885,52.167],[-1.884,52.171],[-1.898,52.17],[-1.903,52.17],[-1.91,52.173],[-1.913,52.173],[-1.916,52.176],[-1.92,52.178],[-1.924,52.178],[-1.926,52.177],[-1.939,52.177],[-1.943,52.181],[-1.942,52.182],[-1.94,52.184],[-1.933,52.185],[-1.929,52.189],[-1.926,52.188],[-1.926,52.191],[-1.93,52.195],[-1.934,52.197],[-1.937,52.201],[-1.948,52.202],[-1.954,52.204],[-1.956,52.207],[-1.957,52.208],[-1.955,52.213],[-1.951,52.215],[-1.944,52.215],[-1.944,52.217],[-1.947,52.22],[-1.944,52.22],[-1.942,52.221],[-1.937,52.223],[-1.94,52.227],[-1.937,52.228],[-1.942,52.23],[-1.948,52.229],[-1.95,52.228],[-1.954,52.228],[-1.956,52.23],[-1.951,52.231],[-1.951,52.232],[-1.956,52.231],[-1.958,52.232],[-1.96,52.231],[-1.962,52.229],[-1.962,52.227],[-1.965,52.226],[-1.967,52.223],[-1.969,52.223],[-1.972,52.223],[-1.983,52.223],[-1.995,52.225],[-1.997,52.225],[-1.997,52.223],[-1.993,52.222],[-1.996,52.221],[-1.999,52.223],[-1.999,52.22],[-2.005,52.222],[-2.008,52.221],[-2.013,52.22],[-2.017,52.223],[-2.026,52.222],[-2.029,52.221],[-2.034,52.222],[-2.037,52.221],[-2.042,52.224],[-2.04,52.225],[-2.044,52.227],[-2.043,52.228],[-2.05,52.233],[-2.046,52.236],[-2.046,52.237],[-2.043,52.237],[-2.041,52.241],[-2.047,52.242],[-2.05,52.242],[-2.056,52.243],[-2.055,52.248],[-2.052,52.254],[-2.057,52.258],[-2.063,52.258],[-2.067,52.259],[-2.066,52.262],[-2.068,52.264],[-2.066,52.266],[-2.068,52.268],[-2.074,52.267],[-2.075,52.269],[-2.079,52.268],[-2.08,52.271],[-2.078,52.272],[-2.073,52.273],[-2.068,52.275],[-2.07,52.277],[-2.072,52.277],[-2.078,52.28],[-2.082,52.282],[-2.086,52.282],[-2.09,52.282],[-2.095,52.283],[-2.096,52.283],[-2.102,52.275],[-2.104,52.271],[-2.108,52.272],[-2.119,52.278],[-2.112,52.283],[-2.099,52.291],[-2.102,52.294],[-2.107,52.293],[-2.108,52.295],[-2.111,52.296],[-2.106,52.3],[-2.102,52.302],[-2.104,52.303],[-2.108,52.302],[-2.111,52.303],[-2.107,52.306],[-2.111,52.307],[-2.121,52.31],[-2.119,52.314],[-2.122,52.314],[-2.125,52.313],[-2.128,52.309],[-2.131,52.308],[-2.133,52.311],[-2.136,52.314],[-2.137,52.317],[-2.139,52.317],[-2.146,52.321],[-2.144,52.323],[-2.142,52.323],[-2.137,52.326],[-2.138,52.328],[-2.14,52.33],[-2.14,52.332],[-2.142,52.333],[-2.146,52.334],[-2.146,52.336],[-2.144,52.338],[-2.14,52.339],[-2.138,52.342],[-2.136,52.344],[-2.133,52.348],[-2.135,52.349],[-2.133,52.35],[-2.133,52.355],[-2.13,52.356],[-2.127,52.36],[-2.127,52.361],[-2.123,52.363],[-2.118,52.363],[-2.115,52.362],[-2.115,52.361],[-2.119,52.36],[-2.122,52.358],[-2.121,52.356],[-2.114,52.358],[-2.114,52.359],[-2.107,52.359],[-2.105,52.36],[-2.102,52.36],[-2.099,52.361],[-2.101,52.363],[-2.098,52.366],[-2.099,52.369],[-2.096,52.374],[-2.093,52.379],[-2.092,52.38],[-2.087,52.384],[-2.081,52.384],[-2.08,52.382],[-2.078,52.383],[-2.069,52.386],[-2.07,52.39],[-2.063,52.392],[-2.059,52.394],[-2.055,52.393],[-2.055,52.398],[-2.057,52.399],[-2.059,52.398],[-2.067,52.395],[-2.072,52.395],[-2.07,52.398],[-2.074,52.397],[-2.081,52.398],[-2.082,52.398],[-2.086,52.398],[-2.085,52.401],[-2.078,52.402],[-2.083,52.406],[-2.09,52.407],[-2.085,52.408],[-2.082,52.409],[-2.081,52.411],[-2.084,52.413],[-2.087,52.417],[-2.091,52.417],[-2.095,52.419],[-2.088,52.423],[-2.092,52.425],[-2.091,52.429],[-2.088,52.429],[-2.086,52.43],[-2.087,52.432],[-2.091,52.434],[-2.095,52.433],[-2.095,52.437],[-2.093,52.439],[-2.088,52.441],[-2.087,52.443],[-2.089,52.445],[-2.097,52.447],[-2.095,52.45],[-2.098,52.453],[-2.097,52.453],[-2.098,52.456],[-2.101,52.457],[-2.1,52.461],[-2.101,52.463],[-2.103,52.464],[-2.101,52.467],[-2.096,52.469],[-2.095,52.472],[-2.094,52.474],[-2.091,52.473],[-2.09,52.475],[-2.087,52.475],[-2.085,52.474],[-2.082,52.476],[-2.079,52.478],[-2.073,52.477],[-2.073,52.479],[-2.071,52.479],[-2.071,52.481],[-2.071,52.483],[-2.067,52.483],[-2.068,52.487],[-2.067,52.489],[-2.067,52.49],[-2.071,52.492],[-2.065,52.498],[-2.06,52.504],[-2.062,52.508],[-2.058,52.511],[-2.059,52.514],[-2.056,52.515],[-2.052,52.515],[-2.051,52.514],[-2.049,52.516],[-2.043,52.522],[-2.039,52.521],[-2.037,52.524],[-2.03,52.525],[-2.027,52.525],[-2.026,52.526],[-2.031,52.53],[-2.028,52.531],[-2.027,52.533],[-2.027,52.536],[-2.03,52.539],[-2.028,52.542],[-2.025,52.542],[-2.022,52.542],[-2.02,52.542],[-2.019,52.543],[-2.011,52.545],[-2.004,52.546],[-1.997,52.548],[-1.98,52.55],[-1.978,52.552],[-1.975,52.551],[-1.971,52.552],[-1.969,52.549],[-1.965,52.55],[-1.963,52.549],[-1.958,52.55],[-1.955,52.552],[-1.954,52.553],[-1.953,52.557],[-1.952,52.558],[-1.948,52.561],[-1.943,52.563],[-1.942,52.562],[-1.934,52.562],[-1.93,52.564],[-1.931,52.565],[-1.927,52.568],[-1.925,52.567],[-1.922,52.565],[-1.924,52.563],[-1.921,52.562],[-1.918,52.562],[-1.914,52.561],[-1.915,52.563],[-1.913,52.565],[-1.908,52.564],[-1.903,52.566],[-1.908,52.569],[-1.897,52.573],[-1.898,52.574],[-1.901,52.574],[-1.903,52.572],[-1.906,52.573],[-1.906,52.577],[-1.909,52.578],[-1.901,52.584],[-1.899,52.585],[-1.893,52.585],[-1.887,52.588],[-1.887,52.59],[-1.889,52.593],[-1.89,52.594],[-1.891,52.595],[-1.887,52.596],[-1.885,52.595],[-1.883,52.597],[-1.881,52.602],[-1.876,52.604],[-1.872,52.61],[-1.867,52.61],[-1.864,52.611],[-1.861,52.61],[-1.862,52.608],[-1.858,52.607],[-1.854,52.611],[-1.849,52.613],[-1.841,52.614],[-1.843,52.61],[-1.838,52.608],[-1.839,52.603],[-1.837,52.603],[-1.836,52.607],[-1.828,52.609],[-1.818,52.606],[-1.817,52.608],[-1.811,52.611],[-1.811,52.614],[-1.807,52.618],[-1.801,52.623],[-1.802,52.625],[-1.8,52.625],[-1.791,52.623],[-1.788,52.622],[-1.784,52.624],[-1.774,52.624],[-1.771,52.624],[-1.768,52.625],[-1.767,52.627],[-1.769,52.628],[-1.775,52.63],[-1.773,52.632],[-1.78,52.634],[-1.779,52.635],[-1.779,52.639],[-1.773,52.639],[-1.771,52.643],[-1.768,52.643],[-1.767,52.641],[-1.762,52.641],[-1.758,52.643],[-1.759,52.645],[-1.758,52.646],[-1.753,52.649],[-1.751,52.65],[-1.744,52.655],[-1.734,52.653],[-1.725,52.655],[-1.729,52.66],[-1.734,52.665],[-1.737,52.667],[-1.743,52.671],[-1.734,52.673],[-1.729,52.674],[-1.728,52.68],[-1.726,52.683],[-1.722,52.684],[-1.718,52.687],[-1.724,52.688],[-1.728,52.688],[-1.733,52.687],[-1.738,52.69],[-1.74,52.694],[-1.74,52.7],[-1.735,52.708],[-1.735,52.712],[-1.734,52.713],[-1.724,52.714],[-1.714,52.711],[-1.706,52.697],[-1.705,52.697],[-1.706,52.703],[-1.705,52.703],[-1.698,52.709],[-1.697,52.71],[-1.699,52.712],[-1.693,52.717],[-1.699,52.726],[-1.685,52.726],[-1.681,52.728],[-1.676,52.728],[-1.673,52.726],[-1.662,52.726],[-1.66,52.724],[-1.657,52.721],[-1.659,52.716],[-1.665,52.715],[-1.667,52.714],[-1.663,52.709],[-1.655,52.709],[-1.654,52.707],[-1.652,52.708],[-1.647,52.708],[-1.645,52.705],[-1.64,52.702],[-1.636,52.701],[-1.628,52.702],[-1.628,52.707],[-1.621,52.707],[-1.619,52.704],[-1.613,52.701],[-1.608,52.705],[-1.605,52.707],[-1.603,52.71],[-1.599,52.708],[-1.595,52.705],[-1.593,52.703],[-1.596,52.697],[-1.593,52.695],[-1.597,52.692],[-1.597,52.691],[-1.593,52.691],[-1.594,52.689],[-1.585,52.685],[-1.581,52.682],[-1.577,52.682],[-1.574,52.678],[-1.568,52.679],[-1.559,52.683],[-1.553,52.68],[-1.559,52.674],[-1.563,52.671],[-1.578,52.66],[-1.587,52.654],[-1.577,52.654],[-1.575,52.652],[-1.573,52.654],[-1.571,52.653],[-1.568,52.655],[-1.567,52.654],[-1.57,52.652],[-1.573,52.652],[-1.575,52.65],[-1.572,52.645],[-1.565,52.642],[-1.557,52.639],[-1.548,52.637],[-1.547,52.637],[-1.552,52.633],[-1.557,52.632],[-1.559,52.628],[-1.566,52.628],[-1.569,52.627],[-1.57,52.621],[-1.577,52.621],[-1.583,52.62],[-1.583,52.618],[-1.584,52.616],[-1.583,52.61],[-1.588,52.609],[-1.586,52.606],[-1.587,52.604],[-1.59,52.603],[-1.589,52.602],[-1.594,52.6],[-1.596,52.598],[-1.606,52.599],[-1.608,52.596],[-1.602,52.594],[-1.604,52.591],[-1.606,52.591],[-1.609,52.594],[-1.615,52.595],[-1.616,52.594],[-1.615,52.591],[-1.619,52.588],[-1.62,52.589],[-1.624,52.588],[-1.624,52.584],[-1.629,52.582],[-1.634,52.583],[-1.635,52.586],[-1.637,52.587],[-1.645,52.589],[-1.649,52.588],[-1.656,52.588],[-1.658,52.586],[-1.655,52.584],[-1.652,52.584],[-1.652,52.582],[-1.655,52.578],[-1.655,52.575],[-1.656,52.573],[-1.662,52.569],[-1.659,52.564],[-1.662,52.56],[-1.662,52.555],[-1.666,52.552],[-1.669,52.551],[-1.672,52.551],[-1.67,52.549],[-1.667,52.548],[-1.666,52.546],[-1.661,52.545],[-1.656,52.541],[-1.651,52.544],[-1.643,52.549],[-1.639,52.55],[-1.633,52.542],[-1.628,52.543],[-1.62,52.539],[-1.618,52.538],[-1.614,52.535],[-1.611,52.535],[-1.608,52.533],[-1.6,52.534],[-1.596,52.533],[-1.594,52.529],[-1.6,52.527],[-1.595,52.525],[-1.596,52.524],[-1.596,52.519],[-1.596,52.517],[-1.603,52.515],[-1.605,52.514],[-1.612,52.512],[-1.615,52.51],[-1.61,52.508],[-1.613,52.507],[-1.614,52.507],[-1.617,52.51],[-1.62,52.511],[-1.622,52.512],[-1.625,52.509],[-1.627,52.509],[-1.623,52.507],[-1.609,52.499],[-1.608,52.494],[-1.612,52.494],[-1.615,52.494],[-1.618,52.491],[-1.625,52.49],[-1.639,52.488],[-1.635,52.486],[-1.632,52.488],[-1.628,52.488],[-1.633,52.484],[-1.637,52.482],[-1.636,52.478],[-1.641,52.479],[-1.646,52.479],[-1.647,52.477],[-1.645,52.469],[-1.661,52.471],[-1.666,52.472],[-1.669,52.473],[-1.674,52.471],[-1.678,52.47],[-1.68,52.469],[-1.683,52.468],[-1.687,52.468],[-1.691,52.471],[-1.693,52.469],[-1.697,52.468],[-1.695,52.463],[-1.702,52.459],[-1.7,52.456],[-1.702,52.451],[-1.695,52.449],[-1.696,52.446],[-1.687,52.446],[-1.686,52.444],[-1.69,52.443],[-1.69,52.438],[-1.687,52.437],[-1.685,52.433],[-1.68,52.434],[-1.675,52.433],[-1.675,52.43],[-1.678,52.424],[-1.678,52.421],[-1.664,52.427],[-1.661,52.426],[-1.661,52.422],[-1.664,52.422],[-1.665,52.42],[-1.667,52.42],[-1.665,52.416],[-1.662,52.415],[-1.659,52.411],[-1.661,52.407],[-1.659,52.403],[-1.666,52.407],[-1.669,52.404],[-1.674,52.404],[-1.679,52.403],[-1.681,52.4],[-1.68,52.399],[-1.677,52.393],[-1.683,52.393],[-1.687,52.391],[-1.688,52.388],[-1.687,52.387],[-1.688,52.381],[-1.687,52.381],[-1.687,52.378],[-1.699,52.371],[-1.691,52.367],[-1.688,52.366],[-1.686,52.365],[-1.682,52.365],[-1.685,52.363],[-1.681,52.357],[-1.683,52.355],[-1.675,52.354],[-1.672,52.353],[-1.671,52.352],[-1.676,52.347],[-1.679,52.348],[-1.686,52.346],[-1.689,52.347],[-1.693,52.343],[-1.692,52.341],[-1.695,52.334],[-1.698,52.333],[-1.701,52.336],[-1.706,52.335],[-1.708,52.335],[-1.713,52.337],[-1.715,52.336],[-1.718,52.334],[-1.722,52.336],[-1.724,52.334],[-1.728,52.335],[-1.728,52.33],[-1.728,52.324],[-1.726,52.321],[-1.724,52.319],[-1.727,52.317],[-1.727,52.314],[-1.726,52.311],[-1.722,52.312],[-1.718,52.311],[-1.714,52.312],[-1.714,52.309],[-1.716,52.306],[-1.713,52.305],[-1.718,52.303],[-1.718,52.302],[-1.723,52.3],[-1.732,52.295],[-1.733,52.292],[-1.737,52.29],[-1.74,52.29],[-1.743,52.288],[-1.743,52.286],[-1.746,52.286],[-1.749,52.28],[-1.741,52.273],[-1.742,52.272],[-1.741,52.268],[-1.735,52.267],[-1.734,52.263],[-1.732,52.26],[-1.729,52.259],[-1.723,52.256],[-1.726,52.254],[-1.73,52.253],[-1.723,52.252],[-1.714,52.251],[-1.725,52.248],[-1.727,52.248],[-1.733,52.252],[-1.738,52.251],[-1.743,52.249],[-1.749,52.246],[-1.752,52.246],[-1.756,52.241],[-1.755,52.239],[-1.756,52.236],[-1.763,52.236],[-1.768,52.234],[-1.777,52.231],[-1.783,52.231],[-1.787,52.225],[-1.781,52.226],[-1.782,52.224],[-1.786,52.221],[-1.784,52.218],[-1.785,52.216],[-1.78,52.215],[-1.778,52.213],[-1.778,52.209],[-1.788,52.207],[-1.791,52.202],[-1.784,52.202],[-1.784,52.2],[-1.781,52.197],[-1.783,52.19],[-1.788,52.19],[-1.795,52.193],[-1.795,52.194],[-1.801,52.197],[-1.802,52.196],[-1.81,52.193],[-1.81,52.192],[-1.813,52.188],[-1.811,52.185],[-1.808,52.184],[-1.81,52.18],[-1.807,52.179],[-1.806,52.177],[-1.809,52.177],[-1.808,52.172],[-1.808,52.17],[-1.807,52.169],[-1.793,52.164],[-1.795,52.161],[-1.799,52.161],[-1.81,52.162],[-1.814,52.163],[-1.817,52.164],[-1.824,52.164],[-1.828,52.163],[-1.828,52.158],[-1.831,52.158],[-1.828,52.152],[-1.834,52.149],[-1.832,52.142],[-1.826,52.142],[-1.821,52.14],[-1.821,52.139],[-1.828,52.131]]]},"properties":{"OBJECTID":3,"NAME":"B","KEY":"B.","Shape_Leng":3.66537,"Shape_Area":0.172983}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.342,50.98],[-2.343,50.979],[-2.351,50.979],[-2.353,50.978],[-2.36,50.977],[-2.362,50.972],[-2.366,50.97],[-2.372,50.97],[-2.373,50.969],[-2.381,50.968],[-2.386,50.967],[-2.388,50.971],[-2.393,50.972],[-2.393,50.97],[-2.394,50.969],[-2.398,50.968],[-2.405,50.964],[-2.413,50.966],[-2.422,50.965],[-2.429,50.965],[-2.427,50.967],[-2.43,50.975],[-2.429,50.979],[-2.439,50.98],[-2.444,50.98],[-2.45,50.981],[-2.454,50.984],[-2.451,50.987],[-2.451,50.995],[-2.443,50.997],[-2.435,50.998],[-2.435,51.002],[-2.437,51.003],[-2.443,51.003],[-2.446,51.002],[-2.45,51.003],[-2.451,51.002],[-2.449,51.001],[-2.448,51],[-2.451,50.999],[-2.455,50.999],[-2.456,50.998],[-2.46,50.999],[-2.463,50.999],[-2.471,51.002],[-2.469,51.003],[-2.472,51.005],[-2.475,51.009],[-2.474,51.011],[-2.467,51.014],[-2.47,51.017],[-2.468,51.021],[-2.476,51.025],[-2.477,51.025],[-2.479,51.021],[-2.48,51.019],[-2.485,51.018],[-2.486,51.026],[-2.499,51.03],[-2.5,51.029],[-2.499,51.026],[-2.498,51.022],[-2.503,51.019],[-2.504,51.017],[-2.512,51.018],[-2.515,51.019],[-2.516,51.018],[-2.53,51.016],[-2.529,51.015],[-2.532,51.013],[-2.535,51.011],[-2.534,51.007],[-2.539,51.004],[-2.536,50.999],[-2.534,50.997],[-2.536,50.994],[-2.544,50.992],[-2.543,50.995],[-2.55,50.996],[-2.549,50.992],[-2.547,50.991],[-2.548,50.986],[-2.549,50.985],[-2.553,50.983],[-2.555,50.982],[-2.561,50.98],[-2.563,50.979],[-2.566,50.982],[-2.574,50.978],[-2.575,50.978],[-2.572,50.981],[-2.569,50.982],[-2.573,50.989],[-2.575,50.991],[-2.583,50.978],[-2.585,50.976],[-2.589,50.981],[-2.59,50.981],[-2.603,50.98],[-2.599,50.978],[-2.592,50.976],[-2.599,50.973],[-2.599,50.972],[-2.595,50.968],[-2.592,50.966],[-2.594,50.963],[-2.6,50.95],[-2.602,50.948],[-2.604,50.947],[-2.601,50.944],[-2.597,50.947],[-2.592,50.943],[-2.597,50.942],[-2.595,50.94],[-2.594,50.935],[-2.601,50.937],[-2.606,50.934],[-2.605,50.932],[-2.605,50.928],[-2.604,50.926],[-2.602,50.924],[-2.598,50.923],[-2.596,50.922],[-2.589,50.917],[-2.592,50.916],[-2.596,50.915],[-2.6,50.913],[-2.607,50.911],[-2.61,50.908],[-2.613,50.907],[-2.622,50.902],[-2.615,50.898],[-2.615,50.897],[-2.613,50.896],[-2.609,50.892],[-2.609,50.887],[-2.607,50.888],[-2.604,50.891],[-2.602,50.892],[-2.602,50.888],[-2.602,50.885],[-2.598,50.881],[-2.594,50.876],[-2.594,50.875],[-2.598,50.873],[-2.604,50.881],[-2.606,50.881],[-2.606,50.882],[-2.612,50.882],[-2.615,50.883],[-2.623,50.882],[-2.624,50.88],[-2.625,50.877],[-2.621,50.872],[-2.622,50.871],[-2.632,50.869],[-2.634,50.867],[-2.634,50.866],[-2.637,50.864],[-2.637,50.862],[-2.635,50.859],[-2.635,50.856],[-2.638,50.857],[-2.639,50.859],[-2.638,50.862],[-2.639,50.864],[-2.643,50.865],[-2.645,50.864],[-2.651,50.864],[-2.653,50.862],[-2.657,50.862],[-2.661,50.86],[-2.665,50.861],[-2.669,50.862],[-2.677,50.86],[-2.682,50.861],[-2.69,50.86],[-2.695,50.863],[-2.698,50.861],[-2.696,50.86],[-2.697,50.857],[-2.698,50.856],[-2.705,50.855],[-2.707,50.857],[-2.711,50.857],[-2.713,50.856],[-2.717,50.857],[-2.722,50.862],[-2.716,50.864],[-2.71,50.867],[-2.707,50.867],[-2.704,50.87],[-2.703,50.877],[-2.709,50.879],[-2.711,50.879],[-2.713,50.883],[-2.71,50.888],[-2.711,50.889],[-2.708,50.892],[-2.71,50.895],[-2.712,50.896],[-2.717,50.896],[-2.726,50.896],[-2.728,50.896],[-2.729,50.898],[-2.738,50.909],[-2.744,50.91],[-2.744,50.914],[-2.744,50.918],[-2.741,50.919],[-2.732,50.918],[-2.729,50.926],[-2.726,50.926],[-2.723,50.933],[-2.72,50.935],[-2.721,50.936],[-2.727,50.939],[-2.731,50.942],[-2.73,50.945],[-2.725,50.944],[-2.72,50.943],[-2.713,50.942],[-2.708,50.94],[-2.706,50.941],[-2.705,50.946],[-2.709,50.948],[-2.706,50.951],[-2.704,50.952],[-2.713,50.955],[-2.711,50.957],[-2.702,50.955],[-2.695,50.959],[-2.701,50.963],[-2.702,50.965],[-2.705,50.967],[-2.711,50.967],[-2.714,50.965],[-2.72,50.963],[-2.725,50.961],[-2.729,50.963],[-2.731,50.962],[-2.731,50.96],[-2.734,50.958],[-2.74,50.96],[-2.742,50.961],[-2.744,50.964],[-2.745,50.966],[-2.729,50.975],[-2.73,50.976],[-2.729,50.978],[-2.729,50.983],[-2.727,50.988],[-2.728,50.99],[-2.73,50.992],[-2.733,50.998],[-2.734,51.006],[-2.735,51.009],[-2.731,51.01],[-2.722,51.009],[-2.714,51.016],[-2.698,51.017],[-2.694,51.026],[-2.69,51.026],[-2.682,51.022],[-2.677,51.022],[-2.672,51.023],[-2.668,51.024],[-2.663,51.023],[-2.663,51.025],[-2.662,51.03],[-2.651,51.046],[-2.645,51.052],[-2.644,51.055],[-2.643,51.055],[-2.641,51.051],[-2.636,51.049],[-2.633,51.047],[-2.632,51.046],[-2.629,51.046],[-2.629,51.044],[-2.62,51.04],[-2.615,51.038],[-2.61,51.037],[-2.603,51.04],[-2.607,51.048],[-2.602,51.051],[-2.605,51.053],[-2.601,51.053],[-2.586,51.054],[-2.584,51.055],[-2.582,51.055],[-2.575,51.056],[-2.573,51.056],[-2.571,51.059],[-2.572,51.062],[-2.573,51.063],[-2.574,51.069],[-2.579,51.069],[-2.587,51.073],[-2.586,51.078],[-2.596,51.076],[-2.597,51.079],[-2.596,51.079],[-2.602,51.082],[-2.602,51.085],[-2.597,51.084],[-2.596,51.084],[-2.591,51.084],[-2.59,51.086],[-2.591,51.089],[-2.597,51.091],[-2.594,51.097],[-2.598,51.099],[-2.606,51.09],[-2.607,51.092],[-2.608,51.096],[-2.613,51.097],[-2.613,51.101],[-2.614,51.104],[-2.615,51.106],[-2.617,51.105],[-2.626,51.096],[-2.629,51.093],[-2.628,51.091],[-2.629,51.088],[-2.634,51.088],[-2.635,51.089],[-2.64,51.089],[-2.643,51.091],[-2.644,51.092],[-2.647,51.095],[-2.646,51.099],[-2.647,51.102],[-2.653,51.102],[-2.657,51.103],[-2.659,51.1],[-2.663,51.097],[-2.664,51.096],[-2.668,51.094],[-2.667,51.092],[-2.672,51.09],[-2.675,51.09],[-2.682,51.089],[-2.686,51.089],[-2.683,51.084],[-2.682,51.082],[-2.686,51.079],[-2.687,51.077],[-2.685,51.074],[-2.682,51.072],[-2.684,51.071],[-2.701,51.073],[-2.703,51.073],[-2.708,51.086],[-2.716,51.086],[-2.717,51.088],[-2.717,51.091],[-2.712,51.096],[-2.718,51.1],[-2.72,51.102],[-2.728,51.104],[-2.734,51.106],[-2.738,51.107],[-2.739,51.106],[-2.743,51.105],[-2.744,51.103],[-2.747,51.104],[-2.747,51.102],[-2.752,51.098],[-2.757,51.098],[-2.762,51.098],[-2.765,51.096],[-2.774,51.093],[-2.782,51.091],[-2.786,51.109],[-2.788,51.11],[-2.794,51.11],[-2.791,51.114],[-2.787,51.116],[-2.786,51.118],[-2.791,51.119],[-2.79,51.121],[-2.79,51.122],[-2.793,51.122],[-2.792,51.126],[-2.789,51.128],[-2.785,51.128],[-2.784,51.13],[-2.784,51.133],[-2.781,51.135],[-2.785,51.136],[-2.783,51.141],[-2.785,51.141],[-2.791,51.141],[-2.793,51.142],[-2.802,51.144],[-2.803,51.156],[-2.804,51.159],[-2.817,51.159],[-2.832,51.156],[-2.833,51.157],[-2.828,51.164],[-2.834,51.168],[-2.844,51.168],[-2.847,51.169],[-2.847,51.172],[-2.845,51.175],[-2.845,51.178],[-2.842,51.183],[-2.837,51.181],[-2.846,51.191],[-2.845,51.195],[-2.842,51.194],[-2.837,51.191],[-2.825,51.187],[-2.818,51.185],[-2.813,51.182],[-2.805,51.187],[-2.803,51.186],[-2.799,51.185],[-2.794,51.187],[-2.787,51.186],[-2.783,51.187],[-2.79,51.195],[-2.789,51.198],[-2.782,51.198],[-2.774,51.197],[-2.771,51.198],[-2.772,51.204],[-2.772,51.205],[-2.769,51.205],[-2.769,51.206],[-2.774,51.21],[-2.773,51.211],[-2.77,51.211],[-2.768,51.21],[-2.762,51.21],[-2.753,51.212],[-2.75,51.21],[-2.737,51.213],[-2.73,51.217],[-2.737,51.22],[-2.74,51.224],[-2.732,51.232],[-2.734,51.235],[-2.736,51.236],[-2.736,51.238],[-2.738,51.241],[-2.734,51.244],[-2.731,51.242],[-2.724,51.239],[-2.722,51.239],[-2.722,51.241],[-2.726,51.243],[-2.727,51.244],[-2.724,51.245],[-2.726,51.248],[-2.723,51.253],[-2.718,51.254],[-2.716,51.258],[-2.717,51.261],[-2.72,51.26],[-2.721,51.262],[-2.732,51.262],[-2.736,51.268],[-2.73,51.271],[-2.732,51.279],[-2.733,51.28],[-2.736,51.278],[-2.739,51.278],[-2.74,51.28],[-2.742,51.281],[-2.744,51.283],[-2.746,51.283],[-2.746,51.284],[-2.744,51.286],[-2.744,51.287],[-2.735,51.291],[-2.728,51.287],[-2.722,51.285],[-2.719,51.288],[-2.717,51.289],[-2.711,51.291],[-2.704,51.289],[-2.7,51.287],[-2.696,51.289],[-2.693,51.287],[-2.689,51.286],[-2.688,51.278],[-2.68,51.278],[-2.674,51.275],[-2.669,51.276],[-2.662,51.274],[-2.66,51.272],[-2.657,51.271],[-2.654,51.271],[-2.653,51.268],[-2.648,51.267],[-2.645,51.272],[-2.638,51.277],[-2.634,51.276],[-2.629,51.278],[-2.621,51.279],[-2.622,51.284],[-2.62,51.285],[-2.617,51.288],[-2.618,51.291],[-2.613,51.292],[-2.607,51.289],[-2.607,51.288],[-2.609,51.287],[-2.609,51.285],[-2.606,51.286],[-2.601,51.285],[-2.601,51.286],[-2.602,51.289],[-2.602,51.29],[-2.599,51.294],[-2.593,51.297],[-2.593,51.298],[-2.588,51.302],[-2.581,51.298],[-2.581,51.296],[-2.576,51.296],[-2.576,51.294],[-2.57,51.297],[-2.566,51.299],[-2.565,51.3],[-2.558,51.301],[-2.554,51.297],[-2.551,51.296],[-2.544,51.292],[-2.54,51.293],[-2.541,51.291],[-2.539,51.29],[-2.534,51.29],[-2.528,51.286],[-2.525,51.285],[-2.523,51.286],[-2.52,51.29],[-2.516,51.291],[-2.511,51.288],[-2.51,51.289],[-2.507,51.287],[-2.503,51.288],[-2.498,51.291],[-2.497,51.293],[-2.493,51.293],[-2.493,51.296],[-2.49,51.297],[-2.486,51.296],[-2.483,51.298],[-2.483,51.303],[-2.486,51.304],[-2.49,51.304],[-2.492,51.307],[-2.487,51.307],[-2.483,51.308],[-2.479,51.309],[-2.477,51.315],[-2.475,51.316],[-2.476,51.318],[-2.477,51.318],[-2.483,51.317],[-2.487,51.317],[-2.49,51.316],[-2.493,51.317],[-2.494,51.318],[-2.493,51.321],[-2.496,51.321],[-2.498,51.323],[-2.501,51.325],[-2.498,51.326],[-2.498,51.328],[-2.501,51.329],[-2.503,51.329],[-2.504,51.327],[-2.511,51.33],[-2.511,51.331],[-2.509,51.335],[-2.507,51.338],[-2.512,51.338],[-2.513,51.338],[-2.518,51.339],[-2.519,51.341],[-2.519,51.346],[-2.517,51.348],[-2.511,51.353],[-2.506,51.354],[-2.501,51.351],[-2.493,51.361],[-2.494,51.363],[-2.494,51.366],[-2.489,51.367],[-2.483,51.371],[-2.481,51.373],[-2.484,51.373],[-2.491,51.374],[-2.486,51.378],[-2.481,51.379],[-2.481,51.38],[-2.476,51.382],[-2.473,51.386],[-2.471,51.386],[-2.471,51.388],[-2.469,51.392],[-2.456,51.393],[-2.452,51.392],[-2.449,51.39],[-2.445,51.39],[-2.443,51.392],[-2.443,51.394],[-2.442,51.395],[-2.433,51.391],[-2.434,51.393],[-2.443,51.396],[-2.448,51.401],[-2.449,51.403],[-2.448,51.404],[-2.446,51.408],[-2.44,51.41],[-2.438,51.413],[-2.44,51.416],[-2.437,51.417],[-2.437,51.42],[-2.436,51.421],[-2.434,51.424],[-2.43,51.423],[-2.423,51.424],[-2.418,51.421],[-2.416,51.422],[-2.414,51.428],[-2.416,51.43],[-2.415,51.431],[-2.412,51.432],[-2.407,51.433],[-2.405,51.434],[-2.401,51.433],[-2.398,51.434],[-2.398,51.436],[-2.397,51.442],[-2.394,51.445],[-2.393,51.448],[-2.391,51.449],[-2.384,51.447],[-2.383,51.445],[-2.38,51.44],[-2.378,51.439],[-2.374,51.439],[-2.368,51.437],[-2.368,51.439],[-2.364,51.439],[-2.363,51.442],[-2.36,51.443],[-2.357,51.447],[-2.349,51.448],[-2.343,51.443],[-2.342,51.443],[-2.34,51.446],[-2.337,51.448],[-2.333,51.447],[-2.332,51.447],[-2.322,51.446],[-2.324,51.447],[-2.325,51.451],[-2.324,51.453],[-2.322,51.452],[-2.322,51.451],[-2.324,51.45],[-2.321,51.445],[-2.319,51.445],[-2.316,51.442],[-2.318,51.438],[-2.315,51.434],[-2.318,51.43],[-2.313,51.428],[-2.309,51.43],[-2.305,51.428],[-2.3,51.429],[-2.295,51.427],[-2.294,51.432],[-2.291,51.43],[-2.289,51.428],[-2.288,51.426],[-2.285,51.426],[-2.282,51.421],[-2.286,51.42],[-2.281,51.418],[-2.277,51.419],[-2.274,51.416],[-2.278,51.414],[-2.281,51.411],[-2.287,51.407],[-2.289,51.406],[-2.288,51.403],[-2.289,51.4],[-2.284,51.398],[-2.279,51.396],[-2.275,51.399],[-2.271,51.399],[-2.271,51.401],[-2.27,51.403],[-2.266,51.4],[-2.263,51.401],[-2.257,51.398],[-2.252,51.399],[-2.245,51.396],[-2.244,51.395],[-2.233,51.393],[-2.234,51.391],[-2.234,51.388],[-2.229,51.387],[-2.225,51.384],[-2.225,51.383],[-2.217,51.383],[-2.213,51.382],[-2.21,51.382],[-2.223,51.377],[-2.234,51.373],[-2.231,51.371],[-2.228,51.37],[-2.225,51.369],[-2.226,51.368],[-2.224,51.366],[-2.223,51.364],[-2.221,51.363],[-2.216,51.364],[-2.209,51.363],[-2.207,51.363],[-2.205,51.365],[-2.202,51.365],[-2.2,51.367],[-2.202,51.368],[-2.2,51.372],[-2.189,51.372],[-2.185,51.369],[-2.182,51.366],[-2.181,51.365],[-2.177,51.364],[-2.173,51.362],[-2.173,51.36],[-2.17,51.36],[-2.168,51.359],[-2.17,51.357],[-2.169,51.357],[-2.163,51.355],[-2.161,51.354],[-2.158,51.355],[-2.153,51.354],[-2.15,51.355],[-2.147,51.354],[-2.142,51.353],[-2.14,51.35],[-2.134,51.35],[-2.131,51.35],[-2.126,51.347],[-2.121,51.348],[-2.118,51.349],[-2.114,51.351],[-2.114,51.349],[-2.114,51.346],[-2.116,51.343],[-2.119,51.341],[-2.117,51.339],[-2.115,51.336],[-2.112,51.336],[-2.11,51.333],[-2.107,51.332],[-2.102,51.331],[-2.1,51.329],[-2.099,51.327],[-2.095,51.327],[-2.094,51.326],[-2.093,51.322],[-2.091,51.321],[-2.089,51.316],[-2.082,51.316],[-2.077,51.314],[-2.082,51.309],[-2.075,51.305],[-2.073,51.303],[-2.07,51.303],[-2.065,51.303],[-2.065,51.3],[-2.063,51.297],[-2.071,51.294],[-2.071,51.292],[-2.069,51.29],[-2.07,51.288],[-2.069,51.287],[-2.068,51.284],[-2.066,51.282],[-2.065,51.279],[-2.066,51.277],[-2.067,51.277],[-2.071,51.277],[-2.073,51.276],[-2.064,51.273],[-2.061,51.271],[-2.062,51.269],[-2.061,51.268],[-2.058,51.269],[-2.072,51.262],[-2.071,51.252],[-2.074,51.25],[-2.077,51.244],[-2.073,51.231],[-2.07,51.231],[-2.047,51.226],[-2.037,51.224],[-2.034,51.227],[-2.007,51.234],[-2,51.234],[-1.973,51.225],[-1.967,51.228],[-1.964,51.229],[-1.96,51.223],[-1.961,51.218],[-1.962,51.217],[-1.956,51.21],[-1.954,51.201],[-1.958,51.196],[-1.959,51.192],[-1.956,51.183],[-1.959,51.168],[-1.948,51.16],[-1.941,51.161],[-1.94,51.156],[-1.941,51.155],[-1.957,51.149],[-1.961,51.147],[-1.962,51.141],[-1.964,51.141],[-1.964,51.138],[-1.958,51.136],[-1.961,51.133],[-1.97,51.133],[-1.974,51.133],[-1.978,51.13],[-1.975,51.124],[-1.963,51.12],[-1.961,51.119],[-1.962,51.11],[-1.97,51.107],[-1.982,51.12],[-1.991,51.118],[-1.99,51.121],[-1.997,51.124],[-2.01,51.125],[-2.014,51.128],[-2.022,51.123],[-2.03,51.12],[-2.043,51.119],[-2.053,51.119],[-2.06,51.117],[-2.064,51.116],[-2.07,51.114],[-2.087,51.129],[-2.092,51.132],[-2.104,51.135],[-2.111,51.134],[-2.131,51.139],[-2.139,51.135],[-2.144,51.132],[-2.156,51.132],[-2.162,51.134],[-2.162,51.137],[-2.161,51.146],[-2.173,51.147],[-2.18,51.147],[-2.182,51.145],[-2.18,51.136],[-2.194,51.132],[-2.193,51.13],[-2.183,51.128],[-2.181,51.126],[-2.177,51.123],[-2.169,51.116],[-2.169,51.109],[-2.166,51.105],[-2.179,51.103],[-2.188,51.101],[-2.19,51.1],[-2.193,51.091],[-2.194,51.09],[-2.191,51.087],[-2.191,51.083],[-2.195,51.08],[-2.201,51.081],[-2.207,51.077],[-2.212,51.077],[-2.216,51.076],[-2.213,51.075],[-2.212,51.07],[-2.211,51.069],[-2.215,51.065],[-2.22,51.064],[-2.223,51.057],[-2.224,51.057],[-2.229,51.06],[-2.232,51.061],[-2.232,51.063],[-2.229,51.066],[-2.229,51.069],[-2.232,51.069],[-2.236,51.071],[-2.239,51.069],[-2.245,51.073],[-2.248,51.072],[-2.248,51.07],[-2.251,51.069],[-2.256,51.068],[-2.263,51.069],[-2.263,51.068],[-2.268,51.07],[-2.272,51.072],[-2.272,51.073],[-2.28,51.073],[-2.281,51.069],[-2.285,51.069],[-2.289,51.073],[-2.29,51.075],[-2.29,51.077],[-2.293,51.078],[-2.302,51.08],[-2.306,51.08],[-2.311,51.081],[-2.313,51.08],[-2.32,51.079],[-2.318,51.081],[-2.322,51.082],[-2.325,51.08],[-2.331,51.079],[-2.332,51.078],[-2.335,51.078],[-2.338,51.078],[-2.338,51.076],[-2.341,51.075],[-2.344,51.075],[-2.347,51.072],[-2.344,51.07],[-2.345,51.069],[-2.353,51.069],[-2.355,51.069],[-2.356,51.068],[-2.353,51.066],[-2.35,51.064],[-2.35,51.062],[-2.348,51.06],[-2.34,51.059],[-2.336,51.057],[-2.332,51.055],[-2.331,51.054],[-2.333,51.046],[-2.337,51.045],[-2.34,51.043],[-2.343,51.043],[-2.344,51.041],[-2.345,51.038],[-2.345,51.033],[-2.348,51.032],[-2.351,51.03],[-2.354,51.029],[-2.354,51.028],[-2.357,51.026],[-2.361,51.026],[-2.364,51.025],[-2.364,51.021],[-2.363,51.019],[-2.358,51.02],[-2.369,51.014],[-2.371,51.013],[-2.375,51.012],[-2.375,51.011],[-2.382,51.009],[-2.383,51.007],[-2.381,51.006],[-2.395,50.998],[-2.392,50.994],[-2.381,50.996],[-2.378,50.994],[-2.375,50.992],[-2.371,50.995],[-2.365,50.996],[-2.366,50.994],[-2.361,50.993],[-2.356,50.991],[-2.351,50.989],[-2.349,50.988],[-2.346,50.989],[-2.342,50.988],[-2.343,50.983],[-2.342,50.98]]]},"properties":{"OBJECTID":4,"NAME":"BA","KEY":"BA","Shape_Leng":4.93774,"Shape_Area":0.237053}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.057,53.822],[-2.073,53.82],[-2.074,53.819],[-2.084,53.819],[-2.1,53.813],[-2.106,53.811],[-2.108,53.81],[-2.12,53.798],[-2.126,53.8],[-2.129,53.799],[-2.131,53.8],[-2.135,53.796],[-2.137,53.792],[-2.141,53.789],[-2.139,53.775],[-2.138,53.769],[-2.15,53.764],[-2.154,53.761],[-2.158,53.754],[-2.156,53.754],[-2.156,53.748],[-2.157,53.747],[-2.168,53.745],[-2.17,53.741],[-2.168,53.739],[-2.176,53.734],[-2.182,53.735],[-2.189,53.738],[-2.192,53.74],[-2.195,53.741],[-2.2,53.743],[-2.217,53.741],[-2.218,53.743],[-2.222,53.745],[-2.226,53.744],[-2.226,53.736],[-2.221,53.732],[-2.215,53.733],[-2.214,53.729],[-2.222,53.727],[-2.222,53.726],[-2.225,53.724],[-2.223,53.722],[-2.22,53.721],[-2.223,53.72],[-2.227,53.718],[-2.228,53.719],[-2.232,53.718],[-2.234,53.719],[-2.238,53.72],[-2.239,53.719],[-2.238,53.716],[-2.234,53.715],[-2.231,53.711],[-2.228,53.709],[-2.227,53.706],[-2.236,53.703],[-2.231,53.698],[-2.236,53.697],[-2.238,53.695],[-2.239,53.697],[-2.245,53.691],[-2.245,53.688],[-2.242,53.687],[-2.241,53.684],[-2.239,53.683],[-2.236,53.682],[-2.236,53.673],[-2.232,53.662],[-2.234,53.659],[-2.245,53.659],[-2.258,53.666],[-2.263,53.671],[-2.265,53.673],[-2.279,53.673],[-2.287,53.678],[-2.289,53.68],[-2.297,53.679],[-2.301,53.679],[-2.305,53.68],[-2.307,53.681],[-2.306,53.683],[-2.31,53.685],[-2.314,53.681],[-2.315,53.679],[-2.318,53.68],[-2.321,53.68],[-2.322,53.679],[-2.323,53.676],[-2.325,53.676],[-2.331,53.676],[-2.334,53.675],[-2.335,53.673],[-2.336,53.671],[-2.339,53.671],[-2.345,53.667],[-2.353,53.664],[-2.355,53.666],[-2.363,53.669],[-2.365,53.669],[-2.367,53.675],[-2.367,53.678],[-2.37,53.684],[-2.37,53.691],[-2.383,53.694],[-2.391,53.7],[-2.403,53.696],[-2.402,53.695],[-2.403,53.693],[-2.401,53.691],[-2.413,53.686],[-2.408,53.682],[-2.406,53.677],[-2.408,53.674],[-2.412,53.672],[-2.416,53.672],[-2.421,53.67],[-2.423,53.673],[-2.424,53.673],[-2.422,53.67],[-2.424,53.669],[-2.431,53.674],[-2.436,53.669],[-2.442,53.669],[-2.445,53.666],[-2.436,53.659],[-2.438,53.652],[-2.439,53.651],[-2.449,53.654],[-2.453,53.656],[-2.455,53.653],[-2.456,53.651],[-2.454,53.645],[-2.458,53.644],[-2.467,53.65],[-2.475,53.66],[-2.479,53.661],[-2.484,53.666],[-2.497,53.672],[-2.507,53.672],[-2.508,53.675],[-2.51,53.678],[-2.51,53.681],[-2.509,53.688],[-2.515,53.69],[-2.52,53.695],[-2.527,53.696],[-2.529,53.699],[-2.529,53.7],[-2.533,53.704],[-2.537,53.704],[-2.533,53.711],[-2.536,53.714],[-2.544,53.715],[-2.563,53.716],[-2.559,53.719],[-2.555,53.721],[-2.558,53.722],[-2.557,53.724],[-2.558,53.725],[-2.562,53.727],[-2.564,53.732],[-2.56,53.731],[-2.557,53.731],[-2.553,53.734],[-2.552,53.735],[-2.554,53.74],[-2.559,53.74],[-2.558,53.744],[-2.56,53.746],[-2.564,53.747],[-2.569,53.75],[-2.571,53.751],[-2.57,53.755],[-2.569,53.757],[-2.566,53.757],[-2.563,53.758],[-2.565,53.76],[-2.56,53.764],[-2.566,53.766],[-2.569,53.766],[-2.572,53.769],[-2.57,53.771],[-2.565,53.771],[-2.565,53.773],[-2.569,53.774],[-2.573,53.773],[-2.58,53.772],[-2.582,53.775],[-2.585,53.774],[-2.586,53.775],[-2.591,53.775],[-2.594,53.776],[-2.598,53.776],[-2.6,53.777],[-2.603,53.78],[-2.599,53.782],[-2.598,53.784],[-2.6,53.787],[-2.599,53.789],[-2.597,53.792],[-2.593,53.795],[-2.59,53.796],[-2.587,53.795],[-2.584,53.795],[-2.578,53.796],[-2.576,53.796],[-2.569,53.797],[-2.562,53.798],[-2.562,53.8],[-2.558,53.806],[-2.552,53.808],[-2.548,53.808],[-2.543,53.806],[-2.534,53.805],[-2.532,53.802],[-2.529,53.802],[-2.523,53.805],[-2.524,53.808],[-2.519,53.81],[-2.514,53.81],[-2.514,53.811],[-2.505,53.812],[-2.502,53.81],[-2.497,53.81],[-2.494,53.812],[-2.485,53.814],[-2.484,53.816],[-2.494,53.816],[-2.495,53.817],[-2.498,53.816],[-2.502,53.819],[-2.496,53.819],[-2.498,53.822],[-2.501,53.823],[-2.508,53.821],[-2.504,53.826],[-2.502,53.825],[-2.5,53.828],[-2.498,53.829],[-2.497,53.831],[-2.501,53.836],[-2.504,53.834],[-2.508,53.835],[-2.508,53.838],[-2.51,53.841],[-2.5,53.842],[-2.504,53.847],[-2.502,53.849],[-2.501,53.852],[-2.506,53.855],[-2.508,53.859],[-2.509,53.865],[-2.52,53.863],[-2.525,53.864],[-2.53,53.87],[-2.536,53.869],[-2.537,53.868],[-2.541,53.867],[-2.536,53.873],[-2.527,53.876],[-2.528,53.878],[-2.526,53.88],[-2.526,53.883],[-2.531,53.882],[-2.531,53.884],[-2.536,53.886],[-2.541,53.885],[-2.54,53.888],[-2.539,53.894],[-2.54,53.897],[-2.538,53.9],[-2.537,53.904],[-2.522,53.902],[-2.524,53.905],[-2.528,53.907],[-2.528,53.912],[-2.53,53.913],[-2.536,53.916],[-2.538,53.917],[-2.54,53.916],[-2.542,53.912],[-2.548,53.911],[-2.549,53.912],[-2.557,53.911],[-2.565,53.91],[-2.57,53.911],[-2.572,53.916],[-2.575,53.921],[-2.586,53.927],[-2.594,53.928],[-2.611,53.925],[-2.616,53.927],[-2.634,53.937],[-2.639,53.949],[-2.637,53.952],[-2.611,53.955],[-2.586,53.963],[-2.58,53.975],[-2.584,53.976],[-2.587,53.977],[-2.592,53.979],[-2.594,53.979],[-2.605,53.979],[-2.61,53.978],[-2.612,53.978],[-2.614,53.985],[-2.595,53.99],[-2.586,53.992],[-2.588,54.008],[-2.53,54.018],[-2.529,54.018],[-2.513,54.019],[-2.503,54.032],[-2.497,54.036],[-2.486,54.042],[-2.482,54.04],[-2.477,54.043],[-2.463,54.044],[-2.443,54.041],[-2.432,54.041],[-2.418,54.042],[-2.419,54.041],[-2.416,54.04],[-2.415,54.038],[-2.413,54.037],[-2.412,54.035],[-2.412,54.034],[-2.406,54.033],[-2.403,54.029],[-2.402,54.023],[-2.393,54.021],[-2.39,54.021],[-2.388,54.016],[-2.391,54.012],[-2.386,54.01],[-2.381,54.004],[-2.378,54.004],[-2.379,53.996],[-2.382,53.993],[-2.385,53.993],[-2.39,53.99],[-2.389,53.989],[-2.394,53.984],[-2.387,53.981],[-2.385,53.984],[-2.38,53.978],[-2.377,53.977],[-2.376,53.975],[-2.373,53.973],[-2.375,53.971],[-2.369,53.97],[-2.361,53.973],[-2.359,53.972],[-2.35,53.972],[-2.344,53.974],[-2.341,53.974],[-2.336,53.97],[-2.333,53.97],[-2.326,53.975],[-2.325,53.975],[-2.321,53.973],[-2.319,53.975],[-2.319,53.978],[-2.317,53.979],[-2.31,53.973],[-2.301,53.976],[-2.299,53.974],[-2.291,53.967],[-2.29,53.967],[-2.284,53.974],[-2.252,53.978],[-2.253,53.981],[-2.245,53.978],[-2.247,53.975],[-2.243,53.971],[-2.238,53.969],[-2.234,53.971],[-2.231,53.97],[-2.228,53.971],[-2.223,53.972],[-2.215,53.966],[-2.222,53.963],[-2.226,53.96],[-2.231,53.96],[-2.233,53.959],[-2.239,53.954],[-2.24,53.955],[-2.245,53.953],[-2.242,53.95],[-2.235,53.945],[-2.234,53.945],[-2.227,53.944],[-2.225,53.942],[-2.227,53.939],[-2.224,53.938],[-2.223,53.936],[-2.234,53.934],[-2.229,53.926],[-2.224,53.926],[-2.218,53.926],[-2.215,53.929],[-2.209,53.929],[-2.206,53.929],[-2.204,53.928],[-2.201,53.928],[-2.197,53.93],[-2.194,53.93],[-2.191,53.93],[-2.186,53.938],[-2.184,53.939],[-2.177,53.94],[-2.172,53.939],[-2.169,53.937],[-2.165,53.934],[-2.167,53.933],[-2.161,53.93],[-2.156,53.925],[-2.148,53.925],[-2.149,53.926],[-2.147,53.927],[-2.138,53.926],[-2.136,53.924],[-2.132,53.924],[-2.128,53.923],[-2.124,53.926],[-2.124,53.927],[-2.119,53.929],[-2.11,53.926],[-2.109,53.926],[-2.101,53.924],[-2.098,53.921],[-2.094,53.92],[-2.095,53.917],[-2.098,53.913],[-2.104,53.909],[-2.111,53.904],[-2.109,53.901],[-2.105,53.893],[-2.106,53.891],[-2.108,53.89],[-2.109,53.885],[-2.105,53.886],[-2.095,53.888],[-2.09,53.885],[-2.09,53.883],[-2.093,53.881],[-2.096,53.881],[-2.091,53.875],[-2.091,53.872],[-2.089,53.871],[-2.084,53.869],[-2.08,53.869],[-2.082,53.862],[-2.08,53.862],[-2.063,53.85],[-2.059,53.849],[-2.062,53.843],[-2.056,53.841],[-2.057,53.822]]]},"properties":{"OBJECTID":5,"NAME":"BB","KEY":"BB","Shape_Leng":2.67885,"Shape_Area":0.131706}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.639,53.75],[-1.648,53.748],[-1.656,53.747],[-1.661,53.747],[-1.663,53.744],[-1.676,53.742],[-1.676,53.738],[-1.677,53.736],[-1.681,53.734],[-1.679,53.733],[-1.674,53.732],[-1.671,53.73],[-1.673,53.728],[-1.67,53.725],[-1.675,53.723],[-1.677,53.723],[-1.68,53.72],[-1.683,53.717],[-1.688,53.718],[-1.691,53.718],[-1.693,53.72],[-1.7,53.718],[-1.703,53.716],[-1.71,53.716],[-1.711,53.717],[-1.717,53.719],[-1.723,53.718],[-1.726,53.718],[-1.728,53.716],[-1.73,53.718],[-1.733,53.718],[-1.736,53.717],[-1.736,53.716],[-1.739,53.715],[-1.74,53.713],[-1.742,53.709],[-1.744,53.708],[-1.744,53.711],[-1.743,53.713],[-1.743,53.714],[-1.745,53.715],[-1.745,53.717],[-1.751,53.717],[-1.754,53.714],[-1.756,53.713],[-1.758,53.715],[-1.76,53.718],[-1.757,53.72],[-1.756,53.722],[-1.759,53.722],[-1.757,53.724],[-1.76,53.726],[-1.765,53.728],[-1.769,53.727],[-1.771,53.725],[-1.774,53.726],[-1.776,53.728],[-1.783,53.729],[-1.785,53.731],[-1.787,53.732],[-1.777,53.738],[-1.781,53.739],[-1.784,53.741],[-1.785,53.742],[-1.789,53.744],[-1.793,53.747],[-1.793,53.749],[-1.795,53.75],[-1.798,53.753],[-1.802,53.755],[-1.802,53.759],[-1.804,53.761],[-1.806,53.761],[-1.807,53.763],[-1.808,53.763],[-1.811,53.761],[-1.814,53.763],[-1.816,53.763],[-1.818,53.764],[-1.824,53.763],[-1.828,53.764],[-1.836,53.758],[-1.841,53.757],[-1.843,53.755],[-1.846,53.753],[-1.852,53.754],[-1.853,53.753],[-1.861,53.75],[-1.861,53.752],[-1.868,53.753],[-1.87,53.755],[-1.864,53.757],[-1.864,53.76],[-1.866,53.761],[-1.866,53.763],[-1.873,53.763],[-1.872,53.764],[-1.872,53.767],[-1.87,53.768],[-1.867,53.77],[-1.87,53.771],[-1.871,53.773],[-1.87,53.774],[-1.876,53.776],[-1.879,53.775],[-1.881,53.776],[-1.877,53.778],[-1.88,53.78],[-1.886,53.78],[-1.888,53.783],[-1.891,53.782],[-1.895,53.782],[-1.898,53.781],[-1.903,53.784],[-1.909,53.777],[-1.912,53.776],[-1.925,53.781],[-1.93,53.786],[-1.942,53.788],[-1.952,53.787],[-1.957,53.791],[-1.961,53.79],[-1.966,53.788],[-1.973,53.78],[-1.983,53.778],[-1.985,53.778],[-1.997,53.782],[-1.996,53.784],[-1.992,53.785],[-1.985,53.788],[-1.985,53.791],[-1.982,53.793],[-1.982,53.794],[-1.996,53.802],[-2.001,53.804],[-2.029,53.809],[-2.032,53.814],[-2.053,53.822],[-2.057,53.822],[-2.056,53.841],[-2.062,53.843],[-2.059,53.849],[-2.063,53.85],[-2.08,53.862],[-2.082,53.862],[-2.08,53.869],[-2.084,53.869],[-2.089,53.871],[-2.091,53.872],[-2.091,53.875],[-2.096,53.881],[-2.093,53.881],[-2.09,53.883],[-2.09,53.885],[-2.095,53.888],[-2.105,53.886],[-2.109,53.885],[-2.108,53.89],[-2.106,53.891],[-2.105,53.893],[-2.109,53.901],[-2.111,53.904],[-2.104,53.909],[-2.098,53.913],[-2.095,53.917],[-2.094,53.92],[-2.098,53.921],[-2.101,53.924],[-2.109,53.926],[-2.11,53.926],[-2.119,53.929],[-2.124,53.927],[-2.124,53.926],[-2.128,53.923],[-2.132,53.924],[-2.136,53.924],[-2.138,53.926],[-2.147,53.927],[-2.149,53.926],[-2.148,53.925],[-2.156,53.925],[-2.161,53.93],[-2.167,53.933],[-2.165,53.934],[-2.169,53.937],[-2.172,53.939],[-2.177,53.94],[-2.184,53.939],[-2.186,53.938],[-2.191,53.93],[-2.194,53.93],[-2.197,53.93],[-2.201,53.928],[-2.204,53.928],[-2.206,53.929],[-2.209,53.929],[-2.215,53.929],[-2.218,53.926],[-2.224,53.926],[-2.229,53.926],[-2.234,53.934],[-2.223,53.936],[-2.224,53.938],[-2.227,53.939],[-2.225,53.942],[-2.227,53.944],[-2.234,53.945],[-2.235,53.945],[-2.242,53.95],[-2.245,53.953],[-2.24,53.955],[-2.239,53.954],[-2.233,53.959],[-2.231,53.96],[-2.226,53.96],[-2.222,53.963],[-2.215,53.966],[-2.223,53.972],[-2.228,53.971],[-2.231,53.97],[-2.234,53.971],[-2.238,53.969],[-2.243,53.971],[-2.247,53.975],[-2.245,53.978],[-2.253,53.981],[-2.252,53.978],[-2.284,53.974],[-2.29,53.967],[-2.291,53.967],[-2.299,53.974],[-2.301,53.976],[-2.31,53.973],[-2.317,53.979],[-2.319,53.978],[-2.319,53.975],[-2.321,53.973],[-2.325,53.975],[-2.326,53.975],[-2.333,53.97],[-2.336,53.97],[-2.341,53.974],[-2.344,53.974],[-2.35,53.972],[-2.359,53.972],[-2.361,53.973],[-2.369,53.97],[-2.375,53.971],[-2.373,53.973],[-2.376,53.975],[-2.377,53.977],[-2.38,53.978],[-2.385,53.984],[-2.387,53.981],[-2.394,53.984],[-2.389,53.989],[-2.39,53.99],[-2.385,53.993],[-2.382,53.993],[-2.379,53.996],[-2.378,54.004],[-2.381,54.004],[-2.386,54.01],[-2.391,54.012],[-2.388,54.016],[-2.39,54.021],[-2.393,54.021],[-2.402,54.023],[-2.403,54.029],[-2.406,54.033],[-2.393,54.037],[-2.378,54.049],[-2.376,54.049],[-2.372,54.053],[-2.372,54.056],[-2.363,54.064],[-2.361,54.067],[-2.357,54.068],[-2.357,54.073],[-2.355,54.075],[-2.353,54.076],[-2.35,54.075],[-2.347,54.075],[-2.345,54.077],[-2.341,54.079],[-2.339,54.079],[-2.337,54.081],[-2.338,54.083],[-2.336,54.086],[-2.335,54.087],[-2.336,54.09],[-2.333,54.089],[-2.329,54.092],[-2.324,54.091],[-2.32,54.089],[-2.311,54.087],[-2.309,54.089],[-2.306,54.093],[-2.304,54.099],[-2.306,54.105],[-2.307,54.109],[-2.314,54.117],[-2.312,54.12],[-2.309,54.118],[-2.31,54.123],[-2.315,54.126],[-2.317,54.127],[-2.322,54.133],[-2.325,54.14],[-2.328,54.146],[-2.346,54.152],[-2.348,54.151],[-2.383,54.172],[-2.371,54.178],[-2.371,54.183],[-2.366,54.191],[-2.366,54.192],[-2.347,54.197],[-2.342,54.195],[-2.341,54.197],[-2.344,54.2],[-2.348,54.202],[-2.348,54.206],[-2.344,54.207],[-2.34,54.204],[-2.333,54.206],[-2.319,54.206],[-2.313,54.209],[-2.309,54.212],[-2.294,54.215],[-2.293,54.217],[-2.296,54.228],[-2.3,54.24],[-2.291,54.245],[-2.29,54.248],[-2.285,54.257],[-2.282,54.26],[-2.265,54.259],[-2.245,54.253],[-2.22,54.25],[-2.216,54.25],[-2.212,54.256],[-2.215,54.257],[-2.187,54.251],[-2.185,54.25],[-2.171,54.241],[-2.165,54.237],[-2.142,54.24],[-2.109,54.236],[-2.106,54.229],[-2.102,54.227],[-2.085,54.222],[-2.088,54.22],[-2.055,54.208],[-2.051,54.2],[-2.042,54.194],[-2.016,54.183],[-2.012,54.187],[-2.011,54.19],[-2.008,54.191],[-1.98,54.178],[-1.978,54.174],[-1.979,54.17],[-1.976,54.151],[-1.945,54.14],[-1.937,54.121],[-1.894,54.121],[-1.879,54.105],[-1.877,54.105],[-1.861,54.093],[-1.867,54.08],[-1.867,54.078],[-1.865,54.076],[-1.861,54.068],[-1.865,54.068],[-1.869,54.068],[-1.876,54.067],[-1.871,54.055],[-1.85,54.051],[-1.848,54.049],[-1.851,54.034],[-1.853,54.032],[-1.853,54.026],[-1.848,54.007],[-1.838,54.003],[-1.826,54.004],[-1.824,54.004],[-1.815,54],[-1.798,53.997],[-1.794,53.995],[-1.787,53.996],[-1.787,53.993],[-1.793,53.993],[-1.799,53.991],[-1.801,53.99],[-1.797,53.981],[-1.806,53.976],[-1.818,53.976],[-1.837,53.974],[-1.849,53.968],[-1.863,53.967],[-1.865,53.968],[-1.868,53.969],[-1.871,53.964],[-1.869,53.962],[-1.866,53.958],[-1.875,53.952],[-1.878,53.958],[-1.882,53.958],[-1.882,53.961],[-1.887,53.963],[-1.889,53.965],[-1.893,53.967],[-1.893,53.97],[-1.9,53.97],[-1.903,53.972],[-1.908,53.973],[-1.914,53.972],[-1.91,53.969],[-1.906,53.964],[-1.91,53.962],[-1.92,53.96],[-1.93,53.954],[-1.928,53.95],[-1.922,53.948],[-1.92,53.947],[-1.926,53.942],[-1.927,53.941],[-1.923,53.94],[-1.922,53.937],[-1.915,53.939],[-1.913,53.936],[-1.909,53.934],[-1.906,53.932],[-1.905,53.931],[-1.908,53.929],[-1.906,53.925],[-1.903,53.919],[-1.903,53.918],[-1.887,53.919],[-1.883,53.918],[-1.877,53.917],[-1.864,53.911],[-1.863,53.91],[-1.865,53.905],[-1.852,53.897],[-1.845,53.895],[-1.815,53.894],[-1.812,53.896],[-1.811,53.895],[-1.795,53.887],[-1.789,53.879],[-1.787,53.88],[-1.781,53.88],[-1.778,53.878],[-1.778,53.875],[-1.776,53.874],[-1.771,53.869],[-1.772,53.868],[-1.768,53.866],[-1.757,53.865],[-1.758,53.86],[-1.75,53.858],[-1.748,53.86],[-1.744,53.859],[-1.741,53.862],[-1.74,53.865],[-1.734,53.865],[-1.729,53.863],[-1.727,53.864],[-1.723,53.863],[-1.723,53.862],[-1.726,53.862],[-1.727,53.861],[-1.718,53.861],[-1.714,53.862],[-1.711,53.856],[-1.707,53.855],[-1.705,53.855],[-1.703,53.852],[-1.699,53.848],[-1.697,53.846],[-1.694,53.845],[-1.692,53.841],[-1.693,53.84],[-1.685,53.839],[-1.68,53.837],[-1.681,53.836],[-1.689,53.839],[-1.694,53.838],[-1.696,53.836],[-1.704,53.832],[-1.704,53.831],[-1.706,53.829],[-1.705,53.828],[-1.707,53.827],[-1.706,53.824],[-1.701,53.823],[-1.699,53.821],[-1.702,53.819],[-1.704,53.817],[-1.701,53.811],[-1.702,53.81],[-1.698,53.807],[-1.7,53.804],[-1.699,53.803],[-1.7,53.799],[-1.699,53.796],[-1.696,53.794],[-1.697,53.792],[-1.697,53.79],[-1.694,53.789],[-1.689,53.79],[-1.687,53.79],[-1.683,53.787],[-1.683,53.786],[-1.688,53.782],[-1.684,53.781],[-1.68,53.781],[-1.674,53.779],[-1.671,53.778],[-1.665,53.779],[-1.66,53.777],[-1.654,53.777],[-1.652,53.78],[-1.647,53.78],[-1.643,53.779],[-1.64,53.78],[-1.639,53.779],[-1.641,53.776],[-1.645,53.774],[-1.646,53.771],[-1.648,53.769],[-1.647,53.767],[-1.644,53.765],[-1.643,53.763],[-1.645,53.76],[-1.645,53.756],[-1.641,53.755],[-1.639,53.752],[-1.639,53.75]]]},"properties":{"OBJECTID":6,"NAME":"BD","KEY":"BD","Shape_Leng":3.37425,"Shape_Area":0.184414}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.011,50.688],[-2.013,50.685],[-2.017,50.685],[-2.02,50.688],[-2.019,50.69],[-2.021,50.692],[-2.02,50.693],[-2.017,50.694],[-2.017,50.693],[-2.014,50.692],[-2.015,50.689],[-2.011,50.688]]],[[[-1.991,50.679],[-1.991,50.678],[-1.995,50.678],[-1.996,50.68],[-1.993,50.681],[-1.991,50.679]]],[[[-1.981,50.683],[-1.983,50.682],[-1.989,50.682],[-1.989,50.684],[-1.982,50.684],[-1.981,50.683]]],[[[-1.956,50.691],[-1.957,50.688],[-1.961,50.686],[-1.97,50.686],[-1.973,50.687],[-1.977,50.687],[-1.983,50.687],[-1.986,50.689],[-1.988,50.693],[-1.987,50.694],[-1.984,50.695],[-1.98,50.696],[-1.975,50.697],[-1.967,50.695],[-1.959,50.695],[-1.957,50.694],[-1.956,50.691]]],[[[-1.64,50.731],[-1.648,50.732],[-1.658,50.734],[-1.675,50.736],[-1.687,50.737],[-1.694,50.737],[-1.697,50.736],[-1.706,50.736],[-1.717,50.735],[-1.724,50.734],[-1.73,50.732],[-1.734,50.729],[-1.735,50.727],[-1.743,50.724],[-1.741,50.727],[-1.746,50.727],[-1.751,50.726],[-1.754,50.727],[-1.755,50.729],[-1.758,50.729],[-1.756,50.727],[-1.759,50.726],[-1.759,50.723],[-1.764,50.723],[-1.766,50.725],[-1.766,50.728],[-1.769,50.728],[-1.768,50.725],[-1.768,50.723],[-1.766,50.721],[-1.762,50.721],[-1.763,50.719],[-1.76,50.718],[-1.757,50.718],[-1.751,50.719],[-1.75,50.718],[-1.745,50.718],[-1.743,50.719],[-1.742,50.723],[-1.74,50.723],[-1.744,50.717],[-1.745,50.714],[-1.749,50.713],[-1.749,50.712],[-1.755,50.714],[-1.769,50.716],[-1.784,50.718],[-1.793,50.719],[-1.801,50.72],[-1.807,50.72],[-1.817,50.721],[-1.826,50.72],[-1.844,50.719],[-1.857,50.718],[-1.869,50.717],[-1.888,50.713],[-1.906,50.707],[-1.913,50.704],[-1.921,50.7],[-1.926,50.696],[-1.932,50.692],[-1.937,50.689],[-1.939,50.687],[-1.943,50.684],[-1.948,50.683],[-1.951,50.685],[-1.952,50.686],[-1.949,50.688],[-1.941,50.689],[-1.939,50.69],[-1.933,50.693],[-1.932,50.696],[-1.934,50.699],[-1.936,50.701],[-1.941,50.701],[-1.944,50.703],[-1.949,50.707],[-1.948,50.709],[-1.949,50.711],[-1.951,50.712],[-1.954,50.711],[-1.955,50.709],[-1.96,50.712],[-1.959,50.713],[-1.956,50.714],[-1.958,50.716],[-1.963,50.716],[-1.966,50.715],[-1.969,50.712],[-1.973,50.711],[-1.977,50.712],[-1.982,50.712],[-1.987,50.711],[-1.986,50.709],[-1.989,50.708],[-1.991,50.707],[-1.995,50.707],[-1.997,50.708],[-1.997,50.71],[-2,50.711],[-2.002,50.711],[-2.004,50.71],[-2.007,50.711],[-2.013,50.711],[-2.018,50.711],[-2.023,50.713],[-2.029,50.714],[-2.034,50.715],[-2.037,50.717],[-2.039,50.715],[-2.039,50.714],[-2.041,50.713],[-2.05,50.717],[-2.053,50.717],[-2.062,50.717],[-2.063,50.716],[-2.069,50.71],[-2.071,50.709],[-2.062,50.707],[-2.058,50.706],[-2.059,50.704],[-2.064,50.705],[-2.068,50.704],[-2.072,50.705],[-2.071,50.703],[-2.072,50.702],[-2.07,50.699],[-2.072,50.698],[-2.076,50.695],[-2.079,50.697],[-2.08,50.695],[-2.078,50.692],[-2.077,50.691],[-2.078,50.688],[-2.076,50.687],[-2.067,50.687],[-2.064,50.687],[-2.059,50.691],[-2.058,50.693],[-2.054,50.698],[-2.052,50.7],[-2.042,50.703],[-2.041,50.706],[-2.039,50.707],[-2.031,50.708],[-2.03,50.707],[-2.025,50.707],[-2.022,50.704],[-2.018,50.703],[-2.017,50.701],[-2.019,50.699],[-2.025,50.697],[-2.024,50.695],[-2.025,50.693],[-2.023,50.691],[-2.026,50.689],[-2.024,50.687],[-2.034,50.683],[-2.035,50.681],[-2.039,50.68],[-2.045,50.681],[-2.046,50.68],[-2.049,50.679],[-2.053,50.678],[-2.053,50.677],[-2.047,50.677],[-2.043,50.678],[-2.039,50.678],[-2.034,50.679],[-2.032,50.68],[-2.03,50.682],[-2.025,50.685],[-2.025,50.683],[-2.028,50.682],[-2.026,50.681],[-2.026,50.678],[-2.031,50.674],[-2.036,50.672],[-2.04,50.672],[-2.043,50.671],[-2.033,50.671],[-2.028,50.673],[-2.025,50.672],[-2.026,50.67],[-2.024,50.67],[-2.023,50.673],[-2.025,50.674],[-2.025,50.676],[-2.022,50.679],[-2.021,50.682],[-2.018,50.681],[-2.013,50.683],[-2.01,50.682],[-2.008,50.681],[-2.007,50.679],[-2.004,50.677],[-2.008,50.677],[-2.009,50.675],[-2.004,50.675],[-2,50.676],[-1.997,50.675],[-1.996,50.673],[-1.999,50.673],[-2,50.67],[-1.996,50.67],[-1.995,50.668],[-1.993,50.668],[-1.993,50.67],[-1.991,50.671],[-1.991,50.673],[-1.989,50.673],[-1.979,50.677],[-1.978,50.676],[-1.982,50.673],[-1.984,50.67],[-1.982,50.669],[-1.981,50.666],[-1.977,50.667],[-1.976,50.665],[-1.975,50.662],[-1.972,50.663],[-1.969,50.661],[-1.969,50.663],[-1.97,50.669],[-1.968,50.669],[-1.966,50.671],[-1.964,50.67],[-1.961,50.672],[-1.961,50.674],[-1.957,50.672],[-1.955,50.674],[-1.953,50.677],[-1.95,50.68],[-1.948,50.678],[-1.947,50.676],[-1.942,50.674],[-1.941,50.674],[-1.942,50.67],[-1.945,50.667],[-1.951,50.658],[-1.952,50.656],[-1.953,50.653],[-1.95,50.648],[-1.943,50.642],[-1.94,50.641],[-1.929,50.642],[-1.924,50.642],[-1.926,50.64],[-1.931,50.635],[-1.933,50.631],[-1.944,50.629],[-1.949,50.626],[-1.952,50.624],[-1.956,50.618],[-1.957,50.614],[-1.957,50.612],[-1.956,50.609],[-1.953,50.607],[-1.945,50.608],[-1.944,50.607],[-1.949,50.605],[-1.95,50.604],[-1.953,50.599],[-1.952,50.597],[-1.951,50.595],[-1.953,50.594],[-1.957,50.592],[-1.962,50.591],[-1.966,50.591],[-1.977,50.591],[-1.984,50.59],[-1.987,50.591],[-1.99,50.59],[-1.992,50.591],[-2.004,50.591],[-2.006,50.592],[-2.009,50.591],[-2.013,50.591],[-2.022,50.589],[-2.027,50.589],[-2.028,50.588],[-2.032,50.585],[-2.042,50.579],[-2.053,50.578],[-2.056,50.577],[-2.059,50.578],[-2.062,50.581],[-2.062,50.583],[-2.064,50.586],[-2.065,50.589],[-2.065,50.591],[-2.063,50.593],[-2.065,50.594],[-2.068,50.592],[-2.071,50.593],[-2.074,50.592],[-2.076,50.593],[-2.077,50.595],[-2.083,50.595],[-2.089,50.596],[-2.099,50.598],[-2.1,50.598],[-2.106,50.596],[-2.11,50.598],[-2.113,50.599],[-2.116,50.599],[-2.118,50.6],[-2.121,50.602],[-2.124,50.603],[-2.125,50.603],[-2.13,50.605],[-2.132,50.608],[-2.129,50.61],[-2.131,50.611],[-2.133,50.611],[-2.135,50.612],[-2.138,50.612],[-2.139,50.61],[-2.143,50.611],[-2.145,50.609],[-2.147,50.608],[-2.148,50.611],[-2.152,50.611],[-2.153,50.613],[-2.156,50.615],[-2.159,50.615],[-2.166,50.615],[-2.17,50.614],[-2.176,50.615],[-2.179,50.615],[-2.183,50.616],[-2.185,50.615],[-2.187,50.616],[-2.185,50.617],[-2.186,50.619],[-2.189,50.621],[-2.197,50.623],[-2.199,50.623],[-2.204,50.622],[-2.207,50.622],[-2.209,50.621],[-2.213,50.621],[-2.22,50.62],[-2.223,50.619],[-2.224,50.617],[-2.228,50.617],[-2.231,50.616],[-2.239,50.616],[-2.245,50.616],[-2.244,50.618],[-2.246,50.619],[-2.249,50.619],[-2.25,50.617],[-2.252,50.618],[-2.26,50.618],[-2.268,50.621],[-2.274,50.622],[-2.277,50.622],[-2.289,50.623],[-2.282,50.63],[-2.286,50.641],[-2.285,50.642],[-2.276,50.642],[-2.272,50.639],[-2.271,50.636],[-2.267,50.636],[-2.255,50.64],[-2.255,50.641],[-2.248,50.648],[-2.248,50.649],[-2.25,50.653],[-2.255,50.655],[-2.25,50.658],[-2.238,50.66],[-2.236,50.663],[-2.239,50.666],[-2.241,50.671],[-2.243,50.675],[-2.239,50.676],[-2.241,50.679],[-2.24,50.681],[-2.247,50.682],[-2.251,50.683],[-2.25,50.685],[-2.251,50.686],[-2.257,50.687],[-2.261,50.688],[-2.262,50.692],[-2.264,50.694],[-2.265,50.694],[-2.268,50.699],[-2.269,50.7],[-2.264,50.704],[-2.259,50.705],[-2.256,50.709],[-2.255,50.711],[-2.262,50.714],[-2.262,50.72],[-2.257,50.72],[-2.253,50.725],[-2.254,50.73],[-2.251,50.731],[-2.248,50.731],[-2.243,50.733],[-2.242,50.735],[-2.24,50.736],[-2.237,50.736],[-2.237,50.735],[-2.232,50.735],[-2.23,50.735],[-2.224,50.74],[-2.231,50.742],[-2.232,50.743],[-2.23,50.749],[-2.233,50.751],[-2.244,50.749],[-2.247,50.75],[-2.248,50.754],[-2.24,50.756],[-2.243,50.759],[-2.246,50.762],[-2.256,50.761],[-2.263,50.766],[-2.259,50.77],[-2.262,50.772],[-2.26,50.775],[-2.248,50.775],[-2.244,50.778],[-2.242,50.778],[-2.238,50.78],[-2.23,50.78],[-2.224,50.784],[-2.22,50.781],[-2.216,50.777],[-2.214,50.774],[-2.207,50.774],[-2.204,50.771],[-2.202,50.767],[-2.204,50.765],[-2.2,50.766],[-2.193,50.766],[-2.189,50.767],[-2.173,50.771],[-2.171,50.768],[-2.17,50.763],[-2.161,50.763],[-2.146,50.767],[-2.132,50.768],[-2.131,50.767],[-2.128,50.769],[-2.127,50.772],[-2.125,50.775],[-2.131,50.777],[-2.132,50.78],[-2.132,50.782],[-2.128,50.785],[-2.126,50.785],[-2.122,50.782],[-2.118,50.781],[-2.111,50.783],[-2.107,50.786],[-2.103,50.783],[-2.099,50.782],[-2.093,50.783],[-2.092,50.784],[-2.085,50.785],[-2.083,50.788],[-2.088,50.788],[-2.108,50.794],[-2.115,50.793],[-2.115,50.795],[-2.116,50.797],[-2.116,50.802],[-2.117,50.803],[-2.112,50.806],[-2.109,50.809],[-2.104,50.811],[-2.095,50.806],[-2.093,50.806],[-2.096,50.809],[-2.093,50.81],[-2.089,50.807],[-2.082,50.806],[-2.078,50.804],[-2.074,50.809],[-2.065,50.807],[-2.062,50.806],[-2.058,50.81],[-2.057,50.812],[-2.05,50.82],[-2.053,50.821],[-2.067,50.828],[-2.065,50.83],[-2.063,50.843],[-2.066,50.844],[-2.072,50.846],[-2.068,50.849],[-2.06,50.852],[-2.059,50.855],[-2.056,50.855],[-2.055,50.858],[-2.055,50.861],[-2.056,50.865],[-2.06,50.873],[-2.058,50.876],[-2.062,50.88],[-2.064,50.886],[-2.062,50.891],[-2.063,50.892],[-2.068,50.902],[-2.067,50.908],[-2.057,50.914],[-2.043,50.92],[-2.036,50.923],[-2.028,50.925],[-2.024,50.928],[-2.022,50.927],[-2.011,50.923],[-2.003,50.924],[-2.002,50.924],[-1.993,50.93],[-1.991,50.929],[-1.986,50.932],[-1.986,50.937],[-1.977,50.945],[-1.97,50.94],[-1.966,50.941],[-1.95,50.952],[-1.941,50.955],[-1.94,50.956],[-1.935,50.958],[-1.93,50.964],[-1.917,50.962],[-1.905,50.964],[-1.899,50.96],[-1.9,50.96],[-1.905,50.951],[-1.908,50.948],[-1.909,50.946],[-1.906,50.945],[-1.9,50.941],[-1.898,50.94],[-1.891,50.931],[-1.888,50.93],[-1.89,50.929],[-1.89,50.926],[-1.887,50.923],[-1.889,50.921],[-1.885,50.92],[-1.882,50.919],[-1.877,50.912],[-1.876,50.91],[-1.875,50.909],[-1.876,50.904],[-1.871,50.903],[-1.867,50.902],[-1.863,50.903],[-1.86,50.903],[-1.855,50.899],[-1.844,50.897],[-1.843,50.898],[-1.83,50.898],[-1.824,50.897],[-1.815,50.903],[-1.812,50.9],[-1.811,50.901],[-1.812,50.903],[-1.81,50.905],[-1.807,50.905],[-1.804,50.904],[-1.8,50.902],[-1.797,50.901],[-1.795,50.899],[-1.796,50.895],[-1.789,50.895],[-1.788,50.893],[-1.788,50.886],[-1.786,50.889],[-1.786,50.892],[-1.785,50.895],[-1.782,50.896],[-1.782,50.894],[-1.777,50.893],[-1.776,50.892],[-1.772,50.891],[-1.769,50.892],[-1.767,50.892],[-1.763,50.893],[-1.758,50.893],[-1.752,50.892],[-1.749,50.893],[-1.745,50.898],[-1.744,50.899],[-1.739,50.9],[-1.734,50.902],[-1.73,50.904],[-1.718,50.913],[-1.718,50.919],[-1.711,50.925],[-1.689,50.918],[-1.676,50.909],[-1.674,50.907],[-1.675,50.904],[-1.679,50.902],[-1.685,50.895],[-1.69,50.892],[-1.689,50.891],[-1.685,50.888],[-1.68,50.887],[-1.672,50.887],[-1.667,50.887],[-1.671,50.884],[-1.682,50.88],[-1.689,50.877],[-1.692,50.875],[-1.678,50.867],[-1.664,50.866],[-1.653,50.865],[-1.651,50.864],[-1.646,50.861],[-1.642,50.859],[-1.638,50.859],[-1.632,50.858],[-1.625,50.856],[-1.623,50.855],[-1.629,50.851],[-1.634,50.848],[-1.643,50.84],[-1.65,50.827],[-1.652,50.825],[-1.642,50.818],[-1.624,50.814],[-1.621,50.811],[-1.623,50.811],[-1.63,50.811],[-1.632,50.811],[-1.637,50.81],[-1.638,50.807],[-1.637,50.806],[-1.618,50.799],[-1.619,50.798],[-1.633,50.794],[-1.634,50.788],[-1.638,50.784],[-1.639,50.782],[-1.641,50.782],[-1.642,50.781],[-1.641,50.779],[-1.644,50.778],[-1.642,50.774],[-1.64,50.771],[-1.638,50.769],[-1.636,50.772],[-1.634,50.773],[-1.628,50.769],[-1.633,50.765],[-1.627,50.76],[-1.628,50.759],[-1.633,50.759],[-1.632,50.756],[-1.629,50.756],[-1.628,50.753],[-1.628,50.751],[-1.625,50.746],[-1.626,50.745],[-1.626,50.743],[-1.624,50.741],[-1.621,50.74],[-1.625,50.738],[-1.626,50.74],[-1.632,50.741],[-1.636,50.738],[-1.638,50.734],[-1.638,50.733],[-1.64,50.731]]]]},"properties":{"OBJECTID":7,"NAME":"BH","KEY":"BH","Shape_Leng":3.78771,"Shape_Area":0.126983}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.249,53.566],[-2.253,53.566],[-2.255,53.564],[-2.258,53.56],[-2.257,53.558],[-2.261,53.554],[-2.266,53.553],[-2.269,53.556],[-2.269,53.557],[-2.274,53.557],[-2.277,53.556],[-2.28,53.553],[-2.282,53.553],[-2.286,53.553],[-2.286,53.556],[-2.288,53.558],[-2.29,53.559],[-2.293,53.559],[-2.295,53.558],[-2.296,53.56],[-2.298,53.562],[-2.3,53.567],[-2.299,53.569],[-2.298,53.57],[-2.3,53.572],[-2.303,53.574],[-2.302,53.576],[-2.304,53.577],[-2.306,53.576],[-2.308,53.577],[-2.312,53.577],[-2.314,53.579],[-2.315,53.58],[-2.32,53.578],[-2.323,53.576],[-2.321,53.58],[-2.325,53.582],[-2.332,53.584],[-2.335,53.583],[-2.338,53.584],[-2.338,53.585],[-2.34,53.586],[-2.343,53.586],[-2.346,53.587],[-2.347,53.587],[-2.348,53.585],[-2.352,53.584],[-2.353,53.582],[-2.357,53.58],[-2.361,53.579],[-2.36,53.577],[-2.353,53.575],[-2.356,53.573],[-2.36,53.572],[-2.361,53.572],[-2.364,53.571],[-2.367,53.571],[-2.367,53.568],[-2.365,53.567],[-2.362,53.566],[-2.359,53.567],[-2.357,53.566],[-2.357,53.563],[-2.355,53.564],[-2.354,53.562],[-2.354,53.559],[-2.356,53.557],[-2.357,53.553],[-2.362,53.554],[-2.364,53.553],[-2.369,53.554],[-2.372,53.553],[-2.373,53.552],[-2.38,53.552],[-2.383,53.548],[-2.374,53.544],[-2.36,53.537],[-2.356,53.535],[-2.353,53.532],[-2.354,53.531],[-2.353,53.528],[-2.358,53.525],[-2.362,53.525],[-2.365,53.527],[-2.368,53.529],[-2.385,53.532],[-2.388,53.534],[-2.395,53.538],[-2.4,53.539],[-2.41,53.539],[-2.413,53.539],[-2.42,53.541],[-2.434,53.542],[-2.439,53.543],[-2.439,53.541],[-2.441,53.538],[-2.443,53.536],[-2.444,53.534],[-2.447,53.533],[-2.451,53.535],[-2.456,53.535],[-2.458,53.536],[-2.461,53.536],[-2.462,53.539],[-2.465,53.538],[-2.468,53.539],[-2.471,53.538],[-2.472,53.541],[-2.479,53.54],[-2.483,53.538],[-2.49,53.541],[-2.495,53.541],[-2.5,53.543],[-2.502,53.542],[-2.504,53.537],[-2.508,53.538],[-2.51,53.534],[-2.516,53.532],[-2.516,53.528],[-2.519,53.529],[-2.521,53.529],[-2.525,53.527],[-2.531,53.525],[-2.535,53.526],[-2.535,53.528],[-2.54,53.533],[-2.543,53.534],[-2.546,53.533],[-2.55,53.533],[-2.547,53.536],[-2.548,53.537],[-2.553,53.54],[-2.559,53.539],[-2.56,53.541],[-2.561,53.544],[-2.557,53.545],[-2.564,53.547],[-2.566,53.551],[-2.565,53.552],[-2.562,53.556],[-2.559,53.556],[-2.558,53.559],[-2.557,53.562],[-2.556,53.562],[-2.555,53.565],[-2.557,53.565],[-2.562,53.563],[-2.567,53.568],[-2.567,53.569],[-2.577,53.571],[-2.58,53.572],[-2.575,53.573],[-2.572,53.574],[-2.57,53.578],[-2.571,53.578],[-2.576,53.575],[-2.58,53.576],[-2.579,53.58],[-2.581,53.582],[-2.579,53.584],[-2.579,53.585],[-2.585,53.587],[-2.587,53.585],[-2.592,53.585],[-2.595,53.584],[-2.596,53.587],[-2.602,53.588],[-2.607,53.593],[-2.609,53.592],[-2.611,53.594],[-2.607,53.595],[-2.609,53.598],[-2.613,53.599],[-2.616,53.594],[-2.62,53.595],[-2.615,53.6],[-2.615,53.601],[-2.612,53.603],[-2.608,53.603],[-2.604,53.609],[-2.6,53.608],[-2.597,53.61],[-2.599,53.611],[-2.597,53.612],[-2.593,53.611],[-2.591,53.61],[-2.587,53.606],[-2.589,53.605],[-2.582,53.6],[-2.579,53.598],[-2.573,53.599],[-2.576,53.605],[-2.572,53.605],[-2.571,53.608],[-2.569,53.608],[-2.566,53.611],[-2.566,53.614],[-2.568,53.621],[-2.572,53.624],[-2.572,53.628],[-2.571,53.63],[-2.57,53.634],[-2.568,53.638],[-2.569,53.639],[-2.571,53.64],[-2.565,53.643],[-2.553,53.65],[-2.542,53.655],[-2.541,53.659],[-2.539,53.662],[-2.51,53.666],[-2.506,53.668],[-2.507,53.672],[-2.497,53.672],[-2.484,53.666],[-2.479,53.661],[-2.475,53.66],[-2.467,53.65],[-2.458,53.644],[-2.454,53.645],[-2.456,53.651],[-2.455,53.653],[-2.453,53.656],[-2.449,53.654],[-2.439,53.651],[-2.438,53.652],[-2.436,53.659],[-2.445,53.666],[-2.442,53.669],[-2.436,53.669],[-2.431,53.674],[-2.424,53.669],[-2.422,53.67],[-2.424,53.673],[-2.423,53.673],[-2.421,53.67],[-2.416,53.672],[-2.412,53.672],[-2.408,53.674],[-2.406,53.677],[-2.408,53.682],[-2.413,53.686],[-2.401,53.691],[-2.403,53.693],[-2.402,53.695],[-2.403,53.696],[-2.391,53.7],[-2.383,53.694],[-2.37,53.691],[-2.37,53.684],[-2.367,53.678],[-2.367,53.675],[-2.365,53.669],[-2.363,53.669],[-2.355,53.666],[-2.353,53.664],[-2.345,53.667],[-2.339,53.671],[-2.336,53.671],[-2.335,53.673],[-2.334,53.675],[-2.331,53.676],[-2.325,53.676],[-2.323,53.676],[-2.322,53.679],[-2.321,53.68],[-2.318,53.68],[-2.315,53.679],[-2.314,53.681],[-2.31,53.685],[-2.306,53.683],[-2.307,53.681],[-2.305,53.68],[-2.301,53.679],[-2.297,53.679],[-2.289,53.68],[-2.287,53.678],[-2.279,53.673],[-2.265,53.673],[-2.263,53.671],[-2.258,53.666],[-2.245,53.659],[-2.248,53.656],[-2.273,53.648],[-2.272,53.646],[-2.269,53.645],[-2.266,53.642],[-2.262,53.641],[-2.264,53.637],[-2.262,53.635],[-2.264,53.632],[-2.26,53.631],[-2.254,53.629],[-2.248,53.626],[-2.248,53.623],[-2.246,53.621],[-2.244,53.62],[-2.235,53.617],[-2.237,53.612],[-2.236,53.609],[-2.239,53.608],[-2.237,53.605],[-2.227,53.605],[-2.23,53.603],[-2.234,53.604],[-2.237,53.601],[-2.24,53.601],[-2.245,53.6],[-2.249,53.6],[-2.251,53.599],[-2.253,53.596],[-2.252,53.593],[-2.254,53.592],[-2.251,53.591],[-2.255,53.59],[-2.254,53.589],[-2.255,53.585],[-2.253,53.584],[-2.253,53.582],[-2.254,53.581],[-2.257,53.58],[-2.259,53.576],[-2.253,53.573],[-2.249,53.572],[-2.247,53.571],[-2.248,53.566],[-2.249,53.566]]]},"properties":{"OBJECTID":8,"NAME":"BL","KEY":"BL","Shape_Leng":1.59524,"Shape_Area":0.0393136}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.406,50.827],[0.4,50.825],[0.397,50.824],[0.392,50.823],[0.383,50.82],[0.378,50.819],[0.373,50.817],[0.368,50.816],[0.367,50.815],[0.364,50.814],[0.36,50.813],[0.357,50.812],[0.352,50.81],[0.349,50.808],[0.349,50.806],[0.343,50.803],[0.334,50.792],[0.331,50.787],[0.329,50.785],[0.325,50.783],[0.319,50.782],[0.312,50.779],[0.304,50.775],[0.3,50.772],[0.296,50.769],[0.296,50.768],[0.292,50.765],[0.29,50.763],[0.287,50.76],[0.285,50.759],[0.282,50.757],[0.28,50.756],[0.278,50.754],[0.274,50.753],[0.271,50.748],[0.268,50.747],[0.266,50.745],[0.265,50.742],[0.262,50.738],[0.259,50.736],[0.256,50.736],[0.251,50.736],[0.248,50.735],[0.247,50.736],[0.244,50.734],[0.241,50.733],[0.24,50.734],[0.234,50.734],[0.232,50.735],[0.229,50.735],[0.221,50.736],[0.216,50.736],[0.213,50.737],[0.208,50.737],[0.205,50.738],[0.201,50.739],[0.201,50.741],[0.198,50.743],[0.197,50.743],[0.191,50.746],[0.186,50.747],[0.183,50.747],[0.176,50.75],[0.173,50.75],[0.171,50.752],[0.165,50.753],[0.156,50.756],[0.154,50.757],[0.15,50.757],[0.146,50.757],[0.143,50.756],[0.14,50.756],[0.141,50.754],[0.135,50.755],[0.13,50.756],[0.125,50.757],[0.12,50.757],[0.118,50.759],[0.114,50.76],[0.112,50.762],[0.109,50.764],[0.107,50.764],[0.102,50.767],[0.096,50.77],[0.081,50.777],[0.077,50.779],[0.07,50.781],[0.064,50.782],[0.052,50.781],[0.053,50.78],[0.045,50.781],[0.038,50.78],[0.035,50.78],[0.033,50.781],[0.024,50.783],[0.021,50.785],[0.017,50.784],[0.013,50.785],[0.009,50.786],[0.008,50.786],[0.005,50.787],[0,50.788],[-0.003,50.789],[-0.011,50.791],[-0.015,50.791],[-0.02,50.793],[-0.025,50.794],[-0.026,50.795],[-0.04,50.799],[-0.043,50.8],[-0.044,50.799],[-0.05,50.8],[-0.053,50.8],[-0.06,50.802],[-0.074,50.805],[-0.079,50.808],[-0.091,50.81],[-0.096,50.811],[-0.104,50.812],[-0.105,50.811],[-0.107,50.811],[-0.11,50.813],[-0.12,50.816],[-0.128,50.817],[-0.143,50.819],[-0.163,50.823],[-0.171,50.823],[-0.182,50.824],[-0.195,50.826],[-0.199,50.826],[-0.221,50.827],[-0.226,50.828],[-0.234,50.828],[-0.245,50.828],[-0.248,50.826],[-0.252,50.826],[-0.261,50.827],[-0.269,50.827],[-0.277,50.826],[-0.282,50.826],[-0.296,50.823],[-0.3,50.823],[-0.303,50.822],[-0.313,50.82],[-0.319,50.819],[-0.327,50.817],[-0.337,50.814],[-0.344,50.812],[-0.349,50.811],[-0.355,50.811],[-0.356,50.81],[-0.359,50.81],[-0.362,50.809],[-0.367,50.808],[-0.373,50.805],[-0.378,50.805],[-0.381,50.804],[-0.383,50.804],[-0.393,50.803],[-0.395,50.803],[-0.401,50.802],[-0.408,50.802],[-0.412,50.802],[-0.415,50.801],[-0.425,50.801],[-0.427,50.799],[-0.429,50.8],[-0.445,50.799],[-0.448,50.799],[-0.451,50.799],[-0.459,50.8],[-0.462,50.799],[-0.468,50.799],[-0.472,50.8],[-0.473,50.8],[-0.478,50.8],[-0.486,50.799],[-0.494,50.8],[-0.505,50.8],[-0.516,50.8],[-0.523,50.799],[-0.525,50.8],[-0.528,50.799],[-0.528,50.798],[-0.531,50.798],[-0.533,50.797],[-0.541,50.798],[-0.542,50.797],[-0.546,50.797],[-0.552,50.797],[-0.555,50.798],[-0.564,50.797],[-0.568,50.797],[-0.569,50.796],[-0.573,50.796],[-0.583,50.793],[-0.592,50.792],[-0.593,50.794],[-0.593,50.798],[-0.598,50.799],[-0.6,50.8],[-0.606,50.801],[-0.613,50.801],[-0.618,50.802],[-0.628,50.803],[-0.628,50.806],[-0.632,50.811],[-0.641,50.81],[-0.646,50.813],[-0.643,50.817],[-0.639,50.818],[-0.636,50.821],[-0.633,50.821],[-0.628,50.822],[-0.625,50.822],[-0.623,50.824],[-0.62,50.825],[-0.617,50.824],[-0.615,50.825],[-0.616,50.827],[-0.617,50.828],[-0.619,50.831],[-0.614,50.831],[-0.615,50.832],[-0.614,50.834],[-0.617,50.834],[-0.619,50.836],[-0.621,50.839],[-0.627,50.839],[-0.631,50.841],[-0.634,50.84],[-0.634,50.836],[-0.635,50.836],[-0.636,50.84],[-0.641,50.84],[-0.642,50.842],[-0.641,50.844],[-0.643,50.846],[-0.645,50.848],[-0.643,50.849],[-0.643,50.85],[-0.646,50.851],[-0.65,50.848],[-0.651,50.849],[-0.653,50.848],[-0.655,50.848],[-0.648,50.85],[-0.643,50.854],[-0.647,50.853],[-0.649,50.852],[-0.652,50.853],[-0.657,50.852],[-0.658,50.853],[-0.662,50.853],[-0.663,50.857],[-0.666,50.857],[-0.664,50.863],[-0.663,50.865],[-0.662,50.869],[-0.658,50.869],[-0.653,50.881],[-0.652,50.882],[-0.646,50.891],[-0.65,50.895],[-0.65,50.9],[-0.649,50.905],[-0.646,50.907],[-0.632,50.904],[-0.621,50.902],[-0.617,50.904],[-0.611,50.905],[-0.602,50.898],[-0.597,50.896],[-0.584,50.906],[-0.583,50.906],[-0.579,50.905],[-0.573,50.901],[-0.573,50.898],[-0.563,50.9],[-0.559,50.902],[-0.557,50.9],[-0.552,50.901],[-0.551,50.903],[-0.548,50.906],[-0.544,50.909],[-0.547,50.916],[-0.549,50.92],[-0.539,50.919],[-0.531,50.919],[-0.526,50.919],[-0.523,50.918],[-0.514,50.915],[-0.512,50.913],[-0.515,50.913],[-0.517,50.908],[-0.504,50.909],[-0.502,50.904],[-0.501,50.898],[-0.499,50.896],[-0.495,50.894],[-0.483,50.894],[-0.464,50.895],[-0.453,50.886],[-0.452,50.881],[-0.436,50.882],[-0.431,50.883],[-0.43,50.884],[-0.419,50.882],[-0.413,50.883],[-0.411,50.882],[-0.405,50.882],[-0.402,50.884],[-0.394,50.887],[-0.389,50.89],[-0.392,50.895],[-0.389,50.901],[-0.381,50.904],[-0.381,50.905],[-0.389,50.906],[-0.386,50.907],[-0.386,50.909],[-0.388,50.909],[-0.387,50.912],[-0.382,50.915],[-0.382,50.916],[-0.385,50.92],[-0.388,50.921],[-0.391,50.922],[-0.387,50.925],[-0.389,50.927],[-0.39,50.928],[-0.386,50.929],[-0.384,50.928],[-0.38,50.93],[-0.377,50.927],[-0.373,50.927],[-0.368,50.926],[-0.365,50.927],[-0.358,50.934],[-0.357,50.936],[-0.363,50.939],[-0.358,50.944],[-0.358,50.948],[-0.356,50.949],[-0.35,50.945],[-0.344,50.944],[-0.337,50.947],[-0.334,50.946],[-0.329,50.948],[-0.322,50.949],[-0.316,50.946],[-0.315,50.943],[-0.316,50.942],[-0.32,50.941],[-0.319,50.937],[-0.317,50.939],[-0.313,50.939],[-0.314,50.936],[-0.309,50.938],[-0.304,50.937],[-0.303,50.938],[-0.3,50.943],[-0.302,50.946],[-0.302,50.948],[-0.301,50.95],[-0.294,50.952],[-0.292,50.949],[-0.286,50.949],[-0.281,50.951],[-0.28,50.953],[-0.276,50.954],[-0.271,50.953],[-0.268,50.952],[-0.264,50.954],[-0.262,50.955],[-0.264,50.958],[-0.268,50.958],[-0.271,50.96],[-0.269,50.964],[-0.269,50.965],[-0.266,50.967],[-0.269,50.972],[-0.263,50.973],[-0.262,50.972],[-0.258,50.972],[-0.254,50.971],[-0.25,50.969],[-0.246,50.97],[-0.244,50.972],[-0.243,50.974],[-0.248,50.977],[-0.244,50.979],[-0.243,50.979],[-0.239,50.981],[-0.237,50.981],[-0.236,50.98],[-0.234,50.98],[-0.232,50.978],[-0.227,50.977],[-0.23,50.974],[-0.232,50.972],[-0.237,50.973],[-0.24,50.975],[-0.241,50.973],[-0.238,50.972],[-0.236,50.969],[-0.233,50.965],[-0.232,50.963],[-0.224,50.957],[-0.221,50.959],[-0.22,50.961],[-0.217,50.962],[-0.215,50.962],[-0.214,50.961],[-0.21,50.96],[-0.208,50.96],[-0.204,50.96],[-0.201,50.961],[-0.198,50.96],[-0.198,50.959],[-0.194,50.959],[-0.194,50.968],[-0.189,50.968],[-0.188,50.97],[-0.184,50.969],[-0.179,50.97],[-0.176,50.978],[-0.174,50.979],[-0.177,50.984],[-0.177,50.99],[-0.173,50.992],[-0.169,50.988],[-0.169,50.987],[-0.17,50.982],[-0.173,50.98],[-0.175,50.975],[-0.174,50.972],[-0.174,50.97],[-0.171,50.97],[-0.166,50.969],[-0.162,50.968],[-0.161,50.966],[-0.158,50.967],[-0.155,50.966],[-0.158,50.964],[-0.159,50.962],[-0.159,50.96],[-0.159,50.959],[-0.161,50.958],[-0.16,50.956],[-0.161,50.954],[-0.157,50.954],[-0.156,50.952],[-0.156,50.948],[-0.152,50.95],[-0.15,50.949],[-0.148,50.948],[-0.143,50.947],[-0.141,50.947],[-0.138,50.944],[-0.137,50.942],[-0.135,50.942],[-0.137,50.938],[-0.134,50.937],[-0.128,50.938],[-0.125,50.94],[-0.121,50.939],[-0.124,50.937],[-0.121,50.934],[-0.119,50.934],[-0.116,50.936],[-0.117,50.938],[-0.114,50.942],[-0.115,50.943],[-0.114,50.944],[-0.107,50.945],[-0.104,50.946],[-0.103,50.949],[-0.098,50.951],[-0.096,50.95],[-0.089,50.951],[-0.088,50.953],[-0.084,50.951],[-0.085,50.949],[-0.087,50.948],[-0.082,50.946],[-0.082,50.944],[-0.078,50.944],[-0.077,50.946],[-0.08,50.947],[-0.081,50.948],[-0.083,50.949],[-0.077,50.952],[-0.072,50.953],[-0.068,50.959],[-0.066,50.96],[-0.064,50.959],[-0.064,50.956],[-0.061,50.955],[-0.057,50.957],[-0.056,50.958],[-0.053,50.96],[-0.057,50.963],[-0.061,50.964],[-0.063,50.965],[-0.064,50.968],[-0.066,50.969],[-0.071,50.97],[-0.072,50.974],[-0.07,50.976],[-0.064,50.976],[-0.061,50.977],[-0.054,50.978],[-0.05,50.976],[-0.047,50.973],[-0.045,50.973],[-0.045,50.971],[-0.042,50.969],[-0.039,50.972],[-0.042,50.972],[-0.044,50.974],[-0.046,50.977],[-0.047,50.978],[-0.044,50.98],[-0.044,50.981],[-0.047,50.984],[-0.045,50.985],[-0.044,50.983],[-0.038,50.983],[-0.036,50.985],[-0.031,50.986],[-0.029,50.991],[-0.024,50.991],[-0.019,50.99],[-0.018,50.99],[-0.013,50.99],[-0.01,50.989],[-0.006,50.989],[-0.005,50.985],[-0.009,50.985],[-0.008,50.982],[-0.004,50.985],[-0.002,50.988],[0.006,50.987],[0.01,50.988],[0.014,50.982],[0.016,50.981],[0.021,50.981],[0.023,50.984],[0.027,50.984],[0.029,50.983],[0.028,50.981],[0.029,50.98],[0.03,50.978],[0.032,50.976],[0.032,50.975],[0.036,50.974],[0.038,50.973],[0.038,50.971],[0.037,50.968],[0.039,50.967],[0.044,50.966],[0.048,50.968],[0.049,50.967],[0.047,50.964],[0.049,50.962],[0.048,50.959],[0.051,50.959],[0.049,50.956],[0.049,50.951],[0.048,50.947],[0.049,50.945],[0.052,50.943],[0.053,50.941],[0.053,50.937],[0.051,50.932],[0.052,50.928],[0.048,50.924],[0.053,50.922],[0.058,50.928],[0.063,50.927],[0.063,50.925],[0.061,50.921],[0.067,50.918],[0.076,50.919],[0.079,50.921],[0.086,50.922],[0.093,50.927],[0.1,50.926],[0.098,50.928],[0.099,50.93],[0.104,50.932],[0.113,50.933],[0.115,50.935],[0.119,50.933],[0.124,50.934],[0.126,50.936],[0.122,50.937],[0.116,50.936],[0.117,50.938],[0.119,50.94],[0.117,50.942],[0.123,50.944],[0.124,50.943],[0.13,50.942],[0.132,50.941],[0.135,50.942],[0.135,50.94],[0.134,50.936],[0.135,50.933],[0.137,50.932],[0.14,50.935],[0.146,50.933],[0.154,50.935],[0.159,50.935],[0.164,50.935],[0.167,50.938],[0.166,50.941],[0.17,50.943],[0.175,50.942],[0.177,50.943],[0.182,50.942],[0.181,50.94],[0.184,50.937],[0.187,50.938],[0.19,50.939],[0.194,50.936],[0.193,50.934],[0.194,50.931],[0.199,50.928],[0.199,50.926],[0.201,50.925],[0.204,50.925],[0.207,50.921],[0.209,50.923],[0.209,50.926],[0.214,50.925],[0.216,50.921],[0.219,50.918],[0.218,50.916],[0.214,50.915],[0.215,50.912],[0.217,50.91],[0.215,50.906],[0.217,50.904],[0.214,50.903],[0.213,50.901],[0.216,50.899],[0.218,50.896],[0.227,50.896],[0.232,50.894],[0.235,50.895],[0.237,50.9],[0.24,50.902],[0.237,50.905],[0.239,50.91],[0.242,50.911],[0.242,50.916],[0.243,50.915],[0.253,50.918],[0.258,50.913],[0.261,50.917],[0.262,50.918],[0.268,50.919],[0.272,50.916],[0.278,50.918],[0.279,50.919],[0.286,50.919],[0.285,50.921],[0.284,50.926],[0.284,50.927],[0.292,50.926],[0.287,50.921],[0.29,50.916],[0.294,50.917],[0.303,50.919],[0.304,50.919],[0.306,50.921],[0.311,50.921],[0.312,50.92],[0.315,50.917],[0.322,50.917],[0.321,50.919],[0.326,50.922],[0.326,50.924],[0.328,50.926],[0.325,50.932],[0.328,50.932],[0.335,50.929],[0.34,50.929],[0.342,50.931],[0.345,50.93],[0.35,50.927],[0.352,50.932],[0.359,50.933],[0.359,50.935],[0.361,50.936],[0.362,50.934],[0.36,50.929],[0.359,50.927],[0.359,50.922],[0.36,50.922],[0.364,50.919],[0.364,50.916],[0.361,50.908],[0.363,50.904],[0.368,50.903],[0.374,50.898],[0.372,50.896],[0.37,50.897],[0.37,50.894],[0.371,50.891],[0.368,50.889],[0.367,50.886],[0.368,50.883],[0.377,50.884],[0.38,50.887],[0.383,50.885],[0.383,50.884],[0.39,50.882],[0.394,50.88],[0.395,50.878],[0.392,50.876],[0.386,50.874],[0.383,50.872],[0.378,50.871],[0.375,50.868],[0.374,50.865],[0.374,50.862],[0.372,50.857],[0.371,50.856],[0.364,50.858],[0.368,50.848],[0.367,50.842],[0.369,50.842],[0.372,50.844],[0.381,50.838],[0.385,50.839],[0.393,50.837],[0.397,50.837],[0.405,50.835],[0.408,50.83],[0.406,50.829],[0.406,50.827]]]},"properties":{"OBJECTID":9,"NAME":"BN","KEY":"BN","Shape_Leng":3.73437,"Shape_Area":0.142758}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.179,51.35],[0.17,51.353],[0.156,51.353],[0.156,51.347],[0.148,51.346],[0.139,51.347],[0.13,51.347],[0.127,51.346],[0.121,51.348],[0.118,51.346],[0.119,51.343],[0.116,51.342],[0.115,51.341],[0.12,51.337],[0.115,51.335],[0.115,51.332],[0.112,51.334],[0.111,51.333],[0.113,51.33],[0.11,51.326],[0.111,51.323],[0.108,51.321],[0.104,51.32],[0.099,51.323],[0.098,51.322],[0.094,51.324],[0.089,51.332],[0.093,51.338],[0.092,51.34],[0.084,51.341],[0.077,51.343],[0.075,51.343],[0.072,51.34],[0.063,51.334],[0.067,51.333],[0.066,51.33],[0.068,51.33],[0.068,51.328],[0.069,51.326],[0.067,51.325],[0.068,51.323],[0.064,51.321],[0.061,51.322],[0.058,51.319],[0.056,51.316],[0.051,51.318],[0.049,51.318],[0.047,51.32],[0.044,51.321],[0.046,51.326],[0.046,51.327],[0.044,51.329],[0.039,51.33],[0.033,51.333],[0.028,51.334],[0.024,51.335],[0.02,51.335],[0.017,51.333],[0.015,51.338],[0.017,51.34],[0.016,51.342],[0.01,51.343],[0.007,51.341],[0.006,51.341],[0.003,51.335],[0.001,51.339],[0.002,51.341],[0.003,51.343],[0.002,51.346],[0.008,51.347],[0.005,51.352],[0.002,51.352],[-0.001,51.356],[-0.003,51.356],[-0.011,51.36],[-0.012,51.362],[-0.021,51.361],[-0.023,51.362],[-0.025,51.367],[-0.024,51.368],[-0.024,51.372],[-0.026,51.377],[-0.031,51.377],[-0.032,51.38],[-0.035,51.38],[-0.036,51.382],[-0.033,51.383],[-0.031,51.384],[-0.03,51.386],[-0.032,51.388],[-0.037,51.388],[-0.039,51.389],[-0.043,51.389],[-0.044,51.39],[-0.047,51.393],[-0.053,51.394],[-0.053,51.395],[-0.051,51.397],[-0.051,51.398],[-0.057,51.4],[-0.06,51.402],[-0.057,51.404],[-0.057,51.406],[-0.056,51.407],[-0.051,51.409],[-0.048,51.41],[-0.047,51.412],[-0.048,51.414],[-0.047,51.415],[-0.046,51.419],[-0.043,51.422],[-0.043,51.423],[-0.04,51.424],[-0.036,51.424],[-0.038,51.421],[-0.041,51.42],[-0.039,51.418],[-0.032,51.422],[-0.03,51.423],[-0.025,51.422],[-0.017,51.424],[-0.014,51.425],[-0.011,51.424],[-0.011,51.426],[-0.007,51.426],[-0.013,51.428],[-0.011,51.43],[-0.007,51.431],[-0.007,51.433],[-0.005,51.432],[-0.004,51.431],[0,51.432],[0.005,51.433],[0.011,51.435],[0.008,51.436],[0.01,51.437],[0.013,51.436],[0.015,51.436],[0.021,51.431],[0.02,51.43],[0.022,51.427],[0.025,51.429],[0.037,51.422],[0.038,51.422],[0.049,51.422],[0.049,51.424],[0.051,51.425],[0.054,51.428],[0.055,51.428],[0.059,51.425],[0.066,51.426],[0.07,51.428],[0.073,51.432],[0.075,51.432],[0.081,51.431],[0.084,51.43],[0.088,51.426],[0.095,51.42],[0.1,51.418],[0.098,51.415],[0.099,51.414],[0.105,51.416],[0.112,51.413],[0.109,51.412],[0.11,51.411],[0.113,51.412],[0.113,51.413],[0.131,51.41],[0.143,51.409],[0.147,51.409],[0.153,51.407],[0.157,51.411],[0.163,51.409],[0.167,51.41],[0.17,51.411],[0.172,51.416],[0.178,51.416],[0.178,51.415],[0.182,51.415],[0.186,51.415],[0.186,51.416],[0.188,51.416],[0.192,51.418],[0.195,51.417],[0.196,51.415],[0.196,51.413],[0.199,51.414],[0.204,51.413],[0.201,51.416],[0.2,51.417],[0.201,51.418],[0.203,51.422],[0.208,51.421],[0.215,51.422],[0.22,51.417],[0.223,51.415],[0.221,51.414],[0.213,51.408],[0.206,51.4],[0.206,51.396],[0.214,51.393],[0.206,51.39],[0.205,51.39],[0.201,51.388],[0.199,51.389],[0.195,51.388],[0.203,51.386],[0.203,51.385],[0.193,51.381],[0.187,51.38],[0.183,51.377],[0.18,51.375],[0.168,51.37],[0.174,51.366],[0.181,51.364],[0.183,51.363],[0.184,51.358],[0.18,51.355],[0.179,51.35]]]},"properties":{"OBJECTID":10,"NAME":"BR","KEY":"BR","Shape_Leng":1.07725,"Shape_Area":0.0185278}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.678,51.573],[-2.678,51.569],[-2.679,51.562],[-2.68,51.561],[-2.684,51.56],[-2.689,51.561],[-2.694,51.561],[-2.701,51.559],[-2.702,51.559],[-2.703,51.561],[-2.701,51.564],[-2.699,51.565],[-2.697,51.568],[-2.698,51.57],[-2.696,51.573],[-2.695,51.575],[-2.694,51.578],[-2.693,51.579],[-2.691,51.58],[-2.688,51.578],[-2.686,51.578],[-2.688,51.58],[-2.687,51.581],[-2.685,51.58],[-2.684,51.578],[-2.68,51.577],[-2.68,51.575],[-2.678,51.573]]],[[[-2.608,51.342],[-2.61,51.34],[-2.612,51.341],[-2.612,51.344],[-2.612,51.345],[-2.609,51.344],[-2.608,51.342]]],[[[-2.585,51.638],[-2.585,51.636],[-2.595,51.628],[-2.598,51.628],[-2.6,51.627],[-2.607,51.626],[-2.599,51.634],[-2.59,51.636],[-2.586,51.638],[-2.585,51.638]]],[[[-2.357,51.491],[-2.362,51.489],[-2.364,51.491],[-2.368,51.495],[-2.369,51.5],[-2.373,51.499],[-2.383,51.498],[-2.408,51.498],[-2.411,51.495],[-2.416,51.492],[-2.418,51.49],[-2.411,51.489],[-2.41,51.486],[-2.412,51.485],[-2.419,51.484],[-2.423,51.481],[-2.422,51.477],[-2.414,51.475],[-2.413,51.478],[-2.408,51.479],[-2.408,51.481],[-2.403,51.481],[-2.397,51.48],[-2.396,51.479],[-2.394,51.475],[-2.399,51.473],[-2.404,51.469],[-2.401,51.468],[-2.4,51.472],[-2.394,51.469],[-2.392,51.47],[-2.38,51.467],[-2.377,51.461],[-2.381,51.455],[-2.382,51.455],[-2.376,51.452],[-2.378,51.448],[-2.384,51.447],[-2.391,51.449],[-2.393,51.448],[-2.394,51.445],[-2.397,51.442],[-2.398,51.436],[-2.398,51.434],[-2.401,51.433],[-2.405,51.434],[-2.407,51.433],[-2.412,51.432],[-2.415,51.431],[-2.416,51.43],[-2.414,51.428],[-2.416,51.422],[-2.418,51.421],[-2.423,51.424],[-2.43,51.423],[-2.434,51.424],[-2.436,51.421],[-2.437,51.42],[-2.437,51.417],[-2.44,51.416],[-2.438,51.413],[-2.44,51.41],[-2.446,51.408],[-2.448,51.404],[-2.449,51.403],[-2.448,51.401],[-2.443,51.396],[-2.434,51.393],[-2.433,51.391],[-2.442,51.395],[-2.443,51.394],[-2.443,51.392],[-2.445,51.39],[-2.449,51.39],[-2.452,51.392],[-2.456,51.393],[-2.469,51.392],[-2.471,51.388],[-2.471,51.386],[-2.473,51.386],[-2.476,51.382],[-2.481,51.38],[-2.481,51.379],[-2.486,51.378],[-2.491,51.374],[-2.484,51.373],[-2.481,51.373],[-2.483,51.371],[-2.489,51.367],[-2.494,51.366],[-2.494,51.363],[-2.493,51.361],[-2.501,51.351],[-2.506,51.354],[-2.511,51.353],[-2.517,51.348],[-2.519,51.346],[-2.519,51.341],[-2.518,51.339],[-2.513,51.338],[-2.512,51.338],[-2.507,51.338],[-2.509,51.335],[-2.511,51.331],[-2.511,51.33],[-2.504,51.327],[-2.503,51.329],[-2.501,51.329],[-2.498,51.328],[-2.498,51.326],[-2.501,51.325],[-2.498,51.323],[-2.496,51.321],[-2.493,51.321],[-2.494,51.318],[-2.493,51.317],[-2.49,51.316],[-2.487,51.317],[-2.483,51.317],[-2.477,51.318],[-2.476,51.318],[-2.475,51.316],[-2.477,51.315],[-2.479,51.309],[-2.483,51.308],[-2.487,51.307],[-2.492,51.307],[-2.49,51.304],[-2.486,51.304],[-2.483,51.303],[-2.483,51.298],[-2.486,51.296],[-2.49,51.297],[-2.493,51.296],[-2.493,51.293],[-2.497,51.293],[-2.498,51.291],[-2.503,51.288],[-2.507,51.287],[-2.51,51.289],[-2.511,51.288],[-2.516,51.291],[-2.52,51.29],[-2.523,51.286],[-2.525,51.285],[-2.528,51.286],[-2.534,51.29],[-2.539,51.29],[-2.541,51.291],[-2.54,51.293],[-2.544,51.292],[-2.551,51.296],[-2.554,51.297],[-2.558,51.301],[-2.565,51.3],[-2.566,51.299],[-2.57,51.297],[-2.576,51.294],[-2.576,51.296],[-2.581,51.296],[-2.581,51.298],[-2.588,51.302],[-2.593,51.298],[-2.593,51.297],[-2.599,51.294],[-2.602,51.29],[-2.602,51.289],[-2.601,51.286],[-2.601,51.285],[-2.606,51.286],[-2.609,51.285],[-2.609,51.287],[-2.607,51.288],[-2.607,51.289],[-2.613,51.292],[-2.618,51.291],[-2.617,51.288],[-2.62,51.285],[-2.622,51.284],[-2.621,51.279],[-2.629,51.278],[-2.634,51.276],[-2.638,51.277],[-2.645,51.272],[-2.648,51.267],[-2.653,51.268],[-2.654,51.271],[-2.657,51.271],[-2.66,51.272],[-2.662,51.274],[-2.669,51.276],[-2.674,51.275],[-2.68,51.278],[-2.688,51.278],[-2.689,51.286],[-2.693,51.287],[-2.696,51.289],[-2.7,51.287],[-2.704,51.289],[-2.711,51.291],[-2.717,51.289],[-2.719,51.288],[-2.722,51.285],[-2.728,51.287],[-2.735,51.291],[-2.744,51.287],[-2.744,51.286],[-2.746,51.284],[-2.746,51.283],[-2.744,51.283],[-2.742,51.281],[-2.74,51.28],[-2.739,51.278],[-2.736,51.278],[-2.733,51.28],[-2.732,51.279],[-2.73,51.271],[-2.736,51.268],[-2.732,51.262],[-2.721,51.262],[-2.72,51.26],[-2.717,51.261],[-2.716,51.258],[-2.718,51.254],[-2.723,51.253],[-2.726,51.248],[-2.724,51.245],[-2.727,51.244],[-2.726,51.243],[-2.722,51.241],[-2.722,51.239],[-2.724,51.239],[-2.731,51.242],[-2.734,51.244],[-2.738,51.241],[-2.736,51.238],[-2.736,51.236],[-2.734,51.235],[-2.732,51.232],[-2.74,51.224],[-2.737,51.22],[-2.73,51.217],[-2.737,51.213],[-2.75,51.21],[-2.753,51.212],[-2.762,51.21],[-2.768,51.21],[-2.77,51.211],[-2.773,51.211],[-2.774,51.21],[-2.769,51.206],[-2.769,51.205],[-2.772,51.205],[-2.772,51.204],[-2.771,51.198],[-2.774,51.197],[-2.782,51.198],[-2.789,51.198],[-2.79,51.195],[-2.783,51.187],[-2.787,51.186],[-2.794,51.187],[-2.799,51.185],[-2.803,51.186],[-2.805,51.187],[-2.813,51.182],[-2.818,51.185],[-2.825,51.187],[-2.837,51.191],[-2.842,51.194],[-2.84,51.2],[-2.844,51.204],[-2.853,51.206],[-2.856,51.207],[-2.86,51.211],[-2.86,51.212],[-2.861,51.213],[-2.863,51.218],[-2.87,51.219],[-2.873,51.217],[-2.879,51.217],[-2.88,51.218],[-2.881,51.222],[-2.879,51.226],[-2.868,51.225],[-2.865,51.232],[-2.866,51.232],[-2.865,51.236],[-2.868,51.239],[-2.868,51.241],[-2.867,51.241],[-2.869,51.245],[-2.872,51.247],[-2.881,51.248],[-2.885,51.253],[-2.888,51.254],[-2.891,51.247],[-2.892,51.251],[-2.899,51.254],[-2.9,51.255],[-2.905,51.259],[-2.908,51.257],[-2.911,51.253],[-2.923,51.252],[-2.921,51.255],[-2.921,51.257],[-2.922,51.263],[-2.922,51.265],[-2.926,51.265],[-2.93,51.266],[-2.928,51.269],[-2.934,51.269],[-2.938,51.27],[-2.941,51.272],[-2.945,51.273],[-2.949,51.272],[-2.95,51.271],[-2.956,51.271],[-2.963,51.273],[-2.965,51.278],[-2.97,51.279],[-2.97,51.269],[-2.977,51.269],[-2.979,51.273],[-2.991,51.277],[-2.995,51.279],[-2.994,51.287],[-2.991,51.293],[-2.985,51.295],[-2.983,51.296],[-2.982,51.299],[-2.981,51.301],[-2.982,51.306],[-2.982,51.312],[-2.989,51.314],[-2.996,51.313],[-3,51.317],[-2.998,51.321],[-2.997,51.323],[-2.994,51.321],[-2.991,51.322],[-2.986,51.327],[-2.984,51.335],[-2.982,51.343],[-2.982,51.347],[-2.983,51.35],[-2.986,51.352],[-2.989,51.351],[-2.992,51.353],[-2.994,51.355],[-2.994,51.357],[-2.991,51.359],[-2.984,51.36],[-2.975,51.362],[-2.97,51.362],[-2.967,51.363],[-2.965,51.365],[-2.963,51.37],[-2.961,51.379],[-2.962,51.382],[-2.964,51.387],[-2.966,51.385],[-2.967,51.386],[-2.97,51.389],[-2.978,51.389],[-2.977,51.39],[-2.968,51.392],[-2.964,51.393],[-2.95,51.397],[-2.946,51.398],[-2.942,51.399],[-2.937,51.399],[-2.933,51.398],[-2.927,51.398],[-2.923,51.398],[-2.918,51.4],[-2.913,51.402],[-2.907,51.406],[-2.903,51.409],[-2.901,51.412],[-2.898,51.416],[-2.894,51.421],[-2.89,51.424],[-2.888,51.429],[-2.885,51.43],[-2.873,51.436],[-2.865,51.441],[-2.867,51.443],[-2.867,51.444],[-2.865,51.445],[-2.861,51.445],[-2.857,51.449],[-2.855,51.45],[-2.853,51.453],[-2.85,51.455],[-2.841,51.46],[-2.838,51.462],[-2.83,51.466],[-2.824,51.469],[-2.82,51.471],[-2.819,51.473],[-2.813,51.478],[-2.811,51.478],[-2.811,51.48],[-2.806,51.483],[-2.802,51.486],[-2.798,51.487],[-2.793,51.487],[-2.788,51.489],[-2.78,51.492],[-2.773,51.495],[-2.767,51.495],[-2.759,51.495],[-2.756,51.494],[-2.756,51.492],[-2.753,51.493],[-2.749,51.493],[-2.742,51.493],[-2.734,51.494],[-2.732,51.496],[-2.728,51.498],[-2.726,51.5],[-2.724,51.501],[-2.719,51.501],[-2.715,51.507],[-2.711,51.511],[-2.708,51.513],[-2.702,51.521],[-2.702,51.523],[-2.699,51.525],[-2.701,51.525],[-2.7,51.53],[-2.699,51.531],[-2.698,51.534],[-2.7,51.535],[-2.699,51.537],[-2.695,51.539],[-2.697,51.54],[-2.695,51.543],[-2.695,51.545],[-2.696,51.545],[-2.7,51.543],[-2.701,51.544],[-2.701,51.547],[-2.696,51.548],[-2.692,51.551],[-2.687,51.553],[-2.682,51.559],[-2.679,51.56],[-2.678,51.561],[-2.677,51.564],[-2.676,51.571],[-2.674,51.575],[-2.669,51.575],[-2.669,51.576],[-2.67,51.578],[-2.663,51.579],[-2.66,51.581],[-2.637,51.599],[-2.633,51.602],[-2.628,51.608],[-2.623,51.611],[-2.62,51.611],[-2.613,51.615],[-2.608,51.619],[-2.603,51.621],[-2.596,51.624],[-2.59,51.626],[-2.585,51.63],[-2.582,51.634],[-2.581,51.637],[-2.581,51.644],[-2.58,51.646],[-2.583,51.657],[-2.584,51.658],[-2.584,51.66],[-2.578,51.66],[-2.572,51.661],[-2.566,51.663],[-2.558,51.667],[-2.547,51.675],[-2.545,51.677],[-2.54,51.679],[-2.534,51.675],[-2.536,51.668],[-2.531,51.662],[-2.531,51.659],[-2.526,51.655],[-2.529,51.654],[-2.532,51.652],[-2.531,51.647],[-2.527,51.643],[-2.528,51.64],[-2.518,51.637],[-2.518,51.635],[-2.512,51.63],[-2.51,51.634],[-2.508,51.637],[-2.507,51.636],[-2.505,51.631],[-2.503,51.628],[-2.496,51.629],[-2.492,51.632],[-2.484,51.633],[-2.48,51.629],[-2.48,51.627],[-2.483,51.625],[-2.482,51.623],[-2.483,51.619],[-2.485,51.619],[-2.49,51.618],[-2.491,51.615],[-2.496,51.613],[-2.493,51.611],[-2.491,51.611],[-2.488,51.61],[-2.49,51.609],[-2.493,51.61],[-2.496,51.609],[-2.495,51.606],[-2.497,51.603],[-2.495,51.602],[-2.489,51.601],[-2.489,51.597],[-2.485,51.597],[-2.489,51.594],[-2.491,51.596],[-2.492,51.596],[-2.498,51.598],[-2.498,51.596],[-2.501,51.593],[-2.494,51.592],[-2.492,51.592],[-2.496,51.588],[-2.494,51.587],[-2.493,51.583],[-2.492,51.582],[-2.493,51.58],[-2.49,51.58],[-2.484,51.581],[-2.481,51.577],[-2.473,51.581],[-2.463,51.58],[-2.456,51.581],[-2.452,51.578],[-2.449,51.578],[-2.446,51.58],[-2.441,51.581],[-2.44,51.579],[-2.435,51.579],[-2.431,51.577],[-2.431,51.576],[-2.426,51.576],[-2.419,51.575],[-2.414,51.577],[-2.409,51.573],[-2.403,51.575],[-2.399,51.575],[-2.399,51.577],[-2.396,51.578],[-2.391,51.577],[-2.386,51.58],[-2.378,51.576],[-2.377,51.577],[-2.37,51.582],[-2.365,51.579],[-2.361,51.578],[-2.356,51.579],[-2.355,51.58],[-2.349,51.579],[-2.346,51.582],[-2.342,51.582],[-2.338,51.58],[-2.339,51.577],[-2.329,51.577],[-2.328,51.576],[-2.332,51.568],[-2.33,51.566],[-2.33,51.564],[-2.319,51.561],[-2.317,51.559],[-2.321,51.556],[-2.315,51.552],[-2.312,51.543],[-2.313,51.54],[-2.316,51.54],[-2.324,51.537],[-2.334,51.536],[-2.332,51.531],[-2.322,51.53],[-2.322,51.528],[-2.326,51.528],[-2.333,51.527],[-2.343,51.529],[-2.342,51.527],[-2.337,51.524],[-2.334,51.521],[-2.334,51.518],[-2.334,51.514],[-2.339,51.512],[-2.343,51.511],[-2.342,51.509],[-2.346,51.506],[-2.349,51.505],[-2.35,51.503],[-2.35,51.5],[-2.354,51.496],[-2.357,51.491]],[[-2.602,51.343],[-2.607,51.345],[-2.608,51.347],[-2.611,51.349],[-2.614,51.35],[-2.618,51.35],[-2.619,51.35],[-2.622,51.345],[-2.624,51.344],[-2.629,51.342],[-2.629,51.341],[-2.632,51.34],[-2.634,51.341],[-2.635,51.339],[-2.634,51.338],[-2.63,51.338],[-2.629,51.336],[-2.635,51.333],[-2.638,51.333],[-2.639,51.33],[-2.634,51.331],[-2.631,51.331],[-2.628,51.328],[-2.627,51.325],[-2.625,51.323],[-2.618,51.321],[-2.617,51.319],[-2.615,51.318],[-2.613,51.319],[-2.616,51.322],[-2.614,51.328],[-2.612,51.33],[-2.608,51.331],[-2.606,51.334],[-2.603,51.337],[-2.606,51.34],[-2.604,51.342],[-2.602,51.343]]]]},"properties":{"OBJECTID":11,"NAME":"BS","KEY":"BS","Shape_Leng":3.36212,"Shape_Area":0.152153}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.828,54.503],[-7.83,54.502],[-7.84,54.5],[-7.848,54.5],[-7.848,54.503],[-7.842,54.504],[-7.837,54.503],[-7.828,54.503]]],[[[-7.821,54.512],[-7.821,54.511],[-7.829,54.51],[-7.829,54.507],[-7.833,54.505],[-7.839,54.504],[-7.84,54.506],[-7.835,54.509],[-7.825,54.512],[-7.821,54.512]]],[[[-7.81,54.51],[-7.818,54.507],[-7.82,54.508],[-7.818,54.51],[-7.816,54.511],[-7.811,54.511],[-7.81,54.51]]],[[[-7.787,54.526],[-7.79,54.524],[-7.79,54.523],[-7.792,54.521],[-7.797,54.52],[-7.796,54.519],[-7.798,54.518],[-7.803,54.516],[-7.801,54.515],[-7.807,54.513],[-7.809,54.515],[-7.812,54.516],[-7.813,54.517],[-7.811,54.518],[-7.819,54.518],[-7.824,54.516],[-7.825,54.514],[-7.833,54.511],[-7.834,54.512],[-7.836,54.513],[-7.841,54.512],[-7.84,54.511],[-7.845,54.508],[-7.859,54.506],[-7.867,54.506],[-7.87,54.506],[-7.876,54.506],[-7.881,54.507],[-7.886,54.508],[-7.892,54.508],[-7.896,54.508],[-7.895,54.509],[-7.899,54.51],[-7.902,54.511],[-7.9,54.512],[-7.894,54.512],[-7.894,54.51],[-7.891,54.511],[-7.879,54.512],[-7.878,54.512],[-7.87,54.511],[-7.866,54.513],[-7.861,54.514],[-7.858,54.515],[-7.844,54.517],[-7.838,54.52],[-7.835,54.524],[-7.831,54.525],[-7.83,54.523],[-7.826,54.523],[-7.824,54.525],[-7.818,54.525],[-7.814,54.525],[-7.81,54.526],[-7.805,54.526],[-7.797,54.529],[-7.793,54.529],[-7.787,54.526]]],[[[-7.774,54.525],[-7.776,54.524],[-7.78,54.521],[-7.783,54.521],[-7.785,54.521],[-7.787,54.522],[-7.786,54.524],[-7.78,54.526],[-7.777,54.526],[-7.774,54.525]]],[[[-7.755,54.493],[-7.757,54.492],[-7.766,54.491],[-7.771,54.493],[-7.775,54.493],[-7.776,54.494],[-7.774,54.496],[-7.766,54.496],[-7.766,54.495],[-7.771,54.495],[-7.769,54.493],[-7.766,54.493],[-7.765,54.494],[-7.762,54.493],[-7.757,54.493],[-7.755,54.493]]],[[[-7.752,54.477],[-7.757,54.474],[-7.762,54.474],[-7.765,54.475],[-7.765,54.476],[-7.762,54.476],[-7.76,54.477],[-7.762,54.479],[-7.765,54.479],[-7.764,54.481],[-7.76,54.481],[-7.758,54.479],[-7.755,54.48],[-7.752,54.477]]],[[[-7.747,54.485],[-7.747,54.483],[-7.753,54.483],[-7.759,54.485],[-7.756,54.488],[-7.758,54.491],[-7.753,54.491],[-7.749,54.491],[-7.747,54.488],[-7.748,54.486],[-7.747,54.485]]],[[[-7.743,54.435],[-7.747,54.435],[-7.754,54.436],[-7.755,54.439],[-7.751,54.44],[-7.748,54.439],[-7.744,54.438],[-7.745,54.436],[-7.743,54.435]]],[[[-7.729,54.488],[-7.731,54.487],[-7.734,54.487],[-7.74,54.488],[-7.744,54.49],[-7.743,54.491],[-7.738,54.491],[-7.735,54.49],[-7.73,54.49],[-7.729,54.488]]],[[[-7.717,54.43],[-7.72,54.429],[-7.726,54.43],[-7.728,54.431],[-7.726,54.432],[-7.721,54.433],[-7.718,54.432],[-7.717,54.43]]],[[[-7.715,54.42],[-7.716,54.42],[-7.722,54.418],[-7.725,54.419],[-7.724,54.421],[-7.722,54.422],[-7.718,54.422],[-7.715,54.42]]],[[[-7.714,54.414],[-7.716,54.413],[-7.718,54.413],[-7.721,54.414],[-7.724,54.417],[-7.722,54.418],[-7.714,54.414]]],[[[-7.693,54.431],[-7.694,54.43],[-7.698,54.428],[-7.701,54.429],[-7.7,54.434],[-7.693,54.432],[-7.693,54.431]]],[[[-7.654,54.37],[-7.655,54.369],[-7.657,54.368],[-7.663,54.369],[-7.663,54.372],[-7.661,54.373],[-7.661,54.375],[-7.66,54.377],[-7.661,54.378],[-7.659,54.38],[-7.656,54.38],[-7.654,54.379],[-7.654,54.376],[-7.656,54.374],[-7.656,54.372],[-7.654,54.37]]],[[[-7.586,54.303],[-7.589,54.3],[-7.59,54.296],[-7.591,54.295],[-7.593,54.293],[-7.595,54.292],[-7.599,54.293],[-7.6,54.292],[-7.603,54.292],[-7.606,54.295],[-7.609,54.297],[-7.611,54.3],[-7.613,54.303],[-7.619,54.304],[-7.611,54.306],[-7.609,54.306],[-7.604,54.306],[-7.602,54.307],[-7.598,54.305],[-7.593,54.304],[-7.591,54.305],[-7.587,54.305],[-7.586,54.303]]],[[[-7.584,54.288],[-7.588,54.287],[-7.594,54.288],[-7.597,54.289],[-7.601,54.29],[-7.599,54.292],[-7.594,54.292],[-7.591,54.293],[-7.59,54.295],[-7.587,54.293],[-7.588,54.291],[-7.584,54.288]]],[[[-7.567,54.255],[-7.57,54.253],[-7.571,54.254],[-7.575,54.254],[-7.579,54.255],[-7.58,54.256],[-7.578,54.258],[-7.572,54.26],[-7.57,54.26],[-7.568,54.258],[-7.569,54.256],[-7.567,54.255]]],[[[-7.548,54.284],[-7.55,54.281],[-7.552,54.279],[-7.553,54.277],[-7.555,54.275],[-7.56,54.275],[-7.565,54.275],[-7.568,54.273],[-7.569,54.271],[-7.573,54.268],[-7.574,54.267],[-7.572,54.261],[-7.574,54.26],[-7.578,54.26],[-7.582,54.259],[-7.582,54.257],[-7.584,54.255],[-7.586,54.255],[-7.589,54.257],[-7.591,54.257],[-7.595,54.254],[-7.591,54.254],[-7.587,54.254],[-7.589,54.251],[-7.593,54.251],[-7.595,54.252],[-7.6,54.25],[-7.602,54.253],[-7.605,54.253],[-7.606,54.255],[-7.609,54.254],[-7.611,54.254],[-7.612,54.255],[-7.61,54.259],[-7.608,54.26],[-7.608,54.263],[-7.61,54.263],[-7.613,54.262],[-7.616,54.262],[-7.617,54.263],[-7.616,54.265],[-7.609,54.272],[-7.602,54.275],[-7.597,54.276],[-7.596,54.277],[-7.598,54.282],[-7.594,54.283],[-7.593,54.287],[-7.589,54.286],[-7.583,54.288],[-7.579,54.287],[-7.576,54.29],[-7.568,54.29],[-7.564,54.287],[-7.56,54.287],[-7.554,54.288],[-7.55,54.287],[-7.548,54.284]]],[[[-7.546,54.272],[-7.547,54.267],[-7.548,54.266],[-7.552,54.265],[-7.557,54.265],[-7.558,54.266],[-7.56,54.26],[-7.562,54.259],[-7.564,54.26],[-7.565,54.259],[-7.569,54.26],[-7.57,54.261],[-7.571,54.268],[-7.568,54.268],[-7.568,54.272],[-7.563,54.274],[-7.563,54.272],[-7.562,54.268],[-7.56,54.269],[-7.56,54.271],[-7.562,54.273],[-7.561,54.274],[-7.553,54.275],[-7.551,54.274],[-7.546,54.273],[-7.546,54.272]]],[[[-7.537,54.234],[-7.537,54.233],[-7.541,54.234],[-7.543,54.232],[-7.545,54.232],[-7.547,54.234],[-7.549,54.234],[-7.553,54.236],[-7.552,54.237],[-7.545,54.239],[-7.543,54.237],[-7.539,54.236],[-7.537,54.234]]],[[[-7.531,54.24],[-7.531,54.238],[-7.533,54.238],[-7.535,54.239],[-7.54,54.24],[-7.543,54.242],[-7.545,54.242],[-7.547,54.243],[-7.546,54.246],[-7.54,54.247],[-7.538,54.246],[-7.534,54.244],[-7.534,54.243],[-7.531,54.24]]],[[[-7.521,54.225],[-7.521,54.223],[-7.524,54.222],[-7.532,54.23],[-7.528,54.229],[-7.526,54.228],[-7.521,54.225]]],[[[-7.515,54.218],[-7.516,54.216],[-7.518,54.216],[-7.524,54.213],[-7.525,54.215],[-7.524,54.217],[-7.521,54.218],[-7.521,54.221],[-7.519,54.221],[-7.515,54.22],[-7.515,54.218]]],[[[-7.504,54.22],[-7.506,54.217],[-7.509,54.218],[-7.51,54.217],[-7.514,54.217],[-7.514,54.219],[-7.51,54.22],[-7.508,54.222],[-7.505,54.221],[-7.504,54.22]]],[[[-7.496,54.199],[-7.497,54.195],[-7.5,54.195],[-7.506,54.192],[-7.509,54.193],[-7.511,54.195],[-7.509,54.197],[-7.506,54.197],[-7.502,54.199],[-7.497,54.2],[-7.496,54.199]]],[[[-7.495,54.223],[-7.5,54.223],[-7.504,54.224],[-7.509,54.224],[-7.511,54.226],[-7.51,54.228],[-7.504,54.226],[-7.501,54.226],[-7.495,54.223]]],[[[-7.495,54.215],[-7.496,54.214],[-7.496,54.212],[-7.499,54.21],[-7.5,54.208],[-7.499,54.206],[-7.5,54.205],[-7.502,54.205],[-7.503,54.208],[-7.506,54.21],[-7.508,54.211],[-7.511,54.21],[-7.51,54.213],[-7.506,54.213],[-7.505,54.215],[-7.5,54.214],[-7.497,54.216],[-7.495,54.215]]],[[[-7.464,54.183],[-7.466,54.182],[-7.47,54.182],[-7.473,54.182],[-7.476,54.182],[-7.479,54.188],[-7.476,54.187],[-7.47,54.188],[-7.467,54.187],[-7.464,54.183]]],[[[-7.456,54.179],[-7.459,54.176],[-7.461,54.177],[-7.463,54.176],[-7.464,54.173],[-7.466,54.172],[-7.469,54.173],[-7.471,54.174],[-7.472,54.176],[-7.468,54.179],[-7.465,54.179],[-7.462,54.181],[-7.458,54.181],[-7.456,54.179]]],[[[-7.45,54.165],[-7.452,54.163],[-7.456,54.163],[-7.463,54.167],[-7.465,54.171],[-7.463,54.172],[-7.459,54.169],[-7.455,54.167],[-7.452,54.167],[-7.45,54.165]]],[[[-7.445,54.155],[-7.446,54.153],[-7.449,54.151],[-7.45,54.149],[-7.452,54.147],[-7.454,54.145],[-7.464,54.142],[-7.466,54.142],[-7.469,54.14],[-7.467,54.137],[-7.467,54.135],[-7.472,54.133],[-7.473,54.13],[-7.472,54.127],[-7.472,54.126],[-7.476,54.125],[-7.476,54.124],[-7.48,54.122],[-7.485,54.124],[-7.488,54.124],[-7.492,54.123],[-7.493,54.125],[-7.496,54.126],[-7.503,54.127],[-7.508,54.13],[-7.517,54.131],[-7.52,54.131],[-7.522,54.133],[-7.526,54.134],[-7.528,54.136],[-7.531,54.135],[-7.531,54.133],[-7.535,54.133],[-7.541,54.13],[-7.545,54.129],[-7.547,54.129],[-7.546,54.125],[-7.547,54.123],[-7.551,54.124],[-7.559,54.128],[-7.56,54.127],[-7.566,54.127],[-7.567,54.128],[-7.567,54.131],[-7.571,54.133],[-7.575,54.135],[-7.573,54.14],[-7.574,54.141],[-7.578,54.14],[-7.582,54.141],[-7.588,54.14],[-7.59,54.139],[-7.593,54.14],[-7.607,54.142],[-7.609,54.142],[-7.609,54.145],[-7.612,54.147],[-7.622,54.151],[-7.626,54.152],[-7.624,54.155],[-7.624,54.159],[-7.626,54.161],[-7.625,54.164],[-7.625,54.166],[-7.628,54.168],[-7.63,54.17],[-7.638,54.172],[-7.645,54.175],[-7.646,54.178],[-7.652,54.182],[-7.656,54.185],[-7.662,54.187],[-7.666,54.187],[-7.67,54.182],[-7.674,54.181],[-7.676,54.181],[-7.678,54.183],[-7.678,54.185],[-7.679,54.188],[-7.683,54.191],[-7.684,54.193],[-7.684,54.198],[-7.688,54.199],[-7.686,54.201],[-7.688,54.203],[-7.688,54.204],[-7.685,54.207],[-7.687,54.208],[-7.69,54.206],[-7.692,54.204],[-7.693,54.204],[-7.697,54.206],[-7.703,54.207],[-7.71,54.203],[-7.714,54.204],[-7.724,54.204],[-7.73,54.205],[-7.741,54.204],[-7.745,54.205],[-7.748,54.209],[-7.755,54.21],[-7.762,54.208],[-7.766,54.207],[-7.768,54.209],[-7.77,54.207],[-7.773,54.207],[-7.776,54.208],[-7.781,54.208],[-7.782,54.207],[-7.802,54.207],[-7.807,54.204],[-7.808,54.201],[-7.816,54.202],[-7.83,54.207],[-7.845,54.212],[-7.858,54.216],[-7.862,54.218],[-7.857,54.22],[-7.856,54.222],[-7.86,54.228],[-7.861,54.232],[-7.859,54.239],[-7.86,54.245],[-7.862,54.25],[-7.862,54.255],[-7.861,54.26],[-7.863,54.26],[-7.869,54.263],[-7.873,54.266],[-7.872,54.27],[-7.873,54.274],[-7.871,54.277],[-7.874,54.279],[-7.872,54.282],[-7.874,54.283],[-7.871,54.284],[-7.87,54.288],[-7.864,54.289],[-7.863,54.291],[-7.865,54.292],[-7.871,54.291],[-7.873,54.294],[-7.878,54.293],[-7.88,54.292],[-7.884,54.295],[-7.884,54.297],[-7.89,54.301],[-7.895,54.3],[-7.901,54.301],[-7.904,54.3],[-7.905,54.297],[-7.907,54.297],[-7.913,54.296],[-7.917,54.298],[-7.919,54.302],[-7.919,54.303],[-7.924,54.304],[-7.931,54.303],[-7.942,54.303],[-7.947,54.303],[-7.951,54.305],[-7.963,54.311],[-7.963,54.318],[-7.964,54.32],[-7.966,54.324],[-7.97,54.326],[-7.971,54.329],[-7.978,54.332],[-7.981,54.335],[-7.982,54.339],[-7.983,54.341],[-7.986,54.344],[-7.989,54.345],[-7.995,54.346],[-7.998,54.346],[-8,54.349],[-7.996,54.355],[-7.999,54.358],[-8.007,54.362],[-8.01,54.362],[-8.011,54.361],[-8.015,54.359],[-8.02,54.358],[-8.023,54.36],[-8.028,54.358],[-8.03,54.356],[-8.037,54.359],[-8.039,54.363],[-8.043,54.363],[-8.046,54.362],[-8.051,54.366],[-8.057,54.366],[-8.058,54.368],[-8.056,54.368],[-8.058,54.371],[-8.063,54.373],[-8.065,54.376],[-8.068,54.382],[-8.072,54.384],[-8.073,54.385],[-8.076,54.39],[-8.081,54.394],[-8.083,54.394],[-8.083,54.397],[-8.089,54.4],[-8.091,54.402],[-8.093,54.403],[-8.097,54.406],[-8.096,54.407],[-8.095,54.409],[-8.096,54.41],[-8.094,54.415],[-8.094,54.417],[-8.098,54.418],[-8.104,54.421],[-8.105,54.423],[-8.12,54.431],[-8.126,54.433],[-8.127,54.431],[-8.13,54.431],[-8.134,54.432],[-8.14,54.433],[-8.141,54.434],[-8.129,54.434],[-8.127,54.435],[-8.13,54.436],[-8.137,54.436],[-8.145,54.438],[-8.149,54.437],[-8.155,54.438],[-8.158,54.438],[-8.161,54.441],[-8.159,54.443],[-8.155,54.443],[-8.149,54.443],[-8.143,54.448],[-8.142,54.45],[-8.16,54.456],[-8.169,54.459],[-8.169,54.463],[-8.173,54.463],[-8.178,54.464],[-8.181,54.463],[-8.186,54.464],[-8.19,54.463],[-8.194,54.464],[-8.182,54.466],[-8.147,54.469],[-8.117,54.468],[-8.111,54.469],[-8.109,54.47],[-8.112,54.473],[-8.11,54.476],[-8.103,54.478],[-8.101,54.477],[-8.097,54.476],[-8.093,54.479],[-8.092,54.476],[-8.089,54.476],[-8.077,54.475],[-8.075,54.474],[-8.071,54.474],[-8.067,54.476],[-8.064,54.476],[-8.056,54.473],[-8.046,54.474],[-8.041,54.474],[-8.036,54.473],[-8.03,54.473],[-8.026,54.474],[-8.018,54.477],[-8.015,54.477],[-8.011,54.474],[-8.013,54.473],[-8.011,54.471],[-8.012,54.469],[-8.01,54.468],[-8.006,54.468],[-8.003,54.469],[-8,54.469],[-7.993,54.471],[-7.987,54.472],[-7.98,54.472],[-7.978,54.473],[-7.972,54.472],[-7.968,54.472],[-7.967,54.471],[-7.964,54.471],[-7.957,54.472],[-7.955,54.473],[-7.949,54.474],[-7.944,54.475],[-7.938,54.475],[-7.935,54.474],[-7.931,54.474],[-7.926,54.473],[-7.92,54.473],[-7.916,54.475],[-7.916,54.474],[-7.912,54.473],[-7.901,54.474],[-7.895,54.474],[-7.892,54.474],[-7.883,54.474],[-7.873,54.474],[-7.867,54.472],[-7.864,54.471],[-7.85,54.474],[-7.845,54.474],[-7.841,54.473],[-7.829,54.468],[-7.832,54.466],[-7.829,54.462],[-7.826,54.461],[-7.813,54.462],[-7.81,54.46],[-7.807,54.46],[-7.802,54.461],[-7.801,54.457],[-7.805,54.457],[-7.805,54.456],[-7.8,54.454],[-7.795,54.455],[-7.79,54.454],[-7.789,54.453],[-7.791,54.452],[-7.795,54.452],[-7.805,54.452],[-7.804,54.451],[-7.799,54.45],[-7.795,54.449],[-7.793,54.448],[-7.793,54.446],[-7.79,54.444],[-7.787,54.444],[-7.785,54.445],[-7.777,54.444],[-7.771,54.442],[-7.768,54.44],[-7.763,54.44],[-7.758,54.436],[-7.758,54.434],[-7.75,54.433],[-7.747,54.434],[-7.744,54.434],[-7.736,54.432],[-7.736,54.43],[-7.743,54.429],[-7.745,54.431],[-7.749,54.432],[-7.755,54.432],[-7.754,54.431],[-7.749,54.43],[-7.747,54.427],[-7.748,54.425],[-7.742,54.422],[-7.738,54.423],[-7.739,54.424],[-7.737,54.426],[-7.733,54.424],[-7.734,54.421],[-7.736,54.421],[-7.728,54.416],[-7.724,54.412],[-7.715,54.411],[-7.713,54.41],[-7.712,54.407],[-7.71,54.407],[-7.709,54.409],[-7.71,54.413],[-7.711,54.414],[-7.711,54.416],[-7.71,54.417],[-7.707,54.416],[-7.703,54.414],[-7.702,54.412],[-7.699,54.411],[-7.693,54.409],[-7.694,54.407],[-7.691,54.407],[-7.691,54.404],[-7.688,54.404],[-7.685,54.402],[-7.689,54.402],[-7.688,54.399],[-7.686,54.397],[-7.687,54.395],[-7.685,54.392],[-7.678,54.389],[-7.675,54.389],[-7.676,54.386],[-7.675,54.382],[-7.676,54.379],[-7.674,54.378],[-7.673,54.373],[-7.667,54.371],[-7.666,54.37],[-7.668,54.368],[-7.665,54.365],[-7.664,54.363],[-7.665,54.362],[-7.665,54.358],[-7.665,54.356],[-7.662,54.356],[-7.66,54.357],[-7.653,54.354],[-7.65,54.35],[-7.645,54.348],[-7.648,54.345],[-7.646,54.343],[-7.644,54.339],[-7.64,54.335],[-7.641,54.332],[-7.638,54.331],[-7.634,54.331],[-7.631,54.332],[-7.629,54.334],[-7.625,54.335],[-7.624,54.331],[-7.622,54.33],[-7.629,54.324],[-7.633,54.322],[-7.637,54.318],[-7.637,54.316],[-7.634,54.313],[-7.627,54.311],[-7.626,54.31],[-7.629,54.309],[-7.632,54.31],[-7.639,54.308],[-7.641,54.306],[-7.641,54.305],[-7.64,54.303],[-7.638,54.301],[-7.632,54.3],[-7.619,54.303],[-7.616,54.303],[-7.614,54.302],[-7.61,54.297],[-7.606,54.294],[-7.605,54.291],[-7.602,54.29],[-7.598,54.289],[-7.594,54.287],[-7.595,54.283],[-7.599,54.282],[-7.597,54.277],[-7.603,54.275],[-7.611,54.272],[-7.611,54.271],[-7.614,54.269],[-7.618,54.264],[-7.617,54.262],[-7.615,54.261],[-7.612,54.262],[-7.612,54.259],[-7.614,54.255],[-7.614,54.253],[-7.617,54.251],[-7.62,54.251],[-7.619,54.25],[-7.615,54.25],[-7.609,54.253],[-7.607,54.252],[-7.605,54.249],[-7.605,54.247],[-7.6,54.247],[-7.597,54.247],[-7.595,54.245],[-7.592,54.244],[-7.587,54.245],[-7.587,54.244],[-7.588,54.242],[-7.587,54.24],[-7.592,54.238],[-7.591,54.235],[-7.592,54.234],[-7.582,54.234],[-7.578,54.235],[-7.577,54.231],[-7.573,54.231],[-7.564,54.227],[-7.56,54.226],[-7.557,54.23],[-7.557,54.232],[-7.552,54.231],[-7.548,54.23],[-7.541,54.225],[-7.538,54.229],[-7.532,54.227],[-7.529,54.226],[-7.529,54.223],[-7.526,54.222],[-7.524,54.221],[-7.524,54.219],[-7.527,54.219],[-7.531,54.218],[-7.534,54.217],[-7.535,54.214],[-7.533,54.214],[-7.529,54.215],[-7.526,54.214],[-7.526,54.211],[-7.524,54.21],[-7.52,54.211],[-7.518,54.21],[-7.516,54.207],[-7.522,54.206],[-7.521,54.205],[-7.519,54.204],[-7.511,54.205],[-7.509,54.206],[-7.505,54.206],[-7.504,54.205],[-7.506,54.202],[-7.509,54.202],[-7.514,54.199],[-7.514,54.196],[-7.51,54.191],[-7.505,54.191],[-7.502,54.192],[-7.499,54.193],[-7.496,54.192],[-7.492,54.192],[-7.49,54.192],[-7.489,54.19],[-7.486,54.189],[-7.485,54.186],[-7.482,54.184],[-7.48,54.18],[-7.478,54.18],[-7.477,54.178],[-7.474,54.178],[-7.475,54.175],[-7.479,54.174],[-7.483,54.174],[-7.484,54.173],[-7.482,54.171],[-7.481,54.17],[-7.481,54.167],[-7.477,54.166],[-7.476,54.164],[-7.479,54.162],[-7.481,54.161],[-7.485,54.161],[-7.487,54.163],[-7.489,54.164],[-7.492,54.162],[-7.493,54.16],[-7.489,54.161],[-7.485,54.158],[-7.481,54.159],[-7.477,54.159],[-7.475,54.16],[-7.471,54.161],[-7.47,54.163],[-7.472,54.163],[-7.478,54.168],[-7.478,54.17],[-7.474,54.171],[-7.469,54.169],[-7.467,54.167],[-7.467,54.166],[-7.461,54.164],[-7.459,54.163],[-7.457,54.161],[-7.46,54.16],[-7.462,54.161],[-7.465,54.159],[-7.467,54.157],[-7.47,54.156],[-7.474,54.156],[-7.479,54.154],[-7.481,54.155],[-7.484,54.154],[-7.488,54.155],[-7.491,54.153],[-7.491,54.15],[-7.494,54.149],[-7.493,54.147],[-7.488,54.149],[-7.483,54.15],[-7.48,54.149],[-7.478,54.151],[-7.475,54.151],[-7.473,54.15],[-7.47,54.151],[-7.467,54.151],[-7.467,54.153],[-7.465,54.155],[-7.458,54.156],[-7.458,54.157],[-7.455,54.16],[-7.451,54.16],[-7.449,54.158],[-7.445,54.155]]],[[[-7.41,54.157],[-7.414,54.156],[-7.417,54.155],[-7.422,54.156],[-7.425,54.156],[-7.428,54.157],[-7.431,54.157],[-7.434,54.154],[-7.44,54.156],[-7.443,54.156],[-7.444,54.157],[-7.443,54.16],[-7.439,54.161],[-7.434,54.161],[-7.432,54.162],[-7.429,54.161],[-7.418,54.161],[-7.415,54.161],[-7.413,54.16],[-7.41,54.157]]],[[[-7.388,54.16],[-7.391,54.157],[-7.394,54.158],[-7.398,54.156],[-7.403,54.155],[-7.403,54.154],[-7.402,54.152],[-7.397,54.151],[-7.394,54.146],[-7.398,54.143],[-7.4,54.142],[-7.403,54.143],[-7.407,54.141],[-7.414,54.141],[-7.417,54.14],[-7.419,54.138],[-7.421,54.138],[-7.424,54.14],[-7.424,54.142],[-7.421,54.144],[-7.415,54.146],[-7.411,54.148],[-7.408,54.155],[-7.409,54.157],[-7.415,54.161],[-7.42,54.162],[-7.423,54.161],[-7.428,54.161],[-7.431,54.163],[-7.431,54.166],[-7.429,54.167],[-7.427,54.167],[-7.423,54.166],[-7.419,54.166],[-7.417,54.169],[-7.41,54.173],[-7.408,54.173],[-7.401,54.17],[-7.399,54.168],[-7.399,54.164],[-7.395,54.164],[-7.394,54.163],[-7.389,54.162],[-7.388,54.16]]],[[[-7.36,54.136],[-7.364,54.132],[-7.366,54.131],[-7.368,54.131],[-7.371,54.13],[-7.376,54.128],[-7.379,54.125],[-7.383,54.124],[-7.388,54.123],[-7.391,54.12],[-7.393,54.12],[-7.394,54.123],[-7.394,54.126],[-7.391,54.129],[-7.384,54.133],[-7.383,54.134],[-7.378,54.135],[-7.376,54.137],[-7.371,54.138],[-7.373,54.141],[-7.37,54.142],[-7.369,54.143],[-7.367,54.143],[-7.366,54.141],[-7.362,54.14],[-7.36,54.136]]],[[[-7.249,55.056],[-7.253,55.055],[-7.251,55.049],[-7.252,55.047],[-7.255,55.047],[-7.259,55.048],[-7.263,55.048],[-7.268,55.044],[-7.279,55.036],[-7.285,55.029],[-7.291,55.027],[-7.297,55.019],[-7.297,55.016],[-7.302,55.014],[-7.311,55.012],[-7.318,55.008],[-7.321,55.005],[-7.321,55.001],[-7.319,54.999],[-7.316,54.996],[-7.316,54.994],[-7.317,54.993],[-7.321,54.99],[-7.326,54.989],[-7.335,54.987],[-7.345,54.986],[-7.347,54.984],[-7.364,54.966],[-7.379,54.959],[-7.397,54.946],[-7.402,54.949],[-7.403,54.952],[-7.407,54.954],[-7.403,54.958],[-7.403,54.96],[-7.407,54.963],[-7.401,54.967],[-7.402,54.968],[-7.401,54.969],[-7.4,54.971],[-7.402,54.973],[-7.403,54.975],[-7.402,54.976],[-7.406,54.978],[-7.404,54.98],[-7.407,54.983],[-7.402,54.986],[-7.401,54.988],[-7.4,54.991],[-7.396,54.993],[-7.393,54.994],[-7.393,54.995],[-7.398,54.998],[-7.406,55.002],[-7.405,55.004],[-7.402,55.006],[-7.402,55.007],[-7.399,55.008],[-7.397,55.01],[-7.396,55.012],[-7.395,55.018],[-7.393,55.019],[-7.391,55.02],[-7.376,55.028],[-7.371,55.033],[-7.369,55.034],[-7.368,55.037],[-7.365,55.038],[-7.363,55.038],[-7.361,55.04],[-7.357,55.044],[-7.355,55.046],[-7.348,55.046],[-7.346,55.048],[-7.346,55.05],[-7.337,55.05],[-7.333,55.049],[-7.325,55.045],[-7.322,55.044],[-7.317,55.045],[-7.315,55.046],[-7.313,55.049],[-7.308,55.051],[-7.305,55.053],[-7.3,55.055],[-7.295,55.052],[-7.29,55.047],[-7.289,55.047],[-7.284,55.049],[-7.279,55.051],[-7.277,55.054],[-7.27,55.064],[-7.264,55.066],[-7.257,55.067],[-7.255,55.067],[-7.249,55.056]]],[[[-6.171,55.298],[-6.179,55.288],[-6.177,55.282],[-6.183,55.279],[-6.185,55.274],[-6.182,55.269],[-6.184,55.266],[-6.19,55.259],[-6.198,55.262],[-6.202,55.269],[-6.202,55.275],[-6.199,55.282],[-6.191,55.285],[-6.191,55.289],[-6.193,55.29],[-6.194,55.292],[-6.2,55.293],[-6.226,55.295],[-6.262,55.289],[-6.268,55.291],[-6.275,55.29],[-6.286,55.292],[-6.287,55.294],[-6.28,55.297],[-6.28,55.3],[-6.274,55.304],[-6.261,55.306],[-6.258,55.31],[-6.251,55.308],[-6.244,55.312],[-6.24,55.311],[-6.229,55.307],[-6.209,55.305],[-6.2,55.306],[-6.172,55.301],[-6.171,55.298]]],[[[-5.655,54.378],[-5.657,54.373],[-5.665,54.371],[-5.671,54.372],[-5.666,54.378],[-5.662,54.375],[-5.655,54.378]]],[[[-5.63,54.425],[-5.634,54.421],[-5.632,54.415],[-5.64,54.418],[-5.638,54.419],[-5.639,54.423],[-5.632,54.427],[-5.63,54.425]]],[[[-5.619,54.507],[-5.621,54.505],[-5.623,54.503],[-5.627,54.5],[-5.632,54.497],[-5.636,54.497],[-5.64,54.495],[-5.645,54.497],[-5.646,54.496],[-5.65,54.498],[-5.651,54.5],[-5.649,54.501],[-5.65,54.504],[-5.647,54.505],[-5.647,54.507],[-5.644,54.509],[-5.646,54.511],[-5.645,54.512],[-5.646,54.514],[-5.639,54.515],[-5.641,54.517],[-5.635,54.517],[-5.631,54.516],[-5.635,54.514],[-5.636,54.515],[-5.638,54.514],[-5.637,54.512],[-5.64,54.511],[-5.643,54.511],[-5.642,54.507],[-5.644,54.505],[-5.645,54.501],[-5.648,54.501],[-5.646,54.499],[-5.642,54.5],[-5.639,54.5],[-5.632,54.502],[-5.629,54.503],[-5.629,54.505],[-5.626,54.505],[-5.624,54.506],[-5.619,54.507]]],[[[-5.615,54.455],[-5.616,54.45],[-5.621,54.451],[-5.625,54.446],[-5.628,54.446],[-5.63,54.447],[-5.626,54.454],[-5.615,54.455]]],[[[-5.431,54.487],[-5.441,54.477],[-5.44,54.474],[-5.437,54.47],[-5.437,54.465],[-5.438,54.462],[-5.437,54.458],[-5.439,54.456],[-5.448,54.454],[-5.453,54.445],[-5.452,54.44],[-5.459,54.44],[-5.467,54.438],[-5.475,54.434],[-5.477,54.432],[-5.479,54.427],[-5.476,54.424],[-5.467,54.417],[-5.466,54.399],[-5.46,54.396],[-5.462,54.392],[-5.459,54.388],[-5.47,54.384],[-5.477,54.384],[-5.484,54.382],[-5.485,54.381],[-5.488,54.379],[-5.49,54.371],[-5.492,54.367],[-5.491,54.364],[-5.487,54.364],[-5.485,54.363],[-5.481,54.36],[-5.484,54.359],[-5.49,54.359],[-5.493,54.357],[-5.491,54.352],[-5.497,54.353],[-5.499,54.346],[-5.497,54.343],[-5.499,54.341],[-5.497,54.336],[-5.506,54.333],[-5.512,54.336],[-5.515,54.344],[-5.525,54.343],[-5.528,54.344],[-5.531,54.35],[-5.531,54.361],[-5.537,54.367],[-5.542,54.367],[-5.542,54.369],[-5.548,54.379],[-5.554,54.382],[-5.574,54.391],[-5.58,54.395],[-5.581,54.396],[-5.579,54.398],[-5.582,54.402],[-5.579,54.408],[-5.581,54.414],[-5.574,54.421],[-5.579,54.426],[-5.571,54.426],[-5.566,54.429],[-5.566,54.431],[-5.563,54.433],[-5.557,54.432],[-5.554,54.436],[-5.548,54.438],[-5.545,54.432],[-5.547,54.429],[-5.543,54.428],[-5.537,54.435],[-5.539,54.437],[-5.547,54.438],[-5.549,54.441],[-5.545,54.441],[-5.541,54.439],[-5.536,54.441],[-5.538,54.445],[-5.536,54.451],[-5.53,54.456],[-5.533,54.458],[-5.538,54.456],[-5.539,54.459],[-5.536,54.462],[-5.542,54.464],[-5.549,54.461],[-5.559,54.461],[-5.55,54.462],[-5.535,54.471],[-5.536,54.473],[-5.54,54.472],[-5.543,54.474],[-5.539,54.475],[-5.542,54.482],[-5.535,54.485],[-5.538,54.487],[-5.543,54.487],[-5.544,54.49],[-5.539,54.491],[-5.54,54.498],[-5.547,54.499],[-5.549,54.503],[-5.548,54.506],[-5.553,54.509],[-5.551,54.513],[-5.556,54.515],[-5.556,54.517],[-5.553,54.518],[-5.554,54.522],[-5.558,54.523],[-5.561,54.533],[-5.564,54.534],[-5.567,54.534],[-5.57,54.536],[-5.577,54.532],[-5.58,54.532],[-5.582,54.533],[-5.582,54.534],[-5.586,54.537],[-5.586,54.539],[-5.587,54.54],[-5.593,54.541],[-5.593,54.542],[-5.595,54.545],[-5.599,54.549],[-5.603,54.55],[-5.606,54.55],[-5.609,54.552],[-5.609,54.554],[-5.614,54.558],[-5.62,54.559],[-5.626,54.56],[-5.629,54.56],[-5.631,54.561],[-5.638,54.563],[-5.639,54.565],[-5.641,54.565],[-5.647,54.566],[-5.649,54.567],[-5.652,54.568],[-5.656,54.569],[-5.658,54.571],[-5.662,54.573],[-5.667,54.575],[-5.671,54.578],[-5.675,54.58],[-5.678,54.583],[-5.681,54.583],[-5.685,54.582],[-5.688,54.578],[-5.692,54.578],[-5.696,54.573],[-5.698,54.566],[-5.702,54.562],[-5.698,54.557],[-5.701,54.554],[-5.697,54.546],[-5.708,54.544],[-5.722,54.542],[-5.724,54.54],[-5.718,54.539],[-5.711,54.54],[-5.705,54.537],[-5.692,54.534],[-5.691,54.531],[-5.684,54.528],[-5.684,54.524],[-5.682,54.524],[-5.675,54.525],[-5.665,54.521],[-5.665,54.519],[-5.662,54.52],[-5.66,54.518],[-5.656,54.52],[-5.653,54.52],[-5.653,54.517],[-5.651,54.516],[-5.648,54.513],[-5.651,54.51],[-5.653,54.509],[-5.656,54.508],[-5.656,54.51],[-5.652,54.512],[-5.655,54.514],[-5.654,54.515],[-5.656,54.516],[-5.658,54.516],[-5.659,54.513],[-5.663,54.512],[-5.664,54.51],[-5.669,54.511],[-5.676,54.509],[-5.674,54.508],[-5.674,54.507],[-5.677,54.503],[-5.675,54.5],[-5.678,54.499],[-5.677,54.496],[-5.672,54.496],[-5.67,54.494],[-5.67,54.493],[-5.667,54.491],[-5.665,54.492],[-5.664,54.494],[-5.662,54.494],[-5.659,54.496],[-5.658,54.497],[-5.653,54.495],[-5.653,54.494],[-5.649,54.492],[-5.648,54.49],[-5.646,54.489],[-5.644,54.49],[-5.641,54.49],[-5.639,54.488],[-5.643,54.485],[-5.645,54.486],[-5.649,54.488],[-5.652,54.486],[-5.653,54.484],[-5.644,54.481],[-5.646,54.48],[-5.646,54.478],[-5.65,54.477],[-5.65,54.475],[-5.653,54.475],[-5.653,54.473],[-5.649,54.471],[-5.651,54.468],[-5.654,54.469],[-5.655,54.468],[-5.655,54.467],[-5.654,54.465],[-5.652,54.466],[-5.648,54.465],[-5.646,54.467],[-5.642,54.466],[-5.639,54.463],[-5.642,54.462],[-5.642,54.461],[-5.64,54.46],[-5.646,54.458],[-5.644,54.457],[-5.643,54.456],[-5.637,54.455],[-5.637,54.458],[-5.633,54.46],[-5.634,54.462],[-5.631,54.466],[-5.627,54.466],[-5.632,54.451],[-5.64,54.45],[-5.641,54.45],[-5.641,54.446],[-5.643,54.445],[-5.641,54.441],[-5.636,54.442],[-5.632,54.441],[-5.63,54.434],[-5.633,54.432],[-5.637,54.432],[-5.635,54.436],[-5.641,54.432],[-5.638,54.428],[-5.642,54.422],[-5.644,54.422],[-5.645,54.42],[-5.642,54.418],[-5.652,54.416],[-5.651,54.414],[-5.645,54.414],[-5.641,54.402],[-5.642,54.4],[-5.645,54.397],[-5.65,54.398],[-5.65,54.396],[-5.647,54.395],[-5.648,54.393],[-5.653,54.39],[-5.653,54.387],[-5.658,54.385],[-5.659,54.384],[-5.667,54.381],[-5.674,54.38],[-5.678,54.377],[-5.68,54.375],[-5.687,54.374],[-5.69,54.371],[-5.69,54.366],[-5.694,54.363],[-5.694,54.361],[-5.705,54.356],[-5.704,54.352],[-5.697,54.357],[-5.689,54.359],[-5.689,54.363],[-5.682,54.364],[-5.686,54.367],[-5.685,54.37],[-5.676,54.371],[-5.672,54.368],[-5.671,54.365],[-5.665,54.365],[-5.664,54.369],[-5.658,54.37],[-5.654,54.367],[-5.649,54.367],[-5.647,54.37],[-5.649,54.372],[-5.643,54.376],[-5.637,54.374],[-5.617,54.383],[-5.609,54.379],[-5.605,54.38],[-5.601,54.382],[-5.6,54.385],[-5.593,54.387],[-5.584,54.384],[-5.578,54.386],[-5.574,54.385],[-5.572,54.382],[-5.573,54.376],[-5.57,54.371],[-5.568,54.37],[-5.567,54.367],[-5.568,54.365],[-5.566,54.364],[-5.564,54.366],[-5.561,54.368],[-5.561,54.37],[-5.565,54.37],[-5.563,54.376],[-5.557,54.376],[-5.554,54.374],[-5.554,54.372],[-5.55,54.37],[-5.549,54.367],[-5.548,54.365],[-5.548,54.364],[-5.546,54.361],[-5.547,54.359],[-5.548,54.358],[-5.547,54.356],[-5.549,54.355],[-5.548,54.352],[-5.545,54.351],[-5.545,54.347],[-5.543,54.346],[-5.542,54.342],[-5.538,54.34],[-5.537,54.337],[-5.54,54.336],[-5.541,54.334],[-5.538,54.328],[-5.538,54.326],[-5.54,54.324],[-5.537,54.319],[-5.534,54.319],[-5.53,54.317],[-5.527,54.316],[-5.524,54.317],[-5.523,54.315],[-5.523,54.312],[-5.526,54.309],[-5.526,54.308],[-5.531,54.306],[-5.533,54.308],[-5.531,54.309],[-5.534,54.311],[-5.537,54.311],[-5.539,54.308],[-5.542,54.306],[-5.543,54.307],[-5.547,54.307],[-5.55,54.304],[-5.55,54.302],[-5.553,54.3],[-5.557,54.293],[-5.557,54.29],[-5.559,54.289],[-5.559,54.287],[-5.562,54.287],[-5.562,54.284],[-5.566,54.282],[-5.567,54.281],[-5.57,54.28],[-5.572,54.276],[-5.574,54.276],[-5.575,54.274],[-5.577,54.272],[-5.581,54.272],[-5.586,54.27],[-5.588,54.265],[-5.594,54.262],[-5.594,54.26],[-5.598,54.262],[-5.6,54.262],[-5.601,54.263],[-5.607,54.264],[-5.607,54.261],[-5.606,54.26],[-5.602,54.26],[-5.604,54.258],[-5.601,54.256],[-5.604,54.254],[-5.605,54.252],[-5.614,54.245],[-5.619,54.246],[-5.62,54.247],[-5.62,54.249],[-5.619,54.25],[-5.621,54.253],[-5.622,54.255],[-5.626,54.256],[-5.63,54.254],[-5.63,54.257],[-5.634,54.26],[-5.64,54.26],[-5.644,54.257],[-5.644,54.255],[-5.639,54.253],[-5.638,54.251],[-5.639,54.249],[-5.637,54.246],[-5.637,54.243],[-5.636,54.242],[-5.638,54.24],[-5.641,54.24],[-5.647,54.231],[-5.65,54.23],[-5.651,54.228],[-5.655,54.228],[-5.658,54.225],[-5.667,54.226],[-5.665,54.227],[-5.666,54.23],[-5.669,54.231],[-5.67,54.23],[-5.672,54.232],[-5.672,54.234],[-5.669,54.237],[-5.67,54.239],[-5.675,54.242],[-5.676,54.244],[-5.677,54.246],[-5.68,54.248],[-5.685,54.248],[-5.689,54.25],[-5.694,54.25],[-5.7,54.248],[-5.703,54.248],[-5.711,54.249],[-5.713,54.248],[-5.714,54.25],[-5.718,54.251],[-5.723,54.249],[-5.724,54.253],[-5.727,54.254],[-5.729,54.254],[-5.735,54.253],[-5.744,54.252],[-5.749,54.252],[-5.752,54.251],[-5.756,54.247],[-5.759,54.248],[-5.762,54.247],[-5.765,54.247],[-5.774,54.245],[-5.777,54.245],[-5.781,54.247],[-5.793,54.246],[-5.811,54.243],[-5.818,54.243],[-5.83,54.242],[-5.832,54.24],[-5.834,54.239],[-5.844,54.235],[-5.859,54.228],[-5.875,54.22],[-5.881,54.216],[-5.886,54.213],[-5.89,54.21],[-5.892,54.206],[-5.892,54.204],[-5.891,54.202],[-5.879,54.192],[-5.876,54.189],[-5.875,54.185],[-5.874,54.181],[-5.873,54.178],[-5.873,54.172],[-5.872,54.169],[-5.872,54.165],[-5.875,54.16],[-5.875,54.155],[-5.882,54.145],[-5.885,54.141],[-5.887,54.137],[-5.889,54.136],[-5.89,54.13],[-5.889,54.129],[-5.886,54.126],[-5.886,54.121],[-5.887,54.12],[-5.891,54.118],[-5.892,54.117],[-5.892,54.113],[-5.893,54.113],[-5.892,54.111],[-5.894,54.109],[-5.894,54.108],[-5.898,54.104],[-5.904,54.1],[-5.908,54.099],[-5.911,54.097],[-5.916,54.094],[-5.917,54.094],[-5.929,54.088],[-5.938,54.085],[-5.942,54.082],[-5.95,54.079],[-5.957,54.074],[-5.957,54.072],[-5.957,54.069],[-5.962,54.066],[-5.963,54.063],[-5.966,54.062],[-5.968,54.062],[-5.977,54.061],[-5.98,54.06],[-5.987,54.059],[-5.998,54.056],[-6.008,54.05],[-6.011,54.046],[-6.011,54.045],[-6.014,54.042],[-6.016,54.041],[-6.02,54.039],[-6.024,54.039],[-6.028,54.037],[-6.034,54.035],[-6.044,54.031],[-6.051,54.029],[-6.061,54.023],[-6.064,54.022],[-6.063,54.026],[-6.063,54.027],[-6.069,54.029],[-6.074,54.03],[-6.08,54.03],[-6.082,54.03],[-6.085,54.034],[-6.088,54.036],[-6.092,54.037],[-6.099,54.038],[-6.101,54.039],[-6.107,54.04],[-6.107,54.041],[-6.101,54.043],[-6.099,54.044],[-6.097,54.048],[-6.095,54.048],[-6.092,54.049],[-6.09,54.048],[-6.085,54.047],[-6.082,54.047],[-6.081,54.046],[-6.074,54.045],[-6.073,54.047],[-6.077,54.049],[-6.079,54.052],[-6.083,54.055],[-6.085,54.058],[-6.088,54.058],[-6.095,54.063],[-6.097,54.064],[-6.101,54.061],[-6.106,54.063],[-6.109,54.063],[-6.111,54.062],[-6.117,54.063],[-6.118,54.064],[-6.121,54.065],[-6.125,54.066],[-6.129,54.065],[-6.131,54.065],[-6.133,54.065],[-6.134,54.063],[-6.138,54.061],[-6.145,54.063],[-6.148,54.063],[-6.148,54.065],[-6.151,54.065],[-6.157,54.064],[-6.16,54.065],[-6.163,54.065],[-6.164,54.066],[-6.167,54.067],[-6.168,54.068],[-6.172,54.07],[-6.177,54.072],[-6.179,54.073],[-6.182,54.074],[-6.185,54.076],[-6.184,54.078],[-6.188,54.082],[-6.189,54.084],[-6.19,54.087],[-6.19,54.091],[-6.191,54.093],[-6.194,54.094],[-6.198,54.093],[-6.205,54.094],[-6.209,54.097],[-6.213,54.098],[-6.215,54.1],[-6.221,54.099],[-6.224,54.1],[-6.226,54.101],[-6.23,54.1],[-6.235,54.101],[-6.242,54.1],[-6.251,54.097],[-6.255,54.098],[-6.256,54.101],[-6.262,54.104],[-6.266,54.103],[-6.267,54.102],[-6.276,54.108],[-6.282,54.111],[-6.286,54.112],[-6.29,54.113],[-6.293,54.112],[-6.297,54.109],[-6.303,54.108],[-6.309,54.106],[-6.308,54.103],[-6.31,54.101],[-6.309,54.099],[-6.312,54.098],[-6.317,54.094],[-6.318,54.091],[-6.321,54.091],[-6.323,54.093],[-6.327,54.093],[-6.333,54.094],[-6.336,54.095],[-6.334,54.105],[-6.336,54.108],[-6.338,54.109],[-6.34,54.112],[-6.345,54.112],[-6.347,54.114],[-6.35,54.114],[-6.352,54.112],[-6.359,54.112],[-6.364,54.114],[-6.369,54.111],[-6.368,54.109],[-6.367,54.105],[-6.366,54.104],[-6.367,54.102],[-6.365,54.1],[-6.364,54.099],[-6.362,54.096],[-6.364,54.091],[-6.363,54.082],[-6.363,54.073],[-6.364,54.072],[-6.371,54.069],[-6.377,54.069],[-6.384,54.067],[-6.387,54.062],[-6.39,54.06],[-6.392,54.061],[-6.394,54.062],[-6.399,54.062],[-6.402,54.063],[-6.413,54.063],[-6.418,54.062],[-6.42,54.061],[-6.427,54.061],[-6.435,54.059],[-6.447,54.06],[-6.448,54.061],[-6.449,54.066],[-6.451,54.07],[-6.456,54.073],[-6.461,54.071],[-6.463,54.071],[-6.464,54.073],[-6.466,54.074],[-6.469,54.074],[-6.473,54.075],[-6.478,54.078],[-6.481,54.075],[-6.48,54.071],[-6.472,54.067],[-6.477,54.067],[-6.48,54.067],[-6.485,54.067],[-6.489,54.064],[-6.496,54.06],[-6.504,54.06],[-6.507,54.058],[-6.51,54.058],[-6.508,54.054],[-6.515,54.053],[-6.521,54.056],[-6.526,54.058],[-6.533,54.059],[-6.535,54.056],[-6.541,54.054],[-6.546,54.053],[-6.549,54.051],[-6.553,54.052],[-6.556,54.05],[-6.558,54.05],[-6.563,54.051],[-6.57,54.051],[-6.569,54.054],[-6.573,54.054],[-6.576,54.053],[-6.579,54.056],[-6.583,54.056],[-6.585,54.058],[-6.589,54.057],[-6.594,54.054],[-6.596,54.05],[-6.595,54.045],[-6.602,54.044],[-6.605,54.043],[-6.607,54.04],[-6.612,54.042],[-6.616,54.042],[-6.617,54.039],[-6.624,54.039],[-6.625,54.037],[-6.631,54.044],[-6.636,54.044],[-6.636,54.046],[-6.639,54.047],[-6.641,54.048],[-6.64,54.05],[-6.643,54.053],[-6.645,54.053],[-6.646,54.055],[-6.647,54.058],[-6.65,54.06],[-6.65,54.062],[-6.656,54.062],[-6.658,54.062],[-6.661,54.063],[-6.665,54.066],[-6.664,54.07],[-6.667,54.071],[-6.669,54.072],[-6.669,54.074],[-6.665,54.074],[-6.661,54.074],[-6.659,54.075],[-6.659,54.077],[-6.657,54.081],[-6.658,54.084],[-6.656,54.086],[-6.659,54.087],[-6.661,54.09],[-6.661,54.092],[-6.658,54.096],[-6.653,54.094],[-6.648,54.094],[-6.647,54.095],[-6.648,54.097],[-6.646,54.098],[-6.645,54.1],[-6.647,54.102],[-6.649,54.103],[-6.651,54.106],[-6.651,54.108],[-6.655,54.111],[-6.66,54.116],[-6.662,54.121],[-6.661,54.123],[-6.658,54.123],[-6.655,54.123],[-6.651,54.121],[-6.649,54.122],[-6.649,54.124],[-6.651,54.126],[-6.648,54.128],[-6.649,54.13],[-6.644,54.13],[-6.64,54.132],[-6.64,54.138],[-6.641,54.139],[-6.64,54.14],[-6.641,54.142],[-6.637,54.143],[-6.636,54.146],[-6.632,54.147],[-6.631,54.15],[-6.632,54.15],[-6.631,54.153],[-6.63,54.154],[-6.633,54.159],[-6.634,54.161],[-6.635,54.162],[-6.635,54.165],[-6.636,54.169],[-6.636,54.172],[-6.64,54.173],[-6.643,54.176],[-6.643,54.177],[-6.646,54.179],[-6.659,54.186],[-6.66,54.187],[-6.669,54.19],[-6.671,54.19],[-6.671,54.192],[-6.675,54.193],[-6.678,54.195],[-6.684,54.194],[-6.688,54.195],[-6.689,54.198],[-6.694,54.199],[-6.702,54.2],[-6.705,54.2],[-6.709,54.199],[-6.71,54.197],[-6.708,54.196],[-6.71,54.195],[-6.71,54.192],[-6.715,54.188],[-6.718,54.188],[-6.72,54.187],[-6.722,54.184],[-6.721,54.183],[-6.723,54.181],[-6.734,54.186],[-6.74,54.182],[-6.742,54.183],[-6.744,54.186],[-6.744,54.189],[-6.748,54.191],[-6.75,54.194],[-6.753,54.197],[-6.756,54.199],[-6.766,54.199],[-6.768,54.201],[-6.771,54.2],[-6.774,54.199],[-6.775,54.199],[-6.777,54.202],[-6.781,54.203],[-6.786,54.207],[-6.79,54.209],[-6.796,54.21],[-6.797,54.212],[-6.801,54.212],[-6.803,54.215],[-6.803,54.217],[-6.801,54.22],[-6.801,54.221],[-6.809,54.224],[-6.812,54.223],[-6.816,54.224],[-6.815,54.227],[-6.819,54.233],[-6.819,54.239],[-6.822,54.241],[-6.829,54.248],[-6.829,54.254],[-6.828,54.256],[-6.829,54.257],[-6.826,54.26],[-6.827,54.261],[-6.834,54.263],[-6.836,54.265],[-6.838,54.265],[-6.841,54.266],[-6.845,54.266],[-6.849,54.265],[-6.851,54.266],[-6.851,54.269],[-6.857,54.269],[-6.858,54.269],[-6.867,54.269],[-6.865,54.273],[-6.867,54.276],[-6.871,54.276],[-6.873,54.277],[-6.877,54.278],[-6.878,54.279],[-6.875,54.282],[-6.878,54.285],[-6.875,54.286],[-6.873,54.288],[-6.87,54.287],[-6.868,54.286],[-6.868,54.282],[-6.866,54.282],[-6.861,54.281],[-6.859,54.282],[-6.859,54.283],[-6.862,54.287],[-6.859,54.289],[-6.854,54.29],[-6.851,54.292],[-6.853,54.293],[-6.853,54.295],[-6.851,54.296],[-6.851,54.298],[-6.852,54.299],[-6.853,54.301],[-6.856,54.302],[-6.858,54.304],[-6.858,54.307],[-6.86,54.308],[-6.857,54.31],[-6.857,54.312],[-6.856,54.314],[-6.862,54.315],[-6.87,54.32],[-6.869,54.322],[-6.869,54.325],[-6.867,54.326],[-6.867,54.33],[-6.871,54.334],[-6.873,54.335],[-6.874,54.338],[-6.876,54.339],[-6.875,54.34],[-6.877,54.345],[-6.876,54.347],[-6.884,54.347],[-6.886,54.346],[-6.888,54.349],[-6.891,54.35],[-6.893,54.351],[-6.899,54.351],[-6.9,54.35],[-6.904,54.35],[-6.906,54.35],[-6.907,54.352],[-6.906,54.353],[-6.906,54.355],[-6.905,54.358],[-6.907,54.361],[-6.909,54.363],[-6.911,54.366],[-6.908,54.367],[-6.907,54.37],[-6.909,54.371],[-6.912,54.372],[-6.911,54.375],[-6.919,54.378],[-6.923,54.378],[-6.926,54.377],[-6.931,54.376],[-6.933,54.38],[-6.929,54.38],[-6.924,54.383],[-6.928,54.383],[-6.934,54.385],[-6.937,54.383],[-6.944,54.386],[-6.946,54.388],[-6.944,54.389],[-6.944,54.391],[-6.947,54.39],[-6.952,54.391],[-6.96,54.392],[-6.959,54.398],[-6.964,54.399],[-6.967,54.401],[-6.972,54.401],[-6.976,54.4],[-6.979,54.402],[-6.977,54.404],[-6.977,54.406],[-6.981,54.408],[-6.982,54.41],[-6.987,54.409],[-6.99,54.408],[-6.994,54.405],[-6.996,54.407],[-7,54.407],[-7.002,54.408],[-7.001,54.411],[-6.999,54.411],[-7,54.413],[-7.005,54.413],[-7.007,54.415],[-7.012,54.416],[-7.014,54.417],[-7.015,54.415],[-7.017,54.414],[-7.022,54.418],[-7.026,54.419],[-7.028,54.421],[-7.035,54.418],[-7.038,54.416],[-7.043,54.414],[-7.047,54.414],[-7.055,54.411],[-7.063,54.399],[-7.071,54.393],[-7.071,54.39],[-7.073,54.387],[-7.077,54.385],[-7.081,54.383],[-7.084,54.381],[-7.084,54.378],[-7.092,54.373],[-7.102,54.37],[-7.106,54.368],[-7.11,54.367],[-7.109,54.365],[-7.103,54.361],[-7.104,54.355],[-7.106,54.354],[-7.11,54.354],[-7.113,54.352],[-7.117,54.352],[-7.121,54.351],[-7.126,54.348],[-7.128,54.345],[-7.131,54.344],[-7.135,54.345],[-7.14,54.342],[-7.142,54.339],[-7.147,54.339],[-7.151,54.336],[-7.155,54.335],[-7.162,54.337],[-7.167,54.336],[-7.172,54.338],[-7.178,54.339],[-7.182,54.338],[-7.182,54.339],[-7.188,54.337],[-7.181,54.333],[-7.181,54.328],[-7.179,54.324],[-7.179,54.321],[-7.177,54.317],[-7.178,54.314],[-7.178,54.311],[-7.179,54.309],[-7.182,54.309],[-7.182,54.31],[-7.186,54.31],[-7.191,54.311],[-7.197,54.31],[-7.197,54.308],[-7.2,54.308],[-7.201,54.306],[-7.205,54.305],[-7.208,54.301],[-7.211,54.299],[-7.205,54.294],[-7.201,54.295],[-7.19,54.291],[-7.186,54.287],[-7.181,54.287],[-7.182,54.286],[-7.173,54.286],[-7.171,54.284],[-7.173,54.282],[-7.173,54.28],[-7.179,54.277],[-7.18,54.275],[-7.179,54.273],[-7.175,54.272],[-7.173,54.273],[-7.161,54.274],[-7.157,54.271],[-7.158,54.269],[-7.153,54.266],[-7.153,54.264],[-7.152,54.259],[-7.147,54.257],[-7.141,54.254],[-7.142,54.252],[-7.15,54.25],[-7.156,54.246],[-7.159,54.243],[-7.153,54.242],[-7.146,54.24],[-7.145,54.238],[-7.15,54.233],[-7.145,54.225],[-7.149,54.225],[-7.152,54.221],[-7.158,54.22],[-7.16,54.22],[-7.165,54.22],[-7.17,54.217],[-7.176,54.218],[-7.184,54.222],[-7.185,54.223],[-7.188,54.225],[-7.19,54.224],[-7.195,54.22],[-7.197,54.217],[-7.204,54.214],[-7.21,54.213],[-7.215,54.213],[-7.22,54.215],[-7.224,54.214],[-7.231,54.211],[-7.232,54.207],[-7.228,54.205],[-7.236,54.206],[-7.243,54.206],[-7.246,54.204],[-7.25,54.201],[-7.25,54.199],[-7.251,54.197],[-7.251,54.194],[-7.255,54.193],[-7.258,54.186],[-7.259,54.185],[-7.259,54.183],[-7.257,54.182],[-7.259,54.178],[-7.252,54.175],[-7.243,54.173],[-7.241,54.171],[-7.241,54.169],[-7.243,54.17],[-7.251,54.167],[-7.253,54.167],[-7.255,54.165],[-7.258,54.165],[-7.259,54.163],[-7.258,54.16],[-7.255,54.16],[-7.252,54.156],[-7.255,54.155],[-7.257,54.155],[-7.258,54.153],[-7.258,54.148],[-7.263,54.147],[-7.264,54.145],[-7.264,54.143],[-7.262,54.142],[-7.263,54.137],[-7.267,54.136],[-7.274,54.133],[-7.276,54.131],[-7.279,54.126],[-7.279,54.123],[-7.292,54.118],[-7.298,54.121],[-7.3,54.121],[-7.303,54.122],[-7.303,54.125],[-7.308,54.13],[-7.308,54.131],[-7.305,54.133],[-7.298,54.133],[-7.296,54.131],[-7.293,54.129],[-7.292,54.131],[-7.29,54.132],[-7.284,54.137],[-7.284,54.139],[-7.301,54.143],[-7.298,54.149],[-7.294,54.149],[-7.29,54.149],[-7.288,54.15],[-7.284,54.153],[-7.285,54.154],[-7.284,54.16],[-7.28,54.166],[-7.28,54.167],[-7.284,54.168],[-7.291,54.172],[-7.296,54.168],[-7.3,54.166],[-7.303,54.166],[-7.309,54.167],[-7.311,54.164],[-7.32,54.158],[-7.321,54.157],[-7.325,54.153],[-7.324,54.151],[-7.325,54.15],[-7.335,54.146],[-7.338,54.146],[-7.338,54.143],[-7.334,54.143],[-7.331,54.141],[-7.33,54.138],[-7.323,54.138],[-7.319,54.137],[-7.318,54.137],[-7.318,54.133],[-7.312,54.13],[-7.316,54.126],[-7.306,54.123],[-7.306,54.12],[-7.308,54.118],[-7.31,54.118],[-7.314,54.117],[-7.314,54.116],[-7.318,54.115],[-7.319,54.113],[-7.321,54.115],[-7.322,54.117],[-7.324,54.118],[-7.325,54.121],[-7.323,54.123],[-7.327,54.125],[-7.328,54.123],[-7.332,54.121],[-7.336,54.12],[-7.337,54.116],[-7.34,54.117],[-7.343,54.116],[-7.346,54.117],[-7.349,54.12],[-7.348,54.124],[-7.352,54.124],[-7.354,54.127],[-7.357,54.128],[-7.359,54.13],[-7.363,54.132],[-7.359,54.136],[-7.359,54.137],[-7.361,54.14],[-7.365,54.141],[-7.366,54.143],[-7.369,54.144],[-7.37,54.143],[-7.372,54.142],[-7.375,54.143],[-7.383,54.142],[-7.386,54.139],[-7.389,54.139],[-7.395,54.139],[-7.398,54.141],[-7.398,54.142],[-7.396,54.144],[-7.392,54.145],[-7.389,54.144],[-7.386,54.144],[-7.385,54.145],[-7.388,54.146],[-7.392,54.147],[-7.393,54.148],[-7.392,54.15],[-7.386,54.15],[-7.384,54.15],[-7.381,54.147],[-7.377,54.148],[-7.373,54.147],[-7.371,54.147],[-7.369,54.15],[-7.372,54.15],[-7.376,54.151],[-7.378,54.149],[-7.381,54.149],[-7.385,54.151],[-7.385,54.152],[-7.389,54.153],[-7.391,54.152],[-7.395,54.15],[-7.398,54.153],[-7.396,54.155],[-7.393,54.156],[-7.391,54.156],[-7.385,54.159],[-7.388,54.161],[-7.389,54.163],[-7.393,54.166],[-7.397,54.166],[-7.399,54.169],[-7.406,54.173],[-7.41,54.174],[-7.416,54.172],[-7.418,54.168],[-7.42,54.167],[-7.429,54.168],[-7.432,54.165],[-7.432,54.163],[-7.434,54.162],[-7.437,54.162],[-7.442,54.161],[-7.445,54.162],[-7.451,54.167],[-7.455,54.168],[-7.453,54.17],[-7.451,54.171],[-7.448,54.171],[-7.447,54.173],[-7.452,54.173],[-7.458,54.175],[-7.457,54.177],[-7.455,54.179],[-7.46,54.183],[-7.457,54.184],[-7.458,54.186],[-7.461,54.186],[-7.464,54.187],[-7.465,54.19],[-7.469,54.191],[-7.474,54.19],[-7.473,54.191],[-7.469,54.193],[-7.469,54.196],[-7.466,54.198],[-7.464,54.2],[-7.457,54.204],[-7.454,54.205],[-7.454,54.206],[-7.457,54.206],[-7.46,54.204],[-7.464,54.202],[-7.466,54.199],[-7.468,54.198],[-7.47,54.199],[-7.473,54.197],[-7.473,54.196],[-7.475,54.193],[-7.478,54.192],[-7.481,54.194],[-7.484,54.201],[-7.483,54.203],[-7.479,54.203],[-7.474,54.204],[-7.474,54.207],[-7.48,54.208],[-7.484,54.206],[-7.487,54.203],[-7.487,54.2],[-7.491,54.198],[-7.493,54.199],[-7.494,54.201],[-7.496,54.204],[-7.492,54.208],[-7.488,54.209],[-7.484,54.214],[-7.479,54.213],[-7.478,54.215],[-7.48,54.216],[-7.482,54.219],[-7.486,54.221],[-7.486,54.223],[-7.484,54.223],[-7.478,54.221],[-7.474,54.224],[-7.471,54.223],[-7.471,54.225],[-7.473,54.226],[-7.477,54.226],[-7.48,54.225],[-7.482,54.227],[-7.484,54.228],[-7.487,54.228],[-7.491,54.23],[-7.496,54.231],[-7.499,54.229],[-7.506,54.232],[-7.506,54.229],[-7.508,54.229],[-7.51,54.231],[-7.513,54.23],[-7.514,54.234],[-7.519,54.233],[-7.522,54.234],[-7.522,54.235],[-7.528,54.238],[-7.527,54.24],[-7.531,54.242],[-7.528,54.244],[-7.527,54.245],[-7.524,54.246],[-7.521,54.245],[-7.517,54.246],[-7.519,54.247],[-7.523,54.247],[-7.519,54.25],[-7.516,54.252],[-7.517,54.254],[-7.519,54.255],[-7.521,54.252],[-7.526,54.253],[-7.532,54.255],[-7.533,54.253],[-7.533,54.251],[-7.531,54.247],[-7.538,54.247],[-7.54,54.247],[-7.541,54.249],[-7.544,54.247],[-7.55,54.248],[-7.552,54.249],[-7.55,54.251],[-7.544,54.251],[-7.539,54.254],[-7.534,54.255],[-7.535,54.257],[-7.528,54.26],[-7.53,54.26],[-7.533,54.258],[-7.537,54.259],[-7.538,54.257],[-7.542,54.256],[-7.544,54.258],[-7.546,54.256],[-7.551,54.254],[-7.553,54.254],[-7.554,54.256],[-7.557,54.257],[-7.552,54.26],[-7.554,54.261],[-7.557,54.26],[-7.554,54.264],[-7.547,54.264],[-7.544,54.266],[-7.546,54.27],[-7.545,54.272],[-7.548,54.274],[-7.551,54.274],[-7.552,54.276],[-7.55,54.28],[-7.548,54.281],[-7.546,54.283],[-7.551,54.289],[-7.561,54.288],[-7.564,54.289],[-7.566,54.291],[-7.572,54.292],[-7.574,54.293],[-7.576,54.293],[-7.576,54.291],[-7.579,54.289],[-7.581,54.289],[-7.586,54.29],[-7.586,54.294],[-7.588,54.297],[-7.589,54.298],[-7.588,54.301],[-7.584,54.304],[-7.585,54.305],[-7.591,54.306],[-7.593,54.305],[-7.597,54.305],[-7.599,54.307],[-7.594,54.308],[-7.591,54.31],[-7.583,54.313],[-7.583,54.314],[-7.585,54.316],[-7.588,54.315],[-7.592,54.313],[-7.595,54.313],[-7.597,54.311],[-7.601,54.31],[-7.602,54.307],[-7.604,54.306],[-7.609,54.306],[-7.61,54.307],[-7.62,54.305],[-7.625,54.304],[-7.631,54.301],[-7.634,54.301],[-7.637,54.302],[-7.639,54.304],[-7.638,54.307],[-7.631,54.308],[-7.627,54.308],[-7.623,54.31],[-7.623,54.313],[-7.621,54.313],[-7.618,54.316],[-7.615,54.317],[-7.617,54.318],[-7.621,54.317],[-7.625,54.312],[-7.634,54.314],[-7.636,54.315],[-7.636,54.317],[-7.628,54.323],[-7.626,54.322],[-7.624,54.326],[-7.621,54.328],[-7.621,54.33],[-7.626,54.337],[-7.628,54.337],[-7.63,54.335],[-7.632,54.335],[-7.633,54.333],[-7.637,54.332],[-7.639,54.333],[-7.638,54.334],[-7.639,54.336],[-7.641,54.337],[-7.643,54.34],[-7.645,54.346],[-7.645,54.349],[-7.646,54.35],[-7.65,54.351],[-7.651,54.353],[-7.649,54.354],[-7.644,54.353],[-7.642,54.354],[-7.641,54.355],[-7.644,54.357],[-7.646,54.357],[-7.648,54.356],[-7.651,54.354],[-7.658,54.356],[-7.658,54.359],[-7.663,54.361],[-7.661,54.363],[-7.661,54.366],[-7.658,54.365],[-7.655,54.365],[-7.652,54.364],[-7.651,54.366],[-7.65,54.369],[-7.65,54.371],[-7.647,54.375],[-7.645,54.377],[-7.649,54.377],[-7.652,54.378],[-7.653,54.381],[-7.655,54.383],[-7.654,54.384],[-7.65,54.385],[-7.647,54.387],[-7.648,54.39],[-7.649,54.391],[-7.653,54.39],[-7.653,54.387],[-7.654,54.386],[-7.658,54.386],[-7.661,54.387],[-7.661,54.389],[-7.662,54.391],[-7.661,54.394],[-7.659,54.395],[-7.659,54.398],[-7.663,54.398],[-7.668,54.4],[-7.669,54.403],[-7.673,54.403],[-7.675,54.405],[-7.671,54.406],[-7.669,54.405],[-7.666,54.406],[-7.669,54.408],[-7.666,54.409],[-7.668,54.412],[-7.67,54.411],[-7.671,54.413],[-7.671,54.414],[-7.672,54.416],[-7.676,54.417],[-7.677,54.416],[-7.68,54.415],[-7.683,54.416],[-7.682,54.417],[-7.677,54.417],[-7.675,54.417],[-7.675,54.419],[-7.678,54.421],[-7.676,54.422],[-7.679,54.423],[-7.683,54.422],[-7.685,54.422],[-7.687,54.421],[-7.69,54.421],[-7.692,54.422],[-7.689,54.423],[-7.688,54.425],[-7.682,54.426],[-7.684,54.428],[-7.684,54.43],[-7.686,54.432],[-7.685,54.433],[-7.686,54.435],[-7.69,54.437],[-7.691,54.438],[-7.697,54.437],[-7.7,54.435],[-7.702,54.434],[-7.706,54.435],[-7.71,54.436],[-7.712,54.439],[-7.716,54.439],[-7.716,54.441],[-7.714,54.442],[-7.714,54.444],[-7.716,54.446],[-7.72,54.445],[-7.722,54.447],[-7.721,54.449],[-7.725,54.448],[-7.731,54.449],[-7.732,54.452],[-7.734,54.453],[-7.737,54.456],[-7.74,54.457],[-7.74,54.459],[-7.737,54.46],[-7.731,54.459],[-7.729,54.459],[-7.729,54.461],[-7.734,54.462],[-7.737,54.463],[-7.743,54.463],[-7.749,54.469],[-7.749,54.471],[-7.743,54.47],[-7.741,54.468],[-7.736,54.467],[-7.733,54.467],[-7.733,54.469],[-7.736,54.469],[-7.734,54.473],[-7.74,54.474],[-7.741,54.476],[-7.738,54.476],[-7.735,54.48],[-7.731,54.481],[-7.726,54.481],[-7.724,54.482],[-7.725,54.485],[-7.729,54.484],[-7.73,54.485],[-7.725,54.486],[-7.723,54.486],[-7.722,54.488],[-7.718,54.488],[-7.718,54.489],[-7.722,54.49],[-7.727,54.492],[-7.73,54.492],[-7.733,54.494],[-7.736,54.495],[-7.742,54.495],[-7.742,54.493],[-7.75,54.492],[-7.75,54.493],[-7.754,54.496],[-7.759,54.496],[-7.764,54.498],[-7.767,54.498],[-7.772,54.498],[-7.773,54.499],[-7.768,54.5],[-7.764,54.5],[-7.764,54.502],[-7.762,54.505],[-7.759,54.505],[-7.761,54.506],[-7.753,54.509],[-7.75,54.511],[-7.748,54.512],[-7.743,54.514],[-7.744,54.514],[-7.743,54.516],[-7.74,54.517],[-7.739,54.519],[-7.741,54.52],[-7.741,54.521],[-7.745,54.523],[-7.75,54.522],[-7.751,54.52],[-7.758,54.519],[-7.76,54.52],[-7.758,54.522],[-7.754,54.523],[-7.75,54.524],[-7.749,54.525],[-7.75,54.526],[-7.757,54.527],[-7.756,54.529],[-7.759,54.53],[-7.764,54.53],[-7.771,54.527],[-7.774,54.527],[-7.777,54.527],[-7.779,54.528],[-7.785,54.528],[-7.788,54.53],[-7.786,54.532],[-7.787,54.534],[-7.79,54.534],[-7.792,54.535],[-7.794,54.534],[-7.8,54.53],[-7.805,54.529],[-7.808,54.529],[-7.811,54.532],[-7.817,54.533],[-7.82,54.532],[-7.821,54.531],[-7.824,54.528],[-7.827,54.528],[-7.83,54.528],[-7.83,54.529],[-7.829,54.531],[-7.833,54.532],[-7.834,54.533],[-7.84,54.532],[-7.842,54.533],[-7.849,54.532],[-7.854,54.533],[-7.858,54.532],[-7.865,54.527],[-7.869,54.526],[-7.874,54.523],[-7.875,54.522],[-7.878,54.521],[-7.883,54.52],[-7.88,54.519],[-7.879,54.517],[-7.89,54.515],[-7.89,54.517],[-7.897,54.515],[-7.902,54.513],[-7.907,54.51],[-7.906,54.509],[-7.91,54.508],[-7.917,54.506],[-7.924,54.505],[-7.93,54.505],[-7.934,54.507],[-7.944,54.506],[-7.947,54.505],[-7.949,54.505],[-7.953,54.504],[-7.959,54.502],[-7.964,54.5],[-7.967,54.5],[-7.969,54.499],[-7.977,54.497],[-7.978,54.495],[-7.982,54.493],[-7.982,54.491],[-7.977,54.493],[-7.971,54.494],[-7.969,54.493],[-7.959,54.496],[-7.956,54.496],[-7.953,54.495],[-7.952,54.494],[-7.955,54.493],[-7.961,54.493],[-7.965,54.493],[-7.968,54.492],[-7.973,54.491],[-7.972,54.49],[-7.967,54.491],[-7.969,54.489],[-7.972,54.488],[-7.97,54.486],[-7.962,54.487],[-7.961,54.488],[-7.955,54.489],[-7.951,54.491],[-7.946,54.492],[-7.942,54.493],[-7.938,54.495],[-7.93,54.497],[-7.93,54.495],[-7.936,54.493],[-7.941,54.493],[-7.946,54.49],[-7.954,54.487],[-7.958,54.485],[-7.966,54.483],[-7.97,54.48],[-7.975,54.477],[-7.976,54.476],[-7.982,54.475],[-7.987,54.475],[-7.991,54.477],[-7.991,54.478],[-7.989,54.478],[-7.987,54.48],[-7.989,54.483],[-7.995,54.483],[-7.999,54.482],[-8,54.48],[-8.006,54.479],[-8.01,54.478],[-8.02,54.477],[-8.023,54.476],[-8.031,54.474],[-8.034,54.474],[-8.037,54.474],[-8.039,54.475],[-8.051,54.474],[-8.055,54.474],[-8.06,54.475],[-8.061,54.476],[-8.068,54.477],[-8.071,54.475],[-8.074,54.475],[-8.077,54.476],[-8.084,54.476],[-8.09,54.476],[-8.092,54.478],[-8.093,54.479],[-8.096,54.479],[-8.096,54.482],[-8.098,54.485],[-8.09,54.487],[-8.087,54.486],[-8.082,54.487],[-8.08,54.485],[-8.074,54.486],[-8.071,54.485],[-8.066,54.485],[-8.062,54.484],[-8.062,54.487],[-8.058,54.487],[-8.049,54.488],[-8.041,54.488],[-8.036,54.503],[-8.04,54.506],[-8.038,54.507],[-8.038,54.509],[-8.035,54.511],[-8.034,54.513],[-8.031,54.516],[-8.031,54.517],[-8.028,54.519],[-8.027,54.521],[-8.024,54.522],[-8.018,54.531],[-8.016,54.533],[-8.011,54.534],[-8.012,54.535],[-8.01,54.537],[-8.009,54.541],[-8.003,54.546],[-7.987,54.543],[-7.973,54.546],[-7.971,54.548],[-7.969,54.547],[-7.968,54.544],[-7.962,54.542],[-7.959,54.541],[-7.958,54.539],[-7.955,54.538],[-7.949,54.534],[-7.944,54.536],[-7.942,54.536],[-7.937,54.533],[-7.931,54.534],[-7.923,54.535],[-7.92,54.537],[-7.912,54.536],[-7.906,54.537],[-7.902,54.536],[-7.898,54.536],[-7.894,54.535],[-7.892,54.535],[-7.89,54.537],[-7.886,54.536],[-7.883,54.537],[-7.879,54.535],[-7.876,54.53],[-7.866,54.535],[-7.859,54.537],[-7.856,54.537],[-7.85,54.533],[-7.844,54.537],[-7.84,54.539],[-7.835,54.54],[-7.829,54.541],[-7.827,54.543],[-7.824,54.544],[-7.823,54.545],[-7.826,54.547],[-7.831,54.549],[-7.832,54.552],[-7.831,54.553],[-7.827,54.556],[-7.825,54.557],[-7.824,54.558],[-7.819,54.562],[-7.817,54.563],[-7.81,54.564],[-7.811,54.565],[-7.809,54.567],[-7.807,54.566],[-7.801,54.568],[-7.8,54.57],[-7.797,54.571],[-7.796,54.572],[-7.799,54.576],[-7.799,54.577],[-7.797,54.577],[-7.794,54.579],[-7.795,54.581],[-7.792,54.582],[-7.789,54.581],[-7.785,54.581],[-7.782,54.583],[-7.778,54.584],[-7.774,54.584],[-7.768,54.587],[-7.761,54.587],[-7.758,54.589],[-7.761,54.59],[-7.762,54.591],[-7.759,54.595],[-7.754,54.596],[-7.752,54.598],[-7.745,54.6],[-7.742,54.6],[-7.736,54.602],[-7.733,54.601],[-7.727,54.604],[-7.723,54.604],[-7.719,54.607],[-7.709,54.607],[-7.703,54.608],[-7.699,54.611],[-7.696,54.611],[-7.694,54.616],[-7.694,54.62],[-7.699,54.619],[-7.704,54.62],[-7.705,54.623],[-7.702,54.626],[-7.703,54.629],[-7.704,54.633],[-7.707,54.634],[-7.71,54.635],[-7.712,54.63],[-7.716,54.629],[-7.717,54.628],[-7.725,54.627],[-7.731,54.624],[-7.737,54.623],[-7.738,54.62],[-7.741,54.619],[-7.743,54.621],[-7.746,54.62],[-7.753,54.62],[-7.756,54.622],[-7.756,54.624],[-7.757,54.625],[-7.766,54.622],[-7.769,54.621],[-7.771,54.622],[-7.773,54.624],[-7.778,54.628],[-7.778,54.63],[-7.782,54.633],[-7.784,54.632],[-7.79,54.633],[-7.793,54.632],[-7.802,54.633],[-7.804,54.634],[-7.806,54.638],[-7.809,54.639],[-7.811,54.64],[-7.814,54.644],[-7.816,54.641],[-7.817,54.641],[-7.823,54.636],[-7.829,54.633],[-7.837,54.634],[-7.842,54.634],[-7.846,54.632],[-7.85,54.632],[-7.854,54.632],[-7.85,54.635],[-7.852,54.638],[-7.857,54.639],[-7.857,54.64],[-7.854,54.643],[-7.855,54.645],[-7.856,54.649],[-7.857,54.651],[-7.862,54.651],[-7.864,54.653],[-7.867,54.653],[-7.872,54.654],[-7.878,54.656],[-7.881,54.656],[-7.884,54.657],[-7.891,54.657],[-7.9,54.66],[-7.904,54.665],[-7.907,54.666],[-7.906,54.668],[-7.909,54.671],[-7.91,54.671],[-7.911,54.673],[-7.912,54.675],[-7.909,54.678],[-7.898,54.684],[-7.897,54.686],[-7.898,54.688],[-7.899,54.69],[-7.905,54.688],[-7.907,54.689],[-7.91,54.693],[-7.915,54.694],[-7.916,54.696],[-7.919,54.697],[-7.917,54.702],[-7.911,54.701],[-7.899,54.701],[-7.896,54.7],[-7.893,54.7],[-7.892,54.702],[-7.885,54.703],[-7.88,54.702],[-7.875,54.707],[-7.871,54.71],[-7.854,54.726],[-7.848,54.728],[-7.846,54.73],[-7.844,54.731],[-7.842,54.733],[-7.837,54.735],[-7.835,54.736],[-7.831,54.736],[-7.828,54.735],[-7.825,54.736],[-7.82,54.735],[-7.817,54.734],[-7.816,54.73],[-7.811,54.725],[-7.812,54.725],[-7.809,54.723],[-7.807,54.722],[-7.806,54.72],[-7.804,54.719],[-7.8,54.719],[-7.795,54.72],[-7.791,54.719],[-7.787,54.719],[-7.786,54.718],[-7.781,54.718],[-7.778,54.716],[-7.778,54.713],[-7.778,54.71],[-7.77,54.709],[-7.761,54.707],[-7.758,54.707],[-7.755,54.708],[-7.755,54.706],[-7.75,54.705],[-7.749,54.704],[-7.746,54.705],[-7.743,54.707],[-7.742,54.71],[-7.741,54.713],[-7.735,54.716],[-7.734,54.717],[-7.73,54.718],[-7.724,54.719],[-7.71,54.726],[-7.707,54.725],[-7.702,54.726],[-7.699,54.725],[-7.689,54.73],[-7.685,54.73],[-7.679,54.73],[-7.676,54.733],[-7.665,54.738],[-7.651,54.744],[-7.648,54.746],[-7.637,54.75],[-7.631,54.75],[-7.63,54.749],[-7.628,54.746],[-7.621,54.744],[-7.619,54.743],[-7.615,54.743],[-7.602,54.745],[-7.59,54.743],[-7.587,54.748],[-7.583,54.749],[-7.58,54.748],[-7.579,54.745],[-7.58,54.741],[-7.579,54.741],[-7.574,54.742],[-7.57,54.744],[-7.565,54.743],[-7.561,54.744],[-7.558,54.744],[-7.555,54.743],[-7.552,54.74],[-7.551,54.74],[-7.547,54.741],[-7.542,54.745],[-7.537,54.747],[-7.539,54.751],[-7.541,54.751],[-7.548,54.754],[-7.55,54.758],[-7.546,54.762],[-7.548,54.766],[-7.547,54.768],[-7.548,54.771],[-7.547,54.774],[-7.544,54.779],[-7.545,54.781],[-7.544,54.783],[-7.544,54.786],[-7.549,54.789],[-7.542,54.796],[-7.541,54.799],[-7.537,54.802],[-7.534,54.802],[-7.53,54.802],[-7.527,54.803],[-7.529,54.806],[-7.528,54.808],[-7.518,54.808],[-7.513,54.811],[-7.51,54.813],[-7.507,54.814],[-7.502,54.817],[-7.495,54.819],[-7.488,54.821],[-7.484,54.824],[-7.481,54.828],[-7.481,54.83],[-7.48,54.832],[-7.472,54.834],[-7.47,54.837],[-7.47,54.84],[-7.464,54.848],[-7.461,54.851],[-7.461,54.854],[-7.456,54.854],[-7.456,54.855],[-7.457,54.857],[-7.456,54.86],[-7.449,54.865],[-7.443,54.87],[-7.442,54.877],[-7.444,54.883],[-7.446,54.884],[-7.447,54.886],[-7.453,54.892],[-7.449,54.892],[-7.45,54.898],[-7.45,54.903],[-7.445,54.91],[-7.445,54.914],[-7.447,54.923],[-7.448,54.93],[-7.447,54.934],[-7.442,54.938],[-7.423,54.941],[-7.411,54.941],[-7.406,54.941],[-7.402,54.941],[-7.389,54.945],[-7.382,54.949],[-7.356,54.964],[-7.355,54.969],[-7.354,54.972],[-7.35,54.977],[-7.342,54.983],[-7.338,54.984],[-7.327,54.985],[-7.317,54.99],[-7.314,54.992],[-7.313,54.994],[-7.313,54.996],[-7.316,55.001],[-7.315,55.003],[-7.313,55.005],[-7.31,55.005],[-7.303,55.006],[-7.297,55.007],[-7.293,55.008],[-7.289,55.01],[-7.287,55.013],[-7.288,55.016],[-7.29,55.017],[-7.288,55.021],[-7.284,55.027],[-7.267,55.039],[-7.261,55.042],[-7.254,55.044],[-7.245,55.047],[-7.233,55.051],[-7.233,55.056],[-7.225,55.06],[-7.216,55.058],[-7.213,55.055],[-7.211,55.056],[-7.18,55.063],[-7.156,55.058],[-7.147,55.056],[-7.144,55.048],[-7.125,55.043],[-7.071,55.047],[-7.049,55.051],[-7.041,55.057],[-7.042,55.059],[-7.034,55.063],[-7.014,55.078],[-7.015,55.08],[-7.023,55.086],[-7.025,55.089],[-7.024,55.093],[-7.022,55.1],[-7.018,55.103],[-7.012,55.107],[-7.005,55.109],[-6.996,55.109],[-6.993,55.108],[-6.99,55.107],[-6.986,55.105],[-6.976,55.104],[-6.976,55.105],[-6.987,55.109],[-6.992,55.113],[-6.99,55.115],[-6.989,55.117],[-6.983,55.124],[-6.982,55.127],[-6.98,55.128],[-6.979,55.13],[-6.977,55.133],[-6.974,55.136],[-6.974,55.14],[-6.971,55.142],[-6.969,55.147],[-6.966,55.154],[-6.963,55.163],[-6.961,55.172],[-6.96,55.179],[-6.962,55.185],[-6.966,55.191],[-6.964,55.194],[-6.96,55.195],[-6.946,55.194],[-6.923,55.182],[-6.902,55.174],[-6.876,55.17],[-6.83,55.169],[-6.805,55.171],[-6.789,55.17],[-6.773,55.168],[-6.773,55.166],[-6.77,55.165],[-6.765,55.161],[-6.761,55.161],[-6.759,55.16],[-6.754,55.159],[-6.75,55.159],[-6.747,55.16],[-6.747,55.161],[-6.74,55.162],[-6.731,55.161],[-6.726,55.158],[-6.723,55.158],[-6.719,55.156],[-6.71,55.154],[-6.695,55.152],[-6.69,55.15],[-6.687,55.149],[-6.674,55.141],[-6.673,55.138],[-6.676,55.134],[-6.676,55.131],[-6.675,55.129],[-6.67,55.124],[-6.669,55.119],[-6.667,55.116],[-6.66,55.112],[-6.655,55.111],[-6.651,55.111],[-6.646,55.11],[-6.64,55.107],[-6.636,55.105],[-6.636,55.103],[-6.635,55.101],[-6.628,55.099],[-6.626,55.098],[-6.622,55.097],[-6.621,55.095],[-6.621,55.092],[-6.618,55.089],[-6.614,55.085],[-6.609,55.079],[-6.606,55.075],[-6.603,55.074],[-6.598,55.068],[-6.595,55.067],[-6.592,55.067],[-6.589,55.066],[-6.585,55.064],[-6.583,55.06],[-6.581,55.058],[-6.581,55.056],[-6.583,55.051],[-6.583,55.05],[-6.58,55.046],[-6.575,55.041],[-6.574,55.038],[-6.573,55.036],[-6.575,55.033],[-6.574,55.029],[-6.576,55.025],[-6.577,55.022],[-6.577,55.019],[-6.577,55.017],[-6.579,55.014],[-6.579,55.012],[-6.583,55.01],[-6.582,55.005],[-6.578,55.001],[-6.578,55],[-6.577,54.999],[-6.575,54.996],[-6.572,54.993],[-6.572,54.988],[-6.571,54.985],[-6.568,54.984],[-6.566,54.984],[-6.56,54.982],[-6.557,54.982],[-6.554,54.983],[-6.552,54.982],[-6.547,54.98],[-6.547,54.978],[-6.551,54.977],[-6.552,54.975],[-6.551,54.972],[-6.549,54.969],[-6.549,54.967],[-6.547,54.962],[-6.545,54.961],[-6.545,54.959],[-6.542,54.958],[-6.539,54.958],[-6.537,54.957],[-6.54,54.955],[-6.541,54.954],[-6.539,54.952],[-6.534,54.951],[-6.531,54.948],[-6.528,54.947],[-6.524,54.945],[-6.521,54.942],[-6.519,54.941],[-6.518,54.938],[-6.515,54.934],[-6.511,54.931],[-6.506,54.924],[-6.502,54.921],[-6.5,54.918],[-6.5,54.916],[-6.503,54.915],[-6.503,54.913],[-6.506,54.911],[-6.507,54.909],[-6.506,54.907],[-6.504,54.906],[-6.503,54.901],[-6.501,54.899],[-6.502,54.896],[-6.5,54.895],[-6.5,54.894],[-6.498,54.89],[-6.496,54.888],[-6.491,54.886],[-6.489,54.883],[-6.489,54.881],[-6.488,54.879],[-6.487,54.875],[-6.483,54.874],[-6.48,54.867],[-6.476,54.862],[-6.475,54.857],[-6.472,54.853],[-6.473,54.851],[-6.471,54.846],[-6.472,54.842],[-6.471,54.841],[-6.468,54.84],[-6.467,54.838],[-6.467,54.834],[-6.461,54.829],[-6.458,54.824],[-6.461,54.821],[-6.459,54.817],[-6.462,54.816],[-6.464,54.817],[-6.467,54.817],[-6.471,54.815],[-6.476,54.811],[-6.477,54.811],[-6.48,54.805],[-6.48,54.803],[-6.481,54.8],[-6.483,54.799],[-6.487,54.799],[-6.487,54.796],[-6.488,54.796],[-6.489,54.793],[-6.487,54.793],[-6.483,54.792],[-6.483,54.79],[-6.484,54.788],[-6.487,54.787],[-6.484,54.785],[-6.486,54.784],[-6.485,54.78],[-6.487,54.778],[-6.486,54.777],[-6.484,54.776],[-6.484,54.778],[-6.479,54.781],[-6.476,54.781],[-6.47,54.78],[-6.47,54.778],[-6.475,54.777],[-6.477,54.774],[-6.471,54.772],[-6.469,54.77],[-6.464,54.772],[-6.465,54.774],[-6.461,54.772],[-6.461,54.767],[-6.46,54.764],[-6.458,54.762],[-6.462,54.76],[-6.466,54.755],[-6.47,54.752],[-6.473,54.75],[-6.477,54.751],[-6.483,54.751],[-6.484,54.751],[-6.49,54.75],[-6.494,54.75],[-6.496,54.748],[-6.502,54.746],[-6.502,54.744],[-6.507,54.744],[-6.506,54.742],[-6.509,54.742],[-6.511,54.74],[-6.515,54.738],[-6.514,54.735],[-6.512,54.732],[-6.512,54.731],[-6.514,54.73],[-6.516,54.728],[-6.516,54.726],[-6.513,54.722],[-6.516,54.722],[-6.523,54.72],[-6.524,54.72],[-6.529,54.717],[-6.53,54.71],[-6.529,54.709],[-6.528,54.705],[-6.526,54.704],[-6.527,54.7],[-6.529,54.696],[-6.525,54.689],[-6.524,54.688],[-6.522,54.685],[-6.523,54.681],[-6.521,54.679],[-6.523,54.676],[-6.522,54.672],[-6.52,54.67],[-6.52,54.669],[-6.517,54.668],[-6.517,54.666],[-6.518,54.666],[-6.518,54.663],[-6.517,54.661],[-6.514,54.661],[-6.511,54.657],[-6.505,54.658],[-6.505,54.656],[-6.508,54.656],[-6.511,54.654],[-6.511,54.651],[-6.508,54.649],[-6.504,54.649],[-6.501,54.647],[-6.499,54.645],[-6.5,54.642],[-6.506,54.639],[-6.503,54.637],[-6.506,54.634],[-6.506,54.629],[-6.509,54.628],[-6.508,54.627],[-6.506,54.624],[-6.502,54.622],[-6.502,54.62],[-6.504,54.619],[-6.505,54.617],[-6.508,54.616],[-6.51,54.612],[-6.508,54.611],[-6.51,54.61],[-6.51,54.608],[-6.515,54.605],[-6.517,54.603],[-6.519,54.599],[-6.525,54.597],[-6.527,54.595],[-6.529,54.594],[-6.53,54.592],[-6.533,54.593],[-6.534,54.591],[-6.532,54.589],[-6.534,54.587],[-6.531,54.586],[-6.533,54.585],[-6.537,54.586],[-6.536,54.588],[-6.538,54.589],[-6.543,54.588],[-6.545,54.588],[-6.55,54.586],[-6.554,54.583],[-6.557,54.581],[-6.559,54.58],[-6.56,54.577],[-6.561,54.575],[-6.558,54.574],[-6.56,54.572],[-6.563,54.573],[-6.566,54.573],[-6.568,54.571],[-6.567,54.57],[-6.575,54.569],[-6.583,54.567],[-6.587,54.566],[-6.589,54.565],[-6.593,54.564],[-6.595,54.561],[-6.597,54.56],[-6.597,54.557],[-6.599,54.556],[-6.599,54.55],[-6.601,54.546],[-6.599,54.544],[-6.599,54.543],[-6.602,54.543],[-6.604,54.542],[-6.607,54.541],[-6.609,54.538],[-6.608,54.535],[-6.606,54.532],[-6.602,54.53],[-6.598,54.53],[-6.595,54.53],[-6.592,54.531],[-6.588,54.527],[-6.588,54.525],[-6.581,54.521],[-6.578,54.521],[-6.577,54.52],[-6.568,54.519],[-6.565,54.52],[-6.562,54.519],[-6.562,54.517],[-6.566,54.515],[-6.57,54.514],[-6.57,54.511],[-6.568,54.51],[-6.564,54.51],[-6.559,54.511],[-6.557,54.51],[-6.555,54.506],[-6.551,54.505],[-6.547,54.505],[-6.544,54.507],[-6.538,54.508],[-6.534,54.511],[-6.533,54.508],[-6.531,54.506],[-6.524,54.505],[-6.521,54.506],[-6.519,54.505],[-6.519,54.507],[-6.516,54.51],[-6.515,54.512],[-6.513,54.512],[-6.511,54.514],[-6.511,54.516],[-6.509,54.517],[-6.504,54.518],[-6.502,54.518],[-6.499,54.519],[-6.496,54.518],[-6.493,54.518],[-6.489,54.52],[-6.484,54.518],[-6.486,54.521],[-6.483,54.521],[-6.479,54.519],[-6.478,54.517],[-6.474,54.518],[-6.471,54.516],[-6.468,54.516],[-6.467,54.517],[-6.463,54.514],[-6.463,54.512],[-6.46,54.511],[-6.459,54.51],[-6.451,54.508],[-6.444,54.508],[-6.437,54.508],[-6.433,54.509],[-6.428,54.511],[-6.422,54.515],[-6.42,54.515],[-6.418,54.513],[-6.419,54.509],[-6.414,54.5],[-6.414,54.498],[-6.412,54.498],[-6.411,54.496],[-6.412,54.494],[-6.412,54.49],[-6.411,54.489],[-6.414,54.488],[-6.413,54.486],[-6.41,54.486],[-6.41,54.487],[-6.406,54.487],[-6.404,54.489],[-6.402,54.489],[-6.399,54.491],[-6.399,54.494],[-6.398,54.495],[-6.396,54.494],[-6.397,54.49],[-6.393,54.488],[-6.393,54.487],[-6.389,54.487],[-6.39,54.488],[-6.39,54.492],[-6.389,54.495],[-6.387,54.497],[-6.383,54.497],[-6.381,54.497],[-6.382,54.495],[-6.382,54.491],[-6.378,54.491],[-6.373,54.49],[-6.368,54.491],[-6.366,54.488],[-6.362,54.49],[-6.363,54.494],[-6.366,54.496],[-6.372,54.498],[-6.373,54.499],[-6.377,54.5],[-6.371,54.502],[-6.369,54.499],[-6.367,54.499],[-6.364,54.498],[-6.359,54.498],[-6.357,54.496],[-6.353,54.497],[-6.351,54.499],[-6.348,54.498],[-6.345,54.499],[-6.344,54.501],[-6.345,54.502],[-6.344,54.505],[-6.342,54.506],[-6.338,54.504],[-6.333,54.501],[-6.33,54.501],[-6.329,54.503],[-6.334,54.505],[-6.335,54.508],[-6.334,54.511],[-6.341,54.511],[-6.346,54.512],[-6.351,54.514],[-6.347,54.521],[-6.348,54.523],[-6.349,54.526],[-6.352,54.527],[-6.356,54.528],[-6.358,54.53],[-6.355,54.533],[-6.352,54.534],[-6.351,54.532],[-6.347,54.529],[-6.34,54.53],[-6.337,54.531],[-6.336,54.533],[-6.332,54.536],[-6.33,54.538],[-6.331,54.54],[-6.331,54.542],[-6.328,54.542],[-6.325,54.541],[-6.322,54.542],[-6.32,54.544],[-6.324,54.55],[-6.325,54.55],[-6.327,54.548],[-6.331,54.547],[-6.337,54.546],[-6.342,54.549],[-6.34,54.553],[-6.336,54.554],[-6.333,54.554],[-6.333,54.555],[-6.331,54.557],[-6.329,54.56],[-6.326,54.562],[-6.323,54.56],[-6.32,54.56],[-6.314,54.561],[-6.31,54.561],[-6.308,54.56],[-6.306,54.561],[-6.309,54.562],[-6.31,54.567],[-6.308,54.572],[-6.303,54.572],[-6.298,54.574],[-6.294,54.574],[-6.291,54.573],[-6.287,54.574],[-6.286,54.576],[-6.283,54.577],[-6.282,54.58],[-6.274,54.576],[-6.271,54.578],[-6.267,54.586],[-6.265,54.588],[-6.265,54.593],[-6.265,54.595],[-6.264,54.596],[-6.264,54.598],[-6.262,54.6],[-6.265,54.602],[-6.268,54.603],[-6.266,54.606],[-6.267,54.608],[-6.269,54.609],[-6.273,54.61],[-6.276,54.612],[-6.279,54.612],[-6.283,54.611],[-6.284,54.61],[-6.289,54.609],[-6.295,54.609],[-6.299,54.61],[-6.302,54.61],[-6.304,54.608],[-6.306,54.609],[-6.31,54.609],[-6.312,54.608],[-6.317,54.609],[-6.319,54.608],[-6.319,54.611],[-6.318,54.614],[-6.315,54.616],[-6.309,54.622],[-6.306,54.626],[-6.303,54.63],[-6.301,54.634],[-6.299,54.639],[-6.299,54.643],[-6.3,54.648],[-6.301,54.65],[-6.295,54.654],[-6.29,54.657],[-6.288,54.659],[-6.285,54.66],[-6.282,54.663],[-6.279,54.666],[-6.277,54.668],[-6.274,54.67],[-6.271,54.672],[-6.263,54.677],[-6.26,54.68],[-6.26,54.682],[-6.253,54.687],[-6.248,54.689],[-6.247,54.691],[-6.248,54.693],[-6.246,54.696],[-6.244,54.697],[-6.236,54.698],[-6.235,54.699],[-6.234,54.702],[-6.23,54.704],[-6.229,54.705],[-6.231,54.708],[-6.234,54.709],[-6.235,54.713],[-6.24,54.715],[-6.244,54.718],[-6.245,54.72],[-6.25,54.723],[-6.256,54.725],[-6.264,54.727],[-6.272,54.726],[-6.275,54.725],[-6.283,54.725],[-6.283,54.724],[-6.287,54.721],[-6.29,54.72],[-6.292,54.718],[-6.296,54.717],[-6.299,54.718],[-6.303,54.718],[-6.304,54.72],[-6.309,54.72],[-6.309,54.719],[-6.314,54.719],[-6.316,54.718],[-6.323,54.714],[-6.327,54.714],[-6.331,54.716],[-6.335,54.716],[-6.338,54.712],[-6.339,54.711],[-6.343,54.706],[-6.349,54.706],[-6.352,54.707],[-6.356,54.707],[-6.361,54.706],[-6.362,54.704],[-6.365,54.702],[-6.369,54.702],[-6.372,54.703],[-6.376,54.703],[-6.385,54.704],[-6.389,54.702],[-6.394,54.703],[-6.401,54.701],[-6.405,54.703],[-6.413,54.703],[-6.416,54.702],[-6.418,54.704],[-6.422,54.705],[-6.425,54.706],[-6.431,54.71],[-6.434,54.71],[-6.438,54.708],[-6.445,54.708],[-6.446,54.706],[-6.448,54.706],[-6.448,54.71],[-6.453,54.71],[-6.457,54.709],[-6.461,54.712],[-6.465,54.711],[-6.467,54.716],[-6.466,54.718],[-6.469,54.718],[-6.469,54.72],[-6.468,54.723],[-6.465,54.724],[-6.466,54.725],[-6.464,54.728],[-6.464,54.732],[-6.464,54.735],[-6.462,54.738],[-6.458,54.739],[-6.456,54.74],[-6.457,54.743],[-6.46,54.743],[-6.462,54.746],[-6.464,54.746],[-6.465,54.749],[-6.466,54.751],[-6.466,54.752],[-6.462,54.758],[-6.46,54.76],[-6.457,54.762],[-6.459,54.765],[-6.46,54.767],[-6.46,54.774],[-6.457,54.773],[-6.456,54.773],[-6.457,54.775],[-6.462,54.777],[-6.462,54.779],[-6.464,54.78],[-6.464,54.782],[-6.465,54.784],[-6.465,54.786],[-6.465,54.788],[-6.468,54.79],[-6.47,54.793],[-6.47,54.796],[-6.468,54.797],[-6.469,54.799],[-6.467,54.8],[-6.468,54.801],[-6.467,54.805],[-6.468,54.806],[-6.467,54.808],[-6.464,54.809],[-6.464,54.81],[-6.467,54.811],[-6.464,54.813],[-6.465,54.815],[-6.458,54.817],[-6.458,54.819],[-6.459,54.82],[-6.459,54.822],[-6.457,54.825],[-6.46,54.829],[-6.466,54.834],[-6.466,54.838],[-6.467,54.84],[-6.471,54.841],[-6.471,54.843],[-6.47,54.847],[-6.472,54.851],[-6.471,54.853],[-6.473,54.857],[-6.475,54.862],[-6.479,54.866],[-6.482,54.875],[-6.486,54.876],[-6.487,54.883],[-6.49,54.886],[-6.495,54.888],[-6.498,54.891],[-6.498,54.895],[-6.5,54.896],[-6.5,54.899],[-6.502,54.901],[-6.503,54.906],[-6.505,54.908],[-6.506,54.91],[-6.505,54.912],[-6.503,54.913],[-6.503,54.914],[-6.5,54.915],[-6.498,54.918],[-6.502,54.921],[-6.505,54.924],[-6.507,54.927],[-6.51,54.93],[-6.512,54.933],[-6.514,54.935],[-6.516,54.937],[-6.518,54.941],[-6.52,54.942],[-6.524,54.946],[-6.526,54.947],[-6.53,54.948],[-6.531,54.949],[-6.535,54.952],[-6.539,54.953],[-6.54,54.955],[-6.536,54.956],[-6.536,54.958],[-6.54,54.959],[-6.542,54.959],[-6.544,54.959],[-6.545,54.961],[-6.546,54.963],[-6.549,54.97],[-6.551,54.973],[-6.551,54.975],[-6.551,54.976],[-6.546,54.978],[-6.546,54.98],[-6.553,54.984],[-6.558,54.983],[-6.562,54.983],[-6.57,54.986],[-6.571,54.989],[-6.571,54.993],[-6.573,54.994],[-6.574,54.997],[-6.575,55],[-6.58,55.005],[-6.582,55.01],[-6.582,55.011],[-6.578,55.012],[-6.577,55.015],[-6.576,55.018],[-6.576,55.022],[-6.573,55.029],[-6.574,55.032],[-6.572,55.035],[-6.572,55.037],[-6.574,55.04],[-6.579,55.045],[-6.582,55.051],[-6.582,55.053],[-6.58,55.057],[-6.58,55.058],[-6.582,55.06],[-6.584,55.064],[-6.59,55.067],[-6.597,55.068],[-6.603,55.074],[-6.605,55.075],[-6.608,55.08],[-6.612,55.084],[-6.613,55.086],[-6.618,55.09],[-6.62,55.093],[-6.62,55.095],[-6.624,55.098],[-6.625,55.099],[-6.634,55.102],[-6.635,55.102],[-6.635,55.105],[-6.636,55.106],[-6.64,55.108],[-6.647,55.11],[-6.65,55.111],[-6.657,55.112],[-6.66,55.113],[-6.666,55.116],[-6.668,55.118],[-6.667,55.121],[-6.669,55.125],[-6.674,55.129],[-6.674,55.134],[-6.672,55.136],[-6.671,55.137],[-6.673,55.142],[-6.675,55.144],[-6.681,55.146],[-6.69,55.152],[-6.694,55.154],[-6.701,55.155],[-6.703,55.156],[-6.709,55.157],[-6.712,55.158],[-6.716,55.158],[-6.72,55.161],[-6.726,55.162],[-6.729,55.163],[-6.737,55.164],[-6.743,55.166],[-6.75,55.165],[-6.759,55.164],[-6.763,55.165],[-6.768,55.167],[-6.77,55.168],[-6.753,55.169],[-6.747,55.17],[-6.726,55.174],[-6.728,55.181],[-6.721,55.186],[-6.723,55.191],[-6.714,55.191],[-6.71,55.194],[-6.705,55.194],[-6.7,55.196],[-6.687,55.197],[-6.682,55.198],[-6.68,55.199],[-6.671,55.199],[-6.665,55.198],[-6.66,55.199],[-6.657,55.2],[-6.656,55.202],[-6.658,55.206],[-6.66,55.208],[-6.663,55.211],[-6.662,55.212],[-6.659,55.21],[-6.658,55.213],[-6.656,55.212],[-6.653,55.208],[-6.651,55.207],[-6.651,55.205],[-6.647,55.204],[-6.647,55.206],[-6.629,55.21],[-6.611,55.206],[-6.607,55.206],[-6.589,55.209],[-6.584,55.21],[-6.58,55.214],[-6.577,55.215],[-6.56,55.22],[-6.556,55.217],[-6.553,55.219],[-6.55,55.219],[-6.55,55.216],[-6.545,55.217],[-6.546,55.219],[-6.544,55.221],[-6.535,55.219],[-6.53,55.221],[-6.528,55.223],[-6.527,55.226],[-6.527,55.227],[-6.532,55.229],[-6.531,55.232],[-6.53,55.233],[-6.526,55.233],[-6.523,55.235],[-6.52,55.235],[-6.518,55.234],[-6.518,55.238],[-6.514,55.238],[-6.511,55.24],[-6.51,55.24],[-6.506,55.24],[-6.506,55.242],[-6.503,55.244],[-6.503,55.245],[-6.499,55.245],[-6.492,55.245],[-6.491,55.246],[-6.488,55.246],[-6.483,55.248],[-6.482,55.25],[-6.48,55.251],[-6.478,55.249],[-6.474,55.249],[-6.471,55.249],[-6.468,55.249],[-6.466,55.247],[-6.462,55.246],[-6.461,55.244],[-6.461,55.241],[-6.458,55.241],[-6.453,55.238],[-6.449,55.238],[-6.447,55.238],[-6.442,55.238],[-6.438,55.237],[-6.437,55.238],[-6.429,55.238],[-6.426,55.236],[-6.417,55.237],[-6.415,55.235],[-6.414,55.232],[-6.411,55.231],[-6.408,55.231],[-6.401,55.231],[-6.396,55.232],[-6.389,55.234],[-6.384,55.237],[-6.382,55.24],[-6.379,55.241],[-6.372,55.241],[-6.368,55.245],[-6.364,55.243],[-6.36,55.239],[-6.353,55.24],[-6.35,55.241],[-6.35,55.239],[-6.347,55.239],[-6.344,55.238],[-6.337,55.237],[-6.333,55.239],[-6.332,55.237],[-6.323,55.233],[-6.318,55.232],[-6.312,55.229],[-6.308,55.228],[-6.298,55.229],[-6.296,55.23],[-6.292,55.229],[-6.292,55.227],[-6.288,55.224],[-6.283,55.222],[-6.275,55.221],[-6.273,55.22],[-6.261,55.212],[-6.255,55.211],[-6.248,55.211],[-6.246,55.211],[-6.242,55.208],[-6.239,55.207],[-6.239,55.205],[-6.236,55.204],[-6.232,55.204],[-6.219,55.207],[-6.217,55.208],[-6.214,55.208],[-6.211,55.209],[-6.209,55.208],[-6.205,55.212],[-6.201,55.212],[-6.198,55.212],[-6.195,55.212],[-6.187,55.21],[-6.183,55.211],[-6.18,55.212],[-6.174,55.215],[-6.168,55.22],[-6.162,55.222],[-6.157,55.226],[-6.154,55.227],[-6.146,55.227],[-6.14,55.226],[-6.137,55.224],[-6.134,55.222],[-6.132,55.22],[-6.129,55.218],[-6.129,55.217],[-6.122,55.214],[-6.122,55.211],[-6.119,55.21],[-6.118,55.209],[-6.113,55.208],[-6.107,55.209],[-6.106,55.208],[-6.102,55.207],[-6.096,55.205],[-6.088,55.203],[-6.082,55.201],[-6.074,55.197],[-6.069,55.195],[-6.062,55.196],[-6.062,55.194],[-6.065,55.192],[-6.065,55.19],[-6.063,55.188],[-6.06,55.187],[-6.057,55.184],[-6.055,55.182],[-6.052,55.18],[-6.052,55.176],[-6.049,55.172],[-6.045,55.17],[-6.038,55.169],[-6.034,55.168],[-6.03,55.165],[-6.026,55.157],[-6.025,55.152],[-6.027,55.148],[-6.025,55.147],[-6.026,55.145],[-6.026,55.14],[-6.029,55.137],[-6.034,55.134],[-6.037,55.132],[-6.039,55.132],[-6.039,55.127],[-6.038,55.125],[-6.036,55.124],[-6.038,55.123],[-6.036,55.121],[-6.035,55.117],[-6.035,55.114],[-6.034,55.112],[-6.035,55.108],[-6.036,55.103],[-6.037,55.099],[-6.039,55.098],[-6.04,55.096],[-6.043,55.094],[-6.048,55.09],[-6.048,55.089],[-6.05,55.087],[-6.055,55.084],[-6.055,55.083],[-6.052,55.081],[-6.052,55.079],[-6.053,55.077],[-6.053,55.073],[-6.055,55.07],[-6.054,55.067],[-6.055,55.065],[-6.058,55.063],[-6.057,55.06],[-6.051,55.057],[-6.046,55.054],[-6.042,55.054],[-6.024,55.058],[-6.018,55.058],[-6.011,55.058],[-6.009,55.059],[-6.004,55.06],[-5.991,55.06],[-5.981,55.059],[-5.972,55.055],[-5.966,55.053],[-5.963,55.048],[-5.964,55.044],[-5.963,55.043],[-5.965,55.041],[-5.966,55.038],[-5.968,55.034],[-5.972,55.03],[-5.972,55.027],[-5.971,55.025],[-5.971,55.022],[-5.974,55.019],[-5.975,55.016],[-5.973,55.015],[-5.976,55.014],[-5.977,55.011],[-5.976,55.007],[-5.98,55.003],[-5.984,55.003],[-5.985,55],[-5.986,54.998],[-5.987,54.994],[-5.988,54.993],[-5.991,54.99],[-5.992,54.987],[-5.989,54.984],[-5.986,54.981],[-5.982,54.979],[-5.977,54.98],[-5.969,54.981],[-5.961,54.978],[-5.96,54.975],[-5.959,54.972],[-5.955,54.969],[-5.951,54.969],[-5.947,54.971],[-5.943,54.971],[-5.934,54.969],[-5.93,54.968],[-5.926,54.966],[-5.921,54.963],[-5.916,54.959],[-5.913,54.956],[-5.911,54.953],[-5.907,54.95],[-5.903,54.947],[-5.903,54.946],[-5.9,54.943],[-5.895,54.937],[-5.891,54.932],[-5.888,54.927],[-5.888,54.926],[-5.885,54.921],[-5.884,54.918],[-5.882,54.916],[-5.881,54.912],[-5.878,54.909],[-5.874,54.906],[-5.865,54.903],[-5.859,54.899],[-5.855,54.899],[-5.85,54.901],[-5.848,54.901],[-5.845,54.901],[-5.841,54.899],[-5.84,54.897],[-5.839,54.892],[-5.84,54.891],[-5.84,54.889],[-5.838,54.885],[-5.837,54.882],[-5.833,54.879],[-5.824,54.876],[-5.822,54.876],[-5.815,54.871],[-5.809,54.867],[-5.808,54.865],[-5.806,54.862],[-5.804,54.858],[-5.801,54.856],[-5.796,54.855],[-5.796,54.852],[-5.797,54.851],[-5.796,54.85],[-5.797,54.845],[-5.8,54.843],[-5.799,54.842],[-5.8,54.84],[-5.802,54.84],[-5.801,54.843],[-5.804,54.844],[-5.803,54.845],[-5.812,54.845],[-5.817,54.848],[-5.817,54.846],[-5.815,54.844],[-5.813,54.842],[-5.811,54.838],[-5.812,54.835],[-5.809,54.83],[-5.807,54.829],[-5.806,54.827],[-5.802,54.823],[-5.799,54.822],[-5.786,54.819],[-5.779,54.816],[-5.775,54.818],[-5.773,54.816],[-5.771,54.815],[-5.768,54.816],[-5.765,54.818],[-5.758,54.818],[-5.756,54.817],[-5.751,54.816],[-5.746,54.813],[-5.743,54.812],[-5.741,54.81],[-5.745,54.808],[-5.747,54.808],[-5.75,54.81],[-5.754,54.811],[-5.749,54.808],[-5.746,54.803],[-5.744,54.801],[-5.742,54.798],[-5.737,54.796],[-5.738,54.795],[-5.732,54.789],[-5.731,54.787],[-5.726,54.778],[-5.724,54.776],[-5.724,54.775],[-5.722,54.773],[-5.721,54.774],[-5.722,54.777],[-5.721,54.779],[-5.721,54.782],[-5.72,54.784],[-5.721,54.785],[-5.725,54.785],[-5.725,54.786],[-5.719,54.788],[-5.722,54.793],[-5.726,54.794],[-5.723,54.796],[-5.724,54.8],[-5.729,54.804],[-5.731,54.805],[-5.731,54.81],[-5.735,54.812],[-5.734,54.813],[-5.739,54.816],[-5.744,54.816],[-5.743,54.817],[-5.745,54.819],[-5.751,54.821],[-5.753,54.824],[-5.75,54.824],[-5.751,54.826],[-5.759,54.828],[-5.759,54.829],[-5.768,54.831],[-5.775,54.839],[-5.779,54.84],[-5.786,54.842],[-5.789,54.845],[-5.79,54.848],[-5.789,54.851],[-5.786,54.851],[-5.781,54.852],[-5.782,54.855],[-5.78,54.859],[-5.774,54.856],[-5.771,54.853],[-5.768,54.853],[-5.762,54.854],[-5.762,54.857],[-5.763,54.858],[-5.761,54.859],[-5.758,54.858],[-5.746,54.855],[-5.74,54.853],[-5.728,54.848],[-5.724,54.848],[-5.721,54.845],[-5.718,54.842],[-5.713,54.838],[-5.699,54.819],[-5.696,54.815],[-5.692,54.811],[-5.689,54.802],[-5.691,54.79],[-5.691,54.784],[-5.694,54.778],[-5.693,54.774],[-5.691,54.77],[-5.688,54.768],[-5.689,54.767],[-5.692,54.766],[-5.694,54.764],[-5.699,54.759],[-5.702,54.758],[-5.702,54.756],[-5.705,54.755],[-5.707,54.753],[-5.709,54.749],[-5.709,54.746],[-5.711,54.744],[-5.714,54.743],[-5.724,54.739],[-5.732,54.737],[-5.74,54.733],[-5.744,54.727],[-5.746,54.726],[-5.757,54.724],[-5.78,54.723],[-5.788,54.721],[-5.793,54.719],[-5.801,54.716],[-5.811,54.71],[-5.82,54.71],[-5.823,54.709],[-5.838,54.705],[-5.842,54.702],[-5.85,54.699],[-5.851,54.698],[-5.85,54.696],[-5.855,54.696],[-5.861,54.693],[-5.862,54.692],[-5.871,54.687],[-5.873,54.686],[-5.88,54.683],[-5.883,54.681],[-5.888,54.679],[-5.894,54.675],[-5.898,54.672],[-5.898,54.669],[-5.899,54.666],[-5.901,54.664],[-5.901,54.662],[-5.9,54.66],[-5.903,54.659],[-5.904,54.656],[-5.912,54.65],[-5.915,54.646],[-5.915,54.642],[-5.913,54.643],[-5.905,54.642],[-5.904,54.641],[-5.902,54.641],[-5.902,54.639],[-5.899,54.639],[-5.901,54.635],[-5.907,54.635],[-5.907,54.633],[-5.906,54.632],[-5.906,54.63],[-5.899,54.63],[-5.896,54.633],[-5.88,54.64],[-5.877,54.639],[-5.879,54.637],[-5.886,54.631],[-5.89,54.629],[-5.895,54.626],[-5.899,54.624],[-5.907,54.621],[-5.909,54.621],[-5.914,54.617],[-5.916,54.615],[-5.914,54.614],[-5.908,54.619],[-5.903,54.621],[-5.898,54.622],[-5.906,54.616],[-5.908,54.615],[-5.908,54.614],[-5.915,54.612],[-5.913,54.611],[-5.911,54.611],[-5.92,54.605],[-5.921,54.603],[-5.919,54.602],[-5.916,54.605],[-5.913,54.604],[-5.912,54.606],[-5.915,54.607],[-5.909,54.611],[-5.907,54.611],[-5.906,54.613],[-5.903,54.612],[-5.901,54.616],[-5.896,54.616],[-5.894,54.621],[-5.892,54.623],[-5.89,54.622],[-5.889,54.62],[-5.891,54.616],[-5.898,54.61],[-5.904,54.606],[-5.903,54.606],[-5.896,54.61],[-5.892,54.61],[-5.891,54.613],[-5.887,54.612],[-5.887,54.62],[-5.885,54.626],[-5.883,54.628],[-5.881,54.628],[-5.877,54.632],[-5.873,54.636],[-5.858,54.634],[-5.855,54.634],[-5.853,54.636],[-5.85,54.638],[-5.848,54.64],[-5.845,54.641],[-5.839,54.642],[-5.837,54.643],[-5.832,54.645],[-5.824,54.649],[-5.822,54.652],[-5.819,54.652],[-5.818,54.654],[-5.812,54.656],[-5.811,54.657],[-5.804,54.66],[-5.801,54.66],[-5.798,54.661],[-5.792,54.662],[-5.788,54.663],[-5.78,54.665],[-5.777,54.666],[-5.774,54.666],[-5.771,54.668],[-5.767,54.669],[-5.763,54.67],[-5.762,54.671],[-5.756,54.672],[-5.753,54.674],[-5.75,54.674],[-5.746,54.676],[-5.741,54.678],[-5.738,54.676],[-5.739,54.674],[-5.734,54.672],[-5.73,54.673],[-5.729,54.671],[-5.72,54.667],[-5.716,54.668],[-5.713,54.667],[-5.712,54.668],[-5.708,54.668],[-5.703,54.668],[-5.698,54.668],[-5.694,54.667],[-5.694,54.666],[-5.69,54.667],[-5.688,54.668],[-5.679,54.669],[-5.675,54.666],[-5.674,54.663],[-5.67,54.663],[-5.669,54.666],[-5.666,54.667],[-5.664,54.666],[-5.663,54.668],[-5.661,54.67],[-5.655,54.671],[-5.653,54.669],[-5.652,54.666],[-5.646,54.666],[-5.64,54.667],[-5.636,54.67],[-5.635,54.672],[-5.641,54.682],[-5.624,54.683],[-5.623,54.68],[-5.612,54.678],[-5.6,54.681],[-5.593,54.677],[-5.586,54.68],[-5.577,54.676],[-5.571,54.668],[-5.556,54.658],[-5.552,54.656],[-5.547,54.655],[-5.543,54.653],[-5.541,54.647],[-5.538,54.644],[-5.534,54.643],[-5.532,54.644],[-5.53,54.642],[-5.529,54.636],[-5.532,54.634],[-5.533,54.627],[-5.534,54.622],[-5.532,54.62],[-5.532,54.617],[-5.531,54.615],[-5.528,54.612],[-5.527,54.609],[-5.525,54.605],[-5.524,54.604],[-5.521,54.598],[-5.519,54.596],[-5.51,54.592],[-5.506,54.59],[-5.505,54.587],[-5.504,54.581],[-5.502,54.58],[-5.499,54.579],[-5.493,54.578],[-5.489,54.577],[-5.487,54.573],[-5.479,54.568],[-5.478,54.563],[-5.478,54.56],[-5.481,54.555],[-5.484,54.551],[-5.485,54.547],[-5.484,54.544],[-5.482,54.543],[-5.484,54.539],[-5.484,54.534],[-5.471,54.527],[-5.472,54.523],[-5.47,54.516],[-5.466,54.514],[-5.466,54.506],[-5.462,54.498],[-5.448,54.491],[-5.439,54.491],[-5.435,54.49],[-5.431,54.487]]]]},"properties":{"OBJECTID":12,"NAME":"BT","KEY":"BT","Shape_Leng":23.9804,"Shape_Area":1.89312}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.072,54.977],[-3.074,54.975],[-3.077,54.973],[-3.082,54.973],[-3.086,54.973],[-3.088,54.974],[-3.084,54.976],[-3.072,54.977]]],[[[-2.295,54.377],[-2.316,54.366],[-2.324,54.362],[-2.335,54.36],[-2.338,54.359],[-2.337,54.358],[-2.336,54.354],[-2.351,54.352],[-2.358,54.354],[-2.378,54.357],[-2.396,54.345],[-2.406,54.337],[-2.425,54.339],[-2.434,54.357],[-2.439,54.361],[-2.447,54.365],[-2.454,54.373],[-2.453,54.374],[-2.447,54.376],[-2.447,54.378],[-2.454,54.384],[-2.454,54.385],[-2.495,54.401],[-2.506,54.4],[-2.519,54.394],[-2.528,54.394],[-2.529,54.393],[-2.574,54.382],[-2.575,54.383],[-2.579,54.382],[-2.584,54.386],[-2.599,54.396],[-2.602,54.399],[-2.604,54.404],[-2.604,54.408],[-2.606,54.407],[-2.606,54.405],[-2.606,54.399],[-2.604,54.395],[-2.599,54.393],[-2.603,54.393],[-2.633,54.407],[-2.635,54.406],[-2.635,54.401],[-2.643,54.391],[-2.65,54.391],[-2.653,54.393],[-2.659,54.401],[-2.665,54.402],[-2.671,54.412],[-2.669,54.421],[-2.676,54.424],[-2.691,54.432],[-2.691,54.433],[-2.687,54.439],[-2.688,54.443],[-2.69,54.446],[-2.69,54.451],[-2.691,54.456],[-2.69,54.46],[-2.719,54.457],[-2.742,54.465],[-2.754,54.459],[-2.779,54.46],[-2.812,54.466],[-2.816,54.468],[-2.826,54.478],[-2.836,54.49],[-2.842,54.492],[-2.879,54.483],[-2.885,54.481],[-2.906,54.485],[-2.917,54.486],[-2.924,54.487],[-2.923,54.482],[-2.922,54.478],[-2.923,54.472],[-2.953,54.475],[-2.963,54.475],[-2.976,54.48],[-2.981,54.484],[-2.984,54.488],[-3,54.492],[-3.021,54.504],[-3.042,54.501],[-3.041,54.498],[-3.039,54.495],[-3.05,54.492],[-3.066,54.489],[-3.071,54.488],[-3.082,54.487],[-3.091,54.477],[-3.093,54.476],[-3.114,54.47],[-3.13,54.468],[-3.157,54.466],[-3.182,54.457],[-3.189,54.446],[-3.19,54.443],[-3.177,54.431],[-3.15,54.407],[-3.152,54.407],[-3.156,54.407],[-3.159,54.406],[-3.162,54.405],[-3.164,54.406],[-3.166,54.406],[-3.176,54.404],[-3.181,54.403],[-3.189,54.403],[-3.199,54.403],[-3.203,54.402],[-3.202,54.396],[-3.212,54.385],[-3.227,54.378],[-3.23,54.376],[-3.23,54.372],[-3.234,54.364],[-3.238,54.362],[-3.264,54.356],[-3.26,54.354],[-3.252,54.349],[-3.264,54.342],[-3.274,54.34],[-3.284,54.337],[-3.302,54.335],[-3.308,54.341],[-3.312,54.346],[-3.318,54.351],[-3.339,54.352],[-3.346,54.35],[-3.35,54.348],[-3.353,54.343],[-3.353,54.341],[-3.35,54.338],[-3.358,54.331],[-3.361,54.336],[-3.364,54.338],[-3.365,54.337],[-3.368,54.338],[-3.371,54.342],[-3.37,54.343],[-3.366,54.344],[-3.367,54.345],[-3.365,54.349],[-3.369,54.349],[-3.371,54.353],[-3.384,54.348],[-3.385,54.349],[-3.392,54.345],[-3.395,54.343],[-3.396,54.34],[-3.405,54.337],[-3.413,54.337],[-3.416,54.342],[-3.421,54.346],[-3.432,54.348],[-3.44,54.348],[-3.449,54.356],[-3.458,54.363],[-3.463,54.368],[-3.465,54.37],[-3.472,54.376],[-3.473,54.383],[-3.476,54.387],[-3.481,54.388],[-3.484,54.39],[-3.49,54.392],[-3.496,54.397],[-3.504,54.403],[-3.512,54.408],[-3.515,54.41],[-3.518,54.413],[-3.524,54.418],[-3.525,54.42],[-3.527,54.421],[-3.53,54.423],[-3.533,54.425],[-3.535,54.428],[-3.537,54.429],[-3.541,54.431],[-3.544,54.436],[-3.549,54.439],[-3.55,54.441],[-3.552,54.441],[-3.556,54.445],[-3.562,54.448],[-3.566,54.449],[-3.566,54.45],[-3.57,54.453],[-3.573,54.456],[-3.58,54.461],[-3.583,54.465],[-3.585,54.466],[-3.585,54.467],[-3.59,54.473],[-3.591,54.474],[-3.593,54.474],[-3.598,54.481],[-3.609,54.488],[-3.613,54.49],[-3.62,54.49],[-3.623,54.494],[-3.625,54.497],[-3.628,54.501],[-3.631,54.504],[-3.634,54.504],[-3.637,54.507],[-3.637,54.509],[-3.639,54.512],[-3.641,54.516],[-3.639,54.518],[-3.636,54.519],[-3.627,54.521],[-3.623,54.523],[-3.615,54.525],[-3.612,54.528],[-3.61,54.53],[-3.607,54.533],[-3.604,54.543],[-3.603,54.545],[-3.601,54.549],[-3.6,54.55],[-3.599,54.553],[-3.594,54.553],[-3.592,54.555],[-3.592,54.56],[-3.59,54.562],[-3.585,54.565],[-3.585,54.571],[-3.586,54.576],[-3.584,54.578],[-3.584,54.582],[-3.585,54.585],[-3.584,54.588],[-3.584,54.591],[-3.58,54.595],[-3.578,54.599],[-3.575,54.602],[-3.574,54.608],[-3.572,54.609],[-3.572,54.613],[-3.573,54.613],[-3.575,54.618],[-3.574,54.621],[-3.573,54.623],[-3.573,54.627],[-3.577,54.634],[-3.578,54.639],[-3.577,54.641],[-3.578,54.644],[-3.578,54.646],[-3.58,54.652],[-3.576,54.655],[-3.572,54.655],[-3.567,54.657],[-3.564,54.66],[-3.563,54.663],[-3.56,54.666],[-3.556,54.667],[-3.554,54.669],[-3.554,54.674],[-3.551,54.676],[-3.551,54.679],[-3.55,54.679],[-3.544,54.682],[-3.54,54.683],[-3.533,54.688],[-3.53,54.69],[-3.531,54.691],[-3.528,54.693],[-3.526,54.693],[-3.524,54.696],[-3.52,54.698],[-3.517,54.703],[-3.514,54.71],[-3.514,54.713],[-3.512,54.718],[-3.508,54.72],[-3.501,54.726],[-3.5,54.727],[-3.495,54.73],[-3.488,54.733],[-3.485,54.735],[-3.481,54.737],[-3.475,54.742],[-3.472,54.743],[-3.468,54.745],[-3.463,54.747],[-3.461,54.748],[-3.451,54.755],[-3.447,54.758],[-3.443,54.763],[-3.442,54.769],[-3.441,54.773],[-3.44,54.775],[-3.441,54.779],[-3.442,54.785],[-3.443,54.787],[-3.446,54.79],[-3.446,54.791],[-3.448,54.792],[-3.447,54.797],[-3.448,54.799],[-3.445,54.801],[-3.444,54.803],[-3.444,54.805],[-3.443,54.809],[-3.446,54.808],[-3.45,54.809],[-3.458,54.809],[-3.456,54.814],[-3.457,54.817],[-3.456,54.818],[-3.451,54.82],[-3.452,54.82],[-3.456,54.819],[-3.458,54.817],[-3.458,54.816],[-3.457,54.814],[-3.459,54.811],[-3.461,54.812],[-3.463,54.816],[-3.464,54.818],[-3.466,54.821],[-3.466,54.823],[-3.46,54.827],[-3.457,54.83],[-3.454,54.831],[-3.452,54.833],[-3.446,54.835],[-3.443,54.839],[-3.435,54.843],[-3.432,54.846],[-3.426,54.851],[-3.425,54.853],[-3.418,54.858],[-3.415,54.861],[-3.413,54.863],[-3.411,54.865],[-3.402,54.869],[-3.395,54.871],[-3.39,54.874],[-3.385,54.878],[-3.383,54.881],[-3.378,54.885],[-3.372,54.89],[-3.364,54.895],[-3.358,54.901],[-3.356,54.902],[-3.355,54.905],[-3.351,54.91],[-3.35,54.911],[-3.34,54.918],[-3.338,54.919],[-3.332,54.923],[-3.333,54.925],[-3.329,54.928],[-3.328,54.928],[-3.323,54.932],[-3.319,54.936],[-3.316,54.939],[-3.311,54.943],[-3.312,54.944],[-3.31,54.947],[-3.317,54.951],[-3.321,54.95],[-3.327,54.945],[-3.331,54.943],[-3.334,54.943],[-3.339,54.945],[-3.339,54.946],[-3.337,54.947],[-3.332,54.949],[-3.326,54.951],[-3.313,54.957],[-3.308,54.959],[-3.3,54.96],[-3.286,54.961],[-3.279,54.959],[-3.275,54.959],[-3.253,54.957],[-3.251,54.956],[-3.253,54.955],[-3.253,54.953],[-3.252,54.952],[-3.245,54.953],[-3.232,54.955],[-3.215,54.957],[-3.213,54.959],[-3.218,54.958],[-3.219,54.96],[-3.203,54.961],[-3.187,54.96],[-3.183,54.958],[-3.177,54.958],[-3.173,54.954],[-3.166,54.95],[-3.159,54.941],[-3.154,54.938],[-3.151,54.933],[-3.145,54.932],[-3.14,54.929],[-3.134,54.928],[-3.125,54.93],[-3.122,54.929],[-3.116,54.928],[-3.112,54.927],[-3.107,54.928],[-3.102,54.93],[-3.099,54.932],[-3.096,54.933],[-3.09,54.934],[-3.082,54.937],[-3.072,54.939],[-3.068,54.941],[-3.064,54.944],[-3.064,54.947],[-3.063,54.948],[-3.058,54.947],[-3.056,54.947],[-3.048,54.947],[-3.039,54.944],[-3.033,54.943],[-3.027,54.944],[-3.023,54.946],[-3.015,54.946],[-3.006,54.945],[-3.005,54.943],[-3.002,54.94],[-3.002,54.937],[-3.003,54.934],[-3.006,54.931],[-3.004,54.931],[-3,54.933],[-2.998,54.936],[-2.998,54.939],[-3.003,54.945],[-3.008,54.947],[-3.015,54.948],[-3.018,54.948],[-3.025,54.947],[-3.03,54.946],[-3.038,54.946],[-3.042,54.948],[-3.048,54.952],[-3.051,54.953],[-3.057,54.952],[-3.06,54.95],[-3.063,54.95],[-3.067,54.949],[-3.067,54.947],[-3.07,54.945],[-3.073,54.942],[-3.079,54.94],[-3.084,54.939],[-3.093,54.939],[-3.097,54.937],[-3.103,54.931],[-3.108,54.93],[-3.113,54.93],[-3.117,54.931],[-3.116,54.932],[-3.114,54.934],[-3.121,54.933],[-3.127,54.932],[-3.136,54.932],[-3.14,54.932],[-3.146,54.935],[-3.149,54.936],[-3.152,54.938],[-3.157,54.943],[-3.162,54.949],[-3.166,54.952],[-3.164,54.953],[-3.159,54.951],[-3.153,54.95],[-3.149,54.951],[-3.143,54.95],[-3.136,54.95],[-3.129,54.951],[-3.121,54.956],[-3.119,54.96],[-3.12,54.962],[-3.123,54.962],[-3.124,54.963],[-3.118,54.968],[-3.116,54.971],[-3.113,54.974],[-3.11,54.975],[-3.104,54.976],[-3.101,54.976],[-3.097,54.974],[-3.093,54.971],[-3.09,54.972],[-3.087,54.971],[-3.085,54.971],[-3.082,54.971],[-3.075,54.972],[-3.072,54.974],[-3.069,54.98],[-3.067,54.981],[-3.066,54.982],[-3.062,54.984],[-3.056,54.984],[-3.051,54.982],[-3.046,54.977],[-3.042,54.977],[-3.04,54.976],[-3.039,54.972],[-3.039,54.969],[-3.035,54.968],[-3.031,54.969],[-3.021,54.971],[-3.011,54.973],[-3.008,54.975],[-3.01,54.976],[-3.013,54.974],[-3.025,54.971],[-3.03,54.971],[-3.035,54.97],[-3.037,54.971],[-3.037,54.974],[-3.038,54.976],[-3.04,54.977],[-3.03,54.98],[-3.027,54.98],[-3.026,54.982],[-3.037,54.989],[-3.031,54.991],[-3.03,54.994],[-3.039,54.997],[-3.034,54.999],[-3.024,55],[-3.018,55.001],[-3.021,55.007],[-3.022,55.013],[-3.025,55.015],[-3.045,55.014],[-3.045,55.015],[-3.044,55.017],[-3.042,55.023],[-3.038,55.024],[-3.037,55.027],[-3.035,55.027],[-3.03,55.032],[-3.025,55.032],[-3.018,55.035],[-3.022,55.037],[-3.025,55.037],[-3.026,55.036],[-3.036,55.04],[-3.036,55.041],[-3.042,55.043],[-3.045,55.043],[-3.048,55.046],[-3.049,55.049],[-3.06,55.05],[-3.064,55.05],[-3.064,55.051],[-3.055,55.052],[-3.054,55.052],[-3.052,55.056],[-3.046,55.052],[-3.042,55.052],[-3.041,55.05],[-3.037,55.052],[-3.028,55.055],[-3.022,55.056],[-3.017,55.054],[-3.004,55.052],[-3.004,55.051],[-2.994,55.048],[-2.986,55.05],[-2.977,55.053],[-2.977,55.056],[-2.971,55.054],[-2.96,55.055],[-2.961,55.054],[-2.953,55.053],[-2.951,55.056],[-2.946,55.058],[-2.944,55.06],[-2.938,55.061],[-2.937,55.062],[-2.938,55.066],[-2.938,55.069],[-2.94,55.073],[-2.935,55.077],[-2.929,55.078],[-2.924,55.079],[-2.918,55.08],[-2.908,55.074],[-2.906,55.074],[-2.904,55.08],[-2.904,55.084],[-2.901,55.085],[-2.901,55.089],[-2.892,55.092],[-2.895,55.094],[-2.886,55.096],[-2.883,55.096],[-2.878,55.096],[-2.875,55.101],[-2.869,55.101],[-2.868,55.101],[-2.868,55.106],[-2.865,55.108],[-2.859,55.106],[-2.85,55.107],[-2.845,55.11],[-2.835,55.111],[-2.832,55.113],[-2.835,55.119],[-2.83,55.123],[-2.828,55.127],[-2.826,55.127],[-2.817,55.13],[-2.82,55.134],[-2.819,55.135],[-2.816,55.134],[-2.815,55.136],[-2.812,55.136],[-2.813,55.138],[-2.811,55.14],[-2.808,55.145],[-2.808,55.149],[-2.803,55.145],[-2.802,55.145],[-2.795,55.132],[-2.795,55.13],[-2.794,55.121],[-2.798,55.118],[-2.8,55.111],[-2.799,55.109],[-2.798,55.108],[-2.79,55.104],[-2.781,55.095],[-2.775,55.094],[-2.774,55.094],[-2.764,55.091],[-2.761,55.092],[-2.759,55.093],[-2.753,55.093],[-2.753,55.095],[-2.748,55.095],[-2.747,55.094],[-2.743,55.099],[-2.743,55.101],[-2.746,55.108],[-2.731,55.112],[-2.73,55.116],[-2.658,55.128],[-2.652,55.13],[-2.649,55.127],[-2.642,55.121],[-2.561,55.118],[-2.54,55.121],[-2.535,55.118],[-2.526,55.115],[-2.51,55.113],[-2.471,55.107],[-2.457,55.098],[-2.451,55.08],[-2.447,55.064],[-2.451,55.06],[-2.475,55.047],[-2.478,55.033],[-2.482,55.029],[-2.479,55.019],[-2.484,55.013],[-2.481,55.003],[-2.484,55.001],[-2.482,54.99],[-2.488,54.988],[-2.496,54.985],[-2.495,54.982],[-2.499,54.981],[-2.51,54.982],[-2.508,54.98],[-2.508,54.975],[-2.512,54.974],[-2.513,54.971],[-2.529,54.977],[-2.533,54.98],[-2.535,54.98],[-2.514,54.971],[-2.516,54.969],[-2.515,54.968],[-2.518,54.967],[-2.512,54.961],[-2.512,54.958],[-2.517,54.957],[-2.516,54.955],[-2.531,54.952],[-2.533,54.949],[-2.539,54.947],[-2.546,54.948],[-2.546,54.94],[-2.548,54.939],[-2.552,54.937],[-2.546,54.933],[-2.54,54.936],[-2.531,54.934],[-2.525,54.934],[-2.525,54.932],[-2.519,54.932],[-2.512,54.933],[-2.51,54.931],[-2.507,54.931],[-2.507,54.93],[-2.51,54.926],[-2.511,54.924],[-2.511,54.92],[-2.507,54.919],[-2.505,54.919],[-2.503,54.918],[-2.502,54.912],[-2.5,54.91],[-2.497,54.906],[-2.499,54.904],[-2.492,54.904],[-2.492,54.903],[-2.475,54.901],[-2.464,54.905],[-2.459,54.905],[-2.436,54.894],[-2.436,54.893],[-2.449,54.877],[-2.432,54.862],[-2.408,54.864],[-2.396,54.861],[-2.394,54.862],[-2.388,54.863],[-2.383,54.864],[-2.38,54.854],[-2.383,54.846],[-2.384,54.845],[-2.383,54.84],[-2.38,54.837],[-2.371,54.834],[-2.364,54.832],[-2.363,54.83],[-2.362,54.82],[-2.36,54.819],[-2.334,54.819],[-2.328,54.811],[-2.333,54.806],[-2.324,54.796],[-2.322,54.794],[-2.322,54.791],[-2.327,54.788],[-2.329,54.785],[-2.318,54.784],[-2.317,54.784],[-2.312,54.773],[-2.316,54.768],[-2.32,54.766],[-2.321,54.755],[-2.319,54.748],[-2.322,54.744],[-2.317,54.733],[-2.347,54.719],[-2.344,54.718],[-2.341,54.717],[-2.34,54.714],[-2.342,54.712],[-2.343,54.702],[-2.384,54.697],[-2.415,54.692],[-2.411,54.674],[-2.372,54.659],[-2.372,54.639],[-2.338,54.618],[-2.329,54.611],[-2.303,54.612],[-2.27,54.583],[-2.27,54.573],[-2.271,54.572],[-2.254,54.563],[-2.25,54.562],[-2.216,54.565],[-2.211,54.565],[-2.205,54.564],[-2.193,54.555],[-2.2,54.539],[-2.147,54.524],[-2.136,54.516],[-2.14,54.505],[-2.156,54.506],[-2.163,54.507],[-2.164,54.503],[-2.207,54.491],[-2.214,54.491],[-2.213,54.488],[-2.211,54.486],[-2.21,54.482],[-2.203,54.477],[-2.195,54.474],[-2.225,54.465],[-2.232,54.462],[-2.236,54.45],[-2.241,54.446],[-2.241,54.441],[-2.247,54.432],[-2.302,54.435],[-2.304,54.427],[-2.303,54.423],[-2.299,54.415],[-2.303,54.41],[-2.306,54.405],[-2.307,54.399],[-2.303,54.388],[-2.3,54.382],[-2.295,54.377]],[[-3.193,54.631],[-3.196,54.631],[-3.198,54.632],[-3.197,54.633],[-3.193,54.635],[-3.193,54.636],[-3.196,54.639],[-3.198,54.64],[-3.201,54.644],[-3.202,54.646],[-3.204,54.648],[-3.208,54.649],[-3.21,54.65],[-3.206,54.652],[-3.205,54.653],[-3.207,54.654],[-3.212,54.653],[-3.216,54.658],[-3.214,54.661],[-3.217,54.663],[-3.22,54.663],[-3.221,54.666],[-3.223,54.667],[-3.223,54.669],[-3.224,54.671],[-3.228,54.673],[-3.23,54.675],[-3.233,54.678],[-3.237,54.678],[-3.241,54.678],[-3.241,54.677],[-3.239,54.675],[-3.24,54.672],[-3.242,54.67],[-3.241,54.667],[-3.234,54.666],[-3.23,54.664],[-3.228,54.66],[-3.226,54.656],[-3.22,54.65],[-3.217,54.646],[-3.217,54.644],[-3.213,54.639],[-3.206,54.634],[-3.203,54.629],[-3.201,54.627],[-3.197,54.627],[-3.196,54.629],[-3.193,54.631]],[[-3.132,54.58],[-3.133,54.582],[-3.137,54.583],[-3.137,54.585],[-3.136,54.588],[-3.137,54.589],[-3.142,54.589],[-3.142,54.594],[-3.143,54.595],[-3.146,54.594],[-3.15,54.595],[-3.147,54.597],[-3.15,54.599],[-3.154,54.598],[-3.157,54.598],[-3.157,54.596],[-3.155,54.595],[-3.157,54.592],[-3.155,54.59],[-3.155,54.589],[-3.158,54.584],[-3.158,54.582],[-3.161,54.583],[-3.161,54.58],[-3.162,54.577],[-3.159,54.577],[-3.158,54.574],[-3.157,54.573],[-3.159,54.572],[-3.159,54.57],[-3.16,54.566],[-3.155,54.562],[-3.151,54.561],[-3.152,54.559],[-3.148,54.559],[-3.147,54.56],[-3.144,54.562],[-3.143,54.564],[-3.141,54.564],[-3.139,54.562],[-3.135,54.566],[-3.137,54.569],[-3.136,54.571],[-3.133,54.572],[-3.133,54.576],[-3.134,54.579],[-3.132,54.58]],[[-2.826,54.61],[-2.831,54.611],[-2.833,54.61],[-2.84,54.605],[-2.842,54.604],[-2.849,54.6],[-2.85,54.599],[-2.853,54.597],[-2.853,54.594],[-2.857,54.593],[-2.859,54.59],[-2.859,54.588],[-2.863,54.584],[-2.865,54.584],[-2.865,54.582],[-2.867,54.58],[-2.871,54.58],[-2.875,54.581],[-2.878,54.581],[-2.888,54.578],[-2.897,54.576],[-2.903,54.575],[-2.913,54.573],[-2.917,54.572],[-2.921,54.572],[-2.923,54.571],[-2.925,54.569],[-2.929,54.569],[-2.934,54.568],[-2.937,54.565],[-2.943,54.564],[-2.947,54.563],[-2.947,54.558],[-2.947,54.554],[-2.946,54.551],[-2.947,54.548],[-2.947,54.546],[-2.945,54.544],[-2.946,54.541],[-2.945,54.54],[-2.941,54.541],[-2.937,54.54],[-2.937,54.542],[-2.94,54.546],[-2.939,54.55],[-2.938,54.552],[-2.939,54.557],[-2.933,54.558],[-2.928,54.56],[-2.921,54.565],[-2.914,54.567],[-2.906,54.568],[-2.905,54.568],[-2.9,54.568],[-2.897,54.569],[-2.896,54.571],[-2.893,54.572],[-2.89,54.571],[-2.887,54.572],[-2.882,54.574],[-2.88,54.574],[-2.878,54.576],[-2.877,54.577],[-2.872,54.575],[-2.87,54.572],[-2.866,54.57],[-2.863,54.571],[-2.861,54.574],[-2.853,54.582],[-2.851,54.585],[-2.848,54.587],[-2.845,54.588],[-2.845,54.591],[-2.846,54.593],[-2.843,54.593],[-2.841,54.596],[-2.839,54.596],[-2.837,54.599],[-2.833,54.6],[-2.832,54.602],[-2.829,54.603],[-2.83,54.604],[-2.826,54.608],[-2.826,54.61]],[[-2.77,54.533],[-2.772,54.536],[-2.783,54.536],[-2.786,54.535],[-2.792,54.531],[-2.795,54.531],[-2.799,54.529],[-2.802,54.526],[-2.807,54.523],[-2.81,54.52],[-2.813,54.517],[-2.819,54.511],[-2.819,54.51],[-2.819,54.503],[-2.816,54.501],[-2.823,54.499],[-2.824,54.498],[-2.819,54.497],[-2.812,54.497],[-2.811,54.496],[-2.814,54.495],[-2.82,54.493],[-2.825,54.489],[-2.822,54.489],[-2.814,54.493],[-2.809,54.496],[-2.808,54.497],[-2.808,54.499],[-2.809,54.503],[-2.808,54.506],[-2.806,54.512],[-2.802,54.517],[-2.8,54.519],[-2.795,54.524],[-2.786,54.529],[-2.785,54.53],[-2.78,54.531],[-2.773,54.532],[-2.77,54.533]]]]},"properties":{"OBJECTID":13,"NAME":"CA","KEY":"CA","Shape_Leng":7.14651,"Shape_Area":0.716712}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.454,52.021],[0.449,52.021],[0.445,52.022],[0.439,52.024],[0.432,52.023],[0.427,52.024],[0.421,52.021],[0.42,52.017],[0.422,52.011],[0.416,52.011],[0.415,52.008],[0.415,52.003],[0.415,52.002],[0.414,51.999],[0.415,51.997],[0.418,51.998],[0.422,51.998],[0.425,51.998],[0.424,51.993],[0.427,51.994],[0.432,51.992],[0.43,51.989],[0.423,51.988],[0.424,51.983],[0.429,51.98],[0.43,51.976],[0.427,51.973],[0.424,51.975],[0.42,51.972],[0.412,51.973],[0.404,51.977],[0.401,51.977],[0.399,51.973],[0.4,51.971],[0.399,51.969],[0.396,51.965],[0.391,51.965],[0.384,51.965],[0.384,51.967],[0.38,51.967],[0.374,51.962],[0.37,51.963],[0.369,51.967],[0.372,51.972],[0.368,51.974],[0.366,51.973],[0.365,51.971],[0.361,51.97],[0.357,51.967],[0.351,51.964],[0.35,51.964],[0.355,51.967],[0.357,51.969],[0.351,51.973],[0.35,51.972],[0.343,51.973],[0.342,51.972],[0.333,51.971],[0.333,51.973],[0.331,51.973],[0.326,51.974],[0.322,51.975],[0.316,51.971],[0.314,51.971],[0.311,51.967],[0.31,51.964],[0.304,51.962],[0.305,51.961],[0.301,51.958],[0.296,51.958],[0.291,51.958],[0.292,51.953],[0.289,51.953],[0.286,51.949],[0.281,51.952],[0.28,51.95],[0.278,51.95],[0.274,51.95],[0.272,51.951],[0.268,51.953],[0.266,51.949],[0.261,51.945],[0.252,51.947],[0.25,51.946],[0.242,51.944],[0.229,51.94],[0.233,51.943],[0.233,51.945],[0.228,51.945],[0.218,51.947],[0.217,51.945],[0.22,51.942],[0.217,51.94],[0.211,51.943],[0.199,51.94],[0.198,51.938],[0.195,51.938],[0.188,51.936],[0.178,51.936],[0.177,51.937],[0.177,51.94],[0.166,51.951],[0.165,51.956],[0.16,51.955],[0.159,51.954],[0.152,51.951],[0.147,51.949],[0.142,51.951],[0.139,51.955],[0.131,51.954],[0.122,51.958],[0.117,51.958],[0.116,51.958],[0.115,51.956],[0.11,51.954],[0.107,51.958],[0.104,51.961],[0.101,51.962],[0.099,51.967],[0.101,51.97],[0.1,51.972],[0.101,51.974],[0.104,51.977],[0.097,51.981],[0.092,51.982],[0.09,51.981],[0.079,51.984],[0.079,51.986],[0.071,51.99],[0.073,51.993],[0.082,51.999],[0.083,52.004],[0.087,52.003],[0.1,52.007],[0.104,52.01],[0.112,52.01],[0.115,52.012],[0.116,52.022],[0.12,52.021],[0.124,52.021],[0.125,52.026],[0.123,52.028],[0.12,52.031],[0.119,52.033],[0.117,52.036],[0.12,52.039],[0.124,52.042],[0.126,52.044],[0.129,52.049],[0.135,52.051],[0.129,52.055],[0.123,52.058],[0.12,52.06],[0.121,52.062],[0.125,52.065],[0.115,52.071],[0.112,52.073],[0.107,52.074],[0.111,52.078],[0.114,52.081],[0.12,52.083],[0.115,52.088],[0.115,52.09],[0.113,52.09],[0.111,52.093],[0.109,52.095],[0.108,52.099],[0.117,52.102],[0.118,52.105],[0.104,52.113],[0.099,52.113],[0.098,52.115],[0.097,52.115],[0.091,52.111],[0.086,52.106],[0.084,52.104],[0.083,52.1],[0.08,52.097],[0.078,52.1],[0.073,52.099],[0.067,52.104],[0.063,52.105],[0.058,52.101],[0.054,52.103],[0.043,52.108],[0.047,52.112],[0.052,52.115],[0.054,52.118],[0.054,52.119],[0.048,52.118],[0.043,52.12],[0.034,52.121],[0.028,52.123],[0.022,52.122],[0.023,52.121],[0.019,52.119],[0.02,52.123],[0.012,52.119],[0.009,52.121],[0,52.125],[0.01,52.132],[0.012,52.136],[0.013,52.136],[0.011,52.142],[0.003,52.146],[0.006,52.148],[0.004,52.149],[-0.008,52.15],[-0.01,52.152],[-0.024,52.153],[-0.03,52.157],[-0.031,52.163],[-0.035,52.165],[-0.043,52.167],[-0.051,52.174],[-0.059,52.176],[-0.063,52.171],[-0.065,52.168],[-0.067,52.167],[-0.075,52.167],[-0.072,52.16],[-0.079,52.159],[-0.091,52.155],[-0.093,52.149],[-0.098,52.144],[-0.1,52.144],[-0.115,52.148],[-0.112,52.159],[-0.114,52.16],[-0.114,52.163],[-0.113,52.166],[-0.12,52.166],[-0.104,52.175],[-0.105,52.177],[-0.109,52.178],[-0.111,52.186],[-0.11,52.191],[-0.104,52.194],[-0.108,52.197],[-0.103,52.201],[-0.106,52.204],[-0.114,52.21],[-0.115,52.211],[-0.113,52.213],[-0.124,52.223],[-0.124,52.228],[-0.113,52.228],[-0.11,52.228],[-0.107,52.234],[-0.117,52.235],[-0.122,52.238],[-0.125,52.243],[-0.129,52.244],[-0.132,52.243],[-0.134,52.244],[-0.146,52.252],[-0.147,52.254],[-0.154,52.257],[-0.154,52.258],[-0.16,52.262],[-0.163,52.264],[-0.151,52.269],[-0.147,52.271],[-0.146,52.272],[-0.133,52.27],[-0.127,52.262],[-0.124,52.257],[-0.121,52.258],[-0.121,52.26],[-0.111,52.266],[-0.106,52.266],[-0.102,52.27],[-0.089,52.274],[-0.086,52.274],[-0.085,52.277],[-0.084,52.279],[-0.079,52.286],[-0.068,52.289],[-0.066,52.288],[-0.06,52.288],[-0.056,52.292],[-0.058,52.293],[-0.055,52.297],[-0.054,52.301],[-0.058,52.304],[-0.056,52.31],[-0.046,52.311],[-0.038,52.31],[-0.032,52.308],[-0.029,52.308],[-0.019,52.312],[-0.016,52.313],[-0.013,52.314],[-0.012,52.318],[-0.006,52.323],[-0.003,52.324],[-0.005,52.33],[0.004,52.33],[0.01,52.33],[0.016,52.331],[0.024,52.337],[0.031,52.337],[0.036,52.338],[0.039,52.34],[0.046,52.34],[0.057,52.346],[0.054,52.348],[0.054,52.351],[0.052,52.354],[0.053,52.354],[0.051,52.357],[0.045,52.353],[0.039,52.354],[0.046,52.36],[0.058,52.369],[0.054,52.37],[0.049,52.372],[0.04,52.373],[0.039,52.382],[0.038,52.382],[0.049,52.393],[0.051,52.395],[0.054,52.399],[0.048,52.404],[0.047,52.406],[0.044,52.409],[0.047,52.416],[0.056,52.418],[0.058,52.42],[0.059,52.423],[0.065,52.422],[0.075,52.417],[0.086,52.416],[0.088,52.421],[0.084,52.427],[0.089,52.429],[0.082,52.434],[0.088,52.437],[0.093,52.438],[0.099,52.435],[0.103,52.434],[0.105,52.432],[0.117,52.436],[0.12,52.441],[0.122,52.441],[0.127,52.434],[0.131,52.429],[0.135,52.428],[0.163,52.45],[0.202,52.481],[0.207,52.478],[0.244,52.506],[0.257,52.5],[0.264,52.496],[0.268,52.496],[0.266,52.497],[0.267,52.499],[0.268,52.502],[0.269,52.507],[0.276,52.51],[0.277,52.513],[0.284,52.518],[0.294,52.522],[0.296,52.521],[0.302,52.513],[0.31,52.509],[0.315,52.508],[0.322,52.514],[0.327,52.519],[0.33,52.52],[0.338,52.522],[0.338,52.516],[0.35,52.512],[0.351,52.51],[0.356,52.506],[0.361,52.505],[0.368,52.502],[0.365,52.5],[0.364,52.499],[0.351,52.489],[0.356,52.492],[0.36,52.493],[0.359,52.491],[0.367,52.491],[0.367,52.489],[0.366,52.483],[0.373,52.483],[0.389,52.487],[0.393,52.482],[0.389,52.477],[0.387,52.476],[0.385,52.471],[0.384,52.468],[0.382,52.464],[0.387,52.464],[0.393,52.463],[0.402,52.462],[0.406,52.464],[0.415,52.458],[0.428,52.462],[0.429,52.461],[0.433,52.461],[0.444,52.463],[0.448,52.456],[0.436,52.448],[0.429,52.444],[0.435,52.433],[0.409,52.43],[0.413,52.426],[0.413,52.425],[0.407,52.421],[0.401,52.421],[0.392,52.413],[0.397,52.404],[0.395,52.403],[0.38,52.401],[0.384,52.394],[0.385,52.392],[0.383,52.392],[0.378,52.389],[0.387,52.385],[0.391,52.385],[0.393,52.383],[0.39,52.382],[0.388,52.378],[0.394,52.379],[0.399,52.38],[0.403,52.379],[0.408,52.377],[0.408,52.375],[0.412,52.371],[0.405,52.367],[0.403,52.367],[0.403,52.362],[0.396,52.359],[0.401,52.355],[0.405,52.357],[0.407,52.357],[0.413,52.355],[0.415,52.355],[0.419,52.356],[0.427,52.358],[0.429,52.354],[0.428,52.35],[0.434,52.347],[0.435,52.343],[0.432,52.341],[0.433,52.337],[0.43,52.335],[0.428,52.336],[0.425,52.334],[0.422,52.327],[0.421,52.326],[0.424,52.323],[0.425,52.321],[0.427,52.318],[0.431,52.317],[0.437,52.315],[0.44,52.314],[0.441,52.313],[0.449,52.31],[0.451,52.314],[0.461,52.318],[0.463,52.318],[0.475,52.313],[0.468,52.306],[0.467,52.302],[0.468,52.3],[0.465,52.298],[0.464,52.296],[0.472,52.29],[0.474,52.292],[0.479,52.291],[0.483,52.293],[0.485,52.295],[0.489,52.297],[0.491,52.298],[0.493,52.299],[0.497,52.298],[0.501,52.298],[0.503,52.295],[0.498,52.292],[0.499,52.29],[0.508,52.29],[0.51,52.287],[0.514,52.284],[0.514,52.282],[0.525,52.28],[0.533,52.281],[0.535,52.28],[0.538,52.276],[0.524,52.273],[0.523,52.273],[0.539,52.269],[0.539,52.267],[0.539,52.264],[0.54,52.257],[0.536,52.254],[0.528,52.251],[0.537,52.249],[0.533,52.246],[0.532,52.237],[0.537,52.236],[0.548,52.232],[0.548,52.23],[0.554,52.229],[0.557,52.228],[0.561,52.224],[0.561,52.221],[0.558,52.22],[0.558,52.216],[0.569,52.214],[0.567,52.208],[0.565,52.207],[0.562,52.203],[0.566,52.202],[0.571,52.202],[0.572,52.199],[0.572,52.198],[0.578,52.197],[0.58,52.198],[0.586,52.194],[0.586,52.191],[0.586,52.184],[0.589,52.179],[0.591,52.175],[0.583,52.173],[0.581,52.171],[0.584,52.166],[0.583,52.165],[0.587,52.163],[0.59,52.161],[0.595,52.159],[0.596,52.158],[0.598,52.155],[0.597,52.149],[0.593,52.144],[0.589,52.143],[0.58,52.144],[0.577,52.143],[0.574,52.141],[0.574,52.139],[0.572,52.136],[0.577,52.129],[0.577,52.128],[0.568,52.126],[0.56,52.129],[0.557,52.131],[0.553,52.13],[0.551,52.131],[0.552,52.132],[0.544,52.133],[0.543,52.135],[0.539,52.139],[0.528,52.139],[0.522,52.136],[0.524,52.132],[0.521,52.132],[0.513,52.128],[0.514,52.126],[0.514,52.123],[0.518,52.121],[0.52,52.119],[0.52,52.118],[0.516,52.119],[0.51,52.119],[0.506,52.114],[0.501,52.113],[0.503,52.111],[0.507,52.109],[0.51,52.108],[0.51,52.105],[0.507,52.099],[0.502,52.097],[0.502,52.093],[0.506,52.094],[0.512,52.094],[0.513,52.095],[0.52,52.096],[0.523,52.095],[0.525,52.085],[0.519,52.086],[0.51,52.085],[0.504,52.083],[0.501,52.079],[0.506,52.078],[0.508,52.072],[0.504,52.073],[0.498,52.072],[0.499,52.076],[0.496,52.078],[0.493,52.078],[0.493,52.075],[0.493,52.071],[0.49,52.07],[0.49,52.067],[0.486,52.062],[0.48,52.061],[0.479,52.06],[0.48,52.058],[0.478,52.055],[0.481,52.053],[0.482,52.047],[0.479,52.046],[0.474,52.045],[0.472,52.042],[0.467,52.04],[0.462,52.039],[0.463,52.035],[0.47,52.034],[0.471,52.033],[0.468,52.031],[0.468,52.03],[0.459,52.027],[0.457,52.026],[0.453,52.026],[0.452,52.025],[0.454,52.021]]]},"properties":{"OBJECTID":14,"NAME":"CB","KEY":"CB","Shape_Leng":3.60222,"Shape_Area":0.240497}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.663,51.455],[-3.666,51.451],[-3.67,51.451],[-3.671,51.453],[-3.675,51.452],[-3.673,51.455],[-3.677,51.455],[-3.674,51.457],[-3.672,51.456],[-3.669,51.456],[-3.668,51.457],[-3.665,51.455],[-3.663,51.455]]],[[[-3.116,51.378],[-3.117,51.375],[-3.122,51.375],[-3.126,51.376],[-3.126,51.379],[-3.121,51.381],[-3.118,51.38],[-3.116,51.378]]],[[[-3.041,51.519],[-3.044,51.516],[-3.046,51.515],[-3.052,51.514],[-3.066,51.508],[-3.071,51.506],[-3.08,51.501],[-3.084,51.5],[-3.091,51.496],[-3.094,51.495],[-3.11,51.492],[-3.114,51.493],[-3.119,51.49],[-3.123,51.485],[-3.126,51.48],[-3.129,51.479],[-3.131,51.476],[-3.134,51.473],[-3.138,51.474],[-3.138,51.473],[-3.136,51.471],[-3.134,51.468],[-3.137,51.465],[-3.147,51.459],[-3.154,51.454],[-3.156,51.452],[-3.16,51.451],[-3.16,51.453],[-3.15,51.46],[-3.154,51.462],[-3.154,51.461],[-3.16,51.456],[-3.158,51.455],[-3.16,51.453],[-3.164,51.452],[-3.164,51.448],[-3.165,51.448],[-3.166,51.452],[-3.164,51.453],[-3.162,51.459],[-3.161,51.46],[-3.162,51.461],[-3.163,51.463],[-3.165,51.463],[-3.167,51.461],[-3.168,51.458],[-3.171,51.459],[-3.173,51.458],[-3.178,51.46],[-3.176,51.463],[-3.179,51.462],[-3.18,51.46],[-3.179,51.456],[-3.176,51.454],[-3.18,51.453],[-3.178,51.45],[-3.175,51.448],[-3.175,51.447],[-3.181,51.448],[-3.184,51.448],[-3.176,51.446],[-3.169,51.447],[-3.168,51.445],[-3.165,51.447],[-3.164,51.445],[-3.166,51.444],[-3.164,51.441],[-3.169,51.429],[-3.17,51.421],[-3.17,51.417],[-3.168,51.415],[-3.169,51.412],[-3.168,51.406],[-3.167,51.405],[-3.172,51.404],[-3.18,51.401],[-3.184,51.399],[-3.186,51.4],[-3.19,51.399],[-3.196,51.399],[-3.195,51.397],[-3.195,51.395],[-3.198,51.395],[-3.201,51.394],[-3.203,51.395],[-3.202,51.397],[-3.205,51.398],[-3.221,51.401],[-3.224,51.402],[-3.231,51.4],[-3.233,51.398],[-3.236,51.398],[-3.239,51.396],[-3.245,51.396],[-3.248,51.396],[-3.249,51.394],[-3.252,51.393],[-3.254,51.394],[-3.255,51.393],[-3.26,51.395],[-3.262,51.397],[-3.259,51.398],[-3.257,51.398],[-3.249,51.405],[-3.25,51.405],[-3.256,51.401],[-3.259,51.399],[-3.262,51.4],[-3.265,51.4],[-3.269,51.4],[-3.276,51.399],[-3.274,51.397],[-3.269,51.398],[-3.266,51.397],[-3.26,51.393],[-3.259,51.391],[-3.262,51.391],[-3.264,51.39],[-3.264,51.388],[-3.265,51.387],[-3.268,51.387],[-3.274,51.388],[-3.278,51.386],[-3.281,51.386],[-3.286,51.387],[-3.288,51.387],[-3.289,51.385],[-3.296,51.388],[-3.299,51.39],[-3.302,51.391],[-3.308,51.392],[-3.313,51.391],[-3.316,51.388],[-3.32,51.386],[-3.325,51.387],[-3.331,51.383],[-3.336,51.381],[-3.343,51.38],[-3.345,51.381],[-3.357,51.383],[-3.363,51.383],[-3.365,51.384],[-3.368,51.382],[-3.376,51.381],[-3.38,51.381],[-3.39,51.381],[-3.394,51.38],[-3.407,51.379],[-3.41,51.38],[-3.413,51.382],[-3.416,51.384],[-3.421,51.385],[-3.423,51.386],[-3.426,51.385],[-3.431,51.387],[-3.436,51.388],[-3.442,51.388],[-3.447,51.387],[-3.454,51.389],[-3.465,51.392],[-3.468,51.392],[-3.473,51.393],[-3.477,51.392],[-3.485,51.394],[-3.488,51.394],[-3.491,51.394],[-3.497,51.395],[-3.501,51.393],[-3.505,51.393],[-3.507,51.396],[-3.51,51.397],[-3.513,51.397],[-3.516,51.399],[-3.524,51.399],[-3.532,51.398],[-3.536,51.397],[-3.539,51.396],[-3.543,51.397],[-3.547,51.398],[-3.557,51.399],[-3.561,51.4],[-3.563,51.402],[-3.566,51.403],[-3.567,51.406],[-3.569,51.411],[-3.573,51.415],[-3.576,51.415],[-3.58,51.417],[-3.58,51.419],[-3.582,51.419],[-3.586,51.426],[-3.593,51.432],[-3.594,51.434],[-3.596,51.435],[-3.598,51.436],[-3.599,51.438],[-3.602,51.44],[-3.608,51.442],[-3.612,51.446],[-3.618,51.45],[-3.621,51.451],[-3.627,51.454],[-3.635,51.455],[-3.639,51.458],[-3.643,51.461],[-3.645,51.466],[-3.647,51.467],[-3.65,51.471],[-3.654,51.474],[-3.661,51.476],[-3.665,51.477],[-3.67,51.476],[-3.673,51.476],[-3.675,51.474],[-3.681,51.472],[-3.685,51.474],[-3.688,51.473],[-3.695,51.475],[-3.7,51.474],[-3.703,51.473],[-3.706,51.474],[-3.712,51.474],[-3.714,51.476],[-3.716,51.477],[-3.718,51.477],[-3.721,51.479],[-3.724,51.482],[-3.728,51.485],[-3.733,51.49],[-3.736,51.492],[-3.738,51.494],[-3.738,51.496],[-3.741,51.5],[-3.745,51.501],[-3.748,51.501],[-3.751,51.503],[-3.75,51.505],[-3.754,51.508],[-3.759,51.518],[-3.745,51.521],[-3.732,51.527],[-3.725,51.528],[-3.722,51.531],[-3.718,51.531],[-3.713,51.53],[-3.713,51.537],[-3.713,51.544],[-3.708,51.546],[-3.706,51.545],[-3.701,51.542],[-3.698,51.539],[-3.695,51.537],[-3.691,51.544],[-3.689,51.545],[-3.686,51.545],[-3.687,51.548],[-3.686,51.548],[-3.685,51.552],[-3.693,51.555],[-3.695,51.556],[-3.681,51.568],[-3.68,51.572],[-3.693,51.578],[-3.701,51.581],[-3.702,51.583],[-3.706,51.585],[-3.709,51.597],[-3.706,51.6],[-3.699,51.604],[-3.695,51.605],[-3.693,51.608],[-3.691,51.611],[-3.688,51.615],[-3.694,51.616],[-3.698,51.622],[-3.701,51.629],[-3.69,51.633],[-3.681,51.634],[-3.669,51.643],[-3.665,51.646],[-3.663,51.647],[-3.653,51.645],[-3.651,51.645],[-3.645,51.644],[-3.646,51.643],[-3.644,51.642],[-3.64,51.64],[-3.635,51.642],[-3.633,51.642],[-3.611,51.638],[-3.61,51.639],[-3.602,51.64],[-3.589,51.642],[-3.582,51.649],[-3.58,51.648],[-3.578,51.649],[-3.574,51.649],[-3.567,51.645],[-3.564,51.646],[-3.563,51.655],[-3.565,51.657],[-3.584,51.667],[-3.594,51.676],[-3.594,51.677],[-3.586,51.687],[-3.584,51.691],[-3.588,51.704],[-3.62,51.706],[-3.609,51.728],[-3.616,51.732],[-3.617,51.736],[-3.608,51.741],[-3.604,51.74],[-3.594,51.74],[-3.594,51.743],[-3.59,51.746],[-3.585,51.753],[-3.58,51.753],[-3.576,51.757],[-3.574,51.757],[-3.569,51.756],[-3.565,51.754],[-3.562,51.765],[-3.554,51.767],[-3.551,51.773],[-3.551,51.775],[-3.554,51.779],[-3.553,51.782],[-3.549,51.786],[-3.545,51.792],[-3.539,51.8],[-3.543,51.802],[-3.547,51.802],[-3.55,51.803],[-3.554,51.8],[-3.557,51.8],[-3.561,51.799],[-3.564,51.796],[-3.567,51.795],[-3.569,51.793],[-3.572,51.796],[-3.6,51.799],[-3.608,51.799],[-3.61,51.803],[-3.61,51.81],[-3.616,51.821],[-3.62,51.827],[-3.619,51.835],[-3.607,51.846],[-3.566,51.844],[-3.563,51.845],[-3.562,51.849],[-3.563,51.852],[-3.563,51.855],[-3.534,51.864],[-3.52,51.868],[-3.514,51.869],[-3.507,51.859],[-3.501,51.841],[-3.495,51.836],[-3.47,51.83],[-3.471,51.837],[-3.473,51.84],[-3.473,51.843],[-3.464,51.845],[-3.466,51.848],[-3.447,51.851],[-3.435,51.879],[-3.425,51.882],[-3.395,51.88],[-3.389,51.881],[-3.367,51.879],[-3.352,51.866],[-3.36,51.853],[-3.337,51.848],[-3.338,51.846],[-3.342,51.844],[-3.348,51.844],[-3.345,51.839],[-3.336,51.835],[-3.327,51.829],[-3.312,51.805],[-3.324,51.8],[-3.326,51.8],[-3.332,51.793],[-3.332,51.791],[-3.328,51.785],[-3.321,51.78],[-3.316,51.773],[-3.311,51.774],[-3.308,51.767],[-3.305,51.765],[-3.307,51.762],[-3.314,51.75],[-3.289,51.756],[-3.286,51.754],[-3.287,51.753],[-3.286,51.751],[-3.283,51.749],[-3.278,51.749],[-3.276,51.747],[-3.278,51.745],[-3.275,51.742],[-3.27,51.739],[-3.266,51.737],[-3.269,51.736],[-3.277,51.733],[-3.272,51.73],[-3.269,51.729],[-3.263,51.726],[-3.253,51.72],[-3.248,51.714],[-3.245,51.712],[-3.249,51.709],[-3.249,51.705],[-3.244,51.705],[-3.238,51.706],[-3.236,51.702],[-3.237,51.701],[-3.234,51.7],[-3.232,51.697],[-3.231,51.7],[-3.229,51.699],[-3.224,51.702],[-3.221,51.702],[-3.22,51.703],[-3.213,51.702],[-3.211,51.704],[-3.21,51.702],[-3.217,51.697],[-3.216,51.696],[-3.212,51.695],[-3.213,51.691],[-3.212,51.689],[-3.213,51.688],[-3.211,51.685],[-3.21,51.684],[-3.212,51.681],[-3.212,51.68],[-3.215,51.679],[-3.218,51.682],[-3.22,51.681],[-3.226,51.681],[-3.225,51.679],[-3.225,51.676],[-3.222,51.673],[-3.225,51.671],[-3.228,51.671],[-3.228,51.672],[-3.233,51.673],[-3.234,51.671],[-3.237,51.671],[-3.237,51.669],[-3.234,51.67],[-3.232,51.668],[-3.229,51.668],[-3.229,51.666],[-3.226,51.665],[-3.224,51.661],[-3.225,51.658],[-3.227,51.658],[-3.227,51.656],[-3.225,51.654],[-3.223,51.651],[-3.218,51.652],[-3.218,51.649],[-3.219,51.648],[-3.218,51.646],[-3.215,51.646],[-3.205,51.647],[-3.203,51.646],[-3.201,51.641],[-3.202,51.638],[-3.207,51.64],[-3.211,51.638],[-3.209,51.633],[-3.205,51.631],[-3.202,51.629],[-3.213,51.623],[-3.213,51.622],[-3.205,51.619],[-3.199,51.619],[-3.194,51.616],[-3.192,51.614],[-3.19,51.612],[-3.188,51.611],[-3.184,51.608],[-3.175,51.606],[-3.17,51.61],[-3.155,51.607],[-3.153,51.607],[-3.146,51.607],[-3.143,51.607],[-3.14,51.608],[-3.13,51.606],[-3.129,51.601],[-3.127,51.6],[-3.122,51.599],[-3.119,51.598],[-3.122,51.592],[-3.121,51.59],[-3.123,51.589],[-3.12,51.586],[-3.128,51.585],[-3.13,51.585],[-3.132,51.587],[-3.132,51.589],[-3.136,51.59],[-3.138,51.591],[-3.141,51.592],[-3.138,51.589],[-3.14,51.588],[-3.139,51.584],[-3.137,51.583],[-3.138,51.575],[-3.143,51.573],[-3.139,51.57],[-3.138,51.568],[-3.135,51.568],[-3.13,51.562],[-3.122,51.565],[-3.119,51.564],[-3.11,51.567],[-3.116,51.572],[-3.119,51.575],[-3.115,51.578],[-3.112,51.576],[-3.109,51.576],[-3.107,51.574],[-3.101,51.577],[-3.101,51.578],[-3.093,51.578],[-3.091,51.577],[-3.091,51.576],[-3.091,51.571],[-3.09,51.57],[-3.089,51.568],[-3.084,51.566],[-3.079,51.562],[-3.08,51.557],[-3.075,51.553],[-3.074,51.551],[-3.076,51.55],[-3.075,51.548],[-3.076,51.548],[-3.072,51.546],[-3.072,51.544],[-3.068,51.543],[-3.059,51.542],[-3.053,51.541],[-3.046,51.542],[-3.043,51.541],[-3.048,51.537],[-3.047,51.535],[-3.051,51.533],[-3.053,51.526],[-3.047,51.522],[-3.042,51.519],[-3.041,51.519]]]]},"properties":{"OBJECTID":15,"NAME":"CF","KEY":"CF","Shape_Leng":3.35845,"Shape_Area":0.203545}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.707,53.092],[-2.71,53.091],[-2.715,53.093],[-2.718,53.094],[-2.724,53.096],[-2.726,53.093],[-2.732,53.088],[-2.732,53.087],[-2.738,53.087],[-2.741,53.086],[-2.736,53.082],[-2.734,53.079],[-2.742,53.079],[-2.744,53.08],[-2.747,53.079],[-2.747,53.076],[-2.745,53.075],[-2.748,53.072],[-2.751,53.071],[-2.755,53.07],[-2.761,53.071],[-2.761,53.073],[-2.763,53.074],[-2.767,53.075],[-2.768,53.073],[-2.766,53.069],[-2.775,53.068],[-2.768,53.062],[-2.772,53.062],[-2.786,53.061],[-2.792,53.066],[-2.79,53.068],[-2.784,53.072],[-2.784,53.073],[-2.783,53.078],[-2.788,53.08],[-2.794,53.078],[-2.798,53.078],[-2.805,53.077],[-2.805,53.075],[-2.804,53.074],[-2.808,53.071],[-2.811,53.071],[-2.811,53.073],[-2.815,53.077],[-2.813,53.078],[-2.812,53.08],[-2.812,53.083],[-2.813,53.084],[-2.82,53.085],[-2.823,53.087],[-2.827,53.088],[-2.825,53.084],[-2.829,53.086],[-2.829,53.088],[-2.825,53.089],[-2.828,53.091],[-2.829,53.092],[-2.839,53.091],[-2.841,53.093],[-2.847,53.089],[-2.844,53.085],[-2.846,53.084],[-2.847,53.082],[-2.839,53.082],[-2.838,53.079],[-2.839,53.075],[-2.845,53.072],[-2.838,53.068],[-2.831,53.066],[-2.828,53.066],[-2.825,53.068],[-2.823,53.066],[-2.828,53.06],[-2.832,53.06],[-2.831,53.054],[-2.823,53.049],[-2.824,53.045],[-2.834,53.045],[-2.841,53.043],[-2.844,53.047],[-2.846,53.049],[-2.855,53.048],[-2.857,53.05],[-2.86,53.05],[-2.861,53.05],[-2.86,53.054],[-2.858,53.053],[-2.858,53.055],[-2.864,53.056],[-2.864,53.058],[-2.86,53.058],[-2.86,53.059],[-2.863,53.059],[-2.866,53.06],[-2.865,53.061],[-2.861,53.061],[-2.863,53.063],[-2.87,53.064],[-2.87,53.065],[-2.868,53.067],[-2.869,53.07],[-2.872,53.07],[-2.877,53.069],[-2.878,53.071],[-2.875,53.073],[-2.877,53.074],[-2.881,53.074],[-2.88,53.076],[-2.879,53.078],[-2.876,53.081],[-2.876,53.082],[-2.88,53.084],[-2.891,53.088],[-2.895,53.087],[-2.897,53.092],[-2.894,53.092],[-2.893,53.095],[-2.889,53.095],[-2.884,53.096],[-2.884,53.1],[-2.89,53.101],[-2.887,53.104],[-2.889,53.106],[-2.893,53.104],[-2.893,53.106],[-2.892,53.108],[-2.888,53.109],[-2.887,53.111],[-2.884,53.112],[-2.884,53.114],[-2.882,53.117],[-2.896,53.109],[-2.903,53.108],[-2.905,53.11],[-2.911,53.113],[-2.915,53.113],[-2.916,53.114],[-2.918,53.116],[-2.916,53.124],[-2.923,53.124],[-2.928,53.121],[-2.927,53.118],[-2.931,53.118],[-2.934,53.12],[-2.942,53.121],[-2.944,53.125],[-2.946,53.126],[-2.949,53.125],[-2.953,53.127],[-2.965,53.13],[-2.969,53.134],[-2.97,53.134],[-2.982,53.135],[-2.983,53.132],[-2.988,53.13],[-2.991,53.132],[-2.995,53.131],[-2.994,53.127],[-2.995,53.126],[-2.999,53.124],[-3.004,53.126],[-3.006,53.126],[-3.009,53.129],[-3.01,53.132],[-3.016,53.132],[-3.018,53.131],[-3.02,53.132],[-3.023,53.131],[-3.027,53.13],[-3.028,53.132],[-3.027,53.133],[-3.028,53.135],[-3.031,53.134],[-3.031,53.132],[-3.034,53.132],[-3.036,53.132],[-3.039,53.131],[-3.043,53.132],[-3.047,53.134],[-3.05,53.134],[-3.046,53.129],[-3.049,53.127],[-3.05,53.126],[-3.057,53.123],[-3.06,53.123],[-3.064,53.124],[-3.066,53.124],[-3.065,53.121],[-3.066,53.121],[-3.068,53.119],[-3.068,53.116],[-3.075,53.115],[-3.078,53.118],[-3.077,53.122],[-3.082,53.121],[-3.084,53.121],[-3.082,53.115],[-3.084,53.111],[-3.084,53.109],[-3.086,53.108],[-3.088,53.11],[-3.092,53.111],[-3.097,53.11],[-3.102,53.11],[-3.104,53.109],[-3.104,53.106],[-3.107,53.105],[-3.114,53.103],[-3.115,53.103],[-3.124,53.102],[-3.133,53.098],[-3.132,53.096],[-3.128,53.095],[-3.125,53.097],[-3.123,53.092],[-3.124,53.092],[-3.122,53.087],[-3.122,53.084],[-3.125,53.082],[-3.133,53.078],[-3.132,53.078],[-3.144,53.074],[-3.148,53.075],[-3.15,53.077],[-3.158,53.081],[-3.157,53.082],[-3.159,53.085],[-3.158,53.09],[-3.167,53.089],[-3.171,53.086],[-3.175,53.087],[-3.179,53.085],[-3.182,53.086],[-3.186,53.081],[-3.186,53.08],[-3.194,53.078],[-3.199,53.079],[-3.201,53.08],[-3.205,53.079],[-3.208,53.08],[-3.208,53.076],[-3.21,53.074],[-3.214,53.075],[-3.211,53.077],[-3.219,53.079],[-3.221,53.078],[-3.228,53.079],[-3.23,53.085],[-3.236,53.085],[-3.242,53.088],[-3.246,53.088],[-3.251,53.093],[-3.249,53.099],[-3.247,53.101],[-3.245,53.101],[-3.237,53.107],[-3.237,53.109],[-3.234,53.113],[-3.231,53.118],[-3.229,53.119],[-3.231,53.121],[-3.24,53.123],[-3.246,53.127],[-3.25,53.134],[-3.254,53.136],[-3.259,53.143],[-3.258,53.15],[-3.256,53.153],[-3.257,53.155],[-3.267,53.159],[-3.269,53.16],[-3.279,53.17],[-3.276,53.175],[-3.278,53.182],[-3.274,53.185],[-3.277,53.187],[-3.278,53.189],[-3.289,53.193],[-3.29,53.191],[-3.298,53.195],[-3.3,53.199],[-3.303,53.204],[-3.308,53.205],[-3.311,53.215],[-3.312,53.216],[-3.319,53.217],[-3.325,53.22],[-3.326,53.223],[-3.329,53.231],[-3.324,53.232],[-3.323,53.236],[-3.324,53.239],[-3.33,53.237],[-3.332,53.239],[-3.328,53.241],[-3.33,53.242],[-3.332,53.247],[-3.335,53.246],[-3.338,53.247],[-3.341,53.249],[-3.339,53.25],[-3.338,53.255],[-3.339,53.258],[-3.347,53.262],[-3.351,53.259],[-3.355,53.262],[-3.354,53.264],[-3.351,53.264],[-3.346,53.269],[-3.35,53.272],[-3.347,53.272],[-3.345,53.276],[-3.348,53.281],[-3.347,53.281],[-3.353,53.282],[-3.357,53.284],[-3.363,53.283],[-3.366,53.285],[-3.367,53.286],[-3.363,53.287],[-3.346,53.285],[-3.339,53.285],[-3.337,53.29],[-3.333,53.289],[-3.329,53.288],[-3.326,53.285],[-3.318,53.286],[-3.326,53.288],[-3.33,53.291],[-3.334,53.295],[-3.334,53.298],[-3.335,53.299],[-3.338,53.3],[-3.346,53.301],[-3.349,53.302],[-3.347,53.305],[-3.343,53.306],[-3.344,53.308],[-3.349,53.307],[-3.351,53.309],[-3.356,53.311],[-3.352,53.316],[-3.351,53.313],[-3.346,53.315],[-3.352,53.317],[-3.351,53.319],[-3.351,53.321],[-3.353,53.322],[-3.359,53.319],[-3.367,53.319],[-3.37,53.319],[-3.376,53.318],[-3.376,53.324],[-3.38,53.325],[-3.382,53.328],[-3.376,53.332],[-3.375,53.331],[-3.363,53.33],[-3.364,53.327],[-3.36,53.323],[-3.356,53.323],[-3.349,53.327],[-3.349,53.328],[-3.353,53.331],[-3.349,53.334],[-3.354,53.336],[-3.352,53.336],[-3.347,53.334],[-3.344,53.335],[-3.343,53.338],[-3.34,53.34],[-3.34,53.342],[-3.349,53.341],[-3.354,53.345],[-3.356,53.348],[-3.35,53.348],[-3.35,53.349],[-3.348,53.35],[-3.34,53.36],[-3.341,53.361],[-3.332,53.361],[-3.32,53.362],[-3.315,53.361],[-3.309,53.36],[-3.302,53.358],[-3.298,53.356],[-3.293,53.354],[-3.287,53.351],[-3.284,53.348],[-3.281,53.346],[-3.283,53.342],[-3.284,53.338],[-3.282,53.333],[-3.279,53.331],[-3.274,53.329],[-3.263,53.325],[-3.262,53.321],[-3.259,53.319],[-3.258,53.317],[-3.255,53.316],[-3.246,53.314],[-3.242,53.312],[-3.238,53.31],[-3.228,53.305],[-3.219,53.303],[-3.207,53.298],[-3.201,53.299],[-3.197,53.301],[-3.194,53.3],[-3.185,53.297],[-3.181,53.293],[-3.178,53.291],[-3.174,53.289],[-3.171,53.289],[-3.167,53.287],[-3.16,53.282],[-3.15,53.278],[-3.136,53.276],[-3.134,53.274],[-3.134,53.268],[-3.132,53.264],[-3.128,53.26],[-3.125,53.257],[-3.119,53.254],[-3.119,53.249],[-3.108,53.244],[-3.107,53.243],[-3.103,53.242],[-3.099,53.241],[-3.095,53.24],[-3.083,53.235],[-3.076,53.233],[-3.069,53.229],[-3.064,53.226],[-3.064,53.224],[-3.062,53.223],[-3.058,53.221],[-3.052,53.221],[-3.044,53.22],[-3.038,53.218],[-3.039,53.22],[-3.044,53.221],[-3.049,53.222],[-3.055,53.222],[-3.059,53.223],[-3.059,53.225],[-3.062,53.226],[-3.066,53.229],[-3.073,53.234],[-3.074,53.236],[-3.074,53.238],[-3.076,53.242],[-3.081,53.252],[-3.081,53.255],[-3.06,53.269],[-3.06,53.273],[-3.064,53.275],[-3.068,53.277],[-3.071,53.278],[-3.074,53.281],[-3.079,53.281],[-3.082,53.282],[-3.088,53.284],[-3.09,53.286],[-3.09,53.287],[-3.088,53.289],[-3.088,53.29],[-3.093,53.289],[-3.095,53.288],[-3.1,53.292],[-3.099,53.294],[-3.097,53.295],[-3.103,53.296],[-3.103,53.298],[-3.106,53.3],[-3.108,53.302],[-3.111,53.307],[-3.114,53.31],[-3.116,53.313],[-3.117,53.316],[-3.117,53.318],[-3.115,53.319],[-3.112,53.317],[-3.106,53.312],[-3.096,53.305],[-3.096,53.306],[-3.104,53.312],[-3.11,53.318],[-3.119,53.324],[-3.125,53.326],[-3.128,53.327],[-3.144,53.339],[-3.15,53.342],[-3.153,53.346],[-3.158,53.348],[-3.162,53.35],[-3.166,53.352],[-3.17,53.353],[-3.175,53.357],[-3.179,53.36],[-3.18,53.362],[-3.188,53.364],[-3.192,53.366],[-3.193,53.371],[-3.19,53.374],[-3.192,53.377],[-3.196,53.382],[-3.197,53.385],[-3.198,53.385],[-3.204,53.389],[-3.199,53.389],[-3.194,53.391],[-3.191,53.394],[-3.188,53.396],[-3.185,53.396],[-3.182,53.397],[-3.176,53.401],[-3.171,53.403],[-3.164,53.406],[-3.156,53.409],[-3.153,53.41],[-3.148,53.411],[-3.142,53.412],[-3.14,53.413],[-3.135,53.415],[-3.095,53.425],[-3.074,53.438],[-3.07,53.44],[-3.057,53.443],[-3.049,53.445],[-3.042,53.446],[-3.04,53.444],[-3.038,53.444],[-3.035,53.442],[-3.033,53.438],[-3.032,53.434],[-3.027,53.426],[-3.024,53.423],[-3.022,53.42],[-3.02,53.417],[-3.015,53.413],[-3.012,53.411],[-3.015,53.41],[-3.014,53.406],[-3.016,53.405],[-3.023,53.404],[-3.026,53.404],[-3.029,53.405],[-3.032,53.405],[-3.04,53.404],[-3.044,53.405],[-3.048,53.407],[-3.05,53.408],[-3.053,53.41],[-3.059,53.412],[-3.06,53.411],[-3.054,53.41],[-3.052,53.407],[-3.049,53.406],[-3.046,53.403],[-3.041,53.403],[-3.033,53.404],[-3.026,53.402],[-3.028,53.401],[-3.034,53.403],[-3.035,53.402],[-3.028,53.4],[-3.024,53.4],[-3.023,53.4],[-3.023,53.403],[-3.018,53.403],[-3.019,53.404],[-3.015,53.405],[-3.014,53.404],[-3.012,53.399],[-3.01,53.397],[-3.008,53.394],[-3.008,53.388],[-3.006,53.385],[-3.007,53.382],[-3.006,53.381],[-3.004,53.378],[-3.002,53.378],[-2.999,53.375],[-2.997,53.372],[-2.992,53.367],[-2.989,53.363],[-2.985,53.359],[-2.982,53.357],[-2.978,53.357],[-2.974,53.353],[-2.97,53.349],[-2.965,53.342],[-2.964,53.342],[-2.962,53.338],[-2.958,53.332],[-2.952,53.329],[-2.947,53.325],[-2.946,53.325],[-2.944,53.323],[-2.94,53.317],[-2.935,53.312],[-2.93,53.309],[-2.921,53.306],[-2.916,53.306],[-2.908,53.303],[-2.904,53.302],[-2.897,53.299],[-2.887,53.295],[-2.882,53.294],[-2.869,53.294],[-2.856,53.293],[-2.855,53.294],[-2.84,53.298],[-2.84,53.299],[-2.845,53.302],[-2.844,53.305],[-2.842,53.306],[-2.833,53.307],[-2.828,53.307],[-2.822,53.306],[-2.815,53.305],[-2.811,53.303],[-2.804,53.292],[-2.792,53.293],[-2.789,53.294],[-2.787,53.291],[-2.789,53.287],[-2.787,53.286],[-2.785,53.286],[-2.78,53.285],[-2.775,53.281],[-2.777,53.279],[-2.773,53.278],[-2.781,53.275],[-2.798,53.268],[-2.803,53.267],[-2.82,53.261],[-2.818,53.259],[-2.822,53.258],[-2.819,53.256],[-2.822,53.254],[-2.822,53.253],[-2.82,53.247],[-2.814,53.244],[-2.806,53.244],[-2.805,53.244],[-2.81,53.239],[-2.806,53.239],[-2.803,53.238],[-2.801,53.238],[-2.799,53.236],[-2.787,53.236],[-2.786,53.237],[-2.78,53.238],[-2.777,53.24],[-2.772,53.235],[-2.769,53.233],[-2.764,53.231],[-2.758,53.234],[-2.743,53.235],[-2.742,53.238],[-2.741,53.239],[-2.735,53.237],[-2.733,53.236],[-2.726,53.237],[-2.725,53.235],[-2.723,53.234],[-2.718,53.235],[-2.717,53.234],[-2.716,53.23],[-2.712,53.23],[-2.708,53.229],[-2.703,53.23],[-2.705,53.227],[-2.708,53.226],[-2.712,53.228],[-2.717,53.227],[-2.716,53.223],[-2.713,53.223],[-2.714,53.22],[-2.712,53.22],[-2.717,53.216],[-2.718,53.216],[-2.719,53.213],[-2.724,53.213],[-2.732,53.21],[-2.738,53.209],[-2.733,53.203],[-2.726,53.201],[-2.725,53.197],[-2.717,53.196],[-2.717,53.194],[-2.723,53.194],[-2.723,53.191],[-2.726,53.189],[-2.727,53.192],[-2.729,53.192],[-2.733,53.194],[-2.74,53.191],[-2.74,53.189],[-2.747,53.187],[-2.746,53.185],[-2.747,53.184],[-2.75,53.184],[-2.75,53.182],[-2.756,53.183],[-2.755,53.18],[-2.757,53.179],[-2.75,53.177],[-2.743,53.177],[-2.745,53.17],[-2.741,53.167],[-2.739,53.165],[-2.733,53.165],[-2.733,53.163],[-2.729,53.164],[-2.726,53.168],[-2.725,53.169],[-2.721,53.168],[-2.719,53.169],[-2.716,53.169],[-2.716,53.167],[-2.716,53.161],[-2.711,53.155],[-2.715,53.153],[-2.72,53.148],[-2.72,53.143],[-2.715,53.143],[-2.716,53.138],[-2.719,53.138],[-2.717,53.133],[-2.723,53.133],[-2.721,53.131],[-2.716,53.13],[-2.716,53.127],[-2.714,53.126],[-2.707,53.124],[-2.71,53.121],[-2.71,53.117],[-2.707,53.116],[-2.7,53.113],[-2.7,53.11],[-2.702,53.11],[-2.705,53.107],[-2.704,53.104],[-2.7,53.1],[-2.702,53.098],[-2.703,53.094],[-2.707,53.092]]]},"properties":{"OBJECTID":16,"NAME":"CH","KEY":"CH","Shape_Leng":3.81976,"Shape_Area":0.135592}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.599,51.63],[0.6,51.631],[0.599,51.634],[0.593,51.636],[0.593,51.639],[0.595,51.642],[0.598,51.643],[0.6,51.644],[0.597,51.649],[0.595,51.649],[0.591,51.648],[0.588,51.645],[0.587,51.646],[0.583,51.643],[0.579,51.649],[0.577,51.65],[0.567,51.65],[0.566,51.641],[0.568,51.637],[0.567,51.636],[0.562,51.634],[0.56,51.632],[0.56,51.628],[0.559,51.627],[0.557,51.628],[0.549,51.634],[0.548,51.636],[0.546,51.639],[0.538,51.637],[0.531,51.637],[0.53,51.637],[0.523,51.637],[0.522,51.641],[0.52,51.643],[0.516,51.641],[0.515,51.643],[0.513,51.642],[0.51,51.644],[0.507,51.644],[0.505,51.641],[0.498,51.641],[0.498,51.64],[0.505,51.64],[0.507,51.638],[0.507,51.636],[0.51,51.634],[0.508,51.63],[0.509,51.627],[0.509,51.623],[0.509,51.62],[0.506,51.621],[0.497,51.623],[0.498,51.621],[0.498,51.619],[0.496,51.618],[0.494,51.618],[0.491,51.617],[0.488,51.615],[0.488,51.612],[0.489,51.609],[0.488,51.608],[0.49,51.605],[0.489,51.603],[0.495,51.601],[0.5,51.605],[0.503,51.604],[0.504,51.603],[0.501,51.6],[0.503,51.597],[0.501,51.596],[0.495,51.598],[0.491,51.596],[0.486,51.598],[0.484,51.594],[0.485,51.593],[0.484,51.592],[0.473,51.591],[0.467,51.59],[0.465,51.591],[0.462,51.59],[0.46,51.59],[0.458,51.591],[0.46,51.594],[0.461,51.596],[0.461,51.599],[0.456,51.6],[0.451,51.6],[0.446,51.599],[0.448,51.594],[0.444,51.595],[0.437,51.596],[0.436,51.593],[0.431,51.591],[0.43,51.593],[0.428,51.592],[0.424,51.591],[0.422,51.59],[0.417,51.589],[0.414,51.588],[0.412,51.588],[0.411,51.586],[0.405,51.586],[0.392,51.584],[0.393,51.582],[0.392,51.581],[0.395,51.575],[0.398,51.574],[0.398,51.57],[0.399,51.569],[0.392,51.568],[0.386,51.566],[0.382,51.566],[0.376,51.566],[0.377,51.564],[0.376,51.562],[0.375,51.561],[0.364,51.558],[0.362,51.56],[0.357,51.56],[0.351,51.557],[0.344,51.556],[0.338,51.553],[0.333,51.553],[0.331,51.556],[0.331,51.566],[0.325,51.566],[0.322,51.565],[0.318,51.564],[0.317,51.566],[0.313,51.566],[0.308,51.57],[0.303,51.57],[0.301,51.569],[0.302,51.565],[0.289,51.564],[0.288,51.569],[0.282,51.578],[0.279,51.581],[0.274,51.585],[0.271,51.583],[0.269,51.583],[0.264,51.581],[0.262,51.582],[0.261,51.583],[0.262,51.585],[0.262,51.588],[0.26,51.588],[0.259,51.59],[0.264,51.59],[0.267,51.59],[0.266,51.594],[0.265,51.603],[0.262,51.601],[0.258,51.597],[0.252,51.6],[0.266,51.606],[0.262,51.609],[0.259,51.608],[0.258,51.607],[0.256,51.606],[0.254,51.608],[0.25,51.614],[0.251,51.618],[0.24,51.622],[0.233,51.626],[0.224,51.632],[0.22,51.634],[0.218,51.633],[0.21,51.631],[0.206,51.631],[0.205,51.632],[0.209,51.634],[0.212,51.64],[0.211,51.642],[0.205,51.646],[0.207,51.65],[0.213,51.649],[0.218,51.646],[0.218,51.645],[0.226,51.644],[0.229,51.644],[0.234,51.648],[0.236,51.648],[0.234,51.649],[0.23,51.649],[0.234,51.657],[0.229,51.66],[0.232,51.662],[0.228,51.666],[0.226,51.671],[0.222,51.671],[0.219,51.669],[0.211,51.665],[0.209,51.662],[0.203,51.663],[0.203,51.664],[0.197,51.669],[0.194,51.669],[0.193,51.67],[0.189,51.673],[0.187,51.674],[0.182,51.682],[0.177,51.684],[0.166,51.682],[0.165,51.68],[0.167,51.674],[0.166,51.673],[0.158,51.668],[0.147,51.671],[0.145,51.672],[0.142,51.67],[0.141,51.668],[0.135,51.666],[0.135,51.664],[0.127,51.662],[0.127,51.661],[0.126,51.66],[0.121,51.658],[0.116,51.654],[0.115,51.656],[0.116,51.659],[0.113,51.658],[0.106,51.657],[0.102,51.653],[0.098,51.653],[0.094,51.656],[0.093,51.659],[0.092,51.662],[0.088,51.664],[0.09,51.667],[0.087,51.67],[0.085,51.67],[0.081,51.669],[0.07,51.671],[0.067,51.672],[0.063,51.675],[0.061,51.675],[0.054,51.675],[0.056,51.677],[0.06,51.679],[0.06,51.681],[0.062,51.684],[0.065,51.685],[0.059,51.686],[0.064,51.688],[0.068,51.688],[0.063,51.691],[0.065,51.694],[0.066,51.696],[0.064,51.701],[0.065,51.703],[0.06,51.708],[0.059,51.712],[0.057,51.714],[0.051,51.717],[0.054,51.721],[0.052,51.725],[0.053,51.731],[0.055,51.731],[0.061,51.739],[0.066,51.739],[0.068,51.74],[0.072,51.739],[0.075,51.74],[0.071,51.742],[0.069,51.745],[0.065,51.748],[0.061,51.748],[0.058,51.749],[0.055,51.746],[0.054,51.748],[0.051,51.746],[0.046,51.746],[0.038,51.747],[0.033,51.747],[0.03,51.748],[0.028,51.749],[0.025,51.748],[0.024,51.745],[0.021,51.743],[0.018,51.746],[0.015,51.747],[0.012,51.75],[0.015,51.75],[0.014,51.752],[0.014,51.755],[0.012,51.757],[0.013,51.759],[0.012,51.761],[0.015,51.763],[0.012,51.765],[0.012,51.766],[0.018,51.769],[0.025,51.773],[0.028,51.774],[0.027,51.78],[0.029,51.781],[0.031,51.779],[0.035,51.779],[0.035,51.777],[0.037,51.776],[0.044,51.775],[0.047,51.775],[0.053,51.775],[0.057,51.776],[0.061,51.778],[0.066,51.779],[0.069,51.78],[0.071,51.784],[0.069,51.784],[0.068,51.789],[0.067,51.79],[0.068,51.792],[0.063,51.796],[0.066,51.798],[0.066,51.8],[0.063,51.802],[0.064,51.804],[0.073,51.806],[0.078,51.806],[0.08,51.808],[0.074,51.817],[0.091,51.821],[0.096,51.826],[0.101,51.829],[0.098,51.833],[0.098,51.837],[0.1,51.838],[0.101,51.84],[0.106,51.843],[0.108,51.845],[0.11,51.844],[0.112,51.846],[0.116,51.85],[0.12,51.853],[0.121,51.855],[0.118,51.86],[0.123,51.86],[0.126,51.861],[0.129,51.863],[0.126,51.865],[0.124,51.867],[0.123,51.871],[0.122,51.874],[0.123,51.877],[0.112,51.88],[0.12,51.888],[0.127,51.889],[0.13,51.893],[0.144,51.893],[0.15,51.896],[0.147,51.897],[0.145,51.896],[0.143,51.897],[0.14,51.897],[0.132,51.896],[0.127,51.895],[0.127,51.9],[0.125,51.901],[0.121,51.903],[0.116,51.905],[0.122,51.913],[0.119,51.916],[0.123,51.922],[0.13,51.926],[0.131,51.927],[0.127,51.928],[0.127,51.933],[0.124,51.935],[0.123,51.939],[0.124,51.942],[0.121,51.941],[0.115,51.941],[0.114,51.942],[0.114,51.944],[0.118,51.947],[0.113,51.95],[0.116,51.958],[0.117,51.958],[0.122,51.958],[0.131,51.954],[0.139,51.955],[0.142,51.951],[0.147,51.949],[0.152,51.951],[0.159,51.954],[0.16,51.955],[0.165,51.956],[0.166,51.951],[0.177,51.94],[0.177,51.937],[0.178,51.936],[0.188,51.936],[0.195,51.938],[0.198,51.938],[0.199,51.94],[0.211,51.943],[0.217,51.94],[0.22,51.942],[0.217,51.945],[0.218,51.947],[0.228,51.945],[0.233,51.945],[0.233,51.943],[0.229,51.94],[0.242,51.944],[0.25,51.946],[0.252,51.947],[0.261,51.945],[0.266,51.949],[0.268,51.953],[0.272,51.951],[0.274,51.95],[0.278,51.95],[0.28,51.95],[0.281,51.952],[0.286,51.949],[0.289,51.953],[0.292,51.953],[0.291,51.958],[0.296,51.958],[0.301,51.958],[0.305,51.961],[0.304,51.962],[0.31,51.964],[0.311,51.967],[0.314,51.971],[0.316,51.971],[0.322,51.975],[0.326,51.974],[0.331,51.973],[0.333,51.973],[0.333,51.971],[0.342,51.972],[0.343,51.973],[0.35,51.972],[0.351,51.973],[0.357,51.969],[0.355,51.967],[0.35,51.964],[0.351,51.964],[0.357,51.967],[0.361,51.97],[0.365,51.971],[0.366,51.973],[0.368,51.974],[0.372,51.972],[0.369,51.967],[0.37,51.963],[0.374,51.962],[0.38,51.967],[0.384,51.967],[0.384,51.965],[0.391,51.965],[0.396,51.965],[0.399,51.969],[0.4,51.971],[0.399,51.973],[0.401,51.977],[0.404,51.977],[0.412,51.973],[0.42,51.972],[0.424,51.975],[0.427,51.973],[0.43,51.976],[0.429,51.98],[0.424,51.983],[0.423,51.988],[0.43,51.989],[0.432,51.992],[0.427,51.994],[0.424,51.993],[0.425,51.998],[0.422,51.998],[0.418,51.998],[0.415,51.997],[0.414,51.999],[0.415,52.002],[0.415,52.003],[0.415,52.008],[0.416,52.011],[0.422,52.011],[0.42,52.017],[0.421,52.021],[0.427,52.024],[0.432,52.023],[0.439,52.024],[0.445,52.022],[0.449,52.021],[0.454,52.021],[0.453,52.019],[0.454,52.018],[0.456,52.018],[0.46,52.017],[0.466,52.019],[0.467,52.017],[0.466,52.015],[0.461,52.014],[0.459,52.012],[0.46,52.01],[0.465,52.011],[0.472,52.006],[0.478,52.006],[0.479,52.001],[0.475,51.998],[0.472,51.994],[0.474,51.993],[0.482,51.993],[0.485,51.996],[0.487,51.999],[0.49,52.002],[0.496,52.003],[0.497,52],[0.497,51.997],[0.496,51.993],[0.497,51.992],[0.497,51.984],[0.499,51.983],[0.503,51.986],[0.506,51.987],[0.509,51.986],[0.506,51.984],[0.503,51.982],[0.503,51.981],[0.507,51.98],[0.507,51.974],[0.51,51.973],[0.513,51.973],[0.516,51.97],[0.519,51.97],[0.528,51.968],[0.53,51.97],[0.534,51.969],[0.545,51.963],[0.545,51.961],[0.546,51.959],[0.545,51.958],[0.554,51.958],[0.554,51.951],[0.557,51.952],[0.555,51.944],[0.552,51.941],[0.545,51.939],[0.539,51.938],[0.539,51.932],[0.541,51.933],[0.542,51.93],[0.551,51.927],[0.556,51.928],[0.557,51.928],[0.561,51.924],[0.568,51.921],[0.571,51.92],[0.573,51.921],[0.578,51.924],[0.582,51.924],[0.585,51.922],[0.587,51.921],[0.589,51.923],[0.592,51.921],[0.596,51.919],[0.6,51.92],[0.604,51.92],[0.604,51.916],[0.608,51.913],[0.615,51.913],[0.621,51.916],[0.621,51.919],[0.627,51.92],[0.625,51.919],[0.626,51.918],[0.635,51.915],[0.638,51.913],[0.638,51.911],[0.641,51.91],[0.635,51.908],[0.638,51.906],[0.645,51.905],[0.643,51.901],[0.648,51.9],[0.658,51.902],[0.662,51.902],[0.666,51.901],[0.664,51.893],[0.664,51.889],[0.66,51.888],[0.658,51.886],[0.653,51.885],[0.654,51.889],[0.652,51.889],[0.647,51.883],[0.644,51.882],[0.639,51.878],[0.638,51.875],[0.636,51.875],[0.63,51.871],[0.632,51.871],[0.638,51.868],[0.639,51.869],[0.643,51.868],[0.645,51.871],[0.651,51.873],[0.657,51.872],[0.657,51.869],[0.667,51.865],[0.67,51.863],[0.662,51.864],[0.661,51.862],[0.654,51.862],[0.649,51.862],[0.646,51.863],[0.645,51.866],[0.642,51.865],[0.638,51.863],[0.641,51.859],[0.64,51.854],[0.641,51.852],[0.639,51.847],[0.64,51.846],[0.645,51.842],[0.648,51.843],[0.654,51.843],[0.654,51.841],[0.662,51.835],[0.662,51.834],[0.672,51.826],[0.674,51.825],[0.677,51.827],[0.683,51.825],[0.686,51.826],[0.686,51.822],[0.69,51.82],[0.681,51.813],[0.684,51.812],[0.696,51.812],[0.701,51.81],[0.703,51.809],[0.707,51.803],[0.706,51.801],[0.707,51.8],[0.705,51.799],[0.708,51.795],[0.708,51.793],[0.713,51.792],[0.716,51.789],[0.724,51.789],[0.728,51.79],[0.722,51.797],[0.725,51.796],[0.737,51.79],[0.737,51.792],[0.741,51.789],[0.74,51.788],[0.745,51.785],[0.748,51.786],[0.75,51.785],[0.753,51.787],[0.762,51.788],[0.763,51.789],[0.766,51.792],[0.765,51.795],[0.77,51.796],[0.771,51.799],[0.77,51.801],[0.775,51.8],[0.776,51.799],[0.777,51.802],[0.775,51.804],[0.773,51.806],[0.778,51.808],[0.782,51.81],[0.797,51.808],[0.802,51.809],[0.806,51.801],[0.807,51.799],[0.809,51.797],[0.817,51.799],[0.822,51.801],[0.826,51.799],[0.825,51.798],[0.827,51.794],[0.832,51.793],[0.839,51.791],[0.839,51.786],[0.84,51.782],[0.86,51.777],[0.865,51.774],[0.871,51.773],[0.883,51.76],[0.884,51.76],[0.887,51.757],[0.879,51.754],[0.877,51.753],[0.877,51.751],[0.874,51.749],[0.869,51.746],[0.861,51.742],[0.857,51.74],[0.844,51.733],[0.841,51.733],[0.836,51.733],[0.823,51.734],[0.813,51.735],[0.813,51.734],[0.819,51.733],[0.825,51.732],[0.829,51.732],[0.834,51.732],[0.836,51.73],[0.831,51.728],[0.819,51.727],[0.814,51.726],[0.809,51.728],[0.808,51.731],[0.804,51.733],[0.799,51.734],[0.793,51.735],[0.783,51.736],[0.78,51.736],[0.776,51.736],[0.775,51.735],[0.784,51.733],[0.784,51.732],[0.78,51.731],[0.79,51.729],[0.795,51.726],[0.796,51.725],[0.793,51.723],[0.791,51.722],[0.784,51.721],[0.773,51.718],[0.773,51.717],[0.768,51.715],[0.766,51.716],[0.752,51.72],[0.748,51.723],[0.745,51.721],[0.742,51.722],[0.74,51.723],[0.739,51.725],[0.732,51.728],[0.731,51.73],[0.731,51.731],[0.728,51.732],[0.726,51.731],[0.722,51.732],[0.717,51.732],[0.715,51.732],[0.711,51.73],[0.708,51.727],[0.707,51.724],[0.704,51.724],[0.703,51.727],[0.698,51.729],[0.694,51.729],[0.691,51.73],[0.69,51.729],[0.692,51.727],[0.699,51.727],[0.701,51.726],[0.702,51.724],[0.706,51.722],[0.707,51.722],[0.71,51.724],[0.714,51.729],[0.715,51.73],[0.718,51.731],[0.721,51.731],[0.724,51.73],[0.729,51.727],[0.731,51.725],[0.74,51.721],[0.742,51.72],[0.745,51.719],[0.752,51.718],[0.743,51.715],[0.741,51.716],[0.736,51.718],[0.733,51.718],[0.73,51.716],[0.73,51.715],[0.734,51.716],[0.739,51.715],[0.743,51.714],[0.751,51.715],[0.754,51.715],[0.764,51.712],[0.769,51.712],[0.776,51.713],[0.788,51.716],[0.795,51.718],[0.802,51.718],[0.804,51.716],[0.806,51.716],[0.807,51.718],[0.813,51.719],[0.821,51.721],[0.837,51.72],[0.842,51.721],[0.851,51.723],[0.858,51.726],[0.861,51.728],[0.868,51.731],[0.871,51.733],[0.874,51.735],[0.879,51.737],[0.882,51.739],[0.885,51.74],[0.888,51.739],[0.889,51.743],[0.896,51.745],[0.898,51.746],[0.9,51.746],[0.903,51.748],[0.921,51.749],[0.925,51.749],[0.934,51.749],[0.945,51.746],[0.951,51.745],[0.957,51.745],[0.962,51.742],[0.964,51.74],[0.971,51.736],[0.973,51.733],[0.974,51.728],[0.974,51.724],[0.974,51.722],[0.974,51.719],[0.977,51.714],[0.981,51.7],[0.982,51.697],[0.982,51.695],[0.981,51.692],[0.977,51.682],[0.975,51.676],[0.974,51.673],[0.974,51.668],[0.973,51.665],[0.974,51.663],[0.973,51.661],[0.97,51.656],[0.965,51.651],[0.97,51.652],[0.971,51.651],[0.968,51.649],[0.96,51.645],[0.956,51.642],[0.952,51.642],[0.946,51.638],[0.935,51.631],[0.932,51.629],[0.924,51.627],[0.915,51.624],[0.908,51.623],[0.903,51.622],[0.891,51.623],[0.879,51.623],[0.864,51.621],[0.859,51.621],[0.853,51.621],[0.842,51.622],[0.84,51.622],[0.837,51.623],[0.833,51.622],[0.83,51.622],[0.822,51.623],[0.814,51.625],[0.807,51.626],[0.807,51.629],[0.802,51.629],[0.803,51.626],[0.798,51.625],[0.792,51.625],[0.791,51.626],[0.785,51.629],[0.779,51.634],[0.773,51.637],[0.764,51.64],[0.762,51.642],[0.759,51.643],[0.756,51.642],[0.748,51.644],[0.744,51.643],[0.742,51.642],[0.737,51.641],[0.73,51.643],[0.724,51.642],[0.717,51.643],[0.715,51.643],[0.711,51.64],[0.709,51.636],[0.707,51.636],[0.696,51.636],[0.692,51.637],[0.69,51.636],[0.688,51.637],[0.686,51.637],[0.681,51.636],[0.662,51.637],[0.66,51.638],[0.66,51.641],[0.657,51.642],[0.657,51.638],[0.656,51.637],[0.647,51.638],[0.641,51.64],[0.634,51.64],[0.635,51.638],[0.642,51.637],[0.645,51.637],[0.644,51.635],[0.641,51.632],[0.635,51.633],[0.632,51.632],[0.628,51.633],[0.619,51.632],[0.613,51.631],[0.609,51.63],[0.607,51.63],[0.603,51.63],[0.599,51.63]]]},"properties":{"OBJECTID":17,"NAME":"CM","KEY":"CM","Shape_Leng":4.53258,"Shape_Area":0.239782}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.229,51.893],[1.228,51.891],[1.226,51.892],[1.222,51.895],[1.226,51.895],[1.229,51.893]]],[[[1.247,51.89],[1.244,51.888],[1.241,51.888],[1.237,51.891],[1.236,51.893],[1.233,51.894],[1.232,51.896],[1.237,51.896],[1.239,51.895],[1.244,51.895],[1.245,51.892],[1.247,51.89]]],[[[0.887,51.757],[0.884,51.76],[0.883,51.76],[0.871,51.773],[0.865,51.774],[0.86,51.777],[0.84,51.782],[0.839,51.786],[0.839,51.791],[0.832,51.793],[0.827,51.794],[0.825,51.798],[0.826,51.799],[0.822,51.801],[0.817,51.799],[0.809,51.797],[0.807,51.799],[0.806,51.801],[0.802,51.809],[0.797,51.808],[0.782,51.81],[0.778,51.808],[0.773,51.806],[0.775,51.804],[0.777,51.802],[0.776,51.799],[0.775,51.8],[0.77,51.801],[0.771,51.799],[0.77,51.796],[0.765,51.795],[0.766,51.792],[0.763,51.789],[0.762,51.788],[0.753,51.787],[0.75,51.785],[0.748,51.786],[0.745,51.785],[0.74,51.788],[0.741,51.789],[0.737,51.792],[0.737,51.79],[0.725,51.796],[0.722,51.797],[0.728,51.79],[0.724,51.789],[0.716,51.789],[0.713,51.792],[0.708,51.793],[0.708,51.795],[0.705,51.799],[0.707,51.8],[0.706,51.801],[0.707,51.803],[0.703,51.809],[0.701,51.81],[0.696,51.812],[0.684,51.812],[0.681,51.813],[0.69,51.82],[0.686,51.822],[0.686,51.826],[0.683,51.825],[0.677,51.827],[0.674,51.825],[0.672,51.826],[0.662,51.834],[0.662,51.835],[0.654,51.841],[0.654,51.843],[0.648,51.843],[0.645,51.842],[0.64,51.846],[0.639,51.847],[0.641,51.852],[0.64,51.854],[0.641,51.859],[0.638,51.863],[0.642,51.865],[0.645,51.866],[0.646,51.863],[0.649,51.862],[0.654,51.862],[0.661,51.862],[0.662,51.864],[0.67,51.863],[0.667,51.865],[0.657,51.869],[0.657,51.872],[0.651,51.873],[0.645,51.871],[0.643,51.868],[0.639,51.869],[0.638,51.868],[0.632,51.871],[0.63,51.871],[0.636,51.875],[0.638,51.875],[0.639,51.878],[0.644,51.882],[0.647,51.883],[0.652,51.889],[0.654,51.889],[0.653,51.885],[0.658,51.886],[0.66,51.888],[0.664,51.889],[0.664,51.893],[0.666,51.901],[0.662,51.902],[0.658,51.902],[0.648,51.9],[0.643,51.901],[0.645,51.905],[0.638,51.906],[0.635,51.908],[0.641,51.91],[0.638,51.911],[0.638,51.913],[0.635,51.915],[0.626,51.918],[0.625,51.919],[0.627,51.92],[0.621,51.919],[0.621,51.916],[0.615,51.913],[0.608,51.913],[0.604,51.916],[0.604,51.92],[0.6,51.92],[0.596,51.919],[0.592,51.921],[0.589,51.923],[0.587,51.921],[0.585,51.922],[0.582,51.924],[0.578,51.924],[0.573,51.921],[0.571,51.92],[0.568,51.921],[0.561,51.924],[0.557,51.928],[0.556,51.928],[0.551,51.927],[0.542,51.93],[0.541,51.933],[0.539,51.932],[0.539,51.938],[0.545,51.939],[0.552,51.941],[0.555,51.944],[0.557,51.952],[0.554,51.951],[0.554,51.958],[0.545,51.958],[0.546,51.959],[0.545,51.961],[0.545,51.963],[0.534,51.969],[0.53,51.97],[0.528,51.968],[0.519,51.97],[0.516,51.97],[0.513,51.973],[0.51,51.973],[0.507,51.974],[0.507,51.98],[0.503,51.981],[0.503,51.982],[0.506,51.984],[0.509,51.986],[0.506,51.987],[0.503,51.986],[0.499,51.983],[0.497,51.984],[0.497,51.992],[0.496,51.993],[0.497,51.997],[0.497,52],[0.496,52.003],[0.49,52.002],[0.487,51.999],[0.485,51.996],[0.482,51.993],[0.474,51.993],[0.472,51.994],[0.475,51.998],[0.479,52.001],[0.478,52.006],[0.472,52.006],[0.465,52.011],[0.46,52.01],[0.459,52.012],[0.461,52.014],[0.466,52.015],[0.467,52.017],[0.466,52.019],[0.46,52.017],[0.456,52.018],[0.454,52.018],[0.453,52.019],[0.454,52.021],[0.452,52.025],[0.453,52.026],[0.457,52.026],[0.459,52.027],[0.468,52.03],[0.468,52.031],[0.471,52.033],[0.47,52.034],[0.463,52.035],[0.462,52.039],[0.467,52.04],[0.472,52.042],[0.474,52.045],[0.479,52.046],[0.482,52.047],[0.481,52.053],[0.478,52.055],[0.48,52.058],[0.479,52.06],[0.48,52.061],[0.486,52.062],[0.49,52.067],[0.49,52.07],[0.493,52.071],[0.493,52.075],[0.493,52.078],[0.496,52.078],[0.499,52.076],[0.498,52.072],[0.504,52.073],[0.508,52.072],[0.506,52.078],[0.501,52.079],[0.504,52.083],[0.51,52.085],[0.519,52.086],[0.525,52.085],[0.523,52.095],[0.52,52.096],[0.513,52.095],[0.512,52.094],[0.506,52.094],[0.502,52.093],[0.502,52.097],[0.507,52.099],[0.51,52.105],[0.51,52.108],[0.507,52.109],[0.503,52.111],[0.501,52.113],[0.506,52.114],[0.51,52.119],[0.516,52.119],[0.52,52.118],[0.52,52.119],[0.518,52.121],[0.514,52.123],[0.514,52.126],[0.513,52.128],[0.521,52.132],[0.524,52.132],[0.522,52.136],[0.528,52.139],[0.539,52.139],[0.543,52.135],[0.544,52.133],[0.552,52.132],[0.551,52.131],[0.553,52.13],[0.557,52.131],[0.56,52.129],[0.568,52.126],[0.577,52.128],[0.577,52.129],[0.572,52.136],[0.574,52.139],[0.574,52.141],[0.577,52.143],[0.58,52.144],[0.589,52.143],[0.593,52.144],[0.597,52.149],[0.598,52.155],[0.596,52.158],[0.604,52.163],[0.615,52.16],[0.617,52.157],[0.62,52.156],[0.623,52.152],[0.62,52.149],[0.617,52.149],[0.612,52.147],[0.616,52.144],[0.616,52.141],[0.614,52.138],[0.616,52.138],[0.622,52.135],[0.616,52.133],[0.617,52.131],[0.617,52.129],[0.629,52.131],[0.633,52.13],[0.625,52.123],[0.617,52.121],[0.624,52.117],[0.637,52.11],[0.638,52.11],[0.643,52.114],[0.649,52.115],[0.655,52.115],[0.663,52.119],[0.665,52.119],[0.666,52.116],[0.664,52.112],[0.666,52.111],[0.671,52.113],[0.675,52.114],[0.68,52.117],[0.681,52.115],[0.682,52.112],[0.686,52.116],[0.688,52.123],[0.693,52.124],[0.691,52.121],[0.691,52.118],[0.696,52.118],[0.698,52.119],[0.693,52.12],[0.693,52.121],[0.698,52.125],[0.702,52.124],[0.707,52.124],[0.714,52.122],[0.715,52.12],[0.717,52.119],[0.72,52.119],[0.724,52.12],[0.726,52.119],[0.73,52.119],[0.732,52.117],[0.735,52.116],[0.73,52.123],[0.73,52.124],[0.738,52.126],[0.742,52.129],[0.744,52.132],[0.752,52.133],[0.754,52.134],[0.759,52.134],[0.764,52.134],[0.767,52.136],[0.77,52.139],[0.777,52.135],[0.785,52.132],[0.792,52.136],[0.794,52.135],[0.799,52.135],[0.804,52.131],[0.805,52.132],[0.816,52.135],[0.82,52.135],[0.823,52.133],[0.829,52.132],[0.836,52.134],[0.84,52.134],[0.841,52.131],[0.843,52.133],[0.848,52.137],[0.85,52.137],[0.854,52.131],[0.856,52.129],[0.847,52.124],[0.846,52.123],[0.85,52.119],[0.849,52.117],[0.852,52.115],[0.853,52.114],[0.857,52.113],[0.859,52.114],[0.861,52.114],[0.862,52.113],[0.86,52.111],[0.864,52.109],[0.863,52.108],[0.866,52.105],[0.853,52.105],[0.847,52.105],[0.838,52.1],[0.841,52.1],[0.845,52.099],[0.854,52.094],[0.853,52.09],[0.848,52.091],[0.848,52.088],[0.843,52.085],[0.842,52.083],[0.843,52.078],[0.843,52.076],[0.84,52.073],[0.837,52.07],[0.841,52.066],[0.855,52.063],[0.854,52.061],[0.86,52.062],[0.864,52.062],[0.87,52.058],[0.871,52.058],[0.878,52.057],[0.883,52.055],[0.883,52.053],[0.883,52.048],[0.88,52.049],[0.88,52.047],[0.882,52.045],[0.881,52.044],[0.876,52.042],[0.876,52.039],[0.875,52.037],[0.881,52.034],[0.884,52.035],[0.892,52.037],[0.894,52.041],[0.898,52.043],[0.898,52.045],[0.9,52.045],[0.902,52.041],[0.905,52.036],[0.904,52.035],[0.908,52.036],[0.909,52.034],[0.906,52.031],[0.909,52.029],[0.908,52.027],[0.912,52.025],[0.914,52.026],[0.912,52.032],[0.917,52.03],[0.923,52.028],[0.924,52.027],[0.923,52.026],[0.916,52.021],[0.916,52.02],[0.915,52.016],[0.917,52.013],[0.915,52.01],[0.916,52.009],[0.913,52.006],[0.916,52.002],[0.919,52.004],[0.924,52.005],[0.925,52.007],[0.929,52.009],[0.933,52.008],[0.931,52.004],[0.929,52.001],[0.931,52.001],[0.938,52.001],[0.942,51.999],[0.945,52],[0.942,52.001],[0.95,52.001],[0.953,51.999],[0.962,51.999],[0.969,51.999],[0.972,51.996],[0.976,51.995],[0.978,51.996],[0.982,51.996],[0.984,51.998],[0.984,52],[0.988,52],[0.993,51.999],[0.992,52.001],[0.999,52.002],[0.997,52.005],[0.995,52.007],[0.996,52.013],[0.995,52.014],[0.998,52.016],[1.006,52.017],[1.01,52.019],[1.013,52.02],[1.011,52.025],[1.01,52.027],[1.013,52.028],[1.018,52.031],[1.023,52.031],[1.027,52.027],[1.035,52.023],[1.042,52.024],[1.052,52.02],[1.048,52.013],[1.044,52.014],[1.04,52.012],[1.036,52.012],[1.035,52.01],[1.03,52.009],[1.027,52.007],[1.024,52.006],[1.025,52.005],[1.026,52],[1.03,51.998],[1.027,51.996],[1.023,51.996],[1.022,51.993],[1.022,51.99],[1.024,51.987],[1.028,51.987],[1.037,51.985],[1.047,51.987],[1.05,51.983],[1.047,51.979],[1.053,51.977],[1.059,51.977],[1.064,51.978],[1.068,51.977],[1.074,51.976],[1.078,51.974],[1.087,51.973],[1.086,51.977],[1.091,51.974],[1.09,51.973],[1.096,51.971],[1.099,51.969],[1.098,51.968],[1.101,51.966],[1.103,51.967],[1.106,51.967],[1.107,51.965],[1.101,51.964],[1.1,51.964],[1.094,51.963],[1.092,51.958],[1.089,51.959],[1.084,51.958],[1.082,51.957],[1.076,51.955],[1.074,51.956],[1.073,51.954],[1.07,51.954],[1.067,51.952],[1.067,51.949],[1.065,51.949],[1.063,51.953],[1.059,51.955],[1.059,51.953],[1.057,51.952],[1.056,51.953],[1.052,51.954],[1.049,51.954],[1.044,51.956],[1.042,51.956],[1.04,51.954],[1.037,51.954],[1.035,51.955],[1.031,51.954],[1.031,51.952],[1.035,51.954],[1.039,51.954],[1.043,51.956],[1.047,51.954],[1.053,51.953],[1.056,51.95],[1.061,51.948],[1.062,51.946],[1.066,51.946],[1.071,51.946],[1.074,51.947],[1.079,51.947],[1.081,51.944],[1.084,51.944],[1.087,51.945],[1.09,51.945],[1.091,51.947],[1.099,51.948],[1.102,51.948],[1.108,51.949],[1.112,51.948],[1.119,51.949],[1.126,51.949],[1.129,51.946],[1.132,51.944],[1.14,51.942],[1.144,51.942],[1.144,51.943],[1.148,51.946],[1.157,51.948],[1.167,51.948],[1.171,51.948],[1.173,51.945],[1.176,51.943],[1.182,51.942],[1.187,51.941],[1.192,51.941],[1.198,51.941],[1.203,51.943],[1.208,51.943],[1.211,51.941],[1.218,51.941],[1.222,51.939],[1.226,51.939],[1.23,51.94],[1.232,51.94],[1.234,51.943],[1.231,51.944],[1.231,51.945],[1.236,51.945],[1.239,51.947],[1.242,51.948],[1.247,51.948],[1.261,51.948],[1.262,51.946],[1.267,51.946],[1.268,51.942],[1.273,51.941],[1.273,51.94],[1.277,51.939],[1.28,51.94],[1.278,51.945],[1.281,51.945],[1.284,51.946],[1.284,51.947],[1.287,51.949],[1.29,51.948],[1.293,51.945],[1.292,51.937],[1.29,51.937],[1.28,51.934],[1.275,51.929],[1.27,51.923],[1.26,51.919],[1.259,51.917],[1.259,51.915],[1.257,51.913],[1.258,51.912],[1.256,51.907],[1.254,51.905],[1.254,51.903],[1.253,51.901],[1.249,51.898],[1.247,51.896],[1.244,51.897],[1.239,51.896],[1.233,51.902],[1.234,51.903],[1.23,51.904],[1.229,51.903],[1.226,51.903],[1.225,51.902],[1.222,51.901],[1.216,51.9],[1.213,51.899],[1.212,51.897],[1.217,51.897],[1.221,51.896],[1.221,51.895],[1.223,51.892],[1.224,51.89],[1.22,51.889],[1.217,51.889],[1.212,51.891],[1.212,51.887],[1.21,51.886],[1.207,51.887],[1.205,51.886],[1.205,51.884],[1.201,51.884],[1.198,51.883],[1.2,51.882],[1.2,51.877],[1.196,51.877],[1.198,51.874],[1.193,51.873],[1.192,51.871],[1.189,51.872],[1.185,51.871],[1.19,51.87],[1.193,51.87],[1.198,51.871],[1.201,51.871],[1.203,51.872],[1.205,51.871],[1.204,51.869],[1.201,51.868],[1.201,51.867],[1.207,51.869],[1.211,51.867],[1.214,51.867],[1.216,51.868],[1.221,51.869],[1.223,51.871],[1.227,51.872],[1.229,51.874],[1.229,51.879],[1.234,51.879],[1.234,51.881],[1.238,51.881],[1.237,51.879],[1.241,51.878],[1.243,51.881],[1.24,51.88],[1.24,51.882],[1.243,51.883],[1.245,51.881],[1.244,51.88],[1.246,51.877],[1.247,51.878],[1.249,51.881],[1.247,51.882],[1.251,51.883],[1.252,51.884],[1.257,51.884],[1.263,51.886],[1.266,51.886],[1.269,51.884],[1.272,51.883],[1.274,51.883],[1.279,51.88],[1.282,51.879],[1.284,51.877],[1.291,51.875],[1.293,51.873],[1.294,51.872],[1.293,51.867],[1.291,51.863],[1.289,51.86],[1.284,51.857],[1.28,51.853],[1.278,51.852],[1.274,51.847],[1.271,51.845],[1.266,51.841],[1.265,51.841],[1.263,51.838],[1.254,51.833],[1.252,51.831],[1.247,51.827],[1.244,51.824],[1.235,51.818],[1.228,51.815],[1.225,51.813],[1.221,51.811],[1.218,51.809],[1.214,51.808],[1.211,51.806],[1.204,51.803],[1.188,51.798],[1.187,51.798],[1.174,51.794],[1.161,51.789],[1.154,51.786],[1.152,51.785],[1.15,51.784],[1.142,51.781],[1.134,51.777],[1.128,51.776],[1.117,51.773],[1.111,51.773],[1.092,51.771],[1.083,51.772],[1.08,51.771],[1.071,51.77],[1.066,51.77],[1.058,51.769],[1.052,51.768],[1.042,51.769],[1.039,51.77],[1.036,51.77],[1.034,51.77],[1.032,51.775],[1.031,51.777],[1.031,51.782],[1.026,51.789],[1.025,51.79],[1.022,51.795],[1.019,51.795],[1.017,51.797],[1.017,51.798],[1.014,51.802],[1.015,51.803],[1.012,51.806],[1.007,51.807],[1.005,51.808],[1.001,51.812],[0.997,51.813],[0.993,51.817],[0.988,51.823],[0.984,51.828],[0.983,51.829],[0.982,51.832],[0.984,51.837],[0.984,51.839],[0.982,51.842],[0.98,51.843],[0.981,51.845],[0.979,51.848],[0.975,51.849],[0.969,51.85],[0.962,51.853],[0.956,51.854],[0.953,51.854],[0.95,51.856],[0.951,51.858],[0.951,51.862],[0.947,51.866],[0.942,51.869],[0.942,51.867],[0.945,51.865],[0.946,51.862],[0.949,51.861],[0.948,51.86],[0.949,51.857],[0.95,51.854],[0.954,51.852],[0.958,51.853],[0.962,51.851],[0.967,51.848],[0.974,51.846],[0.976,51.844],[0.976,51.843],[0.978,51.839],[0.977,51.835],[0.975,51.833],[0.975,51.827],[0.976,51.825],[0.98,51.819],[0.984,51.81],[0.989,51.807],[0.993,51.803],[0.996,51.803],[1.006,51.8],[1.009,51.796],[1.008,51.794],[1.006,51.789],[1.004,51.787],[1.004,51.784],[1.002,51.783],[1.005,51.78],[1.002,51.779],[1.001,51.779],[1,51.78],[0.997,51.78],[0.996,51.779],[0.991,51.78],[0.989,51.778],[0.987,51.778],[0.984,51.777],[0.98,51.778],[0.977,51.778],[0.977,51.777],[0.972,51.776],[0.969,51.775],[0.968,51.771],[0.966,51.77],[0.964,51.771],[0.956,51.77],[0.955,51.771],[0.951,51.77],[0.949,51.771],[0.946,51.771],[0.945,51.772],[0.942,51.771],[0.937,51.77],[0.934,51.771],[0.93,51.771],[0.927,51.772],[0.914,51.771],[0.91,51.771],[0.899,51.762],[0.897,51.76],[0.887,51.757]],[[0.896,51.834],[0.894,51.837],[0.893,51.838],[0.889,51.84],[0.88,51.841],[0.879,51.839],[0.879,51.836],[0.881,51.835],[0.879,51.833],[0.877,51.831],[0.872,51.831],[0.869,51.829],[0.867,51.831],[0.867,51.832],[0.861,51.833],[0.856,51.833],[0.853,51.832],[0.849,51.832],[0.848,51.831],[0.849,51.829],[0.854,51.829],[0.855,51.827],[0.856,51.824],[0.853,51.824],[0.847,51.822],[0.846,51.821],[0.844,51.821],[0.841,51.819],[0.835,51.817],[0.832,51.817],[0.829,51.816],[0.825,51.816],[0.82,51.815],[0.824,51.813],[0.828,51.813],[0.833,51.813],[0.835,51.814],[0.838,51.815],[0.846,51.818],[0.852,51.821],[0.855,51.822],[0.855,51.821],[0.854,51.816],[0.852,51.814],[0.855,51.811],[0.858,51.813],[0.862,51.814],[0.863,51.815],[0.862,51.817],[0.867,51.819],[0.871,51.821],[0.869,51.823],[0.868,51.825],[0.872,51.826],[0.875,51.826],[0.877,51.827],[0.881,51.826],[0.886,51.827],[0.886,51.826],[0.89,51.825],[0.891,51.827],[0.896,51.828],[0.896,51.832],[0.896,51.834]]]]},"properties":{"OBJECTID":18,"NAME":"CO","KEY":"CO","Shape_Leng":4.82918,"Shape_Area":0.177566}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.013,51.283],[0.003,51.281],[0,51.28],[-0.004,51.276],[-0.004,51.272],[-0.006,51.269],[-0.012,51.269],[-0.017,51.269],[-0.017,51.272],[-0.015,51.273],[-0.015,51.274],[-0.018,51.275],[-0.021,51.273],[-0.023,51.27],[-0.021,51.268],[-0.024,51.266],[-0.032,51.269],[-0.043,51.27],[-0.051,51.268],[-0.052,51.267],[-0.057,51.268],[-0.062,51.269],[-0.068,51.266],[-0.068,51.264],[-0.073,51.261],[-0.078,51.261],[-0.078,51.258],[-0.09,51.257],[-0.091,51.263],[-0.095,51.263],[-0.097,51.262],[-0.1,51.264],[-0.103,51.264],[-0.107,51.266],[-0.109,51.268],[-0.113,51.268],[-0.113,51.269],[-0.119,51.27],[-0.121,51.27],[-0.122,51.272],[-0.125,51.272],[-0.128,51.27],[-0.129,51.268],[-0.131,51.268],[-0.135,51.27],[-0.14,51.271],[-0.137,51.274],[-0.135,51.274],[-0.134,51.277],[-0.129,51.279],[-0.134,51.28],[-0.138,51.28],[-0.144,51.281],[-0.146,51.282],[-0.147,51.285],[-0.151,51.287],[-0.148,51.288],[-0.149,51.29],[-0.15,51.29],[-0.15,51.293],[-0.153,51.293],[-0.154,51.29],[-0.153,51.287],[-0.155,51.287],[-0.155,51.285],[-0.161,51.286],[-0.164,51.285],[-0.164,51.283],[-0.168,51.279],[-0.168,51.277],[-0.171,51.278],[-0.172,51.281],[-0.175,51.283],[-0.177,51.28],[-0.179,51.277],[-0.184,51.273],[-0.188,51.272],[-0.193,51.275],[-0.194,51.274],[-0.197,51.277],[-0.201,51.277],[-0.201,51.279],[-0.205,51.28],[-0.204,51.282],[-0.193,51.283],[-0.188,51.287],[-0.181,51.288],[-0.181,51.293],[-0.188,51.296],[-0.186,51.297],[-0.187,51.3],[-0.185,51.3],[-0.185,51.302],[-0.183,51.304],[-0.18,51.306],[-0.176,51.306],[-0.174,51.308],[-0.175,51.311],[-0.172,51.313],[-0.168,51.313],[-0.167,51.315],[-0.167,51.318],[-0.162,51.321],[-0.161,51.322],[-0.163,51.324],[-0.164,51.328],[-0.163,51.329],[-0.161,51.329],[-0.156,51.33],[-0.154,51.334],[-0.152,51.335],[-0.149,51.336],[-0.148,51.337],[-0.15,51.34],[-0.145,51.341],[-0.145,51.344],[-0.141,51.345],[-0.14,51.347],[-0.136,51.347],[-0.132,51.347],[-0.13,51.347],[-0.128,51.349],[-0.128,51.351],[-0.123,51.35],[-0.123,51.355],[-0.126,51.358],[-0.126,51.359],[-0.127,51.361],[-0.123,51.362],[-0.122,51.364],[-0.122,51.366],[-0.131,51.364],[-0.132,51.368],[-0.134,51.369],[-0.132,51.371],[-0.135,51.373],[-0.138,51.372],[-0.138,51.375],[-0.144,51.379],[-0.149,51.38],[-0.153,51.38],[-0.153,51.387],[-0.158,51.386],[-0.157,51.383],[-0.158,51.381],[-0.162,51.381],[-0.164,51.381],[-0.164,51.383],[-0.167,51.384],[-0.167,51.386],[-0.162,51.387],[-0.164,51.388],[-0.167,51.388],[-0.169,51.39],[-0.168,51.391],[-0.169,51.393],[-0.17,51.394],[-0.174,51.394],[-0.177,51.396],[-0.179,51.397],[-0.183,51.398],[-0.185,51.4],[-0.185,51.402],[-0.182,51.402],[-0.182,51.404],[-0.183,51.407],[-0.182,51.41],[-0.18,51.408],[-0.176,51.41],[-0.176,51.413],[-0.173,51.414],[-0.174,51.415],[-0.166,51.418],[-0.165,51.418],[-0.161,51.419],[-0.16,51.42],[-0.151,51.418],[-0.148,51.417],[-0.143,51.418],[-0.146,51.413],[-0.146,51.411],[-0.143,51.41],[-0.145,51.408],[-0.148,51.407],[-0.143,51.406],[-0.142,51.405],[-0.139,51.406],[-0.135,51.403],[-0.134,51.403],[-0.128,51.402],[-0.126,51.399],[-0.121,51.402],[-0.114,51.402],[-0.109,51.405],[-0.116,51.409],[-0.115,51.41],[-0.116,51.411],[-0.115,51.413],[-0.112,51.412],[-0.109,51.412],[-0.106,51.413],[-0.104,51.414],[-0.1,51.413],[-0.096,51.41],[-0.093,51.409],[-0.091,51.408],[-0.09,51.407],[-0.093,51.402],[-0.093,51.4],[-0.092,51.396],[-0.093,51.395],[-0.092,51.394],[-0.093,51.392],[-0.091,51.391],[-0.091,51.389],[-0.089,51.388],[-0.087,51.387],[-0.081,51.389],[-0.079,51.391],[-0.077,51.393],[-0.075,51.393],[-0.073,51.391],[-0.075,51.388],[-0.074,51.387],[-0.071,51.385],[-0.066,51.387],[-0.063,51.388],[-0.053,51.395],[-0.053,51.394],[-0.047,51.393],[-0.044,51.39],[-0.043,51.389],[-0.039,51.389],[-0.037,51.388],[-0.032,51.388],[-0.03,51.386],[-0.031,51.384],[-0.033,51.383],[-0.036,51.382],[-0.035,51.38],[-0.032,51.38],[-0.031,51.377],[-0.026,51.377],[-0.024,51.372],[-0.024,51.368],[-0.025,51.367],[-0.023,51.362],[-0.021,51.361],[-0.012,51.362],[-0.011,51.36],[-0.003,51.356],[-0.001,51.356],[0.002,51.352],[0.005,51.352],[0.008,51.347],[0.002,51.346],[0.003,51.343],[0.002,51.341],[0.001,51.339],[0.003,51.335],[0.006,51.341],[0.007,51.341],[0.01,51.343],[0.016,51.342],[0.017,51.34],[0.015,51.338],[0.017,51.333],[0.012,51.33],[0.014,51.328],[0.016,51.329],[0.021,51.323],[0.022,51.322],[0.019,51.319],[0.011,51.314],[0.002,51.311],[0.004,51.309],[0.009,51.307],[0.011,51.303],[0.014,51.298],[0.015,51.297],[0.011,51.295],[0.01,51.291],[0.011,51.29],[0.009,51.288],[0.013,51.284],[0.013,51.283]]]},"properties":{"OBJECTID":19,"NAME":"CR","KEY":"CR","Shape_Leng":1.24526,"Shape_Area":0.0208176}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.033,51.046],[1.032,51.046],[1.034,51.048],[1.033,51.051],[1.027,51.054],[1.026,51.054],[1.023,51.051],[1.013,51.05],[1.012,51.052],[1.014,51.053],[1.016,51.053],[1.018,51.057],[1.02,51.058],[1.023,51.059],[1.023,51.061],[1.021,51.061],[1.018,51.059],[1.015,51.059],[1.008,51.056],[1.006,51.056],[1.002,51.064],[0.997,51.065],[0.994,51.063],[0.986,51.055],[0.983,51.055],[0.975,51.057],[0.974,51.06],[0.973,51.062],[0.97,51.063],[0.966,51.062],[0.963,51.062],[0.967,51.07],[0.988,51.07],[0.987,51.073],[0.984,51.075],[0.976,51.075],[0.973,51.076],[0.975,51.081],[0.968,51.082],[0.971,51.085],[0.979,51.088],[0.982,51.09],[0.99,51.089],[0.99,51.087],[0.999,51.089],[1.003,51.085],[1.01,51.078],[1.011,51.082],[1.011,51.085],[1.017,51.084],[1.021,51.084],[1.022,51.084],[1.021,51.087],[1.018,51.09],[1.014,51.091],[1.015,51.093],[1.019,51.095],[1.018,51.098],[1.038,51.095],[1.05,51.093],[1.041,51.095],[1.041,51.097],[1.05,51.096],[1.049,51.099],[1.048,51.1],[1.053,51.103],[1.052,51.106],[1.047,51.114],[1.044,51.117],[1.046,51.118],[1.046,51.12],[1.05,51.121],[1.052,51.123],[1.047,51.129],[1.047,51.13],[1.044,51.133],[1.044,51.135],[1.045,51.138],[1.043,51.14],[1.041,51.145],[1.045,51.149],[1.047,51.15],[1.047,51.152],[1.047,51.155],[1.05,51.156],[1.049,51.158],[1.043,51.159],[1.044,51.161],[1.041,51.162],[1.038,51.16],[1.036,51.16],[1.033,51.16],[1.031,51.162],[1.027,51.163],[1.027,51.166],[1.034,51.165],[1.037,51.167],[1.042,51.168],[1.043,51.169],[1.042,51.172],[1.042,51.176],[1.044,51.177],[1.039,51.178],[1.037,51.178],[1.036,51.181],[1.025,51.184],[1.025,51.18],[1.021,51.179],[1.017,51.179],[1.015,51.179],[1.014,51.183],[1.006,51.183],[1,51.183],[0.998,51.179],[0.994,51.175],[0.993,51.176],[0.994,51.179],[0.994,51.182],[0.993,51.182],[0.989,51.185],[0.989,51.191],[0.985,51.192],[0.981,51.192],[0.972,51.197],[0.966,51.197],[0.961,51.192],[0.954,51.192],[0.955,51.198],[0.954,51.203],[0.952,51.203],[0.95,51.203],[0.948,51.207],[0.947,51.209],[0.95,51.212],[0.95,51.214],[0.938,51.216],[0.93,51.22],[0.925,51.219],[0.902,51.217],[0.894,51.221],[0.891,51.221],[0.888,51.221],[0.885,51.224],[0.887,51.225],[0.885,51.226],[0.886,51.228],[0.884,51.231],[0.882,51.232],[0.883,51.235],[0.887,51.238],[0.884,51.24],[0.883,51.243],[0.882,51.244],[0.886,51.246],[0.89,51.246],[0.892,51.248],[0.896,51.249],[0.902,51.248],[0.905,51.249],[0.913,51.25],[0.913,51.251],[0.918,51.251],[0.911,51.256],[0.911,51.257],[0.913,51.26],[0.915,51.26],[0.923,51.258],[0.921,51.256],[0.928,51.255],[0.934,51.256],[0.937,51.256],[0.939,51.256],[0.941,51.255],[0.944,51.254],[0.952,51.253],[0.957,51.254],[0.956,51.258],[0.952,51.264],[0.953,51.267],[0.949,51.268],[0.948,51.273],[0.953,51.27],[0.957,51.268],[0.96,51.268],[0.977,51.267],[0.98,51.271],[0.98,51.276],[0.986,51.281],[0.995,51.282],[0.997,51.284],[1,51.286],[1.001,51.289],[1.003,51.289],[1.008,51.291],[1.013,51.299],[1.011,51.299],[0.999,51.294],[0.994,51.294],[0.989,51.296],[0.983,51.296],[0.978,51.297],[0.977,51.301],[0.974,51.3],[0.972,51.299],[0.967,51.301],[0.968,51.302],[0.972,51.307],[0.972,51.308],[0.976,51.309],[0.983,51.309],[0.985,51.309],[0.99,51.311],[0.993,51.313],[0.996,51.313],[1.003,51.317],[1.005,51.319],[1,51.322],[0.998,51.323],[0.993,51.325],[0.99,51.321],[0.988,51.321],[0.986,51.322],[0.988,51.323],[0.989,51.325],[0.985,51.327],[0.987,51.33],[0.987,51.334],[0.985,51.337],[0.98,51.339],[0.969,51.334],[0.961,51.34],[0.955,51.34],[0.945,51.344],[0.944,51.346],[0.949,51.347],[0.967,51.35],[0.979,51.35],[0.988,51.351],[0.996,51.355],[0.998,51.358],[1,51.358],[1.001,51.357],[1.004,51.358],[1.01,51.361],[1.011,51.36],[1.025,51.364],[1.025,51.366],[1.035,51.367],[1.037,51.367],[1.052,51.368],[1.058,51.368],[1.061,51.369],[1.067,51.371],[1.072,51.371],[1.075,51.372],[1.076,51.375],[1.081,51.375],[1.083,51.374],[1.087,51.374],[1.093,51.373],[1.098,51.373],[1.101,51.374],[1.106,51.375],[1.113,51.376],[1.115,51.376],[1.119,51.376],[1.12,51.374],[1.129,51.375],[1.133,51.374],[1.138,51.373],[1.14,51.374],[1.145,51.374],[1.15,51.374],[1.156,51.375],[1.164,51.377],[1.169,51.377],[1.174,51.378],[1.175,51.378],[1.184,51.38],[1.19,51.381],[1.192,51.38],[1.194,51.381],[1.196,51.38],[1.206,51.381],[1.212,51.382],[1.223,51.382],[1.229,51.382],[1.234,51.38],[1.238,51.38],[1.243,51.379],[1.247,51.378],[1.252,51.378],[1.258,51.379],[1.261,51.379],[1.264,51.38],[1.274,51.38],[1.279,51.381],[1.283,51.383],[1.29,51.385],[1.294,51.386],[1.303,51.385],[1.305,51.383],[1.312,51.383],[1.315,51.383],[1.317,51.383],[1.321,51.383],[1.323,51.384],[1.325,51.384],[1.329,51.385],[1.332,51.387],[1.333,51.388],[1.338,51.388],[1.341,51.387],[1.344,51.388],[1.349,51.388],[1.351,51.389],[1.355,51.389],[1.356,51.388],[1.361,51.388],[1.365,51.388],[1.368,51.391],[1.37,51.391],[1.381,51.395],[1.384,51.395],[1.387,51.395],[1.391,51.395],[1.393,51.394],[1.396,51.394],[1.398,51.394],[1.402,51.395],[1.404,51.394],[1.406,51.396],[1.41,51.395],[1.41,51.394],[1.413,51.394],[1.419,51.393],[1.422,51.395],[1.422,51.396],[1.426,51.397],[1.428,51.397],[1.429,51.395],[1.431,51.393],[1.434,51.392],[1.435,51.391],[1.439,51.391],[1.442,51.388],[1.443,51.389],[1.445,51.387],[1.443,51.387],[1.443,51.385],[1.446,51.385],[1.448,51.384],[1.449,51.382],[1.448,51.38],[1.45,51.38],[1.452,51.379],[1.452,51.376],[1.45,51.373],[1.45,51.37],[1.45,51.368],[1.447,51.366],[1.448,51.365],[1.447,51.363],[1.447,51.361],[1.445,51.357],[1.444,51.355],[1.445,51.354],[1.443,51.349],[1.441,51.347],[1.441,51.346],[1.438,51.343],[1.438,51.342],[1.435,51.34],[1.434,51.338],[1.427,51.333],[1.426,51.331],[1.423,51.331],[1.421,51.331],[1.418,51.329],[1.415,51.328],[1.414,51.325],[1.409,51.323],[1.401,51.322],[1.393,51.322],[1.39,51.32],[1.389,51.319],[1.39,51.317],[1.389,51.316],[1.387,51.312],[1.387,51.31],[1.384,51.305],[1.383,51.304],[1.384,51.299],[1.384,51.292],[1.384,51.29],[1.385,51.279],[1.387,51.272],[1.39,51.267],[1.392,51.261],[1.398,51.25],[1.399,51.247],[1.403,51.237],[1.405,51.231],[1.406,51.222],[1.405,51.217],[1.405,51.213],[1.405,51.208],[1.405,51.203],[1.405,51.199],[1.406,51.188],[1.406,51.184],[1.406,51.175],[1.406,51.173],[1.404,51.167],[1.401,51.163],[1.399,51.16],[1.394,51.154],[1.389,51.152],[1.387,51.151],[1.386,51.149],[1.385,51.146],[1.379,51.141],[1.368,51.136],[1.358,51.133],[1.348,51.133],[1.347,51.131],[1.343,51.13],[1.343,51.127],[1.338,51.127],[1.333,51.125],[1.329,51.123],[1.326,51.125],[1.321,51.125],[1.317,51.123],[1.314,51.119],[1.318,51.116],[1.317,51.115],[1.315,51.115],[1.312,51.114],[1.304,51.113],[1.297,51.112],[1.294,51.11],[1.29,51.109],[1.283,51.108],[1.281,51.107],[1.282,51.106],[1.268,51.102],[1.262,51.102],[1.251,51.101],[1.251,51.1],[1.246,51.101],[1.238,51.1],[1.229,51.099],[1.226,51.099],[1.224,51.098],[1.22,51.097],[1.213,51.095],[1.211,51.094],[1.205,51.09],[1.205,51.085],[1.204,51.083],[1.201,51.082],[1.198,51.083],[1.195,51.082],[1.19,51.079],[1.19,51.077],[1.185,51.076],[1.177,51.075],[1.164,51.072],[1.158,51.073],[1.152,51.073],[1.14,51.072],[1.132,51.071],[1.121,51.071],[1.104,51.069],[1.097,51.068],[1.077,51.063],[1.069,51.061],[1.062,51.059],[1.051,51.055],[1.043,51.051],[1.035,51.047],[1.033,51.046]]]},"properties":{"OBJECTID":20,"NAME":"CT","KEY":"CT","Shape_Leng":2.69112,"Shape_Area":0.121559}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.326,52.178],[-1.329,52.171],[-1.332,52.167],[-1.344,52.167],[-1.347,52.173],[-1.354,52.177],[-1.355,52.178],[-1.357,52.178],[-1.365,52.177],[-1.369,52.177],[-1.371,52.174],[-1.374,52.172],[-1.373,52.171],[-1.367,52.168],[-1.364,52.168],[-1.364,52.166],[-1.364,52.16],[-1.362,52.155],[-1.362,52.151],[-1.363,52.15],[-1.367,52.153],[-1.369,52.154],[-1.382,52.149],[-1.377,52.146],[-1.378,52.145],[-1.386,52.142],[-1.386,52.141],[-1.381,52.141],[-1.382,52.138],[-1.385,52.133],[-1.389,52.129],[-1.401,52.135],[-1.41,52.14],[-1.412,52.138],[-1.411,52.137],[-1.414,52.136],[-1.422,52.133],[-1.423,52.135],[-1.421,52.135],[-1.424,52.138],[-1.431,52.136],[-1.434,52.136],[-1.435,52.139],[-1.439,52.14],[-1.442,52.139],[-1.443,52.138],[-1.444,52.138],[-1.446,52.136],[-1.445,52.133],[-1.445,52.131],[-1.447,52.128],[-1.451,52.128],[-1.458,52.126],[-1.46,52.124],[-1.462,52.124],[-1.464,52.122],[-1.472,52.122],[-1.478,52.122],[-1.478,52.116],[-1.484,52.113],[-1.492,52.108],[-1.495,52.1],[-1.494,52.098],[-1.492,52.096],[-1.482,52.094],[-1.492,52.087],[-1.485,52.085],[-1.486,52.084],[-1.492,52.086],[-1.498,52.082],[-1.507,52.083],[-1.508,52.081],[-1.506,52.08],[-1.513,52.08],[-1.514,52.079],[-1.511,52.071],[-1.513,52.068],[-1.517,52.07],[-1.529,52.07],[-1.532,52.07],[-1.528,52.078],[-1.526,52.078],[-1.527,52.084],[-1.524,52.086],[-1.53,52.086],[-1.539,52.083],[-1.548,52.082],[-1.554,52.08],[-1.552,52.076],[-1.542,52.067],[-1.543,52.066],[-1.548,52.065],[-1.548,52.068],[-1.552,52.068],[-1.559,52.065],[-1.561,52.065],[-1.563,52.063],[-1.568,52.061],[-1.569,52.056],[-1.579,52.051],[-1.579,52.049],[-1.575,52.045],[-1.574,52.044],[-1.572,52.04],[-1.574,52.038],[-1.576,52.037],[-1.582,52.037],[-1.583,52.036],[-1.582,52.033],[-1.574,52.034],[-1.571,52.03],[-1.569,52.03],[-1.566,52.03],[-1.563,52.03],[-1.562,52.032],[-1.559,52.032],[-1.557,52.031],[-1.555,52.031],[-1.548,52.03],[-1.545,52.03],[-1.545,52.032],[-1.542,52.034],[-1.537,52.034],[-1.536,52.031],[-1.531,52.032],[-1.525,52.032],[-1.522,52.031],[-1.521,52.03],[-1.518,52.028],[-1.514,52.027],[-1.51,52.024],[-1.511,52.021],[-1.514,52.018],[-1.516,52.014],[-1.521,52.006],[-1.522,52.002],[-1.524,51.994],[-1.532,51.996],[-1.533,51.995],[-1.544,51.996],[-1.547,51.993],[-1.556,51.992],[-1.567,51.988],[-1.567,51.982],[-1.558,51.978],[-1.565,51.977],[-1.568,51.976],[-1.576,51.974],[-1.58,51.974],[-1.582,51.973],[-1.587,51.974],[-1.594,51.975],[-1.598,51.98],[-1.598,51.981],[-1.61,51.982],[-1.614,51.989],[-1.616,51.994],[-1.625,51.993],[-1.628,51.993],[-1.628,51.995],[-1.629,51.999],[-1.635,51.999],[-1.643,51.998],[-1.646,51.998],[-1.655,52.001],[-1.652,52.009],[-1.645,52.008],[-1.643,52.011],[-1.646,52.012],[-1.643,52.015],[-1.638,52.017],[-1.631,52.015],[-1.627,52.018],[-1.626,52.02],[-1.625,52.024],[-1.631,52.026],[-1.634,52.029],[-1.63,52.03],[-1.633,52.034],[-1.647,52.033],[-1.649,52.032],[-1.654,52.032],[-1.657,52.035],[-1.665,52.036],[-1.658,52.041],[-1.657,52.041],[-1.652,52.043],[-1.65,52.046],[-1.645,52.048],[-1.645,52.051],[-1.651,52.054],[-1.652,52.054],[-1.656,52.057],[-1.66,52.056],[-1.663,52.057],[-1.674,52.056],[-1.677,52.055],[-1.685,52.055],[-1.685,52.058],[-1.694,52.06],[-1.695,52.061],[-1.698,52.063],[-1.704,52.063],[-1.703,52.068],[-1.702,52.071],[-1.707,52.071],[-1.71,52.071],[-1.711,52.069],[-1.714,52.068],[-1.722,52.071],[-1.722,52.075],[-1.728,52.078],[-1.728,52.081],[-1.726,52.084],[-1.724,52.088],[-1.722,52.089],[-1.727,52.092],[-1.726,52.096],[-1.729,52.099],[-1.734,52.1],[-1.737,52.098],[-1.746,52.103],[-1.748,52.104],[-1.753,52.102],[-1.755,52.102],[-1.759,52.106],[-1.763,52.104],[-1.764,52.105],[-1.763,52.108],[-1.764,52.111],[-1.768,52.111],[-1.772,52.109],[-1.777,52.109],[-1.779,52.111],[-1.778,52.113],[-1.78,52.114],[-1.789,52.112],[-1.793,52.11],[-1.791,52.107],[-1.787,52.105],[-1.793,52.102],[-1.797,52.102],[-1.8,52.104],[-1.801,52.105],[-1.817,52.108],[-1.815,52.109],[-1.823,52.114],[-1.823,52.116],[-1.824,52.117],[-1.823,52.119],[-1.827,52.119],[-1.83,52.12],[-1.838,52.118],[-1.839,52.121],[-1.837,52.122],[-1.828,52.123],[-1.824,52.126],[-1.824,52.128],[-1.828,52.131],[-1.821,52.139],[-1.821,52.14],[-1.826,52.142],[-1.832,52.142],[-1.834,52.149],[-1.828,52.152],[-1.831,52.158],[-1.828,52.158],[-1.828,52.163],[-1.824,52.164],[-1.817,52.164],[-1.814,52.163],[-1.81,52.162],[-1.799,52.161],[-1.795,52.161],[-1.793,52.164],[-1.807,52.169],[-1.808,52.17],[-1.808,52.172],[-1.809,52.177],[-1.806,52.177],[-1.807,52.179],[-1.81,52.18],[-1.808,52.184],[-1.811,52.185],[-1.813,52.188],[-1.81,52.192],[-1.81,52.193],[-1.802,52.196],[-1.801,52.197],[-1.795,52.194],[-1.795,52.193],[-1.788,52.19],[-1.783,52.19],[-1.781,52.197],[-1.784,52.2],[-1.784,52.202],[-1.791,52.202],[-1.788,52.207],[-1.778,52.209],[-1.778,52.213],[-1.78,52.215],[-1.785,52.216],[-1.784,52.218],[-1.786,52.221],[-1.782,52.224],[-1.781,52.226],[-1.787,52.225],[-1.783,52.231],[-1.777,52.231],[-1.768,52.234],[-1.763,52.236],[-1.756,52.236],[-1.755,52.239],[-1.756,52.241],[-1.752,52.246],[-1.749,52.246],[-1.743,52.249],[-1.738,52.251],[-1.733,52.252],[-1.727,52.248],[-1.725,52.248],[-1.714,52.251],[-1.723,52.252],[-1.73,52.253],[-1.726,52.254],[-1.723,52.256],[-1.729,52.259],[-1.732,52.26],[-1.734,52.263],[-1.735,52.267],[-1.741,52.268],[-1.742,52.272],[-1.741,52.273],[-1.749,52.28],[-1.746,52.286],[-1.743,52.286],[-1.743,52.288],[-1.74,52.29],[-1.737,52.29],[-1.733,52.292],[-1.732,52.295],[-1.723,52.3],[-1.718,52.302],[-1.718,52.303],[-1.713,52.305],[-1.716,52.306],[-1.714,52.309],[-1.714,52.312],[-1.718,52.311],[-1.722,52.312],[-1.726,52.311],[-1.727,52.314],[-1.727,52.317],[-1.724,52.319],[-1.726,52.321],[-1.728,52.324],[-1.728,52.33],[-1.728,52.335],[-1.724,52.334],[-1.722,52.336],[-1.718,52.334],[-1.715,52.336],[-1.713,52.337],[-1.708,52.335],[-1.706,52.335],[-1.701,52.336],[-1.698,52.333],[-1.695,52.334],[-1.692,52.341],[-1.693,52.343],[-1.689,52.347],[-1.686,52.346],[-1.679,52.348],[-1.676,52.347],[-1.671,52.352],[-1.672,52.353],[-1.675,52.354],[-1.683,52.355],[-1.681,52.357],[-1.685,52.363],[-1.682,52.365],[-1.686,52.365],[-1.688,52.366],[-1.691,52.367],[-1.699,52.371],[-1.687,52.378],[-1.687,52.381],[-1.688,52.381],[-1.687,52.387],[-1.688,52.388],[-1.687,52.391],[-1.683,52.393],[-1.677,52.393],[-1.68,52.399],[-1.681,52.4],[-1.679,52.403],[-1.674,52.404],[-1.669,52.404],[-1.666,52.407],[-1.659,52.403],[-1.661,52.407],[-1.659,52.411],[-1.662,52.415],[-1.665,52.416],[-1.667,52.42],[-1.665,52.42],[-1.664,52.422],[-1.661,52.422],[-1.661,52.426],[-1.664,52.427],[-1.678,52.421],[-1.678,52.424],[-1.675,52.43],[-1.675,52.433],[-1.68,52.434],[-1.685,52.433],[-1.687,52.437],[-1.69,52.438],[-1.69,52.443],[-1.686,52.444],[-1.687,52.446],[-1.696,52.446],[-1.695,52.449],[-1.702,52.451],[-1.7,52.456],[-1.702,52.459],[-1.695,52.463],[-1.697,52.468],[-1.693,52.469],[-1.691,52.471],[-1.687,52.468],[-1.683,52.468],[-1.68,52.469],[-1.678,52.47],[-1.674,52.471],[-1.669,52.473],[-1.666,52.472],[-1.661,52.471],[-1.645,52.469],[-1.647,52.477],[-1.646,52.479],[-1.641,52.479],[-1.636,52.478],[-1.637,52.482],[-1.633,52.484],[-1.628,52.488],[-1.632,52.488],[-1.635,52.486],[-1.639,52.488],[-1.625,52.49],[-1.618,52.491],[-1.615,52.494],[-1.612,52.494],[-1.608,52.494],[-1.609,52.499],[-1.623,52.507],[-1.627,52.509],[-1.625,52.509],[-1.622,52.512],[-1.62,52.511],[-1.617,52.51],[-1.614,52.507],[-1.613,52.507],[-1.61,52.508],[-1.615,52.51],[-1.612,52.512],[-1.605,52.514],[-1.603,52.515],[-1.596,52.517],[-1.596,52.519],[-1.596,52.524],[-1.595,52.525],[-1.6,52.527],[-1.594,52.529],[-1.596,52.533],[-1.6,52.534],[-1.608,52.533],[-1.611,52.535],[-1.614,52.535],[-1.618,52.538],[-1.62,52.539],[-1.628,52.543],[-1.633,52.542],[-1.639,52.55],[-1.643,52.549],[-1.651,52.544],[-1.656,52.541],[-1.661,52.545],[-1.666,52.546],[-1.667,52.548],[-1.67,52.549],[-1.672,52.551],[-1.669,52.551],[-1.666,52.552],[-1.662,52.555],[-1.662,52.56],[-1.659,52.564],[-1.662,52.569],[-1.656,52.573],[-1.655,52.575],[-1.655,52.578],[-1.652,52.582],[-1.652,52.584],[-1.655,52.584],[-1.658,52.586],[-1.656,52.588],[-1.649,52.588],[-1.645,52.589],[-1.637,52.587],[-1.635,52.586],[-1.634,52.583],[-1.629,52.582],[-1.624,52.584],[-1.624,52.588],[-1.62,52.589],[-1.619,52.588],[-1.615,52.591],[-1.616,52.594],[-1.615,52.595],[-1.609,52.594],[-1.606,52.591],[-1.604,52.591],[-1.602,52.594],[-1.608,52.596],[-1.606,52.599],[-1.596,52.598],[-1.594,52.6],[-1.589,52.602],[-1.59,52.603],[-1.587,52.604],[-1.586,52.606],[-1.588,52.609],[-1.583,52.61],[-1.584,52.616],[-1.583,52.618],[-1.583,52.62],[-1.577,52.621],[-1.57,52.621],[-1.569,52.627],[-1.566,52.628],[-1.559,52.628],[-1.557,52.632],[-1.552,52.633],[-1.547,52.637],[-1.548,52.637],[-1.557,52.639],[-1.565,52.642],[-1.572,52.645],[-1.575,52.65],[-1.573,52.652],[-1.57,52.652],[-1.567,52.654],[-1.568,52.655],[-1.571,52.653],[-1.573,52.654],[-1.575,52.652],[-1.577,52.654],[-1.587,52.654],[-1.578,52.66],[-1.563,52.671],[-1.559,52.674],[-1.555,52.669],[-1.549,52.671],[-1.549,52.673],[-1.546,52.675],[-1.546,52.662],[-1.546,52.658],[-1.542,52.657],[-1.538,52.658],[-1.539,52.661],[-1.539,52.663],[-1.537,52.664],[-1.529,52.671],[-1.515,52.669],[-1.509,52.663],[-1.506,52.663],[-1.494,52.666],[-1.494,52.67],[-1.489,52.67],[-1.484,52.668],[-1.474,52.671],[-1.473,52.669],[-1.469,52.67],[-1.456,52.666],[-1.45,52.666],[-1.447,52.664],[-1.446,52.668],[-1.44,52.673],[-1.441,52.676],[-1.432,52.674],[-1.43,52.681],[-1.422,52.683],[-1.417,52.68],[-1.416,52.675],[-1.413,52.674],[-1.409,52.671],[-1.404,52.671],[-1.399,52.672],[-1.398,52.672],[-1.399,52.669],[-1.394,52.67],[-1.396,52.672],[-1.394,52.676],[-1.395,52.677],[-1.391,52.68],[-1.388,52.68],[-1.381,52.679],[-1.38,52.679],[-1.368,52.677],[-1.367,52.672],[-1.365,52.673],[-1.357,52.671],[-1.356,52.667],[-1.354,52.666],[-1.353,52.66],[-1.355,52.659],[-1.355,52.656],[-1.352,52.656],[-1.35,52.657],[-1.35,52.659],[-1.347,52.663],[-1.341,52.661],[-1.341,52.655],[-1.346,52.655],[-1.341,52.652],[-1.341,52.651],[-1.346,52.65],[-1.349,52.65],[-1.352,52.645],[-1.353,52.643],[-1.353,52.641],[-1.357,52.641],[-1.358,52.639],[-1.356,52.638],[-1.352,52.637],[-1.35,52.635],[-1.359,52.632],[-1.363,52.63],[-1.362,52.627],[-1.354,52.622],[-1.355,52.617],[-1.358,52.614],[-1.359,52.611],[-1.357,52.605],[-1.364,52.603],[-1.365,52.605],[-1.367,52.607],[-1.369,52.607],[-1.373,52.608],[-1.376,52.606],[-1.376,52.601],[-1.377,52.596],[-1.372,52.593],[-1.373,52.587],[-1.375,52.586],[-1.374,52.583],[-1.375,52.582],[-1.374,52.579],[-1.377,52.576],[-1.382,52.574],[-1.389,52.574],[-1.396,52.564],[-1.395,52.563],[-1.397,52.562],[-1.399,52.559],[-1.401,52.559],[-1.404,52.561],[-1.407,52.56],[-1.409,52.558],[-1.412,52.557],[-1.414,52.554],[-1.416,52.553],[-1.416,52.549],[-1.415,52.547],[-1.422,52.543],[-1.416,52.537],[-1.417,52.536],[-1.414,52.535],[-1.415,52.534],[-1.411,52.531],[-1.411,52.53],[-1.418,52.531],[-1.419,52.527],[-1.427,52.526],[-1.426,52.524],[-1.419,52.519],[-1.42,52.518],[-1.416,52.515],[-1.407,52.515],[-1.401,52.514],[-1.397,52.515],[-1.395,52.514],[-1.39,52.513],[-1.39,52.511],[-1.385,52.506],[-1.375,52.505],[-1.373,52.505],[-1.366,52.505],[-1.372,52.501],[-1.371,52.499],[-1.371,52.497],[-1.366,52.495],[-1.367,52.494],[-1.372,52.495],[-1.377,52.495],[-1.385,52.496],[-1.386,52.492],[-1.389,52.49],[-1.386,52.486],[-1.38,52.486],[-1.383,52.485],[-1.38,52.482],[-1.373,52.479],[-1.378,52.473],[-1.377,52.47],[-1.369,52.471],[-1.367,52.467],[-1.358,52.466],[-1.356,52.467],[-1.351,52.468],[-1.343,52.472],[-1.337,52.478],[-1.333,52.481],[-1.329,52.479],[-1.325,52.481],[-1.316,52.478],[-1.312,52.485],[-1.305,52.481],[-1.299,52.476],[-1.297,52.476],[-1.281,52.475],[-1.27,52.465],[-1.26,52.457],[-1.254,52.451],[-1.255,52.447],[-1.257,52.445],[-1.256,52.444],[-1.255,52.441],[-1.25,52.441],[-1.247,52.44],[-1.244,52.441],[-1.246,52.434],[-1.243,52.433],[-1.236,52.434],[-1.229,52.427],[-1.236,52.422],[-1.235,52.418],[-1.236,52.416],[-1.232,52.417],[-1.225,52.422],[-1.216,52.412],[-1.218,52.41],[-1.216,52.406],[-1.196,52.405],[-1.197,52.404],[-1.201,52.399],[-1.205,52.399],[-1.199,52.392],[-1.197,52.392],[-1.189,52.394],[-1.185,52.393],[-1.18,52.393],[-1.178,52.392],[-1.176,52.393],[-1.172,52.392],[-1.175,52.399],[-1.169,52.4],[-1.162,52.4],[-1.153,52.397],[-1.153,52.393],[-1.143,52.388],[-1.142,52.382],[-1.133,52.381],[-1.135,52.378],[-1.14,52.378],[-1.143,52.382],[-1.154,52.38],[-1.159,52.375],[-1.164,52.375],[-1.165,52.377],[-1.174,52.377],[-1.178,52.373],[-1.176,52.372],[-1.177,52.368],[-1.175,52.365],[-1.178,52.36],[-1.178,52.357],[-1.175,52.354],[-1.172,52.353],[-1.173,52.35],[-1.173,52.345],[-1.174,52.341],[-1.174,52.34],[-1.167,52.341],[-1.162,52.345],[-1.157,52.342],[-1.151,52.336],[-1.148,52.334],[-1.146,52.33],[-1.142,52.328],[-1.147,52.328],[-1.149,52.327],[-1.151,52.327],[-1.158,52.327],[-1.153,52.323],[-1.153,52.32],[-1.154,52.318],[-1.154,52.317],[-1.155,52.313],[-1.158,52.311],[-1.153,52.307],[-1.153,52.306],[-1.158,52.307],[-1.162,52.306],[-1.162,52.301],[-1.166,52.297],[-1.169,52.296],[-1.172,52.299],[-1.175,52.3],[-1.18,52.302],[-1.185,52.304],[-1.19,52.309],[-1.195,52.308],[-1.2,52.311],[-1.204,52.312],[-1.203,52.315],[-1.208,52.316],[-1.212,52.312],[-1.216,52.311],[-1.217,52.308],[-1.226,52.309],[-1.233,52.308],[-1.232,52.307],[-1.225,52.306],[-1.221,52.302],[-1.22,52.3],[-1.217,52.297],[-1.216,52.296],[-1.217,52.294],[-1.221,52.291],[-1.225,52.291],[-1.233,52.286],[-1.232,52.285],[-1.224,52.288],[-1.218,52.285],[-1.216,52.281],[-1.216,52.278],[-1.218,52.273],[-1.219,52.27],[-1.222,52.268],[-1.229,52.268],[-1.233,52.258],[-1.242,52.257],[-1.244,52.257],[-1.244,52.253],[-1.245,52.251],[-1.249,52.252],[-1.254,52.253],[-1.259,52.253],[-1.255,52.26],[-1.259,52.263],[-1.265,52.267],[-1.267,52.268],[-1.272,52.265],[-1.274,52.264],[-1.279,52.268],[-1.279,52.27],[-1.284,52.274],[-1.289,52.272],[-1.29,52.273],[-1.297,52.275],[-1.304,52.275],[-1.305,52.274],[-1.309,52.273],[-1.311,52.271],[-1.308,52.264],[-1.298,52.262],[-1.297,52.259],[-1.302,52.26],[-1.306,52.259],[-1.312,52.256],[-1.308,52.252],[-1.304,52.253],[-1.299,52.252],[-1.3,52.248],[-1.297,52.247],[-1.294,52.246],[-1.294,52.242],[-1.295,52.242],[-1.295,52.237],[-1.29,52.239],[-1.288,52.239],[-1.277,52.234],[-1.274,52.235],[-1.269,52.237],[-1.268,52.237],[-1.261,52.228],[-1.268,52.227],[-1.269,52.223],[-1.272,52.221],[-1.271,52.219],[-1.265,52.218],[-1.264,52.214],[-1.266,52.213],[-1.27,52.213],[-1.275,52.206],[-1.272,52.203],[-1.274,52.202],[-1.28,52.192],[-1.288,52.193],[-1.291,52.195],[-1.297,52.195],[-1.304,52.196],[-1.308,52.194],[-1.31,52.19],[-1.309,52.187],[-1.313,52.182],[-1.314,52.182],[-1.324,52.183],[-1.324,52.184],[-1.332,52.186],[-1.333,52.186],[-1.336,52.182],[-1.335,52.179],[-1.328,52.179],[-1.326,52.178]]]},"properties":{"OBJECTID":21,"NAME":"CV","KEY":"CV","Shape_Leng":4.67522,"Shape_Area":0.238058}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.137,53.152],[-2.138,53.152],[-2.141,53.155],[-2.146,53.155],[-2.15,53.152],[-2.151,53.151],[-2.154,53.149],[-2.157,53.151],[-2.161,53.152],[-2.165,53.146],[-2.168,53.143],[-2.166,53.141],[-2.165,53.138],[-2.167,53.136],[-2.17,53.136],[-2.172,53.135],[-2.175,53.135],[-2.182,53.135],[-2.183,53.138],[-2.187,53.136],[-2.186,53.133],[-2.189,53.133],[-2.193,53.131],[-2.196,53.133],[-2.199,53.134],[-2.202,53.128],[-2.203,53.128],[-2.207,53.125],[-2.209,53.122],[-2.213,53.12],[-2.216,53.121],[-2.221,53.12],[-2.224,53.121],[-2.229,53.123],[-2.232,53.124],[-2.229,53.127],[-2.231,53.127],[-2.235,53.123],[-2.241,53.126],[-2.246,53.124],[-2.251,53.125],[-2.252,53.127],[-2.254,53.128],[-2.255,53.131],[-2.257,53.133],[-2.262,53.13],[-2.264,53.13],[-2.269,53.126],[-2.27,53.122],[-2.273,53.118],[-2.278,53.122],[-2.276,53.126],[-2.269,53.128],[-2.27,53.132],[-2.268,53.134],[-2.271,53.137],[-2.277,53.138],[-2.279,53.137],[-2.282,53.134],[-2.286,53.132],[-2.288,53.129],[-2.293,53.127],[-2.291,53.124],[-2.288,53.122],[-2.294,53.122],[-2.3,53.116],[-2.302,53.118],[-2.305,53.119],[-2.315,53.119],[-2.318,53.12],[-2.323,53.117],[-2.319,53.115],[-2.318,53.114],[-2.326,53.113],[-2.329,53.115],[-2.332,53.116],[-2.334,53.113],[-2.33,53.114],[-2.326,53.109],[-2.329,53.108],[-2.338,53.11],[-2.341,53.103],[-2.343,53.094],[-2.343,53.093],[-2.337,53.091],[-2.336,53.091],[-2.334,53.09],[-2.333,53.088],[-2.336,53.085],[-2.323,53.089],[-2.317,53.091],[-2.316,53.089],[-2.317,53.086],[-2.311,53.085],[-2.31,53.083],[-2.316,53.08],[-2.318,53.078],[-2.322,53.078],[-2.326,53.077],[-2.333,53.072],[-2.334,53.07],[-2.332,53.065],[-2.34,53.063],[-2.338,53.062],[-2.338,53.059],[-2.337,53.059],[-2.34,53.053],[-2.337,53.051],[-2.331,53.053],[-2.331,53.05],[-2.335,53.049],[-2.339,53.049],[-2.344,53.048],[-2.347,53.049],[-2.348,53.041],[-2.347,53.041],[-2.348,53.036],[-2.344,53.032],[-2.342,53.034],[-2.335,53.032],[-2.329,53.035],[-2.327,53.03],[-2.323,53.026],[-2.321,53.023],[-2.323,53.019],[-2.327,53.015],[-2.322,53.012],[-2.321,53.011],[-2.315,53.009],[-2.314,53.006],[-2.309,53.006],[-2.307,53.005],[-2.308,53.002],[-2.31,52.995],[-2.313,52.996],[-2.318,52.998],[-2.325,52.996],[-2.325,52.992],[-2.323,52.987],[-2.324,52.983],[-2.328,52.981],[-2.322,52.975],[-2.327,52.97],[-2.329,52.971],[-2.33,52.973],[-2.334,52.972],[-2.338,52.972],[-2.343,52.973],[-2.346,52.975],[-2.348,52.977],[-2.353,52.979],[-2.359,52.978],[-2.367,52.978],[-2.374,52.979],[-2.378,52.977],[-2.38,52.975],[-2.381,52.973],[-2.374,52.969],[-2.375,52.968],[-2.382,52.968],[-2.384,52.969],[-2.386,52.971],[-2.388,52.971],[-2.392,52.969],[-2.393,52.968],[-2.396,52.969],[-2.401,52.964],[-2.406,52.963],[-2.409,52.964],[-2.418,52.962],[-2.421,52.966],[-2.425,52.968],[-2.426,52.968],[-2.434,52.97],[-2.44,52.968],[-2.444,52.973],[-2.446,52.973],[-2.451,52.969],[-2.45,52.966],[-2.455,52.966],[-2.46,52.968],[-2.463,52.967],[-2.461,52.965],[-2.46,52.962],[-2.464,52.961],[-2.468,52.962],[-2.476,52.96],[-2.478,52.958],[-2.488,52.962],[-2.497,52.965],[-2.502,52.963],[-2.508,52.967],[-2.509,52.969],[-2.511,52.969],[-2.515,52.972],[-2.519,52.972],[-2.518,52.974],[-2.522,52.974],[-2.525,52.973],[-2.528,52.972],[-2.532,52.97],[-2.536,52.965],[-2.543,52.966],[-2.544,52.97],[-2.549,52.973],[-2.555,52.976],[-2.561,52.975],[-2.563,52.976],[-2.562,52.98],[-2.563,52.981],[-2.561,52.983],[-2.557,52.983],[-2.551,52.984],[-2.547,52.983],[-2.546,52.984],[-2.548,52.985],[-2.546,52.988],[-2.549,52.99],[-2.557,52.989],[-2.558,52.99],[-2.566,52.989],[-2.566,52.99],[-2.572,52.989],[-2.573,52.989],[-2.581,52.988],[-2.582,52.989],[-2.581,52.994],[-2.58,52.995],[-2.58,52.998],[-2.58,53],[-2.586,52.999],[-2.588,53.001],[-2.586,53.002],[-2.585,53.004],[-2.59,53.005],[-2.591,53.004],[-2.597,53.002],[-2.605,53.005],[-2.609,53],[-2.613,52.999],[-2.619,52.998],[-2.622,52.999],[-2.622,53.002],[-2.627,53.005],[-2.625,53.006],[-2.624,53.008],[-2.624,53.01],[-2.628,53.01],[-2.628,53.011],[-2.632,53.014],[-2.637,53.012],[-2.634,53.015],[-2.637,53.016],[-2.64,53.019],[-2.637,53.02],[-2.632,53.021],[-2.639,53.024],[-2.635,53.025],[-2.634,53.025],[-2.633,53.027],[-2.63,53.029],[-2.633,53.03],[-2.639,53.03],[-2.642,53.029],[-2.646,53.03],[-2.65,53.037],[-2.652,53.034],[-2.658,53.031],[-2.664,53.039],[-2.665,53.039],[-2.67,53.049],[-2.669,53.05],[-2.662,53.048],[-2.658,53.05],[-2.657,53.053],[-2.652,53.053],[-2.647,53.055],[-2.645,53.058],[-2.645,53.059],[-2.641,53.06],[-2.645,53.063],[-2.648,53.065],[-2.651,53.068],[-2.651,53.073],[-2.658,53.076],[-2.661,53.076],[-2.661,53.075],[-2.666,53.076],[-2.67,53.075],[-2.678,53.076],[-2.689,53.073],[-2.691,53.076],[-2.69,53.081],[-2.687,53.082],[-2.69,53.084],[-2.694,53.084],[-2.699,53.084],[-2.701,53.086],[-2.695,53.086],[-2.695,53.088],[-2.691,53.09],[-2.693,53.093],[-2.702,53.093],[-2.704,53.09],[-2.707,53.092],[-2.703,53.094],[-2.702,53.098],[-2.7,53.1],[-2.704,53.104],[-2.705,53.107],[-2.702,53.11],[-2.7,53.11],[-2.7,53.113],[-2.707,53.116],[-2.71,53.117],[-2.71,53.121],[-2.707,53.124],[-2.714,53.126],[-2.716,53.127],[-2.716,53.13],[-2.721,53.131],[-2.723,53.133],[-2.717,53.133],[-2.719,53.138],[-2.716,53.138],[-2.715,53.143],[-2.72,53.143],[-2.72,53.148],[-2.715,53.153],[-2.711,53.155],[-2.716,53.161],[-2.716,53.167],[-2.716,53.169],[-2.719,53.169],[-2.721,53.168],[-2.725,53.169],[-2.726,53.168],[-2.729,53.164],[-2.733,53.163],[-2.733,53.165],[-2.739,53.165],[-2.741,53.167],[-2.745,53.17],[-2.743,53.177],[-2.75,53.177],[-2.757,53.179],[-2.755,53.18],[-2.756,53.183],[-2.75,53.182],[-2.75,53.184],[-2.747,53.184],[-2.746,53.185],[-2.747,53.187],[-2.74,53.189],[-2.74,53.191],[-2.733,53.194],[-2.729,53.192],[-2.727,53.192],[-2.726,53.189],[-2.723,53.191],[-2.723,53.194],[-2.717,53.194],[-2.717,53.196],[-2.725,53.197],[-2.726,53.201],[-2.733,53.203],[-2.738,53.209],[-2.732,53.21],[-2.724,53.213],[-2.719,53.213],[-2.718,53.216],[-2.717,53.216],[-2.712,53.22],[-2.714,53.22],[-2.713,53.223],[-2.716,53.223],[-2.717,53.227],[-2.712,53.228],[-2.708,53.226],[-2.705,53.227],[-2.703,53.23],[-2.708,53.229],[-2.712,53.23],[-2.716,53.23],[-2.717,53.234],[-2.718,53.235],[-2.709,53.236],[-2.706,53.236],[-2.701,53.236],[-2.698,53.236],[-2.691,53.233],[-2.688,53.238],[-2.679,53.237],[-2.671,53.234],[-2.67,53.229],[-2.666,53.229],[-2.667,53.235],[-2.659,53.237],[-2.656,53.234],[-2.651,53.232],[-2.643,53.233],[-2.641,53.236],[-2.643,53.237],[-2.636,53.241],[-2.627,53.242],[-2.632,53.245],[-2.631,53.249],[-2.627,53.248],[-2.627,53.25],[-2.63,53.252],[-2.635,53.253],[-2.637,53.254],[-2.642,53.254],[-2.643,53.255],[-2.646,53.253],[-2.648,53.254],[-2.645,53.256],[-2.645,53.26],[-2.644,53.262],[-2.639,53.265],[-2.641,53.266],[-2.639,53.269],[-2.64,53.271],[-2.646,53.271],[-2.644,53.274],[-2.646,53.275],[-2.645,53.277],[-2.645,53.282],[-2.644,53.284],[-2.641,53.283],[-2.637,53.283],[-2.628,53.284],[-2.628,53.286],[-2.617,53.292],[-2.616,53.292],[-2.609,53.289],[-2.607,53.29],[-2.596,53.29],[-2.593,53.292],[-2.593,53.294],[-2.585,53.298],[-2.583,53.298],[-2.577,53.296],[-2.576,53.296],[-2.571,53.298],[-2.566,53.297],[-2.56,53.3],[-2.559,53.302],[-2.563,53.304],[-2.56,53.305],[-2.564,53.306],[-2.564,53.307],[-2.561,53.311],[-2.557,53.309],[-2.551,53.313],[-2.55,53.313],[-2.552,53.315],[-2.554,53.318],[-2.553,53.318],[-2.547,53.319],[-2.552,53.32],[-2.557,53.322],[-2.554,53.324],[-2.548,53.329],[-2.547,53.329],[-2.545,53.331],[-2.539,53.334],[-2.536,53.337],[-2.529,53.338],[-2.525,53.343],[-2.525,53.347],[-2.519,53.348],[-2.512,53.345],[-2.51,53.342],[-2.506,53.341],[-2.502,53.338],[-2.5,53.335],[-2.498,53.336],[-2.491,53.334],[-2.483,53.333],[-2.479,53.334],[-2.474,53.331],[-2.463,53.327],[-2.445,53.323],[-2.446,53.317],[-2.447,53.317],[-2.451,53.313],[-2.45,53.306],[-2.451,53.305],[-2.453,53.303],[-2.457,53.303],[-2.464,53.303],[-2.467,53.302],[-2.469,53.3],[-2.473,53.297],[-2.475,53.296],[-2.48,53.294],[-2.475,53.289],[-2.475,53.288],[-2.472,53.286],[-2.468,53.287],[-2.467,53.286],[-2.457,53.286],[-2.454,53.287],[-2.449,53.284],[-2.448,53.28],[-2.443,53.278],[-2.451,53.274],[-2.453,53.272],[-2.456,53.268],[-2.441,53.269],[-2.435,53.27],[-2.435,53.268],[-2.429,53.264],[-2.427,53.263],[-2.428,53.261],[-2.427,53.259],[-2.429,53.256],[-2.433,53.258],[-2.437,53.257],[-2.429,53.252],[-2.426,53.254],[-2.424,53.252],[-2.421,53.249],[-2.422,53.247],[-2.426,53.247],[-2.431,53.245],[-2.431,53.244],[-2.422,53.242],[-2.424,53.24],[-2.423,53.237],[-2.415,53.234],[-2.412,53.234],[-2.407,53.235],[-2.403,53.236],[-2.404,53.233],[-2.402,53.23],[-2.397,53.231],[-2.394,53.227],[-2.389,53.228],[-2.387,53.232],[-2.379,53.235],[-2.376,53.234],[-2.373,53.231],[-2.373,53.228],[-2.37,53.228],[-2.365,53.232],[-2.362,53.232],[-2.356,53.231],[-2.356,53.232],[-2.36,53.237],[-2.355,53.239],[-2.357,53.236],[-2.356,53.233],[-2.352,53.233],[-2.35,53.234],[-2.35,53.235],[-2.354,53.24],[-2.353,53.241],[-2.347,53.243],[-2.345,53.243],[-2.338,53.244],[-2.331,53.25],[-2.33,53.25],[-2.328,53.252],[-2.326,53.253],[-2.321,53.25],[-2.321,53.248],[-2.316,53.245],[-2.317,53.243],[-2.308,53.242],[-2.315,53.234],[-2.31,53.232],[-2.307,53.23],[-2.305,53.231],[-2.301,53.231],[-2.301,53.23],[-2.297,53.229],[-2.294,53.229],[-2.296,53.224],[-2.292,53.222],[-2.289,53.222],[-2.283,53.221],[-2.281,53.219],[-2.281,53.216],[-2.277,53.214],[-2.278,53.213],[-2.271,53.206],[-2.266,53.207],[-2.259,53.207],[-2.255,53.206],[-2.251,53.207],[-2.247,53.206],[-2.244,53.205],[-2.242,53.204],[-2.239,53.202],[-2.243,53.2],[-2.242,53.198],[-2.243,53.195],[-2.241,53.194],[-2.231,53.194],[-2.229,53.196],[-2.224,53.199],[-2.22,53.199],[-2.216,53.199],[-2.214,53.2],[-2.213,53.203],[-2.208,53.202],[-2.208,53.199],[-2.206,53.197],[-2.199,53.2],[-2.195,53.198],[-2.188,53.2],[-2.188,53.201],[-2.183,53.2],[-2.181,53.206],[-2.174,53.21],[-2.176,53.211],[-2.181,53.214],[-2.174,53.213],[-2.171,53.215],[-2.166,53.215],[-2.153,53.212],[-2.149,53.212],[-2.146,53.211],[-2.142,53.22],[-2.141,53.219],[-2.142,53.217],[-2.139,53.214],[-2.137,53.212],[-2.139,53.209],[-2.14,53.206],[-2.142,53.203],[-2.144,53.197],[-2.144,53.194],[-2.142,53.189],[-2.139,53.187],[-2.136,53.181],[-2.137,53.178],[-2.135,53.178],[-2.133,53.176],[-2.126,53.173],[-2.121,53.174],[-2.115,53.171],[-2.114,53.169],[-2.118,53.168],[-2.12,53.167],[-2.116,53.165],[-2.12,53.164],[-2.124,53.162],[-2.124,53.161],[-2.124,53.157],[-2.126,53.157],[-2.129,53.158],[-2.132,53.155],[-2.135,53.156],[-2.136,53.155],[-2.137,53.152]]]},"properties":{"OBJECTID":22,"NAME":"CW","KEY":"CW","Shape_Leng":3.03133,"Shape_Area":0.124928}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.344,51.324],[0.339,51.325],[0.343,51.326],[0.346,51.328],[0.344,51.331],[0.343,51.331],[0.344,51.336],[0.34,51.336],[0.34,51.341],[0.342,51.344],[0.343,51.345],[0.341,51.348],[0.34,51.349],[0.341,51.35],[0.343,51.35],[0.346,51.351],[0.343,51.355],[0.34,51.361],[0.338,51.36],[0.333,51.36],[0.33,51.359],[0.33,51.362],[0.327,51.364],[0.326,51.365],[0.32,51.367],[0.319,51.365],[0.315,51.358],[0.314,51.356],[0.312,51.356],[0.307,51.356],[0.302,51.361],[0.298,51.362],[0.301,51.363],[0.297,51.364],[0.298,51.369],[0.3,51.371],[0.297,51.375],[0.295,51.376],[0.287,51.374],[0.289,51.373],[0.293,51.371],[0.29,51.368],[0.287,51.367],[0.283,51.368],[0.283,51.366],[0.286,51.364],[0.282,51.36],[0.283,51.357],[0.279,51.357],[0.276,51.356],[0.273,51.353],[0.272,51.356],[0.27,51.357],[0.265,51.359],[0.262,51.357],[0.257,51.357],[0.252,51.356],[0.252,51.36],[0.251,51.362],[0.245,51.361],[0.243,51.357],[0.244,51.356],[0.246,51.354],[0.243,51.353],[0.241,51.353],[0.234,51.35],[0.233,51.352],[0.23,51.352],[0.225,51.351],[0.231,51.348],[0.225,51.346],[0.224,51.342],[0.224,51.339],[0.212,51.335],[0.205,51.337],[0.204,51.338],[0.201,51.346],[0.2,51.347],[0.195,51.348],[0.196,51.351],[0.2,51.354],[0.201,51.357],[0.194,51.354],[0.191,51.353],[0.19,51.351],[0.188,51.351],[0.186,51.349],[0.179,51.35],[0.18,51.355],[0.184,51.358],[0.183,51.363],[0.181,51.364],[0.174,51.366],[0.168,51.37],[0.18,51.375],[0.183,51.377],[0.187,51.38],[0.193,51.381],[0.203,51.385],[0.203,51.386],[0.195,51.388],[0.199,51.389],[0.201,51.388],[0.205,51.39],[0.206,51.39],[0.214,51.393],[0.206,51.396],[0.206,51.4],[0.213,51.408],[0.221,51.414],[0.223,51.415],[0.22,51.417],[0.215,51.422],[0.208,51.421],[0.203,51.422],[0.201,51.418],[0.2,51.417],[0.201,51.416],[0.204,51.413],[0.199,51.414],[0.196,51.413],[0.196,51.415],[0.195,51.417],[0.192,51.418],[0.188,51.416],[0.186,51.416],[0.186,51.415],[0.182,51.415],[0.178,51.415],[0.178,51.416],[0.172,51.416],[0.17,51.411],[0.167,51.41],[0.163,51.409],[0.157,51.411],[0.153,51.407],[0.147,51.409],[0.143,51.409],[0.131,51.41],[0.113,51.413],[0.113,51.412],[0.11,51.411],[0.109,51.412],[0.112,51.413],[0.105,51.416],[0.099,51.414],[0.098,51.415],[0.1,51.418],[0.095,51.42],[0.088,51.426],[0.084,51.43],[0.081,51.431],[0.08,51.432],[0.082,51.434],[0.083,51.437],[0.082,51.439],[0.082,51.442],[0.081,51.443],[0.082,51.445],[0.088,51.446],[0.087,51.451],[0.087,51.453],[0.085,51.457],[0.083,51.46],[0.081,51.459],[0.08,51.462],[0.077,51.462],[0.078,51.463],[0.077,51.465],[0.076,51.468],[0.076,51.47],[0.08,51.471],[0.084,51.47],[0.086,51.47],[0.088,51.471],[0.092,51.472],[0.093,51.474],[0.096,51.473],[0.097,51.475],[0.105,51.474],[0.109,51.475],[0.112,51.473],[0.114,51.475],[0.113,51.477],[0.116,51.477],[0.119,51.479],[0.123,51.478],[0.125,51.479],[0.13,51.479],[0.136,51.48],[0.138,51.484],[0.139,51.486],[0.138,51.487],[0.132,51.487],[0.13,51.49],[0.125,51.489],[0.122,51.491],[0.129,51.492],[0.129,51.493],[0.127,51.496],[0.13,51.499],[0.135,51.499],[0.137,51.5],[0.138,51.502],[0.147,51.499],[0.148,51.5],[0.148,51.503],[0.146,51.504],[0.147,51.507],[0.15,51.506],[0.16,51.506],[0.164,51.505],[0.167,51.504],[0.17,51.5],[0.172,51.498],[0.172,51.489],[0.174,51.487],[0.178,51.483],[0.183,51.481],[0.19,51.48],[0.197,51.479],[0.199,51.48],[0.206,51.481],[0.212,51.483],[0.217,51.48],[0.218,51.48],[0.222,51.479],[0.232,51.474],[0.238,51.47],[0.25,51.465],[0.25,51.464],[0.254,51.462],[0.256,51.463],[0.261,51.461],[0.266,51.457],[0.271,51.455],[0.276,51.454],[0.283,51.455],[0.29,51.456],[0.297,51.458],[0.301,51.461],[0.302,51.462],[0.306,51.465],[0.309,51.467],[0.312,51.468],[0.314,51.466],[0.317,51.462],[0.318,51.461],[0.321,51.457],[0.325,51.454],[0.325,51.452],[0.33,51.45],[0.333,51.449],[0.343,51.447],[0.349,51.446],[0.363,51.446],[0.37,51.445],[0.373,51.445],[0.387,51.444],[0.405,51.443],[0.418,51.444],[0.427,51.446],[0.435,51.447],[0.438,51.448],[0.439,51.444],[0.443,51.439],[0.442,51.436],[0.452,51.435],[0.455,51.434],[0.453,51.429],[0.45,51.428],[0.449,51.425],[0.446,51.422],[0.447,51.42],[0.447,51.417],[0.451,51.415],[0.452,51.413],[0.455,51.413],[0.452,51.409],[0.45,51.407],[0.448,51.405],[0.448,51.402],[0.443,51.4],[0.439,51.402],[0.436,51.403],[0.432,51.4],[0.43,51.399],[0.425,51.399],[0.425,51.396],[0.424,51.393],[0.425,51.388],[0.424,51.386],[0.425,51.382],[0.42,51.383],[0.415,51.384],[0.412,51.383],[0.414,51.379],[0.412,51.377],[0.41,51.375],[0.42,51.367],[0.414,51.36],[0.414,51.356],[0.413,51.353],[0.411,51.349],[0.409,51.348],[0.409,51.345],[0.407,51.341],[0.408,51.338],[0.407,51.335],[0.404,51.336],[0.395,51.337],[0.389,51.335],[0.386,51.333],[0.38,51.33],[0.373,51.331],[0.367,51.328],[0.362,51.327],[0.36,51.325],[0.353,51.325],[0.35,51.328],[0.344,51.324]]]},"properties":{"OBJECTID":23,"NAME":"DA","KEY":"DA","Shape_Leng":1.59074,"Shape_Area":0.033912}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.787,56.42],[-2.812,56.422],[-2.831,56.422],[-2.834,56.416],[-2.838,56.414],[-2.853,56.41],[-2.859,56.411],[-2.871,56.414],[-2.88,56.419],[-2.88,56.42],[-2.889,56.421],[-2.894,56.42],[-2.898,56.423],[-2.902,56.424],[-2.902,56.42],[-2.906,56.42],[-2.91,56.424],[-2.911,56.422],[-2.917,56.421],[-2.925,56.417],[-2.937,56.413],[-2.942,56.411],[-2.933,56.409],[-2.925,56.405],[-2.935,56.403],[-2.94,56.404],[-2.944,56.404],[-2.951,56.405],[-2.955,56.406],[-2.953,56.399],[-2.955,56.393],[-2.954,56.391],[-2.954,56.388],[-2.967,56.385],[-2.971,56.382],[-2.973,56.383],[-2.982,56.387],[-2.985,56.389],[-2.982,56.391],[-2.985,56.393],[-2.996,56.394],[-3.01,56.392],[-3.016,56.396],[-3.018,56.397],[-3.023,56.399],[-3.03,56.402],[-3.036,56.4],[-3.04,56.398],[-3.043,56.398],[-3.042,56.396],[-3.047,56.393],[-3.051,56.389],[-3.054,56.388],[-3.058,56.389],[-3.062,56.391],[-3.065,56.39],[-3.067,56.391],[-3.066,56.394],[-3.064,56.394],[-3.06,56.398],[-3.055,56.399],[-3.054,56.402],[-3.058,56.401],[-3.061,56.404],[-3.057,56.406],[-3.053,56.407],[-3.046,56.409],[-3.044,56.411],[-3.044,56.414],[-3.042,56.415],[-3.038,56.417],[-3.033,56.417],[-3.028,56.418],[-3.019,56.418],[-3.014,56.419],[-3.009,56.42],[-3,56.421],[-2.993,56.421],[-2.988,56.423],[-2.984,56.425],[-2.982,56.426],[-2.978,56.428],[-2.972,56.43],[-2.966,56.433],[-2.961,56.432],[-2.957,56.433],[-2.953,56.436],[-2.948,56.437],[-2.944,56.439],[-2.942,56.445],[-2.94,56.446],[-2.931,56.449],[-2.926,56.45],[-2.92,56.452],[-2.904,56.453],[-2.89,56.453],[-2.88,56.452],[-2.869,56.452],[-2.865,56.452],[-2.86,56.45],[-2.858,56.451],[-2.849,56.45],[-2.842,56.449],[-2.835,56.449],[-2.826,56.45],[-2.809,56.449],[-2.801,56.447],[-2.792,56.446],[-2.78,56.446],[-2.771,56.447],[-2.761,56.447],[-2.747,56.447],[-2.744,56.447],[-2.734,56.447],[-2.731,56.448],[-2.728,56.448],[-2.719,56.449],[-2.708,56.447],[-2.704,56.446],[-2.705,56.445],[-2.71,56.446],[-2.712,56.445],[-2.717,56.446],[-2.72,56.446],[-2.72,56.448],[-2.725,56.446],[-2.728,56.447],[-2.73,56.444],[-2.735,56.444],[-2.737,56.445],[-2.741,56.444],[-2.744,56.443],[-2.749,56.443],[-2.751,56.443],[-2.754,56.443],[-2.758,56.443],[-2.768,56.443],[-2.772,56.443],[-2.774,56.442],[-2.775,56.44],[-2.778,56.439],[-2.779,56.437],[-2.774,56.433],[-2.774,56.43],[-2.776,56.429],[-2.777,56.426],[-2.779,56.425],[-2.778,56.423],[-2.787,56.42]]],[[[-2.214,56.89],[-2.216,56.888],[-2.214,56.886],[-2.214,56.884],[-2.217,56.88],[-2.223,56.875],[-2.225,56.871],[-2.229,56.868],[-2.23,56.866],[-2.237,56.865],[-2.231,56.864],[-2.232,56.863],[-2.237,56.862],[-2.239,56.861],[-2.241,56.861],[-2.243,56.859],[-2.244,56.858],[-2.248,56.856],[-2.251,56.854],[-2.254,56.85],[-2.259,56.847],[-2.265,56.845],[-2.27,56.844],[-2.271,56.843],[-2.274,56.843],[-2.275,56.841],[-2.274,56.837],[-2.274,56.831],[-2.276,56.829],[-2.289,56.826],[-2.29,56.825],[-2.297,56.819],[-2.3,56.816],[-2.304,56.812],[-2.306,56.811],[-2.308,56.808],[-2.31,56.806],[-2.313,56.805],[-2.318,56.8],[-2.324,56.796],[-2.327,56.795],[-2.335,56.793],[-2.338,56.791],[-2.344,56.79],[-2.349,56.788],[-2.352,56.788],[-2.359,56.786],[-2.36,56.784],[-2.361,56.783],[-2.367,56.782],[-2.369,56.78],[-2.373,56.779],[-2.374,56.778],[-2.375,56.774],[-2.377,56.774],[-2.383,56.775],[-2.385,56.776],[-2.389,56.776],[-2.396,56.775],[-2.401,56.774],[-2.407,56.771],[-2.413,56.766],[-2.419,56.76],[-2.424,56.758],[-2.426,56.755],[-2.425,56.754],[-2.428,56.75],[-2.433,56.744],[-2.437,56.737],[-2.443,56.725],[-2.445,56.718],[-2.446,56.713],[-2.445,56.708],[-2.443,56.705],[-2.436,56.702],[-2.436,56.701],[-2.441,56.699],[-2.441,56.695],[-2.443,56.693],[-2.44,56.691],[-2.441,56.687],[-2.446,56.685],[-2.449,56.681],[-2.453,56.678],[-2.46,56.678],[-2.466,56.675],[-2.469,56.672],[-2.473,56.672],[-2.483,56.672],[-2.485,56.669],[-2.49,56.668],[-2.494,56.664],[-2.499,56.663],[-2.502,56.66],[-2.504,56.653],[-2.507,56.65],[-2.506,56.648],[-2.507,56.645],[-2.506,56.638],[-2.505,56.635],[-2.502,56.631],[-2.495,56.631],[-2.493,56.63],[-2.489,56.631],[-2.481,56.629],[-2.479,56.625],[-2.482,56.623],[-2.48,56.622],[-2.484,56.62],[-2.486,56.619],[-2.488,56.614],[-2.489,56.613],[-2.493,56.612],[-2.497,56.607],[-2.501,56.605],[-2.507,56.598],[-2.513,56.597],[-2.518,56.593],[-2.519,56.591],[-2.518,56.586],[-2.522,56.585],[-2.522,56.583],[-2.52,56.582],[-2.524,56.58],[-2.53,56.579],[-2.533,56.578],[-2.534,56.577],[-2.537,56.576],[-2.539,56.574],[-2.537,56.568],[-2.539,56.567],[-2.543,56.565],[-2.545,56.564],[-2.552,56.561],[-2.553,56.559],[-2.557,56.561],[-2.56,56.56],[-2.565,56.56],[-2.569,56.56],[-2.576,56.557],[-2.581,56.555],[-2.584,56.556],[-2.586,56.555],[-2.587,56.552],[-2.594,56.551],[-2.598,56.551],[-2.6,56.552],[-2.605,56.551],[-2.609,56.549],[-2.613,56.547],[-2.617,56.544],[-2.625,56.538],[-2.629,56.534],[-2.636,56.527],[-2.647,56.523],[-2.651,56.522],[-2.665,56.517],[-2.668,56.513],[-2.673,56.511],[-2.684,56.507],[-2.686,56.506],[-2.691,56.504],[-2.698,56.501],[-2.706,56.499],[-2.71,56.498],[-2.718,56.494],[-2.717,56.489],[-2.718,56.484],[-2.719,56.482],[-2.721,56.476],[-2.727,56.469],[-2.732,56.465],[-2.736,56.464],[-2.738,56.464],[-2.748,56.466],[-2.76,56.47],[-2.769,56.474],[-2.778,56.476],[-2.785,56.478],[-2.784,56.479],[-2.786,56.481],[-2.789,56.48],[-2.794,56.481],[-2.798,56.481],[-2.813,56.479],[-2.822,56.478],[-2.826,56.477],[-2.836,56.474],[-2.845,56.47],[-2.847,56.469],[-2.859,56.467],[-2.867,56.463],[-2.868,56.463],[-2.875,56.465],[-2.881,56.466],[-2.886,56.468],[-2.89,56.468],[-2.894,56.468],[-2.91,56.468],[-2.918,56.467],[-2.917,56.466],[-2.923,56.465],[-2.929,56.466],[-2.943,56.464],[-2.951,56.462],[-2.965,56.458],[-2.967,56.457],[-2.973,56.455],[-2.977,56.453],[-2.989,56.451],[-3.003,56.451],[-3.01,56.447],[-3.02,56.446],[-3.029,56.445],[-3.031,56.445],[-3.035,56.443],[-3.041,56.443],[-3.043,56.441],[-3.045,56.441],[-3.052,56.438],[-3.059,56.436],[-3.06,56.435],[-3.066,56.433],[-3.067,56.432],[-3.071,56.431],[-3.072,56.43],[-3.076,56.428],[-3.075,56.424],[-3.074,56.42],[-3.075,56.417],[-3.081,56.413],[-3.082,56.411],[-3.086,56.41],[-3.091,56.409],[-3.089,56.408],[-3.082,56.408],[-3.091,56.405],[-3.1,56.41],[-3.105,56.415],[-3.128,56.436],[-3.134,56.434],[-3.137,56.436],[-3.14,56.435],[-3.142,56.439],[-3.144,56.435],[-3.149,56.433],[-3.156,56.437],[-3.15,56.441],[-3.15,56.448],[-3.145,56.449],[-3.143,56.451],[-3.143,56.454],[-3.144,56.456],[-3.148,56.458],[-3.147,56.46],[-3.149,56.466],[-3.138,56.466],[-3.138,56.469],[-3.146,56.475],[-3.147,56.474],[-3.152,56.475],[-3.156,56.475],[-3.164,56.477],[-3.166,56.479],[-3.164,56.485],[-3.164,56.487],[-3.163,56.488],[-3.156,56.495],[-3.161,56.498],[-3.173,56.498],[-3.174,56.499],[-3.184,56.506],[-3.181,56.508],[-3.183,56.509],[-3.183,56.511],[-3.181,56.517],[-3.185,56.521],[-3.185,56.528],[-3.185,56.529],[-3.177,56.531],[-3.172,56.535],[-3.165,56.54],[-3.16,56.543],[-3.149,56.545],[-3.139,56.541],[-3.136,56.54],[-3.131,56.54],[-3.122,56.537],[-3.116,56.538],[-3.113,56.538],[-3.109,56.535],[-3.1,56.537],[-3.098,56.538],[-3.099,56.539],[-3.096,56.542],[-3.096,56.543],[-3.094,56.547],[-3.089,56.55],[-3.071,56.558],[-3.086,56.565],[-3.086,56.568],[-3.084,56.57],[-3.087,56.577],[-3.088,56.58],[-3.093,56.583],[-3.088,56.586],[-3.091,56.587],[-3.098,56.585],[-3.101,56.585],[-3.107,56.588],[-3.107,56.59],[-3.109,56.592],[-3.108,56.596],[-3.099,56.598],[-3.101,56.603],[-3.103,56.603],[-3.108,56.607],[-3.12,56.608],[-3.121,56.609],[-3.112,56.613],[-3.109,56.614],[-3.099,56.611],[-3.097,56.61],[-3.089,56.615],[-3.091,56.618],[-3.087,56.625],[-3.09,56.63],[-3.095,56.629],[-3.097,56.627],[-3.098,56.624],[-3.101,56.621],[-3.124,56.614],[-3.126,56.62],[-3.133,56.62],[-3.137,56.622],[-3.14,56.623],[-3.142,56.626],[-3.146,56.632],[-3.148,56.637],[-3.133,56.644],[-3.136,56.645],[-3.148,56.646],[-3.156,56.652],[-3.164,56.653],[-3.167,56.653],[-3.17,56.651],[-3.172,56.651],[-3.18,56.653],[-3.177,56.657],[-3.181,56.661],[-3.185,56.663],[-3.199,56.667],[-3.212,56.67],[-3.212,56.671],[-3.206,56.672],[-3.207,56.677],[-3.205,56.682],[-3.216,56.693],[-3.208,56.698],[-3.213,56.698],[-3.214,56.7],[-3.216,56.708],[-3.205,56.71],[-3.203,56.711],[-3.197,56.717],[-3.201,56.724],[-3.202,56.727],[-3.2,56.731],[-3.203,56.737],[-3.193,56.746],[-3.182,56.754],[-3.157,56.762],[-3.156,56.763],[-3.172,56.778],[-3.193,56.784],[-3.209,56.787],[-3.225,56.788],[-3.242,56.793],[-3.258,56.808],[-3.249,56.842],[-3.256,56.847],[-3.268,56.862],[-3.276,56.873],[-3.288,56.878],[-3.305,56.907],[-3.267,56.954],[-3.259,56.954],[-3.228,56.958],[-3.206,56.952],[-3.174,56.936],[-3.15,56.91],[-3.134,56.908],[-3.106,56.891],[-3.092,56.888],[-3.078,56.887],[-3.048,56.951],[-3.017,56.953],[-3.006,56.955],[-2.972,56.973],[-2.899,56.975],[-2.888,56.979],[-2.882,56.98],[-2.869,56.976],[-2.792,56.965],[-2.782,56.963],[-2.762,56.957],[-2.754,56.957],[-2.719,56.97],[-2.654,56.956],[-2.657,56.934],[-2.658,56.924],[-2.595,56.915],[-2.654,56.881],[-2.656,56.874],[-2.648,56.859],[-2.647,56.854],[-2.645,56.852],[-2.636,56.851],[-2.638,56.848],[-2.632,56.844],[-2.632,56.841],[-2.635,56.838],[-2.632,56.833],[-2.627,56.834],[-2.624,56.833],[-2.619,56.83],[-2.615,56.833],[-2.613,56.833],[-2.613,56.83],[-2.606,56.83],[-2.605,56.828],[-2.598,56.826],[-2.597,56.829],[-2.593,56.829],[-2.59,56.825],[-2.593,56.821],[-2.595,56.82],[-2.597,56.817],[-2.593,56.815],[-2.598,56.814],[-2.596,56.812],[-2.597,56.81],[-2.602,56.81],[-2.605,56.807],[-2.602,56.804],[-2.604,56.803],[-2.606,56.8],[-2.614,56.796],[-2.615,56.791],[-2.618,56.79],[-2.622,56.787],[-2.615,56.785],[-2.613,56.784],[-2.606,56.785],[-2.596,56.781],[-2.593,56.78],[-2.595,56.776],[-2.593,56.772],[-2.595,56.77],[-2.595,56.767],[-2.602,56.765],[-2.597,56.763],[-2.586,56.764],[-2.567,56.766],[-2.566,56.769],[-2.564,56.77],[-2.556,56.777],[-2.555,56.777],[-2.55,56.777],[-2.539,56.778],[-2.537,56.78],[-2.529,56.782],[-2.525,56.779],[-2.519,56.776],[-2.518,56.775],[-2.511,56.775],[-2.506,56.774],[-2.5,56.775],[-2.496,56.773],[-2.492,56.772],[-2.479,56.771],[-2.476,56.771],[-2.473,56.769],[-2.473,56.762],[-2.464,56.763],[-2.459,56.766],[-2.459,56.767],[-2.465,56.774],[-2.46,56.778],[-2.462,56.782],[-2.46,56.782],[-2.469,56.784],[-2.478,56.786],[-2.472,56.792],[-2.473,56.794],[-2.474,56.797],[-2.47,56.799],[-2.478,56.8],[-2.477,56.802],[-2.481,56.806],[-2.467,56.813],[-2.464,56.809],[-2.447,56.804],[-2.446,56.802],[-2.437,56.805],[-2.433,56.806],[-2.43,56.808],[-2.42,56.805],[-2.417,56.806],[-2.41,56.803],[-2.404,56.805],[-2.395,56.802],[-2.396,56.804],[-2.383,56.804],[-2.376,56.808],[-2.378,56.814],[-2.375,56.812],[-2.369,56.812],[-2.367,56.813],[-2.361,56.816],[-2.37,56.821],[-2.372,56.827],[-2.366,56.828],[-2.362,56.831],[-2.362,56.835],[-2.353,56.836],[-2.351,56.835],[-2.346,56.835],[-2.342,56.839],[-2.335,56.837],[-2.336,56.844],[-2.335,56.844],[-2.332,56.852],[-2.33,56.852],[-2.318,56.857],[-2.315,56.857],[-2.311,56.862],[-2.308,56.863],[-2.302,56.862],[-2.301,56.863],[-2.305,56.865],[-2.312,56.866],[-2.312,56.869],[-2.307,56.871],[-2.306,56.874],[-2.31,56.879],[-2.307,56.881],[-2.298,56.884],[-2.295,56.882],[-2.286,56.883],[-2.28,56.884],[-2.277,56.884],[-2.277,56.888],[-2.27,56.89],[-2.267,56.887],[-2.262,56.89],[-2.251,56.894],[-2.245,56.89],[-2.241,56.89],[-2.237,56.892],[-2.228,56.892],[-2.227,56.89],[-2.219,56.891],[-2.214,56.89]]]]},"properties":{"OBJECTID":24,"NAME":"DD","KEY":"DD","Shape_Leng":5.19503,"Shape_Area":0.329312}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.474,52.671],[-1.484,52.668],[-1.489,52.67],[-1.494,52.67],[-1.494,52.666],[-1.506,52.663],[-1.509,52.663],[-1.515,52.669],[-1.529,52.671],[-1.537,52.664],[-1.539,52.663],[-1.539,52.661],[-1.538,52.658],[-1.542,52.657],[-1.546,52.658],[-1.546,52.662],[-1.546,52.675],[-1.549,52.673],[-1.549,52.671],[-1.555,52.669],[-1.559,52.674],[-1.553,52.68],[-1.559,52.683],[-1.568,52.679],[-1.574,52.678],[-1.577,52.682],[-1.581,52.682],[-1.585,52.685],[-1.594,52.689],[-1.593,52.691],[-1.597,52.691],[-1.597,52.692],[-1.593,52.695],[-1.596,52.697],[-1.593,52.703],[-1.595,52.705],[-1.599,52.708],[-1.603,52.71],[-1.605,52.707],[-1.608,52.705],[-1.613,52.701],[-1.619,52.704],[-1.621,52.707],[-1.628,52.707],[-1.628,52.702],[-1.636,52.701],[-1.64,52.702],[-1.645,52.705],[-1.647,52.708],[-1.652,52.708],[-1.654,52.707],[-1.655,52.709],[-1.663,52.709],[-1.667,52.714],[-1.665,52.715],[-1.659,52.716],[-1.657,52.721],[-1.66,52.724],[-1.662,52.726],[-1.673,52.726],[-1.676,52.728],[-1.681,52.728],[-1.685,52.726],[-1.699,52.726],[-1.701,52.727],[-1.704,52.729],[-1.707,52.727],[-1.714,52.725],[-1.715,52.723],[-1.719,52.722],[-1.72,52.725],[-1.719,52.73],[-1.727,52.727],[-1.729,52.724],[-1.732,52.724],[-1.733,52.726],[-1.742,52.729],[-1.745,52.726],[-1.751,52.72],[-1.754,52.721],[-1.747,52.727],[-1.754,52.729],[-1.758,52.732],[-1.768,52.731],[-1.769,52.727],[-1.774,52.721],[-1.778,52.72],[-1.784,52.722],[-1.786,52.721],[-1.79,52.722],[-1.793,52.723],[-1.797,52.722],[-1.807,52.717],[-1.809,52.717],[-1.813,52.72],[-1.809,52.728],[-1.811,52.73],[-1.81,52.731],[-1.814,52.737],[-1.816,52.736],[-1.82,52.738],[-1.828,52.74],[-1.826,52.737],[-1.827,52.733],[-1.831,52.735],[-1.832,52.736],[-1.835,52.734],[-1.84,52.735],[-1.849,52.743],[-1.848,52.745],[-1.842,52.749],[-1.846,52.749],[-1.844,52.752],[-1.844,52.754],[-1.842,52.755],[-1.838,52.754],[-1.835,52.75],[-1.83,52.75],[-1.824,52.751],[-1.822,52.753],[-1.819,52.754],[-1.815,52.756],[-1.816,52.757],[-1.817,52.761],[-1.819,52.762],[-1.819,52.767],[-1.815,52.767],[-1.816,52.769],[-1.814,52.772],[-1.812,52.774],[-1.817,52.777],[-1.814,52.779],[-1.813,52.78],[-1.812,52.785],[-1.806,52.787],[-1.808,52.789],[-1.809,52.793],[-1.815,52.793],[-1.816,52.795],[-1.818,52.798],[-1.823,52.798],[-1.824,52.802],[-1.832,52.805],[-1.833,52.806],[-1.83,52.81],[-1.834,52.811],[-1.832,52.812],[-1.833,52.814],[-1.833,52.819],[-1.828,52.819],[-1.822,52.823],[-1.816,52.826],[-1.815,52.827],[-1.821,52.827],[-1.822,52.828],[-1.822,52.83],[-1.829,52.835],[-1.835,52.835],[-1.838,52.837],[-1.834,52.842],[-1.836,52.844],[-1.835,52.846],[-1.839,52.848],[-1.84,52.85],[-1.84,52.851],[-1.833,52.851],[-1.825,52.85],[-1.818,52.85],[-1.816,52.849],[-1.819,52.848],[-1.813,52.844],[-1.808,52.847],[-1.807,52.847],[-1.802,52.844],[-1.797,52.845],[-1.797,52.846],[-1.792,52.847],[-1.791,52.85],[-1.787,52.853],[-1.782,52.855],[-1.782,52.856],[-1.789,52.857],[-1.791,52.858],[-1.795,52.86],[-1.792,52.863],[-1.786,52.864],[-1.787,52.867],[-1.785,52.869],[-1.778,52.866],[-1.774,52.868],[-1.768,52.867],[-1.765,52.87],[-1.771,52.875],[-1.77,52.878],[-1.773,52.878],[-1.773,52.881],[-1.788,52.879],[-1.787,52.882],[-1.794,52.887],[-1.796,52.89],[-1.801,52.889],[-1.805,52.892],[-1.806,52.892],[-1.811,52.889],[-1.821,52.884],[-1.822,52.893],[-1.827,52.895],[-1.839,52.89],[-1.843,52.892],[-1.842,52.896],[-1.843,52.899],[-1.842,52.901],[-1.844,52.906],[-1.844,52.907],[-1.842,52.908],[-1.844,52.913],[-1.845,52.913],[-1.852,52.918],[-1.854,52.919],[-1.86,52.928],[-1.857,52.934],[-1.857,52.939],[-1.855,52.939],[-1.842,52.941],[-1.836,52.941],[-1.832,52.939],[-1.825,52.939],[-1.824,52.94],[-1.819,52.942],[-1.819,52.938],[-1.816,52.937],[-1.811,52.936],[-1.808,52.935],[-1.805,52.935],[-1.804,52.935],[-1.8,52.937],[-1.802,52.939],[-1.804,52.939],[-1.803,52.941],[-1.803,52.943],[-1.802,52.944],[-1.8,52.947],[-1.799,52.95],[-1.797,52.952],[-1.8,52.953],[-1.809,52.953],[-1.807,52.957],[-1.811,52.957],[-1.811,52.959],[-1.816,52.959],[-1.821,52.959],[-1.822,52.961],[-1.818,52.965],[-1.817,52.966],[-1.828,52.976],[-1.829,52.978],[-1.831,52.979],[-1.83,52.98],[-1.833,52.981],[-1.838,52.981],[-1.841,52.983],[-1.839,52.986],[-1.843,52.987],[-1.848,52.988],[-1.852,52.993],[-1.854,52.993],[-1.865,52.994],[-1.868,52.997],[-1.867,52.998],[-1.859,53],[-1.855,53.004],[-1.855,53.005],[-1.859,53.007],[-1.856,53.011],[-1.845,53.012],[-1.842,53.012],[-1.839,53.019],[-1.839,53.02],[-1.849,53.026],[-1.853,53.026],[-1.853,53.032],[-1.848,53.035],[-1.847,53.037],[-1.846,53.039],[-1.843,53.037],[-1.839,53.037],[-1.83,53.041],[-1.832,53.044],[-1.83,53.044],[-1.826,53.047],[-1.827,53.05],[-1.817,53.055],[-1.821,53.057],[-1.832,53.058],[-1.834,53.061],[-1.844,53.06],[-1.85,53.063],[-1.852,53.063],[-1.854,53.065],[-1.858,53.068],[-1.858,53.071],[-1.854,53.075],[-1.852,53.075],[-1.849,53.074],[-1.831,53.077],[-1.833,53.082],[-1.825,53.087],[-1.827,53.089],[-1.829,53.088],[-1.833,53.091],[-1.842,53.09],[-1.844,53.088],[-1.848,53.094],[-1.851,53.095],[-1.852,53.094],[-1.855,53.096],[-1.853,53.098],[-1.857,53.099],[-1.859,53.102],[-1.862,53.103],[-1.865,53.105],[-1.864,53.108],[-1.865,53.109],[-1.862,53.112],[-1.858,53.117],[-1.857,53.118],[-1.853,53.118],[-1.856,53.122],[-1.855,53.123],[-1.852,53.119],[-1.851,53.12],[-1.851,53.122],[-1.853,53.124],[-1.849,53.125],[-1.848,53.124],[-1.842,53.123],[-1.838,53.12],[-1.834,53.115],[-1.819,53.118],[-1.817,53.116],[-1.814,53.116],[-1.812,53.114],[-1.809,53.114],[-1.806,53.112],[-1.806,53.11],[-1.796,53.108],[-1.79,53.109],[-1.789,53.112],[-1.786,53.113],[-1.78,53.113],[-1.773,53.113],[-1.771,53.114],[-1.77,53.112],[-1.766,53.108],[-1.762,53.106],[-1.759,53.108],[-1.755,53.113],[-1.751,53.111],[-1.743,53.116],[-1.748,53.117],[-1.739,53.125],[-1.741,53.129],[-1.732,53.136],[-1.729,53.133],[-1.716,53.139],[-1.716,53.145],[-1.722,53.146],[-1.727,53.148],[-1.731,53.148],[-1.736,53.147],[-1.74,53.149],[-1.74,53.15],[-1.748,53.15],[-1.749,53.151],[-1.751,53.157],[-1.755,53.159],[-1.755,53.163],[-1.756,53.164],[-1.756,53.169],[-1.758,53.172],[-1.761,53.173],[-1.779,53.172],[-1.78,53.17],[-1.783,53.173],[-1.786,53.172],[-1.792,53.173],[-1.793,53.177],[-1.792,53.179],[-1.789,53.181],[-1.79,53.185],[-1.789,53.188],[-1.793,53.188],[-1.799,53.186],[-1.806,53.191],[-1.805,53.193],[-1.802,53.195],[-1.801,53.198],[-1.801,53.199],[-1.798,53.202],[-1.795,53.202],[-1.783,53.206],[-1.781,53.205],[-1.776,53.207],[-1.772,53.209],[-1.772,53.212],[-1.771,53.215],[-1.765,53.213],[-1.765,53.215],[-1.76,53.218],[-1.756,53.22],[-1.751,53.226],[-1.745,53.227],[-1.743,53.228],[-1.745,53.23],[-1.738,53.237],[-1.732,53.236],[-1.725,53.24],[-1.724,53.241],[-1.725,53.243],[-1.726,53.249],[-1.722,53.249],[-1.717,53.253],[-1.716,53.257],[-1.71,53.264],[-1.712,53.267],[-1.715,53.269],[-1.716,53.27],[-1.713,53.275],[-1.707,53.272],[-1.702,53.272],[-1.693,53.274],[-1.693,53.272],[-1.69,53.27],[-1.696,53.266],[-1.694,53.265],[-1.684,53.264],[-1.679,53.263],[-1.673,53.263],[-1.671,53.265],[-1.667,53.266],[-1.665,53.259],[-1.647,53.262],[-1.646,53.262],[-1.648,53.259],[-1.645,53.257],[-1.637,53.262],[-1.633,53.261],[-1.631,53.256],[-1.626,53.256],[-1.627,53.257],[-1.624,53.258],[-1.623,53.259],[-1.612,53.262],[-1.609,53.262],[-1.603,53.267],[-1.574,53.259],[-1.576,53.253],[-1.575,53.248],[-1.569,53.244],[-1.576,53.242],[-1.572,53.241],[-1.564,53.239],[-1.566,53.234],[-1.566,53.233],[-1.569,53.226],[-1.569,53.223],[-1.568,53.219],[-1.566,53.217],[-1.553,53.208],[-1.556,53.206],[-1.559,53.204],[-1.558,53.202],[-1.555,53.198],[-1.557,53.196],[-1.552,53.191],[-1.546,53.19],[-1.544,53.187],[-1.547,53.184],[-1.553,53.182],[-1.558,53.181],[-1.551,53.177],[-1.55,53.179],[-1.545,53.179],[-1.541,53.175],[-1.539,53.176],[-1.529,53.174],[-1.525,53.175],[-1.52,53.174],[-1.518,53.172],[-1.519,53.17],[-1.518,53.169],[-1.518,53.164],[-1.511,53.159],[-1.51,53.155],[-1.507,53.155],[-1.504,53.154],[-1.502,53.151],[-1.5,53.147],[-1.497,53.147],[-1.494,53.147],[-1.492,53.144],[-1.494,53.141],[-1.492,53.135],[-1.489,53.136],[-1.486,53.132],[-1.483,53.133],[-1.479,53.13],[-1.475,53.13],[-1.474,53.128],[-1.47,53.128],[-1.468,53.13],[-1.471,53.134],[-1.468,53.138],[-1.465,53.136],[-1.46,53.137],[-1.457,53.141],[-1.455,53.141],[-1.456,53.144],[-1.459,53.146],[-1.46,53.148],[-1.457,53.15],[-1.453,53.151],[-1.45,53.153],[-1.446,53.15],[-1.437,53.148],[-1.435,53.148],[-1.43,53.148],[-1.423,53.148],[-1.423,53.155],[-1.417,53.155],[-1.414,53.155],[-1.413,53.153],[-1.407,53.154],[-1.401,53.153],[-1.393,53.154],[-1.392,53.156],[-1.386,53.155],[-1.384,53.153],[-1.387,53.151],[-1.379,53.148],[-1.377,53.147],[-1.373,53.147],[-1.372,53.15],[-1.366,53.15],[-1.365,53.151],[-1.36,53.149],[-1.359,53.148],[-1.352,53.147],[-1.35,53.149],[-1.355,53.153],[-1.353,53.155],[-1.347,53.158],[-1.343,53.159],[-1.341,53.158],[-1.338,53.159],[-1.332,53.157],[-1.329,53.155],[-1.327,53.155],[-1.33,53.147],[-1.322,53.145],[-1.317,53.144],[-1.317,53.14],[-1.32,53.136],[-1.322,53.134],[-1.318,53.132],[-1.32,53.13],[-1.32,53.128],[-1.324,53.127],[-1.324,53.125],[-1.32,53.125],[-1.317,53.127],[-1.312,53.125],[-1.317,53.123],[-1.316,53.121],[-1.315,53.12],[-1.316,53.117],[-1.312,53.116],[-1.311,53.113],[-1.308,53.112],[-1.308,53.11],[-1.304,53.111],[-1.305,53.108],[-1.304,53.105],[-1.308,53.102],[-1.311,53.101],[-1.316,53.098],[-1.322,53.1],[-1.324,53.101],[-1.327,53.097],[-1.329,53.095],[-1.333,53.094],[-1.336,53.093],[-1.336,53.088],[-1.338,53.08],[-1.34,53.078],[-1.337,53.077],[-1.332,53.076],[-1.331,53.074],[-1.328,53.071],[-1.329,53.07],[-1.334,53.066],[-1.342,53.068],[-1.346,53.068],[-1.349,53.068],[-1.352,53.067],[-1.359,53.068],[-1.357,53.066],[-1.36,53.064],[-1.36,53.061],[-1.359,53.059],[-1.366,53.056],[-1.372,53.056],[-1.364,53.053],[-1.363,53.048],[-1.367,53.047],[-1.368,53.043],[-1.365,53.043],[-1.362,53.041],[-1.364,53.039],[-1.365,53.036],[-1.368,53.033],[-1.361,53.03],[-1.362,53.027],[-1.359,53.027],[-1.357,53.025],[-1.353,53.025],[-1.349,53.021],[-1.345,53.02],[-1.343,53.02],[-1.341,53.018],[-1.339,53.017],[-1.333,53.014],[-1.33,53.015],[-1.327,53.011],[-1.325,53.012],[-1.319,53.013],[-1.319,53.01],[-1.316,53.009],[-1.316,53.008],[-1.32,53.005],[-1.317,53.004],[-1.308,53],[-1.305,52.998],[-1.304,52.997],[-1.295,52.979],[-1.292,52.979],[-1.289,52.98],[-1.285,52.98],[-1.29,52.977],[-1.292,52.974],[-1.292,52.972],[-1.288,52.971],[-1.29,52.967],[-1.289,52.959],[-1.291,52.959],[-1.293,52.955],[-1.289,52.953],[-1.288,52.952],[-1.285,52.946],[-1.284,52.941],[-1.282,52.942],[-1.281,52.939],[-1.282,52.936],[-1.287,52.939],[-1.293,52.936],[-1.297,52.933],[-1.299,52.936],[-1.306,52.935],[-1.306,52.929],[-1.308,52.931],[-1.307,52.932],[-1.309,52.934],[-1.311,52.932],[-1.314,52.931],[-1.315,52.928],[-1.314,52.925],[-1.31,52.926],[-1.312,52.923],[-1.307,52.922],[-1.305,52.92],[-1.303,52.917],[-1.3,52.916],[-1.307,52.915],[-1.312,52.914],[-1.309,52.913],[-1.312,52.91],[-1.3,52.907],[-1.3,52.906],[-1.299,52.901],[-1.298,52.899],[-1.299,52.896],[-1.301,52.893],[-1.305,52.888],[-1.314,52.891],[-1.319,52.892],[-1.32,52.89],[-1.316,52.887],[-1.319,52.885],[-1.314,52.882],[-1.31,52.881],[-1.31,52.877],[-1.309,52.874],[-1.312,52.873],[-1.317,52.873],[-1.32,52.873],[-1.319,52.869],[-1.323,52.868],[-1.32,52.865],[-1.31,52.869],[-1.304,52.872],[-1.302,52.871],[-1.298,52.871],[-1.296,52.872],[-1.291,52.868],[-1.29,52.866],[-1.288,52.864],[-1.291,52.86],[-1.291,52.858],[-1.287,52.858],[-1.284,52.858],[-1.282,52.858],[-1.28,52.858],[-1.276,52.857],[-1.279,52.854],[-1.279,52.851],[-1.274,52.85],[-1.271,52.847],[-1.264,52.846],[-1.261,52.842],[-1.259,52.837],[-1.259,52.836],[-1.265,52.838],[-1.267,52.834],[-1.265,52.832],[-1.264,52.83],[-1.265,52.824],[-1.264,52.822],[-1.269,52.819],[-1.266,52.814],[-1.271,52.815],[-1.273,52.82],[-1.27,52.822],[-1.272,52.826],[-1.281,52.826],[-1.287,52.823],[-1.287,52.819],[-1.284,52.819],[-1.287,52.813],[-1.288,52.812],[-1.299,52.815],[-1.305,52.819],[-1.306,52.817],[-1.306,52.812],[-1.309,52.811],[-1.313,52.811],[-1.322,52.806],[-1.331,52.802],[-1.333,52.801],[-1.329,52.794],[-1.328,52.793],[-1.331,52.79],[-1.335,52.789],[-1.344,52.788],[-1.345,52.788],[-1.351,52.789],[-1.356,52.791],[-1.359,52.793],[-1.363,52.794],[-1.367,52.788],[-1.37,52.788],[-1.373,52.784],[-1.38,52.787],[-1.379,52.79],[-1.381,52.79],[-1.383,52.792],[-1.387,52.793],[-1.392,52.795],[-1.393,52.796],[-1.397,52.795],[-1.402,52.792],[-1.408,52.789],[-1.412,52.785],[-1.413,52.79],[-1.412,52.794],[-1.41,52.796],[-1.423,52.792],[-1.426,52.79],[-1.433,52.79],[-1.431,52.794],[-1.433,52.795],[-1.439,52.796],[-1.44,52.798],[-1.443,52.8],[-1.446,52.801],[-1.453,52.798],[-1.452,52.797],[-1.454,52.795],[-1.461,52.793],[-1.466,52.798],[-1.467,52.799],[-1.475,52.799],[-1.48,52.796],[-1.474,52.793],[-1.478,52.79],[-1.479,52.79],[-1.489,52.785],[-1.488,52.784],[-1.484,52.781],[-1.482,52.775],[-1.487,52.775],[-1.492,52.774],[-1.491,52.771],[-1.492,52.769],[-1.495,52.767],[-1.497,52.766],[-1.492,52.764],[-1.497,52.76],[-1.493,52.758],[-1.493,52.756],[-1.498,52.751],[-1.504,52.75],[-1.508,52.75],[-1.509,52.748],[-1.51,52.744],[-1.506,52.745],[-1.509,52.741],[-1.509,52.74],[-1.515,52.738],[-1.512,52.734],[-1.512,52.733],[-1.517,52.732],[-1.517,52.729],[-1.511,52.726],[-1.504,52.728],[-1.503,52.729],[-1.498,52.727],[-1.496,52.726],[-1.495,52.722],[-1.498,52.72],[-1.493,52.72],[-1.491,52.719],[-1.489,52.72],[-1.489,52.714],[-1.485,52.713],[-1.481,52.708],[-1.475,52.708],[-1.469,52.708],[-1.466,52.706],[-1.462,52.706],[-1.457,52.703],[-1.456,52.699],[-1.459,52.699],[-1.466,52.697],[-1.467,52.697],[-1.469,52.695],[-1.467,52.692],[-1.465,52.691],[-1.464,52.688],[-1.47,52.687],[-1.472,52.685],[-1.478,52.682],[-1.477,52.678],[-1.474,52.671]]]},"properties":{"OBJECTID":25,"NAME":"DE","KEY":"DE","Shape_Leng":4.16593,"Shape_Area":0.234473}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.221,54.819],[-4.222,54.818],[-4.224,54.816],[-4.227,54.816],[-4.229,54.817],[-4.228,54.819],[-4.223,54.822],[-4.221,54.819]]],[[[-4.211,54.812],[-4.211,54.811],[-4.213,54.81],[-4.213,54.807],[-4.217,54.807],[-4.216,54.81],[-4.214,54.811],[-4.211,54.812]]],[[[-3.97,54.931],[-3.97,54.928],[-3.974,54.926],[-3.977,54.927],[-3.977,54.928],[-3.974,54.93],[-3.97,54.931]]],[[[-3.963,54.942],[-3.967,54.94],[-3.968,54.942],[-3.965,54.943],[-3.963,54.942]]],[[[-3.555,54.956],[-3.556,54.953],[-3.558,54.952],[-3.561,54.952],[-3.571,54.954],[-3.573,54.957],[-3.571,54.96],[-3.569,54.962],[-3.566,54.962],[-3.559,54.959],[-3.555,54.956]]],[[[-3.504,54.937],[-3.505,54.935],[-3.507,54.93],[-3.511,54.928],[-3.515,54.926],[-3.52,54.926],[-3.523,54.927],[-3.52,54.931],[-3.514,54.932],[-3.512,54.933],[-3.51,54.937],[-3.51,54.941],[-3.514,54.944],[-3.519,54.948],[-3.525,54.95],[-3.529,54.95],[-3.533,54.948],[-3.539,54.947],[-3.546,54.947],[-3.554,54.952],[-3.553,54.955],[-3.554,54.957],[-3.548,54.958],[-3.542,54.961],[-3.535,54.961],[-3.53,54.961],[-3.522,54.958],[-3.517,54.955],[-3.511,54.951],[-3.509,54.949],[-3.506,54.942],[-3.504,54.937]]],[[[-2.835,55.119],[-2.832,55.113],[-2.835,55.111],[-2.845,55.11],[-2.85,55.107],[-2.859,55.106],[-2.865,55.108],[-2.868,55.106],[-2.868,55.101],[-2.869,55.101],[-2.875,55.101],[-2.878,55.096],[-2.883,55.096],[-2.886,55.096],[-2.895,55.094],[-2.892,55.092],[-2.901,55.089],[-2.901,55.085],[-2.904,55.084],[-2.904,55.08],[-2.906,55.074],[-2.908,55.074],[-2.918,55.08],[-2.924,55.079],[-2.929,55.078],[-2.935,55.077],[-2.94,55.073],[-2.938,55.069],[-2.938,55.066],[-2.937,55.062],[-2.938,55.061],[-2.944,55.06],[-2.946,55.058],[-2.951,55.056],[-2.953,55.053],[-2.961,55.054],[-2.96,55.055],[-2.971,55.054],[-2.977,55.056],[-2.977,55.053],[-2.986,55.05],[-2.994,55.048],[-3.004,55.051],[-3.004,55.052],[-3.017,55.054],[-3.022,55.056],[-3.028,55.055],[-3.037,55.052],[-3.041,55.05],[-3.042,55.052],[-3.046,55.052],[-3.052,55.056],[-3.054,55.052],[-3.055,55.052],[-3.064,55.051],[-3.064,55.05],[-3.06,55.05],[-3.049,55.049],[-3.048,55.046],[-3.045,55.043],[-3.042,55.043],[-3.036,55.041],[-3.036,55.04],[-3.026,55.036],[-3.025,55.037],[-3.022,55.037],[-3.018,55.035],[-3.025,55.032],[-3.03,55.032],[-3.035,55.027],[-3.037,55.027],[-3.038,55.024],[-3.042,55.023],[-3.044,55.017],[-3.045,55.015],[-3.045,55.014],[-3.025,55.015],[-3.022,55.013],[-3.021,55.007],[-3.018,55.001],[-3.024,55],[-3.034,54.999],[-3.039,54.997],[-3.03,54.994],[-3.031,54.991],[-3.037,54.989],[-3.026,54.982],[-3.027,54.98],[-3.03,54.98],[-3.04,54.977],[-3.044,54.978],[-3.048,54.984],[-3.05,54.985],[-3.064,54.986],[-3.068,54.984],[-3.069,54.983],[-3.073,54.98],[-3.075,54.979],[-3.078,54.978],[-3.081,54.979],[-3.088,54.978],[-3.091,54.977],[-3.091,54.975],[-3.094,54.974],[-3.097,54.976],[-3.099,54.977],[-3.103,54.977],[-3.109,54.977],[-3.111,54.976],[-3.12,54.975],[-3.12,54.973],[-3.127,54.968],[-3.129,54.966],[-3.13,54.961],[-3.13,54.957],[-3.13,54.955],[-3.133,54.953],[-3.138,54.951],[-3.14,54.951],[-3.145,54.953],[-3.151,54.954],[-3.156,54.956],[-3.162,54.959],[-3.165,54.961],[-3.173,54.963],[-3.177,54.965],[-3.177,54.966],[-3.184,54.967],[-3.19,54.967],[-3.2,54.967],[-3.211,54.966],[-3.224,54.965],[-3.247,54.963],[-3.252,54.964],[-3.256,54.965],[-3.262,54.964],[-3.265,54.964],[-3.277,54.965],[-3.284,54.967],[-3.292,54.967],[-3.303,54.967],[-3.312,54.965],[-3.32,54.961],[-3.331,54.956],[-3.338,54.954],[-3.345,54.952],[-3.35,54.952],[-3.356,54.952],[-3.374,54.951],[-3.378,54.95],[-3.373,54.954],[-3.364,54.958],[-3.357,54.96],[-3.343,54.962],[-3.332,54.965],[-3.335,54.966],[-3.347,54.964],[-3.358,54.962],[-3.365,54.959],[-3.376,54.955],[-3.383,54.952],[-3.393,54.946],[-3.399,54.939],[-3.4,54.935],[-3.399,54.932],[-3.406,54.928],[-3.409,54.926],[-3.414,54.925],[-3.416,54.926],[-3.42,54.922],[-3.423,54.921],[-3.428,54.92],[-3.441,54.921],[-3.446,54.921],[-3.456,54.918],[-3.457,54.92],[-3.45,54.924],[-3.454,54.924],[-3.46,54.922],[-3.465,54.92],[-3.467,54.919],[-3.467,54.921],[-3.464,54.926],[-3.458,54.93],[-3.447,54.935],[-3.449,54.936],[-3.453,54.935],[-3.458,54.934],[-3.463,54.931],[-3.471,54.925],[-3.475,54.925],[-3.475,54.927],[-3.47,54.934],[-3.467,54.938],[-3.465,54.942],[-3.468,54.943],[-3.476,54.934],[-3.482,54.924],[-3.486,54.918],[-3.49,54.914],[-3.498,54.911],[-3.502,54.911],[-3.503,54.913],[-3.508,54.913],[-3.51,54.913],[-3.512,54.916],[-3.515,54.913],[-3.522,54.908],[-3.526,54.905],[-3.533,54.902],[-3.535,54.905],[-3.535,54.91],[-3.533,54.918],[-3.531,54.92],[-3.528,54.921],[-3.52,54.922],[-3.512,54.924],[-3.505,54.929],[-3.5,54.933],[-3.498,54.937],[-3.499,54.942],[-3.501,54.947],[-3.505,54.951],[-3.514,54.957],[-3.52,54.96],[-3.528,54.963],[-3.531,54.963],[-3.542,54.965],[-3.545,54.964],[-3.546,54.963],[-3.548,54.96],[-3.556,54.963],[-3.563,54.962],[-3.567,54.964],[-3.571,54.962],[-3.575,54.963],[-3.577,54.964],[-3.579,54.969],[-3.579,54.971],[-3.575,54.976],[-3.574,54.978],[-3.573,54.982],[-3.572,54.985],[-3.574,54.997],[-3.574,54.999],[-3.574,55.004],[-3.576,55.012],[-3.581,55.018],[-3.586,55.023],[-3.593,55.027],[-3.598,55.029],[-3.601,55.028],[-3.599,55.026],[-3.595,55.025],[-3.591,55.023],[-3.587,55.019],[-3.582,55.015],[-3.581,55.011],[-3.578,55.008],[-3.577,55.001],[-3.577,54.99],[-3.577,54.979],[-3.579,54.978],[-3.585,54.976],[-3.584,54.975],[-3.584,54.97],[-3.583,54.967],[-3.58,54.964],[-3.579,54.963],[-3.578,54.96],[-3.574,54.953],[-3.57,54.952],[-3.557,54.951],[-3.554,54.949],[-3.552,54.947],[-3.549,54.946],[-3.543,54.945],[-3.537,54.946],[-3.532,54.948],[-3.529,54.948],[-3.525,54.947],[-3.52,54.946],[-3.516,54.943],[-3.514,54.94],[-3.513,54.937],[-3.514,54.935],[-3.521,54.933],[-3.526,54.929],[-3.534,54.919],[-3.544,54.909],[-3.553,54.896],[-3.555,54.892],[-3.561,54.889],[-3.563,54.888],[-3.567,54.885],[-3.581,54.878],[-3.585,54.876],[-3.589,54.872],[-3.591,54.87],[-3.6,54.864],[-3.607,54.86],[-3.611,54.857],[-3.629,54.846],[-3.632,54.844],[-3.635,54.844],[-3.643,54.845],[-3.651,54.846],[-3.658,54.849],[-3.663,54.851],[-3.671,54.852],[-3.691,54.854],[-3.7,54.854],[-3.705,54.853],[-3.721,54.851],[-3.726,54.85],[-3.737,54.847],[-3.74,54.846],[-3.746,54.844],[-3.749,54.843],[-3.751,54.843],[-3.754,54.846],[-3.755,54.848],[-3.754,54.85],[-3.749,54.853],[-3.744,54.855],[-3.738,54.857],[-3.737,54.858],[-3.741,54.86],[-3.744,54.859],[-3.752,54.858],[-3.755,54.858],[-3.757,54.859],[-3.761,54.858],[-3.764,54.856],[-3.772,54.854],[-3.775,54.853],[-3.779,54.85],[-3.785,54.849],[-3.788,54.85],[-3.791,54.848],[-3.792,54.847],[-3.797,54.845],[-3.801,54.842],[-3.805,54.838],[-3.807,54.837],[-3.808,54.834],[-3.808,54.833],[-3.811,54.831],[-3.812,54.831],[-3.815,54.835],[-3.814,54.837],[-3.819,54.835],[-3.821,54.833],[-3.823,54.831],[-3.826,54.827],[-3.824,54.825],[-3.825,54.824],[-3.832,54.82],[-3.839,54.816],[-3.844,54.815],[-3.851,54.816],[-3.853,54.815],[-3.857,54.816],[-3.866,54.813],[-3.869,54.807],[-3.871,54.805],[-3.874,54.804],[-3.875,54.803],[-3.879,54.803],[-3.886,54.802],[-3.887,54.8],[-3.897,54.799],[-3.903,54.798],[-3.908,54.796],[-3.91,54.794],[-3.912,54.793],[-3.917,54.792],[-3.92,54.791],[-3.925,54.79],[-3.936,54.788],[-3.94,54.788],[-3.942,54.787],[-3.943,54.785],[-3.953,54.781],[-3.957,54.778],[-3.958,54.775],[-3.96,54.773],[-3.967,54.771],[-3.984,54.768],[-3.987,54.77],[-3.99,54.769],[-3.995,54.77],[-3.996,54.772],[-4.002,54.773],[-4.006,54.773],[-4.008,54.771],[-4.012,54.771],[-4.016,54.771],[-4.02,54.772],[-4.022,54.771],[-4.025,54.773],[-4.028,54.773],[-4.04,54.77],[-4.046,54.77],[-4.048,54.773],[-4.054,54.775],[-4.056,54.777],[-4.06,54.779],[-4.06,54.78],[-4.064,54.781],[-4.067,54.79],[-4.066,54.797],[-4.06,54.8],[-4.059,54.802],[-4.052,54.809],[-4.049,54.81],[-4.047,54.816],[-4.047,54.818],[-4.051,54.822],[-4.052,54.824],[-4.053,54.827],[-4.056,54.828],[-4.06,54.825],[-4.059,54.822],[-4.061,54.82],[-4.061,54.819],[-4.062,54.817],[-4.067,54.814],[-4.071,54.816],[-4.074,54.818],[-4.068,54.823],[-4.064,54.827],[-4.06,54.828],[-4.059,54.83],[-4.062,54.832],[-4.059,54.838],[-4.056,54.837],[-4.051,54.838],[-4.054,54.84],[-4.055,54.842],[-4.06,54.842],[-4.062,54.841],[-4.064,54.838],[-4.067,54.835],[-4.068,54.833],[-4.07,54.832],[-4.077,54.825],[-4.078,54.822],[-4.08,54.819],[-4.085,54.816],[-4.089,54.815],[-4.09,54.815],[-4.089,54.799],[-4.088,54.798],[-4.089,54.795],[-4.091,54.793],[-4.092,54.785],[-4.09,54.781],[-4.095,54.781],[-4.102,54.781],[-4.105,54.779],[-4.104,54.778],[-4.101,54.777],[-4.096,54.777],[-4.091,54.776],[-4.09,54.773],[-4.092,54.771],[-4.094,54.766],[-4.099,54.767],[-4.101,54.768],[-4.106,54.767],[-4.11,54.769],[-4.109,54.773],[-4.11,54.775],[-4.112,54.777],[-4.115,54.777],[-4.117,54.777],[-4.123,54.779],[-4.123,54.782],[-4.123,54.784],[-4.12,54.786],[-4.122,54.788],[-4.125,54.787],[-4.13,54.782],[-4.131,54.78],[-4.135,54.777],[-4.138,54.776],[-4.141,54.776],[-4.146,54.778],[-4.153,54.778],[-4.153,54.78],[-4.156,54.781],[-4.159,54.78],[-4.161,54.783],[-4.16,54.785],[-4.165,54.788],[-4.168,54.787],[-4.17,54.787],[-4.174,54.79],[-4.178,54.791],[-4.179,54.795],[-4.186,54.802],[-4.185,54.804],[-4.179,54.807],[-4.18,54.808],[-4.185,54.807],[-4.186,54.808],[-4.189,54.808],[-4.192,54.81],[-4.193,54.808],[-4.196,54.808],[-4.197,54.81],[-4.2,54.81],[-4.202,54.813],[-4.204,54.814],[-4.209,54.814],[-4.21,54.815],[-4.209,54.819],[-4.208,54.82],[-4.214,54.822],[-4.217,54.824],[-4.219,54.826],[-4.219,54.828],[-4.216,54.83],[-4.218,54.831],[-4.214,54.837],[-4.217,54.837],[-4.217,54.839],[-4.223,54.839],[-4.224,54.841],[-4.22,54.843],[-4.22,54.845],[-4.223,54.847],[-4.223,54.849],[-4.216,54.853],[-4.213,54.855],[-4.212,54.859],[-4.208,54.86],[-4.205,54.863],[-4.203,54.865],[-4.203,54.867],[-4.206,54.868],[-4.21,54.866],[-4.214,54.865],[-4.217,54.864],[-4.221,54.864],[-4.226,54.864],[-4.229,54.861],[-4.228,54.86],[-4.23,54.855],[-4.235,54.852],[-4.24,54.852],[-4.244,54.848],[-4.249,54.845],[-4.253,54.845],[-4.255,54.844],[-4.257,54.842],[-4.258,54.841],[-4.257,54.839],[-4.259,54.838],[-4.266,54.836],[-4.273,54.838],[-4.276,54.84],[-4.28,54.841],[-4.282,54.842],[-4.29,54.843],[-4.293,54.843],[-4.299,54.843],[-4.307,54.844],[-4.314,54.845],[-4.321,54.847],[-4.322,54.846],[-4.315,54.843],[-4.311,54.84],[-4.305,54.835],[-4.307,54.834],[-4.31,54.835],[-4.312,54.837],[-4.314,54.839],[-4.326,54.846],[-4.332,54.849],[-4.338,54.853],[-4.34,54.854],[-4.349,54.858],[-4.352,54.859],[-4.354,54.86],[-4.363,54.863],[-4.364,54.865],[-4.366,54.868],[-4.371,54.873],[-4.373,54.877],[-4.378,54.878],[-4.382,54.88],[-4.384,54.883],[-4.383,54.885],[-4.383,54.887],[-4.386,54.891],[-4.387,54.893],[-4.391,54.897],[-4.399,54.901],[-4.403,54.899],[-4.408,54.896],[-4.413,54.894],[-4.419,54.89],[-4.424,54.888],[-4.427,54.885],[-4.428,54.884],[-4.43,54.883],[-4.43,54.88],[-4.434,54.875],[-4.435,54.873],[-4.434,54.87],[-4.435,54.868],[-4.432,54.864],[-4.433,54.862],[-4.428,54.863],[-4.426,54.861],[-4.423,54.854],[-4.422,54.847],[-4.418,54.838],[-4.415,54.834],[-4.415,54.833],[-4.412,54.828],[-4.409,54.824],[-4.396,54.824],[-4.395,54.822],[-4.392,54.821],[-4.373,54.82],[-4.361,54.819],[-4.359,54.817],[-4.354,54.814],[-4.353,54.812],[-4.349,54.81],[-4.344,54.805],[-4.343,54.801],[-4.342,54.8],[-4.342,54.797],[-4.343,54.794],[-4.346,54.791],[-4.353,54.79],[-4.356,54.793],[-4.358,54.793],[-4.362,54.796],[-4.365,54.795],[-4.368,54.794],[-4.368,54.789],[-4.366,54.788],[-4.363,54.789],[-4.361,54.786],[-4.361,54.782],[-4.36,54.78],[-4.36,54.777],[-4.363,54.777],[-4.364,54.776],[-4.368,54.776],[-4.37,54.775],[-4.371,54.773],[-4.367,54.77],[-4.364,54.769],[-4.357,54.769],[-4.355,54.768],[-4.357,54.762],[-4.355,54.758],[-4.358,54.756],[-4.359,54.754],[-4.357,54.753],[-4.361,54.749],[-4.362,54.748],[-4.364,54.743],[-4.366,54.742],[-4.364,54.74],[-4.362,54.737],[-4.364,54.733],[-4.367,54.73],[-4.364,54.727],[-4.364,54.725],[-4.365,54.723],[-4.363,54.722],[-4.363,54.719],[-4.361,54.717],[-4.355,54.717],[-4.351,54.717],[-4.352,54.715],[-4.349,54.711],[-4.35,54.71],[-4.35,54.708],[-4.351,54.707],[-4.351,54.706],[-4.355,54.703],[-4.359,54.701],[-4.36,54.7],[-4.359,54.698],[-4.358,54.697],[-4.358,54.695],[-4.364,54.697],[-4.367,54.698],[-4.365,54.695],[-4.365,54.691],[-4.37,54.687],[-4.373,54.687],[-4.377,54.685],[-4.382,54.681],[-4.385,54.68],[-4.392,54.678],[-4.399,54.678],[-4.402,54.679],[-4.405,54.678],[-4.41,54.679],[-4.412,54.68],[-4.418,54.682],[-4.423,54.683],[-4.428,54.686],[-4.43,54.687],[-4.436,54.69],[-4.442,54.691],[-4.444,54.693],[-4.453,54.695],[-4.456,54.696],[-4.461,54.696],[-4.467,54.697],[-4.481,54.7],[-4.495,54.704],[-4.509,54.71],[-4.522,54.715],[-4.525,54.719],[-4.529,54.721],[-4.53,54.723],[-4.537,54.724],[-4.54,54.723],[-4.544,54.724],[-4.544,54.725],[-4.54,54.728],[-4.543,54.73],[-4.545,54.733],[-4.546,54.734],[-4.552,54.736],[-4.566,54.737],[-4.571,54.737],[-4.576,54.744],[-4.577,54.746],[-4.579,54.752],[-4.585,54.756],[-4.586,54.759],[-4.585,54.762],[-4.587,54.765],[-4.59,54.768],[-4.597,54.773],[-4.599,54.775],[-4.603,54.777],[-4.608,54.777],[-4.607,54.779],[-4.61,54.78],[-4.615,54.78],[-4.619,54.782],[-4.621,54.782],[-4.628,54.783],[-4.634,54.785],[-4.64,54.788],[-4.645,54.791],[-4.654,54.794],[-4.672,54.8],[-4.68,54.804],[-4.689,54.81],[-4.698,54.816],[-4.705,54.82],[-4.709,54.823],[-4.717,54.826],[-4.734,54.827],[-4.743,54.827],[-4.747,54.829],[-4.753,54.83],[-4.758,54.828],[-4.763,54.827],[-4.767,54.829],[-4.777,54.832],[-4.781,54.832],[-4.782,54.833],[-4.788,54.837],[-4.792,54.844],[-4.794,54.847],[-4.798,54.849],[-4.803,54.85],[-4.804,54.853],[-4.806,54.855],[-4.807,54.857],[-4.809,54.861],[-4.816,54.864],[-4.817,54.864],[-4.819,54.863],[-4.826,54.863],[-4.83,54.864],[-4.834,54.864],[-4.839,54.865],[-4.844,54.867],[-4.847,54.869],[-4.856,54.871],[-4.859,54.869],[-4.856,54.869],[-4.853,54.867],[-4.851,54.864],[-4.849,54.862],[-4.85,54.859],[-4.851,54.857],[-4.858,54.855],[-4.872,54.852],[-4.892,54.847],[-4.898,54.844],[-4.91,54.839],[-4.926,54.834],[-4.933,54.832],[-4.939,54.83],[-4.939,54.828],[-4.942,54.823],[-4.953,54.815],[-4.96,54.806],[-4.96,54.804],[-4.957,54.801],[-4.953,54.799],[-4.949,54.796],[-4.946,54.791],[-4.945,54.788],[-4.941,54.78],[-4.938,54.776],[-4.938,54.774],[-4.938,54.77],[-4.937,54.768],[-4.938,54.766],[-4.937,54.765],[-4.93,54.76],[-4.928,54.757],[-4.927,54.751],[-4.925,54.749],[-4.92,54.746],[-4.917,54.743],[-4.919,54.738],[-4.915,54.735],[-4.914,54.734],[-4.914,54.728],[-4.911,54.727],[-4.909,54.725],[-4.909,54.723],[-4.907,54.72],[-4.906,54.716],[-4.904,54.712],[-4.904,54.71],[-4.906,54.704],[-4.904,54.701],[-4.898,54.699],[-4.896,54.694],[-4.894,54.692],[-4.889,54.693],[-4.886,54.693],[-4.884,54.692],[-4.882,54.687],[-4.879,54.685],[-4.873,54.684],[-4.871,54.683],[-4.866,54.682],[-4.868,54.68],[-4.875,54.676],[-4.879,54.671],[-4.882,54.669],[-4.88,54.666],[-4.88,54.665],[-4.882,54.659],[-4.884,54.655],[-4.884,54.653],[-4.88,54.649],[-4.878,54.646],[-4.877,54.641],[-4.876,54.639],[-4.869,54.637],[-4.865,54.637],[-4.858,54.639],[-4.853,54.638],[-4.851,54.636],[-4.855,54.634],[-4.859,54.633],[-4.866,54.634],[-4.868,54.633],[-4.871,54.633],[-4.875,54.633],[-4.88,54.634],[-4.88,54.635],[-4.883,54.637],[-4.882,54.639],[-4.886,54.639],[-4.89,54.638],[-4.896,54.639],[-4.901,54.639],[-4.909,54.643],[-4.912,54.642],[-4.914,54.643],[-4.917,54.642],[-4.927,54.646],[-4.929,54.647],[-4.934,54.648],[-4.938,54.651],[-4.94,54.653],[-4.942,54.653],[-4.947,54.657],[-4.949,54.658],[-4.951,54.66],[-4.957,54.663],[-4.965,54.665],[-4.964,54.668],[-4.965,54.669],[-4.967,54.671],[-4.968,54.672],[-4.962,54.676],[-4.969,54.677],[-4.972,54.68],[-4.974,54.683],[-4.975,54.685],[-4.973,54.688],[-4.973,54.69],[-4.969,54.692],[-4.96,54.696],[-4.957,54.696],[-4.954,54.698],[-4.95,54.698],[-4.947,54.7],[-4.949,54.702],[-4.953,54.703],[-4.955,54.705],[-4.958,54.707],[-4.96,54.712],[-4.963,54.713],[-4.962,54.715],[-4.964,54.716],[-4.966,54.717],[-4.966,54.72],[-4.96,54.724],[-4.957,54.725],[-4.957,54.727],[-4.959,54.73],[-4.961,54.73],[-4.965,54.73],[-4.969,54.731],[-4.973,54.732],[-4.98,54.733],[-4.983,54.732],[-4.987,54.732],[-4.99,54.734],[-4.992,54.737],[-4.99,54.739],[-4.991,54.742],[-4.988,54.745],[-4.99,54.746],[-4.988,54.748],[-4.987,54.749],[-4.989,54.752],[-5,54.753],[-5.003,54.755],[-5.004,54.756],[-5.003,54.759],[-5.006,54.76],[-5.006,54.762],[-5.001,54.762],[-4.999,54.764],[-4.999,54.767],[-5,54.77],[-5.001,54.773],[-5.006,54.776],[-5.009,54.778],[-5.011,54.781],[-5.01,54.783],[-5.013,54.783],[-5.019,54.782],[-5.021,54.784],[-5.025,54.786],[-5.03,54.789],[-5.035,54.791],[-5.04,54.791],[-5.043,54.794],[-5.041,54.797],[-5.039,54.799],[-5.041,54.801],[-5.043,54.803],[-5.05,54.806],[-5.051,54.808],[-5.054,54.81],[-5.058,54.811],[-5.063,54.811],[-5.067,54.813],[-5.075,54.815],[-5.079,54.818],[-5.083,54.821],[-5.083,54.824],[-5.089,54.828],[-5.091,54.829],[-5.097,54.829],[-5.1,54.83],[-5.104,54.83],[-5.108,54.833],[-5.107,54.834],[-5.11,54.835],[-5.116,54.839],[-5.118,54.84],[-5.122,54.842],[-5.126,54.844],[-5.13,54.848],[-5.13,54.849],[-5.132,54.851],[-5.136,54.85],[-5.141,54.853],[-5.141,54.856],[-5.145,54.857],[-5.147,54.859],[-5.145,54.86],[-5.148,54.862],[-5.148,54.865],[-5.145,54.866],[-5.145,54.868],[-5.146,54.871],[-5.147,54.872],[-5.15,54.876],[-5.155,54.881],[-5.157,54.885],[-5.158,54.888],[-5.161,54.89],[-5.167,54.898],[-5.17,54.9],[-5.173,54.902],[-5.174,54.906],[-5.179,54.908],[-5.182,54.91],[-5.184,54.914],[-5.186,54.917],[-5.186,54.919],[-5.186,54.923],[-5.185,54.927],[-5.188,54.931],[-5.186,54.933],[-5.187,54.935],[-5.186,54.935],[-5.186,54.94],[-5.186,54.942],[-5.188,54.951],[-5.184,54.955],[-5.184,54.958],[-5.181,54.959],[-5.181,54.962],[-5.179,54.966],[-5.178,54.969],[-5.18,54.971],[-5.178,54.973],[-5.185,54.974],[-5.186,54.976],[-5.182,54.981],[-5.178,54.985],[-5.176,54.987],[-5.174,54.99],[-5.171,54.991],[-5.17,54.993],[-5.172,54.995],[-5.169,54.998],[-5.167,55.002],[-5.162,55.003],[-5.162,55.005],[-5.161,55.007],[-5.155,55.009],[-5.152,55.009],[-5.144,55.007],[-5.141,55.007],[-5.136,55.008],[-5.135,55.009],[-5.126,55.011],[-5.122,55.012],[-5.121,55.013],[-5.115,55.015],[-5.111,55.018],[-5.108,55.018],[-5.103,55.018],[-5.098,55.018],[-5.095,55.017],[-5.092,55.015],[-5.091,55.012],[-5.088,55.006],[-5.085,55.003],[-5.086,55.001],[-5.086,55],[-5.081,54.998],[-5.076,54.996],[-5.075,54.995],[-5.075,54.993],[-5.073,54.991],[-5.071,54.989],[-5.069,54.987],[-5.069,54.986],[-5.071,54.981],[-5.065,54.973],[-5.064,54.971],[-5.061,54.969],[-5.062,54.968],[-5.065,54.968],[-5.073,54.965],[-5.074,54.963],[-5.073,54.959],[-5.07,54.956],[-5.069,54.953],[-5.071,54.951],[-5.071,54.949],[-5.069,54.943],[-5.069,54.939],[-5.068,54.936],[-5.067,54.933],[-5.064,54.932],[-5.063,54.926],[-5.056,54.921],[-5.052,54.919],[-5.047,54.918],[-5.041,54.913],[-5.038,54.911],[-5.035,54.908],[-5.03,54.908],[-5.03,54.906],[-5.024,54.906],[-5.025,54.909],[-5.018,54.905],[-5.005,54.91],[-4.997,54.913],[-4.993,54.916],[-4.992,54.921],[-4.993,54.923],[-4.993,54.926],[-4.992,54.927],[-4.995,54.931],[-4.997,54.938],[-5.002,54.943],[-5.006,54.944],[-5.005,54.948],[-5.006,54.953],[-5.01,54.958],[-5.012,54.961],[-5.015,54.962],[-5.017,54.964],[-5.014,54.965],[-5.019,54.97],[-5.024,54.973],[-5.027,54.974],[-5.022,54.968],[-5.024,54.968],[-5.03,54.975],[-5.03,54.98],[-5.035,54.983],[-5.036,54.984],[-5.036,54.988],[-5.037,54.99],[-5.037,54.993],[-5.039,54.996],[-5.042,55.001],[-5.048,55.005],[-5.05,55.011],[-5.048,55.011],[-5.044,55.011],[-5.039,55.015],[-5.021,55.012],[-5.011,55.01],[-4.99,55.007],[-4.982,55.006],[-4.976,55.014],[-4.962,55.025],[-4.959,55.027],[-4.952,55.033],[-4.952,55.037],[-4.952,55.041],[-4.95,55.046],[-4.945,55.06],[-4.94,55.065],[-4.927,55.07],[-4.913,55.071],[-4.906,55.071],[-4.892,55.058],[-4.884,55.052],[-4.867,55.041],[-4.837,55.046],[-4.837,55.044],[-4.836,55.042],[-4.817,55.036],[-4.816,55.036],[-4.798,55.031],[-4.782,55.026],[-4.778,55.023],[-4.75,55.033],[-4.728,55.041],[-4.702,55.038],[-4.69,55.041],[-4.683,55.046],[-4.681,55.045],[-4.677,55.044],[-4.67,55.045],[-4.669,55.044],[-4.648,55.049],[-4.646,55.049],[-4.636,55.046],[-4.633,55.046],[-4.611,55.046],[-4.607,55.05],[-4.607,55.054],[-4.608,55.06],[-4.613,55.063],[-4.619,55.063],[-4.633,55.063],[-4.64,55.065],[-4.647,55.073],[-4.654,55.075],[-4.645,55.086],[-4.643,55.085],[-4.643,55.091],[-4.643,55.107],[-4.6,55.131],[-4.598,55.131],[-4.628,55.168],[-4.64,55.182],[-4.625,55.194],[-4.599,55.2],[-4.598,55.199],[-4.593,55.197],[-4.59,55.194],[-4.587,55.19],[-4.587,55.188],[-4.589,55.184],[-4.588,55.182],[-4.581,55.19],[-4.577,55.191],[-4.573,55.19],[-4.57,55.19],[-4.565,55.193],[-4.563,55.195],[-4.561,55.198],[-4.555,55.204],[-4.553,55.204],[-4.548,55.21],[-4.544,55.212],[-4.541,55.212],[-4.539,55.215],[-4.522,55.203],[-4.524,55.191],[-4.511,55.158],[-4.491,55.148],[-4.479,55.146],[-4.452,55.145],[-4.403,55.171],[-4.376,55.172],[-4.364,55.177],[-4.35,55.191],[-4.377,55.213],[-4.377,55.216],[-4.375,55.22],[-4.373,55.223],[-4.369,55.228],[-4.366,55.229],[-4.364,55.233],[-4.363,55.235],[-4.361,55.238],[-4.362,55.242],[-4.361,55.244],[-4.358,55.246],[-4.357,55.25],[-4.355,55.253],[-4.359,55.255],[-4.36,55.258],[-4.357,55.259],[-4.356,55.263],[-4.355,55.264],[-4.348,55.264],[-4.346,55.267],[-4.353,55.267],[-4.359,55.269],[-4.363,55.269],[-4.367,55.271],[-4.368,55.271],[-4.37,55.273],[-4.371,55.277],[-4.368,55.287],[-4.358,55.296],[-4.35,55.292],[-4.342,55.289],[-4.341,55.287],[-4.34,55.282],[-4.338,55.278],[-4.315,55.281],[-4.305,55.288],[-4.31,55.31],[-4.312,55.318],[-4.309,55.32],[-4.302,55.322],[-4.287,55.314],[-4.276,55.309],[-4.263,55.307],[-4.208,55.302],[-4.203,55.305],[-4.155,55.289],[-4.144,55.292],[-4.113,55.31],[-4.106,55.319],[-4.109,55.321],[-4.124,55.341],[-4.124,55.351],[-4.143,55.366],[-4.143,55.368],[-4.127,55.378],[-4.117,55.38],[-4.098,55.379],[-4.09,55.39],[-4.089,55.392],[-4.091,55.393],[-4.102,55.393],[-4.103,55.394],[-4.102,55.397],[-4.098,55.396],[-4.098,55.401],[-4.095,55.408],[-4.097,55.416],[-4.098,55.416],[-4.107,55.43],[-4.105,55.432],[-4.082,55.438],[-4.047,55.438],[-4.061,55.458],[-4.078,55.482],[-4.074,55.483],[-4.065,55.484],[-4.016,55.484],[-4.013,55.483],[-4.001,55.465],[-3.978,55.461],[-3.953,55.46],[-3.916,55.451],[-3.914,55.452],[-3.904,55.483],[-3.896,55.489],[-3.865,55.488],[-3.863,55.485],[-3.863,55.482],[-3.858,55.478],[-3.838,55.47],[-3.828,55.465],[-3.833,55.462],[-3.836,55.458],[-3.84,55.455],[-3.841,55.454],[-3.844,55.453],[-3.828,55.448],[-3.825,55.446],[-3.826,55.433],[-3.839,55.424],[-3.851,55.415],[-3.826,55.404],[-3.82,55.389],[-3.82,55.386],[-3.813,55.381],[-3.806,55.373],[-3.812,55.372],[-3.806,55.368],[-3.802,55.369],[-3.796,55.371],[-3.789,55.372],[-3.788,55.373],[-3.775,55.362],[-3.764,55.362],[-3.743,55.367],[-3.736,55.369],[-3.734,55.375],[-3.725,55.381],[-3.72,55.383],[-3.705,55.369],[-3.707,55.366],[-3.697,55.36],[-3.694,55.361],[-3.665,55.359],[-3.661,55.356],[-3.665,55.343],[-3.668,55.34],[-3.672,55.321],[-3.674,55.318],[-3.596,55.308],[-3.595,55.321],[-3.585,55.328],[-3.584,55.33],[-3.58,55.333],[-3.575,55.36],[-3.573,55.362],[-3.55,55.361],[-3.548,55.362],[-3.54,55.369],[-3.548,55.398],[-3.539,55.397],[-3.537,55.397],[-3.545,55.399],[-3.55,55.4],[-3.554,55.402],[-3.558,55.406],[-3.561,55.407],[-3.565,55.409],[-3.571,55.41],[-3.546,55.425],[-3.542,55.437],[-3.527,55.447],[-3.514,55.45],[-3.499,55.449],[-3.499,55.445],[-3.501,55.443],[-3.505,55.44],[-3.506,55.434],[-3.506,55.431],[-3.496,55.431],[-3.482,55.431],[-3.455,55.442],[-3.453,55.442],[-3.415,55.419],[-3.411,55.411],[-3.409,55.409],[-3.399,55.403],[-3.391,55.402],[-3.377,55.403],[-3.365,55.404],[-3.34,55.407],[-3.321,55.438],[-3.289,55.439],[-3.268,55.428],[-3.276,55.423],[-3.28,55.421],[-3.285,55.419],[-3.288,55.417],[-3.293,55.414],[-3.281,55.408],[-3.281,55.399],[-3.283,55.394],[-3.292,55.386],[-3.302,55.382],[-3.285,55.367],[-3.278,55.362],[-3.262,55.355],[-3.26,55.355],[-3.255,55.361],[-3.243,55.369],[-3.225,55.374],[-3.222,55.374],[-3.204,55.36],[-3.186,55.361],[-3.174,55.356],[-3.179,55.354],[-3.18,55.352],[-3.182,55.35],[-3.185,55.35],[-3.187,55.349],[-3.194,55.344],[-3.196,55.342],[-3.199,55.336],[-3.201,55.334],[-3.204,55.327],[-3.201,55.323],[-3.203,55.322],[-3.192,55.317],[-3.184,55.319],[-3.183,55.328],[-3.161,55.344],[-3.16,55.349],[-3.111,55.356],[-3.104,55.351],[-3.103,55.349],[-3.098,55.332],[-3.097,55.329],[-3.081,55.318],[-3.07,55.302],[-3.073,55.299],[-3.053,55.279],[-3.008,55.27],[-2.997,55.279],[-2.969,55.284],[-2.951,55.276],[-2.956,55.273],[-2.957,55.273],[-2.914,55.266],[-2.918,55.264],[-2.925,55.263],[-2.919,55.253],[-2.924,55.241],[-2.921,55.235],[-2.885,55.229],[-2.87,55.224],[-2.865,55.216],[-2.873,55.2],[-2.874,55.198],[-2.877,55.19],[-2.881,55.177],[-2.878,55.171],[-2.882,55.17],[-2.891,55.171],[-2.896,55.173],[-2.898,55.163],[-2.898,55.157],[-2.902,55.147],[-2.9,55.144],[-2.897,55.141],[-2.882,55.138],[-2.857,55.131],[-2.848,55.132],[-2.841,55.13],[-2.84,55.132],[-2.837,55.134],[-2.834,55.133],[-2.831,55.131],[-2.83,55.129],[-2.841,55.127],[-2.843,55.127],[-2.851,55.121],[-2.838,55.12],[-2.835,55.119]],[[-4.263,55.072],[-4.269,55.074],[-4.27,55.076],[-4.275,55.077],[-4.276,55.076],[-4.28,55.074],[-4.281,55.074],[-4.284,55.076],[-4.287,55.075],[-4.29,55.076],[-4.293,55.076],[-4.302,55.078],[-4.307,55.078],[-4.311,55.077],[-4.31,55.076],[-4.306,55.076],[-4.303,55.072],[-4.299,55.07],[-4.291,55.063],[-4.289,55.062],[-4.284,55.06],[-4.283,55.058],[-4.286,55.055],[-4.286,55.054],[-4.291,55.053],[-4.29,55.051],[-4.286,55.051],[-4.28,55.05],[-4.278,55.053],[-4.278,55.055],[-4.275,55.058],[-4.272,55.059],[-4.268,55.064],[-4.27,55.065],[-4.271,55.067],[-4.268,55.071],[-4.263,55.072]],[[-3.962,54.942],[-3.963,54.943],[-3.967,54.944],[-3.969,54.947],[-3.969,54.95],[-3.971,54.95],[-3.976,54.95],[-3.978,54.951],[-3.976,54.955],[-3.978,54.958],[-3.978,54.964],[-3.981,54.97],[-3.979,54.974],[-3.984,54.976],[-3.986,54.975],[-3.987,54.978],[-3.99,54.982],[-3.992,54.982],[-3.992,54.984],[-3.995,54.984],[-3.999,54.985],[-3.998,54.988],[-4.001,54.991],[-4.003,54.993],[-4.007,54.994],[-4.005,54.995],[-4.006,54.997],[-4.01,54.998],[-4.012,54.998],[-4.019,55],[-4.023,55.002],[-4.028,55.003],[-4.036,55.004],[-4.039,55.005],[-4.043,55.006],[-4.044,55.007],[-4.055,55.009],[-4.06,55.01],[-4.066,55.018],[-4.068,55.019],[-4.069,55.022],[-4.07,55.024],[-4.075,55.025],[-4.094,55.032],[-4.096,55.032],[-4.096,55.034],[-4.099,55.035],[-4.1,55.037],[-4.105,55.04],[-4.112,55.047],[-4.117,55.049],[-4.121,55.051],[-4.124,55.051],[-4.125,55.054],[-4.128,55.058],[-4.129,55.058],[-4.131,55.056],[-4.133,55.057],[-4.134,55.055],[-4.13,55.054],[-4.131,55.053],[-4.13,55.051],[-4.125,55.048],[-4.117,55.042],[-4.116,55.041],[-4.113,55.039],[-4.107,55.032],[-4.105,55.031],[-4.099,55.03],[-4.098,55.029],[-4.094,55.029],[-4.091,55.026],[-4.085,55.025],[-4.08,55.024],[-4.079,55.023],[-4.075,55.021],[-4.074,55.018],[-4.07,55.016],[-4.066,55.011],[-4.067,55.01],[-4.063,55.009],[-4.06,55.005],[-4.059,55.005],[-4.056,55.006],[-4.055,55.003],[-4.051,55.004],[-4.049,55.004],[-4.049,55.002],[-4.045,55.002],[-4.042,55.001],[-4.036,55.001],[-4.034,55.001],[-4.031,55.001],[-4.03,55.002],[-4.024,55.001],[-4.027,54.998],[-4.026,54.996],[-4.022,54.997],[-4.023,54.994],[-4.026,54.994],[-4.028,54.993],[-4.026,54.991],[-4.022,54.99],[-4.016,54.992],[-4.015,54.991],[-4.018,54.989],[-4.011,54.989],[-4.009,54.989],[-4.003,54.984],[-4.005,54.983],[-4.003,54.98],[-4,54.978],[-3.996,54.977],[-3.992,54.974],[-3.988,54.973],[-3.984,54.969],[-3.985,54.967],[-3.981,54.965],[-3.981,54.961],[-3.98,54.958],[-3.977,54.956],[-3.98,54.953],[-3.98,54.951],[-3.978,54.949],[-3.972,54.949],[-3.971,54.948],[-3.97,54.945],[-3.968,54.943],[-3.971,54.941],[-3.969,54.935],[-3.969,54.933],[-3.976,54.931],[-3.979,54.928],[-3.979,54.927],[-3.975,54.925],[-3.974,54.924],[-3.969,54.927],[-3.967,54.932],[-3.967,54.937],[-3.964,54.94],[-3.962,54.942]]]]},"properties":{"OBJECTID":26,"NAME":"DG","KEY":"DG","Shape_Leng":11.0495,"Shape_Area":0.936455}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.374,54.746],[-1.376,54.746],[-1.383,54.741],[-1.383,54.739],[-1.385,54.738],[-1.39,54.738],[-1.408,54.739],[-1.421,54.737],[-1.424,54.737],[-1.429,54.738],[-1.434,54.735],[-1.442,54.733],[-1.441,54.731],[-1.446,54.727],[-1.446,54.726],[-1.438,54.726],[-1.429,54.728],[-1.429,54.727],[-1.44,54.722],[-1.449,54.719],[-1.442,54.716],[-1.446,54.709],[-1.454,54.707],[-1.459,54.711],[-1.465,54.711],[-1.47,54.709],[-1.473,54.708],[-1.476,54.706],[-1.477,54.703],[-1.478,54.7],[-1.482,54.701],[-1.486,54.703],[-1.49,54.707],[-1.495,54.708],[-1.504,54.707],[-1.518,54.706],[-1.528,54.703],[-1.529,54.702],[-1.532,54.703],[-1.532,54.705],[-1.537,54.705],[-1.539,54.709],[-1.548,54.707],[-1.547,54.706],[-1.55,54.703],[-1.56,54.7],[-1.561,54.702],[-1.565,54.704],[-1.567,54.707],[-1.57,54.708],[-1.568,54.71],[-1.571,54.714],[-1.574,54.718],[-1.58,54.719],[-1.585,54.722],[-1.589,54.722],[-1.589,54.723],[-1.591,54.724],[-1.597,54.72],[-1.604,54.721],[-1.614,54.725],[-1.619,54.722],[-1.623,54.72],[-1.633,54.722],[-1.645,54.723],[-1.649,54.726],[-1.649,54.727],[-1.659,54.725],[-1.658,54.732],[-1.663,54.731],[-1.666,54.735],[-1.676,54.736],[-1.679,54.737],[-1.678,54.738],[-1.678,54.745],[-1.679,54.746],[-1.686,54.757],[-1.685,54.759],[-1.691,54.764],[-1.701,54.762],[-1.706,54.759],[-1.708,54.756],[-1.718,54.754],[-1.723,54.752],[-1.723,54.748],[-1.727,54.748],[-1.729,54.746],[-1.735,54.749],[-1.737,54.752],[-1.74,54.754],[-1.744,54.756],[-1.751,54.756],[-1.754,54.76],[-1.745,54.761],[-1.74,54.76],[-1.752,54.766],[-1.756,54.765],[-1.758,54.765],[-1.761,54.766],[-1.766,54.768],[-1.778,54.764],[-1.782,54.762],[-1.789,54.759],[-1.797,54.756],[-1.813,54.757],[-1.816,54.758],[-1.815,54.759],[-1.81,54.765],[-1.808,54.767],[-1.802,54.77],[-1.799,54.773],[-1.802,54.773],[-1.805,54.775],[-1.81,54.778],[-1.804,54.783],[-1.809,54.786],[-1.813,54.79],[-1.81,54.791],[-1.8,54.796],[-1.808,54.799],[-1.811,54.804],[-1.82,54.802],[-1.819,54.807],[-1.828,54.809],[-1.831,54.806],[-1.835,54.802],[-1.839,54.8],[-1.842,54.808],[-1.844,54.806],[-1.853,54.801],[-1.855,54.799],[-1.859,54.805],[-1.88,54.803],[-1.879,54.795],[-1.887,54.793],[-1.887,54.787],[-1.89,54.787],[-1.892,54.79],[-1.897,54.792],[-1.894,54.797],[-1.905,54.797],[-1.91,54.797],[-1.922,54.788],[-1.932,54.787],[-1.938,54.78],[-1.944,54.776],[-1.95,54.773],[-1.964,54.772],[-1.973,54.783],[-1.994,54.795],[-1.996,54.797],[-2.004,54.788],[-2.011,54.794],[-2.018,54.796],[-2.027,54.796],[-2.036,54.798],[-2.045,54.802],[-2.047,54.806],[-2.052,54.803],[-2.064,54.801],[-2.071,54.798],[-2.104,54.801],[-2.106,54.798],[-2.108,54.797],[-2.114,54.791],[-2.113,54.79],[-2.142,54.796],[-2.16,54.812],[-2.16,54.813],[-2.147,54.82],[-2.146,54.823],[-2.131,54.834],[-2.123,54.836],[-2.116,54.839],[-2.115,54.841],[-2.122,54.849],[-2.1,54.865],[-2.098,54.868],[-2.096,54.876],[-2.091,54.879],[-2.052,54.879],[-2.049,54.877],[-2.031,54.876],[-2.028,54.881],[-2.022,54.885],[-2.02,54.887],[-2.014,54.888],[-1.998,54.889],[-1.992,54.889],[-1.977,54.89],[-1.982,54.893],[-1.988,54.895],[-1.977,54.899],[-1.974,54.903],[-1.959,54.904],[-1.954,54.905],[-1.945,54.909],[-1.942,54.908],[-1.934,54.907],[-1.927,54.907],[-1.925,54.907],[-1.921,54.908],[-1.919,54.907],[-1.915,54.906],[-1.913,54.904],[-1.9,54.906],[-1.894,54.908],[-1.892,54.91],[-1.889,54.91],[-1.893,54.915],[-1.891,54.917],[-1.879,54.915],[-1.875,54.913],[-1.873,54.91],[-1.869,54.902],[-1.859,54.898],[-1.858,54.902],[-1.857,54.905],[-1.857,54.907],[-1.854,54.91],[-1.853,54.913],[-1.855,54.914],[-1.839,54.914],[-1.842,54.911],[-1.848,54.903],[-1.846,54.901],[-1.843,54.901],[-1.837,54.9],[-1.829,54.896],[-1.83,54.895],[-1.827,54.893],[-1.822,54.893],[-1.822,54.888],[-1.816,54.889],[-1.812,54.891],[-1.804,54.896],[-1.798,54.895],[-1.795,54.896],[-1.795,54.894],[-1.795,54.891],[-1.797,54.89],[-1.794,54.886],[-1.792,54.883],[-1.785,54.88],[-1.776,54.884],[-1.774,54.888],[-1.768,54.889],[-1.761,54.89],[-1.754,54.89],[-1.745,54.891],[-1.743,54.889],[-1.742,54.889],[-1.737,54.888],[-1.734,54.888],[-1.734,54.891],[-1.737,54.892],[-1.734,54.894],[-1.732,54.894],[-1.725,54.892],[-1.721,54.894],[-1.719,54.896],[-1.711,54.898],[-1.709,54.899],[-1.706,54.896],[-1.702,54.898],[-1.704,54.903],[-1.702,54.905],[-1.692,54.905],[-1.688,54.905],[-1.682,54.903],[-1.679,54.901],[-1.686,54.901],[-1.691,54.9],[-1.692,54.896],[-1.687,54.892],[-1.686,54.895],[-1.68,54.893],[-1.679,54.896],[-1.668,54.897],[-1.665,54.896],[-1.659,54.895],[-1.65,54.894],[-1.645,54.896],[-1.642,54.894],[-1.641,54.89],[-1.63,54.889],[-1.617,54.885],[-1.613,54.887],[-1.607,54.891],[-1.611,54.894],[-1.617,54.897],[-1.616,54.899],[-1.612,54.901],[-1.605,54.903],[-1.602,54.905],[-1.602,54.906],[-1.599,54.908],[-1.595,54.907],[-1.598,54.912],[-1.592,54.914],[-1.584,54.911],[-1.579,54.913],[-1.577,54.919],[-1.572,54.92],[-1.565,54.915],[-1.563,54.915],[-1.562,54.912],[-1.562,54.91],[-1.559,54.907],[-1.549,54.914],[-1.546,54.913],[-1.555,54.907],[-1.557,54.906],[-1.559,54.903],[-1.56,54.9],[-1.559,54.898],[-1.559,54.893],[-1.56,54.883],[-1.561,54.879],[-1.567,54.875],[-1.568,54.871],[-1.567,54.869],[-1.564,54.866],[-1.563,54.868],[-1.554,54.87],[-1.55,54.87],[-1.547,54.871],[-1.544,54.872],[-1.538,54.872],[-1.535,54.874],[-1.53,54.875],[-1.528,54.873],[-1.524,54.872],[-1.518,54.876],[-1.521,54.876],[-1.52,54.878],[-1.516,54.88],[-1.512,54.881],[-1.51,54.88],[-1.505,54.881],[-1.503,54.885],[-1.498,54.887],[-1.493,54.885],[-1.49,54.886],[-1.487,54.886],[-1.485,54.883],[-1.478,54.881],[-1.486,54.876],[-1.482,54.874],[-1.479,54.874],[-1.476,54.875],[-1.472,54.878],[-1.466,54.879],[-1.462,54.877],[-1.456,54.876],[-1.452,54.877],[-1.451,54.87],[-1.449,54.867],[-1.446,54.865],[-1.44,54.861],[-1.436,54.86],[-1.428,54.858],[-1.427,54.857],[-1.429,54.855],[-1.434,54.855],[-1.439,54.85],[-1.441,54.847],[-1.435,54.845],[-1.428,54.846],[-1.422,54.844],[-1.418,54.844],[-1.426,54.837],[-1.429,54.835],[-1.424,54.834],[-1.421,54.831],[-1.419,54.826],[-1.428,54.821],[-1.422,54.817],[-1.422,54.813],[-1.419,54.814],[-1.417,54.812],[-1.41,54.809],[-1.403,54.811],[-1.401,54.81],[-1.389,54.807],[-1.387,54.806],[-1.384,54.8],[-1.382,54.798],[-1.374,54.799],[-1.378,54.794],[-1.378,54.793],[-1.383,54.79],[-1.385,54.79],[-1.389,54.785],[-1.387,54.783],[-1.378,54.785],[-1.381,54.78],[-1.383,54.779],[-1.385,54.775],[-1.385,54.774],[-1.391,54.773],[-1.389,54.769],[-1.384,54.768],[-1.38,54.768],[-1.379,54.766],[-1.372,54.763],[-1.368,54.762],[-1.367,54.761],[-1.371,54.761],[-1.375,54.763],[-1.378,54.762],[-1.377,54.76],[-1.377,54.758],[-1.374,54.758],[-1.369,54.756],[-1.376,54.754],[-1.374,54.753],[-1.371,54.749],[-1.374,54.746]],[[-1.956,54.863],[-1.959,54.869],[-1.961,54.869],[-1.961,54.867],[-1.964,54.865],[-1.967,54.865],[-1.971,54.866],[-1.975,54.87],[-1.981,54.873],[-1.983,54.875],[-1.983,54.877],[-1.986,54.877],[-1.987,54.875],[-1.989,54.874],[-1.997,54.874],[-1.999,54.873],[-2.004,54.871],[-2.007,54.871],[-2.011,54.868],[-2.014,54.867],[-2.016,54.865],[-2.021,54.863],[-2.023,54.861],[-2.024,54.861],[-2.026,54.859],[-2.022,54.86],[-2.008,54.864],[-1.996,54.868],[-1.99,54.867],[-1.984,54.861],[-1.98,54.861],[-1.978,54.858],[-1.969,54.855],[-1.966,54.854],[-1.965,54.854],[-1.956,54.86],[-1.956,54.863]]]},"properties":{"OBJECTID":27,"NAME":"DH","KEY":"DH","Shape_Leng":2.76182,"Shape_Area":0.0948196}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.168,54.359],[-1.172,54.358],[-1.184,54.352],[-1.185,54.347],[-1.197,54.345],[-1.199,54.343],[-1.199,54.339],[-1.202,54.34],[-1.206,54.333],[-1.213,54.33],[-1.218,54.325],[-1.223,54.322],[-1.232,54.32],[-1.241,54.328],[-1.243,54.33],[-1.255,54.335],[-1.263,54.35],[-1.279,54.35],[-1.292,54.347],[-1.295,54.343],[-1.305,54.341],[-1.316,54.344],[-1.322,54.343],[-1.323,54.335],[-1.324,54.335],[-1.33,54.338],[-1.333,54.34],[-1.337,54.329],[-1.339,54.323],[-1.338,54.316],[-1.349,54.315],[-1.348,54.312],[-1.354,54.309],[-1.356,54.308],[-1.359,54.309],[-1.364,54.306],[-1.369,54.309],[-1.372,54.314],[-1.378,54.303],[-1.375,54.301],[-1.374,54.299],[-1.37,54.297],[-1.369,54.294],[-1.373,54.286],[-1.375,54.286],[-1.379,54.283],[-1.388,54.282],[-1.394,54.281],[-1.4,54.282],[-1.407,54.281],[-1.414,54.279],[-1.411,54.274],[-1.419,54.274],[-1.42,54.275],[-1.427,54.274],[-1.428,54.274],[-1.439,54.274],[-1.44,54.279],[-1.435,54.28],[-1.437,54.281],[-1.44,54.28],[-1.447,54.281],[-1.446,54.285],[-1.448,54.286],[-1.455,54.289],[-1.457,54.288],[-1.465,54.291],[-1.467,54.294],[-1.474,54.297],[-1.479,54.297],[-1.484,54.292],[-1.49,54.288],[-1.487,54.287],[-1.485,54.288],[-1.482,54.285],[-1.479,54.284],[-1.479,54.28],[-1.477,54.278],[-1.478,54.277],[-1.481,54.277],[-1.478,54.274],[-1.479,54.271],[-1.476,54.271],[-1.476,54.273],[-1.472,54.272],[-1.471,54.27],[-1.465,54.27],[-1.46,54.267],[-1.458,54.265],[-1.473,54.263],[-1.475,54.262],[-1.482,54.261],[-1.484,54.263],[-1.489,54.263],[-1.494,54.262],[-1.498,54.262],[-1.508,54.258],[-1.512,54.257],[-1.514,54.26],[-1.516,54.26],[-1.506,54.249],[-1.507,54.249],[-1.514,54.249],[-1.516,54.248],[-1.521,54.245],[-1.512,54.24],[-1.51,54.24],[-1.502,54.234],[-1.5,54.226],[-1.497,54.223],[-1.501,54.222],[-1.493,54.214],[-1.493,54.212],[-1.489,54.207],[-1.496,54.206],[-1.498,54.206],[-1.513,54.201],[-1.52,54.203],[-1.525,54.204],[-1.534,54.205],[-1.532,54.203],[-1.542,54.201],[-1.548,54.205],[-1.557,54.204],[-1.56,54.204],[-1.563,54.209],[-1.568,54.207],[-1.575,54.208],[-1.575,54.209],[-1.571,54.213],[-1.572,54.214],[-1.585,54.213],[-1.593,54.214],[-1.591,54.218],[-1.592,54.22],[-1.593,54.223],[-1.595,54.222],[-1.601,54.223],[-1.604,54.22],[-1.609,54.218],[-1.612,54.218],[-1.616,54.215],[-1.623,54.22],[-1.624,54.222],[-1.626,54.226],[-1.626,54.229],[-1.63,54.233],[-1.635,54.237],[-1.638,54.244],[-1.645,54.247],[-1.647,54.249],[-1.64,54.255],[-1.636,54.255],[-1.634,54.259],[-1.631,54.263],[-1.625,54.261],[-1.622,54.264],[-1.62,54.267],[-1.613,54.271],[-1.63,54.278],[-1.634,54.275],[-1.634,54.273],[-1.639,54.275],[-1.644,54.274],[-1.651,54.279],[-1.664,54.275],[-1.664,54.274],[-1.668,54.273],[-1.667,54.272],[-1.668,54.271],[-1.672,54.271],[-1.674,54.273],[-1.68,54.272],[-1.682,54.277],[-1.682,54.278],[-1.69,54.281],[-1.693,54.28],[-1.7,54.282],[-1.701,54.284],[-1.703,54.288],[-1.71,54.289],[-1.712,54.291],[-1.715,54.287],[-1.718,54.288],[-1.72,54.287],[-1.724,54.289],[-1.733,54.289],[-1.744,54.285],[-1.743,54.284],[-1.74,54.283],[-1.74,54.281],[-1.742,54.279],[-1.744,54.276],[-1.748,54.273],[-1.748,54.271],[-1.754,54.273],[-1.755,54.268],[-1.756,54.26],[-1.761,54.261],[-1.762,54.262],[-1.77,54.263],[-1.774,54.262],[-1.774,54.259],[-1.772,54.256],[-1.776,54.254],[-1.777,54.251],[-1.796,54.241],[-1.806,54.243],[-1.81,54.241],[-1.824,54.233],[-1.826,54.232],[-1.84,54.229],[-1.848,54.229],[-1.864,54.218],[-1.886,54.22],[-1.889,54.219],[-1.895,54.217],[-1.9,54.203],[-1.905,54.202],[-1.917,54.199],[-1.925,54.199],[-1.937,54.202],[-1.942,54.2],[-1.949,54.196],[-1.952,54.194],[-1.98,54.178],[-2.008,54.191],[-2.011,54.19],[-2.012,54.187],[-2.016,54.183],[-2.042,54.194],[-2.051,54.2],[-2.055,54.208],[-2.088,54.22],[-2.085,54.222],[-2.102,54.227],[-2.106,54.229],[-2.109,54.236],[-2.142,54.24],[-2.165,54.237],[-2.171,54.241],[-2.185,54.25],[-2.187,54.251],[-2.215,54.257],[-2.212,54.256],[-2.216,54.25],[-2.22,54.25],[-2.245,54.253],[-2.265,54.259],[-2.282,54.26],[-2.285,54.257],[-2.29,54.248],[-2.291,54.245],[-2.3,54.24],[-2.316,54.242],[-2.316,54.244],[-2.316,54.252],[-2.313,54.255],[-2.327,54.263],[-2.326,54.263],[-2.328,54.285],[-2.32,54.296],[-2.315,54.297],[-2.301,54.304],[-2.295,54.305],[-2.289,54.307],[-2.287,54.311],[-2.283,54.326],[-2.289,54.326],[-2.299,54.327],[-2.294,54.332],[-2.285,54.337],[-2.284,54.339],[-2.284,54.341],[-2.283,54.349],[-2.285,54.36],[-2.285,54.362],[-2.279,54.373],[-2.295,54.377],[-2.3,54.382],[-2.303,54.388],[-2.307,54.399],[-2.306,54.405],[-2.303,54.41],[-2.299,54.415],[-2.303,54.423],[-2.304,54.427],[-2.302,54.435],[-2.247,54.432],[-2.241,54.441],[-2.241,54.446],[-2.236,54.45],[-2.232,54.462],[-2.225,54.465],[-2.195,54.474],[-2.203,54.477],[-2.21,54.482],[-2.211,54.486],[-2.213,54.488],[-2.214,54.491],[-2.207,54.491],[-2.164,54.503],[-2.163,54.507],[-2.156,54.506],[-2.14,54.505],[-2.136,54.516],[-2.147,54.524],[-2.2,54.539],[-2.193,54.555],[-2.205,54.564],[-2.211,54.565],[-2.216,54.565],[-2.25,54.562],[-2.254,54.563],[-2.271,54.572],[-2.27,54.573],[-2.27,54.583],[-2.303,54.612],[-2.329,54.611],[-2.338,54.618],[-2.372,54.639],[-2.372,54.659],[-2.411,54.674],[-2.415,54.692],[-2.384,54.697],[-2.343,54.702],[-2.342,54.712],[-2.34,54.714],[-2.341,54.717],[-2.344,54.718],[-2.347,54.719],[-2.317,54.733],[-2.322,54.744],[-2.319,54.748],[-2.321,54.755],[-2.32,54.766],[-2.316,54.768],[-2.312,54.773],[-2.317,54.784],[-2.318,54.784],[-2.299,54.793],[-2.29,54.794],[-2.268,54.8],[-2.259,54.796],[-2.247,54.79],[-2.241,54.788],[-2.237,54.785],[-2.23,54.783],[-2.231,54.785],[-2.214,54.782],[-2.207,54.782],[-2.191,54.778],[-2.189,54.78],[-2.178,54.785],[-2.173,54.79],[-2.17,54.795],[-2.173,54.796],[-2.16,54.812],[-2.142,54.796],[-2.113,54.79],[-2.114,54.791],[-2.108,54.797],[-2.106,54.798],[-2.104,54.801],[-2.071,54.798],[-2.064,54.801],[-2.052,54.803],[-2.047,54.806],[-2.045,54.802],[-2.036,54.798],[-2.027,54.796],[-2.018,54.796],[-2.011,54.794],[-2.004,54.788],[-1.996,54.797],[-1.994,54.795],[-1.973,54.783],[-1.964,54.772],[-1.95,54.773],[-1.944,54.776],[-1.938,54.78],[-1.932,54.787],[-1.922,54.788],[-1.91,54.797],[-1.905,54.797],[-1.894,54.797],[-1.897,54.792],[-1.892,54.79],[-1.89,54.787],[-1.887,54.787],[-1.887,54.793],[-1.879,54.795],[-1.88,54.803],[-1.859,54.805],[-1.855,54.799],[-1.853,54.801],[-1.844,54.806],[-1.842,54.808],[-1.839,54.8],[-1.835,54.802],[-1.831,54.806],[-1.828,54.809],[-1.819,54.807],[-1.82,54.802],[-1.811,54.804],[-1.808,54.799],[-1.8,54.796],[-1.81,54.791],[-1.813,54.79],[-1.809,54.786],[-1.804,54.783],[-1.81,54.778],[-1.805,54.775],[-1.802,54.773],[-1.799,54.773],[-1.802,54.77],[-1.808,54.767],[-1.81,54.765],[-1.815,54.759],[-1.816,54.758],[-1.813,54.757],[-1.797,54.756],[-1.789,54.759],[-1.782,54.762],[-1.778,54.764],[-1.766,54.768],[-1.761,54.766],[-1.758,54.765],[-1.756,54.765],[-1.752,54.766],[-1.74,54.76],[-1.745,54.761],[-1.754,54.76],[-1.751,54.756],[-1.744,54.756],[-1.74,54.754],[-1.737,54.752],[-1.735,54.749],[-1.729,54.746],[-1.727,54.748],[-1.723,54.748],[-1.723,54.752],[-1.718,54.754],[-1.708,54.756],[-1.706,54.759],[-1.701,54.762],[-1.691,54.764],[-1.685,54.759],[-1.686,54.757],[-1.679,54.746],[-1.678,54.745],[-1.678,54.738],[-1.679,54.737],[-1.676,54.736],[-1.666,54.735],[-1.663,54.731],[-1.658,54.732],[-1.659,54.725],[-1.649,54.727],[-1.649,54.726],[-1.645,54.723],[-1.633,54.722],[-1.623,54.72],[-1.619,54.722],[-1.614,54.725],[-1.604,54.721],[-1.597,54.72],[-1.591,54.724],[-1.589,54.723],[-1.589,54.722],[-1.585,54.722],[-1.58,54.719],[-1.574,54.718],[-1.571,54.714],[-1.568,54.71],[-1.57,54.708],[-1.567,54.707],[-1.565,54.704],[-1.561,54.702],[-1.56,54.7],[-1.55,54.703],[-1.547,54.706],[-1.548,54.707],[-1.539,54.709],[-1.537,54.705],[-1.532,54.705],[-1.532,54.703],[-1.529,54.702],[-1.528,54.703],[-1.518,54.706],[-1.504,54.707],[-1.495,54.708],[-1.49,54.707],[-1.486,54.703],[-1.482,54.701],[-1.478,54.7],[-1.477,54.703],[-1.476,54.706],[-1.473,54.708],[-1.47,54.709],[-1.465,54.711],[-1.459,54.711],[-1.454,54.707],[-1.459,54.701],[-1.46,54.699],[-1.465,54.698],[-1.462,54.697],[-1.452,54.696],[-1.447,54.695],[-1.451,54.691],[-1.455,54.683],[-1.454,54.683],[-1.447,54.681],[-1.447,54.678],[-1.455,54.677],[-1.457,54.674],[-1.458,54.673],[-1.464,54.677],[-1.474,54.672],[-1.475,54.669],[-1.486,54.667],[-1.495,54.662],[-1.492,54.656],[-1.502,54.654],[-1.507,54.655],[-1.512,54.652],[-1.515,54.649],[-1.521,54.637],[-1.518,54.638],[-1.515,54.638],[-1.514,54.641],[-1.506,54.64],[-1.511,54.625],[-1.509,54.624],[-1.509,54.609],[-1.514,54.608],[-1.522,54.605],[-1.52,54.601],[-1.518,54.6],[-1.517,54.596],[-1.519,54.594],[-1.517,54.592],[-1.511,54.591],[-1.505,54.591],[-1.504,54.592],[-1.499,54.591],[-1.492,54.588],[-1.493,54.586],[-1.502,54.585],[-1.506,54.583],[-1.506,54.58],[-1.496,54.575],[-1.491,54.575],[-1.486,54.57],[-1.475,54.569],[-1.476,54.565],[-1.465,54.566],[-1.457,54.565],[-1.445,54.564],[-1.444,54.562],[-1.44,54.557],[-1.426,54.56],[-1.428,54.554],[-1.429,54.553],[-1.427,54.551],[-1.426,54.549],[-1.429,54.547],[-1.425,54.54],[-1.423,54.54],[-1.422,54.539],[-1.423,54.537],[-1.419,54.538],[-1.417,54.536],[-1.411,54.532],[-1.417,54.53],[-1.417,54.529],[-1.415,54.526],[-1.416,54.52],[-1.412,54.52],[-1.411,54.517],[-1.41,54.516],[-1.407,54.511],[-1.405,54.508],[-1.407,54.507],[-1.42,54.509],[-1.429,54.506],[-1.426,54.502],[-1.42,54.495],[-1.428,54.494],[-1.426,54.489],[-1.429,54.485],[-1.435,54.484],[-1.441,54.483],[-1.441,54.477],[-1.434,54.473],[-1.432,54.47],[-1.44,54.466],[-1.441,54.462],[-1.438,54.461],[-1.433,54.463],[-1.431,54.458],[-1.433,54.458],[-1.435,54.456],[-1.44,54.455],[-1.445,54.453],[-1.439,54.452],[-1.432,54.451],[-1.432,54.453],[-1.427,54.455],[-1.427,54.457],[-1.421,54.457],[-1.421,54.46],[-1.417,54.46],[-1.413,54.461],[-1.412,54.46],[-1.41,54.456],[-1.409,54.456],[-1.398,54.457],[-1.391,54.459],[-1.387,54.455],[-1.39,54.452],[-1.386,54.451],[-1.385,54.453],[-1.386,54.455],[-1.385,54.458],[-1.383,54.459],[-1.376,54.455],[-1.375,54.454],[-1.37,54.451],[-1.37,54.448],[-1.369,54.446],[-1.362,54.445],[-1.36,54.447],[-1.351,54.442],[-1.347,54.442],[-1.335,54.447],[-1.334,54.446],[-1.323,54.447],[-1.323,54.445],[-1.315,54.44],[-1.311,54.436],[-1.305,54.434],[-1.301,54.434],[-1.294,54.431],[-1.29,54.436],[-1.291,54.438],[-1.294,54.44],[-1.292,54.442],[-1.288,54.443],[-1.286,54.44],[-1.289,54.438],[-1.285,54.434],[-1.283,54.436],[-1.281,54.436],[-1.278,54.437],[-1.271,54.439],[-1.269,54.441],[-1.267,54.441],[-1.261,54.442],[-1.258,54.444],[-1.251,54.438],[-1.255,54.436],[-1.255,54.432],[-1.259,54.433],[-1.258,54.428],[-1.262,54.424],[-1.258,54.422],[-1.253,54.424],[-1.254,54.421],[-1.257,54.419],[-1.255,54.419],[-1.25,54.418],[-1.247,54.416],[-1.244,54.415],[-1.242,54.413],[-1.241,54.41],[-1.234,54.405],[-1.228,54.405],[-1.215,54.407],[-1.21,54.404],[-1.204,54.403],[-1.192,54.396],[-1.191,54.395],[-1.199,54.389],[-1.201,54.382],[-1.193,54.376],[-1.178,54.379],[-1.165,54.377],[-1.163,54.375],[-1.16,54.368],[-1.168,54.359]]]},"properties":{"OBJECTID":28,"NAME":"DL","KEY":"DL","Shape_Leng":5.1533,"Shape_Area":0.47612}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.678,53.715],[-0.68,53.713],[-0.688,53.707],[-0.696,53.704],[-0.698,53.704],[-0.718,53.707],[-0.725,53.707],[-0.728,53.707],[-0.738,53.707],[-0.745,53.706],[-0.751,53.705],[-0.768,53.699],[-0.773,53.698],[-0.778,53.698],[-0.785,53.699],[-0.792,53.703],[-0.795,53.705],[-0.805,53.707],[-0.808,53.707],[-0.816,53.706],[-0.821,53.704],[-0.826,53.702],[-0.83,53.699],[-0.843,53.69],[-0.849,53.687],[-0.852,53.686],[-0.856,53.688],[-0.862,53.695],[-0.863,53.698],[-0.864,53.7],[-0.862,53.702],[-0.856,53.704],[-0.849,53.705],[-0.843,53.708],[-0.842,53.709],[-0.841,53.712],[-0.84,53.716],[-0.841,53.721],[-0.843,53.725],[-0.846,53.729],[-0.85,53.731],[-0.854,53.732],[-0.857,53.732],[-0.861,53.731],[-0.863,53.73],[-0.868,53.726],[-0.872,53.724],[-0.883,53.727],[-0.884,53.728],[-0.888,53.728],[-0.893,53.728],[-0.898,53.728],[-0.9,53.729],[-0.908,53.728],[-0.909,53.729],[-0.907,53.732],[-0.91,53.734],[-0.916,53.734],[-0.923,53.733],[-0.931,53.733],[-0.939,53.733],[-0.942,53.734],[-0.953,53.737],[-0.958,53.737],[-0.96,53.737],[-0.96,53.741],[-0.961,53.744],[-0.958,53.742],[-0.954,53.742],[-0.957,53.746],[-0.96,53.747],[-0.964,53.748],[-0.968,53.746],[-0.971,53.746],[-0.977,53.748],[-0.972,53.753],[-0.972,53.756],[-0.967,53.756],[-0.962,53.757],[-0.958,53.756],[-0.952,53.758],[-0.947,53.759],[-0.946,53.758],[-0.944,53.753],[-0.937,53.751],[-0.928,53.752],[-0.925,53.754],[-0.925,53.757],[-0.924,53.761],[-0.927,53.763],[-0.926,53.769],[-0.923,53.769],[-0.916,53.772],[-0.902,53.77],[-0.9,53.772],[-0.902,53.773],[-0.912,53.773],[-0.912,53.777],[-0.903,53.779],[-0.899,53.778],[-0.891,53.788],[-0.898,53.791],[-0.898,53.796],[-0.89,53.802],[-0.893,53.808],[-0.892,53.811],[-0.893,53.815],[-0.889,53.814],[-0.886,53.813],[-0.881,53.818],[-0.877,53.817],[-0.863,53.815],[-0.861,53.815],[-0.86,53.817],[-0.854,53.817],[-0.847,53.817],[-0.846,53.816],[-0.841,53.816],[-0.83,53.814],[-0.829,53.809],[-0.814,53.807],[-0.812,53.806],[-0.812,53.802],[-0.806,53.8],[-0.799,53.8],[-0.797,53.798],[-0.789,53.796],[-0.789,53.791],[-0.784,53.79],[-0.778,53.79],[-0.768,53.788],[-0.767,53.786],[-0.769,53.783],[-0.763,53.774],[-0.767,53.772],[-0.765,53.764],[-0.775,53.763],[-0.774,53.756],[-0.772,53.753],[-0.754,53.751],[-0.754,53.748],[-0.759,53.748],[-0.756,53.743],[-0.749,53.746],[-0.747,53.746],[-0.739,53.744],[-0.734,53.739],[-0.738,53.736],[-0.73,53.732],[-0.727,53.732],[-0.721,53.719],[-0.721,53.717],[-0.703,53.727],[-0.701,53.724],[-0.7,53.723],[-0.692,53.726],[-0.686,53.726],[-0.682,53.72],[-0.678,53.715]]],[[[-0.521,53.684],[-0.525,53.683],[-0.533,53.682],[-0.543,53.683],[-0.547,53.684],[-0.551,53.686],[-0.555,53.688],[-0.557,53.69],[-0.556,53.692],[-0.548,53.689],[-0.534,53.688],[-0.521,53.684]]],[[[0.134,53.501],[0.124,53.485],[0.11,53.477],[0.106,53.477],[0.1,53.478],[0.089,53.476],[0.085,53.477],[0.081,53.475],[0.078,53.471],[0.079,53.468],[0.073,53.467],[0.069,53.465],[0.068,53.463],[0.064,53.461],[0.063,53.462],[0.061,53.462],[0.058,53.462],[0.045,53.463],[0.043,53.463],[0.042,53.462],[0.033,53.458],[0.032,53.457],[0.026,53.455],[0.024,53.459],[0.024,53.464],[0.021,53.472],[0.019,53.473],[0.011,53.477],[0.006,53.477],[0.004,53.476],[-0.002,53.468],[-0.005,53.467],[-0.012,53.465],[-0.017,53.468],[-0.018,53.471],[-0.024,53.468],[-0.028,53.465],[-0.029,53.465],[-0.036,53.463],[-0.038,53.461],[-0.032,53.457],[-0.03,53.456],[-0.025,53.457],[-0.022,53.457],[-0.018,53.454],[-0.009,53.455],[-0.006,53.454],[-0.006,53.453],[-0.01,53.452],[-0.021,53.45],[-0.023,53.449],[-0.02,53.446],[-0.021,53.446],[-0.027,53.44],[-0.043,53.438],[-0.041,53.434],[-0.059,53.43],[-0.062,53.431],[-0.062,53.432],[-0.065,53.434],[-0.076,53.431],[-0.079,53.431],[-0.075,53.426],[-0.079,53.419],[-0.085,53.417],[-0.087,53.415],[-0.091,53.414],[-0.097,53.417],[-0.1,53.419],[-0.104,53.421],[-0.112,53.428],[-0.117,53.432],[-0.12,53.433],[-0.121,53.436],[-0.123,53.437],[-0.115,53.449],[-0.113,53.453],[-0.117,53.458],[-0.115,53.458],[-0.12,53.462],[-0.124,53.465],[-0.135,53.463],[-0.133,53.459],[-0.144,53.458],[-0.153,53.467],[-0.157,53.463],[-0.163,53.462],[-0.161,53.456],[-0.169,53.451],[-0.174,53.452],[-0.177,53.453],[-0.184,53.453],[-0.186,53.456],[-0.192,53.458],[-0.193,53.464],[-0.197,53.465],[-0.196,53.467],[-0.208,53.472],[-0.211,53.468],[-0.213,53.468],[-0.221,53.478],[-0.226,53.48],[-0.218,53.489],[-0.215,53.495],[-0.21,53.497],[-0.214,53.502],[-0.216,53.507],[-0.205,53.505],[-0.201,53.506],[-0.191,53.509],[-0.194,53.515],[-0.199,53.519],[-0.201,53.524],[-0.204,53.523],[-0.21,53.521],[-0.215,53.53],[-0.217,53.531],[-0.231,53.531],[-0.237,53.533],[-0.244,53.529],[-0.262,53.521],[-0.265,53.52],[-0.292,53.522],[-0.298,53.526],[-0.295,53.534],[-0.296,53.535],[-0.312,53.534],[-0.318,53.533],[-0.327,53.53],[-0.328,53.53],[-0.34,53.532],[-0.346,53.527],[-0.349,53.528],[-0.351,53.525],[-0.351,53.519],[-0.353,53.519],[-0.361,53.519],[-0.37,53.513],[-0.375,53.513],[-0.37,53.519],[-0.369,53.52],[-0.385,53.521],[-0.387,53.521],[-0.388,53.516],[-0.399,53.518],[-0.406,53.518],[-0.426,53.537],[-0.43,53.541],[-0.437,53.54],[-0.436,53.544],[-0.438,53.548],[-0.437,53.551],[-0.437,53.552],[-0.444,53.553],[-0.446,53.551],[-0.455,53.545],[-0.458,53.543],[-0.462,53.542],[-0.468,53.539],[-0.471,53.535],[-0.463,53.53],[-0.461,53.527],[-0.448,53.521],[-0.442,53.522],[-0.436,53.517],[-0.432,53.515],[-0.432,53.514],[-0.441,53.508],[-0.452,53.509],[-0.457,53.51],[-0.46,53.51],[-0.473,53.509],[-0.478,53.509],[-0.48,53.508],[-0.479,53.497],[-0.478,53.495],[-0.481,53.491],[-0.48,53.489],[-0.484,53.48],[-0.488,53.475],[-0.486,53.474],[-0.48,53.472],[-0.477,53.471],[-0.475,53.472],[-0.461,53.471],[-0.46,53.471],[-0.46,53.465],[-0.452,53.463],[-0.453,53.461],[-0.451,53.458],[-0.445,53.457],[-0.448,53.452],[-0.452,53.447],[-0.451,53.446],[-0.458,53.437],[-0.461,53.432],[-0.466,53.429],[-0.472,53.429],[-0.487,53.429],[-0.489,53.432],[-0.504,53.43],[-0.51,53.429],[-0.518,53.428],[-0.518,53.431],[-0.524,53.431],[-0.533,53.431],[-0.534,53.43],[-0.536,53.422],[-0.549,53.422],[-0.549,53.41],[-0.556,53.406],[-0.558,53.404],[-0.559,53.401],[-0.557,53.399],[-0.554,53.395],[-0.552,53.394],[-0.554,53.392],[-0.547,53.388],[-0.546,53.371],[-0.547,53.371],[-0.554,53.358],[-0.551,53.356],[-0.545,53.355],[-0.544,53.344],[-0.549,53.345],[-0.556,53.349],[-0.559,53.348],[-0.565,53.348],[-0.565,53.353],[-0.573,53.353],[-0.579,53.351],[-0.582,53.351],[-0.585,53.35],[-0.59,53.348],[-0.596,53.346],[-0.604,53.347],[-0.613,53.347],[-0.621,53.347],[-0.629,53.348],[-0.637,53.348],[-0.639,53.345],[-0.641,53.344],[-0.654,53.339],[-0.659,53.339],[-0.661,53.34],[-0.673,53.336],[-0.676,53.336],[-0.676,53.334],[-0.694,53.336],[-0.694,53.332],[-0.7,53.327],[-0.711,53.326],[-0.715,53.328],[-0.719,53.328],[-0.714,53.321],[-0.723,53.321],[-0.725,53.318],[-0.726,53.315],[-0.737,53.314],[-0.741,53.316],[-0.742,53.313],[-0.748,53.314],[-0.757,53.313],[-0.758,53.308],[-0.756,53.303],[-0.756,53.298],[-0.766,53.292],[-0.762,53.285],[-0.766,53.281],[-0.768,53.278],[-0.77,53.272],[-0.772,53.271],[-0.773,53.271],[-0.78,53.269],[-0.785,53.269],[-0.797,53.27],[-0.797,53.269],[-0.803,53.269],[-0.806,53.264],[-0.811,53.262],[-0.817,53.262],[-0.821,53.264],[-0.827,53.263],[-0.831,53.259],[-0.833,53.259],[-0.837,53.257],[-0.841,53.257],[-0.844,53.254],[-0.849,53.254],[-0.852,53.265],[-0.864,53.262],[-0.874,53.262],[-0.875,53.265],[-0.884,53.269],[-0.885,53.272],[-0.886,53.273],[-0.885,53.276],[-0.882,53.278],[-0.888,53.281],[-0.891,53.283],[-0.894,53.278],[-0.9,53.277],[-0.915,53.274],[-0.913,53.271],[-0.91,53.269],[-0.892,53.259],[-0.892,53.258],[-0.893,53.254],[-0.897,53.254],[-0.902,53.254],[-0.906,53.254],[-0.913,53.255],[-0.914,53.252],[-0.916,53.253],[-0.933,53.259],[-0.939,53.261],[-0.943,53.263],[-0.945,53.26],[-0.944,53.258],[-0.944,53.25],[-0.944,53.244],[-0.954,53.248],[-0.961,53.249],[-0.964,53.249],[-0.968,53.243],[-0.967,53.238],[-0.978,53.236],[-0.984,53.236],[-0.984,53.244],[-0.987,53.242],[-0.993,53.235],[-1.004,53.237],[-1.012,53.239],[-1.019,53.245],[-1.025,53.243],[-1.028,53.261],[-1.024,53.261],[-1.015,53.257],[-1.011,53.255],[-1.01,53.26],[-1.011,53.263],[-1.01,53.267],[-1.017,53.267],[-1.029,53.272],[-1.029,53.278],[-1.015,53.28],[-1.012,53.289],[-1.014,53.289],[-1.022,53.287],[-1.032,53.287],[-1.033,53.289],[-1.033,53.293],[-1.033,53.295],[-1.03,53.296],[-1.031,53.298],[-1.032,53.302],[-1.031,53.306],[-1.029,53.317],[-1.029,53.32],[-1.033,53.322],[-1.034,53.327],[-1.056,53.329],[-1.06,53.325],[-1.066,53.33],[-1.068,53.331],[-1.056,53.34],[-1.057,53.345],[-1.057,53.349],[-1.055,53.349],[-1.049,53.346],[-1.037,53.35],[-1.035,53.351],[-1.037,53.352],[-1.023,53.356],[-1.018,53.357],[-1.019,53.358],[-1.026,53.363],[-1.027,53.365],[-1.031,53.365],[-1.036,53.368],[-1.041,53.37],[-1.045,53.371],[-1.044,53.373],[-1.038,53.373],[-1.034,53.374],[-1.034,53.375],[-1.04,53.378],[-1.044,53.377],[-1.046,53.376],[-1.046,53.374],[-1.052,53.375],[-1.049,53.378],[-1.054,53.384],[-1.052,53.385],[-1.05,53.391],[-1.053,53.395],[-1.054,53.399],[-1.057,53.4],[-1.062,53.397],[-1.067,53.401],[-1.067,53.402],[-1.079,53.401],[-1.078,53.399],[-1.075,53.396],[-1.075,53.395],[-1.09,53.395],[-1.095,53.399],[-1.09,53.401],[-1.09,53.403],[-1.092,53.406],[-1.095,53.405],[-1.104,53.405],[-1.109,53.406],[-1.112,53.406],[-1.116,53.407],[-1.115,53.402],[-1.125,53.401],[-1.126,53.403],[-1.138,53.405],[-1.14,53.41],[-1.14,53.416],[-1.144,53.417],[-1.146,53.412],[-1.149,53.413],[-1.153,53.413],[-1.154,53.419],[-1.156,53.42],[-1.155,53.425],[-1.146,53.426],[-1.149,53.428],[-1.144,53.435],[-1.14,53.434],[-1.135,53.433],[-1.131,53.434],[-1.136,53.436],[-1.141,53.438],[-1.151,53.44],[-1.152,53.442],[-1.155,53.444],[-1.158,53.445],[-1.162,53.447],[-1.168,53.447],[-1.173,53.445],[-1.174,53.446],[-1.18,53.449],[-1.186,53.453],[-1.187,53.457],[-1.187,53.459],[-1.182,53.458],[-1.177,53.458],[-1.178,53.46],[-1.18,53.46],[-1.18,53.463],[-1.188,53.464],[-1.207,53.457],[-1.208,53.461],[-1.214,53.462],[-1.215,53.465],[-1.214,53.467],[-1.216,53.469],[-1.219,53.469],[-1.219,53.465],[-1.224,53.465],[-1.226,53.464],[-1.231,53.459],[-1.23,53.457],[-1.229,53.45],[-1.23,53.45],[-1.245,53.454],[-1.249,53.455],[-1.254,53.453],[-1.257,53.451],[-1.263,53.453],[-1.268,53.457],[-1.266,53.461],[-1.263,53.463],[-1.265,53.466],[-1.266,53.47],[-1.261,53.47],[-1.257,53.472],[-1.255,53.472],[-1.252,53.474],[-1.263,53.477],[-1.269,53.476],[-1.278,53.473],[-1.286,53.476],[-1.287,53.477],[-1.297,53.479],[-1.294,53.483],[-1.289,53.486],[-1.283,53.488],[-1.282,53.491],[-1.277,53.49],[-1.271,53.491],[-1.259,53.493],[-1.251,53.493],[-1.248,53.498],[-1.239,53.501],[-1.242,53.503],[-1.248,53.505],[-1.25,53.502],[-1.254,53.504],[-1.26,53.506],[-1.265,53.508],[-1.267,53.51],[-1.275,53.509],[-1.278,53.51],[-1.282,53.511],[-1.287,53.51],[-1.29,53.51],[-1.293,53.512],[-1.291,53.512],[-1.285,53.515],[-1.288,53.517],[-1.293,53.518],[-1.297,53.522],[-1.295,53.523],[-1.287,53.529],[-1.282,53.527],[-1.278,53.532],[-1.279,53.533],[-1.281,53.536],[-1.285,53.538],[-1.281,53.539],[-1.279,53.54],[-1.279,53.542],[-1.287,53.544],[-1.288,53.545],[-1.287,53.547],[-1.292,53.549],[-1.293,53.552],[-1.298,53.551],[-1.299,53.552],[-1.295,53.557],[-1.3,53.559],[-1.305,53.56],[-1.305,53.557],[-1.31,53.558],[-1.317,53.558],[-1.32,53.56],[-1.326,53.561],[-1.322,53.564],[-1.322,53.565],[-1.326,53.566],[-1.332,53.564],[-1.337,53.567],[-1.34,53.57],[-1.346,53.572],[-1.339,53.577],[-1.338,53.578],[-1.329,53.578],[-1.323,53.576],[-1.309,53.576],[-1.299,53.576],[-1.289,53.579],[-1.29,53.582],[-1.288,53.583],[-1.286,53.582],[-1.281,53.584],[-1.277,53.583],[-1.275,53.587],[-1.271,53.588],[-1.267,53.589],[-1.265,53.591],[-1.262,53.59],[-1.259,53.6],[-1.261,53.601],[-1.276,53.607],[-1.262,53.607],[-1.249,53.603],[-1.244,53.601],[-1.241,53.601],[-1.235,53.608],[-1.238,53.609],[-1.241,53.61],[-1.244,53.61],[-1.248,53.61],[-1.25,53.611],[-1.254,53.612],[-1.253,53.613],[-1.246,53.617],[-1.238,53.617],[-1.233,53.617],[-1.23,53.618],[-1.229,53.617],[-1.22,53.618],[-1.213,53.618],[-1.21,53.618],[-1.202,53.618],[-1.205,53.626],[-1.2,53.637],[-1.194,53.635],[-1.187,53.642],[-1.187,53.645],[-1.189,53.646],[-1.19,53.651],[-1.191,53.654],[-1.197,53.654],[-1.202,53.656],[-1.206,53.655],[-1.214,53.656],[-1.222,53.655],[-1.222,53.656],[-1.222,53.659],[-1.222,53.665],[-1.214,53.664],[-1.216,53.669],[-1.215,53.67],[-1.218,53.673],[-1.221,53.676],[-1.221,53.68],[-1.221,53.682],[-1.22,53.683],[-1.216,53.681],[-1.197,53.67],[-1.195,53.675],[-1.186,53.681],[-1.178,53.687],[-1.174,53.689],[-1.172,53.691],[-1.171,53.692],[-1.175,53.694],[-1.186,53.695],[-1.192,53.693],[-1.198,53.693],[-1.2,53.699],[-1.199,53.701],[-1.201,53.704],[-1.197,53.704],[-1.196,53.705],[-1.202,53.708],[-1.203,53.71],[-1.207,53.709],[-1.206,53.712],[-1.207,53.716],[-1.214,53.716],[-1.216,53.717],[-1.217,53.724],[-1.207,53.727],[-1.199,53.727],[-1.194,53.728],[-1.191,53.728],[-1.186,53.73],[-1.176,53.727],[-1.164,53.734],[-1.156,53.729],[-1.151,53.725],[-1.146,53.725],[-1.142,53.726],[-1.134,53.725],[-1.129,53.723],[-1.132,53.719],[-1.126,53.717],[-1.119,53.717],[-1.108,53.715],[-1.105,53.713],[-1.099,53.713],[-1.09,53.711],[-1.093,53.703],[-1.09,53.702],[-1.084,53.701],[-1.075,53.696],[-1.073,53.697],[-1.073,53.704],[-1.069,53.708],[-1.063,53.71],[-1.066,53.711],[-1.065,53.715],[-1.068,53.722],[-1.064,53.721],[-1.057,53.717],[-1.055,53.718],[-1.051,53.721],[-1.047,53.723],[-1.041,53.721],[-1.038,53.719],[-1.033,53.721],[-1.031,53.72],[-1.019,53.721],[-1.019,53.718],[-1.01,53.722],[-1.003,53.718],[-0.995,53.719],[-0.988,53.717],[-0.986,53.717],[-0.972,53.714],[-0.972,53.715],[-0.966,53.715],[-0.96,53.713],[-0.959,53.715],[-0.941,53.708],[-0.939,53.71],[-0.942,53.713],[-0.942,53.715],[-0.94,53.716],[-0.941,53.722],[-0.94,53.723],[-0.936,53.724],[-0.917,53.73],[-0.916,53.727],[-0.915,53.721],[-0.909,53.718],[-0.904,53.717],[-0.903,53.719],[-0.903,53.722],[-0.909,53.727],[-0.904,53.725],[-0.904,53.727],[-0.899,53.726],[-0.894,53.727],[-0.889,53.726],[-0.882,53.725],[-0.876,53.723],[-0.872,53.722],[-0.865,53.722],[-0.861,53.722],[-0.857,53.724],[-0.856,53.73],[-0.855,53.731],[-0.853,53.73],[-0.85,53.729],[-0.846,53.724],[-0.844,53.718],[-0.844,53.711],[-0.845,53.71],[-0.849,53.707],[-0.856,53.706],[-0.863,53.704],[-0.867,53.701],[-0.867,53.699],[-0.866,53.696],[-0.862,53.691],[-0.858,53.687],[-0.853,53.685],[-0.848,53.685],[-0.846,53.686],[-0.833,53.694],[-0.828,53.698],[-0.824,53.7],[-0.816,53.703],[-0.811,53.705],[-0.803,53.705],[-0.8,53.704],[-0.795,53.702],[-0.791,53.699],[-0.787,53.697],[-0.781,53.695],[-0.774,53.695],[-0.768,53.696],[-0.762,53.697],[-0.757,53.699],[-0.745,53.703],[-0.74,53.704],[-0.73,53.705],[-0.725,53.704],[-0.71,53.702],[-0.703,53.701],[-0.699,53.699],[-0.698,53.698],[-0.7,53.697],[-0.704,53.697],[-0.709,53.696],[-0.713,53.697],[-0.72,53.699],[-0.719,53.698],[-0.716,53.697],[-0.712,53.696],[-0.708,53.696],[-0.704,53.696],[-0.699,53.696],[-0.699,53.694],[-0.7,53.689],[-0.699,53.687],[-0.7,53.686],[-0.697,53.685],[-0.694,53.681],[-0.689,53.678],[-0.688,53.675],[-0.689,53.672],[-0.696,53.657],[-0.699,53.652],[-0.707,53.649],[-0.71,53.647],[-0.713,53.644],[-0.714,53.639],[-0.714,53.629],[-0.71,53.622],[-0.702,53.617],[-0.699,53.614],[-0.701,53.611],[-0.706,53.608],[-0.712,53.608],[-0.722,53.609],[-0.727,53.608],[-0.732,53.605],[-0.738,53.598],[-0.739,53.592],[-0.737,53.59],[-0.732,53.586],[-0.732,53.583],[-0.733,53.58],[-0.736,53.578],[-0.744,53.575],[-0.746,53.573],[-0.748,53.569],[-0.748,53.563],[-0.748,53.56],[-0.747,53.557],[-0.743,53.552],[-0.741,53.55],[-0.739,53.545],[-0.74,53.543],[-0.743,53.538],[-0.743,53.535],[-0.742,53.531],[-0.74,53.527],[-0.74,53.524],[-0.744,53.51],[-0.749,53.506],[-0.748,53.505],[-0.743,53.509],[-0.742,53.512],[-0.737,53.524],[-0.737,53.527],[-0.74,53.532],[-0.742,53.535],[-0.741,53.538],[-0.737,53.543],[-0.737,53.545],[-0.739,53.551],[-0.744,53.555],[-0.745,53.558],[-0.746,53.561],[-0.746,53.569],[-0.745,53.571],[-0.742,53.574],[-0.736,53.577],[-0.732,53.58],[-0.73,53.582],[-0.729,53.583],[-0.73,53.587],[-0.734,53.59],[-0.736,53.591],[-0.737,53.594],[-0.736,53.597],[-0.734,53.598],[-0.73,53.603],[-0.729,53.605],[-0.727,53.607],[-0.724,53.607],[-0.716,53.606],[-0.708,53.606],[-0.701,53.609],[-0.698,53.612],[-0.698,53.616],[-0.7,53.618],[-0.707,53.622],[-0.709,53.625],[-0.71,53.63],[-0.71,53.636],[-0.709,53.643],[-0.706,53.645],[-0.696,53.651],[-0.695,53.652],[-0.693,53.656],[-0.689,53.662],[-0.687,53.665],[-0.684,53.673],[-0.683,53.678],[-0.686,53.683],[-0.692,53.69],[-0.694,53.693],[-0.692,53.695],[-0.69,53.697],[-0.685,53.699],[-0.673,53.701],[-0.656,53.704],[-0.652,53.706],[-0.65,53.707],[-0.638,53.71],[-0.619,53.714],[-0.611,53.715],[-0.605,53.712],[-0.593,53.701],[-0.587,53.697],[-0.584,53.696],[-0.586,53.694],[-0.584,53.693],[-0.582,53.695],[-0.577,53.693],[-0.573,53.691],[-0.568,53.689],[-0.562,53.686],[-0.559,53.684],[-0.555,53.682],[-0.546,53.68],[-0.543,53.679],[-0.536,53.678],[-0.531,53.679],[-0.523,53.678],[-0.512,53.679],[-0.506,53.68],[-0.498,53.684],[-0.487,53.691],[-0.484,53.693],[-0.478,53.695],[-0.474,53.697],[-0.466,53.7],[-0.459,53.701],[-0.453,53.701],[-0.436,53.703],[-0.442,53.7],[-0.434,53.699],[-0.427,53.7],[-0.418,53.7],[-0.412,53.701],[-0.407,53.702],[-0.394,53.703],[-0.386,53.703],[-0.375,53.705],[-0.366,53.706],[-0.367,53.708],[-0.365,53.708],[-0.364,53.706],[-0.358,53.707],[-0.342,53.711],[-0.333,53.713],[-0.322,53.715],[-0.309,53.716],[-0.297,53.717],[-0.294,53.716],[-0.287,53.713],[-0.281,53.712],[-0.276,53.71],[-0.27,53.704],[-0.267,53.7],[-0.265,53.696],[-0.261,53.69],[-0.254,53.682],[-0.25,53.677],[-0.245,53.672],[-0.241,53.67],[-0.233,53.665],[-0.23,53.662],[-0.224,53.656],[-0.222,53.654],[-0.219,53.652],[-0.217,53.648],[-0.211,53.643],[-0.207,53.644],[-0.203,53.642],[-0.2,53.639],[-0.202,53.637],[-0.188,53.631],[-0.176,53.626],[-0.175,53.625],[-0.165,53.621],[-0.164,53.62],[-0.161,53.619],[-0.153,53.615],[-0.144,53.609],[-0.138,53.607],[-0.134,53.604],[-0.13,53.6],[-0.129,53.601],[-0.118,53.594],[-0.112,53.59],[-0.101,53.585],[-0.096,53.584],[-0.094,53.581],[-0.092,53.582],[-0.084,53.58],[-0.081,53.579],[-0.079,53.577],[-0.071,53.584],[-0.07,53.583],[-0.068,53.583],[-0.062,53.583],[-0.059,53.581],[-0.044,53.572],[-0.043,53.571],[-0.037,53.568],[-0.034,53.567],[-0.03,53.563],[-0.027,53.561],[-0.02,53.554],[-0.016,53.551],[-0.008,53.546],[-0.002,53.544],[0.003,53.54],[0.005,53.54],[0.007,53.535],[0.011,53.533],[0.016,53.528],[0.017,53.528],[0.025,53.528],[0.051,53.526],[0.06,53.524],[0.067,53.522],[0.071,53.522],[0.08,53.521],[0.085,53.521],[0.091,53.52],[0.095,53.519],[0.096,53.519],[0.106,53.514],[0.107,53.511],[0.112,53.508],[0.119,53.505],[0.128,53.502],[0.132,53.502],[0.134,53.501]]]]},"properties":{"OBJECTID":29,"NAME":"DN","KEY":"DN","Shape_Leng":7.16382,"Shape_Area":0.38356}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.036,50.923],[-2.043,50.92],[-2.057,50.914],[-2.067,50.908],[-2.068,50.902],[-2.063,50.892],[-2.062,50.891],[-2.064,50.886],[-2.062,50.88],[-2.058,50.876],[-2.06,50.873],[-2.056,50.865],[-2.055,50.861],[-2.055,50.858],[-2.056,50.855],[-2.059,50.855],[-2.06,50.852],[-2.068,50.849],[-2.072,50.846],[-2.066,50.844],[-2.063,50.843],[-2.065,50.83],[-2.067,50.828],[-2.053,50.821],[-2.05,50.82],[-2.057,50.812],[-2.058,50.81],[-2.062,50.806],[-2.065,50.807],[-2.074,50.809],[-2.078,50.804],[-2.082,50.806],[-2.089,50.807],[-2.093,50.81],[-2.096,50.809],[-2.093,50.806],[-2.095,50.806],[-2.104,50.811],[-2.109,50.809],[-2.112,50.806],[-2.117,50.803],[-2.116,50.802],[-2.116,50.797],[-2.115,50.795],[-2.115,50.793],[-2.108,50.794],[-2.088,50.788],[-2.083,50.788],[-2.085,50.785],[-2.092,50.784],[-2.093,50.783],[-2.099,50.782],[-2.103,50.783],[-2.107,50.786],[-2.111,50.783],[-2.118,50.781],[-2.122,50.782],[-2.126,50.785],[-2.128,50.785],[-2.132,50.782],[-2.132,50.78],[-2.131,50.777],[-2.125,50.775],[-2.127,50.772],[-2.128,50.769],[-2.131,50.767],[-2.132,50.768],[-2.146,50.767],[-2.161,50.763],[-2.17,50.763],[-2.171,50.768],[-2.173,50.771],[-2.189,50.767],[-2.193,50.766],[-2.2,50.766],[-2.204,50.765],[-2.202,50.767],[-2.204,50.771],[-2.207,50.774],[-2.214,50.774],[-2.216,50.777],[-2.22,50.781],[-2.224,50.784],[-2.23,50.78],[-2.238,50.78],[-2.242,50.778],[-2.244,50.778],[-2.248,50.775],[-2.26,50.775],[-2.262,50.772],[-2.259,50.77],[-2.263,50.766],[-2.256,50.761],[-2.246,50.762],[-2.243,50.759],[-2.24,50.756],[-2.248,50.754],[-2.247,50.75],[-2.244,50.749],[-2.233,50.751],[-2.23,50.749],[-2.232,50.743],[-2.231,50.742],[-2.224,50.74],[-2.23,50.735],[-2.232,50.735],[-2.237,50.735],[-2.237,50.736],[-2.24,50.736],[-2.242,50.735],[-2.243,50.733],[-2.248,50.731],[-2.251,50.731],[-2.254,50.73],[-2.253,50.725],[-2.257,50.72],[-2.262,50.72],[-2.262,50.714],[-2.255,50.711],[-2.256,50.709],[-2.259,50.705],[-2.264,50.704],[-2.269,50.7],[-2.268,50.699],[-2.265,50.694],[-2.264,50.694],[-2.262,50.692],[-2.261,50.688],[-2.257,50.687],[-2.251,50.686],[-2.25,50.685],[-2.251,50.683],[-2.247,50.682],[-2.24,50.681],[-2.241,50.679],[-2.239,50.676],[-2.243,50.675],[-2.241,50.671],[-2.239,50.666],[-2.236,50.663],[-2.238,50.66],[-2.25,50.658],[-2.255,50.655],[-2.25,50.653],[-2.248,50.649],[-2.248,50.648],[-2.255,50.641],[-2.255,50.64],[-2.267,50.636],[-2.271,50.636],[-2.272,50.639],[-2.276,50.642],[-2.285,50.642],[-2.286,50.641],[-2.282,50.63],[-2.289,50.623],[-2.294,50.623],[-2.303,50.625],[-2.312,50.626],[-2.317,50.625],[-2.32,50.626],[-2.324,50.625],[-2.328,50.626],[-2.329,50.626],[-2.337,50.632],[-2.34,50.632],[-2.345,50.632],[-2.349,50.631],[-2.352,50.631],[-2.356,50.631],[-2.36,50.631],[-2.364,50.631],[-2.371,50.632],[-2.375,50.634],[-2.377,50.633],[-2.379,50.635],[-2.385,50.635],[-2.395,50.637],[-2.4,50.636],[-2.407,50.634],[-2.408,50.633],[-2.41,50.633],[-2.413,50.635],[-2.418,50.635],[-2.42,50.636],[-2.426,50.634],[-2.429,50.633],[-2.436,50.629],[-2.439,50.627],[-2.443,50.623],[-2.444,50.623],[-2.451,50.616],[-2.451,50.613],[-2.45,50.611],[-2.448,50.609],[-2.447,50.61],[-2.443,50.609],[-2.443,50.607],[-2.447,50.605],[-2.45,50.605],[-2.451,50.604],[-2.449,50.601],[-2.451,50.6],[-2.452,50.6],[-2.459,50.597],[-2.46,50.595],[-2.464,50.594],[-2.466,50.591],[-2.467,50.588],[-2.469,50.586],[-2.47,50.584],[-2.468,50.58],[-2.466,50.577],[-2.464,50.574],[-2.461,50.572],[-2.455,50.57],[-2.452,50.571],[-2.447,50.568],[-2.441,50.569],[-2.438,50.57],[-2.437,50.568],[-2.433,50.568],[-2.428,50.568],[-2.428,50.566],[-2.424,50.562],[-2.419,50.555],[-2.418,50.554],[-2.415,50.55],[-2.417,50.548],[-2.418,50.543],[-2.42,50.541],[-2.425,50.539],[-2.428,50.538],[-2.43,50.536],[-2.434,50.532],[-2.437,50.53],[-2.438,50.527],[-2.441,50.524],[-2.444,50.52],[-2.447,50.519],[-2.449,50.517],[-2.452,50.516],[-2.457,50.513],[-2.459,50.514],[-2.46,50.517],[-2.459,50.522],[-2.456,50.525],[-2.456,50.531],[-2.454,50.539],[-2.457,50.542],[-2.456,50.544],[-2.452,50.548],[-2.452,50.552],[-2.45,50.556],[-2.448,50.558],[-2.449,50.56],[-2.453,50.563],[-2.464,50.571],[-2.48,50.582],[-2.498,50.593],[-2.502,50.595],[-2.531,50.612],[-2.542,50.618],[-2.553,50.623],[-2.569,50.632],[-2.592,50.643],[-2.602,50.648],[-2.625,50.658],[-2.642,50.665],[-2.676,50.679],[-2.687,50.683],[-2.705,50.69],[-2.723,50.696],[-2.732,50.699],[-2.74,50.702],[-2.744,50.704],[-2.764,50.709],[-2.764,50.71],[-2.769,50.711],[-2.78,50.715],[-2.793,50.718],[-2.795,50.718],[-2.801,50.717],[-2.805,50.719],[-2.811,50.717],[-2.819,50.72],[-2.826,50.722],[-2.837,50.723],[-2.842,50.722],[-2.844,50.722],[-2.851,50.725],[-2.863,50.727],[-2.869,50.728],[-2.871,50.728],[-2.878,50.73],[-2.888,50.732],[-2.896,50.732],[-2.902,50.732],[-2.904,50.733],[-2.913,50.733],[-2.914,50.732],[-2.92,50.732],[-2.924,50.73],[-2.928,50.728],[-2.929,50.726],[-2.937,50.722],[-2.937,50.719],[-2.945,50.718],[-2.947,50.718],[-2.953,50.714],[-2.955,50.713],[-2.96,50.712],[-2.966,50.712],[-2.969,50.71],[-2.972,50.708],[-2.976,50.707],[-2.981,50.705],[-2.985,50.704],[-2.991,50.705],[-2.995,50.705],[-2.997,50.704],[-3.002,50.701],[-3.007,50.7],[-3.01,50.699],[-3.012,50.703],[-3.013,50.707],[-3.012,50.709],[-3.014,50.709],[-3.015,50.71],[-3.018,50.711],[-3.025,50.711],[-3.03,50.712],[-3.028,50.715],[-3.025,50.719],[-3.024,50.724],[-3.022,50.727],[-3.019,50.728],[-3.016,50.725],[-3.012,50.725],[-3.009,50.722],[-3.004,50.72],[-3.002,50.722],[-3.001,50.723],[-2.995,50.726],[-2.995,50.727],[-3.001,50.727],[-3.003,50.727],[-3.003,50.729],[-2.999,50.733],[-2.993,50.729],[-2.99,50.729],[-2.989,50.732],[-2.985,50.734],[-2.985,50.739],[-2.986,50.74],[-2.982,50.741],[-2.984,50.743],[-2.983,50.745],[-2.981,50.749],[-2.977,50.753],[-2.974,50.754],[-2.971,50.753],[-2.968,50.753],[-2.967,50.756],[-2.96,50.755],[-2.959,50.756],[-2.96,50.758],[-2.954,50.759],[-2.954,50.761],[-2.955,50.764],[-2.956,50.765],[-2.955,50.768],[-2.949,50.772],[-2.941,50.778],[-2.938,50.775],[-2.937,50.776],[-2.933,50.774],[-2.93,50.776],[-2.925,50.773],[-2.924,50.773],[-2.916,50.772],[-2.915,50.773],[-2.908,50.776],[-2.908,50.778],[-2.904,50.783],[-2.906,50.785],[-2.904,50.786],[-2.895,50.788],[-2.893,50.791],[-2.889,50.794],[-2.893,50.795],[-2.893,50.796],[-2.893,50.798],[-2.894,50.8],[-2.888,50.799],[-2.882,50.801],[-2.878,50.802],[-2.871,50.809],[-2.875,50.81],[-2.877,50.812],[-2.873,50.819],[-2.868,50.82],[-2.865,50.823],[-2.864,50.824],[-2.864,50.827],[-2.862,50.828],[-2.862,50.83],[-2.864,50.833],[-2.861,50.833],[-2.859,50.835],[-2.857,50.834],[-2.854,50.836],[-2.85,50.837],[-2.846,50.833],[-2.837,50.837],[-2.831,50.837],[-2.834,50.841],[-2.834,50.842],[-2.838,50.841],[-2.842,50.845],[-2.847,50.846],[-2.847,50.847],[-2.843,50.848],[-2.843,50.85],[-2.842,50.851],[-2.835,50.853],[-2.834,50.848],[-2.831,50.848],[-2.826,50.848],[-2.822,50.851],[-2.821,50.856],[-2.816,50.855],[-2.816,50.852],[-2.811,50.851],[-2.812,50.853],[-2.813,50.857],[-2.807,50.857],[-2.799,50.859],[-2.797,50.86],[-2.793,50.859],[-2.795,50.858],[-2.798,50.858],[-2.8,50.856],[-2.798,50.855],[-2.793,50.853],[-2.789,50.854],[-2.788,50.859],[-2.786,50.859],[-2.783,50.86],[-2.778,50.865],[-2.776,50.861],[-2.771,50.859],[-2.765,50.859],[-2.758,50.859],[-2.753,50.858],[-2.752,50.859],[-2.753,50.862],[-2.754,50.863],[-2.756,50.869],[-2.755,50.871],[-2.742,50.872],[-2.742,50.867],[-2.741,50.864],[-2.738,50.863],[-2.726,50.862],[-2.722,50.862],[-2.717,50.857],[-2.713,50.856],[-2.711,50.857],[-2.707,50.857],[-2.705,50.855],[-2.698,50.856],[-2.697,50.857],[-2.696,50.86],[-2.698,50.861],[-2.695,50.863],[-2.69,50.86],[-2.682,50.861],[-2.677,50.86],[-2.669,50.862],[-2.665,50.861],[-2.661,50.86],[-2.657,50.862],[-2.653,50.862],[-2.651,50.864],[-2.645,50.864],[-2.643,50.865],[-2.639,50.864],[-2.638,50.862],[-2.639,50.859],[-2.638,50.857],[-2.635,50.856],[-2.635,50.859],[-2.637,50.862],[-2.637,50.864],[-2.634,50.866],[-2.634,50.867],[-2.632,50.869],[-2.622,50.871],[-2.621,50.872],[-2.625,50.877],[-2.624,50.88],[-2.623,50.882],[-2.615,50.883],[-2.612,50.882],[-2.606,50.882],[-2.606,50.881],[-2.604,50.881],[-2.598,50.873],[-2.594,50.875],[-2.594,50.876],[-2.598,50.881],[-2.602,50.885],[-2.602,50.888],[-2.602,50.892],[-2.604,50.891],[-2.607,50.888],[-2.609,50.887],[-2.609,50.892],[-2.613,50.896],[-2.615,50.897],[-2.615,50.898],[-2.622,50.902],[-2.613,50.907],[-2.61,50.908],[-2.607,50.911],[-2.6,50.913],[-2.596,50.915],[-2.592,50.916],[-2.589,50.917],[-2.596,50.922],[-2.598,50.923],[-2.602,50.924],[-2.604,50.926],[-2.605,50.928],[-2.605,50.932],[-2.606,50.934],[-2.601,50.937],[-2.594,50.935],[-2.595,50.94],[-2.597,50.942],[-2.592,50.943],[-2.597,50.947],[-2.601,50.944],[-2.604,50.947],[-2.602,50.948],[-2.6,50.95],[-2.594,50.963],[-2.592,50.966],[-2.595,50.968],[-2.599,50.972],[-2.599,50.973],[-2.592,50.976],[-2.599,50.978],[-2.603,50.98],[-2.59,50.981],[-2.589,50.981],[-2.585,50.976],[-2.583,50.978],[-2.575,50.991],[-2.573,50.989],[-2.569,50.982],[-2.572,50.981],[-2.575,50.978],[-2.574,50.978],[-2.566,50.982],[-2.563,50.979],[-2.561,50.98],[-2.555,50.982],[-2.553,50.983],[-2.549,50.985],[-2.548,50.986],[-2.547,50.991],[-2.549,50.992],[-2.55,50.996],[-2.543,50.995],[-2.544,50.992],[-2.536,50.994],[-2.534,50.997],[-2.536,50.999],[-2.539,51.004],[-2.534,51.007],[-2.535,51.011],[-2.532,51.013],[-2.529,51.015],[-2.53,51.016],[-2.516,51.018],[-2.515,51.019],[-2.512,51.018],[-2.504,51.017],[-2.503,51.019],[-2.498,51.022],[-2.499,51.026],[-2.5,51.029],[-2.499,51.03],[-2.486,51.026],[-2.485,51.018],[-2.48,51.019],[-2.479,51.021],[-2.477,51.025],[-2.476,51.025],[-2.468,51.021],[-2.47,51.017],[-2.467,51.014],[-2.474,51.011],[-2.475,51.009],[-2.472,51.005],[-2.469,51.003],[-2.471,51.002],[-2.463,50.999],[-2.46,50.999],[-2.456,50.998],[-2.455,50.999],[-2.451,50.999],[-2.448,51],[-2.449,51.001],[-2.451,51.002],[-2.45,51.003],[-2.446,51.002],[-2.443,51.003],[-2.437,51.003],[-2.435,51.002],[-2.435,50.998],[-2.443,50.997],[-2.451,50.995],[-2.451,50.987],[-2.454,50.984],[-2.45,50.981],[-2.444,50.98],[-2.439,50.98],[-2.429,50.979],[-2.43,50.975],[-2.427,50.967],[-2.429,50.965],[-2.422,50.965],[-2.413,50.966],[-2.405,50.964],[-2.398,50.968],[-2.394,50.969],[-2.393,50.97],[-2.393,50.972],[-2.388,50.971],[-2.386,50.967],[-2.381,50.968],[-2.373,50.969],[-2.372,50.97],[-2.366,50.97],[-2.362,50.972],[-2.36,50.977],[-2.353,50.978],[-2.351,50.979],[-2.343,50.979],[-2.342,50.98],[-2.334,50.982],[-2.333,50.98],[-2.326,50.98],[-2.323,50.982],[-2.326,50.983],[-2.324,50.988],[-2.323,50.989],[-2.32,50.984],[-2.319,50.987],[-2.316,50.987],[-2.314,50.985],[-2.316,50.984],[-2.315,50.983],[-2.309,50.981],[-2.308,50.983],[-2.307,50.984],[-2.304,50.982],[-2.301,50.982],[-2.299,50.983],[-2.291,50.985],[-2.293,50.988],[-2.292,50.991],[-2.286,50.988],[-2.284,50.992],[-2.279,50.993],[-2.273,50.99],[-2.273,50.989],[-2.27,50.986],[-2.273,50.984],[-2.277,50.984],[-2.278,50.983],[-2.278,50.981],[-2.273,50.977],[-2.272,50.978],[-2.265,50.974],[-2.264,50.971],[-2.27,50.969],[-2.263,50.965],[-2.261,50.963],[-2.257,50.961],[-2.257,50.957],[-2.259,50.954],[-2.256,50.951],[-2.258,50.95],[-2.257,50.948],[-2.253,50.948],[-2.253,50.946],[-2.255,50.944],[-2.251,50.942],[-2.252,50.939],[-2.244,50.937],[-2.24,50.938],[-2.242,50.941],[-2.24,50.943],[-2.235,50.944],[-2.232,50.945],[-2.23,50.943],[-2.228,50.942],[-2.224,50.942],[-2.222,50.941],[-2.216,50.942],[-2.214,50.947],[-2.214,50.95],[-2.209,50.949],[-2.205,50.948],[-2.201,50.947],[-2.198,50.947],[-2.197,50.945],[-2.194,50.946],[-2.189,50.945],[-2.18,50.946],[-2.176,50.947],[-2.166,50.946],[-2.165,50.947],[-2.163,50.951],[-2.161,50.957],[-2.157,50.956],[-2.145,50.955],[-2.142,50.952],[-2.144,50.95],[-2.137,50.937],[-2.133,50.937],[-2.13,50.935],[-2.128,50.934],[-2.122,50.935],[-2.112,50.936],[-2.111,50.937],[-2.106,50.938],[-2.104,50.937],[-2.098,50.935],[-2.088,50.937],[-2.087,50.938],[-2.088,50.942],[-2.086,50.945],[-2.083,50.945],[-2.078,50.947],[-2.074,50.946],[-2.072,50.947],[-2.072,50.948],[-2.066,50.948],[-2.062,50.948],[-2.059,50.944],[-2.048,50.942],[-2.045,50.94],[-2.041,50.938],[-2.033,50.939],[-2.032,50.937],[-2.032,50.933],[-2.034,50.931],[-2.039,50.927],[-2.036,50.923]]]},"properties":{"OBJECTID":30,"NAME":"DT","KEY":"DT","Shape_Leng":4.08888,"Shape_Area":0.211401}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.138,52.342],[-2.14,52.344],[-2.142,52.347],[-2.146,52.348],[-2.146,52.351],[-2.149,52.353],[-2.154,52.354],[-2.151,52.351],[-2.154,52.348],[-2.161,52.347],[-2.165,52.345],[-2.163,52.342],[-2.164,52.337],[-2.17,52.336],[-2.173,52.338],[-2.175,52.339],[-2.174,52.343],[-2.184,52.342],[-2.189,52.338],[-2.185,52.337],[-2.182,52.334],[-2.183,52.333],[-2.194,52.332],[-2.193,52.338],[-2.199,52.34],[-2.199,52.341],[-2.203,52.341],[-2.205,52.34],[-2.206,52.336],[-2.207,52.334],[-2.205,52.332],[-2.206,52.331],[-2.199,52.33],[-2.197,52.33],[-2.198,52.327],[-2.202,52.327],[-2.204,52.327],[-2.212,52.323],[-2.215,52.323],[-2.216,52.321],[-2.216,52.313],[-2.219,52.311],[-2.213,52.306],[-2.213,52.303],[-2.217,52.302],[-2.217,52.294],[-2.22,52.291],[-2.218,52.289],[-2.222,52.286],[-2.226,52.286],[-2.227,52.287],[-2.231,52.288],[-2.231,52.291],[-2.234,52.291],[-2.237,52.291],[-2.24,52.294],[-2.24,52.298],[-2.246,52.298],[-2.244,52.301],[-2.242,52.304],[-2.245,52.305],[-2.243,52.307],[-2.244,52.308],[-2.249,52.309],[-2.25,52.308],[-2.254,52.308],[-2.255,52.305],[-2.256,52.302],[-2.257,52.302],[-2.26,52.304],[-2.259,52.305],[-2.266,52.306],[-2.269,52.303],[-2.27,52.303],[-2.276,52.303],[-2.276,52.298],[-2.275,52.296],[-2.275,52.295],[-2.278,52.295],[-2.279,52.296],[-2.288,52.298],[-2.295,52.303],[-2.301,52.302],[-2.307,52.302],[-2.308,52.301],[-2.31,52.295],[-2.311,52.293],[-2.32,52.297],[-2.326,52.3],[-2.329,52.3],[-2.334,52.301],[-2.337,52.302],[-2.34,52.3],[-2.342,52.297],[-2.346,52.299],[-2.346,52.306],[-2.346,52.308],[-2.344,52.309],[-2.342,52.311],[-2.344,52.312],[-2.346,52.311],[-2.351,52.312],[-2.35,52.314],[-2.352,52.315],[-2.353,52.319],[-2.355,52.321],[-2.357,52.326],[-2.357,52.328],[-2.364,52.329],[-2.366,52.329],[-2.37,52.327],[-2.374,52.327],[-2.382,52.327],[-2.388,52.329],[-2.39,52.329],[-2.396,52.33],[-2.397,52.33],[-2.397,52.333],[-2.401,52.336],[-2.403,52.334],[-2.402,52.333],[-2.403,52.331],[-2.412,52.335],[-2.417,52.334],[-2.414,52.331],[-2.425,52.331],[-2.429,52.33],[-2.433,52.327],[-2.436,52.327],[-2.443,52.331],[-2.456,52.331],[-2.459,52.332],[-2.465,52.33],[-2.469,52.328],[-2.475,52.327],[-2.479,52.33],[-2.479,52.332],[-2.481,52.335],[-2.486,52.336],[-2.491,52.337],[-2.493,52.336],[-2.5,52.336],[-2.505,52.334],[-2.506,52.333],[-2.512,52.331],[-2.52,52.333],[-2.517,52.338],[-2.518,52.341],[-2.519,52.341],[-2.53,52.344],[-2.532,52.346],[-2.535,52.347],[-2.543,52.342],[-2.546,52.343],[-2.547,52.342],[-2.553,52.342],[-2.556,52.343],[-2.56,52.343],[-2.561,52.351],[-2.56,52.352],[-2.552,52.353],[-2.551,52.356],[-2.548,52.358],[-2.553,52.358],[-2.555,52.359],[-2.558,52.359],[-2.562,52.36],[-2.56,52.362],[-2.555,52.362],[-2.553,52.364],[-2.553,52.365],[-2.551,52.368],[-2.554,52.373],[-2.557,52.371],[-2.557,52.368],[-2.559,52.367],[-2.565,52.37],[-2.565,52.372],[-2.569,52.375],[-2.568,52.378],[-2.57,52.379],[-2.572,52.378],[-2.575,52.377],[-2.574,52.38],[-2.579,52.386],[-2.583,52.385],[-2.591,52.388],[-2.598,52.385],[-2.6,52.391],[-2.596,52.393],[-2.591,52.391],[-2.589,52.394],[-2.586,52.396],[-2.586,52.402],[-2.592,52.402],[-2.596,52.404],[-2.601,52.404],[-2.606,52.404],[-2.609,52.405],[-2.611,52.407],[-2.611,52.409],[-2.61,52.413],[-2.6,52.413],[-2.601,52.417],[-2.595,52.42],[-2.596,52.422],[-2.589,52.425],[-2.588,52.421],[-2.585,52.418],[-2.579,52.419],[-2.576,52.419],[-2.571,52.42],[-2.564,52.42],[-2.564,52.424],[-2.564,52.429],[-2.553,52.431],[-2.547,52.436],[-2.542,52.437],[-2.545,52.441],[-2.539,52.44],[-2.535,52.441],[-2.533,52.442],[-2.532,52.444],[-2.532,52.452],[-2.532,52.453],[-2.524,52.457],[-2.519,52.456],[-2.516,52.453],[-2.507,52.455],[-2.499,52.452],[-2.49,52.452],[-2.487,52.452],[-2.482,52.455],[-2.481,52.454],[-2.475,52.452],[-2.469,52.451],[-2.469,52.448],[-2.466,52.449],[-2.463,52.447],[-2.462,52.445],[-2.463,52.442],[-2.464,52.44],[-2.466,52.439],[-2.468,52.438],[-2.454,52.435],[-2.451,52.437],[-2.448,52.443],[-2.446,52.443],[-2.442,52.441],[-2.437,52.442],[-2.429,52.438],[-2.425,52.439],[-2.416,52.435],[-2.413,52.432],[-2.411,52.435],[-2.409,52.436],[-2.404,52.432],[-2.397,52.43],[-2.385,52.43],[-2.383,52.428],[-2.376,52.431],[-2.374,52.432],[-2.364,52.43],[-2.364,52.434],[-2.363,52.439],[-2.36,52.44],[-2.356,52.444],[-2.353,52.442],[-2.349,52.443],[-2.347,52.441],[-2.343,52.44],[-2.338,52.441],[-2.335,52.438],[-2.329,52.44],[-2.331,52.442],[-2.324,52.44],[-2.321,52.441],[-2.316,52.442],[-2.309,52.438],[-2.306,52.438],[-2.306,52.442],[-2.31,52.446],[-2.307,52.447],[-2.303,52.446],[-2.3,52.447],[-2.301,52.449],[-2.3,52.451],[-2.301,52.453],[-2.308,52.458],[-2.305,52.461],[-2.307,52.465],[-2.307,52.468],[-2.308,52.469],[-2.307,52.471],[-2.304,52.474],[-2.303,52.475],[-2.305,52.477],[-2.312,52.48],[-2.305,52.484],[-2.306,52.487],[-2.303,52.491],[-2.3,52.488],[-2.298,52.491],[-2.296,52.492],[-2.283,52.491],[-2.278,52.492],[-2.276,52.494],[-2.287,52.499],[-2.287,52.5],[-2.284,52.506],[-2.292,52.507],[-2.294,52.504],[-2.295,52.502],[-2.294,52.502],[-2.296,52.5],[-2.297,52.498],[-2.299,52.496],[-2.303,52.498],[-2.304,52.501],[-2.303,52.503],[-2.302,52.506],[-2.301,52.507],[-2.298,52.512],[-2.296,52.513],[-2.286,52.514],[-2.284,52.516],[-2.284,52.518],[-2.281,52.519],[-2.278,52.521],[-2.273,52.518],[-2.269,52.52],[-2.275,52.527],[-2.271,52.528],[-2.268,52.532],[-2.265,52.534],[-2.269,52.538],[-2.264,52.541],[-2.262,52.54],[-2.255,52.539],[-2.251,52.537],[-2.244,52.534],[-2.237,52.528],[-2.233,52.528],[-2.231,52.53],[-2.226,52.532],[-2.226,52.534],[-2.224,52.534],[-2.222,52.528],[-2.221,52.529],[-2.217,52.527],[-2.214,52.527],[-2.212,52.525],[-2.212,52.523],[-2.211,52.52],[-2.211,52.519],[-2.206,52.518],[-2.209,52.521],[-2.207,52.523],[-2.198,52.524],[-2.19,52.522],[-2.188,52.523],[-2.186,52.523],[-2.183,52.525],[-2.182,52.526],[-2.178,52.525],[-2.176,52.522],[-2.173,52.522],[-2.168,52.526],[-2.171,52.528],[-2.171,52.53],[-2.166,52.533],[-2.163,52.534],[-2.171,52.537],[-2.17,52.54],[-2.171,52.54],[-2.177,52.539],[-2.176,52.54],[-2.17,52.541],[-2.166,52.541],[-2.164,52.541],[-2.16,52.541],[-2.159,52.543],[-2.156,52.545],[-2.153,52.544],[-2.151,52.546],[-2.147,52.546],[-2.144,52.543],[-2.142,52.544],[-2.139,52.546],[-2.141,52.547],[-2.142,52.55],[-2.139,52.554],[-2.138,52.556],[-2.134,52.558],[-2.131,52.557],[-2.128,52.556],[-2.123,52.556],[-2.121,52.554],[-2.121,52.551],[-2.118,52.549],[-2.109,52.546],[-2.106,52.543],[-2.107,52.542],[-2.107,52.539],[-2.099,52.539],[-2.101,52.537],[-2.101,52.536],[-2.099,52.535],[-2.096,52.536],[-2.093,52.535],[-2.09,52.537],[-2.085,52.535],[-2.081,52.537],[-2.078,52.535],[-2.076,52.537],[-2.076,52.54],[-2.073,52.541],[-2.072,52.543],[-2.073,52.544],[-2.072,52.546],[-2.066,52.547],[-2.063,52.547],[-2.06,52.548],[-2.052,52.55],[-2.048,52.552],[-2.044,52.551],[-2.038,52.551],[-2.037,52.549],[-2.04,52.548],[-2.036,52.545],[-2.033,52.545],[-2.031,52.544],[-2.028,52.542],[-2.03,52.539],[-2.027,52.536],[-2.027,52.533],[-2.028,52.531],[-2.031,52.53],[-2.026,52.526],[-2.027,52.525],[-2.03,52.525],[-2.037,52.524],[-2.039,52.521],[-2.043,52.522],[-2.049,52.516],[-2.051,52.514],[-2.052,52.515],[-2.056,52.515],[-2.059,52.514],[-2.058,52.511],[-2.062,52.508],[-2.06,52.504],[-2.065,52.498],[-2.071,52.492],[-2.067,52.49],[-2.067,52.489],[-2.068,52.487],[-2.067,52.483],[-2.071,52.483],[-2.071,52.481],[-2.071,52.479],[-2.073,52.479],[-2.073,52.477],[-2.079,52.478],[-2.082,52.476],[-2.085,52.474],[-2.087,52.475],[-2.09,52.475],[-2.091,52.473],[-2.094,52.474],[-2.095,52.472],[-2.096,52.469],[-2.101,52.467],[-2.103,52.464],[-2.101,52.463],[-2.1,52.461],[-2.101,52.457],[-2.098,52.456],[-2.097,52.453],[-2.098,52.453],[-2.095,52.45],[-2.097,52.447],[-2.089,52.445],[-2.087,52.443],[-2.088,52.441],[-2.093,52.439],[-2.095,52.437],[-2.095,52.433],[-2.091,52.434],[-2.087,52.432],[-2.086,52.43],[-2.088,52.429],[-2.091,52.429],[-2.092,52.425],[-2.088,52.423],[-2.095,52.419],[-2.091,52.417],[-2.087,52.417],[-2.084,52.413],[-2.081,52.411],[-2.082,52.409],[-2.085,52.408],[-2.09,52.407],[-2.083,52.406],[-2.078,52.402],[-2.085,52.401],[-2.086,52.398],[-2.082,52.398],[-2.081,52.398],[-2.074,52.397],[-2.07,52.398],[-2.072,52.395],[-2.067,52.395],[-2.059,52.398],[-2.057,52.399],[-2.055,52.398],[-2.055,52.393],[-2.059,52.394],[-2.063,52.392],[-2.07,52.39],[-2.069,52.386],[-2.078,52.383],[-2.08,52.382],[-2.081,52.384],[-2.087,52.384],[-2.092,52.38],[-2.093,52.379],[-2.096,52.374],[-2.099,52.369],[-2.098,52.366],[-2.101,52.363],[-2.099,52.361],[-2.102,52.36],[-2.105,52.36],[-2.107,52.359],[-2.114,52.359],[-2.114,52.358],[-2.121,52.356],[-2.122,52.358],[-2.119,52.36],[-2.115,52.361],[-2.115,52.362],[-2.118,52.363],[-2.123,52.363],[-2.127,52.361],[-2.127,52.36],[-2.13,52.356],[-2.133,52.355],[-2.133,52.35],[-2.135,52.349],[-2.133,52.348],[-2.136,52.344],[-2.138,52.342]]]},"properties":{"OBJECTID":31,"NAME":"DY","KEY":"DY","Shape_Leng":2.50082,"Shape_Area":0.0773123}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.089,51.514],[0.086,51.513],[0.086,51.511],[0.083,51.51],[0.079,51.506],[0.078,51.504],[0.075,51.5],[0.072,51.499],[0.068,51.499],[0.058,51.498],[0.049,51.499],[0.046,51.499],[0.038,51.499],[0.032,51.498],[0.025,51.498],[0.022,51.498],[0.017,51.5],[0.009,51.507],[0.006,51.508],[0.001,51.508],[-0.002,51.507],[-0.007,51.504],[-0.008,51.501],[-0.006,51.497],[-0.003,51.493],[-0.003,51.489],[-0.004,51.488],[-0.008,51.486],[-0.013,51.486],[-0.018,51.486],[-0.022,51.488],[-0.026,51.491],[-0.028,51.496],[-0.028,51.504],[-0.029,51.507],[-0.031,51.508],[-0.038,51.51],[-0.045,51.509],[-0.049,51.508],[-0.057,51.503],[-0.06,51.503],[-0.066,51.503],[-0.07,51.505],[-0.072,51.506],[-0.075,51.506],[-0.074,51.509],[-0.075,51.515],[-0.078,51.516],[-0.077,51.517],[-0.079,51.518],[-0.078,51.523],[-0.078,51.528],[-0.079,51.53],[-0.077,51.53],[-0.077,51.532],[-0.079,51.534],[-0.077,51.535],[-0.077,51.537],[-0.078,51.538],[-0.077,51.539],[-0.076,51.546],[-0.076,51.55],[-0.074,51.553],[-0.067,51.555],[-0.068,51.558],[-0.066,51.557],[-0.062,51.56],[-0.065,51.561],[-0.066,51.563],[-0.06,51.566],[-0.061,51.567],[-0.063,51.57],[-0.067,51.572],[-0.064,51.573],[-0.061,51.574],[-0.059,51.575],[-0.06,51.576],[-0.057,51.577],[-0.06,51.582],[-0.058,51.582],[-0.055,51.585],[-0.056,51.586],[-0.048,51.586],[-0.048,51.59],[-0.05,51.594],[-0.053,51.594],[-0.052,51.596],[-0.046,51.601],[-0.043,51.606],[-0.04,51.607],[-0.039,51.609],[-0.042,51.609],[-0.041,51.613],[-0.043,51.614],[-0.043,51.616],[-0.04,51.619],[-0.038,51.62],[-0.037,51.622],[-0.032,51.622],[-0.028,51.624],[-0.027,51.628],[-0.027,51.632],[-0.026,51.633],[-0.032,51.638],[-0.032,51.639],[-0.024,51.639],[-0.023,51.639],[-0.019,51.645],[-0.018,51.647],[-0.019,51.652],[-0.021,51.654],[-0.02,51.656],[-0.016,51.658],[-0.01,51.662],[-0.008,51.664],[-0.008,51.668],[-0.006,51.673],[-0.001,51.672],[0.003,51.671],[0.001,51.668],[0.008,51.666],[0.011,51.668],[0.015,51.665],[0.011,51.662],[0.019,51.655],[0.019,51.653],[0.022,51.65],[0.035,51.647],[0.036,51.647],[0.034,51.642],[0.034,51.639],[0.025,51.635],[0.023,51.635],[0.023,51.631],[0.022,51.628],[0.023,51.627],[0.017,51.624],[0.014,51.623],[0.016,51.619],[0.014,51.618],[0.01,51.615],[0.009,51.613],[0.012,51.612],[0.01,51.61],[0.004,51.606],[0.001,51.605],[0.002,51.603],[-0.001,51.601],[-0.001,51.6],[0.006,51.597],[0.007,51.599],[0.013,51.6],[0.015,51.601],[0.018,51.601],[0.02,51.6],[0.024,51.599],[0.027,51.598],[0.03,51.599],[0.031,51.601],[0.032,51.601],[0.032,51.599],[0.034,51.598],[0.036,51.599],[0.04,51.598],[0.038,51.595],[0.039,51.595],[0.038,51.591],[0.038,51.59],[0.04,51.586],[0.04,51.583],[0.042,51.578],[0.038,51.578],[0.038,51.577],[0.041,51.575],[0.04,51.574],[0.041,51.572],[0.043,51.571],[0.049,51.572],[0.058,51.561],[0.065,51.556],[0.067,51.555],[0.067,51.553],[0.068,51.546],[0.067,51.541],[0.067,51.54],[0.072,51.533],[0.072,51.529],[0.075,51.529],[0.078,51.527],[0.075,51.526],[0.076,51.524],[0.073,51.523],[0.073,51.521],[0.075,51.521],[0.078,51.515],[0.082,51.514],[0.082,51.516],[0.088,51.515],[0.089,51.514]]]},"properties":{"OBJECTID":32,"NAME":"E","KEY":"E.","Shape_Leng":1.00345,"Shape_Area":0.0159683}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.075,51.506],[-0.082,51.508],[-0.089,51.509],[-0.096,51.51],[-0.1,51.511],[-0.111,51.511],[-0.112,51.511],[-0.112,51.514],[-0.111,51.515],[-0.112,51.517],[-0.111,51.519],[-0.113,51.522],[-0.109,51.527],[-0.111,51.53],[-0.108,51.531],[-0.106,51.533],[-0.099,51.531],[-0.097,51.53],[-0.093,51.529],[-0.089,51.528],[-0.088,51.527],[-0.085,51.527],[-0.081,51.527],[-0.078,51.528],[-0.078,51.523],[-0.079,51.518],[-0.077,51.517],[-0.078,51.516],[-0.075,51.515],[-0.074,51.509],[-0.075,51.506]]]},"properties":{"OBJECTID":33,"NAME":"EC","KEY":"EC","Shape_Leng":0.174298,"Shape_Area":0.000692342}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.395,55.96],[-2.398,55.958],[-2.4,55.96],[-2.406,55.961],[-2.408,55.96],[-2.408,55.958],[-2.397,55.954],[-2.399,55.951],[-2.407,55.951],[-2.409,55.95],[-2.413,55.948],[-2.418,55.947],[-2.42,55.948],[-2.422,55.946],[-2.425,55.944],[-2.423,55.943],[-2.419,55.94],[-2.422,55.939],[-2.438,55.939],[-2.44,55.939],[-2.447,55.933],[-2.447,55.931],[-2.453,55.918],[-2.454,55.916],[-2.453,55.913],[-2.455,55.911],[-2.478,55.907],[-2.482,55.907],[-2.498,55.908],[-2.501,55.909],[-2.504,55.912],[-2.507,55.916],[-2.507,55.917],[-2.519,55.923],[-2.535,55.911],[-2.54,55.912],[-2.558,55.914],[-2.563,55.925],[-2.567,55.926],[-2.581,55.925],[-2.596,55.921],[-2.612,55.906],[-2.613,55.904],[-2.61,55.9],[-2.608,55.899],[-2.603,55.896],[-2.602,55.894],[-2.6,55.891],[-2.595,55.888],[-2.581,55.883],[-2.577,55.878],[-2.575,55.874],[-2.574,55.871],[-2.581,55.874],[-2.585,55.874],[-2.59,55.874],[-2.629,55.874],[-2.635,55.872],[-2.64,55.875],[-2.65,55.868],[-2.665,55.852],[-2.664,55.848],[-2.683,55.842],[-2.688,55.84],[-2.694,55.836],[-2.704,55.828],[-2.719,55.832],[-2.738,55.836],[-2.752,55.837],[-2.767,55.846],[-2.771,55.847],[-2.79,55.84],[-2.806,55.837],[-2.815,55.828],[-2.817,55.826],[-2.815,55.822],[-2.825,55.805],[-2.837,55.802],[-2.835,55.805],[-2.849,55.819],[-2.866,55.802],[-2.861,55.793],[-2.866,55.789],[-2.867,55.783],[-2.871,55.78],[-2.883,55.778],[-2.883,55.776],[-2.89,55.775],[-2.878,55.769],[-2.874,55.763],[-2.888,55.757],[-2.897,55.759],[-2.913,55.757],[-2.918,55.757],[-2.923,55.759],[-2.925,55.759],[-2.921,55.755],[-2.925,55.753],[-2.928,55.756],[-2.931,55.757],[-2.945,55.755],[-2.947,55.754],[-2.962,55.752],[-2.965,55.748],[-2.967,55.743],[-2.968,55.733],[-2.983,55.73],[-2.991,55.716],[-3.031,55.701],[-3.008,55.681],[-3.026,55.663],[-3.028,55.656],[-3.022,55.646],[-2.991,55.642],[-2.982,55.644],[-2.971,55.647],[-2.957,55.645],[-2.944,55.639],[-2.943,55.635],[-2.944,55.63],[-2.956,55.622],[-2.962,55.626],[-2.958,55.62],[-2.953,55.618],[-2.948,55.616],[-2.939,55.615],[-2.938,55.613],[-2.934,55.613],[-2.937,55.61],[-2.944,55.605],[-2.96,55.602],[-2.971,55.601],[-2.982,55.592],[-2.978,55.586],[-2.987,55.572],[-3.025,55.581],[-3.028,55.576],[-3.016,55.559],[-3.023,55.556],[-3.036,55.552],[-3.04,55.552],[-3.053,55.555],[-3.092,55.559],[-3.092,55.555],[-3.089,55.549],[-3.09,55.547],[-3.091,55.545],[-3.095,55.544],[-3.107,55.546],[-3.126,55.55],[-3.127,55.551],[-3.136,55.551],[-3.146,55.553],[-3.15,55.554],[-3.172,55.557],[-3.197,55.566],[-3.226,55.553],[-3.227,55.543],[-3.233,55.537],[-3.261,55.529],[-3.303,55.516],[-3.306,55.516],[-3.313,55.521],[-3.316,55.526],[-3.314,55.542],[-3.324,55.552],[-3.325,55.568],[-3.324,55.57],[-3.322,55.582],[-3.326,55.584],[-3.349,55.591],[-3.357,55.591],[-3.363,55.592],[-3.37,55.593],[-3.376,55.592],[-3.365,55.598],[-3.353,55.602],[-3.346,55.604],[-3.33,55.604],[-3.328,55.606],[-3.335,55.605],[-3.342,55.607],[-3.345,55.608],[-3.347,55.607],[-3.351,55.608],[-3.355,55.608],[-3.355,55.611],[-3.359,55.618],[-3.373,55.624],[-3.373,55.628],[-3.349,55.636],[-3.34,55.646],[-3.349,55.654],[-3.363,55.656],[-3.37,55.655],[-3.396,55.651],[-3.403,55.658],[-3.413,55.661],[-3.426,55.665],[-3.419,55.67],[-3.426,55.675],[-3.438,55.677],[-3.447,55.67],[-3.464,55.674],[-3.462,55.675],[-3.465,55.683],[-3.453,55.683],[-3.45,55.686],[-3.447,55.688],[-3.47,55.698],[-3.471,55.701],[-3.477,55.707],[-3.475,55.708],[-3.463,55.71],[-3.455,55.713],[-3.456,55.72],[-3.461,55.722],[-3.456,55.724],[-3.452,55.726],[-3.459,55.728],[-3.458,55.73],[-3.469,55.73],[-3.482,55.732],[-3.484,55.733],[-3.486,55.736],[-3.496,55.738],[-3.509,55.742],[-3.524,55.736],[-3.556,55.739],[-3.564,55.743],[-3.562,55.748],[-3.569,55.754],[-3.576,55.76],[-3.58,55.762],[-3.584,55.763],[-3.584,55.764],[-3.596,55.771],[-3.599,55.774],[-3.602,55.771],[-3.604,55.773],[-3.608,55.776],[-3.614,55.778],[-3.616,55.78],[-3.616,55.784],[-3.625,55.785],[-3.629,55.802],[-3.637,55.803],[-3.669,55.806],[-3.675,55.806],[-3.69,55.796],[-3.692,55.79],[-3.698,55.789],[-3.711,55.79],[-3.718,55.792],[-3.722,55.791],[-3.725,55.793],[-3.727,55.795],[-3.741,55.787],[-3.76,55.788],[-3.773,55.794],[-3.769,55.806],[-3.766,55.805],[-3.741,55.808],[-3.747,55.811],[-3.746,55.825],[-3.745,55.826],[-3.751,55.827],[-3.744,55.834],[-3.735,55.841],[-3.738,55.843],[-3.74,55.849],[-3.738,55.85],[-3.728,55.856],[-3.724,55.857],[-3.724,55.858],[-3.725,55.862],[-3.727,55.862],[-3.729,55.866],[-3.729,55.869],[-3.734,55.872],[-3.735,55.874],[-3.745,55.88],[-3.759,55.877],[-3.756,55.874],[-3.75,55.869],[-3.75,55.868],[-3.758,55.869],[-3.764,55.869],[-3.765,55.871],[-3.762,55.873],[-3.768,55.875],[-3.773,55.876],[-3.774,55.875],[-3.786,55.875],[-3.798,55.877],[-3.799,55.881],[-3.804,55.881],[-3.811,55.882],[-3.824,55.883],[-3.824,55.884],[-3.816,55.884],[-3.813,55.889],[-3.814,55.89],[-3.802,55.893],[-3.799,55.899],[-3.794,55.9],[-3.788,55.894],[-3.784,55.893],[-3.774,55.894],[-3.771,55.895],[-3.769,55.899],[-3.759,55.897],[-3.756,55.897],[-3.75,55.897],[-3.743,55.901],[-3.74,55.902],[-3.74,55.913],[-3.736,55.916],[-3.732,55.918],[-3.728,55.918],[-3.728,55.924],[-3.725,55.925],[-3.724,55.928],[-3.719,55.928],[-3.71,55.931],[-3.717,55.931],[-3.711,55.934],[-3.709,55.935],[-3.712,55.939],[-3.704,55.941],[-3.696,55.939],[-3.687,55.941],[-3.678,55.939],[-3.675,55.939],[-3.675,55.941],[-3.674,55.943],[-3.669,55.943],[-3.666,55.943],[-3.662,55.946],[-3.657,55.948],[-3.656,55.95],[-3.663,55.953],[-3.661,55.954],[-3.669,55.957],[-3.676,55.956],[-3.682,55.958],[-3.681,55.96],[-3.677,55.963],[-3.681,55.964],[-3.682,55.963],[-3.685,55.963],[-3.69,55.965],[-3.688,55.971],[-3.686,55.971],[-3.684,55.973],[-3.683,55.973],[-3.674,55.972],[-3.675,55.974],[-3.681,55.979],[-3.684,55.979],[-3.685,55.981],[-3.666,55.979],[-3.662,55.979],[-3.664,55.986],[-3.653,55.986],[-3.66,55.989],[-3.66,55.991],[-3.659,55.993],[-3.654,55.996],[-3.655,55.998],[-3.653,56.003],[-3.657,56.002],[-3.666,56.001],[-3.667,56.003],[-3.67,56.003],[-3.67,56.008],[-3.669,56.009],[-3.664,56.009],[-3.658,56.01],[-3.655,56.012],[-3.652,56.02],[-3.651,56.023],[-3.648,56.027],[-3.648,56.029],[-3.643,56.032],[-3.64,56.031],[-3.64,56.029],[-3.638,56.029],[-3.635,56.025],[-3.634,56.024],[-3.636,56.022],[-3.631,56.022],[-3.622,56.028],[-3.62,56.03],[-3.597,56.027],[-3.597,56.021],[-3.592,56.018],[-3.587,56.018],[-3.584,56.019],[-3.57,56.017],[-3.568,56.016],[-3.567,56.013],[-3.563,56.011],[-3.551,56.01],[-3.546,56.009],[-3.534,56.007],[-3.528,56.006],[-3.521,56.005],[-3.517,56.007],[-3.515,56.005],[-3.515,56.003],[-3.514,56.001],[-3.511,56],[-3.507,55.999],[-3.502,55.998],[-3.492,55.998],[-3.487,55.998],[-3.477,55.998],[-3.474,56],[-3.469,56],[-3.465,55.999],[-3.464,55.998],[-3.455,55.997],[-3.444,55.996],[-3.442,55.996],[-3.438,55.994],[-3.435,55.995],[-3.43,55.994],[-3.425,55.994],[-3.42,55.994],[-3.415,55.994],[-3.415,55.995],[-3.413,55.998],[-3.411,55.997],[-3.414,55.994],[-3.412,55.992],[-3.407,55.994],[-3.402,55.993],[-3.399,55.992],[-3.396,55.992],[-3.395,55.991],[-3.39,55.99],[-3.384,55.991],[-3.377,55.992],[-3.372,55.994],[-3.369,55.995],[-3.365,55.999],[-3.358,56.001],[-3.356,56.001],[-3.35,56.002],[-3.343,55.997],[-3.341,55.997],[-3.334,55.993],[-3.332,55.992],[-3.33,55.989],[-3.329,55.989],[-3.32,55.984],[-3.316,55.983],[-3.314,55.984],[-3.305,55.982],[-3.302,55.981],[-3.299,55.981],[-3.292,55.98],[-3.284,55.98],[-3.282,55.981],[-3.272,55.981],[-3.261,55.98],[-3.251,55.984],[-3.242,55.984],[-3.234,55.985],[-3.23,55.987],[-3.221,55.988],[-3.219,55.988],[-3.216,55.986],[-3.216,55.981],[-3.214,55.981],[-3.207,55.981],[-3.203,55.98],[-3.2,55.981],[-3.197,55.984],[-3.184,55.99],[-3.179,55.991],[-3.176,55.989],[-3.156,55.982],[-3.154,55.979],[-3.151,55.977],[-3.136,55.971],[-3.136,55.969],[-3.133,55.968],[-3.121,55.962],[-3.116,55.958],[-3.105,55.954],[-3.094,55.95],[-3.085,55.949],[-3.079,55.948],[-3.074,55.947],[-3.073,55.947],[-3.068,55.946],[-3.066,55.947],[-3.064,55.946],[-3.06,55.947],[-3.052,55.949],[-3.049,55.95],[-3.046,55.953],[-3.039,55.954],[-3.033,55.954],[-3.021,55.951],[-3.007,55.954],[-3.006,55.956],[-3.002,55.957],[-2.996,55.957],[-2.991,55.959],[-2.984,55.961],[-2.98,55.962],[-2.977,55.964],[-2.973,55.968],[-2.969,55.97],[-2.96,55.972],[-2.958,55.973],[-2.949,55.973],[-2.931,55.973],[-2.924,55.974],[-2.919,55.975],[-2.911,55.977],[-2.906,55.981],[-2.9,55.982],[-2.898,55.985],[-2.9,55.988],[-2.9,55.989],[-2.891,55.992],[-2.888,55.993],[-2.887,55.995],[-2.885,55.999],[-2.885,56.002],[-2.887,56.003],[-2.89,56.005],[-2.889,56.007],[-2.89,56.01],[-2.885,56.012],[-2.881,56.012],[-2.874,56.014],[-2.871,56.013],[-2.869,56.011],[-2.863,56.012],[-2.859,56.011],[-2.85,56.014],[-2.849,56.015],[-2.844,56.017],[-2.852,56.017],[-2.857,56.019],[-2.859,56.022],[-2.863,56.025],[-2.865,56.027],[-2.864,56.034],[-2.865,56.038],[-2.861,56.038],[-2.859,56.039],[-2.849,56.039],[-2.845,56.04],[-2.84,56.042],[-2.837,56.044],[-2.833,56.05],[-2.83,56.051],[-2.829,56.052],[-2.825,56.055],[-2.822,56.058],[-2.82,56.06],[-2.817,56.065],[-2.813,56.065],[-2.811,56.064],[-2.804,56.063],[-2.798,56.065],[-2.791,56.065],[-2.785,56.066],[-2.781,56.065],[-2.777,56.065],[-2.773,56.066],[-2.756,56.061],[-2.751,56.061],[-2.749,56.06],[-2.746,56.063],[-2.741,56.063],[-2.732,56.062],[-2.73,56.063],[-2.722,56.06],[-2.718,56.06],[-2.719,56.061],[-2.717,56.063],[-2.716,56.063],[-2.715,56.061],[-2.706,56.058],[-2.698,56.058],[-2.695,56.059],[-2.694,56.061],[-2.688,56.062],[-2.683,56.061],[-2.682,56.062],[-2.677,56.063],[-2.673,56.06],[-2.669,56.059],[-2.667,56.059],[-2.663,56.058],[-2.658,56.06],[-2.653,56.06],[-2.652,56.057],[-2.649,56.057],[-2.649,56.056],[-2.647,56.054],[-2.644,56.055],[-2.638,56.055],[-2.637,56.053],[-2.629,56.053],[-2.626,56.052],[-2.624,56.051],[-2.62,56.049],[-2.619,56.047],[-2.618,56.044],[-2.616,56.043],[-2.611,56.04],[-2.609,56.038],[-2.608,56.034],[-2.605,56.033],[-2.597,56.027],[-2.588,56.023],[-2.585,56.023],[-2.584,56.024],[-2.581,56.024],[-2.58,56.024],[-2.583,56.022],[-2.585,56.02],[-2.587,56.018],[-2.588,56.016],[-2.583,56.013],[-2.582,56.01],[-2.583,56.008],[-2.585,56.01],[-2.587,56.014],[-2.589,56.016],[-2.592,56.015],[-2.593,56.014],[-2.592,56.009],[-2.593,56.007],[-2.597,56.006],[-2.602,56.006],[-2.597,55.999],[-2.593,55.999],[-2.587,55.999],[-2.58,56.002],[-2.576,56.004],[-2.574,56.007],[-2.569,56.008],[-2.568,56.01],[-2.565,56.008],[-2.566,56.006],[-2.56,56.003],[-2.555,56],[-2.549,55.999],[-2.545,55.999],[-2.544,56.001],[-2.542,56.002],[-2.54,56.003],[-2.541,56.005],[-2.54,56.006],[-2.533,56.006],[-2.529,56.008],[-2.524,56.007],[-2.517,56.006],[-2.515,56.007],[-2.511,56.006],[-2.511,56.003],[-2.51,56.002],[-2.508,56.001],[-2.5,55.999],[-2.494,55.998],[-2.489,55.996],[-2.487,55.996],[-2.48,55.997],[-2.477,55.996],[-2.472,55.996],[-2.469,55.994],[-2.465,55.989],[-2.464,55.988],[-2.457,55.988],[-2.451,55.988],[-2.448,55.987],[-2.445,55.989],[-2.443,55.988],[-2.442,55.985],[-2.439,55.98],[-2.424,55.976],[-2.418,55.975],[-2.417,55.974],[-2.419,55.973],[-2.419,55.971],[-2.416,55.97],[-2.402,55.969],[-2.4,55.968],[-2.398,55.966],[-2.396,55.961],[-2.395,55.96]]]},"properties":{"OBJECTID":34,"NAME":"EH","KEY":"EH","Shape_Leng":4.99355,"Shape_Area":0.35275}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.054,51.675],[0.049,51.674],[0.046,51.675],[0.044,51.673],[0.045,51.669],[0.043,51.668],[0.033,51.671],[0.031,51.671],[0.029,51.669],[0.03,51.666],[0.026,51.666],[0.025,51.665],[0.017,51.665],[0.015,51.665],[0.011,51.668],[0.008,51.666],[0.001,51.668],[0.003,51.671],[-0.001,51.672],[-0.006,51.673],[-0.008,51.668],[-0.008,51.664],[-0.01,51.662],[-0.016,51.658],[-0.02,51.656],[-0.021,51.654],[-0.019,51.652],[-0.018,51.647],[-0.019,51.645],[-0.023,51.639],[-0.024,51.639],[-0.032,51.639],[-0.032,51.638],[-0.032,51.636],[-0.038,51.636],[-0.037,51.638],[-0.041,51.64],[-0.044,51.639],[-0.056,51.642],[-0.062,51.639],[-0.065,51.636],[-0.067,51.635],[-0.073,51.634],[-0.08,51.636],[-0.083,51.639],[-0.082,51.644],[-0.085,51.644],[-0.088,51.646],[-0.088,51.648],[-0.09,51.65],[-0.094,51.648],[-0.096,51.646],[-0.099,51.648],[-0.1,51.649],[-0.104,51.648],[-0.106,51.651],[-0.109,51.651],[-0.109,51.648],[-0.114,51.648],[-0.12,51.646],[-0.122,51.645],[-0.124,51.646],[-0.127,51.65],[-0.127,51.652],[-0.125,51.653],[-0.126,51.655],[-0.121,51.658],[-0.121,51.66],[-0.124,51.662],[-0.126,51.665],[-0.132,51.664],[-0.139,51.664],[-0.133,51.659],[-0.132,51.659],[-0.133,51.654],[-0.135,51.653],[-0.135,51.651],[-0.136,51.647],[-0.146,51.645],[-0.15,51.639],[-0.148,51.639],[-0.147,51.637],[-0.144,51.634],[-0.145,51.632],[-0.149,51.631],[-0.154,51.631],[-0.159,51.63],[-0.165,51.637],[-0.169,51.639],[-0.171,51.639],[-0.176,51.639],[-0.18,51.64],[-0.184,51.64],[-0.185,51.638],[-0.185,51.636],[-0.188,51.635],[-0.192,51.635],[-0.193,51.639],[-0.198,51.638],[-0.198,51.639],[-0.196,51.641],[-0.202,51.641],[-0.206,51.639],[-0.21,51.64],[-0.214,51.638],[-0.217,51.638],[-0.226,51.635],[-0.229,51.634],[-0.232,51.636],[-0.236,51.637],[-0.239,51.638],[-0.242,51.642],[-0.244,51.639],[-0.245,51.637],[-0.247,51.638],[-0.251,51.638],[-0.254,51.641],[-0.256,51.64],[-0.255,51.644],[-0.251,51.648],[-0.248,51.662],[-0.238,51.673],[-0.234,51.68],[-0.239,51.683],[-0.245,51.684],[-0.249,51.684],[-0.254,51.687],[-0.258,51.69],[-0.264,51.69],[-0.266,51.692],[-0.266,51.694],[-0.261,51.696],[-0.259,51.696],[-0.255,51.699],[-0.255,51.701],[-0.256,51.702],[-0.255,51.706],[-0.254,51.706],[-0.261,51.71],[-0.264,51.711],[-0.268,51.714],[-0.272,51.715],[-0.275,51.716],[-0.262,51.72],[-0.252,51.718],[-0.248,51.717],[-0.243,51.716],[-0.237,51.715],[-0.222,51.713],[-0.22,51.709],[-0.218,51.708],[-0.209,51.71],[-0.203,51.713],[-0.199,51.713],[-0.193,51.712],[-0.191,51.716],[-0.187,51.716],[-0.185,51.716],[-0.175,51.713],[-0.177,51.716],[-0.174,51.716],[-0.171,51.714],[-0.166,51.713],[-0.164,51.711],[-0.162,51.712],[-0.162,51.715],[-0.158,51.715],[-0.164,51.718],[-0.164,51.72],[-0.162,51.725],[-0.159,51.726],[-0.156,51.726],[-0.151,51.727],[-0.149,51.727],[-0.142,51.727],[-0.14,51.728],[-0.136,51.727],[-0.129,51.726],[-0.126,51.726],[-0.12,51.725],[-0.122,51.723],[-0.115,51.723],[-0.112,51.721],[-0.11,51.721],[-0.109,51.723],[-0.103,51.737],[-0.093,51.736],[-0.085,51.739],[-0.082,51.742],[-0.091,51.743],[-0.084,51.747],[-0.082,51.745],[-0.076,51.75],[-0.066,51.753],[-0.061,51.756],[-0.052,51.757],[-0.049,51.758],[-0.055,51.76],[-0.054,51.762],[-0.052,51.765],[-0.05,51.765],[-0.046,51.766],[-0.041,51.768],[-0.041,51.772],[-0.041,51.775],[-0.04,51.777],[-0.037,51.777],[-0.034,51.777],[-0.029,51.774],[-0.023,51.774],[-0.022,51.778],[-0.015,51.777],[-0.013,51.776],[-0.013,51.779],[-0.003,51.78],[-0.001,51.78],[-0.001,51.782],[0.009,51.779],[0.007,51.775],[0.011,51.773],[0.014,51.77],[0.018,51.769],[0.012,51.766],[0.012,51.765],[0.015,51.763],[0.012,51.761],[0.013,51.759],[0.012,51.757],[0.014,51.755],[0.014,51.752],[0.015,51.75],[0.012,51.75],[0.015,51.747],[0.018,51.746],[0.021,51.743],[0.024,51.745],[0.025,51.748],[0.028,51.749],[0.03,51.748],[0.033,51.747],[0.038,51.747],[0.046,51.746],[0.051,51.746],[0.054,51.748],[0.055,51.746],[0.058,51.749],[0.061,51.748],[0.065,51.748],[0.069,51.745],[0.071,51.742],[0.075,51.74],[0.072,51.739],[0.068,51.74],[0.066,51.739],[0.061,51.739],[0.055,51.731],[0.053,51.731],[0.052,51.725],[0.054,51.721],[0.051,51.717],[0.057,51.714],[0.059,51.712],[0.06,51.708],[0.065,51.703],[0.064,51.701],[0.066,51.696],[0.065,51.694],[0.063,51.691],[0.068,51.688],[0.064,51.688],[0.059,51.686],[0.065,51.685],[0.062,51.684],[0.06,51.681],[0.06,51.679],[0.056,51.677],[0.054,51.675]]]},"properties":{"OBJECTID":35,"NAME":"EN","KEY":"EN","Shape_Leng":1.33008,"Shape_Area":0.028569}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.651,51.163],[-4.655,51.161],[-4.659,51.161],[-4.661,51.161],[-4.665,51.161],[-4.671,51.158],[-4.674,51.161],[-4.674,51.163],[-4.678,51.166],[-4.677,51.168],[-4.679,51.169],[-4.681,51.172],[-4.68,51.174],[-4.681,51.175],[-4.679,51.176],[-4.678,51.179],[-4.674,51.18],[-4.674,51.181],[-4.677,51.185],[-4.675,51.186],[-4.675,51.187],[-4.677,51.19],[-4.676,51.192],[-4.679,51.193],[-4.68,51.196],[-4.677,51.198],[-4.677,51.2],[-4.679,51.202],[-4.675,51.202],[-4.671,51.201],[-4.671,51.199],[-4.668,51.197],[-4.67,51.195],[-4.667,51.194],[-4.667,51.193],[-4.664,51.191],[-4.665,51.188],[-4.662,51.186],[-4.663,51.185],[-4.662,51.184],[-4.664,51.181],[-4.662,51.176],[-4.663,51.176],[-4.662,51.172],[-4.662,51.17],[-4.661,51.166],[-4.657,51.163],[-4.655,51.163],[-4.652,51.163],[-4.651,51.163]]],[[[-3.01,50.699],[-3.017,50.699],[-3.028,50.698],[-3.033,50.699],[-3.05,50.701],[-3.054,50.701],[-3.057,50.702],[-3.065,50.703],[-3.07,50.703],[-3.079,50.702],[-3.084,50.7],[-3.084,50.698],[-3.087,50.696],[-3.092,50.695],[-3.093,50.692],[-3.093,50.69],[-3.094,50.689],[-3.095,50.685],[-3.1,50.685],[-3.104,50.685],[-3.116,50.686],[-3.127,50.686],[-3.133,50.686],[-3.139,50.686],[-3.146,50.685],[-3.151,50.685],[-3.158,50.685],[-3.17,50.684],[-3.181,50.684],[-3.193,50.684],[-3.197,50.683],[-3.199,50.682],[-3.208,50.681],[-3.215,50.681],[-3.22,50.68],[-3.228,50.679],[-3.24,50.677],[-3.243,50.675],[-3.253,50.674],[-3.258,50.673],[-3.265,50.67],[-3.266,50.668],[-3.266,50.667],[-3.269,50.664],[-3.27,50.664],[-3.275,50.661],[-3.275,50.66],[-3.28,50.658],[-3.28,50.655],[-3.284,50.654],[-3.285,50.653],[-3.284,50.651],[-3.284,50.648],[-3.288,50.644],[-3.288,50.641],[-3.292,50.638],[-3.293,50.637],[-3.296,50.635],[-3.301,50.631],[-3.307,50.628],[-3.308,50.629],[-3.312,50.629],[-3.317,50.629],[-3.323,50.628],[-3.34,50.623],[-3.352,50.618],[-3.356,50.616],[-3.359,50.614],[-3.357,50.612],[-3.358,50.608],[-3.359,50.606],[-3.362,50.607],[-3.364,50.609],[-3.368,50.609],[-3.373,50.607],[-3.385,50.606],[-3.387,50.607],[-3.388,50.608],[-3.394,50.609],[-3.397,50.609],[-3.4,50.61],[-3.405,50.61],[-3.409,50.611],[-3.415,50.615],[-3.423,50.616],[-3.428,50.618],[-3.429,50.62],[-3.436,50.619],[-3.436,50.618],[-3.433,50.617],[-3.432,50.616],[-3.434,50.613],[-3.436,50.614],[-3.437,50.616],[-3.438,50.62],[-3.436,50.621],[-3.431,50.623],[-3.435,50.628],[-3.435,50.63],[-3.437,50.633],[-3.434,50.636],[-3.436,50.637],[-3.438,50.634],[-3.44,50.636],[-3.445,50.639],[-3.447,50.643],[-3.445,50.648],[-3.441,50.651],[-3.441,50.654],[-3.442,50.655],[-3.445,50.658],[-3.456,50.659],[-3.46,50.66],[-3.462,50.662],[-3.458,50.668],[-3.459,50.67],[-3.461,50.667],[-3.464,50.665],[-3.465,50.663],[-3.464,50.66],[-3.461,50.659],[-3.452,50.658],[-3.446,50.654],[-3.448,50.649],[-3.45,50.648],[-3.451,50.644],[-3.451,50.642],[-3.45,50.64],[-3.449,50.639],[-3.448,50.636],[-3.446,50.633],[-3.446,50.631],[-3.447,50.63],[-3.445,50.623],[-3.443,50.622],[-3.445,50.621],[-3.444,50.616],[-3.439,50.612],[-3.436,50.611],[-3.432,50.611],[-3.43,50.612],[-3.426,50.614],[-3.424,50.614],[-3.422,50.61],[-3.425,50.607],[-3.427,50.605],[-3.429,50.604],[-3.436,50.599],[-3.438,50.597],[-3.443,50.595],[-3.443,50.592],[-3.453,50.587],[-3.46,50.583],[-3.461,50.581],[-3.467,50.577],[-3.467,50.576],[-3.469,50.574],[-3.468,50.572],[-3.469,50.571],[-3.469,50.566],[-3.469,50.563],[-3.471,50.562],[-3.475,50.561],[-3.477,50.563],[-3.481,50.562],[-3.483,50.562],[-3.486,50.565],[-3.492,50.567],[-3.492,50.571],[-3.497,50.57],[-3.502,50.57],[-3.511,50.569],[-3.511,50.573],[-3.51,50.576],[-3.507,50.577],[-3.507,50.58],[-3.507,50.587],[-3.511,50.587],[-3.531,50.586],[-3.534,50.59],[-3.539,50.593],[-3.537,50.594],[-3.536,50.599],[-3.542,50.601],[-3.549,50.6],[-3.551,50.604],[-3.553,50.604],[-3.553,50.607],[-3.537,50.615],[-3.534,50.621],[-3.535,50.623],[-3.539,50.623],[-3.543,50.624],[-3.541,50.628],[-3.541,50.63],[-3.555,50.629],[-3.563,50.631],[-3.565,50.632],[-3.562,50.633],[-3.563,50.634],[-3.562,50.637],[-3.563,50.638],[-3.565,50.636],[-3.567,50.632],[-3.574,50.636],[-3.58,50.641],[-3.579,50.643],[-3.588,50.645],[-3.592,50.644],[-3.596,50.645],[-3.602,50.642],[-3.603,50.637],[-3.606,50.636],[-3.609,50.639],[-3.612,50.64],[-3.614,50.639],[-3.619,50.637],[-3.622,50.637],[-3.625,50.635],[-3.632,50.639],[-3.638,50.638],[-3.639,50.637],[-3.64,50.632],[-3.64,50.631],[-3.641,50.629],[-3.638,50.624],[-3.634,50.623],[-3.632,50.621],[-3.632,50.618],[-3.636,50.616],[-3.639,50.616],[-3.64,50.617],[-3.639,50.621],[-3.642,50.621],[-3.646,50.619],[-3.646,50.616],[-3.65,50.616],[-3.648,50.618],[-3.652,50.62],[-3.653,50.622],[-3.653,50.623],[-3.655,50.625],[-3.659,50.627],[-3.661,50.631],[-3.661,50.632],[-3.658,50.635],[-3.658,50.637],[-3.662,50.635],[-3.668,50.634],[-3.67,50.632],[-3.674,50.631],[-3.677,50.632],[-3.68,50.632],[-3.682,50.633],[-3.687,50.638],[-3.693,50.641],[-3.695,50.643],[-3.701,50.643],[-3.703,50.645],[-3.706,50.646],[-3.703,50.649],[-3.702,50.651],[-3.7,50.652],[-3.704,50.658],[-3.706,50.657],[-3.709,50.657],[-3.713,50.659],[-3.715,50.659],[-3.721,50.657],[-3.717,50.66],[-3.712,50.662],[-3.71,50.664],[-3.707,50.665],[-3.703,50.668],[-3.71,50.67],[-3.712,50.674],[-3.715,50.674],[-3.715,50.676],[-3.713,50.68],[-3.712,50.681],[-3.709,50.682],[-3.709,50.683],[-3.715,50.685],[-3.717,50.687],[-3.728,50.688],[-3.728,50.686],[-3.73,50.685],[-3.735,50.693],[-3.739,50.692],[-3.745,50.692],[-3.75,50.689],[-3.754,50.688],[-3.765,50.695],[-3.769,50.693],[-3.773,50.69],[-3.776,50.69],[-3.78,50.686],[-3.783,50.685],[-3.784,50.686],[-3.787,50.691],[-3.791,50.692],[-3.794,50.691],[-3.797,50.691],[-3.801,50.689],[-3.809,50.692],[-3.81,50.694],[-3.815,50.695],[-3.812,50.701],[-3.815,50.702],[-3.813,50.704],[-3.817,50.705],[-3.828,50.704],[-3.835,50.704],[-3.841,50.702],[-3.843,50.701],[-3.845,50.697],[-3.849,50.701],[-3.853,50.7],[-3.853,50.698],[-3.861,50.696],[-3.859,50.693],[-3.863,50.692],[-3.867,50.691],[-3.869,50.685],[-3.873,50.686],[-3.881,50.687],[-3.882,50.69],[-3.883,50.691],[-3.886,50.69],[-3.889,50.691],[-3.893,50.691],[-3.897,50.693],[-3.9,50.693],[-3.9,50.697],[-3.91,50.697],[-3.931,50.695],[-3.928,50.682],[-3.931,50.67],[-3.934,50.665],[-3.945,50.663],[-3.958,50.675],[-3.983,50.686],[-3.996,50.674],[-3.998,50.666],[-3.99,50.642],[-3.996,50.632],[-4.007,50.634],[-4.041,50.644],[-4.053,50.639],[-4.064,50.632],[-4.079,50.625],[-4.082,50.621],[-4.085,50.62],[-4.093,50.62],[-4.101,50.623],[-4.107,50.615],[-4.11,50.616],[-4.118,50.614],[-4.131,50.62],[-4.131,50.623],[-4.133,50.627],[-4.131,50.628],[-4.133,50.634],[-4.139,50.635],[-4.142,50.638],[-4.146,50.639],[-4.153,50.634],[-4.147,50.628],[-4.148,50.627],[-4.152,50.626],[-4.15,50.622],[-4.156,50.619],[-4.157,50.619],[-4.167,50.617],[-4.167,50.62],[-4.173,50.622],[-4.175,50.621],[-4.18,50.622],[-4.187,50.622],[-4.188,50.624],[-4.187,50.627],[-4.188,50.628],[-4.192,50.627],[-4.197,50.625],[-4.202,50.626],[-4.204,50.625],[-4.206,50.624],[-4.21,50.626],[-4.205,50.628],[-4.217,50.628],[-4.22,50.627],[-4.224,50.628],[-4.219,50.621],[-4.222,50.621],[-4.226,50.622],[-4.232,50.624],[-4.232,50.625],[-4.234,50.63],[-4.239,50.636],[-4.239,50.638],[-4.239,50.644],[-4.236,50.649],[-4.239,50.649],[-4.239,50.655],[-4.241,50.659],[-4.242,50.661],[-4.24,50.668],[-4.242,50.671],[-4.234,50.675],[-4.228,50.675],[-4.223,50.671],[-4.222,50.671],[-4.221,50.677],[-4.226,50.684],[-4.222,50.686],[-4.224,50.689],[-4.228,50.695],[-4.226,50.698],[-4.217,50.704],[-4.233,50.71],[-4.234,50.711],[-4.24,50.712],[-4.241,50.717],[-4.246,50.718],[-4.24,50.723],[-4.245,50.725],[-4.252,50.726],[-4.253,50.727],[-4.255,50.725],[-4.261,50.722],[-4.27,50.719],[-4.266,50.716],[-4.265,50.712],[-4.271,50.709],[-4.279,50.709],[-4.282,50.708],[-4.282,50.706],[-4.285,50.705],[-4.288,50.7],[-4.288,50.699],[-4.296,50.699],[-4.299,50.697],[-4.302,50.697],[-4.306,50.693],[-4.311,50.698],[-4.305,50.704],[-4.304,50.707],[-4.307,50.709],[-4.31,50.707],[-4.314,50.704],[-4.317,50.706],[-4.318,50.705],[-4.322,50.707],[-4.324,50.708],[-4.326,50.706],[-4.329,50.71],[-4.325,50.712],[-4.321,50.71],[-4.317,50.71],[-4.31,50.709],[-4.309,50.71],[-4.309,50.719],[-4.319,50.72],[-4.325,50.723],[-4.328,50.723],[-4.328,50.721],[-4.329,50.716],[-4.335,50.714],[-4.341,50.713],[-4.348,50.711],[-4.353,50.711],[-4.358,50.709],[-4.366,50.709],[-4.369,50.709],[-4.365,50.712],[-4.365,50.714],[-4.364,50.715],[-4.364,50.717],[-4.362,50.719],[-4.365,50.721],[-4.365,50.722],[-4.369,50.723],[-4.37,50.727],[-4.364,50.727],[-4.363,50.731],[-4.361,50.733],[-4.372,50.732],[-4.371,50.733],[-4.383,50.73],[-4.392,50.725],[-4.398,50.725],[-4.4,50.726],[-4.402,50.725],[-4.407,50.723],[-4.408,50.727],[-4.412,50.729],[-4.415,50.733],[-4.422,50.733],[-4.427,50.737],[-4.437,50.735],[-4.441,50.736],[-4.45,50.738],[-4.448,50.735],[-4.454,50.732],[-4.458,50.733],[-4.463,50.73],[-4.464,50.73],[-4.471,50.732],[-4.474,50.729],[-4.468,50.725],[-4.469,50.724],[-4.469,50.722],[-4.478,50.722],[-4.478,50.715],[-4.481,50.71],[-4.48,50.708],[-4.486,50.707],[-4.486,50.708],[-4.488,50.709],[-4.488,50.713],[-4.495,50.715],[-4.5,50.71],[-4.51,50.713],[-4.511,50.713],[-4.518,50.711],[-4.521,50.709],[-4.532,50.713],[-4.533,50.712],[-4.539,50.707],[-4.535,50.706],[-4.533,50.705],[-4.536,50.7],[-4.54,50.7],[-4.546,50.702],[-4.548,50.703],[-4.55,50.702],[-4.552,50.705],[-4.562,50.707],[-4.559,50.713],[-4.557,50.718],[-4.56,50.72],[-4.561,50.721],[-4.571,50.716],[-4.574,50.717],[-4.579,50.718],[-4.585,50.718],[-4.586,50.714],[-4.588,50.712],[-4.59,50.713],[-4.593,50.713],[-4.596,50.713],[-4.6,50.713],[-4.602,50.712],[-4.605,50.712],[-4.609,50.711],[-4.613,50.71],[-4.619,50.713],[-4.623,50.715],[-4.631,50.715],[-4.634,50.712],[-4.646,50.716],[-4.65,50.716],[-4.657,50.717],[-4.657,50.72],[-4.655,50.722],[-4.656,50.724],[-4.653,50.727],[-4.652,50.731],[-4.653,50.736],[-4.652,50.74],[-4.648,50.74],[-4.644,50.739],[-4.642,50.74],[-4.64,50.741],[-4.638,50.742],[-4.639,50.743],[-4.64,50.747],[-4.639,50.746],[-4.634,50.75],[-4.63,50.751],[-4.625,50.751],[-4.621,50.753],[-4.618,50.759],[-4.614,50.763],[-4.612,50.763],[-4.61,50.764],[-4.607,50.764],[-4.606,50.765],[-4.592,50.767],[-4.591,50.768],[-4.591,50.769],[-4.589,50.77],[-4.587,50.771],[-4.585,50.771],[-4.582,50.773],[-4.578,50.773],[-4.575,50.775],[-4.575,50.776],[-4.57,50.778],[-4.567,50.782],[-4.565,50.783],[-4.564,50.787],[-4.563,50.789],[-4.562,50.794],[-4.563,50.795],[-4.562,50.798],[-4.562,50.801],[-4.561,50.802],[-4.561,50.806],[-4.559,50.812],[-4.559,50.814],[-4.559,50.818],[-4.56,50.823],[-4.559,50.827],[-4.558,50.836],[-4.559,50.839],[-4.559,50.845],[-4.559,50.848],[-4.559,50.853],[-4.56,50.861],[-4.559,50.866],[-4.562,50.872],[-4.56,50.873],[-4.561,50.875],[-4.563,50.877],[-4.562,50.878],[-4.564,50.882],[-4.568,50.885],[-4.569,50.887],[-4.565,50.888],[-4.565,50.889],[-4.565,50.892],[-4.567,50.895],[-4.566,50.897],[-4.567,50.899],[-4.567,50.901],[-4.57,50.903],[-4.57,50.905],[-4.568,50.905],[-4.567,50.907],[-4.568,50.908],[-4.567,50.91],[-4.567,50.913],[-4.564,50.914],[-4.565,50.915],[-4.566,50.917],[-4.562,50.917],[-4.558,50.919],[-4.56,50.921],[-4.558,50.922],[-4.554,50.924],[-4.558,50.927],[-4.555,50.927],[-4.552,50.928],[-4.549,50.929],[-4.549,50.935],[-4.55,50.936],[-4.551,50.939],[-4.551,50.941],[-4.549,50.942],[-4.545,50.945],[-4.545,50.948],[-4.543,50.948],[-4.545,50.951],[-4.545,50.954],[-4.543,50.956],[-4.541,50.958],[-4.54,50.961],[-4.538,50.965],[-4.536,50.966],[-4.536,50.967],[-4.535,50.971],[-4.537,50.972],[-4.535,50.974],[-4.536,50.976],[-4.536,50.977],[-4.537,50.978],[-4.537,50.98],[-4.535,50.982],[-4.533,50.982],[-4.535,50.984],[-4.533,50.985],[-4.533,50.988],[-4.535,50.988],[-4.533,50.99],[-4.535,50.992],[-4.537,50.995],[-4.535,50.996],[-4.533,50.998],[-4.534,51],[-4.535,51.002],[-4.533,51.003],[-4.532,51.005],[-4.536,51.009],[-4.534,51.011],[-4.529,51.012],[-4.53,51.014],[-4.529,51.015],[-4.53,51.016],[-4.53,51.018],[-4.527,51.02],[-4.528,51.022],[-4.525,51.023],[-4.52,51.022],[-4.512,51.023],[-4.507,51.021],[-4.505,51.021],[-4.503,51.02],[-4.5,51.021],[-4.498,51.022],[-4.494,51.022],[-4.484,51.023],[-4.476,51.022],[-4.473,51.022],[-4.464,51.021],[-4.461,51.02],[-4.456,51.018],[-4.448,51.015],[-4.443,51.015],[-4.435,51.014],[-4.429,51.014],[-4.427,51.015],[-4.425,51.014],[-4.423,51.013],[-4.42,51.012],[-4.419,51.013],[-4.416,51.011],[-4.412,51.009],[-4.409,51.007],[-4.402,51.004],[-4.398,51],[-4.395,50.997],[-4.39,50.995],[-4.382,50.993],[-4.374,50.991],[-4.371,50.991],[-4.368,50.991],[-4.357,50.991],[-4.352,50.991],[-4.348,50.99],[-4.343,50.99],[-4.339,50.991],[-4.333,50.993],[-4.328,50.992],[-4.322,50.993],[-4.317,50.994],[-4.317,50.995],[-4.31,50.997],[-4.302,51],[-4.303,51.002],[-4.298,51.004],[-4.298,51.005],[-4.296,51.007],[-4.292,51.008],[-4.292,51.01],[-4.286,51.016],[-4.277,51.022],[-4.276,51.024],[-4.275,51.025],[-4.273,51.027],[-4.269,51.032],[-4.267,51.033],[-4.265,51.036],[-4.263,51.036],[-4.261,51.038],[-4.258,51.04],[-4.255,51.041],[-4.248,51.041],[-4.246,51.041],[-4.242,51.044],[-4.238,51.054],[-4.236,51.059],[-4.236,51.061],[-4.235,51.067],[-4.236,51.072],[-4.234,51.074],[-4.238,51.074],[-4.24,51.078],[-4.238,51.079],[-4.234,51.077],[-4.228,51.075],[-4.225,51.074],[-4.224,51.072],[-4.219,51.07],[-4.215,51.068],[-4.212,51.065],[-4.208,51.062],[-4.207,51.06],[-4.204,51.058],[-4.2,51.058],[-4.197,51.059],[-4.192,51.058],[-4.188,51.059],[-4.186,51.06],[-4.184,51.063],[-4.185,51.065],[-4.184,51.067],[-4.181,51.068],[-4.177,51.07],[-4.17,51.072],[-4.167,51.074],[-4.163,51.08],[-4.159,51.08],[-4.147,51.08],[-4.134,51.078],[-4.128,51.077],[-4.123,51.079],[-4.12,51.08],[-4.118,51.082],[-4.118,51.088],[-4.118,51.09],[-4.116,51.092],[-4.114,51.091],[-4.109,51.087],[-4.104,51.085],[-4.099,51.085],[-4.092,51.084],[-4.091,51.081],[-4.087,51.08],[-4.081,51.079],[-4.076,51.079],[-4.069,51.08],[-4.072,51.081],[-4.077,51.08],[-4.081,51.079],[-4.084,51.082],[-4.087,51.083],[-4.089,51.085],[-4.095,51.086],[-4.097,51.086],[-4.101,51.088],[-4.102,51.09],[-4.106,51.092],[-4.11,51.094],[-4.116,51.094],[-4.122,51.094],[-4.128,51.093],[-4.129,51.089],[-4.129,51.088],[-4.127,51.087],[-4.123,51.085],[-4.122,51.081],[-4.124,51.081],[-4.126,51.08],[-4.132,51.079],[-4.138,51.079],[-4.146,51.082],[-4.152,51.082],[-4.164,51.081],[-4.185,51.077],[-4.186,51.077],[-4.186,51.073],[-4.188,51.071],[-4.188,51.07],[-4.186,51.069],[-4.187,51.068],[-4.188,51.066],[-4.19,51.063],[-4.196,51.062],[-4.204,51.064],[-4.205,51.067],[-4.206,51.07],[-4.212,51.073],[-4.214,51.074],[-4.217,51.075],[-4.223,51.077],[-4.228,51.081],[-4.236,51.085],[-4.241,51.087],[-4.243,51.088],[-4.24,51.089],[-4.235,51.093],[-4.235,51.094],[-4.232,51.102],[-4.231,51.112],[-4.231,51.117],[-4.232,51.118],[-4.24,51.12],[-4.242,51.122],[-4.244,51.122],[-4.246,51.125],[-4.244,51.128],[-4.245,51.134],[-4.251,51.138],[-4.257,51.139],[-4.261,51.142],[-4.261,51.144],[-4.256,51.147],[-4.246,51.146],[-4.239,51.146],[-4.238,51.146],[-4.233,51.145],[-4.231,51.146],[-4.228,51.145],[-4.225,51.148],[-4.221,51.152],[-4.218,51.16],[-4.216,51.169],[-4.215,51.171],[-4.216,51.177],[-4.217,51.182],[-4.22,51.184],[-4.223,51.185],[-4.227,51.185],[-4.228,51.186],[-4.233,51.188],[-4.228,51.19],[-4.224,51.189],[-4.223,51.19],[-4.214,51.19],[-4.21,51.193],[-4.211,51.195],[-4.207,51.196],[-4.204,51.201],[-4.201,51.201],[-4.197,51.2],[-4.193,51.2],[-4.191,51.2],[-4.189,51.2],[-4.184,51.201],[-4.182,51.199],[-4.175,51.199],[-4.172,51.202],[-4.167,51.203],[-4.161,51.203],[-4.155,51.205],[-4.152,51.204],[-4.148,51.204],[-4.145,51.206],[-4.143,51.208],[-4.14,51.207],[-4.137,51.209],[-4.133,51.21],[-4.129,51.212],[-4.126,51.211],[-4.122,51.212],[-4.122,51.213],[-4.116,51.211],[-4.112,51.212],[-4.111,51.21],[-4.104,51.212],[-4.102,51.214],[-4.098,51.212],[-4.09,51.216],[-4.09,51.218],[-4.084,51.216],[-4.083,51.217],[-4.08,51.218],[-4.076,51.216],[-4.074,51.217],[-4.072,51.218],[-4.068,51.216],[-4.065,51.215],[-4.06,51.212],[-4.058,51.213],[-4.055,51.212],[-4.054,51.21],[-4.051,51.208],[-4.048,51.209],[-4.043,51.208],[-4.041,51.21],[-4.036,51.211],[-4.032,51.212],[-4.032,51.215],[-4.031,51.216],[-4.027,51.217],[-4.024,51.216],[-4.021,51.217],[-4.016,51.217],[-4.014,51.218],[-4.009,51.217],[-4.007,51.217],[-4.004,51.219],[-4.001,51.22],[-4,51.219],[-3.991,51.218],[-3.988,51.219],[-3.983,51.219],[-3.982,51.22],[-3.978,51.22],[-3.976,51.221],[-3.974,51.22],[-3.968,51.22],[-3.967,51.22],[-3.958,51.22],[-3.957,51.221],[-3.948,51.222],[-3.946,51.224],[-3.943,51.226],[-3.942,51.227],[-3.939,51.229],[-3.929,51.23],[-3.927,51.232],[-3.919,51.231],[-3.914,51.231],[-3.907,51.23],[-3.904,51.23],[-3.902,51.229],[-3.9,51.227],[-3.893,51.225],[-3.885,51.227],[-3.88,51.23],[-3.878,51.228],[-3.873,51.229],[-3.872,51.231],[-3.864,51.232],[-3.861,51.232],[-3.859,51.233],[-3.856,51.234],[-3.852,51.235],[-3.845,51.236],[-3.836,51.236],[-3.83,51.236],[-3.827,51.235],[-3.821,51.233],[-3.817,51.232],[-3.813,51.233],[-3.81,51.232],[-3.804,51.235],[-3.801,51.238],[-3.796,51.241],[-3.792,51.243],[-3.788,51.245],[-3.785,51.247],[-3.784,51.25],[-3.782,51.251],[-3.779,51.251],[-3.773,51.255],[-3.77,51.254],[-3.768,51.253],[-3.764,51.248],[-3.759,51.245],[-3.756,51.245],[-3.751,51.243],[-3.747,51.241],[-3.739,51.238],[-3.735,51.236],[-3.728,51.236],[-3.722,51.235],[-3.719,51.233],[-3.715,51.232],[-3.709,51.233],[-3.706,51.232],[-3.7,51.232],[-3.702,51.229],[-3.701,51.222],[-3.702,51.221],[-3.699,51.219],[-3.701,51.217],[-3.695,51.209],[-3.688,51.205],[-3.68,51.205],[-3.676,51.205],[-3.672,51.206],[-3.666,51.205],[-3.664,51.209],[-3.659,51.208],[-3.655,51.207],[-3.653,51.207],[-3.649,51.208],[-3.643,51.207],[-3.638,51.207],[-3.639,51.204],[-3.642,51.204],[-3.645,51.202],[-3.65,51.202],[-3.653,51.201],[-3.655,51.199],[-3.653,51.192],[-3.654,51.189],[-3.654,51.185],[-3.654,51.183],[-3.699,51.177],[-3.701,51.177],[-3.724,51.18],[-3.737,51.18],[-3.743,51.182],[-3.774,51.184],[-3.775,51.184],[-3.778,51.187],[-3.778,51.189],[-3.795,51.189],[-3.806,51.187],[-3.81,51.184],[-3.825,51.172],[-3.836,51.173],[-3.841,51.172],[-3.847,51.172],[-3.849,51.154],[-3.843,51.155],[-3.839,51.154],[-3.833,51.152],[-3.832,51.151],[-3.842,51.137],[-3.844,51.135],[-3.837,51.13],[-3.828,51.129],[-3.827,51.127],[-3.822,51.124],[-3.817,51.121],[-3.815,51.119],[-3.815,51.116],[-3.813,51.115],[-3.806,51.113],[-3.799,51.112],[-3.794,51.11],[-3.788,51.108],[-3.782,51.106],[-3.777,51.106],[-3.77,51.106],[-3.767,51.106],[-3.764,51.104],[-3.757,51.1],[-3.755,51.101],[-3.752,51.103],[-3.744,51.107],[-3.729,51.11],[-3.727,51.109],[-3.725,51.108],[-3.715,51.103],[-3.709,51.101],[-3.71,51.099],[-3.712,51.094],[-3.714,51.092],[-3.702,51.097],[-3.697,51.097],[-3.684,51.097],[-3.678,51.097],[-3.676,51.097],[-3.673,51.094],[-3.67,51.08],[-3.67,51.077],[-3.676,51.075],[-3.683,51.075],[-3.686,51.076],[-3.689,51.076],[-3.697,51.074],[-3.696,51.072],[-3.698,51.068],[-3.701,51.061],[-3.698,51.062],[-3.691,51.061],[-3.686,51.061],[-3.677,51.059],[-3.673,51.058],[-3.66,51.055],[-3.642,51.051],[-3.623,51.046],[-3.616,51.045],[-3.607,51.044],[-3.606,51.043],[-3.616,51.042],[-3.627,51.042],[-3.631,51.043],[-3.631,51.039],[-3.633,51.034],[-3.632,51.032],[-3.627,51.034],[-3.62,51.033],[-3.618,51.03],[-3.616,51.029],[-3.612,51.029],[-3.61,51.027],[-3.607,51.027],[-3.606,51.025],[-3.608,51.025],[-3.609,51.023],[-3.607,51.021],[-3.603,51.02],[-3.603,51.015],[-3.601,51.013],[-3.595,51.014],[-3.588,51.016],[-3.584,51.016],[-3.58,51.015],[-3.581,51.012],[-3.584,51.007],[-3.58,51.007],[-3.573,51.007],[-3.569,51.004],[-3.568,51.003],[-3.566,50.998],[-3.564,50.997],[-3.561,50.999],[-3.558,51.002],[-3.554,50.998],[-3.549,50.998],[-3.546,50.999],[-3.536,51],[-3.534,51.002],[-3.522,51],[-3.52,51.001],[-3.521,51.002],[-3.517,51.002],[-3.513,51.005],[-3.511,51.008],[-3.508,51.012],[-3.508,51.015],[-3.503,51.014],[-3.503,51.015],[-3.504,51.019],[-3.5,51.022],[-3.498,51.022],[-3.498,51.025],[-3.493,51.029],[-3.494,51.034],[-3.492,51.035],[-3.489,51.037],[-3.487,51.038],[-3.483,51.033],[-3.478,51.03],[-3.475,51.032],[-3.473,51.024],[-3.463,51.028],[-3.462,51.028],[-3.463,51.022],[-3.462,51.022],[-3.457,51.02],[-3.456,51.02],[-3.457,51.015],[-3.453,51.018],[-3.449,51.02],[-3.444,51.021],[-3.441,51.022],[-3.439,51.023],[-3.437,51.028],[-3.434,51.027],[-3.429,51.023],[-3.426,51.021],[-3.42,51.023],[-3.418,51.021],[-3.414,51.02],[-3.412,51.022],[-3.401,51.023],[-3.397,51.024],[-3.394,51.022],[-3.387,51.019],[-3.388,51.016],[-3.395,51.012],[-3.393,51.01],[-3.389,51.01],[-3.387,51.01],[-3.386,51.012],[-3.383,51.011],[-3.379,51.011],[-3.38,51.009],[-3.376,51.004],[-3.382,51.001],[-3.384,50.997],[-3.382,50.994],[-3.38,50.993],[-3.382,50.992],[-3.382,50.989],[-3.379,50.987],[-3.38,50.984],[-3.39,50.985],[-3.393,50.983],[-3.402,50.981],[-3.4,50.976],[-3.395,50.974],[-3.393,50.972],[-3.395,50.97],[-3.394,50.966],[-3.395,50.963],[-3.394,50.961],[-3.392,50.958],[-3.39,50.962],[-3.391,50.964],[-3.388,50.969],[-3.387,50.969],[-3.388,50.966],[-3.387,50.966],[-3.386,50.963],[-3.386,50.961],[-3.384,50.96],[-3.378,50.959],[-3.376,50.96],[-3.374,50.958],[-3.372,50.956],[-3.373,50.952],[-3.369,50.954],[-3.365,50.954],[-3.358,50.952],[-3.361,50.95],[-3.354,50.948],[-3.354,50.95],[-3.35,50.951],[-3.342,50.952],[-3.339,50.953],[-3.335,50.957],[-3.334,50.959],[-3.332,50.96],[-3.328,50.955],[-3.324,50.955],[-3.323,50.953],[-3.315,50.953],[-3.313,50.954],[-3.311,50.953],[-3.308,50.954],[-3.304,50.957],[-3.3,50.957],[-3.299,50.957],[-3.298,50.953],[-3.306,50.949],[-3.298,50.948],[-3.3,50.944],[-3.293,50.944],[-3.29,50.945],[-3.289,50.942],[-3.29,50.939],[-3.292,50.935],[-3.286,50.935],[-3.283,50.935],[-3.281,50.933],[-3.279,50.937],[-3.276,50.936],[-3.263,50.935],[-3.26,50.938],[-3.258,50.94],[-3.25,50.937],[-3.243,50.936],[-3.244,50.94],[-3.243,50.943],[-3.239,50.944],[-3.236,50.942],[-3.233,50.944],[-3.23,50.945],[-3.227,50.944],[-3.227,50.941],[-3.226,50.94],[-3.221,50.94],[-3.218,50.943],[-3.2,50.947],[-3.191,50.948],[-3.186,50.949],[-3.172,50.947],[-3.164,50.948],[-3.156,50.946],[-3.157,50.944],[-3.162,50.941],[-3.166,50.934],[-3.166,50.932],[-3.17,50.935],[-3.174,50.934],[-3.174,50.933],[-3.173,50.929],[-3.173,50.927],[-3.175,50.924],[-3.174,50.923],[-3.175,50.922],[-3.182,50.92],[-3.182,50.918],[-3.184,50.915],[-3.186,50.913],[-3.188,50.91],[-3.186,50.91],[-3.182,50.913],[-3.181,50.911],[-3.179,50.908],[-3.176,50.908],[-3.173,50.908],[-3.175,50.905],[-3.174,50.9],[-3.17,50.9],[-3.166,50.896],[-3.164,50.893],[-3.162,50.894],[-3.16,50.896],[-3.154,50.896],[-3.152,50.895],[-3.147,50.893],[-3.144,50.896],[-3.14,50.898],[-3.136,50.897],[-3.137,50.894],[-3.132,50.891],[-3.126,50.89],[-3.124,50.89],[-3.123,50.888],[-3.117,50.893],[-3.114,50.894],[-3.113,50.891],[-3.11,50.89],[-3.107,50.896],[-3.106,50.897],[-3.103,50.897],[-3.099,50.898],[-3.101,50.899],[-3.095,50.904],[-3.092,50.904],[-3.087,50.9],[-3.081,50.897],[-3.078,50.897],[-3.074,50.897],[-3.069,50.895],[-3.063,50.897],[-3.062,50.898],[-3.06,50.898],[-3.06,50.896],[-3.053,50.895],[-3.055,50.893],[-3.054,50.886],[-3.052,50.886],[-3.05,50.879],[-3.052,50.879],[-3.052,50.876],[-3.053,50.873],[-3.051,50.872],[-3.042,50.871],[-3.042,50.869],[-3.037,50.868],[-3.039,50.866],[-3.037,50.864],[-3.04,50.86],[-3.036,50.858],[-3.03,50.861],[-3.026,50.854],[-3.022,50.848],[-3.017,50.848],[-3.012,50.853],[-3.01,50.851],[-3.005,50.852],[-2.999,50.851],[-2.998,50.851],[-3.001,50.848],[-3.001,50.846],[-2.998,50.845],[-2.994,50.846],[-2.992,50.844],[-2.989,50.844],[-2.985,50.845],[-2.985,50.847],[-2.987,50.85],[-2.985,50.85],[-2.989,50.853],[-2.991,50.856],[-2.993,50.859],[-2.995,50.86],[-2.992,50.863],[-2.988,50.866],[-2.985,50.867],[-2.983,50.866],[-2.979,50.863],[-2.974,50.862],[-2.973,50.857],[-2.975,50.852],[-2.971,50.852],[-2.974,50.848],[-2.969,50.847],[-2.969,50.845],[-2.971,50.841],[-2.97,50.835],[-2.963,50.832],[-2.963,50.831],[-2.966,50.827],[-2.965,50.826],[-2.961,50.826],[-2.959,50.825],[-2.962,50.823],[-2.961,50.822],[-2.956,50.82],[-2.952,50.824],[-2.947,50.823],[-2.944,50.818],[-2.941,50.818],[-2.94,50.816],[-2.936,50.812],[-2.937,50.811],[-2.932,50.808],[-2.93,50.807],[-2.924,50.813],[-2.919,50.813],[-2.916,50.814],[-2.915,50.813],[-2.914,50.81],[-2.913,50.804],[-2.911,50.804],[-2.91,50.806],[-2.907,50.805],[-2.901,50.806],[-2.899,50.808],[-2.895,50.81],[-2.893,50.802],[-2.891,50.804],[-2.885,50.806],[-2.878,50.802],[-2.882,50.801],[-2.888,50.799],[-2.894,50.8],[-2.893,50.798],[-2.893,50.796],[-2.893,50.795],[-2.889,50.794],[-2.893,50.791],[-2.895,50.788],[-2.904,50.786],[-2.906,50.785],[-2.904,50.783],[-2.908,50.778],[-2.908,50.776],[-2.915,50.773],[-2.916,50.772],[-2.924,50.773],[-2.925,50.773],[-2.93,50.776],[-2.933,50.774],[-2.937,50.776],[-2.938,50.775],[-2.941,50.778],[-2.949,50.772],[-2.955,50.768],[-2.956,50.765],[-2.955,50.764],[-2.954,50.761],[-2.954,50.759],[-2.96,50.758],[-2.959,50.756],[-2.96,50.755],[-2.967,50.756],[-2.968,50.753],[-2.971,50.753],[-2.974,50.754],[-2.977,50.753],[-2.981,50.749],[-2.983,50.745],[-2.984,50.743],[-2.982,50.741],[-2.986,50.74],[-2.985,50.739],[-2.985,50.734],[-2.989,50.732],[-2.99,50.729],[-2.993,50.729],[-2.999,50.733],[-3.003,50.729],[-3.003,50.727],[-3.001,50.727],[-2.995,50.727],[-2.995,50.726],[-3.001,50.723],[-3.002,50.722],[-3.004,50.72],[-3.009,50.722],[-3.012,50.725],[-3.016,50.725],[-3.019,50.728],[-3.022,50.727],[-3.024,50.724],[-3.025,50.719],[-3.028,50.715],[-3.03,50.712],[-3.025,50.711],[-3.018,50.711],[-3.015,50.71],[-3.014,50.709],[-3.012,50.709],[-3.013,50.707],[-3.012,50.703],[-3.01,50.699]]]]},"properties":{"OBJECTID":36,"NAME":"EX","KEY":"EX","Shape_Leng":8.58443,"Shape_Area":0.621607}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.811,56.108],[-3.812,56.108],[-3.813,56.104],[-3.816,56.103],[-3.82,56.102],[-3.821,56.104],[-3.819,56.109],[-3.816,56.11],[-3.814,56.109],[-3.811,56.108]]],[[[-3.505,56.26],[-3.536,56.252],[-3.53,56.247],[-3.548,56.232],[-3.56,56.227],[-3.565,56.226],[-3.566,56.224],[-3.572,56.219],[-3.579,56.216],[-3.583,56.215],[-3.594,56.215],[-3.593,56.204],[-3.594,56.199],[-3.596,56.199],[-3.597,56.197],[-3.599,56.196],[-3.602,56.192],[-3.598,56.187],[-3.596,56.185],[-3.589,56.181],[-3.593,56.181],[-3.606,56.182],[-3.608,56.179],[-3.616,56.176],[-3.62,56.175],[-3.614,56.17],[-3.612,56.169],[-3.606,56.169],[-3.602,56.17],[-3.6,56.165],[-3.591,56.166],[-3.589,56.167],[-3.59,56.168],[-3.584,56.171],[-3.582,56.171],[-3.581,56.169],[-3.579,56.166],[-3.575,56.168],[-3.57,56.166],[-3.566,56.163],[-3.563,56.163],[-3.559,56.164],[-3.553,56.162],[-3.551,56.163],[-3.55,56.156],[-3.546,56.154],[-3.549,56.153],[-3.554,56.149],[-3.544,56.146],[-3.555,56.145],[-3.555,56.147],[-3.561,56.148],[-3.567,56.151],[-3.577,56.155],[-3.583,56.153],[-3.583,56.146],[-3.579,56.144],[-3.578,56.142],[-3.584,56.136],[-3.588,56.137],[-3.603,56.131],[-3.608,56.133],[-3.609,56.137],[-3.618,56.139],[-3.62,56.138],[-3.622,56.139],[-3.63,56.138],[-3.631,56.137],[-3.634,56.13],[-3.639,56.133],[-3.64,56.132],[-3.648,56.128],[-3.651,56.127],[-3.641,56.119],[-3.646,56.119],[-3.657,56.112],[-3.653,56.11],[-3.647,56.104],[-3.641,56.103],[-3.634,56.098],[-3.639,56.093],[-3.642,56.093],[-3.644,56.092],[-3.647,56.09],[-3.642,56.088],[-3.638,56.085],[-3.645,56.081],[-3.645,56.078],[-3.644,56.077],[-3.652,56.07],[-3.664,56.066],[-3.664,56.065],[-3.677,56.063],[-3.684,56.064],[-3.682,56.062],[-3.679,56.063],[-3.668,56.059],[-3.67,56.057],[-3.666,56.055],[-3.665,56.053],[-3.661,56.052],[-3.658,56.052],[-3.653,56.046],[-3.655,56.044],[-3.657,56.044],[-3.664,56.044],[-3.668,56.046],[-3.672,56.045],[-3.678,56.045],[-3.683,56.047],[-3.688,56.047],[-3.696,56.049],[-3.702,56.052],[-3.706,56.054],[-3.706,56.055],[-3.712,56.059],[-3.724,56.066],[-3.724,56.069],[-3.726,56.069],[-3.738,56.077],[-3.739,56.078],[-3.747,56.079],[-3.752,56.081],[-3.762,56.085],[-3.769,56.088],[-3.774,56.092],[-3.776,56.094],[-3.779,56.096],[-3.785,56.099],[-3.791,56.105],[-3.795,56.107],[-3.799,56.109],[-3.814,56.112],[-3.818,56.112],[-3.821,56.11],[-3.823,56.109],[-3.826,56.104],[-3.829,56.103],[-3.833,56.105],[-3.831,56.107],[-3.829,56.108],[-3.826,56.111],[-3.826,56.114],[-3.83,56.116],[-3.834,56.118],[-3.84,56.119],[-3.847,56.121],[-3.853,56.121],[-3.857,56.12],[-3.859,56.118],[-3.859,56.116],[-3.857,56.113],[-3.857,56.112],[-3.859,56.109],[-3.864,56.107],[-3.867,56.107],[-3.871,56.109],[-3.87,56.111],[-3.865,56.113],[-3.863,56.114],[-3.862,56.117],[-3.864,56.119],[-3.867,56.121],[-3.872,56.121],[-3.875,56.12],[-3.877,56.121],[-3.879,56.125],[-3.881,56.127],[-3.885,56.13],[-3.888,56.131],[-3.892,56.13],[-3.895,56.127],[-3.9,56.122],[-3.903,56.121],[-3.906,56.122],[-3.905,56.123],[-3.902,56.124],[-3.901,56.125],[-3.903,56.127],[-3.908,56.129],[-3.912,56.128],[-3.916,56.123],[-3.916,56.121],[-3.914,56.121],[-3.913,56.124],[-3.911,56.128],[-3.908,56.129],[-3.904,56.127],[-3.902,56.125],[-3.903,56.124],[-3.908,56.123],[-3.906,56.121],[-3.902,56.121],[-3.899,56.122],[-3.893,56.127],[-3.89,56.13],[-3.888,56.13],[-3.883,56.127],[-3.881,56.125],[-3.881,56.121],[-3.879,56.119],[-3.876,56.119],[-3.868,56.12],[-3.867,56.12],[-3.864,56.116],[-3.865,56.115],[-3.871,56.112],[-3.873,56.111],[-3.873,56.109],[-3.871,56.107],[-3.864,56.106],[-3.859,56.107],[-3.856,56.109],[-3.854,56.113],[-3.854,56.115],[-3.855,56.117],[-3.854,56.119],[-3.848,56.118],[-3.84,56.116],[-3.837,56.115],[-3.837,56.114],[-3.84,56.109],[-3.841,56.106],[-3.84,56.104],[-3.836,56.101],[-3.83,56.099],[-3.819,56.1],[-3.813,56.101],[-3.809,56.103],[-3.805,56.106],[-3.802,56.106],[-3.799,56.104],[-3.796,56.1],[-3.794,56.098],[-3.792,56.095],[-3.787,56.092],[-3.779,56.087],[-3.775,56.084],[-3.774,56.082],[-3.768,56.078],[-3.755,56.072],[-3.744,56.069],[-3.735,56.067],[-3.732,56.065],[-3.728,56.062],[-3.725,56.056],[-3.72,56.05],[-3.716,56.047],[-3.711,56.044],[-3.708,56.042],[-3.7,56.039],[-3.693,56.038],[-3.685,56.039],[-3.678,56.037],[-3.643,56.032],[-3.648,56.029],[-3.648,56.027],[-3.651,56.023],[-3.652,56.02],[-3.655,56.012],[-3.658,56.01],[-3.664,56.009],[-3.669,56.009],[-3.67,56.008],[-3.67,56.003],[-3.667,56.003],[-3.666,56.001],[-3.657,56.002],[-3.653,56.003],[-3.655,55.998],[-3.654,55.996],[-3.659,55.993],[-3.66,55.991],[-3.66,55.989],[-3.653,55.986],[-3.664,55.986],[-3.662,55.979],[-3.666,55.979],[-3.685,55.981],[-3.684,55.979],[-3.681,55.979],[-3.675,55.974],[-3.674,55.972],[-3.683,55.973],[-3.684,55.973],[-3.686,55.971],[-3.688,55.971],[-3.69,55.965],[-3.685,55.963],[-3.682,55.963],[-3.681,55.964],[-3.677,55.963],[-3.681,55.96],[-3.682,55.958],[-3.676,55.956],[-3.669,55.957],[-3.661,55.954],[-3.663,55.953],[-3.656,55.95],[-3.657,55.948],[-3.662,55.946],[-3.666,55.943],[-3.669,55.943],[-3.674,55.943],[-3.675,55.941],[-3.675,55.939],[-3.678,55.939],[-3.687,55.941],[-3.696,55.939],[-3.704,55.941],[-3.712,55.939],[-3.709,55.935],[-3.711,55.934],[-3.717,55.931],[-3.71,55.931],[-3.719,55.928],[-3.724,55.928],[-3.725,55.925],[-3.728,55.924],[-3.728,55.918],[-3.732,55.918],[-3.736,55.916],[-3.74,55.913],[-3.74,55.902],[-3.743,55.901],[-3.75,55.897],[-3.756,55.897],[-3.759,55.897],[-3.769,55.899],[-3.771,55.895],[-3.774,55.894],[-3.784,55.893],[-3.788,55.894],[-3.794,55.9],[-3.799,55.899],[-3.802,55.893],[-3.814,55.89],[-3.813,55.889],[-3.816,55.884],[-3.824,55.884],[-3.834,55.884],[-3.836,55.888],[-3.834,55.889],[-3.836,55.893],[-3.838,55.894],[-3.841,55.898],[-3.855,55.904],[-3.852,55.906],[-3.846,55.909],[-3.85,55.914],[-3.853,55.916],[-3.854,55.918],[-3.852,55.919],[-3.859,55.923],[-3.863,55.927],[-3.864,55.93],[-3.87,55.928],[-3.875,55.926],[-3.876,55.926],[-3.875,55.923],[-3.886,55.92],[-3.893,55.921],[-3.894,55.925],[-3.899,55.924],[-3.905,55.929],[-3.906,55.93],[-3.909,55.929],[-3.922,55.93],[-3.927,55.933],[-3.927,55.934],[-3.929,55.938],[-3.926,55.945],[-3.931,55.947],[-3.921,55.948],[-3.905,55.951],[-3.896,55.956],[-3.892,55.953],[-3.891,55.951],[-3.888,55.952],[-3.883,55.949],[-3.886,55.963],[-3.889,55.964],[-3.895,55.966],[-3.899,55.968],[-3.908,55.971],[-3.914,55.971],[-3.921,55.966],[-3.931,55.963],[-3.935,55.964],[-3.93,55.966],[-3.933,55.968],[-3.935,55.969],[-3.942,55.969],[-3.944,55.969],[-3.949,55.97],[-3.952,55.969],[-3.951,55.971],[-3.948,55.973],[-3.942,55.977],[-3.938,55.981],[-3.944,55.982],[-3.943,55.983],[-3.944,55.985],[-3.951,55.983],[-3.955,55.984],[-3.96,55.986],[-3.962,55.986],[-3.959,55.982],[-3.962,55.98],[-3.965,55.979],[-3.972,55.979],[-3.976,55.98],[-3.984,55.978],[-3.987,55.982],[-3.973,55.985],[-3.974,55.988],[-3.977,55.987],[-3.994,55.984],[-3.995,55.985],[-3.992,55.987],[-3.994,55.989],[-3.991,55.991],[-3.982,55.992],[-3.973,56.001],[-3.973,56.002],[-3.98,56.004],[-3.993,56.003],[-3.997,56.003],[-3.998,56.006],[-3.999,56.014],[-4,56.021],[-4.013,56.019],[-4.025,56.016],[-4.027,56.013],[-4.032,56.008],[-4.033,56.005],[-4.068,56.01],[-4.071,56.009],[-4.081,56.009],[-4.112,56.018],[-4.113,56.019],[-4.107,56.027],[-4.101,56.027],[-4.1,56.026],[-4.102,56.024],[-4.101,56.023],[-4.097,56.022],[-4.095,56.023],[-4.091,56.022],[-4.09,56.023],[-4.087,56.024],[-4.079,56.025],[-4.073,56.025],[-4.062,56.027],[-4.06,56.028],[-4.059,56.03],[-4.06,56.031],[-4.066,56.031],[-4.083,56.03],[-4.089,56.03],[-4.096,56.032],[-4.101,56.035],[-4.104,56.038],[-4.108,56.039],[-4.111,56.042],[-4.117,56.045],[-4.121,56.046],[-4.125,56.047],[-4.121,56.049],[-4.119,56.049],[-4.115,56.05],[-4.115,56.053],[-4.11,56.056],[-4.107,56.056],[-4.101,56.057],[-4.092,56.056],[-4.131,56.085],[-4.148,56.077],[-4.165,56.073],[-4.172,56.073],[-4.176,56.073],[-4.182,56.073],[-4.199,56.076],[-4.212,56.089],[-4.223,56.097],[-4.223,56.095],[-4.245,56.101],[-4.247,56.1],[-4.253,56.097],[-4.265,56.088],[-4.274,56.087],[-4.277,56.088],[-4.277,56.089],[-4.29,56.097],[-4.3,56.099],[-4.311,56.099],[-4.312,56.101],[-4.323,56.103],[-4.326,56.105],[-4.332,56.104],[-4.341,56.1],[-4.344,56.102],[-4.346,56.104],[-4.35,56.105],[-4.352,56.107],[-4.356,56.108],[-4.355,56.112],[-4.359,56.114],[-4.359,56.119],[-4.35,56.118],[-4.347,56.118],[-4.344,56.116],[-4.337,56.113],[-4.335,56.115],[-4.33,56.115],[-4.326,56.117],[-4.327,56.117],[-4.324,56.12],[-4.329,56.121],[-4.328,56.123],[-4.322,56.133],[-4.332,56.132],[-4.342,56.129],[-4.354,56.127],[-4.359,56.127],[-4.358,56.131],[-4.36,56.131],[-4.372,56.125],[-4.368,56.121],[-4.362,56.122],[-4.36,56.12],[-4.368,56.121],[-4.372,56.117],[-4.383,56.112],[-4.402,56.115],[-4.406,56.111],[-4.414,56.107],[-4.419,56.105],[-4.421,56.103],[-4.426,56.1],[-4.429,56.102],[-4.452,56.106],[-4.461,56.112],[-4.504,56.124],[-4.505,56.13],[-4.524,56.139],[-4.561,56.152],[-4.569,56.161],[-4.583,56.167],[-4.587,56.17],[-4.596,56.173],[-4.612,56.178],[-4.628,56.186],[-4.651,56.172],[-4.654,56.17],[-4.659,56.173],[-4.666,56.177],[-4.67,56.181],[-4.674,56.183],[-4.677,56.185],[-4.681,56.192],[-4.682,56.197],[-4.687,56.199],[-4.688,56.202],[-4.686,56.205],[-4.682,56.207],[-4.678,56.211],[-4.676,56.217],[-4.678,56.221],[-4.677,56.223],[-4.679,56.225],[-4.68,56.23],[-4.682,56.232],[-4.682,56.234],[-4.685,56.238],[-4.686,56.241],[-4.684,56.243],[-4.688,56.243],[-4.687,56.247],[-4.691,56.249],[-4.693,56.252],[-4.695,56.254],[-4.695,56.256],[-4.692,56.261],[-4.692,56.268],[-4.694,56.269],[-4.693,56.275],[-4.692,56.278],[-4.693,56.281],[-4.694,56.284],[-4.699,56.286],[-4.7,56.288],[-4.699,56.294],[-4.658,56.282],[-4.646,56.313],[-4.641,56.322],[-4.634,56.324],[-4.623,56.327],[-4.672,56.361],[-4.668,56.362],[-4.682,56.37],[-4.711,56.386],[-4.712,56.386],[-4.734,56.381],[-4.776,56.376],[-4.801,56.372],[-4.814,56.373],[-4.838,56.415],[-4.841,56.42],[-4.845,56.416],[-4.85,56.413],[-4.852,56.411],[-4.854,56.412],[-4.849,56.414],[-4.846,56.417],[-4.843,56.419],[-4.842,56.421],[-4.837,56.423],[-4.844,56.447],[-4.851,56.45],[-4.847,56.454],[-4.845,56.454],[-4.84,56.457],[-4.838,56.464],[-4.834,56.466],[-4.83,56.47],[-4.83,56.471],[-4.826,56.472],[-4.827,56.474],[-4.825,56.476],[-4.821,56.477],[-4.817,56.481],[-4.814,56.482],[-4.813,56.484],[-4.797,56.476],[-4.781,56.469],[-4.734,56.48],[-4.732,56.478],[-4.727,56.473],[-4.725,56.469],[-4.725,56.466],[-4.72,56.464],[-4.716,56.462],[-4.715,56.462],[-4.716,56.467],[-4.683,56.474],[-4.671,56.473],[-4.643,56.465],[-4.613,56.485],[-4.585,56.504],[-4.573,56.515],[-4.547,56.513],[-4.52,56.515],[-4.521,56.517],[-4.525,56.518],[-4.525,56.52],[-4.523,56.523],[-4.521,56.527],[-4.489,56.521],[-4.483,56.52],[-4.459,56.52],[-4.446,56.522],[-4.438,56.524],[-4.422,56.523],[-4.411,56.524],[-4.402,56.525],[-4.378,56.528],[-4.372,56.529],[-4.368,56.529],[-4.33,56.545],[-4.326,56.546],[-4.308,56.547],[-4.31,56.548],[-4.311,56.552],[-4.279,56.563],[-4.26,56.564],[-4.235,56.563],[-4.205,56.559],[-4.202,56.547],[-4.202,56.543],[-4.219,56.528],[-4.233,56.52],[-4.233,56.519],[-4.217,56.507],[-4.216,56.507],[-4.214,56.498],[-4.218,56.497],[-4.227,56.496],[-4.231,56.496],[-4.238,56.495],[-4.244,56.493],[-4.247,56.493],[-4.256,56.491],[-4.26,56.487],[-4.269,56.486],[-4.277,56.485],[-4.278,56.483],[-4.284,56.484],[-4.291,56.482],[-4.296,56.482],[-4.304,56.479],[-4.305,56.478],[-4.305,56.475],[-4.301,56.472],[-4.304,56.472],[-4.307,56.471],[-4.298,56.471],[-4.29,56.472],[-4.279,56.474],[-4.274,56.475],[-4.272,56.477],[-4.27,56.476],[-4.262,56.479],[-4.258,56.48],[-4.252,56.481],[-4.248,56.482],[-4.242,56.486],[-4.235,56.488],[-4.23,56.487],[-4.226,56.488],[-4.214,56.489],[-4.209,56.49],[-4.202,56.491],[-4.193,56.492],[-4.185,56.495],[-4.181,56.496],[-4.174,56.498],[-4.171,56.497],[-4.168,56.5],[-4.164,56.501],[-4.157,56.5],[-4.153,56.501],[-4.148,56.506],[-4.142,56.509],[-4.14,56.511],[-4.134,56.515],[-4.133,56.517],[-4.131,56.518],[-4.125,56.522],[-4.121,56.52],[-4.125,56.518],[-4.112,56.512],[-4.103,56.503],[-4.094,56.493],[-4.077,56.498],[-4.033,56.507],[-4.019,56.504],[-4.051,56.456],[-4.079,56.464],[-4.108,56.437],[-4.133,56.467],[-4.164,56.43],[-4.183,56.429],[-4.192,56.417],[-4.188,56.408],[-4.162,56.396],[-4.161,56.395],[-4.185,56.393],[-4.192,56.392],[-4.198,56.391],[-4.201,56.39],[-4.207,56.39],[-4.224,56.389],[-4.232,56.39],[-4.24,56.39],[-4.243,56.388],[-4.249,56.389],[-4.259,56.387],[-4.269,56.386],[-4.275,56.385],[-4.281,56.384],[-4.28,56.379],[-4.275,56.379],[-4.271,56.378],[-4.269,56.378],[-4.264,56.38],[-4.259,56.379],[-4.251,56.38],[-4.239,56.38],[-4.228,56.38],[-4.222,56.381],[-4.219,56.382],[-4.206,56.383],[-4.199,56.382],[-4.195,56.383],[-4.186,56.385],[-4.179,56.385],[-4.162,56.386],[-4.161,56.386],[-4.164,56.385],[-4.17,56.384],[-4.179,56.383],[-4.185,56.384],[-4.189,56.383],[-4.196,56.382],[-4.192,56.373],[-4.186,56.36],[-4.203,56.349],[-4.21,56.344],[-4.211,56.334],[-4.174,56.325],[-4.154,56.298],[-4.148,56.291],[-4.119,56.281],[-4.116,56.281],[-4.095,56.282],[-4.089,56.284],[-4.011,56.288],[-4.008,56.292],[-3.965,56.309],[-3.961,56.306],[-3.936,56.314],[-3.933,56.313],[-3.918,56.301],[-3.897,56.303],[-3.894,56.303],[-3.887,56.303],[-3.862,56.305],[-3.856,56.301],[-3.847,56.298],[-3.839,56.297],[-3.837,56.3],[-3.829,56.295],[-3.827,56.294],[-3.816,56.296],[-3.805,56.288],[-3.814,56.283],[-3.815,56.282],[-3.828,56.278],[-3.829,56.279],[-3.837,56.278],[-3.842,56.278],[-3.851,56.273],[-3.859,56.277],[-3.864,56.276],[-3.872,56.272],[-3.862,56.27],[-3.858,56.272],[-3.843,56.273],[-3.843,56.264],[-3.843,56.257],[-3.845,56.257],[-3.842,56.253],[-3.837,56.254],[-3.842,56.246],[-3.837,56.233],[-3.845,56.228],[-3.847,56.226],[-3.85,56.225],[-3.855,56.224],[-3.865,56.22],[-3.871,56.215],[-3.877,56.213],[-3.848,56.201],[-3.825,56.191],[-3.816,56.192],[-3.811,56.193],[-3.8,56.216],[-3.784,56.223],[-3.77,56.235],[-3.765,56.235],[-3.742,56.237],[-3.734,56.234],[-3.72,56.233],[-3.713,56.234],[-3.705,56.236],[-3.706,56.238],[-3.691,56.242],[-3.68,56.247],[-3.676,56.25],[-3.672,56.25],[-3.66,56.248],[-3.642,56.248],[-3.628,56.248],[-3.623,56.274],[-3.622,56.278],[-3.613,56.279],[-3.606,56.277],[-3.598,56.271],[-3.59,56.262],[-3.587,56.259],[-3.581,56.26],[-3.58,56.261],[-3.582,56.264],[-3.584,56.264],[-3.584,56.267],[-3.583,56.27],[-3.581,56.273],[-3.571,56.269],[-3.568,56.254],[-3.537,56.253],[-3.505,56.261],[-3.505,56.26]],[[-4.263,56.227],[-4.264,56.23],[-4.265,56.23],[-4.269,56.229],[-4.271,56.229],[-4.279,56.226],[-4.289,56.225],[-4.293,56.225],[-4.295,56.225],[-4.298,56.225],[-4.302,56.224],[-4.304,56.225],[-4.318,56.226],[-4.322,56.226],[-4.329,56.227],[-4.335,56.226],[-4.338,56.224],[-4.342,56.225],[-4.352,56.225],[-4.355,56.224],[-4.351,56.222],[-4.349,56.222],[-4.348,56.22],[-4.346,56.219],[-4.337,56.22],[-4.331,56.22],[-4.325,56.22],[-4.32,56.219],[-4.317,56.218],[-4.314,56.217],[-4.307,56.217],[-4.303,56.218],[-4.298,56.217],[-4.293,56.217],[-4.289,56.218],[-4.28,56.221],[-4.274,56.221],[-4.271,56.224],[-4.265,56.225],[-4.263,56.227]]]]},"properties":{"OBJECTID":37,"NAME":"FK","KEY":"FK","Shape_Leng":7.48813,"Shape_Area":0.382544}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.947,53.857],[-2.948,53.859],[-2.95,53.861],[-2.953,53.862],[-2.963,53.864],[-2.969,53.865],[-2.97,53.867],[-2.966,53.87],[-2.964,53.873],[-2.965,53.876],[-2.968,53.88],[-2.972,53.883],[-2.979,53.887],[-2.983,53.89],[-2.992,53.902],[-2.993,53.905],[-2.992,53.907],[-2.988,53.907],[-2.988,53.91],[-2.989,53.91],[-2.992,53.908],[-2.995,53.909],[-2.996,53.91],[-2.992,53.913],[-2.996,53.916],[-2.997,53.917],[-2.997,53.925],[-2.998,53.931],[-2.996,53.931],[-2.975,53.935],[-2.95,53.94],[-2.948,53.938],[-2.947,53.936],[-2.948,53.933],[-2.949,53.932],[-2.948,53.929],[-2.95,53.927],[-2.95,53.925],[-2.945,53.924],[-2.943,53.922],[-2.943,53.919],[-2.939,53.919],[-2.937,53.918],[-2.939,53.916],[-2.936,53.912],[-2.932,53.912],[-2.93,53.909],[-2.927,53.909],[-2.919,53.906],[-2.915,53.907],[-2.915,53.901],[-2.912,53.899],[-2.924,53.893],[-2.929,53.891],[-2.93,53.893],[-2.931,53.893],[-2.933,53.895],[-2.936,53.895],[-2.934,53.888],[-2.937,53.886],[-2.937,53.884],[-2.929,53.886],[-2.932,53.883],[-2.933,53.882],[-2.935,53.879],[-2.934,53.877],[-2.932,53.878],[-2.928,53.878],[-2.93,53.874],[-2.932,53.873],[-2.93,53.87],[-2.928,53.867],[-2.93,53.866],[-2.936,53.866],[-2.937,53.87],[-2.94,53.87],[-2.946,53.868],[-2.946,53.865],[-2.942,53.863],[-2.947,53.857]]],[[[-2.925,53.733],[-2.931,53.734],[-2.932,53.736],[-2.936,53.735],[-2.939,53.735],[-2.941,53.736],[-2.936,53.739],[-2.937,53.741],[-2.943,53.738],[-2.952,53.736],[-2.96,53.735],[-2.967,53.734],[-2.972,53.734],[-2.979,53.735],[-2.987,53.737],[-2.995,53.737],[-3.003,53.737],[-3.006,53.737],[-3.017,53.74],[-3.031,53.745],[-3.036,53.747],[-3.045,53.753],[-3.046,53.754],[-3.051,53.763],[-3.053,53.764],[-3.056,53.772],[-3.057,53.773],[-3.057,53.777],[-3.064,53.783],[-3.066,53.793],[-3.067,53.8],[-3.065,53.808],[-3.065,53.819],[-3.066,53.826],[-3.066,53.829],[-3.063,53.846],[-3.063,53.85],[-3.061,53.854],[-3.061,53.857],[-3.058,53.861],[-3.055,53.872],[-3.055,53.876],[-3.055,53.879],[-3.054,53.883],[-3.053,53.884],[-3.053,53.887],[-3.05,53.897],[-3.05,53.901],[-3.051,53.905],[-3.052,53.914],[-3.052,53.92],[-3.049,53.922],[-3.043,53.924],[-3.032,53.927],[-3.023,53.927],[-3.015,53.929],[-3.009,53.929],[-3.007,53.929],[-3.005,53.926],[-3.004,53.924],[-3.006,53.921],[-3.009,53.92],[-3.012,53.92],[-3.009,53.918],[-3.005,53.919],[-3.007,53.913],[-3.005,53.913],[-3.006,53.907],[-3.005,53.904],[-3.01,53.904],[-3.01,53.902],[-3.006,53.901],[-3.004,53.9],[-3.004,53.895],[-2.997,53.888],[-2.992,53.885],[-2.985,53.882],[-2.975,53.88],[-2.971,53.878],[-2.969,53.875],[-2.97,53.873],[-2.977,53.871],[-2.978,53.866],[-2.977,53.863],[-2.977,53.861],[-2.968,53.861],[-2.964,53.861],[-2.959,53.861],[-2.956,53.858],[-2.954,53.855],[-2.954,53.853],[-2.95,53.851],[-2.944,53.85],[-2.939,53.851],[-2.935,53.853],[-2.931,53.856],[-2.924,53.856],[-2.922,53.854],[-2.919,53.851],[-2.909,53.854],[-2.904,53.857],[-2.901,53.854],[-2.901,53.851],[-2.909,53.848],[-2.909,53.845],[-2.9,53.838],[-2.903,53.837],[-2.904,53.834],[-2.913,53.836],[-2.913,53.837],[-2.917,53.837],[-2.92,53.837],[-2.92,53.832],[-2.919,53.828],[-2.926,53.827],[-2.936,53.828],[-2.94,53.825],[-2.942,53.826],[-2.947,53.831],[-2.957,53.831],[-2.964,53.828],[-2.96,53.824],[-2.956,53.818],[-2.95,53.807],[-2.949,53.805],[-2.946,53.802],[-2.942,53.8],[-2.953,53.797],[-2.952,53.792],[-2.958,53.792],[-2.96,53.793],[-2.965,53.793],[-2.965,53.792],[-2.97,53.792],[-2.972,53.791],[-2.97,53.787],[-2.969,53.786],[-2.966,53.786],[-2.967,53.782],[-2.966,53.78],[-2.962,53.779],[-2.954,53.781],[-2.949,53.781],[-2.942,53.782],[-2.94,53.78],[-2.936,53.779],[-2.934,53.776],[-2.935,53.775],[-2.932,53.769],[-2.93,53.768],[-2.929,53.771],[-2.925,53.772],[-2.922,53.772],[-2.918,53.774],[-2.918,53.77],[-2.92,53.768],[-2.916,53.766],[-2.921,53.763],[-2.923,53.763],[-2.923,53.76],[-2.923,53.755],[-2.925,53.753],[-2.921,53.751],[-2.915,53.749],[-2.915,53.747],[-2.911,53.745],[-2.914,53.744],[-2.917,53.744],[-2.921,53.742],[-2.922,53.745],[-2.925,53.744],[-2.926,53.741],[-2.927,53.736],[-2.925,53.733]]]]},"properties":{"OBJECTID":38,"NAME":"FY","KEY":"FY","Shape_Leng":1.30874,"Shape_Area":0.0227774}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.619,56.09],[-4.621,56.09],[-4.623,56.085],[-4.625,56.083],[-4.628,56.081],[-4.634,56.081],[-4.633,56.084],[-4.629,56.088],[-4.628,56.092],[-4.625,56.093],[-4.621,56.092],[-4.619,56.09]]],[[[-4.61,56.093],[-4.612,56.091],[-4.611,56.089],[-4.612,56.087],[-4.615,56.087],[-4.617,56.086],[-4.619,56.086],[-4.619,56.088],[-4.618,56.09],[-4.618,56.092],[-4.62,56.094],[-4.612,56.095],[-4.61,56.093]]],[[[-4.6,56.084],[-4.601,56.08],[-4.602,56.08],[-4.607,56.081],[-4.612,56.079],[-4.614,56.08],[-4.616,56.082],[-4.621,56.082],[-4.616,56.084],[-4.614,56.085],[-4.609,56.084],[-4.604,56.085],[-4.6,56.084]]],[[[-4.595,56.109],[-4.595,56.107],[-4.598,56.105],[-4.601,56.105],[-4.6,56.103],[-4.602,56.103],[-4.605,56.104],[-4.608,56.103],[-4.611,56.101],[-4.616,56.101],[-4.616,56.103],[-4.608,56.11],[-4.606,56.111],[-4.601,56.111],[-4.595,56.109]]],[[[-4.59,56.059],[-4.591,56.059],[-4.593,56.057],[-4.593,56.054],[-4.595,56.051],[-4.601,56.048],[-4.605,56.044],[-4.608,56.041],[-4.61,56.041],[-4.614,56.042],[-4.613,56.044],[-4.609,56.048],[-4.608,56.052],[-4.606,56.054],[-4.603,56.056],[-4.595,56.06],[-4.591,56.06],[-4.59,56.059]]],[[[-4.589,56.085],[-4.594,56.084],[-4.599,56.085],[-4.6,56.088],[-4.601,56.09],[-4.597,56.09],[-4.592,56.087],[-4.589,56.087],[-4.589,56.085]]],[[[-4.565,56.087],[-4.567,56.086],[-4.569,56.085],[-4.573,56.083],[-4.575,56.081],[-4.578,56.08],[-4.58,56.081],[-4.582,56.083],[-4.582,56.084],[-4.578,56.085],[-4.575,56.086],[-4.57,56.089],[-4.566,56.089],[-4.565,56.087]]],[[[-4.55,56.082],[-4.55,56.081],[-4.556,56.078],[-4.561,56.074],[-4.564,56.077],[-4.562,56.083],[-4.561,56.083],[-4.554,56.084],[-4.55,56.082]]],[[[-3.927,55.933],[-3.931,55.932],[-3.94,55.933],[-3.942,55.933],[-3.946,55.933],[-3.95,55.93],[-3.95,55.927],[-3.951,55.927],[-3.959,55.924],[-3.969,55.926],[-3.973,55.924],[-3.978,55.923],[-3.98,55.923],[-3.979,55.925],[-3.984,55.924],[-3.99,55.924],[-3.989,55.922],[-3.994,55.917],[-3.986,55.916],[-3.982,55.918],[-3.979,55.913],[-3.988,55.91],[-3.987,55.907],[-3.991,55.906],[-3.999,55.908],[-4.005,55.908],[-4.008,55.908],[-4.008,55.91],[-4.009,55.912],[-4.011,55.912],[-4.019,55.91],[-4.025,55.908],[-4.028,55.908],[-4.026,55.912],[-4.038,55.914],[-4.04,55.915],[-4.043,55.913],[-4.05,55.911],[-4.053,55.906],[-4.055,55.906],[-4.06,55.906],[-4.062,55.904],[-4.066,55.903],[-4.065,55.902],[-4.062,55.898],[-4.063,55.895],[-4.061,55.894],[-4.06,55.892],[-4.058,55.89],[-4.059,55.886],[-4.066,55.885],[-4.07,55.884],[-4.061,55.883],[-4.056,55.882],[-4.059,55.88],[-4.064,55.878],[-4.065,55.877],[-4.073,55.877],[-4.079,55.873],[-4.08,55.868],[-4.077,55.866],[-4.072,55.861],[-4.065,55.862],[-4.063,55.863],[-4.062,55.86],[-4.063,55.858],[-4.069,55.858],[-4.068,55.857],[-4.057,55.856],[-4.057,55.854],[-4.067,55.852],[-4.069,55.851],[-4.069,55.849],[-4.066,55.849],[-4.063,55.848],[-4.059,55.848],[-4.06,55.846],[-4.068,55.847],[-4.068,55.846],[-4.063,55.841],[-4.057,55.839],[-4.05,55.84],[-4.048,55.836],[-4.045,55.835],[-4.045,55.833],[-4.046,55.832],[-4.046,55.83],[-4.049,55.828],[-4.048,55.826],[-4.051,55.826],[-4.053,55.824],[-4.049,55.823],[-4.051,55.821],[-4.051,55.819],[-4.049,55.819],[-4.051,55.814],[-4.041,55.809],[-4.046,55.807],[-4.043,55.806],[-4.043,55.803],[-4.045,55.801],[-4.05,55.803],[-4.053,55.803],[-4.057,55.801],[-4.057,55.796],[-4.06,55.795],[-4.063,55.795],[-4.069,55.797],[-4.071,55.798],[-4.074,55.794],[-4.072,55.792],[-4.076,55.791],[-4.073,55.788],[-4.08,55.786],[-4.079,55.785],[-4.081,55.783],[-4.083,55.78],[-4.086,55.781],[-4.089,55.78],[-4.091,55.778],[-4.095,55.777],[-4.096,55.775],[-4.088,55.771],[-4.091,55.769],[-4.096,55.767],[-4.099,55.769],[-4.104,55.768],[-4.107,55.769],[-4.109,55.768],[-4.111,55.765],[-4.109,55.762],[-4.11,55.76],[-4.113,55.759],[-4.11,55.757],[-4.103,55.75],[-4.11,55.751],[-4.124,55.748],[-4.118,55.741],[-4.127,55.737],[-4.135,55.735],[-4.136,55.734],[-4.133,55.73],[-4.133,55.728],[-4.143,55.729],[-4.146,55.724],[-4.148,55.723],[-4.146,55.722],[-4.14,55.722],[-4.129,55.716],[-4.142,55.713],[-4.144,55.716],[-4.151,55.714],[-4.149,55.708],[-4.145,55.709],[-4.145,55.702],[-4.151,55.697],[-4.148,55.688],[-4.148,55.686],[-4.154,55.684],[-4.152,55.674],[-4.15,55.671],[-4.146,55.67],[-4.145,55.667],[-4.148,55.665],[-4.152,55.664],[-4.159,55.667],[-4.165,55.667],[-4.169,55.675],[-4.187,55.677],[-4.199,55.687],[-4.208,55.691],[-4.234,55.689],[-4.238,55.687],[-4.239,55.677],[-4.265,55.667],[-4.285,55.66],[-4.3,55.671],[-4.302,55.677],[-4.312,55.684],[-4.316,55.683],[-4.334,55.694],[-4.337,55.697],[-4.339,55.704],[-4.356,55.704],[-4.36,55.708],[-4.371,55.704],[-4.377,55.702],[-4.387,55.701],[-4.386,55.702],[-4.385,55.705],[-4.38,55.708],[-4.386,55.709],[-4.389,55.711],[-4.397,55.716],[-4.399,55.713],[-4.399,55.709],[-4.393,55.697],[-4.394,55.695],[-4.395,55.694],[-4.4,55.693],[-4.399,55.696],[-4.398,55.699],[-4.4,55.706],[-4.416,55.709],[-4.415,55.712],[-4.428,55.72],[-4.431,55.722],[-4.433,55.722],[-4.438,55.733],[-4.448,55.735],[-4.45,55.737],[-4.454,55.735],[-4.457,55.732],[-4.472,55.734],[-4.461,55.746],[-4.463,55.747],[-4.461,55.751],[-4.485,55.748],[-4.487,55.747],[-4.49,55.742],[-4.494,55.737],[-4.499,55.738],[-4.497,55.74],[-4.493,55.744],[-4.506,55.745],[-4.51,55.742],[-4.517,55.743],[-4.513,55.747],[-4.512,55.748],[-4.509,55.751],[-4.516,55.753],[-4.521,55.748],[-4.525,55.747],[-4.53,55.745],[-4.533,55.747],[-4.535,55.75],[-4.54,55.751],[-4.538,55.755],[-4.537,55.756],[-4.541,55.757],[-4.548,55.758],[-4.554,55.755],[-4.56,55.756],[-4.559,55.767],[-4.554,55.767],[-4.549,55.769],[-4.548,55.774],[-4.549,55.778],[-4.548,55.783],[-4.546,55.783],[-4.544,55.785],[-4.541,55.789],[-4.534,55.79],[-4.53,55.79],[-4.527,55.789],[-4.52,55.792],[-4.508,55.788],[-4.503,55.791],[-4.495,55.796],[-4.483,55.803],[-4.48,55.798],[-4.473,55.798],[-4.471,55.8],[-4.465,55.799],[-4.463,55.802],[-4.458,55.802],[-4.459,55.798],[-4.456,55.797],[-4.444,55.802],[-4.443,55.802],[-4.435,55.803],[-4.432,55.81],[-4.424,55.812],[-4.421,55.812],[-4.417,55.819],[-4.412,55.818],[-4.41,55.817],[-4.407,55.819],[-4.402,55.819],[-4.395,55.817],[-4.394,55.819],[-4.388,55.819],[-4.38,55.823],[-4.377,55.826],[-4.377,55.833],[-4.379,55.836],[-4.377,55.839],[-4.37,55.841],[-4.37,55.842],[-4.368,55.847],[-4.374,55.849],[-4.374,55.85],[-4.376,55.851],[-4.38,55.851],[-4.379,55.853],[-4.381,55.857],[-4.387,55.86],[-4.385,55.863],[-4.381,55.863],[-4.373,55.865],[-4.369,55.864],[-4.367,55.866],[-4.368,55.869],[-4.365,55.869],[-4.365,55.873],[-4.368,55.873],[-4.368,55.875],[-4.37,55.877],[-4.367,55.878],[-4.363,55.877],[-4.356,55.874],[-4.354,55.873],[-4.353,55.865],[-4.351,55.866],[-4.352,55.872],[-4.344,55.87],[-4.338,55.869],[-4.327,55.868],[-4.318,55.867],[-4.31,55.864],[-4.301,55.862],[-4.299,55.861],[-4.298,55.859],[-4.298,55.857],[-4.296,55.856],[-4.294,55.858],[-4.275,55.855],[-4.271,55.855],[-4.264,55.856],[-4.258,55.855],[-4.252,55.854],[-4.242,55.85],[-4.238,55.848],[-4.238,55.847],[-4.241,55.844],[-4.24,55.843],[-4.237,55.842],[-4.232,55.842],[-4.223,55.839],[-4.223,55.838],[-4.224,55.835],[-4.221,55.833],[-4.219,55.833],[-4.213,55.836],[-4.207,55.837],[-4.203,55.838],[-4.202,55.84],[-4.206,55.842],[-4.205,55.844],[-4.203,55.844],[-4.196,55.839],[-4.196,55.838],[-4.199,55.836],[-4.2,55.834],[-4.199,55.833],[-4.195,55.832],[-4.193,55.832],[-4.191,55.833],[-4.191,55.835],[-4.186,55.837],[-4.181,55.836],[-4.18,55.835],[-4.179,55.831],[-4.176,55.825],[-4.175,55.823],[-4.171,55.823],[-4.167,55.825],[-4.16,55.827],[-4.157,55.828],[-4.148,55.828],[-4.149,55.829],[-4.153,55.829],[-4.161,55.828],[-4.168,55.825],[-4.171,55.824],[-4.174,55.823],[-4.176,55.824],[-4.177,55.828],[-4.179,55.831],[-4.179,55.835],[-4.181,55.836],[-4.186,55.837],[-4.191,55.835],[-4.191,55.833],[-4.194,55.832],[-4.198,55.834],[-4.199,55.835],[-4.198,55.836],[-4.195,55.838],[-4.195,55.839],[-4.203,55.844],[-4.206,55.844],[-4.207,55.842],[-4.203,55.84],[-4.205,55.838],[-4.211,55.837],[-4.216,55.836],[-4.22,55.834],[-4.221,55.833],[-4.223,55.835],[-4.222,55.838],[-4.222,55.839],[-4.231,55.843],[-4.237,55.843],[-4.24,55.844],[-4.237,55.847],[-4.238,55.849],[-4.247,55.853],[-4.258,55.856],[-4.264,55.857],[-4.274,55.857],[-4.281,55.857],[-4.295,55.86],[-4.297,55.862],[-4.297,55.863],[-4.306,55.865],[-4.307,55.864],[-4.318,55.868],[-4.322,55.869],[-4.331,55.869],[-4.336,55.869],[-4.341,55.87],[-4.343,55.871],[-4.347,55.873],[-4.351,55.874],[-4.355,55.875],[-4.361,55.878],[-4.367,55.88],[-4.371,55.883],[-4.376,55.885],[-4.383,55.888],[-4.395,55.89],[-4.394,55.891],[-4.401,55.894],[-4.403,55.893],[-4.407,55.895],[-4.408,55.897],[-4.413,55.9],[-4.417,55.903],[-4.423,55.905],[-4.429,55.905],[-4.431,55.906],[-4.435,55.906],[-4.44,55.907],[-4.449,55.911],[-4.45,55.913],[-4.462,55.922],[-4.465,55.924],[-4.474,55.927],[-4.479,55.929],[-4.483,55.929],[-4.487,55.93],[-4.49,55.929],[-4.503,55.929],[-4.509,55.93],[-4.515,55.93],[-4.517,55.932],[-4.522,55.933],[-4.527,55.932],[-4.539,55.934],[-4.541,55.934],[-4.544,55.934],[-4.546,55.935],[-4.554,55.937],[-4.562,55.936],[-4.565,55.937],[-4.571,55.938],[-4.574,55.938],[-4.582,55.938],[-4.585,55.939],[-4.588,55.94],[-4.591,55.942],[-4.601,55.945],[-4.604,55.945],[-4.614,55.946],[-4.622,55.95],[-4.631,55.951],[-4.637,55.951],[-4.639,55.952],[-4.65,55.954],[-4.655,55.957],[-4.66,55.959],[-4.664,55.959],[-4.672,55.96],[-4.675,55.962],[-4.676,55.965],[-4.677,55.967],[-4.681,55.969],[-4.683,55.971],[-4.688,55.971],[-4.688,55.97],[-4.689,55.969],[-4.693,55.969],[-4.696,55.968],[-4.7,55.967],[-4.702,55.968],[-4.703,55.97],[-4.704,55.972],[-4.703,55.973],[-4.701,55.975],[-4.699,55.975],[-4.694,55.973],[-4.692,55.973],[-4.687,55.974],[-4.686,55.976],[-4.689,55.978],[-4.694,55.979],[-4.695,55.979],[-4.696,55.983],[-4.694,55.985],[-4.696,55.986],[-4.698,55.99],[-4.701,55.992],[-4.705,55.993],[-4.709,55.993],[-4.717,55.997],[-4.721,56],[-4.724,56.001],[-4.728,56.001],[-4.733,56.001],[-4.741,56.002],[-4.747,56.003],[-4.761,56.007],[-4.763,56.009],[-4.763,56.011],[-4.764,56.012],[-4.77,56.013],[-4.774,56.013],[-4.777,56.014],[-4.78,56.016],[-4.782,56.016],[-4.787,56.015],[-4.785,56.018],[-4.788,56.022],[-4.796,56.03],[-4.8,56.033],[-4.805,56.039],[-4.808,56.045],[-4.811,56.046],[-4.816,56.051],[-4.819,56.053],[-4.82,56.055],[-4.82,56.061],[-4.818,56.064],[-4.821,56.067],[-4.823,56.067],[-4.828,56.068],[-4.829,56.069],[-4.83,56.072],[-4.83,56.075],[-4.83,56.078],[-4.832,56.08],[-4.836,56.08],[-4.838,56.079],[-4.837,56.073],[-4.839,56.069],[-4.84,56.064],[-4.841,56.06],[-4.839,56.054],[-4.837,56.051],[-4.834,56.048],[-4.827,56.036],[-4.819,56.027],[-4.815,56.024],[-4.809,56.016],[-4.805,56.014],[-4.802,56.014],[-4.796,56.013],[-4.796,56.007],[-4.794,56.005],[-4.794,56.004],[-4.791,56.002],[-4.788,56.002],[-4.785,56.001],[-4.779,56.002],[-4.775,56.004],[-4.769,56],[-4.768,55.997],[-4.771,55.995],[-4.771,55.993],[-4.77,55.991],[-4.767,55.991],[-4.768,55.988],[-4.773,55.988],[-4.775,55.989],[-4.777,55.988],[-4.78,55.989],[-4.784,55.987],[-4.787,55.986],[-4.792,55.985],[-4.797,55.986],[-4.8,55.985],[-4.802,55.983],[-4.813,55.983],[-4.818,55.984],[-4.827,55.983],[-4.833,55.983],[-4.837,55.983],[-4.846,55.986],[-4.851,55.988],[-4.854,55.991],[-4.856,55.994],[-4.855,55.996],[-4.853,55.999],[-4.854,56.002],[-4.855,56.004],[-4.86,56.007],[-4.864,56.01],[-4.867,56.012],[-4.869,56.015],[-4.869,56.018],[-4.867,56.026],[-4.866,56.031],[-4.867,56.034],[-4.868,56.037],[-4.871,56.041],[-4.872,56.043],[-4.877,56.045],[-4.88,56.047],[-4.882,56.051],[-4.881,56.054],[-4.88,56.058],[-4.873,56.066],[-4.87,56.069],[-4.866,56.076],[-4.861,56.083],[-4.86,56.085],[-4.856,56.088],[-4.852,56.097],[-4.85,56.099],[-4.846,56.101],[-4.842,56.106],[-4.84,56.111],[-4.839,56.114],[-4.836,56.115],[-4.831,56.118],[-4.827,56.12],[-4.823,56.123],[-4.821,56.126],[-4.819,56.129],[-4.818,56.136],[-4.814,56.141],[-4.808,56.149],[-4.797,56.159],[-4.795,56.161],[-4.792,56.162],[-4.788,56.165],[-4.788,56.167],[-4.785,56.17],[-4.782,56.174],[-4.781,56.177],[-4.779,56.178],[-4.777,56.18],[-4.771,56.185],[-4.77,56.187],[-4.768,56.187],[-4.764,56.189],[-4.763,56.189],[-4.754,56.193],[-4.753,56.195],[-4.75,56.196],[-4.75,56.199],[-4.747,56.201],[-4.746,56.202],[-4.751,56.204],[-4.753,56.204],[-4.755,56.202],[-4.756,56.199],[-4.762,56.197],[-4.763,56.197],[-4.769,56.195],[-4.775,56.193],[-4.779,56.19],[-4.777,56.186],[-4.781,56.185],[-4.783,56.186],[-4.786,56.185],[-4.787,56.183],[-4.79,56.182],[-4.791,56.178],[-4.793,56.175],[-4.797,56.173],[-4.796,56.172],[-4.8,56.167],[-4.803,56.166],[-4.805,56.162],[-4.812,56.157],[-4.816,56.154],[-4.845,56.162],[-4.845,56.164],[-4.848,56.168],[-4.846,56.176],[-4.85,56.18],[-4.864,56.193],[-4.859,56.199],[-4.853,56.207],[-4.852,56.214],[-4.854,56.216],[-4.856,56.22],[-4.854,56.224],[-4.85,56.224],[-4.849,56.222],[-4.848,56.219],[-4.85,56.216],[-4.841,56.22],[-4.822,56.226],[-4.821,56.228],[-4.807,56.247],[-4.814,56.253],[-4.821,56.272],[-4.784,56.278],[-4.768,56.289],[-4.772,56.297],[-4.749,56.321],[-4.754,56.326],[-4.829,56.318],[-4.831,56.321],[-4.833,56.365],[-4.814,56.373],[-4.801,56.372],[-4.776,56.376],[-4.734,56.381],[-4.712,56.386],[-4.711,56.386],[-4.682,56.37],[-4.668,56.362],[-4.672,56.361],[-4.623,56.327],[-4.634,56.324],[-4.641,56.322],[-4.646,56.313],[-4.658,56.282],[-4.699,56.294],[-4.699,56.295],[-4.702,56.298],[-4.713,56.305],[-4.715,56.304],[-4.719,56.304],[-4.718,56.3],[-4.714,56.299],[-4.711,56.296],[-4.711,56.295],[-4.71,56.291],[-4.71,56.289],[-4.705,56.287],[-4.702,56.285],[-4.699,56.282],[-4.701,56.28],[-4.704,56.278],[-4.705,56.275],[-4.704,56.273],[-4.704,56.27],[-4.702,56.267],[-4.704,56.265],[-4.703,56.263],[-4.703,56.26],[-4.707,56.258],[-4.708,56.257],[-4.707,56.254],[-4.708,56.252],[-4.711,56.249],[-4.712,56.248],[-4.71,56.243],[-4.708,56.241],[-4.705,56.239],[-4.701,56.235],[-4.699,56.229],[-4.695,56.225],[-4.694,56.221],[-4.694,56.217],[-4.695,56.213],[-4.698,56.21],[-4.7,56.21],[-4.702,56.207],[-4.706,56.206],[-4.709,56.204],[-4.709,56.202],[-4.699,56.194],[-4.697,56.189],[-4.695,56.186],[-4.688,56.181],[-4.684,56.18],[-4.685,56.178],[-4.683,56.174],[-4.68,56.172],[-4.678,56.172],[-4.673,56.169],[-4.669,56.169],[-4.666,56.167],[-4.664,56.165],[-4.664,56.163],[-4.67,56.159],[-4.671,56.158],[-4.669,56.155],[-4.664,56.15],[-4.663,56.15],[-4.659,56.149],[-4.658,56.147],[-4.662,56.145],[-4.661,56.142],[-4.656,56.134],[-4.651,56.125],[-4.65,56.12],[-4.643,56.115],[-4.64,56.111],[-4.638,56.109],[-4.637,56.106],[-4.639,56.104],[-4.636,56.102],[-4.632,56.099],[-4.631,56.098],[-4.631,56.096],[-4.634,56.094],[-4.64,56.092],[-4.64,56.091],[-4.637,56.089],[-4.635,56.085],[-4.638,56.084],[-4.638,56.081],[-4.637,56.078],[-4.638,56.077],[-4.638,56.074],[-4.64,56.07],[-4.638,56.069],[-4.634,56.072],[-4.631,56.072],[-4.63,56.07],[-4.627,56.066],[-4.626,56.062],[-4.627,56.059],[-4.629,56.057],[-4.633,56.055],[-4.638,56.053],[-4.639,56.051],[-4.642,56.049],[-4.642,56.047],[-4.641,56.045],[-4.638,56.043],[-4.634,56.042],[-4.633,56.041],[-4.63,56.04],[-4.627,56.038],[-4.626,56.033],[-4.629,56.031],[-4.629,56.03],[-4.628,56.026],[-4.624,56.024],[-4.62,56.022],[-4.616,56.02],[-4.615,56.019],[-4.61,56.017],[-4.607,56.016],[-4.607,56.014],[-4.602,56.011],[-4.602,56.009],[-4.599,56.007],[-4.595,56.007],[-4.593,56.008],[-4.59,56.01],[-4.589,56.012],[-4.59,56.017],[-4.593,56.021],[-4.596,56.023],[-4.597,56.027],[-4.594,56.032],[-4.591,56.035],[-4.587,56.038],[-4.585,56.042],[-4.581,56.046],[-4.576,56.047],[-4.573,56.049],[-4.566,56.051],[-4.565,56.052],[-4.566,56.053],[-4.561,56.054],[-4.557,56.054],[-4.556,56.055],[-4.549,56.057],[-4.545,56.057],[-4.543,56.057],[-4.54,56.055],[-4.534,56.056],[-4.532,56.057],[-4.53,56.057],[-4.526,56.059],[-4.524,56.061],[-4.519,56.063],[-4.517,56.063],[-4.517,56.065],[-4.519,56.065],[-4.521,56.068],[-4.525,56.07],[-4.528,56.07],[-4.532,56.074],[-4.529,56.075],[-4.533,56.077],[-4.531,56.078],[-4.531,56.08],[-4.536,56.082],[-4.543,56.083],[-4.547,56.083],[-4.549,56.085],[-4.549,56.088],[-4.55,56.089],[-4.554,56.091],[-4.556,56.091],[-4.559,56.093],[-4.558,56.094],[-4.558,56.098],[-4.561,56.1],[-4.57,56.101],[-4.571,56.103],[-4.578,56.103],[-4.581,56.104],[-4.584,56.104],[-4.583,56.108],[-4.584,56.113],[-4.587,56.114],[-4.589,56.118],[-4.592,56.119],[-4.597,56.121],[-4.6,56.123],[-4.603,56.124],[-4.607,56.126],[-4.611,56.127],[-4.614,56.128],[-4.617,56.125],[-4.619,56.126],[-4.621,56.124],[-4.628,56.125],[-4.632,56.125],[-4.632,56.127],[-4.629,56.13],[-4.629,56.133],[-4.628,56.136],[-4.632,56.139],[-4.633,56.14],[-4.637,56.141],[-4.637,56.143],[-4.64,56.143],[-4.642,56.148],[-4.645,56.148],[-4.643,56.151],[-4.644,56.157],[-4.645,56.159],[-4.646,56.162],[-4.649,56.164],[-4.653,56.17],[-4.654,56.17],[-4.651,56.172],[-4.628,56.186],[-4.612,56.178],[-4.596,56.173],[-4.587,56.17],[-4.583,56.167],[-4.569,56.161],[-4.561,56.152],[-4.524,56.139],[-4.505,56.13],[-4.504,56.124],[-4.461,56.112],[-4.452,56.106],[-4.429,56.102],[-4.426,56.1],[-4.421,56.103],[-4.419,56.105],[-4.414,56.107],[-4.406,56.111],[-4.402,56.115],[-4.383,56.112],[-4.372,56.117],[-4.368,56.121],[-4.36,56.12],[-4.362,56.122],[-4.368,56.121],[-4.372,56.125],[-4.36,56.131],[-4.358,56.131],[-4.359,56.127],[-4.354,56.127],[-4.342,56.129],[-4.332,56.132],[-4.322,56.133],[-4.328,56.123],[-4.329,56.121],[-4.324,56.12],[-4.327,56.117],[-4.326,56.117],[-4.33,56.115],[-4.335,56.115],[-4.337,56.113],[-4.344,56.116],[-4.347,56.118],[-4.35,56.118],[-4.359,56.119],[-4.359,56.114],[-4.355,56.112],[-4.356,56.108],[-4.352,56.107],[-4.35,56.105],[-4.346,56.104],[-4.344,56.102],[-4.341,56.1],[-4.332,56.104],[-4.326,56.105],[-4.323,56.103],[-4.312,56.101],[-4.311,56.099],[-4.3,56.099],[-4.29,56.097],[-4.277,56.089],[-4.277,56.088],[-4.274,56.087],[-4.265,56.088],[-4.253,56.097],[-4.247,56.1],[-4.245,56.101],[-4.223,56.095],[-4.223,56.097],[-4.212,56.089],[-4.199,56.076],[-4.182,56.073],[-4.176,56.073],[-4.172,56.073],[-4.165,56.073],[-4.148,56.077],[-4.131,56.085],[-4.092,56.056],[-4.101,56.057],[-4.107,56.056],[-4.11,56.056],[-4.115,56.053],[-4.115,56.05],[-4.119,56.049],[-4.121,56.049],[-4.125,56.047],[-4.121,56.046],[-4.117,56.045],[-4.111,56.042],[-4.108,56.039],[-4.104,56.038],[-4.101,56.035],[-4.103,56.036],[-4.104,56.037],[-4.108,56.038],[-4.11,56.04],[-4.113,56.042],[-4.117,56.045],[-4.123,56.045],[-4.125,56.047],[-4.132,56.046],[-4.132,56.045],[-4.129,56.044],[-4.129,56.042],[-4.126,56.041],[-4.124,56.039],[-4.126,56.036],[-4.122,56.036],[-4.117,56.036],[-4.114,56.035],[-4.11,56.033],[-4.109,56.032],[-4.113,56.026],[-4.11,56.026],[-4.107,56.027],[-4.113,56.019],[-4.112,56.018],[-4.081,56.009],[-4.071,56.009],[-4.068,56.01],[-4.033,56.005],[-4.032,56.008],[-4.027,56.013],[-4.025,56.016],[-4.013,56.019],[-4,56.021],[-3.999,56.014],[-3.998,56.006],[-3.997,56.003],[-3.993,56.003],[-3.98,56.004],[-3.973,56.002],[-3.973,56.001],[-3.982,55.992],[-3.991,55.991],[-3.994,55.989],[-3.992,55.987],[-3.995,55.985],[-3.994,55.984],[-3.977,55.987],[-3.974,55.988],[-3.973,55.985],[-3.987,55.982],[-3.984,55.978],[-3.976,55.98],[-3.972,55.979],[-3.965,55.979],[-3.962,55.98],[-3.959,55.982],[-3.962,55.986],[-3.96,55.986],[-3.955,55.984],[-3.951,55.983],[-3.944,55.985],[-3.943,55.983],[-3.944,55.982],[-3.938,55.981],[-3.942,55.977],[-3.948,55.973],[-3.951,55.971],[-3.952,55.969],[-3.949,55.97],[-3.944,55.969],[-3.942,55.969],[-3.935,55.969],[-3.933,55.968],[-3.93,55.966],[-3.935,55.964],[-3.931,55.963],[-3.921,55.966],[-3.914,55.971],[-3.908,55.971],[-3.899,55.968],[-3.895,55.966],[-3.889,55.964],[-3.886,55.963],[-3.883,55.949],[-3.888,55.952],[-3.891,55.951],[-3.892,55.953],[-3.896,55.956],[-3.905,55.951],[-3.921,55.948],[-3.931,55.947],[-3.926,55.945],[-3.929,55.938],[-3.927,55.934],[-3.927,55.933]]]]},"properties":{"OBJECTID":39,"NAME":"G","KEY":"G.","Shape_Leng":7.15234,"Shape_Area":0.255171}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.552,51.683],[-2.554,51.68],[-2.558,51.678],[-2.561,51.676],[-2.569,51.673],[-2.576,51.669],[-2.58,51.666],[-2.582,51.665],[-2.59,51.663],[-2.598,51.662],[-2.604,51.662],[-2.609,51.661],[-2.61,51.662],[-2.613,51.662],[-2.617,51.66],[-2.62,51.658],[-2.62,51.661],[-2.613,51.664],[-2.608,51.668],[-2.603,51.672],[-2.592,51.677],[-2.588,51.679],[-2.584,51.679],[-2.581,51.679],[-2.578,51.678],[-2.574,51.679],[-2.572,51.68],[-2.571,51.683],[-2.568,51.686],[-2.562,51.687],[-2.556,51.69],[-2.553,51.69],[-2.552,51.689],[-2.553,51.687],[-2.552,51.686],[-2.552,51.683]]],[[[-2.506,51.694],[-2.506,51.692],[-2.509,51.69],[-2.512,51.689],[-2.516,51.689],[-2.517,51.691],[-2.526,51.689],[-2.527,51.689],[-2.534,51.686],[-2.546,51.683],[-2.549,51.681],[-2.548,51.684],[-2.549,51.69],[-2.549,51.691],[-2.546,51.692],[-2.544,51.693],[-2.542,51.697],[-2.536,51.699],[-2.53,51.7],[-2.525,51.701],[-2.521,51.704],[-2.513,51.705],[-2.509,51.705],[-2.508,51.703],[-2.506,51.696],[-2.506,51.694]]],[[[-1.626,51.692],[-1.626,51.689],[-1.626,51.684],[-1.63,51.684],[-1.63,51.685],[-1.636,51.688],[-1.639,51.687],[-1.64,51.686],[-1.648,51.685],[-1.653,51.682],[-1.656,51.682],[-1.662,51.68],[-1.664,51.682],[-1.666,51.681],[-1.675,51.682],[-1.674,51.685],[-1.676,51.687],[-1.677,51.689],[-1.679,51.689],[-1.677,51.684],[-1.685,51.686],[-1.687,51.687],[-1.698,51.686],[-1.693,51.692],[-1.697,51.692],[-1.699,51.688],[-1.701,51.688],[-1.702,51.686],[-1.705,51.686],[-1.709,51.681],[-1.709,51.677],[-1.711,51.675],[-1.711,51.672],[-1.713,51.672],[-1.717,51.671],[-1.721,51.669],[-1.732,51.676],[-1.734,51.677],[-1.744,51.673],[-1.749,51.671],[-1.75,51.67],[-1.752,51.664],[-1.753,51.663],[-1.759,51.663],[-1.76,51.658],[-1.762,51.656],[-1.773,51.656],[-1.776,51.657],[-1.776,51.662],[-1.773,51.668],[-1.777,51.669],[-1.781,51.669],[-1.789,51.667],[-1.791,51.665],[-1.79,51.663],[-1.793,51.661],[-1.795,51.664],[-1.792,51.666],[-1.792,51.667],[-1.793,51.669],[-1.788,51.671],[-1.789,51.672],[-1.794,51.672],[-1.795,51.674],[-1.801,51.674],[-1.804,51.669],[-1.805,51.669],[-1.808,51.672],[-1.809,51.675],[-1.808,51.678],[-1.81,51.681],[-1.812,51.681],[-1.817,51.68],[-1.819,51.683],[-1.823,51.684],[-1.83,51.685],[-1.832,51.684],[-1.84,51.686],[-1.844,51.683],[-1.847,51.679],[-1.848,51.678],[-1.845,51.674],[-1.844,51.674],[-1.834,51.672],[-1.826,51.674],[-1.825,51.672],[-1.819,51.665],[-1.826,51.663],[-1.829,51.663],[-1.832,51.661],[-1.838,51.659],[-1.844,51.661],[-1.85,51.668],[-1.855,51.667],[-1.859,51.668],[-1.863,51.665],[-1.866,51.666],[-1.871,51.669],[-1.875,51.669],[-1.882,51.667],[-1.879,51.665],[-1.88,51.663],[-1.881,51.661],[-1.885,51.655],[-1.886,51.649],[-1.888,51.649],[-1.894,51.654],[-1.9,51.656],[-1.902,51.655],[-1.904,51.656],[-1.907,51.658],[-1.914,51.66],[-1.918,51.657],[-1.916,51.653],[-1.922,51.652],[-1.928,51.655],[-1.93,51.656],[-1.933,51.658],[-1.933,51.661],[-1.937,51.663],[-1.942,51.661],[-1.948,51.663],[-1.954,51.665],[-1.957,51.663],[-1.96,51.659],[-1.958,51.655],[-1.963,51.654],[-1.965,51.653],[-1.961,51.651],[-1.955,51.647],[-1.957,51.643],[-1.957,51.64],[-1.966,51.64],[-1.973,51.639],[-1.977,51.64],[-1.977,51.642],[-1.979,51.642],[-1.981,51.643],[-1.983,51.644],[-1.986,51.646],[-1.988,51.645],[-1.992,51.644],[-1.995,51.646],[-2.001,51.643],[-2.011,51.655],[-2.012,51.653],[-2.026,51.653],[-2.032,51.65],[-2.042,51.651],[-2.045,51.653],[-2.047,51.654],[-2.045,51.656],[-2.046,51.662],[-2.052,51.663],[-2.053,51.657],[-2.055,51.657],[-2.053,51.66],[-2.057,51.661],[-2.06,51.661],[-2.063,51.658],[-2.066,51.658],[-2.069,51.659],[-2.076,51.658],[-2.077,51.661],[-2.086,51.659],[-2.092,51.661],[-2.093,51.658],[-2.092,51.656],[-2.097,51.654],[-2.101,51.652],[-2.099,51.65],[-2.097,51.649],[-2.087,51.647],[-2.091,51.645],[-2.098,51.635],[-2.106,51.633],[-2.101,51.629],[-2.104,51.627],[-2.112,51.629],[-2.113,51.628],[-2.113,51.626],[-2.112,51.625],[-2.11,51.623],[-2.115,51.622],[-2.118,51.624],[-2.118,51.625],[-2.123,51.624],[-2.124,51.623],[-2.127,51.624],[-2.127,51.622],[-2.124,51.616],[-2.131,51.613],[-2.13,51.611],[-2.134,51.612],[-2.138,51.61],[-2.138,51.604],[-2.144,51.598],[-2.142,51.597],[-2.14,51.596],[-2.138,51.594],[-2.14,51.593],[-2.145,51.594],[-2.155,51.595],[-2.158,51.592],[-2.161,51.591],[-2.163,51.592],[-2.169,51.595],[-2.17,51.595],[-2.182,51.598],[-2.18,51.595],[-2.192,51.592],[-2.193,51.59],[-2.196,51.59],[-2.202,51.593],[-2.204,51.595],[-2.207,51.595],[-2.209,51.59],[-2.211,51.59],[-2.217,51.587],[-2.222,51.588],[-2.222,51.585],[-2.221,51.583],[-2.227,51.582],[-2.231,51.583],[-2.238,51.578],[-2.247,51.583],[-2.251,51.583],[-2.25,51.581],[-2.257,51.58],[-2.263,51.578],[-2.263,51.571],[-2.258,51.571],[-2.253,51.572],[-2.263,51.564],[-2.278,51.565],[-2.277,51.562],[-2.277,51.559],[-2.27,51.556],[-2.269,51.547],[-2.262,51.544],[-2.263,51.54],[-2.266,51.535],[-2.263,51.532],[-2.26,51.532],[-2.257,51.523],[-2.254,51.523],[-2.254,51.521],[-2.255,51.518],[-2.26,51.519],[-2.265,51.519],[-2.274,51.518],[-2.281,51.516],[-2.29,51.512],[-2.298,51.51],[-2.311,51.507],[-2.323,51.504],[-2.331,51.502],[-2.33,51.501],[-2.324,51.497],[-2.329,51.496],[-2.34,51.494],[-2.353,51.491],[-2.357,51.491],[-2.354,51.496],[-2.35,51.5],[-2.35,51.503],[-2.349,51.505],[-2.346,51.506],[-2.342,51.509],[-2.343,51.511],[-2.339,51.512],[-2.334,51.514],[-2.334,51.518],[-2.334,51.521],[-2.337,51.524],[-2.342,51.527],[-2.343,51.529],[-2.333,51.527],[-2.326,51.528],[-2.322,51.528],[-2.322,51.53],[-2.332,51.531],[-2.334,51.536],[-2.324,51.537],[-2.316,51.54],[-2.313,51.54],[-2.312,51.543],[-2.315,51.552],[-2.321,51.556],[-2.317,51.559],[-2.319,51.561],[-2.33,51.564],[-2.33,51.566],[-2.332,51.568],[-2.328,51.576],[-2.329,51.577],[-2.339,51.577],[-2.338,51.58],[-2.342,51.582],[-2.346,51.582],[-2.349,51.579],[-2.355,51.58],[-2.356,51.579],[-2.361,51.578],[-2.365,51.579],[-2.37,51.582],[-2.377,51.577],[-2.378,51.576],[-2.386,51.58],[-2.391,51.577],[-2.396,51.578],[-2.399,51.577],[-2.399,51.575],[-2.403,51.575],[-2.409,51.573],[-2.414,51.577],[-2.419,51.575],[-2.426,51.576],[-2.431,51.576],[-2.431,51.577],[-2.435,51.579],[-2.44,51.579],[-2.441,51.581],[-2.446,51.58],[-2.449,51.578],[-2.452,51.578],[-2.456,51.581],[-2.463,51.58],[-2.473,51.581],[-2.481,51.577],[-2.484,51.581],[-2.49,51.58],[-2.493,51.58],[-2.492,51.582],[-2.493,51.583],[-2.494,51.587],[-2.496,51.588],[-2.492,51.592],[-2.494,51.592],[-2.501,51.593],[-2.498,51.596],[-2.498,51.598],[-2.492,51.596],[-2.491,51.596],[-2.489,51.594],[-2.485,51.597],[-2.489,51.597],[-2.489,51.601],[-2.495,51.602],[-2.497,51.603],[-2.495,51.606],[-2.496,51.609],[-2.493,51.61],[-2.49,51.609],[-2.488,51.61],[-2.491,51.611],[-2.493,51.611],[-2.496,51.613],[-2.491,51.615],[-2.49,51.618],[-2.485,51.619],[-2.483,51.619],[-2.482,51.623],[-2.483,51.625],[-2.48,51.627],[-2.48,51.629],[-2.484,51.633],[-2.492,51.632],[-2.496,51.629],[-2.503,51.628],[-2.505,51.631],[-2.507,51.636],[-2.508,51.637],[-2.51,51.634],[-2.512,51.63],[-2.518,51.635],[-2.518,51.637],[-2.528,51.64],[-2.527,51.643],[-2.531,51.647],[-2.532,51.652],[-2.529,51.654],[-2.526,51.655],[-2.531,51.659],[-2.531,51.662],[-2.536,51.668],[-2.534,51.675],[-2.54,51.679],[-2.537,51.681],[-2.533,51.681],[-2.524,51.683],[-2.522,51.682],[-2.519,51.682],[-2.512,51.684],[-2.502,51.689],[-2.5,51.694],[-2.499,51.698],[-2.493,51.702],[-2.491,51.703],[-2.491,51.705],[-2.488,51.707],[-2.488,51.71],[-2.49,51.717],[-2.489,51.723],[-2.48,51.726],[-2.48,51.727],[-2.478,51.729],[-2.477,51.73],[-2.473,51.734],[-2.471,51.735],[-2.47,51.737],[-2.467,51.739],[-2.459,51.742],[-2.451,51.745],[-2.445,51.748],[-2.442,51.751],[-2.439,51.754],[-2.435,51.754],[-2.423,51.752],[-2.419,51.752],[-2.415,51.751],[-2.41,51.75],[-2.407,51.75],[-2.403,51.751],[-2.399,51.753],[-2.391,51.757],[-2.387,51.758],[-2.384,51.759],[-2.382,51.76],[-2.381,51.764],[-2.383,51.771],[-2.384,51.775],[-2.388,51.777],[-2.394,51.78],[-2.409,51.785],[-2.413,51.786],[-2.419,51.787],[-2.428,51.787],[-2.436,51.788],[-2.444,51.79],[-2.446,51.792],[-2.446,51.795],[-2.445,51.799],[-2.442,51.802],[-2.438,51.805],[-2.432,51.811],[-2.428,51.814],[-2.425,51.815],[-2.421,51.815],[-2.414,51.811],[-2.415,51.81],[-2.413,51.807],[-2.409,51.805],[-2.4,51.802],[-2.39,51.801],[-2.389,51.8],[-2.384,51.797],[-2.38,51.795],[-2.375,51.794],[-2.37,51.793],[-2.363,51.792],[-2.357,51.793],[-2.354,51.794],[-2.347,51.798],[-2.345,51.8],[-2.345,51.803],[-2.347,51.807],[-2.358,51.811],[-2.359,51.812],[-2.36,51.818],[-2.361,51.82],[-2.362,51.82],[-2.363,51.815],[-2.362,51.813],[-2.362,51.81],[-2.36,51.806],[-2.357,51.804],[-2.354,51.804],[-2.349,51.804],[-2.347,51.803],[-2.347,51.802],[-2.35,51.799],[-2.357,51.796],[-2.366,51.794],[-2.371,51.796],[-2.379,51.799],[-2.385,51.802],[-2.399,51.805],[-2.403,51.806],[-2.404,51.808],[-2.409,51.814],[-2.414,51.815],[-2.417,51.817],[-2.421,51.819],[-2.426,51.818],[-2.43,51.817],[-2.433,51.816],[-2.439,51.812],[-2.443,51.808],[-2.446,51.803],[-2.446,51.802],[-2.449,51.799],[-2.451,51.796],[-2.451,51.794],[-2.449,51.791],[-2.448,51.787],[-2.445,51.785],[-2.44,51.783],[-2.436,51.782],[-2.43,51.783],[-2.424,51.785],[-2.419,51.785],[-2.414,51.785],[-2.411,51.784],[-2.407,51.782],[-2.4,51.779],[-2.398,51.779],[-2.393,51.777],[-2.391,51.776],[-2.388,51.773],[-2.387,51.769],[-2.386,51.764],[-2.385,51.763],[-2.387,51.761],[-2.39,51.76],[-2.395,51.76],[-2.4,51.759],[-2.404,51.758],[-2.411,51.755],[-2.419,51.754],[-2.43,51.756],[-2.434,51.757],[-2.444,51.753],[-2.454,51.748],[-2.455,51.747],[-2.465,51.744],[-2.471,51.741],[-2.475,51.738],[-2.477,51.736],[-2.48,51.734],[-2.489,51.731],[-2.492,51.728],[-2.495,51.726],[-2.498,51.72],[-2.501,51.715],[-2.505,51.71],[-2.511,51.709],[-2.514,51.709],[-2.518,51.708],[-2.52,51.708],[-2.525,51.703],[-2.527,51.702],[-2.537,51.701],[-2.542,51.699],[-2.544,51.697],[-2.547,51.695],[-2.549,51.693],[-2.56,51.689],[-2.565,51.688],[-2.571,51.686],[-2.573,51.684],[-2.575,51.682],[-2.578,51.68],[-2.582,51.681],[-2.588,51.68],[-2.594,51.679],[-2.602,51.676],[-2.603,51.674],[-2.605,51.676],[-2.604,51.676],[-2.605,51.68],[-2.609,51.684],[-2.605,51.686],[-2.598,51.687],[-2.6,51.688],[-2.603,51.687],[-2.607,51.688],[-2.609,51.69],[-2.611,51.691],[-2.61,51.692],[-2.612,51.695],[-2.615,51.696],[-2.619,51.695],[-2.623,51.692],[-2.627,51.692],[-2.632,51.692],[-2.633,51.691],[-2.639,51.695],[-2.641,51.697],[-2.638,51.702],[-2.64,51.703],[-2.648,51.708],[-2.647,51.709],[-2.651,51.713],[-2.656,51.714],[-2.656,51.716],[-2.659,51.716],[-2.658,51.718],[-2.661,51.717],[-2.664,51.718],[-2.662,51.721],[-2.659,51.722],[-2.659,51.725],[-2.653,51.725],[-2.653,51.729],[-2.663,51.725],[-2.664,51.723],[-2.667,51.723],[-2.67,51.723],[-2.672,51.721],[-2.673,51.722],[-2.673,51.724],[-2.67,51.726],[-2.675,51.726],[-2.673,51.724],[-2.678,51.722],[-2.68,51.724],[-2.684,51.725],[-2.687,51.728],[-2.684,51.734],[-2.681,51.736],[-2.679,51.734],[-2.676,51.734],[-2.674,51.735],[-2.674,51.738],[-2.672,51.739],[-2.67,51.74],[-2.668,51.746],[-2.666,51.748],[-2.663,51.754],[-2.663,51.756],[-2.666,51.757],[-2.671,51.759],[-2.674,51.761],[-2.676,51.765],[-2.67,51.768],[-2.668,51.767],[-2.66,51.773],[-2.656,51.773],[-2.657,51.778],[-2.662,51.78],[-2.66,51.784],[-2.656,51.786],[-2.654,51.788],[-2.657,51.791],[-2.655,51.792],[-2.66,51.794],[-2.66,51.797],[-2.667,51.798],[-2.671,51.799],[-2.674,51.801],[-2.683,51.801],[-2.683,51.803],[-2.687,51.803],[-2.684,51.805],[-2.682,51.808],[-2.682,51.812],[-2.683,51.814],[-2.681,51.814],[-2.677,51.817],[-2.673,51.817],[-2.67,51.823],[-2.667,51.825],[-2.658,51.823],[-2.651,51.821],[-2.642,51.824],[-2.642,51.831],[-2.644,51.832],[-2.637,51.838],[-2.636,51.842],[-2.631,51.844],[-2.621,51.843],[-2.629,51.849],[-2.627,51.852],[-2.623,51.852],[-2.619,51.854],[-2.614,51.853],[-2.609,51.848],[-2.604,51.855],[-2.6,51.857],[-2.598,51.856],[-2.594,51.856],[-2.591,51.854],[-2.589,51.852],[-2.585,51.85],[-2.585,51.856],[-2.589,51.858],[-2.588,51.861],[-2.589,51.863],[-2.586,51.862],[-2.582,51.863],[-2.581,51.86],[-2.578,51.859],[-2.578,51.857],[-2.574,51.858],[-2.567,51.858],[-2.564,51.86],[-2.563,51.864],[-2.564,51.865],[-2.563,51.867],[-2.556,51.869],[-2.554,51.871],[-2.55,51.872],[-2.547,51.87],[-2.542,51.869],[-2.539,51.867],[-2.537,51.865],[-2.535,51.867],[-2.532,51.863],[-2.528,51.865],[-2.526,51.867],[-2.523,51.865],[-2.521,51.867],[-2.52,51.868],[-2.519,51.871],[-2.52,51.873],[-2.517,51.875],[-2.516,51.876],[-2.513,51.877],[-2.512,51.878],[-2.509,51.879],[-2.507,51.88],[-2.51,51.881],[-2.509,51.882],[-2.506,51.884],[-2.503,51.883],[-2.502,51.881],[-2.5,51.88],[-2.498,51.881],[-2.498,51.884],[-2.496,51.886],[-2.491,51.887],[-2.49,51.886],[-2.489,51.884],[-2.484,51.883],[-2.485,51.881],[-2.485,51.878],[-2.482,51.88],[-2.478,51.881],[-2.471,51.882],[-2.469,51.88],[-2.464,51.882],[-2.469,51.885],[-2.474,51.884],[-2.479,51.885],[-2.482,51.888],[-2.479,51.889],[-2.473,51.89],[-2.471,51.893],[-2.472,51.898],[-2.474,51.901],[-2.475,51.904],[-2.476,51.904],[-2.476,51.907],[-2.474,51.907],[-2.472,51.906],[-2.466,51.908],[-2.461,51.907],[-2.457,51.907],[-2.457,51.908],[-2.455,51.911],[-2.455,51.912],[-2.458,51.915],[-2.462,51.916],[-2.467,51.915],[-2.468,51.912],[-2.474,51.909],[-2.477,51.911],[-2.48,51.911],[-2.482,51.913],[-2.478,51.915],[-2.475,51.916],[-2.473,51.919],[-2.475,51.921],[-2.47,51.925],[-2.466,51.925],[-2.464,51.926],[-2.463,51.93],[-2.46,51.931],[-2.456,51.93],[-2.455,51.932],[-2.448,51.933],[-2.444,51.937],[-2.448,51.938],[-2.451,51.937],[-2.453,51.94],[-2.46,51.942],[-2.458,51.942],[-2.461,51.944],[-2.468,51.942],[-2.475,51.946],[-2.481,51.95],[-2.487,51.952],[-2.494,51.954],[-2.499,51.955],[-2.498,51.957],[-2.499,51.959],[-2.5,51.963],[-2.507,51.965],[-2.507,51.966],[-2.499,51.97],[-2.494,51.967],[-2.495,51.971],[-2.493,51.971],[-2.486,51.973],[-2.486,51.974],[-2.483,51.976],[-2.485,51.977],[-2.489,51.978],[-2.488,51.981],[-2.49,51.983],[-2.49,51.985],[-2.488,51.986],[-2.49,51.99],[-2.488,51.991],[-2.484,51.989],[-2.479,51.988],[-2.476,51.988],[-2.473,51.987],[-2.474,51.99],[-2.478,51.993],[-2.484,51.996],[-2.485,51.998],[-2.478,52.001],[-2.477,52.006],[-2.474,52.007],[-2.47,52.006],[-2.471,52.008],[-2.463,52.006],[-2.461,52.008],[-2.455,52.008],[-2.449,52.007],[-2.448,52.007],[-2.45,52.009],[-2.446,52.01],[-2.453,52.016],[-2.451,52.017],[-2.447,52.018],[-2.438,52.013],[-2.439,52.01],[-2.429,52.004],[-2.43,52.002],[-2.428,52],[-2.429,52],[-2.425,51.998],[-2.419,51.999],[-2.419,52.001],[-2.414,52.002],[-2.414,52],[-2.412,51.999],[-2.411,51.996],[-2.407,51.992],[-2.402,51.993],[-2.398,51.993],[-2.396,51.991],[-2.391,51.993],[-2.383,51.994],[-2.38,51.994],[-2.381,51.992],[-2.383,51.989],[-2.378,51.986],[-2.371,51.986],[-2.372,51.987],[-2.37,51.992],[-2.365,51.993],[-2.364,51.992],[-2.362,51.993],[-2.357,51.993],[-2.357,51.994],[-2.365,51.996],[-2.365,51.997],[-2.348,51.995],[-2.346,51.996],[-2.343,51.997],[-2.341,52],[-2.332,52.001],[-2.331,52.002],[-2.327,52.002],[-2.324,52.002],[-2.325,51.998],[-2.322,51.999],[-2.323,52],[-2.322,52.003],[-2.32,52.005],[-2.322,52.008],[-2.318,52.007],[-2.315,52.005],[-2.316,52.002],[-2.315,52.001],[-2.31,52.001],[-2.311,52.002],[-2.306,52.002],[-2.305,52.003],[-2.301,52.002],[-2.296,52.005],[-2.29,52.003],[-2.287,51.999],[-2.284,52],[-2.274,52.001],[-2.272,52.001],[-2.273,52.004],[-2.271,52.007],[-2.27,52.01],[-2.26,52.012],[-2.258,52.012],[-2.254,52.016],[-2.254,52.018],[-2.263,52.019],[-2.262,52.027],[-2.264,52.028],[-2.263,52.031],[-2.262,52.032],[-2.256,52.036],[-2.246,52.035],[-2.24,52.039],[-2.235,52.039],[-2.235,52.036],[-2.234,52.035],[-2.233,52.034],[-2.236,52.031],[-2.236,52.028],[-2.231,52.028],[-2.228,52.026],[-2.223,52.025],[-2.218,52.027],[-2.213,52.026],[-2.21,52.024],[-2.202,52.028],[-2.195,52.03],[-2.197,52.033],[-2.201,52.035],[-2.209,52.042],[-2.209,52.044],[-2.204,52.046],[-2.202,52.048],[-2.201,52.051],[-2.2,52.055],[-2.199,52.056],[-2.193,52.052],[-2.188,52.053],[-2.187,52.048],[-2.181,52.049],[-2.172,52.052],[-2.178,52.054],[-2.178,52.055],[-2.171,52.058],[-2.169,52.055],[-2.171,52.052],[-2.155,52.042],[-2.155,52.039],[-2.148,52.043],[-2.143,52.041],[-2.145,52.039],[-2.143,52.039],[-2.138,52.04],[-2.136,52.042],[-2.136,52.044],[-2.14,52.047],[-2.136,52.048],[-2.126,52.031],[-2.117,52.033],[-2.116,52.036],[-2.118,52.04],[-2.119,52.044],[-2.11,52.045],[-2.11,52.051],[-2.109,52.051],[-2.108,52.055],[-2.106,52.055],[-2.103,52.058],[-2.097,52.058],[-2.096,52.058],[-2.093,52.062],[-2.091,52.061],[-2.081,52.054],[-2.081,52.053],[-2.076,52.055],[-2.066,52.06],[-2.062,52.065],[-2.056,52.067],[-2.054,52.066],[-2.051,52.062],[-2.052,52.052],[-2.049,52.05],[-2.038,52.053],[-2.029,52.053],[-2.027,52.047],[-2.028,52.044],[-2.026,52.042],[-2.024,52.041],[-2.019,52.038],[-2.012,52.034],[-2.012,52.032],[-2.015,52.03],[-2.012,52.027],[-2.007,52.025],[-2.009,52.024],[-2.007,52.023],[-2.009,52.018],[-2.009,52.017],[-2.009,52.015],[-2.006,52.012],[-2.005,52.009],[-2,52.007],[-1.991,52.006],[-1.984,52.006],[-1.977,52.01],[-1.966,52.011],[-1.958,52.012],[-1.955,52.01],[-1.95,52.006],[-1.943,52.008],[-1.936,52.005],[-1.932,52.005],[-1.927,52],[-1.925,52.001],[-1.924,52.004],[-1.915,52.004],[-1.913,52.004],[-1.912,52.006],[-1.907,52.005],[-1.908,52.003],[-1.91,52.002],[-1.911,52],[-1.904,51.999],[-1.898,52],[-1.894,51.999],[-1.892,51.997],[-1.882,51.996],[-1.877,51.995],[-1.874,51.991],[-1.873,51.99],[-1.869,51.993],[-1.866,51.994],[-1.863,51.997],[-1.858,51.998],[-1.856,52],[-1.85,52.001],[-1.846,51.999],[-1.84,52],[-1.839,52.005],[-1.837,52.003],[-1.836,52.01],[-1.837,52.011],[-1.835,52.013],[-1.835,52.019],[-1.829,52.021],[-1.824,52.02],[-1.821,52.019],[-1.814,52.023],[-1.815,52.024],[-1.822,52.028],[-1.826,52.029],[-1.825,52.031],[-1.826,52.039],[-1.82,52.04],[-1.812,52.046],[-1.81,52.047],[-1.812,52.05],[-1.82,52.052],[-1.822,52.057],[-1.823,52.062],[-1.825,52.063],[-1.822,52.064],[-1.83,52.066],[-1.829,52.069],[-1.826,52.072],[-1.823,52.071],[-1.819,52.072],[-1.818,52.074],[-1.811,52.075],[-1.811,52.076],[-1.812,52.078],[-1.816,52.083],[-1.814,52.083],[-1.807,52.084],[-1.806,52.09],[-1.804,52.092],[-1.813,52.096],[-1.811,52.101],[-1.8,52.104],[-1.797,52.102],[-1.793,52.102],[-1.787,52.105],[-1.791,52.107],[-1.793,52.11],[-1.789,52.112],[-1.78,52.114],[-1.778,52.113],[-1.779,52.111],[-1.777,52.109],[-1.772,52.109],[-1.768,52.111],[-1.764,52.111],[-1.763,52.108],[-1.764,52.105],[-1.763,52.104],[-1.759,52.106],[-1.755,52.102],[-1.753,52.102],[-1.748,52.104],[-1.746,52.103],[-1.737,52.098],[-1.734,52.1],[-1.729,52.099],[-1.726,52.096],[-1.727,52.092],[-1.722,52.089],[-1.724,52.088],[-1.726,52.084],[-1.728,52.081],[-1.728,52.078],[-1.722,52.075],[-1.722,52.071],[-1.714,52.068],[-1.711,52.069],[-1.71,52.071],[-1.707,52.071],[-1.702,52.071],[-1.703,52.068],[-1.704,52.063],[-1.698,52.063],[-1.695,52.061],[-1.694,52.06],[-1.685,52.058],[-1.685,52.055],[-1.677,52.055],[-1.674,52.056],[-1.663,52.057],[-1.66,52.056],[-1.656,52.057],[-1.652,52.054],[-1.651,52.054],[-1.645,52.051],[-1.645,52.048],[-1.65,52.046],[-1.652,52.043],[-1.657,52.041],[-1.658,52.041],[-1.665,52.036],[-1.657,52.035],[-1.654,52.032],[-1.649,52.032],[-1.647,52.033],[-1.633,52.034],[-1.63,52.03],[-1.634,52.029],[-1.631,52.026],[-1.625,52.024],[-1.626,52.02],[-1.627,52.018],[-1.631,52.015],[-1.638,52.017],[-1.643,52.015],[-1.646,52.012],[-1.643,52.011],[-1.645,52.008],[-1.652,52.009],[-1.655,52.001],[-1.646,51.998],[-1.643,51.998],[-1.635,51.999],[-1.629,51.999],[-1.628,51.995],[-1.628,51.993],[-1.625,51.993],[-1.616,51.994],[-1.614,51.989],[-1.61,51.982],[-1.598,51.981],[-1.598,51.98],[-1.594,51.975],[-1.596,51.973],[-1.593,51.968],[-1.592,51.967],[-1.594,51.965],[-1.6,51.963],[-1.607,51.959],[-1.607,51.958],[-1.605,51.957],[-1.601,51.956],[-1.598,51.955],[-1.598,51.952],[-1.607,51.951],[-1.613,51.954],[-1.619,51.95],[-1.624,51.947],[-1.625,51.944],[-1.618,51.941],[-1.617,51.939],[-1.614,51.937],[-1.615,51.934],[-1.622,51.934],[-1.624,51.932],[-1.63,51.925],[-1.627,51.923],[-1.632,51.919],[-1.638,51.917],[-1.642,51.922],[-1.644,51.924],[-1.648,51.924],[-1.664,51.92],[-1.67,51.922],[-1.674,51.923],[-1.684,51.923],[-1.681,51.921],[-1.68,51.918],[-1.675,51.916],[-1.672,51.915],[-1.669,51.913],[-1.665,51.911],[-1.661,51.909],[-1.657,51.907],[-1.661,51.904],[-1.663,51.905],[-1.669,51.904],[-1.67,51.905],[-1.674,51.904],[-1.676,51.908],[-1.678,51.908],[-1.68,51.905],[-1.678,51.895],[-1.679,51.894],[-1.688,51.897],[-1.692,51.896],[-1.695,51.894],[-1.701,51.892],[-1.708,51.892],[-1.707,51.89],[-1.694,51.882],[-1.692,51.882],[-1.694,51.88],[-1.692,51.877],[-1.692,51.875],[-1.687,51.873],[-1.685,51.87],[-1.688,51.869],[-1.694,51.864],[-1.697,51.862],[-1.695,51.862],[-1.681,51.859],[-1.676,51.852],[-1.676,51.851],[-1.692,51.85],[-1.698,51.846],[-1.698,51.845],[-1.699,51.839],[-1.713,51.837],[-1.724,51.839],[-1.73,51.836],[-1.732,51.834],[-1.731,51.829],[-1.735,51.825],[-1.732,51.823],[-1.737,51.819],[-1.738,51.814],[-1.749,51.816],[-1.754,51.817],[-1.758,51.812],[-1.75,51.807],[-1.747,51.801],[-1.739,51.801],[-1.734,51.801],[-1.728,51.799],[-1.725,51.791],[-1.725,51.789],[-1.719,51.789],[-1.711,51.789],[-1.704,51.79],[-1.705,51.786],[-1.705,51.782],[-1.704,51.778],[-1.694,51.768],[-1.692,51.765],[-1.688,51.762],[-1.686,51.769],[-1.674,51.771],[-1.675,51.77],[-1.668,51.765],[-1.666,51.762],[-1.663,51.76],[-1.658,51.761],[-1.653,51.761],[-1.653,51.766],[-1.648,51.762],[-1.64,51.759],[-1.637,51.757],[-1.637,51.754],[-1.636,51.752],[-1.619,51.749],[-1.618,51.746],[-1.619,51.744],[-1.62,51.744],[-1.621,51.738],[-1.622,51.737],[-1.625,51.733],[-1.629,51.73],[-1.631,51.726],[-1.629,51.724],[-1.631,51.723],[-1.628,51.72],[-1.626,51.721],[-1.623,51.721],[-1.625,51.716],[-1.623,51.711],[-1.625,51.708],[-1.629,51.709],[-1.634,51.713],[-1.642,51.707],[-1.64,51.704],[-1.64,51.703],[-1.637,51.7],[-1.637,51.695],[-1.633,51.693],[-1.626,51.692]]]]},"properties":{"OBJECTID":40,"NAME":"GL","KEY":"GL","Shape_Leng":6.72277,"Shape_Area":0.369392}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.544,51.4],[-0.551,51.398],[-0.545,51.397],[-0.549,51.395],[-0.548,51.392],[-0.551,51.392],[-0.552,51.39],[-0.551,51.389],[-0.553,51.386],[-0.557,51.386],[-0.558,51.387],[-0.567,51.387],[-0.57,51.389],[-0.578,51.387],[-0.581,51.387],[-0.586,51.386],[-0.592,51.385],[-0.598,51.385],[-0.614,51.388],[-0.613,51.39],[-0.614,51.394],[-0.612,51.395],[-0.612,51.397],[-0.61,51.397],[-0.606,51.4],[-0.605,51.401],[-0.596,51.406],[-0.603,51.409],[-0.608,51.409],[-0.606,51.411],[-0.598,51.412],[-0.592,51.415],[-0.578,51.413],[-0.576,51.415],[-0.573,51.416],[-0.571,51.417],[-0.567,51.417],[-0.565,51.415],[-0.56,51.415],[-0.56,51.413],[-0.557,51.413],[-0.556,51.414],[-0.556,51.416],[-0.551,51.418],[-0.552,51.415],[-0.552,51.411],[-0.555,51.408],[-0.553,51.402],[-0.55,51.402],[-0.544,51.4]]],[[[-0.646,50.907],[-0.649,50.905],[-0.65,50.9],[-0.65,50.895],[-0.66,50.894],[-0.669,50.895],[-0.666,50.9],[-0.67,50.9],[-0.674,50.899],[-0.685,50.899],[-0.687,50.907],[-0.682,50.906],[-0.679,50.906],[-0.676,50.907],[-0.682,50.919],[-0.696,50.933],[-0.7,50.934],[-0.71,50.935],[-0.717,50.938],[-0.72,50.938],[-0.726,50.937],[-0.735,50.94],[-0.74,50.939],[-0.748,50.936],[-0.757,50.939],[-0.758,50.936],[-0.765,50.936],[-0.769,50.934],[-0.778,50.934],[-0.784,50.936],[-0.793,50.945],[-0.798,50.946],[-0.801,50.948],[-0.81,50.951],[-0.818,50.954],[-0.82,50.956],[-0.827,50.953],[-0.832,50.948],[-0.838,50.948],[-0.84,50.949],[-0.844,50.959],[-0.849,50.96],[-0.851,50.959],[-0.861,50.956],[-0.856,50.948],[-0.856,50.946],[-0.857,50.941],[-0.861,50.942],[-0.865,50.938],[-0.87,50.939],[-0.881,50.941],[-0.884,50.939],[-0.888,50.939],[-0.897,50.942],[-0.9,50.946],[-0.901,50.949],[-0.9,50.952],[-0.908,50.952],[-0.914,50.954],[-0.922,50.951],[-0.925,50.951],[-0.939,50.942],[-0.943,50.945],[-0.95,50.951],[-0.952,50.949],[-0.956,50.949],[-0.968,50.95],[-0.969,50.96],[-0.973,50.972],[-0.975,50.973],[-0.983,50.972],[-0.988,50.969],[-0.992,50.97],[-0.993,50.973],[-1.011,50.971],[-1.011,50.97],[-1.016,50.967],[-1.03,50.968],[-1.03,50.966],[-1.028,50.966],[-1.024,50.962],[-1.023,50.959],[-1.026,50.958],[-1.028,50.955],[-1.03,50.952],[-1.036,50.95],[-1.038,50.954],[-1.034,50.957],[-1.035,50.96],[-1.04,50.962],[-1.044,50.961],[-1.045,50.967],[-1.046,50.969],[-1.052,50.969],[-1.054,50.97],[-1.057,50.972],[-1.059,50.975],[-1.068,50.973],[-1.076,50.978],[-1.077,50.979],[-1.079,50.986],[-1.083,50.991],[-1.085,50.993],[-1.091,50.996],[-1.094,51],[-1.091,51.003],[-1.094,51.004],[-1.102,51.005],[-1.104,51.007],[-1.107,51.006],[-1.107,51.008],[-1.101,51.011],[-1.106,51.013],[-1.102,51.016],[-1.105,51.019],[-1.117,51.017],[-1.122,51.025],[-1.118,51.028],[-1.113,51.03],[-1.106,51.029],[-1.098,51.032],[-1.095,51.034],[-1.092,51.034],[-1.09,51.035],[-1.084,51.031],[-1.081,51.031],[-1.075,51.031],[-1.074,51.033],[-1.066,51.041],[-1.063,51.043],[-1.056,51.046],[-1.053,51.047],[-1.054,51.049],[-1.06,51.052],[-1.056,51.055],[-1.052,51.056],[-1.047,51.055],[-1.044,51.062],[-1.033,51.059],[-1.031,51.068],[-1.03,51.069],[-1.022,51.069],[-1.026,51.072],[-1.036,51.074],[-1.036,51.078],[-1.029,51.084],[-1.028,51.086],[-1.031,51.086],[-1.04,51.083],[-1.041,51.086],[-1.039,51.088],[-1.031,51.095],[-1.034,51.097],[-1.036,51.095],[-1.04,51.094],[-1.041,51.095],[-1.046,51.096],[-1.05,51.095],[-1.054,51.096],[-1.061,51.096],[-1.065,51.096],[-1.068,51.096],[-1.069,51.095],[-1.075,51.094],[-1.075,51.098],[-1.077,51.099],[-1.081,51.097],[-1.083,51.099],[-1.084,51.101],[-1.083,51.104],[-1.09,51.108],[-1.095,51.108],[-1.102,51.115],[-1.097,51.117],[-1.091,51.121],[-1.093,51.121],[-1.102,51.124],[-1.106,51.124],[-1.107,51.131],[-1.103,51.132],[-1.102,51.134],[-1.098,51.134],[-1.097,51.135],[-1.093,51.138],[-1.09,51.139],[-1.085,51.142],[-1.087,51.144],[-1.089,51.15],[-1.084,51.153],[-1.08,51.164],[-1.075,51.166],[-1.074,51.169],[-1.077,51.171],[-1.08,51.176],[-1.086,51.181],[-1.08,51.187],[-1.075,51.186],[-1.069,51.184],[-1.061,51.181],[-1.059,51.183],[-1.052,51.187],[-1.048,51.186],[-1.043,51.186],[-1.038,51.187],[-1.04,51.19],[-1.036,51.191],[-1.028,51.19],[-1.018,51.19],[-1.018,51.194],[-1.014,51.195],[-1.016,51.2],[-1.016,51.201],[-1.017,51.203],[-1.017,51.205],[-1.01,51.209],[-1.007,51.21],[-0.999,51.211],[-0.998,51.208],[-0.999,51.201],[-1.001,51.198],[-0.999,51.195],[-0.991,51.198],[-0.988,51.198],[-0.986,51.196],[-0.983,51.196],[-0.981,51.2],[-0.98,51.198],[-0.977,51.198],[-0.976,51.193],[-0.979,51.192],[-0.983,51.19],[-0.981,51.189],[-0.969,51.186],[-0.96,51.185],[-0.963,51.191],[-0.962,51.192],[-0.954,51.196],[-0.95,51.197],[-0.944,51.2],[-0.94,51.2],[-0.934,51.2],[-0.93,51.199],[-0.928,51.202],[-0.923,51.206],[-0.916,51.209],[-0.913,51.209],[-0.91,51.212],[-0.912,51.207],[-0.906,51.205],[-0.901,51.207],[-0.9,51.21],[-0.896,51.21],[-0.898,51.218],[-0.902,51.218],[-0.904,51.218],[-0.897,51.222],[-0.899,51.225],[-0.893,51.229],[-0.892,51.231],[-0.889,51.233],[-0.89,51.24],[-0.889,51.242],[-0.885,51.243],[-0.885,51.245],[-0.884,51.247],[-0.887,51.249],[-0.893,51.248],[-0.89,51.254],[-0.888,51.253],[-0.884,51.255],[-0.884,51.257],[-0.881,51.256],[-0.877,51.255],[-0.874,51.255],[-0.873,51.26],[-0.875,51.265],[-0.871,51.266],[-0.869,51.272],[-0.867,51.273],[-0.865,51.275],[-0.871,51.278],[-0.873,51.281],[-0.874,51.285],[-0.875,51.287],[-0.872,51.29],[-0.869,51.292],[-0.872,51.296],[-0.869,51.297],[-0.866,51.297],[-0.862,51.296],[-0.859,51.296],[-0.855,51.298],[-0.85,51.297],[-0.846,51.297],[-0.846,51.298],[-0.853,51.302],[-0.85,51.307],[-0.852,51.308],[-0.864,51.311],[-0.865,51.312],[-0.867,51.316],[-0.868,51.32],[-0.859,51.321],[-0.862,51.325],[-0.858,51.326],[-0.855,51.33],[-0.859,51.331],[-0.86,51.333],[-0.858,51.336],[-0.854,51.335],[-0.852,51.336],[-0.851,51.341],[-0.853,51.341],[-0.85,51.344],[-0.85,51.348],[-0.853,51.351],[-0.852,51.354],[-0.85,51.355],[-0.847,51.355],[-0.842,51.354],[-0.84,51.354],[-0.833,51.353],[-0.832,51.356],[-0.828,51.357],[-0.831,51.36],[-0.83,51.361],[-0.828,51.361],[-0.825,51.363],[-0.823,51.363],[-0.823,51.361],[-0.821,51.36],[-0.819,51.361],[-0.818,51.358],[-0.818,51.357],[-0.813,51.358],[-0.808,51.359],[-0.802,51.359],[-0.799,51.357],[-0.793,51.357],[-0.788,51.358],[-0.786,51.357],[-0.784,51.358],[-0.78,51.359],[-0.776,51.359],[-0.772,51.36],[-0.768,51.364],[-0.766,51.367],[-0.765,51.37],[-0.766,51.373],[-0.759,51.371],[-0.751,51.369],[-0.743,51.369],[-0.74,51.37],[-0.737,51.374],[-0.726,51.386],[-0.723,51.384],[-0.722,51.383],[-0.703,51.377],[-0.702,51.377],[-0.701,51.38],[-0.693,51.38],[-0.69,51.381],[-0.688,51.381],[-0.682,51.38],[-0.682,51.382],[-0.679,51.382],[-0.677,51.383],[-0.672,51.382],[-0.67,51.383],[-0.664,51.382],[-0.664,51.385],[-0.66,51.385],[-0.659,51.388],[-0.656,51.386],[-0.654,51.386],[-0.652,51.384],[-0.651,51.384],[-0.649,51.381],[-0.647,51.381],[-0.644,51.38],[-0.643,51.377],[-0.641,51.377],[-0.635,51.378],[-0.627,51.376],[-0.623,51.374],[-0.616,51.375],[-0.61,51.373],[-0.606,51.375],[-0.6,51.371],[-0.597,51.37],[-0.593,51.37],[-0.588,51.37],[-0.584,51.371],[-0.578,51.369],[-0.572,51.367],[-0.567,51.365],[-0.565,51.363],[-0.572,51.36],[-0.57,51.359],[-0.565,51.359],[-0.557,51.361],[-0.552,51.361],[-0.55,51.362],[-0.548,51.363],[-0.545,51.361],[-0.548,51.361],[-0.552,51.358],[-0.554,51.356],[-0.554,51.355],[-0.55,51.352],[-0.551,51.351],[-0.546,51.348],[-0.541,51.347],[-0.541,51.346],[-0.536,51.347],[-0.533,51.346],[-0.532,51.343],[-0.525,51.341],[-0.522,51.342],[-0.518,51.339],[-0.517,51.337],[-0.523,51.335],[-0.522,51.333],[-0.519,51.333],[-0.514,51.331],[-0.512,51.33],[-0.507,51.329],[-0.504,51.33],[-0.505,51.331],[-0.501,51.332],[-0.492,51.33],[-0.483,51.334],[-0.481,51.331],[-0.478,51.329],[-0.474,51.327],[-0.47,51.326],[-0.456,51.324],[-0.45,51.322],[-0.455,51.317],[-0.457,51.316],[-0.457,51.311],[-0.456,51.308],[-0.453,51.308],[-0.451,51.307],[-0.446,51.306],[-0.446,51.303],[-0.444,51.303],[-0.443,51.3],[-0.44,51.3],[-0.441,51.295],[-0.442,51.293],[-0.441,51.29],[-0.448,51.287],[-0.45,51.285],[-0.458,51.285],[-0.455,51.281],[-0.461,51.279],[-0.463,51.279],[-0.464,51.281],[-0.468,51.285],[-0.473,51.284],[-0.478,51.282],[-0.478,51.275],[-0.477,51.272],[-0.475,51.27],[-0.474,51.269],[-0.483,51.267],[-0.473,51.263],[-0.472,51.263],[-0.467,51.26],[-0.467,51.257],[-0.467,51.256],[-0.464,51.255],[-0.468,51.248],[-0.468,51.247],[-0.472,51.239],[-0.472,51.237],[-0.469,51.235],[-0.468,51.232],[-0.465,51.234],[-0.461,51.234],[-0.458,51.236],[-0.453,51.232],[-0.44,51.234],[-0.435,51.232],[-0.428,51.231],[-0.432,51.222],[-0.438,51.22],[-0.439,51.218],[-0.442,51.218],[-0.44,51.216],[-0.437,51.214],[-0.437,51.212],[-0.436,51.209],[-0.436,51.208],[-0.437,51.207],[-0.437,51.205],[-0.435,51.203],[-0.436,51.201],[-0.437,51.2],[-0.434,51.198],[-0.43,51.195],[-0.431,51.193],[-0.427,51.187],[-0.431,51.183],[-0.432,51.182],[-0.433,51.18],[-0.431,51.178],[-0.429,51.175],[-0.435,51.172],[-0.433,51.17],[-0.429,51.169],[-0.43,51.164],[-0.423,51.163],[-0.423,51.164],[-0.421,51.168],[-0.42,51.169],[-0.419,51.166],[-0.417,51.165],[-0.418,51.162],[-0.416,51.16],[-0.417,51.158],[-0.419,51.159],[-0.418,51.156],[-0.416,51.154],[-0.419,51.149],[-0.412,51.146],[-0.413,51.144],[-0.415,51.145],[-0.417,51.142],[-0.414,51.141],[-0.411,51.139],[-0.414,51.136],[-0.414,51.134],[-0.413,51.132],[-0.417,51.132],[-0.42,51.132],[-0.424,51.13],[-0.422,51.127],[-0.429,51.127],[-0.43,51.128],[-0.434,51.128],[-0.439,51.125],[-0.446,51.123],[-0.444,51.122],[-0.436,51.12],[-0.437,51.119],[-0.446,51.114],[-0.446,51.113],[-0.452,51.107],[-0.456,51.107],[-0.462,51.109],[-0.465,51.111],[-0.468,51.111],[-0.472,51.112],[-0.476,51.111],[-0.478,51.111],[-0.482,51.107],[-0.486,51.108],[-0.492,51.107],[-0.509,51.105],[-0.509,51.107],[-0.511,51.106],[-0.509,51.105],[-0.504,51.101],[-0.498,51.099],[-0.502,51.098],[-0.504,51.1],[-0.51,51.099],[-0.51,51.097],[-0.505,51.093],[-0.508,51.091],[-0.514,51.091],[-0.515,51.092],[-0.519,51.092],[-0.522,51.093],[-0.523,51.092],[-0.526,51.093],[-0.528,51.092],[-0.529,51.093],[-0.534,51.091],[-0.535,51.089],[-0.537,51.088],[-0.537,51.086],[-0.534,51.085],[-0.534,51.083],[-0.538,51.082],[-0.542,51.081],[-0.546,51.083],[-0.551,51.088],[-0.555,51.088],[-0.559,51.087],[-0.564,51.084],[-0.568,51.086],[-0.576,51.084],[-0.576,51.085],[-0.582,51.088],[-0.583,51.087],[-0.585,51.086],[-0.59,51.084],[-0.592,51.083],[-0.595,51.083],[-0.596,51.078],[-0.598,51.076],[-0.596,51.071],[-0.594,51.068],[-0.592,51.068],[-0.589,51.061],[-0.589,51.059],[-0.585,51.056],[-0.588,51.053],[-0.589,51.049],[-0.585,51.05],[-0.578,51.055],[-0.576,51.055],[-0.58,51.047],[-0.578,51.047],[-0.575,51.044],[-0.576,51.04],[-0.578,51.039],[-0.582,51.039],[-0.58,51.034],[-0.577,51.033],[-0.576,51.032],[-0.573,51.032],[-0.571,51.032],[-0.568,51.031],[-0.571,51.028],[-0.567,51.023],[-0.568,51.022],[-0.566,51.019],[-0.566,51.016],[-0.569,51.013],[-0.563,51.006],[-0.563,51.005],[-0.566,51.001],[-0.564,50.999],[-0.562,50.999],[-0.556,50.998],[-0.557,50.997],[-0.558,50.993],[-0.564,50.99],[-0.566,50.99],[-0.573,50.987],[-0.575,50.987],[-0.577,50.989],[-0.581,50.987],[-0.582,50.986],[-0.579,50.98],[-0.58,50.977],[-0.58,50.972],[-0.58,50.969],[-0.58,50.967],[-0.586,50.967],[-0.588,50.965],[-0.585,50.963],[-0.586,50.959],[-0.585,50.956],[-0.594,50.953],[-0.597,50.954],[-0.602,50.954],[-0.603,50.95],[-0.605,50.947],[-0.61,50.945],[-0.612,50.945],[-0.615,50.943],[-0.61,50.939],[-0.611,50.937],[-0.615,50.935],[-0.614,50.933],[-0.615,50.929],[-0.62,50.928],[-0.621,50.93],[-0.62,50.932],[-0.619,50.934],[-0.632,50.932],[-0.631,50.929],[-0.631,50.923],[-0.631,50.922],[-0.635,50.919],[-0.636,50.917],[-0.644,50.912],[-0.646,50.907]]]]},"properties":{"OBJECTID":41,"NAME":"GU","KEY":"GU","Shape_Leng":3.58112,"Shape_Area":0.211064}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.293,51.535],[-0.295,51.535],[-0.297,51.534],[-0.299,51.534],[-0.302,51.532],[-0.311,51.534],[-0.311,51.536],[-0.307,51.537],[-0.306,51.54],[-0.309,51.544],[-0.312,51.545],[-0.315,51.547],[-0.313,51.548],[-0.313,51.55],[-0.319,51.552],[-0.327,51.555],[-0.331,51.556],[-0.337,51.557],[-0.34,51.557],[-0.341,51.556],[-0.346,51.558],[-0.345,51.559],[-0.35,51.559],[-0.364,51.557],[-0.378,51.555],[-0.386,51.553],[-0.391,51.55],[-0.394,51.55],[-0.395,51.548],[-0.399,51.548],[-0.406,51.548],[-0.415,51.548],[-0.428,51.549],[-0.425,51.551],[-0.427,51.554],[-0.427,51.556],[-0.431,51.557],[-0.431,51.559],[-0.43,51.561],[-0.434,51.563],[-0.433,51.564],[-0.429,51.567],[-0.44,51.57],[-0.446,51.572],[-0.442,51.573],[-0.442,51.576],[-0.444,51.577],[-0.446,51.579],[-0.448,51.579],[-0.449,51.582],[-0.444,51.583],[-0.442,51.585],[-0.447,51.584],[-0.449,51.586],[-0.448,51.588],[-0.451,51.591],[-0.45,51.594],[-0.451,51.595],[-0.457,51.596],[-0.464,51.602],[-0.462,51.604],[-0.454,51.606],[-0.448,51.61],[-0.449,51.612],[-0.448,51.612],[-0.447,51.616],[-0.447,51.618],[-0.445,51.619],[-0.444,51.62],[-0.442,51.623],[-0.441,51.626],[-0.442,51.63],[-0.439,51.631],[-0.439,51.633],[-0.437,51.633],[-0.436,51.631],[-0.434,51.632],[-0.437,51.635],[-0.433,51.635],[-0.43,51.637],[-0.428,51.635],[-0.424,51.636],[-0.424,51.638],[-0.419,51.638],[-0.418,51.637],[-0.419,51.634],[-0.418,51.633],[-0.415,51.633],[-0.414,51.629],[-0.413,51.629],[-0.411,51.623],[-0.404,51.625],[-0.402,51.624],[-0.404,51.622],[-0.404,51.62],[-0.402,51.62],[-0.401,51.615],[-0.394,51.613],[-0.389,51.615],[-0.387,51.615],[-0.382,51.614],[-0.38,51.617],[-0.378,51.617],[-0.381,51.62],[-0.378,51.62],[-0.374,51.619],[-0.368,51.621],[-0.369,51.624],[-0.37,51.626],[-0.362,51.629],[-0.358,51.627],[-0.35,51.626],[-0.343,51.626],[-0.341,51.626],[-0.339,51.628],[-0.338,51.631],[-0.333,51.631],[-0.331,51.63],[-0.329,51.631],[-0.328,51.633],[-0.324,51.636],[-0.324,51.639],[-0.32,51.641],[-0.315,51.639],[-0.306,51.636],[-0.302,51.635],[-0.3,51.635],[-0.296,51.635],[-0.287,51.636],[-0.281,51.638],[-0.278,51.638],[-0.273,51.638],[-0.271,51.637],[-0.266,51.63],[-0.263,51.63],[-0.261,51.626],[-0.257,51.621],[-0.261,51.618],[-0.259,51.617],[-0.261,51.614],[-0.265,51.613],[-0.265,51.612],[-0.261,51.612],[-0.253,51.612],[-0.251,51.611],[-0.252,51.609],[-0.248,51.607],[-0.253,51.605],[-0.257,51.601],[-0.257,51.599],[-0.26,51.598],[-0.264,51.598],[-0.265,51.596],[-0.269,51.595],[-0.273,51.595],[-0.282,51.594],[-0.284,51.594],[-0.285,51.591],[-0.283,51.588],[-0.283,51.585],[-0.282,51.583],[-0.283,51.582],[-0.28,51.581],[-0.281,51.579],[-0.278,51.576],[-0.275,51.576],[-0.272,51.57],[-0.27,51.569],[-0.269,51.567],[-0.266,51.566],[-0.262,51.563],[-0.262,51.562],[-0.265,51.562],[-0.267,51.559],[-0.266,51.554],[-0.269,51.551],[-0.269,51.549],[-0.27,51.548],[-0.27,51.546],[-0.274,51.544],[-0.277,51.544],[-0.282,51.546],[-0.282,51.548],[-0.287,51.547],[-0.288,51.548],[-0.291,51.548],[-0.283,51.544],[-0.278,51.542],[-0.279,51.54],[-0.281,51.541],[-0.283,51.539],[-0.289,51.536],[-0.292,51.536],[-0.293,51.535]]]},"properties":{"OBJECTID":42,"NAME":"HA","KEY":"HA","Shape_Leng":0.893933,"Shape_Area":0.0142159}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.577,53.604],[-1.58,53.602],[-1.586,53.6],[-1.585,53.598],[-1.585,53.594],[-1.593,53.593],[-1.596,53.591],[-1.596,53.589],[-1.6,53.586],[-1.598,53.584],[-1.6,53.582],[-1.596,53.578],[-1.596,53.577],[-1.607,53.575],[-1.611,53.572],[-1.611,53.571],[-1.618,53.565],[-1.623,53.566],[-1.627,53.566],[-1.629,53.563],[-1.632,53.563],[-1.631,53.558],[-1.636,53.557],[-1.641,53.556],[-1.643,53.555],[-1.648,53.555],[-1.65,53.552],[-1.655,53.554],[-1.661,53.553],[-1.665,53.553],[-1.668,53.555],[-1.669,53.553],[-1.674,53.554],[-1.681,53.553],[-1.68,53.549],[-1.681,53.549],[-1.684,53.541],[-1.686,53.542],[-1.701,53.54],[-1.704,53.541],[-1.706,53.542],[-1.713,53.541],[-1.716,53.541],[-1.721,53.544],[-1.724,53.545],[-1.728,53.544],[-1.73,53.545],[-1.734,53.543],[-1.738,53.543],[-1.741,53.541],[-1.747,53.539],[-1.743,53.536],[-1.741,53.534],[-1.738,53.533],[-1.746,53.528],[-1.753,53.529],[-1.758,53.53],[-1.766,53.524],[-1.766,53.525],[-1.775,53.525],[-1.779,53.527],[-1.785,53.524],[-1.821,53.517],[-1.823,53.515],[-1.851,53.521],[-1.851,53.518],[-1.853,53.513],[-1.853,53.509],[-1.885,53.516],[-1.902,53.521],[-1.912,53.539],[-1.911,53.541],[-1.916,53.554],[-1.93,53.553],[-1.934,53.563],[-1.94,53.575],[-1.947,53.578],[-1.951,53.587],[-1.958,53.587],[-1.96,53.588],[-1.959,53.59],[-1.958,53.593],[-1.965,53.588],[-1.969,53.591],[-1.985,53.603],[-1.993,53.606],[-1.997,53.608],[-1.997,53.609],[-2.023,53.628],[-2.02,53.63],[-2.012,53.63],[-2.001,53.632],[-1.984,53.636],[-1.982,53.636],[-1.965,53.627],[-1.959,53.632],[-1.938,53.641],[-1.939,53.638],[-1.942,53.636],[-1.939,53.635],[-1.938,53.634],[-1.935,53.634],[-1.931,53.635],[-1.926,53.636],[-1.924,53.636],[-1.92,53.639],[-1.919,53.639],[-1.917,53.642],[-1.915,53.642],[-1.912,53.644],[-1.914,53.646],[-1.916,53.646],[-1.917,53.649],[-1.912,53.651],[-1.917,53.653],[-1.914,53.655],[-1.913,53.656],[-1.91,53.658],[-1.908,53.66],[-1.906,53.659],[-1.904,53.661],[-1.9,53.662],[-1.905,53.657],[-1.907,53.656],[-1.909,53.648],[-1.904,53.648],[-1.901,53.646],[-1.901,53.644],[-1.895,53.645],[-1.891,53.653],[-1.889,53.653],[-1.886,53.655],[-1.88,53.656],[-1.878,53.658],[-1.874,53.661],[-1.873,53.662],[-1.867,53.661],[-1.865,53.663],[-1.864,53.664],[-1.861,53.664],[-1.857,53.662],[-1.856,53.664],[-1.85,53.665],[-1.848,53.667],[-1.85,53.668],[-1.85,53.67],[-1.846,53.67],[-1.844,53.671],[-1.84,53.671],[-1.837,53.672],[-1.833,53.672],[-1.828,53.673],[-1.828,53.674],[-1.823,53.676],[-1.822,53.678],[-1.823,53.68],[-1.82,53.682],[-1.816,53.681],[-1.814,53.681],[-1.812,53.683],[-1.813,53.683],[-1.812,53.685],[-1.806,53.686],[-1.806,53.688],[-1.806,53.689],[-1.808,53.691],[-1.809,53.692],[-1.812,53.693],[-1.804,53.696],[-1.806,53.699],[-1.809,53.698],[-1.816,53.697],[-1.815,53.699],[-1.809,53.701],[-1.806,53.701],[-1.797,53.703],[-1.795,53.705],[-1.8,53.708],[-1.802,53.709],[-1.802,53.712],[-1.807,53.712],[-1.808,53.712],[-1.808,53.715],[-1.813,53.718],[-1.812,53.718],[-1.81,53.717],[-1.807,53.718],[-1.805,53.716],[-1.802,53.719],[-1.798,53.719],[-1.797,53.72],[-1.793,53.72],[-1.789,53.721],[-1.787,53.72],[-1.786,53.718],[-1.787,53.717],[-1.783,53.716],[-1.78,53.717],[-1.78,53.719],[-1.782,53.72],[-1.78,53.722],[-1.78,53.724],[-1.783,53.726],[-1.783,53.729],[-1.776,53.728],[-1.774,53.726],[-1.771,53.725],[-1.769,53.727],[-1.765,53.728],[-1.76,53.726],[-1.757,53.724],[-1.759,53.722],[-1.756,53.722],[-1.757,53.72],[-1.76,53.718],[-1.758,53.715],[-1.756,53.713],[-1.754,53.714],[-1.751,53.717],[-1.745,53.717],[-1.745,53.715],[-1.743,53.714],[-1.743,53.713],[-1.744,53.711],[-1.744,53.708],[-1.743,53.705],[-1.744,53.702],[-1.737,53.702],[-1.731,53.697],[-1.732,53.696],[-1.736,53.691],[-1.74,53.689],[-1.741,53.691],[-1.744,53.689],[-1.733,53.685],[-1.733,53.683],[-1.73,53.683],[-1.73,53.681],[-1.726,53.682],[-1.723,53.682],[-1.719,53.68],[-1.709,53.676],[-1.705,53.672],[-1.707,53.67],[-1.709,53.669],[-1.717,53.671],[-1.718,53.671],[-1.717,53.668],[-1.721,53.664],[-1.719,53.662],[-1.716,53.661],[-1.71,53.661],[-1.708,53.66],[-1.708,53.658],[-1.71,53.656],[-1.705,53.653],[-1.7,53.656],[-1.698,53.654],[-1.7,53.651],[-1.698,53.651],[-1.696,53.648],[-1.689,53.649],[-1.684,53.649],[-1.68,53.645],[-1.683,53.643],[-1.685,53.639],[-1.681,53.636],[-1.675,53.635],[-1.68,53.633],[-1.684,53.63],[-1.686,53.627],[-1.683,53.624],[-1.68,53.625],[-1.676,53.626],[-1.677,53.622],[-1.677,53.62],[-1.67,53.62],[-1.668,53.622],[-1.671,53.624],[-1.673,53.625],[-1.666,53.625],[-1.662,53.623],[-1.656,53.624],[-1.654,53.625],[-1.653,53.625],[-1.65,53.622],[-1.646,53.621],[-1.643,53.621],[-1.639,53.622],[-1.636,53.619],[-1.632,53.62],[-1.627,53.622],[-1.627,53.623],[-1.62,53.621],[-1.607,53.62],[-1.594,53.622],[-1.589,53.621],[-1.593,53.615],[-1.594,53.61],[-1.593,53.609],[-1.586,53.609],[-1.577,53.604]]]},"properties":{"OBJECTID":43,"NAME":"HD","KEY":"HD","Shape_Leng":1.55648,"Shape_Area":0.0460743}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.35,53.999],[-1.374,54],[-1.384,53.993],[-1.39,53.997],[-1.394,53.994],[-1.405,53.994],[-1.408,53.993],[-1.41,53.987],[-1.415,53.984],[-1.426,53.982],[-1.423,53.981],[-1.424,53.979],[-1.423,53.978],[-1.423,53.973],[-1.424,53.97],[-1.423,53.969],[-1.428,53.966],[-1.429,53.964],[-1.434,53.962],[-1.44,53.956],[-1.435,53.956],[-1.428,53.959],[-1.422,53.959],[-1.418,53.952],[-1.419,53.95],[-1.43,53.949],[-1.435,53.946],[-1.431,53.943],[-1.431,53.942],[-1.436,53.941],[-1.442,53.942],[-1.445,53.941],[-1.45,53.944],[-1.454,53.943],[-1.462,53.94],[-1.471,53.942],[-1.472,53.947],[-1.475,53.946],[-1.48,53.945],[-1.478,53.942],[-1.486,53.937],[-1.48,53.933],[-1.488,53.931],[-1.494,53.929],[-1.491,53.926],[-1.49,53.926],[-1.489,53.923],[-1.483,53.92],[-1.489,53.92],[-1.493,53.918],[-1.497,53.92],[-1.502,53.917],[-1.501,53.91],[-1.51,53.909],[-1.513,53.909],[-1.518,53.915],[-1.519,53.919],[-1.526,53.922],[-1.53,53.921],[-1.531,53.922],[-1.535,53.928],[-1.537,53.931],[-1.543,53.933],[-1.545,53.938],[-1.542,53.941],[-1.55,53.944],[-1.547,53.946],[-1.544,53.951],[-1.55,53.951],[-1.558,53.952],[-1.562,53.951],[-1.565,53.948],[-1.572,53.946],[-1.575,53.945],[-1.583,53.949],[-1.588,53.949],[-1.591,53.955],[-1.599,53.955],[-1.605,53.952],[-1.609,53.948],[-1.618,53.943],[-1.628,53.944],[-1.627,53.946],[-1.622,53.95],[-1.629,53.953],[-1.631,53.954],[-1.649,53.954],[-1.653,53.962],[-1.664,53.963],[-1.669,53.965],[-1.672,53.968],[-1.686,53.969],[-1.685,53.967],[-1.687,53.967],[-1.694,53.97],[-1.696,53.969],[-1.7,53.967],[-1.703,53.966],[-1.706,53.97],[-1.71,53.971],[-1.717,53.975],[-1.717,53.976],[-1.721,53.977],[-1.719,53.978],[-1.716,53.981],[-1.724,53.986],[-1.719,53.988],[-1.711,53.987],[-1.708,53.988],[-1.708,53.989],[-1.713,53.991],[-1.713,53.994],[-1.716,53.993],[-1.721,53.998],[-1.713,54.002],[-1.715,54.005],[-1.72,54.007],[-1.733,54.007],[-1.735,54.005],[-1.742,54.01],[-1.74,54.012],[-1.747,54.013],[-1.746,54.01],[-1.747,54.009],[-1.757,54.002],[-1.767,53.998],[-1.779,54.003],[-1.784,54.004],[-1.781,54],[-1.782,53.997],[-1.787,53.996],[-1.794,53.995],[-1.798,53.997],[-1.815,54],[-1.824,54.004],[-1.826,54.004],[-1.838,54.003],[-1.848,54.007],[-1.853,54.026],[-1.853,54.032],[-1.851,54.034],[-1.848,54.049],[-1.85,54.051],[-1.871,54.055],[-1.876,54.067],[-1.869,54.068],[-1.865,54.068],[-1.861,54.068],[-1.865,54.076],[-1.867,54.078],[-1.867,54.08],[-1.861,54.093],[-1.877,54.105],[-1.879,54.105],[-1.894,54.121],[-1.937,54.121],[-1.945,54.14],[-1.976,54.151],[-1.979,54.17],[-1.978,54.174],[-1.98,54.178],[-1.952,54.194],[-1.949,54.196],[-1.942,54.2],[-1.937,54.202],[-1.925,54.199],[-1.917,54.199],[-1.905,54.202],[-1.9,54.203],[-1.895,54.217],[-1.889,54.219],[-1.886,54.22],[-1.864,54.218],[-1.848,54.229],[-1.84,54.229],[-1.826,54.232],[-1.824,54.233],[-1.81,54.241],[-1.806,54.243],[-1.796,54.241],[-1.777,54.251],[-1.776,54.254],[-1.772,54.256],[-1.774,54.259],[-1.774,54.262],[-1.77,54.263],[-1.762,54.262],[-1.761,54.261],[-1.756,54.26],[-1.755,54.268],[-1.754,54.273],[-1.748,54.271],[-1.748,54.273],[-1.744,54.276],[-1.742,54.279],[-1.74,54.281],[-1.74,54.283],[-1.743,54.284],[-1.744,54.285],[-1.733,54.289],[-1.724,54.289],[-1.72,54.287],[-1.718,54.288],[-1.715,54.287],[-1.712,54.291],[-1.71,54.289],[-1.703,54.288],[-1.701,54.284],[-1.7,54.282],[-1.693,54.28],[-1.69,54.281],[-1.682,54.278],[-1.682,54.277],[-1.68,54.272],[-1.674,54.273],[-1.672,54.271],[-1.668,54.271],[-1.667,54.272],[-1.668,54.273],[-1.664,54.274],[-1.664,54.275],[-1.651,54.279],[-1.644,54.274],[-1.639,54.275],[-1.634,54.273],[-1.634,54.275],[-1.63,54.278],[-1.613,54.271],[-1.62,54.267],[-1.622,54.264],[-1.625,54.261],[-1.631,54.263],[-1.634,54.259],[-1.636,54.255],[-1.64,54.255],[-1.647,54.249],[-1.645,54.247],[-1.638,54.244],[-1.635,54.237],[-1.63,54.233],[-1.626,54.229],[-1.626,54.226],[-1.624,54.222],[-1.623,54.22],[-1.616,54.215],[-1.612,54.218],[-1.609,54.218],[-1.604,54.22],[-1.601,54.223],[-1.595,54.222],[-1.593,54.223],[-1.592,54.22],[-1.591,54.218],[-1.593,54.214],[-1.585,54.213],[-1.572,54.214],[-1.571,54.213],[-1.575,54.209],[-1.575,54.208],[-1.568,54.207],[-1.563,54.209],[-1.56,54.204],[-1.557,54.204],[-1.548,54.205],[-1.542,54.201],[-1.532,54.203],[-1.534,54.205],[-1.525,54.204],[-1.52,54.203],[-1.513,54.201],[-1.498,54.206],[-1.496,54.206],[-1.489,54.207],[-1.486,54.207],[-1.486,54.204],[-1.487,54.199],[-1.489,54.197],[-1.489,54.196],[-1.472,54.199],[-1.464,54.19],[-1.463,54.188],[-1.459,54.18],[-1.458,54.18],[-1.453,54.174],[-1.448,54.165],[-1.447,54.162],[-1.454,54.158],[-1.453,54.157],[-1.452,54.151],[-1.443,54.149],[-1.447,54.147],[-1.448,54.146],[-1.445,54.143],[-1.442,54.142],[-1.438,54.143],[-1.43,54.143],[-1.427,54.139],[-1.417,54.129],[-1.414,54.125],[-1.418,54.124],[-1.421,54.126],[-1.433,54.123],[-1.434,54.122],[-1.437,54.124],[-1.438,54.123],[-1.44,54.114],[-1.438,54.112],[-1.443,54.107],[-1.437,54.106],[-1.436,54.106],[-1.439,54.101],[-1.437,54.1],[-1.423,54.095],[-1.421,54.092],[-1.426,54.091],[-1.436,54.093],[-1.444,54.093],[-1.451,54.092],[-1.455,54.092],[-1.457,54.093],[-1.458,54.096],[-1.459,54.1],[-1.465,54.099],[-1.468,54.095],[-1.47,54.096],[-1.476,54.091],[-1.467,54.086],[-1.474,54.082],[-1.475,54.079],[-1.473,54.076],[-1.469,54.075],[-1.462,54.069],[-1.453,54.069],[-1.452,54.076],[-1.442,54.077],[-1.437,54.074],[-1.429,54.072],[-1.429,54.07],[-1.423,54.065],[-1.42,54.068],[-1.418,54.069],[-1.415,54.071],[-1.41,54.071],[-1.409,54.066],[-1.4,54.065],[-1.401,54.063],[-1.402,54.057],[-1.401,54.055],[-1.396,54.055],[-1.39,54.057],[-1.388,54.049],[-1.387,54.052],[-1.385,54.053],[-1.38,54.051],[-1.379,54.048],[-1.38,54.047],[-1.379,54.044],[-1.376,54.041],[-1.369,54.038],[-1.367,54.039],[-1.362,54.036],[-1.359,54.03],[-1.358,54.03],[-1.355,54.025],[-1.351,54.02],[-1.351,54.019],[-1.354,54.017],[-1.356,54.014],[-1.353,54.008],[-1.346,54.008],[-1.35,54.004],[-1.35,53.999]]]},"properties":{"OBJECTID":44,"NAME":"HG","KEY":"HG","Shape_Leng":2.40237,"Shape_Area":0.128124}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.392,51.732],[-0.403,51.734],[-0.406,51.732],[-0.412,51.731],[-0.415,51.73],[-0.415,51.728],[-0.416,51.726],[-0.416,51.724],[-0.418,51.723],[-0.421,51.723],[-0.426,51.724],[-0.43,51.723],[-0.43,51.722],[-0.434,51.721],[-0.437,51.724],[-0.441,51.724],[-0.441,51.722],[-0.445,51.721],[-0.45,51.724],[-0.458,51.729],[-0.459,51.728],[-0.463,51.726],[-0.466,51.727],[-0.47,51.726],[-0.475,51.726],[-0.477,51.73],[-0.484,51.729],[-0.487,51.727],[-0.488,51.725],[-0.491,51.725],[-0.494,51.721],[-0.497,51.72],[-0.504,51.722],[-0.505,51.72],[-0.504,51.718],[-0.508,51.719],[-0.511,51.717],[-0.509,51.715],[-0.512,51.713],[-0.509,51.709],[-0.509,51.707],[-0.511,51.706],[-0.513,51.702],[-0.518,51.704],[-0.516,51.698],[-0.517,51.697],[-0.523,51.695],[-0.522,51.694],[-0.526,51.692],[-0.526,51.691],[-0.53,51.686],[-0.53,51.684],[-0.541,51.681],[-0.542,51.676],[-0.549,51.676],[-0.547,51.672],[-0.549,51.669],[-0.549,51.667],[-0.543,51.667],[-0.54,51.666],[-0.536,51.665],[-0.536,51.663],[-0.536,51.662],[-0.538,51.658],[-0.542,51.658],[-0.544,51.656],[-0.542,51.652],[-0.54,51.652],[-0.537,51.648],[-0.542,51.642],[-0.537,51.64],[-0.531,51.639],[-0.527,51.634],[-0.525,51.631],[-0.53,51.632],[-0.537,51.63],[-0.54,51.629],[-0.544,51.63],[-0.545,51.632],[-0.552,51.634],[-0.555,51.626],[-0.558,51.626],[-0.559,51.624],[-0.562,51.624],[-0.562,51.619],[-0.561,51.617],[-0.564,51.613],[-0.566,51.612],[-0.569,51.613],[-0.571,51.613],[-0.572,51.616],[-0.574,51.618],[-0.577,51.62],[-0.58,51.619],[-0.582,51.616],[-0.586,51.614],[-0.586,51.612],[-0.584,51.61],[-0.581,51.606],[-0.581,51.605],[-0.587,51.6],[-0.586,51.598],[-0.586,51.596],[-0.583,51.592],[-0.588,51.592],[-0.593,51.593],[-0.607,51.592],[-0.609,51.589],[-0.61,51.589],[-0.611,51.586],[-0.611,51.584],[-0.612,51.582],[-0.612,51.58],[-0.619,51.58],[-0.628,51.581],[-0.629,51.584],[-0.63,51.587],[-0.633,51.589],[-0.638,51.587],[-0.64,51.585],[-0.64,51.582],[-0.643,51.581],[-0.65,51.58],[-0.655,51.58],[-0.657,51.577],[-0.657,51.573],[-0.662,51.573],[-0.664,51.571],[-0.668,51.575],[-0.672,51.573],[-0.675,51.569],[-0.677,51.572],[-0.68,51.572],[-0.678,51.574],[-0.68,51.575],[-0.682,51.574],[-0.686,51.571],[-0.686,51.573],[-0.691,51.575],[-0.694,51.577],[-0.697,51.578],[-0.696,51.579],[-0.7,51.581],[-0.699,51.583],[-0.695,51.585],[-0.694,51.586],[-0.695,51.588],[-0.701,51.588],[-0.703,51.59],[-0.702,51.591],[-0.707,51.592],[-0.709,51.593],[-0.711,51.592],[-0.716,51.593],[-0.716,51.595],[-0.726,51.596],[-0.723,51.599],[-0.719,51.601],[-0.722,51.603],[-0.73,51.603],[-0.739,51.599],[-0.747,51.602],[-0.75,51.598],[-0.752,51.599],[-0.756,51.604],[-0.757,51.606],[-0.763,51.607],[-0.765,51.607],[-0.762,51.6],[-0.769,51.598],[-0.77,51.6],[-0.77,51.604],[-0.776,51.605],[-0.776,51.606],[-0.771,51.61],[-0.769,51.611],[-0.769,51.612],[-0.782,51.61],[-0.787,51.61],[-0.792,51.611],[-0.796,51.612],[-0.806,51.616],[-0.807,51.613],[-0.81,51.61],[-0.82,51.606],[-0.823,51.602],[-0.829,51.601],[-0.834,51.6],[-0.835,51.604],[-0.839,51.607],[-0.845,51.608],[-0.844,51.609],[-0.847,51.611],[-0.849,51.613],[-0.851,51.616],[-0.854,51.616],[-0.858,51.62],[-0.86,51.619],[-0.862,51.616],[-0.865,51.618],[-0.862,51.619],[-0.871,51.621],[-0.875,51.622],[-0.878,51.623],[-0.884,51.625],[-0.886,51.623],[-0.884,51.621],[-0.893,51.619],[-0.888,51.617],[-0.886,51.615],[-0.89,51.615],[-0.893,51.616],[-0.898,51.62],[-0.898,51.622],[-0.903,51.625],[-0.907,51.627],[-0.912,51.627],[-0.914,51.625],[-0.908,51.624],[-0.906,51.622],[-0.908,51.618],[-0.907,51.617],[-0.913,51.619],[-0.917,51.62],[-0.924,51.622],[-0.921,51.623],[-0.917,51.625],[-0.92,51.629],[-0.924,51.631],[-0.928,51.634],[-0.928,51.637],[-0.937,51.64],[-0.942,51.642],[-0.947,51.642],[-0.947,51.643],[-0.94,51.65],[-0.942,51.653],[-0.949,51.655],[-0.952,51.656],[-0.95,51.658],[-0.947,51.659],[-0.938,51.66],[-0.935,51.662],[-0.933,51.671],[-0.929,51.671],[-0.926,51.67],[-0.924,51.668],[-0.922,51.669],[-0.924,51.674],[-0.924,51.677],[-0.926,51.679],[-0.921,51.68],[-0.916,51.678],[-0.905,51.671],[-0.899,51.673],[-0.892,51.671],[-0.889,51.674],[-0.884,51.676],[-0.881,51.675],[-0.881,51.678],[-0.875,51.682],[-0.876,51.687],[-0.875,51.687],[-0.874,51.691],[-0.877,51.693],[-0.88,51.694],[-0.883,51.698],[-0.882,51.701],[-0.875,51.703],[-0.874,51.707],[-0.885,51.709],[-0.885,51.71],[-0.893,51.706],[-0.895,51.707],[-0.896,51.709],[-0.898,51.711],[-0.89,51.714],[-0.891,51.716],[-0.89,51.718],[-0.891,51.72],[-0.894,51.72],[-0.895,51.722],[-0.9,51.726],[-0.9,51.727],[-0.905,51.729],[-0.907,51.732],[-0.907,51.734],[-0.912,51.738],[-0.913,51.743],[-0.916,51.745],[-0.919,51.748],[-0.922,51.749],[-0.931,51.746],[-0.933,51.747],[-0.934,51.75],[-0.937,51.752],[-0.949,51.749],[-0.955,51.754],[-0.95,51.759],[-0.953,51.763],[-0.952,51.768],[-0.955,51.767],[-0.965,51.763],[-0.964,51.767],[-0.961,51.769],[-0.965,51.77],[-0.969,51.769],[-0.976,51.764],[-0.977,51.763],[-0.982,51.762],[-0.986,51.763],[-1.001,51.763],[-1.005,51.759],[-1.005,51.757],[-1.009,51.754],[-1.025,51.753],[-1.027,51.757],[-1.034,51.756],[-1.034,51.754],[-1.027,51.753],[-1.019,51.749],[-1.018,51.748],[-1.022,51.747],[-1.029,51.744],[-1.036,51.743],[-1.04,51.742],[-1.046,51.743],[-1.054,51.752],[-1.057,51.753],[-1.062,51.752],[-1.069,51.753],[-1.07,51.755],[-1.074,51.759],[-1.082,51.76],[-1.084,51.76],[-1.09,51.763],[-1.086,51.765],[-1.089,51.769],[-1.097,51.773],[-1.1,51.774],[-1.098,51.777],[-1.101,51.778],[-1.11,51.777],[-1.122,51.774],[-1.131,51.781],[-1.132,51.787],[-1.129,51.788],[-1.126,51.794],[-1.123,51.795],[-1.121,51.797],[-1.118,51.799],[-1.112,51.803],[-1.118,51.806],[-1.117,51.807],[-1.115,51.812],[-1.114,51.813],[-1.104,51.814],[-1.107,51.821],[-1.11,51.825],[-1.114,51.828],[-1.109,51.831],[-1.102,51.835],[-1.104,51.84],[-1.103,51.841],[-1.099,51.842],[-1.1,51.845],[-1.098,51.845],[-1.099,51.848],[-1.095,51.848],[-1.093,51.848],[-1.09,51.847],[-1.085,51.842],[-1.079,51.843],[-1.073,51.843],[-1.069,51.842],[-1.061,51.846],[-1.064,51.849],[-1.065,51.853],[-1.063,51.854],[-1.061,51.853],[-1.06,51.854],[-1.065,51.857],[-1.063,51.858],[-1.062,51.865],[-1.062,51.867],[-1.064,51.87],[-1.063,51.874],[-1.053,51.878],[-1.043,51.879],[-1.039,51.882],[-1.041,51.886],[-1.037,51.889],[-1.031,51.891],[-1.029,51.894],[-1.038,51.897],[-1.037,51.9],[-1.033,51.901],[-1.027,51.902],[-1.024,51.903],[-1.02,51.906],[-1.011,51.907],[-1.012,51.903],[-1.004,51.903],[-1,51.902],[-0.994,51.906],[-0.989,51.907],[-0.986,51.903],[-0.978,51.897],[-0.964,51.902],[-0.961,51.903],[-0.953,51.903],[-0.948,51.896],[-0.939,51.896],[-0.932,51.891],[-0.933,51.891],[-0.927,51.889],[-0.927,51.888],[-0.915,51.887],[-0.913,51.888],[-0.91,51.889],[-0.902,51.886],[-0.896,51.885],[-0.894,51.885],[-0.893,51.882],[-0.885,51.882],[-0.88,51.886],[-0.878,51.887],[-0.876,51.889],[-0.869,51.891],[-0.866,51.89],[-0.864,51.893],[-0.865,51.896],[-0.861,51.901],[-0.855,51.901],[-0.849,51.905],[-0.843,51.905],[-0.837,51.907],[-0.824,51.907],[-0.819,51.904],[-0.815,51.907],[-0.81,51.909],[-0.806,51.905],[-0.808,51.903],[-0.802,51.895],[-0.804,51.891],[-0.804,51.889],[-0.807,51.885],[-0.804,51.879],[-0.803,51.877],[-0.798,51.874],[-0.796,51.876],[-0.796,51.878],[-0.794,51.882],[-0.795,51.884],[-0.793,51.887],[-0.792,51.887],[-0.787,51.886],[-0.779,51.886],[-0.777,51.886],[-0.776,51.884],[-0.774,51.883],[-0.769,51.885],[-0.764,51.883],[-0.76,51.882],[-0.76,51.877],[-0.754,51.871],[-0.752,51.874],[-0.749,51.876],[-0.744,51.878],[-0.73,51.877],[-0.725,51.878],[-0.71,51.879],[-0.709,51.877],[-0.713,51.875],[-0.716,51.875],[-0.726,51.871],[-0.726,51.87],[-0.726,51.866],[-0.724,51.862],[-0.722,51.859],[-0.716,51.856],[-0.71,51.858],[-0.702,51.857],[-0.697,51.854],[-0.696,51.853],[-0.68,51.849],[-0.672,51.849],[-0.679,51.844],[-0.671,51.84],[-0.667,51.84],[-0.657,51.835],[-0.656,51.831],[-0.652,51.829],[-0.652,51.828],[-0.656,51.825],[-0.651,51.821],[-0.647,51.823],[-0.641,51.816],[-0.634,51.819],[-0.633,51.82],[-0.628,51.824],[-0.625,51.828],[-0.623,51.83],[-0.619,51.828],[-0.618,51.827],[-0.609,51.832],[-0.607,51.835],[-0.604,51.834],[-0.603,51.831],[-0.601,51.829],[-0.591,51.83],[-0.591,51.834],[-0.586,51.836],[-0.584,51.835],[-0.58,51.836],[-0.575,51.839],[-0.573,51.842],[-0.576,51.844],[-0.578,51.847],[-0.573,51.848],[-0.569,51.847],[-0.562,51.848],[-0.56,51.847],[-0.557,51.847],[-0.552,51.844],[-0.551,51.843],[-0.547,51.841],[-0.544,51.842],[-0.54,51.84],[-0.539,51.84],[-0.532,51.838],[-0.531,51.837],[-0.537,51.833],[-0.539,51.833],[-0.544,51.83],[-0.543,51.829],[-0.544,51.827],[-0.534,51.822],[-0.528,51.82],[-0.526,51.818],[-0.533,51.814],[-0.532,51.813],[-0.531,51.809],[-0.524,51.813],[-0.518,51.818],[-0.515,51.823],[-0.513,51.825],[-0.51,51.823],[-0.504,51.821],[-0.502,51.82],[-0.495,51.818],[-0.493,51.818],[-0.49,51.819],[-0.488,51.816],[-0.486,51.815],[-0.483,51.812],[-0.481,51.815],[-0.476,51.816],[-0.473,51.817],[-0.473,51.814],[-0.472,51.812],[-0.467,51.808],[-0.463,51.807],[-0.456,51.801],[-0.454,51.802],[-0.451,51.797],[-0.445,51.796],[-0.443,51.795],[-0.448,51.79],[-0.446,51.787],[-0.44,51.785],[-0.435,51.78],[-0.433,51.78],[-0.43,51.778],[-0.424,51.779],[-0.422,51.778],[-0.415,51.775],[-0.413,51.774],[-0.417,51.761],[-0.417,51.758],[-0.415,51.755],[-0.412,51.751],[-0.408,51.748],[-0.398,51.742],[-0.394,51.738],[-0.392,51.732]]]},"properties":{"OBJECTID":45,"NAME":"HP","KEY":"HP","Shape_Leng":2.87488,"Shape_Area":0.134345}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.346,51.996],[-2.348,51.995],[-2.365,51.997],[-2.365,51.996],[-2.357,51.994],[-2.357,51.993],[-2.362,51.993],[-2.364,51.992],[-2.365,51.993],[-2.37,51.992],[-2.372,51.987],[-2.371,51.986],[-2.378,51.986],[-2.383,51.989],[-2.381,51.992],[-2.38,51.994],[-2.383,51.994],[-2.391,51.993],[-2.396,51.991],[-2.398,51.993],[-2.402,51.993],[-2.407,51.992],[-2.411,51.996],[-2.412,51.999],[-2.414,52],[-2.414,52.002],[-2.419,52.001],[-2.419,51.999],[-2.425,51.998],[-2.429,52],[-2.428,52],[-2.43,52.002],[-2.429,52.004],[-2.439,52.01],[-2.438,52.013],[-2.447,52.018],[-2.451,52.017],[-2.453,52.016],[-2.446,52.01],[-2.45,52.009],[-2.448,52.007],[-2.449,52.007],[-2.455,52.008],[-2.461,52.008],[-2.463,52.006],[-2.471,52.008],[-2.47,52.006],[-2.474,52.007],[-2.477,52.006],[-2.478,52.001],[-2.485,51.998],[-2.484,51.996],[-2.478,51.993],[-2.474,51.99],[-2.473,51.987],[-2.476,51.988],[-2.479,51.988],[-2.484,51.989],[-2.488,51.991],[-2.49,51.99],[-2.488,51.986],[-2.49,51.985],[-2.49,51.983],[-2.488,51.981],[-2.489,51.978],[-2.485,51.977],[-2.483,51.976],[-2.486,51.974],[-2.486,51.973],[-2.493,51.971],[-2.495,51.971],[-2.494,51.967],[-2.499,51.97],[-2.507,51.966],[-2.507,51.965],[-2.5,51.963],[-2.499,51.959],[-2.498,51.957],[-2.499,51.955],[-2.494,51.954],[-2.487,51.952],[-2.481,51.95],[-2.475,51.946],[-2.468,51.942],[-2.461,51.944],[-2.458,51.942],[-2.46,51.942],[-2.453,51.94],[-2.451,51.937],[-2.448,51.938],[-2.444,51.937],[-2.448,51.933],[-2.455,51.932],[-2.456,51.93],[-2.46,51.931],[-2.463,51.93],[-2.464,51.926],[-2.466,51.925],[-2.47,51.925],[-2.475,51.921],[-2.473,51.919],[-2.475,51.916],[-2.478,51.915],[-2.482,51.913],[-2.48,51.911],[-2.477,51.911],[-2.474,51.909],[-2.468,51.912],[-2.467,51.915],[-2.462,51.916],[-2.458,51.915],[-2.455,51.912],[-2.455,51.911],[-2.457,51.908],[-2.457,51.907],[-2.461,51.907],[-2.466,51.908],[-2.472,51.906],[-2.474,51.907],[-2.476,51.907],[-2.476,51.904],[-2.475,51.904],[-2.474,51.901],[-2.472,51.898],[-2.471,51.893],[-2.473,51.89],[-2.479,51.889],[-2.482,51.888],[-2.479,51.885],[-2.474,51.884],[-2.469,51.885],[-2.464,51.882],[-2.469,51.88],[-2.471,51.882],[-2.478,51.881],[-2.482,51.88],[-2.485,51.878],[-2.485,51.881],[-2.484,51.883],[-2.489,51.884],[-2.49,51.886],[-2.491,51.887],[-2.496,51.886],[-2.498,51.884],[-2.498,51.881],[-2.5,51.88],[-2.502,51.881],[-2.503,51.883],[-2.506,51.884],[-2.509,51.882],[-2.51,51.881],[-2.507,51.88],[-2.509,51.879],[-2.512,51.878],[-2.513,51.877],[-2.516,51.876],[-2.517,51.875],[-2.52,51.873],[-2.519,51.871],[-2.52,51.868],[-2.521,51.867],[-2.523,51.865],[-2.526,51.867],[-2.528,51.865],[-2.532,51.863],[-2.535,51.867],[-2.537,51.865],[-2.539,51.867],[-2.542,51.869],[-2.547,51.87],[-2.55,51.872],[-2.554,51.871],[-2.556,51.869],[-2.563,51.867],[-2.564,51.865],[-2.563,51.864],[-2.564,51.86],[-2.567,51.858],[-2.574,51.858],[-2.578,51.857],[-2.578,51.859],[-2.581,51.86],[-2.582,51.863],[-2.586,51.862],[-2.589,51.863],[-2.588,51.861],[-2.589,51.858],[-2.585,51.856],[-2.585,51.85],[-2.589,51.852],[-2.591,51.854],[-2.594,51.856],[-2.598,51.856],[-2.6,51.857],[-2.604,51.855],[-2.609,51.848],[-2.614,51.853],[-2.619,51.854],[-2.623,51.852],[-2.627,51.852],[-2.629,51.849],[-2.621,51.843],[-2.631,51.844],[-2.636,51.842],[-2.637,51.838],[-2.644,51.832],[-2.642,51.831],[-2.642,51.824],[-2.651,51.821],[-2.658,51.823],[-2.667,51.825],[-2.666,51.831],[-2.66,51.835],[-2.669,51.837],[-2.671,51.837],[-2.674,51.84],[-2.678,51.84],[-2.68,51.843],[-2.676,51.845],[-2.677,51.846],[-2.673,51.849],[-2.676,51.849],[-2.677,51.852],[-2.675,51.853],[-2.676,51.854],[-2.675,51.857],[-2.679,51.859],[-2.682,51.859],[-2.684,51.857],[-2.69,51.858],[-2.693,51.858],[-2.695,51.861],[-2.697,51.861],[-2.7,51.864],[-2.709,51.866],[-2.712,51.866],[-2.717,51.865],[-2.72,51.864],[-2.723,51.88],[-2.725,51.881],[-2.727,51.878],[-2.73,51.879],[-2.733,51.879],[-2.733,51.876],[-2.734,51.872],[-2.733,51.869],[-2.736,51.87],[-2.742,51.874],[-2.744,51.874],[-2.754,51.875],[-2.757,51.876],[-2.759,51.875],[-2.757,51.871],[-2.763,51.87],[-2.765,51.871],[-2.772,51.873],[-2.772,51.875],[-2.777,51.877],[-2.778,51.881],[-2.779,51.881],[-2.785,51.88],[-2.787,51.879],[-2.789,51.881],[-2.786,51.883],[-2.785,51.884],[-2.792,51.883],[-2.796,51.884],[-2.805,51.888],[-2.801,51.892],[-2.801,51.895],[-2.805,51.896],[-2.806,51.9],[-2.814,51.898],[-2.814,51.9],[-2.82,51.902],[-2.826,51.905],[-2.823,51.908],[-2.829,51.91],[-2.83,51.91],[-2.837,51.909],[-2.835,51.914],[-2.836,51.916],[-2.84,51.919],[-2.845,51.918],[-2.852,51.919],[-2.85,51.923],[-2.852,51.924],[-2.852,51.927],[-2.856,51.927],[-2.857,51.927],[-2.86,51.924],[-2.862,51.924],[-2.864,51.922],[-2.867,51.924],[-2.868,51.927],[-2.875,51.927],[-2.878,51.93],[-2.88,51.934],[-2.878,51.935],[-2.876,51.938],[-2.879,51.937],[-2.881,51.935],[-2.89,51.93],[-2.893,51.927],[-2.895,51.925],[-2.9,51.923],[-2.909,51.923],[-2.913,51.923],[-2.918,51.921],[-2.919,51.923],[-2.922,51.924],[-2.924,51.922],[-2.928,51.925],[-2.936,51.924],[-2.939,51.918],[-2.943,51.913],[-2.949,51.915],[-2.952,51.912],[-2.951,51.911],[-2.952,51.909],[-2.959,51.905],[-2.964,51.904],[-2.969,51.902],[-2.972,51.901],[-2.973,51.903],[-2.975,51.904],[-2.976,51.911],[-2.972,51.912],[-2.971,51.913],[-2.974,51.919],[-2.977,51.919],[-2.979,51.92],[-2.985,51.92],[-2.989,51.924],[-2.995,51.926],[-3.005,51.922],[-3.014,51.923],[-3.013,51.93],[-3.01,51.939],[-3.014,51.943],[-3.014,51.944],[-3.024,51.956],[-3.029,51.956],[-3.038,51.959],[-3.04,51.963],[-3.045,51.968],[-3.047,51.97],[-3.057,51.974],[-3.067,51.982],[-3.069,51.983],[-3.073,51.989],[-3.077,51.994],[-3.081,51.999],[-3.078,52.006],[-3.086,52.013],[-3.087,52.015],[-3.09,52.015],[-3.104,52],[-3.108,52.002],[-3.11,52.005],[-3.114,52.008],[-3.115,52.01],[-3.119,52.007],[-3.124,52.004],[-3.126,52.003],[-3.145,52.013],[-3.149,52.016],[-3.145,52.02],[-3.147,52.023],[-3.149,52.025],[-3.152,52.024],[-3.156,52.025],[-3.16,52.03],[-3.159,52.031],[-3.162,52.035],[-3.161,52.037],[-3.165,52.039],[-3.169,52.039],[-3.173,52.035],[-3.177,52.035],[-3.181,52.034],[-3.182,52.034],[-3.2,52.037],[-3.203,52.037],[-3.204,52.035],[-3.206,52.036],[-3.21,52.039],[-3.213,52.04],[-3.215,52.039],[-3.225,52.035],[-3.226,52.039],[-3.231,52.042],[-3.232,52.041],[-3.236,52.043],[-3.236,52.047],[-3.235,52.05],[-3.241,52.052],[-3.242,52.054],[-3.238,52.058],[-3.242,52.062],[-3.251,52.061],[-3.251,52.063],[-3.253,52.064],[-3.255,52.066],[-3.256,52.065],[-3.261,52.063],[-3.261,52.064],[-3.26,52.067],[-3.253,52.07],[-3.254,52.076],[-3.256,52.076],[-3.26,52.078],[-3.26,52.082],[-3.249,52.086],[-3.246,52.089],[-3.234,52.088],[-3.23,52.089],[-3.225,52.089],[-3.218,52.088],[-3.212,52.09],[-3.207,52.09],[-3.203,52.091],[-3.202,52.099],[-3.2,52.098],[-3.196,52.099],[-3.192,52.102],[-3.189,52.101],[-3.183,52.101],[-3.183,52.104],[-3.178,52.109],[-3.179,52.111],[-3.177,52.111],[-3.175,52.116],[-3.178,52.119],[-3.174,52.124],[-3.174,52.127],[-3.178,52.129],[-3.18,52.131],[-3.187,52.126],[-3.188,52.128],[-3.189,52.13],[-3.193,52.127],[-3.196,52.128],[-3.204,52.133],[-3.208,52.133],[-3.209,52.134],[-3.212,52.134],[-3.224,52.137],[-3.228,52.139],[-3.234,52.146],[-3.231,52.153],[-3.23,52.154],[-3.221,52.155],[-3.215,52.159],[-3.209,52.17],[-3.205,52.17],[-3.206,52.172],[-3.214,52.18],[-3.217,52.181],[-3.224,52.196],[-3.223,52.197],[-3.215,52.198],[-3.198,52.19],[-3.193,52.188],[-3.176,52.191],[-3.175,52.198],[-3.175,52.199],[-3.16,52.201],[-3.158,52.202],[-3.155,52.203],[-3.154,52.204],[-3.145,52.203],[-3.135,52.203],[-3.13,52.208],[-3.121,52.204],[-3.119,52.203],[-3.113,52.197],[-3.109,52.201],[-3.099,52.197],[-3.089,52.197],[-3.087,52.203],[-3.088,52.204],[-3.089,52.213],[-3.088,52.215],[-3.09,52.218],[-3.086,52.221],[-3.087,52.222],[-3.085,52.223],[-3.081,52.224],[-3.079,52.227],[-3.069,52.234],[-3.066,52.234],[-3.067,52.227],[-3.062,52.227],[-3.057,52.227],[-3.053,52.226],[-3.042,52.23],[-3.035,52.23],[-3.026,52.231],[-3.025,52.232],[-3.022,52.237],[-3.016,52.239],[-3.015,52.242],[-3.011,52.248],[-3.003,52.248],[-2.997,52.252],[-2.99,52.25],[-2.98,52.248],[-2.983,52.244],[-2.976,52.24],[-2.974,52.244],[-2.975,52.247],[-2.975,52.251],[-2.979,52.251],[-2.981,52.253],[-2.984,52.255],[-2.985,52.258],[-2.981,52.259],[-2.973,52.263],[-2.971,52.262],[-2.966,52.259],[-2.963,52.258],[-2.956,52.259],[-2.949,52.257],[-2.945,52.253],[-2.941,52.254],[-2.94,52.261],[-2.937,52.262],[-2.934,52.262],[-2.934,52.256],[-2.933,52.256],[-2.93,52.253],[-2.927,52.252],[-2.926,52.253],[-2.925,52.259],[-2.926,52.261],[-2.921,52.26],[-2.917,52.263],[-2.92,52.265],[-2.92,52.268],[-2.916,52.271],[-2.91,52.272],[-2.904,52.275],[-2.893,52.277],[-2.89,52.28],[-2.895,52.281],[-2.899,52.282],[-2.904,52.284],[-2.907,52.283],[-2.91,52.282],[-2.912,52.284],[-2.912,52.285],[-2.906,52.29],[-2.903,52.291],[-2.899,52.295],[-2.894,52.294],[-2.889,52.298],[-2.894,52.297],[-2.895,52.299],[-2.9,52.298],[-2.902,52.303],[-2.907,52.303],[-2.907,52.305],[-2.905,52.308],[-2.901,52.309],[-2.903,52.313],[-2.9,52.313],[-2.903,52.316],[-2.898,52.316],[-2.89,52.317],[-2.892,52.326],[-2.881,52.327],[-2.871,52.327],[-2.873,52.328],[-2.875,52.33],[-2.868,52.331],[-2.848,52.328],[-2.849,52.326],[-2.844,52.32],[-2.846,52.319],[-2.842,52.312],[-2.837,52.311],[-2.837,52.309],[-2.836,52.307],[-2.831,52.311],[-2.826,52.315],[-2.82,52.317],[-2.811,52.322],[-2.808,52.324],[-2.796,52.321],[-2.796,52.32],[-2.791,52.319],[-2.787,52.32],[-2.783,52.322],[-2.78,52.323],[-2.782,52.319],[-2.786,52.315],[-2.787,52.315],[-2.789,52.311],[-2.796,52.308],[-2.802,52.305],[-2.801,52.299],[-2.794,52.299],[-2.788,52.3],[-2.785,52.3],[-2.78,52.299],[-2.777,52.298],[-2.77,52.296],[-2.767,52.292],[-2.765,52.289],[-2.76,52.287],[-2.757,52.289],[-2.756,52.287],[-2.747,52.279],[-2.744,52.28],[-2.742,52.284],[-2.74,52.286],[-2.733,52.285],[-2.728,52.281],[-2.725,52.281],[-2.72,52.284],[-2.719,52.286],[-2.717,52.288],[-2.708,52.289],[-2.706,52.288],[-2.708,52.286],[-2.71,52.283],[-2.713,52.279],[-2.709,52.278],[-2.704,52.279],[-2.706,52.28],[-2.706,52.282],[-2.704,52.284],[-2.696,52.286],[-2.693,52.285],[-2.693,52.284],[-2.684,52.279],[-2.684,52.275],[-2.679,52.275],[-2.672,52.273],[-2.671,52.275],[-2.67,52.278],[-2.668,52.278],[-2.664,52.279],[-2.661,52.281],[-2.663,52.287],[-2.651,52.287],[-2.651,52.288],[-2.644,52.289],[-2.642,52.289],[-2.633,52.289],[-2.633,52.285],[-2.631,52.283],[-2.628,52.278],[-2.629,52.277],[-2.633,52.273],[-2.636,52.273],[-2.636,52.271],[-2.642,52.267],[-2.645,52.268],[-2.645,52.266],[-2.636,52.264],[-2.634,52.264],[-2.628,52.263],[-2.626,52.262],[-2.627,52.258],[-2.624,52.258],[-2.622,52.259],[-2.62,52.256],[-2.626,52.258],[-2.629,52.256],[-2.634,52.254],[-2.636,52.251],[-2.635,52.25],[-2.628,52.247],[-2.625,52.246],[-2.622,52.243],[-2.616,52.242],[-2.614,52.243],[-2.608,52.245],[-2.606,52.245],[-2.604,52.241],[-2.602,52.238],[-2.601,52.235],[-2.597,52.235],[-2.588,52.236],[-2.585,52.239],[-2.581,52.241],[-2.577,52.24],[-2.576,52.239],[-2.571,52.24],[-2.571,52.242],[-2.57,52.245],[-2.572,52.247],[-2.573,52.248],[-2.574,52.25],[-2.567,52.25],[-2.564,52.25],[-2.562,52.25],[-2.563,52.253],[-2.553,52.258],[-2.546,52.254],[-2.544,52.25],[-2.538,52.247],[-2.53,52.246],[-2.528,52.245],[-2.527,52.245],[-2.523,52.25],[-2.524,52.252],[-2.526,52.253],[-2.529,52.255],[-2.526,52.256],[-2.523,52.258],[-2.518,52.257],[-2.515,52.254],[-2.511,52.255],[-2.507,52.253],[-2.51,52.247],[-2.501,52.248],[-2.497,52.248],[-2.498,52.25],[-2.49,52.252],[-2.489,52.254],[-2.483,52.255],[-2.479,52.257],[-2.473,52.257],[-2.473,52.256],[-2.467,52.254],[-2.467,52.252],[-2.466,52.251],[-2.466,52.249],[-2.463,52.244],[-2.468,52.244],[-2.466,52.239],[-2.459,52.238],[-2.456,52.236],[-2.446,52.234],[-2.446,52.233],[-2.44,52.232],[-2.436,52.229],[-2.436,52.226],[-2.438,52.226],[-2.438,52.222],[-2.441,52.221],[-2.442,52.219],[-2.444,52.218],[-2.447,52.219],[-2.451,52.222],[-2.452,52.224],[-2.455,52.221],[-2.452,52.219],[-2.454,52.218],[-2.463,52.218],[-2.462,52.215],[-2.464,52.214],[-2.469,52.213],[-2.471,52.211],[-2.475,52.212],[-2.476,52.209],[-2.475,52.207],[-2.469,52.208],[-2.463,52.206],[-2.467,52.203],[-2.467,52.2],[-2.474,52.198],[-2.476,52.195],[-2.479,52.194],[-2.485,52.194],[-2.483,52.192],[-2.476,52.188],[-2.474,52.187],[-2.474,52.186],[-2.479,52.185],[-2.483,52.185],[-2.483,52.184],[-2.485,52.181],[-2.488,52.18],[-2.49,52.177],[-2.492,52.176],[-2.494,52.175],[-2.492,52.173],[-2.486,52.172],[-2.485,52.171],[-2.482,52.17],[-2.481,52.168],[-2.483,52.166],[-2.481,52.163],[-2.481,52.161],[-2.481,52.158],[-2.485,52.157],[-2.487,52.152],[-2.488,52.15],[-2.492,52.149],[-2.493,52.147],[-2.502,52.145],[-2.505,52.145],[-2.506,52.143],[-2.505,52.14],[-2.51,52.139],[-2.51,52.14],[-2.519,52.14],[-2.519,52.136],[-2.52,52.133],[-2.523,52.134],[-2.533,52.137],[-2.534,52.133],[-2.526,52.133],[-2.522,52.133],[-2.519,52.133],[-2.516,52.133],[-2.513,52.133],[-2.512,52.13],[-2.516,52.124],[-2.515,52.123],[-2.509,52.121],[-2.506,52.119],[-2.504,52.12],[-2.499,52.119],[-2.496,52.119],[-2.495,52.118],[-2.492,52.118],[-2.487,52.117],[-2.482,52.119],[-2.48,52.12],[-2.481,52.124],[-2.48,52.125],[-2.473,52.124],[-2.475,52.127],[-2.476,52.128],[-2.476,52.13],[-2.472,52.131],[-2.468,52.129],[-2.467,52.126],[-2.464,52.125],[-2.463,52.124],[-2.456,52.122],[-2.454,52.122],[-2.452,52.121],[-2.45,52.119],[-2.448,52.117],[-2.449,52.115],[-2.446,52.114],[-2.446,52.112],[-2.447,52.11],[-2.445,52.11],[-2.43,52.11],[-2.425,52.11],[-2.425,52.109],[-2.421,52.106],[-2.418,52.105],[-2.42,52.102],[-2.423,52.102],[-2.427,52.101],[-2.424,52.1],[-2.422,52.099],[-2.418,52.101],[-2.415,52.103],[-2.411,52.108],[-2.409,52.108],[-2.408,52.105],[-2.407,52.101],[-2.408,52.1],[-2.406,52.096],[-2.401,52.095],[-2.403,52.093],[-2.404,52.089],[-2.399,52.086],[-2.396,52.084],[-2.405,52.083],[-2.406,52.082],[-2.402,52.08],[-2.399,52.077],[-2.401,52.076],[-2.403,52.073],[-2.4,52.071],[-2.398,52.068],[-2.393,52.068],[-2.394,52.065],[-2.394,52.064],[-2.387,52.065],[-2.384,52.065],[-2.386,52.062],[-2.381,52.057],[-2.376,52.058],[-2.377,52.055],[-2.383,52.057],[-2.387,52.056],[-2.387,52.048],[-2.379,52.047],[-2.375,52.053],[-2.37,52.055],[-2.363,52.054],[-2.36,52.054],[-2.355,52.051],[-2.357,52.047],[-2.353,52.045],[-2.351,52.043],[-2.352,52.042],[-2.347,52.036],[-2.345,52.035],[-2.345,52.038],[-2.348,52.042],[-2.341,52.042],[-2.344,52.04],[-2.338,52.038],[-2.339,52.035],[-2.336,52.033],[-2.337,52.032],[-2.342,52.03],[-2.345,52.032],[-2.346,52.03],[-2.344,52.026],[-2.341,52.029],[-2.338,52.028],[-2.339,52.026],[-2.335,52.026],[-2.336,52.023],[-2.335,52.022],[-2.331,52.021],[-2.33,52.018],[-2.335,52.015],[-2.336,52.013],[-2.341,52.013],[-2.34,52.011],[-2.343,52.01],[-2.34,52.008],[-2.341,52.006],[-2.342,52.003],[-2.346,52.001],[-2.345,51.999],[-2.346,51.996]]]},"properties":{"OBJECTID":46,"NAME":"HR","KEY":"HR","Shape_Leng":4.35859,"Shape_Area":0.263735}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.683,57.53],[-7.691,57.527],[-7.69,57.526],[-7.692,57.525],[-7.697,57.526],[-7.699,57.527],[-7.698,57.529],[-7.694,57.53],[-7.69,57.53],[-7.688,57.53],[-7.687,57.532],[-7.685,57.533],[-7.683,57.53]]],[[[-7.64,57.527],[-7.641,57.526],[-7.648,57.527],[-7.651,57.525],[-7.664,57.523],[-7.666,57.524],[-7.67,57.523],[-7.673,57.52],[-7.678,57.521],[-7.678,57.524],[-7.68,57.525],[-7.679,57.526],[-7.673,57.525],[-7.668,57.525],[-7.669,57.527],[-7.666,57.528],[-7.661,57.528],[-7.659,57.531],[-7.658,57.532],[-7.657,57.535],[-7.653,57.536],[-7.647,57.537],[-7.644,57.536],[-7.642,57.534],[-7.643,57.533],[-7.647,57.532],[-7.646,57.53],[-7.643,57.528],[-7.64,57.527]]],[[[-7.62,56.818],[-7.623,56.815],[-7.625,56.815],[-7.627,56.809],[-7.624,56.808],[-7.622,56.805],[-7.627,56.802],[-7.634,56.801],[-7.636,56.8],[-7.64,56.797],[-7.643,56.797],[-7.647,56.797],[-7.652,56.796],[-7.654,56.796],[-7.656,56.799],[-7.653,56.801],[-7.658,56.8],[-7.66,56.803],[-7.661,56.801],[-7.666,56.8],[-7.669,56.8],[-7.666,56.802],[-7.661,56.805],[-7.662,56.806],[-7.662,56.809],[-7.659,56.809],[-7.652,56.813],[-7.656,56.813],[-7.656,56.816],[-7.655,56.818],[-7.658,56.818],[-7.66,56.82],[-7.661,56.822],[-7.658,56.823],[-7.653,56.823],[-7.65,56.821],[-7.649,56.821],[-7.645,56.823],[-7.639,56.824],[-7.634,56.825],[-7.632,56.829],[-7.628,56.831],[-7.623,56.828],[-7.623,56.827],[-7.626,56.824],[-7.621,56.819],[-7.62,56.818]]],[[[-7.615,56.786],[-7.616,56.785],[-7.622,56.785],[-7.624,56.782],[-7.627,56.781],[-7.629,56.781],[-7.632,56.781],[-7.631,56.779],[-7.633,56.778],[-7.635,56.779],[-7.637,56.778],[-7.641,56.78],[-7.643,56.78],[-7.646,56.781],[-7.647,56.783],[-7.653,56.784],[-7.657,56.783],[-7.658,56.785],[-7.663,56.785],[-7.658,56.788],[-7.656,56.79],[-7.648,56.79],[-7.64,56.789],[-7.631,56.789],[-7.627,56.788],[-7.625,56.788],[-7.619,56.788],[-7.615,56.786]]],[[[-7.598,57.529],[-7.599,57.528],[-7.601,57.525],[-7.6,57.522],[-7.605,57.522],[-7.61,57.521],[-7.61,57.518],[-7.608,57.518],[-7.607,57.516],[-7.611,57.516],[-7.615,57.513],[-7.614,57.512],[-7.618,57.51],[-7.625,57.51],[-7.628,57.509],[-7.63,57.51],[-7.628,57.511],[-7.624,57.512],[-7.621,57.512],[-7.62,57.514],[-7.623,57.515],[-7.624,57.518],[-7.626,57.52],[-7.626,57.522],[-7.629,57.521],[-7.63,57.52],[-7.635,57.519],[-7.639,57.52],[-7.64,57.522],[-7.64,57.524],[-7.636,57.525],[-7.633,57.525],[-7.629,57.525],[-7.624,57.526],[-7.623,57.527],[-7.619,57.529],[-7.613,57.528],[-7.61,57.533],[-7.606,57.534],[-7.602,57.533],[-7.598,57.529]]],[[[-7.564,56.899],[-7.566,56.896],[-7.566,56.894],[-7.568,56.893],[-7.571,56.894],[-7.57,56.897],[-7.573,56.899],[-7.572,56.901],[-7.568,56.902],[-7.564,56.9],[-7.564,56.899]]],[[[-7.549,56.848],[-7.552,56.847],[-7.553,56.849],[-7.558,56.851],[-7.559,56.853],[-7.563,56.855],[-7.564,56.854],[-7.565,56.851],[-7.57,56.85],[-7.569,56.848],[-7.572,56.848],[-7.573,56.849],[-7.581,56.849],[-7.584,56.85],[-7.585,56.849],[-7.589,56.849],[-7.592,56.849],[-7.595,56.85],[-7.598,56.85],[-7.598,56.851],[-7.594,56.852],[-7.593,56.855],[-7.591,56.856],[-7.594,56.857],[-7.593,56.859],[-7.587,56.859],[-7.583,56.858],[-7.58,56.861],[-7.576,56.861],[-7.566,56.858],[-7.558,56.856],[-7.555,56.855],[-7.551,56.852],[-7.549,56.848]]],[[[-7.493,56.889],[-7.496,56.889],[-7.499,56.889],[-7.501,56.885],[-7.5,56.883],[-7.5,56.882],[-7.505,56.882],[-7.506,56.881],[-7.511,56.884],[-7.513,56.885],[-7.518,56.884],[-7.517,56.881],[-7.521,56.883],[-7.523,56.885],[-7.525,56.887],[-7.528,56.888],[-7.536,56.889],[-7.534,56.891],[-7.536,56.894],[-7.535,56.895],[-7.538,56.898],[-7.533,56.899],[-7.533,56.902],[-7.526,56.903],[-7.517,56.902],[-7.511,56.903],[-7.507,56.9],[-7.506,56.9],[-7.502,56.899],[-7.496,56.898],[-7.499,56.897],[-7.498,56.894],[-7.498,56.892],[-7.493,56.889]]],[[[-7.481,56.931],[-7.484,56.93],[-7.486,56.931],[-7.488,56.929],[-7.493,56.93],[-7.494,56.932],[-7.496,56.933],[-7.5,56.931],[-7.507,56.931],[-7.512,56.933],[-7.517,56.934],[-7.519,56.933],[-7.525,56.929],[-7.528,56.928],[-7.534,56.927],[-7.535,56.925],[-7.535,56.922],[-7.533,56.921],[-7.523,56.921],[-7.517,56.922],[-7.512,56.921],[-7.506,56.922],[-7.502,56.921],[-7.503,56.918],[-7.505,56.917],[-7.511,56.916],[-7.514,56.915],[-7.516,56.913],[-7.52,56.911],[-7.522,56.913],[-7.529,56.914],[-7.532,56.914],[-7.535,56.909],[-7.54,56.911],[-7.542,56.911],[-7.549,56.909],[-7.552,56.91],[-7.554,56.912],[-7.553,56.913],[-7.555,56.916],[-7.556,56.919],[-7.559,56.92],[-7.56,56.922],[-7.56,56.923],[-7.554,56.921],[-7.551,56.921],[-7.544,56.922],[-7.543,56.925],[-7.543,56.928],[-7.548,56.93],[-7.556,56.93],[-7.559,56.931],[-7.565,56.931],[-7.569,56.932],[-7.572,56.935],[-7.569,56.939],[-7.563,56.941],[-7.562,56.943],[-7.562,56.945],[-7.568,56.946],[-7.57,56.948],[-7.569,56.949],[-7.565,56.949],[-7.557,56.948],[-7.552,56.946],[-7.55,56.946],[-7.544,56.945],[-7.536,56.947],[-7.534,56.946],[-7.531,56.945],[-7.53,56.943],[-7.531,56.942],[-7.54,56.941],[-7.54,56.94],[-7.534,56.938],[-7.528,56.938],[-7.516,56.937],[-7.512,56.937],[-7.505,56.936],[-7.5,56.935],[-7.497,56.936],[-7.494,56.934],[-7.488,56.935],[-7.486,56.933],[-7.483,56.933],[-7.481,56.931]]],[[[-7.437,56.918],[-7.44,56.915],[-7.444,56.913],[-7.446,56.911],[-7.448,56.912],[-7.45,56.914],[-7.452,56.92],[-7.451,56.921],[-7.442,56.922],[-7.438,56.92],[-7.437,56.918]]],[[[-7.434,57.066],[-7.435,57.065],[-7.442,57.063],[-7.45,57.063],[-7.453,57.063],[-7.455,57.064],[-7.451,57.067],[-7.453,57.068],[-7.451,57.07],[-7.445,57.07],[-7.442,57.069],[-7.436,57.068],[-7.434,57.066]]],[[[-7.413,57.029],[-7.413,57.028],[-7.417,57.028],[-7.422,57.027],[-7.425,57.027],[-7.426,57.028],[-7.425,57.03],[-7.417,57.031],[-7.415,57.031],[-7.413,57.029]]],[[[-7.402,57.553],[-7.408,57.55],[-7.415,57.55],[-7.419,57.551],[-7.42,57.55],[-7.425,57.551],[-7.435,57.557],[-7.437,57.56],[-7.44,57.565],[-7.439,57.568],[-7.436,57.57],[-7.43,57.569],[-7.427,57.565],[-7.424,57.562],[-7.423,57.559],[-7.42,57.559],[-7.416,57.559],[-7.414,57.557],[-7.41,57.556],[-7.404,57.554],[-7.402,57.553]]],[[[-7.381,57.026],[-7.381,57.025],[-7.386,57.024],[-7.389,57.026],[-7.385,57.027],[-7.384,57.028],[-7.381,57.026]]],[[[-7.376,56.987],[-7.379,56.985],[-7.378,56.981],[-7.38,56.981],[-7.387,56.982],[-7.39,56.981],[-7.394,56.982],[-7.397,56.982],[-7.403,56.983],[-7.406,56.987],[-7.409,56.993],[-7.414,56.991],[-7.418,56.992],[-7.419,56.991],[-7.411,56.99],[-7.41,56.988],[-7.407,56.987],[-7.407,56.983],[-7.406,56.982],[-7.407,56.98],[-7.407,56.977],[-7.408,56.976],[-7.415,56.976],[-7.416,56.977],[-7.421,56.976],[-7.42,56.974],[-7.422,56.974],[-7.425,56.968],[-7.43,56.967],[-7.43,56.966],[-7.427,56.963],[-7.429,56.961],[-7.433,56.962],[-7.439,56.964],[-7.442,56.962],[-7.443,56.961],[-7.442,56.959],[-7.434,56.957],[-7.433,56.956],[-7.432,56.954],[-7.437,56.949],[-7.444,56.952],[-7.446,56.952],[-7.452,56.95],[-7.452,56.949],[-7.449,56.948],[-7.45,56.947],[-7.457,56.945],[-7.46,56.947],[-7.462,56.946],[-7.466,56.946],[-7.473,56.946],[-7.478,56.946],[-7.481,56.946],[-7.483,56.947],[-7.484,56.952],[-7.483,56.954],[-7.484,56.954],[-7.487,56.954],[-7.491,56.955],[-7.494,56.955],[-7.495,56.952],[-7.499,56.951],[-7.5,56.953],[-7.503,56.957],[-7.505,56.956],[-7.505,56.954],[-7.505,56.952],[-7.501,56.951],[-7.501,56.949],[-7.501,56.948],[-7.503,56.947],[-7.509,56.946],[-7.513,56.946],[-7.515,56.948],[-7.522,56.949],[-7.526,56.948],[-7.529,56.948],[-7.54,56.949],[-7.543,56.951],[-7.548,56.952],[-7.554,56.952],[-7.562,56.956],[-7.559,56.959],[-7.555,56.961],[-7.554,56.962],[-7.556,56.964],[-7.557,56.965],[-7.553,56.969],[-7.545,56.972],[-7.542,56.974],[-7.537,56.973],[-7.535,56.974],[-7.532,56.974],[-7.528,56.973],[-7.525,56.972],[-7.52,56.974],[-7.518,56.978],[-7.516,56.98],[-7.513,56.98],[-7.513,56.981],[-7.515,56.982],[-7.518,56.984],[-7.522,56.983],[-7.524,56.984],[-7.525,56.987],[-7.524,56.988],[-7.517,56.987],[-7.513,56.989],[-7.509,56.993],[-7.51,56.995],[-7.513,56.997],[-7.513,56.999],[-7.509,57.002],[-7.507,57.004],[-7.507,57.006],[-7.51,57.007],[-7.513,57.01],[-7.517,57.011],[-7.524,57.011],[-7.528,57.013],[-7.52,57.014],[-7.518,57.015],[-7.51,57.014],[-7.503,57.013],[-7.498,57.013],[-7.496,57.015],[-7.491,57.015],[-7.489,57.014],[-7.485,57.015],[-7.478,57.017],[-7.476,57.018],[-7.472,57.019],[-7.468,57.019],[-7.462,57.022],[-7.462,57.024],[-7.459,57.024],[-7.455,57.029],[-7.452,57.035],[-7.449,57.042],[-7.449,57.043],[-7.455,57.044],[-7.456,57.047],[-7.45,57.049],[-7.455,57.052],[-7.456,57.054],[-7.455,57.056],[-7.456,57.057],[-7.454,57.058],[-7.446,57.059],[-7.438,57.056],[-7.433,57.054],[-7.428,57.055],[-7.425,57.054],[-7.422,57.052],[-7.423,57.051],[-7.426,57.053],[-7.427,57.052],[-7.426,57.05],[-7.421,57.047],[-7.42,57.046],[-7.42,57.041],[-7.423,57.04],[-7.426,57.037],[-7.426,57.034],[-7.425,57.032],[-7.427,57.031],[-7.433,57.031],[-7.441,57.027],[-7.447,57.026],[-7.449,57.024],[-7.446,57.02],[-7.438,57.019],[-7.433,57.017],[-7.43,57.014],[-7.423,57.013],[-7.419,57.012],[-7.421,57.015],[-7.419,57.015],[-7.414,57.011],[-7.411,57.01],[-7.405,57.009],[-7.403,57.008],[-7.402,57.005],[-7.397,57.004],[-7.396,57.002],[-7.4,57.003],[-7.411,57.007],[-7.416,57.008],[-7.423,57.008],[-7.428,57.012],[-7.43,57.011],[-7.426,57.008],[-7.422,57.007],[-7.413,57.005],[-7.409,57.004],[-7.407,57.002],[-7.41,57.002],[-7.413,57.003],[-7.419,57.003],[-7.42,57.003],[-7.425,57.003],[-7.427,57.004],[-7.429,57.002],[-7.428,57.002],[-7.422,57.002],[-7.42,57],[-7.419,56.999],[-7.414,56.996],[-7.412,56.996],[-7.409,56.997],[-7.411,56.998],[-7.407,57],[-7.403,57],[-7.398,56.999],[-7.399,56.997],[-7.397,56.994],[-7.395,56.993],[-7.393,56.995],[-7.391,56.994],[-7.385,56.992],[-7.38,56.991],[-7.38,56.988],[-7.376,56.987]]],[[[-7.376,57.668],[-7.378,57.666],[-7.384,57.664],[-7.391,57.661],[-7.393,57.66],[-7.393,57.657],[-7.393,57.655],[-7.395,57.654],[-7.396,57.657],[-7.396,57.659],[-7.402,57.661],[-7.407,57.66],[-7.408,57.657],[-7.413,57.656],[-7.417,57.657],[-7.424,57.657],[-7.426,57.658],[-7.432,57.657],[-7.437,57.659],[-7.438,57.66],[-7.44,57.662],[-7.438,57.663],[-7.434,57.662],[-7.433,57.662],[-7.429,57.661],[-7.426,57.661],[-7.42,57.662],[-7.417,57.664],[-7.415,57.664],[-7.412,57.664],[-7.414,57.667],[-7.416,57.667],[-7.417,57.668],[-7.414,57.669],[-7.41,57.666],[-7.405,57.666],[-7.402,57.666],[-7.399,57.668],[-7.396,57.67],[-7.387,57.669],[-7.382,57.668],[-7.378,57.669],[-7.376,57.668]]],[[[-7.372,57.052],[-7.377,57.051],[-7.38,57.051],[-7.381,57.048],[-7.387,57.044],[-7.389,57.043],[-7.394,57.044],[-7.395,57.043],[-7.401,57.045],[-7.406,57.049],[-7.406,57.05],[-7.402,57.051],[-7.394,57.054],[-7.393,57.056],[-7.401,57.058],[-7.402,57.06],[-7.393,57.063],[-7.391,57.063],[-7.39,57.061],[-7.387,57.06],[-7.383,57.06],[-7.379,57.059],[-7.378,57.057],[-7.376,57.055],[-7.372,57.053],[-7.372,57.052]]],[[[-7.361,56.995],[-7.362,56.993],[-7.363,56.992],[-7.369,56.992],[-7.376,56.994],[-7.379,56.999],[-7.379,57],[-7.368,57.001],[-7.365,57],[-7.363,56.999],[-7.361,56.995]]],[[[-7.346,57.234],[-7.35,57.231],[-7.352,57.231],[-7.355,57.238],[-7.351,57.237],[-7.347,57.235],[-7.346,57.234]]],[[[-7.344,57.532],[-7.348,57.529],[-7.356,57.527],[-7.359,57.525],[-7.358,57.524],[-7.35,57.518],[-7.348,57.514],[-7.35,57.509],[-7.354,57.507],[-7.355,57.504],[-7.355,57.503],[-7.356,57.499],[-7.355,57.497],[-7.363,57.497],[-7.368,57.496],[-7.375,57.494],[-7.38,57.494],[-7.38,57.496],[-7.377,57.498],[-7.377,57.5],[-7.378,57.512],[-7.38,57.518],[-7.383,57.522],[-7.393,57.529],[-7.401,57.537],[-7.405,57.539],[-7.412,57.542],[-7.418,57.542],[-7.416,57.545],[-7.414,57.546],[-7.412,57.548],[-7.408,57.55],[-7.401,57.551],[-7.403,57.548],[-7.403,57.545],[-7.398,57.541],[-7.393,57.539],[-7.39,57.538],[-7.387,57.538],[-7.386,57.54],[-7.383,57.54],[-7.384,57.542],[-7.382,57.544],[-7.383,57.548],[-7.379,57.549],[-7.375,57.548],[-7.373,57.55],[-7.369,57.55],[-7.367,57.549],[-7.367,57.547],[-7.365,57.546],[-7.369,57.544],[-7.37,57.542],[-7.369,57.541],[-7.363,57.542],[-7.36,57.54],[-7.36,57.543],[-7.358,57.544],[-7.354,57.543],[-7.352,57.539],[-7.35,57.537],[-7.344,57.532]]],[[[-7.343,56.997],[-7.346,56.995],[-7.353,56.996],[-7.354,56.994],[-7.358,56.995],[-7.358,56.997],[-7.354,56.999],[-7.353,57],[-7.35,57],[-7.346,56.999],[-7.343,56.997]]],[[[-7.339,57.5],[-7.339,57.499],[-7.346,57.498],[-7.351,57.498],[-7.35,57.499],[-7.351,57.501],[-7.347,57.502],[-7.342,57.503],[-7.339,57.5]]],[[[-7.334,57.142],[-7.337,57.141],[-7.341,57.142],[-7.341,57.144],[-7.339,57.145],[-7.338,57.145],[-7.334,57.143],[-7.334,57.142]]],[[[-7.33,57.014],[-7.332,57.012],[-7.332,57.01],[-7.33,57.007],[-7.334,57.007],[-7.336,57.008],[-7.34,57.009],[-7.342,57.011],[-7.347,57.012],[-7.353,57.01],[-7.363,57.013],[-7.364,57.015],[-7.356,57.018],[-7.35,57.02],[-7.344,57.019],[-7.344,57.017],[-7.338,57.016],[-7.339,57.012],[-7.335,57.01],[-7.333,57.012],[-7.335,57.014],[-7.332,57.015],[-7.33,57.014]]],[[[-7.329,57.144],[-7.332,57.144],[-7.335,57.145],[-7.334,57.146],[-7.329,57.144]]],[[[-7.329,57.155],[-7.33,57.154],[-7.335,57.156],[-7.332,57.157],[-7.329,57.156],[-7.329,57.155]]],[[[-7.327,57.153],[-7.328,57.152],[-7.334,57.153],[-7.335,57.154],[-7.328,57.153],[-7.327,57.153]]],[[[-7.322,57.016],[-7.324,57.015],[-7.329,57.015],[-7.331,57.016],[-7.341,57.02],[-7.345,57.022],[-7.339,57.024],[-7.335,57.025],[-7.328,57.027],[-7.325,57.026],[-7.328,57.025],[-7.325,57.021],[-7.323,57.019],[-7.322,57.016]]],[[[-7.304,57.145],[-7.307,57.143],[-7.312,57.144],[-7.315,57.145],[-7.316,57.144],[-7.318,57.143],[-7.32,57.143],[-7.325,57.145],[-7.326,57.147],[-7.326,57.148],[-7.322,57.149],[-7.318,57.149],[-7.308,57.147],[-7.306,57.147],[-7.304,57.145]]],[[[-7.283,57.984],[-7.286,57.983],[-7.288,57.98],[-7.292,57.982],[-7.294,57.983],[-7.294,57.985],[-7.293,57.986],[-7.288,57.985],[-7.285,57.986],[-7.283,57.984]]],[[[-7.281,57.657],[-7.284,57.656],[-7.285,57.659],[-7.293,57.66],[-7.296,57.659],[-7.298,57.662],[-7.308,57.661],[-7.309,57.662],[-7.302,57.664],[-7.3,57.664],[-7.296,57.664],[-7.291,57.668],[-7.287,57.668],[-7.284,57.666],[-7.284,57.663],[-7.281,57.661],[-7.282,57.659],[-7.281,57.657]]],[[[-7.273,57.703],[-7.274,57.701],[-7.281,57.7],[-7.285,57.701],[-7.288,57.701],[-7.291,57.702],[-7.297,57.707],[-7.3,57.707],[-7.303,57.708],[-7.299,57.709],[-7.303,57.713],[-7.303,57.715],[-7.302,57.718],[-7.295,57.721],[-7.291,57.721],[-7.285,57.72],[-7.279,57.719],[-7.274,57.717],[-7.274,57.715],[-7.277,57.712],[-7.28,57.709],[-7.28,57.707],[-7.277,57.705],[-7.274,57.704],[-7.273,57.703]]],[[[-7.272,57.494],[-7.274,57.493],[-7.278,57.492],[-7.282,57.494],[-7.283,57.496],[-7.278,57.496],[-7.275,57.496],[-7.272,57.494]]],[[[-7.269,57.091],[-7.27,57.089],[-7.27,57.086],[-7.275,57.085],[-7.273,57.081],[-7.277,57.079],[-7.274,57.078],[-7.274,57.077],[-7.277,57.076],[-7.28,57.073],[-7.28,57.069],[-7.281,57.068],[-7.286,57.068],[-7.29,57.067],[-7.295,57.068],[-7.3,57.068],[-7.295,57.065],[-7.291,57.065],[-7.29,57.066],[-7.285,57.064],[-7.284,57.063],[-7.286,57.059],[-7.284,57.058],[-7.288,57.057],[-7.288,57.055],[-7.295,57.053],[-7.297,57.055],[-7.304,57.056],[-7.309,57.06],[-7.309,57.061],[-7.311,57.065],[-7.311,57.068],[-7.306,57.072],[-7.306,57.075],[-7.309,57.078],[-7.314,57.08],[-7.311,57.083],[-7.312,57.086],[-7.314,57.087],[-7.314,57.089],[-7.312,57.089],[-7.308,57.089],[-7.301,57.088],[-7.298,57.09],[-7.294,57.091],[-7.29,57.09],[-7.284,57.091],[-7.28,57.092],[-7.269,57.091]]],[[[-7.267,57.479],[-7.269,57.478],[-7.273,57.479],[-7.273,57.481],[-7.267,57.479]]],[[[-7.263,57.51],[-7.267,57.508],[-7.27,57.509],[-7.268,57.511],[-7.263,57.51]]],[[[-7.262,57.445],[-7.264,57.442],[-7.266,57.445],[-7.265,57.447],[-7.262,57.445]]],[[[-7.256,57.142],[-7.259,57.141],[-7.267,57.143],[-7.265,57.145],[-7.261,57.144],[-7.259,57.145],[-7.256,57.142]]],[[[-7.246,57.392],[-7.251,57.391],[-7.255,57.392],[-7.258,57.391],[-7.259,57.389],[-7.265,57.389],[-7.266,57.392],[-7.268,57.392],[-7.268,57.394],[-7.262,57.396],[-7.255,57.394],[-7.256,57.395],[-7.261,57.398],[-7.262,57.4],[-7.263,57.402],[-7.261,57.403],[-7.259,57.402],[-7.259,57.401],[-7.256,57.399],[-7.253,57.398],[-7.247,57.394],[-7.246,57.392]]],[[[-7.246,57.802],[-7.246,57.801],[-7.252,57.801],[-7.254,57.8],[-7.257,57.797],[-7.258,57.798],[-7.258,57.8],[-7.261,57.804],[-7.258,57.805],[-7.251,57.803],[-7.247,57.803],[-7.246,57.802]]],[[[-7.245,57.689],[-7.247,57.686],[-7.251,57.684],[-7.257,57.684],[-7.26,57.686],[-7.26,57.689],[-7.259,57.69],[-7.251,57.691],[-7.247,57.691],[-7.245,57.689]]],[[[-7.242,57.191],[-7.245,57.189],[-7.246,57.188],[-7.251,57.187],[-7.255,57.189],[-7.256,57.193],[-7.255,57.194],[-7.251,57.195],[-7.249,57.195],[-7.249,57.193],[-7.243,57.193],[-7.242,57.191]]],[[[-7.24,57.325],[-7.246,57.323],[-7.249,57.324],[-7.248,57.326],[-7.252,57.327],[-7.253,57.328],[-7.248,57.33],[-7.245,57.33],[-7.243,57.329],[-7.243,57.327],[-7.24,57.325]]],[[[-7.239,57.394],[-7.241,57.394],[-7.245,57.395],[-7.253,57.399],[-7.248,57.4],[-7.241,57.399],[-7.24,57.397],[-7.242,57.397],[-7.239,57.394]]],[[[-7.236,57.381],[-7.239,57.38],[-7.242,57.382],[-7.246,57.383],[-7.252,57.382],[-7.254,57.384],[-7.256,57.386],[-7.248,57.387],[-7.248,57.383],[-7.243,57.383],[-7.236,57.381]]],[[[-7.215,57.41],[-7.216,57.409],[-7.22,57.408],[-7.223,57.409],[-7.225,57.408],[-7.228,57.409],[-7.23,57.41],[-7.234,57.41],[-7.236,57.411],[-7.233,57.414],[-7.228,57.413],[-7.223,57.414],[-7.222,57.413],[-7.219,57.413],[-7.217,57.414],[-7.215,57.412],[-7.215,57.41]]],[[[-7.205,57.469],[-7.21,57.469],[-7.212,57.47],[-7.217,57.47],[-7.221,57.471],[-7.232,57.474],[-7.236,57.475],[-7.236,57.477],[-7.233,57.477],[-7.225,57.476],[-7.219,57.474],[-7.213,57.472],[-7.211,57.471],[-7.205,57.469]]],[[[-7.202,57.424],[-7.204,57.423],[-7.207,57.425],[-7.21,57.425],[-7.215,57.426],[-7.217,57.425],[-7.221,57.427],[-7.223,57.426],[-7.214,57.423],[-7.21,57.423],[-7.208,57.42],[-7.204,57.419],[-7.207,57.416],[-7.209,57.415],[-7.217,57.416],[-7.224,57.415],[-7.238,57.414],[-7.237,57.411],[-7.245,57.412],[-7.248,57.411],[-7.254,57.412],[-7.254,57.411],[-7.248,57.41],[-7.246,57.41],[-7.241,57.41],[-7.236,57.408],[-7.238,57.407],[-7.238,57.403],[-7.239,57.403],[-7.239,57.401],[-7.241,57.401],[-7.242,57.402],[-7.254,57.405],[-7.259,57.407],[-7.263,57.408],[-7.268,57.408],[-7.27,57.41],[-7.279,57.41],[-7.291,57.413],[-7.304,57.416],[-7.309,57.417],[-7.314,57.418],[-7.315,57.415],[-7.313,57.414],[-7.31,57.416],[-7.307,57.416],[-7.302,57.414],[-7.301,57.412],[-7.296,57.412],[-7.292,57.41],[-7.287,57.41],[-7.283,57.409],[-7.281,57.409],[-7.277,57.408],[-7.271,57.406],[-7.272,57.404],[-7.268,57.404],[-7.264,57.4],[-7.265,57.399],[-7.271,57.399],[-7.272,57.4],[-7.277,57.402],[-7.283,57.404],[-7.289,57.409],[-7.292,57.407],[-7.296,57.407],[-7.298,57.406],[-7.302,57.406],[-7.307,57.405],[-7.31,57.405],[-7.308,57.402],[-7.304,57.401],[-7.307,57.4],[-7.318,57.402],[-7.32,57.403],[-7.32,57.405],[-7.324,57.405],[-7.328,57.407],[-7.336,57.411],[-7.339,57.414],[-7.343,57.417],[-7.34,57.418],[-7.341,57.42],[-7.345,57.421],[-7.348,57.421],[-7.348,57.419],[-7.352,57.42],[-7.353,57.421],[-7.358,57.422],[-7.359,57.42],[-7.362,57.42],[-7.365,57.422],[-7.373,57.423],[-7.376,57.422],[-7.381,57.423],[-7.389,57.425],[-7.39,57.424],[-7.393,57.423],[-7.394,57.426],[-7.394,57.427],[-7.393,57.433],[-7.394,57.435],[-7.397,57.443],[-7.408,57.448],[-7.409,57.448],[-7.411,57.453],[-7.411,57.455],[-7.409,57.456],[-7.405,57.456],[-7.403,57.457],[-7.401,57.461],[-7.403,57.462],[-7.408,57.463],[-7.412,57.464],[-7.409,57.467],[-7.411,57.47],[-7.407,57.472],[-7.4,57.474],[-7.396,57.475],[-7.394,57.474],[-7.384,57.475],[-7.382,57.474],[-7.379,57.475],[-7.378,57.478],[-7.375,57.479],[-7.373,57.48],[-7.372,57.486],[-7.371,57.49],[-7.368,57.492],[-7.36,57.493],[-7.354,57.494],[-7.346,57.494],[-7.347,57.492],[-7.346,57.49],[-7.348,57.484],[-7.343,57.484],[-7.339,57.485],[-7.334,57.485],[-7.335,57.484],[-7.337,57.481],[-7.336,57.481],[-7.329,57.482],[-7.328,57.481],[-7.323,57.48],[-7.317,57.482],[-7.315,57.481],[-7.309,57.481],[-7.307,57.484],[-7.305,57.485],[-7.301,57.485],[-7.296,57.486],[-7.294,57.484],[-7.291,57.485],[-7.29,57.484],[-7.295,57.483],[-7.295,57.482],[-7.299,57.482],[-7.297,57.479],[-7.293,57.481],[-7.286,57.479],[-7.285,57.481],[-7.283,57.48],[-7.278,57.479],[-7.275,57.477],[-7.274,57.475],[-7.275,57.474],[-7.282,57.473],[-7.279,57.472],[-7.276,57.468],[-7.273,57.467],[-7.269,57.468],[-7.269,57.466],[-7.266,57.464],[-7.265,57.467],[-7.263,57.467],[-7.26,57.467],[-7.258,57.466],[-7.256,57.467],[-7.255,57.464],[-7.251,57.462],[-7.251,57.465],[-7.255,57.468],[-7.254,57.47],[-7.249,57.471],[-7.253,57.473],[-7.253,57.476],[-7.252,57.477],[-7.245,57.476],[-7.243,57.475],[-7.239,57.473],[-7.239,57.472],[-7.245,57.472],[-7.248,57.472],[-7.247,57.47],[-7.243,57.469],[-7.242,57.468],[-7.245,57.467],[-7.238,57.465],[-7.235,57.464],[-7.232,57.466],[-7.232,57.467],[-7.233,57.47],[-7.229,57.471],[-7.221,57.468],[-7.211,57.465],[-7.21,57.463],[-7.205,57.46],[-7.208,57.458],[-7.212,57.46],[-7.214,57.458],[-7.216,57.458],[-7.219,57.459],[-7.22,57.458],[-7.225,57.459],[-7.23,57.461],[-7.233,57.462],[-7.24,57.461],[-7.238,57.457],[-7.24,57.457],[-7.236,57.454],[-7.238,57.454],[-7.242,57.455],[-7.241,57.452],[-7.236,57.451],[-7.23,57.45],[-7.222,57.449],[-7.218,57.447],[-7.224,57.447],[-7.229,57.446],[-7.235,57.446],[-7.236,57.449],[-7.239,57.448],[-7.242,57.448],[-7.249,57.454],[-7.249,57.458],[-7.251,57.46],[-7.253,57.46],[-7.252,57.457],[-7.251,57.455],[-7.253,57.453],[-7.25,57.452],[-7.247,57.449],[-7.245,57.447],[-7.248,57.446],[-7.25,57.449],[-7.252,57.448],[-7.253,57.446],[-7.25,57.445],[-7.25,57.444],[-7.254,57.444],[-7.257,57.447],[-7.258,57.449],[-7.261,57.449],[-7.263,57.452],[-7.269,57.453],[-7.267,57.451],[-7.269,57.446],[-7.273,57.448],[-7.275,57.447],[-7.272,57.445],[-7.27,57.442],[-7.264,57.442],[-7.264,57.44],[-7.274,57.44],[-7.282,57.44],[-7.283,57.438],[-7.279,57.438],[-7.272,57.439],[-7.265,57.438],[-7.262,57.437],[-7.261,57.436],[-7.255,57.433],[-7.25,57.43],[-7.248,57.432],[-7.245,57.433],[-7.242,57.432],[-7.236,57.43],[-7.23,57.43],[-7.226,57.431],[-7.233,57.432],[-7.238,57.434],[-7.243,57.434],[-7.243,57.435],[-7.246,57.436],[-7.245,57.438],[-7.238,57.437],[-7.234,57.437],[-7.225,57.435],[-7.222,57.436],[-7.217,57.437],[-7.212,57.434],[-7.207,57.43],[-7.207,57.427],[-7.204,57.426],[-7.202,57.424]]],[[[-7.201,57.476],[-7.203,57.475],[-7.209,57.476],[-7.21,57.475],[-7.213,57.475],[-7.22,57.477],[-7.224,57.479],[-7.23,57.48],[-7.229,57.482],[-7.237,57.485],[-7.239,57.483],[-7.238,57.481],[-7.24,57.48],[-7.245,57.479],[-7.252,57.481],[-7.254,57.483],[-7.251,57.485],[-7.256,57.486],[-7.256,57.488],[-7.261,57.489],[-7.261,57.492],[-7.266,57.492],[-7.269,57.494],[-7.268,57.495],[-7.27,57.496],[-7.274,57.497],[-7.275,57.499],[-7.267,57.501],[-7.26,57.501],[-7.253,57.501],[-7.251,57.502],[-7.248,57.502],[-7.243,57.5],[-7.237,57.501],[-7.234,57.5],[-7.229,57.5],[-7.223,57.498],[-7.221,57.499],[-7.224,57.5],[-7.227,57.502],[-7.223,57.503],[-7.221,57.501],[-7.217,57.499],[-7.219,57.496],[-7.219,57.493],[-7.215,57.488],[-7.207,57.486],[-7.207,57.485],[-7.203,57.484],[-7.206,57.483],[-7.204,57.481],[-7.207,57.479],[-7.205,57.479],[-7.201,57.476]]],[[[-7.199,57.773],[-7.201,57.772],[-7.205,57.77],[-7.207,57.767],[-7.208,57.765],[-7.212,57.763],[-7.213,57.76],[-7.215,57.759],[-7.221,57.76],[-7.225,57.761],[-7.228,57.76],[-7.234,57.76],[-7.235,57.759],[-7.239,57.759],[-7.24,57.76],[-7.246,57.761],[-7.252,57.764],[-7.256,57.766],[-7.264,57.771],[-7.264,57.773],[-7.265,57.775],[-7.264,57.777],[-7.261,57.775],[-7.259,57.777],[-7.26,57.779],[-7.257,57.781],[-7.253,57.781],[-7.248,57.782],[-7.242,57.781],[-7.241,57.784],[-7.238,57.785],[-7.234,57.785],[-7.231,57.785],[-7.229,57.785],[-7.218,57.785],[-7.214,57.784],[-7.212,57.783],[-7.211,57.78],[-7.206,57.777],[-7.201,57.774],[-7.199,57.773]]],[[[-7.197,57.414],[-7.203,57.411],[-7.212,57.41],[-7.214,57.412],[-7.213,57.414],[-7.205,57.415],[-7.198,57.414],[-7.197,57.414]]],[[[-7.193,57.299],[-7.195,57.297],[-7.2,57.296],[-7.203,57.294],[-7.203,57.292],[-7.198,57.291],[-7.202,57.29],[-7.203,57.289],[-7.202,57.285],[-7.203,57.282],[-7.206,57.281],[-7.211,57.282],[-7.213,57.279],[-7.219,57.28],[-7.222,57.281],[-7.226,57.283],[-7.228,57.282],[-7.229,57.279],[-7.233,57.278],[-7.23,57.277],[-7.23,57.276],[-7.234,57.274],[-7.238,57.273],[-7.237,57.272],[-7.24,57.27],[-7.243,57.267],[-7.245,57.265],[-7.249,57.265],[-7.248,57.263],[-7.251,57.262],[-7.255,57.26],[-7.254,57.259],[-7.244,57.258],[-7.245,57.256],[-7.249,57.257],[-7.25,57.255],[-7.246,57.252],[-7.244,57.249],[-7.248,57.248],[-7.253,57.247],[-7.257,57.244],[-7.258,57.24],[-7.261,57.239],[-7.261,57.237],[-7.257,57.236],[-7.263,57.235],[-7.262,57.23],[-7.263,57.228],[-7.268,57.226],[-7.275,57.225],[-7.278,57.225],[-7.283,57.227],[-7.284,57.224],[-7.283,57.222],[-7.299,57.225],[-7.303,57.225],[-7.306,57.226],[-7.307,57.228],[-7.305,57.229],[-7.301,57.228],[-7.3,57.229],[-7.301,57.232],[-7.304,57.233],[-7.302,57.234],[-7.299,57.233],[-7.295,57.231],[-7.293,57.229],[-7.288,57.228],[-7.285,57.228],[-7.285,57.229],[-7.288,57.23],[-7.289,57.231],[-7.294,57.233],[-7.297,57.236],[-7.302,57.238],[-7.306,57.24],[-7.308,57.24],[-7.307,57.236],[-7.31,57.233],[-7.312,57.235],[-7.317,57.235],[-7.321,57.234],[-7.321,57.232],[-7.329,57.232],[-7.336,57.232],[-7.337,57.232],[-7.341,57.235],[-7.342,57.238],[-7.345,57.242],[-7.35,57.242],[-7.344,57.239],[-7.343,57.237],[-7.345,57.236],[-7.347,57.237],[-7.355,57.238],[-7.358,57.24],[-7.359,57.241],[-7.362,57.241],[-7.361,57.24],[-7.357,57.236],[-7.357,57.235],[-7.359,57.233],[-7.353,57.231],[-7.348,57.228],[-7.347,57.229],[-7.341,57.227],[-7.339,57.225],[-7.334,57.225],[-7.333,57.227],[-7.33,57.224],[-7.322,57.223],[-7.318,57.223],[-7.325,57.226],[-7.326,57.227],[-7.321,57.228],[-7.319,57.23],[-7.312,57.23],[-7.309,57.228],[-7.31,57.227],[-7.316,57.228],[-7.314,57.226],[-7.311,57.225],[-7.31,57.223],[-7.308,57.224],[-7.305,57.223],[-7.305,57.22],[-7.302,57.218],[-7.303,57.217],[-7.301,57.215],[-7.292,57.213],[-7.289,57.214],[-7.278,57.216],[-7.275,57.216],[-7.272,57.213],[-7.271,57.21],[-7.268,57.21],[-7.264,57.208],[-7.263,57.206],[-7.265,57.203],[-7.266,57.198],[-7.267,57.195],[-7.263,57.193],[-7.259,57.19],[-7.258,57.187],[-7.254,57.185],[-7.252,57.181],[-7.252,57.177],[-7.25,57.173],[-7.248,57.171],[-7.249,57.17],[-7.249,57.168],[-7.25,57.166],[-7.248,57.165],[-7.247,57.164],[-7.251,57.163],[-7.255,57.16],[-7.258,57.159],[-7.258,57.154],[-7.259,57.153],[-7.263,57.153],[-7.268,57.151],[-7.274,57.15],[-7.276,57.151],[-7.282,57.151],[-7.285,57.151],[-7.297,57.155],[-7.305,57.159],[-7.308,57.161],[-7.31,57.164],[-7.313,57.163],[-7.316,57.164],[-7.318,57.163],[-7.311,57.16],[-7.309,57.157],[-7.31,57.156],[-7.306,57.155],[-7.302,57.153],[-7.304,57.152],[-7.308,57.152],[-7.308,57.151],[-7.304,57.15],[-7.304,57.149],[-7.307,57.149],[-7.313,57.151],[-7.315,57.152],[-7.323,57.152],[-7.319,57.154],[-7.326,57.159],[-7.327,57.16],[-7.331,57.16],[-7.333,57.158],[-7.336,57.158],[-7.336,57.156],[-7.339,57.157],[-7.346,57.156],[-7.346,57.154],[-7.354,57.155],[-7.351,57.15],[-7.346,57.148],[-7.344,57.15],[-7.34,57.147],[-7.343,57.146],[-7.344,57.145],[-7.343,57.141],[-7.341,57.139],[-7.336,57.138],[-7.332,57.138],[-7.329,57.14],[-7.327,57.139],[-7.321,57.139],[-7.317,57.138],[-7.309,57.138],[-7.304,57.139],[-7.301,57.142],[-7.299,57.141],[-7.295,57.142],[-7.292,57.142],[-7.29,57.143],[-7.284,57.143],[-7.28,57.144],[-7.275,57.142],[-7.267,57.142],[-7.265,57.141],[-7.261,57.139],[-7.259,57.138],[-7.252,57.136],[-7.248,57.136],[-7.246,57.136],[-7.246,57.133],[-7.252,57.128],[-7.251,57.128],[-7.246,57.129],[-7.24,57.124],[-7.243,57.123],[-7.242,57.121],[-7.244,57.12],[-7.241,57.118],[-7.239,57.12],[-7.235,57.126],[-7.234,57.127],[-7.229,57.126],[-7.226,57.12],[-7.224,57.119],[-7.221,57.12],[-7.217,57.119],[-7.213,57.118],[-7.212,57.117],[-7.213,57.114],[-7.216,57.112],[-7.217,57.111],[-7.22,57.113],[-7.227,57.113],[-7.23,57.112],[-7.228,57.111],[-7.221,57.112],[-7.22,57.111],[-7.224,57.11],[-7.223,57.108],[-7.225,57.105],[-7.226,57.105],[-7.231,57.105],[-7.233,57.104],[-7.233,57.103],[-7.23,57.099],[-7.231,57.097],[-7.238,57.096],[-7.244,57.098],[-7.247,57.1],[-7.251,57.099],[-7.252,57.1],[-7.258,57.1],[-7.263,57.102],[-7.278,57.108],[-7.282,57.109],[-7.285,57.108],[-7.289,57.109],[-7.297,57.108],[-7.299,57.109],[-7.301,57.111],[-7.305,57.109],[-7.307,57.107],[-7.311,57.106],[-7.318,57.103],[-7.325,57.105],[-7.328,57.103],[-7.337,57.103],[-7.341,57.102],[-7.345,57.103],[-7.351,57.102],[-7.356,57.103],[-7.358,57.102],[-7.365,57.104],[-7.371,57.104],[-7.377,57.105],[-7.379,57.109],[-7.381,57.11],[-7.387,57.113],[-7.393,57.114],[-7.393,57.115],[-7.392,57.118],[-7.393,57.121],[-7.395,57.123],[-7.399,57.128],[-7.403,57.13],[-7.406,57.13],[-7.405,57.132],[-7.404,57.138],[-7.405,57.141],[-7.412,57.148],[-7.413,57.149],[-7.411,57.154],[-7.409,57.158],[-7.408,57.16],[-7.409,57.162],[-7.412,57.166],[-7.419,57.177],[-7.422,57.182],[-7.422,57.186],[-7.425,57.189],[-7.426,57.193],[-7.424,57.195],[-7.424,57.199],[-7.425,57.202],[-7.426,57.205],[-7.425,57.21],[-7.425,57.217],[-7.426,57.218],[-7.432,57.22],[-7.433,57.226],[-7.432,57.229],[-7.433,57.232],[-7.438,57.237],[-7.442,57.238],[-7.446,57.241],[-7.451,57.241],[-7.454,57.239],[-7.459,57.241],[-7.459,57.243],[-7.453,57.244],[-7.451,57.244],[-7.443,57.242],[-7.44,57.242],[-7.432,57.246],[-7.43,57.247],[-7.427,57.251],[-7.426,57.255],[-7.426,57.261],[-7.426,57.263],[-7.424,57.265],[-7.424,57.269],[-7.425,57.272],[-7.431,57.273],[-7.432,57.275],[-7.426,57.275],[-7.424,57.275],[-7.424,57.277],[-7.42,57.279],[-7.422,57.284],[-7.424,57.286],[-7.422,57.288],[-7.419,57.29],[-7.416,57.291],[-7.409,57.293],[-7.406,57.294],[-7.4,57.3],[-7.399,57.305],[-7.401,57.311],[-7.4,57.313],[-7.399,57.317],[-7.399,57.322],[-7.397,57.328],[-7.397,57.333],[-7.399,57.34],[-7.4,57.345],[-7.401,57.348],[-7.403,57.352],[-7.408,57.364],[-7.412,57.369],[-7.417,57.374],[-7.422,57.377],[-7.427,57.383],[-7.431,57.384],[-7.43,57.385],[-7.431,57.387],[-7.427,57.391],[-7.422,57.39],[-7.42,57.388],[-7.413,57.388],[-7.41,57.389],[-7.407,57.391],[-7.406,57.393],[-7.403,57.394],[-7.401,57.396],[-7.4,57.4],[-7.395,57.399],[-7.392,57.4],[-7.38,57.396],[-7.384,57.396],[-7.384,57.394],[-7.388,57.395],[-7.387,57.393],[-7.383,57.393],[-7.38,57.394],[-7.378,57.395],[-7.373,57.395],[-7.371,57.396],[-7.375,57.396],[-7.369,57.399],[-7.366,57.399],[-7.361,57.399],[-7.358,57.401],[-7.354,57.4],[-7.352,57.402],[-7.35,57.401],[-7.345,57.403],[-7.34,57.403],[-7.337,57.402],[-7.329,57.399],[-7.329,57.395],[-7.327,57.392],[-7.325,57.394],[-7.321,57.393],[-7.319,57.392],[-7.319,57.391],[-7.321,57.387],[-7.317,57.385],[-7.316,57.387],[-7.308,57.387],[-7.306,57.387],[-7.303,57.386],[-7.295,57.384],[-7.297,57.382],[-7.296,57.381],[-7.292,57.381],[-7.293,57.383],[-7.292,57.385],[-7.282,57.384],[-7.277,57.382],[-7.274,57.381],[-7.271,57.379],[-7.27,57.377],[-7.268,57.374],[-7.268,57.373],[-7.273,57.373],[-7.278,57.375],[-7.285,57.375],[-7.282,57.376],[-7.286,57.378],[-7.286,57.38],[-7.288,57.38],[-7.29,57.378],[-7.295,57.378],[-7.295,57.376],[-7.298,57.375],[-7.304,57.376],[-7.305,57.375],[-7.301,57.374],[-7.305,57.372],[-7.294,57.371],[-7.29,57.371],[-7.281,57.37],[-7.278,57.368],[-7.273,57.367],[-7.272,57.366],[-7.268,57.366],[-7.264,57.364],[-7.265,57.362],[-7.269,57.364],[-7.271,57.363],[-7.269,57.361],[-7.263,57.359],[-7.26,57.358],[-7.259,57.357],[-7.253,57.356],[-7.251,57.355],[-7.254,57.353],[-7.25,57.352],[-7.249,57.354],[-7.245,57.354],[-7.242,57.353],[-7.24,57.351],[-7.241,57.348],[-7.246,57.348],[-7.251,57.347],[-7.255,57.349],[-7.259,57.349],[-7.265,57.351],[-7.266,57.35],[-7.273,57.35],[-7.275,57.35],[-7.283,57.35],[-7.286,57.348],[-7.289,57.35],[-7.291,57.349],[-7.285,57.345],[-7.284,57.347],[-7.28,57.349],[-7.275,57.349],[-7.27,57.348],[-7.269,57.346],[-7.265,57.344],[-7.263,57.345],[-7.26,57.345],[-7.263,57.342],[-7.26,57.342],[-7.255,57.344],[-7.252,57.343],[-7.249,57.344],[-7.249,57.346],[-7.244,57.346],[-7.24,57.347],[-7.24,57.345],[-7.239,57.343],[-7.235,57.343],[-7.234,57.345],[-7.236,57.346],[-7.228,57.348],[-7.228,57.35],[-7.223,57.35],[-7.222,57.348],[-7.225,57.348],[-7.223,57.345],[-7.224,57.342],[-7.227,57.343],[-7.227,57.341],[-7.231,57.341],[-7.236,57.341],[-7.233,57.338],[-7.233,57.336],[-7.236,57.337],[-7.237,57.335],[-7.241,57.335],[-7.244,57.336],[-7.245,57.335],[-7.25,57.333],[-7.252,57.333],[-7.252,57.331],[-7.255,57.33],[-7.26,57.331],[-7.263,57.333],[-7.259,57.333],[-7.259,57.334],[-7.266,57.334],[-7.266,57.332],[-7.263,57.329],[-7.269,57.329],[-7.273,57.33],[-7.274,57.332],[-7.272,57.333],[-7.275,57.334],[-7.279,57.334],[-7.286,57.336],[-7.287,57.337],[-7.291,57.339],[-7.296,57.34],[-7.302,57.343],[-7.304,57.345],[-7.306,57.346],[-7.307,57.348],[-7.312,57.348],[-7.315,57.349],[-7.317,57.349],[-7.321,57.351],[-7.322,57.353],[-7.315,57.351],[-7.312,57.351],[-7.309,57.351],[-7.313,57.356],[-7.316,57.357],[-7.318,57.356],[-7.318,57.354],[-7.323,57.354],[-7.329,57.354],[-7.333,57.356],[-7.333,57.357],[-7.339,57.36],[-7.341,57.361],[-7.339,57.364],[-7.336,57.365],[-7.337,57.368],[-7.341,57.367],[-7.348,57.367],[-7.353,57.364],[-7.358,57.364],[-7.358,57.365],[-7.364,57.367],[-7.365,57.371],[-7.362,57.373],[-7.36,57.376],[-7.358,57.378],[-7.354,57.379],[-7.353,57.38],[-7.353,57.382],[-7.357,57.382],[-7.359,57.383],[-7.361,57.382],[-7.364,57.381],[-7.376,57.38],[-7.375,57.381],[-7.381,57.387],[-7.38,57.391],[-7.382,57.392],[-7.387,57.389],[-7.389,57.39],[-7.391,57.39],[-7.392,57.389],[-7.396,57.387],[-7.396,57.385],[-7.393,57.385],[-7.389,57.382],[-7.387,57.381],[-7.386,57.378],[-7.382,57.376],[-7.382,57.374],[-7.384,57.367],[-7.386,57.366],[-7.384,57.364],[-7.383,57.362],[-7.381,57.357],[-7.377,57.355],[-7.371,57.356],[-7.365,57.356],[-7.363,57.357],[-7.357,57.358],[-7.351,57.357],[-7.351,57.355],[-7.353,57.353],[-7.351,57.351],[-7.343,57.35],[-7.341,57.348],[-7.339,57.348],[-7.338,57.35],[-7.34,57.352],[-7.341,57.352],[-7.346,57.353],[-7.34,57.355],[-7.34,57.356],[-7.336,57.356],[-7.332,57.353],[-7.329,57.352],[-7.322,57.35],[-7.317,57.347],[-7.309,57.345],[-7.308,57.345],[-7.308,57.343],[-7.303,57.342],[-7.298,57.34],[-7.293,57.335],[-7.289,57.335],[-7.28,57.332],[-7.276,57.329],[-7.27,57.328],[-7.273,57.324],[-7.266,57.325],[-7.263,57.326],[-7.257,57.326],[-7.257,57.323],[-7.253,57.322],[-7.251,57.323],[-7.247,57.323],[-7.242,57.32],[-7.24,57.321],[-7.236,57.325],[-7.232,57.324],[-7.229,57.324],[-7.225,57.323],[-7.225,57.32],[-7.229,57.32],[-7.229,57.319],[-7.226,57.319],[-7.227,57.316],[-7.226,57.314],[-7.222,57.31],[-7.224,57.309],[-7.223,57.305],[-7.222,57.301],[-7.219,57.303],[-7.212,57.304],[-7.207,57.306],[-7.202,57.306],[-7.198,57.305],[-7.198,57.302],[-7.196,57.3],[-7.193,57.299]]],[[[-7.192,57.43],[-7.196,57.429],[-7.199,57.43],[-7.205,57.433],[-7.205,57.435],[-7.201,57.435],[-7.198,57.433],[-7.192,57.431],[-7.192,57.43]]],[[[-7.189,57.397],[-7.19,57.396],[-7.194,57.395],[-7.199,57.392],[-7.202,57.39],[-7.205,57.389],[-7.207,57.39],[-7.214,57.391],[-7.218,57.39],[-7.216,57.389],[-7.212,57.389],[-7.211,57.388],[-7.208,57.389],[-7.206,57.387],[-7.209,57.386],[-7.213,57.386],[-7.22,57.387],[-7.226,57.388],[-7.227,57.39],[-7.233,57.391],[-7.234,57.392],[-7.232,57.393],[-7.227,57.396],[-7.228,57.398],[-7.223,57.399],[-7.223,57.401],[-7.221,57.401],[-7.222,57.403],[-7.218,57.405],[-7.217,57.406],[-7.213,57.408],[-7.208,57.408],[-7.198,57.407],[-7.2,57.409],[-7.201,57.41],[-7.195,57.41],[-7.195,57.405],[-7.196,57.403],[-7.197,57.401],[-7.19,57.398],[-7.189,57.397]]],[[[-7.168,57.631],[-7.174,57.631],[-7.179,57.63],[-7.18,57.632],[-7.177,57.633],[-7.185,57.635],[-7.186,57.637],[-7.19,57.639],[-7.178,57.638],[-7.172,57.637],[-7.171,57.636],[-7.174,57.634],[-7.169,57.633],[-7.168,57.631]]],[[[-7.161,57.624],[-7.165,57.624],[-7.169,57.625],[-7.173,57.627],[-7.176,57.629],[-7.172,57.63],[-7.163,57.63],[-7.161,57.63],[-7.163,57.628],[-7.161,57.624]]],[[[-7.159,57.484],[-7.161,57.482],[-7.164,57.481],[-7.168,57.481],[-7.169,57.478],[-7.169,57.474],[-7.175,57.473],[-7.175,57.471],[-7.181,57.47],[-7.184,57.472],[-7.192,57.472],[-7.194,57.474],[-7.193,57.475],[-7.189,57.474],[-7.187,57.478],[-7.189,57.483],[-7.189,57.485],[-7.192,57.485],[-7.194,57.484],[-7.195,57.487],[-7.199,57.487],[-7.202,57.486],[-7.204,57.487],[-7.202,57.489],[-7.205,57.489],[-7.203,57.497],[-7.201,57.498],[-7.197,57.496],[-7.194,57.496],[-7.19,57.494],[-7.183,57.493],[-7.181,57.491],[-7.177,57.491],[-7.18,57.495],[-7.184,57.497],[-7.195,57.499],[-7.196,57.502],[-7.193,57.502],[-7.191,57.5],[-7.187,57.501],[-7.186,57.503],[-7.184,57.502],[-7.179,57.503],[-7.175,57.503],[-7.167,57.501],[-7.166,57.5],[-7.17,57.498],[-7.166,57.496],[-7.164,57.496],[-7.161,57.495],[-7.165,57.494],[-7.163,57.493],[-7.168,57.492],[-7.167,57.49],[-7.171,57.49],[-7.173,57.487],[-7.169,57.488],[-7.167,57.486],[-7.163,57.486],[-7.163,57.487],[-7.16,57.487],[-7.159,57.484]]],[[[-7.145,57.73],[-7.148,57.728],[-7.15,57.728],[-7.153,57.726],[-7.153,57.725],[-7.149,57.719],[-7.152,57.717],[-7.155,57.717],[-7.161,57.72],[-7.164,57.721],[-7.173,57.719],[-7.172,57.717],[-7.167,57.713],[-7.17,57.713],[-7.173,57.712],[-7.177,57.711],[-7.176,57.708],[-7.18,57.706],[-7.178,57.702],[-7.18,57.702],[-7.183,57.702],[-7.185,57.704],[-7.19,57.705],[-7.195,57.704],[-7.197,57.703],[-7.204,57.703],[-7.215,57.704],[-7.218,57.705],[-7.227,57.706],[-7.229,57.708],[-7.226,57.709],[-7.22,57.712],[-7.216,57.715],[-7.214,57.718],[-7.207,57.725],[-7.203,57.73],[-7.202,57.734],[-7.199,57.735],[-7.194,57.736],[-7.187,57.738],[-7.172,57.739],[-7.165,57.739],[-7.16,57.739],[-7.155,57.737],[-7.148,57.734],[-7.145,57.731],[-7.145,57.73]]],[[[-7.143,57.501],[-7.146,57.5],[-7.147,57.499],[-7.149,57.499],[-7.152,57.496],[-7.154,57.496],[-7.157,57.496],[-7.16,57.498],[-7.163,57.498],[-7.164,57.5],[-7.162,57.501],[-7.159,57.503],[-7.154,57.503],[-7.149,57.501],[-7.143,57.501]]],[[[-7.122,57.663],[-7.125,57.66],[-7.128,57.66],[-7.133,57.662],[-7.132,57.66],[-7.133,57.658],[-7.139,57.655],[-7.135,57.654],[-7.137,57.653],[-7.143,57.653],[-7.144,57.654],[-7.142,57.655],[-7.146,57.657],[-7.152,57.658],[-7.148,57.66],[-7.143,57.659],[-7.143,57.661],[-7.138,57.663],[-7.137,57.665],[-7.135,57.664],[-7.129,57.665],[-7.122,57.663]]],[[[-7.12,57.611],[-7.121,57.609],[-7.127,57.61],[-7.131,57.611],[-7.132,57.613],[-7.129,57.614],[-7.13,57.616],[-7.13,57.619],[-7.126,57.619],[-7.124,57.617],[-7.123,57.613],[-7.121,57.613],[-7.12,57.611]]],[[[-7.117,58.078],[-7.118,58.076],[-7.118,58.075],[-7.119,58.072],[-7.121,58.073],[-7.123,58.074],[-7.128,58.073],[-7.13,58.073],[-7.131,58.075],[-7.135,58.075],[-7.136,58.077],[-7.131,58.081],[-7.136,58.083],[-7.139,58.084],[-7.138,58.085],[-7.131,58.087],[-7.123,58.087],[-7.121,58.086],[-7.121,58.085],[-7.119,58.084],[-7.118,58.08],[-7.117,58.078]]],[[[-7.115,57.671],[-7.116,57.67],[-7.12,57.67],[-7.124,57.67],[-7.127,57.671],[-7.127,57.673],[-7.123,57.674],[-7.121,57.677],[-7.118,57.677],[-7.116,57.676],[-7.117,57.673],[-7.115,57.671]]],[[[-7.099,58.009],[-7.101,58.007],[-7.099,58.006],[-7.104,58.004],[-7.116,58.003],[-7.12,58.004],[-7.121,58.007],[-7.125,58.009],[-7.129,58.007],[-7.129,58.009],[-7.132,58.009],[-7.137,58.01],[-7.142,58.011],[-7.147,58.01],[-7.15,58.009],[-7.153,58.009],[-7.155,58.012],[-7.157,58.012],[-7.159,58.014],[-7.158,58.017],[-7.162,58.018],[-7.163,58.019],[-7.166,58.02],[-7.165,58.023],[-7.169,58.024],[-7.169,58.027],[-7.172,58.028],[-7.17,58.03],[-7.165,58.031],[-7.164,58.033],[-7.157,58.034],[-7.154,58.034],[-7.155,58.035],[-7.147,58.036],[-7.145,58.035],[-7.136,58.038],[-7.131,58.039],[-7.13,58.038],[-7.127,58.038],[-7.126,58.036],[-7.127,58.035],[-7.125,58.033],[-7.122,58.034],[-7.111,58.031],[-7.107,58.029],[-7.105,58.024],[-7.105,58.022],[-7.102,58.019],[-7.103,58.015],[-7.102,58.013],[-7.099,58.012],[-7.099,58.009]]],[[[-7.095,57.671],[-7.096,57.67],[-7.1,57.669],[-7.109,57.669],[-7.111,57.669],[-7.11,57.671],[-7.108,57.673],[-7.109,57.676],[-7.107,57.677],[-7.104,57.677],[-7.097,57.673],[-7.095,57.671]]],[[[-7.088,57.662],[-7.089,57.66],[-7.094,57.66],[-7.097,57.661],[-7.101,57.663],[-7.102,57.665],[-7.095,57.668],[-7.094,57.667],[-7.09,57.666],[-7.088,57.664],[-7.088,57.662]]],[[[-7.072,57.76],[-7.074,57.758],[-7.074,57.753],[-7.077,57.752],[-7.079,57.753],[-7.082,57.755],[-7.082,57.756],[-7.086,57.758],[-7.092,57.764],[-7.095,57.764],[-7.098,57.767],[-7.097,57.77],[-7.09,57.77],[-7.086,57.772],[-7.085,57.775],[-7.083,57.776],[-7.081,57.774],[-7.078,57.77],[-7.08,57.768],[-7.078,57.766],[-7.075,57.766],[-7.077,57.764],[-7.075,57.762],[-7.072,57.76]]],[[[-7.064,57.642],[-7.071,57.638],[-7.071,57.636],[-7.075,57.634],[-7.078,57.631],[-7.081,57.628],[-7.081,57.626],[-7.087,57.624],[-7.09,57.623],[-7.09,57.62],[-7.091,57.619],[-7.091,57.617],[-7.095,57.612],[-7.101,57.609],[-7.103,57.609],[-7.106,57.612],[-7.11,57.613],[-7.113,57.616],[-7.114,57.617],[-7.121,57.619],[-7.124,57.621],[-7.123,57.623],[-7.124,57.624],[-7.13,57.625],[-7.131,57.626],[-7.13,57.627],[-7.126,57.627],[-7.121,57.629],[-7.119,57.63],[-7.115,57.631],[-7.114,57.633],[-7.118,57.635],[-7.121,57.635],[-7.121,57.633],[-7.123,57.632],[-7.13,57.631],[-7.131,57.63],[-7.135,57.629],[-7.142,57.629],[-7.147,57.63],[-7.15,57.63],[-7.155,57.631],[-7.158,57.633],[-7.163,57.634],[-7.169,57.634],[-7.17,57.635],[-7.168,57.637],[-7.173,57.639],[-7.17,57.639],[-7.167,57.638],[-7.166,57.64],[-7.163,57.641],[-7.166,57.643],[-7.168,57.644],[-7.17,57.643],[-7.183,57.645],[-7.187,57.646],[-7.188,57.645],[-7.199,57.645],[-7.2,57.643],[-7.192,57.643],[-7.192,57.641],[-7.194,57.642],[-7.201,57.641],[-7.201,57.642],[-7.207,57.642],[-7.207,57.64],[-7.211,57.64],[-7.212,57.641],[-7.216,57.641],[-7.217,57.639],[-7.211,57.639],[-7.211,57.638],[-7.216,57.637],[-7.221,57.635],[-7.219,57.634],[-7.212,57.636],[-7.205,57.636],[-7.2,57.636],[-7.199,57.635],[-7.194,57.635],[-7.19,57.633],[-7.19,57.63],[-7.194,57.63],[-7.195,57.627],[-7.197,57.626],[-7.203,57.622],[-7.203,57.62],[-7.197,57.62],[-7.192,57.621],[-7.188,57.619],[-7.191,57.616],[-7.184,57.616],[-7.181,57.617],[-7.173,57.616],[-7.166,57.616],[-7.156,57.614],[-7.153,57.613],[-7.154,57.61],[-7.162,57.61],[-7.164,57.61],[-7.166,57.612],[-7.168,57.613],[-7.175,57.613],[-7.183,57.612],[-7.181,57.61],[-7.174,57.609],[-7.174,57.61],[-7.169,57.61],[-7.166,57.608],[-7.162,57.609],[-7.16,57.608],[-7.158,57.61],[-7.155,57.609],[-7.155,57.606],[-7.161,57.605],[-7.162,57.602],[-7.16,57.601],[-7.156,57.596],[-7.163,57.598],[-7.165,57.599],[-7.172,57.601],[-7.171,57.602],[-7.173,57.605],[-7.178,57.604],[-7.173,57.6],[-7.17,57.598],[-7.175,57.598],[-7.179,57.598],[-7.179,57.597],[-7.167,57.596],[-7.17,57.595],[-7.184,57.594],[-7.185,57.593],[-7.174,57.592],[-7.17,57.593],[-7.167,57.594],[-7.162,57.595],[-7.158,57.595],[-7.158,57.594],[-7.162,57.594],[-7.165,57.593],[-7.163,57.589],[-7.152,57.588],[-7.149,57.59],[-7.142,57.593],[-7.139,57.593],[-7.135,57.592],[-7.129,57.591],[-7.126,57.591],[-7.124,57.591],[-7.124,57.594],[-7.121,57.594],[-7.118,57.593],[-7.115,57.594],[-7.117,57.595],[-7.116,57.596],[-7.113,57.597],[-7.109,57.596],[-7.109,57.595],[-7.104,57.595],[-7.103,57.594],[-7.104,57.591],[-7.104,57.588],[-7.109,57.586],[-7.111,57.585],[-7.111,57.582],[-7.114,57.58],[-7.113,57.578],[-7.114,57.575],[-7.118,57.571],[-7.119,57.567],[-7.122,57.566],[-7.127,57.568],[-7.125,57.565],[-7.128,57.564],[-7.13,57.562],[-7.139,57.559],[-7.143,57.559],[-7.144,57.559],[-7.154,57.558],[-7.159,57.559],[-7.165,57.558],[-7.167,57.56],[-7.169,57.564],[-7.173,57.566],[-7.176,57.564],[-7.18,57.566],[-7.181,57.564],[-7.177,57.562],[-7.178,57.559],[-7.185,57.558],[-7.187,57.559],[-7.193,57.56],[-7.195,57.559],[-7.2,57.56],[-7.203,57.562],[-7.208,57.562],[-7.212,57.563],[-7.216,57.564],[-7.222,57.565],[-7.224,57.563],[-7.218,57.563],[-7.213,57.562],[-7.209,57.56],[-7.208,57.558],[-7.213,57.558],[-7.213,57.559],[-7.219,57.558],[-7.227,57.557],[-7.23,57.556],[-7.23,57.555],[-7.235,57.554],[-7.239,57.555],[-7.255,57.555],[-7.258,57.555],[-7.261,57.556],[-7.264,57.557],[-7.268,57.561],[-7.256,57.562],[-7.256,57.559],[-7.252,57.558],[-7.249,57.559],[-7.248,57.562],[-7.25,57.562],[-7.25,57.565],[-7.249,57.566],[-7.249,57.568],[-7.248,57.57],[-7.254,57.572],[-7.259,57.572],[-7.26,57.57],[-7.259,57.569],[-7.255,57.566],[-7.264,57.568],[-7.267,57.568],[-7.269,57.565],[-7.272,57.564],[-7.275,57.563],[-7.283,57.564],[-7.287,57.563],[-7.283,57.561],[-7.274,57.561],[-7.272,57.559],[-7.278,57.559],[-7.274,57.558],[-7.275,57.556],[-7.28,57.557],[-7.283,57.56],[-7.287,57.559],[-7.291,57.56],[-7.29,57.562],[-7.293,57.566],[-7.296,57.566],[-7.295,57.564],[-7.293,57.561],[-7.296,57.56],[-7.3,57.56],[-7.302,57.558],[-7.306,57.558],[-7.307,57.557],[-7.304,57.556],[-7.307,57.554],[-7.3,57.553],[-7.302,57.552],[-7.306,57.551],[-7.306,57.55],[-7.304,57.549],[-7.302,57.55],[-7.299,57.55],[-7.299,57.551],[-7.297,57.552],[-7.292,57.551],[-7.287,57.547],[-7.285,57.546],[-7.28,57.546],[-7.279,57.545],[-7.273,57.545],[-7.263,57.544],[-7.262,57.542],[-7.265,57.541],[-7.269,57.542],[-7.274,57.541],[-7.278,57.541],[-7.288,57.539],[-7.292,57.539],[-7.296,57.54],[-7.3,57.54],[-7.298,57.538],[-7.294,57.537],[-7.291,57.537],[-7.282,57.537],[-7.278,57.536],[-7.275,57.533],[-7.275,57.532],[-7.278,57.531],[-7.281,57.53],[-7.288,57.531],[-7.284,57.529],[-7.279,57.527],[-7.272,57.526],[-7.268,57.528],[-7.261,57.528],[-7.258,57.528],[-7.257,57.53],[-7.254,57.53],[-7.257,57.532],[-7.259,57.534],[-7.263,57.536],[-7.264,57.534],[-7.268,57.531],[-7.27,57.533],[-7.271,57.536],[-7.273,57.538],[-7.267,57.538],[-7.263,57.539],[-7.263,57.541],[-7.26,57.541],[-7.258,57.539],[-7.256,57.541],[-7.261,57.544],[-7.267,57.547],[-7.275,57.547],[-7.281,57.548],[-7.284,57.55],[-7.283,57.553],[-7.283,57.554],[-7.263,57.553],[-7.257,57.552],[-7.237,57.551],[-7.231,57.552],[-7.22,57.552],[-7.212,57.553],[-7.205,57.553],[-7.199,57.552],[-7.191,57.552],[-7.188,57.552],[-7.187,57.553],[-7.182,57.553],[-7.179,57.551],[-7.179,57.55],[-7.177,57.549],[-7.173,57.55],[-7.169,57.548],[-7.166,57.549],[-7.163,57.55],[-7.168,57.553],[-7.166,57.555],[-7.16,57.555],[-7.157,57.556],[-7.152,57.557],[-7.146,57.556],[-7.146,57.555],[-7.139,57.555],[-7.136,57.555],[-7.135,57.553],[-7.136,57.551],[-7.133,57.549],[-7.133,57.548],[-7.138,57.547],[-7.14,57.543],[-7.14,57.541],[-7.135,57.541],[-7.133,57.539],[-7.132,57.537],[-7.139,57.532],[-7.14,57.529],[-7.138,57.528],[-7.141,57.526],[-7.147,57.525],[-7.146,57.522],[-7.149,57.521],[-7.149,57.519],[-7.148,57.517],[-7.151,57.515],[-7.158,57.515],[-7.162,57.516],[-7.165,57.515],[-7.169,57.515],[-7.169,57.513],[-7.167,57.512],[-7.162,57.513],[-7.157,57.513],[-7.148,57.514],[-7.145,57.513],[-7.15,57.511],[-7.154,57.512],[-7.156,57.512],[-7.158,57.51],[-7.161,57.51],[-7.166,57.509],[-7.172,57.51],[-7.178,57.51],[-7.182,57.511],[-7.186,57.512],[-7.191,57.514],[-7.199,57.516],[-7.203,57.515],[-7.206,57.515],[-7.213,57.516],[-7.217,57.518],[-7.219,57.521],[-7.226,57.52],[-7.226,57.516],[-7.222,57.517],[-7.221,57.516],[-7.218,57.516],[-7.206,57.513],[-7.2,57.512],[-7.198,57.511],[-7.201,57.509],[-7.203,57.507],[-7.209,57.509],[-7.213,57.508],[-7.215,57.508],[-7.219,57.51],[-7.22,57.508],[-7.226,57.511],[-7.225,57.512],[-7.228,57.515],[-7.232,57.513],[-7.234,57.515],[-7.238,57.515],[-7.239,57.513],[-7.237,57.511],[-7.233,57.512],[-7.229,57.511],[-7.228,57.509],[-7.232,57.508],[-7.236,57.509],[-7.246,57.508],[-7.251,57.508],[-7.258,57.509],[-7.264,57.511],[-7.268,57.514],[-7.27,57.517],[-7.264,57.518],[-7.264,57.52],[-7.269,57.518],[-7.273,57.517],[-7.27,57.514],[-7.277,57.514],[-7.276,57.515],[-7.277,57.516],[-7.28,57.516],[-7.283,57.515],[-7.285,57.516],[-7.286,57.513],[-7.291,57.512],[-7.293,57.513],[-7.298,57.516],[-7.3,57.518],[-7.301,57.52],[-7.302,57.521],[-7.306,57.52],[-7.307,57.518],[-7.303,57.516],[-7.301,57.515],[-7.3,57.513],[-7.305,57.51],[-7.31,57.51],[-7.313,57.509],[-7.317,57.51],[-7.323,57.511],[-7.328,57.514],[-7.328,57.516],[-7.327,57.519],[-7.324,57.519],[-7.325,57.521],[-7.318,57.523],[-7.318,57.525],[-7.324,57.529],[-7.326,57.531],[-7.326,57.535],[-7.327,57.536],[-7.33,57.537],[-7.335,57.536],[-7.337,57.537],[-7.345,57.542],[-7.35,57.546],[-7.355,57.549],[-7.356,57.551],[-7.353,57.552],[-7.35,57.552],[-7.345,57.553],[-7.342,57.553],[-7.341,57.552],[-7.345,57.551],[-7.343,57.55],[-7.337,57.55],[-7.337,57.552],[-7.33,57.553],[-7.328,57.553],[-7.321,57.553],[-7.319,57.553],[-7.315,57.554],[-7.314,57.555],[-7.323,57.556],[-7.325,57.554],[-7.33,57.554],[-7.334,57.553],[-7.338,57.555],[-7.346,57.555],[-7.352,57.555],[-7.358,57.555],[-7.364,57.556],[-7.368,57.559],[-7.372,57.56],[-7.373,57.56],[-7.379,57.563],[-7.385,57.565],[-7.393,57.565],[-7.393,57.567],[-7.4,57.568],[-7.404,57.57],[-7.407,57.572],[-7.41,57.572],[-7.412,57.574],[-7.414,57.575],[-7.415,57.578],[-7.412,57.581],[-7.409,57.581],[-7.41,57.583],[-7.415,57.583],[-7.415,57.58],[-7.417,57.579],[-7.42,57.582],[-7.424,57.583],[-7.426,57.583],[-7.429,57.585],[-7.433,57.586],[-7.442,57.587],[-7.438,57.583],[-7.435,57.582],[-7.431,57.581],[-7.431,57.576],[-7.433,57.576],[-7.435,57.574],[-7.439,57.573],[-7.445,57.569],[-7.447,57.57],[-7.458,57.569],[-7.463,57.567],[-7.465,57.565],[-7.468,57.565],[-7.473,57.567],[-7.478,57.567],[-7.486,57.567],[-7.484,57.57],[-7.485,57.574],[-7.488,57.575],[-7.492,57.577],[-7.491,57.579],[-7.492,57.581],[-7.495,57.582],[-7.492,57.585],[-7.488,57.586],[-7.487,57.587],[-7.487,57.589],[-7.485,57.591],[-7.489,57.592],[-7.491,57.594],[-7.495,57.595],[-7.497,57.593],[-7.496,57.591],[-7.493,57.588],[-7.493,57.586],[-7.497,57.585],[-7.5,57.584],[-7.505,57.584],[-7.507,57.587],[-7.51,57.587],[-7.512,57.589],[-7.516,57.59],[-7.522,57.59],[-7.523,57.589],[-7.525,57.588],[-7.526,57.591],[-7.529,57.592],[-7.532,57.597],[-7.537,57.6],[-7.543,57.601],[-7.545,57.6],[-7.548,57.601],[-7.548,57.605],[-7.544,57.607],[-7.542,57.609],[-7.537,57.611],[-7.533,57.61],[-7.532,57.605],[-7.53,57.603],[-7.525,57.604],[-7.521,57.607],[-7.521,57.609],[-7.524,57.61],[-7.521,57.612],[-7.518,57.612],[-7.516,57.614],[-7.517,57.618],[-7.515,57.619],[-7.518,57.622],[-7.526,57.622],[-7.524,57.625],[-7.515,57.624],[-7.512,57.627],[-7.513,57.628],[-7.51,57.628],[-7.507,57.627],[-7.503,57.628],[-7.502,57.63],[-7.499,57.632],[-7.5,57.637],[-7.503,57.639],[-7.499,57.64],[-7.498,57.641],[-7.497,57.645],[-7.491,57.647],[-7.493,57.65],[-7.489,57.65],[-7.486,57.651],[-7.487,57.654],[-7.491,57.656],[-7.491,57.658],[-7.493,57.659],[-7.491,57.66],[-7.487,57.659],[-7.485,57.66],[-7.482,57.66],[-7.48,57.662],[-7.472,57.662],[-7.47,57.66],[-7.467,57.66],[-7.465,57.659],[-7.459,57.658],[-7.456,57.658],[-7.455,57.66],[-7.454,57.662],[-7.451,57.662],[-7.449,57.663],[-7.447,57.662],[-7.448,57.659],[-7.445,57.657],[-7.437,57.653],[-7.428,57.651],[-7.423,57.653],[-7.421,57.652],[-7.42,57.651],[-7.421,57.648],[-7.416,57.645],[-7.411,57.644],[-7.415,57.642],[-7.414,57.64],[-7.407,57.639],[-7.403,57.64],[-7.396,57.638],[-7.391,57.635],[-7.382,57.633],[-7.381,57.634],[-7.383,57.635],[-7.377,57.639],[-7.376,57.642],[-7.378,57.646],[-7.375,57.647],[-7.375,57.649],[-7.373,57.65],[-7.375,57.652],[-7.374,57.655],[-7.378,57.659],[-7.376,57.66],[-7.375,57.66],[-7.371,57.661],[-7.369,57.661],[-7.362,57.662],[-7.351,57.664],[-7.347,57.666],[-7.342,57.668],[-7.337,57.672],[-7.337,57.673],[-7.338,57.676],[-7.34,57.678],[-7.344,57.677],[-7.346,57.679],[-7.344,57.681],[-7.34,57.68],[-7.336,57.68],[-7.335,57.683],[-7.331,57.684],[-7.329,57.686],[-7.326,57.685],[-7.323,57.687],[-7.321,57.69],[-7.319,57.693],[-7.313,57.694],[-7.311,57.694],[-7.31,57.691],[-7.308,57.689],[-7.308,57.687],[-7.315,57.686],[-7.319,57.685],[-7.322,57.683],[-7.324,57.68],[-7.322,57.676],[-7.319,57.674],[-7.317,57.67],[-7.313,57.666],[-7.317,57.665],[-7.319,57.666],[-7.323,57.667],[-7.329,57.666],[-7.336,57.661],[-7.331,57.657],[-7.329,57.657],[-7.323,57.657],[-7.323,57.658],[-7.314,57.658],[-7.313,57.657],[-7.311,57.655],[-7.315,57.654],[-7.314,57.653],[-7.31,57.653],[-7.309,57.654],[-7.301,57.655],[-7.297,57.654],[-7.293,57.653],[-7.291,57.65],[-7.293,57.65],[-7.292,57.647],[-7.293,57.645],[-7.292,57.642],[-7.29,57.643],[-7.286,57.642],[-7.283,57.645],[-7.286,57.647],[-7.286,57.648],[-7.281,57.647],[-7.281,57.648],[-7.282,57.651],[-7.287,57.652],[-7.288,57.653],[-7.283,57.652],[-7.281,57.654],[-7.278,57.654],[-7.275,57.653],[-7.275,57.651],[-7.272,57.649],[-7.268,57.649],[-7.262,57.65],[-7.262,57.654],[-7.264,57.654],[-7.267,57.656],[-7.258,57.657],[-7.255,57.657],[-7.251,57.656],[-7.247,57.658],[-7.249,57.659],[-7.252,57.658],[-7.256,57.659],[-7.264,57.658],[-7.271,57.66],[-7.274,57.662],[-7.281,57.663],[-7.281,57.666],[-7.275,57.668],[-7.266,57.668],[-7.257,57.669],[-7.252,57.671],[-7.246,57.676],[-7.244,57.682],[-7.245,57.683],[-7.249,57.684],[-7.246,57.685],[-7.245,57.688],[-7.241,57.687],[-7.233,57.687],[-7.227,57.688],[-7.221,57.69],[-7.219,57.691],[-7.215,57.69],[-7.207,57.691],[-7.207,57.692],[-7.205,57.694],[-7.201,57.695],[-7.201,57.696],[-7.196,57.698],[-7.192,57.698],[-7.19,57.698],[-7.186,57.694],[-7.194,57.692],[-7.192,57.689],[-7.185,57.69],[-7.178,57.687],[-7.175,57.686],[-7.176,57.683],[-7.169,57.683],[-7.168,57.682],[-7.176,57.682],[-7.183,57.682],[-7.182,57.681],[-7.172,57.681],[-7.165,57.679],[-7.165,57.677],[-7.161,57.676],[-7.157,57.677],[-7.159,57.672],[-7.159,57.668],[-7.155,57.667],[-7.156,57.666],[-7.161,57.666],[-7.162,57.663],[-7.164,57.663],[-7.169,57.664],[-7.171,57.664],[-7.172,57.661],[-7.166,57.66],[-7.166,57.659],[-7.169,57.658],[-7.175,57.658],[-7.184,57.658],[-7.187,57.659],[-7.19,57.659],[-7.195,57.66],[-7.2,57.659],[-7.204,57.661],[-7.212,57.661],[-7.214,57.657],[-7.209,57.658],[-7.208,57.659],[-7.206,57.659],[-7.206,57.657],[-7.202,57.657],[-7.201,57.658],[-7.196,57.658],[-7.195,57.656],[-7.189,57.655],[-7.188,57.655],[-7.187,57.651],[-7.189,57.648],[-7.182,57.647],[-7.182,57.65],[-7.176,57.648],[-7.175,57.647],[-7.172,57.647],[-7.173,57.649],[-7.171,57.651],[-7.167,57.651],[-7.157,57.65],[-7.157,57.651],[-7.167,57.652],[-7.166,57.654],[-7.162,57.655],[-7.16,57.655],[-7.153,57.653],[-7.153,57.651],[-7.15,57.65],[-7.143,57.651],[-7.14,57.65],[-7.141,57.648],[-7.139,57.645],[-7.136,57.644],[-7.135,57.642],[-7.133,57.642],[-7.131,57.643],[-7.13,57.645],[-7.121,57.647],[-7.119,57.649],[-7.115,57.65],[-7.109,57.651],[-7.103,57.651],[-7.104,57.652],[-7.106,57.653],[-7.108,57.655],[-7.113,57.654],[-7.118,57.657],[-7.12,57.66],[-7.119,57.662],[-7.115,57.663],[-7.109,57.661],[-7.108,57.659],[-7.105,57.658],[-7.099,57.657],[-7.1,57.655],[-7.098,57.653],[-7.095,57.652],[-7.094,57.65],[-7.091,57.649],[-7.085,57.649],[-7.083,57.648],[-7.077,57.648],[-7.077,57.65],[-7.074,57.65],[-7.073,57.648],[-7.066,57.645],[-7.064,57.642]]],[[[-7.059,57.673],[-7.06,57.672],[-7.062,57.67],[-7.065,57.671],[-7.067,57.672],[-7.069,57.673],[-7.071,57.674],[-7.07,57.677],[-7.063,57.676],[-7.059,57.673]]],[[[-7.05,57.725],[-7.052,57.725],[-7.056,57.725],[-7.059,57.726],[-7.06,57.727],[-7.058,57.729],[-7.063,57.732],[-7.065,57.732],[-7.07,57.732],[-7.076,57.735],[-7.081,57.735],[-7.094,57.741],[-7.097,57.745],[-7.095,57.746],[-7.085,57.749],[-7.081,57.746],[-7.081,57.744],[-7.071,57.742],[-7.07,57.74],[-7.062,57.735],[-7.059,57.735],[-7.052,57.73],[-7.052,57.729],[-7.054,57.728],[-7.05,57.726],[-7.05,57.725]]],[[[-7.044,57.652],[-7.045,57.65],[-7.057,57.651],[-7.058,57.653],[-7.061,57.653],[-7.06,57.658],[-7.061,57.659],[-7.06,57.66],[-7.057,57.66],[-7.054,57.66],[-7.056,57.662],[-7.056,57.664],[-7.051,57.663],[-7.047,57.662],[-7.046,57.659],[-7.047,57.656],[-7.044,57.654],[-7.044,57.652]]],[[[-7.027,57.7],[-7.029,57.7],[-7.038,57.7],[-7.04,57.702],[-7.043,57.704],[-7.042,57.706],[-7.037,57.707],[-7.033,57.709],[-7.031,57.707],[-7.033,57.706],[-7.032,57.705],[-7.027,57.702],[-7.027,57.7]]],[[[-6.999,57.709],[-7.001,57.706],[-7.003,57.705],[-7.007,57.706],[-7.006,57.707],[-7.012,57.711],[-7.016,57.712],[-7.02,57.712],[-7.02,57.714],[-7.018,57.715],[-7.007,57.714],[-7.003,57.712],[-7.002,57.71],[-6.999,57.709]]],[[[-6.986,57.903],[-6.989,57.901],[-6.994,57.897],[-6.993,57.896],[-6.994,57.895],[-6.997,57.894],[-6.998,57.893],[-6.997,57.889],[-7.002,57.886],[-7.007,57.886],[-7.01,57.885],[-7.014,57.882],[-7.015,57.881],[-7.02,57.882],[-7.021,57.884],[-7.02,57.886],[-7.025,57.888],[-7.03,57.888],[-7.037,57.891],[-7.037,57.892],[-7.044,57.895],[-7.05,57.893],[-7.051,57.891],[-7.049,57.89],[-7.057,57.883],[-7.061,57.883],[-7.068,57.879],[-7.068,57.88],[-7.073,57.88],[-7.073,57.879],[-7.076,57.876],[-7.078,57.877],[-7.08,57.884],[-7.082,57.886],[-7.079,57.889],[-7.083,57.89],[-7.089,57.889],[-7.09,57.89],[-7.088,57.892],[-7.087,57.894],[-7.084,57.896],[-7.079,57.895],[-7.081,57.893],[-7.076,57.893],[-7.075,57.895],[-7.07,57.895],[-7.063,57.896],[-7.063,57.897],[-7.059,57.897],[-7.056,57.899],[-7.054,57.899],[-7.051,57.897],[-7.048,57.898],[-7.046,57.901],[-7.047,57.903],[-7.046,57.907],[-7.043,57.909],[-7.042,57.912],[-7.04,57.914],[-7.036,57.913],[-7.033,57.914],[-7.031,57.918],[-7.032,57.919],[-7.028,57.919],[-7.025,57.918],[-7.018,57.918],[-7.012,57.92],[-7.009,57.922],[-7.007,57.922],[-7.005,57.922],[-6.998,57.921],[-6.993,57.919],[-6.992,57.914],[-6.99,57.911],[-6.986,57.903]]],[[[-6.973,57.944],[-6.978,57.942],[-6.985,57.943],[-6.982,57.946],[-6.979,57.947],[-6.974,57.946],[-6.973,57.944]]],[[[-6.951,57.937],[-6.955,57.935],[-6.957,57.935],[-6.957,57.933],[-6.961,57.934],[-6.962,57.933],[-6.967,57.934],[-6.967,57.936],[-6.971,57.94],[-6.973,57.94],[-6.974,57.941],[-6.971,57.943],[-6.97,57.942],[-6.964,57.942],[-6.963,57.94],[-6.96,57.94],[-6.957,57.936],[-6.951,57.937]]],[[[-6.938,58.242],[-6.942,58.241],[-6.945,58.242],[-6.947,58.241],[-6.949,58.242],[-6.947,58.244],[-6.943,58.244],[-6.94,58.244],[-6.938,58.242]]],[[[-6.928,58.229],[-6.929,58.229],[-6.936,58.228],[-6.942,58.23],[-6.945,58.234],[-6.95,58.236],[-6.951,58.239],[-6.949,58.241],[-6.945,58.239],[-6.936,58.242],[-6.935,58.239],[-6.932,58.236],[-6.933,58.235],[-6.932,58.231],[-6.928,58.229]]],[[[-6.928,58.261],[-6.931,58.26],[-6.932,58.262],[-6.929,58.262],[-6.928,58.261]]],[[[-6.921,58.19],[-6.925,58.19],[-6.928,58.192],[-6.93,58.192],[-6.934,58.193],[-6.935,58.195],[-6.932,58.197],[-6.931,58.195],[-6.928,58.196],[-6.928,58.199],[-6.925,58.198],[-6.922,58.196],[-6.923,58.193],[-6.921,58.19]]],[[[-6.915,58.284],[-6.923,58.283],[-6.925,58.283],[-6.925,58.285],[-6.921,58.286],[-6.917,58.286],[-6.915,58.284]]],[[[-6.909,58.228],[-6.911,58.224],[-6.915,58.223],[-6.918,58.222],[-6.919,58.224],[-6.922,58.224],[-6.923,58.226],[-6.919,58.228],[-6.922,58.228],[-6.922,58.231],[-6.918,58.23],[-6.916,58.232],[-6.914,58.23],[-6.911,58.231],[-6.909,58.228]]],[[[-6.907,58.277],[-6.909,58.276],[-6.914,58.276],[-6.916,58.278],[-6.914,58.279],[-6.912,58.278],[-6.907,58.277]]],[[[-6.904,58.267],[-6.905,58.266],[-6.907,58.265],[-6.912,58.267],[-6.913,58.269],[-6.912,58.27],[-6.908,58.27],[-6.904,58.267]]],[[[-6.893,58.194],[-6.901,58.194],[-6.903,58.195],[-6.904,58.197],[-6.903,58.199],[-6.9,58.199],[-6.898,58.2],[-6.894,58.196],[-6.893,58.194]]],[[[-6.886,58.186],[-6.888,58.183],[-6.889,58.184],[-6.888,58.186],[-6.886,58.186]]],[[[-6.884,57.915],[-6.887,57.916],[-6.889,57.915],[-6.893,57.916],[-6.895,57.918],[-6.89,57.918],[-6.885,57.917],[-6.884,57.915]]],[[[-6.884,58.194],[-6.887,58.193],[-6.888,58.196],[-6.885,58.196],[-6.884,58.194]]],[[[-6.877,58.209],[-6.879,58.207],[-6.882,58.207],[-6.888,58.204],[-6.894,58.206],[-6.897,58.209],[-6.895,58.213],[-6.898,58.216],[-6.896,58.218],[-6.893,58.218],[-6.886,58.211],[-6.886,58.213],[-6.88,58.21],[-6.88,58.209],[-6.877,58.209]]],[[[-6.876,58.217],[-6.878,58.217],[-6.88,58.219],[-6.884,58.219],[-6.883,58.221],[-6.881,58.221],[-6.876,58.217]]],[[[-6.873,58.279],[-6.877,58.277],[-6.879,58.277],[-6.88,58.279],[-6.878,58.28],[-6.874,58.281],[-6.873,58.279]]],[[[-6.868,58.271],[-6.871,58.27],[-6.871,58.271],[-6.874,58.273],[-6.871,58.274],[-6.869,58.274],[-6.868,58.271]]],[[[-6.86,58.197],[-6.863,58.196],[-6.864,58.196],[-6.864,58.198],[-6.86,58.197]]],[[[-6.858,58.263],[-6.859,58.26],[-6.869,58.261],[-6.87,58.262],[-6.876,58.26],[-6.879,58.26],[-6.882,58.261],[-6.884,58.264],[-6.884,58.265],[-6.887,58.265],[-6.888,58.266],[-6.886,58.268],[-6.89,58.271],[-6.889,58.272],[-6.883,58.27],[-6.881,58.27],[-6.877,58.269],[-6.876,58.27],[-6.871,58.268],[-6.869,58.266],[-6.864,58.266],[-6.859,58.266],[-6.858,58.263]]],[[[-6.857,57.791],[-6.859,57.79],[-6.864,57.79],[-6.867,57.792],[-6.865,57.793],[-6.861,57.793],[-6.857,57.791]]],[[[-6.813,57.808],[-6.814,57.805],[-6.819,57.806],[-6.821,57.805],[-6.825,57.807],[-6.826,57.809],[-6.829,57.811],[-6.829,57.813],[-6.823,57.812],[-6.821,57.81],[-6.821,57.808],[-6.819,57.807],[-6.818,57.808],[-6.82,57.811],[-6.813,57.808]]],[[[-6.787,58.223],[-6.79,58.223],[-6.793,58.223],[-6.795,58.226],[-6.795,58.228],[-6.792,58.228],[-6.791,58.226],[-6.788,58.225],[-6.787,58.223]]],[[[-6.782,58.204],[-6.783,58.201],[-6.788,58.202],[-6.791,58.201],[-6.796,58.202],[-6.801,58.205],[-6.802,58.207],[-6.807,58.207],[-6.812,58.208],[-6.815,58.207],[-6.821,58.206],[-6.824,58.207],[-6.828,58.205],[-6.838,58.205],[-6.847,58.206],[-6.854,58.206],[-6.856,58.206],[-6.859,58.206],[-6.862,58.207],[-6.868,58.208],[-6.869,58.211],[-6.873,58.213],[-6.872,58.213],[-6.875,58.216],[-6.876,58.221],[-6.871,58.219],[-6.864,58.219],[-6.864,58.221],[-6.86,58.221],[-6.859,58.222],[-6.861,58.225],[-6.862,58.229],[-6.864,58.232],[-6.865,58.235],[-6.862,58.236],[-6.863,58.238],[-6.866,58.239],[-6.87,58.242],[-6.873,58.243],[-6.871,58.239],[-6.869,58.234],[-6.866,58.232],[-6.864,58.229],[-6.862,58.227],[-6.861,58.224],[-6.864,58.223],[-6.867,58.224],[-6.866,58.227],[-6.869,58.228],[-6.873,58.228],[-6.877,58.23],[-6.877,58.231],[-6.879,58.235],[-6.878,58.236],[-6.875,58.236],[-6.875,58.238],[-6.88,58.241],[-6.884,58.239],[-6.888,58.241],[-6.89,58.245],[-6.89,58.246],[-6.886,58.248],[-6.889,58.249],[-6.889,58.25],[-6.893,58.253],[-6.892,58.255],[-6.894,58.255],[-6.893,58.258],[-6.891,58.26],[-6.888,58.261],[-6.885,58.258],[-6.881,58.258],[-6.881,58.259],[-6.875,58.259],[-6.87,58.258],[-6.867,58.259],[-6.862,58.258],[-6.859,58.258],[-6.856,58.257],[-6.853,58.258],[-6.85,58.258],[-6.844,58.254],[-6.842,58.25],[-6.843,58.248],[-6.842,58.245],[-6.845,58.243],[-6.84,58.238],[-6.835,58.239],[-6.832,58.238],[-6.833,58.237],[-6.828,58.232],[-6.827,58.231],[-6.824,58.232],[-6.821,58.229],[-6.818,58.23],[-6.818,58.231],[-6.822,58.234],[-6.823,58.238],[-6.821,58.24],[-6.817,58.241],[-6.817,58.239],[-6.818,58.238],[-6.812,58.235],[-6.813,58.232],[-6.808,58.232],[-6.807,58.23],[-6.804,58.23],[-6.801,58.227],[-6.797,58.225],[-6.796,58.224],[-6.798,58.223],[-6.798,58.222],[-6.792,58.222],[-6.79,58.223],[-6.785,58.222],[-6.785,58.219],[-6.782,58.216],[-6.782,58.214],[-6.784,58.212],[-6.783,58.211],[-6.786,58.209],[-6.784,58.207],[-6.784,58.205],[-6.782,58.204]]],[[[-6.766,58.212],[-6.771,58.211],[-6.776,58.213],[-6.776,58.217],[-6.773,58.218],[-6.769,58.217],[-6.769,58.215],[-6.767,58.214],[-6.766,58.212]]],[[[-6.764,58.195],[-6.766,58.193],[-6.771,58.195],[-6.776,58.198],[-6.778,58.202],[-6.778,58.204],[-6.774,58.207],[-6.772,58.207],[-6.768,58.205],[-6.766,58.203],[-6.764,58.195]]],[[[-6.739,57.874],[-6.74,57.874],[-6.745,57.874],[-6.745,57.872],[-6.749,57.872],[-6.751,57.874],[-6.756,57.876],[-6.756,57.878],[-6.752,57.88],[-6.746,57.879],[-6.744,57.877],[-6.74,57.876],[-6.739,57.874]]],[[[-6.738,57.827],[-6.741,57.827],[-6.744,57.824],[-6.748,57.824],[-6.75,57.823],[-6.753,57.823],[-6.753,57.826],[-6.754,57.831],[-6.759,57.83],[-6.76,57.828],[-6.759,57.825],[-6.761,57.822],[-6.764,57.823],[-6.768,57.825],[-6.768,57.828],[-6.766,57.83],[-6.766,57.833],[-6.77,57.832],[-6.769,57.83],[-6.772,57.826],[-6.775,57.826],[-6.787,57.83],[-6.788,57.832],[-6.79,57.831],[-6.794,57.835],[-6.799,57.834],[-6.799,57.831],[-6.791,57.826],[-6.791,57.824],[-6.793,57.823],[-6.799,57.823],[-6.796,57.82],[-6.79,57.819],[-6.787,57.813],[-6.791,57.809],[-6.789,57.806],[-6.789,57.805],[-6.794,57.806],[-6.796,57.807],[-6.8,57.81],[-6.803,57.812],[-6.804,57.814],[-6.81,57.815],[-6.812,57.814],[-6.809,57.812],[-6.812,57.81],[-6.816,57.812],[-6.82,57.813],[-6.823,57.813],[-6.828,57.816],[-6.834,57.819],[-6.838,57.825],[-6.843,57.83],[-6.843,57.832],[-6.85,57.829],[-6.855,57.83],[-6.85,57.827],[-6.848,57.824],[-6.838,57.818],[-6.837,57.815],[-6.843,57.813],[-6.842,57.812],[-6.842,57.809],[-6.844,57.807],[-6.846,57.807],[-6.846,57.805],[-6.849,57.804],[-6.851,57.806],[-6.851,57.809],[-6.854,57.812],[-6.854,57.814],[-6.859,57.813],[-6.857,57.811],[-6.858,57.808],[-6.86,57.808],[-6.861,57.812],[-6.862,57.811],[-6.863,57.809],[-6.861,57.806],[-6.863,57.804],[-6.858,57.799],[-6.862,57.798],[-6.863,57.799],[-6.869,57.799],[-6.868,57.797],[-6.863,57.798],[-6.858,57.796],[-6.859,57.794],[-6.864,57.795],[-6.868,57.794],[-6.871,57.796],[-6.879,57.798],[-6.88,57.796],[-6.884,57.796],[-6.88,57.793],[-6.883,57.793],[-6.885,57.794],[-6.887,57.793],[-6.882,57.786],[-6.884,57.785],[-6.88,57.784],[-6.879,57.782],[-6.874,57.778],[-6.873,57.776],[-6.875,57.774],[-6.885,57.773],[-6.891,57.775],[-6.896,57.774],[-6.898,57.774],[-6.9,57.776],[-6.898,57.777],[-6.891,57.777],[-6.892,57.779],[-6.902,57.779],[-6.905,57.781],[-6.907,57.78],[-6.905,57.777],[-6.906,57.775],[-6.907,57.775],[-6.915,57.775],[-6.922,57.776],[-6.917,57.774],[-6.91,57.772],[-6.908,57.771],[-6.912,57.77],[-6.907,57.769],[-6.911,57.767],[-6.908,57.767],[-6.901,57.767],[-6.901,57.766],[-6.902,57.764],[-6.904,57.764],[-6.911,57.761],[-6.915,57.761],[-6.919,57.76],[-6.922,57.76],[-6.925,57.759],[-6.937,57.758],[-6.937,57.756],[-6.942,57.755],[-6.942,57.753],[-6.941,57.749],[-6.943,57.748],[-6.942,57.745],[-6.944,57.742],[-6.947,57.74],[-6.949,57.741],[-6.954,57.74],[-6.955,57.737],[-6.967,57.738],[-6.969,57.742],[-6.974,57.742],[-6.975,57.739],[-6.974,57.736],[-6.968,57.73],[-6.97,57.728],[-6.976,57.729],[-6.978,57.73],[-6.979,57.733],[-6.979,57.735],[-6.984,57.738],[-6.986,57.74],[-6.986,57.742],[-6.993,57.745],[-6.996,57.746],[-6.999,57.749],[-7.005,57.754],[-7.008,57.755],[-7.009,57.754],[-7.013,57.753],[-7.014,57.756],[-7.011,57.756],[-7.016,57.762],[-7.023,57.765],[-7.028,57.766],[-7.028,57.769],[-7.027,57.77],[-7.023,57.769],[-7.019,57.769],[-7.012,57.77],[-7.013,57.77],[-7.017,57.77],[-7.02,57.77],[-7.031,57.774],[-7.033,57.774],[-7.03,57.77],[-7.029,57.769],[-7.034,57.769],[-7.036,57.77],[-7.041,57.773],[-7.048,57.777],[-7.052,57.78],[-7.055,57.779],[-7.057,57.782],[-7.065,57.786],[-7.068,57.789],[-7.072,57.791],[-7.076,57.794],[-7.077,57.797],[-7.076,57.8],[-7.076,57.802],[-7.08,57.803],[-7.083,57.802],[-7.084,57.806],[-7.086,57.809],[-7.09,57.809],[-7.094,57.809],[-7.1,57.81],[-7.104,57.809],[-7.107,57.812],[-7.112,57.813],[-7.115,57.815],[-7.12,57.817],[-7.124,57.82],[-7.126,57.824],[-7.127,57.826],[-7.129,57.827],[-7.127,57.828],[-7.126,57.83],[-7.127,57.834],[-7.131,57.836],[-7.131,57.838],[-7.127,57.839],[-7.124,57.838],[-7.122,57.839],[-7.117,57.839],[-7.115,57.839],[-7.111,57.841],[-7.107,57.842],[-7.101,57.84],[-7.099,57.838],[-7.094,57.837],[-7.083,57.833],[-7.083,57.831],[-7.08,57.829],[-7.08,57.827],[-7.079,57.821],[-7.076,57.822],[-7.077,57.824],[-7.076,57.825],[-7.072,57.824],[-7.068,57.823],[-7.06,57.824],[-7.048,57.827],[-7.04,57.831],[-7.038,57.834],[-7.03,57.835],[-7.025,57.835],[-7.025,57.836],[-7.022,57.837],[-7.015,57.843],[-7.016,57.845],[-7.006,57.846],[-7.005,57.847],[-7.005,57.851],[-7.002,57.855],[-7,57.859],[-6.994,57.86],[-6.994,57.864],[-6.999,57.866],[-6.999,57.867],[-6.995,57.869],[-6.991,57.869],[-6.986,57.869],[-6.983,57.865],[-6.979,57.865],[-6.974,57.865],[-6.971,57.867],[-6.963,57.869],[-6.962,57.87],[-6.959,57.87],[-6.957,57.874],[-6.951,57.873],[-6.952,57.872],[-6.948,57.868],[-6.951,57.867],[-6.95,57.866],[-6.942,57.868],[-6.939,57.87],[-6.939,57.872],[-6.936,57.872],[-6.929,57.869],[-6.922,57.867],[-6.921,57.866],[-6.916,57.867],[-6.914,57.868],[-6.909,57.869],[-6.907,57.87],[-6.913,57.873],[-6.919,57.873],[-6.922,57.875],[-6.926,57.876],[-6.935,57.879],[-6.941,57.882],[-6.944,57.882],[-6.947,57.881],[-6.953,57.88],[-6.956,57.881],[-6.961,57.885],[-6.963,57.889],[-6.963,57.89],[-6.961,57.892],[-6.95,57.895],[-6.952,57.9],[-6.952,57.903],[-6.95,57.905],[-6.944,57.904],[-6.941,57.903],[-6.937,57.904],[-6.931,57.906],[-6.928,57.908],[-6.924,57.91],[-6.918,57.911],[-6.913,57.911],[-6.909,57.91],[-6.902,57.909],[-6.9,57.907],[-6.898,57.907],[-6.888,57.907],[-6.881,57.906],[-6.878,57.904],[-6.875,57.901],[-6.87,57.901],[-6.867,57.903],[-6.863,57.903],[-6.852,57.9],[-6.85,57.902],[-6.853,57.903],[-6.853,57.905],[-6.849,57.905],[-6.847,57.906],[-6.838,57.904],[-6.828,57.902],[-6.82,57.901],[-6.819,57.9],[-6.798,57.895],[-6.795,57.894],[-6.794,57.891],[-6.792,57.89],[-6.79,57.886],[-6.789,57.885],[-6.788,57.881],[-6.794,57.88],[-6.8,57.883],[-6.802,57.886],[-6.806,57.884],[-6.811,57.882],[-6.815,57.882],[-6.814,57.88],[-6.812,57.88],[-6.809,57.877],[-6.81,57.876],[-6.806,57.872],[-6.805,57.868],[-6.801,57.868],[-6.798,57.869],[-6.796,57.867],[-6.791,57.865],[-6.79,57.866],[-6.794,57.869],[-6.79,57.871],[-6.785,57.871],[-6.78,57.87],[-6.774,57.867],[-6.773,57.865],[-6.77,57.865],[-6.769,57.862],[-6.766,57.86],[-6.766,57.859],[-6.763,57.857],[-6.765,57.856],[-6.767,57.856],[-6.768,57.854],[-6.763,57.852],[-6.762,57.85],[-6.758,57.848],[-6.757,57.845],[-6.757,57.843],[-6.752,57.842],[-6.748,57.844],[-6.746,57.845],[-6.743,57.843],[-6.743,57.84],[-6.745,57.839],[-6.74,57.835],[-6.739,57.83],[-6.738,57.827]]],[[[-6.712,57.994],[-6.713,57.992],[-6.716,57.989],[-6.717,57.988],[-6.719,57.986],[-6.722,57.987],[-6.725,57.986],[-6.728,57.989],[-6.729,57.99],[-6.732,57.993],[-6.735,57.995],[-6.738,57.997],[-6.741,58.001],[-6.74,58.004],[-6.737,58.006],[-6.731,58.007],[-6.726,58.008],[-6.724,58.008],[-6.72,58.005],[-6.718,58.002],[-6.714,57.998],[-6.712,57.994]]],[[[-6.643,57.858],[-6.643,57.856],[-6.646,57.855],[-6.646,57.857],[-6.649,57.857],[-6.651,57.855],[-6.659,57.853],[-6.659,57.851],[-6.664,57.852],[-6.666,57.851],[-6.673,57.851],[-6.672,57.853],[-6.671,57.856],[-6.674,57.857],[-6.673,57.86],[-6.677,57.859],[-6.683,57.86],[-6.682,57.858],[-6.677,57.856],[-6.676,57.855],[-6.68,57.854],[-6.683,57.855],[-6.688,57.857],[-6.69,57.861],[-6.685,57.862],[-6.686,57.864],[-6.69,57.864],[-6.693,57.866],[-6.696,57.869],[-6.698,57.867],[-6.698,57.865],[-6.702,57.861],[-6.703,57.861],[-6.707,57.863],[-6.709,57.865],[-6.708,57.866],[-6.705,57.866],[-6.704,57.868],[-6.707,57.869],[-6.707,57.871],[-6.708,57.872],[-6.714,57.875],[-6.712,57.876],[-6.705,57.875],[-6.702,57.874],[-6.698,57.875],[-6.701,57.877],[-6.707,57.878],[-6.705,57.88],[-6.696,57.88],[-6.691,57.877],[-6.688,57.877],[-6.681,57.877],[-6.674,57.875],[-6.67,57.874],[-6.671,57.873],[-6.664,57.874],[-6.661,57.874],[-6.654,57.871],[-6.652,57.869],[-6.655,57.868],[-6.649,57.867],[-6.649,57.864],[-6.647,57.863],[-6.646,57.861],[-6.643,57.858]]],[[[-6.626,57.913],[-6.627,57.912],[-6.63,57.913],[-6.627,57.914],[-6.626,57.913]]],[[[-6.619,57.907],[-6.621,57.907],[-6.623,57.908],[-6.622,57.91],[-6.619,57.907]]],[[[-6.595,57.925],[-6.597,57.924],[-6.6,57.925],[-6.599,57.927],[-6.595,57.925]]],[[[-6.426,58.109],[-6.43,58.107],[-6.43,58.105],[-6.433,58.102],[-6.438,58.101],[-6.444,58.098],[-6.446,58.1],[-6.448,58.099],[-6.45,58.099],[-6.453,58.102],[-6.451,58.104],[-6.441,58.108],[-6.439,58.109],[-6.436,58.109],[-6.433,58.11],[-6.431,58.108],[-6.428,58.111],[-6.426,58.109]]],[[[-6.412,57.998],[-6.42,57.997],[-6.423,57.999],[-6.427,57.999],[-6.43,57.999],[-6.432,57.998],[-6.437,57.999],[-6.44,57.997],[-6.441,57.999],[-6.444,57.998],[-6.446,58],[-6.451,58.001],[-6.447,58.002],[-6.447,58.004],[-6.444,58.005],[-6.436,58.004],[-6.431,58.005],[-6.428,58.004],[-6.42,58.006],[-6.418,58.003],[-6.415,58.001],[-6.412,57.998]]],[[[-6.349,57.888],[-6.35,57.885],[-6.353,57.881],[-6.356,57.881],[-6.357,57.882],[-6.358,57.886],[-6.36,57.888],[-6.361,57.892],[-6.363,57.894],[-6.371,57.897],[-6.373,57.9],[-6.376,57.899],[-6.382,57.9],[-6.384,57.903],[-6.381,57.904],[-6.376,57.904],[-6.372,57.903],[-6.367,57.904],[-6.366,57.905],[-6.362,57.906],[-6.36,57.906],[-6.357,57.904],[-6.354,57.904],[-6.354,57.903],[-6.357,57.902],[-6.359,57.901],[-6.359,57.896],[-6.353,57.896],[-6.35,57.894],[-6.35,57.893],[-6.349,57.888]]],[[[-6.325,57.899],[-6.339,57.902],[-6.34,57.9],[-6.348,57.901],[-6.348,57.902],[-6.346,57.904],[-6.343,57.904],[-6.341,57.904],[-6.34,57.908],[-6.337,57.909],[-6.336,57.906],[-6.334,57.902],[-6.33,57.901],[-6.327,57.9],[-6.325,57.899]]],[[[-6.26,58.287],[-6.263,58.286],[-6.267,58.287],[-6.263,58.288],[-6.26,58.287]]],[[[-6.258,58.284],[-6.263,58.283],[-6.264,58.284],[-6.258,58.284]]],[[[-6.2,58.19],[-6.203,58.189],[-6.204,58.191],[-6.2,58.19]]],[[[-6.135,58.259],[-6.137,58.258],[-6.136,58.255],[-6.139,58.254],[-6.143,58.25],[-6.146,58.251],[-6.15,58.25],[-6.153,58.244],[-6.15,58.243],[-6.147,58.243],[-6.147,58.241],[-6.152,58.24],[-6.153,58.237],[-6.157,58.237],[-6.158,58.236],[-6.156,58.233],[-6.161,58.231],[-6.164,58.23],[-6.164,58.227],[-6.16,58.226],[-6.156,58.222],[-6.16,58.22],[-6.162,58.22],[-6.164,58.219],[-6.164,58.217],[-6.16,58.216],[-6.165,58.214],[-6.166,58.211],[-6.171,58.21],[-6.174,58.207],[-6.177,58.206],[-6.179,58.204],[-6.181,58.205],[-6.187,58.204],[-6.188,58.203],[-6.194,58.202],[-6.195,58.2],[-6.198,58.199],[-6.201,58.2],[-6.204,58.2],[-6.209,58.197],[-6.208,58.196],[-6.21,58.195],[-6.207,58.19],[-6.209,58.189],[-6.213,58.189],[-6.213,58.187],[-6.217,58.186],[-6.222,58.185],[-6.224,58.184],[-6.228,58.183],[-6.229,58.182],[-6.235,58.182],[-6.237,58.181],[-6.243,58.181],[-6.244,58.181],[-6.248,58.18],[-6.25,58.181],[-6.255,58.18],[-6.256,58.183],[-6.259,58.184],[-6.257,58.186],[-6.259,58.187],[-6.265,58.189],[-6.27,58.189],[-6.275,58.191],[-6.278,58.194],[-6.277,58.198],[-6.281,58.198],[-6.284,58.199],[-6.285,58.203],[-6.287,58.203],[-6.287,58.205],[-6.294,58.206],[-6.306,58.206],[-6.309,58.205],[-6.309,58.203],[-6.312,58.202],[-6.315,58.203],[-6.317,58.202],[-6.315,58.2],[-6.318,58.199],[-6.318,58.201],[-6.324,58.199],[-6.326,58.198],[-6.325,58.196],[-6.319,58.195],[-6.323,58.19],[-6.324,58.191],[-6.327,58.193],[-6.327,58.195],[-6.329,58.196],[-6.332,58.195],[-6.331,58.194],[-6.332,58.193],[-6.332,58.191],[-6.337,58.191],[-6.339,58.187],[-6.342,58.188],[-6.345,58.187],[-6.346,58.188],[-6.353,58.189],[-6.355,58.19],[-6.357,58.191],[-6.356,58.194],[-6.357,58.196],[-6.363,58.199],[-6.362,58.201],[-6.36,58.203],[-6.362,58.204],[-6.366,58.204],[-6.367,58.203],[-6.369,58.202],[-6.369,58.2],[-6.374,58.202],[-6.379,58.202],[-6.383,58.202],[-6.385,58.204],[-6.39,58.206],[-6.394,58.209],[-6.396,58.208],[-6.397,58.206],[-6.394,58.206],[-6.393,58.204],[-6.394,58.203],[-6.392,58.201],[-6.392,58.199],[-6.389,58.196],[-6.388,58.195],[-6.385,58.193],[-6.386,58.191],[-6.385,58.19],[-6.38,58.188],[-6.377,58.191],[-6.378,58.193],[-6.374,58.194],[-6.372,58.193],[-6.369,58.193],[-6.371,58.189],[-6.373,58.187],[-6.377,58.186],[-6.38,58.185],[-6.381,58.182],[-6.383,58.18],[-6.38,58.179],[-6.377,58.176],[-6.377,58.175],[-6.381,58.174],[-6.377,58.172],[-6.375,58.169],[-6.374,58.168],[-6.373,58.164],[-6.371,58.163],[-6.368,58.16],[-6.369,58.158],[-6.367,58.154],[-6.37,58.15],[-6.374,58.149],[-6.375,58.148],[-6.377,58.148],[-6.38,58.147],[-6.382,58.147],[-6.385,58.146],[-6.39,58.146],[-6.391,58.147],[-6.394,58.145],[-6.399,58.144],[-6.409,58.142],[-6.413,58.142],[-6.414,58.144],[-6.417,58.144],[-6.42,58.147],[-6.422,58.145],[-6.418,58.145],[-6.416,58.143],[-6.418,58.142],[-6.417,58.14],[-6.419,58.139],[-6.418,58.137],[-6.415,58.137],[-6.408,58.141],[-6.404,58.141],[-6.396,58.144],[-6.393,58.144],[-6.388,58.144],[-6.384,58.143],[-6.383,58.144],[-6.378,58.144],[-6.372,58.143],[-6.369,58.143],[-6.367,58.14],[-6.369,58.138],[-6.368,58.137],[-6.371,58.134],[-6.37,58.132],[-6.375,58.131],[-6.379,58.131],[-6.381,58.129],[-6.384,58.129],[-6.389,58.129],[-6.394,58.131],[-6.397,58.134],[-6.402,58.135],[-6.407,58.13],[-6.408,58.131],[-6.416,58.132],[-6.416,58.13],[-6.418,58.129],[-6.424,58.129],[-6.431,58.13],[-6.434,58.132],[-6.438,58.132],[-6.445,58.132],[-6.449,58.133],[-6.457,58.134],[-6.461,58.136],[-6.464,58.138],[-6.466,58.138],[-6.471,58.138],[-6.475,58.139],[-6.476,58.139],[-6.485,58.14],[-6.488,58.139],[-6.486,58.138],[-6.48,58.137],[-6.477,58.136],[-6.475,58.136],[-6.47,58.136],[-6.467,58.135],[-6.467,58.133],[-6.465,58.132],[-6.458,58.131],[-6.456,58.13],[-6.454,58.128],[-6.452,58.128],[-6.45,58.126],[-6.447,58.126],[-6.452,58.129],[-6.449,58.131],[-6.447,58.131],[-6.445,58.129],[-6.444,58.128],[-6.44,58.129],[-6.438,58.13],[-6.433,58.129],[-6.432,58.126],[-6.43,58.127],[-6.428,58.125],[-6.429,58.122],[-6.426,58.123],[-6.427,58.125],[-6.423,58.125],[-6.423,58.123],[-6.426,58.123],[-6.426,58.121],[-6.431,58.12],[-6.434,58.12],[-6.436,58.121],[-6.441,58.118],[-6.443,58.118],[-6.444,58.115],[-6.447,58.115],[-6.449,58.114],[-6.451,58.114],[-6.454,58.112],[-6.455,58.111],[-6.454,58.109],[-6.457,58.106],[-6.462,58.104],[-6.47,58.103],[-6.472,58.104],[-6.478,58.104],[-6.483,58.102],[-6.487,58.103],[-6.487,58.1],[-6.493,58.099],[-6.497,58.101],[-6.499,58.1],[-6.503,58.1],[-6.504,58.102],[-6.509,58.103],[-6.51,58.1],[-6.508,58.1],[-6.51,58.098],[-6.515,58.097],[-6.518,58.096],[-6.522,58.095],[-6.526,58.096],[-6.527,58.098],[-6.53,58.098],[-6.53,58.095],[-6.536,58.094],[-6.542,58.093],[-6.546,58.092],[-6.55,58.093],[-6.554,58.092],[-6.555,58.093],[-6.559,58.093],[-6.563,58.092],[-6.571,58.091],[-6.575,58.091],[-6.579,58.091],[-6.583,58.09],[-6.586,58.09],[-6.591,58.088],[-6.597,58.088],[-6.604,58.088],[-6.607,58.087],[-6.617,58.087],[-6.621,58.086],[-6.618,58.085],[-6.609,58.086],[-6.606,58.086],[-6.601,58.087],[-6.6,58.087],[-6.588,58.088],[-6.576,58.088],[-6.575,58.087],[-6.57,58.086],[-6.569,58.084],[-6.567,58.084],[-6.564,58.088],[-6.562,58.088],[-6.553,58.088],[-6.551,58.088],[-6.546,58.089],[-6.544,58.088],[-6.541,58.089],[-6.539,58.087],[-6.537,58.088],[-6.534,58.087],[-6.531,58.089],[-6.526,58.088],[-6.519,58.089],[-6.518,58.091],[-6.512,58.093],[-6.51,58.094],[-6.508,58.094],[-6.5,58.093],[-6.496,58.093],[-6.487,58.095],[-6.483,58.094],[-6.481,58.094],[-6.478,58.092],[-6.475,58.094],[-6.474,58.096],[-6.463,58.097],[-6.462,58.096],[-6.452,58.095],[-6.452,58.096],[-6.447,58.096],[-6.443,58.096],[-6.442,58.094],[-6.436,58.093],[-6.433,58.094],[-6.43,58.092],[-6.429,58.093],[-6.428,58.097],[-6.424,58.097],[-6.424,58.098],[-6.433,58.099],[-6.436,58.1],[-6.436,58.101],[-6.431,58.102],[-6.428,58.105],[-6.421,58.106],[-6.419,58.104],[-6.417,58.104],[-6.416,58.106],[-6.417,58.107],[-6.415,58.109],[-6.413,58.109],[-6.41,58.11],[-6.407,58.11],[-6.403,58.109],[-6.4,58.109],[-6.399,58.106],[-6.396,58.104],[-6.394,58.105],[-6.396,58.107],[-6.395,58.109],[-6.391,58.109],[-6.39,58.108],[-6.391,58.107],[-6.389,58.105],[-6.387,58.105],[-6.386,58.103],[-6.39,58.103],[-6.393,58.102],[-6.394,58.1],[-6.395,58.099],[-6.398,58.099],[-6.4,58.097],[-6.396,58.096],[-6.393,58.098],[-6.388,58.098],[-6.388,58.095],[-6.384,58.094],[-6.385,58.092],[-6.388,58.092],[-6.392,58.092],[-6.394,58.091],[-6.398,58.093],[-6.399,58.091],[-6.397,58.089],[-6.396,58.085],[-6.393,58.086],[-6.389,58.087],[-6.388,58.089],[-6.385,58.09],[-6.383,58.092],[-6.38,58.093],[-6.378,58.092],[-6.378,58.089],[-6.38,58.087],[-6.381,58.084],[-6.379,58.081],[-6.381,58.08],[-6.379,58.078],[-6.375,58.079],[-6.372,58.079],[-6.369,58.076],[-6.371,58.075],[-6.372,58.074],[-6.377,58.071],[-6.381,58.068],[-6.379,58.067],[-6.374,58.067],[-6.367,58.065],[-6.369,58.062],[-6.367,58.058],[-6.367,58.057],[-6.371,58.056],[-6.373,58.054],[-6.372,58.049],[-6.379,58.047],[-6.382,58.048],[-6.392,58.047],[-6.4,58.046],[-6.415,58.048],[-6.422,58.048],[-6.426,58.047],[-6.422,58.046],[-6.412,58.046],[-6.409,58.044],[-6.404,58.043],[-6.403,58.042],[-6.398,58.042],[-6.393,58.043],[-6.391,58.043],[-6.392,58.041],[-6.383,58.042],[-6.382,58.042],[-6.375,58.042],[-6.372,58.041],[-6.368,58.041],[-6.362,58.041],[-6.358,58.039],[-6.357,58.036],[-6.359,58.033],[-6.359,58.031],[-6.362,58.029],[-6.365,58.026],[-6.366,58.023],[-6.365,58.022],[-6.368,58.018],[-6.371,58.017],[-6.377,58.016],[-6.38,58.014],[-6.381,58.012],[-6.382,58.011],[-6.382,58.01],[-6.384,58.009],[-6.389,58.009],[-6.39,58.006],[-6.39,58.005],[-6.387,58.001],[-6.389,58],[-6.391,58.001],[-6.394,58],[-6.401,58.002],[-6.404,58.004],[-6.404,58.006],[-6.411,58.01],[-6.414,58.01],[-6.417,58.012],[-6.42,58.013],[-6.422,58.011],[-6.425,58.009],[-6.429,58.011],[-6.432,58.011],[-6.432,58.013],[-6.435,58.016],[-6.438,58.016],[-6.438,58.012],[-6.436,58.011],[-6.438,58.01],[-6.442,58.011],[-6.444,58.01],[-6.444,58.008],[-6.449,58.006],[-6.451,58.006],[-6.453,58.008],[-6.454,58.011],[-6.46,58.012],[-6.463,58.014],[-6.466,58.018],[-6.469,58.017],[-6.465,58.015],[-6.465,58.013],[-6.467,58.011],[-6.47,58.01],[-6.474,58.01],[-6.478,58.011],[-6.481,58.01],[-6.486,58.011],[-6.493,58.013],[-6.49,58.01],[-6.492,58.009],[-6.497,58.008],[-6.499,58.006],[-6.503,58.007],[-6.511,58.008],[-6.516,58.009],[-6.522,58.011],[-6.525,58.014],[-6.526,58.011],[-6.525,58.01],[-6.527,58.008],[-6.525,58.007],[-6.527,58.005],[-6.535,58.006],[-6.539,58.005],[-6.548,58.007],[-6.556,58.007],[-6.565,58.005],[-6.57,58.005],[-6.571,58.003],[-6.567,58.002],[-6.563,58.002],[-6.557,58.004],[-6.551,58.004],[-6.546,58.002],[-6.546,58.001],[-6.544,58.001],[-6.528,58],[-6.525,58],[-6.524,58],[-6.517,57.999],[-6.51,58],[-6.509,58],[-6.506,58],[-6.502,58.002],[-6.496,58.001],[-6.491,58.002],[-6.476,58.001],[-6.472,58.001],[-6.467,57.999],[-6.464,57.997],[-6.461,57.996],[-6.461,57.995],[-6.456,57.994],[-6.454,57.989],[-6.454,57.987],[-6.457,57.986],[-6.453,57.982],[-6.449,57.979],[-6.45,57.978],[-6.451,57.975],[-6.45,57.973],[-6.454,57.971],[-6.454,57.97],[-6.45,57.968],[-6.449,57.966],[-6.451,57.964],[-6.456,57.964],[-6.457,57.962],[-6.461,57.961],[-6.468,57.961],[-6.467,57.959],[-6.467,57.956],[-6.466,57.954],[-6.467,57.952],[-6.468,57.946],[-6.467,57.942],[-6.469,57.94],[-6.472,57.938],[-6.478,57.938],[-6.482,57.94],[-6.484,57.938],[-6.492,57.938],[-6.495,57.939],[-6.496,57.94],[-6.502,57.939],[-6.503,57.937],[-6.505,57.936],[-6.508,57.934],[-6.51,57.931],[-6.513,57.929],[-6.515,57.929],[-6.519,57.927],[-6.522,57.929],[-6.524,57.932],[-6.525,57.935],[-6.529,57.933],[-6.528,57.937],[-6.529,57.939],[-6.533,57.941],[-6.536,57.941],[-6.538,57.94],[-6.541,57.943],[-6.54,57.946],[-6.542,57.947],[-6.546,57.953],[-6.547,57.957],[-6.55,57.955],[-6.55,57.954],[-6.547,57.948],[-6.545,57.945],[-6.547,57.942],[-6.549,57.941],[-6.549,57.939],[-6.546,57.937],[-6.546,57.936],[-6.543,57.934],[-6.543,57.933],[-6.54,57.932],[-6.538,57.929],[-6.54,57.929],[-6.538,57.927],[-6.537,57.923],[-6.537,57.92],[-6.54,57.917],[-6.546,57.916],[-6.549,57.917],[-6.554,57.915],[-6.558,57.915],[-6.562,57.917],[-6.562,57.915],[-6.566,57.916],[-6.567,57.918],[-6.57,57.918],[-6.571,57.921],[-6.569,57.923],[-6.572,57.924],[-6.574,57.924],[-6.573,57.921],[-6.574,57.92],[-6.573,57.918],[-6.569,57.915],[-6.571,57.914],[-6.572,57.912],[-6.57,57.91],[-6.572,57.909],[-6.575,57.911],[-6.579,57.913],[-6.578,57.916],[-6.584,57.914],[-6.588,57.917],[-6.59,57.921],[-6.596,57.922],[-6.597,57.923],[-6.594,57.924],[-6.594,57.925],[-6.597,57.927],[-6.603,57.932],[-6.604,57.936],[-6.608,57.937],[-6.611,57.94],[-6.611,57.943],[-6.614,57.944],[-6.611,57.949],[-6.614,57.949],[-6.618,57.948],[-6.62,57.949],[-6.626,57.953],[-6.629,57.953],[-6.633,57.957],[-6.638,57.96],[-6.64,57.96],[-6.641,57.962],[-6.645,57.961],[-6.643,57.956],[-6.639,57.953],[-6.629,57.946],[-6.628,57.943],[-6.625,57.94],[-6.625,57.938],[-6.623,57.936],[-6.626,57.934],[-6.622,57.931],[-6.62,57.931],[-6.617,57.929],[-6.615,57.928],[-6.612,57.926],[-6.613,57.921],[-6.606,57.917],[-6.61,57.916],[-6.614,57.915],[-6.624,57.917],[-6.626,57.92],[-6.628,57.92],[-6.628,57.924],[-6.629,57.924],[-6.632,57.926],[-6.633,57.924],[-6.632,57.922],[-6.639,57.922],[-6.644,57.924],[-6.647,57.924],[-6.646,57.922],[-6.644,57.92],[-6.647,57.919],[-6.647,57.918],[-6.651,57.918],[-6.654,57.919],[-6.657,57.92],[-6.66,57.923],[-6.663,57.926],[-6.665,57.928],[-6.67,57.932],[-6.675,57.935],[-6.676,57.938],[-6.678,57.943],[-6.681,57.945],[-6.689,57.952],[-6.691,57.954],[-6.69,57.956],[-6.692,57.957],[-6.693,57.96],[-6.696,57.961],[-6.699,57.962],[-6.7,57.959],[-6.702,57.961],[-6.704,57.964],[-6.702,57.965],[-6.703,57.966],[-6.706,57.967],[-6.709,57.968],[-6.709,57.972],[-6.71,57.975],[-6.71,57.977],[-6.711,57.979],[-6.71,57.98],[-6.713,57.983],[-6.713,57.986],[-6.71,57.988],[-6.71,57.99],[-6.707,57.992],[-6.705,57.995],[-6.707,57.997],[-6.71,58.002],[-6.712,58.003],[-6.715,58.006],[-6.714,58.009],[-6.714,58.011],[-6.713,58.013],[-6.709,58.017],[-6.704,58.019],[-6.702,58.022],[-6.697,58.026],[-6.696,58.027],[-6.692,58.029],[-6.688,58.035],[-6.683,58.037],[-6.68,58.038],[-6.676,58.037],[-6.673,58.037],[-6.67,58.039],[-6.666,58.043],[-6.667,58.045],[-6.668,58.05],[-6.665,58.054],[-6.659,58.055],[-6.655,58.055],[-6.649,58.056],[-6.641,58.055],[-6.64,58.054],[-6.636,58.055],[-6.633,58.055],[-6.63,58.054],[-6.624,58.05],[-6.626,58.049],[-6.622,58.047],[-6.618,58.048],[-6.615,58.051],[-6.611,58.051],[-6.61,58.051],[-6.603,58.051],[-6.6,58.052],[-6.596,58.052],[-6.59,58.052],[-6.595,58.054],[-6.6,58.053],[-6.606,58.053],[-6.609,58.054],[-6.62,58.055],[-6.625,58.056],[-6.632,58.057],[-6.636,58.058],[-6.644,58.058],[-6.648,58.057],[-6.657,58.058],[-6.664,58.058],[-6.667,58.058],[-6.675,58.058],[-6.68,58.057],[-6.688,58.058],[-6.689,58.056],[-6.684,58.055],[-6.679,58.056],[-6.675,58.055],[-6.674,58.054],[-6.67,58.053],[-6.669,58.049],[-6.67,58.046],[-6.672,58.044],[-6.676,58.043],[-6.68,58.041],[-6.69,58.038],[-6.692,58.037],[-6.695,58.034],[-6.7,58.031],[-6.704,58.027],[-6.705,58.025],[-6.712,58.021],[-6.717,58.017],[-6.719,58.017],[-6.726,58.012],[-6.731,58.011],[-6.738,58.009],[-6.749,58.006],[-6.756,58.003],[-6.753,58.001],[-6.751,58],[-6.751,57.998],[-6.753,57.997],[-6.756,57.996],[-6.754,57.994],[-6.744,57.994],[-6.74,57.992],[-6.737,57.988],[-6.734,57.984],[-6.731,57.982],[-6.73,57.98],[-6.726,57.973],[-6.725,57.972],[-6.726,57.97],[-6.724,57.966],[-6.721,57.962],[-6.721,57.96],[-6.727,57.959],[-6.726,57.954],[-6.724,57.953],[-6.73,57.953],[-6.731,57.953],[-6.734,57.955],[-6.739,57.954],[-6.74,57.952],[-6.731,57.951],[-6.725,57.951],[-6.718,57.951],[-6.714,57.954],[-6.712,57.955],[-6.707,57.954],[-6.704,57.951],[-6.705,57.949],[-6.702,57.946],[-6.699,57.944],[-6.697,57.944],[-6.697,57.942],[-6.694,57.941],[-6.692,57.939],[-6.689,57.937],[-6.69,57.935],[-6.683,57.933],[-6.681,57.931],[-6.682,57.929],[-6.68,57.926],[-6.674,57.922],[-6.677,57.92],[-6.675,57.918],[-6.683,57.916],[-6.69,57.917],[-6.692,57.918],[-6.696,57.918],[-6.699,57.918],[-6.7,57.916],[-6.702,57.915],[-6.709,57.916],[-6.711,57.914],[-6.706,57.913],[-6.699,57.912],[-6.696,57.911],[-6.695,57.909],[-6.69,57.908],[-6.688,57.907],[-6.683,57.906],[-6.68,57.904],[-6.677,57.903],[-6.671,57.901],[-6.671,57.898],[-6.672,57.896],[-6.674,57.894],[-6.667,57.889],[-6.666,57.887],[-6.666,57.883],[-6.669,57.881],[-6.673,57.88],[-6.675,57.881],[-6.683,57.882],[-6.689,57.881],[-6.695,57.882],[-6.698,57.883],[-6.708,57.884],[-6.714,57.884],[-6.718,57.886],[-6.72,57.886],[-6.725,57.885],[-6.73,57.884],[-6.734,57.887],[-6.738,57.888],[-6.743,57.886],[-6.747,57.888],[-6.748,57.889],[-6.753,57.889],[-6.755,57.89],[-6.757,57.892],[-6.759,57.894],[-6.758,57.896],[-6.761,57.896],[-6.765,57.894],[-6.77,57.894],[-6.772,57.896],[-6.773,57.898],[-6.776,57.899],[-6.779,57.899],[-6.781,57.897],[-6.785,57.898],[-6.788,57.897],[-6.793,57.897],[-6.804,57.897],[-6.808,57.898],[-6.817,57.9],[-6.816,57.902],[-6.817,57.903],[-6.822,57.903],[-6.823,57.904],[-6.831,57.906],[-6.833,57.906],[-6.837,57.909],[-6.842,57.909],[-6.845,57.911],[-6.846,57.912],[-6.849,57.914],[-6.854,57.915],[-6.856,57.916],[-6.859,57.917],[-6.859,57.919],[-6.862,57.92],[-6.865,57.924],[-6.864,57.925],[-6.86,57.927],[-6.855,57.926],[-6.852,57.925],[-6.85,57.925],[-6.848,57.926],[-6.843,57.928],[-6.844,57.929],[-6.848,57.93],[-6.85,57.933],[-6.852,57.933],[-6.855,57.93],[-6.857,57.929],[-6.861,57.93],[-6.865,57.932],[-6.869,57.933],[-6.872,57.933],[-6.875,57.93],[-6.884,57.931],[-6.882,57.935],[-6.886,57.935],[-6.889,57.934],[-6.896,57.934],[-6.898,57.935],[-6.901,57.935],[-6.906,57.936],[-6.912,57.936],[-6.916,57.938],[-6.915,57.941],[-6.909,57.943],[-6.909,57.944],[-6.903,57.946],[-6.902,57.948],[-6.905,57.948],[-6.909,57.946],[-6.91,57.945],[-6.914,57.943],[-6.918,57.94],[-6.925,57.941],[-6.927,57.943],[-6.926,57.945],[-6.928,57.946],[-6.933,57.945],[-6.937,57.947],[-6.938,57.947],[-6.945,57.951],[-6.952,57.949],[-6.957,57.949],[-6.956,57.95],[-6.96,57.952],[-6.964,57.95],[-6.968,57.95],[-6.971,57.95],[-6.971,57.953],[-6.973,57.953],[-6.975,57.955],[-6.978,57.954],[-6.987,57.957],[-6.99,57.959],[-6.99,57.96],[-6.995,57.961],[-6.996,57.964],[-7.001,57.965],[-7.003,57.964],[-7,57.962],[-6.995,57.959],[-6.996,57.957],[-6.995,57.955],[-6.999,57.955],[-6.999,57.954],[-7.004,57.952],[-7.004,57.954],[-7.008,57.953],[-7.011,57.954],[-7.012,57.956],[-7.015,57.954],[-7.017,57.953],[-7.023,57.952],[-7.025,57.954],[-7.028,57.954],[-7.034,57.955],[-7.04,57.956],[-7.042,57.957],[-7.042,57.959],[-7.045,57.961],[-7.051,57.961],[-7.054,57.961],[-7.056,57.962],[-7.056,57.964],[-7.058,57.966],[-7.057,57.969],[-7.058,57.97],[-7.062,57.969],[-7.065,57.969],[-7.064,57.966],[-7.067,57.965],[-7.073,57.965],[-7.077,57.966],[-7.081,57.969],[-7.081,57.971],[-7.083,57.971],[-7.084,57.976],[-7.082,57.977],[-7.08,57.98],[-7.08,57.981],[-7.086,57.985],[-7.086,57.986],[-7.082,57.987],[-7.086,57.99],[-7.087,57.992],[-7.091,57.994],[-7.095,57.994],[-7.1,57.992],[-7.098,57.989],[-7.103,57.987],[-7.109,57.986],[-7.111,57.986],[-7.114,57.989],[-7.115,57.99],[-7.114,57.992],[-7.111,57.992],[-7.11,57.996],[-7.107,57.998],[-7.099,57.999],[-7.095,57.999],[-7.093,58],[-7.09,58.003],[-7.09,58.006],[-7.093,58.01],[-7.09,58.015],[-7.09,58.017],[-7.084,58.02],[-7.08,58.02],[-7.078,58.02],[-7.074,58.019],[-7.071,58.018],[-7.07,58.017],[-7.067,58.016],[-7.063,58.013],[-7.063,58.012],[-7.06,58.01],[-7.056,58.01],[-7.053,58.012],[-7.054,58.014],[-7.053,58.016],[-7.049,58.023],[-7.046,58.024],[-7.045,58.025],[-7.043,58.026],[-7.035,58.027],[-7.034,58.029],[-7.029,58.032],[-7.025,58.032],[-7.02,58.032],[-7.015,58.035],[-7.01,58.035],[-7.007,58.035],[-7.003,58.038],[-6.999,58.038],[-6.999,58.039],[-6.995,58.04],[-6.995,58.041],[-6.986,58.042],[-6.978,58.042],[-6.975,58.042],[-6.97,58.042],[-6.966,58.041],[-6.965,58.043],[-6.959,58.045],[-6.953,58.046],[-6.948,58.047],[-6.942,58.048],[-6.939,58.049],[-6.929,58.05],[-6.921,58.052],[-6.912,58.052],[-6.914,58.053],[-6.927,58.053],[-6.939,58.051],[-6.948,58.05],[-6.964,58.049],[-6.972,58.048],[-6.981,58.048],[-6.986,58.046],[-6.997,58.044],[-7.007,58.041],[-7.01,58.041],[-7.016,58.041],[-7.023,58.037],[-7.029,58.036],[-7.032,58.036],[-7.035,58.034],[-7.04,58.033],[-7.042,58.035],[-7.042,58.037],[-7.044,58.038],[-7.047,58.036],[-7.05,58.035],[-7.054,58.04],[-7.054,58.041],[-7.061,58.041],[-7.065,58.044],[-7.062,58.047],[-7.051,58.048],[-7.046,58.051],[-7.04,58.051],[-7.035,58.051],[-7.031,58.051],[-7.028,58.053],[-7.025,58.052],[-7.023,58.053],[-7.027,58.056],[-7.033,58.057],[-7.037,58.056],[-7.041,58.054],[-7.045,58.055],[-7.052,58.053],[-7.058,58.054],[-7.059,58.056],[-7.058,58.057],[-7.059,58.058],[-7.057,58.061],[-7.054,58.064],[-7.05,58.065],[-7.046,58.065],[-7.04,58.066],[-7.04,58.068],[-7.036,58.068],[-7.035,58.066],[-7.032,58.069],[-7.024,58.071],[-7.025,58.073],[-7.028,58.073],[-7.029,58.075],[-7.029,58.077],[-7.029,58.081],[-7.033,58.081],[-7.034,58.078],[-7.036,58.075],[-7.039,58.074],[-7.044,58.072],[-7.049,58.072],[-7.051,58.07],[-7.054,58.07],[-7.059,58.068],[-7.061,58.068],[-7.064,58.066],[-7.063,58.065],[-7.062,58.063],[-7.062,58.061],[-7.066,58.06],[-7.07,58.06],[-7.073,58.061],[-7.073,58.063],[-7.078,58.063],[-7.08,58.064],[-7.083,58.065],[-7.089,58.064],[-7.088,58.067],[-7.084,58.067],[-7.087,58.069],[-7.09,58.069],[-7.095,58.07],[-7.098,58.069],[-7.101,58.071],[-7.101,58.073],[-7.103,58.074],[-7.103,58.075],[-7.101,58.075],[-7.099,58.077],[-7.103,58.078],[-7.101,58.079],[-7.103,58.08],[-7.105,58.082],[-7.104,58.084],[-7.103,58.092],[-7.105,58.094],[-7.104,58.096],[-7.11,58.096],[-7.107,58.097],[-7.107,58.099],[-7.114,58.1],[-7.112,58.102],[-7.112,58.103],[-7.114,58.105],[-7.111,58.108],[-7.111,58.11],[-7.114,58.112],[-7.115,58.114],[-7.118,58.114],[-7.121,58.116],[-7.124,58.114],[-7.127,58.117],[-7.128,58.118],[-7.131,58.117],[-7.133,58.121],[-7.135,58.121],[-7.137,58.122],[-7.136,58.124],[-7.132,58.124],[-7.132,58.126],[-7.136,58.127],[-7.131,58.134],[-7.13,58.137],[-7.133,58.138],[-7.131,58.14],[-7.126,58.14],[-7.122,58.139],[-7.122,58.138],[-7.118,58.137],[-7.118,58.139],[-7.115,58.141],[-7.113,58.142],[-7.11,58.144],[-7.112,58.146],[-7.111,58.148],[-7.114,58.147],[-7.117,58.15],[-7.117,58.151],[-7.112,58.151],[-7.108,58.15],[-7.099,58.154],[-7.1,58.155],[-7.102,58.156],[-7.096,58.159],[-7.094,58.16],[-7.094,58.163],[-7.091,58.164],[-7.094,58.168],[-7.098,58.169],[-7.102,58.173],[-7.102,58.175],[-7.108,58.179],[-7.105,58.182],[-7.105,58.184],[-7.102,58.185],[-7.1,58.187],[-7.097,58.187],[-7.094,58.188],[-7.092,58.187],[-7.09,58.188],[-7.084,58.189],[-7.082,58.188],[-7.083,58.186],[-7.082,58.185],[-7.078,58.185],[-7.071,58.183],[-7.067,58.184],[-7.061,58.183],[-7.06,58.181],[-7.056,58.182],[-7.056,58.186],[-7.051,58.186],[-7.05,58.184],[-7.05,58.181],[-7.053,58.179],[-7.049,58.178],[-7.048,58.181],[-7.044,58.181],[-7.038,58.183],[-7.035,58.184],[-7.033,58.185],[-7.029,58.185],[-7.029,58.187],[-7.021,58.187],[-7.019,58.187],[-7.018,58.188],[-7.019,58.19],[-7.025,58.191],[-7.024,58.194],[-7.025,58.195],[-7.029,58.194],[-7.032,58.195],[-7.032,58.199],[-7.036,58.197],[-7.037,58.194],[-7.035,58.192],[-7.037,58.191],[-7.041,58.19],[-7.043,58.189],[-7.051,58.189],[-7.046,58.192],[-7.05,58.194],[-7.056,58.195],[-7.061,58.195],[-7.065,58.196],[-7.063,58.202],[-7.06,58.204],[-7.06,58.206],[-7.055,58.209],[-7.059,58.211],[-7.057,58.213],[-7.055,58.216],[-7.052,58.217],[-7.051,58.219],[-7.054,58.221],[-7.055,58.222],[-7.053,58.223],[-7.054,58.225],[-7.052,58.226],[-7.048,58.227],[-7.051,58.231],[-7.049,58.233],[-7.043,58.234],[-7.04,58.233],[-7.038,58.235],[-7.04,58.236],[-7.039,58.239],[-7.038,58.239],[-7.035,58.241],[-7.027,58.244],[-7.024,58.245],[-7.025,58.24],[-7.026,58.239],[-7.026,58.233],[-7.021,58.233],[-7.018,58.235],[-7.017,58.236],[-7.013,58.235],[-7.01,58.235],[-7.005,58.234],[-7.001,58.235],[-6.994,58.233],[-6.996,58.232],[-6.995,58.23],[-6.993,58.229],[-6.99,58.227],[-6.983,58.224],[-6.982,58.223],[-6.977,58.221],[-6.976,58.22],[-6.972,58.221],[-6.966,58.223],[-6.968,58.226],[-6.965,58.228],[-6.966,58.229],[-6.969,58.23],[-6.969,58.232],[-6.967,58.233],[-6.961,58.232],[-6.962,58.235],[-6.96,58.236],[-6.958,58.234],[-6.956,58.234],[-6.954,58.232],[-6.95,58.228],[-6.951,58.228],[-6.948,58.226],[-6.946,58.223],[-6.941,58.223],[-6.94,58.22],[-6.934,58.218],[-6.929,58.217],[-6.925,58.216],[-6.917,58.217],[-6.911,58.215],[-6.908,58.212],[-6.912,58.211],[-6.912,58.21],[-6.91,58.207],[-6.909,58.204],[-6.912,58.203],[-6.917,58.204],[-6.923,58.203],[-6.926,58.204],[-6.929,58.203],[-6.941,58.204],[-6.944,58.204],[-6.944,58.203],[-6.944,58.198],[-6.947,58.199],[-6.949,58.202],[-6.954,58.204],[-6.961,58.204],[-6.96,58.203],[-6.957,58.202],[-6.953,58.202],[-6.953,58.201],[-6.949,58.2],[-6.947,58.197],[-6.946,58.195],[-6.943,58.194],[-6.941,58.194],[-6.937,58.193],[-6.934,58.19],[-6.932,58.19],[-6.921,58.189],[-6.919,58.187],[-6.916,58.186],[-6.912,58.188],[-6.911,58.188],[-6.909,58.186],[-6.897,58.189],[-6.893,58.187],[-6.892,58.186],[-6.892,58.183],[-6.892,58.181],[-6.888,58.178],[-6.888,58.174],[-6.886,58.171],[-6.887,58.168],[-6.887,58.166],[-6.889,58.164],[-6.888,58.162],[-6.89,58.16],[-6.892,58.159],[-6.89,58.158],[-6.89,58.155],[-6.888,58.152],[-6.889,58.151],[-6.884,58.146],[-6.885,58.145],[-6.881,58.141],[-6.879,58.136],[-6.877,58.13],[-6.877,58.128],[-6.874,58.125],[-6.868,58.122],[-6.865,58.117],[-6.862,58.118],[-6.866,58.124],[-6.869,58.125],[-6.869,58.129],[-6.866,58.132],[-6.87,58.134],[-6.872,58.137],[-6.872,58.139],[-6.876,58.141],[-6.877,58.143],[-6.879,58.145],[-6.883,58.15],[-6.883,58.152],[-6.884,58.158],[-6.881,58.162],[-6.885,58.162],[-6.886,58.165],[-6.886,58.168],[-6.884,58.17],[-6.884,58.171],[-6.883,58.173],[-6.888,58.179],[-6.887,58.181],[-6.882,58.181],[-6.882,58.179],[-6.88,58.176],[-6.882,58.176],[-6.881,58.172],[-6.879,58.173],[-6.877,58.174],[-6.876,58.174],[-6.876,58.172],[-6.873,58.171],[-6.87,58.173],[-6.869,58.174],[-6.872,58.175],[-6.88,58.181],[-6.88,58.184],[-6.878,58.186],[-6.879,58.188],[-6.876,58.19],[-6.873,58.188],[-6.872,58.185],[-6.867,58.184],[-6.865,58.182],[-6.861,58.182],[-6.859,58.182],[-6.861,58.185],[-6.866,58.187],[-6.866,58.189],[-6.868,58.19],[-6.868,58.192],[-6.865,58.191],[-6.863,58.189],[-6.861,58.19],[-6.864,58.191],[-6.861,58.192],[-6.858,58.194],[-6.853,58.195],[-6.85,58.197],[-6.852,58.198],[-6.853,58.2],[-6.846,58.2],[-6.843,58.197],[-6.84,58.199],[-6.84,58.201],[-6.84,58.203],[-6.837,58.203],[-6.836,58.204],[-6.831,58.204],[-6.828,58.205],[-6.826,58.204],[-6.821,58.201],[-6.82,58.202],[-6.814,58.201],[-6.812,58.202],[-6.81,58.201],[-6.808,58.199],[-6.804,58.2],[-6.797,58.198],[-6.794,58.199],[-6.791,58.198],[-6.79,58.197],[-6.789,58.194],[-6.785,58.194],[-6.781,58.194],[-6.776,58.192],[-6.773,58.192],[-6.77,58.191],[-6.766,58.19],[-6.759,58.188],[-6.758,58.188],[-6.758,58.191],[-6.755,58.192],[-6.753,58.191],[-6.751,58.193],[-6.748,58.191],[-6.748,58.189],[-6.746,58.188],[-6.745,58.185],[-6.741,58.182],[-6.74,58.179],[-6.737,58.177],[-6.735,58.174],[-6.732,58.172],[-6.733,58.175],[-6.729,58.175],[-6.729,58.174],[-6.725,58.173],[-6.724,58.171],[-6.72,58.171],[-6.718,58.172],[-6.721,58.173],[-6.722,58.176],[-6.721,58.177],[-6.725,58.178],[-6.726,58.179],[-6.726,58.183],[-6.725,58.184],[-6.718,58.185],[-6.722,58.188],[-6.727,58.187],[-6.727,58.188],[-6.724,58.19],[-6.73,58.192],[-6.731,58.191],[-6.732,58.188],[-6.736,58.186],[-6.741,58.186],[-6.74,58.188],[-6.74,58.19],[-6.739,58.192],[-6.739,58.195],[-6.741,58.196],[-6.742,58.195],[-6.743,58.193],[-6.747,58.193],[-6.751,58.197],[-6.752,58.197],[-6.754,58.195],[-6.757,58.195],[-6.758,58.198],[-6.761,58.199],[-6.763,58.201],[-6.763,58.203],[-6.759,58.203],[-6.76,58.204],[-6.759,58.206],[-6.759,58.208],[-6.757,58.21],[-6.753,58.21],[-6.747,58.21],[-6.743,58.208],[-6.743,58.21],[-6.744,58.212],[-6.747,58.214],[-6.751,58.217],[-6.757,58.216],[-6.762,58.219],[-6.763,58.221],[-6.766,58.222],[-6.764,58.223],[-6.765,58.227],[-6.766,58.227],[-6.77,58.233],[-6.773,58.235],[-6.774,58.237],[-6.777,58.236],[-6.781,58.233],[-6.783,58.236],[-6.785,58.237],[-6.79,58.237],[-6.79,58.239],[-6.793,58.24],[-6.795,58.243],[-6.798,58.246],[-6.801,58.246],[-6.8,58.248],[-6.793,58.248],[-6.792,58.249],[-6.793,58.25],[-6.802,58.248],[-6.802,58.25],[-6.804,58.25],[-6.805,58.252],[-6.809,58.252],[-6.81,58.254],[-6.809,58.255],[-6.811,58.258],[-6.808,58.259],[-6.81,58.261],[-6.811,58.263],[-6.813,58.265],[-6.815,58.265],[-6.813,58.267],[-6.816,58.268],[-6.819,58.27],[-6.818,58.272],[-6.82,58.273],[-6.819,58.274],[-6.814,58.272],[-6.812,58.273],[-6.807,58.273],[-6.803,58.273],[-6.804,58.275],[-6.799,58.276],[-6.797,58.275],[-6.794,58.276],[-6.79,58.275],[-6.789,58.277],[-6.79,58.279],[-6.786,58.28],[-6.781,58.279],[-6.779,58.279],[-6.78,58.281],[-6.789,58.28],[-6.791,58.279],[-6.794,58.278],[-6.797,58.279],[-6.8,58.279],[-6.805,58.28],[-6.81,58.278],[-6.819,58.279],[-6.825,58.28],[-6.829,58.283],[-6.827,58.285],[-6.824,58.285],[-6.823,58.286],[-6.819,58.288],[-6.817,58.291],[-6.81,58.292],[-6.809,58.29],[-6.804,58.293],[-6.806,58.294],[-6.806,58.296],[-6.804,58.298],[-6.8,58.299],[-6.797,58.297],[-6.796,58.297],[-6.798,58.3],[-6.8,58.3],[-6.802,58.302],[-6.804,58.302],[-6.805,58.303],[-6.804,58.305],[-6.802,58.304],[-6.798,58.307],[-6.795,58.307],[-6.788,58.304],[-6.788,58.307],[-6.786,58.308],[-6.784,58.309],[-6.78,58.308],[-6.777,58.309],[-6.776,58.31],[-6.772,58.31],[-6.77,58.307],[-6.768,58.307],[-6.764,58.309],[-6.76,58.306],[-6.756,58.307],[-6.755,58.309],[-6.752,58.315],[-6.75,58.314],[-6.745,58.315],[-6.742,58.314],[-6.738,58.315],[-6.743,58.317],[-6.742,58.319],[-6.738,58.32],[-6.734,58.32],[-6.73,58.321],[-6.729,58.322],[-6.731,58.323],[-6.73,58.325],[-6.726,58.326],[-6.725,58.329],[-6.721,58.328],[-6.717,58.328],[-6.712,58.33],[-6.713,58.333],[-6.711,58.332],[-6.709,58.335],[-6.704,58.336],[-6.703,58.337],[-6.697,58.338],[-6.693,58.333],[-6.69,58.332],[-6.688,58.335],[-6.689,58.338],[-6.684,58.338],[-6.685,58.339],[-6.678,58.339],[-6.678,58.341],[-6.675,58.342],[-6.672,58.341],[-6.67,58.343],[-6.672,58.345],[-6.672,58.347],[-6.67,58.347],[-6.669,58.349],[-6.668,58.351],[-6.665,58.351],[-6.659,58.35],[-6.659,58.352],[-6.654,58.351],[-6.652,58.355],[-6.65,58.355],[-6.645,58.351],[-6.643,58.349],[-6.641,58.348],[-6.641,58.344],[-6.637,58.346],[-6.635,58.348],[-6.629,58.348],[-6.624,58.347],[-6.623,58.348],[-6.619,58.347],[-6.616,58.349],[-6.615,58.35],[-6.616,58.352],[-6.616,58.353],[-6.61,58.351],[-6.604,58.353],[-6.602,58.353],[-6.601,58.354],[-6.599,58.357],[-6.593,58.36],[-6.591,58.359],[-6.585,58.36],[-6.584,58.363],[-6.581,58.364],[-6.579,58.364],[-6.57,58.365],[-6.562,58.365],[-6.559,58.367],[-6.555,58.367],[-6.55,58.365],[-6.547,58.366],[-6.546,58.368],[-6.548,58.37],[-6.547,58.374],[-6.542,58.374],[-6.538,58.378],[-6.538,58.38],[-6.535,58.383],[-6.531,58.386],[-6.531,58.388],[-6.527,58.389],[-6.526,58.392],[-6.519,58.397],[-6.515,58.398],[-6.511,58.397],[-6.51,58.398],[-6.504,58.399],[-6.498,58.399],[-6.497,58.4],[-6.494,58.402],[-6.494,58.403],[-6.491,58.404],[-6.489,58.408],[-6.486,58.409],[-6.485,58.41],[-6.477,58.412],[-6.473,58.414],[-6.47,58.415],[-6.468,58.416],[-6.466,58.416],[-6.463,58.417],[-6.455,58.42],[-6.454,58.422],[-6.45,58.424],[-6.446,58.425],[-6.446,58.427],[-6.442,58.427],[-6.445,58.429],[-6.441,58.432],[-6.433,58.436],[-6.428,58.437],[-6.425,58.44],[-6.419,58.441],[-6.418,58.442],[-6.412,58.444],[-6.411,58.445],[-6.408,58.445],[-6.404,58.447],[-6.4,58.449],[-6.394,58.449],[-6.393,58.449],[-6.388,58.449],[-6.385,58.45],[-6.382,58.45],[-6.378,58.453],[-6.376,58.455],[-6.373,58.456],[-6.372,58.457],[-6.364,58.459],[-6.36,58.459],[-6.357,58.46],[-6.355,58.462],[-6.352,58.462],[-6.35,58.465],[-6.347,58.465],[-6.344,58.469],[-6.341,58.469],[-6.339,58.474],[-6.336,58.476],[-6.333,58.479],[-6.327,58.478],[-6.323,58.479],[-6.314,58.479],[-6.311,58.479],[-6.309,58.481],[-6.305,58.481],[-6.301,58.483],[-6.301,58.485],[-6.297,58.485],[-6.293,58.487],[-6.292,58.488],[-6.291,58.49],[-6.286,58.491],[-6.283,58.492],[-6.281,58.494],[-6.276,58.496],[-6.273,58.5],[-6.274,58.502],[-6.277,58.505],[-6.274,58.507],[-6.276,58.508],[-6.282,58.508],[-6.284,58.509],[-6.284,58.511],[-6.279,58.511],[-6.275,58.512],[-6.273,58.513],[-6.27,58.515],[-6.265,58.515],[-6.262,58.517],[-6.259,58.517],[-6.258,58.515],[-6.251,58.514],[-6.249,58.513],[-6.25,58.51],[-6.247,58.51],[-6.243,58.507],[-6.241,58.507],[-6.24,58.505],[-6.236,58.505],[-6.235,58.504],[-6.231,58.503],[-6.23,58.502],[-6.222,58.501],[-6.222,58.5],[-6.225,58.498],[-6.226,58.497],[-6.222,58.495],[-6.223,58.493],[-6.226,58.492],[-6.225,58.49],[-6.221,58.488],[-6.219,58.486],[-6.215,58.484],[-6.212,58.484],[-6.207,58.483],[-6.206,58.481],[-6.203,58.479],[-6.206,58.477],[-6.199,58.478],[-6.197,58.476],[-6.195,58.477],[-6.193,58.476],[-6.194,58.474],[-6.191,58.472],[-6.19,58.47],[-6.185,58.47],[-6.181,58.467],[-6.182,58.466],[-6.182,58.465],[-6.186,58.463],[-6.191,58.461],[-6.194,58.458],[-6.195,58.457],[-6.193,58.456],[-6.194,58.454],[-6.193,58.452],[-6.19,58.451],[-6.19,58.45],[-6.194,58.446],[-6.192,58.445],[-6.193,58.444],[-6.19,58.442],[-6.186,58.441],[-6.184,58.44],[-6.181,58.44],[-6.179,58.438],[-6.181,58.436],[-6.18,58.434],[-6.178,58.434],[-6.174,58.435],[-6.172,58.433],[-6.172,58.43],[-6.167,58.43],[-6.169,58.429],[-6.168,58.427],[-6.17,58.425],[-6.171,58.423],[-6.168,58.417],[-6.172,58.417],[-6.175,58.415],[-6.179,58.415],[-6.181,58.412],[-6.185,58.411],[-6.189,58.409],[-6.189,58.405],[-6.192,58.401],[-6.194,58.397],[-6.2,58.395],[-6.199,58.394],[-6.202,58.392],[-6.2,58.39],[-6.202,58.386],[-6.206,58.385],[-6.207,58.381],[-6.209,58.379],[-6.208,58.377],[-6.211,58.376],[-6.209,58.375],[-6.21,58.373],[-6.212,58.372],[-6.213,58.37],[-6.209,58.364],[-6.204,58.361],[-6.204,58.36],[-6.198,58.356],[-6.196,58.356],[-6.194,58.354],[-6.185,58.349],[-6.178,58.347],[-6.175,58.346],[-6.169,58.347],[-6.164,58.345],[-6.163,58.342],[-6.169,58.343],[-6.169,58.342],[-6.174,58.342],[-6.178,58.341],[-6.18,58.342],[-6.186,58.34],[-6.192,58.34],[-6.197,58.339],[-6.2,58.336],[-6.203,58.332],[-6.208,58.33],[-6.207,58.329],[-6.209,58.327],[-6.211,58.326],[-6.214,58.324],[-6.217,58.323],[-6.22,58.322],[-6.221,58.319],[-6.226,58.318],[-6.229,58.317],[-6.233,58.317],[-6.233,58.315],[-6.237,58.314],[-6.238,58.312],[-6.238,58.31],[-6.24,58.31],[-6.241,58.308],[-6.244,58.307],[-6.243,58.306],[-6.239,58.306],[-6.238,58.305],[-6.238,58.3],[-6.242,58.296],[-6.246,58.295],[-6.252,58.295],[-6.257,58.294],[-6.257,58.293],[-6.268,58.292],[-6.272,58.292],[-6.276,58.291],[-6.274,58.289],[-6.271,58.287],[-6.272,58.286],[-6.278,58.283],[-6.281,58.28],[-6.281,58.278],[-6.28,58.276],[-6.275,58.276],[-6.276,58.274],[-6.282,58.273],[-6.28,58.27],[-6.284,58.268],[-6.286,58.269],[-6.29,58.268],[-6.294,58.267],[-6.3,58.267],[-6.302,58.266],[-6.306,58.266],[-6.314,58.268],[-6.318,58.267],[-6.32,58.265],[-6.324,58.26],[-6.325,58.257],[-6.324,58.253],[-6.323,58.251],[-6.319,58.251],[-6.317,58.25],[-6.318,58.249],[-6.316,58.247],[-6.317,58.246],[-6.317,58.244],[-6.322,58.244],[-6.324,58.243],[-6.323,58.239],[-6.325,58.237],[-6.327,58.237],[-6.332,58.235],[-6.335,58.233],[-6.333,58.229],[-6.329,58.226],[-6.325,58.223],[-6.316,58.218],[-6.312,58.218],[-6.307,58.214],[-6.304,58.214],[-6.304,58.211],[-6.299,58.211],[-6.295,58.211],[-6.292,58.208],[-6.286,58.208],[-6.28,58.21],[-6.279,58.212],[-6.274,58.213],[-6.269,58.213],[-6.268,58.214],[-6.266,58.214],[-6.264,58.216],[-6.258,58.221],[-6.25,58.223],[-6.249,58.225],[-6.245,58.223],[-6.242,58.224],[-6.238,58.223],[-6.233,58.225],[-6.231,58.226],[-6.224,58.229],[-6.224,58.23],[-6.221,58.23],[-6.219,58.232],[-6.218,58.235],[-6.22,58.236],[-6.218,58.239],[-6.214,58.238],[-6.209,58.239],[-6.208,58.241],[-6.207,58.242],[-6.206,58.246],[-6.204,58.248],[-6.199,58.249],[-6.194,58.25],[-6.188,58.251],[-6.185,58.253],[-6.183,58.253],[-6.179,58.254],[-6.175,58.253],[-6.168,58.256],[-6.166,58.257],[-6.166,58.263],[-6.161,58.264],[-6.156,58.264],[-6.156,58.263],[-6.152,58.26],[-6.148,58.262],[-6.146,58.261],[-6.144,58.26],[-6.143,58.262],[-6.138,58.262],[-6.138,58.26],[-6.135,58.259]],[[-6.71,58.102],[-6.713,58.102],[-6.714,58.1],[-6.721,58.1],[-6.721,58.099],[-6.72,58.097],[-6.72,58.095],[-6.723,58.095],[-6.729,58.095],[-6.73,58.091],[-6.734,58.09],[-6.738,58.089],[-6.745,58.089],[-6.748,58.089],[-6.756,58.09],[-6.759,58.089],[-6.761,58.087],[-6.767,58.089],[-6.769,58.091],[-6.772,58.091],[-6.773,58.089],[-6.766,58.086],[-6.772,58.084],[-6.775,58.084],[-6.774,58.081],[-6.775,58.079],[-6.778,58.076],[-6.783,58.078],[-6.78,58.079],[-6.78,58.081],[-6.784,58.082],[-6.784,58.084],[-6.787,58.084],[-6.785,58.086],[-6.789,58.091],[-6.793,58.092],[-6.796,58.093],[-6.796,58.095],[-6.799,58.094],[-6.801,58.094],[-6.802,58.096],[-6.805,58.095],[-6.808,58.094],[-6.813,58.094],[-6.816,58.093],[-6.811,58.091],[-6.808,58.09],[-6.804,58.09],[-6.801,58.089],[-6.798,58.089],[-6.793,58.089],[-6.791,58.086],[-6.791,58.084],[-6.797,58.081],[-6.796,58.08],[-6.792,58.082],[-6.787,58.082],[-6.787,58.08],[-6.786,58.079],[-6.788,58.077],[-6.787,58.076],[-6.793,58.073],[-6.794,58.067],[-6.797,58.067],[-6.8,58.069],[-6.801,58.068],[-6.798,58.063],[-6.799,58.061],[-6.803,58.063],[-6.804,58.062],[-6.802,58.06],[-6.802,58.059],[-6.806,58.057],[-6.805,58.055],[-6.807,58.054],[-6.809,58.054],[-6.809,58.056],[-6.815,58.059],[-6.816,58.06],[-6.82,58.061],[-6.822,58.061],[-6.823,58.058],[-6.821,58.056],[-6.822,58.045],[-6.823,58.043],[-6.826,58.04],[-6.826,58.038],[-6.824,58.035],[-6.823,58.032],[-6.824,58.028],[-6.825,58.025],[-6.825,58.024],[-6.827,58.021],[-6.83,58.021],[-6.831,58.019],[-6.828,58.019],[-6.823,58.016],[-6.822,58.014],[-6.819,58.014],[-6.817,58.015],[-6.818,58.019],[-6.817,58.024],[-6.816,58.025],[-6.814,58.026],[-6.81,58.026],[-6.81,58.027],[-6.812,58.032],[-6.812,58.034],[-6.811,58.041],[-6.814,58.046],[-6.812,58.047],[-6.809,58.046],[-6.806,58.046],[-6.805,58.047],[-6.809,58.048],[-6.807,58.049],[-6.802,58.049],[-6.804,58.051],[-6.807,58.051],[-6.807,58.052],[-6.804,58.052],[-6.8,58.052],[-6.794,58.051],[-6.792,58.051],[-6.79,58.056],[-6.791,58.061],[-6.789,58.064],[-6.788,58.067],[-6.787,58.068],[-6.784,58.072],[-6.781,58.074],[-6.774,58.071],[-6.77,58.072],[-6.769,58.073],[-6.764,58.076],[-6.764,58.078],[-6.762,58.08],[-6.758,58.082],[-6.749,58.081],[-6.748,58.083],[-6.744,58.082],[-6.742,58.084],[-6.736,58.083],[-6.734,58.082],[-6.73,58.082],[-6.731,58.085],[-6.73,58.088],[-6.727,58.089],[-6.723,58.085],[-6.717,58.087],[-6.716,58.085],[-6.714,58.085],[-6.715,58.091],[-6.717,58.092],[-6.718,58.095],[-6.715,58.095],[-6.712,58.097],[-6.71,58.102]]]]},"properties":{"OBJECTID":47,"NAME":"HS","KEY":"HS","Shape_Leng":33.36,"Shape_Area":0.469049}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.678,53.715],[-0.682,53.72],[-0.686,53.726],[-0.692,53.726],[-0.7,53.723],[-0.701,53.724],[-0.703,53.727],[-0.721,53.717],[-0.721,53.719],[-0.727,53.732],[-0.73,53.732],[-0.738,53.736],[-0.734,53.739],[-0.739,53.744],[-0.747,53.746],[-0.749,53.746],[-0.756,53.743],[-0.759,53.748],[-0.754,53.748],[-0.754,53.751],[-0.772,53.753],[-0.774,53.756],[-0.775,53.763],[-0.765,53.764],[-0.767,53.772],[-0.763,53.774],[-0.769,53.783],[-0.767,53.786],[-0.76,53.784],[-0.752,53.78],[-0.746,53.78],[-0.742,53.787],[-0.739,53.791],[-0.734,53.79],[-0.728,53.787],[-0.719,53.785],[-0.71,53.787],[-0.705,53.783],[-0.697,53.785],[-0.695,53.785],[-0.689,53.783],[-0.685,53.787],[-0.682,53.787],[-0.672,53.789],[-0.672,53.791],[-0.666,53.793],[-0.659,53.793],[-0.656,53.795],[-0.648,53.797],[-0.647,53.794],[-0.648,53.79],[-0.637,53.788],[-0.625,53.789],[-0.612,53.792],[-0.617,53.801],[-0.612,53.802],[-0.605,53.804],[-0.595,53.796],[-0.593,53.796],[-0.587,53.798],[-0.577,53.802],[-0.57,53.804],[-0.565,53.804],[-0.566,53.805],[-0.572,53.806],[-0.562,53.81],[-0.558,53.811],[-0.556,53.818],[-0.553,53.819],[-0.55,53.82],[-0.552,53.822],[-0.549,53.826],[-0.538,53.825],[-0.539,53.826],[-0.554,53.834],[-0.567,53.841],[-0.569,53.845],[-0.567,53.848],[-0.558,53.858],[-0.563,53.858],[-0.578,53.859],[-0.572,53.874],[-0.57,53.877],[-0.571,53.884],[-0.576,53.884],[-0.581,53.885],[-0.583,53.888],[-0.599,53.893],[-0.602,53.895],[-0.59,53.899],[-0.585,53.904],[-0.579,53.911],[-0.581,53.913],[-0.581,53.915],[-0.57,53.919],[-0.551,53.918],[-0.545,53.914],[-0.541,53.911],[-0.535,53.912],[-0.528,53.912],[-0.525,53.91],[-0.522,53.909],[-0.521,53.91],[-0.523,53.912],[-0.523,53.916],[-0.52,53.916],[-0.513,53.915],[-0.515,53.913],[-0.509,53.905],[-0.509,53.903],[-0.511,53.901],[-0.51,53.899],[-0.507,53.897],[-0.504,53.897],[-0.493,53.901],[-0.491,53.901],[-0.482,53.897],[-0.482,53.896],[-0.469,53.893],[-0.463,53.886],[-0.461,53.887],[-0.459,53.89],[-0.455,53.889],[-0.449,53.887],[-0.446,53.888],[-0.434,53.895],[-0.428,53.896],[-0.425,53.895],[-0.417,53.893],[-0.411,53.891],[-0.406,53.889],[-0.4,53.887],[-0.398,53.887],[-0.39,53.888],[-0.386,53.893],[-0.388,53.895],[-0.387,53.903],[-0.375,53.906],[-0.373,53.905],[-0.366,53.903],[-0.352,53.9],[-0.351,53.9],[-0.341,53.9],[-0.339,53.906],[-0.335,53.906],[-0.328,53.902],[-0.325,53.9],[-0.321,53.899],[-0.312,53.898],[-0.312,53.897],[-0.306,53.9],[-0.301,53.9],[-0.298,53.899],[-0.296,53.905],[-0.292,53.904],[-0.288,53.899],[-0.288,53.897],[-0.285,53.896],[-0.28,53.897],[-0.277,53.899],[-0.278,53.9],[-0.274,53.902],[-0.27,53.904],[-0.271,53.907],[-0.271,53.909],[-0.267,53.913],[-0.268,53.917],[-0.27,53.919],[-0.268,53.92],[-0.27,53.922],[-0.263,53.925],[-0.262,53.927],[-0.258,53.926],[-0.253,53.927],[-0.252,53.926],[-0.248,53.927],[-0.242,53.922],[-0.239,53.922],[-0.235,53.921],[-0.228,53.925],[-0.227,53.926],[-0.223,53.929],[-0.226,53.933],[-0.212,53.934],[-0.204,53.937],[-0.192,53.932],[-0.19,53.933],[-0.18,53.933],[-0.173,53.935],[-0.17,53.93],[-0.162,53.92],[-0.16,53.916],[-0.159,53.912],[-0.156,53.909],[-0.154,53.904],[-0.148,53.896],[-0.144,53.892],[-0.14,53.887],[-0.141,53.886],[-0.134,53.879],[-0.123,53.868],[-0.122,53.867],[-0.117,53.863],[-0.114,53.859],[-0.105,53.851],[-0.093,53.842],[-0.09,53.839],[-0.082,53.833],[-0.08,53.831],[-0.074,53.825],[-0.073,53.823],[-0.063,53.814],[-0.061,53.813],[-0.045,53.799],[-0.045,53.798],[-0.037,53.792],[-0.034,53.789],[-0.028,53.784],[-0.026,53.782],[-0.017,53.776],[-0.014,53.774],[-0.005,53.765],[0.003,53.759],[0.014,53.75],[0.016,53.749],[0.022,53.744],[0.028,53.74],[0.031,53.737],[0.032,53.735],[0.039,53.729],[0.046,53.723],[0.054,53.717],[0.056,53.715],[0.06,53.713],[0.065,53.709],[0.067,53.708],[0.069,53.705],[0.079,53.696],[0.085,53.691],[0.087,53.69],[0.093,53.685],[0.095,53.684],[0.104,53.677],[0.105,53.675],[0.109,53.671],[0.113,53.669],[0.116,53.666],[0.119,53.663],[0.122,53.66],[0.123,53.659],[0.125,53.658],[0.128,53.653],[0.127,53.652],[0.129,53.65],[0.133,53.647],[0.132,53.646],[0.133,53.644],[0.135,53.64],[0.134,53.64],[0.135,53.637],[0.139,53.632],[0.139,53.63],[0.141,53.627],[0.143,53.624],[0.145,53.619],[0.148,53.613],[0.149,53.61],[0.15,53.605],[0.149,53.601],[0.148,53.599],[0.144,53.595],[0.138,53.589],[0.133,53.587],[0.13,53.584],[0.126,53.582],[0.122,53.578],[0.117,53.575],[0.118,53.573],[0.111,53.571],[0.107,53.572],[0.106,53.573],[0.107,53.576],[0.111,53.579],[0.115,53.584],[0.115,53.585],[0.118,53.588],[0.12,53.591],[0.117,53.596],[0.112,53.6],[0.108,53.603],[0.104,53.608],[0.102,53.609],[0.106,53.601],[0.106,53.598],[0.105,53.595],[0.103,53.594],[0.1,53.594],[0.099,53.595],[0.096,53.594],[0.092,53.596],[0.088,53.596],[0.087,53.597],[0.087,53.606],[0.084,53.609],[0.084,53.612],[0.082,53.615],[0.079,53.615],[0.078,53.612],[0.08,53.608],[0.082,53.604],[0.081,53.6],[0.078,53.603],[0.074,53.604],[0.069,53.607],[0.065,53.609],[0.063,53.609],[0.059,53.611],[0.058,53.612],[0.055,53.612],[0.046,53.614],[0.042,53.614],[0.04,53.613],[0.039,53.615],[0.04,53.616],[0.033,53.617],[0.029,53.619],[0.021,53.622],[0.015,53.623],[0.006,53.625],[-0.006,53.626],[-0.018,53.627],[-0.033,53.627],[-0.054,53.628],[-0.055,53.628],[-0.067,53.628],[-0.073,53.629],[-0.084,53.629],[-0.087,53.629],[-0.091,53.63],[-0.095,53.633],[-0.098,53.633],[-0.102,53.633],[-0.11,53.636],[-0.12,53.64],[-0.128,53.644],[-0.135,53.649],[-0.136,53.649],[-0.126,53.642],[-0.125,53.641],[-0.121,53.64],[-0.119,53.638],[-0.115,53.637],[-0.119,53.635],[-0.133,53.64],[-0.153,53.651],[-0.162,53.655],[-0.168,53.66],[-0.174,53.662],[-0.177,53.663],[-0.178,53.664],[-0.182,53.667],[-0.187,53.669],[-0.189,53.67],[-0.194,53.671],[-0.2,53.676],[-0.206,53.683],[-0.209,53.687],[-0.219,53.698],[-0.222,53.703],[-0.228,53.708],[-0.23,53.711],[-0.233,53.715],[-0.238,53.72],[-0.243,53.724],[-0.245,53.726],[-0.247,53.726],[-0.252,53.732],[-0.258,53.736],[-0.273,53.74],[-0.269,53.742],[-0.267,53.74],[-0.258,53.738],[-0.257,53.739],[-0.265,53.741],[-0.264,53.742],[-0.259,53.741],[-0.258,53.743],[-0.274,53.746],[-0.275,53.744],[-0.274,53.741],[-0.279,53.741],[-0.285,53.742],[-0.295,53.742],[-0.291,53.744],[-0.292,53.746],[-0.302,53.746],[-0.301,53.743],[-0.298,53.743],[-0.297,53.743],[-0.309,53.742],[-0.323,53.74],[-0.327,53.739],[-0.332,53.738],[-0.335,53.737],[-0.34,53.737],[-0.339,53.736],[-0.362,53.73],[-0.367,53.728],[-0.38,53.725],[-0.388,53.724],[-0.395,53.722],[-0.419,53.72],[-0.431,53.717],[-0.438,53.716],[-0.442,53.714],[-0.448,53.714],[-0.453,53.715],[-0.458,53.716],[-0.467,53.717],[-0.475,53.717],[-0.486,53.717],[-0.494,53.716],[-0.522,53.711],[-0.536,53.709],[-0.541,53.709],[-0.551,53.709],[-0.556,53.711],[-0.568,53.715],[-0.575,53.72],[-0.581,53.724],[-0.584,53.725],[-0.594,53.729],[-0.599,53.729],[-0.61,53.731],[-0.624,53.73],[-0.652,53.725],[-0.66,53.724],[-0.669,53.722],[-0.675,53.72],[-0.678,53.715]]]},"properties":{"OBJECTID":48,"NAME":"HU","KEY":"HU","Shape_Leng":3.03857,"Shape_Area":0.136344}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.783,53.729],[-1.783,53.726],[-1.78,53.724],[-1.78,53.722],[-1.782,53.72],[-1.78,53.719],[-1.78,53.717],[-1.783,53.716],[-1.787,53.717],[-1.786,53.718],[-1.787,53.72],[-1.789,53.721],[-1.793,53.72],[-1.797,53.72],[-1.798,53.719],[-1.802,53.719],[-1.805,53.716],[-1.807,53.718],[-1.81,53.717],[-1.812,53.718],[-1.813,53.718],[-1.808,53.715],[-1.808,53.712],[-1.807,53.712],[-1.802,53.712],[-1.802,53.709],[-1.8,53.708],[-1.795,53.705],[-1.797,53.703],[-1.806,53.701],[-1.809,53.701],[-1.815,53.699],[-1.816,53.697],[-1.809,53.698],[-1.806,53.699],[-1.804,53.696],[-1.812,53.693],[-1.809,53.692],[-1.808,53.691],[-1.806,53.689],[-1.806,53.688],[-1.806,53.686],[-1.812,53.685],[-1.813,53.683],[-1.812,53.683],[-1.814,53.681],[-1.816,53.681],[-1.82,53.682],[-1.823,53.68],[-1.822,53.678],[-1.823,53.676],[-1.828,53.674],[-1.828,53.673],[-1.833,53.672],[-1.837,53.672],[-1.84,53.671],[-1.844,53.671],[-1.846,53.67],[-1.85,53.67],[-1.85,53.668],[-1.848,53.667],[-1.85,53.665],[-1.856,53.664],[-1.857,53.662],[-1.861,53.664],[-1.864,53.664],[-1.865,53.663],[-1.867,53.661],[-1.873,53.662],[-1.874,53.661],[-1.878,53.658],[-1.88,53.656],[-1.886,53.655],[-1.889,53.653],[-1.891,53.653],[-1.895,53.645],[-1.901,53.644],[-1.901,53.646],[-1.904,53.648],[-1.909,53.648],[-1.907,53.656],[-1.905,53.657],[-1.9,53.662],[-1.904,53.661],[-1.906,53.659],[-1.908,53.66],[-1.91,53.658],[-1.913,53.656],[-1.914,53.655],[-1.917,53.653],[-1.912,53.651],[-1.917,53.649],[-1.916,53.646],[-1.914,53.646],[-1.912,53.644],[-1.915,53.642],[-1.917,53.642],[-1.919,53.639],[-1.92,53.639],[-1.924,53.636],[-1.926,53.636],[-1.931,53.635],[-1.935,53.634],[-1.938,53.634],[-1.939,53.635],[-1.942,53.636],[-1.939,53.638],[-1.938,53.641],[-1.959,53.632],[-1.965,53.627],[-1.982,53.636],[-1.984,53.636],[-2.001,53.632],[-2.012,53.63],[-2.02,53.63],[-2.034,53.629],[-2.039,53.628],[-2.036,53.645],[-2.036,53.647],[-2.032,53.651],[-2.022,53.662],[-2.027,53.66],[-2.039,53.659],[-2.036,53.664],[-2.033,53.667],[-2.028,53.674],[-2.037,53.678],[-2.041,53.686],[-2.045,53.689],[-2.046,53.694],[-2.046,53.697],[-2.042,53.706],[-2.031,53.712],[-2.036,53.717],[-2.036,53.718],[-2.033,53.725],[-2.031,53.726],[-2.03,53.728],[-2.032,53.732],[-2.034,53.733],[-2.038,53.728],[-2.04,53.729],[-2.042,53.731],[-2.045,53.732],[-2.052,53.734],[-2.052,53.738],[-2.054,53.739],[-2.066,53.74],[-2.064,53.739],[-2.071,53.738],[-2.077,53.741],[-2.083,53.74],[-2.095,53.737],[-2.104,53.742],[-2.1,53.742],[-2.094,53.743],[-2.094,53.744],[-2.099,53.746],[-2.108,53.751],[-2.116,53.752],[-2.121,53.754],[-2.125,53.765],[-2.138,53.769],[-2.139,53.775],[-2.141,53.789],[-2.137,53.792],[-2.135,53.796],[-2.131,53.8],[-2.129,53.799],[-2.126,53.8],[-2.12,53.798],[-2.108,53.81],[-2.106,53.811],[-2.1,53.813],[-2.084,53.819],[-2.074,53.819],[-2.073,53.82],[-2.057,53.822],[-2.053,53.822],[-2.032,53.814],[-2.029,53.809],[-2.001,53.804],[-1.996,53.802],[-1.982,53.794],[-1.982,53.793],[-1.985,53.791],[-1.985,53.788],[-1.992,53.785],[-1.996,53.784],[-1.997,53.782],[-1.985,53.778],[-1.983,53.778],[-1.973,53.78],[-1.966,53.788],[-1.961,53.79],[-1.957,53.791],[-1.952,53.787],[-1.942,53.788],[-1.93,53.786],[-1.925,53.781],[-1.912,53.776],[-1.909,53.777],[-1.903,53.784],[-1.898,53.781],[-1.895,53.782],[-1.891,53.782],[-1.888,53.783],[-1.886,53.78],[-1.88,53.78],[-1.877,53.778],[-1.881,53.776],[-1.879,53.775],[-1.876,53.776],[-1.87,53.774],[-1.871,53.773],[-1.87,53.771],[-1.867,53.77],[-1.87,53.768],[-1.872,53.767],[-1.872,53.764],[-1.873,53.763],[-1.866,53.763],[-1.866,53.761],[-1.864,53.76],[-1.864,53.757],[-1.87,53.755],[-1.868,53.753],[-1.861,53.752],[-1.861,53.75],[-1.853,53.753],[-1.852,53.754],[-1.846,53.753],[-1.843,53.755],[-1.841,53.757],[-1.836,53.758],[-1.828,53.764],[-1.824,53.763],[-1.818,53.764],[-1.816,53.763],[-1.814,53.763],[-1.811,53.761],[-1.808,53.763],[-1.807,53.763],[-1.806,53.761],[-1.804,53.761],[-1.802,53.759],[-1.802,53.755],[-1.798,53.753],[-1.795,53.75],[-1.793,53.749],[-1.793,53.747],[-1.789,53.744],[-1.785,53.742],[-1.784,53.741],[-1.781,53.739],[-1.777,53.738],[-1.787,53.732],[-1.785,53.731],[-1.783,53.729]]]},"properties":{"OBJECTID":49,"NAME":"HX","KEY":"HX","Shape_Leng":1.40508,"Shape_Area":0.038238}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.126,51.519],[0.119,51.518],[0.115,51.516],[0.106,51.514],[0.099,51.515],[0.098,51.516],[0.091,51.515],[0.089,51.514],[0.088,51.515],[0.082,51.516],[0.082,51.514],[0.078,51.515],[0.075,51.521],[0.073,51.521],[0.073,51.523],[0.076,51.524],[0.075,51.526],[0.078,51.527],[0.075,51.529],[0.072,51.529],[0.072,51.533],[0.067,51.54],[0.067,51.541],[0.068,51.546],[0.067,51.553],[0.067,51.555],[0.065,51.556],[0.058,51.561],[0.049,51.572],[0.043,51.571],[0.041,51.572],[0.04,51.574],[0.041,51.575],[0.038,51.577],[0.038,51.578],[0.042,51.578],[0.04,51.583],[0.04,51.586],[0.038,51.59],[0.038,51.591],[0.039,51.595],[0.038,51.595],[0.04,51.598],[0.036,51.599],[0.034,51.598],[0.032,51.599],[0.032,51.601],[0.031,51.601],[0.03,51.599],[0.027,51.598],[0.024,51.599],[0.02,51.6],[0.018,51.601],[0.015,51.601],[0.013,51.6],[0.007,51.599],[0.006,51.597],[-0.001,51.6],[-0.001,51.601],[0.002,51.603],[0.001,51.605],[0.004,51.606],[0.01,51.61],[0.012,51.612],[0.009,51.613],[0.01,51.615],[0.014,51.618],[0.016,51.619],[0.014,51.623],[0.017,51.624],[0.023,51.627],[0.022,51.628],[0.023,51.631],[0.023,51.635],[0.025,51.635],[0.034,51.639],[0.034,51.642],[0.036,51.647],[0.035,51.647],[0.022,51.65],[0.019,51.653],[0.019,51.655],[0.011,51.662],[0.015,51.665],[0.017,51.665],[0.025,51.665],[0.026,51.666],[0.03,51.666],[0.029,51.669],[0.031,51.671],[0.033,51.671],[0.043,51.668],[0.045,51.669],[0.044,51.673],[0.046,51.675],[0.049,51.674],[0.054,51.675],[0.061,51.675],[0.063,51.675],[0.067,51.672],[0.07,51.671],[0.081,51.669],[0.085,51.67],[0.087,51.67],[0.09,51.667],[0.088,51.664],[0.092,51.662],[0.093,51.659],[0.094,51.656],[0.098,51.653],[0.102,51.653],[0.097,51.648],[0.103,51.643],[0.104,51.644],[0.109,51.647],[0.11,51.645],[0.111,51.642],[0.109,51.641],[0.112,51.638],[0.114,51.639],[0.117,51.637],[0.118,51.636],[0.119,51.635],[0.124,51.632],[0.125,51.63],[0.123,51.628],[0.127,51.624],[0.13,51.626],[0.134,51.623],[0.141,51.623],[0.146,51.622],[0.147,51.618],[0.15,51.616],[0.151,51.61],[0.147,51.606],[0.147,51.605],[0.137,51.603],[0.135,51.605],[0.125,51.601],[0.118,51.604],[0.112,51.601],[0.11,51.597],[0.108,51.594],[0.115,51.595],[0.113,51.591],[0.117,51.589],[0.11,51.589],[0.11,51.587],[0.112,51.583],[0.116,51.58],[0.114,51.577],[0.112,51.569],[0.111,51.567],[0.113,51.566],[0.12,51.567],[0.119,51.564],[0.119,51.563],[0.116,51.559],[0.113,51.558],[0.111,51.556],[0.113,51.555],[0.111,51.553],[0.108,51.552],[0.11,51.551],[0.11,51.548],[0.111,51.545],[0.11,51.543],[0.107,51.542],[0.112,51.539],[0.112,51.537],[0.111,51.536],[0.105,51.534],[0.109,51.533],[0.111,51.532],[0.112,51.533],[0.117,51.533],[0.123,51.532],[0.135,51.532],[0.137,51.531],[0.135,51.528],[0.141,51.527],[0.137,51.525],[0.137,51.523],[0.131,51.524],[0.129,51.526],[0.125,51.522],[0.126,51.519]]]},"properties":{"OBJECTID":50,"NAME":"IG","KEY":"IG","Shape_Leng":0.836517,"Shape_Area":0.0120061}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.695,52.352],[1.693,52.348],[1.689,52.339],[1.686,52.33],[1.682,52.325],[1.677,52.315],[1.678,52.313],[1.677,52.312],[1.674,52.312],[1.671,52.313],[1.662,52.308],[1.654,52.303],[1.646,52.296],[1.641,52.289],[1.637,52.284],[1.634,52.278],[1.632,52.271],[1.631,52.266],[1.63,52.259],[1.63,52.252],[1.63,52.251],[1.629,52.237],[1.625,52.225],[1.624,52.215],[1.623,52.204],[1.623,52.193],[1.623,52.189],[1.623,52.187],[1.621,52.184],[1.612,52.171],[1.609,52.165],[1.605,52.158],[1.603,52.153],[1.601,52.146],[1.597,52.135],[1.597,52.134],[1.593,52.124],[1.591,52.119],[1.589,52.112],[1.588,52.105],[1.587,52.099],[1.586,52.094],[1.584,52.089],[1.581,52.086],[1.576,52.083],[1.563,52.079],[1.555,52.077],[1.53,52.07],[1.523,52.067],[1.515,52.065],[1.505,52.062],[1.495,52.059],[1.485,52.056],[1.477,52.052],[1.472,52.05],[1.469,52.047],[1.465,52.041],[1.462,52.038],[1.46,52.038],[1.455,52.036],[1.453,52.034],[1.446,52.027],[1.442,52.022],[1.437,52.014],[1.435,52.009],[1.431,52.004],[1.425,52],[1.419,51.998],[1.412,51.993],[1.404,51.99],[1.398,51.988],[1.395,51.988],[1.394,51.992],[1.392,51.996],[1.39,51.997],[1.383,52.002],[1.374,52.004],[1.366,52.007],[1.364,52.01],[1.365,52.015],[1.364,52.019],[1.363,52.022],[1.36,52.023],[1.359,52.026],[1.354,52.027],[1.346,52.03],[1.344,52.032],[1.344,52.033],[1.347,52.035],[1.351,52.038],[1.352,52.04],[1.351,52.041],[1.352,52.044],[1.35,52.046],[1.342,52.053],[1.34,52.053],[1.343,52.057],[1.344,52.058],[1.342,52.059],[1.342,52.063],[1.343,52.064],[1.335,52.068],[1.329,52.07],[1.327,52.074],[1.328,52.074],[1.325,52.077],[1.32,52.08],[1.32,52.082],[1.322,52.084],[1.321,52.087],[1.322,52.089],[1.325,52.089],[1.327,52.091],[1.327,52.093],[1.331,52.093],[1.332,52.095],[1.332,52.098],[1.337,52.1],[1.339,52.101],[1.345,52.102],[1.345,52.103],[1.34,52.102],[1.338,52.104],[1.333,52.101],[1.331,52.1],[1.331,52.098],[1.326,52.096],[1.325,52.094],[1.325,52.09],[1.321,52.09],[1.317,52.089],[1.315,52.086],[1.316,52.085],[1.313,52.083],[1.312,52.08],[1.313,52.079],[1.308,52.079],[1.302,52.079],[1.295,52.079],[1.294,52.076],[1.298,52.076],[1.304,52.077],[1.307,52.077],[1.31,52.077],[1.314,52.076],[1.317,52.076],[1.319,52.072],[1.321,52.072],[1.323,52.071],[1.322,52.069],[1.32,52.067],[1.317,52.066],[1.323,52.064],[1.322,52.067],[1.324,52.068],[1.325,52.064],[1.327,52.063],[1.333,52.059],[1.333,52.058],[1.332,52.054],[1.332,52.051],[1.333,52.05],[1.339,52.046],[1.345,52.044],[1.346,52.042],[1.347,52.04],[1.343,52.039],[1.344,52.038],[1.343,52.037],[1.338,52.039],[1.339,52.043],[1.338,52.045],[1.336,52.045],[1.336,52.04],[1.337,52.039],[1.342,52.036],[1.339,52.034],[1.34,52.031],[1.341,52.031],[1.344,52.027],[1.341,52.028],[1.337,52.026],[1.338,52.026],[1.345,52.027],[1.348,52.026],[1.352,52.025],[1.355,52.024],[1.358,52.021],[1.359,52.017],[1.357,52.017],[1.353,52.017],[1.352,52.015],[1.353,52.013],[1.357,52.013],[1.357,52.01],[1.36,52.007],[1.365,52.003],[1.368,52.003],[1.375,52.001],[1.384,51.996],[1.386,51.992],[1.388,51.99],[1.392,51.989],[1.39,51.986],[1.389,51.978],[1.386,51.978],[1.382,51.975],[1.375,51.968],[1.37,51.965],[1.368,51.963],[1.346,51.957],[1.342,51.954],[1.335,51.947],[1.326,51.939],[1.323,51.936],[1.32,51.933],[1.317,51.934],[1.318,51.937],[1.32,51.941],[1.318,51.947],[1.317,51.947],[1.317,51.95],[1.315,51.952],[1.283,51.966],[1.284,51.967],[1.282,51.969],[1.28,51.977],[1.28,51.981],[1.283,51.99],[1.281,51.991],[1.279,51.992],[1.269,51.995],[1.271,51.996],[1.264,51.996],[1.264,51.998],[1.261,51.998],[1.257,52],[1.254,52],[1.256,51.998],[1.255,51.997],[1.251,51.999],[1.246,52],[1.23,52.006],[1.228,52.007],[1.224,52.006],[1.22,52.006],[1.216,52.006],[1.215,52.008],[1.212,52.011],[1.209,52.012],[1.202,52.013],[1.2,52.015],[1.198,52.015],[1.193,52.015],[1.192,52.015],[1.189,52.015],[1.187,52.016],[1.184,52.018],[1.181,52.02],[1.176,52.024],[1.174,52.024],[1.17,52.03],[1.164,52.029],[1.162,52.03],[1.158,52.034],[1.158,52.037],[1.162,52.043],[1.164,52.045],[1.161,52.046],[1.16,52.044],[1.157,52.041],[1.157,52.039],[1.155,52.036],[1.153,52.035],[1.151,52.035],[1.15,52.034],[1.153,52.033],[1.157,52.029],[1.16,52.026],[1.162,52.025],[1.164,52.022],[1.168,52.02],[1.172,52.015],[1.177,52.012],[1.179,52.01],[1.183,52.008],[1.188,52.006],[1.191,52.006],[1.193,52.007],[1.196,52.007],[1.198,52.006],[1.201,52.005],[1.204,52.004],[1.207,52.001],[1.21,51.997],[1.212,51.996],[1.217,51.996],[1.222,51.996],[1.225,51.997],[1.228,51.996],[1.232,51.995],[1.235,51.995],[1.242,51.994],[1.244,51.992],[1.248,51.991],[1.253,51.991],[1.256,51.99],[1.262,51.989],[1.268,51.988],[1.27,51.985],[1.27,51.976],[1.267,51.977],[1.267,51.976],[1.27,51.976],[1.27,51.971],[1.272,51.966],[1.279,51.961],[1.279,51.957],[1.272,51.955],[1.268,51.954],[1.265,51.955],[1.258,51.959],[1.255,51.96],[1.249,51.961],[1.239,51.96],[1.237,51.961],[1.234,51.96],[1.231,51.958],[1.231,51.957],[1.224,51.955],[1.223,51.955],[1.219,51.953],[1.216,51.954],[1.213,51.956],[1.209,51.955],[1.201,51.956],[1.198,51.956],[1.193,51.956],[1.19,51.956],[1.186,51.957],[1.183,51.958],[1.181,51.961],[1.179,51.964],[1.175,51.965],[1.17,51.965],[1.165,51.966],[1.165,51.969],[1.158,51.966],[1.155,51.965],[1.153,51.964],[1.145,51.963],[1.138,51.96],[1.136,51.958],[1.132,51.957],[1.13,51.954],[1.128,51.954],[1.12,51.956],[1.113,51.955],[1.109,51.954],[1.103,51.954],[1.1,51.954],[1.098,51.956],[1.096,51.956],[1.094,51.957],[1.092,51.958],[1.094,51.963],[1.1,51.964],[1.101,51.964],[1.107,51.965],[1.106,51.967],[1.103,51.967],[1.101,51.966],[1.098,51.968],[1.099,51.969],[1.096,51.971],[1.09,51.973],[1.091,51.974],[1.086,51.977],[1.087,51.973],[1.078,51.974],[1.074,51.976],[1.068,51.977],[1.064,51.978],[1.059,51.977],[1.053,51.977],[1.047,51.979],[1.05,51.983],[1.047,51.987],[1.037,51.985],[1.028,51.987],[1.024,51.987],[1.022,51.99],[1.022,51.993],[1.023,51.996],[1.027,51.996],[1.03,51.998],[1.026,52],[1.025,52.005],[1.024,52.006],[1.027,52.007],[1.03,52.009],[1.035,52.01],[1.036,52.012],[1.04,52.012],[1.044,52.014],[1.048,52.013],[1.052,52.02],[1.042,52.024],[1.035,52.023],[1.027,52.027],[1.023,52.031],[1.018,52.031],[1.013,52.028],[1.01,52.027],[1.011,52.025],[1.013,52.02],[1.01,52.019],[1.006,52.017],[0.998,52.016],[0.995,52.014],[0.996,52.013],[0.995,52.007],[0.997,52.005],[0.999,52.002],[0.992,52.001],[0.993,51.999],[0.988,52],[0.984,52],[0.984,51.998],[0.982,51.996],[0.978,51.996],[0.976,51.995],[0.972,51.996],[0.969,51.999],[0.962,51.999],[0.953,51.999],[0.95,52.001],[0.942,52.001],[0.945,52],[0.942,51.999],[0.938,52.001],[0.931,52.001],[0.929,52.001],[0.931,52.004],[0.933,52.008],[0.929,52.009],[0.925,52.007],[0.924,52.005],[0.919,52.004],[0.916,52.002],[0.913,52.006],[0.916,52.009],[0.915,52.01],[0.917,52.013],[0.915,52.016],[0.916,52.02],[0.916,52.021],[0.923,52.026],[0.924,52.027],[0.923,52.028],[0.917,52.03],[0.912,52.032],[0.914,52.026],[0.912,52.025],[0.908,52.027],[0.909,52.029],[0.906,52.031],[0.909,52.034],[0.908,52.036],[0.904,52.035],[0.905,52.036],[0.902,52.041],[0.9,52.045],[0.898,52.045],[0.898,52.043],[0.894,52.041],[0.892,52.037],[0.884,52.035],[0.881,52.034],[0.875,52.037],[0.876,52.039],[0.876,52.042],[0.881,52.044],[0.882,52.045],[0.88,52.047],[0.88,52.049],[0.883,52.048],[0.883,52.053],[0.883,52.055],[0.878,52.057],[0.871,52.058],[0.87,52.058],[0.864,52.062],[0.86,52.062],[0.854,52.061],[0.855,52.063],[0.841,52.066],[0.837,52.07],[0.84,52.073],[0.843,52.076],[0.843,52.078],[0.842,52.083],[0.843,52.085],[0.848,52.088],[0.848,52.091],[0.853,52.09],[0.854,52.094],[0.845,52.099],[0.841,52.1],[0.838,52.1],[0.847,52.105],[0.853,52.105],[0.866,52.105],[0.863,52.108],[0.864,52.109],[0.86,52.111],[0.862,52.113],[0.861,52.114],[0.859,52.114],[0.857,52.113],[0.853,52.114],[0.852,52.115],[0.849,52.117],[0.85,52.119],[0.846,52.123],[0.847,52.124],[0.856,52.129],[0.854,52.131],[0.85,52.137],[0.848,52.137],[0.843,52.133],[0.841,52.131],[0.84,52.134],[0.836,52.134],[0.829,52.132],[0.823,52.133],[0.82,52.135],[0.816,52.135],[0.805,52.132],[0.804,52.131],[0.799,52.135],[0.794,52.135],[0.792,52.136],[0.785,52.132],[0.777,52.135],[0.77,52.139],[0.767,52.136],[0.764,52.134],[0.759,52.134],[0.754,52.134],[0.752,52.133],[0.744,52.132],[0.742,52.129],[0.738,52.126],[0.73,52.124],[0.73,52.123],[0.735,52.116],[0.732,52.117],[0.73,52.119],[0.726,52.119],[0.724,52.12],[0.72,52.119],[0.717,52.119],[0.715,52.12],[0.714,52.122],[0.707,52.124],[0.702,52.124],[0.698,52.125],[0.693,52.121],[0.693,52.12],[0.698,52.119],[0.696,52.118],[0.691,52.118],[0.691,52.121],[0.693,52.124],[0.688,52.123],[0.686,52.116],[0.682,52.112],[0.681,52.115],[0.68,52.117],[0.675,52.114],[0.671,52.113],[0.666,52.111],[0.664,52.112],[0.666,52.116],[0.665,52.119],[0.663,52.119],[0.655,52.115],[0.649,52.115],[0.643,52.114],[0.638,52.11],[0.637,52.11],[0.624,52.117],[0.617,52.121],[0.625,52.123],[0.633,52.13],[0.629,52.131],[0.617,52.129],[0.617,52.131],[0.616,52.133],[0.622,52.135],[0.616,52.138],[0.614,52.138],[0.616,52.141],[0.616,52.144],[0.612,52.147],[0.617,52.149],[0.62,52.149],[0.623,52.152],[0.62,52.156],[0.617,52.157],[0.615,52.16],[0.604,52.163],[0.596,52.158],[0.595,52.159],[0.59,52.161],[0.587,52.163],[0.583,52.165],[0.584,52.166],[0.581,52.171],[0.583,52.173],[0.591,52.175],[0.589,52.179],[0.586,52.184],[0.586,52.191],[0.586,52.194],[0.58,52.198],[0.578,52.197],[0.572,52.198],[0.572,52.199],[0.571,52.202],[0.566,52.202],[0.562,52.203],[0.565,52.207],[0.567,52.208],[0.569,52.214],[0.558,52.216],[0.558,52.22],[0.561,52.221],[0.561,52.224],[0.557,52.228],[0.554,52.229],[0.548,52.23],[0.548,52.232],[0.537,52.236],[0.532,52.237],[0.533,52.246],[0.537,52.249],[0.528,52.251],[0.536,52.254],[0.54,52.257],[0.539,52.264],[0.539,52.267],[0.539,52.269],[0.523,52.273],[0.524,52.273],[0.538,52.276],[0.535,52.28],[0.533,52.281],[0.525,52.28],[0.514,52.282],[0.514,52.284],[0.51,52.287],[0.508,52.29],[0.499,52.29],[0.498,52.292],[0.503,52.295],[0.501,52.298],[0.497,52.298],[0.493,52.299],[0.491,52.298],[0.489,52.297],[0.485,52.295],[0.483,52.293],[0.479,52.291],[0.474,52.292],[0.472,52.29],[0.464,52.296],[0.465,52.298],[0.468,52.3],[0.467,52.302],[0.468,52.306],[0.475,52.313],[0.463,52.318],[0.461,52.318],[0.451,52.314],[0.449,52.31],[0.441,52.313],[0.44,52.314],[0.437,52.315],[0.431,52.317],[0.427,52.318],[0.425,52.321],[0.424,52.323],[0.421,52.326],[0.422,52.327],[0.425,52.334],[0.428,52.336],[0.43,52.335],[0.433,52.337],[0.432,52.341],[0.435,52.343],[0.434,52.347],[0.428,52.35],[0.429,52.354],[0.427,52.358],[0.419,52.356],[0.415,52.355],[0.413,52.355],[0.407,52.357],[0.405,52.357],[0.401,52.355],[0.396,52.359],[0.403,52.362],[0.403,52.367],[0.405,52.367],[0.412,52.371],[0.408,52.375],[0.408,52.377],[0.403,52.379],[0.399,52.38],[0.394,52.379],[0.388,52.378],[0.39,52.382],[0.393,52.383],[0.391,52.385],[0.387,52.385],[0.378,52.389],[0.383,52.392],[0.385,52.392],[0.384,52.394],[0.38,52.401],[0.395,52.403],[0.397,52.404],[0.392,52.413],[0.401,52.421],[0.407,52.421],[0.413,52.425],[0.413,52.426],[0.409,52.43],[0.435,52.433],[0.429,52.444],[0.436,52.448],[0.448,52.456],[0.449,52.452],[0.472,52.46],[0.471,52.468],[0.458,52.47],[0.451,52.472],[0.439,52.476],[0.436,52.474],[0.439,52.472],[0.425,52.472],[0.424,52.473],[0.425,52.483],[0.422,52.49],[0.427,52.492],[0.436,52.486],[0.442,52.489],[0.445,52.493],[0.431,52.498],[0.425,52.497],[0.419,52.5],[0.412,52.505],[0.412,52.509],[0.417,52.513],[0.419,52.513],[0.43,52.511],[0.433,52.515],[0.436,52.517],[0.434,52.518],[0.441,52.521],[0.45,52.529],[0.463,52.526],[0.468,52.529],[0.469,52.533],[0.471,52.533],[0.471,52.54],[0.468,52.543],[0.468,52.548],[0.467,52.55],[0.486,52.554],[0.492,52.556],[0.494,52.555],[0.503,52.55],[0.504,52.551],[0.518,52.547],[0.526,52.544],[0.526,52.549],[0.528,52.551],[0.541,52.549],[0.543,52.548],[0.547,52.549],[0.551,52.544],[0.557,52.545],[0.56,52.551],[0.553,52.555],[0.557,52.556],[0.563,52.562],[0.565,52.563],[0.574,52.565],[0.576,52.567],[0.597,52.573],[0.598,52.572],[0.601,52.573],[0.608,52.576],[0.629,52.579],[0.624,52.569],[0.643,52.574],[0.655,52.578],[0.657,52.586],[0.659,52.588],[0.664,52.593],[0.668,52.588],[0.676,52.593],[0.696,52.59],[0.696,52.591],[0.718,52.584],[0.72,52.587],[0.722,52.59],[0.726,52.588],[0.736,52.589],[0.743,52.595],[0.752,52.595],[0.752,52.596],[0.756,52.597],[0.756,52.605],[0.758,52.606],[0.764,52.609],[0.767,52.617],[0.767,52.618],[0.771,52.619],[0.774,52.623],[0.773,52.624],[0.774,52.628],[0.77,52.627],[0.766,52.625],[0.761,52.629],[0.76,52.632],[0.758,52.633],[0.752,52.633],[0.751,52.634],[0.75,52.636],[0.762,52.643],[0.766,52.642],[0.773,52.642],[0.774,52.641],[0.781,52.644],[0.782,52.643],[0.789,52.644],[0.799,52.641],[0.801,52.642],[0.81,52.642],[0.812,52.645],[0.814,52.646],[0.815,52.649],[0.811,52.649],[0.812,52.652],[0.819,52.656],[0.825,52.656],[0.828,52.657],[0.834,52.66],[0.834,52.661],[0.839,52.662],[0.845,52.664],[0.848,52.663],[0.853,52.663],[0.858,52.664],[0.87,52.66],[0.873,52.658],[0.88,52.66],[0.885,52.662],[0.894,52.659],[0.894,52.657],[0.892,52.654],[0.898,52.652],[0.899,52.651],[0.904,52.649],[0.909,52.649],[0.909,52.653],[0.909,52.656],[0.91,52.656],[0.918,52.651],[0.922,52.654],[0.927,52.653],[0.929,52.653],[0.935,52.654],[0.933,52.649],[0.929,52.646],[0.929,52.645],[0.934,52.645],[0.937,52.645],[0.942,52.648],[0.942,52.647],[0.94,52.645],[0.936,52.644],[0.939,52.639],[0.939,52.637],[0.932,52.636],[0.93,52.629],[0.931,52.628],[0.939,52.629],[0.945,52.631],[0.949,52.629],[0.953,52.628],[0.96,52.628],[0.964,52.626],[0.966,52.624],[0.955,52.621],[0.953,52.62],[0.953,52.619],[0.957,52.617],[0.961,52.617],[0.961,52.614],[0.968,52.612],[0.97,52.61],[0.97,52.607],[0.96,52.605],[0.952,52.603],[0.955,52.601],[0.962,52.6],[0.968,52.601],[0.971,52.599],[0.968,52.597],[0.967,52.593],[0.963,52.591],[0.958,52.588],[0.954,52.588],[0.953,52.592],[0.951,52.592],[0.946,52.59],[0.944,52.592],[0.942,52.596],[0.942,52.597],[0.94,52.599],[0.935,52.603],[0.929,52.601],[0.931,52.6],[0.917,52.596],[0.914,52.593],[0.905,52.594],[0.892,52.59],[0.893,52.584],[0.896,52.582],[0.898,52.576],[0.892,52.574],[0.897,52.573],[0.898,52.57],[0.9,52.57],[0.906,52.57],[0.911,52.569],[0.915,52.565],[0.918,52.561],[0.913,52.554],[0.905,52.559],[0.902,52.56],[0.903,52.563],[0.895,52.558],[0.891,52.559],[0.889,52.559],[0.881,52.553],[0.875,52.552],[0.876,52.55],[0.87,52.551],[0.87,52.545],[0.867,52.542],[0.859,52.541],[0.859,52.535],[0.856,52.535],[0.859,52.532],[0.86,52.531],[0.859,52.526],[0.857,52.525],[0.856,52.524],[0.848,52.523],[0.841,52.524],[0.834,52.518],[0.838,52.514],[0.842,52.507],[0.846,52.506],[0.85,52.504],[0.861,52.502],[0.864,52.502],[0.868,52.507],[0.87,52.507],[0.871,52.508],[0.88,52.509],[0.882,52.503],[0.885,52.502],[0.883,52.5],[0.885,52.498],[0.892,52.497],[0.891,52.492],[0.897,52.49],[0.899,52.489],[0.9,52.486],[0.9,52.485],[0.903,52.482],[0.897,52.481],[0.893,52.483],[0.882,52.483],[0.88,52.478],[0.881,52.476],[0.885,52.473],[0.887,52.469],[0.885,52.467],[0.882,52.467],[0.878,52.469],[0.875,52.456],[0.869,52.454],[0.859,52.458],[0.845,52.456],[0.842,52.456],[0.836,52.453],[0.833,52.454],[0.832,52.457],[0.821,52.456],[0.818,52.457],[0.811,52.456],[0.81,52.455],[0.805,52.452],[0.797,52.445],[0.791,52.44],[0.787,52.437],[0.784,52.434],[0.783,52.433],[0.794,52.436],[0.807,52.439],[0.809,52.436],[0.816,52.428],[0.843,52.435],[0.845,52.428],[0.837,52.424],[0.838,52.42],[0.838,52.415],[0.839,52.414],[0.842,52.416],[0.842,52.419],[0.845,52.42],[0.854,52.418],[0.855,52.421],[0.855,52.424],[0.856,52.425],[0.862,52.424],[0.874,52.425],[0.876,52.424],[0.88,52.419],[0.881,52.414],[0.892,52.415],[0.897,52.416],[0.913,52.423],[0.914,52.424],[0.924,52.423],[0.926,52.422],[0.935,52.42],[0.95,52.419],[0.953,52.422],[0.954,52.423],[0.963,52.418],[0.974,52.417],[0.979,52.421],[0.983,52.42],[0.986,52.418],[0.989,52.418],[0.99,52.417],[0.993,52.417],[0.994,52.421],[1.001,52.42],[1.006,52.418],[1.009,52.418],[1.014,52.42],[1.016,52.42],[1.021,52.415],[1.025,52.412],[1.031,52.414],[1.033,52.42],[1.028,52.422],[1.033,52.425],[1.04,52.423],[1.042,52.424],[1.05,52.426],[1.056,52.425],[1.062,52.424],[1.064,52.425],[1.065,52.433],[1.065,52.435],[1.073,52.437],[1.073,52.44],[1.069,52.445],[1.065,52.448],[1.064,52.448],[1.066,52.453],[1.068,52.454],[1.07,52.452],[1.075,52.453],[1.073,52.455],[1.086,52.458],[1.091,52.455],[1.092,52.452],[1.096,52.452],[1.101,52.451],[1.109,52.45],[1.109,52.449],[1.115,52.445],[1.119,52.445],[1.124,52.438],[1.13,52.438],[1.134,52.438],[1.141,52.436],[1.142,52.436],[1.149,52.437],[1.15,52.439],[1.151,52.442],[1.151,52.444],[1.156,52.445],[1.158,52.441],[1.156,52.44],[1.156,52.435],[1.159,52.434],[1.162,52.429],[1.164,52.435],[1.163,52.436],[1.163,52.439],[1.162,52.444],[1.163,52.445],[1.163,52.447],[1.165,52.448],[1.168,52.444],[1.168,52.441],[1.171,52.44],[1.168,52.432],[1.175,52.427],[1.177,52.426],[1.184,52.427],[1.185,52.423],[1.185,52.419],[1.184,52.417],[1.186,52.407],[1.189,52.407],[1.194,52.41],[1.196,52.412],[1.202,52.422],[1.205,52.422],[1.206,52.42],[1.212,52.42],[1.211,52.425],[1.209,52.431],[1.207,52.432],[1.211,52.438],[1.208,52.444],[1.213,52.446],[1.216,52.445],[1.22,52.45],[1.224,52.457],[1.226,52.463],[1.231,52.461],[1.235,52.458],[1.239,52.457],[1.246,52.457],[1.252,52.456],[1.254,52.459],[1.258,52.458],[1.26,52.458],[1.264,52.454],[1.269,52.452],[1.272,52.453],[1.274,52.451],[1.276,52.45],[1.277,52.453],[1.275,52.455],[1.28,52.456],[1.282,52.458],[1.284,52.456],[1.29,52.457],[1.296,52.46],[1.306,52.458],[1.309,52.461],[1.31,52.46],[1.315,52.46],[1.319,52.462],[1.322,52.462],[1.327,52.462],[1.333,52.462],[1.337,52.464],[1.34,52.465],[1.344,52.466],[1.35,52.464],[1.355,52.464],[1.358,52.459],[1.362,52.46],[1.365,52.457],[1.374,52.458],[1.377,52.459],[1.377,52.452],[1.383,52.451],[1.382,52.448],[1.377,52.444],[1.386,52.437],[1.381,52.435],[1.374,52.434],[1.373,52.432],[1.364,52.429],[1.353,52.423],[1.357,52.422],[1.359,52.425],[1.364,52.427],[1.367,52.427],[1.371,52.428],[1.373,52.43],[1.374,52.43],[1.376,52.428],[1.372,52.427],[1.37,52.426],[1.373,52.423],[1.367,52.418],[1.366,52.416],[1.372,52.412],[1.376,52.412],[1.381,52.413],[1.385,52.415],[1.391,52.416],[1.395,52.414],[1.396,52.411],[1.403,52.41],[1.403,52.413],[1.4,52.416],[1.401,52.418],[1.404,52.419],[1.413,52.419],[1.419,52.416],[1.422,52.412],[1.422,52.411],[1.425,52.411],[1.421,52.408],[1.421,52.407],[1.426,52.405],[1.429,52.401],[1.435,52.399],[1.437,52.397],[1.437,52.396],[1.443,52.394],[1.449,52.393],[1.453,52.389],[1.458,52.388],[1.461,52.388],[1.464,52.39],[1.471,52.392],[1.469,52.396],[1.473,52.397],[1.481,52.394],[1.488,52.396],[1.49,52.394],[1.494,52.395],[1.496,52.395],[1.495,52.393],[1.499,52.393],[1.501,52.392],[1.506,52.392],[1.509,52.392],[1.51,52.397],[1.519,52.399],[1.519,52.396],[1.525,52.396],[1.528,52.393],[1.533,52.392],[1.537,52.389],[1.539,52.388],[1.538,52.386],[1.541,52.384],[1.544,52.384],[1.545,52.386],[1.55,52.384],[1.554,52.377],[1.559,52.374],[1.57,52.372],[1.573,52.369],[1.575,52.372],[1.575,52.374],[1.577,52.377],[1.582,52.375],[1.584,52.371],[1.587,52.368],[1.588,52.366],[1.587,52.363],[1.583,52.365],[1.58,52.365],[1.572,52.364],[1.577,52.361],[1.576,52.358],[1.572,52.356],[1.563,52.357],[1.561,52.361],[1.555,52.36],[1.56,52.356],[1.559,52.355],[1.564,52.353],[1.562,52.35],[1.565,52.349],[1.563,52.34],[1.562,52.339],[1.569,52.34],[1.571,52.339],[1.578,52.339],[1.585,52.333],[1.588,52.333],[1.592,52.331],[1.595,52.328],[1.603,52.327],[1.602,52.33],[1.604,52.33],[1.605,52.328],[1.609,52.329],[1.614,52.329],[1.62,52.327],[1.623,52.326],[1.626,52.325],[1.625,52.332],[1.625,52.334],[1.63,52.334],[1.626,52.336],[1.627,52.338],[1.629,52.34],[1.63,52.342],[1.636,52.343],[1.639,52.342],[1.647,52.344],[1.647,52.345],[1.642,52.347],[1.635,52.347],[1.635,52.349],[1.633,52.349],[1.634,52.35],[1.632,52.353],[1.635,52.359],[1.641,52.358],[1.641,52.36],[1.647,52.357],[1.653,52.361],[1.655,52.361],[1.661,52.355],[1.665,52.351],[1.668,52.35],[1.675,52.351],[1.683,52.352],[1.69,52.354],[1.695,52.352]],[[1.598,52.143],[1.596,52.145],[1.592,52.145],[1.59,52.144],[1.585,52.142],[1.579,52.143],[1.574,52.145],[1.571,52.148],[1.572,52.149],[1.577,52.15],[1.58,52.152],[1.581,52.153],[1.58,52.155],[1.577,52.158],[1.57,52.16],[1.567,52.161],[1.562,52.16],[1.557,52.159],[1.555,52.159],[1.554,52.163],[1.553,52.164],[1.55,52.165],[1.536,52.165],[1.533,52.164],[1.53,52.163],[1.528,52.161],[1.524,52.161],[1.52,52.159],[1.519,52.158],[1.516,52.151],[1.512,52.152],[1.51,52.156],[1.513,52.158],[1.509,52.161],[1.509,52.164],[1.506,52.164],[1.508,52.161],[1.508,52.159],[1.51,52.158],[1.508,52.156],[1.511,52.151],[1.517,52.15],[1.524,52.152],[1.525,52.154],[1.524,52.156],[1.525,52.157],[1.532,52.157],[1.534,52.157],[1.537,52.156],[1.541,52.156],[1.544,52.155],[1.546,52.153],[1.552,52.151],[1.554,52.151],[1.556,52.153],[1.559,52.153],[1.562,52.153],[1.564,52.155],[1.569,52.156],[1.571,52.155],[1.573,52.153],[1.569,52.15],[1.569,52.147],[1.571,52.144],[1.575,52.142],[1.577,52.141],[1.584,52.14],[1.586,52.14],[1.592,52.142],[1.595,52.141],[1.591,52.138],[1.589,52.137],[1.589,52.132],[1.586,52.128],[1.584,52.126],[1.583,52.122],[1.578,52.117],[1.574,52.115],[1.567,52.113],[1.565,52.112],[1.564,52.109],[1.565,52.106],[1.566,52.105],[1.567,52.102],[1.564,52.099],[1.561,52.097],[1.559,52.095],[1.552,52.091],[1.55,52.091],[1.544,52.091],[1.539,52.09],[1.536,52.089],[1.536,52.086],[1.538,52.082],[1.538,52.079],[1.541,52.078],[1.542,52.078],[1.546,52.08],[1.557,52.085],[1.565,52.087],[1.567,52.09],[1.571,52.091],[1.579,52.091],[1.57,52.092],[1.568,52.092],[1.565,52.091],[1.564,52.089],[1.561,52.087],[1.558,52.086],[1.554,52.085],[1.545,52.08],[1.542,52.08],[1.541,52.081],[1.54,52.089],[1.545,52.09],[1.549,52.089],[1.553,52.089],[1.562,52.094],[1.564,52.095],[1.568,52.098],[1.57,52.1],[1.57,52.103],[1.568,52.107],[1.568,52.109],[1.57,52.112],[1.577,52.113],[1.582,52.117],[1.584,52.117],[1.587,52.12],[1.588,52.124],[1.59,52.128],[1.593,52.13],[1.594,52.136],[1.598,52.14],[1.598,52.143]]]},"properties":{"OBJECTID":51,"NAME":"IP","KEY":"IP","Shape_Leng":7.92976,"Shape_Area":0.49949}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.638,57.511],[-6.639,57.511],[-6.647,57.51],[-6.649,57.511],[-6.654,57.518],[-6.652,57.524],[-6.65,57.526],[-6.648,57.527],[-6.645,57.526],[-6.646,57.523],[-6.646,57.52],[-6.642,57.515],[-6.638,57.513],[-6.638,57.511]]],[[[-6.62,57.44],[-6.623,57.44],[-6.626,57.443],[-6.634,57.444],[-6.636,57.446],[-6.635,57.448],[-6.631,57.447],[-6.626,57.446],[-6.62,57.444],[-6.621,57.442],[-6.62,57.44]]],[[[-6.6,57.45],[-6.603,57.448],[-6.605,57.45],[-6.609,57.451],[-6.607,57.452],[-6.604,57.453],[-6.602,57.453],[-6.602,57.451],[-6.6,57.45]]],[[[-6.521,57.364],[-6.523,57.364],[-6.524,57.361],[-6.523,57.36],[-6.527,57.36],[-6.529,57.358],[-6.531,57.36],[-6.532,57.362],[-6.529,57.363],[-6.527,57.365],[-6.528,57.367],[-6.522,57.367],[-6.521,57.364]]],[[[-6.508,57.581],[-6.514,57.578],[-6.519,57.577],[-6.518,57.58],[-6.515,57.582],[-6.515,57.586],[-6.514,57.587],[-6.508,57.581]]],[[[-6.489,57.358],[-6.493,57.356],[-6.498,57.356],[-6.5,57.36],[-6.5,57.363],[-6.498,57.365],[-6.494,57.365],[-6.491,57.361],[-6.49,57.36],[-6.489,57.358]]],[[[-6.486,57.341],[-6.49,57.334],[-6.491,57.332],[-6.494,57.331],[-6.494,57.33],[-6.498,57.329],[-6.501,57.33],[-6.502,57.332],[-6.507,57.332],[-6.512,57.331],[-6.515,57.333],[-6.512,57.335],[-6.512,57.336],[-6.508,57.338],[-6.503,57.338],[-6.505,57.341],[-6.497,57.344],[-6.492,57.344],[-6.488,57.343],[-6.486,57.341]]],[[[-6.222,57.662],[-6.226,57.663],[-6.229,57.663],[-6.234,57.666],[-6.233,57.668],[-6.227,57.667],[-6.223,57.665],[-6.222,57.662]]],[[[-6.199,57.64],[-6.203,57.64],[-6.207,57.641],[-6.21,57.646],[-6.207,57.646],[-6.203,57.644],[-6.199,57.641],[-6.199,57.64]]],[[[-5.979,57.493],[-5.982,57.491],[-5.982,57.489],[-5.983,57.486],[-5.984,57.484],[-5.984,57.481],[-5.988,57.478],[-5.987,57.476],[-5.988,57.474],[-5.991,57.471],[-5.993,57.467],[-5.997,57.461],[-5.997,57.459],[-6.001,57.457],[-6.001,57.455],[-6.003,57.454],[-6.003,57.452],[-6.005,57.45],[-6.008,57.45],[-6.01,57.45],[-6.01,57.448],[-6.013,57.447],[-6.015,57.444],[-6.021,57.443],[-6.026,57.441],[-6.028,57.438],[-6.032,57.434],[-6.033,57.433],[-6.032,57.428],[-6.027,57.423],[-6.023,57.416],[-6.021,57.411],[-6.02,57.406],[-6.02,57.404],[-6.02,57.401],[-6.019,57.398],[-6.019,57.393],[-6.019,57.389],[-6.01,57.378],[-6.004,57.374],[-6.002,57.371],[-5.999,57.369],[-5.995,57.37],[-5.994,57.368],[-5.994,57.36],[-5.995,57.356],[-5.998,57.353],[-6.002,57.349],[-6.006,57.348],[-6.013,57.343],[-6.017,57.338],[-6.021,57.333],[-6.023,57.332],[-6.032,57.332],[-6.041,57.329],[-6.051,57.328],[-6.054,57.329],[-6.065,57.332],[-6.068,57.335],[-6.069,57.339],[-6.071,57.341],[-6.068,57.344],[-6.069,57.345],[-6.073,57.347],[-6.078,57.35],[-6.083,57.35],[-6.084,57.351],[-6.088,57.35],[-6.089,57.351],[-6.086,57.354],[-6.083,57.354],[-6.082,57.358],[-6.083,57.361],[-6.082,57.364],[-6.084,57.366],[-6.086,57.367],[-6.084,57.37],[-6.078,57.373],[-6.075,57.381],[-6.075,57.383],[-6.077,57.385],[-6.076,57.388],[-6.078,57.39],[-6.077,57.392],[-6.08,57.395],[-6.083,57.402],[-6.08,57.405],[-6.081,57.407],[-6.085,57.414],[-6.085,57.42],[-6.083,57.422],[-6.083,57.425],[-6.082,57.429],[-6.081,57.434],[-6.078,57.437],[-6.078,57.439],[-6.074,57.445],[-6.072,57.447],[-6.066,57.45],[-6.064,57.454],[-6.061,57.456],[-6.061,57.458],[-6.058,57.458],[-6.057,57.46],[-6.055,57.461],[-6.051,57.461],[-6.048,57.46],[-6.043,57.458],[-6.041,57.459],[-6.034,57.459],[-6.031,57.458],[-6.027,57.455],[-6.025,57.455],[-6.021,57.455],[-6.018,57.46],[-6.013,57.463],[-6.014,57.465],[-6.022,57.468],[-6.028,57.468],[-6.03,57.469],[-6.029,57.471],[-6.026,57.471],[-6.021,57.472],[-6.02,57.473],[-6.021,57.477],[-6.021,57.479],[-6.019,57.481],[-6.016,57.482],[-6.015,57.486],[-6.012,57.489],[-6.007,57.489],[-6.005,57.49],[-6.001,57.489],[-5.993,57.493],[-5.997,57.495],[-5.998,57.495],[-5.995,57.499],[-5.994,57.502],[-5.998,57.505],[-5.997,57.506],[-5.991,57.505],[-5.99,57.503],[-5.988,57.503],[-5.986,57.501],[-5.985,57.5],[-5.985,57.497],[-5.979,57.493]]],[[[-5.955,57.568],[-5.955,57.565],[-5.958,57.564],[-5.959,57.563],[-5.958,57.561],[-5.959,57.559],[-5.961,57.557],[-5.962,57.552],[-5.965,57.552],[-5.967,57.549],[-5.967,57.547],[-5.965,57.544],[-5.967,57.541],[-5.968,57.539],[-5.97,57.536],[-5.97,57.534],[-5.971,57.532],[-5.973,57.53],[-5.97,57.527],[-5.971,57.526],[-5.974,57.524],[-5.973,57.521],[-5.976,57.518],[-5.976,57.516],[-5.977,57.515],[-5.982,57.515],[-5.983,57.515],[-5.988,57.516],[-5.992,57.518],[-5.994,57.521],[-5.985,57.52],[-5.988,57.522],[-5.992,57.522],[-5.995,57.523],[-5.998,57.528],[-5.997,57.531],[-5.994,57.533],[-5.991,57.533],[-5.989,57.535],[-5.986,57.535],[-5.986,57.536],[-5.983,57.539],[-5.989,57.539],[-5.991,57.538],[-5.992,57.536],[-5.994,57.536],[-5.999,57.537],[-6.001,57.539],[-6,57.54],[-6,57.542],[-6.002,57.543],[-6.001,57.545],[-5.996,57.546],[-5.995,57.544],[-5.993,57.543],[-5.987,57.545],[-5.984,57.544],[-5.98,57.548],[-5.977,57.549],[-5.979,57.551],[-5.982,57.551],[-5.985,57.552],[-5.985,57.554],[-5.987,57.554],[-5.987,57.556],[-5.986,57.559],[-5.987,57.562],[-5.984,57.563],[-5.987,57.566],[-5.987,57.568],[-5.99,57.569],[-5.987,57.571],[-5.985,57.571],[-5.984,57.573],[-5.984,57.575],[-5.978,57.576],[-5.975,57.575],[-5.973,57.572],[-5.97,57.571],[-5.965,57.573],[-5.967,57.575],[-5.965,57.578],[-5.967,57.578],[-5.97,57.579],[-5.974,57.581],[-5.973,57.583],[-5.967,57.582],[-5.966,57.58],[-5.962,57.581],[-5.961,57.579],[-5.957,57.579],[-5.958,57.574],[-5.957,57.573],[-5.957,57.569],[-5.955,57.568]]],[[[-5.921,57.298],[-5.922,57.295],[-5.928,57.29],[-5.928,57.289],[-5.926,57.283],[-5.926,57.282],[-5.931,57.283],[-5.93,57.281],[-5.935,57.281],[-5.936,57.278],[-5.94,57.277],[-5.943,57.275],[-5.946,57.275],[-5.952,57.274],[-5.955,57.273],[-5.963,57.274],[-5.975,57.274],[-5.98,57.274],[-5.985,57.276],[-5.994,57.284],[-5.996,57.285],[-6.004,57.288],[-6.007,57.289],[-6.008,57.291],[-6.011,57.294],[-6.018,57.299],[-6.021,57.302],[-6.024,57.303],[-6.024,57.306],[-6.017,57.32],[-6.014,57.321],[-6.01,57.32],[-6.006,57.32],[-6.006,57.323],[-6.003,57.325],[-5.997,57.324],[-5.994,57.323],[-5.989,57.324],[-5.986,57.323],[-5.984,57.324],[-5.979,57.323],[-5.976,57.321],[-5.97,57.319],[-5.966,57.32],[-5.962,57.321],[-5.96,57.319],[-5.951,57.317],[-5.949,57.318],[-5.945,57.316],[-5.942,57.315],[-5.936,57.312],[-5.929,57.309],[-5.926,57.308],[-5.922,57.302],[-5.921,57.298]]],[[[-5.848,57.274],[-5.851,57.271],[-5.853,57.271],[-5.856,57.269],[-5.865,57.269],[-5.866,57.271],[-5.868,57.271],[-5.87,57.275],[-5.869,57.277],[-5.864,57.279],[-5.861,57.281],[-5.856,57.282],[-5.855,57.28],[-5.848,57.274]]],[[[-5.819,57.339],[-5.822,57.336],[-5.827,57.334],[-5.831,57.334],[-5.835,57.333],[-5.836,57.333],[-5.84,57.336],[-5.84,57.339],[-5.841,57.342],[-5.841,57.343],[-5.843,57.348],[-5.841,57.351],[-5.835,57.351],[-5.829,57.346],[-5.822,57.343],[-5.819,57.339]]],[[[-5.791,57.736],[-5.796,57.73],[-5.803,57.727],[-5.807,57.727],[-5.807,57.726],[-5.812,57.727],[-5.815,57.729],[-5.821,57.73],[-5.824,57.733],[-5.822,57.735],[-5.817,57.735],[-5.816,57.733],[-5.813,57.732],[-5.81,57.734],[-5.806,57.734],[-5.8,57.736],[-5.794,57.736],[-5.791,57.736]]],[[[-5.649,57.252],[-5.65,57.25],[-5.657,57.246],[-5.664,57.24],[-5.667,57.235],[-5.668,57.232],[-5.664,57.228],[-5.664,57.226],[-5.665,57.221],[-5.668,57.219],[-5.671,57.215],[-5.67,57.213],[-5.671,57.21],[-5.676,57.207],[-5.681,57.204],[-5.686,57.202],[-5.698,57.196],[-5.699,57.194],[-5.703,57.192],[-5.706,57.191],[-5.709,57.189],[-5.713,57.187],[-5.717,57.186],[-5.728,57.181],[-5.735,57.179],[-5.738,57.178],[-5.746,57.178],[-5.751,57.176],[-5.753,57.174],[-5.759,57.172],[-5.764,57.17],[-5.773,57.169],[-5.777,57.167],[-5.782,57.166],[-5.787,57.167],[-5.789,57.169],[-5.797,57.173],[-5.799,57.174],[-5.802,57.177],[-5.804,57.176],[-5.808,57.175],[-5.808,57.174],[-5.805,57.171],[-5.803,57.168],[-5.799,57.164],[-5.798,57.16],[-5.8,57.158],[-5.8,57.156],[-5.798,57.154],[-5.798,57.152],[-5.8,57.15],[-5.803,57.149],[-5.804,57.146],[-5.804,57.145],[-5.799,57.146],[-5.801,57.143],[-5.8,57.142],[-5.794,57.142],[-5.79,57.141],[-5.79,57.138],[-5.794,57.137],[-5.799,57.138],[-5.805,57.138],[-5.806,57.136],[-5.805,57.133],[-5.804,57.132],[-5.798,57.132],[-5.802,57.127],[-5.805,57.127],[-5.805,57.124],[-5.806,57.121],[-5.808,57.12],[-5.814,57.12],[-5.816,57.116],[-5.818,57.113],[-5.822,57.111],[-5.825,57.109],[-5.83,57.107],[-5.832,57.109],[-5.836,57.108],[-5.839,57.108],[-5.841,57.11],[-5.85,57.11],[-5.853,57.111],[-5.856,57.11],[-5.856,57.106],[-5.856,57.103],[-5.861,57.102],[-5.862,57.1],[-5.862,57.098],[-5.866,57.093],[-5.868,57.092],[-5.871,57.089],[-5.872,57.086],[-5.879,57.083],[-5.881,57.083],[-5.887,57.08],[-5.887,57.077],[-5.891,57.072],[-5.894,57.07],[-5.896,57.067],[-5.897,57.065],[-5.895,57.065],[-5.894,57.063],[-5.896,57.062],[-5.9,57.063],[-5.902,57.062],[-5.903,57.06],[-5.902,57.056],[-5.907,57.056],[-5.913,57.053],[-5.917,57.051],[-5.921,57.048],[-5.921,57.046],[-5.924,57.043],[-5.927,57.042],[-5.932,57.042],[-5.934,57.04],[-5.937,57.04],[-5.937,57.039],[-5.949,57.037],[-5.952,57.035],[-5.956,57.035],[-5.957,57.034],[-5.958,57.032],[-5.961,57.031],[-5.96,57.028],[-5.962,57.027],[-5.967,57.028],[-5.971,57.031],[-5.973,57.031],[-5.978,57.03],[-5.981,57.028],[-5.988,57.027],[-5.991,57.026],[-5.994,57.024],[-5.996,57.025],[-6.001,57.022],[-6.004,57.02],[-6.005,57.02],[-6.009,57.024],[-6.013,57.025],[-6.018,57.021],[-6.017,57.018],[-6.021,57.018],[-6.021,57.02],[-6.023,57.024],[-6.023,57.026],[-6.02,57.028],[-6.02,57.029],[-6.018,57.03],[-6.025,57.034],[-6.026,57.036],[-6.033,57.037],[-6.03,57.038],[-6.031,57.042],[-6.033,57.044],[-6.034,57.045],[-6.037,57.047],[-6.037,57.048],[-6.035,57.05],[-6.035,57.052],[-6.038,57.054],[-6.038,57.056],[-6.031,57.057],[-6.032,57.061],[-6.027,57.067],[-6.024,57.069],[-6.021,57.071],[-6.018,57.07],[-6.015,57.07],[-6.012,57.071],[-6.004,57.072],[-6.002,57.073],[-6.007,57.074],[-6.008,57.076],[-6.006,57.078],[-6.01,57.079],[-6.009,57.081],[-6.009,57.084],[-6.009,57.085],[-6.009,57.09],[-6.007,57.093],[-6.005,57.094],[-6.004,57.098],[-6.001,57.1],[-6.001,57.103],[-6.002,57.104],[-5.996,57.105],[-5.99,57.105],[-5.988,57.106],[-5.987,57.108],[-5.991,57.109],[-5.991,57.113],[-5.996,57.114],[-6.005,57.113],[-6.006,57.115],[-6.004,57.117],[-6.001,57.121],[-5.999,57.123],[-5.993,57.127],[-5.984,57.13],[-5.978,57.13],[-5.973,57.132],[-5.972,57.134],[-5.972,57.136],[-5.977,57.136],[-5.977,57.137],[-5.974,57.139],[-5.966,57.142],[-5.961,57.142],[-5.961,57.144],[-5.951,57.146],[-5.948,57.145],[-5.944,57.147],[-5.944,57.149],[-5.942,57.151],[-5.936,57.154],[-5.934,57.158],[-5.929,57.156],[-5.926,57.159],[-5.92,57.161],[-5.918,57.165],[-5.91,57.166],[-5.903,57.165],[-5.901,57.165],[-5.896,57.166],[-5.889,57.166],[-5.883,57.168],[-5.878,57.168],[-5.87,57.171],[-5.864,57.173],[-5.858,57.177],[-5.855,57.18],[-5.845,57.183],[-5.84,57.188],[-5.841,57.189],[-5.845,57.188],[-5.847,57.186],[-5.852,57.185],[-5.857,57.182],[-5.86,57.181],[-5.863,57.182],[-5.868,57.18],[-5.871,57.178],[-5.876,57.176],[-5.882,57.176],[-5.884,57.176],[-5.887,57.178],[-5.891,57.178],[-5.896,57.179],[-5.898,57.178],[-5.9,57.176],[-5.902,57.175],[-5.902,57.172],[-5.908,57.171],[-5.913,57.171],[-5.917,57.17],[-5.924,57.172],[-5.928,57.174],[-5.932,57.174],[-5.936,57.175],[-5.939,57.175],[-5.944,57.174],[-5.949,57.173],[-5.953,57.173],[-5.956,57.172],[-5.963,57.17],[-5.968,57.17],[-5.972,57.168],[-5.981,57.167],[-5.987,57.168],[-5.993,57.169],[-5.995,57.171],[-5.996,57.173],[-5.993,57.178],[-5.994,57.18],[-5.993,57.184],[-5.996,57.187],[-5.997,57.188],[-5.999,57.192],[-6.002,57.195],[-6.004,57.196],[-6.003,57.198],[-6.004,57.2],[-6.006,57.201],[-6.008,57.203],[-6.011,57.204],[-6.018,57.204],[-6.019,57.204],[-6.021,57.208],[-6.023,57.211],[-6.023,57.215],[-6.025,57.218],[-6.028,57.22],[-6.031,57.221],[-6.033,57.223],[-6.031,57.224],[-6.034,57.225],[-6.038,57.227],[-6.04,57.226],[-6.041,57.222],[-6.039,57.219],[-6.038,57.217],[-6.035,57.214],[-6.035,57.212],[-6.028,57.207],[-6.025,57.201],[-6.025,57.198],[-6.028,57.194],[-6.028,57.191],[-6.03,57.187],[-6.03,57.184],[-6.031,57.182],[-6.037,57.178],[-6.04,57.178],[-6.047,57.179],[-6.048,57.178],[-6.047,57.173],[-6.049,57.171],[-6.05,57.168],[-6.054,57.164],[-6.057,57.158],[-6.057,57.157],[-6.06,57.153],[-6.064,57.152],[-6.066,57.15],[-6.066,57.147],[-6.066,57.144],[-6.07,57.14],[-6.073,57.14],[-6.073,57.137],[-6.076,57.135],[-6.076,57.134],[-6.078,57.132],[-6.082,57.131],[-6.083,57.128],[-6.085,57.127],[-6.087,57.127],[-6.09,57.129],[-6.096,57.132],[-6.098,57.135],[-6.101,57.136],[-6.104,57.134],[-6.109,57.134],[-6.112,57.136],[-6.112,57.139],[-6.108,57.145],[-6.108,57.147],[-6.106,57.15],[-6.107,57.151],[-6.108,57.156],[-6.105,57.16],[-6.102,57.169],[-6.103,57.171],[-6.106,57.173],[-6.107,57.175],[-6.11,57.177],[-6.111,57.179],[-6.11,57.182],[-6.11,57.187],[-6.112,57.19],[-6.119,57.191],[-6.124,57.192],[-6.124,57.189],[-6.125,57.188],[-6.13,57.185],[-6.132,57.185],[-6.139,57.188],[-6.142,57.188],[-6.145,57.188],[-6.15,57.195],[-6.154,57.196],[-6.155,57.194],[-6.158,57.194],[-6.16,57.195],[-6.16,57.197],[-6.164,57.198],[-6.169,57.197],[-6.169,57.194],[-6.166,57.192],[-6.166,57.187],[-6.166,57.184],[-6.165,57.181],[-6.166,57.178],[-6.17,57.174],[-6.176,57.173],[-6.183,57.173],[-6.188,57.172],[-6.195,57.174],[-6.204,57.175],[-6.209,57.177],[-6.211,57.177],[-6.215,57.176],[-6.219,57.175],[-6.231,57.173],[-6.239,57.171],[-6.246,57.17],[-6.254,57.17],[-6.263,57.169],[-6.267,57.168],[-6.272,57.167],[-6.274,57.167],[-6.286,57.164],[-6.294,57.163],[-6.301,57.161],[-6.305,57.161],[-6.309,57.16],[-6.31,57.163],[-6.313,57.163],[-6.314,57.161],[-6.311,57.16],[-6.313,57.159],[-6.317,57.16],[-6.322,57.16],[-6.324,57.162],[-6.323,57.163],[-6.316,57.164],[-6.316,57.168],[-6.314,57.171],[-6.311,57.172],[-6.304,57.173],[-6.302,57.174],[-6.298,57.177],[-6.295,57.179],[-6.293,57.182],[-6.287,57.187],[-6.286,57.189],[-6.284,57.19],[-6.284,57.192],[-6.283,57.195],[-6.285,57.201],[-6.293,57.203],[-6.295,57.202],[-6.296,57.2],[-6.3,57.199],[-6.301,57.198],[-6.307,57.196],[-6.318,57.191],[-6.321,57.19],[-6.327,57.188],[-6.334,57.186],[-6.341,57.185],[-6.347,57.186],[-6.35,57.187],[-6.355,57.189],[-6.358,57.192],[-6.363,57.193],[-6.365,57.198],[-6.367,57.198],[-6.37,57.201],[-6.376,57.204],[-6.378,57.206],[-6.381,57.208],[-6.384,57.211],[-6.388,57.217],[-6.386,57.219],[-6.386,57.221],[-6.384,57.225],[-6.378,57.227],[-6.369,57.227],[-6.365,57.228],[-6.359,57.227],[-6.354,57.227],[-6.351,57.228],[-6.348,57.23],[-6.347,57.236],[-6.347,57.241],[-6.347,57.244],[-6.345,57.246],[-6.344,57.25],[-6.344,57.252],[-6.348,57.252],[-6.35,57.25],[-6.353,57.248],[-6.353,57.244],[-6.354,57.241],[-6.357,57.237],[-6.358,57.236],[-6.361,57.235],[-6.366,57.235],[-6.376,57.235],[-6.378,57.235],[-6.384,57.235],[-6.387,57.236],[-6.393,57.233],[-6.398,57.232],[-6.405,57.232],[-6.41,57.234],[-6.411,57.236],[-6.418,57.237],[-6.421,57.24],[-6.426,57.241],[-6.427,57.249],[-6.429,57.251],[-6.434,57.253],[-6.435,57.255],[-6.438,57.255],[-6.439,57.257],[-6.442,57.257],[-6.448,57.261],[-6.45,57.263],[-6.45,57.265],[-6.452,57.267],[-6.456,57.273],[-6.458,57.276],[-6.461,57.28],[-6.457,57.282],[-6.457,57.284],[-6.458,57.285],[-6.461,57.286],[-6.463,57.288],[-6.468,57.288],[-6.477,57.288],[-6.481,57.291],[-6.482,57.292],[-6.48,57.296],[-6.481,57.298],[-6.481,57.3],[-6.479,57.302],[-6.481,57.306],[-6.481,57.309],[-6.48,57.31],[-6.474,57.313],[-6.464,57.315],[-6.461,57.317],[-6.457,57.318],[-6.455,57.322],[-6.452,57.322],[-6.449,57.32],[-6.444,57.322],[-6.441,57.324],[-6.439,57.326],[-6.436,57.326],[-6.433,57.323],[-6.43,57.322],[-6.426,57.323],[-6.428,57.327],[-6.429,57.331],[-6.43,57.334],[-6.433,57.336],[-6.431,57.338],[-6.429,57.339],[-6.423,57.334],[-6.421,57.333],[-6.418,57.334],[-6.42,57.337],[-6.418,57.337],[-6.41,57.333],[-6.408,57.332],[-6.405,57.331],[-6.396,57.329],[-6.388,57.327],[-6.382,57.323],[-6.372,57.319],[-6.37,57.316],[-6.366,57.312],[-6.363,57.311],[-6.36,57.309],[-6.357,57.305],[-6.351,57.302],[-6.348,57.3],[-6.34,57.297],[-6.327,57.297],[-6.321,57.298],[-6.315,57.297],[-6.312,57.298],[-6.311,57.3],[-6.318,57.301],[-6.327,57.301],[-6.335,57.303],[-6.343,57.306],[-6.35,57.311],[-6.352,57.313],[-6.355,57.315],[-6.36,57.32],[-6.359,57.323],[-6.364,57.324],[-6.369,57.326],[-6.384,57.334],[-6.386,57.336],[-6.391,57.339],[-6.398,57.338],[-6.402,57.339],[-6.402,57.34],[-6.397,57.342],[-6.399,57.343],[-6.406,57.344],[-6.407,57.344],[-6.407,57.348],[-6.407,57.353],[-6.405,57.355],[-6.4,57.357],[-6.39,57.361],[-6.385,57.363],[-6.386,57.364],[-6.393,57.361],[-6.397,57.36],[-6.4,57.361],[-6.404,57.36],[-6.408,57.357],[-6.416,57.349],[-6.419,57.348],[-6.425,57.349],[-6.434,57.347],[-6.434,57.345],[-6.437,57.344],[-6.439,57.347],[-6.445,57.347],[-6.449,57.345],[-6.455,57.343],[-6.455,57.34],[-6.456,57.339],[-6.46,57.34],[-6.46,57.341],[-6.459,57.345],[-6.462,57.346],[-6.457,57.349],[-6.457,57.354],[-6.455,57.357],[-6.457,57.36],[-6.459,57.361],[-6.463,57.36],[-6.467,57.362],[-6.47,57.361],[-6.473,57.362],[-6.475,57.364],[-6.478,57.365],[-6.48,57.365],[-6.481,57.367],[-6.483,57.368],[-6.482,57.37],[-6.475,57.373],[-6.472,57.374],[-6.472,57.376],[-6.476,57.378],[-6.48,57.379],[-6.484,57.379],[-6.486,57.381],[-6.486,57.384],[-6.488,57.386],[-6.487,57.389],[-6.483,57.395],[-6.485,57.396],[-6.488,57.397],[-6.489,57.401],[-6.489,57.403],[-6.492,57.404],[-6.494,57.401],[-6.494,57.398],[-6.496,57.397],[-6.495,57.393],[-6.496,57.39],[-6.499,57.387],[-6.502,57.385],[-6.502,57.384],[-6.507,57.383],[-6.511,57.379],[-6.513,57.376],[-6.519,57.375],[-6.521,57.373],[-6.524,57.37],[-6.527,57.371],[-6.525,57.372],[-6.526,57.374],[-6.523,57.376],[-6.519,57.38],[-6.519,57.382],[-6.521,57.382],[-6.523,57.381],[-6.526,57.382],[-6.526,57.384],[-6.523,57.386],[-6.521,57.388],[-6.52,57.39],[-6.518,57.391],[-6.517,57.393],[-6.521,57.397],[-6.525,57.397],[-6.526,57.399],[-6.525,57.402],[-6.529,57.404],[-6.53,57.404],[-6.537,57.412],[-6.539,57.411],[-6.538,57.41],[-6.538,57.408],[-6.538,57.403],[-6.542,57.398],[-6.537,57.399],[-6.536,57.401],[-6.532,57.403],[-6.532,57.401],[-6.534,57.4],[-6.532,57.396],[-6.534,57.393],[-6.539,57.391],[-6.541,57.391],[-6.536,57.396],[-6.539,57.397],[-6.542,57.396],[-6.546,57.393],[-6.551,57.388],[-6.552,57.386],[-6.554,57.385],[-6.558,57.389],[-6.561,57.39],[-6.567,57.39],[-6.574,57.388],[-6.575,57.387],[-6.57,57.385],[-6.569,57.382],[-6.571,57.378],[-6.568,57.376],[-6.568,57.372],[-6.567,57.37],[-6.566,57.368],[-6.565,57.366],[-6.563,57.361],[-6.568,57.36],[-6.569,57.358],[-6.566,57.357],[-6.565,57.353],[-6.566,57.351],[-6.564,57.347],[-6.567,57.344],[-6.565,57.342],[-6.565,57.338],[-6.566,57.336],[-6.57,57.335],[-6.571,57.333],[-6.575,57.332],[-6.582,57.333],[-6.582,57.335],[-6.584,57.337],[-6.593,57.337],[-6.597,57.339],[-6.602,57.34],[-6.603,57.341],[-6.609,57.342],[-6.615,57.344],[-6.619,57.348],[-6.625,57.35],[-6.632,57.35],[-6.635,57.352],[-6.642,57.353],[-6.649,57.353],[-6.651,57.355],[-6.653,57.357],[-6.656,57.357],[-6.665,57.357],[-6.674,57.357],[-6.681,57.36],[-6.686,57.362],[-6.688,57.364],[-6.692,57.365],[-6.697,57.367],[-6.699,57.367],[-6.701,57.371],[-6.708,57.37],[-6.711,57.37],[-6.718,57.371],[-6.722,57.374],[-6.725,57.377],[-6.727,57.38],[-6.73,57.382],[-6.731,57.384],[-6.734,57.388],[-6.738,57.389],[-6.73,57.392],[-6.729,57.395],[-6.732,57.4],[-6.735,57.405],[-6.737,57.409],[-6.738,57.413],[-6.745,57.419],[-6.751,57.422],[-6.757,57.423],[-6.76,57.425],[-6.762,57.427],[-6.767,57.429],[-6.771,57.428],[-6.773,57.428],[-6.777,57.427],[-6.782,57.426],[-6.782,57.424],[-6.786,57.42],[-6.788,57.42],[-6.789,57.422],[-6.787,57.424],[-6.786,57.427],[-6.783,57.428],[-6.784,57.429],[-6.788,57.431],[-6.787,57.439],[-6.785,57.44],[-6.779,57.442],[-6.778,57.443],[-6.778,57.448],[-6.783,57.452],[-6.784,57.455],[-6.78,57.458],[-6.771,57.459],[-6.764,57.459],[-6.757,57.458],[-6.754,57.458],[-6.748,57.457],[-6.746,57.454],[-6.742,57.451],[-6.738,57.452],[-6.731,57.451],[-6.725,57.45],[-6.721,57.451],[-6.722,57.452],[-6.724,57.453],[-6.726,57.456],[-6.733,57.46],[-6.735,57.461],[-6.74,57.463],[-6.743,57.465],[-6.746,57.471],[-6.746,57.474],[-6.748,57.479],[-6.749,57.484],[-6.747,57.487],[-6.749,57.498],[-6.748,57.499],[-6.742,57.503],[-6.735,57.507],[-6.731,57.509],[-6.724,57.511],[-6.718,57.513],[-6.713,57.512],[-6.709,57.509],[-6.704,57.502],[-6.704,57.499],[-6.704,57.497],[-6.699,57.495],[-6.697,57.493],[-6.693,57.49],[-6.688,57.49],[-6.687,57.486],[-6.686,57.483],[-6.68,57.48],[-6.677,57.478],[-6.679,57.477],[-6.677,57.475],[-6.668,57.472],[-6.667,57.469],[-6.669,57.468],[-6.667,57.465],[-6.668,57.462],[-6.667,57.461],[-6.662,57.461],[-6.655,57.46],[-6.654,57.458],[-6.653,57.455],[-6.648,57.451],[-6.644,57.446],[-6.64,57.443],[-6.635,57.441],[-6.63,57.438],[-6.626,57.436],[-6.625,57.435],[-6.62,57.434],[-6.618,57.436],[-6.617,57.438],[-6.615,57.439],[-6.612,57.439],[-6.613,57.442],[-6.61,57.444],[-6.611,57.446],[-6.608,57.446],[-6.605,57.445],[-6.602,57.446],[-6.596,57.443],[-6.596,57.441],[-6.591,57.436],[-6.589,57.433],[-6.588,57.43],[-6.59,57.429],[-6.592,57.428],[-6.59,57.425],[-6.587,57.425],[-6.585,57.422],[-6.582,57.423],[-6.584,57.425],[-6.583,57.427],[-6.581,57.428],[-6.583,57.431],[-6.579,57.432],[-6.575,57.432],[-6.58,57.435],[-6.583,57.437],[-6.586,57.438],[-6.59,57.439],[-6.592,57.442],[-6.592,57.449],[-6.594,57.451],[-6.595,57.454],[-6.599,57.455],[-6.6,57.457],[-6.604,57.459],[-6.61,57.459],[-6.611,57.457],[-6.616,57.457],[-6.62,57.457],[-6.622,57.458],[-6.625,57.462],[-6.621,57.462],[-6.618,57.461],[-6.615,57.462],[-6.613,57.465],[-6.614,57.466],[-6.613,57.468],[-6.617,57.472],[-6.622,57.473],[-6.624,57.479],[-6.627,57.483],[-6.626,57.485],[-6.629,57.487],[-6.629,57.49],[-6.632,57.492],[-6.633,57.494],[-6.636,57.496],[-6.635,57.498],[-6.636,57.5],[-6.638,57.502],[-6.637,57.504],[-6.633,57.504],[-6.63,57.503],[-6.621,57.502],[-6.617,57.502],[-6.614,57.505],[-6.61,57.507],[-6.607,57.508],[-6.603,57.51],[-6.599,57.51],[-6.594,57.507],[-6.591,57.506],[-6.588,57.504],[-6.582,57.5],[-6.578,57.497],[-6.577,57.496],[-6.573,57.495],[-6.57,57.494],[-6.565,57.496],[-6.564,57.499],[-6.566,57.502],[-6.566,57.503],[-6.562,57.504],[-6.561,57.507],[-6.562,57.509],[-6.571,57.512],[-6.572,57.515],[-6.579,57.515],[-6.585,57.517],[-6.587,57.519],[-6.587,57.521],[-6.589,57.525],[-6.592,57.526],[-6.595,57.529],[-6.602,57.533],[-6.605,57.536],[-6.607,57.537],[-6.614,57.537],[-6.615,57.539],[-6.622,57.542],[-6.635,57.548],[-6.639,57.55],[-6.645,57.553],[-6.647,57.552],[-6.652,57.551],[-6.651,57.548],[-6.648,57.546],[-6.651,57.543],[-6.654,57.543],[-6.656,57.546],[-6.654,57.549],[-6.656,57.552],[-6.655,57.554],[-6.648,57.555],[-6.646,57.556],[-6.642,57.561],[-6.641,57.563],[-6.642,57.567],[-6.641,57.57],[-6.639,57.575],[-6.639,57.577],[-6.634,57.581],[-6.635,57.588],[-6.633,57.592],[-6.634,57.596],[-6.636,57.598],[-6.638,57.601],[-6.636,57.605],[-6.636,57.607],[-6.635,57.608],[-6.632,57.608],[-6.63,57.606],[-6.622,57.606],[-6.617,57.606],[-6.612,57.601],[-6.609,57.601],[-6.607,57.6],[-6.602,57.596],[-6.6,57.595],[-6.594,57.594],[-6.59,57.593],[-6.585,57.589],[-6.583,57.587],[-6.582,57.583],[-6.575,57.579],[-6.574,57.577],[-6.57,57.572],[-6.572,57.567],[-6.569,57.563],[-6.57,57.56],[-6.569,57.552],[-6.566,57.549],[-6.564,57.548],[-6.558,57.547],[-6.557,57.545],[-6.555,57.544],[-6.55,57.543],[-6.545,57.545],[-6.541,57.547],[-6.54,57.547],[-6.537,57.546],[-6.533,57.545],[-6.529,57.541],[-6.526,57.539],[-6.52,57.537],[-6.516,57.537],[-6.509,57.535],[-6.505,57.534],[-6.501,57.532],[-6.497,57.526],[-6.495,57.525],[-6.493,57.524],[-6.487,57.523],[-6.484,57.522],[-6.481,57.518],[-6.475,57.513],[-6.472,57.51],[-6.462,57.503],[-6.465,57.5],[-6.465,57.499],[-6.459,57.499],[-6.456,57.5],[-6.454,57.502],[-6.452,57.505],[-6.449,57.507],[-6.447,57.508],[-6.445,57.51],[-6.441,57.512],[-6.439,57.513],[-6.437,57.516],[-6.432,57.518],[-6.429,57.519],[-6.427,57.517],[-6.426,57.514],[-6.429,57.51],[-6.432,57.503],[-6.436,57.501],[-6.437,57.498],[-6.44,57.494],[-6.442,57.493],[-6.445,57.49],[-6.449,57.486],[-6.45,57.481],[-6.447,57.481],[-6.444,57.481],[-6.44,57.48],[-6.439,57.475],[-6.436,57.473],[-6.433,57.471],[-6.432,57.473],[-6.434,57.477],[-6.434,57.482],[-6.436,57.484],[-6.437,57.488],[-6.436,57.491],[-6.43,57.493],[-6.421,57.499],[-6.421,57.502],[-6.418,57.506],[-6.411,57.506],[-6.406,57.507],[-6.401,57.509],[-6.4,57.51],[-6.4,57.514],[-6.399,57.515],[-6.401,57.518],[-6.404,57.519],[-6.406,57.522],[-6.406,57.524],[-6.403,57.524],[-6.403,57.526],[-6.401,57.528],[-6.399,57.528],[-6.395,57.526],[-6.39,57.525],[-6.389,57.523],[-6.385,57.521],[-6.382,57.518],[-6.383,57.516],[-6.378,57.508],[-6.376,57.502],[-6.374,57.501],[-6.371,57.505],[-6.366,57.503],[-6.364,57.502],[-6.36,57.5],[-6.356,57.498],[-6.351,57.497],[-6.35,57.495],[-6.349,57.493],[-6.348,57.485],[-6.347,57.483],[-6.342,57.481],[-6.341,57.487],[-6.341,57.492],[-6.338,57.491],[-6.336,57.489],[-6.335,57.485],[-6.335,57.481],[-6.334,57.479],[-6.328,57.474],[-6.328,57.472],[-6.33,57.464],[-6.327,57.459],[-6.323,57.457],[-6.314,57.455],[-6.314,57.457],[-6.318,57.46],[-6.319,57.46],[-6.323,57.464],[-6.32,57.468],[-6.32,57.473],[-6.326,57.479],[-6.327,57.481],[-6.327,57.485],[-6.325,57.486],[-6.322,57.486],[-6.319,57.485],[-6.314,57.482],[-6.308,57.483],[-6.309,57.485],[-6.319,57.489],[-6.325,57.49],[-6.329,57.494],[-6.33,57.496],[-6.336,57.499],[-6.343,57.504],[-6.347,57.506],[-6.354,57.508],[-6.358,57.511],[-6.363,57.513],[-6.369,57.518],[-6.37,57.52],[-6.371,57.525],[-6.375,57.527],[-6.376,57.529],[-6.374,57.531],[-6.374,57.533],[-6.375,57.535],[-6.381,57.539],[-6.388,57.542],[-6.39,57.544],[-6.389,57.545],[-6.384,57.544],[-6.384,57.547],[-6.386,57.548],[-6.389,57.548],[-6.393,57.55],[-6.395,57.554],[-6.395,57.556],[-6.398,57.561],[-6.398,57.564],[-6.396,57.567],[-6.395,57.569],[-6.393,57.569],[-6.391,57.569],[-6.388,57.566],[-6.384,57.563],[-6.382,57.563],[-6.38,57.57],[-6.376,57.571],[-6.374,57.572],[-6.369,57.578],[-6.362,57.585],[-6.361,57.588],[-6.362,57.589],[-6.367,57.59],[-6.369,57.59],[-6.375,57.589],[-6.376,57.586],[-6.378,57.585],[-6.387,57.585],[-6.389,57.585],[-6.395,57.585],[-6.396,57.585],[-6.393,57.591],[-6.394,57.593],[-6.399,57.595],[-6.399,57.597],[-6.396,57.598],[-6.396,57.601],[-6.398,57.603],[-6.4,57.608],[-6.397,57.609],[-6.396,57.611],[-6.4,57.615],[-6.402,57.618],[-6.413,57.63],[-6.42,57.633],[-6.424,57.637],[-6.428,57.642],[-6.425,57.645],[-6.423,57.648],[-6.42,57.648],[-6.414,57.648],[-6.408,57.649],[-6.405,57.652],[-6.407,57.653],[-6.407,57.655],[-6.41,57.658],[-6.41,57.66],[-6.409,57.661],[-6.403,57.66],[-6.4,57.659],[-6.396,57.659],[-6.39,57.661],[-6.387,57.659],[-6.38,57.66],[-6.372,57.663],[-6.369,57.664],[-6.366,57.666],[-6.358,57.669],[-6.354,57.671],[-6.354,57.673],[-6.349,57.676],[-6.346,57.68],[-6.346,57.681],[-6.349,57.683],[-6.349,57.684],[-6.345,57.684],[-6.343,57.685],[-6.347,57.692],[-6.35,57.695],[-6.355,57.695],[-6.356,57.698],[-6.354,57.698],[-6.348,57.702],[-6.35,57.703],[-6.352,57.705],[-6.357,57.705],[-6.356,57.707],[-6.353,57.708],[-6.344,57.704],[-6.342,57.701],[-6.341,57.7],[-6.335,57.7],[-6.334,57.699],[-6.33,57.7],[-6.328,57.7],[-6.323,57.701],[-6.323,57.702],[-6.32,57.703],[-6.317,57.705],[-6.314,57.707],[-6.309,57.707],[-6.303,57.706],[-6.3,57.708],[-6.298,57.707],[-6.297,57.706],[-6.293,57.7],[-6.296,57.699],[-6.298,57.695],[-6.3,57.694],[-6.303,57.693],[-6.302,57.691],[-6.298,57.691],[-6.295,57.692],[-6.293,57.691],[-6.288,57.691],[-6.286,57.688],[-6.282,57.687],[-6.278,57.684],[-6.274,57.682],[-6.263,57.681],[-6.259,57.678],[-6.257,57.675],[-6.253,57.674],[-6.251,57.671],[-6.249,57.666],[-6.247,57.662],[-6.242,57.658],[-6.24,57.655],[-6.238,57.651],[-6.238,57.647],[-6.236,57.643],[-6.237,57.64],[-6.236,57.638],[-6.234,57.636],[-6.224,57.634],[-6.217,57.635],[-6.212,57.636],[-6.207,57.637],[-6.205,57.637],[-6.2,57.635],[-6.198,57.633],[-6.195,57.632],[-6.193,57.633],[-6.19,57.631],[-6.186,57.629],[-6.184,57.625],[-6.182,57.624],[-6.177,57.62],[-6.176,57.619],[-6.175,57.614],[-6.172,57.61],[-6.171,57.607],[-6.17,57.605],[-6.168,57.603],[-6.165,57.602],[-6.161,57.599],[-6.157,57.598],[-6.156,57.593],[-6.152,57.589],[-6.152,57.587],[-6.15,57.586],[-6.148,57.587],[-6.141,57.586],[-6.139,57.588],[-6.137,57.588],[-6.138,57.586],[-6.14,57.585],[-6.14,57.583],[-6.144,57.58],[-6.144,57.578],[-6.147,57.574],[-6.145,57.571],[-6.145,57.57],[-6.147,57.568],[-6.148,57.566],[-6.144,57.562],[-6.143,57.558],[-6.146,57.556],[-6.143,57.554],[-6.142,57.55],[-6.139,57.546],[-6.141,57.542],[-6.143,57.541],[-6.144,57.536],[-6.144,57.535],[-6.141,57.525],[-6.142,57.524],[-6.142,57.521],[-6.144,57.519],[-6.143,57.517],[-6.143,57.511],[-6.146,57.503],[-6.149,57.5],[-6.149,57.499],[-6.147,57.496],[-6.144,57.495],[-6.143,57.49],[-6.142,57.489],[-6.141,57.485],[-6.141,57.482],[-6.137,57.473],[-6.138,57.468],[-6.141,57.45],[-6.144,57.444],[-6.145,57.439],[-6.146,57.435],[-6.147,57.43],[-6.149,57.427],[-6.153,57.423],[-6.156,57.422],[-6.162,57.421],[-6.169,57.418],[-6.171,57.416],[-6.174,57.413],[-6.176,57.412],[-6.182,57.414],[-6.185,57.415],[-6.188,57.414],[-6.19,57.412],[-6.19,57.409],[-6.192,57.409],[-6.196,57.41],[-6.198,57.41],[-6.199,57.408],[-6.197,57.404],[-6.197,57.403],[-6.199,57.401],[-6.201,57.396],[-6.2,57.393],[-6.202,57.391],[-6.198,57.391],[-6.193,57.396],[-6.187,57.398],[-6.184,57.401],[-6.184,57.405],[-6.182,57.406],[-6.178,57.404],[-6.178,57.403],[-6.176,57.402],[-6.172,57.402],[-6.168,57.403],[-6.166,57.405],[-6.163,57.405],[-6.159,57.406],[-6.155,57.405],[-6.147,57.405],[-6.144,57.406],[-6.139,57.405],[-6.134,57.401],[-6.132,57.399],[-6.127,57.396],[-6.125,57.395],[-6.124,57.388],[-6.127,57.384],[-6.128,57.383],[-6.13,57.379],[-6.133,57.373],[-6.137,57.372],[-6.139,57.372],[-6.144,57.373],[-6.146,57.371],[-6.139,57.365],[-6.136,57.36],[-6.132,57.358],[-6.126,57.353],[-6.124,57.348],[-6.119,57.345],[-6.116,57.341],[-6.112,57.34],[-6.11,57.338],[-6.107,57.338],[-6.103,57.34],[-6.103,57.342],[-6.105,57.345],[-6.102,57.344],[-6.1,57.342],[-6.096,57.34],[-6.096,57.339],[-6.102,57.338],[-6.106,57.336],[-6.106,57.333],[-6.108,57.332],[-6.108,57.328],[-6.101,57.325],[-6.1,57.322],[-6.106,57.319],[-6.109,57.32],[-6.112,57.32],[-6.115,57.319],[-6.121,57.318],[-6.126,57.317],[-6.133,57.316],[-6.141,57.312],[-6.145,57.309],[-6.152,57.305],[-6.157,57.302],[-6.162,57.3],[-6.166,57.299],[-6.168,57.297],[-6.165,57.296],[-6.161,57.297],[-6.158,57.297],[-6.148,57.3],[-6.145,57.303],[-6.141,57.306],[-6.132,57.309],[-6.126,57.311],[-6.12,57.313],[-6.104,57.315],[-6.103,57.315],[-6.098,57.312],[-6.093,57.312],[-6.088,57.311],[-6.08,57.311],[-6.077,57.312],[-6.072,57.314],[-6.056,57.313],[-6.051,57.312],[-6.049,57.309],[-6.05,57.307],[-6.049,57.302],[-6.05,57.298],[-6.049,57.297],[-6.042,57.295],[-6.042,57.293],[-6.044,57.291],[-6.052,57.288],[-6.061,57.284],[-6.074,57.278],[-6.079,57.276],[-6.081,57.273],[-6.085,57.272],[-6.085,57.27],[-6.082,57.269],[-6.078,57.269],[-6.076,57.267],[-6.071,57.267],[-6.069,57.268],[-6.067,57.27],[-6.06,57.274],[-6.055,57.275],[-6.053,57.276],[-6.049,57.277],[-6.044,57.277],[-6.041,57.278],[-6.036,57.283],[-6.029,57.286],[-6.027,57.287],[-6.023,57.288],[-6.014,57.285],[-6.01,57.281],[-6.006,57.28],[-6.002,57.276],[-5.994,57.271],[-5.989,57.271],[-5.984,57.269],[-5.982,57.268],[-5.979,57.268],[-5.975,57.269],[-5.969,57.269],[-5.959,57.266],[-5.949,57.263],[-5.946,57.263],[-5.941,57.259],[-5.938,57.259],[-5.937,57.26],[-5.938,57.262],[-5.936,57.263],[-5.93,57.263],[-5.924,57.261],[-5.918,57.258],[-5.913,57.255],[-5.907,57.253],[-5.906,57.251],[-5.907,57.248],[-5.91,57.244],[-5.908,57.243],[-5.902,57.242],[-5.896,57.24],[-5.883,57.239],[-5.88,57.239],[-5.877,57.241],[-5.876,57.243],[-5.873,57.246],[-5.865,57.247],[-5.863,57.248],[-5.857,57.249],[-5.852,57.253],[-5.848,57.254],[-5.846,57.251],[-5.852,57.25],[-5.849,57.249],[-5.849,57.248],[-5.855,57.246],[-5.858,57.245],[-5.862,57.243],[-5.862,57.242],[-5.855,57.245],[-5.851,57.246],[-5.842,57.25],[-5.838,57.25],[-5.834,57.252],[-5.826,57.254],[-5.821,57.257],[-5.819,57.257],[-5.814,57.255],[-5.809,57.256],[-5.803,57.26],[-5.797,57.262],[-5.792,57.263],[-5.789,57.266],[-5.787,57.267],[-5.781,57.268],[-5.777,57.27],[-5.774,57.271],[-5.767,57.271],[-5.764,57.271],[-5.755,57.273],[-5.748,57.273],[-5.74,57.275],[-5.736,57.274],[-5.731,57.274],[-5.728,57.274],[-5.724,57.274],[-5.724,57.272],[-5.729,57.271],[-5.74,57.271],[-5.742,57.272],[-5.743,57.272],[-5.744,57.27],[-5.742,57.269],[-5.726,57.27],[-5.72,57.272],[-5.718,57.27],[-5.714,57.271],[-5.712,57.27],[-5.717,57.267],[-5.721,57.265],[-5.729,57.264],[-5.734,57.262],[-5.735,57.26],[-5.73,57.26],[-5.718,57.26],[-5.716,57.261],[-5.709,57.262],[-5.696,57.263],[-5.69,57.262],[-5.682,57.264],[-5.675,57.263],[-5.671,57.264],[-5.664,57.264],[-5.654,57.258],[-5.651,57.257],[-5.65,57.256],[-5.649,57.252]],[[-5.905,57.103],[-5.909,57.106],[-5.909,57.107],[-5.919,57.106],[-5.916,57.104],[-5.911,57.103],[-5.91,57.101],[-5.907,57.1],[-5.905,57.103]]],[[[-5.603,57.826],[-5.605,57.824],[-5.605,57.821],[-5.607,57.821],[-5.613,57.822],[-5.619,57.822],[-5.621,57.822],[-5.624,57.824],[-5.628,57.827],[-5.631,57.828],[-5.641,57.832],[-5.641,57.836],[-5.645,57.838],[-5.646,57.839],[-5.644,57.842],[-5.641,57.843],[-5.64,57.846],[-5.637,57.847],[-5.635,57.846],[-5.636,57.842],[-5.636,57.841],[-5.63,57.84],[-5.626,57.84],[-5.621,57.837],[-5.616,57.835],[-5.61,57.833],[-5.606,57.831],[-5.604,57.829],[-5.603,57.826]]],[[[-5.526,57.084],[-5.559,57.082],[-5.563,57.082],[-5.576,57.074],[-5.642,57.081],[-5.647,57.079],[-5.659,57.08],[-5.682,57.076],[-5.723,57.103],[-5.729,57.104],[-5.727,57.109],[-5.725,57.112],[-5.725,57.114],[-5.723,57.115],[-5.722,57.117],[-5.721,57.118],[-5.711,57.119],[-5.702,57.119],[-5.696,57.12],[-5.684,57.119],[-5.677,57.119],[-5.669,57.122],[-5.664,57.123],[-5.659,57.125],[-5.655,57.126],[-5.648,57.127],[-5.643,57.127],[-5.637,57.124],[-5.631,57.122],[-5.624,57.122],[-5.614,57.12],[-5.611,57.12],[-5.608,57.12],[-5.599,57.119],[-5.595,57.119],[-5.593,57.118],[-5.591,57.117],[-5.586,57.11],[-5.58,57.108],[-5.579,57.106],[-5.575,57.103],[-5.572,57.102],[-5.572,57.098],[-5.57,57.096],[-5.567,57.095],[-5.564,57.095],[-5.562,57.097],[-5.558,57.097],[-5.555,57.094],[-5.551,57.09],[-5.547,57.09],[-5.545,57.089],[-5.54,57.088],[-5.538,57.087],[-5.531,57.085],[-5.526,57.084]]],[[[-5.524,57.699],[-5.529,57.696],[-5.533,57.697],[-5.536,57.7],[-5.538,57.7],[-5.535,57.702],[-5.531,57.703],[-5.529,57.704],[-5.526,57.703],[-5.524,57.699]]],[[[-5.506,57.988],[-5.508,57.985],[-5.511,57.983],[-5.512,57.984],[-5.51,57.988],[-5.507,57.989],[-5.506,57.988]]],[[[-5.5,57.692],[-5.503,57.691],[-5.506,57.691],[-5.511,57.693],[-5.516,57.693],[-5.519,57.698],[-5.512,57.697],[-5.508,57.697],[-5.508,57.694],[-5.505,57.694],[-5.504,57.696],[-5.501,57.695],[-5.5,57.692]]],[[[-5.497,57.961],[-5.498,57.959],[-5.498,57.957],[-5.505,57.955],[-5.507,57.956],[-5.514,57.955],[-5.518,57.955],[-5.517,57.957],[-5.522,57.96],[-5.526,57.96],[-5.524,57.962],[-5.518,57.962],[-5.514,57.964],[-5.512,57.966],[-5.51,57.968],[-5.506,57.967],[-5.506,57.966],[-5.504,57.965],[-5.505,57.961],[-5.504,57.96],[-5.5,57.961],[-5.497,57.961]]],[[[-5.474,57.69],[-5.478,57.687],[-5.478,57.686],[-5.482,57.685],[-5.488,57.685],[-5.493,57.687],[-5.494,57.69],[-5.49,57.694],[-5.492,57.694],[-5.496,57.691],[-5.498,57.691],[-5.499,57.695],[-5.498,57.696],[-5.495,57.697],[-5.49,57.696],[-5.489,57.698],[-5.487,57.697],[-5.487,57.696],[-5.484,57.695],[-5.483,57.694],[-5.479,57.694],[-5.474,57.69]]],[[[-5.464,58.03],[-5.469,58.025],[-5.473,58.025],[-5.474,58.026],[-5.473,58.027],[-5.473,58.03],[-5.475,58.03],[-5.471,58.032],[-5.466,58.032],[-5.464,58.03]]],[[[-5.462,57.884],[-5.463,57.881],[-5.463,57.879],[-5.466,57.879],[-5.468,57.878],[-5.476,57.881],[-5.478,57.883],[-5.481,57.888],[-5.481,57.892],[-5.482,57.893],[-5.48,57.896],[-5.48,57.897],[-5.478,57.898],[-5.473,57.898],[-5.469,57.898],[-5.467,57.896],[-5.464,57.894],[-5.463,57.891],[-5.463,57.888],[-5.464,57.887],[-5.462,57.884]]],[[[-5.456,58.049],[-5.457,58.048],[-5.458,58.046],[-5.461,58.043],[-5.465,58.044],[-5.467,58.045],[-5.467,58.048],[-5.462,58.052],[-5.458,58.053],[-5.456,58.049]]],[[[-5.455,57.962],[-5.459,57.959],[-5.462,57.959],[-5.462,57.961],[-5.455,57.962]]],[[[-5.444,58.02],[-5.445,58.019],[-5.448,58.019],[-5.448,58.022],[-5.445,58.023],[-5.444,58.022],[-5.444,58.02]]],[[[-5.434,58.009],[-5.435,58.007],[-5.438,58.005],[-5.442,58.006],[-5.443,58.005],[-5.447,58.004],[-5.452,58.004],[-5.453,58.007],[-5.45,58.009],[-5.452,58.011],[-5.455,58.011],[-5.459,58.012],[-5.456,58.014],[-5.452,58.016],[-5.45,58.015],[-5.445,58.016],[-5.446,58.013],[-5.442,58.012],[-5.434,58.009]]],[[[-5.428,58.01],[-5.431,58.009],[-5.433,58.012],[-5.437,58.012],[-5.437,58.014],[-5.435,58.017],[-5.432,58.018],[-5.429,58.015],[-5.431,58.012],[-5.428,58.01]]],[[[-5.423,58.047],[-5.424,58.045],[-5.427,58.044],[-5.427,58.043],[-5.431,58.041],[-5.431,58.039],[-5.433,58.038],[-5.435,58.038],[-5.439,58.039],[-5.445,58.039],[-5.449,58.04],[-5.45,58.043],[-5.451,58.043],[-5.45,58.046],[-5.447,58.05],[-5.443,58.051],[-5.44,58.05],[-5.439,58.054],[-5.437,58.054],[-5.436,58.052],[-5.437,58.049],[-5.435,58.048],[-5.429,58.048],[-5.423,58.047]]],[[[-5.421,57.978],[-5.426,57.974],[-5.43,57.972],[-5.432,57.971],[-5.434,57.971],[-5.434,57.973],[-5.436,57.974],[-5.434,57.976],[-5.431,57.979],[-5.425,57.98],[-5.425,57.978],[-5.421,57.978]]],[[[-5.383,58.006],[-5.384,58.005],[-5.389,58.004],[-5.391,58.004],[-5.393,58.002],[-5.398,58],[-5.403,58],[-5.404,58.001],[-5.412,58],[-5.416,58.002],[-5.414,58.006],[-5.416,58.006],[-5.422,58.006],[-5.421,58.01],[-5.419,58.011],[-5.419,58.015],[-5.421,58.02],[-5.419,58.021],[-5.415,58.017],[-5.413,58.019],[-5.415,58.02],[-5.414,58.023],[-5.41,58.024],[-5.407,58.023],[-5.403,58.023],[-5.4,58.021],[-5.397,58.02],[-5.396,58.016],[-5.4,58.017],[-5.403,58.013],[-5.403,58.01],[-5.399,58.01],[-5.396,58.008],[-5.391,58.01],[-5.389,58.008],[-5.386,58.009],[-5.383,58.008],[-5.383,58.006]]],[[[-5.338,57.986],[-5.344,57.982],[-5.346,57.98],[-5.353,57.982],[-5.349,57.989],[-5.351,57.993],[-5.349,57.994],[-5.351,57.997],[-5.348,57.997],[-5.345,57.996],[-5.345,57.992],[-5.342,57.992],[-5.34,57.99],[-5.341,57.988],[-5.34,57.986],[-5.338,57.986]]],[[[-5.308,58.143],[-5.315,58.142],[-5.32,58.142],[-5.325,58.141],[-5.331,58.142],[-5.33,58.144],[-5.327,58.144],[-5.324,58.145],[-5.321,58.146],[-5.317,58.146],[-5.311,58.144],[-5.308,58.143]]],[[[-5.292,58.102],[-5.293,58.101],[-5.298,58.102],[-5.302,58.101],[-5.306,58.102],[-5.302,58.105],[-5.295,58.104],[-5.292,58.102]]],[[[-5.239,58.257],[-5.241,58.255],[-5.244,58.255],[-5.241,58.251],[-5.247,58.251],[-5.251,58.252],[-5.256,58.251],[-5.261,58.252],[-5.267,58.253],[-5.27,58.252],[-5.273,58.253],[-5.27,58.254],[-5.273,58.257],[-5.276,58.257],[-5.28,58.258],[-5.279,58.261],[-5.276,58.262],[-5.271,58.264],[-5.268,58.266],[-5.265,58.267],[-5.263,58.268],[-5.26,58.267],[-5.258,58.266],[-5.259,58.264],[-5.257,58.262],[-5.251,58.261],[-5.249,58.259],[-5.247,58.26],[-5.241,58.262],[-5.24,58.261],[-5.242,58.257],[-5.239,58.257]]],[[[-5.208,57.946],[-5.212,57.945],[-5.214,57.942],[-5.216,57.939],[-5.211,57.939],[-5.212,57.937],[-5.222,57.937],[-5.224,57.937],[-5.224,57.939],[-5.227,57.94],[-5.23,57.941],[-5.235,57.943],[-5.238,57.946],[-5.24,57.947],[-5.239,57.948],[-5.236,57.949],[-5.228,57.95],[-5.218,57.949],[-5.214,57.95],[-5.209,57.947],[-5.208,57.946]]],[[[-5.165,58.382],[-5.167,58.381],[-5.169,58.379],[-5.169,58.377],[-5.174,58.374],[-5.177,58.374],[-5.181,58.376],[-5.187,58.375],[-5.189,58.373],[-5.197,58.371],[-5.199,58.372],[-5.199,58.374],[-5.205,58.374],[-5.21,58.377],[-5.209,58.383],[-5.207,58.384],[-5.204,58.383],[-5.202,58.384],[-5.202,58.387],[-5.195,58.388],[-5.193,58.387],[-5.184,58.39],[-5.179,58.39],[-5.179,58.389],[-5.174,58.388],[-5.165,58.382]]],[[[-5.139,58.278],[-5.141,58.277],[-5.144,58.277],[-5.149,58.28],[-5.152,58.28],[-5.153,58.282],[-5.151,58.283],[-5.152,58.284],[-5.156,58.283],[-5.156,58.286],[-5.153,58.287],[-5.149,58.285],[-5.147,58.283],[-5.144,58.283],[-5.139,58.278]]],[[[-5.116,58.478],[-5.122,58.476],[-5.124,58.476],[-5.126,58.475],[-5.13,58.474],[-5.133,58.473],[-5.137,58.473],[-5.141,58.475],[-5.135,58.477],[-5.132,58.477],[-5.129,58.479],[-5.126,58.479],[-5.123,58.48],[-5.118,58.479],[-5.116,58.478]]],[[[-5.073,58.404],[-5.075,58.403],[-5.077,58.404],[-5.081,58.402],[-5.084,58.404],[-5.084,58.405],[-5.081,58.406],[-5.076,58.407],[-5.073,58.404]]],[[[-5.043,57.145],[-5.044,57.144],[-5.053,57.142],[-5.057,57.142],[-5.061,57.143],[-5.056,57.145],[-5.048,57.146],[-5.043,57.145]]],[[[-4.701,58.487],[-4.705,58.484],[-4.705,58.482],[-4.709,58.479],[-4.711,58.476],[-4.713,58.476],[-4.715,58.478],[-4.714,58.481],[-4.711,58.485],[-4.702,58.487],[-4.701,58.487]]],[[[-4.665,58.568],[-4.672,58.566],[-4.674,58.566],[-4.677,58.564],[-4.681,58.564],[-4.683,58.564],[-4.687,58.564],[-4.688,58.565],[-4.686,58.568],[-4.68,58.567],[-4.678,58.568],[-4.678,58.569],[-4.672,58.57],[-4.669,58.571],[-4.667,58.571],[-4.665,58.568]]],[[[-4.387,58.54],[-4.388,58.537],[-4.39,58.536],[-4.39,58.534],[-4.393,58.534],[-4.397,58.532],[-4.397,58.53],[-4.401,58.53],[-4.407,58.532],[-4.409,58.535],[-4.407,58.535],[-4.407,58.537],[-4.403,58.538],[-4.401,58.535],[-4.397,58.536],[-4.394,58.537],[-4.393,58.541],[-4.39,58.541],[-4.387,58.54]]],[[[-3.514,57.453],[-3.545,57.454],[-3.557,57.449],[-3.602,57.448],[-3.604,57.448],[-3.611,57.448],[-3.659,57.459],[-3.667,57.458],[-3.668,57.462],[-3.667,57.466],[-3.68,57.47],[-3.697,57.472],[-3.708,57.467],[-3.713,57.465],[-3.715,57.463],[-3.719,57.462],[-3.718,57.461],[-3.746,57.455],[-3.755,57.453],[-3.756,57.45],[-3.754,57.446],[-3.756,57.44],[-3.751,57.44],[-3.747,57.439],[-3.743,57.439],[-3.733,57.441],[-3.724,57.443],[-3.72,57.445],[-3.718,57.446],[-3.707,57.447],[-3.705,57.444],[-3.722,57.431],[-3.723,57.429],[-3.746,57.415],[-3.755,57.413],[-3.754,57.41],[-3.755,57.406],[-3.767,57.41],[-3.771,57.411],[-3.806,57.415],[-3.843,57.416],[-3.855,57.408],[-3.821,57.384],[-3.81,57.368],[-3.813,57.364],[-3.849,57.356],[-3.852,57.334],[-3.855,57.329],[-3.892,57.324],[-3.91,57.33],[-3.943,57.322],[-3.961,57.315],[-3.956,57.313],[-3.958,57.311],[-3.947,57.291],[-3.96,57.284],[-3.963,57.284],[-3.988,57.267],[-3.991,57.257],[-4.031,57.241],[-4.031,57.237],[-3.972,57.231],[-3.949,57.194],[-3.952,57.194],[-4.039,57.226],[-4.051,57.22],[-4.055,57.21],[-4.1,57.182],[-4.146,57.186],[-4.169,57.177],[-4.209,57.139],[-4.227,57.136],[-4.267,57.11],[-4.269,57.11],[-4.319,57.098],[-4.338,57.083],[-4.375,57.074],[-4.454,57.076],[-4.484,57.115],[-4.505,57.133],[-4.506,57.134],[-4.555,57.139],[-4.565,57.14],[-4.569,57.143],[-4.579,57.155],[-4.616,57.172],[-4.602,57.182],[-4.599,57.187],[-4.593,57.19],[-4.591,57.192],[-4.585,57.197],[-4.582,57.2],[-4.577,57.204],[-4.572,57.207],[-4.568,57.21],[-4.564,57.212],[-4.554,57.219],[-4.545,57.223],[-4.543,57.225],[-4.534,57.232],[-4.524,57.236],[-4.523,57.238],[-4.517,57.244],[-4.509,57.249],[-4.502,57.255],[-4.498,57.257],[-4.491,57.258],[-4.488,57.259],[-4.482,57.265],[-4.476,57.27],[-4.47,57.276],[-4.466,57.277],[-4.46,57.282],[-4.457,57.283],[-4.455,57.286],[-4.452,57.289],[-4.451,57.292],[-4.447,57.294],[-4.445,57.296],[-4.44,57.299],[-4.436,57.304],[-4.43,57.308],[-4.425,57.312],[-4.419,57.316],[-4.415,57.319],[-4.411,57.324],[-4.407,57.327],[-4.404,57.33],[-4.395,57.334],[-4.389,57.337],[-4.378,57.345],[-4.374,57.349],[-4.368,57.353],[-4.362,57.359],[-4.361,57.36],[-4.357,57.363],[-4.353,57.368],[-4.343,57.374],[-4.337,57.38],[-4.336,57.382],[-4.338,57.384],[-4.34,57.385],[-4.346,57.385],[-4.347,57.386],[-4.347,57.388],[-4.346,57.39],[-4.339,57.394],[-4.337,57.397],[-4.334,57.399],[-4.333,57.402],[-4.33,57.405],[-4.327,57.409],[-4.327,57.411],[-4.325,57.413],[-4.323,57.415],[-4.311,57.423],[-4.308,57.425],[-4.306,57.428],[-4.309,57.428],[-4.315,57.424],[-4.322,57.421],[-4.326,57.418],[-4.33,57.414],[-4.331,57.411],[-4.329,57.41],[-4.33,57.408],[-4.335,57.409],[-4.337,57.408],[-4.338,57.406],[-4.341,57.404],[-4.346,57.402],[-4.352,57.398],[-4.362,57.391],[-4.371,57.384],[-4.376,57.379],[-4.379,57.377],[-4.387,57.368],[-4.394,57.361],[-4.401,57.356],[-4.404,57.353],[-4.414,57.347],[-4.422,57.342],[-4.433,57.338],[-4.439,57.337],[-4.45,57.335],[-4.451,57.334],[-4.453,57.33],[-4.451,57.329],[-4.444,57.328],[-4.441,57.327],[-4.441,57.325],[-4.439,57.324],[-4.444,57.321],[-4.453,57.313],[-4.457,57.31],[-4.459,57.308],[-4.466,57.301],[-4.47,57.296],[-4.477,57.29],[-4.482,57.287],[-4.489,57.282],[-4.499,57.272],[-4.508,57.267],[-4.523,57.258],[-4.528,57.254],[-4.532,57.252],[-4.535,57.248],[-4.543,57.244],[-4.55,57.241],[-4.554,57.238],[-4.556,57.236],[-4.558,57.235],[-4.572,57.225],[-4.573,57.223],[-4.576,57.222],[-4.581,57.219],[-4.591,57.214],[-4.604,57.209],[-4.607,57.207],[-4.606,57.202],[-4.608,57.199],[-4.613,57.194],[-4.618,57.189],[-4.619,57.186],[-4.625,57.183],[-4.628,57.182],[-4.633,57.18],[-4.635,57.177],[-4.641,57.172],[-4.644,57.172],[-4.648,57.168],[-4.652,57.165],[-4.657,57.163],[-4.657,57.161],[-4.66,57.159],[-4.693,57.181],[-4.7,57.178],[-4.709,57.176],[-4.73,57.171],[-4.74,57.17],[-4.753,57.162],[-4.757,57.159],[-4.771,57.15],[-4.785,57.143],[-4.818,57.139],[-4.852,57.12],[-4.861,57.119],[-4.901,57.122],[-4.954,57.104],[-4.986,57.093],[-4.988,57.092],[-4.996,57.086],[-4.999,57.083],[-5.004,57.084],[-5.009,57.082],[-5.006,57.073],[-5.006,57.071],[-5.013,57.07],[-5.021,57.074],[-5.022,57.075],[-5.029,57.07],[-5.023,57.08],[-5.059,57.084],[-5.06,57.084],[-5.055,57.092],[-5.055,57.093],[-5.052,57.093],[-5.048,57.094],[-5.044,57.093],[-5.043,57.092],[-5.04,57.092],[-5.039,57.093],[-5.036,57.095],[-5.032,57.094],[-5.027,57.096],[-5.017,57.098],[-5.008,57.1],[-5,57.103],[-4.994,57.107],[-4.989,57.111],[-4.982,57.12],[-4.979,57.121],[-4.973,57.125],[-4.977,57.127],[-4.978,57.127],[-4.982,57.124],[-4.987,57.125],[-5,57.127],[-4.987,57.135],[-4.991,57.14],[-4.995,57.142],[-5.002,57.142],[-5.003,57.146],[-5.007,57.145],[-5.01,57.146],[-5.02,57.147],[-5.034,57.148],[-5.041,57.148],[-5.051,57.147],[-5.061,57.147],[-5.067,57.145],[-5.068,57.143],[-5.072,57.141],[-5.076,57.141],[-5.089,57.143],[-5.093,57.146],[-5.098,57.146],[-5.111,57.146],[-5.122,57.149],[-5.125,57.15],[-5.126,57.151],[-5.129,57.152],[-5.141,57.154],[-5.15,57.157],[-5.156,57.159],[-5.161,57.16],[-5.165,57.159],[-5.168,57.156],[-5.173,57.155],[-5.175,57.154],[-5.174,57.153],[-5.181,57.153],[-5.181,57.155],[-5.183,57.155],[-5.187,57.153],[-5.194,57.152],[-5.196,57.152],[-5.199,57.152],[-5.199,57.15],[-5.194,57.15],[-5.187,57.15],[-5.181,57.151],[-5.164,57.151],[-5.158,57.15],[-5.152,57.15],[-5.145,57.15],[-5.143,57.147],[-5.14,57.144],[-5.138,57.143],[-5.133,57.144],[-5.133,57.14],[-5.134,57.127],[-5.137,57.117],[-5.156,57.109],[-5.181,57.113],[-5.195,57.112],[-5.207,57.119],[-5.213,57.121],[-5.231,57.127],[-5.25,57.132],[-5.276,57.137],[-5.282,57.137],[-5.302,57.138],[-5.323,57.131],[-5.331,57.129],[-5.346,57.133],[-5.373,57.14],[-5.384,57.142],[-5.392,57.145],[-5.41,57.15],[-5.418,57.152],[-5.428,57.153],[-5.454,57.117],[-5.45,57.11],[-5.455,57.109],[-5.457,57.107],[-5.46,57.108],[-5.465,57.106],[-5.467,57.107],[-5.471,57.105],[-5.476,57.105],[-5.482,57.104],[-5.487,57.102],[-5.489,57.101],[-5.491,57.102],[-5.491,57.104],[-5.493,57.105],[-5.502,57.104],[-5.516,57.101],[-5.527,57.102],[-5.529,57.102],[-5.534,57.104],[-5.538,57.106],[-5.546,57.108],[-5.548,57.11],[-5.553,57.112],[-5.551,57.116],[-5.552,57.117],[-5.557,57.122],[-5.555,57.124],[-5.56,57.127],[-5.559,57.13],[-5.561,57.133],[-5.567,57.134],[-5.572,57.133],[-5.578,57.133],[-5.579,57.134],[-5.581,57.138],[-5.585,57.14],[-5.592,57.14],[-5.598,57.142],[-5.603,57.143],[-5.611,57.145],[-5.616,57.145],[-5.624,57.145],[-5.63,57.145],[-5.635,57.144],[-5.648,57.142],[-5.656,57.142],[-5.661,57.143],[-5.666,57.144],[-5.669,57.146],[-5.678,57.148],[-5.683,57.152],[-5.682,57.154],[-5.686,57.156],[-5.689,57.157],[-5.69,57.16],[-5.692,57.163],[-5.688,57.167],[-5.689,57.169],[-5.692,57.169],[-5.692,57.171],[-5.683,57.176],[-5.678,57.183],[-5.671,57.185],[-5.662,57.189],[-5.655,57.193],[-5.65,57.196],[-5.643,57.197],[-5.637,57.201],[-5.638,57.203],[-5.636,57.204],[-5.635,57.208],[-5.63,57.21],[-5.629,57.211],[-5.625,57.212],[-5.627,57.218],[-5.631,57.219],[-5.632,57.219],[-5.632,57.222],[-5.635,57.224],[-5.64,57.225],[-5.649,57.225],[-5.654,57.227],[-5.655,57.228],[-5.657,57.232],[-5.656,57.235],[-5.652,57.239],[-5.647,57.243],[-5.644,57.244],[-5.64,57.247],[-5.637,57.249],[-5.635,57.25],[-5.627,57.251],[-5.618,57.251],[-5.605,57.254],[-5.6,57.258],[-5.595,57.259],[-5.59,57.256],[-5.588,57.256],[-5.581,57.256],[-5.574,57.258],[-5.569,57.261],[-5.559,57.263],[-5.554,57.264],[-5.55,57.265],[-5.546,57.268],[-5.541,57.269],[-5.536,57.269],[-5.533,57.271],[-5.53,57.271],[-5.528,57.269],[-5.524,57.27],[-5.519,57.266],[-5.516,57.264],[-5.515,57.262],[-5.511,57.259],[-5.508,57.254],[-5.5,57.25],[-5.489,57.244],[-5.485,57.241],[-5.484,57.238],[-5.48,57.236],[-5.473,57.232],[-5.466,57.231],[-5.456,57.226],[-5.449,57.224],[-5.445,57.222],[-5.444,57.22],[-5.442,57.218],[-5.437,57.215],[-5.435,57.213],[-5.433,57.212],[-5.427,57.215],[-5.428,57.217],[-5.422,57.218],[-5.419,57.219],[-5.419,57.222],[-5.415,57.225],[-5.409,57.226],[-5.407,57.227],[-5.4,57.23],[-5.394,57.232],[-5.396,57.233],[-5.397,57.235],[-5.4,57.235],[-5.405,57.233],[-5.411,57.232],[-5.415,57.23],[-5.416,57.232],[-5.427,57.234],[-5.433,57.235],[-5.44,57.236],[-5.449,57.237],[-5.45,57.238],[-5.462,57.242],[-5.464,57.244],[-5.474,57.251],[-5.476,57.253],[-5.48,57.255],[-5.488,57.257],[-5.493,57.261],[-5.497,57.261],[-5.504,57.265],[-5.51,57.271],[-5.515,57.273],[-5.516,57.274],[-5.517,57.277],[-5.517,57.281],[-5.516,57.282],[-5.507,57.286],[-5.497,57.29],[-5.493,57.294],[-5.489,57.295],[-5.486,57.299],[-5.487,57.305],[-5.486,57.306],[-5.473,57.309],[-5.466,57.308],[-5.461,57.309],[-5.453,57.31],[-5.448,57.311],[-5.445,57.311],[-5.435,57.314],[-5.432,57.315],[-5.434,57.319],[-5.437,57.318],[-5.44,57.319],[-5.443,57.319],[-5.445,57.316],[-5.449,57.316],[-5.452,57.315],[-5.456,57.315],[-5.46,57.316],[-5.466,57.316],[-5.47,57.313],[-5.475,57.313],[-5.483,57.311],[-5.486,57.309],[-5.489,57.307],[-5.49,57.304],[-5.489,57.302],[-5.49,57.299],[-5.497,57.294],[-5.499,57.293],[-5.509,57.291],[-5.511,57.289],[-5.518,57.284],[-5.521,57.282],[-5.521,57.278],[-5.523,57.278],[-5.525,57.28],[-5.526,57.28],[-5.532,57.28],[-5.536,57.282],[-5.538,57.28],[-5.545,57.279],[-5.551,57.277],[-5.555,57.276],[-5.559,57.278],[-5.559,57.281],[-5.564,57.278],[-5.568,57.276],[-5.574,57.273],[-5.577,57.273],[-5.58,57.274],[-5.586,57.273],[-5.593,57.271],[-5.594,57.272],[-5.594,57.277],[-5.599,57.279],[-5.6,57.281],[-5.602,57.281],[-5.602,57.279],[-5.608,57.277],[-5.618,57.274],[-5.619,57.274],[-5.623,57.278],[-5.625,57.281],[-5.626,57.282],[-5.635,57.283],[-5.637,57.283],[-5.643,57.286],[-5.647,57.286],[-5.651,57.285],[-5.659,57.282],[-5.662,57.281],[-5.67,57.281],[-5.671,57.28],[-5.679,57.28],[-5.685,57.281],[-5.69,57.282],[-5.693,57.282],[-5.696,57.281],[-5.701,57.28],[-5.708,57.279],[-5.713,57.279],[-5.724,57.279],[-5.73,57.281],[-5.733,57.283],[-5.728,57.286],[-5.725,57.284],[-5.721,57.284],[-5.717,57.282],[-5.717,57.283],[-5.719,57.285],[-5.723,57.286],[-5.722,57.289],[-5.726,57.293],[-5.729,57.296],[-5.729,57.298],[-5.724,57.3],[-5.72,57.301],[-5.719,57.302],[-5.723,57.304],[-5.727,57.304],[-5.727,57.306],[-5.725,57.307],[-5.724,57.309],[-5.721,57.31],[-5.72,57.313],[-5.716,57.315],[-5.71,57.317],[-5.703,57.318],[-5.701,57.32],[-5.702,57.323],[-5.697,57.326],[-5.691,57.326],[-5.688,57.324],[-5.681,57.324],[-5.673,57.326],[-5.674,57.327],[-5.676,57.328],[-5.681,57.328],[-5.683,57.332],[-5.683,57.333],[-5.678,57.334],[-5.678,57.337],[-5.681,57.337],[-5.684,57.336],[-5.685,57.339],[-5.685,57.341],[-5.682,57.341],[-5.678,57.34],[-5.675,57.34],[-5.67,57.341],[-5.664,57.34],[-5.662,57.34],[-5.657,57.342],[-5.659,57.343],[-5.659,57.346],[-5.655,57.346],[-5.653,57.344],[-5.651,57.345],[-5.644,57.346],[-5.644,57.342],[-5.646,57.339],[-5.648,57.34],[-5.653,57.335],[-5.65,57.334],[-5.646,57.335],[-5.639,57.336],[-5.635,57.338],[-5.633,57.339],[-5.627,57.339],[-5.618,57.338],[-5.611,57.34],[-5.607,57.342],[-5.597,57.344],[-5.589,57.345],[-5.588,57.345],[-5.588,57.349],[-5.586,57.351],[-5.582,57.353],[-5.577,57.354],[-5.571,57.354],[-5.567,57.355],[-5.563,57.355],[-5.557,57.354],[-5.55,57.353],[-5.541,57.353],[-5.536,57.353],[-5.532,57.355],[-5.526,57.358],[-5.519,57.362],[-5.513,57.363],[-5.511,57.365],[-5.506,57.366],[-5.502,57.37],[-5.501,57.371],[-5.499,57.372],[-5.495,57.375],[-5.477,57.382],[-5.471,57.384],[-5.469,57.386],[-5.461,57.389],[-5.458,57.391],[-5.46,57.392],[-5.459,57.394],[-5.456,57.399],[-5.453,57.406],[-5.448,57.409],[-5.443,57.413],[-5.439,57.416],[-5.44,57.418],[-5.444,57.42],[-5.446,57.423],[-5.45,57.425],[-5.454,57.423],[-5.46,57.422],[-5.463,57.42],[-5.469,57.417],[-5.473,57.413],[-5.477,57.407],[-5.48,57.403],[-5.492,57.4],[-5.495,57.399],[-5.503,57.395],[-5.507,57.392],[-5.507,57.391],[-5.505,57.389],[-5.499,57.39],[-5.5,57.388],[-5.509,57.388],[-5.51,57.386],[-5.513,57.385],[-5.519,57.382],[-5.52,57.38],[-5.525,57.378],[-5.527,57.376],[-5.531,57.374],[-5.536,57.368],[-5.55,57.361],[-5.55,57.36],[-5.552,57.358],[-5.555,57.358],[-5.559,57.36],[-5.565,57.358],[-5.575,57.359],[-5.581,57.359],[-5.585,57.359],[-5.6,57.355],[-5.605,57.355],[-5.607,57.356],[-5.611,57.359],[-5.608,57.361],[-5.602,57.362],[-5.598,57.363],[-5.598,57.365],[-5.606,57.365],[-5.613,57.365],[-5.621,57.366],[-5.624,57.365],[-5.626,57.366],[-5.632,57.365],[-5.634,57.367],[-5.635,57.371],[-5.638,57.372],[-5.638,57.376],[-5.632,57.38],[-5.63,57.38],[-5.625,57.38],[-5.623,57.381],[-5.619,57.383],[-5.609,57.384],[-5.608,57.385],[-5.603,57.387],[-5.598,57.388],[-5.595,57.391],[-5.596,57.394],[-5.597,57.395],[-5.603,57.395],[-5.604,57.397],[-5.607,57.397],[-5.608,57.399],[-5.611,57.4],[-5.614,57.4],[-5.613,57.405],[-5.607,57.411],[-5.606,57.413],[-5.609,57.414],[-5.609,57.416],[-5.613,57.415],[-5.616,57.411],[-5.616,57.409],[-5.619,57.406],[-5.622,57.405],[-5.624,57.402],[-5.623,57.401],[-5.624,57.398],[-5.632,57.397],[-5.636,57.396],[-5.642,57.392],[-5.649,57.391],[-5.655,57.389],[-5.658,57.389],[-5.663,57.387],[-5.665,57.385],[-5.67,57.382],[-5.68,57.38],[-5.681,57.379],[-5.687,57.378],[-5.692,57.376],[-5.693,57.374],[-5.699,57.37],[-5.711,57.365],[-5.714,57.364],[-5.716,57.363],[-5.718,57.361],[-5.721,57.36],[-5.721,57.358],[-5.726,57.356],[-5.729,57.355],[-5.737,57.354],[-5.743,57.352],[-5.746,57.352],[-5.752,57.351],[-5.759,57.35],[-5.768,57.349],[-5.772,57.349],[-5.775,57.348],[-5.784,57.347],[-5.787,57.348],[-5.79,57.35],[-5.793,57.351],[-5.799,57.355],[-5.799,57.357],[-5.803,57.358],[-5.805,57.36],[-5.805,57.363],[-5.807,57.365],[-5.806,57.371],[-5.806,57.374],[-5.809,57.375],[-5.811,57.373],[-5.813,57.372],[-5.815,57.37],[-5.812,57.364],[-5.814,57.362],[-5.818,57.361],[-5.821,57.363],[-5.821,57.365],[-5.823,57.366],[-5.824,57.369],[-5.825,57.373],[-5.824,57.375],[-5.827,57.379],[-5.828,57.381],[-5.826,57.384],[-5.827,57.387],[-5.829,57.389],[-5.831,57.391],[-5.83,57.392],[-5.826,57.39],[-5.824,57.388],[-5.82,57.389],[-5.82,57.391],[-5.822,57.395],[-5.82,57.398],[-5.82,57.401],[-5.816,57.401],[-5.814,57.397],[-5.811,57.394],[-5.807,57.393],[-5.807,57.395],[-5.808,57.4],[-5.811,57.403],[-5.812,57.406],[-5.815,57.407],[-5.817,57.41],[-5.82,57.412],[-5.825,57.411],[-5.826,57.413],[-5.825,57.416],[-5.826,57.418],[-5.823,57.422],[-5.823,57.425],[-5.822,57.428],[-5.818,57.431],[-5.817,57.433],[-5.815,57.434],[-5.811,57.437],[-5.806,57.439],[-5.807,57.44],[-5.811,57.441],[-5.816,57.443],[-5.819,57.443],[-5.826,57.441],[-5.833,57.441],[-5.838,57.44],[-5.845,57.44],[-5.851,57.441],[-5.853,57.442],[-5.857,57.445],[-5.859,57.448],[-5.862,57.456],[-5.863,57.463],[-5.864,57.464],[-5.865,57.467],[-5.863,57.469],[-5.865,57.471],[-5.869,57.469],[-5.872,57.47],[-5.873,57.473],[-5.872,57.475],[-5.869,57.479],[-5.869,57.482],[-5.869,57.486],[-5.87,57.49],[-5.867,57.492],[-5.867,57.495],[-5.867,57.498],[-5.869,57.502],[-5.867,57.507],[-5.865,57.507],[-5.864,57.51],[-5.863,57.514],[-5.854,57.526],[-5.855,57.533],[-5.853,57.539],[-5.853,57.544],[-5.854,57.548],[-5.854,57.55],[-5.847,57.552],[-5.846,57.555],[-5.849,57.558],[-5.85,57.561],[-5.849,57.563],[-5.846,57.562],[-5.841,57.559],[-5.839,57.557],[-5.836,57.559],[-5.836,57.561],[-5.837,57.564],[-5.836,57.568],[-5.837,57.569],[-5.84,57.57],[-5.841,57.573],[-5.843,57.576],[-5.839,57.577],[-5.833,57.579],[-5.828,57.578],[-5.825,57.576],[-5.819,57.578],[-5.818,57.58],[-5.822,57.58],[-5.822,57.582],[-5.817,57.584],[-5.815,57.585],[-5.811,57.585],[-5.806,57.58],[-5.804,57.579],[-5.801,57.579],[-5.802,57.577],[-5.8,57.574],[-5.795,57.575],[-5.793,57.573],[-5.791,57.574],[-5.785,57.573],[-5.782,57.573],[-5.784,57.569],[-5.782,57.566],[-5.781,57.566],[-5.777,57.567],[-5.775,57.565],[-5.771,57.564],[-5.77,57.563],[-5.769,57.559],[-5.763,57.561],[-5.76,57.56],[-5.758,57.559],[-5.759,57.557],[-5.755,57.555],[-5.75,57.555],[-5.745,57.554],[-5.744,57.552],[-5.748,57.552],[-5.749,57.55],[-5.748,57.548],[-5.747,57.547],[-5.744,57.545],[-5.74,57.545],[-5.738,57.546],[-5.728,57.548],[-5.72,57.546],[-5.719,57.545],[-5.711,57.542],[-5.708,57.54],[-5.707,57.542],[-5.712,57.545],[-5.711,57.547],[-5.713,57.55],[-5.716,57.551],[-5.717,57.553],[-5.714,57.555],[-5.71,57.556],[-5.706,57.555],[-5.703,57.552],[-5.701,57.551],[-5.699,57.547],[-5.699,57.544],[-5.705,57.543],[-5.701,57.541],[-5.7,57.538],[-5.7,57.533],[-5.698,57.53],[-5.694,57.53],[-5.692,57.53],[-5.689,57.527],[-5.685,57.526],[-5.681,57.525],[-5.676,57.526],[-5.674,57.525],[-5.671,57.522],[-5.666,57.519],[-5.664,57.517],[-5.664,57.515],[-5.662,57.514],[-5.659,57.515],[-5.655,57.514],[-5.652,57.51],[-5.649,57.509],[-5.645,57.51],[-5.645,57.513],[-5.65,57.518],[-5.653,57.519],[-5.653,57.521],[-5.65,57.525],[-5.653,57.527],[-5.653,57.532],[-5.654,57.535],[-5.657,57.538],[-5.659,57.539],[-5.658,57.541],[-5.652,57.541],[-5.647,57.541],[-5.646,57.539],[-5.647,57.535],[-5.646,57.535],[-5.641,57.536],[-5.637,57.535],[-5.631,57.531],[-5.633,57.529],[-5.631,57.528],[-5.635,57.525],[-5.631,57.522],[-5.626,57.522],[-5.621,57.521],[-5.619,57.522],[-5.621,57.526],[-5.624,57.528],[-5.627,57.529],[-5.624,57.531],[-5.622,57.528],[-5.617,57.528],[-5.614,57.53],[-5.607,57.534],[-5.603,57.534],[-5.6,57.531],[-5.598,57.53],[-5.592,57.53],[-5.588,57.531],[-5.586,57.533],[-5.581,57.532],[-5.576,57.528],[-5.574,57.529],[-5.576,57.532],[-5.578,57.534],[-5.572,57.535],[-5.571,57.533],[-5.568,57.533],[-5.566,57.53],[-5.563,57.531],[-5.56,57.532],[-5.564,57.535],[-5.559,57.536],[-5.557,57.534],[-5.553,57.533],[-5.549,57.534],[-5.545,57.533],[-5.544,57.531],[-5.536,57.529],[-5.531,57.53],[-5.527,57.53],[-5.52,57.531],[-5.518,57.533],[-5.518,57.536],[-5.514,57.537],[-5.515,57.544],[-5.519,57.545],[-5.523,57.544],[-5.525,57.545],[-5.519,57.548],[-5.521,57.549],[-5.531,57.55],[-5.537,57.552],[-5.552,57.553],[-5.561,57.553],[-5.564,57.552],[-5.571,57.553],[-5.576,57.552],[-5.581,57.553],[-5.583,57.553],[-5.587,57.556],[-5.591,57.556],[-5.6,57.556],[-5.604,57.555],[-5.61,57.552],[-5.616,57.552],[-5.619,57.553],[-5.627,57.554],[-5.633,57.555],[-5.637,57.555],[-5.638,57.554],[-5.636,57.551],[-5.637,57.55],[-5.647,57.551],[-5.65,57.552],[-5.661,57.547],[-5.669,57.545],[-5.667,57.549],[-5.674,57.554],[-5.679,57.554],[-5.682,57.555],[-5.686,57.555],[-5.687,57.556],[-5.687,57.557],[-5.688,57.559],[-5.692,57.559],[-5.694,57.563],[-5.696,57.563],[-5.701,57.562],[-5.703,57.563],[-5.704,57.565],[-5.703,57.569],[-5.702,57.57],[-5.697,57.568],[-5.692,57.569],[-5.689,57.566],[-5.684,57.566],[-5.682,57.567],[-5.682,57.572],[-5.686,57.573],[-5.687,57.576],[-5.692,57.577],[-5.704,57.578],[-5.708,57.578],[-5.711,57.58],[-5.717,57.582],[-5.723,57.583],[-5.727,57.584],[-5.73,57.587],[-5.731,57.591],[-5.733,57.593],[-5.737,57.596],[-5.736,57.6],[-5.734,57.603],[-5.734,57.606],[-5.739,57.61],[-5.741,57.611],[-5.744,57.614],[-5.751,57.618],[-5.754,57.621],[-5.76,57.625],[-5.763,57.626],[-5.771,57.631],[-5.777,57.633],[-5.787,57.636],[-5.8,57.64],[-5.803,57.64],[-5.814,57.637],[-5.818,57.638],[-5.82,57.639],[-5.818,57.647],[-5.817,57.649],[-5.816,57.65],[-5.812,57.65],[-5.81,57.65],[-5.809,57.653],[-5.811,57.658],[-5.811,57.661],[-5.809,57.663],[-5.8,57.671],[-5.796,57.675],[-5.79,57.681],[-5.787,57.684],[-5.786,57.685],[-5.789,57.686],[-5.791,57.689],[-5.79,57.694],[-5.789,57.696],[-5.786,57.697],[-5.781,57.697],[-5.776,57.696],[-5.774,57.696],[-5.771,57.697],[-5.77,57.7],[-5.76,57.706],[-5.758,57.706],[-5.749,57.706],[-5.74,57.707],[-5.727,57.705],[-5.725,57.702],[-5.729,57.699],[-5.727,57.698],[-5.716,57.699],[-5.713,57.698],[-5.708,57.699],[-5.705,57.697],[-5.704,57.695],[-5.702,57.694],[-5.696,57.695],[-5.694,57.694],[-5.691,57.691],[-5.68,57.689],[-5.68,57.692],[-5.684,57.694],[-5.687,57.696],[-5.687,57.698],[-5.682,57.7],[-5.678,57.698],[-5.673,57.7],[-5.675,57.702],[-5.681,57.707],[-5.682,57.709],[-5.68,57.71],[-5.684,57.711],[-5.688,57.71],[-5.689,57.709],[-5.692,57.71],[-5.694,57.712],[-5.692,57.714],[-5.687,57.715],[-5.689,57.718],[-5.689,57.721],[-5.693,57.726],[-5.698,57.729],[-5.7,57.729],[-5.708,57.73],[-5.713,57.731],[-5.719,57.73],[-5.726,57.729],[-5.731,57.73],[-5.734,57.73],[-5.751,57.731],[-5.759,57.731],[-5.762,57.731],[-5.766,57.733],[-5.769,57.737],[-5.775,57.739],[-5.779,57.741],[-5.787,57.744],[-5.792,57.744],[-5.795,57.744],[-5.807,57.745],[-5.812,57.748],[-5.814,57.75],[-5.814,57.752],[-5.812,57.754],[-5.81,57.755],[-5.807,57.758],[-5.805,57.761],[-5.805,57.762],[-5.81,57.766],[-5.81,57.768],[-5.808,57.77],[-5.808,57.774],[-5.803,57.782],[-5.804,57.785],[-5.803,57.787],[-5.804,57.789],[-5.803,57.794],[-5.806,57.802],[-5.809,57.807],[-5.81,57.812],[-5.811,57.814],[-5.814,57.816],[-5.815,57.821],[-5.814,57.822],[-5.813,57.825],[-5.815,57.828],[-5.818,57.83],[-5.818,57.831],[-5.816,57.833],[-5.815,57.836],[-5.814,57.836],[-5.813,57.839],[-5.81,57.84],[-5.812,57.843],[-5.813,57.847],[-5.812,57.849],[-5.815,57.853],[-5.816,57.855],[-5.814,57.856],[-5.812,57.859],[-5.811,57.86],[-5.808,57.861],[-5.799,57.86],[-5.795,57.858],[-5.784,57.858],[-5.782,57.858],[-5.779,57.86],[-5.776,57.862],[-5.773,57.864],[-5.765,57.867],[-5.763,57.869],[-5.761,57.869],[-5.755,57.868],[-5.751,57.868],[-5.746,57.866],[-5.741,57.865],[-5.731,57.865],[-5.73,57.867],[-5.726,57.868],[-5.724,57.87],[-5.721,57.869],[-5.719,57.868],[-5.715,57.868],[-5.713,57.869],[-5.706,57.869],[-5.703,57.87],[-5.7,57.869],[-5.7,57.867],[-5.698,57.866],[-5.694,57.867],[-5.69,57.866],[-5.688,57.864],[-5.684,57.864],[-5.684,57.863],[-5.687,57.861],[-5.688,57.86],[-5.69,57.858],[-5.693,57.855],[-5.691,57.853],[-5.691,57.85],[-5.693,57.85],[-5.692,57.846],[-5.693,57.844],[-5.692,57.842],[-5.69,57.841],[-5.685,57.842],[-5.683,57.841],[-5.683,57.837],[-5.683,57.836],[-5.678,57.832],[-5.674,57.83],[-5.67,57.832],[-5.669,57.831],[-5.669,57.828],[-5.672,57.827],[-5.668,57.825],[-5.665,57.825],[-5.666,57.823],[-5.663,57.822],[-5.662,57.819],[-5.665,57.817],[-5.667,57.816],[-5.669,57.813],[-5.667,57.811],[-5.668,57.808],[-5.668,57.802],[-5.667,57.799],[-5.665,57.798],[-5.66,57.793],[-5.655,57.788],[-5.65,57.786],[-5.644,57.781],[-5.641,57.78],[-5.632,57.774],[-5.626,57.77],[-5.62,57.767],[-5.617,57.766],[-5.613,57.768],[-5.608,57.768],[-5.603,57.766],[-5.599,57.769],[-5.597,57.771],[-5.598,57.773],[-5.601,57.774],[-5.607,57.774],[-5.61,57.774],[-5.612,57.776],[-5.607,57.777],[-5.614,57.781],[-5.617,57.784],[-5.617,57.786],[-5.624,57.787],[-5.624,57.789],[-5.621,57.79],[-5.619,57.792],[-5.614,57.795],[-5.61,57.796],[-5.604,57.794],[-5.602,57.792],[-5.605,57.789],[-5.607,57.789],[-5.608,57.787],[-5.601,57.788],[-5.599,57.787],[-5.596,57.788],[-5.594,57.788],[-5.584,57.789],[-5.582,57.79],[-5.581,57.793],[-5.583,57.794],[-5.584,57.796],[-5.582,57.798],[-5.596,57.799],[-5.6,57.802],[-5.598,57.804],[-5.594,57.805],[-5.594,57.807],[-5.59,57.81],[-5.59,57.812],[-5.586,57.815],[-5.587,57.818],[-5.586,57.821],[-5.583,57.83],[-5.585,57.833],[-5.584,57.835],[-5.587,57.839],[-5.589,57.84],[-5.595,57.841],[-5.593,57.839],[-5.596,57.839],[-5.599,57.841],[-5.602,57.842],[-5.602,57.845],[-5.603,57.847],[-5.61,57.85],[-5.616,57.851],[-5.624,57.854],[-5.627,57.854],[-5.634,57.854],[-5.635,57.857],[-5.641,57.855],[-5.644,57.855],[-5.644,57.858],[-5.643,57.86],[-5.64,57.863],[-5.648,57.865],[-5.645,57.869],[-5.646,57.87],[-5.65,57.871],[-5.653,57.875],[-5.656,57.876],[-5.657,57.877],[-5.657,57.879],[-5.654,57.881],[-5.648,57.882],[-5.644,57.883],[-5.65,57.886],[-5.654,57.887],[-5.657,57.888],[-5.653,57.891],[-5.645,57.896],[-5.649,57.901],[-5.644,57.905],[-5.642,57.908],[-5.64,57.909],[-5.637,57.913],[-5.628,57.917],[-5.624,57.92],[-5.624,57.922],[-5.621,57.924],[-5.613,57.924],[-5.611,57.924],[-5.607,57.924],[-5.598,57.921],[-5.595,57.921],[-5.591,57.918],[-5.588,57.919],[-5.583,57.918],[-5.584,57.916],[-5.582,57.916],[-5.583,57.913],[-5.578,57.913],[-5.576,57.912],[-5.574,57.911],[-5.573,57.913],[-5.572,57.915],[-5.568,57.917],[-5.565,57.918],[-5.561,57.915],[-5.562,57.913],[-5.555,57.911],[-5.554,57.908],[-5.557,57.907],[-5.559,57.904],[-5.557,57.902],[-5.554,57.901],[-5.552,57.902],[-5.551,57.898],[-5.551,57.896],[-5.555,57.891],[-5.555,57.89],[-5.552,57.888],[-5.553,57.884],[-5.551,57.881],[-5.548,57.88],[-5.545,57.878],[-5.541,57.874],[-5.541,57.872],[-5.54,57.869],[-5.539,57.868],[-5.532,57.867],[-5.518,57.865],[-5.514,57.864],[-5.509,57.862],[-5.5,57.861],[-5.496,57.86],[-5.49,57.859],[-5.488,57.857],[-5.482,57.856],[-5.475,57.857],[-5.474,57.856],[-5.473,57.854],[-5.47,57.852],[-5.462,57.851],[-5.455,57.852],[-5.453,57.853],[-5.452,57.859],[-5.455,57.862],[-5.457,57.863],[-5.457,57.865],[-5.456,57.866],[-5.455,57.869],[-5.449,57.869],[-5.445,57.87],[-5.442,57.872],[-5.441,57.874],[-5.443,57.878],[-5.44,57.881],[-5.436,57.881],[-5.433,57.884],[-5.442,57.886],[-5.439,57.888],[-5.439,57.892],[-5.438,57.894],[-5.435,57.895],[-5.434,57.897],[-5.433,57.901],[-5.43,57.902],[-5.428,57.903],[-5.426,57.908],[-5.424,57.908],[-5.422,57.906],[-5.417,57.905],[-5.411,57.904],[-5.403,57.904],[-5.4,57.904],[-5.395,57.901],[-5.388,57.897],[-5.38,57.895],[-5.375,57.895],[-5.369,57.893],[-5.364,57.892],[-5.356,57.889],[-5.347,57.885],[-5.34,57.881],[-5.337,57.879],[-5.335,57.877],[-5.335,57.876],[-5.333,57.873],[-5.332,57.871],[-5.328,57.868],[-5.326,57.866],[-5.322,57.866],[-5.316,57.864],[-5.312,57.863],[-5.31,57.861],[-5.307,57.861],[-5.3,57.859],[-5.293,57.856],[-5.288,57.856],[-5.283,57.857],[-5.275,57.855],[-5.266,57.854],[-5.26,57.852],[-5.259,57.85],[-5.251,57.849],[-5.248,57.848],[-5.238,57.846],[-5.234,57.846],[-5.23,57.849],[-5.229,57.852],[-5.233,57.853],[-5.237,57.854],[-5.242,57.857],[-5.243,57.859],[-5.241,57.863],[-5.242,57.864],[-5.246,57.865],[-5.247,57.867],[-5.256,57.869],[-5.267,57.871],[-5.269,57.87],[-5.276,57.872],[-5.283,57.873],[-5.291,57.874],[-5.295,57.874],[-5.301,57.876],[-5.308,57.877],[-5.312,57.879],[-5.312,57.881],[-5.314,57.883],[-5.313,57.888],[-5.317,57.891],[-5.32,57.894],[-5.325,57.898],[-5.328,57.899],[-5.332,57.901],[-5.334,57.902],[-5.339,57.906],[-5.346,57.908],[-5.351,57.908],[-5.354,57.908],[-5.361,57.908],[-5.367,57.909],[-5.378,57.91],[-5.383,57.908],[-5.386,57.909],[-5.388,57.91],[-5.392,57.911],[-5.396,57.912],[-5.397,57.921],[-5.404,57.924],[-5.408,57.928],[-5.406,57.931],[-5.403,57.932],[-5.4,57.933],[-5.398,57.933],[-5.393,57.931],[-5.387,57.931],[-5.381,57.932],[-5.378,57.932],[-5.376,57.93],[-5.371,57.93],[-5.369,57.932],[-5.371,57.936],[-5.373,57.937],[-5.368,57.939],[-5.365,57.939],[-5.362,57.938],[-5.361,57.939],[-5.359,57.939],[-5.353,57.936],[-5.351,57.933],[-5.353,57.932],[-5.352,57.93],[-5.355,57.929],[-5.355,57.927],[-5.351,57.927],[-5.348,57.926],[-5.346,57.923],[-5.341,57.92],[-5.337,57.919],[-5.335,57.919],[-5.331,57.915],[-5.328,57.914],[-5.322,57.913],[-5.32,57.912],[-5.315,57.911],[-5.309,57.911],[-5.3,57.911],[-5.293,57.911],[-5.286,57.912],[-5.284,57.912],[-5.277,57.913],[-5.274,57.915],[-5.264,57.916],[-5.258,57.917],[-5.256,57.917],[-5.248,57.917],[-5.244,57.918],[-5.241,57.918],[-5.237,57.916],[-5.236,57.914],[-5.228,57.913],[-5.227,57.911],[-5.223,57.912],[-5.222,57.911],[-5.217,57.909],[-5.216,57.908],[-5.213,57.906],[-5.212,57.904],[-5.208,57.901],[-5.203,57.9],[-5.201,57.899],[-5.198,57.898],[-5.196,57.897],[-5.194,57.894],[-5.19,57.893],[-5.188,57.89],[-5.184,57.89],[-5.181,57.889],[-5.18,57.888],[-5.179,57.887],[-5.173,57.887],[-5.172,57.886],[-5.167,57.886],[-5.166,57.882],[-5.162,57.882],[-5.161,57.881],[-5.157,57.88],[-5.153,57.878],[-5.152,57.876],[-5.15,57.875],[-5.145,57.875],[-5.137,57.876],[-5.131,57.876],[-5.127,57.875],[-5.128,57.873],[-5.127,57.872],[-5.122,57.872],[-5.119,57.87],[-5.118,57.868],[-5.118,57.866],[-5.111,57.859],[-5.104,57.851],[-5.102,57.85],[-5.103,57.849],[-5.1,57.846],[-5.099,57.843],[-5.096,57.84],[-5.094,57.839],[-5.093,57.837],[-5.092,57.836],[-5.087,57.831],[-5.084,57.83],[-5.078,57.83],[-5.076,57.83],[-5.074,57.831],[-5.072,57.832],[-5.073,57.835],[-5.075,57.836],[-5.075,57.838],[-5.076,57.84],[-5.078,57.841],[-5.079,57.845],[-5.084,57.846],[-5.084,57.848],[-5.081,57.851],[-5.083,57.853],[-5.089,57.856],[-5.09,57.859],[-5.092,57.86],[-5.096,57.861],[-5.095,57.864],[-5.097,57.864],[-5.1,57.868],[-5.1,57.869],[-5.103,57.872],[-5.106,57.873],[-5.11,57.875],[-5.119,57.879],[-5.123,57.878],[-5.131,57.88],[-5.134,57.881],[-5.136,57.883],[-5.137,57.886],[-5.138,57.889],[-5.141,57.89],[-5.141,57.891],[-5.146,57.894],[-5.149,57.894],[-5.152,57.896],[-5.156,57.896],[-5.159,57.896],[-5.165,57.893],[-5.167,57.893],[-5.17,57.899],[-5.174,57.899],[-5.174,57.901],[-5.178,57.905],[-5.181,57.908],[-5.187,57.908],[-5.195,57.911],[-5.198,57.914],[-5.2,57.916],[-5.208,57.918],[-5.208,57.92],[-5.211,57.921],[-5.216,57.921],[-5.22,57.924],[-5.221,57.924],[-5.223,57.926],[-5.221,57.928],[-5.217,57.929],[-5.212,57.929],[-5.208,57.929],[-5.206,57.93],[-5.199,57.929],[-5.198,57.93],[-5.197,57.933],[-5.198,57.935],[-5.201,57.936],[-5.2,57.938],[-5.194,57.936],[-5.191,57.936],[-5.187,57.937],[-5.183,57.94],[-5.182,57.941],[-5.185,57.943],[-5.187,57.945],[-5.193,57.944],[-5.195,57.945],[-5.193,57.947],[-5.192,57.949],[-5.194,57.95],[-5.191,57.951],[-5.191,57.955],[-5.194,57.957],[-5.205,57.957],[-5.216,57.958],[-5.222,57.958],[-5.227,57.959],[-5.227,57.961],[-5.229,57.961],[-5.234,57.961],[-5.241,57.962],[-5.241,57.964],[-5.244,57.965],[-5.245,57.966],[-5.244,57.967],[-5.246,57.97],[-5.25,57.971],[-5.257,57.972],[-5.261,57.974],[-5.269,57.974],[-5.272,57.975],[-5.274,57.975],[-5.282,57.975],[-5.286,57.977],[-5.293,57.978],[-5.298,57.977],[-5.298,57.978],[-5.304,57.978],[-5.308,57.978],[-5.313,57.98],[-5.313,57.984],[-5.308,57.986],[-5.308,57.988],[-5.312,57.99],[-5.315,57.993],[-5.321,57.994],[-5.322,57.997],[-5.324,58],[-5.328,58.001],[-5.33,58.006],[-5.334,58.007],[-5.342,58.006],[-5.346,58.006],[-5.352,58.006],[-5.356,58.006],[-5.356,58.007],[-5.353,58.009],[-5.352,58.012],[-5.348,58.013],[-5.349,58.015],[-5.35,58.017],[-5.351,58.021],[-5.355,58.022],[-5.357,58.025],[-5.362,58.028],[-5.368,58.031],[-5.37,58.031],[-5.374,58.031],[-5.376,58.029],[-5.379,58.03],[-5.382,58.029],[-5.387,58.029],[-5.393,58.03],[-5.4,58.033],[-5.407,58.033],[-5.41,58.034],[-5.416,58.034],[-5.42,58.033],[-5.422,58.036],[-5.424,58.037],[-5.425,58.04],[-5.424,58.041],[-5.422,58.047],[-5.419,58.048],[-5.419,58.05],[-5.414,58.051],[-5.417,58.055],[-5.422,58.055],[-5.425,58.056],[-5.424,58.058],[-5.426,58.059],[-5.433,58.059],[-5.438,58.06],[-5.442,58.061],[-5.445,58.063],[-5.447,58.066],[-5.451,58.07],[-5.453,58.071],[-5.457,58.07],[-5.459,58.075],[-5.457,58.076],[-5.459,58.077],[-5.457,58.078],[-5.45,58.079],[-5.447,58.08],[-5.449,58.083],[-5.455,58.083],[-5.453,58.088],[-5.455,58.089],[-5.451,58.09],[-5.449,58.093],[-5.447,58.094],[-5.448,58.095],[-5.447,58.097],[-5.447,58.098],[-5.443,58.099],[-5.441,58.097],[-5.438,58.097],[-5.438,58.1],[-5.44,58.101],[-5.44,58.102],[-5.438,58.103],[-5.438,58.105],[-5.436,58.106],[-5.433,58.106],[-5.43,58.105],[-5.43,58.107],[-5.425,58.107],[-5.422,58.106],[-5.422,58.104],[-5.41,58.102],[-5.409,58.101],[-5.409,58.099],[-5.405,58.099],[-5.403,58.097],[-5.4,58.097],[-5.399,58.096],[-5.399,58.095],[-5.397,58.092],[-5.393,58.092],[-5.392,58.089],[-5.387,58.088],[-5.384,58.088],[-5.382,58.087],[-5.38,58.086],[-5.38,58.081],[-5.375,58.079],[-5.372,58.077],[-5.37,58.079],[-5.368,58.076],[-5.365,58.073],[-5.365,58.071],[-5.361,58.07],[-5.357,58.07],[-5.356,58.074],[-5.353,58.075],[-5.353,58.078],[-5.351,58.079],[-5.349,58.078],[-5.345,58.078],[-5.34,58.077],[-5.339,58.078],[-5.342,58.08],[-5.338,58.081],[-5.337,58.079],[-5.333,58.079],[-5.33,58.077],[-5.325,58.07],[-5.322,58.069],[-5.317,58.071],[-5.315,58.071],[-5.313,58.07],[-5.307,58.07],[-5.307,58.068],[-5.308,58.067],[-5.304,58.067],[-5.301,58.065],[-5.3,58.066],[-5.3,58.07],[-5.297,58.071],[-5.295,58.07],[-5.293,58.074],[-5.292,58.074],[-5.286,58.073],[-5.283,58.074],[-5.282,58.076],[-5.289,58.079],[-5.287,58.083],[-5.286,58.085],[-5.281,58.087],[-5.281,58.085],[-5.278,58.084],[-5.276,58.086],[-5.278,58.087],[-5.281,58.091],[-5.28,58.093],[-5.283,58.095],[-5.278,58.095],[-5.278,58.097],[-5.275,58.097],[-5.271,58.1],[-5.272,58.102],[-5.277,58.1],[-5.279,58.1],[-5.279,58.102],[-5.278,58.104],[-5.274,58.103],[-5.27,58.102],[-5.269,58.105],[-5.272,58.107],[-5.275,58.107],[-5.279,58.106],[-5.281,58.109],[-5.285,58.109],[-5.284,58.112],[-5.285,58.113],[-5.289,58.113],[-5.29,58.114],[-5.295,58.113],[-5.3,58.116],[-5.3,58.118],[-5.302,58.118],[-5.303,58.12],[-5.298,58.121],[-5.294,58.121],[-5.291,58.122],[-5.286,58.121],[-5.283,58.122],[-5.279,58.123],[-5.27,58.122],[-5.267,58.123],[-5.269,58.124],[-5.274,58.125],[-5.276,58.125],[-5.279,58.125],[-5.283,58.126],[-5.287,58.127],[-5.287,58.13],[-5.29,58.131],[-5.292,58.134],[-5.296,58.137],[-5.298,58.136],[-5.3,58.137],[-5.296,58.139],[-5.292,58.139],[-5.29,58.14],[-5.282,58.138],[-5.278,58.138],[-5.273,58.136],[-5.273,58.138],[-5.27,58.139],[-5.264,58.138],[-5.26,58.139],[-5.263,58.141],[-5.262,58.143],[-5.257,58.143],[-5.254,58.142],[-5.251,58.143],[-5.252,58.148],[-5.248,58.147],[-5.244,58.148],[-5.242,58.152],[-5.244,58.154],[-5.25,58.152],[-5.252,58.153],[-5.257,58.151],[-5.261,58.148],[-5.264,58.148],[-5.27,58.148],[-5.269,58.149],[-5.276,58.15],[-5.278,58.149],[-5.281,58.151],[-5.281,58.153],[-5.284,58.154],[-5.286,58.154],[-5.287,58.152],[-5.297,58.151],[-5.3,58.153],[-5.31,58.155],[-5.308,58.157],[-5.304,58.162],[-5.3,58.163],[-5.295,58.163],[-5.293,58.164],[-5.288,58.165],[-5.284,58.164],[-5.281,58.167],[-5.286,58.167],[-5.292,58.166],[-5.296,58.164],[-5.299,58.165],[-5.303,58.164],[-5.309,58.162],[-5.312,58.164],[-5.311,58.165],[-5.312,58.167],[-5.316,58.168],[-5.318,58.17],[-5.311,58.171],[-5.308,58.17],[-5.304,58.173],[-5.306,58.175],[-5.305,58.176],[-5.312,58.178],[-5.315,58.179],[-5.316,58.181],[-5.322,58.182],[-5.326,58.181],[-5.331,58.18],[-5.332,58.181],[-5.331,58.183],[-5.333,58.184],[-5.336,58.184],[-5.338,58.185],[-5.337,58.189],[-5.344,58.191],[-5.345,58.194],[-5.344,58.195],[-5.343,58.197],[-5.341,58.199],[-5.344,58.201],[-5.35,58.202],[-5.354,58.201],[-5.358,58.202],[-5.361,58.207],[-5.36,58.211],[-5.362,58.211],[-5.361,58.216],[-5.364,58.218],[-5.369,58.219],[-5.372,58.221],[-5.372,58.223],[-5.377,58.226],[-5.379,58.228],[-5.382,58.23],[-5.386,58.231],[-5.391,58.231],[-5.398,58.234],[-5.404,58.235],[-5.405,58.237],[-5.403,58.238],[-5.405,58.24],[-5.403,58.242],[-5.401,58.241],[-5.399,58.244],[-5.397,58.245],[-5.398,58.252],[-5.395,58.252],[-5.396,58.254],[-5.392,58.255],[-5.388,58.256],[-5.385,58.258],[-5.385,58.26],[-5.382,58.262],[-5.379,58.262],[-5.376,58.265],[-5.373,58.264],[-5.374,58.263],[-5.374,58.259],[-5.37,58.259],[-5.371,58.256],[-5.37,58.254],[-5.366,58.252],[-5.36,58.253],[-5.356,58.253],[-5.35,58.251],[-5.347,58.252],[-5.346,58.251],[-5.341,58.251],[-5.338,58.253],[-5.336,58.252],[-5.339,58.248],[-5.339,58.246],[-5.34,58.245],[-5.342,58.245],[-5.341,58.243],[-5.339,58.243],[-5.333,58.241],[-5.329,58.242],[-5.326,58.242],[-5.321,58.241],[-5.318,58.239],[-5.318,58.238],[-5.32,58.237],[-5.314,58.234],[-5.314,58.231],[-5.311,58.23],[-5.309,58.229],[-5.309,58.226],[-5.308,58.226],[-5.304,58.227],[-5.304,58.229],[-5.301,58.228],[-5.295,58.231],[-5.295,58.234],[-5.293,58.234],[-5.29,58.237],[-5.283,58.238],[-5.282,58.239],[-5.278,58.24],[-5.274,58.242],[-5.272,58.244],[-5.267,58.244],[-5.262,58.246],[-5.261,58.247],[-5.255,58.248],[-5.251,58.251],[-5.24,58.249],[-5.239,58.25],[-5.24,58.252],[-5.243,58.254],[-5.24,58.255],[-5.236,58.254],[-5.231,58.253],[-5.228,58.252],[-5.224,58.252],[-5.227,58.254],[-5.231,58.254],[-5.233,58.257],[-5.231,58.259],[-5.229,58.259],[-5.228,58.256],[-5.225,58.256],[-5.222,58.256],[-5.22,58.256],[-5.217,58.257],[-5.212,58.253],[-5.213,58.25],[-5.21,58.249],[-5.206,58.249],[-5.204,58.247],[-5.198,58.249],[-5.19,58.249],[-5.189,58.251],[-5.187,58.252],[-5.183,58.253],[-5.18,58.251],[-5.179,58.248],[-5.176,58.246],[-5.176,58.244],[-5.175,58.24],[-5.17,58.236],[-5.163,58.235],[-5.166,58.237],[-5.166,58.239],[-5.169,58.239],[-5.17,58.24],[-5.172,58.241],[-5.169,58.245],[-5.172,58.246],[-5.173,58.248],[-5.171,58.249],[-5.171,58.252],[-5.168,58.254],[-5.168,58.255],[-5.165,58.256],[-5.166,58.258],[-5.162,58.26],[-5.158,58.257],[-5.155,58.254],[-5.151,58.254],[-5.147,58.256],[-5.146,58.259],[-5.141,58.26],[-5.135,58.26],[-5.132,58.257],[-5.127,58.258],[-5.127,58.256],[-5.124,58.255],[-5.127,58.254],[-5.129,58.251],[-5.127,58.25],[-5.122,58.25],[-5.12,58.252],[-5.121,58.254],[-5.12,58.257],[-5.121,58.258],[-5.124,58.26],[-5.13,58.26],[-5.133,58.26],[-5.132,58.263],[-5.128,58.265],[-5.132,58.265],[-5.134,58.267],[-5.132,58.268],[-5.124,58.267],[-5.122,58.267],[-5.119,58.266],[-5.117,58.267],[-5.12,58.269],[-5.117,58.27],[-5.107,58.27],[-5.104,58.266],[-5.105,58.265],[-5.1,58.262],[-5.088,58.258],[-5.083,58.255],[-5.08,58.254],[-5.077,58.252],[-5.072,58.251],[-5.065,58.249],[-5.063,58.248],[-5.056,58.247],[-5.054,58.247],[-5.054,58.25],[-5.05,58.252],[-5.046,58.251],[-5.044,58.249],[-5.041,58.248],[-5.038,58.248],[-5.036,58.25],[-5.032,58.25],[-5.026,58.251],[-5.029,58.252],[-5.027,58.255],[-5.022,58.258],[-5.019,58.258],[-5.017,58.257],[-5.019,58.254],[-5.012,58.256],[-5.007,58.255],[-5.006,58.253],[-5.003,58.251],[-5.005,58.249],[-5.003,58.247],[-5.003,58.242],[-5,58.242],[-4.999,58.24],[-4.995,58.239],[-4.993,58.239],[-4.991,58.238],[-4.986,58.234],[-4.982,58.233],[-4.979,58.231],[-4.976,58.228],[-4.972,58.228],[-4.971,58.228],[-4.967,58.228],[-4.966,58.227],[-4.959,58.226],[-4.959,58.227],[-4.956,58.226],[-4.953,58.224],[-4.948,58.222],[-4.944,58.217],[-4.94,58.216],[-4.939,58.218],[-4.939,58.219],[-4.937,58.221],[-4.938,58.223],[-4.943,58.224],[-4.944,58.225],[-4.947,58.225],[-4.948,58.226],[-4.952,58.226],[-4.955,58.228],[-4.949,58.229],[-4.949,58.231],[-4.955,58.234],[-4.96,58.236],[-4.963,58.238],[-4.968,58.24],[-4.971,58.24],[-4.976,58.242],[-4.984,58.244],[-4.989,58.246],[-4.991,58.246],[-4.992,58.248],[-4.995,58.251],[-4.993,58.252],[-4.991,58.252],[-4.982,58.255],[-4.973,58.254],[-4.965,58.253],[-4.961,58.254],[-4.957,58.254],[-4.951,58.253],[-4.934,58.255],[-4.93,58.255],[-4.925,58.256],[-4.926,58.258],[-4.933,58.258],[-4.936,58.259],[-4.942,58.26],[-4.945,58.26],[-4.96,58.258],[-4.964,58.258],[-4.97,58.257],[-4.978,58.258],[-4.979,58.258],[-4.986,58.26],[-4.993,58.259],[-4.995,58.26],[-5.004,58.263],[-5.007,58.264],[-5.013,58.263],[-5.016,58.264],[-5.02,58.264],[-5.017,58.261],[-5.021,58.26],[-5.023,58.261],[-5.025,58.261],[-5.028,58.263],[-5.032,58.262],[-5.032,58.261],[-5.034,58.26],[-5.033,58.258],[-5.031,58.259],[-5.029,58.261],[-5.023,58.259],[-5.024,58.258],[-5.031,58.255],[-5.034,58.257],[-5.038,58.258],[-5.043,58.26],[-5.048,58.259],[-5.053,58.258],[-5.058,58.258],[-5.057,58.26],[-5.061,58.261],[-5.064,58.259],[-5.066,58.261],[-5.069,58.262],[-5.071,58.262],[-5.075,58.262],[-5.078,58.264],[-5.082,58.264],[-5.085,58.266],[-5.088,58.267],[-5.09,58.269],[-5.095,58.27],[-5.093,58.271],[-5.102,58.275],[-5.103,58.276],[-5.107,58.274],[-5.111,58.277],[-5.111,58.278],[-5.107,58.277],[-5.103,58.277],[-5.104,58.279],[-5.108,58.279],[-5.111,58.278],[-5.116,58.28],[-5.12,58.28],[-5.124,58.28],[-5.127,58.279],[-5.13,58.278],[-5.134,58.278],[-5.139,58.281],[-5.139,58.283],[-5.136,58.285],[-5.138,58.286],[-5.133,58.289],[-5.131,58.288],[-5.128,58.286],[-5.126,58.284],[-5.124,58.283],[-5.12,58.284],[-5.122,58.286],[-5.121,58.287],[-5.127,58.291],[-5.126,58.293],[-5.13,58.293],[-5.131,58.294],[-5.134,58.293],[-5.138,58.292],[-5.14,58.291],[-5.141,58.294],[-5.139,58.296],[-5.135,58.297],[-5.135,58.298],[-5.139,58.298],[-5.142,58.3],[-5.145,58.299],[-5.148,58.3],[-5.147,58.303],[-5.144,58.303],[-5.144,58.306],[-5.141,58.307],[-5.135,58.308],[-5.131,58.308],[-5.129,58.311],[-5.13,58.311],[-5.134,58.308],[-5.137,58.309],[-5.137,58.31],[-5.139,58.311],[-5.146,58.31],[-5.148,58.312],[-5.143,58.317],[-5.14,58.317],[-5.135,58.32],[-5.135,58.323],[-5.138,58.323],[-5.136,58.325],[-5.137,58.327],[-5.143,58.326],[-5.147,58.327],[-5.147,58.325],[-5.149,58.324],[-5.149,58.322],[-5.151,58.32],[-5.159,58.319],[-5.161,58.319],[-5.163,58.321],[-5.165,58.321],[-5.17,58.322],[-5.169,58.326],[-5.167,58.327],[-5.169,58.329],[-5.168,58.331],[-5.166,58.333],[-5.159,58.335],[-5.163,58.337],[-5.169,58.336],[-5.171,58.339],[-5.176,58.34],[-5.176,58.341],[-5.171,58.343],[-5.173,58.346],[-5.177,58.347],[-5.179,58.348],[-5.179,58.35],[-5.181,58.351],[-5.183,58.351],[-5.184,58.353],[-5.187,58.353],[-5.186,58.355],[-5.183,58.353],[-5.178,58.355],[-5.174,58.355],[-5.168,58.353],[-5.165,58.354],[-5.161,58.354],[-5.159,58.352],[-5.156,58.353],[-5.156,58.354],[-5.16,58.354],[-5.162,58.357],[-5.166,58.357],[-5.165,58.359],[-5.17,58.361],[-5.176,58.362],[-5.171,58.365],[-5.169,58.367],[-5.169,58.369],[-5.167,58.37],[-5.167,58.372],[-5.166,58.374],[-5.163,58.375],[-5.158,58.378],[-5.155,58.38],[-5.155,58.381],[-5.149,58.384],[-5.148,58.386],[-5.145,58.386],[-5.145,58.39],[-5.151,58.39],[-5.149,58.391],[-5.15,58.397],[-5.153,58.397],[-5.152,58.399],[-5.154,58.401],[-5.15,58.403],[-5.152,58.405],[-5.15,58.406],[-5.146,58.408],[-5.146,58.411],[-5.141,58.411],[-5.142,58.413],[-5.137,58.412],[-5.134,58.413],[-5.132,58.412],[-5.13,58.41],[-5.126,58.407],[-5.127,58.406],[-5.124,58.403],[-5.119,58.403],[-5.115,58.4],[-5.119,58.399],[-5.115,58.397],[-5.11,58.399],[-5.103,58.397],[-5.099,58.397],[-5.096,58.395],[-5.089,58.395],[-5.091,58.39],[-5.082,58.393],[-5.081,58.394],[-5.079,58.395],[-5.072,58.394],[-5.068,58.393],[-5.072,58.392],[-5.077,58.391],[-5.078,58.39],[-5.074,58.388],[-5.072,58.388],[-5.069,58.389],[-5.064,58.39],[-5.064,58.388],[-5.067,58.387],[-5.064,58.386],[-5.064,58.384],[-5.058,58.385],[-5.056,58.382],[-5.052,58.382],[-5.046,58.384],[-5.041,58.382],[-5.039,58.381],[-5.036,58.381],[-5.039,58.385],[-5.045,58.386],[-5.042,58.387],[-5.037,58.391],[-5.036,58.393],[-5.04,58.394],[-5.042,58.393],[-5.044,58.395],[-5.051,58.395],[-5.056,58.396],[-5.056,58.397],[-5.061,58.397],[-5.063,58.398],[-5.06,58.4],[-5.06,58.401],[-5.055,58.404],[-5.057,58.405],[-5.064,58.402],[-5.068,58.402],[-5.071,58.402],[-5.07,58.405],[-5.067,58.405],[-5.066,58.407],[-5.063,58.407],[-5.061,58.409],[-5.052,58.412],[-5.046,58.411],[-5.042,58.409],[-5.036,58.409],[-5.033,58.41],[-5.036,58.411],[-5.04,58.411],[-5.046,58.412],[-5.046,58.414],[-5.051,58.415],[-5.057,58.414],[-5.061,58.415],[-5.065,58.414],[-5.067,58.412],[-5.066,58.409],[-5.072,58.407],[-5.08,58.408],[-5.084,58.407],[-5.088,58.408],[-5.089,58.407],[-5.095,58.407],[-5.097,58.409],[-5.11,58.411],[-5.112,58.413],[-5.114,58.414],[-5.113,58.415],[-5.109,58.416],[-5.105,58.415],[-5.102,58.416],[-5.098,58.417],[-5.094,58.416],[-5.092,58.417],[-5.089,58.417],[-5.087,58.417],[-5.079,58.417],[-5.08,58.419],[-5.079,58.421],[-5.085,58.42],[-5.087,58.42],[-5.092,58.42],[-5.097,58.424],[-5.098,58.423],[-5.103,58.422],[-5.105,58.423],[-5.106,58.425],[-5.108,58.425],[-5.111,58.422],[-5.114,58.424],[-5.114,58.426],[-5.115,58.428],[-5.113,58.431],[-5.11,58.431],[-5.108,58.432],[-5.109,58.433],[-5.11,58.436],[-5.105,58.437],[-5.103,58.439],[-5.098,58.439],[-5.092,58.438],[-5.083,58.438],[-5.084,58.439],[-5.091,58.439],[-5.093,58.44],[-5.097,58.439],[-5.101,58.44],[-5.097,58.443],[-5.094,58.443],[-5.087,58.446],[-5.084,58.447],[-5.081,58.448],[-5.079,58.447],[-5.077,58.449],[-5.082,58.451],[-5.078,58.451],[-5.073,58.452],[-5.07,58.451],[-5.067,58.451],[-5.065,58.452],[-5.062,58.452],[-5.059,58.45],[-5.056,58.449],[-5.053,58.451],[-5.049,58.451],[-5.042,58.45],[-5.038,58.45],[-5.035,58.449],[-5.031,58.448],[-5.023,58.444],[-5.018,58.44],[-5.016,58.44],[-5.01,58.436],[-5.006,58.433],[-5.002,58.43],[-5,58.428],[-4.996,58.426],[-4.995,58.426],[-4.99,58.427],[-4.991,58.43],[-4.994,58.431],[-4.997,58.433],[-5.001,58.436],[-5,58.437],[-4.996,58.438],[-4.991,58.44],[-4.996,58.441],[-5.006,58.442],[-5.009,58.444],[-5.016,58.445],[-5.018,58.447],[-5.016,58.448],[-5.019,58.45],[-5.019,58.451],[-5.014,58.45],[-5.014,58.452],[-5.019,58.453],[-5.027,58.453],[-5.032,58.453],[-5.035,58.454],[-5.037,58.454],[-5.044,58.454],[-5.047,58.455],[-5.048,58.457],[-5.051,58.459],[-5.052,58.458],[-5.048,58.455],[-5.048,58.454],[-5.052,58.454],[-5.053,58.455],[-5.058,58.455],[-5.065,58.457],[-5.069,58.456],[-5.072,58.457],[-5.076,58.457],[-5.079,58.458],[-5.075,58.459],[-5.07,58.458],[-5.068,58.46],[-5.066,58.461],[-5.061,58.46],[-5.056,58.46],[-5.056,58.463],[-5.057,58.464],[-5.061,58.463],[-5.066,58.463],[-5.074,58.466],[-5.077,58.466],[-5.078,58.467],[-5.082,58.468],[-5.084,58.469],[-5.087,58.469],[-5.09,58.471],[-5.09,58.473],[-5.089,58.477],[-5.092,58.478],[-5.096,58.478],[-5.098,58.478],[-5.099,58.476],[-5.101,58.475],[-5.103,58.476],[-5.1,58.478],[-5.101,58.479],[-5.106,58.479],[-5.107,58.481],[-5.109,58.481],[-5.113,58.479],[-5.115,58.479],[-5.117,58.48],[-5.115,58.481],[-5.114,58.484],[-5.12,58.485],[-5.121,58.486],[-5.121,58.49],[-5.126,58.489],[-5.125,58.492],[-5.126,58.494],[-5.123,58.495],[-5.12,58.497],[-5.122,58.5],[-5.119,58.502],[-5.119,58.504],[-5.117,58.507],[-5.118,58.51],[-5.12,58.51],[-5.118,58.512],[-5.118,58.516],[-5.116,58.517],[-5.113,58.52],[-5.114,58.522],[-5.112,58.523],[-5.11,58.522],[-5.107,58.523],[-5.106,58.527],[-5.104,58.529],[-5.1,58.529],[-5.098,58.531],[-5.093,58.533],[-5.094,58.534],[-5.092,58.535],[-5.093,58.537],[-5.091,58.538],[-5.088,58.537],[-5.08,58.538],[-5.073,58.537],[-5.065,58.539],[-5.055,58.544],[-5.049,58.547],[-5.047,58.549],[-5.044,58.55],[-5.041,58.553],[-5.041,58.556],[-5.038,58.56],[-5.036,58.561],[-5.032,58.562],[-5.031,58.566],[-5.032,58.568],[-5.034,58.569],[-5.031,58.57],[-5.028,58.57],[-5.027,58.572],[-5.016,58.578],[-5.022,58.579],[-5.02,58.583],[-5.018,58.584],[-5.019,58.586],[-5.022,58.587],[-5.02,58.59],[-5.017,58.591],[-5.013,58.591],[-5.012,58.595],[-5.014,58.597],[-5.012,58.599],[-5.016,58.599],[-5.017,58.603],[-5.013,58.604],[-5.015,58.607],[-5.012,58.608],[-5.011,58.609],[-5.014,58.612],[-5.014,58.614],[-5.016,58.617],[-5.014,58.618],[-5.011,58.622],[-5.009,58.625],[-5.007,58.626],[-5.003,58.626],[-4.997,58.627],[-4.993,58.625],[-4.99,58.623],[-4.986,58.622],[-4.983,58.621],[-4.979,58.62],[-4.975,58.618],[-4.974,58.616],[-4.972,58.617],[-4.966,58.615],[-4.965,58.615],[-4.958,58.614],[-4.958,58.612],[-4.957,58.611],[-4.947,58.61],[-4.943,58.611],[-4.943,58.613],[-4.939,58.615],[-4.938,58.617],[-4.929,58.617],[-4.925,58.616],[-4.913,58.614],[-4.906,58.615],[-4.895,58.613],[-4.888,58.613],[-4.886,58.614],[-4.878,58.615],[-4.876,58.615],[-4.872,58.61],[-4.866,58.609],[-4.867,58.607],[-4.863,58.607],[-4.856,58.604],[-4.855,58.603],[-4.846,58.599],[-4.842,58.601],[-4.837,58.601],[-4.834,58.6],[-4.828,58.598],[-4.827,58.597],[-4.829,58.596],[-4.828,58.595],[-4.822,58.592],[-4.816,58.587],[-4.818,58.586],[-4.819,58.582],[-4.821,58.581],[-4.818,58.578],[-4.821,58.573],[-4.823,58.571],[-4.817,58.57],[-4.82,58.562],[-4.818,58.561],[-4.815,58.557],[-4.812,58.555],[-4.81,58.553],[-4.808,58.554],[-4.798,58.551],[-4.797,58.549],[-4.795,58.548],[-4.795,58.545],[-4.796,58.544],[-4.796,58.541],[-4.798,58.539],[-4.804,58.538],[-4.808,58.536],[-4.816,58.531],[-4.818,58.529],[-4.821,58.527],[-4.823,58.522],[-4.817,58.526],[-4.812,58.526],[-4.811,58.525],[-4.812,58.522],[-4.811,58.518],[-4.811,58.514],[-4.809,58.514],[-4.808,58.521],[-4.806,58.522],[-4.803,58.525],[-4.798,58.524],[-4.799,58.527],[-4.795,58.53],[-4.791,58.533],[-4.79,58.535],[-4.786,58.538],[-4.785,58.538],[-4.783,58.54],[-4.781,58.543],[-4.779,58.547],[-4.778,58.55],[-4.779,58.552],[-4.782,58.553],[-4.79,58.553],[-4.796,58.556],[-4.799,58.559],[-4.804,58.561],[-4.807,58.563],[-4.807,58.564],[-4.804,58.567],[-4.8,58.57],[-4.797,58.577],[-4.799,58.579],[-4.796,58.579],[-4.795,58.577],[-4.79,58.577],[-4.787,58.577],[-4.784,58.578],[-4.777,58.578],[-4.772,58.578],[-4.77,58.58],[-4.769,58.583],[-4.77,58.585],[-4.774,58.587],[-4.781,58.589],[-4.779,58.593],[-4.781,58.594],[-4.786,58.594],[-4.788,58.596],[-4.788,58.597],[-4.793,58.6],[-4.788,58.601],[-4.787,58.6],[-4.784,58.602],[-4.78,58.601],[-4.775,58.605],[-4.772,58.604],[-4.768,58.605],[-4.77,58.602],[-4.769,58.6],[-4.763,58.598],[-4.765,58.596],[-4.764,58.593],[-4.765,58.591],[-4.763,58.589],[-4.757,58.59],[-4.755,58.587],[-4.754,58.584],[-4.751,58.583],[-4.749,58.584],[-4.741,58.583],[-4.74,58.581],[-4.739,58.579],[-4.743,58.576],[-4.741,58.573],[-4.738,58.57],[-4.733,58.568],[-4.728,58.57],[-4.724,58.571],[-4.717,58.57],[-4.71,58.567],[-4.705,58.567],[-4.707,58.564],[-4.709,58.563],[-4.708,58.561],[-4.705,58.558],[-4.7,58.557],[-4.699,58.557],[-4.695,58.556],[-4.692,58.557],[-4.691,58.556],[-4.686,58.556],[-4.681,58.556],[-4.675,58.551],[-4.672,58.552],[-4.667,58.551],[-4.658,58.553],[-4.655,58.552],[-4.657,58.547],[-4.657,58.545],[-4.654,58.545],[-4.655,58.542],[-4.652,58.541],[-4.652,58.539],[-4.652,58.534],[-4.657,58.53],[-4.66,58.528],[-4.661,58.526],[-4.665,58.525],[-4.668,58.526],[-4.67,58.526],[-4.677,58.52],[-4.674,58.518],[-4.676,58.517],[-4.678,58.518],[-4.682,58.516],[-4.683,58.514],[-4.68,58.514],[-4.682,58.511],[-4.687,58.508],[-4.692,58.508],[-4.692,58.506],[-4.694,58.504],[-4.698,58.503],[-4.704,58.499],[-4.709,58.498],[-4.712,58.496],[-4.712,58.495],[-4.716,58.489],[-4.722,58.483],[-4.723,58.481],[-4.724,58.481],[-4.729,58.475],[-4.732,58.473],[-4.735,58.472],[-4.741,58.467],[-4.742,58.465],[-4.744,58.463],[-4.744,58.458],[-4.748,58.458],[-4.75,58.457],[-4.751,58.456],[-4.75,58.454],[-4.753,58.451],[-4.747,58.451],[-4.746,58.452],[-4.741,58.45],[-4.736,58.45],[-4.735,58.452],[-4.732,58.453],[-4.728,58.456],[-4.728,58.459],[-4.724,58.464],[-4.723,58.465],[-4.717,58.464],[-4.712,58.466],[-4.709,58.466],[-4.707,58.468],[-4.701,58.469],[-4.7,58.469],[-4.696,58.474],[-4.696,58.477],[-4.695,58.478],[-4.69,58.478],[-4.688,58.479],[-4.684,58.479],[-4.679,58.481],[-4.678,58.483],[-4.674,58.484],[-4.672,58.484],[-4.666,58.483],[-4.664,58.484],[-4.662,58.488],[-4.663,58.491],[-4.662,58.496],[-4.664,58.498],[-4.669,58.496],[-4.67,58.497],[-4.669,58.499],[-4.666,58.501],[-4.664,58.499],[-4.662,58.499],[-4.661,58.505],[-4.659,58.508],[-4.652,58.511],[-4.652,58.513],[-4.65,58.515],[-4.65,58.516],[-4.645,58.519],[-4.641,58.521],[-4.635,58.521],[-4.629,58.522],[-4.625,58.524],[-4.618,58.524],[-4.618,58.523],[-4.616,58.521],[-4.613,58.523],[-4.606,58.527],[-4.603,58.527],[-4.602,58.529],[-4.603,58.532],[-4.601,58.533],[-4.594,58.535],[-4.595,58.537],[-4.594,58.538],[-4.596,58.547],[-4.602,58.551],[-4.604,58.555],[-4.601,58.559],[-4.599,58.56],[-4.599,58.563],[-4.597,58.564],[-4.598,58.565],[-4.598,58.567],[-4.6,58.569],[-4.596,58.573],[-4.591,58.575],[-4.592,58.576],[-4.587,58.578],[-4.585,58.577],[-4.581,58.58],[-4.577,58.581],[-4.576,58.579],[-4.571,58.576],[-4.57,58.577],[-4.566,58.579],[-4.563,58.579],[-4.556,58.577],[-4.548,58.579],[-4.543,58.582],[-4.541,58.58],[-4.537,58.579],[-4.537,58.581],[-4.534,58.581],[-4.533,58.579],[-4.531,58.58],[-4.528,58.58],[-4.525,58.577],[-4.522,58.577],[-4.519,58.579],[-4.515,58.579],[-4.509,58.577],[-4.503,58.577],[-4.499,58.577],[-4.492,58.57],[-4.492,58.568],[-4.485,58.567],[-4.484,58.566],[-4.479,58.566],[-4.475,58.564],[-4.473,58.564],[-4.469,58.564],[-4.462,58.562],[-4.457,58.562],[-4.455,58.557],[-4.452,58.555],[-4.454,58.551],[-4.45,58.549],[-4.449,58.552],[-4.446,58.553],[-4.444,58.553],[-4.442,58.554],[-4.441,58.557],[-4.437,58.557],[-4.436,58.554],[-4.432,58.554],[-4.431,58.551],[-4.428,58.552],[-4.424,58.55],[-4.424,58.549],[-4.428,58.547],[-4.427,58.544],[-4.426,58.542],[-4.427,58.541],[-4.423,58.536],[-4.426,58.534],[-4.429,58.532],[-4.429,58.53],[-4.424,58.528],[-4.42,58.525],[-4.418,58.526],[-4.413,58.526],[-4.41,58.525],[-4.407,58.527],[-4.405,58.525],[-4.408,58.521],[-4.406,58.517],[-4.407,58.515],[-4.409,58.512],[-4.413,58.512],[-4.413,58.511],[-4.409,58.511],[-4.405,58.509],[-4.404,58.508],[-4.408,58.508],[-4.413,58.507],[-4.432,58.507],[-4.437,58.506],[-4.443,58.503],[-4.447,58.5],[-4.448,58.499],[-4.449,58.497],[-4.454,58.494],[-4.456,58.494],[-4.454,58.491],[-4.451,58.489],[-4.451,58.486],[-4.456,58.481],[-4.454,58.479],[-4.455,58.478],[-4.452,58.476],[-4.448,58.475],[-4.446,58.474],[-4.446,58.471],[-4.452,58.468],[-4.454,58.467],[-4.458,58.464],[-4.454,58.464],[-4.446,58.465],[-4.445,58.468],[-4.444,58.469],[-4.441,58.473],[-4.444,58.475],[-4.444,58.479],[-4.447,58.479],[-4.451,58.483],[-4.449,58.483],[-4.447,58.486],[-4.446,58.488],[-4.442,58.487],[-4.442,58.492],[-4.445,58.493],[-4.45,58.493],[-4.45,58.495],[-4.447,58.495],[-4.443,58.496],[-4.442,58.498],[-4.435,58.503],[-4.431,58.504],[-4.427,58.505],[-4.424,58.504],[-4.418,58.502],[-4.419,58.5],[-4.425,58.5],[-4.427,58.501],[-4.427,58.503],[-4.43,58.503],[-4.431,58.501],[-4.427,58.501],[-4.426,58.5],[-4.421,58.499],[-4.416,58.498],[-4.419,58.496],[-4.427,58.495],[-4.426,58.494],[-4.419,58.495],[-4.41,58.501],[-4.405,58.503],[-4.402,58.507],[-4.396,58.511],[-4.39,58.51],[-4.385,58.512],[-4.381,58.515],[-4.378,58.518],[-4.379,58.519],[-4.376,58.521],[-4.373,58.521],[-4.372,58.523],[-4.369,58.524],[-4.37,58.525],[-4.367,58.528],[-4.363,58.532],[-4.362,58.532],[-4.35,58.524],[-4.35,58.522],[-4.351,58.518],[-4.354,58.515],[-4.354,58.509],[-4.35,58.504],[-4.351,58.501],[-4.345,58.495],[-4.334,58.483],[-4.34,58.469],[-4.341,58.464],[-4.339,58.461],[-4.278,58.447],[-4.274,58.413],[-4.281,58.408],[-4.309,58.4],[-4.352,58.405],[-4.354,58.409],[-4.356,58.416],[-4.358,58.42],[-4.361,58.424],[-4.366,58.425],[-4.37,58.424],[-4.37,58.421],[-4.372,58.419],[-4.373,58.416],[-4.372,58.408],[-4.368,58.404],[-4.367,58.4],[-4.365,58.399],[-4.366,58.397],[-4.365,58.395],[-4.366,58.392],[-4.362,58.387],[-4.362,58.385],[-4.363,58.38],[-4.365,58.375],[-4.373,58.37],[-4.377,58.368],[-4.383,58.366],[-4.381,58.365],[-4.373,58.365],[-4.367,58.367],[-4.34,58.355],[-4.338,58.348],[-4.31,58.342],[-4.284,58.315],[-4.268,58.315],[-4.263,58.316],[-4.259,58.319],[-4.257,58.326],[-4.258,58.327],[-4.256,58.33],[-4.257,58.331],[-4.256,58.332],[-4.152,58.324],[-4.197,58.293],[-4.212,58.286],[-4.236,58.268],[-4.244,58.269],[-4.32,58.276],[-4.337,58.27],[-4.351,58.266],[-4.387,58.241],[-4.407,58.236],[-4.418,58.231],[-4.427,58.189],[-4.415,58.167],[-4.447,58.134],[-4.401,58.122],[-4.346,58.12],[-4.345,58.12],[-4.325,58.105],[-4.324,58.105],[-4.31,58.121],[-4.298,58.122],[-4.264,58.131],[-4.268,58.15],[-4.269,58.154],[-4.165,58.199],[-4.157,58.197],[-4.129,58.197],[-4.046,58.168],[-4.017,58.157],[-4.014,58.155],[-4.013,58.153],[-3.993,58.131],[-4.024,58.103],[-4.05,58.094],[-4.032,58.075],[-4.028,58.072],[-4.04,58.071],[-4.046,58.069],[-4.053,58.069],[-4.056,58.068],[-4.059,58.067],[-4.065,58.065],[-4.021,58.05],[-4.005,58.036],[-4.006,58.028],[-4.015,58.017],[-4.021,58.01],[-4.027,58.013],[-4.033,58.016],[-4.041,58.016],[-4.047,58.018],[-4.052,58.01],[-4.075,57.998],[-4.076,57.994],[-4.078,57.967],[-4.081,57.963],[-4.075,57.96],[-4.068,57.958],[-4.07,57.955],[-4.072,57.955],[-4.078,57.952],[-4.081,57.952],[-4.083,57.95],[-4.084,57.948],[-4.081,57.946],[-4.077,57.945],[-4.075,57.943],[-4.072,57.939],[-4.069,57.937],[-4.057,57.936],[-4.048,57.934],[-4.045,57.933],[-4.039,57.931],[-4.035,57.931],[-4.034,57.927],[-4.029,57.929],[-4.026,57.927],[-4.023,57.927],[-4.014,57.928],[-4.01,57.928],[-4,57.929],[-3.99,57.931],[-3.988,57.929],[-3.996,57.927],[-3.998,57.922],[-3.997,57.917],[-3.992,57.906],[-3.991,57.904],[-4.001,57.9],[-4.002,57.899],[-4.004,57.893],[-4.011,57.89],[-4.011,57.887],[-4.009,57.883],[-4.012,57.88],[-4.012,57.878],[-4.011,57.876],[-4.006,57.874],[-4.004,57.872],[-4.002,57.868],[-3.999,57.868],[-3.998,57.866],[-3.994,57.866],[-3.987,57.864],[-3.981,57.865],[-3.975,57.865],[-3.975,57.862],[-3.972,57.862],[-3.974,57.865],[-3.966,57.866],[-3.964,57.863],[-3.961,57.862],[-3.97,57.861],[-3.972,57.861],[-3.977,57.861],[-3.986,57.86],[-3.989,57.86],[-4.006,57.857],[-4.007,57.859],[-4.015,57.857],[-4.022,57.857],[-4.032,57.858],[-4.038,57.858],[-4.047,57.858],[-4.051,57.857],[-4.077,57.852],[-4.093,57.849],[-4.108,57.849],[-4.112,57.848],[-4.123,57.85],[-4.121,57.852],[-4.122,57.853],[-4.129,57.855],[-4.128,57.854],[-4.125,57.854],[-4.122,57.853],[-4.123,57.85],[-4.131,57.851],[-4.138,57.851],[-4.139,57.853],[-4.142,57.853],[-4.149,57.853],[-4.156,57.855],[-4.167,57.858],[-4.169,57.859],[-4.175,57.861],[-4.174,57.864],[-4.176,57.866],[-4.178,57.867],[-4.182,57.867],[-4.187,57.867],[-4.197,57.868],[-4.199,57.87],[-4.205,57.872],[-4.212,57.873],[-4.207,57.871],[-4.214,57.87],[-4.225,57.87],[-4.23,57.872],[-4.234,57.872],[-4.24,57.871],[-4.245,57.871],[-4.255,57.87],[-4.257,57.868],[-4.263,57.866],[-4.266,57.864],[-4.27,57.861],[-4.274,57.861],[-4.282,57.862],[-4.28,57.86],[-4.282,57.86],[-4.288,57.861],[-4.292,57.862],[-4.304,57.87],[-4.311,57.873],[-4.315,57.872],[-4.318,57.873],[-4.332,57.88],[-4.334,57.881],[-4.337,57.88],[-4.338,57.879],[-4.333,57.878],[-4.327,57.875],[-4.324,57.873],[-4.322,57.873],[-4.317,57.87],[-4.311,57.869],[-4.307,57.87],[-4.304,57.867],[-4.299,57.865],[-4.298,57.863],[-4.294,57.859],[-4.29,57.858],[-4.283,57.857],[-4.267,57.855],[-4.262,57.855],[-4.258,57.855],[-4.252,57.857],[-4.236,57.86],[-4.232,57.86],[-4.224,57.86],[-4.219,57.861],[-4.212,57.861],[-4.209,57.861],[-4.208,57.862],[-4.189,57.863],[-4.185,57.859],[-4.18,57.855],[-4.175,57.849],[-4.171,57.848],[-4.169,57.845],[-4.163,57.84],[-4.155,57.837],[-4.147,57.838],[-4.143,57.838],[-4.14,57.84],[-4.14,57.844],[-4.138,57.845],[-4.131,57.845],[-4.123,57.843],[-4.114,57.843],[-4.112,57.842],[-4.099,57.84],[-4.093,57.839],[-4.088,57.838],[-4.086,57.837],[-4.084,57.836],[-4.076,57.833],[-4.072,57.832],[-4.069,57.834],[-4.066,57.834],[-4.059,57.834],[-4.052,57.834],[-4.046,57.834],[-4.043,57.832],[-4.033,57.834],[-4.029,57.834],[-4.025,57.835],[-4.011,57.84],[-3.996,57.846],[-3.99,57.849],[-3.981,57.851],[-3.975,57.853],[-3.971,57.854],[-3.965,57.855],[-3.954,57.855],[-3.949,57.855],[-3.946,57.856],[-3.941,57.856],[-3.939,57.856],[-3.935,57.854],[-3.931,57.849],[-3.926,57.844],[-3.919,57.842],[-3.914,57.839],[-3.907,57.836],[-3.911,57.831],[-3.914,57.829],[-3.926,57.825],[-3.926,57.824],[-3.929,57.823],[-3.93,57.821],[-3.94,57.821],[-3.944,57.82],[-3.945,57.817],[-3.946,57.814],[-3.951,57.815],[-3.954,57.814],[-3.954,57.813],[-3.95,57.812],[-3.946,57.813],[-3.944,57.812],[-3.939,57.812],[-3.936,57.814],[-3.935,57.815],[-3.94,57.816],[-3.939,57.817],[-3.933,57.816],[-3.923,57.817],[-3.92,57.818],[-3.919,57.821],[-3.911,57.823],[-3.909,57.823],[-3.905,57.822],[-3.897,57.821],[-3.886,57.822],[-3.886,57.823],[-3.875,57.822],[-3.87,57.823],[-3.867,57.825],[-3.864,57.825],[-3.858,57.828],[-3.855,57.829],[-3.853,57.832],[-3.849,57.832],[-3.843,57.834],[-3.837,57.835],[-3.835,57.834],[-3.831,57.835],[-3.83,57.837],[-3.83,57.84],[-3.827,57.843],[-3.825,57.844],[-3.822,57.849],[-3.82,57.85],[-3.817,57.853],[-3.815,57.856],[-3.816,57.858],[-3.814,57.86],[-3.807,57.863],[-3.797,57.866],[-3.793,57.866],[-3.787,57.866],[-3.785,57.867],[-3.78,57.868],[-3.772,57.868],[-3.772,57.867],[-3.775,57.865],[-3.779,57.86],[-3.778,57.856],[-3.778,57.854],[-3.779,57.852],[-3.78,57.849],[-3.782,57.848],[-3.782,57.847],[-3.785,57.844],[-3.792,57.838],[-3.799,57.832],[-3.811,57.824],[-3.813,57.821],[-3.82,57.817],[-3.823,57.814],[-3.824,57.812],[-3.836,57.802],[-3.841,57.8],[-3.844,57.799],[-3.847,57.795],[-3.85,57.791],[-3.852,57.789],[-3.855,57.787],[-3.858,57.785],[-3.862,57.783],[-3.862,57.782],[-3.87,57.776],[-3.875,57.773],[-3.876,57.772],[-3.882,57.772],[-3.886,57.77],[-3.887,57.769],[-3.89,57.767],[-3.894,57.766],[-3.895,57.763],[-3.898,57.76],[-3.902,57.759],[-3.905,57.756],[-3.912,57.753],[-3.915,57.753],[-3.917,57.749],[-3.915,57.746],[-3.917,57.744],[-3.922,57.739],[-3.924,57.736],[-3.926,57.734],[-3.93,57.733],[-3.931,57.728],[-3.932,57.727],[-3.937,57.724],[-3.948,57.714],[-3.953,57.71],[-3.959,57.707],[-3.965,57.702],[-3.966,57.7],[-3.97,57.698],[-3.975,57.695],[-3.979,57.693],[-3.986,57.692],[-3.995,57.692],[-4.002,57.693],[-4.008,57.692],[-4.011,57.692],[-4.015,57.692],[-4.02,57.692],[-4.024,57.694],[-4.024,57.695],[-4.035,57.695],[-4.037,57.695],[-4.039,57.698],[-4.038,57.7],[-4.036,57.704],[-4.032,57.707],[-4.034,57.707],[-4.038,57.707],[-4.042,57.708],[-4.043,57.71],[-4.046,57.711],[-4.048,57.71],[-4.051,57.713],[-4.054,57.714],[-4.057,57.716],[-4.06,57.716],[-4.06,57.718],[-4.064,57.718],[-4.063,57.715],[-4.064,57.714],[-4.072,57.716],[-4.074,57.718],[-4.078,57.719],[-4.08,57.718],[-4.085,57.718],[-4.088,57.715],[-4.093,57.714],[-4.094,57.716],[-4.1,57.714],[-4.103,57.712],[-4.105,57.714],[-4.109,57.712],[-4.114,57.712],[-4.12,57.709],[-4.135,57.702],[-4.14,57.699],[-4.144,57.697],[-4.146,57.696],[-4.152,57.693],[-4.155,57.692],[-4.159,57.688],[-4.167,57.686],[-4.168,57.685],[-4.17,57.685],[-4.176,57.686],[-4.182,57.689],[-4.187,57.69],[-4.196,57.69],[-4.199,57.692],[-4.202,57.691],[-4.205,57.692],[-4.216,57.69],[-4.223,57.69],[-4.23,57.686],[-4.231,57.685],[-4.232,57.683],[-4.234,57.682],[-4.237,57.681],[-4.238,57.68],[-4.245,57.679],[-4.246,57.678],[-4.25,57.677],[-4.257,57.678],[-4.259,57.677],[-4.264,57.678],[-4.269,57.679],[-4.273,57.678],[-4.275,57.676],[-4.276,57.674],[-4.278,57.672],[-4.28,57.668],[-4.28,57.665],[-4.282,57.665],[-4.287,57.66],[-4.289,57.661],[-4.293,57.66],[-4.294,57.657],[-4.298,57.657],[-4.299,57.656],[-4.303,57.656],[-4.308,57.654],[-4.311,57.652],[-4.316,57.651],[-4.321,57.652],[-4.325,57.653],[-4.328,57.653],[-4.333,57.651],[-4.338,57.647],[-4.342,57.644],[-4.346,57.64],[-4.348,57.638],[-4.353,57.637],[-4.357,57.634],[-4.363,57.63],[-4.366,57.626],[-4.368,57.626],[-4.371,57.626],[-4.374,57.625],[-4.38,57.622],[-4.382,57.621],[-4.384,57.618],[-4.386,57.617],[-4.387,57.615],[-4.385,57.615],[-4.388,57.612],[-4.391,57.611],[-4.392,57.61],[-4.396,57.604],[-4.393,57.603],[-4.396,57.6],[-4.402,57.596],[-4.403,57.594],[-4.4,57.593],[-4.393,57.598],[-4.39,57.602],[-4.389,57.605],[-4.384,57.609],[-4.381,57.609],[-4.375,57.613],[-4.374,57.611],[-4.371,57.614],[-4.368,57.614],[-4.366,57.615],[-4.363,57.614],[-4.361,57.613],[-4.359,57.615],[-4.351,57.618],[-4.348,57.618],[-4.343,57.621],[-4.339,57.625],[-4.332,57.628],[-4.331,57.63],[-4.324,57.633],[-4.319,57.635],[-4.313,57.638],[-4.309,57.639],[-4.303,57.641],[-4.3,57.642],[-4.292,57.646],[-4.287,57.647],[-4.281,57.65],[-4.275,57.652],[-4.272,57.655],[-4.267,57.656],[-4.264,57.658],[-4.261,57.66],[-4.259,57.66],[-4.252,57.663],[-4.248,57.666],[-4.238,57.669],[-4.231,57.671],[-4.221,57.673],[-4.215,57.675],[-4.212,57.674],[-4.207,57.673],[-4.199,57.674],[-4.192,57.674],[-4.188,57.675],[-4.181,57.675],[-4.178,57.676],[-4.174,57.675],[-4.168,57.676],[-4.167,57.677],[-4.155,57.677],[-4.149,57.675],[-4.146,57.672],[-4.144,57.672],[-4.144,57.67],[-4.141,57.67],[-4.137,57.667],[-4.133,57.664],[-4.127,57.665],[-4.122,57.663],[-4.118,57.662],[-4.115,57.663],[-4.112,57.663],[-4.108,57.664],[-4.099,57.664],[-4.093,57.665],[-4.084,57.666],[-4.082,57.668],[-4.072,57.67],[-4.064,57.674],[-4.057,57.676],[-4.048,57.677],[-4.044,57.678],[-4.04,57.68],[-4.039,57.684],[-4.038,57.684],[-4.033,57.684],[-4.028,57.683],[-4.027,57.682],[-4.024,57.681],[-4.02,57.681],[-4.011,57.68],[-4.007,57.68],[-3.998,57.68],[-3.994,57.678],[-3.993,57.676],[-3.996,57.673],[-3.999,57.672],[-4,57.671],[-4.003,57.667],[-4.007,57.665],[-4.009,57.663],[-4.01,57.662],[-4.016,57.661],[-4.025,57.658],[-4.03,57.654],[-4.033,57.653],[-4.036,57.651],[-4.039,57.65],[-4.042,57.648],[-4.045,57.647],[-4.047,57.644],[-4.049,57.642],[-4.049,57.641],[-4.055,57.639],[-4.061,57.635],[-4.067,57.629],[-4.073,57.624],[-4.08,57.622],[-4.084,57.618],[-4.087,57.617],[-4.089,57.615],[-4.098,57.609],[-4.101,57.607],[-4.1,57.606],[-4.102,57.604],[-4.103,57.6],[-4.106,57.597],[-4.11,57.595],[-4.111,57.594],[-4.111,57.592],[-4.112,57.591],[-4.11,57.586],[-4.108,57.584],[-4.102,57.579],[-4.098,57.577],[-4.091,57.575],[-4.095,57.573],[-4.098,57.574],[-4.104,57.576],[-4.113,57.578],[-4.122,57.578],[-4.126,57.577],[-4.132,57.578],[-4.14,57.577],[-4.146,57.575],[-4.147,57.574],[-4.155,57.572],[-4.163,57.568],[-4.165,57.566],[-4.169,57.563],[-4.171,57.562],[-4.174,57.56],[-4.174,57.556],[-4.175,57.552],[-4.178,57.551],[-4.182,57.547],[-4.189,57.545],[-4.192,57.546],[-4.196,57.548],[-4.208,57.547],[-4.215,57.548],[-4.221,57.55],[-4.225,57.55],[-4.232,57.55],[-4.239,57.552],[-4.244,57.551],[-4.251,57.549],[-4.251,57.548],[-4.246,57.547],[-4.248,57.545],[-4.246,57.544],[-4.241,57.545],[-4.234,57.546],[-4.23,57.546],[-4.226,57.543],[-4.215,57.541],[-4.209,57.541],[-4.203,57.543],[-4.201,57.542],[-4.199,57.54],[-4.194,57.54],[-4.193,57.538],[-4.193,57.535],[-4.195,57.534],[-4.197,57.531],[-4.205,57.523],[-4.21,57.52],[-4.21,57.518],[-4.213,57.518],[-4.218,57.517],[-4.223,57.513],[-4.226,57.51],[-4.23,57.507],[-4.231,57.504],[-4.234,57.501],[-4.243,57.501],[-4.248,57.501],[-4.251,57.501],[-4.26,57.502],[-4.263,57.502],[-4.267,57.502],[-4.276,57.502],[-4.284,57.503],[-4.293,57.503],[-4.299,57.503],[-4.31,57.501],[-4.317,57.502],[-4.321,57.503],[-4.328,57.504],[-4.337,57.504],[-4.344,57.505],[-4.346,57.502],[-4.351,57.502],[-4.357,57.502],[-4.36,57.5],[-4.364,57.501],[-4.365,57.503],[-4.371,57.503],[-4.37,57.502],[-4.372,57.499],[-4.382,57.498],[-4.384,57.499],[-4.385,57.501],[-4.388,57.504],[-4.396,57.499],[-4.387,57.498],[-4.384,57.497],[-4.385,57.496],[-4.375,57.494],[-4.368,57.495],[-4.363,57.495],[-4.365,57.494],[-4.355,57.495],[-4.353,57.495],[-4.341,57.497],[-4.337,57.498],[-4.331,57.498],[-4.328,57.496],[-4.325,57.496],[-4.314,57.497],[-4.309,57.497],[-4.306,57.497],[-4.308,57.495],[-4.312,57.495],[-4.314,57.494],[-4.324,57.494],[-4.333,57.494],[-4.34,57.495],[-4.337,57.493],[-4.337,57.492],[-4.348,57.491],[-4.351,57.49],[-4.357,57.489],[-4.359,57.488],[-4.35,57.489],[-4.348,57.49],[-4.342,57.49],[-4.34,57.49],[-4.332,57.491],[-4.335,57.489],[-4.334,57.488],[-4.342,57.487],[-4.34,57.486],[-4.327,57.486],[-4.316,57.486],[-4.308,57.486],[-4.296,57.485],[-4.283,57.484],[-4.277,57.486],[-4.271,57.487],[-4.263,57.489],[-4.262,57.491],[-4.255,57.495],[-4.249,57.496],[-4.243,57.495],[-4.238,57.496],[-4.235,57.496],[-4.232,57.497],[-4.23,57.496],[-4.225,57.498],[-4.221,57.5],[-4.217,57.499],[-4.206,57.496],[-4.203,57.495],[-4.196,57.493],[-4.191,57.493],[-4.187,57.492],[-4.183,57.492],[-4.18,57.491],[-4.176,57.492],[-4.175,57.493],[-4.172,57.495],[-4.168,57.497],[-4.165,57.5],[-4.16,57.503],[-4.158,57.505],[-4.154,57.508],[-4.151,57.511],[-4.151,57.515],[-4.15,57.518],[-4.148,57.519],[-4.146,57.519],[-4.132,57.522],[-4.129,57.523],[-4.126,57.526],[-4.123,57.527],[-4.118,57.528],[-4.115,57.53],[-4.113,57.529],[-4.108,57.531],[-4.103,57.536],[-4.088,57.543],[-4.082,57.546],[-4.073,57.548],[-4.064,57.551],[-4.054,57.555],[-4.053,57.557],[-4.05,57.557],[-4.047,57.56],[-4.047,57.563],[-4.044,57.566],[-4.046,57.568],[-4.051,57.573],[-4.058,57.577],[-4.066,57.58],[-4.068,57.581],[-4.071,57.581],[-4.076,57.582],[-4.077,57.583],[-4.071,57.586],[-4.068,57.587],[-4.063,57.59],[-4.062,57.591],[-4.059,57.593],[-4.054,57.593],[-4.043,57.595],[-4.041,57.598],[-4.039,57.599],[-4.032,57.603],[-4.028,57.604],[-4.018,57.604],[-4.016,57.603],[-4.005,57.6],[-3.986,57.594],[-3.984,57.595],[-3.988,57.597],[-3.995,57.599],[-3.997,57.6],[-4.002,57.601],[-4.007,57.603],[-4.007,57.604],[-4.002,57.603],[-3.993,57.601],[-3.981,57.597],[-3.976,57.596],[-3.966,57.593],[-3.955,57.59],[-3.946,57.589],[-3.936,57.588],[-3.929,57.587],[-3.927,57.588],[-3.923,57.588],[-3.915,57.587],[-3.907,57.588],[-3.898,57.589],[-3.891,57.589],[-3.882,57.59],[-3.879,57.59],[-3.87,57.591],[-3.868,57.591],[-3.868,57.595],[-3.866,57.597],[-3.863,57.598],[-3.859,57.598],[-3.855,57.597],[-3.854,57.598],[-3.85,57.599],[-3.843,57.598],[-3.839,57.599],[-3.835,57.6],[-3.832,57.601],[-3.827,57.605],[-3.822,57.606],[-3.82,57.608],[-3.816,57.61],[-3.818,57.612],[-3.822,57.609],[-3.829,57.604],[-3.83,57.603],[-3.835,57.6],[-3.839,57.599],[-3.843,57.599],[-3.844,57.601],[-3.835,57.605],[-3.831,57.608],[-3.827,57.61],[-3.826,57.612],[-3.823,57.615],[-3.815,57.619],[-3.807,57.622],[-3.8,57.624],[-3.792,57.626],[-3.781,57.627],[-3.776,57.628],[-3.774,57.628],[-3.772,57.631],[-3.764,57.634],[-3.762,57.635],[-3.754,57.64],[-3.751,57.642],[-3.753,57.642],[-3.752,57.644],[-3.752,57.647],[-3.747,57.646],[-3.743,57.646],[-3.733,57.648],[-3.736,57.649],[-3.741,57.648],[-3.745,57.648],[-3.744,57.649],[-3.741,57.65],[-3.735,57.65],[-3.734,57.652],[-3.731,57.652],[-3.73,57.654],[-3.718,57.656],[-3.711,57.657],[-3.703,57.659],[-3.701,57.659],[-3.69,57.66],[-3.686,57.66],[-3.68,57.661],[-3.675,57.662],[-3.662,57.663],[-3.65,57.664],[-3.646,57.664],[-3.639,57.664],[-3.64,57.666],[-3.631,57.661],[-3.626,57.66],[-3.623,57.659],[-3.625,57.658],[-3.622,57.655],[-3.62,57.655],[-3.622,57.652],[-3.626,57.647],[-3.625,57.644],[-3.632,57.644],[-3.641,57.643],[-3.644,57.642],[-3.647,57.639],[-3.644,57.637],[-3.641,57.64],[-3.636,57.639],[-3.639,57.638],[-3.64,57.636],[-3.633,57.637],[-3.632,57.635],[-3.637,57.632],[-3.634,57.63],[-3.632,57.631],[-3.633,57.633],[-3.628,57.634],[-3.625,57.636],[-3.621,57.634],[-3.615,57.635],[-3.613,57.636],[-3.607,57.633],[-3.598,57.633],[-3.596,57.631],[-3.59,57.631],[-3.587,57.634],[-3.585,57.634],[-3.582,57.636],[-3.582,57.638],[-3.583,57.643],[-3.584,57.645],[-3.589,57.648],[-3.594,57.651],[-3.601,57.651],[-3.604,57.653],[-3.607,57.656],[-3.613,57.658],[-3.622,57.661],[-3.624,57.661],[-3.629,57.663],[-3.631,57.664],[-3.631,57.667],[-3.633,57.667],[-3.634,57.669],[-3.627,57.667],[-3.619,57.666],[-3.607,57.665],[-3.582,57.663],[-3.579,57.663],[-3.566,57.663],[-3.55,57.663],[-3.544,57.663],[-3.537,57.664],[-3.528,57.666],[-3.515,57.67],[-3.511,57.672],[-3.503,57.677],[-3.497,57.683],[-3.496,57.689],[-3.497,57.69],[-3.496,57.692],[-3.498,57.693],[-3.498,57.697],[-3.5,57.703],[-3.499,57.705],[-3.493,57.705],[-3.488,57.704],[-3.482,57.704],[-3.477,57.704],[-3.471,57.704],[-3.469,57.705],[-3.464,57.705],[-3.459,57.705],[-3.45,57.707],[-3.445,57.709],[-3.439,57.711],[-3.438,57.712],[-3.435,57.713],[-3.433,57.712],[-3.427,57.712],[-3.427,57.713],[-3.423,57.713],[-3.42,57.716],[-3.415,57.714],[-3.411,57.714],[-3.406,57.716],[-3.402,57.716],[-3.4,57.717],[-3.396,57.717],[-3.389,57.718],[-3.386,57.72],[-3.383,57.72],[-3.377,57.721],[-3.375,57.721],[-3.371,57.722],[-3.36,57.723],[-3.356,57.724],[-3.35,57.726],[-3.345,57.727],[-3.342,57.726],[-3.33,57.727],[-3.325,57.726],[-3.317,57.724],[-3.313,57.723],[-3.31,57.723],[-3.306,57.722],[-3.3,57.723],[-3.294,57.725],[-3.288,57.725],[-3.277,57.725],[-3.279,57.722],[-3.278,57.72],[-3.264,57.714],[-3.257,57.712],[-3.242,57.707],[-3.232,57.703],[-3.221,57.7],[-3.217,57.699],[-3.214,57.699],[-3.201,57.695],[-3.193,57.695],[-3.191,57.693],[-3.187,57.692],[-3.176,57.689],[-3.163,57.686],[-3.145,57.683],[-3.137,57.681],[-3.116,57.677],[-3.111,57.677],[-3.106,57.678],[-3.105,57.677],[-3.105,57.675],[-3.108,57.675],[-3.108,57.673],[-3.105,57.673],[-3.106,57.671],[-3.103,57.671],[-3.102,57.672],[-3.1,57.673],[-3.098,57.671],[-3.093,57.671],[-3.093,57.672],[-3.098,57.675],[-3.09,57.674],[-3.08,57.672],[-3.068,57.671],[-3.066,57.67],[-3.059,57.67],[-3.058,57.67],[-3.055,57.669],[-3.05,57.668],[-3.045,57.667],[-3.041,57.666],[-3.041,57.663],[-3.044,57.66],[-3.048,57.659],[-3.041,57.654],[-3.037,57.655],[-3.032,57.655],[-3.025,57.652],[-3.028,57.648],[-3.031,57.646],[-3.032,57.645],[-3.034,57.643],[-3.038,57.642],[-3.043,57.646],[-3.043,57.644],[-3.045,57.642],[-3.047,57.641],[-3.052,57.638],[-3.06,57.632],[-3.058,57.631],[-3.048,57.626],[-3.061,57.619],[-3.048,57.608],[-3.048,57.607],[-3.066,57.599],[-3.075,57.601],[-3.081,57.603],[-3.085,57.606],[-3.086,57.607],[-3.091,57.605],[-3.086,57.599],[-3.077,57.592],[-3.06,57.586],[-3.077,57.58],[-3.079,57.58],[-3.101,57.584],[-3.111,57.584],[-3.113,57.581],[-3.11,57.57],[-3.124,57.569],[-3.124,57.568],[-3.123,57.564],[-3.119,57.564],[-3.125,57.554],[-3.126,57.553],[-3.125,57.55],[-3.131,57.55],[-3.123,57.547],[-3.122,57.547],[-3.124,57.538],[-3.12,57.536],[-3.119,57.533],[-3.128,57.525],[-3.146,57.525],[-3.161,57.525],[-3.168,57.535],[-3.172,57.534],[-3.175,57.535],[-3.181,57.539],[-3.175,57.542],[-3.172,57.544],[-3.173,57.545],[-3.169,57.546],[-3.173,57.552],[-3.178,57.553],[-3.181,57.552],[-3.173,57.545],[-3.175,57.544],[-3.178,57.545],[-3.19,57.548],[-3.191,57.55],[-3.196,57.551],[-3.203,57.571],[-3.211,57.571],[-3.22,57.572],[-3.222,57.571],[-3.245,57.571],[-3.255,57.578],[-3.265,57.575],[-3.253,57.566],[-3.257,57.564],[-3.268,57.564],[-3.292,57.552],[-3.291,57.539],[-3.312,57.529],[-3.354,57.533],[-3.361,57.528],[-3.369,57.522],[-3.373,57.515],[-3.413,57.512],[-3.412,57.51],[-3.409,57.507],[-3.405,57.504],[-3.4,57.503],[-3.409,57.5],[-3.421,57.504],[-3.442,57.506],[-3.45,57.504],[-3.447,57.49],[-3.453,57.471],[-3.478,57.468],[-3.484,57.468],[-3.514,57.453]],[[-5.554,57.491],[-5.555,57.493],[-5.554,57.496],[-5.555,57.498],[-5.561,57.499],[-5.565,57.501],[-5.568,57.502],[-5.57,57.504],[-5.574,57.509],[-5.581,57.514],[-5.586,57.515],[-5.589,57.519],[-5.591,57.517],[-5.593,57.517],[-5.593,57.515],[-5.592,57.514],[-5.589,57.513],[-5.589,57.51],[-5.585,57.506],[-5.582,57.505],[-5.581,57.502],[-5.575,57.498],[-5.573,57.495],[-5.569,57.493],[-5.564,57.492],[-5.564,57.49],[-5.564,57.485],[-5.566,57.482],[-5.566,57.48],[-5.572,57.475],[-5.572,57.469],[-5.571,57.468],[-5.568,57.468],[-5.564,57.468],[-5.561,57.47],[-5.563,57.472],[-5.563,57.474],[-5.562,57.476],[-5.563,57.478],[-5.559,57.485],[-5.556,57.487],[-5.554,57.491]],[[-5.374,57.725],[-5.377,57.727],[-5.386,57.732],[-5.389,57.732],[-5.397,57.731],[-5.404,57.728],[-5.406,57.728],[-5.405,57.731],[-5.407,57.734],[-5.42,57.738],[-5.424,57.741],[-5.426,57.744],[-5.431,57.748],[-5.438,57.75],[-5.446,57.753],[-5.445,57.756],[-5.447,57.758],[-5.452,57.762],[-5.455,57.765],[-5.447,57.766],[-5.446,57.767],[-5.449,57.77],[-5.454,57.771],[-5.461,57.772],[-5.462,57.775],[-5.458,57.778],[-5.457,57.782],[-5.46,57.783],[-5.458,57.789],[-5.454,57.793],[-5.459,57.792],[-5.462,57.794],[-5.463,57.791],[-5.465,57.789],[-5.465,57.783],[-5.466,57.782],[-5.465,57.779],[-5.467,57.778],[-5.471,57.778],[-5.471,57.776],[-5.475,57.777],[-5.475,57.779],[-5.477,57.78],[-5.476,57.782],[-5.48,57.784],[-5.486,57.784],[-5.486,57.785],[-5.489,57.786],[-5.493,57.785],[-5.492,57.783],[-5.493,57.782],[-5.492,57.781],[-5.486,57.78],[-5.485,57.778],[-5.479,57.776],[-5.48,57.774],[-5.485,57.769],[-5.481,57.768],[-5.478,57.767],[-5.476,57.764],[-5.47,57.76],[-5.471,57.756],[-5.471,57.754],[-5.467,57.754],[-5.463,57.753],[-5.457,57.744],[-5.456,57.744],[-5.452,57.746],[-5.449,57.747],[-5.446,57.745],[-5.442,57.745],[-5.439,57.743],[-5.438,57.739],[-5.436,57.737],[-5.436,57.736],[-5.433,57.734],[-5.428,57.729],[-5.424,57.727],[-5.418,57.724],[-5.412,57.723],[-5.409,57.723],[-5.405,57.724],[-5.403,57.726],[-5.4,57.725],[-5.396,57.726],[-5.387,57.728],[-5.383,57.727],[-5.377,57.724],[-5.374,57.725]],[[-5.326,57.632],[-5.327,57.634],[-5.333,57.633],[-5.337,57.635],[-5.337,57.638],[-5.347,57.641],[-5.353,57.646],[-5.362,57.648],[-5.368,57.65],[-5.372,57.652],[-5.373,57.654],[-5.377,57.656],[-5.377,57.657],[-5.381,57.659],[-5.386,57.661],[-5.389,57.663],[-5.396,57.665],[-5.401,57.668],[-5.405,57.67],[-5.407,57.67],[-5.414,57.673],[-5.419,57.674],[-5.421,57.676],[-5.426,57.677],[-5.429,57.679],[-5.436,57.684],[-5.443,57.685],[-5.446,57.687],[-5.452,57.689],[-5.458,57.692],[-5.465,57.694],[-5.471,57.698],[-5.475,57.7],[-5.487,57.704],[-5.49,57.705],[-5.498,57.706],[-5.501,57.71],[-5.504,57.712],[-5.519,57.717],[-5.525,57.719],[-5.531,57.722],[-5.536,57.725],[-5.539,57.727],[-5.546,57.732],[-5.561,57.739],[-5.566,57.741],[-5.569,57.742],[-5.571,57.741],[-5.572,57.744],[-5.571,57.746],[-5.577,57.745],[-5.576,57.744],[-5.579,57.742],[-5.582,57.742],[-5.583,57.741],[-5.573,57.736],[-5.568,57.735],[-5.566,57.733],[-5.562,57.73],[-5.557,57.729],[-5.556,57.727],[-5.553,57.727],[-5.551,57.725],[-5.552,57.723],[-5.555,57.724],[-5.558,57.723],[-5.56,57.721],[-5.561,57.719],[-5.559,57.717],[-5.561,57.716],[-5.562,57.715],[-5.559,57.714],[-5.557,57.716],[-5.554,57.713],[-5.548,57.706],[-5.549,57.701],[-5.547,57.699],[-5.548,57.695],[-5.544,57.691],[-5.544,57.689],[-5.542,57.685],[-5.536,57.684],[-5.529,57.683],[-5.528,57.683],[-5.513,57.682],[-5.508,57.681],[-5.503,57.679],[-5.501,57.677],[-5.499,57.676],[-5.494,57.676],[-5.489,57.678],[-5.482,57.679],[-5.48,57.68],[-5.474,57.681],[-5.473,57.685],[-5.468,57.686],[-5.465,57.685],[-5.466,57.683],[-5.463,57.683],[-5.463,57.681],[-5.457,57.681],[-5.455,57.682],[-5.451,57.679],[-5.448,57.678],[-5.449,57.675],[-5.453,57.675],[-5.451,57.673],[-5.447,57.672],[-5.449,57.671],[-5.445,57.669],[-5.442,57.67],[-5.44,57.668],[-5.44,57.667],[-5.438,57.665],[-5.434,57.664],[-5.429,57.664],[-5.429,57.663],[-5.427,57.662],[-5.421,57.661],[-5.421,57.66],[-5.419,57.659],[-5.414,57.658],[-5.412,57.659],[-5.408,57.658],[-5.403
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment